@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<'File',
|
|
2
|
+
export type State = opapi.State<'File', 'x-bot-id' | 'x-integration-id' | 'x-integration-alias' | 'x-integration-name' | 'x-user-id' | 'x-user-role', 'files'>;
|
|
3
3
|
export declare const state: {
|
|
4
4
|
operations: {
|
|
5
5
|
upsertFile: {
|
|
@@ -286,7 +286,45 @@ export declare const state: {
|
|
|
286
286
|
additionalProperties: false;
|
|
287
287
|
};
|
|
288
288
|
};
|
|
289
|
-
|
|
289
|
+
tags: string[];
|
|
290
|
+
parameters: {
|
|
291
|
+
"x-bot-id": {
|
|
292
|
+
in: "header";
|
|
293
|
+
description: string;
|
|
294
|
+
type: "string";
|
|
295
|
+
required: true;
|
|
296
|
+
};
|
|
297
|
+
"x-integration-id": {
|
|
298
|
+
in: "header";
|
|
299
|
+
description: string;
|
|
300
|
+
type: "string";
|
|
301
|
+
required: false;
|
|
302
|
+
};
|
|
303
|
+
"x-integration-alias": {
|
|
304
|
+
in: "header";
|
|
305
|
+
description: string;
|
|
306
|
+
type: "string";
|
|
307
|
+
required: false;
|
|
308
|
+
};
|
|
309
|
+
"x-integration-name": {
|
|
310
|
+
in: "header";
|
|
311
|
+
description: string;
|
|
312
|
+
type: "string";
|
|
313
|
+
required: false;
|
|
314
|
+
};
|
|
315
|
+
"x-user-id": {
|
|
316
|
+
in: "header";
|
|
317
|
+
description: string;
|
|
318
|
+
type: "string";
|
|
319
|
+
required: false;
|
|
320
|
+
};
|
|
321
|
+
"x-user-role": {
|
|
322
|
+
in: "header";
|
|
323
|
+
description: string;
|
|
324
|
+
type: "string";
|
|
325
|
+
required: false;
|
|
326
|
+
};
|
|
327
|
+
};
|
|
290
328
|
};
|
|
291
329
|
deleteFile: {
|
|
292
330
|
name: string;
|
|
@@ -300,6 +338,42 @@ export declare const state: {
|
|
|
300
338
|
description: string;
|
|
301
339
|
in: "path";
|
|
302
340
|
};
|
|
341
|
+
"x-bot-id": {
|
|
342
|
+
in: "header";
|
|
343
|
+
description: string;
|
|
344
|
+
type: "string";
|
|
345
|
+
required: true;
|
|
346
|
+
};
|
|
347
|
+
"x-integration-id": {
|
|
348
|
+
in: "header";
|
|
349
|
+
description: string;
|
|
350
|
+
type: "string";
|
|
351
|
+
required: false;
|
|
352
|
+
};
|
|
353
|
+
"x-integration-alias": {
|
|
354
|
+
in: "header";
|
|
355
|
+
description: string;
|
|
356
|
+
type: "string";
|
|
357
|
+
required: false;
|
|
358
|
+
};
|
|
359
|
+
"x-integration-name": {
|
|
360
|
+
in: "header";
|
|
361
|
+
description: string;
|
|
362
|
+
type: "string";
|
|
363
|
+
required: false;
|
|
364
|
+
};
|
|
365
|
+
"x-user-id": {
|
|
366
|
+
in: "header";
|
|
367
|
+
description: string;
|
|
368
|
+
type: "string";
|
|
369
|
+
required: false;
|
|
370
|
+
};
|
|
371
|
+
"x-user-role": {
|
|
372
|
+
in: "header";
|
|
373
|
+
description: string;
|
|
374
|
+
type: "string";
|
|
375
|
+
required: false;
|
|
376
|
+
};
|
|
303
377
|
};
|
|
304
378
|
response: {
|
|
305
379
|
description: string;
|
|
@@ -309,6 +383,7 @@ export declare const state: {
|
|
|
309
383
|
additionalProperties: false;
|
|
310
384
|
};
|
|
311
385
|
};
|
|
386
|
+
tags: string[];
|
|
312
387
|
};
|
|
313
388
|
listFiles: {
|
|
314
389
|
name: string;
|
|
@@ -352,6 +427,42 @@ export declare const state: {
|
|
|
352
427
|
maxItems: number;
|
|
353
428
|
};
|
|
354
429
|
};
|
|
430
|
+
"x-bot-id": {
|
|
431
|
+
in: "header";
|
|
432
|
+
description: string;
|
|
433
|
+
type: "string";
|
|
434
|
+
required: true;
|
|
435
|
+
};
|
|
436
|
+
"x-integration-id": {
|
|
437
|
+
in: "header";
|
|
438
|
+
description: string;
|
|
439
|
+
type: "string";
|
|
440
|
+
required: false;
|
|
441
|
+
};
|
|
442
|
+
"x-integration-alias": {
|
|
443
|
+
in: "header";
|
|
444
|
+
description: string;
|
|
445
|
+
type: "string";
|
|
446
|
+
required: false;
|
|
447
|
+
};
|
|
448
|
+
"x-integration-name": {
|
|
449
|
+
in: "header";
|
|
450
|
+
description: string;
|
|
451
|
+
type: "string";
|
|
452
|
+
required: false;
|
|
453
|
+
};
|
|
454
|
+
"x-user-id": {
|
|
455
|
+
in: "header";
|
|
456
|
+
description: string;
|
|
457
|
+
type: "string";
|
|
458
|
+
required: false;
|
|
459
|
+
};
|
|
460
|
+
"x-user-role": {
|
|
461
|
+
in: "header";
|
|
462
|
+
description: string;
|
|
463
|
+
type: "string";
|
|
464
|
+
required: false;
|
|
465
|
+
};
|
|
355
466
|
};
|
|
356
467
|
response: {
|
|
357
468
|
description: string;
|
|
@@ -479,6 +590,7 @@ export declare const state: {
|
|
|
479
590
|
additionalProperties: false;
|
|
480
591
|
};
|
|
481
592
|
};
|
|
593
|
+
tags: string[];
|
|
482
594
|
};
|
|
483
595
|
getFile: {
|
|
484
596
|
name: string;
|
|
@@ -492,6 +604,42 @@ export declare const state: {
|
|
|
492
604
|
description: string;
|
|
493
605
|
in: "path";
|
|
494
606
|
};
|
|
607
|
+
"x-bot-id": {
|
|
608
|
+
in: "header";
|
|
609
|
+
description: string;
|
|
610
|
+
type: "string";
|
|
611
|
+
required: true;
|
|
612
|
+
};
|
|
613
|
+
"x-integration-id": {
|
|
614
|
+
in: "header";
|
|
615
|
+
description: string;
|
|
616
|
+
type: "string";
|
|
617
|
+
required: false;
|
|
618
|
+
};
|
|
619
|
+
"x-integration-alias": {
|
|
620
|
+
in: "header";
|
|
621
|
+
description: string;
|
|
622
|
+
type: "string";
|
|
623
|
+
required: false;
|
|
624
|
+
};
|
|
625
|
+
"x-integration-name": {
|
|
626
|
+
in: "header";
|
|
627
|
+
description: string;
|
|
628
|
+
type: "string";
|
|
629
|
+
required: false;
|
|
630
|
+
};
|
|
631
|
+
"x-user-id": {
|
|
632
|
+
in: "header";
|
|
633
|
+
description: string;
|
|
634
|
+
type: "string";
|
|
635
|
+
required: false;
|
|
636
|
+
};
|
|
637
|
+
"x-user-role": {
|
|
638
|
+
in: "header";
|
|
639
|
+
description: string;
|
|
640
|
+
type: "string";
|
|
641
|
+
required: false;
|
|
642
|
+
};
|
|
495
643
|
};
|
|
496
644
|
response: {
|
|
497
645
|
description: string;
|
|
@@ -608,6 +756,7 @@ export declare const state: {
|
|
|
608
756
|
additionalProperties: false;
|
|
609
757
|
};
|
|
610
758
|
};
|
|
759
|
+
tags: string[];
|
|
611
760
|
};
|
|
612
761
|
updateFileMetadata: {
|
|
613
762
|
name: string;
|
|
@@ -621,6 +770,42 @@ export declare const state: {
|
|
|
621
770
|
description: string;
|
|
622
771
|
in: "path";
|
|
623
772
|
};
|
|
773
|
+
"x-bot-id": {
|
|
774
|
+
in: "header";
|
|
775
|
+
description: string;
|
|
776
|
+
type: "string";
|
|
777
|
+
required: true;
|
|
778
|
+
};
|
|
779
|
+
"x-integration-id": {
|
|
780
|
+
in: "header";
|
|
781
|
+
description: string;
|
|
782
|
+
type: "string";
|
|
783
|
+
required: false;
|
|
784
|
+
};
|
|
785
|
+
"x-integration-alias": {
|
|
786
|
+
in: "header";
|
|
787
|
+
description: string;
|
|
788
|
+
type: "string";
|
|
789
|
+
required: false;
|
|
790
|
+
};
|
|
791
|
+
"x-integration-name": {
|
|
792
|
+
in: "header";
|
|
793
|
+
description: string;
|
|
794
|
+
type: "string";
|
|
795
|
+
required: false;
|
|
796
|
+
};
|
|
797
|
+
"x-user-id": {
|
|
798
|
+
in: "header";
|
|
799
|
+
description: string;
|
|
800
|
+
type: "string";
|
|
801
|
+
required: false;
|
|
802
|
+
};
|
|
803
|
+
"x-user-role": {
|
|
804
|
+
in: "header";
|
|
805
|
+
description: string;
|
|
806
|
+
type: "string";
|
|
807
|
+
required: false;
|
|
808
|
+
};
|
|
624
809
|
};
|
|
625
810
|
requestBody: {
|
|
626
811
|
description: string;
|
|
@@ -773,6 +958,7 @@ export declare const state: {
|
|
|
773
958
|
additionalProperties: false;
|
|
774
959
|
};
|
|
775
960
|
};
|
|
961
|
+
tags: string[];
|
|
776
962
|
};
|
|
777
963
|
copyFile: {
|
|
778
964
|
name: string;
|
|
@@ -796,6 +982,42 @@ export declare const state: {
|
|
|
796
982
|
type: "string";
|
|
797
983
|
description: string;
|
|
798
984
|
};
|
|
985
|
+
"x-bot-id": {
|
|
986
|
+
in: "header";
|
|
987
|
+
description: string;
|
|
988
|
+
type: "string";
|
|
989
|
+
required: true;
|
|
990
|
+
};
|
|
991
|
+
"x-integration-id": {
|
|
992
|
+
in: "header";
|
|
993
|
+
description: string;
|
|
994
|
+
type: "string";
|
|
995
|
+
required: false;
|
|
996
|
+
};
|
|
997
|
+
"x-integration-alias": {
|
|
998
|
+
in: "header";
|
|
999
|
+
description: string;
|
|
1000
|
+
type: "string";
|
|
1001
|
+
required: false;
|
|
1002
|
+
};
|
|
1003
|
+
"x-integration-name": {
|
|
1004
|
+
in: "header";
|
|
1005
|
+
description: string;
|
|
1006
|
+
type: "string";
|
|
1007
|
+
required: false;
|
|
1008
|
+
};
|
|
1009
|
+
"x-user-id": {
|
|
1010
|
+
in: "header";
|
|
1011
|
+
description: string;
|
|
1012
|
+
type: "string";
|
|
1013
|
+
required: false;
|
|
1014
|
+
};
|
|
1015
|
+
"x-user-role": {
|
|
1016
|
+
in: "header";
|
|
1017
|
+
description: string;
|
|
1018
|
+
type: "string";
|
|
1019
|
+
required: false;
|
|
1020
|
+
};
|
|
799
1021
|
};
|
|
800
1022
|
requestBody: {
|
|
801
1023
|
description: string;
|
|
@@ -926,6 +1148,7 @@ export declare const state: {
|
|
|
926
1148
|
additionalProperties: false;
|
|
927
1149
|
};
|
|
928
1150
|
};
|
|
1151
|
+
tags: string[];
|
|
929
1152
|
};
|
|
930
1153
|
searchFiles: {
|
|
931
1154
|
name: string;
|
|
@@ -971,6 +1194,42 @@ export declare const state: {
|
|
|
971
1194
|
type: "boolean";
|
|
972
1195
|
description: string;
|
|
973
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
|
+
};
|
|
1215
|
+
"x-integration-name": {
|
|
1216
|
+
in: "header";
|
|
1217
|
+
description: string;
|
|
1218
|
+
type: "string";
|
|
1219
|
+
required: false;
|
|
1220
|
+
};
|
|
1221
|
+
"x-user-id": {
|
|
1222
|
+
in: "header";
|
|
1223
|
+
description: string;
|
|
1224
|
+
type: "string";
|
|
1225
|
+
required: false;
|
|
1226
|
+
};
|
|
1227
|
+
"x-user-role": {
|
|
1228
|
+
in: "header";
|
|
1229
|
+
description: string;
|
|
1230
|
+
type: "string";
|
|
1231
|
+
required: false;
|
|
1232
|
+
};
|
|
974
1233
|
};
|
|
975
1234
|
response: {
|
|
976
1235
|
description: string;
|
|
@@ -1097,6 +1356,7 @@ export declare const state: {
|
|
|
1097
1356
|
additionalProperties: false;
|
|
1098
1357
|
};
|
|
1099
1358
|
};
|
|
1359
|
+
tags: string[];
|
|
1100
1360
|
};
|
|
1101
1361
|
listFilePassages: {
|
|
1102
1362
|
name: string;
|
|
@@ -1120,6 +1380,42 @@ export declare const state: {
|
|
|
1120
1380
|
description: string;
|
|
1121
1381
|
in: "query";
|
|
1122
1382
|
};
|
|
1383
|
+
"x-bot-id": {
|
|
1384
|
+
in: "header";
|
|
1385
|
+
description: string;
|
|
1386
|
+
type: "string";
|
|
1387
|
+
required: true;
|
|
1388
|
+
};
|
|
1389
|
+
"x-integration-id": {
|
|
1390
|
+
in: "header";
|
|
1391
|
+
description: string;
|
|
1392
|
+
type: "string";
|
|
1393
|
+
required: false;
|
|
1394
|
+
};
|
|
1395
|
+
"x-integration-alias": {
|
|
1396
|
+
in: "header";
|
|
1397
|
+
description: string;
|
|
1398
|
+
type: "string";
|
|
1399
|
+
required: false;
|
|
1400
|
+
};
|
|
1401
|
+
"x-integration-name": {
|
|
1402
|
+
in: "header";
|
|
1403
|
+
description: string;
|
|
1404
|
+
type: "string";
|
|
1405
|
+
required: false;
|
|
1406
|
+
};
|
|
1407
|
+
"x-user-id": {
|
|
1408
|
+
in: "header";
|
|
1409
|
+
description: string;
|
|
1410
|
+
type: "string";
|
|
1411
|
+
required: false;
|
|
1412
|
+
};
|
|
1413
|
+
"x-user-role": {
|
|
1414
|
+
in: "header";
|
|
1415
|
+
description: string;
|
|
1416
|
+
type: "string";
|
|
1417
|
+
required: false;
|
|
1418
|
+
};
|
|
1123
1419
|
};
|
|
1124
1420
|
response: {
|
|
1125
1421
|
description: string;
|
|
@@ -1188,6 +1484,7 @@ export declare const state: {
|
|
|
1188
1484
|
additionalProperties: false;
|
|
1189
1485
|
};
|
|
1190
1486
|
};
|
|
1487
|
+
tags: string[];
|
|
1191
1488
|
};
|
|
1192
1489
|
setFilePassages: {
|
|
1193
1490
|
name: string;
|
|
@@ -1201,6 +1498,42 @@ export declare const state: {
|
|
|
1201
1498
|
description: string;
|
|
1202
1499
|
in: "path";
|
|
1203
1500
|
};
|
|
1501
|
+
"x-bot-id": {
|
|
1502
|
+
in: "header";
|
|
1503
|
+
description: string;
|
|
1504
|
+
type: "string";
|
|
1505
|
+
required: true;
|
|
1506
|
+
};
|
|
1507
|
+
"x-integration-id": {
|
|
1508
|
+
in: "header";
|
|
1509
|
+
description: string;
|
|
1510
|
+
type: "string";
|
|
1511
|
+
required: false;
|
|
1512
|
+
};
|
|
1513
|
+
"x-integration-alias": {
|
|
1514
|
+
in: "header";
|
|
1515
|
+
description: string;
|
|
1516
|
+
type: "string";
|
|
1517
|
+
required: false;
|
|
1518
|
+
};
|
|
1519
|
+
"x-integration-name": {
|
|
1520
|
+
in: "header";
|
|
1521
|
+
description: string;
|
|
1522
|
+
type: "string";
|
|
1523
|
+
required: false;
|
|
1524
|
+
};
|
|
1525
|
+
"x-user-id": {
|
|
1526
|
+
in: "header";
|
|
1527
|
+
description: string;
|
|
1528
|
+
type: "string";
|
|
1529
|
+
required: false;
|
|
1530
|
+
};
|
|
1531
|
+
"x-user-role": {
|
|
1532
|
+
in: "header";
|
|
1533
|
+
description: string;
|
|
1534
|
+
type: "string";
|
|
1535
|
+
required: false;
|
|
1536
|
+
};
|
|
1204
1537
|
};
|
|
1205
1538
|
requestBody: {
|
|
1206
1539
|
description: string;
|
|
@@ -1258,6 +1591,42 @@ export declare const state: {
|
|
|
1258
1591
|
description: string;
|
|
1259
1592
|
type: "string";
|
|
1260
1593
|
};
|
|
1594
|
+
"x-bot-id": {
|
|
1595
|
+
in: "header";
|
|
1596
|
+
description: string;
|
|
1597
|
+
type: "string";
|
|
1598
|
+
required: true;
|
|
1599
|
+
};
|
|
1600
|
+
"x-integration-id": {
|
|
1601
|
+
in: "header";
|
|
1602
|
+
description: string;
|
|
1603
|
+
type: "string";
|
|
1604
|
+
required: false;
|
|
1605
|
+
};
|
|
1606
|
+
"x-integration-alias": {
|
|
1607
|
+
in: "header";
|
|
1608
|
+
description: string;
|
|
1609
|
+
type: "string";
|
|
1610
|
+
required: false;
|
|
1611
|
+
};
|
|
1612
|
+
"x-integration-name": {
|
|
1613
|
+
in: "header";
|
|
1614
|
+
description: string;
|
|
1615
|
+
type: "string";
|
|
1616
|
+
required: false;
|
|
1617
|
+
};
|
|
1618
|
+
"x-user-id": {
|
|
1619
|
+
in: "header";
|
|
1620
|
+
description: string;
|
|
1621
|
+
type: "string";
|
|
1622
|
+
required: false;
|
|
1623
|
+
};
|
|
1624
|
+
"x-user-role": {
|
|
1625
|
+
in: "header";
|
|
1626
|
+
description: string;
|
|
1627
|
+
type: "string";
|
|
1628
|
+
required: false;
|
|
1629
|
+
};
|
|
1261
1630
|
};
|
|
1262
1631
|
response: {
|
|
1263
1632
|
description: string;
|
|
@@ -1286,6 +1655,7 @@ export declare const state: {
|
|
|
1286
1655
|
additionalProperties: false;
|
|
1287
1656
|
};
|
|
1288
1657
|
};
|
|
1658
|
+
tags: string[];
|
|
1289
1659
|
};
|
|
1290
1660
|
listFileTagValues: {
|
|
1291
1661
|
name: string;
|
|
@@ -1304,6 +1674,42 @@ export declare const state: {
|
|
|
1304
1674
|
description: string;
|
|
1305
1675
|
in: "path";
|
|
1306
1676
|
};
|
|
1677
|
+
"x-bot-id": {
|
|
1678
|
+
in: "header";
|
|
1679
|
+
description: string;
|
|
1680
|
+
type: "string";
|
|
1681
|
+
required: true;
|
|
1682
|
+
};
|
|
1683
|
+
"x-integration-id": {
|
|
1684
|
+
in: "header";
|
|
1685
|
+
description: string;
|
|
1686
|
+
type: "string";
|
|
1687
|
+
required: false;
|
|
1688
|
+
};
|
|
1689
|
+
"x-integration-alias": {
|
|
1690
|
+
in: "header";
|
|
1691
|
+
description: string;
|
|
1692
|
+
type: "string";
|
|
1693
|
+
required: false;
|
|
1694
|
+
};
|
|
1695
|
+
"x-integration-name": {
|
|
1696
|
+
in: "header";
|
|
1697
|
+
description: string;
|
|
1698
|
+
type: "string";
|
|
1699
|
+
required: false;
|
|
1700
|
+
};
|
|
1701
|
+
"x-user-id": {
|
|
1702
|
+
in: "header";
|
|
1703
|
+
description: string;
|
|
1704
|
+
type: "string";
|
|
1705
|
+
required: false;
|
|
1706
|
+
};
|
|
1707
|
+
"x-user-role": {
|
|
1708
|
+
in: "header";
|
|
1709
|
+
description: string;
|
|
1710
|
+
type: "string";
|
|
1711
|
+
required: false;
|
|
1712
|
+
};
|
|
1307
1713
|
};
|
|
1308
1714
|
response: {
|
|
1309
1715
|
description: string;
|
|
@@ -1332,6 +1738,7 @@ export declare const state: {
|
|
|
1332
1738
|
additionalProperties: false;
|
|
1333
1739
|
};
|
|
1334
1740
|
};
|
|
1741
|
+
tags: string[];
|
|
1335
1742
|
};
|
|
1336
1743
|
createKnowledgeBase: {
|
|
1337
1744
|
name: string;
|
|
@@ -1393,7 +1800,44 @@ export declare const state: {
|
|
|
1393
1800
|
additionalProperties: false;
|
|
1394
1801
|
};
|
|
1395
1802
|
};
|
|
1396
|
-
parameters: {
|
|
1803
|
+
parameters: {
|
|
1804
|
+
"x-bot-id": {
|
|
1805
|
+
in: "header";
|
|
1806
|
+
description: string;
|
|
1807
|
+
type: "string";
|
|
1808
|
+
required: true;
|
|
1809
|
+
};
|
|
1810
|
+
"x-integration-id": {
|
|
1811
|
+
in: "header";
|
|
1812
|
+
description: string;
|
|
1813
|
+
type: "string";
|
|
1814
|
+
required: false;
|
|
1815
|
+
};
|
|
1816
|
+
"x-integration-alias": {
|
|
1817
|
+
in: "header";
|
|
1818
|
+
description: string;
|
|
1819
|
+
type: "string";
|
|
1820
|
+
required: false;
|
|
1821
|
+
};
|
|
1822
|
+
"x-integration-name": {
|
|
1823
|
+
in: "header";
|
|
1824
|
+
description: string;
|
|
1825
|
+
type: "string";
|
|
1826
|
+
required: false;
|
|
1827
|
+
};
|
|
1828
|
+
"x-user-id": {
|
|
1829
|
+
in: "header";
|
|
1830
|
+
description: string;
|
|
1831
|
+
type: "string";
|
|
1832
|
+
required: false;
|
|
1833
|
+
};
|
|
1834
|
+
"x-user-role": {
|
|
1835
|
+
in: "header";
|
|
1836
|
+
description: string;
|
|
1837
|
+
type: "string";
|
|
1838
|
+
required: false;
|
|
1839
|
+
};
|
|
1840
|
+
};
|
|
1397
1841
|
};
|
|
1398
1842
|
deleteKnowledgeBase: {
|
|
1399
1843
|
name: string;
|
|
@@ -1407,6 +1851,42 @@ export declare const state: {
|
|
|
1407
1851
|
description: string;
|
|
1408
1852
|
in: "path";
|
|
1409
1853
|
};
|
|
1854
|
+
"x-bot-id": {
|
|
1855
|
+
in: "header";
|
|
1856
|
+
description: string;
|
|
1857
|
+
type: "string";
|
|
1858
|
+
required: true;
|
|
1859
|
+
};
|
|
1860
|
+
"x-integration-id": {
|
|
1861
|
+
in: "header";
|
|
1862
|
+
description: string;
|
|
1863
|
+
type: "string";
|
|
1864
|
+
required: false;
|
|
1865
|
+
};
|
|
1866
|
+
"x-integration-alias": {
|
|
1867
|
+
in: "header";
|
|
1868
|
+
description: string;
|
|
1869
|
+
type: "string";
|
|
1870
|
+
required: false;
|
|
1871
|
+
};
|
|
1872
|
+
"x-integration-name": {
|
|
1873
|
+
in: "header";
|
|
1874
|
+
description: string;
|
|
1875
|
+
type: "string";
|
|
1876
|
+
required: false;
|
|
1877
|
+
};
|
|
1878
|
+
"x-user-id": {
|
|
1879
|
+
in: "header";
|
|
1880
|
+
description: string;
|
|
1881
|
+
type: "string";
|
|
1882
|
+
required: false;
|
|
1883
|
+
};
|
|
1884
|
+
"x-user-role": {
|
|
1885
|
+
in: "header";
|
|
1886
|
+
description: string;
|
|
1887
|
+
type: "string";
|
|
1888
|
+
required: false;
|
|
1889
|
+
};
|
|
1410
1890
|
};
|
|
1411
1891
|
response: {
|
|
1412
1892
|
description: string;
|
|
@@ -1429,6 +1909,42 @@ export declare const state: {
|
|
|
1429
1909
|
description: string;
|
|
1430
1910
|
in: "path";
|
|
1431
1911
|
};
|
|
1912
|
+
"x-bot-id": {
|
|
1913
|
+
in: "header";
|
|
1914
|
+
description: string;
|
|
1915
|
+
type: "string";
|
|
1916
|
+
required: true;
|
|
1917
|
+
};
|
|
1918
|
+
"x-integration-id": {
|
|
1919
|
+
in: "header";
|
|
1920
|
+
description: string;
|
|
1921
|
+
type: "string";
|
|
1922
|
+
required: false;
|
|
1923
|
+
};
|
|
1924
|
+
"x-integration-alias": {
|
|
1925
|
+
in: "header";
|
|
1926
|
+
description: string;
|
|
1927
|
+
type: "string";
|
|
1928
|
+
required: false;
|
|
1929
|
+
};
|
|
1930
|
+
"x-integration-name": {
|
|
1931
|
+
in: "header";
|
|
1932
|
+
description: string;
|
|
1933
|
+
type: "string";
|
|
1934
|
+
required: false;
|
|
1935
|
+
};
|
|
1936
|
+
"x-user-id": {
|
|
1937
|
+
in: "header";
|
|
1938
|
+
description: string;
|
|
1939
|
+
type: "string";
|
|
1940
|
+
required: false;
|
|
1941
|
+
};
|
|
1942
|
+
"x-user-role": {
|
|
1943
|
+
in: "header";
|
|
1944
|
+
description: string;
|
|
1945
|
+
type: "string";
|
|
1946
|
+
required: false;
|
|
1947
|
+
};
|
|
1432
1948
|
};
|
|
1433
1949
|
requestBody: {
|
|
1434
1950
|
description: string;
|
|
@@ -1506,6 +2022,42 @@ export declare const state: {
|
|
|
1506
2022
|
type: "object";
|
|
1507
2023
|
schema: {};
|
|
1508
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
|
+
};
|
|
2043
|
+
"x-integration-name": {
|
|
2044
|
+
in: "header";
|
|
2045
|
+
description: string;
|
|
2046
|
+
type: "string";
|
|
2047
|
+
required: false;
|
|
2048
|
+
};
|
|
2049
|
+
"x-user-id": {
|
|
2050
|
+
in: "header";
|
|
2051
|
+
description: string;
|
|
2052
|
+
type: "string";
|
|
2053
|
+
required: false;
|
|
2054
|
+
};
|
|
2055
|
+
"x-user-role": {
|
|
2056
|
+
in: "header";
|
|
2057
|
+
description: string;
|
|
2058
|
+
type: "string";
|
|
2059
|
+
required: false;
|
|
2060
|
+
};
|
|
1509
2061
|
};
|
|
1510
2062
|
response: {
|
|
1511
2063
|
description: string;
|
|
@@ -1564,6 +2116,44 @@ export declare const state: {
|
|
|
1564
2116
|
version: string;
|
|
1565
2117
|
prefix: string;
|
|
1566
2118
|
};
|
|
2119
|
+
defaultParameters: {
|
|
2120
|
+
"x-bot-id": {
|
|
2121
|
+
in: "header";
|
|
2122
|
+
description: string;
|
|
2123
|
+
type: "string";
|
|
2124
|
+
required: true;
|
|
2125
|
+
};
|
|
2126
|
+
"x-integration-id": {
|
|
2127
|
+
in: "header";
|
|
2128
|
+
description: string;
|
|
2129
|
+
type: "string";
|
|
2130
|
+
required: false;
|
|
2131
|
+
};
|
|
2132
|
+
"x-integration-alias": {
|
|
2133
|
+
in: "header";
|
|
2134
|
+
description: string;
|
|
2135
|
+
type: "string";
|
|
2136
|
+
required: false;
|
|
2137
|
+
};
|
|
2138
|
+
"x-integration-name": {
|
|
2139
|
+
in: "header";
|
|
2140
|
+
description: string;
|
|
2141
|
+
type: "string";
|
|
2142
|
+
required: false;
|
|
2143
|
+
};
|
|
2144
|
+
"x-user-id": {
|
|
2145
|
+
in: "header";
|
|
2146
|
+
description: string;
|
|
2147
|
+
type: "string";
|
|
2148
|
+
required: false;
|
|
2149
|
+
};
|
|
2150
|
+
"x-user-role": {
|
|
2151
|
+
in: "header";
|
|
2152
|
+
description: string;
|
|
2153
|
+
type: "string";
|
|
2154
|
+
required: false;
|
|
2155
|
+
};
|
|
2156
|
+
};
|
|
1567
2157
|
errors: ({
|
|
1568
2158
|
status: 500;
|
|
1569
2159
|
type: string;
|
|
@@ -1763,4 +2353,5 @@ export declare const state: {
|
|
|
1763
2353
|
options: {
|
|
1764
2354
|
allowUnions: false;
|
|
1765
2355
|
};
|
|
2356
|
+
security: "BearerAuth"[];
|
|
1766
2357
|
};
|