@probo/n8n-nodes-probo 0.102.0 → 0.105.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.
Files changed (43) hide show
  1. package/dist/nodes/Probo/Probo.node.js +5 -0
  2. package/dist/nodes/Probo/Probo.node.js.map +1 -1
  3. package/dist/nodes/Probo/actions/index.js +2 -0
  4. package/dist/nodes/Probo/actions/index.js.map +1 -1
  5. package/dist/nodes/Probo/actions/risk/create.operation.d.ts +3 -0
  6. package/dist/nodes/Probo/actions/risk/create.operation.js +232 -0
  7. package/dist/nodes/Probo/actions/risk/create.operation.js.map +1 -0
  8. package/dist/nodes/Probo/actions/risk/delete.operation.d.ts +3 -0
  9. package/dist/nodes/Probo/actions/risk/delete.operation.js +37 -0
  10. package/dist/nodes/Probo/actions/risk/delete.operation.js.map +1 -0
  11. package/dist/nodes/Probo/actions/risk/get.operation.d.ts +3 -0
  12. package/dist/nodes/Probo/actions/risk/get.operation.js +55 -0
  13. package/dist/nodes/Probo/actions/risk/get.operation.js.map +1 -0
  14. package/dist/nodes/Probo/actions/risk/getAll.operation.d.ts +3 -0
  15. package/dist/nodes/Probo/actions/risk/getAll.operation.js +98 -0
  16. package/dist/nodes/Probo/actions/risk/getAll.operation.js.map +1 -0
  17. package/dist/nodes/Probo/actions/risk/index.d.ts +14 -0
  18. package/dist/nodes/Probo/actions/risk/index.js +152 -0
  19. package/dist/nodes/Probo/actions/risk/index.js.map +1 -0
  20. package/dist/nodes/Probo/actions/risk/linkDocument.operation.d.ts +3 -0
  21. package/dist/nodes/Probo/actions/risk/linkDocument.operation.js +63 -0
  22. package/dist/nodes/Probo/actions/risk/linkDocument.operation.js.map +1 -0
  23. package/dist/nodes/Probo/actions/risk/linkMeasure.operation.d.ts +3 -0
  24. package/dist/nodes/Probo/actions/risk/linkMeasure.operation.js +63 -0
  25. package/dist/nodes/Probo/actions/risk/linkMeasure.operation.js.map +1 -0
  26. package/dist/nodes/Probo/actions/risk/linkObligation.operation.d.ts +3 -0
  27. package/dist/nodes/Probo/actions/risk/linkObligation.operation.js +63 -0
  28. package/dist/nodes/Probo/actions/risk/linkObligation.operation.js.map +1 -0
  29. package/dist/nodes/Probo/actions/risk/unlinkDocument.operation.d.ts +3 -0
  30. package/dist/nodes/Probo/actions/risk/unlinkDocument.operation.js +53 -0
  31. package/dist/nodes/Probo/actions/risk/unlinkDocument.operation.js.map +1 -0
  32. package/dist/nodes/Probo/actions/risk/unlinkMeasure.operation.d.ts +3 -0
  33. package/dist/nodes/Probo/actions/risk/unlinkMeasure.operation.js +53 -0
  34. package/dist/nodes/Probo/actions/risk/unlinkMeasure.operation.js.map +1 -0
  35. package/dist/nodes/Probo/actions/risk/unlinkObligation.operation.d.ts +3 -0
  36. package/dist/nodes/Probo/actions/risk/unlinkObligation.operation.js +53 -0
  37. package/dist/nodes/Probo/actions/risk/unlinkObligation.operation.js.map +1 -0
  38. package/dist/nodes/Probo/actions/risk/update.operation.d.ts +3 -0
  39. package/dist/nodes/Probo/actions/risk/update.operation.js +214 -0
  40. package/dist/nodes/Probo/actions/risk/update.operation.js.map +1 -0
  41. package/dist/package.json +1 -1
  42. package/dist/tsconfig.tsbuildinfo +1 -1
  43. package/package.json +1 -1
@@ -0,0 +1,214 @@
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: 'Risk ID',
9
+ name: 'riskId',
10
+ type: 'string',
11
+ displayOptions: {
12
+ show: {
13
+ resource: ['risk'],
14
+ operation: ['update'],
15
+ },
16
+ },
17
+ default: '',
18
+ description: 'The ID of the risk to update',
19
+ required: true,
20
+ },
21
+ {
22
+ displayName: 'Name',
23
+ name: 'name',
24
+ type: 'string',
25
+ displayOptions: {
26
+ show: {
27
+ resource: ['risk'],
28
+ operation: ['update'],
29
+ },
30
+ },
31
+ default: '',
32
+ description: 'The name of the risk',
33
+ },
34
+ {
35
+ displayName: 'Category',
36
+ name: 'category',
37
+ type: 'string',
38
+ displayOptions: {
39
+ show: {
40
+ resource: ['risk'],
41
+ operation: ['update'],
42
+ },
43
+ },
44
+ default: '',
45
+ description: 'The category of the risk',
46
+ },
47
+ {
48
+ displayName: 'Treatment',
49
+ name: 'treatment',
50
+ type: 'options',
51
+ displayOptions: {
52
+ show: {
53
+ resource: ['risk'],
54
+ operation: ['update'],
55
+ },
56
+ },
57
+ options: [
58
+ {
59
+ name: 'Mitigated',
60
+ value: 'MITIGATED',
61
+ },
62
+ {
63
+ name: 'Accepted',
64
+ value: 'ACCEPTED',
65
+ },
66
+ {
67
+ name: 'Avoided',
68
+ value: 'AVOIDED',
69
+ },
70
+ {
71
+ name: 'Transferred',
72
+ value: 'TRANSFERRED',
73
+ },
74
+ ],
75
+ default: 'MITIGATED',
76
+ description: 'The treatment strategy for the risk',
77
+ },
78
+ {
79
+ displayName: 'Additional Fields',
80
+ name: 'additionalFields',
81
+ type: 'collection',
82
+ placeholder: 'Add Field',
83
+ default: {},
84
+ displayOptions: {
85
+ show: {
86
+ resource: ['risk'],
87
+ operation: ['update'],
88
+ },
89
+ },
90
+ options: [
91
+ {
92
+ displayName: 'Description',
93
+ name: 'description',
94
+ type: 'string',
95
+ default: '',
96
+ description: 'The description of the risk',
97
+ },
98
+ {
99
+ displayName: 'Inherent Impact',
100
+ name: 'inherentImpact',
101
+ type: 'number',
102
+ typeOptions: {
103
+ minValue: 1,
104
+ maxValue: 5,
105
+ },
106
+ default: 1,
107
+ description: 'The inherent impact of the risk (1-5)',
108
+ },
109
+ {
110
+ displayName: 'Inherent Likelihood',
111
+ name: 'inherentLikelihood',
112
+ type: 'number',
113
+ typeOptions: {
114
+ minValue: 1,
115
+ maxValue: 5,
116
+ },
117
+ default: 1,
118
+ description: 'The inherent likelihood of the risk (1-5)',
119
+ },
120
+ {
121
+ displayName: 'Note',
122
+ name: 'note',
123
+ type: 'string',
124
+ default: '',
125
+ description: 'Additional notes about the risk',
126
+ },
127
+ {
128
+ displayName: 'Owner ID',
129
+ name: 'ownerId',
130
+ type: 'string',
131
+ default: '',
132
+ description: 'The ID of the person who owns this risk',
133
+ },
134
+ {
135
+ displayName: 'Residual Impact',
136
+ name: 'residualImpact',
137
+ type: 'number',
138
+ typeOptions: {
139
+ minValue: 1,
140
+ maxValue: 5,
141
+ },
142
+ default: 1,
143
+ description: 'The residual impact of the risk (1-5)',
144
+ },
145
+ {
146
+ displayName: 'Residual Likelihood',
147
+ name: 'residualLikelihood',
148
+ type: 'number',
149
+ typeOptions: {
150
+ minValue: 1,
151
+ maxValue: 5,
152
+ },
153
+ default: 1,
154
+ description: 'The residual likelihood of the risk (1-5)',
155
+ },
156
+ ],
157
+ },
158
+ ];
159
+ async function execute(itemIndex) {
160
+ const riskId = this.getNodeParameter('riskId', itemIndex);
161
+ const name = this.getNodeParameter('name', itemIndex, '');
162
+ const category = this.getNodeParameter('category', itemIndex, '');
163
+ const treatment = this.getNodeParameter('treatment', itemIndex, '');
164
+ const additionalFields = this.getNodeParameter('additionalFields', itemIndex, {});
165
+ const query = `
166
+ mutation UpdateRisk($input: UpdateRiskInput!) {
167
+ updateRisk(input: $input) {
168
+ risk {
169
+ id
170
+ name
171
+ description
172
+ category
173
+ treatment
174
+ inherentLikelihood
175
+ inherentImpact
176
+ inherentRiskScore
177
+ residualLikelihood
178
+ residualImpact
179
+ residualRiskScore
180
+ note
181
+ createdAt
182
+ updatedAt
183
+ }
184
+ }
185
+ }
186
+ `;
187
+ const input = { id: riskId };
188
+ if (name)
189
+ input.name = name;
190
+ if (category)
191
+ input.category = category;
192
+ if (treatment)
193
+ input.treatment = treatment;
194
+ if (additionalFields.description !== undefined)
195
+ input.description = additionalFields.description === '' ? null : additionalFields.description;
196
+ if (additionalFields.ownerId !== undefined)
197
+ input.ownerId = additionalFields.ownerId === '' ? null : additionalFields.ownerId;
198
+ if (additionalFields.inherentLikelihood !== undefined)
199
+ input.inherentLikelihood = additionalFields.inherentLikelihood;
200
+ if (additionalFields.inherentImpact !== undefined)
201
+ input.inherentImpact = additionalFields.inherentImpact;
202
+ if (additionalFields.residualLikelihood !== undefined)
203
+ input.residualLikelihood = additionalFields.residualLikelihood;
204
+ if (additionalFields.residualImpact !== undefined)
205
+ input.residualImpact = additionalFields.residualImpact;
206
+ if (additionalFields.note !== undefined)
207
+ input.note = additionalFields.note === '' ? null : additionalFields.note;
208
+ const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input });
209
+ return {
210
+ json: responseData,
211
+ pairedItem: { item: itemIndex },
212
+ };
213
+ }
214
+ //# sourceMappingURL=update.operation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/risk/update.operation.ts"],"names":[],"mappings":"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"}
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@probo/n8n-nodes-probo",
3
- "version": "0.102.0",
3
+ "version": "0.105.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build": "n8n-node build",