@botpress/api 1.14.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.
@@ -3875,11 +3875,41 @@ export declare const state: {
3875
3875
  type: "object";
3876
3876
  additionalProperties: true;
3877
3877
  };
3878
+ disabledChannels: {
3879
+ type: "array";
3880
+ items: {
3881
+ type: "string";
3882
+ description: string;
3883
+ };
3884
+ description: string;
3885
+ };
3878
3886
  };
3879
3887
  nullable: true;
3880
3888
  additionalProperties: false;
3881
3889
  };
3882
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
+ };
3883
3913
  subscriptions: {
3884
3914
  type: "object";
3885
3915
  properties: {
@@ -11552,6 +11582,14 @@ export declare const state: {
11552
11582
  maxLength: number;
11553
11583
  nullable: true;
11554
11584
  };
11585
+ disabledChannels: {
11586
+ type: "array";
11587
+ items: {
11588
+ type: "string";
11589
+ description: string;
11590
+ };
11591
+ description: string;
11592
+ };
11555
11593
  id: {
11556
11594
  type: "string";
11557
11595
  minLength: number;
@@ -11598,6 +11636,73 @@ export declare const state: {
11598
11636
  };
11599
11637
  description: string;
11600
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
+ };
11601
11706
  user: {
11602
11707
  type: "object";
11603
11708
  properties: {
@@ -1565,6 +1565,14 @@ export declare const state: {
1565
1565
  maxLength: number;
1566
1566
  nullable: true;
1567
1567
  };
1568
+ disabledChannels: {
1569
+ type: "array";
1570
+ items: {
1571
+ type: "string";
1572
+ description: string;
1573
+ };
1574
+ description: string;
1575
+ };
1568
1576
  id: {
1569
1577
  type: "string";
1570
1578
  minLength: number;
@@ -1611,6 +1619,73 @@ export declare const state: {
1611
1619
  };
1612
1620
  description: string;
1613
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
+ };
1614
1689
  user: {
1615
1690
  type: "object";
1616
1691
  properties: {
@@ -2579,6 +2579,14 @@ export declare const state: {
2579
2579
  maxLength: number;
2580
2580
  nullable: true;
2581
2581
  };
2582
+ disabledChannels: {
2583
+ type: "array";
2584
+ items: {
2585
+ type: "string";
2586
+ description: string;
2587
+ };
2588
+ description: string;
2589
+ };
2582
2590
  id: {
2583
2591
  type: "string";
2584
2592
  minLength: number;
@@ -2625,6 +2633,73 @@ export declare const state: {
2625
2633
  };
2626
2634
  description: string;
2627
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
+ };
2628
2703
  user: {
2629
2704
  type: "object";
2630
2705
  properties: {
@@ -6224,11 +6224,41 @@ export declare const state: {
6224
6224
  type: "object";
6225
6225
  additionalProperties: true;
6226
6226
  };
6227
+ disabledChannels: {
6228
+ type: "array";
6229
+ items: {
6230
+ type: "string";
6231
+ description: string;
6232
+ };
6233
+ description: string;
6234
+ };
6227
6235
  };
6228
6236
  nullable: true;
6229
6237
  additionalProperties: false;
6230
6238
  };
6231
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
+ };
6232
6262
  subscriptions: {
6233
6263
  type: "object";
6234
6264
  properties: {
@@ -16482,6 +16512,14 @@ export declare const state: {
16482
16512
  maxLength: number;
16483
16513
  nullable: true;
16484
16514
  };
16515
+ disabledChannels: {
16516
+ type: "array";
16517
+ items: {
16518
+ type: "string";
16519
+ description: string;
16520
+ };
16521
+ description: string;
16522
+ };
16485
16523
  id: {
16486
16524
  type: "string";
16487
16525
  minLength: number;
@@ -16528,6 +16566,73 @@ export declare const state: {
16528
16566
  };
16529
16567
  description: string;
16530
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
+ };
16531
16636
  user: {
16532
16637
  type: "object";
16533
16638
  properties: {
@@ -1271,6 +1271,14 @@ export declare const state: {
1271
1271
  maxLength: number;
1272
1272
  nullable: true;
1273
1273
  };
1274
+ disabledChannels: {
1275
+ type: "array";
1276
+ items: {
1277
+ type: "string";
1278
+ description: string;
1279
+ };
1280
+ description: string;
1281
+ };
1274
1282
  id: {
1275
1283
  type: "string";
1276
1284
  minLength: number;
@@ -1317,6 +1325,73 @@ export declare const state: {
1317
1325
  };
1318
1326
  description: string;
1319
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
+ };
1320
1395
  user: {
1321
1396
  type: "object";
1322
1397
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "1.14.0",
3
+ "version": "1.16.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {