@botpress/api 1.50.0 → 1.52.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/.turbo/turbo-openapi.log +6 -6
- package/dist/index.js +4056 -228
- package/dist/src/gen/admin/state.d.ts +1197 -69
- package/dist/src/gen/files/state.d.ts +594 -3
- package/dist/src/gen/runtime/state.d.ts +910 -14
- package/dist/src/gen/state.d.ts +100 -0
- package/dist/src/gen/tables/state.d.ts +668 -2
- package/dist/src/index.d.ts +134 -39
- package/package.json +2 -2
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +1274 -60
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +627 -14
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +1007 -41
- package/src/gen/state.ts +382 -82
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +713 -17
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as opapi from '@bpinternal/opapi';
|
|
2
|
-
export type State = opapi.State<'User' | 'Conversation' | 'Event' | 'Message' | 'State' | 'Task' | 'Workflow',
|
|
2
|
+
export type State = opapi.State<'User' | 'Conversation' | 'Event' | 'Message' | 'State' | 'Task' | 'Workflow', 'x-bot-id' | 'x-integration-id' | 'x-integration-alias', 'user' | 'conversation' | 'event' | 'message' | 'state' | 'hub' | 'action' | 'task' | 'workflow' | 'tag'>;
|
|
3
3
|
export declare const state: {
|
|
4
4
|
operations: {
|
|
5
5
|
createConversation: {
|
|
@@ -53,7 +53,27 @@ export declare const state: {
|
|
|
53
53
|
additionalProperties: false;
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
|
-
|
|
56
|
+
tags: string[];
|
|
57
|
+
parameters: {
|
|
58
|
+
"x-bot-id": {
|
|
59
|
+
in: "header";
|
|
60
|
+
description: string;
|
|
61
|
+
type: "string";
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
"x-integration-id": {
|
|
65
|
+
in: "header";
|
|
66
|
+
description: string;
|
|
67
|
+
type: "string";
|
|
68
|
+
required: false;
|
|
69
|
+
};
|
|
70
|
+
"x-integration-alias": {
|
|
71
|
+
in: "header";
|
|
72
|
+
description: string;
|
|
73
|
+
type: "string";
|
|
74
|
+
required: false;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
57
77
|
};
|
|
58
78
|
getConversation: {
|
|
59
79
|
name: string;
|
|
@@ -66,6 +86,24 @@ export declare const state: {
|
|
|
66
86
|
type: "string";
|
|
67
87
|
description: string;
|
|
68
88
|
};
|
|
89
|
+
"x-bot-id": {
|
|
90
|
+
in: "header";
|
|
91
|
+
description: string;
|
|
92
|
+
type: "string";
|
|
93
|
+
required: true;
|
|
94
|
+
};
|
|
95
|
+
"x-integration-id": {
|
|
96
|
+
in: "header";
|
|
97
|
+
description: string;
|
|
98
|
+
type: "string";
|
|
99
|
+
required: false;
|
|
100
|
+
};
|
|
101
|
+
"x-integration-alias": {
|
|
102
|
+
in: "header";
|
|
103
|
+
description: string;
|
|
104
|
+
type: "string";
|
|
105
|
+
required: false;
|
|
106
|
+
};
|
|
69
107
|
};
|
|
70
108
|
section: "conversation";
|
|
71
109
|
response: {
|
|
@@ -82,6 +120,7 @@ export declare const state: {
|
|
|
82
120
|
additionalProperties: false;
|
|
83
121
|
};
|
|
84
122
|
};
|
|
123
|
+
tags: string[];
|
|
85
124
|
};
|
|
86
125
|
listConversations: {
|
|
87
126
|
name: string;
|
|
@@ -132,6 +171,24 @@ export declare const state: {
|
|
|
132
171
|
type: "string";
|
|
133
172
|
description: string;
|
|
134
173
|
};
|
|
174
|
+
"x-bot-id": {
|
|
175
|
+
in: "header";
|
|
176
|
+
description: string;
|
|
177
|
+
type: "string";
|
|
178
|
+
required: true;
|
|
179
|
+
};
|
|
180
|
+
"x-integration-id": {
|
|
181
|
+
in: "header";
|
|
182
|
+
description: string;
|
|
183
|
+
type: "string";
|
|
184
|
+
required: false;
|
|
185
|
+
};
|
|
186
|
+
"x-integration-alias": {
|
|
187
|
+
in: "header";
|
|
188
|
+
description: string;
|
|
189
|
+
type: "string";
|
|
190
|
+
required: false;
|
|
191
|
+
};
|
|
135
192
|
};
|
|
136
193
|
section: "conversation";
|
|
137
194
|
response: {
|
|
@@ -161,6 +218,7 @@ export declare const state: {
|
|
|
161
218
|
additionalProperties: false;
|
|
162
219
|
};
|
|
163
220
|
};
|
|
221
|
+
tags: string[];
|
|
164
222
|
};
|
|
165
223
|
getOrCreateConversation: {
|
|
166
224
|
name: string;
|
|
@@ -220,7 +278,27 @@ export declare const state: {
|
|
|
220
278
|
additionalProperties: false;
|
|
221
279
|
};
|
|
222
280
|
};
|
|
223
|
-
|
|
281
|
+
tags: string[];
|
|
282
|
+
parameters: {
|
|
283
|
+
"x-bot-id": {
|
|
284
|
+
in: "header";
|
|
285
|
+
description: string;
|
|
286
|
+
type: "string";
|
|
287
|
+
required: true;
|
|
288
|
+
};
|
|
289
|
+
"x-integration-id": {
|
|
290
|
+
in: "header";
|
|
291
|
+
description: string;
|
|
292
|
+
type: "string";
|
|
293
|
+
required: false;
|
|
294
|
+
};
|
|
295
|
+
"x-integration-alias": {
|
|
296
|
+
in: "header";
|
|
297
|
+
description: string;
|
|
298
|
+
type: "string";
|
|
299
|
+
required: false;
|
|
300
|
+
};
|
|
301
|
+
};
|
|
224
302
|
};
|
|
225
303
|
updateConversation: {
|
|
226
304
|
name: string;
|
|
@@ -233,6 +311,24 @@ export declare const state: {
|
|
|
233
311
|
type: "string";
|
|
234
312
|
description: string;
|
|
235
313
|
};
|
|
314
|
+
"x-bot-id": {
|
|
315
|
+
in: "header";
|
|
316
|
+
description: string;
|
|
317
|
+
type: "string";
|
|
318
|
+
required: true;
|
|
319
|
+
};
|
|
320
|
+
"x-integration-id": {
|
|
321
|
+
in: "header";
|
|
322
|
+
description: string;
|
|
323
|
+
type: "string";
|
|
324
|
+
required: false;
|
|
325
|
+
};
|
|
326
|
+
"x-integration-alias": {
|
|
327
|
+
in: "header";
|
|
328
|
+
description: string;
|
|
329
|
+
type: "string";
|
|
330
|
+
required: false;
|
|
331
|
+
};
|
|
236
332
|
};
|
|
237
333
|
requestBody: {
|
|
238
334
|
description: string;
|
|
@@ -269,6 +365,7 @@ export declare const state: {
|
|
|
269
365
|
additionalProperties: false;
|
|
270
366
|
};
|
|
271
367
|
};
|
|
368
|
+
tags: string[];
|
|
272
369
|
};
|
|
273
370
|
deleteConversation: {
|
|
274
371
|
name: string;
|
|
@@ -281,6 +378,24 @@ export declare const state: {
|
|
|
281
378
|
type: "string";
|
|
282
379
|
description: string;
|
|
283
380
|
};
|
|
381
|
+
"x-bot-id": {
|
|
382
|
+
in: "header";
|
|
383
|
+
description: string;
|
|
384
|
+
type: "string";
|
|
385
|
+
required: true;
|
|
386
|
+
};
|
|
387
|
+
"x-integration-id": {
|
|
388
|
+
in: "header";
|
|
389
|
+
description: string;
|
|
390
|
+
type: "string";
|
|
391
|
+
required: false;
|
|
392
|
+
};
|
|
393
|
+
"x-integration-alias": {
|
|
394
|
+
in: "header";
|
|
395
|
+
description: string;
|
|
396
|
+
type: "string";
|
|
397
|
+
required: false;
|
|
398
|
+
};
|
|
284
399
|
};
|
|
285
400
|
section: "conversation";
|
|
286
401
|
response: {
|
|
@@ -291,6 +406,7 @@ export declare const state: {
|
|
|
291
406
|
additionalProperties: false;
|
|
292
407
|
};
|
|
293
408
|
};
|
|
409
|
+
tags: string[];
|
|
294
410
|
};
|
|
295
411
|
listParticipants: {
|
|
296
412
|
name: string;
|
|
@@ -308,6 +424,24 @@ export declare const state: {
|
|
|
308
424
|
type: "string";
|
|
309
425
|
description: string;
|
|
310
426
|
};
|
|
427
|
+
"x-bot-id": {
|
|
428
|
+
in: "header";
|
|
429
|
+
description: string;
|
|
430
|
+
type: "string";
|
|
431
|
+
required: true;
|
|
432
|
+
};
|
|
433
|
+
"x-integration-id": {
|
|
434
|
+
in: "header";
|
|
435
|
+
description: string;
|
|
436
|
+
type: "string";
|
|
437
|
+
required: false;
|
|
438
|
+
};
|
|
439
|
+
"x-integration-alias": {
|
|
440
|
+
in: "header";
|
|
441
|
+
description: string;
|
|
442
|
+
type: "string";
|
|
443
|
+
required: false;
|
|
444
|
+
};
|
|
311
445
|
};
|
|
312
446
|
section: "conversation";
|
|
313
447
|
response: {
|
|
@@ -337,6 +471,7 @@ export declare const state: {
|
|
|
337
471
|
additionalProperties: false;
|
|
338
472
|
};
|
|
339
473
|
};
|
|
474
|
+
tags: string[];
|
|
340
475
|
};
|
|
341
476
|
addParticipant: {
|
|
342
477
|
name: string;
|
|
@@ -349,6 +484,24 @@ export declare const state: {
|
|
|
349
484
|
type: "string";
|
|
350
485
|
description: string;
|
|
351
486
|
};
|
|
487
|
+
"x-bot-id": {
|
|
488
|
+
in: "header";
|
|
489
|
+
description: string;
|
|
490
|
+
type: "string";
|
|
491
|
+
required: true;
|
|
492
|
+
};
|
|
493
|
+
"x-integration-id": {
|
|
494
|
+
in: "header";
|
|
495
|
+
description: string;
|
|
496
|
+
type: "string";
|
|
497
|
+
required: false;
|
|
498
|
+
};
|
|
499
|
+
"x-integration-alias": {
|
|
500
|
+
in: "header";
|
|
501
|
+
description: string;
|
|
502
|
+
type: "string";
|
|
503
|
+
required: false;
|
|
504
|
+
};
|
|
352
505
|
};
|
|
353
506
|
requestBody: {
|
|
354
507
|
description: string;
|
|
@@ -382,6 +535,7 @@ export declare const state: {
|
|
|
382
535
|
additionalProperties: false;
|
|
383
536
|
};
|
|
384
537
|
};
|
|
538
|
+
tags: string[];
|
|
385
539
|
};
|
|
386
540
|
getParticipant: {
|
|
387
541
|
name: string;
|
|
@@ -399,6 +553,24 @@ export declare const state: {
|
|
|
399
553
|
type: "string";
|
|
400
554
|
description: string;
|
|
401
555
|
};
|
|
556
|
+
"x-bot-id": {
|
|
557
|
+
in: "header";
|
|
558
|
+
description: string;
|
|
559
|
+
type: "string";
|
|
560
|
+
required: true;
|
|
561
|
+
};
|
|
562
|
+
"x-integration-id": {
|
|
563
|
+
in: "header";
|
|
564
|
+
description: string;
|
|
565
|
+
type: "string";
|
|
566
|
+
required: false;
|
|
567
|
+
};
|
|
568
|
+
"x-integration-alias": {
|
|
569
|
+
in: "header";
|
|
570
|
+
description: string;
|
|
571
|
+
type: "string";
|
|
572
|
+
required: false;
|
|
573
|
+
};
|
|
402
574
|
};
|
|
403
575
|
section: "conversation";
|
|
404
576
|
response: {
|
|
@@ -415,6 +587,7 @@ export declare const state: {
|
|
|
415
587
|
additionalProperties: false;
|
|
416
588
|
};
|
|
417
589
|
};
|
|
590
|
+
tags: string[];
|
|
418
591
|
};
|
|
419
592
|
removeParticipant: {
|
|
420
593
|
name: string;
|
|
@@ -432,6 +605,24 @@ export declare const state: {
|
|
|
432
605
|
type: "string";
|
|
433
606
|
description: string;
|
|
434
607
|
};
|
|
608
|
+
"x-bot-id": {
|
|
609
|
+
in: "header";
|
|
610
|
+
description: string;
|
|
611
|
+
type: "string";
|
|
612
|
+
required: true;
|
|
613
|
+
};
|
|
614
|
+
"x-integration-id": {
|
|
615
|
+
in: "header";
|
|
616
|
+
description: string;
|
|
617
|
+
type: "string";
|
|
618
|
+
required: false;
|
|
619
|
+
};
|
|
620
|
+
"x-integration-alias": {
|
|
621
|
+
in: "header";
|
|
622
|
+
description: string;
|
|
623
|
+
type: "string";
|
|
624
|
+
required: false;
|
|
625
|
+
};
|
|
435
626
|
};
|
|
436
627
|
section: "conversation";
|
|
437
628
|
response: {
|
|
@@ -442,6 +633,7 @@ export declare const state: {
|
|
|
442
633
|
additionalProperties: false;
|
|
443
634
|
};
|
|
444
635
|
};
|
|
636
|
+
tags: string[];
|
|
445
637
|
};
|
|
446
638
|
createEvent: {
|
|
447
639
|
name: string;
|
|
@@ -526,7 +718,27 @@ export declare const state: {
|
|
|
526
718
|
additionalProperties: false;
|
|
527
719
|
};
|
|
528
720
|
};
|
|
529
|
-
|
|
721
|
+
tags: string[];
|
|
722
|
+
parameters: {
|
|
723
|
+
"x-bot-id": {
|
|
724
|
+
in: "header";
|
|
725
|
+
description: string;
|
|
726
|
+
type: "string";
|
|
727
|
+
required: true;
|
|
728
|
+
};
|
|
729
|
+
"x-integration-id": {
|
|
730
|
+
in: "header";
|
|
731
|
+
description: string;
|
|
732
|
+
type: "string";
|
|
733
|
+
required: false;
|
|
734
|
+
};
|
|
735
|
+
"x-integration-alias": {
|
|
736
|
+
in: "header";
|
|
737
|
+
description: string;
|
|
738
|
+
type: "string";
|
|
739
|
+
required: false;
|
|
740
|
+
};
|
|
741
|
+
};
|
|
530
742
|
};
|
|
531
743
|
getEvent: {
|
|
532
744
|
name: string;
|
|
@@ -539,6 +751,24 @@ export declare const state: {
|
|
|
539
751
|
type: "string";
|
|
540
752
|
description: string;
|
|
541
753
|
};
|
|
754
|
+
"x-bot-id": {
|
|
755
|
+
in: "header";
|
|
756
|
+
description: string;
|
|
757
|
+
type: "string";
|
|
758
|
+
required: true;
|
|
759
|
+
};
|
|
760
|
+
"x-integration-id": {
|
|
761
|
+
in: "header";
|
|
762
|
+
description: string;
|
|
763
|
+
type: "string";
|
|
764
|
+
required: false;
|
|
765
|
+
};
|
|
766
|
+
"x-integration-alias": {
|
|
767
|
+
in: "header";
|
|
768
|
+
description: string;
|
|
769
|
+
type: "string";
|
|
770
|
+
required: false;
|
|
771
|
+
};
|
|
542
772
|
};
|
|
543
773
|
section: "event";
|
|
544
774
|
response: {
|
|
@@ -555,6 +785,7 @@ export declare const state: {
|
|
|
555
785
|
additionalProperties: false;
|
|
556
786
|
};
|
|
557
787
|
};
|
|
788
|
+
tags: string[];
|
|
558
789
|
};
|
|
559
790
|
listEvents: {
|
|
560
791
|
name: string;
|
|
@@ -599,6 +830,24 @@ export declare const state: {
|
|
|
599
830
|
enum: string[];
|
|
600
831
|
description: string;
|
|
601
832
|
};
|
|
833
|
+
"x-bot-id": {
|
|
834
|
+
in: "header";
|
|
835
|
+
description: string;
|
|
836
|
+
type: "string";
|
|
837
|
+
required: true;
|
|
838
|
+
};
|
|
839
|
+
"x-integration-id": {
|
|
840
|
+
in: "header";
|
|
841
|
+
description: string;
|
|
842
|
+
type: "string";
|
|
843
|
+
required: false;
|
|
844
|
+
};
|
|
845
|
+
"x-integration-alias": {
|
|
846
|
+
in: "header";
|
|
847
|
+
description: string;
|
|
848
|
+
type: "string";
|
|
849
|
+
required: false;
|
|
850
|
+
};
|
|
602
851
|
};
|
|
603
852
|
response: {
|
|
604
853
|
description: string;
|
|
@@ -627,6 +876,7 @@ export declare const state: {
|
|
|
627
876
|
additionalProperties: false;
|
|
628
877
|
};
|
|
629
878
|
};
|
|
879
|
+
tags: string[];
|
|
630
880
|
};
|
|
631
881
|
cancelScheduledEvent: {
|
|
632
882
|
name: string;
|
|
@@ -639,6 +889,24 @@ export declare const state: {
|
|
|
639
889
|
type: "string";
|
|
640
890
|
description: string;
|
|
641
891
|
};
|
|
892
|
+
"x-bot-id": {
|
|
893
|
+
in: "header";
|
|
894
|
+
description: string;
|
|
895
|
+
type: "string";
|
|
896
|
+
required: true;
|
|
897
|
+
};
|
|
898
|
+
"x-integration-id": {
|
|
899
|
+
in: "header";
|
|
900
|
+
description: string;
|
|
901
|
+
type: "string";
|
|
902
|
+
required: false;
|
|
903
|
+
};
|
|
904
|
+
"x-integration-alias": {
|
|
905
|
+
in: "header";
|
|
906
|
+
description: string;
|
|
907
|
+
type: "string";
|
|
908
|
+
required: false;
|
|
909
|
+
};
|
|
642
910
|
};
|
|
643
911
|
section: "event";
|
|
644
912
|
response: {
|
|
@@ -649,6 +917,7 @@ export declare const state: {
|
|
|
649
917
|
additionalProperties: false;
|
|
650
918
|
};
|
|
651
919
|
};
|
|
920
|
+
tags: string[];
|
|
652
921
|
};
|
|
653
922
|
createMessage: {
|
|
654
923
|
name: string;
|
|
@@ -733,7 +1002,27 @@ export declare const state: {
|
|
|
733
1002
|
additionalProperties: false;
|
|
734
1003
|
};
|
|
735
1004
|
};
|
|
736
|
-
|
|
1005
|
+
tags: string[];
|
|
1006
|
+
parameters: {
|
|
1007
|
+
"x-bot-id": {
|
|
1008
|
+
in: "header";
|
|
1009
|
+
description: string;
|
|
1010
|
+
type: "string";
|
|
1011
|
+
required: true;
|
|
1012
|
+
};
|
|
1013
|
+
"x-integration-id": {
|
|
1014
|
+
in: "header";
|
|
1015
|
+
description: string;
|
|
1016
|
+
type: "string";
|
|
1017
|
+
required: false;
|
|
1018
|
+
};
|
|
1019
|
+
"x-integration-alias": {
|
|
1020
|
+
in: "header";
|
|
1021
|
+
description: string;
|
|
1022
|
+
type: "string";
|
|
1023
|
+
required: false;
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
737
1026
|
};
|
|
738
1027
|
getOrCreateMessage: {
|
|
739
1028
|
name: string;
|
|
@@ -825,7 +1114,27 @@ export declare const state: {
|
|
|
825
1114
|
additionalProperties: false;
|
|
826
1115
|
};
|
|
827
1116
|
};
|
|
828
|
-
|
|
1117
|
+
tags: string[];
|
|
1118
|
+
parameters: {
|
|
1119
|
+
"x-bot-id": {
|
|
1120
|
+
in: "header";
|
|
1121
|
+
description: string;
|
|
1122
|
+
type: "string";
|
|
1123
|
+
required: true;
|
|
1124
|
+
};
|
|
1125
|
+
"x-integration-id": {
|
|
1126
|
+
in: "header";
|
|
1127
|
+
description: string;
|
|
1128
|
+
type: "string";
|
|
1129
|
+
required: false;
|
|
1130
|
+
};
|
|
1131
|
+
"x-integration-alias": {
|
|
1132
|
+
in: "header";
|
|
1133
|
+
description: string;
|
|
1134
|
+
type: "string";
|
|
1135
|
+
required: false;
|
|
1136
|
+
};
|
|
1137
|
+
};
|
|
829
1138
|
};
|
|
830
1139
|
getMessage: {
|
|
831
1140
|
name: string;
|
|
@@ -838,6 +1147,24 @@ export declare const state: {
|
|
|
838
1147
|
type: "string";
|
|
839
1148
|
description: string;
|
|
840
1149
|
};
|
|
1150
|
+
"x-bot-id": {
|
|
1151
|
+
in: "header";
|
|
1152
|
+
description: string;
|
|
1153
|
+
type: "string";
|
|
1154
|
+
required: true;
|
|
1155
|
+
};
|
|
1156
|
+
"x-integration-id": {
|
|
1157
|
+
in: "header";
|
|
1158
|
+
description: string;
|
|
1159
|
+
type: "string";
|
|
1160
|
+
required: false;
|
|
1161
|
+
};
|
|
1162
|
+
"x-integration-alias": {
|
|
1163
|
+
in: "header";
|
|
1164
|
+
description: string;
|
|
1165
|
+
type: "string";
|
|
1166
|
+
required: false;
|
|
1167
|
+
};
|
|
841
1168
|
};
|
|
842
1169
|
section: "message";
|
|
843
1170
|
response: {
|
|
@@ -854,6 +1181,7 @@ export declare const state: {
|
|
|
854
1181
|
additionalProperties: false;
|
|
855
1182
|
};
|
|
856
1183
|
};
|
|
1184
|
+
tags: string[];
|
|
857
1185
|
};
|
|
858
1186
|
updateMessage: {
|
|
859
1187
|
name: string;
|
|
@@ -866,6 +1194,24 @@ export declare const state: {
|
|
|
866
1194
|
type: "string";
|
|
867
1195
|
description: string;
|
|
868
1196
|
};
|
|
1197
|
+
"x-bot-id": {
|
|
1198
|
+
in: "header";
|
|
1199
|
+
description: string;
|
|
1200
|
+
type: "string";
|
|
1201
|
+
required: true;
|
|
1202
|
+
};
|
|
1203
|
+
"x-integration-id": {
|
|
1204
|
+
in: "header";
|
|
1205
|
+
description: string;
|
|
1206
|
+
type: "string";
|
|
1207
|
+
required: false;
|
|
1208
|
+
};
|
|
1209
|
+
"x-integration-alias": {
|
|
1210
|
+
in: "header";
|
|
1211
|
+
description: string;
|
|
1212
|
+
type: "string";
|
|
1213
|
+
required: false;
|
|
1214
|
+
};
|
|
869
1215
|
};
|
|
870
1216
|
section: "message";
|
|
871
1217
|
requestBody: {
|
|
@@ -905,6 +1251,7 @@ export declare const state: {
|
|
|
905
1251
|
additionalProperties: false;
|
|
906
1252
|
};
|
|
907
1253
|
};
|
|
1254
|
+
tags: string[];
|
|
908
1255
|
};
|
|
909
1256
|
listMessages: {
|
|
910
1257
|
name: string;
|
|
@@ -933,6 +1280,24 @@ export declare const state: {
|
|
|
933
1280
|
};
|
|
934
1281
|
description: string;
|
|
935
1282
|
};
|
|
1283
|
+
"x-bot-id": {
|
|
1284
|
+
in: "header";
|
|
1285
|
+
description: string;
|
|
1286
|
+
type: "string";
|
|
1287
|
+
required: true;
|
|
1288
|
+
};
|
|
1289
|
+
"x-integration-id": {
|
|
1290
|
+
in: "header";
|
|
1291
|
+
description: string;
|
|
1292
|
+
type: "string";
|
|
1293
|
+
required: false;
|
|
1294
|
+
};
|
|
1295
|
+
"x-integration-alias": {
|
|
1296
|
+
in: "header";
|
|
1297
|
+
description: string;
|
|
1298
|
+
type: "string";
|
|
1299
|
+
required: false;
|
|
1300
|
+
};
|
|
936
1301
|
};
|
|
937
1302
|
section: "message";
|
|
938
1303
|
response: {
|
|
@@ -962,6 +1327,7 @@ export declare const state: {
|
|
|
962
1327
|
additionalProperties: false;
|
|
963
1328
|
};
|
|
964
1329
|
};
|
|
1330
|
+
tags: string[];
|
|
965
1331
|
};
|
|
966
1332
|
deleteMessage: {
|
|
967
1333
|
name: string;
|
|
@@ -974,6 +1340,24 @@ export declare const state: {
|
|
|
974
1340
|
type: "string";
|
|
975
1341
|
description: string;
|
|
976
1342
|
};
|
|
1343
|
+
"x-bot-id": {
|
|
1344
|
+
in: "header";
|
|
1345
|
+
description: string;
|
|
1346
|
+
type: "string";
|
|
1347
|
+
required: true;
|
|
1348
|
+
};
|
|
1349
|
+
"x-integration-id": {
|
|
1350
|
+
in: "header";
|
|
1351
|
+
description: string;
|
|
1352
|
+
type: "string";
|
|
1353
|
+
required: false;
|
|
1354
|
+
};
|
|
1355
|
+
"x-integration-alias": {
|
|
1356
|
+
in: "header";
|
|
1357
|
+
description: string;
|
|
1358
|
+
type: "string";
|
|
1359
|
+
required: false;
|
|
1360
|
+
};
|
|
977
1361
|
};
|
|
978
1362
|
section: "message";
|
|
979
1363
|
response: {
|
|
@@ -984,6 +1368,7 @@ export declare const state: {
|
|
|
984
1368
|
additionalProperties: false;
|
|
985
1369
|
};
|
|
986
1370
|
};
|
|
1371
|
+
tags: string[];
|
|
987
1372
|
};
|
|
988
1373
|
createUser: {
|
|
989
1374
|
name: string;
|
|
@@ -1041,7 +1426,27 @@ export declare const state: {
|
|
|
1041
1426
|
additionalProperties: false;
|
|
1042
1427
|
};
|
|
1043
1428
|
};
|
|
1044
|
-
|
|
1429
|
+
tags: string[];
|
|
1430
|
+
parameters: {
|
|
1431
|
+
"x-bot-id": {
|
|
1432
|
+
in: "header";
|
|
1433
|
+
description: string;
|
|
1434
|
+
type: "string";
|
|
1435
|
+
required: true;
|
|
1436
|
+
};
|
|
1437
|
+
"x-integration-id": {
|
|
1438
|
+
in: "header";
|
|
1439
|
+
description: string;
|
|
1440
|
+
type: "string";
|
|
1441
|
+
required: false;
|
|
1442
|
+
};
|
|
1443
|
+
"x-integration-alias": {
|
|
1444
|
+
in: "header";
|
|
1445
|
+
description: string;
|
|
1446
|
+
type: "string";
|
|
1447
|
+
required: false;
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1045
1450
|
};
|
|
1046
1451
|
getUser: {
|
|
1047
1452
|
name: string;
|
|
@@ -1054,6 +1459,24 @@ export declare const state: {
|
|
|
1054
1459
|
type: "string";
|
|
1055
1460
|
description: string;
|
|
1056
1461
|
};
|
|
1462
|
+
"x-bot-id": {
|
|
1463
|
+
in: "header";
|
|
1464
|
+
description: string;
|
|
1465
|
+
type: "string";
|
|
1466
|
+
required: true;
|
|
1467
|
+
};
|
|
1468
|
+
"x-integration-id": {
|
|
1469
|
+
in: "header";
|
|
1470
|
+
description: string;
|
|
1471
|
+
type: "string";
|
|
1472
|
+
required: false;
|
|
1473
|
+
};
|
|
1474
|
+
"x-integration-alias": {
|
|
1475
|
+
in: "header";
|
|
1476
|
+
description: string;
|
|
1477
|
+
type: "string";
|
|
1478
|
+
required: false;
|
|
1479
|
+
};
|
|
1057
1480
|
};
|
|
1058
1481
|
section: "user";
|
|
1059
1482
|
response: {
|
|
@@ -1070,6 +1493,7 @@ export declare const state: {
|
|
|
1070
1493
|
additionalProperties: false;
|
|
1071
1494
|
};
|
|
1072
1495
|
};
|
|
1496
|
+
tags: string[];
|
|
1073
1497
|
};
|
|
1074
1498
|
listUsers: {
|
|
1075
1499
|
name: string;
|
|
@@ -1098,6 +1522,24 @@ export declare const state: {
|
|
|
1098
1522
|
};
|
|
1099
1523
|
description: string;
|
|
1100
1524
|
};
|
|
1525
|
+
"x-bot-id": {
|
|
1526
|
+
in: "header";
|
|
1527
|
+
description: string;
|
|
1528
|
+
type: "string";
|
|
1529
|
+
required: true;
|
|
1530
|
+
};
|
|
1531
|
+
"x-integration-id": {
|
|
1532
|
+
in: "header";
|
|
1533
|
+
description: string;
|
|
1534
|
+
type: "string";
|
|
1535
|
+
required: false;
|
|
1536
|
+
};
|
|
1537
|
+
"x-integration-alias": {
|
|
1538
|
+
in: "header";
|
|
1539
|
+
description: string;
|
|
1540
|
+
type: "string";
|
|
1541
|
+
required: false;
|
|
1542
|
+
};
|
|
1101
1543
|
};
|
|
1102
1544
|
section: "user";
|
|
1103
1545
|
response: {
|
|
@@ -1127,6 +1569,7 @@ export declare const state: {
|
|
|
1127
1569
|
additionalProperties: false;
|
|
1128
1570
|
};
|
|
1129
1571
|
};
|
|
1572
|
+
tags: string[];
|
|
1130
1573
|
};
|
|
1131
1574
|
getOrCreateUser: {
|
|
1132
1575
|
name: string;
|
|
@@ -1191,7 +1634,27 @@ export declare const state: {
|
|
|
1191
1634
|
additionalProperties: false;
|
|
1192
1635
|
};
|
|
1193
1636
|
};
|
|
1194
|
-
|
|
1637
|
+
tags: string[];
|
|
1638
|
+
parameters: {
|
|
1639
|
+
"x-bot-id": {
|
|
1640
|
+
in: "header";
|
|
1641
|
+
description: string;
|
|
1642
|
+
type: "string";
|
|
1643
|
+
required: true;
|
|
1644
|
+
};
|
|
1645
|
+
"x-integration-id": {
|
|
1646
|
+
in: "header";
|
|
1647
|
+
description: string;
|
|
1648
|
+
type: "string";
|
|
1649
|
+
required: false;
|
|
1650
|
+
};
|
|
1651
|
+
"x-integration-alias": {
|
|
1652
|
+
in: "header";
|
|
1653
|
+
description: string;
|
|
1654
|
+
type: "string";
|
|
1655
|
+
required: false;
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1195
1658
|
};
|
|
1196
1659
|
updateUser: {
|
|
1197
1660
|
name: string;
|
|
@@ -1204,6 +1667,24 @@ export declare const state: {
|
|
|
1204
1667
|
type: "string";
|
|
1205
1668
|
description: string;
|
|
1206
1669
|
};
|
|
1670
|
+
"x-bot-id": {
|
|
1671
|
+
in: "header";
|
|
1672
|
+
description: string;
|
|
1673
|
+
type: "string";
|
|
1674
|
+
required: true;
|
|
1675
|
+
};
|
|
1676
|
+
"x-integration-id": {
|
|
1677
|
+
in: "header";
|
|
1678
|
+
description: string;
|
|
1679
|
+
type: "string";
|
|
1680
|
+
required: false;
|
|
1681
|
+
};
|
|
1682
|
+
"x-integration-alias": {
|
|
1683
|
+
in: "header";
|
|
1684
|
+
description: string;
|
|
1685
|
+
type: "string";
|
|
1686
|
+
required: false;
|
|
1687
|
+
};
|
|
1207
1688
|
};
|
|
1208
1689
|
requestBody: {
|
|
1209
1690
|
description: string;
|
|
@@ -1250,6 +1731,7 @@ export declare const state: {
|
|
|
1250
1731
|
additionalProperties: false;
|
|
1251
1732
|
};
|
|
1252
1733
|
};
|
|
1734
|
+
tags: string[];
|
|
1253
1735
|
};
|
|
1254
1736
|
deleteUser: {
|
|
1255
1737
|
name: string;
|
|
@@ -1262,6 +1744,24 @@ export declare const state: {
|
|
|
1262
1744
|
type: "string";
|
|
1263
1745
|
description: string;
|
|
1264
1746
|
};
|
|
1747
|
+
"x-bot-id": {
|
|
1748
|
+
in: "header";
|
|
1749
|
+
description: string;
|
|
1750
|
+
type: "string";
|
|
1751
|
+
required: true;
|
|
1752
|
+
};
|
|
1753
|
+
"x-integration-id": {
|
|
1754
|
+
in: "header";
|
|
1755
|
+
description: string;
|
|
1756
|
+
type: "string";
|
|
1757
|
+
required: false;
|
|
1758
|
+
};
|
|
1759
|
+
"x-integration-alias": {
|
|
1760
|
+
in: "header";
|
|
1761
|
+
description: string;
|
|
1762
|
+
type: "string";
|
|
1763
|
+
required: false;
|
|
1764
|
+
};
|
|
1265
1765
|
};
|
|
1266
1766
|
section: "user";
|
|
1267
1767
|
response: {
|
|
@@ -1272,6 +1772,7 @@ export declare const state: {
|
|
|
1272
1772
|
additionalProperties: false;
|
|
1273
1773
|
};
|
|
1274
1774
|
};
|
|
1775
|
+
tags: string[];
|
|
1275
1776
|
};
|
|
1276
1777
|
setStateExpiry: {
|
|
1277
1778
|
name: string;
|
|
@@ -1295,6 +1796,24 @@ export declare const state: {
|
|
|
1295
1796
|
type: "string";
|
|
1296
1797
|
description: string;
|
|
1297
1798
|
};
|
|
1799
|
+
"x-bot-id": {
|
|
1800
|
+
in: "header";
|
|
1801
|
+
description: string;
|
|
1802
|
+
type: "string";
|
|
1803
|
+
required: true;
|
|
1804
|
+
};
|
|
1805
|
+
"x-integration-id": {
|
|
1806
|
+
in: "header";
|
|
1807
|
+
description: string;
|
|
1808
|
+
type: "string";
|
|
1809
|
+
required: false;
|
|
1810
|
+
};
|
|
1811
|
+
"x-integration-alias": {
|
|
1812
|
+
in: "header";
|
|
1813
|
+
description: string;
|
|
1814
|
+
type: "string";
|
|
1815
|
+
required: false;
|
|
1816
|
+
};
|
|
1298
1817
|
};
|
|
1299
1818
|
requestBody: {
|
|
1300
1819
|
description: string;
|
|
@@ -1329,6 +1848,7 @@ export declare const state: {
|
|
|
1329
1848
|
additionalProperties: false;
|
|
1330
1849
|
};
|
|
1331
1850
|
};
|
|
1851
|
+
tags: string[];
|
|
1332
1852
|
};
|
|
1333
1853
|
getState: {
|
|
1334
1854
|
name: string;
|
|
@@ -1352,6 +1872,24 @@ export declare const state: {
|
|
|
1352
1872
|
type: "string";
|
|
1353
1873
|
description: string;
|
|
1354
1874
|
};
|
|
1875
|
+
"x-bot-id": {
|
|
1876
|
+
in: "header";
|
|
1877
|
+
description: string;
|
|
1878
|
+
type: "string";
|
|
1879
|
+
required: true;
|
|
1880
|
+
};
|
|
1881
|
+
"x-integration-id": {
|
|
1882
|
+
in: "header";
|
|
1883
|
+
description: string;
|
|
1884
|
+
type: "string";
|
|
1885
|
+
required: false;
|
|
1886
|
+
};
|
|
1887
|
+
"x-integration-alias": {
|
|
1888
|
+
in: "header";
|
|
1889
|
+
description: string;
|
|
1890
|
+
type: "string";
|
|
1891
|
+
required: false;
|
|
1892
|
+
};
|
|
1355
1893
|
};
|
|
1356
1894
|
section: "state";
|
|
1357
1895
|
response: {
|
|
@@ -1378,6 +1916,7 @@ export declare const state: {
|
|
|
1378
1916
|
additionalProperties: false;
|
|
1379
1917
|
};
|
|
1380
1918
|
};
|
|
1919
|
+
tags: string[];
|
|
1381
1920
|
};
|
|
1382
1921
|
setState: {
|
|
1383
1922
|
name: string;
|
|
@@ -1401,6 +1940,24 @@ export declare const state: {
|
|
|
1401
1940
|
type: "string";
|
|
1402
1941
|
description: string;
|
|
1403
1942
|
};
|
|
1943
|
+
"x-bot-id": {
|
|
1944
|
+
in: "header";
|
|
1945
|
+
description: string;
|
|
1946
|
+
type: "string";
|
|
1947
|
+
required: true;
|
|
1948
|
+
};
|
|
1949
|
+
"x-integration-id": {
|
|
1950
|
+
in: "header";
|
|
1951
|
+
description: string;
|
|
1952
|
+
type: "string";
|
|
1953
|
+
required: false;
|
|
1954
|
+
};
|
|
1955
|
+
"x-integration-alias": {
|
|
1956
|
+
in: "header";
|
|
1957
|
+
description: string;
|
|
1958
|
+
type: "string";
|
|
1959
|
+
required: false;
|
|
1960
|
+
};
|
|
1404
1961
|
};
|
|
1405
1962
|
requestBody: {
|
|
1406
1963
|
description: string;
|
|
@@ -1441,6 +1998,7 @@ export declare const state: {
|
|
|
1441
1998
|
additionalProperties: false;
|
|
1442
1999
|
};
|
|
1443
2000
|
};
|
|
2001
|
+
tags: string[];
|
|
1444
2002
|
};
|
|
1445
2003
|
getOrSetState: {
|
|
1446
2004
|
name: string;
|
|
@@ -1464,6 +2022,24 @@ export declare const state: {
|
|
|
1464
2022
|
type: "string";
|
|
1465
2023
|
description: string;
|
|
1466
2024
|
};
|
|
2025
|
+
"x-bot-id": {
|
|
2026
|
+
in: "header";
|
|
2027
|
+
description: string;
|
|
2028
|
+
type: "string";
|
|
2029
|
+
required: true;
|
|
2030
|
+
};
|
|
2031
|
+
"x-integration-id": {
|
|
2032
|
+
in: "header";
|
|
2033
|
+
description: string;
|
|
2034
|
+
type: "string";
|
|
2035
|
+
required: false;
|
|
2036
|
+
};
|
|
2037
|
+
"x-integration-alias": {
|
|
2038
|
+
in: "header";
|
|
2039
|
+
description: string;
|
|
2040
|
+
type: "string";
|
|
2041
|
+
required: false;
|
|
2042
|
+
};
|
|
1467
2043
|
};
|
|
1468
2044
|
requestBody: {
|
|
1469
2045
|
description: string;
|
|
@@ -1513,6 +2089,7 @@ export declare const state: {
|
|
|
1513
2089
|
additionalProperties: false;
|
|
1514
2090
|
};
|
|
1515
2091
|
};
|
|
2092
|
+
tags: string[];
|
|
1516
2093
|
};
|
|
1517
2094
|
patchState: {
|
|
1518
2095
|
name: string;
|
|
@@ -1536,6 +2113,24 @@ export declare const state: {
|
|
|
1536
2113
|
type: "string";
|
|
1537
2114
|
description: string;
|
|
1538
2115
|
};
|
|
2116
|
+
"x-bot-id": {
|
|
2117
|
+
in: "header";
|
|
2118
|
+
description: string;
|
|
2119
|
+
type: "string";
|
|
2120
|
+
required: true;
|
|
2121
|
+
};
|
|
2122
|
+
"x-integration-id": {
|
|
2123
|
+
in: "header";
|
|
2124
|
+
description: string;
|
|
2125
|
+
type: "string";
|
|
2126
|
+
required: false;
|
|
2127
|
+
};
|
|
2128
|
+
"x-integration-alias": {
|
|
2129
|
+
in: "header";
|
|
2130
|
+
description: string;
|
|
2131
|
+
type: "string";
|
|
2132
|
+
required: false;
|
|
2133
|
+
};
|
|
1539
2134
|
};
|
|
1540
2135
|
requestBody: {
|
|
1541
2136
|
description: string;
|
|
@@ -1568,6 +2163,7 @@ export declare const state: {
|
|
|
1568
2163
|
additionalProperties: false;
|
|
1569
2164
|
};
|
|
1570
2165
|
};
|
|
2166
|
+
tags: string[];
|
|
1571
2167
|
};
|
|
1572
2168
|
callAction: {
|
|
1573
2169
|
name: string;
|
|
@@ -1622,7 +2218,27 @@ export declare const state: {
|
|
|
1622
2218
|
additionalProperties: false;
|
|
1623
2219
|
};
|
|
1624
2220
|
};
|
|
1625
|
-
|
|
2221
|
+
tags: string[];
|
|
2222
|
+
parameters: {
|
|
2223
|
+
"x-bot-id": {
|
|
2224
|
+
in: "header";
|
|
2225
|
+
description: string;
|
|
2226
|
+
type: "string";
|
|
2227
|
+
required: true;
|
|
2228
|
+
};
|
|
2229
|
+
"x-integration-id": {
|
|
2230
|
+
in: "header";
|
|
2231
|
+
description: string;
|
|
2232
|
+
type: "string";
|
|
2233
|
+
required: false;
|
|
2234
|
+
};
|
|
2235
|
+
"x-integration-alias": {
|
|
2236
|
+
in: "header";
|
|
2237
|
+
description: string;
|
|
2238
|
+
type: "string";
|
|
2239
|
+
required: false;
|
|
2240
|
+
};
|
|
2241
|
+
};
|
|
1626
2242
|
};
|
|
1627
2243
|
configureIntegration: {
|
|
1628
2244
|
name: string;
|
|
@@ -1664,7 +2280,27 @@ export declare const state: {
|
|
|
1664
2280
|
additionalProperties: false;
|
|
1665
2281
|
};
|
|
1666
2282
|
};
|
|
1667
|
-
|
|
2283
|
+
tags: string[];
|
|
2284
|
+
parameters: {
|
|
2285
|
+
"x-bot-id": {
|
|
2286
|
+
in: "header";
|
|
2287
|
+
description: string;
|
|
2288
|
+
type: "string";
|
|
2289
|
+
required: true;
|
|
2290
|
+
};
|
|
2291
|
+
"x-integration-id": {
|
|
2292
|
+
in: "header";
|
|
2293
|
+
description: string;
|
|
2294
|
+
type: "string";
|
|
2295
|
+
required: false;
|
|
2296
|
+
};
|
|
2297
|
+
"x-integration-alias": {
|
|
2298
|
+
in: "header";
|
|
2299
|
+
description: string;
|
|
2300
|
+
type: "string";
|
|
2301
|
+
required: false;
|
|
2302
|
+
};
|
|
2303
|
+
};
|
|
1668
2304
|
};
|
|
1669
2305
|
getTask: {
|
|
1670
2306
|
name: string;
|
|
@@ -1677,6 +2313,24 @@ export declare const state: {
|
|
|
1677
2313
|
type: "string";
|
|
1678
2314
|
description: string;
|
|
1679
2315
|
};
|
|
2316
|
+
"x-bot-id": {
|
|
2317
|
+
in: "header";
|
|
2318
|
+
description: string;
|
|
2319
|
+
type: "string";
|
|
2320
|
+
required: true;
|
|
2321
|
+
};
|
|
2322
|
+
"x-integration-id": {
|
|
2323
|
+
in: "header";
|
|
2324
|
+
description: string;
|
|
2325
|
+
type: "string";
|
|
2326
|
+
required: false;
|
|
2327
|
+
};
|
|
2328
|
+
"x-integration-alias": {
|
|
2329
|
+
in: "header";
|
|
2330
|
+
description: string;
|
|
2331
|
+
type: "string";
|
|
2332
|
+
required: false;
|
|
2333
|
+
};
|
|
1680
2334
|
};
|
|
1681
2335
|
section: "task";
|
|
1682
2336
|
response: {
|
|
@@ -1771,7 +2425,26 @@ export declare const state: {
|
|
|
1771
2425
|
additionalProperties: false;
|
|
1772
2426
|
};
|
|
1773
2427
|
};
|
|
1774
|
-
parameters: {
|
|
2428
|
+
parameters: {
|
|
2429
|
+
"x-bot-id": {
|
|
2430
|
+
in: "header";
|
|
2431
|
+
description: string;
|
|
2432
|
+
type: "string";
|
|
2433
|
+
required: true;
|
|
2434
|
+
};
|
|
2435
|
+
"x-integration-id": {
|
|
2436
|
+
in: "header";
|
|
2437
|
+
description: string;
|
|
2438
|
+
type: "string";
|
|
2439
|
+
required: false;
|
|
2440
|
+
};
|
|
2441
|
+
"x-integration-alias": {
|
|
2442
|
+
in: "header";
|
|
2443
|
+
description: string;
|
|
2444
|
+
type: "string";
|
|
2445
|
+
required: false;
|
|
2446
|
+
};
|
|
2447
|
+
};
|
|
1775
2448
|
};
|
|
1776
2449
|
updateTask: {
|
|
1777
2450
|
name: string;
|
|
@@ -1784,6 +2457,24 @@ export declare const state: {
|
|
|
1784
2457
|
type: "string";
|
|
1785
2458
|
description: string;
|
|
1786
2459
|
};
|
|
2460
|
+
"x-bot-id": {
|
|
2461
|
+
in: "header";
|
|
2462
|
+
description: string;
|
|
2463
|
+
type: "string";
|
|
2464
|
+
required: true;
|
|
2465
|
+
};
|
|
2466
|
+
"x-integration-id": {
|
|
2467
|
+
in: "header";
|
|
2468
|
+
description: string;
|
|
2469
|
+
type: "string";
|
|
2470
|
+
required: false;
|
|
2471
|
+
};
|
|
2472
|
+
"x-integration-alias": {
|
|
2473
|
+
in: "header";
|
|
2474
|
+
description: string;
|
|
2475
|
+
type: "string";
|
|
2476
|
+
required: false;
|
|
2477
|
+
};
|
|
1787
2478
|
};
|
|
1788
2479
|
requestBody: {
|
|
1789
2480
|
description: string;
|
|
@@ -1853,6 +2544,24 @@ export declare const state: {
|
|
|
1853
2544
|
type: "string";
|
|
1854
2545
|
description: string;
|
|
1855
2546
|
};
|
|
2547
|
+
"x-bot-id": {
|
|
2548
|
+
in: "header";
|
|
2549
|
+
description: string;
|
|
2550
|
+
type: "string";
|
|
2551
|
+
required: true;
|
|
2552
|
+
};
|
|
2553
|
+
"x-integration-id": {
|
|
2554
|
+
in: "header";
|
|
2555
|
+
description: string;
|
|
2556
|
+
type: "string";
|
|
2557
|
+
required: false;
|
|
2558
|
+
};
|
|
2559
|
+
"x-integration-alias": {
|
|
2560
|
+
in: "header";
|
|
2561
|
+
description: string;
|
|
2562
|
+
type: "string";
|
|
2563
|
+
required: false;
|
|
2564
|
+
};
|
|
1856
2565
|
};
|
|
1857
2566
|
section: "task";
|
|
1858
2567
|
response: {
|
|
@@ -1912,6 +2621,24 @@ export declare const state: {
|
|
|
1912
2621
|
type: "string";
|
|
1913
2622
|
description: string;
|
|
1914
2623
|
};
|
|
2624
|
+
"x-bot-id": {
|
|
2625
|
+
in: "header";
|
|
2626
|
+
description: string;
|
|
2627
|
+
type: "string";
|
|
2628
|
+
required: true;
|
|
2629
|
+
};
|
|
2630
|
+
"x-integration-id": {
|
|
2631
|
+
in: "header";
|
|
2632
|
+
description: string;
|
|
2633
|
+
type: "string";
|
|
2634
|
+
required: false;
|
|
2635
|
+
};
|
|
2636
|
+
"x-integration-alias": {
|
|
2637
|
+
in: "header";
|
|
2638
|
+
description: string;
|
|
2639
|
+
type: "string";
|
|
2640
|
+
required: false;
|
|
2641
|
+
};
|
|
1915
2642
|
};
|
|
1916
2643
|
section: "task";
|
|
1917
2644
|
response: {
|
|
@@ -2016,7 +2743,26 @@ export declare const state: {
|
|
|
2016
2743
|
additionalProperties: false;
|
|
2017
2744
|
};
|
|
2018
2745
|
};
|
|
2019
|
-
parameters: {
|
|
2746
|
+
parameters: {
|
|
2747
|
+
"x-bot-id": {
|
|
2748
|
+
in: "header";
|
|
2749
|
+
description: string;
|
|
2750
|
+
type: "string";
|
|
2751
|
+
required: true;
|
|
2752
|
+
};
|
|
2753
|
+
"x-integration-id": {
|
|
2754
|
+
in: "header";
|
|
2755
|
+
description: string;
|
|
2756
|
+
type: "string";
|
|
2757
|
+
required: false;
|
|
2758
|
+
};
|
|
2759
|
+
"x-integration-alias": {
|
|
2760
|
+
in: "header";
|
|
2761
|
+
description: string;
|
|
2762
|
+
type: "string";
|
|
2763
|
+
required: false;
|
|
2764
|
+
};
|
|
2765
|
+
};
|
|
2020
2766
|
};
|
|
2021
2767
|
getWorkflow: {
|
|
2022
2768
|
name: string;
|
|
@@ -2029,6 +2775,24 @@ export declare const state: {
|
|
|
2029
2775
|
type: "string";
|
|
2030
2776
|
description: string;
|
|
2031
2777
|
};
|
|
2778
|
+
"x-bot-id": {
|
|
2779
|
+
in: "header";
|
|
2780
|
+
description: string;
|
|
2781
|
+
type: "string";
|
|
2782
|
+
required: true;
|
|
2783
|
+
};
|
|
2784
|
+
"x-integration-id": {
|
|
2785
|
+
in: "header";
|
|
2786
|
+
description: string;
|
|
2787
|
+
type: "string";
|
|
2788
|
+
required: false;
|
|
2789
|
+
};
|
|
2790
|
+
"x-integration-alias": {
|
|
2791
|
+
in: "header";
|
|
2792
|
+
description: string;
|
|
2793
|
+
type: "string";
|
|
2794
|
+
required: false;
|
|
2795
|
+
};
|
|
2032
2796
|
};
|
|
2033
2797
|
section: "workflow";
|
|
2034
2798
|
response: {
|
|
@@ -2057,6 +2821,24 @@ export declare const state: {
|
|
|
2057
2821
|
type: "string";
|
|
2058
2822
|
description: string;
|
|
2059
2823
|
};
|
|
2824
|
+
"x-bot-id": {
|
|
2825
|
+
in: "header";
|
|
2826
|
+
description: string;
|
|
2827
|
+
type: "string";
|
|
2828
|
+
required: true;
|
|
2829
|
+
};
|
|
2830
|
+
"x-integration-id": {
|
|
2831
|
+
in: "header";
|
|
2832
|
+
description: string;
|
|
2833
|
+
type: "string";
|
|
2834
|
+
required: false;
|
|
2835
|
+
};
|
|
2836
|
+
"x-integration-alias": {
|
|
2837
|
+
in: "header";
|
|
2838
|
+
description: string;
|
|
2839
|
+
type: "string";
|
|
2840
|
+
required: false;
|
|
2841
|
+
};
|
|
2060
2842
|
};
|
|
2061
2843
|
requestBody: {
|
|
2062
2844
|
description: string;
|
|
@@ -2130,6 +2912,24 @@ export declare const state: {
|
|
|
2130
2912
|
type: "string";
|
|
2131
2913
|
description: string;
|
|
2132
2914
|
};
|
|
2915
|
+
"x-bot-id": {
|
|
2916
|
+
in: "header";
|
|
2917
|
+
description: string;
|
|
2918
|
+
type: "string";
|
|
2919
|
+
required: true;
|
|
2920
|
+
};
|
|
2921
|
+
"x-integration-id": {
|
|
2922
|
+
in: "header";
|
|
2923
|
+
description: string;
|
|
2924
|
+
type: "string";
|
|
2925
|
+
required: false;
|
|
2926
|
+
};
|
|
2927
|
+
"x-integration-alias": {
|
|
2928
|
+
in: "header";
|
|
2929
|
+
description: string;
|
|
2930
|
+
type: "string";
|
|
2931
|
+
required: false;
|
|
2932
|
+
};
|
|
2133
2933
|
};
|
|
2134
2934
|
section: "workflow";
|
|
2135
2935
|
response: {
|
|
@@ -2189,6 +2989,24 @@ export declare const state: {
|
|
|
2189
2989
|
description: string;
|
|
2190
2990
|
type: "string";
|
|
2191
2991
|
};
|
|
2992
|
+
"x-bot-id": {
|
|
2993
|
+
in: "header";
|
|
2994
|
+
description: string;
|
|
2995
|
+
type: "string";
|
|
2996
|
+
required: true;
|
|
2997
|
+
};
|
|
2998
|
+
"x-integration-id": {
|
|
2999
|
+
in: "header";
|
|
3000
|
+
description: string;
|
|
3001
|
+
type: "string";
|
|
3002
|
+
required: false;
|
|
3003
|
+
};
|
|
3004
|
+
"x-integration-alias": {
|
|
3005
|
+
in: "header";
|
|
3006
|
+
description: string;
|
|
3007
|
+
type: "string";
|
|
3008
|
+
required: false;
|
|
3009
|
+
};
|
|
2192
3010
|
};
|
|
2193
3011
|
section: "workflow";
|
|
2194
3012
|
response: {
|
|
@@ -2306,7 +3124,26 @@ export declare const state: {
|
|
|
2306
3124
|
additionalProperties: false;
|
|
2307
3125
|
};
|
|
2308
3126
|
};
|
|
2309
|
-
parameters: {
|
|
3127
|
+
parameters: {
|
|
3128
|
+
"x-bot-id": {
|
|
3129
|
+
in: "header";
|
|
3130
|
+
description: string;
|
|
3131
|
+
type: "string";
|
|
3132
|
+
required: true;
|
|
3133
|
+
};
|
|
3134
|
+
"x-integration-id": {
|
|
3135
|
+
in: "header";
|
|
3136
|
+
description: string;
|
|
3137
|
+
type: "string";
|
|
3138
|
+
required: false;
|
|
3139
|
+
};
|
|
3140
|
+
"x-integration-alias": {
|
|
3141
|
+
in: "header";
|
|
3142
|
+
description: string;
|
|
3143
|
+
type: "string";
|
|
3144
|
+
required: false;
|
|
3145
|
+
};
|
|
3146
|
+
};
|
|
2310
3147
|
};
|
|
2311
3148
|
listTagValues: {
|
|
2312
3149
|
name: string;
|
|
@@ -2332,6 +3169,24 @@ export declare const state: {
|
|
|
2332
3169
|
required: true;
|
|
2333
3170
|
enum: string[];
|
|
2334
3171
|
};
|
|
3172
|
+
"x-bot-id": {
|
|
3173
|
+
in: "header";
|
|
3174
|
+
description: string;
|
|
3175
|
+
type: "string";
|
|
3176
|
+
required: true;
|
|
3177
|
+
};
|
|
3178
|
+
"x-integration-id": {
|
|
3179
|
+
in: "header";
|
|
3180
|
+
description: string;
|
|
3181
|
+
type: "string";
|
|
3182
|
+
required: false;
|
|
3183
|
+
};
|
|
3184
|
+
"x-integration-alias": {
|
|
3185
|
+
in: "header";
|
|
3186
|
+
description: string;
|
|
3187
|
+
type: "string";
|
|
3188
|
+
required: false;
|
|
3189
|
+
};
|
|
2335
3190
|
};
|
|
2336
3191
|
response: {
|
|
2337
3192
|
description: string;
|
|
@@ -2366,6 +3221,7 @@ export declare const state: {
|
|
|
2366
3221
|
additionalProperties: false;
|
|
2367
3222
|
};
|
|
2368
3223
|
};
|
|
3224
|
+
tags: string[];
|
|
2369
3225
|
};
|
|
2370
3226
|
trackAnalytics: {
|
|
2371
3227
|
name: string;
|
|
@@ -2401,7 +3257,26 @@ export declare const state: {
|
|
|
2401
3257
|
additionalProperties: false;
|
|
2402
3258
|
};
|
|
2403
3259
|
};
|
|
2404
|
-
parameters: {
|
|
3260
|
+
parameters: {
|
|
3261
|
+
"x-bot-id": {
|
|
3262
|
+
in: "header";
|
|
3263
|
+
description: string;
|
|
3264
|
+
type: "string";
|
|
3265
|
+
required: true;
|
|
3266
|
+
};
|
|
3267
|
+
"x-integration-id": {
|
|
3268
|
+
in: "header";
|
|
3269
|
+
description: string;
|
|
3270
|
+
type: "string";
|
|
3271
|
+
required: false;
|
|
3272
|
+
};
|
|
3273
|
+
"x-integration-alias": {
|
|
3274
|
+
in: "header";
|
|
3275
|
+
description: string;
|
|
3276
|
+
type: "string";
|
|
3277
|
+
required: false;
|
|
3278
|
+
};
|
|
3279
|
+
};
|
|
2405
3280
|
};
|
|
2406
3281
|
};
|
|
2407
3282
|
metadata: {
|
|
@@ -2411,6 +3286,26 @@ export declare const state: {
|
|
|
2411
3286
|
version: string;
|
|
2412
3287
|
prefix: string;
|
|
2413
3288
|
};
|
|
3289
|
+
defaultParameters: {
|
|
3290
|
+
"x-bot-id": {
|
|
3291
|
+
in: "header";
|
|
3292
|
+
description: string;
|
|
3293
|
+
type: "string";
|
|
3294
|
+
required: true;
|
|
3295
|
+
};
|
|
3296
|
+
"x-integration-id": {
|
|
3297
|
+
in: "header";
|
|
3298
|
+
description: string;
|
|
3299
|
+
type: "string";
|
|
3300
|
+
required: false;
|
|
3301
|
+
};
|
|
3302
|
+
"x-integration-alias": {
|
|
3303
|
+
in: "header";
|
|
3304
|
+
description: string;
|
|
3305
|
+
type: "string";
|
|
3306
|
+
required: false;
|
|
3307
|
+
};
|
|
3308
|
+
};
|
|
2414
3309
|
errors: ({
|
|
2415
3310
|
status: 500;
|
|
2416
3311
|
type: string;
|
|
@@ -3068,4 +3963,5 @@ export declare const state: {
|
|
|
3068
3963
|
options: {
|
|
3069
3964
|
allowUnions: false;
|
|
3070
3965
|
};
|
|
3966
|
+
security: "BearerAuth"[];
|
|
3071
3967
|
};
|