// Copyright (c) 2025-2026 Probo Inc . // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. import type { INodeProperties, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; import { proboApiRequest } from '../../GenericFunctions'; export const description: INodeProperties[] = [ { displayName: 'Organization ID', name: 'organizationId', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The ID of the organization', required: true, }, { displayName: 'Area', name: 'area', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The area of the obligation', required: true, }, { displayName: 'Source', name: 'source', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The source of the obligation', required: true, }, { displayName: 'Requirement', name: 'requirement', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The requirement of the obligation', required: true, }, { displayName: 'Actions to Be Implemented', name: 'actionsToBeImplemented', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The actions to be implemented for the obligation', }, { displayName: 'Regulator', name: 'regulator', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The regulator of the obligation', }, { displayName: 'Owner ID', name: 'ownerId', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The ID of the owner', }, { displayName: 'Last Review Date', name: 'lastReviewDate', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The last review date of the obligation', }, { displayName: 'Due Date', name: 'dueDate', type: 'string', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, default: '', description: 'The due date of the obligation', }, { displayName: 'Status', name: 'status', type: 'options', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, options: [ { name: 'Non Compliant', value: 'NON_COMPLIANT', }, { name: 'Partially Compliant', value: 'PARTIALLY_COMPLIANT', }, { name: 'Compliant', value: 'COMPLIANT', }, ], default: 'NON_COMPLIANT', description: 'The status of the obligation', }, { displayName: 'Type', name: 'type', type: 'options', displayOptions: { show: { resource: ['obligation'], operation: ['create'], }, }, options: [ { name: 'Legal', value: 'LEGAL', }, { name: 'Contractual', value: 'CONTRACTUAL', }, ], default: 'LEGAL', description: 'The type of the obligation', }, ]; export async function execute( this: IExecuteFunctions, itemIndex: number, ): Promise { const organizationId = this.getNodeParameter('organizationId', itemIndex) as string; const area = this.getNodeParameter('area', itemIndex) as string; const source = this.getNodeParameter('source', itemIndex) as string; const requirement = this.getNodeParameter('requirement', itemIndex) as string; const actionsToBeImplemented = this.getNodeParameter('actionsToBeImplemented', itemIndex, '') as string; const regulator = this.getNodeParameter('regulator', itemIndex, '') as string; const ownerId = this.getNodeParameter('ownerId', itemIndex, '') as string; const lastReviewDate = this.getNodeParameter('lastReviewDate', itemIndex, '') as string; const dueDate = this.getNodeParameter('dueDate', itemIndex, '') as string; const status = this.getNodeParameter('status', itemIndex, '') as string; const type = this.getNodeParameter('type', itemIndex, '') as string; const query = ` mutation CreateObligation($input: CreateObligationInput!) { createObligation(input: $input) { obligationEdge { node { id area source requirement actionsToBeImplemented regulator lastReviewDate dueDate status type createdAt updatedAt } } } } `; const variables = { input: { organizationId, area, source, requirement, ...(actionsToBeImplemented && { actionsToBeImplemented }), ...(regulator && { regulator }), ...(ownerId && { ownerId }), ...(lastReviewDate && { lastReviewDate }), ...(dueDate && { dueDate }), ...(status && { status }), ...(type && { type }), }, }; const responseData = await proboApiRequest.call(this, query, variables); return { json: responseData, pairedItem: { item: itemIndex }, }; }