@probo/n8n-nodes-probo 0.96.1 → 0.98.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/GenericFunctions.js +9 -1
- package/dist/nodes/Probo/GenericFunctions.js.map +1 -1
- package/dist/nodes/Probo/Probo.node.js +10 -0
- package/dist/nodes/Probo/Probo.node.js.map +1 -1
- package/dist/nodes/Probo/actions/index.js +4 -0
- package/dist/nodes/Probo/actions/index.js.map +1 -1
- package/dist/nodes/Probo/actions/meeting/create.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/meeting/create.operation.js +163 -0
- package/dist/nodes/Probo/actions/meeting/create.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/meeting/delete.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/meeting/delete.operation.js +37 -0
- package/dist/nodes/Probo/actions/meeting/delete.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/meeting/get.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/meeting/get.operation.js +91 -0
- package/dist/nodes/Probo/actions/meeting/get.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/meeting/getAll.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/meeting/getAll.operation.js +134 -0
- package/dist/nodes/Probo/actions/meeting/getAll.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/meeting/index.d.ts +8 -0
- package/dist/nodes/Probo/actions/meeting/index.js +98 -0
- package/dist/nodes/Probo/actions/meeting/index.js.map +1 -0
- package/dist/nodes/Probo/actions/meeting/update.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/meeting/update.operation.js +159 -0
- package/dist/nodes/Probo/actions/meeting/update.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/vendor/create.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/vendor/create.operation.js +304 -0
- package/dist/nodes/Probo/actions/vendor/create.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/vendor/delete.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/vendor/delete.operation.js +37 -0
- package/dist/nodes/Probo/actions/vendor/delete.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/vendor/get.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/vendor/get.operation.js +122 -0
- package/dist/nodes/Probo/actions/vendor/get.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/vendor/getAll.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/vendor/getAll.operation.js +165 -0
- package/dist/nodes/Probo/actions/vendor/getAll.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/vendor/index.d.ts +8 -0
- package/dist/nodes/Probo/actions/vendor/index.js +98 -0
- package/dist/nodes/Probo/actions/vendor/index.js.map +1 -0
- package/dist/nodes/Probo/actions/vendor/update.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/vendor/update.operation.js +326 -0
- package/dist/nodes/Probo/actions/vendor/update.operation.js.map +1 -0
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,326 @@
|
|
|
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: 'Vendor ID',
|
|
9
|
+
name: 'vendorId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['vendor'],
|
|
14
|
+
operation: ['update'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the vendor to update',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Name',
|
|
23
|
+
name: 'name',
|
|
24
|
+
type: 'string',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['vendor'],
|
|
28
|
+
operation: ['update'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
default: '',
|
|
32
|
+
description: 'The name of the vendor',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Description',
|
|
36
|
+
name: 'description',
|
|
37
|
+
type: 'string',
|
|
38
|
+
typeOptions: {
|
|
39
|
+
rows: 4,
|
|
40
|
+
},
|
|
41
|
+
displayOptions: {
|
|
42
|
+
show: {
|
|
43
|
+
resource: ['vendor'],
|
|
44
|
+
operation: ['update'],
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
default: '',
|
|
48
|
+
description: 'The description of the vendor',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
displayName: 'Category',
|
|
52
|
+
name: 'category',
|
|
53
|
+
type: 'string',
|
|
54
|
+
displayOptions: {
|
|
55
|
+
show: {
|
|
56
|
+
resource: ['vendor'],
|
|
57
|
+
operation: ['update'],
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
default: '',
|
|
61
|
+
description: 'The category of the vendor',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
displayName: 'Website URL',
|
|
65
|
+
name: 'websiteUrl',
|
|
66
|
+
type: 'string',
|
|
67
|
+
displayOptions: {
|
|
68
|
+
show: {
|
|
69
|
+
resource: ['vendor'],
|
|
70
|
+
operation: ['update'],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
default: '',
|
|
74
|
+
description: 'The website URL of the vendor',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
displayName: 'Legal Name',
|
|
78
|
+
name: 'legalName',
|
|
79
|
+
type: 'string',
|
|
80
|
+
displayOptions: {
|
|
81
|
+
show: {
|
|
82
|
+
resource: ['vendor'],
|
|
83
|
+
operation: ['update'],
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
default: '',
|
|
87
|
+
description: 'The legal name of the vendor',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
displayName: 'Headquarter Address',
|
|
91
|
+
name: 'headquarterAddress',
|
|
92
|
+
type: 'string',
|
|
93
|
+
displayOptions: {
|
|
94
|
+
show: {
|
|
95
|
+
resource: ['vendor'],
|
|
96
|
+
operation: ['update'],
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
default: '',
|
|
100
|
+
description: 'The headquarter address of the vendor',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
displayName: 'Business Owner ID',
|
|
104
|
+
name: 'businessOwnerId',
|
|
105
|
+
type: 'string',
|
|
106
|
+
displayOptions: {
|
|
107
|
+
show: {
|
|
108
|
+
resource: ['vendor'],
|
|
109
|
+
operation: ['update'],
|
|
110
|
+
},
|
|
111
|
+
},
|
|
112
|
+
default: '',
|
|
113
|
+
description: 'The ID of the business owner (People ID)',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
displayName: 'Security Owner ID',
|
|
117
|
+
name: 'securityOwnerId',
|
|
118
|
+
type: 'string',
|
|
119
|
+
displayOptions: {
|
|
120
|
+
show: {
|
|
121
|
+
resource: ['vendor'],
|
|
122
|
+
operation: ['update'],
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
default: '',
|
|
126
|
+
description: 'The ID of the security owner (People ID)',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
displayName: 'Show on Trust Center',
|
|
130
|
+
name: 'showOnTrustCenter',
|
|
131
|
+
type: 'boolean',
|
|
132
|
+
displayOptions: {
|
|
133
|
+
show: {
|
|
134
|
+
resource: ['vendor'],
|
|
135
|
+
operation: ['update'],
|
|
136
|
+
},
|
|
137
|
+
},
|
|
138
|
+
default: false,
|
|
139
|
+
description: 'Whether to show the vendor on the trust center',
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
displayName: 'Additional Fields',
|
|
143
|
+
name: 'additionalFields',
|
|
144
|
+
type: 'collection',
|
|
145
|
+
placeholder: 'Add Field',
|
|
146
|
+
default: {},
|
|
147
|
+
displayOptions: {
|
|
148
|
+
show: {
|
|
149
|
+
resource: ['vendor'],
|
|
150
|
+
operation: ['update'],
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
options: [
|
|
154
|
+
{
|
|
155
|
+
displayName: 'Business Associate Agreement URL',
|
|
156
|
+
name: 'businessAssociateAgreementUrl',
|
|
157
|
+
type: 'string',
|
|
158
|
+
default: '',
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
displayName: 'Certifications',
|
|
162
|
+
name: 'certifications',
|
|
163
|
+
type: 'string',
|
|
164
|
+
default: '',
|
|
165
|
+
description: 'Comma-separated list of certifications',
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
displayName: 'Countries',
|
|
169
|
+
name: 'countries',
|
|
170
|
+
type: 'string',
|
|
171
|
+
default: '',
|
|
172
|
+
description: 'Comma-separated list of country codes',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
displayName: 'Data Processing Agreement URL',
|
|
176
|
+
name: 'dataProcessingAgreementUrl',
|
|
177
|
+
type: 'string',
|
|
178
|
+
default: '',
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
displayName: 'Privacy Policy URL',
|
|
182
|
+
name: 'privacyPolicyUrl',
|
|
183
|
+
type: 'string',
|
|
184
|
+
default: '',
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
displayName: 'Security Page URL',
|
|
188
|
+
name: 'securityPageUrl',
|
|
189
|
+
type: 'string',
|
|
190
|
+
default: '',
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
displayName: 'Service Level Agreement URL',
|
|
194
|
+
name: 'serviceLevelAgreementUrl',
|
|
195
|
+
type: 'string',
|
|
196
|
+
default: '',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
displayName: 'Status Page URL',
|
|
200
|
+
name: 'statusPageUrl',
|
|
201
|
+
type: 'string',
|
|
202
|
+
default: '',
|
|
203
|
+
description: 'The status page URL of the vendor',
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
displayName: 'Subprocessors List URL',
|
|
207
|
+
name: 'subprocessorsListUrl',
|
|
208
|
+
type: 'string',
|
|
209
|
+
default: '',
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
displayName: 'Terms of Service URL',
|
|
213
|
+
name: 'termsOfServiceUrl',
|
|
214
|
+
type: 'string',
|
|
215
|
+
default: '',
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
displayName: 'Trust Page URL',
|
|
219
|
+
name: 'trustPageUrl',
|
|
220
|
+
type: 'string',
|
|
221
|
+
default: '',
|
|
222
|
+
},
|
|
223
|
+
],
|
|
224
|
+
},
|
|
225
|
+
];
|
|
226
|
+
async function execute(itemIndex) {
|
|
227
|
+
const vendorId = this.getNodeParameter('vendorId', itemIndex);
|
|
228
|
+
const name = this.getNodeParameter('name', itemIndex, '');
|
|
229
|
+
const description = this.getNodeParameter('description', itemIndex, '');
|
|
230
|
+
const category = this.getNodeParameter('category', itemIndex, '');
|
|
231
|
+
const websiteUrl = this.getNodeParameter('websiteUrl', itemIndex, '');
|
|
232
|
+
const legalName = this.getNodeParameter('legalName', itemIndex, '');
|
|
233
|
+
const headquarterAddress = this.getNodeParameter('headquarterAddress', itemIndex, '');
|
|
234
|
+
const businessOwnerId = this.getNodeParameter('businessOwnerId', itemIndex, '');
|
|
235
|
+
const securityOwnerId = this.getNodeParameter('securityOwnerId', itemIndex, '');
|
|
236
|
+
const showOnTrustCenter = this.getNodeParameter('showOnTrustCenter', itemIndex);
|
|
237
|
+
const additionalFields = this.getNodeParameter('additionalFields', itemIndex, {});
|
|
238
|
+
const query = `
|
|
239
|
+
mutation UpdateVendor($input: UpdateVendorInput!) {
|
|
240
|
+
updateVendor(input: $input) {
|
|
241
|
+
vendor {
|
|
242
|
+
id
|
|
243
|
+
name
|
|
244
|
+
description
|
|
245
|
+
category
|
|
246
|
+
websiteUrl
|
|
247
|
+
legalName
|
|
248
|
+
headquarterAddress
|
|
249
|
+
statusPageUrl
|
|
250
|
+
termsOfServiceUrl
|
|
251
|
+
privacyPolicyUrl
|
|
252
|
+
serviceLevelAgreementUrl
|
|
253
|
+
dataProcessingAgreementUrl
|
|
254
|
+
businessAssociateAgreementUrl
|
|
255
|
+
subprocessorsListUrl
|
|
256
|
+
securityPageUrl
|
|
257
|
+
trustPageUrl
|
|
258
|
+
certifications
|
|
259
|
+
countries
|
|
260
|
+
showOnTrustCenter
|
|
261
|
+
createdAt
|
|
262
|
+
updatedAt
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
`;
|
|
267
|
+
const input = { id: vendorId };
|
|
268
|
+
if (name)
|
|
269
|
+
input.name = name;
|
|
270
|
+
if (description !== undefined)
|
|
271
|
+
input.description = description === '' ? null : description;
|
|
272
|
+
if (category)
|
|
273
|
+
input.category = category;
|
|
274
|
+
if (websiteUrl !== undefined)
|
|
275
|
+
input.websiteUrl = websiteUrl === '' ? null : websiteUrl;
|
|
276
|
+
if (legalName !== undefined)
|
|
277
|
+
input.legalName = legalName === '' ? null : legalName;
|
|
278
|
+
if (headquarterAddress !== undefined)
|
|
279
|
+
input.headquarterAddress = headquarterAddress === '' ? null : headquarterAddress;
|
|
280
|
+
if (businessOwnerId !== undefined)
|
|
281
|
+
input.businessOwnerId = businessOwnerId === '' ? null : businessOwnerId;
|
|
282
|
+
if (securityOwnerId !== undefined)
|
|
283
|
+
input.securityOwnerId = securityOwnerId === '' ? null : securityOwnerId;
|
|
284
|
+
if (showOnTrustCenter !== undefined)
|
|
285
|
+
input.showOnTrustCenter = showOnTrustCenter;
|
|
286
|
+
if (additionalFields.statusPageUrl !== undefined)
|
|
287
|
+
input.statusPageUrl = additionalFields.statusPageUrl === '' ? null : additionalFields.statusPageUrl;
|
|
288
|
+
if (additionalFields.termsOfServiceUrl !== undefined)
|
|
289
|
+
input.termsOfServiceUrl = additionalFields.termsOfServiceUrl === '' ? null : additionalFields.termsOfServiceUrl;
|
|
290
|
+
if (additionalFields.privacyPolicyUrl !== undefined)
|
|
291
|
+
input.privacyPolicyUrl = additionalFields.privacyPolicyUrl === '' ? null : additionalFields.privacyPolicyUrl;
|
|
292
|
+
if (additionalFields.serviceLevelAgreementUrl !== undefined)
|
|
293
|
+
input.serviceLevelAgreementUrl = additionalFields.serviceLevelAgreementUrl === '' ? null : additionalFields.serviceLevelAgreementUrl;
|
|
294
|
+
if (additionalFields.dataProcessingAgreementUrl !== undefined)
|
|
295
|
+
input.dataProcessingAgreementUrl = additionalFields.dataProcessingAgreementUrl === '' ? null : additionalFields.dataProcessingAgreementUrl;
|
|
296
|
+
if (additionalFields.businessAssociateAgreementUrl !== undefined)
|
|
297
|
+
input.businessAssociateAgreementUrl = additionalFields.businessAssociateAgreementUrl === '' ? null : additionalFields.businessAssociateAgreementUrl;
|
|
298
|
+
if (additionalFields.subprocessorsListUrl !== undefined)
|
|
299
|
+
input.subprocessorsListUrl = additionalFields.subprocessorsListUrl === '' ? null : additionalFields.subprocessorsListUrl;
|
|
300
|
+
if (additionalFields.securityPageUrl !== undefined)
|
|
301
|
+
input.securityPageUrl = additionalFields.securityPageUrl === '' ? null : additionalFields.securityPageUrl;
|
|
302
|
+
if (additionalFields.trustPageUrl !== undefined)
|
|
303
|
+
input.trustPageUrl = additionalFields.trustPageUrl === '' ? null : additionalFields.trustPageUrl;
|
|
304
|
+
if (additionalFields.certifications !== undefined) {
|
|
305
|
+
if (additionalFields.certifications === '') {
|
|
306
|
+
input.certifications = [];
|
|
307
|
+
}
|
|
308
|
+
else {
|
|
309
|
+
input.certifications = additionalFields.certifications.split(',').map((c) => c.trim()).filter(Boolean);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
if (additionalFields.countries !== undefined) {
|
|
313
|
+
if (additionalFields.countries === '') {
|
|
314
|
+
input.countries = [];
|
|
315
|
+
}
|
|
316
|
+
else {
|
|
317
|
+
input.countries = additionalFields.countries.split(',').map((c) => c.trim()).filter(Boolean);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input });
|
|
321
|
+
return {
|
|
322
|
+
json: responseData,
|
|
323
|
+
pairedItem: { item: itemIndex },
|
|
324
|
+
};
|
|
325
|
+
}
|
|
326
|
+
//# sourceMappingURL=update.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/vendor/update.operation.ts"],"names":[],"mappings":"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"}
|