@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,122 @@
|
|
|
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: ['get'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the vendor',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Options',
|
|
23
|
+
name: 'options',
|
|
24
|
+
type: 'collection',
|
|
25
|
+
placeholder: 'Add Option',
|
|
26
|
+
default: {},
|
|
27
|
+
displayOptions: {
|
|
28
|
+
show: {
|
|
29
|
+
resource: ['vendor'],
|
|
30
|
+
operation: ['get'],
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
options: [
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Include Organization',
|
|
36
|
+
name: 'includeOrganization',
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
default: false,
|
|
39
|
+
description: 'Whether to include organization in the response',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
displayName: 'Include Business Owner',
|
|
43
|
+
name: 'includeBusinessOwner',
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
default: false,
|
|
46
|
+
description: 'Whether to include business owner in the response',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
displayName: 'Include Security Owner',
|
|
50
|
+
name: 'includeSecurityOwner',
|
|
51
|
+
type: 'boolean',
|
|
52
|
+
default: false,
|
|
53
|
+
description: 'Whether to include security owner in the response',
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
];
|
|
58
|
+
async function execute(itemIndex) {
|
|
59
|
+
const vendorId = this.getNodeParameter('vendorId', itemIndex);
|
|
60
|
+
const options = this.getNodeParameter('options', itemIndex, {});
|
|
61
|
+
const organizationFragment = options.includeOrganization
|
|
62
|
+
? `organization {
|
|
63
|
+
id
|
|
64
|
+
name
|
|
65
|
+
}`
|
|
66
|
+
: '';
|
|
67
|
+
const businessOwnerFragment = options.includeBusinessOwner
|
|
68
|
+
? `businessOwner {
|
|
69
|
+
id
|
|
70
|
+
fullName
|
|
71
|
+
primaryEmailAddress
|
|
72
|
+
}`
|
|
73
|
+
: '';
|
|
74
|
+
const securityOwnerFragment = options.includeSecurityOwner
|
|
75
|
+
? `securityOwner {
|
|
76
|
+
id
|
|
77
|
+
fullName
|
|
78
|
+
primaryEmailAddress
|
|
79
|
+
}`
|
|
80
|
+
: '';
|
|
81
|
+
const query = `
|
|
82
|
+
query GetVendor($vendorId: ID!) {
|
|
83
|
+
node(id: $vendorId) {
|
|
84
|
+
... on Vendor {
|
|
85
|
+
id
|
|
86
|
+
name
|
|
87
|
+
description
|
|
88
|
+
category
|
|
89
|
+
websiteUrl
|
|
90
|
+
legalName
|
|
91
|
+
headquarterAddress
|
|
92
|
+
statusPageUrl
|
|
93
|
+
termsOfServiceUrl
|
|
94
|
+
privacyPolicyUrl
|
|
95
|
+
serviceLevelAgreementUrl
|
|
96
|
+
dataProcessingAgreementUrl
|
|
97
|
+
businessAssociateAgreementUrl
|
|
98
|
+
subprocessorsListUrl
|
|
99
|
+
securityPageUrl
|
|
100
|
+
trustPageUrl
|
|
101
|
+
certifications
|
|
102
|
+
countries
|
|
103
|
+
showOnTrustCenter
|
|
104
|
+
${organizationFragment}
|
|
105
|
+
${businessOwnerFragment}
|
|
106
|
+
${securityOwnerFragment}
|
|
107
|
+
createdAt
|
|
108
|
+
updatedAt
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
`;
|
|
113
|
+
const variables = {
|
|
114
|
+
vendorId,
|
|
115
|
+
};
|
|
116
|
+
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, variables);
|
|
117
|
+
return {
|
|
118
|
+
json: responseData,
|
|
119
|
+
pairedItem: { item: itemIndex },
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
//# sourceMappingURL=get.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/vendor/get.operation.ts"],"names":[],"mappings":";;;AAwDA,0BA6EC;AApID,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,UAAU;QAChB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;gBACpB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,sBAAsB;QACnC,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,QAAQ,CAAC;gBACpB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,sBAAsB;gBACnC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,iDAAiD;aAC9D;YACD;gBACC,WAAW,EAAE,wBAAwB;gBACrC,IAAI,EAAE,sBAAsB;gBAC5B,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,mDAAmD;aAChE;YACD;gBACC,WAAW,EAAE,wBAAwB;gBACrC,IAAI,EAAE,sBAAsB;gBAC5B,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,mDAAmD;aAChE;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,SAAS,CAAW,CAAC;IACxE,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,EAAE,CAI7D,CAAC;IAEF,MAAM,oBAAoB,GAAG,OAAO,CAAC,mBAAmB;QACvD,CAAC,CAAC;;;IAGA;QACF,CAAC,CAAC,EAAE,CAAC;IAEN,MAAM,qBAAqB,GAAG,OAAO,CAAC,oBAAoB;QACzD,CAAC,CAAC;;;;IAIA;QACF,CAAC,CAAC,EAAE,CAAC;IAEN,MAAM,qBAAqB,GAAG,OAAO,CAAC,oBAAoB;QACzD,CAAC,CAAC;;;;IAIA;QACF,CAAC,CAAC,EAAE,CAAC;IAEN,MAAM,KAAK,GAAG;;;;;;;;;;;;;;;;;;;;;;;OAuBR,oBAAoB;OACpB,qBAAqB;OACrB,qBAAqB;;;;;;EAM1B,CAAC;IAEF,MAAM,SAAS,GAAG;QACjB,QAAQ;KACR,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC;IAExE,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,165 @@
|
|
|
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: 'Organization ID',
|
|
9
|
+
name: 'organizationId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['vendor'],
|
|
14
|
+
operation: ['getAll'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
default: '',
|
|
18
|
+
description: 'The ID of the organization',
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Return All',
|
|
23
|
+
name: 'returnAll',
|
|
24
|
+
type: 'boolean',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['vendor'],
|
|
28
|
+
operation: ['getAll'],
|
|
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: ['vendor'],
|
|
41
|
+
operation: ['getAll'],
|
|
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
|
+
displayName: 'Options',
|
|
53
|
+
name: 'options',
|
|
54
|
+
type: 'collection',
|
|
55
|
+
placeholder: 'Add Option',
|
|
56
|
+
default: {},
|
|
57
|
+
displayOptions: {
|
|
58
|
+
show: {
|
|
59
|
+
resource: ['vendor'],
|
|
60
|
+
operation: ['getAll'],
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
options: [
|
|
64
|
+
{
|
|
65
|
+
displayName: 'Include Organization',
|
|
66
|
+
name: 'includeOrganization',
|
|
67
|
+
type: 'boolean',
|
|
68
|
+
default: false,
|
|
69
|
+
description: 'Whether to include organization in the response',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
displayName: 'Include Business Owner',
|
|
73
|
+
name: 'includeBusinessOwner',
|
|
74
|
+
type: 'boolean',
|
|
75
|
+
default: false,
|
|
76
|
+
description: 'Whether to include business owner in the response',
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
displayName: 'Include Security Owner',
|
|
80
|
+
name: 'includeSecurityOwner',
|
|
81
|
+
type: 'boolean',
|
|
82
|
+
default: false,
|
|
83
|
+
description: 'Whether to include security owner in the response',
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
},
|
|
87
|
+
];
|
|
88
|
+
async function execute(itemIndex) {
|
|
89
|
+
const organizationId = this.getNodeParameter('organizationId', itemIndex);
|
|
90
|
+
const returnAll = this.getNodeParameter('returnAll', itemIndex);
|
|
91
|
+
const limit = this.getNodeParameter('limit', itemIndex, 50);
|
|
92
|
+
const options = this.getNodeParameter('options', itemIndex, {});
|
|
93
|
+
const organizationFragment = options.includeOrganization
|
|
94
|
+
? `organization {
|
|
95
|
+
id
|
|
96
|
+
name
|
|
97
|
+
}`
|
|
98
|
+
: '';
|
|
99
|
+
const businessOwnerFragment = options.includeBusinessOwner
|
|
100
|
+
? `businessOwner {
|
|
101
|
+
id
|
|
102
|
+
fullName
|
|
103
|
+
primaryEmailAddress
|
|
104
|
+
}`
|
|
105
|
+
: '';
|
|
106
|
+
const securityOwnerFragment = options.includeSecurityOwner
|
|
107
|
+
? `securityOwner {
|
|
108
|
+
id
|
|
109
|
+
fullName
|
|
110
|
+
primaryEmailAddress
|
|
111
|
+
}`
|
|
112
|
+
: '';
|
|
113
|
+
const query = `
|
|
114
|
+
query GetVendors($organizationId: ID!, $first: Int, $after: CursorKey) {
|
|
115
|
+
node(id: $organizationId) {
|
|
116
|
+
... on Organization {
|
|
117
|
+
vendors(first: $first, after: $after) {
|
|
118
|
+
edges {
|
|
119
|
+
node {
|
|
120
|
+
id
|
|
121
|
+
name
|
|
122
|
+
description
|
|
123
|
+
category
|
|
124
|
+
websiteUrl
|
|
125
|
+
legalName
|
|
126
|
+
headquarterAddress
|
|
127
|
+
statusPageUrl
|
|
128
|
+
termsOfServiceUrl
|
|
129
|
+
privacyPolicyUrl
|
|
130
|
+
serviceLevelAgreementUrl
|
|
131
|
+
dataProcessingAgreementUrl
|
|
132
|
+
businessAssociateAgreementUrl
|
|
133
|
+
subprocessorsListUrl
|
|
134
|
+
securityPageUrl
|
|
135
|
+
trustPageUrl
|
|
136
|
+
certifications
|
|
137
|
+
countries
|
|
138
|
+
showOnTrustCenter
|
|
139
|
+
${organizationFragment}
|
|
140
|
+
${businessOwnerFragment}
|
|
141
|
+
${securityOwnerFragment}
|
|
142
|
+
createdAt
|
|
143
|
+
updatedAt
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
pageInfo {
|
|
147
|
+
hasNextPage
|
|
148
|
+
endCursor
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
`;
|
|
155
|
+
const vendors = await GenericFunctions_1.proboApiRequestAllItems.call(this, query, { organizationId }, (response) => {
|
|
156
|
+
const data = response === null || response === void 0 ? void 0 : response.data;
|
|
157
|
+
const node = data === null || data === void 0 ? void 0 : data.node;
|
|
158
|
+
return node === null || node === void 0 ? void 0 : node.vendors;
|
|
159
|
+
}, returnAll, limit);
|
|
160
|
+
return {
|
|
161
|
+
json: { vendors },
|
|
162
|
+
pairedItem: { item: itemIndex },
|
|
163
|
+
};
|
|
164
|
+
}
|
|
165
|
+
//# sourceMappingURL=getAll.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAll.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/vendor/getAll.operation.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { INodeProperties } from 'n8n-workflow';
|
|
2
|
+
import * as createOp from './create.operation';
|
|
3
|
+
import * as updateOp from './update.operation';
|
|
4
|
+
import * as deleteOp from './delete.operation';
|
|
5
|
+
import * as getOp from './get.operation';
|
|
6
|
+
import * as getAllOp from './getAll.operation';
|
|
7
|
+
export declare const description: INodeProperties[];
|
|
8
|
+
export { createOp as create, updateOp as update, deleteOp as delete, getOp as get, getAllOp as getAll };
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.getAll = exports.get = exports.delete = exports.update = exports.create = exports.description = void 0;
|
|
37
|
+
const createOp = __importStar(require("./create.operation"));
|
|
38
|
+
exports.create = createOp;
|
|
39
|
+
const updateOp = __importStar(require("./update.operation"));
|
|
40
|
+
exports.update = updateOp;
|
|
41
|
+
const deleteOp = __importStar(require("./delete.operation"));
|
|
42
|
+
exports.delete = deleteOp;
|
|
43
|
+
const getOp = __importStar(require("./get.operation"));
|
|
44
|
+
exports.get = getOp;
|
|
45
|
+
const getAllOp = __importStar(require("./getAll.operation"));
|
|
46
|
+
exports.getAll = getAllOp;
|
|
47
|
+
exports.description = [
|
|
48
|
+
{
|
|
49
|
+
displayName: 'Operation',
|
|
50
|
+
name: 'operation',
|
|
51
|
+
type: 'options',
|
|
52
|
+
noDataExpression: true,
|
|
53
|
+
displayOptions: {
|
|
54
|
+
show: {
|
|
55
|
+
resource: ['vendor'],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
options: [
|
|
59
|
+
{
|
|
60
|
+
name: 'Create',
|
|
61
|
+
value: 'create',
|
|
62
|
+
description: 'Create a new vendor',
|
|
63
|
+
action: 'Create a vendor',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: 'Delete',
|
|
67
|
+
value: 'delete',
|
|
68
|
+
description: 'Delete a vendor',
|
|
69
|
+
action: 'Delete a vendor',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
name: 'Get',
|
|
73
|
+
value: 'get',
|
|
74
|
+
description: 'Get a vendor',
|
|
75
|
+
action: 'Get a vendor',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Get Many',
|
|
79
|
+
value: 'getAll',
|
|
80
|
+
description: 'Get many vendors',
|
|
81
|
+
action: 'Get many vendors',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
name: 'Update',
|
|
85
|
+
value: 'update',
|
|
86
|
+
description: 'Update an existing vendor',
|
|
87
|
+
action: 'Update a vendor',
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
default: 'create',
|
|
91
|
+
},
|
|
92
|
+
...createOp.description,
|
|
93
|
+
...updateOp.description,
|
|
94
|
+
...deleteOp.description,
|
|
95
|
+
...getOp.description,
|
|
96
|
+
...getAllOp.description,
|
|
97
|
+
];
|
|
98
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/vendor/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,6DAA+C;AA0D1B,0BAAM;AAzD3B,6DAA+C;AAyDN,0BAAM;AAxD/C,6DAA+C;AAwDc,0BAAM;AAvDnE,uDAAyC;AAuDqC,oBAAG;AAtDjF,6DAA+C;AAsDgD,0BAAM;AApDxF,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,QAAQ,CAAC;aACpB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,qBAAqB;gBAClC,MAAM,EAAE,iBAAiB;aACzB;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,iBAAiB;gBAC9B,MAAM,EAAE,iBAAiB;aACzB;YACD;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,WAAW,EAAE,cAAc;gBAC3B,MAAM,EAAE,cAAc;aACtB;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,kBAAkB;gBAC/B,MAAM,EAAE,kBAAkB;aAC1B;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,2BAA2B;gBACxC,MAAM,EAAE,iBAAiB;aACzB;SACD;QACD,OAAO,EAAE,QAAQ;KACjB;IACD,GAAG,QAAQ,CAAC,WAAW;IACvB,GAAG,QAAQ,CAAC,WAAW;IACvB,GAAG,QAAQ,CAAC,WAAW;IACvB,GAAG,KAAK,CAAC,WAAW;IACpB,GAAG,QAAQ,CAAC,WAAW;CACvB,CAAC"}
|