Store audit_start_date and audit_end_date as TIMESTAMP WITH TIME ZONE. Alphabetize n8n audit field collections to satisfy n8n-node lint. Signed-off-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Bryan FRIMIN <bryan@frimin.fr>
189 lines
4.8 KiB
TypeScript
189 lines
4.8 KiB
TypeScript
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// 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: ['audit'],
|
|
operation: ['create'],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The ID of the organization',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Framework ID',
|
|
name: 'frameworkId',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['audit'],
|
|
operation: ['create'],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The ID of the framework',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['audit'],
|
|
operation: ['create'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Audit End Date',
|
|
name: 'auditEndDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'The end date of the audit engagement',
|
|
},
|
|
{
|
|
displayName: 'Audit Start Date',
|
|
name: 'auditStartDate',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'The start date of the audit engagement',
|
|
},
|
|
{
|
|
displayName: 'Name',
|
|
name: 'name',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The name of the audit',
|
|
},
|
|
{
|
|
displayName: 'State',
|
|
name: 'state',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Completed',
|
|
value: 'COMPLETED',
|
|
},
|
|
{
|
|
name: 'In Progress',
|
|
value: 'IN_PROGRESS',
|
|
},
|
|
{
|
|
name: 'Not Started',
|
|
value: 'NOT_STARTED',
|
|
},
|
|
{
|
|
name: 'Outdated',
|
|
value: 'OUTDATED',
|
|
},
|
|
{
|
|
name: 'Rejected',
|
|
value: 'REJECTED',
|
|
},
|
|
],
|
|
default: 'NOT_STARTED',
|
|
description: 'The state of the audit',
|
|
},
|
|
{
|
|
displayName: 'Valid From',
|
|
name: 'validFrom',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'The start date of the audit validity period',
|
|
},
|
|
{
|
|
displayName: 'Valid Until',
|
|
name: 'validUntil',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'The end date of the audit validity period',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export async function execute(
|
|
this: IExecuteFunctions,
|
|
itemIndex: number,
|
|
): Promise<INodeExecutionData> {
|
|
const organizationId = this.getNodeParameter('organizationId', itemIndex) as string;
|
|
const frameworkId = this.getNodeParameter('frameworkId', itemIndex) as string;
|
|
const additionalFields = this.getNodeParameter('additionalFields', itemIndex, {}) as {
|
|
name?: string;
|
|
state?: string;
|
|
validFrom?: string;
|
|
validUntil?: string;
|
|
auditStartDate?: string;
|
|
auditEndDate?: string;
|
|
};
|
|
|
|
const query = `
|
|
mutation CreateAudit($input: CreateAuditInput!) {
|
|
createAudit(input: $input) {
|
|
auditEdge {
|
|
node {
|
|
id
|
|
name
|
|
state
|
|
validFrom
|
|
validUntil
|
|
auditStartDate
|
|
auditEndDate
|
|
reportUrl
|
|
compliancePortalVisibility
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
const input: Record<string, unknown> = {
|
|
organizationId,
|
|
frameworkId,
|
|
};
|
|
if (additionalFields.name) input.name = additionalFields.name;
|
|
if (additionalFields.state) input.state = additionalFields.state;
|
|
if (additionalFields.validFrom) input.validFrom = additionalFields.validFrom;
|
|
if (additionalFields.validUntil) input.validUntil = additionalFields.validUntil;
|
|
if (additionalFields.auditStartDate) input.auditStartDate = additionalFields.auditStartDate;
|
|
if (additionalFields.auditEndDate) input.auditEndDate = additionalFields.auditEndDate;
|
|
|
|
const responseData = await proboApiRequest.call(this, query, { input });
|
|
|
|
return {
|
|
json: responseData,
|
|
pairedItem: { item: itemIndex },
|
|
};
|
|
}
|