@rippling/rippling-sdk 0.2.0-alpha.30 → 0.2.0-alpha.31
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/package.json +1 -1
- package/resources/workflow-action-executions.d.mts +444 -30
- package/resources/workflow-action-executions.d.mts.map +1 -1
- package/resources/workflow-action-executions.d.ts +444 -30
- package/resources/workflow-action-executions.d.ts.map +1 -1
- package/src/resources/workflow-action-executions.ts +535 -30
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -96,15 +96,133 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
96
96
|
* docs</helpdocslink>
|
|
97
97
|
*/
|
|
98
98
|
export interface SendEmailPayload {
|
|
99
|
+
/**
|
|
100
|
+
* Email mode
|
|
101
|
+
*/
|
|
99
102
|
action_type: 'INDIVIDUAL_EMAILS' | 'GROUP_EMAIL';
|
|
100
103
|
|
|
101
104
|
body: string;
|
|
102
105
|
|
|
103
|
-
send_to:
|
|
106
|
+
send_to: SendEmailPayload.SendTo;
|
|
104
107
|
|
|
105
108
|
subject: string;
|
|
106
109
|
|
|
107
|
-
|
|
110
|
+
/**
|
|
111
|
+
* Maximum total attachment size: 20MB
|
|
112
|
+
*/
|
|
113
|
+
attachments?: Array<SendEmailPayload.Attachment> | null;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export namespace SendEmailPayload {
|
|
117
|
+
export interface SendTo {
|
|
118
|
+
bcc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
|
|
119
|
+
|
|
120
|
+
cc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
|
|
121
|
+
|
|
122
|
+
to?: SendTo.Recipient1 | SendTo.Recipient2 | null;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
export namespace SendTo {
|
|
126
|
+
export interface Recipient1 {
|
|
127
|
+
supergroup: Array<string>;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Email type
|
|
131
|
+
*/
|
|
132
|
+
emailType?:
|
|
133
|
+
| 'work_or_personal_email'
|
|
134
|
+
| 'work_email_only'
|
|
135
|
+
| 'personal_email_only'
|
|
136
|
+
| 'work_and_personal_email'
|
|
137
|
+
| null;
|
|
138
|
+
|
|
139
|
+
externalEmails?: Array<string> | null;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface Recipient2 {
|
|
143
|
+
externalEmails: Array<string>;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Email type
|
|
147
|
+
*/
|
|
148
|
+
emailType?:
|
|
149
|
+
| 'work_or_personal_email'
|
|
150
|
+
| 'work_email_only'
|
|
151
|
+
| 'personal_email_only'
|
|
152
|
+
| 'work_and_personal_email'
|
|
153
|
+
| null;
|
|
154
|
+
|
|
155
|
+
supergroup?: Array<string> | null;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface Recipient1 {
|
|
159
|
+
supergroup: Array<string>;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Email type
|
|
163
|
+
*/
|
|
164
|
+
emailType?:
|
|
165
|
+
| 'work_or_personal_email'
|
|
166
|
+
| 'work_email_only'
|
|
167
|
+
| 'personal_email_only'
|
|
168
|
+
| 'work_and_personal_email'
|
|
169
|
+
| null;
|
|
170
|
+
|
|
171
|
+
externalEmails?: Array<string> | null;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export interface Recipient2 {
|
|
175
|
+
externalEmails: Array<string>;
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Email type
|
|
179
|
+
*/
|
|
180
|
+
emailType?:
|
|
181
|
+
| 'work_or_personal_email'
|
|
182
|
+
| 'work_email_only'
|
|
183
|
+
| 'personal_email_only'
|
|
184
|
+
| 'work_and_personal_email'
|
|
185
|
+
| null;
|
|
186
|
+
|
|
187
|
+
supergroup?: Array<string> | null;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export interface Recipient1 {
|
|
191
|
+
supergroup: Array<string>;
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Email type
|
|
195
|
+
*/
|
|
196
|
+
emailType?:
|
|
197
|
+
| 'work_or_personal_email'
|
|
198
|
+
| 'work_email_only'
|
|
199
|
+
| 'personal_email_only'
|
|
200
|
+
| 'work_and_personal_email'
|
|
201
|
+
| null;
|
|
202
|
+
|
|
203
|
+
externalEmails?: Array<string> | null;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
export interface Recipient2 {
|
|
207
|
+
externalEmails: Array<string>;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Email type
|
|
211
|
+
*/
|
|
212
|
+
emailType?:
|
|
213
|
+
| 'work_or_personal_email'
|
|
214
|
+
| 'work_email_only'
|
|
215
|
+
| 'personal_email_only'
|
|
216
|
+
| 'work_and_personal_email'
|
|
217
|
+
| null;
|
|
218
|
+
|
|
219
|
+
supergroup?: Array<string> | null;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export interface Attachment {
|
|
224
|
+
fileName: string;
|
|
225
|
+
}
|
|
108
226
|
}
|
|
109
227
|
|
|
110
228
|
/**
|
|
@@ -115,6 +233,11 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
115
233
|
export interface SendSlackSingleDirectMessagePayload {
|
|
116
234
|
action_type: 'SINGLE_DIRECT_MESSAGE';
|
|
117
235
|
|
|
236
|
+
/**
|
|
237
|
+
* Advanced formatting (Slack mentions, links, and channels) is supported through
|
|
238
|
+
* <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
|
|
239
|
+
* markup options</a>
|
|
240
|
+
*/
|
|
118
241
|
body: string;
|
|
119
242
|
|
|
120
243
|
recipients: Array<string>;
|
|
@@ -128,6 +251,11 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
128
251
|
export interface SendSlackGroupDirectMessagePayload {
|
|
129
252
|
action_type: 'GROUP_DIRECT_MESSAGE';
|
|
130
253
|
|
|
254
|
+
/**
|
|
255
|
+
* Advanced formatting (Slack mentions, links, and channels) is supported through
|
|
256
|
+
* <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
|
|
257
|
+
* markup options</a>
|
|
258
|
+
*/
|
|
131
259
|
body: string;
|
|
132
260
|
|
|
133
261
|
recipients: Array<string>;
|
|
@@ -141,6 +269,11 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
141
269
|
export interface SendSlackPublicChannelMessagePayload {
|
|
142
270
|
action_type: 'PUBLIC_CHANNEL_MESSAGE';
|
|
143
271
|
|
|
272
|
+
/**
|
|
273
|
+
* Advanced formatting (Slack mentions, links, and channels) is supported through
|
|
274
|
+
* <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
|
|
275
|
+
* markup options</a>
|
|
276
|
+
*/
|
|
144
277
|
body: string;
|
|
145
278
|
|
|
146
279
|
channel: string;
|
|
@@ -154,6 +287,11 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
154
287
|
export interface SendSlackPrivateChannelMessagePayload {
|
|
155
288
|
action_type: 'PRIVATE_CHANNEL_MESSAGE';
|
|
156
289
|
|
|
290
|
+
/**
|
|
291
|
+
* Advanced formatting (Slack mentions, links, and channels) is supported through
|
|
292
|
+
* <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
|
|
293
|
+
* markup options</a>
|
|
294
|
+
*/
|
|
157
295
|
body: string;
|
|
158
296
|
|
|
159
297
|
channel: string;
|
|
@@ -171,7 +309,17 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
171
309
|
|
|
172
310
|
subject: string;
|
|
173
311
|
|
|
174
|
-
dueDate?:
|
|
312
|
+
dueDate?: CreateAppNotificationPayload.DueDate | CreateAppNotificationPayload.DueDate1 | null;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
export namespace CreateAppNotificationPayload {
|
|
316
|
+
export interface DueDate {
|
|
317
|
+
date: string;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export interface DueDate1 {
|
|
321
|
+
daysFromNow: number;
|
|
322
|
+
}
|
|
175
323
|
}
|
|
176
324
|
|
|
177
325
|
/**
|
|
@@ -180,6 +328,9 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
180
328
|
* docs</helpdocslink>
|
|
181
329
|
*/
|
|
182
330
|
export interface SendSMSPayload {
|
|
331
|
+
/**
|
|
332
|
+
* Maximum characters: 500
|
|
333
|
+
*/
|
|
183
334
|
message: string;
|
|
184
335
|
|
|
185
336
|
recipients: Array<string>;
|
|
@@ -192,8 +343,14 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
192
343
|
* docs</helpdocslink>
|
|
193
344
|
*/
|
|
194
345
|
export interface SendPushNotificationPayload {
|
|
346
|
+
/**
|
|
347
|
+
* Maximum character count: 65
|
|
348
|
+
*/
|
|
195
349
|
header: string;
|
|
196
350
|
|
|
351
|
+
/**
|
|
352
|
+
* In many devices, your description will be truncated after 178 characters.
|
|
353
|
+
*/
|
|
197
354
|
message: string;
|
|
198
355
|
|
|
199
356
|
recipients: Array<string>;
|
|
@@ -209,15 +366,18 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
209
366
|
export interface SendHTTPRequestPayload {
|
|
210
367
|
url: string;
|
|
211
368
|
|
|
212
|
-
customHTTPHeaders?:
|
|
369
|
+
customHTTPHeaders?: { [key: string]: string } | null;
|
|
213
370
|
|
|
214
371
|
expectedResponseSchema?: unknown | null;
|
|
215
372
|
|
|
373
|
+
/**
|
|
374
|
+
* HTTP method
|
|
375
|
+
*/
|
|
216
376
|
method?: 'POST' | 'GET' | 'PUT' | 'PATCH' | 'DELETE' | null;
|
|
217
377
|
|
|
218
378
|
payload?: unknown | null;
|
|
219
379
|
|
|
220
|
-
queryParams?:
|
|
380
|
+
queryParams?: { [key: string]: string } | null;
|
|
221
381
|
}
|
|
222
382
|
|
|
223
383
|
/**
|
|
@@ -267,11 +427,20 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
267
427
|
export interface EvaluateRqlQueryPayload {
|
|
268
428
|
queryType: 'QUERY';
|
|
269
429
|
|
|
430
|
+
/**
|
|
431
|
+
* Data type
|
|
432
|
+
*/
|
|
270
433
|
dataType?: 'STRING' | 'NUMBER' | 'BOOLEAN' | 'OBJECT_ID' | 'DATE' | 'DATETIME' | null;
|
|
271
434
|
|
|
272
435
|
isAList?: boolean | null;
|
|
273
436
|
|
|
274
|
-
rqlFormula?:
|
|
437
|
+
rqlFormula?: EvaluateRqlQueryPayload.RqlFormula | null;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
export namespace EvaluateRqlQueryPayload {
|
|
441
|
+
export interface RqlFormula {
|
|
442
|
+
rqlFormula?: string | null;
|
|
443
|
+
}
|
|
275
444
|
}
|
|
276
445
|
|
|
277
446
|
/**
|
|
@@ -303,7 +472,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
303
472
|
|
|
304
473
|
description: string;
|
|
305
474
|
|
|
306
|
-
end:
|
|
475
|
+
end: CreateGcalEventWorkflowOwnerNullPayload.End;
|
|
307
476
|
|
|
308
477
|
organizer_type: 'WORKFLOW_OWNER';
|
|
309
478
|
|
|
@@ -311,7 +480,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
311
480
|
|
|
312
481
|
spoke_owner: string;
|
|
313
482
|
|
|
314
|
-
start:
|
|
483
|
+
start: CreateGcalEventWorkflowOwnerNullPayload.Start;
|
|
315
484
|
|
|
316
485
|
timezone: string;
|
|
317
486
|
|
|
@@ -325,11 +494,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
325
494
|
|
|
326
495
|
guestsCanSeeOtherGuests?: boolean | null;
|
|
327
496
|
|
|
497
|
+
/**
|
|
498
|
+
* Show me as
|
|
499
|
+
*/
|
|
328
500
|
transparency?: 'opaque' | 'transparent' | null;
|
|
329
501
|
|
|
502
|
+
/**
|
|
503
|
+
* Calendar Visibility
|
|
504
|
+
*/
|
|
330
505
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
331
506
|
}
|
|
332
507
|
|
|
508
|
+
export namespace CreateGcalEventWorkflowOwnerNullPayload {
|
|
509
|
+
export interface End {
|
|
510
|
+
date: string;
|
|
511
|
+
|
|
512
|
+
time: string;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
export interface Start {
|
|
516
|
+
date: string;
|
|
517
|
+
|
|
518
|
+
time: string;
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
|
|
333
522
|
/**
|
|
334
523
|
* This action will create a Google Calendar event with the specified organizer and
|
|
335
524
|
* attendees
|
|
@@ -341,7 +530,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
341
530
|
|
|
342
531
|
description: string;
|
|
343
532
|
|
|
344
|
-
end:
|
|
533
|
+
end: CreateGcalEventWorkflowOwnerDailyPayload.End;
|
|
345
534
|
|
|
346
535
|
organizer_type: 'WORKFLOW_OWNER';
|
|
347
536
|
|
|
@@ -349,7 +538,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
349
538
|
|
|
350
539
|
spoke_owner: string;
|
|
351
540
|
|
|
352
|
-
start:
|
|
541
|
+
start: CreateGcalEventWorkflowOwnerDailyPayload.Start;
|
|
353
542
|
|
|
354
543
|
timezone: string;
|
|
355
544
|
|
|
@@ -365,11 +554,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
365
554
|
|
|
366
555
|
recurrence_has_end?: boolean | null;
|
|
367
556
|
|
|
557
|
+
/**
|
|
558
|
+
* Show me as
|
|
559
|
+
*/
|
|
368
560
|
transparency?: 'opaque' | 'transparent' | null;
|
|
369
561
|
|
|
562
|
+
/**
|
|
563
|
+
* Calendar Visibility
|
|
564
|
+
*/
|
|
370
565
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
371
566
|
}
|
|
372
567
|
|
|
568
|
+
export namespace CreateGcalEventWorkflowOwnerDailyPayload {
|
|
569
|
+
export interface End {
|
|
570
|
+
date: string;
|
|
571
|
+
|
|
572
|
+
time: string;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
export interface Start {
|
|
576
|
+
date: string;
|
|
577
|
+
|
|
578
|
+
time: string;
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
|
|
373
582
|
/**
|
|
374
583
|
* This action will create a Google Calendar event with the specified organizer and
|
|
375
584
|
* attendees
|
|
@@ -381,7 +590,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
381
590
|
|
|
382
591
|
description: string;
|
|
383
592
|
|
|
384
|
-
end:
|
|
593
|
+
end: CreateGcalEventWorkflowOwnerWeeklyPayload.End;
|
|
385
594
|
|
|
386
595
|
organizer_type: 'WORKFLOW_OWNER';
|
|
387
596
|
|
|
@@ -389,7 +598,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
389
598
|
|
|
390
599
|
spoke_owner: string;
|
|
391
600
|
|
|
392
|
-
start:
|
|
601
|
+
start: CreateGcalEventWorkflowOwnerWeeklyPayload.Start;
|
|
393
602
|
|
|
394
603
|
timezone: string;
|
|
395
604
|
|
|
@@ -405,11 +614,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
405
614
|
|
|
406
615
|
recurrence_has_end?: boolean | null;
|
|
407
616
|
|
|
617
|
+
/**
|
|
618
|
+
* Show me as
|
|
619
|
+
*/
|
|
408
620
|
transparency?: 'opaque' | 'transparent' | null;
|
|
409
621
|
|
|
622
|
+
/**
|
|
623
|
+
* Calendar Visibility
|
|
624
|
+
*/
|
|
410
625
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
411
626
|
}
|
|
412
627
|
|
|
628
|
+
export namespace CreateGcalEventWorkflowOwnerWeeklyPayload {
|
|
629
|
+
export interface End {
|
|
630
|
+
date: string;
|
|
631
|
+
|
|
632
|
+
time: string;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
export interface Start {
|
|
636
|
+
date: string;
|
|
637
|
+
|
|
638
|
+
time: string;
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
|
|
413
642
|
/**
|
|
414
643
|
* This action will create a Google Calendar event with the specified organizer and
|
|
415
644
|
* attendees
|
|
@@ -421,7 +650,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
421
650
|
|
|
422
651
|
description: string;
|
|
423
652
|
|
|
424
|
-
end:
|
|
653
|
+
end: CreateGcalEventWorkflowOwnerMonthlyPayload.End;
|
|
425
654
|
|
|
426
655
|
organizer_type: 'WORKFLOW_OWNER';
|
|
427
656
|
|
|
@@ -429,7 +658,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
429
658
|
|
|
430
659
|
spoke_owner: string;
|
|
431
660
|
|
|
432
|
-
start:
|
|
661
|
+
start: CreateGcalEventWorkflowOwnerMonthlyPayload.Start;
|
|
433
662
|
|
|
434
663
|
timezone: string;
|
|
435
664
|
|
|
@@ -445,11 +674,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
445
674
|
|
|
446
675
|
recurrence_has_end?: boolean | null;
|
|
447
676
|
|
|
677
|
+
/**
|
|
678
|
+
* Show me as
|
|
679
|
+
*/
|
|
448
680
|
transparency?: 'opaque' | 'transparent' | null;
|
|
449
681
|
|
|
682
|
+
/**
|
|
683
|
+
* Calendar Visibility
|
|
684
|
+
*/
|
|
450
685
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
451
686
|
}
|
|
452
687
|
|
|
688
|
+
export namespace CreateGcalEventWorkflowOwnerMonthlyPayload {
|
|
689
|
+
export interface End {
|
|
690
|
+
date: string;
|
|
691
|
+
|
|
692
|
+
time: string;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
export interface Start {
|
|
696
|
+
date: string;
|
|
697
|
+
|
|
698
|
+
time: string;
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
|
|
453
702
|
/**
|
|
454
703
|
* This action will create a Google Calendar event with the specified organizer and
|
|
455
704
|
* attendees
|
|
@@ -461,7 +710,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
461
710
|
|
|
462
711
|
description: string;
|
|
463
712
|
|
|
464
|
-
end:
|
|
713
|
+
end: CreateGcalEventWorkflowOwnerYearlyPayload.End;
|
|
465
714
|
|
|
466
715
|
organizer_type: 'WORKFLOW_OWNER';
|
|
467
716
|
|
|
@@ -469,7 +718,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
469
718
|
|
|
470
719
|
spoke_owner: string;
|
|
471
720
|
|
|
472
|
-
start:
|
|
721
|
+
start: CreateGcalEventWorkflowOwnerYearlyPayload.Start;
|
|
473
722
|
|
|
474
723
|
timezone: string;
|
|
475
724
|
|
|
@@ -485,11 +734,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
485
734
|
|
|
486
735
|
recurrence_has_end?: boolean | null;
|
|
487
736
|
|
|
737
|
+
/**
|
|
738
|
+
* Show me as
|
|
739
|
+
*/
|
|
488
740
|
transparency?: 'opaque' | 'transparent' | null;
|
|
489
741
|
|
|
742
|
+
/**
|
|
743
|
+
* Calendar Visibility
|
|
744
|
+
*/
|
|
490
745
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
491
746
|
}
|
|
492
747
|
|
|
748
|
+
export namespace CreateGcalEventWorkflowOwnerYearlyPayload {
|
|
749
|
+
export interface End {
|
|
750
|
+
date: string;
|
|
751
|
+
|
|
752
|
+
time: string;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
export interface Start {
|
|
756
|
+
date: string;
|
|
757
|
+
|
|
758
|
+
time: string;
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
|
|
493
762
|
/**
|
|
494
763
|
* This action will create a Google Calendar event with the specified organizer and
|
|
495
764
|
* attendees
|
|
@@ -501,7 +770,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
501
770
|
|
|
502
771
|
description: string;
|
|
503
772
|
|
|
504
|
-
end:
|
|
773
|
+
end: CreateGcalEventSupergroupNullPayload.End;
|
|
505
774
|
|
|
506
775
|
organizer: Array<string>;
|
|
507
776
|
|
|
@@ -511,7 +780,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
511
780
|
|
|
512
781
|
spoke_owner: string;
|
|
513
782
|
|
|
514
|
-
start:
|
|
783
|
+
start: CreateGcalEventSupergroupNullPayload.Start;
|
|
515
784
|
|
|
516
785
|
timezone: string;
|
|
517
786
|
|
|
@@ -525,11 +794,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
525
794
|
|
|
526
795
|
guestsCanSeeOtherGuests?: boolean | null;
|
|
527
796
|
|
|
797
|
+
/**
|
|
798
|
+
* Show me as
|
|
799
|
+
*/
|
|
528
800
|
transparency?: 'opaque' | 'transparent' | null;
|
|
529
801
|
|
|
802
|
+
/**
|
|
803
|
+
* Calendar Visibility
|
|
804
|
+
*/
|
|
530
805
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
531
806
|
}
|
|
532
807
|
|
|
808
|
+
export namespace CreateGcalEventSupergroupNullPayload {
|
|
809
|
+
export interface End {
|
|
810
|
+
date: string;
|
|
811
|
+
|
|
812
|
+
time: string;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
export interface Start {
|
|
816
|
+
date: string;
|
|
817
|
+
|
|
818
|
+
time: string;
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
|
|
533
822
|
/**
|
|
534
823
|
* This action will create a Google Calendar event with the specified organizer and
|
|
535
824
|
* attendees
|
|
@@ -541,7 +830,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
541
830
|
|
|
542
831
|
description: string;
|
|
543
832
|
|
|
544
|
-
end:
|
|
833
|
+
end: CreateGcalEventSupergroupDailyPayload.End;
|
|
545
834
|
|
|
546
835
|
organizer: Array<string>;
|
|
547
836
|
|
|
@@ -551,7 +840,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
551
840
|
|
|
552
841
|
spoke_owner: string;
|
|
553
842
|
|
|
554
|
-
start:
|
|
843
|
+
start: CreateGcalEventSupergroupDailyPayload.Start;
|
|
555
844
|
|
|
556
845
|
timezone: string;
|
|
557
846
|
|
|
@@ -567,11 +856,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
567
856
|
|
|
568
857
|
recurrence_has_end?: boolean | null;
|
|
569
858
|
|
|
859
|
+
/**
|
|
860
|
+
* Show me as
|
|
861
|
+
*/
|
|
570
862
|
transparency?: 'opaque' | 'transparent' | null;
|
|
571
863
|
|
|
864
|
+
/**
|
|
865
|
+
* Calendar Visibility
|
|
866
|
+
*/
|
|
572
867
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
573
868
|
}
|
|
574
869
|
|
|
870
|
+
export namespace CreateGcalEventSupergroupDailyPayload {
|
|
871
|
+
export interface End {
|
|
872
|
+
date: string;
|
|
873
|
+
|
|
874
|
+
time: string;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
export interface Start {
|
|
878
|
+
date: string;
|
|
879
|
+
|
|
880
|
+
time: string;
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
|
|
575
884
|
/**
|
|
576
885
|
* This action will create a Google Calendar event with the specified organizer and
|
|
577
886
|
* attendees
|
|
@@ -583,7 +892,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
583
892
|
|
|
584
893
|
description: string;
|
|
585
894
|
|
|
586
|
-
end:
|
|
895
|
+
end: CreateGcalEventSupergroupWeeklyPayload.End;
|
|
587
896
|
|
|
588
897
|
organizer: Array<string>;
|
|
589
898
|
|
|
@@ -593,7 +902,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
593
902
|
|
|
594
903
|
spoke_owner: string;
|
|
595
904
|
|
|
596
|
-
start:
|
|
905
|
+
start: CreateGcalEventSupergroupWeeklyPayload.Start;
|
|
597
906
|
|
|
598
907
|
timezone: string;
|
|
599
908
|
|
|
@@ -609,11 +918,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
609
918
|
|
|
610
919
|
recurrence_has_end?: boolean | null;
|
|
611
920
|
|
|
921
|
+
/**
|
|
922
|
+
* Show me as
|
|
923
|
+
*/
|
|
612
924
|
transparency?: 'opaque' | 'transparent' | null;
|
|
613
925
|
|
|
926
|
+
/**
|
|
927
|
+
* Calendar Visibility
|
|
928
|
+
*/
|
|
614
929
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
615
930
|
}
|
|
616
931
|
|
|
932
|
+
export namespace CreateGcalEventSupergroupWeeklyPayload {
|
|
933
|
+
export interface End {
|
|
934
|
+
date: string;
|
|
935
|
+
|
|
936
|
+
time: string;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
export interface Start {
|
|
940
|
+
date: string;
|
|
941
|
+
|
|
942
|
+
time: string;
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
|
|
617
946
|
/**
|
|
618
947
|
* This action will create a Google Calendar event with the specified organizer and
|
|
619
948
|
* attendees
|
|
@@ -625,7 +954,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
625
954
|
|
|
626
955
|
description: string;
|
|
627
956
|
|
|
628
|
-
end:
|
|
957
|
+
end: CreateGcalEventSupergroupMonthlyPayload.End;
|
|
629
958
|
|
|
630
959
|
organizer: Array<string>;
|
|
631
960
|
|
|
@@ -635,7 +964,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
635
964
|
|
|
636
965
|
spoke_owner: string;
|
|
637
966
|
|
|
638
|
-
start:
|
|
967
|
+
start: CreateGcalEventSupergroupMonthlyPayload.Start;
|
|
639
968
|
|
|
640
969
|
timezone: string;
|
|
641
970
|
|
|
@@ -651,11 +980,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
651
980
|
|
|
652
981
|
recurrence_has_end?: boolean | null;
|
|
653
982
|
|
|
983
|
+
/**
|
|
984
|
+
* Show me as
|
|
985
|
+
*/
|
|
654
986
|
transparency?: 'opaque' | 'transparent' | null;
|
|
655
987
|
|
|
988
|
+
/**
|
|
989
|
+
* Calendar Visibility
|
|
990
|
+
*/
|
|
656
991
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
657
992
|
}
|
|
658
993
|
|
|
994
|
+
export namespace CreateGcalEventSupergroupMonthlyPayload {
|
|
995
|
+
export interface End {
|
|
996
|
+
date: string;
|
|
997
|
+
|
|
998
|
+
time: string;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
export interface Start {
|
|
1002
|
+
date: string;
|
|
1003
|
+
|
|
1004
|
+
time: string;
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
|
|
659
1008
|
/**
|
|
660
1009
|
* This action will create a Google Calendar event with the specified organizer and
|
|
661
1010
|
* attendees
|
|
@@ -667,7 +1016,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
667
1016
|
|
|
668
1017
|
description: string;
|
|
669
1018
|
|
|
670
|
-
end:
|
|
1019
|
+
end: CreateGcalEventSupergroupYearlyPayload.End;
|
|
671
1020
|
|
|
672
1021
|
organizer: Array<string>;
|
|
673
1022
|
|
|
@@ -677,7 +1026,7 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
677
1026
|
|
|
678
1027
|
spoke_owner: string;
|
|
679
1028
|
|
|
680
|
-
start:
|
|
1029
|
+
start: CreateGcalEventSupergroupYearlyPayload.Start;
|
|
681
1030
|
|
|
682
1031
|
timezone: string;
|
|
683
1032
|
|
|
@@ -693,11 +1042,31 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
693
1042
|
|
|
694
1043
|
recurrence_has_end?: boolean | null;
|
|
695
1044
|
|
|
1045
|
+
/**
|
|
1046
|
+
* Show me as
|
|
1047
|
+
*/
|
|
696
1048
|
transparency?: 'opaque' | 'transparent' | null;
|
|
697
1049
|
|
|
1050
|
+
/**
|
|
1051
|
+
* Calendar Visibility
|
|
1052
|
+
*/
|
|
698
1053
|
visibility?: 'default' | 'public' | 'private' | null;
|
|
699
1054
|
}
|
|
700
1055
|
|
|
1056
|
+
export namespace CreateGcalEventSupergroupYearlyPayload {
|
|
1057
|
+
export interface End {
|
|
1058
|
+
date: string;
|
|
1059
|
+
|
|
1060
|
+
time: string;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
export interface Start {
|
|
1064
|
+
date: string;
|
|
1065
|
+
|
|
1066
|
+
time: string;
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
|
|
701
1070
|
/**
|
|
702
1071
|
* An action that sends a teams message
|
|
703
1072
|
* <helpdocslink href='https://help.rippling.com/article?articleId=558988438231'>Help
|
|
@@ -736,6 +1105,9 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
736
1105
|
|
|
737
1106
|
reviewees: Array<string>;
|
|
738
1107
|
|
|
1108
|
+
/**
|
|
1109
|
+
* Maximum reviewees: 500
|
|
1110
|
+
*/
|
|
739
1111
|
reviewers: Array<string>;
|
|
740
1112
|
}
|
|
741
1113
|
|
|
@@ -751,6 +1123,9 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
751
1123
|
|
|
752
1124
|
reviewees: Array<string>;
|
|
753
1125
|
|
|
1126
|
+
/**
|
|
1127
|
+
* Maximum reviewees: 500
|
|
1128
|
+
*/
|
|
754
1129
|
reviewers: Array<string>;
|
|
755
1130
|
}
|
|
756
1131
|
|
|
@@ -763,32 +1138,63 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
763
1138
|
export interface SendReportSftpPasswordExcelPayload {
|
|
764
1139
|
authentication_type: 'PASSWORD';
|
|
765
1140
|
|
|
1141
|
+
/**
|
|
1142
|
+
* Specify the full path where the file should be stored on the remote server,
|
|
1143
|
+
* starting from the root directory. Example: /rippling-workflows
|
|
1144
|
+
*/
|
|
766
1145
|
file_path: string;
|
|
767
1146
|
|
|
768
1147
|
file_type: 'EXCEL';
|
|
769
1148
|
|
|
1149
|
+
/**
|
|
1150
|
+
* sftp://username@[hostname]
|
|
1151
|
+
*/
|
|
770
1152
|
host_name: string;
|
|
771
1153
|
|
|
1154
|
+
/**
|
|
1155
|
+
* Not all report types are supported in workflows, like change and trend reports
|
|
1156
|
+
*/
|
|
772
1157
|
report_id: string;
|
|
773
1158
|
|
|
1159
|
+
/**
|
|
1160
|
+
* sftp://[username]@hostname
|
|
1161
|
+
*/
|
|
774
1162
|
user_name: string;
|
|
775
1163
|
|
|
776
1164
|
add_role_referenced_id_column?: boolean | null;
|
|
777
1165
|
|
|
778
|
-
|
|
1166
|
+
/**
|
|
1167
|
+
* CSV quoting
|
|
1168
|
+
*/
|
|
1169
|
+
csv_quoting?: 1 | 0 | 2 | 3 | null;
|
|
779
1170
|
|
|
1171
|
+
/**
|
|
1172
|
+
* Currency field formatting
|
|
1173
|
+
*/
|
|
780
1174
|
currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
|
|
781
1175
|
|
|
1176
|
+
/**
|
|
1177
|
+
* Date & time formatting
|
|
1178
|
+
*/
|
|
782
1179
|
date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
|
|
783
1180
|
|
|
1181
|
+
/**
|
|
1182
|
+
* Files will be automatically named if the file name is empty
|
|
1183
|
+
*/
|
|
784
1184
|
file_name?: string | null;
|
|
785
1185
|
|
|
1186
|
+
/**
|
|
1187
|
+
* File name suffix
|
|
1188
|
+
*/
|
|
786
1189
|
file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
|
|
787
1190
|
|
|
788
1191
|
port?: number | null;
|
|
789
1192
|
|
|
790
1193
|
show_sub_totals?: boolean | null;
|
|
791
1194
|
|
|
1195
|
+
/**
|
|
1196
|
+
* Time zones
|
|
1197
|
+
*/
|
|
792
1198
|
time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
|
|
793
1199
|
}
|
|
794
1200
|
|
|
@@ -801,34 +1207,68 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
801
1207
|
export interface SendReportSftpPasswordCsvPayload {
|
|
802
1208
|
authentication_type: 'PASSWORD';
|
|
803
1209
|
|
|
1210
|
+
/**
|
|
1211
|
+
* Specify the full path where the file should be stored on the remote server,
|
|
1212
|
+
* starting from the root directory. Example: /rippling-workflows
|
|
1213
|
+
*/
|
|
804
1214
|
file_path: string;
|
|
805
1215
|
|
|
806
1216
|
file_type: 'CSV';
|
|
807
1217
|
|
|
1218
|
+
/**
|
|
1219
|
+
* sftp://username@[hostname]
|
|
1220
|
+
*/
|
|
808
1221
|
host_name: string;
|
|
809
1222
|
|
|
1223
|
+
/**
|
|
1224
|
+
* Not all report types are supported in workflows, like change and trend reports
|
|
1225
|
+
*/
|
|
810
1226
|
report_id: string;
|
|
811
1227
|
|
|
1228
|
+
/**
|
|
1229
|
+
* sftp://[username]@hostname
|
|
1230
|
+
*/
|
|
812
1231
|
user_name: string;
|
|
813
1232
|
|
|
814
1233
|
add_role_referenced_id_column?: boolean | null;
|
|
815
1234
|
|
|
816
|
-
|
|
1235
|
+
/**
|
|
1236
|
+
* CSV quoting
|
|
1237
|
+
*/
|
|
1238
|
+
csv_quoting?: 1 | 0 | 2 | 3 | null;
|
|
817
1239
|
|
|
1240
|
+
/**
|
|
1241
|
+
* Custom separator
|
|
1242
|
+
*/
|
|
818
1243
|
csv_separator?: ',' | ';' | '\t' | '|' | null;
|
|
819
1244
|
|
|
1245
|
+
/**
|
|
1246
|
+
* Currency field formatting
|
|
1247
|
+
*/
|
|
820
1248
|
currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
|
|
821
1249
|
|
|
1250
|
+
/**
|
|
1251
|
+
* Date & time formatting
|
|
1252
|
+
*/
|
|
822
1253
|
date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
|
|
823
1254
|
|
|
1255
|
+
/**
|
|
1256
|
+
* Files will be automatically named if the file name is empty
|
|
1257
|
+
*/
|
|
824
1258
|
file_name?: string | null;
|
|
825
1259
|
|
|
1260
|
+
/**
|
|
1261
|
+
* File name suffix
|
|
1262
|
+
*/
|
|
826
1263
|
file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
|
|
827
1264
|
|
|
828
1265
|
port?: number | null;
|
|
829
1266
|
|
|
830
1267
|
show_sub_totals?: boolean | null;
|
|
831
1268
|
|
|
1269
|
+
/**
|
|
1270
|
+
* Time zones
|
|
1271
|
+
*/
|
|
832
1272
|
time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
|
|
833
1273
|
}
|
|
834
1274
|
|
|
@@ -841,32 +1281,63 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
841
1281
|
export interface SendReportSftpSSHKeyExcelPayload {
|
|
842
1282
|
authentication_type: 'SSH_KEY';
|
|
843
1283
|
|
|
1284
|
+
/**
|
|
1285
|
+
* Specify the full path where the file should be stored on the remote server,
|
|
1286
|
+
* starting from the root directory. Example: /rippling-workflows
|
|
1287
|
+
*/
|
|
844
1288
|
file_path: string;
|
|
845
1289
|
|
|
846
1290
|
file_type: 'EXCEL';
|
|
847
1291
|
|
|
1292
|
+
/**
|
|
1293
|
+
* sftp://username@[hostname]
|
|
1294
|
+
*/
|
|
848
1295
|
host_name: string;
|
|
849
1296
|
|
|
1297
|
+
/**
|
|
1298
|
+
* Not all report types are supported in workflows, like change and trend reports
|
|
1299
|
+
*/
|
|
850
1300
|
report_id: string;
|
|
851
1301
|
|
|
1302
|
+
/**
|
|
1303
|
+
* sftp://[username]@hostname
|
|
1304
|
+
*/
|
|
852
1305
|
user_name: string;
|
|
853
1306
|
|
|
854
1307
|
add_role_referenced_id_column?: boolean | null;
|
|
855
1308
|
|
|
856
|
-
|
|
1309
|
+
/**
|
|
1310
|
+
* CSV quoting
|
|
1311
|
+
*/
|
|
1312
|
+
csv_quoting?: 1 | 0 | 2 | 3 | null;
|
|
857
1313
|
|
|
1314
|
+
/**
|
|
1315
|
+
* Currency field formatting
|
|
1316
|
+
*/
|
|
858
1317
|
currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
|
|
859
1318
|
|
|
1319
|
+
/**
|
|
1320
|
+
* Date & time formatting
|
|
1321
|
+
*/
|
|
860
1322
|
date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
|
|
861
1323
|
|
|
1324
|
+
/**
|
|
1325
|
+
* Files will be automatically named if the file name is empty
|
|
1326
|
+
*/
|
|
862
1327
|
file_name?: string | null;
|
|
863
1328
|
|
|
1329
|
+
/**
|
|
1330
|
+
* File name suffix
|
|
1331
|
+
*/
|
|
864
1332
|
file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
|
|
865
1333
|
|
|
866
1334
|
port?: number | null;
|
|
867
1335
|
|
|
868
1336
|
show_sub_totals?: boolean | null;
|
|
869
1337
|
|
|
1338
|
+
/**
|
|
1339
|
+
* Time zones
|
|
1340
|
+
*/
|
|
870
1341
|
time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
|
|
871
1342
|
}
|
|
872
1343
|
|
|
@@ -879,34 +1350,68 @@ export namespace WorkflowActionExecutionCreateParams {
|
|
|
879
1350
|
export interface SendReportSftpSSHKeyCsvPayload {
|
|
880
1351
|
authentication_type: 'SSH_KEY';
|
|
881
1352
|
|
|
1353
|
+
/**
|
|
1354
|
+
* Specify the full path where the file should be stored on the remote server,
|
|
1355
|
+
* starting from the root directory. Example: /rippling-workflows
|
|
1356
|
+
*/
|
|
882
1357
|
file_path: string;
|
|
883
1358
|
|
|
884
1359
|
file_type: 'CSV';
|
|
885
1360
|
|
|
1361
|
+
/**
|
|
1362
|
+
* sftp://username@[hostname]
|
|
1363
|
+
*/
|
|
886
1364
|
host_name: string;
|
|
887
1365
|
|
|
1366
|
+
/**
|
|
1367
|
+
* Not all report types are supported in workflows, like change and trend reports
|
|
1368
|
+
*/
|
|
888
1369
|
report_id: string;
|
|
889
1370
|
|
|
1371
|
+
/**
|
|
1372
|
+
* sftp://[username]@hostname
|
|
1373
|
+
*/
|
|
890
1374
|
user_name: string;
|
|
891
1375
|
|
|
892
1376
|
add_role_referenced_id_column?: boolean | null;
|
|
893
1377
|
|
|
894
|
-
|
|
1378
|
+
/**
|
|
1379
|
+
* CSV quoting
|
|
1380
|
+
*/
|
|
1381
|
+
csv_quoting?: 1 | 0 | 2 | 3 | null;
|
|
895
1382
|
|
|
1383
|
+
/**
|
|
1384
|
+
* Custom separator
|
|
1385
|
+
*/
|
|
896
1386
|
csv_separator?: ',' | ';' | '\t' | '|' | null;
|
|
897
1387
|
|
|
1388
|
+
/**
|
|
1389
|
+
* Currency field formatting
|
|
1390
|
+
*/
|
|
898
1391
|
currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
|
|
899
1392
|
|
|
1393
|
+
/**
|
|
1394
|
+
* Date & time formatting
|
|
1395
|
+
*/
|
|
900
1396
|
date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
|
|
901
1397
|
|
|
1398
|
+
/**
|
|
1399
|
+
* Files will be automatically named if the file name is empty
|
|
1400
|
+
*/
|
|
902
1401
|
file_name?: string | null;
|
|
903
1402
|
|
|
1403
|
+
/**
|
|
1404
|
+
* File name suffix
|
|
1405
|
+
*/
|
|
904
1406
|
file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
|
|
905
1407
|
|
|
906
1408
|
port?: number | null;
|
|
907
1409
|
|
|
908
1410
|
show_sub_totals?: boolean | null;
|
|
909
1411
|
|
|
1412
|
+
/**
|
|
1413
|
+
* Time zones
|
|
1414
|
+
*/
|
|
910
1415
|
time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
|
|
911
1416
|
}
|
|
912
1417
|
|