@botpress/api 1.36.0 → 1.38.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 +5 -5
- package/dist/index.js +329 -153
- package/dist/src/gen/admin/state.d.ts +107 -66
- package/dist/src/gen/files/state.d.ts +30 -0
- package/dist/src/gen/runtime/state.d.ts +5 -0
- package/dist/src/gen/state.d.ts +132 -66
- package/dist/src/gen/tables/state.d.ts +5 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +111 -75
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +49 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +9 -1
- package/src/gen/state.ts +151 -75
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +9 -1
package/src/gen/runtime/state.ts
CHANGED
|
@@ -2610,7 +2610,7 @@ export const state = {
|
|
|
2610
2610
|
"title": "Botpress API",
|
|
2611
2611
|
"description": "API for Botpress Cloud",
|
|
2612
2612
|
"server": "https://api.botpress.cloud",
|
|
2613
|
-
"version": "1.
|
|
2613
|
+
"version": "1.38.0",
|
|
2614
2614
|
"prefix": "v1"
|
|
2615
2615
|
},
|
|
2616
2616
|
"errors": [
|
|
@@ -6320,6 +6320,14 @@ export const state = {
|
|
|
6320
6320
|
"type"
|
|
6321
6321
|
],
|
|
6322
6322
|
"additionalProperties": false
|
|
6323
|
+
},
|
|
6324
|
+
"indexingStack": {
|
|
6325
|
+
"type": "string",
|
|
6326
|
+
"enum": [
|
|
6327
|
+
"v1",
|
|
6328
|
+
"v2"
|
|
6329
|
+
],
|
|
6330
|
+
"description": "Indicates the indexing stack used to index this file. Present only when file was requested to be indexed. A value of \"v2\" denotes the latest stack, \"v1\" denotes the legacy stack."
|
|
6323
6331
|
}
|
|
6324
6332
|
},
|
|
6325
6333
|
"required": [
|
package/src/gen/state.ts
CHANGED
|
@@ -15293,42 +15293,6 @@ export const state = {
|
|
|
15293
15293
|
"description": "Conversation object configuration",
|
|
15294
15294
|
"additionalProperties": false
|
|
15295
15295
|
},
|
|
15296
|
-
"dependencies": {
|
|
15297
|
-
"type": "object",
|
|
15298
|
-
"properties": {
|
|
15299
|
-
"interfaces": {
|
|
15300
|
-
"type": "object",
|
|
15301
|
-
"additionalProperties": {
|
|
15302
|
-
"type": "object",
|
|
15303
|
-
"properties": {
|
|
15304
|
-
"id": {
|
|
15305
|
-
"type": "string"
|
|
15306
|
-
}
|
|
15307
|
-
},
|
|
15308
|
-
"required": [
|
|
15309
|
-
"id"
|
|
15310
|
-
],
|
|
15311
|
-
"additionalProperties": false
|
|
15312
|
-
}
|
|
15313
|
-
},
|
|
15314
|
-
"integrations": {
|
|
15315
|
-
"type": "object",
|
|
15316
|
-
"additionalProperties": {
|
|
15317
|
-
"type": "object",
|
|
15318
|
-
"properties": {
|
|
15319
|
-
"id": {
|
|
15320
|
-
"type": "string"
|
|
15321
|
-
}
|
|
15322
|
-
},
|
|
15323
|
-
"required": [
|
|
15324
|
-
"id"
|
|
15325
|
-
],
|
|
15326
|
-
"additionalProperties": false
|
|
15327
|
-
}
|
|
15328
|
-
}
|
|
15329
|
-
},
|
|
15330
|
-
"additionalProperties": false
|
|
15331
|
-
},
|
|
15332
15296
|
"attributes": {
|
|
15333
15297
|
"type": "object",
|
|
15334
15298
|
"additionalProperties": {
|
|
@@ -15377,6 +15341,56 @@ export const state = {
|
|
|
15377
15341
|
"public": {
|
|
15378
15342
|
"type": "boolean",
|
|
15379
15343
|
"description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
|
|
15344
|
+
},
|
|
15345
|
+
"dependencies": {
|
|
15346
|
+
"type": "object",
|
|
15347
|
+
"properties": {
|
|
15348
|
+
"interfaces": {
|
|
15349
|
+
"type": "object",
|
|
15350
|
+
"additionalProperties": {
|
|
15351
|
+
"type": "object",
|
|
15352
|
+
"properties": {
|
|
15353
|
+
"id": {
|
|
15354
|
+
"type": "string",
|
|
15355
|
+
"description": "Id of the interface. If provided, \"name\" and \"version\" are ignored"
|
|
15356
|
+
},
|
|
15357
|
+
"name": {
|
|
15358
|
+
"type": "string",
|
|
15359
|
+
"description": "Name of the interface"
|
|
15360
|
+
},
|
|
15361
|
+
"version": {
|
|
15362
|
+
"type": "string",
|
|
15363
|
+
"description": "Version of the interface. Accepts semver versions and version ranges"
|
|
15364
|
+
}
|
|
15365
|
+
},
|
|
15366
|
+
"additionalProperties": false
|
|
15367
|
+
},
|
|
15368
|
+
"description": "Mapping of interface aliases to interface references"
|
|
15369
|
+
},
|
|
15370
|
+
"integrations": {
|
|
15371
|
+
"type": "object",
|
|
15372
|
+
"additionalProperties": {
|
|
15373
|
+
"type": "object",
|
|
15374
|
+
"properties": {
|
|
15375
|
+
"id": {
|
|
15376
|
+
"type": "string",
|
|
15377
|
+
"description": "Id of the integration. If provided, \"name\" and \"version\" are ignored"
|
|
15378
|
+
},
|
|
15379
|
+
"name": {
|
|
15380
|
+
"type": "string",
|
|
15381
|
+
"description": "Name of the integration"
|
|
15382
|
+
},
|
|
15383
|
+
"version": {
|
|
15384
|
+
"type": "string",
|
|
15385
|
+
"description": "Version of the integration. Accepts semver versions and version ranges"
|
|
15386
|
+
}
|
|
15387
|
+
},
|
|
15388
|
+
"additionalProperties": false
|
|
15389
|
+
},
|
|
15390
|
+
"description": "Mapping of integration aliases to integration references"
|
|
15391
|
+
}
|
|
15392
|
+
},
|
|
15393
|
+
"additionalProperties": false
|
|
15380
15394
|
}
|
|
15381
15395
|
},
|
|
15382
15396
|
"required": [
|
|
@@ -15753,44 +15767,6 @@ export const state = {
|
|
|
15753
15767
|
],
|
|
15754
15768
|
"additionalProperties": false
|
|
15755
15769
|
},
|
|
15756
|
-
"dependencies": {
|
|
15757
|
-
"type": "object",
|
|
15758
|
-
"properties": {
|
|
15759
|
-
"interfaces": {
|
|
15760
|
-
"type": "object",
|
|
15761
|
-
"additionalProperties": {
|
|
15762
|
-
"type": "object",
|
|
15763
|
-
"properties": {
|
|
15764
|
-
"id": {
|
|
15765
|
-
"type": "string"
|
|
15766
|
-
}
|
|
15767
|
-
},
|
|
15768
|
-
"required": [
|
|
15769
|
-
"id"
|
|
15770
|
-
],
|
|
15771
|
-
"nullable": true,
|
|
15772
|
-
"additionalProperties": false
|
|
15773
|
-
}
|
|
15774
|
-
},
|
|
15775
|
-
"integrations": {
|
|
15776
|
-
"type": "object",
|
|
15777
|
-
"additionalProperties": {
|
|
15778
|
-
"type": "object",
|
|
15779
|
-
"properties": {
|
|
15780
|
-
"id": {
|
|
15781
|
-
"type": "string"
|
|
15782
|
-
}
|
|
15783
|
-
},
|
|
15784
|
-
"required": [
|
|
15785
|
-
"id"
|
|
15786
|
-
],
|
|
15787
|
-
"nullable": true,
|
|
15788
|
-
"additionalProperties": false
|
|
15789
|
-
}
|
|
15790
|
-
}
|
|
15791
|
-
},
|
|
15792
|
-
"additionalProperties": false
|
|
15793
|
-
},
|
|
15794
15770
|
"attributes": {
|
|
15795
15771
|
"type": "object",
|
|
15796
15772
|
"additionalProperties": {
|
|
@@ -15836,6 +15812,58 @@ export const state = {
|
|
|
15836
15812
|
"public": {
|
|
15837
15813
|
"type": "boolean",
|
|
15838
15814
|
"description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
|
|
15815
|
+
},
|
|
15816
|
+
"dependencies": {
|
|
15817
|
+
"type": "object",
|
|
15818
|
+
"properties": {
|
|
15819
|
+
"interfaces": {
|
|
15820
|
+
"type": "object",
|
|
15821
|
+
"additionalProperties": {
|
|
15822
|
+
"type": "object",
|
|
15823
|
+
"properties": {
|
|
15824
|
+
"id": {
|
|
15825
|
+
"type": "string",
|
|
15826
|
+
"description": "Id of the interface. If provided, \"name\" and \"version\" are ignored"
|
|
15827
|
+
},
|
|
15828
|
+
"name": {
|
|
15829
|
+
"type": "string",
|
|
15830
|
+
"description": "Name of the interface"
|
|
15831
|
+
},
|
|
15832
|
+
"version": {
|
|
15833
|
+
"type": "string",
|
|
15834
|
+
"description": "Version of the interface. Accepts semver versions and version ranges"
|
|
15835
|
+
}
|
|
15836
|
+
},
|
|
15837
|
+
"nullable": true,
|
|
15838
|
+
"additionalProperties": false
|
|
15839
|
+
},
|
|
15840
|
+
"description": "Mapping of interface aliases to interface references"
|
|
15841
|
+
},
|
|
15842
|
+
"integrations": {
|
|
15843
|
+
"type": "object",
|
|
15844
|
+
"additionalProperties": {
|
|
15845
|
+
"type": "object",
|
|
15846
|
+
"properties": {
|
|
15847
|
+
"id": {
|
|
15848
|
+
"type": "string",
|
|
15849
|
+
"description": "Id of the integration. If provided, \"name\" and \"version\" are ignored"
|
|
15850
|
+
},
|
|
15851
|
+
"name": {
|
|
15852
|
+
"type": "string",
|
|
15853
|
+
"description": "Name of the integration"
|
|
15854
|
+
},
|
|
15855
|
+
"version": {
|
|
15856
|
+
"type": "string",
|
|
15857
|
+
"description": "Version of the integration. Accepts semver versions and version ranges"
|
|
15858
|
+
}
|
|
15859
|
+
},
|
|
15860
|
+
"nullable": true,
|
|
15861
|
+
"additionalProperties": false
|
|
15862
|
+
},
|
|
15863
|
+
"description": "Mapping of integration aliases to integration references"
|
|
15864
|
+
}
|
|
15865
|
+
},
|
|
15866
|
+
"additionalProperties": false
|
|
15839
15867
|
}
|
|
15840
15868
|
},
|
|
15841
15869
|
"title": "updatePluginBody",
|
|
@@ -16857,6 +16885,14 @@ export const state = {
|
|
|
16857
16885
|
],
|
|
16858
16886
|
"additionalProperties": false
|
|
16859
16887
|
},
|
|
16888
|
+
"indexingStack": {
|
|
16889
|
+
"type": "string",
|
|
16890
|
+
"enum": [
|
|
16891
|
+
"v1",
|
|
16892
|
+
"v2"
|
|
16893
|
+
],
|
|
16894
|
+
"description": "Indicates the indexing stack used to index this file. Present only when file was requested to be indexed. A value of \"v2\" denotes the latest stack, \"v1\" denotes the legacy stack."
|
|
16895
|
+
},
|
|
16860
16896
|
"uploadUrl": {
|
|
16861
16897
|
"type": "string",
|
|
16862
16898
|
"description": "URL to upload the file content. File content needs to be sent to this URL via a PUT request."
|
|
@@ -17081,6 +17117,14 @@ export const state = {
|
|
|
17081
17117
|
"required": [
|
|
17082
17118
|
"type"
|
|
17083
17119
|
]
|
|
17120
|
+
},
|
|
17121
|
+
"indexingStack": {
|
|
17122
|
+
"type": "string",
|
|
17123
|
+
"enum": [
|
|
17124
|
+
"v1",
|
|
17125
|
+
"v2"
|
|
17126
|
+
],
|
|
17127
|
+
"description": "Indicates the indexing stack used to index this file. Present only when file was requested to be indexed. A value of \"v2\" denotes the latest stack, \"v1\" denotes the legacy stack."
|
|
17084
17128
|
}
|
|
17085
17129
|
},
|
|
17086
17130
|
"required": [
|
|
@@ -17249,6 +17293,14 @@ export const state = {
|
|
|
17249
17293
|
"type"
|
|
17250
17294
|
],
|
|
17251
17295
|
"additionalProperties": false
|
|
17296
|
+
},
|
|
17297
|
+
"indexingStack": {
|
|
17298
|
+
"type": "string",
|
|
17299
|
+
"enum": [
|
|
17300
|
+
"v1",
|
|
17301
|
+
"v2"
|
|
17302
|
+
],
|
|
17303
|
+
"description": "Indicates the indexing stack used to index this file. Present only when file was requested to be indexed. A value of \"v2\" denotes the latest stack, \"v1\" denotes the legacy stack."
|
|
17252
17304
|
}
|
|
17253
17305
|
},
|
|
17254
17306
|
"required": [
|
|
@@ -17445,6 +17497,14 @@ export const state = {
|
|
|
17445
17497
|
"type"
|
|
17446
17498
|
],
|
|
17447
17499
|
"additionalProperties": false
|
|
17500
|
+
},
|
|
17501
|
+
"indexingStack": {
|
|
17502
|
+
"type": "string",
|
|
17503
|
+
"enum": [
|
|
17504
|
+
"v1",
|
|
17505
|
+
"v2"
|
|
17506
|
+
],
|
|
17507
|
+
"description": "Indicates the indexing stack used to index this file. Present only when file was requested to be indexed. A value of \"v2\" denotes the latest stack, \"v1\" denotes the legacy stack."
|
|
17448
17508
|
}
|
|
17449
17509
|
},
|
|
17450
17510
|
"required": [
|
|
@@ -17626,6 +17686,14 @@ export const state = {
|
|
|
17626
17686
|
"type"
|
|
17627
17687
|
],
|
|
17628
17688
|
"additionalProperties": false
|
|
17689
|
+
},
|
|
17690
|
+
"indexingStack": {
|
|
17691
|
+
"type": "string",
|
|
17692
|
+
"enum": [
|
|
17693
|
+
"v1",
|
|
17694
|
+
"v2"
|
|
17695
|
+
],
|
|
17696
|
+
"description": "Indicates the indexing stack used to index this file. Present only when file was requested to be indexed. A value of \"v2\" denotes the latest stack, \"v1\" denotes the legacy stack."
|
|
17629
17697
|
}
|
|
17630
17698
|
},
|
|
17631
17699
|
"required": [
|
|
@@ -19590,7 +19658,7 @@ export const state = {
|
|
|
19590
19658
|
"title": "Botpress API",
|
|
19591
19659
|
"description": "API for Botpress Cloud",
|
|
19592
19660
|
"server": "https://api.botpress.cloud",
|
|
19593
|
-
"version": "1.
|
|
19661
|
+
"version": "1.38.0",
|
|
19594
19662
|
"prefix": "v1"
|
|
19595
19663
|
},
|
|
19596
19664
|
"errors": [
|
|
@@ -23492,6 +23560,14 @@ export const state = {
|
|
|
23492
23560
|
"type"
|
|
23493
23561
|
],
|
|
23494
23562
|
"additionalProperties": false
|
|
23563
|
+
},
|
|
23564
|
+
"indexingStack": {
|
|
23565
|
+
"type": "string",
|
|
23566
|
+
"enum": [
|
|
23567
|
+
"v1",
|
|
23568
|
+
"v2"
|
|
23569
|
+
],
|
|
23570
|
+
"description": "Indicates the indexing stack used to index this file. Present only when file was requested to be indexed. A value of \"v2\" denotes the latest stack, \"v1\" denotes the legacy stack."
|
|
23495
23571
|
}
|
|
23496
23572
|
},
|
|
23497
23573
|
"required": [
|