@probo/n8n-nodes-probo 0.170.0 → 0.171.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/Probo.node.js +0 -5
- package/dist/nodes/Probo/Probo.node.js.map +1 -1
- package/dist/nodes/Probo/actions/asset/index.d.ts +2 -1
- package/dist/nodes/Probo/actions/asset/index.js +10 -1
- package/dist/nodes/Probo/actions/asset/index.js.map +1 -1
- package/dist/nodes/Probo/actions/asset/publish.operation.js +81 -0
- package/dist/nodes/Probo/actions/asset/publish.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/control/create.operation.js +25 -0
- package/dist/nodes/Probo/actions/control/create.operation.js.map +1 -1
- package/dist/nodes/Probo/actions/control/get.operation.js +2 -0
- package/dist/nodes/Probo/actions/control/get.operation.js.map +1 -1
- package/dist/nodes/Probo/actions/control/getAll.operation.js +1 -0
- package/dist/nodes/Probo/actions/control/getAll.operation.js.map +1 -1
- package/dist/nodes/Probo/actions/control/update.operation.js +31 -0
- package/dist/nodes/Probo/actions/control/update.operation.js.map +1 -1
- package/dist/nodes/Probo/actions/datum/index.d.ts +2 -1
- package/dist/nodes/Probo/actions/datum/index.js +10 -1
- package/dist/nodes/Probo/actions/datum/index.js.map +1 -1
- package/dist/nodes/Probo/actions/datum/publish.operation.js +81 -0
- package/dist/nodes/Probo/actions/datum/publish.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getAllApprovalDecisions.operation.js +94 -0
- package/dist/nodes/Probo/actions/document/getAllApprovalDecisions.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getAllApprovalQuorums.operation.js +88 -0
- package/dist/nodes/Probo/actions/document/getAllApprovalQuorums.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getApprovalDecision.operation.js +48 -0
- package/dist/nodes/Probo/actions/document/getApprovalDecision.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/getApprovalQuorum.operation.d.ts +3 -0
- package/dist/nodes/Probo/actions/document/getApprovalQuorum.operation.js +42 -0
- package/dist/nodes/Probo/actions/document/getApprovalQuorum.operation.js.map +1 -0
- package/dist/nodes/Probo/actions/document/index.d.ts +5 -1
- package/dist/nodes/Probo/actions/document/index.js +37 -1
- package/dist/nodes/Probo/actions/document/index.js.map +1 -1
- package/dist/nodes/Probo/actions/index.js +0 -2
- package/dist/nodes/Probo/actions/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/nodes/Probo/actions/meeting/create.operation.js +0 -163
- package/dist/nodes/Probo/actions/meeting/create.operation.js.map +0 -1
- package/dist/nodes/Probo/actions/meeting/delete.operation.js +0 -37
- package/dist/nodes/Probo/actions/meeting/delete.operation.js.map +0 -1
- package/dist/nodes/Probo/actions/meeting/get.operation.js +0 -91
- package/dist/nodes/Probo/actions/meeting/get.operation.js.map +0 -1
- package/dist/nodes/Probo/actions/meeting/getAll.operation.js +0 -134
- package/dist/nodes/Probo/actions/meeting/getAll.operation.js.map +0 -1
- package/dist/nodes/Probo/actions/meeting/index.d.ts +0 -8
- package/dist/nodes/Probo/actions/meeting/index.js +0 -98
- package/dist/nodes/Probo/actions/meeting/index.js.map +0 -1
- package/dist/nodes/Probo/actions/meeting/update.operation.js +0 -159
- package/dist/nodes/Probo/actions/meeting/update.operation.js.map +0 -1
- /package/dist/nodes/Probo/actions/{meeting/create.operation.d.ts → asset/publish.operation.d.ts} +0 -0
- /package/dist/nodes/Probo/actions/{meeting/delete.operation.d.ts → datum/publish.operation.d.ts} +0 -0
- /package/dist/nodes/Probo/actions/{meeting/get.operation.d.ts → document/getAllApprovalDecisions.operation.d.ts} +0 -0
- /package/dist/nodes/Probo/actions/{meeting/getAll.operation.d.ts → document/getAllApprovalQuorums.operation.d.ts} +0 -0
- /package/dist/nodes/Probo/actions/{meeting/update.operation.d.ts → document/getApprovalDecision.operation.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,163 +0,0 @@
|
|
|
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: ['meeting'],
|
|
14
|
-
operation: ['create'],
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
default: '',
|
|
18
|
-
description: 'The ID of the organization',
|
|
19
|
-
required: true,
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
displayName: 'Name',
|
|
23
|
-
name: 'name',
|
|
24
|
-
type: 'string',
|
|
25
|
-
displayOptions: {
|
|
26
|
-
show: {
|
|
27
|
-
resource: ['meeting'],
|
|
28
|
-
operation: ['create'],
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
default: '',
|
|
32
|
-
description: 'The name of the meeting',
|
|
33
|
-
required: true,
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
displayName: 'Date',
|
|
37
|
-
name: 'date',
|
|
38
|
-
type: 'dateTime',
|
|
39
|
-
displayOptions: {
|
|
40
|
-
show: {
|
|
41
|
-
resource: ['meeting'],
|
|
42
|
-
operation: ['create'],
|
|
43
|
-
},
|
|
44
|
-
},
|
|
45
|
-
default: '',
|
|
46
|
-
description: 'The date and time of the meeting',
|
|
47
|
-
required: true,
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
displayName: 'Attendee IDs',
|
|
51
|
-
name: 'attendeeIds',
|
|
52
|
-
type: 'string',
|
|
53
|
-
displayOptions: {
|
|
54
|
-
show: {
|
|
55
|
-
resource: ['meeting'],
|
|
56
|
-
operation: ['create'],
|
|
57
|
-
},
|
|
58
|
-
},
|
|
59
|
-
default: '',
|
|
60
|
-
description: 'Comma-separated list of attendee IDs (People IDs)',
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
displayName: 'Minutes',
|
|
64
|
-
name: 'minutes',
|
|
65
|
-
type: 'string',
|
|
66
|
-
typeOptions: {
|
|
67
|
-
rows: 4,
|
|
68
|
-
},
|
|
69
|
-
displayOptions: {
|
|
70
|
-
show: {
|
|
71
|
-
resource: ['meeting'],
|
|
72
|
-
operation: ['create'],
|
|
73
|
-
},
|
|
74
|
-
},
|
|
75
|
-
default: '',
|
|
76
|
-
description: 'The minutes of the meeting',
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
displayName: 'Options',
|
|
80
|
-
name: 'options',
|
|
81
|
-
type: 'collection',
|
|
82
|
-
placeholder: 'Add Option',
|
|
83
|
-
default: {},
|
|
84
|
-
displayOptions: {
|
|
85
|
-
show: {
|
|
86
|
-
resource: ['meeting'],
|
|
87
|
-
operation: ['create'],
|
|
88
|
-
},
|
|
89
|
-
},
|
|
90
|
-
options: [
|
|
91
|
-
{
|
|
92
|
-
displayName: 'Include Attendees',
|
|
93
|
-
name: 'includeAttendees',
|
|
94
|
-
type: 'boolean',
|
|
95
|
-
default: false,
|
|
96
|
-
description: 'Whether to include attendees in the response',
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
displayName: 'Include Organization',
|
|
100
|
-
name: 'includeOrganization',
|
|
101
|
-
type: 'boolean',
|
|
102
|
-
default: false,
|
|
103
|
-
description: 'Whether to include organization in the response',
|
|
104
|
-
},
|
|
105
|
-
],
|
|
106
|
-
},
|
|
107
|
-
];
|
|
108
|
-
async function execute(itemIndex) {
|
|
109
|
-
const organizationId = this.getNodeParameter('organizationId', itemIndex);
|
|
110
|
-
const name = this.getNodeParameter('name', itemIndex);
|
|
111
|
-
const date = this.getNodeParameter('date', itemIndex);
|
|
112
|
-
const attendeeIdsStr = this.getNodeParameter('attendeeIds', itemIndex, '');
|
|
113
|
-
const minutes = this.getNodeParameter('minutes', itemIndex, '');
|
|
114
|
-
const options = this.getNodeParameter('options', itemIndex, {});
|
|
115
|
-
const attendeesFragment = options.includeAttendees
|
|
116
|
-
? `attendees {
|
|
117
|
-
id
|
|
118
|
-
fullName
|
|
119
|
-
}`
|
|
120
|
-
: '';
|
|
121
|
-
const organizationFragment = options.includeOrganization
|
|
122
|
-
? `organization {
|
|
123
|
-
id
|
|
124
|
-
name
|
|
125
|
-
}`
|
|
126
|
-
: '';
|
|
127
|
-
const query = `
|
|
128
|
-
mutation CreateMeeting($input: CreateMeetingInput!) {
|
|
129
|
-
createMeeting(input: $input) {
|
|
130
|
-
meetingEdge {
|
|
131
|
-
node {
|
|
132
|
-
id
|
|
133
|
-
name
|
|
134
|
-
date
|
|
135
|
-
minutes
|
|
136
|
-
${attendeesFragment}
|
|
137
|
-
${organizationFragment}
|
|
138
|
-
createdAt
|
|
139
|
-
updatedAt
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
`;
|
|
145
|
-
const attendeeIds = attendeeIdsStr ? attendeeIdsStr.split(',').map((id) => id.trim()).filter(Boolean) : undefined;
|
|
146
|
-
const input = {
|
|
147
|
-
organizationId,
|
|
148
|
-
name,
|
|
149
|
-
date: new Date(date).toISOString(),
|
|
150
|
-
};
|
|
151
|
-
if (attendeeIds && attendeeIds.length > 0) {
|
|
152
|
-
input.attendeeIds = attendeeIds;
|
|
153
|
-
}
|
|
154
|
-
if (minutes) {
|
|
155
|
-
input.minutes = minutes;
|
|
156
|
-
}
|
|
157
|
-
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input });
|
|
158
|
-
return {
|
|
159
|
-
json: responseData,
|
|
160
|
-
pairedItem: { item: itemIndex },
|
|
161
|
-
};
|
|
162
|
-
}
|
|
163
|
-
//# sourceMappingURL=create.operation.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"create.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/meeting/create.operation.ts"],"names":[],"mappings":";;;AAwHA,0BAmEC;AA5KD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,iBAAiB;QAC9B,IAAI,EAAE,gBAAgB;QACtB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,4BAA4B;QACzC,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,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,yBAAyB;QACtC,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,UAAU;QAChB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,kCAAkC;QAC/C,QAAQ,EAAE,IAAI;KACd;IACD;QACC,WAAW,EAAE,cAAc;QAC3B,IAAI,EAAE,aAAa;QACnB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,mDAAmD;KAChE;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACZ,IAAI,EAAE,CAAC;SACP;QACD,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,4BAA4B;KACzC;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,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,kBAAkB;gBACxB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,8CAA8C;aAC3D;YACD;gBACC,WAAW,EAAE,sBAAsB;gBACnC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,iDAAiD;aAC9D;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,cAAc,GAAG,IAAI,CAAC,gBAAgB,CAAC,gBAAgB,EAAE,SAAS,CAAW,CAAC;IACpF,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,SAAS,CAAW,CAAC;IAChE,MAAM,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,SAAS,CAAW,CAAC;IAChE,MAAM,cAAc,GAAG,IAAI,CAAC,gBAAgB,CAAC,aAAa,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IACrF,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;IAC1E,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,EAAE,CAG7D,CAAC;IAEF,MAAM,iBAAiB,GAAG,OAAO,CAAC,gBAAgB;QACjD,CAAC,CAAC;;;IAGA;QACF,CAAC,CAAC,EAAE,CAAC;IAEN,MAAM,oBAAoB,GAAG,OAAO,CAAC,mBAAmB;QACvD,CAAC,CAAC;;;IAGA;QACF,CAAC,CAAC,EAAE,CAAC;IAEN,MAAM,KAAK,GAAG;;;;;;;;;QASP,iBAAiB;QACjB,oBAAoB;;;;;;;EAO1B,CAAC;IAEF,MAAM,WAAW,GAAG,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAElH,MAAM,KAAK,GAA4B;QACtC,cAAc;QACd,IAAI;QACJ,IAAI,EAAE,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE;KAClC,CAAC;IACF,IAAI,WAAW,IAAI,WAAW,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAC3C,KAAK,CAAC,WAAW,GAAG,WAAW,CAAC;IACjC,CAAC;IACD,IAAI,OAAO,EAAE,CAAC;QACb,KAAK,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,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,37 +0,0 @@
|
|
|
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: 'Meeting ID',
|
|
9
|
-
name: 'meetingId',
|
|
10
|
-
type: 'string',
|
|
11
|
-
displayOptions: {
|
|
12
|
-
show: {
|
|
13
|
-
resource: ['meeting'],
|
|
14
|
-
operation: ['delete'],
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
default: '',
|
|
18
|
-
description: 'The ID of the meeting to delete',
|
|
19
|
-
required: true,
|
|
20
|
-
},
|
|
21
|
-
];
|
|
22
|
-
async function execute(itemIndex) {
|
|
23
|
-
const meetingId = this.getNodeParameter('meetingId', itemIndex);
|
|
24
|
-
const query = `
|
|
25
|
-
mutation DeleteMeeting($input: DeleteMeetingInput!) {
|
|
26
|
-
deleteMeeting(input: $input) {
|
|
27
|
-
deletedMeetingId
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
`;
|
|
31
|
-
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, { input: { meetingId } });
|
|
32
|
-
return {
|
|
33
|
-
json: responseData,
|
|
34
|
-
pairedItem: { item: itemIndex },
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
//# sourceMappingURL=delete.operation.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"delete.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/meeting/delete.operation.ts"],"names":[],"mappings":";;;AAkCA,0BAoBC;AAvCD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,QAAQ,CAAC;aACrB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,iCAAiC;QAC9C,QAAQ,EAAE,IAAI;KACd;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,SAAS,CAAW,CAAC;IAE1E,MAAM,KAAK,GAAG;;;;;;EAMb,CAAC;IAEF,MAAM,YAAY,GAAG,MAAM,kCAAe,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC;IAEvF,OAAO;QACN,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;KAC/B,CAAC;AACH,CAAC"}
|
|
@@ -1,91 +0,0 @@
|
|
|
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: 'Meeting ID',
|
|
9
|
-
name: 'meetingId',
|
|
10
|
-
type: 'string',
|
|
11
|
-
displayOptions: {
|
|
12
|
-
show: {
|
|
13
|
-
resource: ['meeting'],
|
|
14
|
-
operation: ['get'],
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
default: '',
|
|
18
|
-
description: 'The ID of the meeting',
|
|
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: ['meeting'],
|
|
30
|
-
operation: ['get'],
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
options: [
|
|
34
|
-
{
|
|
35
|
-
displayName: 'Include Attendees',
|
|
36
|
-
name: 'includeAttendees',
|
|
37
|
-
type: 'boolean',
|
|
38
|
-
default: false,
|
|
39
|
-
description: 'Whether to include attendees in the response',
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
displayName: 'Include Organization',
|
|
43
|
-
name: 'includeOrganization',
|
|
44
|
-
type: 'boolean',
|
|
45
|
-
default: false,
|
|
46
|
-
description: 'Whether to include organization in the response',
|
|
47
|
-
},
|
|
48
|
-
],
|
|
49
|
-
},
|
|
50
|
-
];
|
|
51
|
-
async function execute(itemIndex) {
|
|
52
|
-
const meetingId = this.getNodeParameter('meetingId', itemIndex);
|
|
53
|
-
const options = this.getNodeParameter('options', itemIndex, {});
|
|
54
|
-
const attendeesFragment = options.includeAttendees
|
|
55
|
-
? `attendees {
|
|
56
|
-
id
|
|
57
|
-
fullName
|
|
58
|
-
}`
|
|
59
|
-
: '';
|
|
60
|
-
const organizationFragment = options.includeOrganization
|
|
61
|
-
? `organization {
|
|
62
|
-
id
|
|
63
|
-
name
|
|
64
|
-
}`
|
|
65
|
-
: '';
|
|
66
|
-
const query = `
|
|
67
|
-
query GetMeeting($meetingId: ID!) {
|
|
68
|
-
node(id: $meetingId) {
|
|
69
|
-
... on Meeting {
|
|
70
|
-
id
|
|
71
|
-
name
|
|
72
|
-
date
|
|
73
|
-
minutes
|
|
74
|
-
${attendeesFragment}
|
|
75
|
-
${organizationFragment}
|
|
76
|
-
createdAt
|
|
77
|
-
updatedAt
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
`;
|
|
82
|
-
const variables = {
|
|
83
|
-
meetingId,
|
|
84
|
-
};
|
|
85
|
-
const responseData = await GenericFunctions_1.proboApiRequest.call(this, query, variables);
|
|
86
|
-
return {
|
|
87
|
-
json: responseData,
|
|
88
|
-
pairedItem: { item: itemIndex },
|
|
89
|
-
};
|
|
90
|
-
}
|
|
91
|
-
//# sourceMappingURL=get.operation.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"get.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/meeting/get.operation.ts"],"names":[],"mappings":";;;AA+DA,0BAmDC;AAnGD,6DAAyD;AAE5C,QAAA,WAAW,GAAsB;IAC7C;QACC,WAAW,EAAE,YAAY;QACzB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,QAAQ;QACd,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,uBAAuB;QACpC,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,SAAS,CAAC;gBACrB,SAAS,EAAE,CAAC,KAAK,CAAC;aAClB;SACD;QACD,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,kBAAkB;gBACxB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,8CAA8C;aAC3D;YACD;gBACC,WAAW,EAAE,sBAAsB;gBACnC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,iDAAiD;aAC9D;SACD;KACD;CACD,CAAC;AAEK,KAAK,UAAU,OAAO,CAE5B,SAAiB;IAEjB,MAAM,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,SAAS,CAAW,CAAC;IAC1E,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,EAAE,CAG7D,CAAC;IAEF,MAAM,iBAAiB,GAAG,OAAO,CAAC,gBAAgB;QACjD,CAAC,CAAC;;;IAGA;QACF,CAAC,CAAC,EAAE,CAAC;IAEN,MAAM,oBAAoB,GAAG,OAAO,CAAC,mBAAmB;QACvD,CAAC,CAAC;;;IAGA;QACF,CAAC,CAAC,EAAE,CAAC;IAEN,MAAM,KAAK,GAAG;;;;;;;;OAQR,iBAAiB;OACjB,oBAAoB;;;;;;EAMzB,CAAC;IAEF,MAAM,SAAS,GAAG;QACjB,SAAS;KACT,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"}
|
|
@@ -1,134 +0,0 @@
|
|
|
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: ['meeting'],
|
|
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: ['meeting'],
|
|
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: ['meeting'],
|
|
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: ['meeting'],
|
|
60
|
-
operation: ['getAll'],
|
|
61
|
-
},
|
|
62
|
-
},
|
|
63
|
-
options: [
|
|
64
|
-
{
|
|
65
|
-
displayName: 'Include Attendees',
|
|
66
|
-
name: 'includeAttendees',
|
|
67
|
-
type: 'boolean',
|
|
68
|
-
default: false,
|
|
69
|
-
description: 'Whether to include attendees in the response',
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
displayName: 'Include Organization',
|
|
73
|
-
name: 'includeOrganization',
|
|
74
|
-
type: 'boolean',
|
|
75
|
-
default: false,
|
|
76
|
-
description: 'Whether to include organization in the response',
|
|
77
|
-
},
|
|
78
|
-
],
|
|
79
|
-
},
|
|
80
|
-
];
|
|
81
|
-
async function execute(itemIndex) {
|
|
82
|
-
const organizationId = this.getNodeParameter('organizationId', itemIndex);
|
|
83
|
-
const returnAll = this.getNodeParameter('returnAll', itemIndex);
|
|
84
|
-
const limit = this.getNodeParameter('limit', itemIndex, 50);
|
|
85
|
-
const options = this.getNodeParameter('options', itemIndex, {});
|
|
86
|
-
const attendeesFragment = options.includeAttendees
|
|
87
|
-
? `attendees {
|
|
88
|
-
id
|
|
89
|
-
fullName
|
|
90
|
-
}`
|
|
91
|
-
: '';
|
|
92
|
-
const organizationFragment = options.includeOrganization
|
|
93
|
-
? `organization {
|
|
94
|
-
id
|
|
95
|
-
name
|
|
96
|
-
}`
|
|
97
|
-
: '';
|
|
98
|
-
const query = `
|
|
99
|
-
query GetMeetings($organizationId: ID!, $first: Int, $after: CursorKey) {
|
|
100
|
-
node(id: $organizationId) {
|
|
101
|
-
... on Organization {
|
|
102
|
-
meetings(first: $first, after: $after) {
|
|
103
|
-
edges {
|
|
104
|
-
node {
|
|
105
|
-
id
|
|
106
|
-
name
|
|
107
|
-
date
|
|
108
|
-
minutes
|
|
109
|
-
${attendeesFragment}
|
|
110
|
-
${organizationFragment}
|
|
111
|
-
createdAt
|
|
112
|
-
updatedAt
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
pageInfo {
|
|
116
|
-
hasNextPage
|
|
117
|
-
endCursor
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
`;
|
|
124
|
-
const meetings = await GenericFunctions_1.proboApiRequestAllItems.call(this, query, { organizationId }, (response) => {
|
|
125
|
-
const data = response === null || response === void 0 ? void 0 : response.data;
|
|
126
|
-
const node = data === null || data === void 0 ? void 0 : data.node;
|
|
127
|
-
return node === null || node === void 0 ? void 0 : node.meetings;
|
|
128
|
-
}, returnAll, limit);
|
|
129
|
-
return {
|
|
130
|
-
json: { meetings },
|
|
131
|
-
pairedItem: { item: itemIndex },
|
|
132
|
-
};
|
|
133
|
-
}
|
|
134
|
-
//# sourceMappingURL=getAll.operation.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getAll.operation.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/meeting/getAll.operation.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,8 +0,0 @@
|
|
|
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 };
|
|
@@ -1,98 +0,0 @@
|
|
|
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: ['meeting'],
|
|
56
|
-
},
|
|
57
|
-
},
|
|
58
|
-
options: [
|
|
59
|
-
{
|
|
60
|
-
name: 'Create',
|
|
61
|
-
value: 'create',
|
|
62
|
-
description: 'Create a new meeting',
|
|
63
|
-
action: 'Create a meeting',
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
name: 'Delete',
|
|
67
|
-
value: 'delete',
|
|
68
|
-
description: 'Delete a meeting',
|
|
69
|
-
action: 'Delete a meeting',
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
name: 'Get',
|
|
73
|
-
value: 'get',
|
|
74
|
-
description: 'Get a meeting',
|
|
75
|
-
action: 'Get a meeting',
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
name: 'Get Many',
|
|
79
|
-
value: 'getAll',
|
|
80
|
-
description: 'Get many meetings',
|
|
81
|
-
action: 'Get many meetings',
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
name: 'Update',
|
|
85
|
-
value: 'update',
|
|
86
|
-
description: 'Update an existing meeting',
|
|
87
|
-
action: 'Update a meeting',
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Probo/actions/meeting/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAeA,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,SAAS,CAAC;aACrB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,sBAAsB;gBACnC,MAAM,EAAE,kBAAkB;aAC1B;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,kBAAkB;gBAC/B,MAAM,EAAE,kBAAkB;aAC1B;YACD;gBACC,IAAI,EAAE,KAAK;gBACX,KAAK,EAAE,KAAK;gBACZ,WAAW,EAAE,eAAe;gBAC5B,MAAM,EAAE,eAAe;aACvB;YACD;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,mBAAmB;gBAChC,MAAM,EAAE,mBAAmB;aAC3B;YACD;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,QAAQ;gBACf,WAAW,EAAE,4BAA4B;gBACzC,MAAM,EAAE,kBAAkB;aAC1B;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"}
|