@probo/n8n-nodes-probo 0.190.0 → 0.192.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nodes/Probo/actions/cookieBanner/index.d.ts +2 -1
- package/dist/nodes/Probo/actions/cookieBanner/index.js +10 -1
- package/dist/nodes/Probo/actions/cookieBanner/index.js.map +1 -1
- package/dist/nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.js +44 -0
- package/dist/nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/riskAssessment/createBoundary.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/riskAssessment/createBoundary.operation.js +78 -0
- package/dist/nodes/Probo/actions/riskAssessment/createBoundary.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/riskAssessment/createNode.operation.js +19 -7
- package/dist/nodes/Probo/actions/riskAssessment/createNode.operation.js.map +1 -1
- package/dist/nodes/Probo/actions/riskAssessment/deleteBoundary.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/riskAssessment/deleteBoundary.operation.js +39 -0
- package/dist/nodes/Probo/actions/riskAssessment/deleteBoundary.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/riskAssessment/getAllBoundaries.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/riskAssessment/getAllBoundaries.operation.js +90 -0
- package/dist/nodes/Probo/actions/riskAssessment/getAllBoundaries.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/riskAssessment/getBoundary.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/riskAssessment/getBoundary.operation.js +44 -0
- package/dist/nodes/Probo/actions/riskAssessment/getBoundary.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/riskAssessment/index.d.ts +6 -1
- package/dist/nodes/Probo/actions/riskAssessment/index.js +45 -1
- package/dist/nodes/Probo/actions/riskAssessment/index.js.map +1 -1
- package/dist/nodes/Probo/actions/riskAssessment/updateBoundary.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/riskAssessment/updateBoundary.operation.js +83 -0
- package/dist/nodes/Probo/actions/riskAssessment/updateBoundary.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/riskAssessment/updateNode.operation.js +11 -4
- package/dist/nodes/Probo/actions/riskAssessment/updateNode.operation.js.map +1 -1
- package/dist/nodes/Probo/actions/thirdParty/index.d.ts +2 -1
- package/dist/nodes/Probo/actions/thirdParty/index.js +10 -1
- package/dist/nodes/Probo/actions/thirdParty/index.js.map +1 -1
- package/dist/nodes/Probo/actions/thirdParty/vet.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/thirdParty/vet.operation.js +82 -0
- package/dist/nodes/Probo/actions/thirdParty/vet.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/trackerPattern/get.operation.js +1 -0
- package/dist/nodes/Probo/actions/trackerPattern/get.operation.js.map +1 -1
- package/dist/nodes/Probo/actions/trackerPattern/getAll.operation.js +1 -0
- package/dist/nodes/Probo/actions/trackerPattern/getAll.operation.js.map +1 -1
- package/dist/package.json +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.description = void 0;
|
|
4
|
+
exports.execute = execute;
|
|
5
|
+
const GenericFunctions_1 = require("../../GenericFunctions");
|
|
6
|
+
exports.description = [
|
|
7
|
+
{
|
|
8
|
+
displayName: 'Boundary ID',
|
|
9
|
+
name: 'boundaryId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['riskAssessment'],
|
|
14
|
+
operation: ['updateBoundary'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the boundary to update',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Additional Fields',
|
|
23
|
+
name: 'additionalFields',
|
|
24
|
+
type: 'collection',
|
|
25
|
+
placeholder: 'Add Field',
|
|
26
|
+
default: {},
|
|
27
|
+
displayOptions: {
|
|
28
|
+
show: {
|
|
29
|
+
resource: ['riskAssessment'],
|
|
30
|
+
operation: ['updateBoundary'],
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
options: [
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Name',
|
|
36
|
+
name: 'name',
|
|
37
|
+
type: 'string',
|
|
38
|
+
default: '',
|
|
39
|
+
description: 'The name of the boundary',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
displayName: 'Parent Boundary ID',
|
|
43
|
+
name: 'parentBoundaryId',
|
|
44
|
+
type: 'string',
|
|
45
|
+
default: '',
|
|
46
|
+
description: 'The ID of the parent boundary. Leave empty to make the boundary top-level.',
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
async function execute(itemIndex) {
|
|
52
|
+
const boundaryId = this.getNodeParameter('boundaryId', itemIndex);
|
|
53
|
+
const additionalFields = this.getNodeParameter('additionalFields', itemIndex, {});
|
|
54
|
+
const query = `
|
|
55
|
+
mutation UpdateRiskAssessmentBoundary($input: UpdateRiskAssessmentBoundaryInput!) {
|
|
56
|
+
updateRiskAssessmentBoundary(input: $input) {
|
|
57
|
+
riskAssessmentBoundary {
|
|
58
|
+
id
|
|
59
|
+
riskAssessmentScopeId
|
|
60
|
+
parentBoundaryId
|
|
61
|
+
name
|
|
62
|
+
createdAt
|
|
63
|
+
updatedAt
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
`;
|
|
68
|
+
const input = { id: boundaryId };
|
|
69
|
+
if (additionalFields.name)
|
|
70
|
+
input.name = additionalFields.name;
|
|
71
|
+
if (additionalFields.parentBoundaryId !== undefined) {
|
|
72
|
+
input.parentBoundaryId = additionalFields.parentBoundaryId || null;
|
|
73
|
+
}
|
|
74
|
+
if (Object.keys(input).length === 1) {
|
|
75
|
+
throw new Error('At least one field must be provided to update');
|
|
76
|
+
}
|
|
77
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input });
|
|
78
|
+
return {
|
|
79
|
+
json: responseData,
|
|
80
|
+
pairedItem: { item: itemIndex },
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
//# sourceMappingURL=updateBoundary.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateBoundary.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/updateBoundary.operation.ts"],"names":[],"mappings":";;;AA+DA,0BAyCC;AAzFD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,aAAa;QAC1B,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,gBAAgB,CAAC;aAC7B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,kCAAkC;QAC/C,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,mBAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,gBAAgB,CAAC;aAC7B;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,MAAM;gBACnB,IAAI,EAAE,MAAM;gBACZ,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,0BAA0B;aACvC;YACD;gBACC,WAAW,EAAE,oBAAoB;gBACjC,IAAI,EAAE,kBAAkB;gBACxB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,4EAA4E;aACzF;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,SAAS,CAAW,CAAC;IAC5E,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,SAAS,EAAE,EAAE,CAG/E,CAAC;IAEF,MAAM,KAAK,GAAG;;;;;;;;;;;;;EAab,CAAC;IAEF,MAAM,KAAK,GAA4B,EAAE,EAAE,EAAE,UAAU,EAAE,CAAC;IAC1D,IAAI,gBAAgB,CAAC,IAAI;QAAE,KAAK,CAAC,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;IAC9D,IAAI,gBAAgB,CAAC,gBAAgB,KAAK,SAAS,EAAE,CAAC;QACrD,KAAK,CAAC,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,IAAI,IAAI,CAAC;IACpE,CAAC;IAED,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACrC,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;IAClE,CAAC;IAED,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;IAExE,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -47,10 +47,6 @@ exports.description = [
|
|
|
47
47
|
name: 'Entity',
|
|
48
48
|
value: 'ENTITY',
|
|
49
49
|
},
|
|
50
|
-
{
|
|
51
|
-
name: 'Boundary',
|
|
52
|
-
value: 'BOUNDARY',
|
|
53
|
-
},
|
|
54
50
|
{
|
|
55
51
|
name: 'Asset',
|
|
56
52
|
value: 'ASSET',
|
|
@@ -63,6 +59,13 @@ exports.description = [
|
|
|
63
59
|
default: 'ENTITY',
|
|
64
60
|
description: 'The type of the node',
|
|
65
61
|
},
|
|
62
|
+
{
|
|
63
|
+
displayName: 'Boundary ID',
|
|
64
|
+
name: 'boundaryId',
|
|
65
|
+
type: 'string',
|
|
66
|
+
default: '',
|
|
67
|
+
description: 'The ID of the boundary that contains this node. Leave empty to move it to the top level.',
|
|
68
|
+
},
|
|
66
69
|
],
|
|
67
70
|
},
|
|
68
71
|
];
|
|
@@ -75,6 +78,7 @@ async function execute(itemIndex) {
|
|
|
75
78
|
riskAssessmentNode {
|
|
76
79
|
id
|
|
77
80
|
riskAssessmentScopeId
|
|
81
|
+
boundaryId
|
|
78
82
|
nodeType
|
|
79
83
|
name
|
|
80
84
|
createdAt
|
|
@@ -88,6 +92,9 @@ async function execute(itemIndex) {
|
|
|
88
92
|
input.name = additionalFields.name;
|
|
89
93
|
if (additionalFields.nodeType)
|
|
90
94
|
input.nodeType = additionalFields.nodeType;
|
|
95
|
+
if (additionalFields.boundaryId !== undefined) {
|
|
96
|
+
input.boundaryId = additionalFields.boundaryId || null;
|
|
97
|
+
}
|
|
91
98
|
if (Object.keys(input).length === 1) {
|
|
92
99
|
throw new Error('At least one field must be provided to update');
|
|
93
100
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateNode.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/updateNode.operation.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"updateNode.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/updateNode.operation.ts"],"names":[],"mappings":";;;AAoFA,0BA4CC;AAjHD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,YAAY,CAAC;aACzB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,8BAA8B;QAC3C,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,mBAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,YAAY,CAAC;aACzB;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,MAAM;gBACnB,IAAI,EAAE,MAAM;gBACZ,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,sBAAsB;aACnC;YACD;gBACC,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE;oBACR;wBACC,IAAI,EAAE,QAAQ;wBACd,KAAK,EAAE,QAAQ;qBACf;oBACD;wBACC,IAAI,EAAE,OAAO;wBACb,KAAK,EAAE,OAAO;qBACd;oBACD;wBACC,IAAI,EAAE,MAAM;wBACZ,KAAK,EAAE,MAAM;qBACb;iBACD;gBACD,OAAO,EAAE,QAAQ;gBACjB,WAAW,EAAE,sBAAsB;aACnC;YACD;gBACC,WAAW,EAAE,aAAa;gBAC1B,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,0FAA0F;aACvG;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,MAAM,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,SAAS,CAAW,CAAC;IACpE,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,SAAS,EAAE,EAAE,CAI/E,CAAC;IAEF,MAAM,KAAK,GAAG;;;;;;;;;;;;;;EAcb,CAAC;IAEF,MAAM,KAAK,GAA4B,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC;IACtD,IAAI,gBAAgB,CAAC,IAAI;QAAE,KAAK,CAAC,IAAI,GAAG,gBAAgB,CAAC,IAAI,CAAC;IAC9D,IAAI,gBAAgB,CAAC,QAAQ;QAAE,KAAK,CAAC,QAAQ,GAAG,gBAAgB,CAAC,QAAQ,CAAC;IAC1E,IAAI,gBAAgB,CAAC,UAAU,KAAK,SAAS,EAAE,CAAC;QAC/C,KAAK,CAAC,UAAU,GAAG,gBAAgB,CAAC,UAAU,IAAI,IAAI,CAAC;IACxD,CAAC;IAED,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACrC,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;IAClE,CAAC;IAED,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;IAExE,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -29,5 +29,6 @@ import * as linkThirdPartyOp from './linkThirdParty.operation';
|
|
|
29
29
|
import * as unlinkThirdPartyOp from './unlinkThirdParty.operation';
|
|
30
30
|
import * as listChildThirdPartiesOp from './listChildThirdParties.operation';
|
|
31
31
|
import * as publishOp from './publish.operation';
|
|
32
|
+
import * as vetOp from './vet.operation';
|
|
32
33
|
export declare const description: INodeProperties[];
|
|
33
|
-
export { createOp as create, updateOp as update, deleteOp as delete, getOp as get, getAllOp as getAll, createContactOp as createContact, updateContactOp as updateContact, deleteContactOp as deleteContact, getContactOp as getContact, getAllContactsOp as getAllContacts, createServiceOp as createService, updateServiceOp as updateService, deleteServiceOp as deleteService, getServiceOp as getService, getAllServicesOp as getAllServices, createRiskAssessmentOp as createRiskAssessment, getRiskAssessmentOp as getRiskAssessment, getAllRiskAssessmentsOp as getAllRiskAssessments, getAllComplianceReportsOp as getAllComplianceReports, deleteComplianceReportOp as deleteComplianceReport, getBusinessAssociateAgreementOp as getBusinessAssociateAgreement, deleteBusinessAssociateAgreementOp as deleteBusinessAssociateAgreement, updateBusinessAssociateAgreementOp as updateBusinessAssociateAgreement, getDataPrivacyAgreementOp as getDataPrivacyAgreement, deleteDataPrivacyAgreementOp as deleteDataPrivacyAgreement, updateDataPrivacyAgreementOp as updateDataPrivacyAgreement, linkThirdPartyOp as linkThirdParty, unlinkThirdPartyOp as unlinkThirdParty, listChildThirdPartiesOp as listChildThirdParties, publishOp as publish, };
|
|
34
|
+
export { createOp as create, updateOp as update, deleteOp as delete, getOp as get, getAllOp as getAll, createContactOp as createContact, updateContactOp as updateContact, deleteContactOp as deleteContact, getContactOp as getContact, getAllContactsOp as getAllContacts, createServiceOp as createService, updateServiceOp as updateService, deleteServiceOp as deleteService, getServiceOp as getService, getAllServicesOp as getAllServices, createRiskAssessmentOp as createRiskAssessment, getRiskAssessmentOp as getRiskAssessment, getAllRiskAssessmentsOp as getAllRiskAssessments, getAllComplianceReportsOp as getAllComplianceReports, deleteComplianceReportOp as deleteComplianceReport, getBusinessAssociateAgreementOp as getBusinessAssociateAgreement, deleteBusinessAssociateAgreementOp as deleteBusinessAssociateAgreement, updateBusinessAssociateAgreementOp as updateBusinessAssociateAgreement, getDataPrivacyAgreementOp as getDataPrivacyAgreement, deleteDataPrivacyAgreementOp as deleteDataPrivacyAgreement, updateDataPrivacyAgreementOp as updateDataPrivacyAgreement, linkThirdPartyOp as linkThirdParty, unlinkThirdPartyOp as unlinkThirdParty, listChildThirdPartiesOp as listChildThirdParties, publishOp as publish, vetOp as vet, };
|
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.publish = exports.listChildThirdParties = exports.unlinkThirdParty = exports.linkThirdParty = exports.updateDataPrivacyAgreement = exports.deleteDataPrivacyAgreement = exports.getDataPrivacyAgreement = exports.updateBusinessAssociateAgreement = exports.deleteBusinessAssociateAgreement = exports.getBusinessAssociateAgreement = exports.deleteComplianceReport = exports.getAllComplianceReports = exports.getAllRiskAssessments = exports.getRiskAssessment = exports.createRiskAssessment = exports.getAllServices = exports.getService = exports.deleteService = exports.updateService = exports.createService = exports.getAllContacts = exports.getContact = exports.deleteContact = exports.updateContact = exports.createContact = exports.getAll = exports.get = exports.delete = exports.update = exports.create = exports.description = void 0;
|
|
36
|
+
exports.vet = exports.publish = exports.listChildThirdParties = exports.unlinkThirdParty = exports.linkThirdParty = exports.updateDataPrivacyAgreement = exports.deleteDataPrivacyAgreement = exports.getDataPrivacyAgreement = exports.updateBusinessAssociateAgreement = exports.deleteBusinessAssociateAgreement = exports.getBusinessAssociateAgreement = exports.deleteComplianceReport = exports.getAllComplianceReports = exports.getAllRiskAssessments = exports.getRiskAssessment = exports.createRiskAssessment = exports.getAllServices = exports.getService = exports.deleteService = exports.updateService = exports.createService = exports.getAllContacts = exports.getContact = exports.deleteContact = exports.updateContact = exports.createContact = exports.getAll = exports.get = exports.delete = exports.update = exports.create = exports.description = void 0;
|
|
37
37
|
const createOp = __importStar(require("./create.operation"));
|
|
38
38
|
exports.create = createOp;
|
|
39
39
|
const updateOp = __importStar(require("./update.operation"));
|
|
@@ -94,6 +94,8 @@ const listChildThirdPartiesOp = __importStar(require("./listChildThirdParties.op
|
|
|
94
94
|
exports.listChildThirdParties = listChildThirdPartiesOp;
|
|
95
95
|
const publishOp = __importStar(require("./publish.operation"));
|
|
96
96
|
exports.publish = publishOp;
|
|
97
|
+
const vetOp = __importStar(require("./vet.operation"));
|
|
98
|
+
exports.vet = vetOp;
|
|
97
99
|
exports.description = [
|
|
98
100
|
{
|
|
99
101
|
displayName: 'Operation',
|
|
@@ -286,6 +288,12 @@ exports.description = [
|
|
|
286
288
|
description: 'Update an existing third party service',
|
|
287
289
|
action: 'Update a third party service',
|
|
288
290
|
},
|
|
291
|
+
{
|
|
292
|
+
name: 'Vet',
|
|
293
|
+
value: 'vet',
|
|
294
|
+
description: 'Start AI-powered vetting of a third party from its website',
|
|
295
|
+
action: 'Vet a third party',
|
|
296
|
+
},
|
|
289
297
|
],
|
|
290
298
|
default: 'create',
|
|
291
299
|
},
|
|
@@ -319,5 +327,6 @@ exports.description = [
|
|
|
319
327
|
...unlinkThirdPartyOp.description,
|
|
320
328
|
...listChildThirdPartiesOp.description,
|
|
321
329
|
...publishOp.description,
|
|
330
|
+
...vetOp.description,
|
|
322
331
|
];
|
|
323
332
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/thirdParty/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAeA,6DAA+C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/thirdParty/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.description = void 0;
|
|
4
|
+
exports.execute = execute;
|
|
5
|
+
const GenericFunctions_1 = require("../../GenericFunctions");
|
|
6
|
+
exports.description = [
|
|
7
|
+
{
|
|
8
|
+
displayName: 'ThirdParty ID',
|
|
9
|
+
name: 'thirdPartyId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['thirdParty'],
|
|
14
|
+
operation: ['vet'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the third party to vet',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Website URL',
|
|
23
|
+
name: 'websiteUrl',
|
|
24
|
+
type: 'string',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['thirdParty'],
|
|
28
|
+
operation: ['vet'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
default: '',
|
|
32
|
+
description: 'The website URL to crawl for vetting',
|
|
33
|
+
required: true,
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
displayName: 'Procedure',
|
|
37
|
+
name: 'procedure',
|
|
38
|
+
type: 'string',
|
|
39
|
+
typeOptions: {
|
|
40
|
+
rows: 4,
|
|
41
|
+
},
|
|
42
|
+
displayOptions: {
|
|
43
|
+
show: {
|
|
44
|
+
resource: ['thirdParty'],
|
|
45
|
+
operation: ['vet'],
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
default: '',
|
|
49
|
+
description: 'Optional custom vetting procedure instructions',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
async function execute(itemIndex) {
|
|
53
|
+
const thirdPartyId = this.getNodeParameter('thirdPartyId', itemIndex);
|
|
54
|
+
const websiteUrl = this.getNodeParameter('websiteUrl', itemIndex);
|
|
55
|
+
const procedure = this.getNodeParameter('procedure', itemIndex, '');
|
|
56
|
+
const query = `
|
|
57
|
+
mutation VetThirdParty($input: VetThirdPartyInput!) {
|
|
58
|
+
vetThirdParty(input: $input) {
|
|
59
|
+
thirdParty {
|
|
60
|
+
id
|
|
61
|
+
name
|
|
62
|
+
websiteUrl
|
|
63
|
+
vettingStatus
|
|
64
|
+
updatedAt
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
`;
|
|
69
|
+
const input = {
|
|
70
|
+
id: thirdPartyId,
|
|
71
|
+
websiteUrl,
|
|
72
|
+
};
|
|
73
|
+
if (procedure) {
|
|
74
|
+
input.procedure = procedure;
|
|
75
|
+
}
|
|
76
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input });
|
|
77
|
+
return {
|
|
78
|
+
json: responseData,
|
|
79
|
+
pairedItem: { item: itemIndex },
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
//# sourceMappingURL=vet.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vet.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/thirdParty/vet.operation.ts"],"names":[],"mappings":";;;AAgEA,0BAqCC;AAtFD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,eAAe;QAC5B,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,YAAY,CAAC;gBACxB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,kCAAkC;QAC/C,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,aAAa;QAC1B,IAAI,EAAE,YAAY;QAClB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,YAAY,CAAC;gBACxB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,sCAAsC;QACnD,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACZ,IAAI,EAAE,CAAC;SACP;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,YAAY,CAAC;gBACxB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,gDAAgD;KAC7D;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,YAAY,GAAG,IAAI,CAAC,gBAAgB,CAAC,cAAc,EAAE,SAAS,CAAW,CAAC;IAChF,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,SAAS,CAAW,CAAC;IAC5E,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IAE9E,MAAM,KAAK,GAAG;;;;;;;;;;;;EAYb,CAAC;IAEF,MAAM,KAAK,GAA4B;QACtC,EAAE,EAAE,YAAY;QAChB,UAAU;KACV,CAAC;IAEF,IAAI,SAAS,EAAE,CAAC;QACf,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;IAC7B,CAAC;IAED,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;IAExE,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/trackerPattern/get.operation.ts"],"names":[],"mappings":";;;AAkCA,
|
|
1
|
+
{"version":3,"file":"get.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/trackerPattern/get.operation.ts"],"names":[],"mappings":";;;AAkCA,0BAiCC;AApDD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,oBAAoB;QACjC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,+BAA+B;QAC5C,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,SAAS,CAAW,CAAC;IAExF,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;;;;EAmBb,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,gBAAgB,EAAE,CAAC,CAAC;IAEnF,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAll.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/trackerPattern/getAll.operation.ts"],"names":[],"mappings":";;;AAgEA,
|
|
1
|
+
{"version":3,"file":"getAll.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/trackerPattern/getAll.operation.ts"],"names":[],"mappings":";;;AAgEA,0BAwDC;AAzGD,6DAAiE;AAEpD,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,oBAAoB;QACjC,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,+BAA+B;QAC5C,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,2DAA2D;KACxE;IACD;QACC,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,QAAQ,CAAC;gBACrB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,WAAW,EAAE;YACZ,QAAQ,EAAE,CAAC;SACX;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,iCAAiC;KAC9C;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,SAAS,CAAW,CAAC;IACxF,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,SAAS,CAAY,CAAC;IAC3E,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IAEtE,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6Bb,CAAC;IAEF,MAAM,eAAe,GAAG,MAAM,0CAAuB,CAAC,IAAI,CACzD,IAAI,EACJ,KAAK,EACL,EAAE,gBAAgB,EAAE,EACpB,CAAC,QAAQ,EAAE,EAAE;QACZ,MAAM,IAAI,GAAG,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAA+B,CAAC;QACvD,MAAM,IAAI,GAAG,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,IAA+B,CAAC;QACnD,OAAO,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,eAA0C,CAAC;IACzD,CAAC,EACD,SAAS,EACT,KAAK,CACL,CAAC;IAEF,OAAO;QACN,IAAI,EAAE,EAAE,eAAe,EAAE;QACzB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@probo/n8n-nodes-probo",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.192.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "n8n-node build",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "Probo Inc",
|
|
16
|
-
"email": "hello@
|
|
16
|
+
"email": "hello@probo.com"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist"
|