@botpress/api 1.15.0 → 1.16.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/dist/index.js +468 -15
- package/dist/src/gen/admin/state.d.ts +89 -0
- package/dist/src/gen/files/state.d.ts +67 -0
- package/dist/src/gen/runtime/state.d.ts +67 -0
- package/dist/src/gen/state.d.ts +89 -0
- package/dist/src/gen/tables/state.d.ts +67 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +111 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +82 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +82 -1
- package/src/gen/state.ts +111 -6
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +82 -1
|
@@ -3888,6 +3888,28 @@ export declare const state: {
|
|
|
3888
3888
|
additionalProperties: false;
|
|
3889
3889
|
};
|
|
3890
3890
|
};
|
|
3891
|
+
plugins: {
|
|
3892
|
+
type: "object";
|
|
3893
|
+
additionalProperties: {
|
|
3894
|
+
type: "object";
|
|
3895
|
+
properties: {
|
|
3896
|
+
id: {
|
|
3897
|
+
type: "string";
|
|
3898
|
+
};
|
|
3899
|
+
enabled: {
|
|
3900
|
+
type: "boolean";
|
|
3901
|
+
};
|
|
3902
|
+
configuration: {
|
|
3903
|
+
type: "object";
|
|
3904
|
+
additionalProperties: true;
|
|
3905
|
+
};
|
|
3906
|
+
};
|
|
3907
|
+
required: string[];
|
|
3908
|
+
nullable: true;
|
|
3909
|
+
additionalProperties: false;
|
|
3910
|
+
};
|
|
3911
|
+
description: string;
|
|
3912
|
+
};
|
|
3891
3913
|
subscriptions: {
|
|
3892
3914
|
type: "object";
|
|
3893
3915
|
properties: {
|
|
@@ -11614,6 +11636,73 @@ export declare const state: {
|
|
|
11614
11636
|
};
|
|
11615
11637
|
description: string;
|
|
11616
11638
|
};
|
|
11639
|
+
plugins: {
|
|
11640
|
+
type: "object";
|
|
11641
|
+
additionalProperties: {
|
|
11642
|
+
type: "object";
|
|
11643
|
+
properties: {
|
|
11644
|
+
enabled: {
|
|
11645
|
+
type: "boolean";
|
|
11646
|
+
};
|
|
11647
|
+
name: {
|
|
11648
|
+
type: "string";
|
|
11649
|
+
maxLength: number;
|
|
11650
|
+
description: string;
|
|
11651
|
+
};
|
|
11652
|
+
version: {
|
|
11653
|
+
type: "string";
|
|
11654
|
+
maxLength: number;
|
|
11655
|
+
description: string;
|
|
11656
|
+
};
|
|
11657
|
+
configuration: {
|
|
11658
|
+
type: "object";
|
|
11659
|
+
additionalProperties: true;
|
|
11660
|
+
};
|
|
11661
|
+
id: {
|
|
11662
|
+
type: "string";
|
|
11663
|
+
minLength: number;
|
|
11664
|
+
maxLength: number;
|
|
11665
|
+
description: string;
|
|
11666
|
+
};
|
|
11667
|
+
createdAt: {
|
|
11668
|
+
type: "string";
|
|
11669
|
+
format: string;
|
|
11670
|
+
description: string;
|
|
11671
|
+
};
|
|
11672
|
+
updatedAt: {
|
|
11673
|
+
type: "string";
|
|
11674
|
+
format: string;
|
|
11675
|
+
description: string;
|
|
11676
|
+
};
|
|
11677
|
+
title: {
|
|
11678
|
+
type: "string";
|
|
11679
|
+
minLength: number;
|
|
11680
|
+
maxLength: number;
|
|
11681
|
+
description: string;
|
|
11682
|
+
};
|
|
11683
|
+
description: {
|
|
11684
|
+
type: "string";
|
|
11685
|
+
maxLength: number;
|
|
11686
|
+
description: string;
|
|
11687
|
+
};
|
|
11688
|
+
iconUrl: {
|
|
11689
|
+
type: "string";
|
|
11690
|
+
description: string;
|
|
11691
|
+
};
|
|
11692
|
+
readmeUrl: {
|
|
11693
|
+
type: "string";
|
|
11694
|
+
description: string;
|
|
11695
|
+
};
|
|
11696
|
+
public: {
|
|
11697
|
+
type: "boolean";
|
|
11698
|
+
description: string;
|
|
11699
|
+
};
|
|
11700
|
+
};
|
|
11701
|
+
required: string[];
|
|
11702
|
+
additionalProperties: false;
|
|
11703
|
+
};
|
|
11704
|
+
description: string;
|
|
11705
|
+
};
|
|
11617
11706
|
user: {
|
|
11618
11707
|
type: "object";
|
|
11619
11708
|
properties: {
|
|
@@ -1619,6 +1619,73 @@ export declare const state: {
|
|
|
1619
1619
|
};
|
|
1620
1620
|
description: string;
|
|
1621
1621
|
};
|
|
1622
|
+
plugins: {
|
|
1623
|
+
type: "object";
|
|
1624
|
+
additionalProperties: {
|
|
1625
|
+
type: "object";
|
|
1626
|
+
properties: {
|
|
1627
|
+
enabled: {
|
|
1628
|
+
type: "boolean";
|
|
1629
|
+
};
|
|
1630
|
+
name: {
|
|
1631
|
+
type: "string";
|
|
1632
|
+
maxLength: number;
|
|
1633
|
+
description: string;
|
|
1634
|
+
};
|
|
1635
|
+
version: {
|
|
1636
|
+
type: "string";
|
|
1637
|
+
maxLength: number;
|
|
1638
|
+
description: string;
|
|
1639
|
+
};
|
|
1640
|
+
configuration: {
|
|
1641
|
+
type: "object";
|
|
1642
|
+
additionalProperties: true;
|
|
1643
|
+
};
|
|
1644
|
+
id: {
|
|
1645
|
+
type: "string";
|
|
1646
|
+
minLength: number;
|
|
1647
|
+
maxLength: number;
|
|
1648
|
+
description: string;
|
|
1649
|
+
};
|
|
1650
|
+
createdAt: {
|
|
1651
|
+
type: "string";
|
|
1652
|
+
format: string;
|
|
1653
|
+
description: string;
|
|
1654
|
+
};
|
|
1655
|
+
updatedAt: {
|
|
1656
|
+
type: "string";
|
|
1657
|
+
format: string;
|
|
1658
|
+
description: string;
|
|
1659
|
+
};
|
|
1660
|
+
title: {
|
|
1661
|
+
type: "string";
|
|
1662
|
+
minLength: number;
|
|
1663
|
+
maxLength: number;
|
|
1664
|
+
description: string;
|
|
1665
|
+
};
|
|
1666
|
+
description: {
|
|
1667
|
+
type: "string";
|
|
1668
|
+
maxLength: number;
|
|
1669
|
+
description: string;
|
|
1670
|
+
};
|
|
1671
|
+
iconUrl: {
|
|
1672
|
+
type: "string";
|
|
1673
|
+
description: string;
|
|
1674
|
+
};
|
|
1675
|
+
readmeUrl: {
|
|
1676
|
+
type: "string";
|
|
1677
|
+
description: string;
|
|
1678
|
+
};
|
|
1679
|
+
public: {
|
|
1680
|
+
type: "boolean";
|
|
1681
|
+
description: string;
|
|
1682
|
+
};
|
|
1683
|
+
};
|
|
1684
|
+
required: string[];
|
|
1685
|
+
additionalProperties: false;
|
|
1686
|
+
};
|
|
1687
|
+
description: string;
|
|
1688
|
+
};
|
|
1622
1689
|
user: {
|
|
1623
1690
|
type: "object";
|
|
1624
1691
|
properties: {
|
|
@@ -2633,6 +2633,73 @@ export declare const state: {
|
|
|
2633
2633
|
};
|
|
2634
2634
|
description: string;
|
|
2635
2635
|
};
|
|
2636
|
+
plugins: {
|
|
2637
|
+
type: "object";
|
|
2638
|
+
additionalProperties: {
|
|
2639
|
+
type: "object";
|
|
2640
|
+
properties: {
|
|
2641
|
+
enabled: {
|
|
2642
|
+
type: "boolean";
|
|
2643
|
+
};
|
|
2644
|
+
name: {
|
|
2645
|
+
type: "string";
|
|
2646
|
+
maxLength: number;
|
|
2647
|
+
description: string;
|
|
2648
|
+
};
|
|
2649
|
+
version: {
|
|
2650
|
+
type: "string";
|
|
2651
|
+
maxLength: number;
|
|
2652
|
+
description: string;
|
|
2653
|
+
};
|
|
2654
|
+
configuration: {
|
|
2655
|
+
type: "object";
|
|
2656
|
+
additionalProperties: true;
|
|
2657
|
+
};
|
|
2658
|
+
id: {
|
|
2659
|
+
type: "string";
|
|
2660
|
+
minLength: number;
|
|
2661
|
+
maxLength: number;
|
|
2662
|
+
description: string;
|
|
2663
|
+
};
|
|
2664
|
+
createdAt: {
|
|
2665
|
+
type: "string";
|
|
2666
|
+
format: string;
|
|
2667
|
+
description: string;
|
|
2668
|
+
};
|
|
2669
|
+
updatedAt: {
|
|
2670
|
+
type: "string";
|
|
2671
|
+
format: string;
|
|
2672
|
+
description: string;
|
|
2673
|
+
};
|
|
2674
|
+
title: {
|
|
2675
|
+
type: "string";
|
|
2676
|
+
minLength: number;
|
|
2677
|
+
maxLength: number;
|
|
2678
|
+
description: string;
|
|
2679
|
+
};
|
|
2680
|
+
description: {
|
|
2681
|
+
type: "string";
|
|
2682
|
+
maxLength: number;
|
|
2683
|
+
description: string;
|
|
2684
|
+
};
|
|
2685
|
+
iconUrl: {
|
|
2686
|
+
type: "string";
|
|
2687
|
+
description: string;
|
|
2688
|
+
};
|
|
2689
|
+
readmeUrl: {
|
|
2690
|
+
type: "string";
|
|
2691
|
+
description: string;
|
|
2692
|
+
};
|
|
2693
|
+
public: {
|
|
2694
|
+
type: "boolean";
|
|
2695
|
+
description: string;
|
|
2696
|
+
};
|
|
2697
|
+
};
|
|
2698
|
+
required: string[];
|
|
2699
|
+
additionalProperties: false;
|
|
2700
|
+
};
|
|
2701
|
+
description: string;
|
|
2702
|
+
};
|
|
2636
2703
|
user: {
|
|
2637
2704
|
type: "object";
|
|
2638
2705
|
properties: {
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -6237,6 +6237,28 @@ export declare const state: {
|
|
|
6237
6237
|
additionalProperties: false;
|
|
6238
6238
|
};
|
|
6239
6239
|
};
|
|
6240
|
+
plugins: {
|
|
6241
|
+
type: "object";
|
|
6242
|
+
additionalProperties: {
|
|
6243
|
+
type: "object";
|
|
6244
|
+
properties: {
|
|
6245
|
+
id: {
|
|
6246
|
+
type: "string";
|
|
6247
|
+
};
|
|
6248
|
+
enabled: {
|
|
6249
|
+
type: "boolean";
|
|
6250
|
+
};
|
|
6251
|
+
configuration: {
|
|
6252
|
+
type: "object";
|
|
6253
|
+
additionalProperties: true;
|
|
6254
|
+
};
|
|
6255
|
+
};
|
|
6256
|
+
required: string[];
|
|
6257
|
+
nullable: true;
|
|
6258
|
+
additionalProperties: false;
|
|
6259
|
+
};
|
|
6260
|
+
description: string;
|
|
6261
|
+
};
|
|
6240
6262
|
subscriptions: {
|
|
6241
6263
|
type: "object";
|
|
6242
6264
|
properties: {
|
|
@@ -16544,6 +16566,73 @@ export declare const state: {
|
|
|
16544
16566
|
};
|
|
16545
16567
|
description: string;
|
|
16546
16568
|
};
|
|
16569
|
+
plugins: {
|
|
16570
|
+
type: "object";
|
|
16571
|
+
additionalProperties: {
|
|
16572
|
+
type: "object";
|
|
16573
|
+
properties: {
|
|
16574
|
+
enabled: {
|
|
16575
|
+
type: "boolean";
|
|
16576
|
+
};
|
|
16577
|
+
name: {
|
|
16578
|
+
type: "string";
|
|
16579
|
+
maxLength: number;
|
|
16580
|
+
description: string;
|
|
16581
|
+
};
|
|
16582
|
+
version: {
|
|
16583
|
+
type: "string";
|
|
16584
|
+
maxLength: number;
|
|
16585
|
+
description: string;
|
|
16586
|
+
};
|
|
16587
|
+
configuration: {
|
|
16588
|
+
type: "object";
|
|
16589
|
+
additionalProperties: true;
|
|
16590
|
+
};
|
|
16591
|
+
id: {
|
|
16592
|
+
type: "string";
|
|
16593
|
+
minLength: number;
|
|
16594
|
+
maxLength: number;
|
|
16595
|
+
description: string;
|
|
16596
|
+
};
|
|
16597
|
+
createdAt: {
|
|
16598
|
+
type: "string";
|
|
16599
|
+
format: string;
|
|
16600
|
+
description: string;
|
|
16601
|
+
};
|
|
16602
|
+
updatedAt: {
|
|
16603
|
+
type: "string";
|
|
16604
|
+
format: string;
|
|
16605
|
+
description: string;
|
|
16606
|
+
};
|
|
16607
|
+
title: {
|
|
16608
|
+
type: "string";
|
|
16609
|
+
minLength: number;
|
|
16610
|
+
maxLength: number;
|
|
16611
|
+
description: string;
|
|
16612
|
+
};
|
|
16613
|
+
description: {
|
|
16614
|
+
type: "string";
|
|
16615
|
+
maxLength: number;
|
|
16616
|
+
description: string;
|
|
16617
|
+
};
|
|
16618
|
+
iconUrl: {
|
|
16619
|
+
type: "string";
|
|
16620
|
+
description: string;
|
|
16621
|
+
};
|
|
16622
|
+
readmeUrl: {
|
|
16623
|
+
type: "string";
|
|
16624
|
+
description: string;
|
|
16625
|
+
};
|
|
16626
|
+
public: {
|
|
16627
|
+
type: "boolean";
|
|
16628
|
+
description: string;
|
|
16629
|
+
};
|
|
16630
|
+
};
|
|
16631
|
+
required: string[];
|
|
16632
|
+
additionalProperties: false;
|
|
16633
|
+
};
|
|
16634
|
+
description: string;
|
|
16635
|
+
};
|
|
16547
16636
|
user: {
|
|
16548
16637
|
type: "object";
|
|
16549
16638
|
properties: {
|
|
@@ -1325,6 +1325,73 @@ export declare const state: {
|
|
|
1325
1325
|
};
|
|
1326
1326
|
description: string;
|
|
1327
1327
|
};
|
|
1328
|
+
plugins: {
|
|
1329
|
+
type: "object";
|
|
1330
|
+
additionalProperties: {
|
|
1331
|
+
type: "object";
|
|
1332
|
+
properties: {
|
|
1333
|
+
enabled: {
|
|
1334
|
+
type: "boolean";
|
|
1335
|
+
};
|
|
1336
|
+
name: {
|
|
1337
|
+
type: "string";
|
|
1338
|
+
maxLength: number;
|
|
1339
|
+
description: string;
|
|
1340
|
+
};
|
|
1341
|
+
version: {
|
|
1342
|
+
type: "string";
|
|
1343
|
+
maxLength: number;
|
|
1344
|
+
description: string;
|
|
1345
|
+
};
|
|
1346
|
+
configuration: {
|
|
1347
|
+
type: "object";
|
|
1348
|
+
additionalProperties: true;
|
|
1349
|
+
};
|
|
1350
|
+
id: {
|
|
1351
|
+
type: "string";
|
|
1352
|
+
minLength: number;
|
|
1353
|
+
maxLength: number;
|
|
1354
|
+
description: string;
|
|
1355
|
+
};
|
|
1356
|
+
createdAt: {
|
|
1357
|
+
type: "string";
|
|
1358
|
+
format: string;
|
|
1359
|
+
description: string;
|
|
1360
|
+
};
|
|
1361
|
+
updatedAt: {
|
|
1362
|
+
type: "string";
|
|
1363
|
+
format: string;
|
|
1364
|
+
description: string;
|
|
1365
|
+
};
|
|
1366
|
+
title: {
|
|
1367
|
+
type: "string";
|
|
1368
|
+
minLength: number;
|
|
1369
|
+
maxLength: number;
|
|
1370
|
+
description: string;
|
|
1371
|
+
};
|
|
1372
|
+
description: {
|
|
1373
|
+
type: "string";
|
|
1374
|
+
maxLength: number;
|
|
1375
|
+
description: string;
|
|
1376
|
+
};
|
|
1377
|
+
iconUrl: {
|
|
1378
|
+
type: "string";
|
|
1379
|
+
description: string;
|
|
1380
|
+
};
|
|
1381
|
+
readmeUrl: {
|
|
1382
|
+
type: "string";
|
|
1383
|
+
description: string;
|
|
1384
|
+
};
|
|
1385
|
+
public: {
|
|
1386
|
+
type: "boolean";
|
|
1387
|
+
description: string;
|
|
1388
|
+
};
|
|
1389
|
+
};
|
|
1390
|
+
required: string[];
|
|
1391
|
+
additionalProperties: false;
|
|
1392
|
+
};
|
|
1393
|
+
description: string;
|
|
1394
|
+
};
|
|
1328
1395
|
user: {
|
|
1329
1396
|
type: "object";
|
|
1330
1397
|
properties: {
|