@botpress/api 1.51.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 +3278 -60
- package/dist/src/gen/admin/state.d.ts +1155 -69
- package/dist/src/gen/files/state.d.ts +584 -3
- package/dist/src/gen/runtime/state.d.ts +876 -14
- package/dist/src/gen/tables/state.d.ts +654 -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 +1114 -26
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +588 -5
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +880 -16
- package/src/gen/state.ts +1 -1
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +658 -4
|
@@ -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: {
|
|
@@ -54,7 +54,26 @@ export declare const state: {
|
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
tags: string[];
|
|
57
|
-
parameters: {
|
|
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
|
+
};
|
|
58
77
|
};
|
|
59
78
|
getConversation: {
|
|
60
79
|
name: string;
|
|
@@ -67,6 +86,24 @@ export declare const state: {
|
|
|
67
86
|
type: "string";
|
|
68
87
|
description: string;
|
|
69
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
|
+
};
|
|
70
107
|
};
|
|
71
108
|
section: "conversation";
|
|
72
109
|
response: {
|
|
@@ -134,6 +171,24 @@ export declare const state: {
|
|
|
134
171
|
type: "string";
|
|
135
172
|
description: string;
|
|
136
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
|
+
};
|
|
137
192
|
};
|
|
138
193
|
section: "conversation";
|
|
139
194
|
response: {
|
|
@@ -224,7 +279,26 @@ export declare const state: {
|
|
|
224
279
|
};
|
|
225
280
|
};
|
|
226
281
|
tags: string[];
|
|
227
|
-
parameters: {
|
|
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
|
+
};
|
|
228
302
|
};
|
|
229
303
|
updateConversation: {
|
|
230
304
|
name: string;
|
|
@@ -237,6 +311,24 @@ export declare const state: {
|
|
|
237
311
|
type: "string";
|
|
238
312
|
description: string;
|
|
239
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
|
+
};
|
|
240
332
|
};
|
|
241
333
|
requestBody: {
|
|
242
334
|
description: string;
|
|
@@ -286,6 +378,24 @@ export declare const state: {
|
|
|
286
378
|
type: "string";
|
|
287
379
|
description: string;
|
|
288
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
|
+
};
|
|
289
399
|
};
|
|
290
400
|
section: "conversation";
|
|
291
401
|
response: {
|
|
@@ -314,6 +424,24 @@ export declare const state: {
|
|
|
314
424
|
type: "string";
|
|
315
425
|
description: string;
|
|
316
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
|
+
};
|
|
317
445
|
};
|
|
318
446
|
section: "conversation";
|
|
319
447
|
response: {
|
|
@@ -356,6 +484,24 @@ export declare const state: {
|
|
|
356
484
|
type: "string";
|
|
357
485
|
description: string;
|
|
358
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
|
+
};
|
|
359
505
|
};
|
|
360
506
|
requestBody: {
|
|
361
507
|
description: string;
|
|
@@ -407,6 +553,24 @@ export declare const state: {
|
|
|
407
553
|
type: "string";
|
|
408
554
|
description: string;
|
|
409
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
|
+
};
|
|
410
574
|
};
|
|
411
575
|
section: "conversation";
|
|
412
576
|
response: {
|
|
@@ -441,6 +605,24 @@ export declare const state: {
|
|
|
441
605
|
type: "string";
|
|
442
606
|
description: string;
|
|
443
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
|
+
};
|
|
444
626
|
};
|
|
445
627
|
section: "conversation";
|
|
446
628
|
response: {
|
|
@@ -537,7 +719,26 @@ export declare const state: {
|
|
|
537
719
|
};
|
|
538
720
|
};
|
|
539
721
|
tags: string[];
|
|
540
|
-
parameters: {
|
|
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
|
+
};
|
|
541
742
|
};
|
|
542
743
|
getEvent: {
|
|
543
744
|
name: string;
|
|
@@ -550,6 +751,24 @@ export declare const state: {
|
|
|
550
751
|
type: "string";
|
|
551
752
|
description: string;
|
|
552
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
|
+
};
|
|
553
772
|
};
|
|
554
773
|
section: "event";
|
|
555
774
|
response: {
|
|
@@ -611,6 +830,24 @@ export declare const state: {
|
|
|
611
830
|
enum: string[];
|
|
612
831
|
description: string;
|
|
613
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
|
+
};
|
|
614
851
|
};
|
|
615
852
|
response: {
|
|
616
853
|
description: string;
|
|
@@ -652,6 +889,24 @@ export declare const state: {
|
|
|
652
889
|
type: "string";
|
|
653
890
|
description: string;
|
|
654
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
|
+
};
|
|
655
910
|
};
|
|
656
911
|
section: "event";
|
|
657
912
|
response: {
|
|
@@ -748,7 +1003,26 @@ export declare const state: {
|
|
|
748
1003
|
};
|
|
749
1004
|
};
|
|
750
1005
|
tags: string[];
|
|
751
|
-
parameters: {
|
|
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
|
+
};
|
|
752
1026
|
};
|
|
753
1027
|
getOrCreateMessage: {
|
|
754
1028
|
name: string;
|
|
@@ -841,7 +1115,26 @@ export declare const state: {
|
|
|
841
1115
|
};
|
|
842
1116
|
};
|
|
843
1117
|
tags: string[];
|
|
844
|
-
parameters: {
|
|
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
|
+
};
|
|
845
1138
|
};
|
|
846
1139
|
getMessage: {
|
|
847
1140
|
name: string;
|
|
@@ -854,6 +1147,24 @@ export declare const state: {
|
|
|
854
1147
|
type: "string";
|
|
855
1148
|
description: string;
|
|
856
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
|
+
};
|
|
857
1168
|
};
|
|
858
1169
|
section: "message";
|
|
859
1170
|
response: {
|
|
@@ -883,6 +1194,24 @@ export declare const state: {
|
|
|
883
1194
|
type: "string";
|
|
884
1195
|
description: string;
|
|
885
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
|
+
};
|
|
886
1215
|
};
|
|
887
1216
|
section: "message";
|
|
888
1217
|
requestBody: {
|
|
@@ -951,6 +1280,24 @@ export declare const state: {
|
|
|
951
1280
|
};
|
|
952
1281
|
description: string;
|
|
953
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
|
+
};
|
|
954
1301
|
};
|
|
955
1302
|
section: "message";
|
|
956
1303
|
response: {
|
|
@@ -993,6 +1340,24 @@ export declare const state: {
|
|
|
993
1340
|
type: "string";
|
|
994
1341
|
description: string;
|
|
995
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
|
+
};
|
|
996
1361
|
};
|
|
997
1362
|
section: "message";
|
|
998
1363
|
response: {
|
|
@@ -1062,7 +1427,26 @@ export declare const state: {
|
|
|
1062
1427
|
};
|
|
1063
1428
|
};
|
|
1064
1429
|
tags: string[];
|
|
1065
|
-
parameters: {
|
|
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
|
+
};
|
|
1066
1450
|
};
|
|
1067
1451
|
getUser: {
|
|
1068
1452
|
name: string;
|
|
@@ -1075,6 +1459,24 @@ export declare const state: {
|
|
|
1075
1459
|
type: "string";
|
|
1076
1460
|
description: string;
|
|
1077
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
|
+
};
|
|
1078
1480
|
};
|
|
1079
1481
|
section: "user";
|
|
1080
1482
|
response: {
|
|
@@ -1120,6 +1522,24 @@ export declare const state: {
|
|
|
1120
1522
|
};
|
|
1121
1523
|
description: string;
|
|
1122
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
|
+
};
|
|
1123
1543
|
};
|
|
1124
1544
|
section: "user";
|
|
1125
1545
|
response: {
|
|
@@ -1215,7 +1635,26 @@ export declare const state: {
|
|
|
1215
1635
|
};
|
|
1216
1636
|
};
|
|
1217
1637
|
tags: string[];
|
|
1218
|
-
parameters: {
|
|
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
|
+
};
|
|
1219
1658
|
};
|
|
1220
1659
|
updateUser: {
|
|
1221
1660
|
name: string;
|
|
@@ -1228,6 +1667,24 @@ export declare const state: {
|
|
|
1228
1667
|
type: "string";
|
|
1229
1668
|
description: string;
|
|
1230
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
|
+
};
|
|
1231
1688
|
};
|
|
1232
1689
|
requestBody: {
|
|
1233
1690
|
description: string;
|
|
@@ -1287,6 +1744,24 @@ export declare const state: {
|
|
|
1287
1744
|
type: "string";
|
|
1288
1745
|
description: string;
|
|
1289
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
|
+
};
|
|
1290
1765
|
};
|
|
1291
1766
|
section: "user";
|
|
1292
1767
|
response: {
|
|
@@ -1321,6 +1796,24 @@ export declare const state: {
|
|
|
1321
1796
|
type: "string";
|
|
1322
1797
|
description: string;
|
|
1323
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
|
+
};
|
|
1324
1817
|
};
|
|
1325
1818
|
requestBody: {
|
|
1326
1819
|
description: string;
|
|
@@ -1379,6 +1872,24 @@ export declare const state: {
|
|
|
1379
1872
|
type: "string";
|
|
1380
1873
|
description: string;
|
|
1381
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
|
+
};
|
|
1382
1893
|
};
|
|
1383
1894
|
section: "state";
|
|
1384
1895
|
response: {
|
|
@@ -1429,6 +1940,24 @@ export declare const state: {
|
|
|
1429
1940
|
type: "string";
|
|
1430
1941
|
description: string;
|
|
1431
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
|
+
};
|
|
1432
1961
|
};
|
|
1433
1962
|
requestBody: {
|
|
1434
1963
|
description: string;
|
|
@@ -1493,6 +2022,24 @@ export declare const state: {
|
|
|
1493
2022
|
type: "string";
|
|
1494
2023
|
description: string;
|
|
1495
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
|
+
};
|
|
1496
2043
|
};
|
|
1497
2044
|
requestBody: {
|
|
1498
2045
|
description: string;
|
|
@@ -1566,6 +2113,24 @@ export declare const state: {
|
|
|
1566
2113
|
type: "string";
|
|
1567
2114
|
description: string;
|
|
1568
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
|
+
};
|
|
1569
2134
|
};
|
|
1570
2135
|
requestBody: {
|
|
1571
2136
|
description: string;
|
|
@@ -1654,7 +2219,26 @@ export declare const state: {
|
|
|
1654
2219
|
};
|
|
1655
2220
|
};
|
|
1656
2221
|
tags: string[];
|
|
1657
|
-
parameters: {
|
|
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
|
+
};
|
|
1658
2242
|
};
|
|
1659
2243
|
configureIntegration: {
|
|
1660
2244
|
name: string;
|
|
@@ -1697,7 +2281,26 @@ export declare const state: {
|
|
|
1697
2281
|
};
|
|
1698
2282
|
};
|
|
1699
2283
|
tags: string[];
|
|
1700
|
-
parameters: {
|
|
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
|
+
};
|
|
1701
2304
|
};
|
|
1702
2305
|
getTask: {
|
|
1703
2306
|
name: string;
|
|
@@ -1710,6 +2313,24 @@ export declare const state: {
|
|
|
1710
2313
|
type: "string";
|
|
1711
2314
|
description: string;
|
|
1712
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
|
+
};
|
|
1713
2334
|
};
|
|
1714
2335
|
section: "task";
|
|
1715
2336
|
response: {
|
|
@@ -1804,7 +2425,26 @@ export declare const state: {
|
|
|
1804
2425
|
additionalProperties: false;
|
|
1805
2426
|
};
|
|
1806
2427
|
};
|
|
1807
|
-
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
|
+
};
|
|
1808
2448
|
};
|
|
1809
2449
|
updateTask: {
|
|
1810
2450
|
name: string;
|
|
@@ -1817,6 +2457,24 @@ export declare const state: {
|
|
|
1817
2457
|
type: "string";
|
|
1818
2458
|
description: string;
|
|
1819
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
|
+
};
|
|
1820
2478
|
};
|
|
1821
2479
|
requestBody: {
|
|
1822
2480
|
description: string;
|
|
@@ -1886,6 +2544,24 @@ export declare const state: {
|
|
|
1886
2544
|
type: "string";
|
|
1887
2545
|
description: string;
|
|
1888
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
|
+
};
|
|
1889
2565
|
};
|
|
1890
2566
|
section: "task";
|
|
1891
2567
|
response: {
|
|
@@ -1945,6 +2621,24 @@ export declare const state: {
|
|
|
1945
2621
|
type: "string";
|
|
1946
2622
|
description: string;
|
|
1947
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
|
+
};
|
|
1948
2642
|
};
|
|
1949
2643
|
section: "task";
|
|
1950
2644
|
response: {
|
|
@@ -2049,7 +2743,26 @@ export declare const state: {
|
|
|
2049
2743
|
additionalProperties: false;
|
|
2050
2744
|
};
|
|
2051
2745
|
};
|
|
2052
|
-
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
|
+
};
|
|
2053
2766
|
};
|
|
2054
2767
|
getWorkflow: {
|
|
2055
2768
|
name: string;
|
|
@@ -2062,6 +2775,24 @@ export declare const state: {
|
|
|
2062
2775
|
type: "string";
|
|
2063
2776
|
description: string;
|
|
2064
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
|
+
};
|
|
2065
2796
|
};
|
|
2066
2797
|
section: "workflow";
|
|
2067
2798
|
response: {
|
|
@@ -2090,6 +2821,24 @@ export declare const state: {
|
|
|
2090
2821
|
type: "string";
|
|
2091
2822
|
description: string;
|
|
2092
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
|
+
};
|
|
2093
2842
|
};
|
|
2094
2843
|
requestBody: {
|
|
2095
2844
|
description: string;
|
|
@@ -2163,6 +2912,24 @@ export declare const state: {
|
|
|
2163
2912
|
type: "string";
|
|
2164
2913
|
description: string;
|
|
2165
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
|
+
};
|
|
2166
2933
|
};
|
|
2167
2934
|
section: "workflow";
|
|
2168
2935
|
response: {
|
|
@@ -2222,6 +2989,24 @@ export declare const state: {
|
|
|
2222
2989
|
description: string;
|
|
2223
2990
|
type: "string";
|
|
2224
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
|
+
};
|
|
2225
3010
|
};
|
|
2226
3011
|
section: "workflow";
|
|
2227
3012
|
response: {
|
|
@@ -2339,7 +3124,26 @@ export declare const state: {
|
|
|
2339
3124
|
additionalProperties: false;
|
|
2340
3125
|
};
|
|
2341
3126
|
};
|
|
2342
|
-
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
|
+
};
|
|
2343
3147
|
};
|
|
2344
3148
|
listTagValues: {
|
|
2345
3149
|
name: string;
|
|
@@ -2365,6 +3169,24 @@ export declare const state: {
|
|
|
2365
3169
|
required: true;
|
|
2366
3170
|
enum: string[];
|
|
2367
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
|
+
};
|
|
2368
3190
|
};
|
|
2369
3191
|
response: {
|
|
2370
3192
|
description: string;
|
|
@@ -2435,7 +3257,26 @@ export declare const state: {
|
|
|
2435
3257
|
additionalProperties: false;
|
|
2436
3258
|
};
|
|
2437
3259
|
};
|
|
2438
|
-
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
|
+
};
|
|
2439
3280
|
};
|
|
2440
3281
|
};
|
|
2441
3282
|
metadata: {
|
|
@@ -2445,6 +3286,26 @@ export declare const state: {
|
|
|
2445
3286
|
version: string;
|
|
2446
3287
|
prefix: string;
|
|
2447
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
|
+
};
|
|
2448
3309
|
errors: ({
|
|
2449
3310
|
status: 500;
|
|
2450
3311
|
type: string;
|
|
@@ -3102,4 +3963,5 @@ export declare const state: {
|
|
|
3102
3963
|
options: {
|
|
3103
3964
|
allowUnions: false;
|
|
3104
3965
|
};
|
|
3966
|
+
security: "BearerAuth"[];
|
|
3105
3967
|
};
|