@joshuanode/n8n-nodes-scalepad 0.0.4 → 0.0.6
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/README.md +73 -131
- package/dist/nodes/ScalePadCore/ScalePadCore.node.js +798 -11
- package/dist/nodes/ScalePadCore/descriptions/ActionItemDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/ActionItemDescription.js +306 -0
- package/dist/nodes/ScalePadCore/descriptions/AssessmentDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/AssessmentDescription.js +291 -0
- package/dist/nodes/ScalePadCore/descriptions/AssessmentTemplateDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/AssessmentTemplateDescription.js +59 -0
- package/dist/nodes/ScalePadCore/descriptions/ContractDescription.js +242 -21
- package/dist/nodes/ScalePadCore/descriptions/GoalDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/GoalDescription.js +468 -0
- package/dist/nodes/ScalePadCore/descriptions/HardwareLifecycleDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/HardwareLifecycleDescription.js +81 -0
- package/dist/nodes/ScalePadCore/descriptions/InitiativeDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/InitiativeDescription.js +565 -0
- package/dist/nodes/ScalePadCore/descriptions/LmContractDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/LmContractDescription.js +342 -0
- package/dist/nodes/ScalePadCore/descriptions/MeetingDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/MeetingDescription.js +501 -0
- package/dist/nodes/ScalePadCore/descriptions/NoteDescription.d.ts +3 -0
- package/dist/nodes/ScalePadCore/descriptions/NoteDescription.js +289 -0
- package/dist/nodes/ScalePadLifecycleManager/ScalePadLifecycleManager.node.d.ts +6 -0
- package/dist/nodes/ScalePadLifecycleManager/ScalePadLifecycleManager.node.js +837 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/ActionItemDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/ActionItemDescription.js +306 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/AssessmentDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/AssessmentDescription.js +291 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/AssessmentTemplateDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/AssessmentTemplateDescription.js +59 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/ContractDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/ContractDescription.js +342 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/GoalDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/GoalDescription.js +468 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/HardwareLifecycleDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/HardwareLifecycleDescription.js +81 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/InitiativeDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/InitiativeDescription.js +565 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/MeetingDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/MeetingDescription.js +501 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/NoteDescription.d.ts +3 -0
- package/dist/nodes/ScalePadLifecycleManager/descriptions/NoteDescription.js +289 -0
- package/dist/nodes/ScalePadLifecycleManager/scalepad.svg +17 -0
- package/package.json +1 -1
|
@@ -0,0 +1,501 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.meetingFields = exports.meetingOperations = void 0;
|
|
4
|
+
exports.meetingOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['meeting'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Create',
|
|
18
|
+
value: 'create',
|
|
19
|
+
description: 'Create a new meeting',
|
|
20
|
+
action: 'Create a meeting',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'Delete',
|
|
24
|
+
value: 'delete',
|
|
25
|
+
description: 'Delete a meeting',
|
|
26
|
+
action: 'Delete a meeting',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Get',
|
|
30
|
+
value: 'get',
|
|
31
|
+
description: 'Get a meeting by ID',
|
|
32
|
+
action: 'Get a meeting',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Get Many',
|
|
36
|
+
value: 'getAll',
|
|
37
|
+
description: 'Get many meetings',
|
|
38
|
+
action: 'Get many meetings',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Update',
|
|
42
|
+
value: 'update',
|
|
43
|
+
description: 'Update a meeting',
|
|
44
|
+
action: 'Update a meeting',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Update Completion Status',
|
|
48
|
+
value: 'updateCompletionStatus',
|
|
49
|
+
description: 'Mark a meeting as completed or incomplete',
|
|
50
|
+
action: 'Update meeting completion status',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Add User Attendees',
|
|
54
|
+
value: 'addUserAttendees',
|
|
55
|
+
description: 'Add user attendees to a meeting',
|
|
56
|
+
action: 'Add user attendees to a meeting',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'Remove User Attendees',
|
|
60
|
+
value: 'removeUserAttendees',
|
|
61
|
+
description: 'Remove user attendees from a meeting',
|
|
62
|
+
action: 'Remove user attendees from a meeting',
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: 'Add Contact Attendees',
|
|
66
|
+
value: 'addContactAttendees',
|
|
67
|
+
description: 'Add contact attendees to a meeting',
|
|
68
|
+
action: 'Add contact attendees to a meeting',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'Remove Contact Attendees',
|
|
72
|
+
value: 'removeContactAttendees',
|
|
73
|
+
description: 'Remove contact attendees from a meeting',
|
|
74
|
+
action: 'Remove contact attendees from a meeting',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: 'List Initiatives',
|
|
78
|
+
value: 'listInitiatives',
|
|
79
|
+
description: 'List initiatives attached to a meeting',
|
|
80
|
+
action: 'List meeting initiatives',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
name: 'Link Initiative',
|
|
84
|
+
value: 'linkInitiative',
|
|
85
|
+
description: 'Link an initiative to a meeting',
|
|
86
|
+
action: 'Link initiative to a meeting',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: 'Unlink Initiative',
|
|
90
|
+
value: 'unlinkInitiative',
|
|
91
|
+
description: 'Unlink an initiative from a meeting',
|
|
92
|
+
action: 'Unlink initiative from a meeting',
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: 'List Goals',
|
|
96
|
+
value: 'listGoals',
|
|
97
|
+
description: 'List goals attached to a meeting',
|
|
98
|
+
action: 'List meeting goals',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
name: 'Link Goal',
|
|
102
|
+
value: 'linkGoal',
|
|
103
|
+
description: 'Link a goal to a meeting',
|
|
104
|
+
action: 'Link goal to a meeting',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: 'Unlink Goal',
|
|
108
|
+
value: 'unlinkGoal',
|
|
109
|
+
description: 'Unlink a goal from a meeting',
|
|
110
|
+
action: 'Unlink goal from a meeting',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: 'List Action Items',
|
|
114
|
+
value: 'listActionItems',
|
|
115
|
+
description: 'List action items attached to a meeting',
|
|
116
|
+
action: 'List meeting action items',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
name: 'Link Action Item',
|
|
120
|
+
value: 'linkActionItem',
|
|
121
|
+
description: 'Link an action item to a meeting',
|
|
122
|
+
action: 'Link action item to a meeting',
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
name: 'Unlink Action Item',
|
|
126
|
+
value: 'unlinkActionItem',
|
|
127
|
+
description: 'Unlink an action item from a meeting',
|
|
128
|
+
action: 'Unlink action item from a meeting',
|
|
129
|
+
},
|
|
130
|
+
],
|
|
131
|
+
default: 'getAll',
|
|
132
|
+
},
|
|
133
|
+
];
|
|
134
|
+
exports.meetingFields = [
|
|
135
|
+
// Meeting ID for get/update/delete operations
|
|
136
|
+
{
|
|
137
|
+
displayName: 'Meeting ID',
|
|
138
|
+
name: 'meetingId',
|
|
139
|
+
type: 'string',
|
|
140
|
+
required: true,
|
|
141
|
+
displayOptions: {
|
|
142
|
+
show: {
|
|
143
|
+
resource: ['meeting'],
|
|
144
|
+
operation: [
|
|
145
|
+
'get',
|
|
146
|
+
'update',
|
|
147
|
+
'delete',
|
|
148
|
+
'updateCompletionStatus',
|
|
149
|
+
'addUserAttendees',
|
|
150
|
+
'removeUserAttendees',
|
|
151
|
+
'addContactAttendees',
|
|
152
|
+
'removeContactAttendees',
|
|
153
|
+
'listInitiatives',
|
|
154
|
+
'linkInitiative',
|
|
155
|
+
'unlinkInitiative',
|
|
156
|
+
'listGoals',
|
|
157
|
+
'linkGoal',
|
|
158
|
+
'unlinkGoal',
|
|
159
|
+
'listActionItems',
|
|
160
|
+
'linkActionItem',
|
|
161
|
+
'unlinkActionItem',
|
|
162
|
+
],
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
default: '',
|
|
166
|
+
description: 'The ID of the meeting',
|
|
167
|
+
},
|
|
168
|
+
// Create operation fields
|
|
169
|
+
{
|
|
170
|
+
displayName: 'Client ID',
|
|
171
|
+
name: 'clientId',
|
|
172
|
+
type: 'string',
|
|
173
|
+
required: true,
|
|
174
|
+
displayOptions: {
|
|
175
|
+
show: {
|
|
176
|
+
resource: ['meeting'],
|
|
177
|
+
operation: ['create'],
|
|
178
|
+
},
|
|
179
|
+
},
|
|
180
|
+
default: '',
|
|
181
|
+
description: 'The ID of the client for this meeting',
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
displayName: 'Title',
|
|
185
|
+
name: 'title',
|
|
186
|
+
type: 'string',
|
|
187
|
+
required: true,
|
|
188
|
+
displayOptions: {
|
|
189
|
+
show: {
|
|
190
|
+
resource: ['meeting'],
|
|
191
|
+
operation: ['create'],
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
default: '',
|
|
195
|
+
description: 'The title of the meeting',
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
displayName: 'Scheduled At',
|
|
199
|
+
name: 'scheduledAt',
|
|
200
|
+
type: 'dateTime',
|
|
201
|
+
required: true,
|
|
202
|
+
displayOptions: {
|
|
203
|
+
show: {
|
|
204
|
+
resource: ['meeting'],
|
|
205
|
+
operation: ['create'],
|
|
206
|
+
},
|
|
207
|
+
},
|
|
208
|
+
default: '',
|
|
209
|
+
description: 'The scheduled date and time for the meeting',
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
displayName: 'Additional Fields',
|
|
213
|
+
name: 'additionalFields',
|
|
214
|
+
type: 'collection',
|
|
215
|
+
placeholder: 'Add Field',
|
|
216
|
+
default: {},
|
|
217
|
+
displayOptions: {
|
|
218
|
+
show: {
|
|
219
|
+
resource: ['meeting'],
|
|
220
|
+
operation: ['create'],
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
options: [
|
|
224
|
+
{
|
|
225
|
+
displayName: 'Description',
|
|
226
|
+
name: 'description',
|
|
227
|
+
type: 'string',
|
|
228
|
+
typeOptions: {
|
|
229
|
+
rows: 4,
|
|
230
|
+
},
|
|
231
|
+
default: '',
|
|
232
|
+
description: 'Description or notes for the meeting',
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
displayName: 'Duration (Minutes)',
|
|
236
|
+
name: 'duration',
|
|
237
|
+
type: 'number',
|
|
238
|
+
typeOptions: {
|
|
239
|
+
minValue: 1,
|
|
240
|
+
},
|
|
241
|
+
default: 60,
|
|
242
|
+
description: 'Duration of the meeting in minutes',
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
displayName: 'Location',
|
|
246
|
+
name: 'location',
|
|
247
|
+
type: 'string',
|
|
248
|
+
default: '',
|
|
249
|
+
description: 'Location of the meeting',
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
displayName: 'Meeting Type',
|
|
253
|
+
name: 'meeting_type',
|
|
254
|
+
type: 'options',
|
|
255
|
+
options: [
|
|
256
|
+
{ name: 'Business Review', value: 'business_review' },
|
|
257
|
+
{ name: 'Strategy', value: 'strategy' },
|
|
258
|
+
{ name: 'Technical', value: 'technical' },
|
|
259
|
+
{ name: 'Other', value: 'other' },
|
|
260
|
+
],
|
|
261
|
+
default: 'business_review',
|
|
262
|
+
description: 'Type of meeting',
|
|
263
|
+
},
|
|
264
|
+
],
|
|
265
|
+
},
|
|
266
|
+
// Update operation fields
|
|
267
|
+
{
|
|
268
|
+
displayName: 'Update Fields',
|
|
269
|
+
name: 'updateFields',
|
|
270
|
+
type: 'collection',
|
|
271
|
+
placeholder: 'Add Field',
|
|
272
|
+
default: {},
|
|
273
|
+
displayOptions: {
|
|
274
|
+
show: {
|
|
275
|
+
resource: ['meeting'],
|
|
276
|
+
operation: ['update'],
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
options: [
|
|
280
|
+
{
|
|
281
|
+
displayName: 'Title',
|
|
282
|
+
name: 'title',
|
|
283
|
+
type: 'string',
|
|
284
|
+
default: '',
|
|
285
|
+
description: 'The title of the meeting',
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
displayName: 'Description',
|
|
289
|
+
name: 'description',
|
|
290
|
+
type: 'string',
|
|
291
|
+
typeOptions: {
|
|
292
|
+
rows: 4,
|
|
293
|
+
},
|
|
294
|
+
default: '',
|
|
295
|
+
description: 'Description or notes for the meeting',
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
displayName: 'Scheduled At',
|
|
299
|
+
name: 'scheduled_at',
|
|
300
|
+
type: 'dateTime',
|
|
301
|
+
default: '',
|
|
302
|
+
description: 'The scheduled date and time for the meeting',
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
displayName: 'Duration (Minutes)',
|
|
306
|
+
name: 'duration',
|
|
307
|
+
type: 'number',
|
|
308
|
+
typeOptions: {
|
|
309
|
+
minValue: 1,
|
|
310
|
+
},
|
|
311
|
+
default: 60,
|
|
312
|
+
description: 'Duration of the meeting in minutes',
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
displayName: 'Location',
|
|
316
|
+
name: 'location',
|
|
317
|
+
type: 'string',
|
|
318
|
+
default: '',
|
|
319
|
+
description: 'Location of the meeting',
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
displayName: 'Meeting Type',
|
|
323
|
+
name: 'meeting_type',
|
|
324
|
+
type: 'options',
|
|
325
|
+
options: [
|
|
326
|
+
{ name: 'Business Review', value: 'business_review' },
|
|
327
|
+
{ name: 'Strategy', value: 'strategy' },
|
|
328
|
+
{ name: 'Technical', value: 'technical' },
|
|
329
|
+
{ name: 'Other', value: 'other' },
|
|
330
|
+
],
|
|
331
|
+
default: 'business_review',
|
|
332
|
+
description: 'Type of meeting',
|
|
333
|
+
},
|
|
334
|
+
],
|
|
335
|
+
},
|
|
336
|
+
// Completion status
|
|
337
|
+
{
|
|
338
|
+
displayName: 'Is Completed',
|
|
339
|
+
name: 'isCompleted',
|
|
340
|
+
type: 'boolean',
|
|
341
|
+
required: true,
|
|
342
|
+
displayOptions: {
|
|
343
|
+
show: {
|
|
344
|
+
resource: ['meeting'],
|
|
345
|
+
operation: ['updateCompletionStatus'],
|
|
346
|
+
},
|
|
347
|
+
},
|
|
348
|
+
default: false,
|
|
349
|
+
description: 'Whether the meeting is marked as completed',
|
|
350
|
+
},
|
|
351
|
+
// User attendees
|
|
352
|
+
{
|
|
353
|
+
displayName: 'User IDs',
|
|
354
|
+
name: 'userIds',
|
|
355
|
+
type: 'string',
|
|
356
|
+
required: true,
|
|
357
|
+
displayOptions: {
|
|
358
|
+
show: {
|
|
359
|
+
resource: ['meeting'],
|
|
360
|
+
operation: ['addUserAttendees', 'removeUserAttendees'],
|
|
361
|
+
},
|
|
362
|
+
},
|
|
363
|
+
default: '',
|
|
364
|
+
description: 'Comma-separated list of user IDs to add or remove',
|
|
365
|
+
},
|
|
366
|
+
// Contact attendees
|
|
367
|
+
{
|
|
368
|
+
displayName: 'Contact IDs',
|
|
369
|
+
name: 'contactIds',
|
|
370
|
+
type: 'string',
|
|
371
|
+
required: true,
|
|
372
|
+
displayOptions: {
|
|
373
|
+
show: {
|
|
374
|
+
resource: ['meeting'],
|
|
375
|
+
operation: ['addContactAttendees', 'removeContactAttendees'],
|
|
376
|
+
},
|
|
377
|
+
},
|
|
378
|
+
default: '',
|
|
379
|
+
description: 'Comma-separated list of contact IDs to add or remove',
|
|
380
|
+
},
|
|
381
|
+
// Initiative linking
|
|
382
|
+
{
|
|
383
|
+
displayName: 'Initiative ID',
|
|
384
|
+
name: 'initiativeId',
|
|
385
|
+
type: 'string',
|
|
386
|
+
required: true,
|
|
387
|
+
displayOptions: {
|
|
388
|
+
show: {
|
|
389
|
+
resource: ['meeting'],
|
|
390
|
+
operation: ['linkInitiative', 'unlinkInitiative'],
|
|
391
|
+
},
|
|
392
|
+
},
|
|
393
|
+
default: '',
|
|
394
|
+
description: 'The ID of the initiative to link or unlink',
|
|
395
|
+
},
|
|
396
|
+
// Goal linking
|
|
397
|
+
{
|
|
398
|
+
displayName: 'Goal ID',
|
|
399
|
+
name: 'goalId',
|
|
400
|
+
type: 'string',
|
|
401
|
+
required: true,
|
|
402
|
+
displayOptions: {
|
|
403
|
+
show: {
|
|
404
|
+
resource: ['meeting'],
|
|
405
|
+
operation: ['linkGoal', 'unlinkGoal'],
|
|
406
|
+
},
|
|
407
|
+
},
|
|
408
|
+
default: '',
|
|
409
|
+
description: 'The ID of the goal to link or unlink',
|
|
410
|
+
},
|
|
411
|
+
// Action item linking
|
|
412
|
+
{
|
|
413
|
+
displayName: 'Action Item ID',
|
|
414
|
+
name: 'actionItemId',
|
|
415
|
+
type: 'string',
|
|
416
|
+
required: true,
|
|
417
|
+
displayOptions: {
|
|
418
|
+
show: {
|
|
419
|
+
resource: ['meeting'],
|
|
420
|
+
operation: ['linkActionItem', 'unlinkActionItem'],
|
|
421
|
+
},
|
|
422
|
+
},
|
|
423
|
+
default: '',
|
|
424
|
+
description: 'The ID of the action item to link or unlink',
|
|
425
|
+
},
|
|
426
|
+
// Get Many operation
|
|
427
|
+
{
|
|
428
|
+
displayName: 'Return All',
|
|
429
|
+
name: 'returnAll',
|
|
430
|
+
type: 'boolean',
|
|
431
|
+
displayOptions: {
|
|
432
|
+
show: {
|
|
433
|
+
resource: ['meeting'],
|
|
434
|
+
operation: ['getAll'],
|
|
435
|
+
},
|
|
436
|
+
},
|
|
437
|
+
default: false,
|
|
438
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
displayName: 'Limit',
|
|
442
|
+
name: 'limit',
|
|
443
|
+
type: 'number',
|
|
444
|
+
displayOptions: {
|
|
445
|
+
show: {
|
|
446
|
+
resource: ['meeting'],
|
|
447
|
+
operation: ['getAll'],
|
|
448
|
+
returnAll: [false],
|
|
449
|
+
},
|
|
450
|
+
},
|
|
451
|
+
typeOptions: {
|
|
452
|
+
minValue: 1,
|
|
453
|
+
maxValue: 200,
|
|
454
|
+
},
|
|
455
|
+
default: 50,
|
|
456
|
+
description: 'Max number of results to return',
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
displayName: 'Filters',
|
|
460
|
+
name: 'filters',
|
|
461
|
+
type: 'collection',
|
|
462
|
+
placeholder: 'Add Filter',
|
|
463
|
+
default: {},
|
|
464
|
+
displayOptions: {
|
|
465
|
+
show: {
|
|
466
|
+
resource: ['meeting'],
|
|
467
|
+
operation: ['getAll'],
|
|
468
|
+
},
|
|
469
|
+
},
|
|
470
|
+
options: [
|
|
471
|
+
{
|
|
472
|
+
displayName: 'Client ID',
|
|
473
|
+
name: 'clientId',
|
|
474
|
+
type: 'string',
|
|
475
|
+
default: '',
|
|
476
|
+
description: 'Filter by client ID',
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
displayName: 'Is Completed',
|
|
480
|
+
name: 'isCompleted',
|
|
481
|
+
type: 'boolean',
|
|
482
|
+
default: false,
|
|
483
|
+
description: 'Filter by completion status',
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
displayName: 'Scheduled After',
|
|
487
|
+
name: 'scheduledAfter',
|
|
488
|
+
type: 'dateTime',
|
|
489
|
+
default: '',
|
|
490
|
+
description: 'Filter meetings scheduled after this date',
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
displayName: 'Scheduled Before',
|
|
494
|
+
name: 'scheduledBefore',
|
|
495
|
+
type: 'dateTime',
|
|
496
|
+
default: '',
|
|
497
|
+
description: 'Filter meetings scheduled before this date',
|
|
498
|
+
},
|
|
499
|
+
],
|
|
500
|
+
},
|
|
501
|
+
];
|