@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
|
@@ -7,6 +7,7 @@ import * as deleteOp from './delete.operation';
|
|
|
7
7
|
import * as activateOp from './activate.operation';
|
|
8
8
|
import * as deactivateOp from './deactivate.operation';
|
|
9
9
|
import * as publishOp from './publish.operation';
|
|
10
|
+
import * as regeneratePolicyOp from './regeneratePolicy.operation';
|
|
10
11
|
import * as translateOp from './translate.operation';
|
|
11
12
|
export declare const description: INodeProperties[];
|
|
12
|
-
export { createOp as create, getOp as get, getAllOp as getAll, updateOp as update, deleteOp as delete, activateOp as activate, deactivateOp as deactivate, publishOp as publish, translateOp as translate, };
|
|
13
|
+
export { createOp as create, getOp as get, getAllOp as getAll, updateOp as update, deleteOp as delete, activateOp as activate, deactivateOp as deactivate, publishOp as publish, regeneratePolicyOp as regeneratePolicy, translateOp as translate, };
|
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.translate = exports.publish = exports.deactivate = exports.activate = exports.delete = exports.update = exports.getAll = exports.get = exports.create = exports.description = void 0;
|
|
36
|
+
exports.translate = exports.regeneratePolicy = exports.publish = exports.deactivate = exports.activate = exports.delete = exports.update = exports.getAll = exports.get = exports.create = exports.description = void 0;
|
|
37
37
|
const createOp = __importStar(require("./create.operation"));
|
|
38
38
|
exports.create = createOp;
|
|
39
39
|
const getOp = __importStar(require("./get.operation"));
|
|
@@ -50,6 +50,8 @@ const deactivateOp = __importStar(require("./deactivate.operation"));
|
|
|
50
50
|
exports.deactivate = deactivateOp;
|
|
51
51
|
const publishOp = __importStar(require("./publish.operation"));
|
|
52
52
|
exports.publish = publishOp;
|
|
53
|
+
const regeneratePolicyOp = __importStar(require("./regeneratePolicy.operation"));
|
|
54
|
+
exports.regeneratePolicy = regeneratePolicyOp;
|
|
53
55
|
const translateOp = __importStar(require("./translate.operation"));
|
|
54
56
|
exports.translate = translateOp;
|
|
55
57
|
exports.description = [
|
|
@@ -106,6 +108,12 @@ exports.description = [
|
|
|
106
108
|
description: 'Publish a new cookie banner version',
|
|
107
109
|
action: 'Publish a cookie banner version',
|
|
108
110
|
},
|
|
111
|
+
{
|
|
112
|
+
name: 'Regenerate Policy',
|
|
113
|
+
value: 'regeneratePolicy',
|
|
114
|
+
description: 'Re-arm tracker policy generation for a published cookie banner',
|
|
115
|
+
action: 'Regenerate a cookie banner tracker policy',
|
|
116
|
+
},
|
|
109
117
|
{
|
|
110
118
|
name: 'Translate',
|
|
111
119
|
value: 'translate',
|
|
@@ -129,6 +137,7 @@ exports.description = [
|
|
|
129
137
|
...activateOp.description,
|
|
130
138
|
...deactivateOp.description,
|
|
131
139
|
...publishOp.description,
|
|
140
|
+
...regeneratePolicyOp.description,
|
|
132
141
|
...translateOp.description,
|
|
133
142
|
];
|
|
134
143
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/cookieBanner/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAeA,6DAA+C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/cookieBanner/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAeA,6DAA+C;AAmGlC,0BAAM;AAlGnB,uDAAyC;AAmG/B,oBAAG;AAlGb,6DAA+C;AAmGlC,0BAAM;AAlGnB,6DAA+C;AAmGlC,0BAAM;AAlGnB,6DAA+C;AAmGlC,0BAAM;AAlGnB,iEAAmD;AAmGpC,8BAAQ;AAlGvB,qEAAuD;AAmGtC,kCAAU;AAlG3B,+DAAiD;AAmGnC,4BAAO;AAlGrB,iFAAmE;AAmG5C,8CAAgB;AAlGvC,mEAAqD;AAmGrC,gCAAS;AAjGZ,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,cAAc,CAAC;aAC1B;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,UAAU;gBACjB,WAAW,EAAE,0BAA0B;gBACvC,MAAM,EAAE,0BAA0B;aAClC;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,4BAA4B;gBACzC,MAAM,EAAE,wBAAwB;aAChC;YACD;gBACC,IAAI,EAAE,YAAY;gBAClB,KAAK,EAAE,YAAY;gBACnB,WAAW,EAAE,4BAA4B;gBACzC,MAAM,EAAE,4BAA4B;aACpC;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,wBAAwB;gBACrC,MAAM,EAAE,wBAAwB;aAChC;YACD;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,WAAW,EAAE,qBAAqB;gBAClC,MAAM,EAAE,qBAAqB;aAC7B;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,yBAAyB;gBACtC,MAAM,EAAE,yBAAyB;aACjC;YACD;gBACC,IAAI,EAAE,SAAS;gBACf,KAAK,EAAE,SAAS;gBAChB,WAAW,EAAE,qCAAqC;gBAClD,MAAM,EAAE,iCAAiC;aACzC;YACD;gBACC,IAAI,EAAE,mBAAmB;gBACzB,KAAK,EAAE,kBAAkB;gBACzB,WAAW,EAAE,gEAAgE;gBAC7E,MAAM,EAAE,2CAA2C;aACnD;YACD;gBACC,IAAI,EAAE,WAAW;gBACjB,KAAK,EAAE,WAAW;gBAClB,WAAW,EAAE,oCAAoC;gBACjD,MAAM,EAAE,2BAA2B;aACnC;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,kCAAkC;gBAC/C,MAAM,EAAE,wBAAwB;aAChC;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;IACD,GAAG,QAAQ,CAAC,WAAW;IACvB,GAAG,KAAK,CAAC,WAAW;IACpB,GAAG,QAAQ,CAAC,WAAW;IACvB,GAAG,QAAQ,CAAC,WAAW;IACvB,GAAG,QAAQ,CAAC,WAAW;IACvB,GAAG,UAAU,CAAC,WAAW;IACzB,GAAG,YAAY,CAAC,WAAW;IAC3B,GAAG,SAAS,CAAC,WAAW;IACxB,GAAG,kBAAkB,CAAC,WAAW;IACjC,GAAG,WAAW,CAAC,WAAW;CAC1B,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
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: 'Cookie Banner ID',
|
|
9
|
+
name: 'cookieBannerId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['cookieBanner'],
|
|
14
|
+
operation: ['regeneratePolicy'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the cookie banner to regenerate the tracker policy for',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
async function execute(itemIndex) {
|
|
23
|
+
const cookieBannerId = this.getNodeParameter('cookieBannerId', itemIndex);
|
|
24
|
+
const query = `
|
|
25
|
+
mutation RegenerateCookieBannerTrackerPolicy($input: RegenerateCookieBannerTrackerPolicyInput!) {
|
|
26
|
+
regenerateCookieBannerTrackerPolicy(input: $input) {
|
|
27
|
+
cookieBanner {
|
|
28
|
+
id
|
|
29
|
+
name
|
|
30
|
+
origin
|
|
31
|
+
state
|
|
32
|
+
createdAt
|
|
33
|
+
updatedAt
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input: { cookieBannerId } });
|
|
39
|
+
return {
|
|
40
|
+
json: responseData,
|
|
41
|
+
pairedItem: { item: itemIndex },
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=regeneratePolicy.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"regeneratePolicy.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/cookieBanner/regeneratePolicy.operation.ts"],"names":[],"mappings":";;;AAkCA,0BA2BC;AA9CD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,kBAAkB;QAC/B,IAAI,EAAE,gBAAgB;QACtB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,cAAc,CAAC;gBAC1B,SAAS,EAAE,CAAC,kBAAkB,CAAC;aAC/B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,kEAAkE;QAC/E,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,cAAc,GAAG,IAAI,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,SAAS,CAAW,CAAC;IAEpF,MAAM,KAAK,GAAG;;;;;;;;;;;;;EAab,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,EAAE,cAAc,EAAE,EAAE,CAAC,CAAC;IAE5F,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
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: 'Scope ID',
|
|
9
|
+
name: 'riskAssessmentScopeId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['riskAssessment'],
|
|
14
|
+
operation: ['createBoundary'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the scope',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Name',
|
|
23
|
+
name: 'name',
|
|
24
|
+
type: 'string',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['riskAssessment'],
|
|
28
|
+
operation: ['createBoundary'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
default: '',
|
|
32
|
+
description: 'The name of the boundary',
|
|
33
|
+
required: true,
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
displayName: 'Parent Boundary ID',
|
|
37
|
+
name: 'parentBoundaryId',
|
|
38
|
+
type: 'string',
|
|
39
|
+
displayOptions: {
|
|
40
|
+
show: {
|
|
41
|
+
resource: ['riskAssessment'],
|
|
42
|
+
operation: ['createBoundary'],
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
default: '',
|
|
46
|
+
description: 'The ID of the parent boundary, for nested boundaries (optional)',
|
|
47
|
+
},
|
|
48
|
+
];
|
|
49
|
+
async function execute(itemIndex) {
|
|
50
|
+
const riskAssessmentScopeId = this.getNodeParameter('riskAssessmentScopeId', itemIndex);
|
|
51
|
+
const name = this.getNodeParameter('name', itemIndex);
|
|
52
|
+
const parentBoundaryId = this.getNodeParameter('parentBoundaryId', itemIndex, '');
|
|
53
|
+
const query = `
|
|
54
|
+
mutation CreateRiskAssessmentBoundary($input: CreateRiskAssessmentBoundaryInput!) {
|
|
55
|
+
createRiskAssessmentBoundary(input: $input) {
|
|
56
|
+
riskAssessmentBoundaryEdge {
|
|
57
|
+
node {
|
|
58
|
+
id
|
|
59
|
+
riskAssessmentScopeId
|
|
60
|
+
parentBoundaryId
|
|
61
|
+
name
|
|
62
|
+
createdAt
|
|
63
|
+
updatedAt
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
`;
|
|
69
|
+
const input = { riskAssessmentScopeId, name };
|
|
70
|
+
if (parentBoundaryId)
|
|
71
|
+
input.parentBoundaryId = parentBoundaryId;
|
|
72
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input });
|
|
73
|
+
return {
|
|
74
|
+
json: responseData,
|
|
75
|
+
pairedItem: { item: itemIndex },
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
//# sourceMappingURL=createBoundary.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createBoundary.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/createBoundary.operation.ts"],"names":[],"mappings":";;;AA6DA,0BAkCC;AAhFD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,uBAAuB;QAC7B,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,qBAAqB;QAClC,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,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,0BAA0B;QACvC,QAAQ,EAAE,IAAI;KACd;IACD;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,gBAAgB,CAAC;aAC7B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,iEAAiE;KAC9E;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,qBAAqB,GAAG,IAAI,CAAC,gBAAgB,CAAC,uBAAuB,EAAE,SAAS,CAAW,CAAC;IAClG,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,SAAS,CAAW,CAAC;IAChE,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IAE5F,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;EAeb,CAAC;IAEF,MAAM,KAAK,GAA4B,EAAE,qBAAqB,EAAE,IAAI,EAAE,CAAC;IACvE,IAAI,gBAAgB;QAAE,KAAK,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;IAEhE,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"}
|
|
@@ -33,10 +33,6 @@ exports.description = [
|
|
|
33
33
|
name: 'Entity',
|
|
34
34
|
value: 'ENTITY',
|
|
35
35
|
},
|
|
36
|
-
{
|
|
37
|
-
name: 'Boundary',
|
|
38
|
-
value: 'BOUNDARY',
|
|
39
|
-
},
|
|
40
36
|
{
|
|
41
37
|
name: 'Asset',
|
|
42
38
|
value: 'ASSET',
|
|
@@ -64,11 +60,25 @@ exports.description = [
|
|
|
64
60
|
description: 'The name of the node',
|
|
65
61
|
required: true,
|
|
66
62
|
},
|
|
63
|
+
{
|
|
64
|
+
displayName: 'Boundary ID',
|
|
65
|
+
name: 'boundaryId',
|
|
66
|
+
type: 'string',
|
|
67
|
+
displayOptions: {
|
|
68
|
+
show: {
|
|
69
|
+
resource: ['riskAssessment'],
|
|
70
|
+
operation: ['createNode'],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
default: '',
|
|
74
|
+
description: 'The ID of the boundary that contains this node (optional)',
|
|
75
|
+
},
|
|
67
76
|
];
|
|
68
77
|
async function execute(itemIndex) {
|
|
69
78
|
const riskAssessmentScopeId = this.getNodeParameter('riskAssessmentScopeId', itemIndex);
|
|
70
79
|
const nodeType = this.getNodeParameter('nodeType', itemIndex);
|
|
71
80
|
const name = this.getNodeParameter('name', itemIndex);
|
|
81
|
+
const boundaryId = this.getNodeParameter('boundaryId', itemIndex, '');
|
|
72
82
|
const query = `
|
|
73
83
|
mutation CreateRiskAssessmentNode($input: CreateRiskAssessmentNodeInput!) {
|
|
74
84
|
createRiskAssessmentNode(input: $input) {
|
|
@@ -76,6 +86,7 @@ async function execute(itemIndex) {
|
|
|
76
86
|
node {
|
|
77
87
|
id
|
|
78
88
|
riskAssessmentScopeId
|
|
89
|
+
boundaryId
|
|
79
90
|
nodeType
|
|
80
91
|
name
|
|
81
92
|
createdAt
|
|
@@ -85,9 +96,10 @@ async function execute(itemIndex) {
|
|
|
85
96
|
}
|
|
86
97
|
}
|
|
87
98
|
`;
|
|
88
|
-
const
|
|
89
|
-
|
|
90
|
-
|
|
99
|
+
const input = { riskAssessmentScopeId, nodeType, name };
|
|
100
|
+
if (boundaryId)
|
|
101
|
+
input.boundaryId = boundaryId;
|
|
102
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input });
|
|
91
103
|
return {
|
|
92
104
|
json: responseData,
|
|
93
105
|
pairedItem: { item: itemIndex },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createNode.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/createNode.operation.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"createNode.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/createNode.operation.ts"],"names":[],"mappings":";;;AAyFA,0BAoCC;AA9GD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,uBAAuB;QAC7B,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,qBAAqB;QAClC,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,UAAU;QAChB,IAAI,EAAE,SAAS;QACf,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,YAAY,CAAC;aACzB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;aACf;YACD;gBACC,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,OAAO;aACd;YACD;gBACC,IAAI,EAAE,MAAM;gBACZ,KAAK,EAAE,MAAM;aACb;SACD;QACD,OAAO,EAAE,QAAQ;QACjB,WAAW,EAAE,sBAAsB;QACnC,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,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,sBAAsB;QACnC,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,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,YAAY,CAAC;aACzB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,2DAA2D;KACxE;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,qBAAqB,GAAG,IAAI,CAAC,gBAAgB,CAAC,uBAAuB,EAAE,SAAS,CAAW,CAAC;IAClG,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,SAAS,CAAW,CAAC;IACxE,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,SAAS,CAAW,CAAC;IAChE,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IAEhF,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;EAgBb,CAAC;IAEF,MAAM,KAAK,GAA4B,EAAE,qBAAqB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjF,IAAI,UAAU;QAAE,KAAK,CAAC,UAAU,GAAG,UAAU,CAAC;IAE9C,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"}
|
|
@@ -0,0 +1,39 @@
|
|
|
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: ['deleteBoundary'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the boundary to delete',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
async function execute(itemIndex) {
|
|
23
|
+
const boundaryId = this.getNodeParameter('boundaryId', itemIndex);
|
|
24
|
+
const query = `
|
|
25
|
+
mutation DeleteRiskAssessmentBoundary($input: DeleteRiskAssessmentBoundaryInput!) {
|
|
26
|
+
deleteRiskAssessmentBoundary(input: $input) {
|
|
27
|
+
deletedRiskAssessmentBoundaryId
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
`;
|
|
31
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, {
|
|
32
|
+
input: { riskAssessmentBoundaryId: boundaryId },
|
|
33
|
+
});
|
|
34
|
+
return {
|
|
35
|
+
json: responseData,
|
|
36
|
+
pairedItem: { item: itemIndex },
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=deleteBoundary.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deleteBoundary.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/deleteBoundary.operation.ts"],"names":[],"mappings":";;;AAkCA,0BAsBC;AAzCD,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;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,SAAS,CAAW,CAAC;IAE5E,MAAM,KAAK,GAAG;;;;;;EAMb,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE;QAC5D,KAAK,EAAE,EAAE,wBAAwB,EAAE,UAAU,EAAE;KAC/C,CAAC,CAAC;IAEH,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,90 @@
|
|
|
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: 'Scope ID',
|
|
9
|
+
name: 'scopeId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['riskAssessment'],
|
|
14
|
+
operation: ['getAllBoundaries'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the scope',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Return All',
|
|
23
|
+
name: 'returnAll',
|
|
24
|
+
type: 'boolean',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['riskAssessment'],
|
|
28
|
+
operation: ['getAllBoundaries'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
default: false,
|
|
32
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Limit',
|
|
36
|
+
name: 'limit',
|
|
37
|
+
type: 'number',
|
|
38
|
+
displayOptions: {
|
|
39
|
+
show: {
|
|
40
|
+
resource: ['riskAssessment'],
|
|
41
|
+
operation: ['getAllBoundaries'],
|
|
42
|
+
returnAll: [false],
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
typeOptions: {
|
|
46
|
+
minValue: 1,
|
|
47
|
+
},
|
|
48
|
+
default: 50,
|
|
49
|
+
description: 'Max number of results to return',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
async function execute(itemIndex) {
|
|
53
|
+
const scopeId = this.getNodeParameter('scopeId', itemIndex);
|
|
54
|
+
const returnAll = this.getNodeParameter('returnAll', itemIndex);
|
|
55
|
+
const limit = this.getNodeParameter('limit', itemIndex, 50);
|
|
56
|
+
const query = `
|
|
57
|
+
query GetBoundaries($scopeId: ID!, $first: Int, $after: CursorKey) {
|
|
58
|
+
node(id: $scopeId) {
|
|
59
|
+
... on RiskAssessmentScope {
|
|
60
|
+
boundaries(first: $first, after: $after) {
|
|
61
|
+
edges {
|
|
62
|
+
node {
|
|
63
|
+
id
|
|
64
|
+
riskAssessmentScopeId
|
|
65
|
+
parentBoundaryId
|
|
66
|
+
name
|
|
67
|
+
createdAt
|
|
68
|
+
updatedAt
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
pageInfo {
|
|
72
|
+
hasNextPage
|
|
73
|
+
endCursor
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
`;
|
|
80
|
+
const boundaries = await GenericFunctions_1.proboApiRequestAllItems.call(this, query, { scopeId }, (response) => {
|
|
81
|
+
const data = response === null || response === void 0 ? void 0 : response.data;
|
|
82
|
+
const node = data === null || data === void 0 ? void 0 : data.node;
|
|
83
|
+
return node === null || node === void 0 ? void 0 : node.boundaries;
|
|
84
|
+
}, returnAll, limit);
|
|
85
|
+
return {
|
|
86
|
+
json: { boundaries },
|
|
87
|
+
pairedItem: { item: itemIndex },
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=getAllBoundaries.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAllBoundaries.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/getAllBoundaries.operation.ts"],"names":[],"mappings":";;;AAgEA,0BAkDC;AAnGD,6DAAiE;AAEpD,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,gBAAgB,CAAC;gBAC5B,SAAS,EAAE,CAAC,kBAAkB,CAAC;aAC/B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,qBAAqB;QAClC,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,kBAAkB,CAAC;aAC/B;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,kBAAkB,CAAC;gBAC/B,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,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,CAAW,CAAC;IACtE,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;;;;;;;;;;;;;;;;;;;;;;;EAuBb,CAAC;IAEF,MAAM,UAAU,GAAG,MAAM,0CAAuB,CAAC,IAAI,CACpD,IAAI,EACJ,KAAK,EACL,EAAE,OAAO,EAAE,EACX,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,UAAqC,CAAC;IACpD,CAAC,EACD,SAAS,EACT,KAAK,CACL,CAAC;IAEF,OAAO;QACN,IAAI,EAAE,EAAE,UAAU,EAAE;QACpB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
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: ['getBoundary'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the boundary',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
async function execute(itemIndex) {
|
|
23
|
+
const boundaryId = this.getNodeParameter('boundaryId', itemIndex);
|
|
24
|
+
const query = `
|
|
25
|
+
query GetRiskAssessmentBoundary($id: ID!) {
|
|
26
|
+
node(id: $id) {
|
|
27
|
+
... on RiskAssessmentBoundary {
|
|
28
|
+
id
|
|
29
|
+
riskAssessmentScopeId
|
|
30
|
+
parentBoundaryId
|
|
31
|
+
name
|
|
32
|
+
createdAt
|
|
33
|
+
updatedAt
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { id: boundaryId });
|
|
39
|
+
return {
|
|
40
|
+
json: responseData,
|
|
41
|
+
pairedItem: { item: itemIndex },
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=getBoundary.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBoundary.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/getBoundary.operation.ts"],"names":[],"mappings":";;;AAkCA,0BA2BC;AA9CD,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,aAAa,CAAC;aAC1B;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,wBAAwB;QACrC,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,UAAU,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,SAAS,CAAW,CAAC;IAE5E,MAAM,KAAK,GAAG;;;;;;;;;;;;;EAab,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,EAAE,CAAC,CAAC;IAEjF,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -15,6 +15,11 @@ import * as getNodeOp from './getNode.operation';
|
|
|
15
15
|
import * as getAllNodesOp from './getAllNodes.operation';
|
|
16
16
|
import * as updateNodeOp from './updateNode.operation';
|
|
17
17
|
import * as deleteNodeOp from './deleteNode.operation';
|
|
18
|
+
import * as createBoundaryOp from './createBoundary.operation';
|
|
19
|
+
import * as getBoundaryOp from './getBoundary.operation';
|
|
20
|
+
import * as getAllBoundariesOp from './getAllBoundaries.operation';
|
|
21
|
+
import * as updateBoundaryOp from './updateBoundary.operation';
|
|
22
|
+
import * as deleteBoundaryOp from './deleteBoundary.operation';
|
|
18
23
|
import * as createProcessOp from './createProcess.operation';
|
|
19
24
|
import * as getProcessOp from './getProcess.operation';
|
|
20
25
|
import * as getAllProcessesOp from './getAllProcesses.operation';
|
|
@@ -35,4 +40,4 @@ import * as unlinkScenarioThreatOp from './unlinkScenarioThreat.operation';
|
|
|
35
40
|
import * as linkScenarioRiskOp from './linkScenarioRisk.operation';
|
|
36
41
|
import * as unlinkScenarioRiskOp from './unlinkScenarioRisk.operation';
|
|
37
42
|
export declare const description: INodeProperties[];
|
|
38
|
-
export { createOp as create, getOp as get, getAllOp as getAll, updateOp as update, deleteOp as delete, createScopeOp as createScope, getScopeOp as getScope, getAllScopesOp as getAllScopes, updateScopeOp as updateScope, deleteScopeOp as deleteScope, getScopeMermaidChartOp as getScopeMermaidChart, createNodeOp as createNode, getNodeOp as getNode, getAllNodesOp as getAllNodes, updateNodeOp as updateNode, deleteNodeOp as deleteNode, createProcessOp as createProcess, getProcessOp as getProcess, getAllProcessesOp as getAllProcesses, updateProcessOp as updateProcess, deleteProcessOp as deleteProcess, createThreatOp as createThreat, getThreatOp as getThreat, getAllThreatsOp as getAllThreats, updateThreatOp as updateThreat, deleteThreatOp as deleteThreat, createScenarioOp as createScenario, getScenarioOp as getScenario, getAllScenariosOp as getAllScenarios, updateScenarioOp as updateScenario, deleteScenarioOp as deleteScenario, linkScenarioThreatOp as linkScenarioThreat, unlinkScenarioThreatOp as unlinkScenarioThreat, linkScenarioRiskOp as linkScenarioRisk, unlinkScenarioRiskOp as unlinkScenarioRisk, };
|
|
43
|
+
export { createOp as create, getOp as get, getAllOp as getAll, updateOp as update, deleteOp as delete, createScopeOp as createScope, getScopeOp as getScope, getAllScopesOp as getAllScopes, updateScopeOp as updateScope, deleteScopeOp as deleteScope, getScopeMermaidChartOp as getScopeMermaidChart, createNodeOp as createNode, getNodeOp as getNode, getAllNodesOp as getAllNodes, updateNodeOp as updateNode, deleteNodeOp as deleteNode, createBoundaryOp as createBoundary, getBoundaryOp as getBoundary, getAllBoundariesOp as getAllBoundaries, updateBoundaryOp as updateBoundary, deleteBoundaryOp as deleteBoundary, createProcessOp as createProcess, getProcessOp as getProcess, getAllProcessesOp as getAllProcesses, updateProcessOp as updateProcess, deleteProcessOp as deleteProcess, createThreatOp as createThreat, getThreatOp as getThreat, getAllThreatsOp as getAllThreats, updateThreatOp as updateThreat, deleteThreatOp as deleteThreat, createScenarioOp as createScenario, getScenarioOp as getScenario, getAllScenariosOp as getAllScenarios, updateScenarioOp as updateScenario, deleteScenarioOp as deleteScenario, linkScenarioThreatOp as linkScenarioThreat, unlinkScenarioThreatOp as unlinkScenarioThreat, linkScenarioRiskOp as linkScenarioRisk, unlinkScenarioRiskOp as unlinkScenarioRisk, };
|
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.unlinkScenarioRisk = exports.linkScenarioRisk = exports.unlinkScenarioThreat = exports.linkScenarioThreat = exports.deleteScenario = exports.updateScenario = exports.getAllScenarios = exports.getScenario = exports.createScenario = exports.deleteThreat = exports.updateThreat = exports.getAllThreats = exports.getThreat = exports.createThreat = exports.deleteProcess = exports.updateProcess = exports.getAllProcesses = exports.getProcess = exports.createProcess = exports.deleteNode = exports.updateNode = exports.getAllNodes = exports.getNode = exports.createNode = exports.getScopeMermaidChart = exports.deleteScope = exports.updateScope = exports.getAllScopes = exports.getScope = exports.createScope = exports.delete = exports.update = exports.getAll = exports.get = exports.create = exports.description = void 0;
|
|
36
|
+
exports.unlinkScenarioRisk = exports.linkScenarioRisk = exports.unlinkScenarioThreat = exports.linkScenarioThreat = exports.deleteScenario = exports.updateScenario = exports.getAllScenarios = exports.getScenario = exports.createScenario = exports.deleteThreat = exports.updateThreat = exports.getAllThreats = exports.getThreat = exports.createThreat = exports.deleteProcess = exports.updateProcess = exports.getAllProcesses = exports.getProcess = exports.createProcess = exports.deleteBoundary = exports.updateBoundary = exports.getAllBoundaries = exports.getBoundary = exports.createBoundary = exports.deleteNode = exports.updateNode = exports.getAllNodes = exports.getNode = exports.createNode = exports.getScopeMermaidChart = exports.deleteScope = exports.updateScope = exports.getAllScopes = exports.getScope = exports.createScope = exports.delete = exports.update = exports.getAll = exports.get = exports.create = exports.description = void 0;
|
|
37
37
|
const createOp = __importStar(require("./create.operation"));
|
|
38
38
|
exports.create = createOp;
|
|
39
39
|
const getOp = __importStar(require("./get.operation"));
|
|
@@ -66,6 +66,16 @@ const updateNodeOp = __importStar(require("./updateNode.operation"));
|
|
|
66
66
|
exports.updateNode = updateNodeOp;
|
|
67
67
|
const deleteNodeOp = __importStar(require("./deleteNode.operation"));
|
|
68
68
|
exports.deleteNode = deleteNodeOp;
|
|
69
|
+
const createBoundaryOp = __importStar(require("./createBoundary.operation"));
|
|
70
|
+
exports.createBoundary = createBoundaryOp;
|
|
71
|
+
const getBoundaryOp = __importStar(require("./getBoundary.operation"));
|
|
72
|
+
exports.getBoundary = getBoundaryOp;
|
|
73
|
+
const getAllBoundariesOp = __importStar(require("./getAllBoundaries.operation"));
|
|
74
|
+
exports.getAllBoundaries = getAllBoundariesOp;
|
|
75
|
+
const updateBoundaryOp = __importStar(require("./updateBoundary.operation"));
|
|
76
|
+
exports.updateBoundary = updateBoundaryOp;
|
|
77
|
+
const deleteBoundaryOp = __importStar(require("./deleteBoundary.operation"));
|
|
78
|
+
exports.deleteBoundary = deleteBoundaryOp;
|
|
69
79
|
const createProcessOp = __importStar(require("./createProcess.operation"));
|
|
70
80
|
exports.createProcess = createProcessOp;
|
|
71
81
|
const getProcessOp = __importStar(require("./getProcess.operation"));
|
|
@@ -122,6 +132,12 @@ exports.description = [
|
|
|
122
132
|
description: 'Create a risk assessment',
|
|
123
133
|
action: 'Create a risk assessment',
|
|
124
134
|
},
|
|
135
|
+
{
|
|
136
|
+
name: 'Create Boundary',
|
|
137
|
+
value: 'createBoundary',
|
|
138
|
+
description: 'Create a boundary in a scope',
|
|
139
|
+
action: 'Create a boundary',
|
|
140
|
+
},
|
|
125
141
|
{
|
|
126
142
|
name: 'Create Node',
|
|
127
143
|
value: 'createNode',
|
|
@@ -158,6 +174,12 @@ exports.description = [
|
|
|
158
174
|
description: 'Delete a risk assessment',
|
|
159
175
|
action: 'Delete a risk assessment',
|
|
160
176
|
},
|
|
177
|
+
{
|
|
178
|
+
name: 'Delete Boundary',
|
|
179
|
+
value: 'deleteBoundary',
|
|
180
|
+
description: 'Delete a boundary',
|
|
181
|
+
action: 'Delete a boundary',
|
|
182
|
+
},
|
|
161
183
|
{
|
|
162
184
|
name: 'Delete Node',
|
|
163
185
|
value: 'deleteNode',
|
|
@@ -194,12 +216,23 @@ exports.description = [
|
|
|
194
216
|
description: 'Get a risk assessment',
|
|
195
217
|
action: 'Get a risk assessment',
|
|
196
218
|
},
|
|
219
|
+
{
|
|
220
|
+
name: 'Get Boundary',
|
|
221
|
+
value: 'getBoundary',
|
|
222
|
+
description: 'Get a boundary',
|
|
223
|
+
action: 'Get a boundary',
|
|
224
|
+
},
|
|
197
225
|
{
|
|
198
226
|
name: 'Get Many',
|
|
199
227
|
value: 'getAll',
|
|
200
228
|
description: 'Get many risk assessments',
|
|
201
229
|
action: 'Get many risk assessments',
|
|
202
230
|
},
|
|
231
|
+
{
|
|
232
|
+
name: 'Get Many Boundaries',
|
|
233
|
+
value: 'getAllBoundaries',
|
|
234
|
+
action: 'Get many boundaries',
|
|
235
|
+
},
|
|
203
236
|
{
|
|
204
237
|
name: 'Get Many Nodes',
|
|
205
238
|
value: 'getAllNodes',
|
|
@@ -291,6 +324,12 @@ exports.description = [
|
|
|
291
324
|
description: 'Update a risk assessment',
|
|
292
325
|
action: 'Update a risk assessment',
|
|
293
326
|
},
|
|
327
|
+
{
|
|
328
|
+
name: 'Update Boundary',
|
|
329
|
+
value: 'updateBoundary',
|
|
330
|
+
description: 'Update a boundary',
|
|
331
|
+
action: 'Update a boundary',
|
|
332
|
+
},
|
|
294
333
|
{
|
|
295
334
|
name: 'Update Node',
|
|
296
335
|
value: 'updateNode',
|
|
@@ -340,6 +379,11 @@ exports.description = [
|
|
|
340
379
|
...getAllNodesOp.description,
|
|
341
380
|
...updateNodeOp.description,
|
|
342
381
|
...deleteNodeOp.description,
|
|
382
|
+
...createBoundaryOp.description,
|
|
383
|
+
...getBoundaryOp.description,
|
|
384
|
+
...getAllBoundariesOp.description,
|
|
385
|
+
...updateBoundaryOp.description,
|
|
386
|
+
...deleteBoundaryOp.description,
|
|
343
387
|
...createProcessOp.description,
|
|
344
388
|
...getProcessOp.description,
|
|
345
389
|
...getAllProcessesOp.description,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAeA,6DAA+C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/riskAssessment/index.ts"],"names":[],"mappings":"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"}
|