@botpress/api 0.59.1 → 0.60.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 CHANGED
@@ -291886,6 +291886,42 @@ var state = {
291886
291886
  },
291887
291887
  "code": {
291888
291888
  "type": "string"
291889
+ },
291890
+ "dependencies": {
291891
+ "type": "object",
291892
+ "properties": {
291893
+ "interfaces": {
291894
+ "type": "object",
291895
+ "additionalProperties": {
291896
+ "type": "object",
291897
+ "properties": {
291898
+ "id": {
291899
+ "type": "string"
291900
+ }
291901
+ },
291902
+ "required": [
291903
+ "id"
291904
+ ],
291905
+ "additionalProperties": false
291906
+ }
291907
+ },
291908
+ "integrations": {
291909
+ "type": "object",
291910
+ "additionalProperties": {
291911
+ "type": "object",
291912
+ "properties": {
291913
+ "id": {
291914
+ "type": "string"
291915
+ }
291916
+ },
291917
+ "required": [
291918
+ "id"
291919
+ ],
291920
+ "additionalProperties": false
291921
+ }
291922
+ }
291923
+ },
291924
+ "additionalProperties": false
291889
291925
  }
291890
291926
  },
291891
291927
  "required": [
@@ -292175,6 +292211,44 @@ var state = {
292175
292211
  },
292176
292212
  "code": {
292177
292213
  "type": "string"
292214
+ },
292215
+ "dependencies": {
292216
+ "type": "object",
292217
+ "properties": {
292218
+ "interfaces": {
292219
+ "type": "object",
292220
+ "additionalProperties": {
292221
+ "type": "object",
292222
+ "properties": {
292223
+ "id": {
292224
+ "type": "string"
292225
+ }
292226
+ },
292227
+ "required": [
292228
+ "id"
292229
+ ],
292230
+ "nullable": true,
292231
+ "additionalProperties": false
292232
+ }
292233
+ },
292234
+ "integrations": {
292235
+ "type": "object",
292236
+ "additionalProperties": {
292237
+ "type": "object",
292238
+ "properties": {
292239
+ "id": {
292240
+ "type": "string"
292241
+ }
292242
+ },
292243
+ "required": [
292244
+ "id"
292245
+ ],
292246
+ "nullable": true,
292247
+ "additionalProperties": false
292248
+ }
292249
+ }
292250
+ },
292251
+ "additionalProperties": false
292178
292252
  }
292179
292253
  },
292180
292254
  "title": "updatePluginBody",
@@ -294960,7 +295034,7 @@ var state = {
294960
295034
  "title": "Botpress API",
294961
295035
  "description": "API for Botpress Cloud",
294962
295036
  "server": "https://api.botpress.cloud",
294963
- "version": "0.59.1",
295037
+ "version": "0.60.0",
294964
295038
  "prefix": "v1"
294965
295039
  },
294966
295040
  "errors": [
@@ -296873,6 +296947,70 @@ var state = {
296873
296947
  "additionalProperties": false
296874
296948
  }
296875
296949
  },
296950
+ "dependencies": {
296951
+ "type": "object",
296952
+ "properties": {
296953
+ "interfaces": {
296954
+ "type": "object",
296955
+ "additionalProperties": {
296956
+ "type": "object",
296957
+ "properties": {
296958
+ "id": {
296959
+ "type": "string",
296960
+ "minLength": 28,
296961
+ "maxLength": 36
296962
+ },
296963
+ "name": {
296964
+ "type": "string",
296965
+ "maxLength": 200
296966
+ },
296967
+ "version": {
296968
+ "type": "string",
296969
+ "maxLength": 200
296970
+ }
296971
+ },
296972
+ "required": [
296973
+ "id",
296974
+ "name",
296975
+ "version"
296976
+ ],
296977
+ "additionalProperties": false
296978
+ }
296979
+ },
296980
+ "integrations": {
296981
+ "type": "object",
296982
+ "additionalProperties": {
296983
+ "type": "object",
296984
+ "properties": {
296985
+ "id": {
296986
+ "type": "string",
296987
+ "minLength": 28,
296988
+ "maxLength": 36
296989
+ },
296990
+ "name": {
296991
+ "type": "string",
296992
+ "maxLength": 200
296993
+ },
296994
+ "version": {
296995
+ "type": "string",
296996
+ "maxLength": 200
296997
+ }
296998
+ },
296999
+ "required": [
297000
+ "id",
297001
+ "name",
297002
+ "version"
297003
+ ],
297004
+ "additionalProperties": false
297005
+ }
297006
+ }
297007
+ },
297008
+ "required": [
297009
+ "interfaces",
297010
+ "integrations"
297011
+ ],
297012
+ "additionalProperties": false
297013
+ },
296876
297014
  "user": {
296877
297015
  "type": "object",
296878
297016
  "properties": {
@@ -296917,6 +297055,7 @@ var state = {
296917
297055
  "states",
296918
297056
  "events",
296919
297057
  "actions",
297058
+ "dependencies",
296920
297059
  "user",
296921
297060
  "code"
296922
297061
  ],
@@ -9167,6 +9167,38 @@ export declare const state: {
9167
9167
  code: {
9168
9168
  type: "string";
9169
9169
  };
9170
+ dependencies: {
9171
+ type: "object";
9172
+ properties: {
9173
+ interfaces: {
9174
+ type: "object";
9175
+ additionalProperties: {
9176
+ type: "object";
9177
+ properties: {
9178
+ id: {
9179
+ type: "string";
9180
+ };
9181
+ };
9182
+ required: string[];
9183
+ additionalProperties: false;
9184
+ };
9185
+ };
9186
+ integrations: {
9187
+ type: "object";
9188
+ additionalProperties: {
9189
+ type: "object";
9190
+ properties: {
9191
+ id: {
9192
+ type: "string";
9193
+ };
9194
+ };
9195
+ required: string[];
9196
+ additionalProperties: false;
9197
+ };
9198
+ };
9199
+ };
9200
+ additionalProperties: false;
9201
+ };
9170
9202
  };
9171
9203
  required: string[];
9172
9204
  title: string;
@@ -9425,6 +9457,40 @@ export declare const state: {
9425
9457
  code: {
9426
9458
  type: "string";
9427
9459
  };
9460
+ dependencies: {
9461
+ type: "object";
9462
+ properties: {
9463
+ interfaces: {
9464
+ type: "object";
9465
+ additionalProperties: {
9466
+ type: "object";
9467
+ properties: {
9468
+ id: {
9469
+ type: "string";
9470
+ };
9471
+ };
9472
+ required: string[];
9473
+ nullable: true;
9474
+ additionalProperties: false;
9475
+ };
9476
+ };
9477
+ integrations: {
9478
+ type: "object";
9479
+ additionalProperties: {
9480
+ type: "object";
9481
+ properties: {
9482
+ id: {
9483
+ type: "string";
9484
+ };
9485
+ };
9486
+ required: string[];
9487
+ nullable: true;
9488
+ additionalProperties: false;
9489
+ };
9490
+ };
9491
+ };
9492
+ additionalProperties: false;
9493
+ };
9428
9494
  };
9429
9495
  title: string;
9430
9496
  additionalProperties: false;
@@ -13438,6 +13504,59 @@ export declare const state: {
13438
13504
  additionalProperties: false;
13439
13505
  };
13440
13506
  };
13507
+ dependencies: {
13508
+ type: "object";
13509
+ properties: {
13510
+ interfaces: {
13511
+ type: "object";
13512
+ additionalProperties: {
13513
+ type: "object";
13514
+ properties: {
13515
+ id: {
13516
+ type: "string";
13517
+ minLength: number;
13518
+ maxLength: number;
13519
+ };
13520
+ name: {
13521
+ type: "string";
13522
+ maxLength: number;
13523
+ };
13524
+ version: {
13525
+ type: "string";
13526
+ maxLength: number;
13527
+ };
13528
+ };
13529
+ required: string[];
13530
+ additionalProperties: false;
13531
+ };
13532
+ };
13533
+ integrations: {
13534
+ type: "object";
13535
+ additionalProperties: {
13536
+ type: "object";
13537
+ properties: {
13538
+ id: {
13539
+ type: "string";
13540
+ minLength: number;
13541
+ maxLength: number;
13542
+ };
13543
+ name: {
13544
+ type: "string";
13545
+ maxLength: number;
13546
+ };
13547
+ version: {
13548
+ type: "string";
13549
+ maxLength: number;
13550
+ };
13551
+ };
13552
+ required: string[];
13553
+ additionalProperties: false;
13554
+ };
13555
+ };
13556
+ };
13557
+ required: string[];
13558
+ additionalProperties: false;
13559
+ };
13441
13560
  user: {
13442
13561
  type: "object";
13443
13562
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.59.1",
3
+ "version": "0.60.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {