@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.
@@ -33,11 +33,77 @@ export declare namespace WorkflowActionExecutionCreateParams {
33
33
  * docs</helpdocslink>
34
34
  */
35
35
  interface SendEmailPayload {
36
+ /**
37
+ * Email mode
38
+ */
36
39
  action_type: 'INDIVIDUAL_EMAILS' | 'GROUP_EMAIL';
37
40
  body: string;
38
- send_to: unknown;
41
+ send_to: SendEmailPayload.SendTo;
39
42
  subject: string;
40
- attachments?: Array<unknown> | null;
43
+ /**
44
+ * Maximum total attachment size: 20MB
45
+ */
46
+ attachments?: Array<SendEmailPayload.Attachment> | null;
47
+ }
48
+ namespace SendEmailPayload {
49
+ interface SendTo {
50
+ bcc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
51
+ cc?: SendTo.Recipient1 | SendTo.Recipient2 | null;
52
+ to?: SendTo.Recipient1 | SendTo.Recipient2 | null;
53
+ }
54
+ namespace SendTo {
55
+ interface Recipient1 {
56
+ supergroup: Array<string>;
57
+ /**
58
+ * Email type
59
+ */
60
+ emailType?: 'work_or_personal_email' | 'work_email_only' | 'personal_email_only' | 'work_and_personal_email' | null;
61
+ externalEmails?: Array<string> | null;
62
+ }
63
+ interface Recipient2 {
64
+ externalEmails: Array<string>;
65
+ /**
66
+ * Email type
67
+ */
68
+ emailType?: 'work_or_personal_email' | 'work_email_only' | 'personal_email_only' | 'work_and_personal_email' | null;
69
+ supergroup?: Array<string> | null;
70
+ }
71
+ interface Recipient1 {
72
+ supergroup: Array<string>;
73
+ /**
74
+ * Email type
75
+ */
76
+ emailType?: 'work_or_personal_email' | 'work_email_only' | 'personal_email_only' | 'work_and_personal_email' | null;
77
+ externalEmails?: Array<string> | null;
78
+ }
79
+ interface Recipient2 {
80
+ externalEmails: Array<string>;
81
+ /**
82
+ * Email type
83
+ */
84
+ emailType?: 'work_or_personal_email' | 'work_email_only' | 'personal_email_only' | 'work_and_personal_email' | null;
85
+ supergroup?: Array<string> | null;
86
+ }
87
+ interface Recipient1 {
88
+ supergroup: Array<string>;
89
+ /**
90
+ * Email type
91
+ */
92
+ emailType?: 'work_or_personal_email' | 'work_email_only' | 'personal_email_only' | 'work_and_personal_email' | null;
93
+ externalEmails?: Array<string> | null;
94
+ }
95
+ interface Recipient2 {
96
+ externalEmails: Array<string>;
97
+ /**
98
+ * Email type
99
+ */
100
+ emailType?: 'work_or_personal_email' | 'work_email_only' | 'personal_email_only' | 'work_and_personal_email' | null;
101
+ supergroup?: Array<string> | null;
102
+ }
103
+ }
104
+ interface Attachment {
105
+ fileName: string;
106
+ }
41
107
  }
42
108
  /**
43
109
  * An action that sends a slack message
@@ -46,6 +112,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
46
112
  */
47
113
  interface SendSlackSingleDirectMessagePayload {
48
114
  action_type: 'SINGLE_DIRECT_MESSAGE';
115
+ /**
116
+ * Advanced formatting (Slack mentions, links, and channels) is supported through
117
+ * <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
118
+ * markup options</a>
119
+ */
49
120
  body: string;
50
121
  recipients: Array<string>;
51
122
  }
@@ -56,6 +127,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
56
127
  */
57
128
  interface SendSlackGroupDirectMessagePayload {
58
129
  action_type: 'GROUP_DIRECT_MESSAGE';
130
+ /**
131
+ * Advanced formatting (Slack mentions, links, and channels) is supported through
132
+ * <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
133
+ * markup options</a>
134
+ */
59
135
  body: string;
60
136
  recipients: Array<string>;
61
137
  }
@@ -66,6 +142,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
66
142
  */
67
143
  interface SendSlackPublicChannelMessagePayload {
68
144
  action_type: 'PUBLIC_CHANNEL_MESSAGE';
145
+ /**
146
+ * Advanced formatting (Slack mentions, links, and channels) is supported through
147
+ * <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
148
+ * markup options</a>
149
+ */
69
150
  body: string;
70
151
  channel: string;
71
152
  }
@@ -76,6 +157,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
76
157
  */
77
158
  interface SendSlackPrivateChannelMessagePayload {
78
159
  action_type: 'PRIVATE_CHANNEL_MESSAGE';
160
+ /**
161
+ * Advanced formatting (Slack mentions, links, and channels) is supported through
162
+ * <a href="https://help.rippling.com/article?articleId=921068789043#add-a-step-to-send-a-slack-message">Slack
163
+ * markup options</a>
164
+ */
79
165
  body: string;
80
166
  channel: string;
81
167
  }
@@ -88,7 +174,15 @@ export declare namespace WorkflowActionExecutionCreateParams {
88
174
  description: string;
89
175
  recipients: Array<string>;
90
176
  subject: string;
91
- dueDate?: unknown | null;
177
+ dueDate?: CreateAppNotificationPayload.DueDate | CreateAppNotificationPayload.DueDate1 | null;
178
+ }
179
+ namespace CreateAppNotificationPayload {
180
+ interface DueDate {
181
+ date: string;
182
+ }
183
+ interface DueDate1 {
184
+ daysFromNow: number;
185
+ }
92
186
  }
93
187
  /**
94
188
  * An action that sends a text message.
@@ -96,6 +190,9 @@ export declare namespace WorkflowActionExecutionCreateParams {
96
190
  * docs</helpdocslink>
97
191
  */
98
192
  interface SendSMSPayload {
193
+ /**
194
+ * Maximum characters: 500
195
+ */
99
196
  message: string;
100
197
  recipients: Array<string>;
101
198
  }
@@ -106,7 +203,13 @@ export declare namespace WorkflowActionExecutionCreateParams {
106
203
  * docs</helpdocslink>
107
204
  */
108
205
  interface SendPushNotificationPayload {
206
+ /**
207
+ * Maximum character count: 65
208
+ */
109
209
  header: string;
210
+ /**
211
+ * In many devices, your description will be truncated after 178 characters.
212
+ */
110
213
  message: string;
111
214
  recipients: Array<string>;
112
215
  }
@@ -119,11 +222,18 @@ export declare namespace WorkflowActionExecutionCreateParams {
119
222
  */
120
223
  interface SendHTTPRequestPayload {
121
224
  url: string;
122
- customHTTPHeaders?: unknown | null;
225
+ customHTTPHeaders?: {
226
+ [key: string]: string;
227
+ } | null;
123
228
  expectedResponseSchema?: unknown | null;
229
+ /**
230
+ * HTTP method
231
+ */
124
232
  method?: 'POST' | 'GET' | 'PUT' | 'PATCH' | 'DELETE' | null;
125
233
  payload?: unknown | null;
126
- queryParams?: unknown | null;
234
+ queryParams?: {
235
+ [key: string]: string;
236
+ } | null;
127
237
  }
128
238
  /**
129
239
  * An action that deletes a custom object record.
@@ -162,9 +272,17 @@ export declare namespace WorkflowActionExecutionCreateParams {
162
272
  */
163
273
  interface EvaluateRqlQueryPayload {
164
274
  queryType: 'QUERY';
275
+ /**
276
+ * Data type
277
+ */
165
278
  dataType?: 'STRING' | 'NUMBER' | 'BOOLEAN' | 'OBJECT_ID' | 'DATE' | 'DATETIME' | null;
166
279
  isAList?: boolean | null;
167
- rqlFormula?: unknown | null;
280
+ rqlFormula?: EvaluateRqlQueryPayload.RqlFormula | null;
281
+ }
282
+ namespace EvaluateRqlQueryPayload {
283
+ interface RqlFormula {
284
+ rqlFormula?: string | null;
285
+ }
168
286
  }
169
287
  /**
170
288
  * An action that creates a custom object record.
@@ -191,20 +309,36 @@ export declare namespace WorkflowActionExecutionCreateParams {
191
309
  interface CreateGcalEventWorkflowOwnerNullPayload {
192
310
  attendees: Array<string>;
193
311
  description: string;
194
- end: unknown;
312
+ end: CreateGcalEventWorkflowOwnerNullPayload.End;
195
313
  organizer_type: 'WORKFLOW_OWNER';
196
314
  recurrence_frequency: 'null';
197
315
  spoke_owner: string;
198
- start: unknown;
316
+ start: CreateGcalEventWorkflowOwnerNullPayload.Start;
199
317
  timezone: string;
200
318
  title: string;
201
319
  all_day_event?: boolean | null;
202
320
  guestsCanInviteOthers?: boolean | null;
203
321
  guestsCanModify?: boolean | null;
204
322
  guestsCanSeeOtherGuests?: boolean | null;
323
+ /**
324
+ * Show me as
325
+ */
205
326
  transparency?: 'opaque' | 'transparent' | null;
327
+ /**
328
+ * Calendar Visibility
329
+ */
206
330
  visibility?: 'default' | 'public' | 'private' | null;
207
331
  }
332
+ namespace CreateGcalEventWorkflowOwnerNullPayload {
333
+ interface End {
334
+ date: string;
335
+ time: string;
336
+ }
337
+ interface Start {
338
+ date: string;
339
+ time: string;
340
+ }
341
+ }
208
342
  /**
209
343
  * This action will create a Google Calendar event with the specified organizer and
210
344
  * attendees
@@ -214,11 +348,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
214
348
  interface CreateGcalEventWorkflowOwnerDailyPayload {
215
349
  attendees: Array<string>;
216
350
  description: string;
217
- end: unknown;
351
+ end: CreateGcalEventWorkflowOwnerDailyPayload.End;
218
352
  organizer_type: 'WORKFLOW_OWNER';
219
353
  recurrence_frequency: 'DAILY';
220
354
  spoke_owner: string;
221
- start: unknown;
355
+ start: CreateGcalEventWorkflowOwnerDailyPayload.Start;
222
356
  timezone: string;
223
357
  title: string;
224
358
  all_day_event?: boolean | null;
@@ -226,9 +360,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
226
360
  guestsCanModify?: boolean | null;
227
361
  guestsCanSeeOtherGuests?: boolean | null;
228
362
  recurrence_has_end?: boolean | null;
363
+ /**
364
+ * Show me as
365
+ */
229
366
  transparency?: 'opaque' | 'transparent' | null;
367
+ /**
368
+ * Calendar Visibility
369
+ */
230
370
  visibility?: 'default' | 'public' | 'private' | null;
231
371
  }
372
+ namespace CreateGcalEventWorkflowOwnerDailyPayload {
373
+ interface End {
374
+ date: string;
375
+ time: string;
376
+ }
377
+ interface Start {
378
+ date: string;
379
+ time: string;
380
+ }
381
+ }
232
382
  /**
233
383
  * This action will create a Google Calendar event with the specified organizer and
234
384
  * attendees
@@ -238,11 +388,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
238
388
  interface CreateGcalEventWorkflowOwnerWeeklyPayload {
239
389
  attendees: Array<string>;
240
390
  description: string;
241
- end: unknown;
391
+ end: CreateGcalEventWorkflowOwnerWeeklyPayload.End;
242
392
  organizer_type: 'WORKFLOW_OWNER';
243
393
  recurrence_frequency: 'WEEKLY';
244
394
  spoke_owner: string;
245
- start: unknown;
395
+ start: CreateGcalEventWorkflowOwnerWeeklyPayload.Start;
246
396
  timezone: string;
247
397
  title: string;
248
398
  all_day_event?: boolean | null;
@@ -250,9 +400,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
250
400
  guestsCanModify?: boolean | null;
251
401
  guestsCanSeeOtherGuests?: boolean | null;
252
402
  recurrence_has_end?: boolean | null;
403
+ /**
404
+ * Show me as
405
+ */
253
406
  transparency?: 'opaque' | 'transparent' | null;
407
+ /**
408
+ * Calendar Visibility
409
+ */
254
410
  visibility?: 'default' | 'public' | 'private' | null;
255
411
  }
412
+ namespace CreateGcalEventWorkflowOwnerWeeklyPayload {
413
+ interface End {
414
+ date: string;
415
+ time: string;
416
+ }
417
+ interface Start {
418
+ date: string;
419
+ time: string;
420
+ }
421
+ }
256
422
  /**
257
423
  * This action will create a Google Calendar event with the specified organizer and
258
424
  * attendees
@@ -262,11 +428,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
262
428
  interface CreateGcalEventWorkflowOwnerMonthlyPayload {
263
429
  attendees: Array<string>;
264
430
  description: string;
265
- end: unknown;
431
+ end: CreateGcalEventWorkflowOwnerMonthlyPayload.End;
266
432
  organizer_type: 'WORKFLOW_OWNER';
267
433
  recurrence_frequency: 'MONTHLY';
268
434
  spoke_owner: string;
269
- start: unknown;
435
+ start: CreateGcalEventWorkflowOwnerMonthlyPayload.Start;
270
436
  timezone: string;
271
437
  title: string;
272
438
  all_day_event?: boolean | null;
@@ -274,9 +440,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
274
440
  guestsCanModify?: boolean | null;
275
441
  guestsCanSeeOtherGuests?: boolean | null;
276
442
  recurrence_has_end?: boolean | null;
443
+ /**
444
+ * Show me as
445
+ */
277
446
  transparency?: 'opaque' | 'transparent' | null;
447
+ /**
448
+ * Calendar Visibility
449
+ */
278
450
  visibility?: 'default' | 'public' | 'private' | null;
279
451
  }
452
+ namespace CreateGcalEventWorkflowOwnerMonthlyPayload {
453
+ interface End {
454
+ date: string;
455
+ time: string;
456
+ }
457
+ interface Start {
458
+ date: string;
459
+ time: string;
460
+ }
461
+ }
280
462
  /**
281
463
  * This action will create a Google Calendar event with the specified organizer and
282
464
  * attendees
@@ -286,11 +468,11 @@ export declare namespace WorkflowActionExecutionCreateParams {
286
468
  interface CreateGcalEventWorkflowOwnerYearlyPayload {
287
469
  attendees: Array<string>;
288
470
  description: string;
289
- end: unknown;
471
+ end: CreateGcalEventWorkflowOwnerYearlyPayload.End;
290
472
  organizer_type: 'WORKFLOW_OWNER';
291
473
  recurrence_frequency: 'YEARLY';
292
474
  spoke_owner: string;
293
- start: unknown;
475
+ start: CreateGcalEventWorkflowOwnerYearlyPayload.Start;
294
476
  timezone: string;
295
477
  title: string;
296
478
  all_day_event?: boolean | null;
@@ -298,9 +480,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
298
480
  guestsCanModify?: boolean | null;
299
481
  guestsCanSeeOtherGuests?: boolean | null;
300
482
  recurrence_has_end?: boolean | null;
483
+ /**
484
+ * Show me as
485
+ */
301
486
  transparency?: 'opaque' | 'transparent' | null;
487
+ /**
488
+ * Calendar Visibility
489
+ */
302
490
  visibility?: 'default' | 'public' | 'private' | null;
303
491
  }
492
+ namespace CreateGcalEventWorkflowOwnerYearlyPayload {
493
+ interface End {
494
+ date: string;
495
+ time: string;
496
+ }
497
+ interface Start {
498
+ date: string;
499
+ time: string;
500
+ }
501
+ }
304
502
  /**
305
503
  * This action will create a Google Calendar event with the specified organizer and
306
504
  * attendees
@@ -310,21 +508,37 @@ export declare namespace WorkflowActionExecutionCreateParams {
310
508
  interface CreateGcalEventSupergroupNullPayload {
311
509
  attendees: Array<string>;
312
510
  description: string;
313
- end: unknown;
511
+ end: CreateGcalEventSupergroupNullPayload.End;
314
512
  organizer: Array<string>;
315
513
  organizer_type: 'SUPERGROUP';
316
514
  recurrence_frequency: 'null';
317
515
  spoke_owner: string;
318
- start: unknown;
516
+ start: CreateGcalEventSupergroupNullPayload.Start;
319
517
  timezone: string;
320
518
  title: string;
321
519
  all_day_event?: boolean | null;
322
520
  guestsCanInviteOthers?: boolean | null;
323
521
  guestsCanModify?: boolean | null;
324
522
  guestsCanSeeOtherGuests?: boolean | null;
523
+ /**
524
+ * Show me as
525
+ */
325
526
  transparency?: 'opaque' | 'transparent' | null;
527
+ /**
528
+ * Calendar Visibility
529
+ */
326
530
  visibility?: 'default' | 'public' | 'private' | null;
327
531
  }
532
+ namespace CreateGcalEventSupergroupNullPayload {
533
+ interface End {
534
+ date: string;
535
+ time: string;
536
+ }
537
+ interface Start {
538
+ date: string;
539
+ time: string;
540
+ }
541
+ }
328
542
  /**
329
543
  * This action will create a Google Calendar event with the specified organizer and
330
544
  * attendees
@@ -334,12 +548,12 @@ export declare namespace WorkflowActionExecutionCreateParams {
334
548
  interface CreateGcalEventSupergroupDailyPayload {
335
549
  attendees: Array<string>;
336
550
  description: string;
337
- end: unknown;
551
+ end: CreateGcalEventSupergroupDailyPayload.End;
338
552
  organizer: Array<string>;
339
553
  organizer_type: 'SUPERGROUP';
340
554
  recurrence_frequency: 'DAILY';
341
555
  spoke_owner: string;
342
- start: unknown;
556
+ start: CreateGcalEventSupergroupDailyPayload.Start;
343
557
  timezone: string;
344
558
  title: string;
345
559
  all_day_event?: boolean | null;
@@ -347,9 +561,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
347
561
  guestsCanModify?: boolean | null;
348
562
  guestsCanSeeOtherGuests?: boolean | null;
349
563
  recurrence_has_end?: boolean | null;
564
+ /**
565
+ * Show me as
566
+ */
350
567
  transparency?: 'opaque' | 'transparent' | null;
568
+ /**
569
+ * Calendar Visibility
570
+ */
351
571
  visibility?: 'default' | 'public' | 'private' | null;
352
572
  }
573
+ namespace CreateGcalEventSupergroupDailyPayload {
574
+ interface End {
575
+ date: string;
576
+ time: string;
577
+ }
578
+ interface Start {
579
+ date: string;
580
+ time: string;
581
+ }
582
+ }
353
583
  /**
354
584
  * This action will create a Google Calendar event with the specified organizer and
355
585
  * attendees
@@ -359,12 +589,12 @@ export declare namespace WorkflowActionExecutionCreateParams {
359
589
  interface CreateGcalEventSupergroupWeeklyPayload {
360
590
  attendees: Array<string>;
361
591
  description: string;
362
- end: unknown;
592
+ end: CreateGcalEventSupergroupWeeklyPayload.End;
363
593
  organizer: Array<string>;
364
594
  organizer_type: 'SUPERGROUP';
365
595
  recurrence_frequency: 'WEEKLY';
366
596
  spoke_owner: string;
367
- start: unknown;
597
+ start: CreateGcalEventSupergroupWeeklyPayload.Start;
368
598
  timezone: string;
369
599
  title: string;
370
600
  all_day_event?: boolean | null;
@@ -372,9 +602,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
372
602
  guestsCanModify?: boolean | null;
373
603
  guestsCanSeeOtherGuests?: boolean | null;
374
604
  recurrence_has_end?: boolean | null;
605
+ /**
606
+ * Show me as
607
+ */
375
608
  transparency?: 'opaque' | 'transparent' | null;
609
+ /**
610
+ * Calendar Visibility
611
+ */
376
612
  visibility?: 'default' | 'public' | 'private' | null;
377
613
  }
614
+ namespace CreateGcalEventSupergroupWeeklyPayload {
615
+ interface End {
616
+ date: string;
617
+ time: string;
618
+ }
619
+ interface Start {
620
+ date: string;
621
+ time: string;
622
+ }
623
+ }
378
624
  /**
379
625
  * This action will create a Google Calendar event with the specified organizer and
380
626
  * attendees
@@ -384,12 +630,12 @@ export declare namespace WorkflowActionExecutionCreateParams {
384
630
  interface CreateGcalEventSupergroupMonthlyPayload {
385
631
  attendees: Array<string>;
386
632
  description: string;
387
- end: unknown;
633
+ end: CreateGcalEventSupergroupMonthlyPayload.End;
388
634
  organizer: Array<string>;
389
635
  organizer_type: 'SUPERGROUP';
390
636
  recurrence_frequency: 'MONTHLY';
391
637
  spoke_owner: string;
392
- start: unknown;
638
+ start: CreateGcalEventSupergroupMonthlyPayload.Start;
393
639
  timezone: string;
394
640
  title: string;
395
641
  all_day_event?: boolean | null;
@@ -397,9 +643,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
397
643
  guestsCanModify?: boolean | null;
398
644
  guestsCanSeeOtherGuests?: boolean | null;
399
645
  recurrence_has_end?: boolean | null;
646
+ /**
647
+ * Show me as
648
+ */
400
649
  transparency?: 'opaque' | 'transparent' | null;
650
+ /**
651
+ * Calendar Visibility
652
+ */
401
653
  visibility?: 'default' | 'public' | 'private' | null;
402
654
  }
655
+ namespace CreateGcalEventSupergroupMonthlyPayload {
656
+ interface End {
657
+ date: string;
658
+ time: string;
659
+ }
660
+ interface Start {
661
+ date: string;
662
+ time: string;
663
+ }
664
+ }
403
665
  /**
404
666
  * This action will create a Google Calendar event with the specified organizer and
405
667
  * attendees
@@ -409,12 +671,12 @@ export declare namespace WorkflowActionExecutionCreateParams {
409
671
  interface CreateGcalEventSupergroupYearlyPayload {
410
672
  attendees: Array<string>;
411
673
  description: string;
412
- end: unknown;
674
+ end: CreateGcalEventSupergroupYearlyPayload.End;
413
675
  organizer: Array<string>;
414
676
  organizer_type: 'SUPERGROUP';
415
677
  recurrence_frequency: 'YEARLY';
416
678
  spoke_owner: string;
417
- start: unknown;
679
+ start: CreateGcalEventSupergroupYearlyPayload.Start;
418
680
  timezone: string;
419
681
  title: string;
420
682
  all_day_event?: boolean | null;
@@ -422,9 +684,25 @@ export declare namespace WorkflowActionExecutionCreateParams {
422
684
  guestsCanModify?: boolean | null;
423
685
  guestsCanSeeOtherGuests?: boolean | null;
424
686
  recurrence_has_end?: boolean | null;
687
+ /**
688
+ * Show me as
689
+ */
425
690
  transparency?: 'opaque' | 'transparent' | null;
691
+ /**
692
+ * Calendar Visibility
693
+ */
426
694
  visibility?: 'default' | 'public' | 'private' | null;
427
695
  }
696
+ namespace CreateGcalEventSupergroupYearlyPayload {
697
+ interface End {
698
+ date: string;
699
+ time: string;
700
+ }
701
+ interface Start {
702
+ date: string;
703
+ time: string;
704
+ }
705
+ }
428
706
  /**
429
707
  * An action that sends a teams message
430
708
  * <helpdocslink href='https://help.rippling.com/article?articleId=558988438231'>Help
@@ -454,6 +732,9 @@ export declare namespace WorkflowActionExecutionCreateParams {
454
732
  cycle_id: string;
455
733
  is_reviewer_relative_to_reviewee: 'REVIEWER_RELATIVE_TO_REVIEWEE';
456
734
  reviewees: Array<string>;
735
+ /**
736
+ * Maximum reviewees: 500
737
+ */
457
738
  reviewers: Array<string>;
458
739
  }
459
740
  /**
@@ -465,6 +746,9 @@ export declare namespace WorkflowActionExecutionCreateParams {
465
746
  cycle_id: string;
466
747
  is_reviewer_relative_to_reviewee: 'REVIEWER_RELATIVE_TO_TRIGGER';
467
748
  reviewees: Array<string>;
749
+ /**
750
+ * Maximum reviewees: 500
751
+ */
468
752
  reviewers: Array<string>;
469
753
  }
470
754
  /**
@@ -475,19 +759,50 @@ export declare namespace WorkflowActionExecutionCreateParams {
475
759
  */
476
760
  interface SendReportSftpPasswordExcelPayload {
477
761
  authentication_type: 'PASSWORD';
762
+ /**
763
+ * Specify the full path where the file should be stored on the remote server,
764
+ * starting from the root directory. Example: /rippling-workflows
765
+ */
478
766
  file_path: string;
479
767
  file_type: 'EXCEL';
768
+ /**
769
+ * sftp://username@[hostname]
770
+ */
480
771
  host_name: string;
772
+ /**
773
+ * Not all report types are supported in workflows, like change and trend reports
774
+ */
481
775
  report_id: string;
776
+ /**
777
+ * sftp://[username]@hostname
778
+ */
482
779
  user_name: string;
483
780
  add_role_referenced_id_column?: boolean | null;
484
- csv_quoting?: '1' | '0' | '2' | '3' | null;
781
+ /**
782
+ * CSV quoting
783
+ */
784
+ csv_quoting?: 1 | 0 | 2 | 3 | null;
785
+ /**
786
+ * Currency field formatting
787
+ */
485
788
  currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
789
+ /**
790
+ * Date & time formatting
791
+ */
486
792
  date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
793
+ /**
794
+ * Files will be automatically named if the file name is empty
795
+ */
487
796
  file_name?: string | null;
797
+ /**
798
+ * File name suffix
799
+ */
488
800
  file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
489
801
  port?: number | null;
490
802
  show_sub_totals?: boolean | null;
803
+ /**
804
+ * Time zones
805
+ */
491
806
  time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
492
807
  }
493
808
  /**
@@ -498,20 +813,54 @@ export declare namespace WorkflowActionExecutionCreateParams {
498
813
  */
499
814
  interface SendReportSftpPasswordCsvPayload {
500
815
  authentication_type: 'PASSWORD';
816
+ /**
817
+ * Specify the full path where the file should be stored on the remote server,
818
+ * starting from the root directory. Example: /rippling-workflows
819
+ */
501
820
  file_path: string;
502
821
  file_type: 'CSV';
822
+ /**
823
+ * sftp://username@[hostname]
824
+ */
503
825
  host_name: string;
826
+ /**
827
+ * Not all report types are supported in workflows, like change and trend reports
828
+ */
504
829
  report_id: string;
830
+ /**
831
+ * sftp://[username]@hostname
832
+ */
505
833
  user_name: string;
506
834
  add_role_referenced_id_column?: boolean | null;
507
- csv_quoting?: '1' | '0' | '2' | '3' | null;
835
+ /**
836
+ * CSV quoting
837
+ */
838
+ csv_quoting?: 1 | 0 | 2 | 3 | null;
839
+ /**
840
+ * Custom separator
841
+ */
508
842
  csv_separator?: ',' | ';' | '\t' | '|' | null;
843
+ /**
844
+ * Currency field formatting
845
+ */
509
846
  currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
847
+ /**
848
+ * Date & time formatting
849
+ */
510
850
  date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
851
+ /**
852
+ * Files will be automatically named if the file name is empty
853
+ */
511
854
  file_name?: string | null;
855
+ /**
856
+ * File name suffix
857
+ */
512
858
  file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
513
859
  port?: number | null;
514
860
  show_sub_totals?: boolean | null;
861
+ /**
862
+ * Time zones
863
+ */
515
864
  time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
516
865
  }
517
866
  /**
@@ -522,19 +871,50 @@ export declare namespace WorkflowActionExecutionCreateParams {
522
871
  */
523
872
  interface SendReportSftpSSHKeyExcelPayload {
524
873
  authentication_type: 'SSH_KEY';
874
+ /**
875
+ * Specify the full path where the file should be stored on the remote server,
876
+ * starting from the root directory. Example: /rippling-workflows
877
+ */
525
878
  file_path: string;
526
879
  file_type: 'EXCEL';
880
+ /**
881
+ * sftp://username@[hostname]
882
+ */
527
883
  host_name: string;
884
+ /**
885
+ * Not all report types are supported in workflows, like change and trend reports
886
+ */
528
887
  report_id: string;
888
+ /**
889
+ * sftp://[username]@hostname
890
+ */
529
891
  user_name: string;
530
892
  add_role_referenced_id_column?: boolean | null;
531
- csv_quoting?: '1' | '0' | '2' | '3' | null;
893
+ /**
894
+ * CSV quoting
895
+ */
896
+ csv_quoting?: 1 | 0 | 2 | 3 | null;
897
+ /**
898
+ * Currency field formatting
899
+ */
532
900
  currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
901
+ /**
902
+ * Date & time formatting
903
+ */
533
904
  date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
905
+ /**
906
+ * Files will be automatically named if the file name is empty
907
+ */
534
908
  file_name?: string | null;
909
+ /**
910
+ * File name suffix
911
+ */
535
912
  file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
536
913
  port?: number | null;
537
914
  show_sub_totals?: boolean | null;
915
+ /**
916
+ * Time zones
917
+ */
538
918
  time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
539
919
  }
540
920
  /**
@@ -545,20 +925,54 @@ export declare namespace WorkflowActionExecutionCreateParams {
545
925
  */
546
926
  interface SendReportSftpSSHKeyCsvPayload {
547
927
  authentication_type: 'SSH_KEY';
928
+ /**
929
+ * Specify the full path where the file should be stored on the remote server,
930
+ * starting from the root directory. Example: /rippling-workflows
931
+ */
548
932
  file_path: string;
549
933
  file_type: 'CSV';
934
+ /**
935
+ * sftp://username@[hostname]
936
+ */
550
937
  host_name: string;
938
+ /**
939
+ * Not all report types are supported in workflows, like change and trend reports
940
+ */
551
941
  report_id: string;
942
+ /**
943
+ * sftp://[username]@hostname
944
+ */
552
945
  user_name: string;
553
946
  add_role_referenced_id_column?: boolean | null;
554
- csv_quoting?: '1' | '0' | '2' | '3' | null;
947
+ /**
948
+ * CSV quoting
949
+ */
950
+ csv_quoting?: 1 | 0 | 2 | 3 | null;
951
+ /**
952
+ * Custom separator
953
+ */
555
954
  csv_separator?: ',' | ';' | '\t' | '|' | null;
955
+ /**
956
+ * Currency field formatting
957
+ */
556
958
  currency_fields?: 'WITH_CURRENCY_TYPE' | 'WITHOUT_CURRENCY_TYPE' | null;
959
+ /**
960
+ * Date & time formatting
961
+ */
557
962
  date_and_time_formatting?: 'ISO_FORMAT' | 'LOCALE_FORMAT' | null;
963
+ /**
964
+ * Files will be automatically named if the file name is empty
965
+ */
558
966
  file_name?: string | null;
967
+ /**
968
+ * File name suffix
969
+ */
559
970
  file_suffix?: 'DEFAULT_FORMAT' | 'EPOCH_FORMAT' | 'NO_SUFFIX' | null;
560
971
  port?: number | null;
561
972
  show_sub_totals?: boolean | null;
973
+ /**
974
+ * Time zones
975
+ */
562
976
  time_zones?: 'UTC' | 'PRESERVE_TZ' | 'VIEWER_LOCALE' | null;
563
977
  }
564
978
  interface RunQueryPayload {