@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/dist/index.js
CHANGED
|
@@ -285333,7 +285333,7 @@ var state = {
|
|
|
285333
285333
|
"title": "Botpress API",
|
|
285334
285334
|
"description": "API for Botpress Cloud",
|
|
285335
285335
|
"server": "https://api.botpress.cloud",
|
|
285336
|
-
"version": "1.
|
|
285336
|
+
"version": "1.38.0",
|
|
285337
285337
|
"prefix": "v1"
|
|
285338
285338
|
},
|
|
285339
285339
|
"errors": [
|
|
@@ -289043,6 +289043,14 @@ var state = {
|
|
|
289043
289043
|
"type"
|
|
289044
289044
|
],
|
|
289045
289045
|
"additionalProperties": false
|
|
289046
|
+
},
|
|
289047
|
+
"indexingStack": {
|
|
289048
|
+
"type": "string",
|
|
289049
|
+
"enum": [
|
|
289050
|
+
"v1",
|
|
289051
|
+
"v2"
|
|
289052
|
+
],
|
|
289053
|
+
"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.'
|
|
289046
289054
|
}
|
|
289047
289055
|
},
|
|
289048
289056
|
"required": [
|
|
@@ -301974,42 +301982,6 @@ var state2 = {
|
|
|
301974
301982
|
"description": "Conversation object configuration",
|
|
301975
301983
|
"additionalProperties": false
|
|
301976
301984
|
},
|
|
301977
|
-
"dependencies": {
|
|
301978
|
-
"type": "object",
|
|
301979
|
-
"properties": {
|
|
301980
|
-
"interfaces": {
|
|
301981
|
-
"type": "object",
|
|
301982
|
-
"additionalProperties": {
|
|
301983
|
-
"type": "object",
|
|
301984
|
-
"properties": {
|
|
301985
|
-
"id": {
|
|
301986
|
-
"type": "string"
|
|
301987
|
-
}
|
|
301988
|
-
},
|
|
301989
|
-
"required": [
|
|
301990
|
-
"id"
|
|
301991
|
-
],
|
|
301992
|
-
"additionalProperties": false
|
|
301993
|
-
}
|
|
301994
|
-
},
|
|
301995
|
-
"integrations": {
|
|
301996
|
-
"type": "object",
|
|
301997
|
-
"additionalProperties": {
|
|
301998
|
-
"type": "object",
|
|
301999
|
-
"properties": {
|
|
302000
|
-
"id": {
|
|
302001
|
-
"type": "string"
|
|
302002
|
-
}
|
|
302003
|
-
},
|
|
302004
|
-
"required": [
|
|
302005
|
-
"id"
|
|
302006
|
-
],
|
|
302007
|
-
"additionalProperties": false
|
|
302008
|
-
}
|
|
302009
|
-
}
|
|
302010
|
-
},
|
|
302011
|
-
"additionalProperties": false
|
|
302012
|
-
},
|
|
302013
301985
|
"attributes": {
|
|
302014
301986
|
"type": "object",
|
|
302015
301987
|
"additionalProperties": {
|
|
@@ -302058,6 +302030,56 @@ var state2 = {
|
|
|
302058
302030
|
"public": {
|
|
302059
302031
|
"type": "boolean",
|
|
302060
302032
|
"description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
|
|
302033
|
+
},
|
|
302034
|
+
"dependencies": {
|
|
302035
|
+
"type": "object",
|
|
302036
|
+
"properties": {
|
|
302037
|
+
"interfaces": {
|
|
302038
|
+
"type": "object",
|
|
302039
|
+
"additionalProperties": {
|
|
302040
|
+
"type": "object",
|
|
302041
|
+
"properties": {
|
|
302042
|
+
"id": {
|
|
302043
|
+
"type": "string",
|
|
302044
|
+
"description": 'Id of the interface. If provided, "name" and "version" are ignored'
|
|
302045
|
+
},
|
|
302046
|
+
"name": {
|
|
302047
|
+
"type": "string",
|
|
302048
|
+
"description": "Name of the interface"
|
|
302049
|
+
},
|
|
302050
|
+
"version": {
|
|
302051
|
+
"type": "string",
|
|
302052
|
+
"description": "Version of the interface. Accepts semver versions and version ranges"
|
|
302053
|
+
}
|
|
302054
|
+
},
|
|
302055
|
+
"additionalProperties": false
|
|
302056
|
+
},
|
|
302057
|
+
"description": "Mapping of interface aliases to interface references"
|
|
302058
|
+
},
|
|
302059
|
+
"integrations": {
|
|
302060
|
+
"type": "object",
|
|
302061
|
+
"additionalProperties": {
|
|
302062
|
+
"type": "object",
|
|
302063
|
+
"properties": {
|
|
302064
|
+
"id": {
|
|
302065
|
+
"type": "string",
|
|
302066
|
+
"description": 'Id of the integration. If provided, "name" and "version" are ignored'
|
|
302067
|
+
},
|
|
302068
|
+
"name": {
|
|
302069
|
+
"type": "string",
|
|
302070
|
+
"description": "Name of the integration"
|
|
302071
|
+
},
|
|
302072
|
+
"version": {
|
|
302073
|
+
"type": "string",
|
|
302074
|
+
"description": "Version of the integration. Accepts semver versions and version ranges"
|
|
302075
|
+
}
|
|
302076
|
+
},
|
|
302077
|
+
"additionalProperties": false
|
|
302078
|
+
},
|
|
302079
|
+
"description": "Mapping of integration aliases to integration references"
|
|
302080
|
+
}
|
|
302081
|
+
},
|
|
302082
|
+
"additionalProperties": false
|
|
302061
302083
|
}
|
|
302062
302084
|
},
|
|
302063
302085
|
"required": [
|
|
@@ -302434,44 +302456,6 @@ var state2 = {
|
|
|
302434
302456
|
],
|
|
302435
302457
|
"additionalProperties": false
|
|
302436
302458
|
},
|
|
302437
|
-
"dependencies": {
|
|
302438
|
-
"type": "object",
|
|
302439
|
-
"properties": {
|
|
302440
|
-
"interfaces": {
|
|
302441
|
-
"type": "object",
|
|
302442
|
-
"additionalProperties": {
|
|
302443
|
-
"type": "object",
|
|
302444
|
-
"properties": {
|
|
302445
|
-
"id": {
|
|
302446
|
-
"type": "string"
|
|
302447
|
-
}
|
|
302448
|
-
},
|
|
302449
|
-
"required": [
|
|
302450
|
-
"id"
|
|
302451
|
-
],
|
|
302452
|
-
"nullable": true,
|
|
302453
|
-
"additionalProperties": false
|
|
302454
|
-
}
|
|
302455
|
-
},
|
|
302456
|
-
"integrations": {
|
|
302457
|
-
"type": "object",
|
|
302458
|
-
"additionalProperties": {
|
|
302459
|
-
"type": "object",
|
|
302460
|
-
"properties": {
|
|
302461
|
-
"id": {
|
|
302462
|
-
"type": "string"
|
|
302463
|
-
}
|
|
302464
|
-
},
|
|
302465
|
-
"required": [
|
|
302466
|
-
"id"
|
|
302467
|
-
],
|
|
302468
|
-
"nullable": true,
|
|
302469
|
-
"additionalProperties": false
|
|
302470
|
-
}
|
|
302471
|
-
}
|
|
302472
|
-
},
|
|
302473
|
-
"additionalProperties": false
|
|
302474
|
-
},
|
|
302475
302459
|
"attributes": {
|
|
302476
302460
|
"type": "object",
|
|
302477
302461
|
"additionalProperties": {
|
|
@@ -302517,6 +302501,58 @@ var state2 = {
|
|
|
302517
302501
|
"public": {
|
|
302518
302502
|
"type": "boolean",
|
|
302519
302503
|
"description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
|
|
302504
|
+
},
|
|
302505
|
+
"dependencies": {
|
|
302506
|
+
"type": "object",
|
|
302507
|
+
"properties": {
|
|
302508
|
+
"interfaces": {
|
|
302509
|
+
"type": "object",
|
|
302510
|
+
"additionalProperties": {
|
|
302511
|
+
"type": "object",
|
|
302512
|
+
"properties": {
|
|
302513
|
+
"id": {
|
|
302514
|
+
"type": "string",
|
|
302515
|
+
"description": 'Id of the interface. If provided, "name" and "version" are ignored'
|
|
302516
|
+
},
|
|
302517
|
+
"name": {
|
|
302518
|
+
"type": "string",
|
|
302519
|
+
"description": "Name of the interface"
|
|
302520
|
+
},
|
|
302521
|
+
"version": {
|
|
302522
|
+
"type": "string",
|
|
302523
|
+
"description": "Version of the interface. Accepts semver versions and version ranges"
|
|
302524
|
+
}
|
|
302525
|
+
},
|
|
302526
|
+
"nullable": true,
|
|
302527
|
+
"additionalProperties": false
|
|
302528
|
+
},
|
|
302529
|
+
"description": "Mapping of interface aliases to interface references"
|
|
302530
|
+
},
|
|
302531
|
+
"integrations": {
|
|
302532
|
+
"type": "object",
|
|
302533
|
+
"additionalProperties": {
|
|
302534
|
+
"type": "object",
|
|
302535
|
+
"properties": {
|
|
302536
|
+
"id": {
|
|
302537
|
+
"type": "string",
|
|
302538
|
+
"description": 'Id of the integration. If provided, "name" and "version" are ignored'
|
|
302539
|
+
},
|
|
302540
|
+
"name": {
|
|
302541
|
+
"type": "string",
|
|
302542
|
+
"description": "Name of the integration"
|
|
302543
|
+
},
|
|
302544
|
+
"version": {
|
|
302545
|
+
"type": "string",
|
|
302546
|
+
"description": "Version of the integration. Accepts semver versions and version ranges"
|
|
302547
|
+
}
|
|
302548
|
+
},
|
|
302549
|
+
"nullable": true,
|
|
302550
|
+
"additionalProperties": false
|
|
302551
|
+
},
|
|
302552
|
+
"description": "Mapping of integration aliases to integration references"
|
|
302553
|
+
}
|
|
302554
|
+
},
|
|
302555
|
+
"additionalProperties": false
|
|
302520
302556
|
}
|
|
302521
302557
|
},
|
|
302522
302558
|
"title": "updatePluginBody",
|
|
@@ -303247,7 +303283,7 @@ var state2 = {
|
|
|
303247
303283
|
"title": "Botpress API",
|
|
303248
303284
|
"description": "API for Botpress Cloud",
|
|
303249
303285
|
"server": "https://api.botpress.cloud",
|
|
303250
|
-
"version": "1.
|
|
303286
|
+
"version": "1.38.0",
|
|
303251
303287
|
"prefix": "v1"
|
|
303252
303288
|
},
|
|
303253
303289
|
"errors": [
|
|
@@ -307030,6 +307066,14 @@ var state2 = {
|
|
|
307030
307066
|
"type"
|
|
307031
307067
|
],
|
|
307032
307068
|
"additionalProperties": false
|
|
307069
|
+
},
|
|
307070
|
+
"indexingStack": {
|
|
307071
|
+
"type": "string",
|
|
307072
|
+
"enum": [
|
|
307073
|
+
"v1",
|
|
307074
|
+
"v2"
|
|
307075
|
+
],
|
|
307076
|
+
"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.'
|
|
307033
307077
|
}
|
|
307034
307078
|
},
|
|
307035
307079
|
"required": [
|
|
@@ -307635,6 +307679,14 @@ var state3 = {
|
|
|
307635
307679
|
],
|
|
307636
307680
|
"additionalProperties": false
|
|
307637
307681
|
},
|
|
307682
|
+
"indexingStack": {
|
|
307683
|
+
"type": "string",
|
|
307684
|
+
"enum": [
|
|
307685
|
+
"v1",
|
|
307686
|
+
"v2"
|
|
307687
|
+
],
|
|
307688
|
+
"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.'
|
|
307689
|
+
},
|
|
307638
307690
|
"uploadUrl": {
|
|
307639
307691
|
"type": "string",
|
|
307640
307692
|
"description": "URL to upload the file content. File content needs to be sent to this URL via a PUT request."
|
|
@@ -307859,6 +307911,14 @@ var state3 = {
|
|
|
307859
307911
|
"required": [
|
|
307860
307912
|
"type"
|
|
307861
307913
|
]
|
|
307914
|
+
},
|
|
307915
|
+
"indexingStack": {
|
|
307916
|
+
"type": "string",
|
|
307917
|
+
"enum": [
|
|
307918
|
+
"v1",
|
|
307919
|
+
"v2"
|
|
307920
|
+
],
|
|
307921
|
+
"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.'
|
|
307862
307922
|
}
|
|
307863
307923
|
},
|
|
307864
307924
|
"required": [
|
|
@@ -308027,6 +308087,14 @@ var state3 = {
|
|
|
308027
308087
|
"type"
|
|
308028
308088
|
],
|
|
308029
308089
|
"additionalProperties": false
|
|
308090
|
+
},
|
|
308091
|
+
"indexingStack": {
|
|
308092
|
+
"type": "string",
|
|
308093
|
+
"enum": [
|
|
308094
|
+
"v1",
|
|
308095
|
+
"v2"
|
|
308096
|
+
],
|
|
308097
|
+
"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.'
|
|
308030
308098
|
}
|
|
308031
308099
|
},
|
|
308032
308100
|
"required": [
|
|
@@ -308223,6 +308291,14 @@ var state3 = {
|
|
|
308223
308291
|
"type"
|
|
308224
308292
|
],
|
|
308225
308293
|
"additionalProperties": false
|
|
308294
|
+
},
|
|
308295
|
+
"indexingStack": {
|
|
308296
|
+
"type": "string",
|
|
308297
|
+
"enum": [
|
|
308298
|
+
"v1",
|
|
308299
|
+
"v2"
|
|
308300
|
+
],
|
|
308301
|
+
"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.'
|
|
308226
308302
|
}
|
|
308227
308303
|
},
|
|
308228
308304
|
"required": [
|
|
@@ -308404,6 +308480,14 @@ var state3 = {
|
|
|
308404
308480
|
"type"
|
|
308405
308481
|
],
|
|
308406
308482
|
"additionalProperties": false
|
|
308483
|
+
},
|
|
308484
|
+
"indexingStack": {
|
|
308485
|
+
"type": "string",
|
|
308486
|
+
"enum": [
|
|
308487
|
+
"v1",
|
|
308488
|
+
"v2"
|
|
308489
|
+
],
|
|
308490
|
+
"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.'
|
|
308407
308491
|
}
|
|
308408
308492
|
},
|
|
308409
308493
|
"required": [
|
|
@@ -309162,7 +309246,7 @@ var state3 = {
|
|
|
309162
309246
|
"title": "Botpress API",
|
|
309163
309247
|
"description": "API for Botpress Cloud",
|
|
309164
309248
|
"server": "https://api.botpress.cloud",
|
|
309165
|
-
"version": "1.
|
|
309249
|
+
"version": "1.38.0",
|
|
309166
309250
|
"prefix": "v1"
|
|
309167
309251
|
},
|
|
309168
309252
|
"errors": [
|
|
@@ -312827,6 +312911,14 @@ var state3 = {
|
|
|
312827
312911
|
"type"
|
|
312828
312912
|
],
|
|
312829
312913
|
"additionalProperties": false
|
|
312914
|
+
},
|
|
312915
|
+
"indexingStack": {
|
|
312916
|
+
"type": "string",
|
|
312917
|
+
"enum": [
|
|
312918
|
+
"v1",
|
|
312919
|
+
"v2"
|
|
312920
|
+
],
|
|
312921
|
+
"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.'
|
|
312830
312922
|
}
|
|
312831
312923
|
},
|
|
312832
312924
|
"required": [
|
|
@@ -314246,7 +314338,7 @@ var state4 = {
|
|
|
314246
314338
|
"title": "Botpress API",
|
|
314247
314339
|
"description": "API for Botpress Cloud",
|
|
314248
314340
|
"server": "https://api.botpress.cloud",
|
|
314249
|
-
"version": "1.
|
|
314341
|
+
"version": "1.38.0",
|
|
314250
314342
|
"prefix": "v1"
|
|
314251
314343
|
},
|
|
314252
314344
|
"errors": [
|
|
@@ -317918,6 +318010,14 @@ var state4 = {
|
|
|
317918
318010
|
"type"
|
|
317919
318011
|
],
|
|
317920
318012
|
"additionalProperties": false
|
|
318013
|
+
},
|
|
318014
|
+
"indexingStack": {
|
|
318015
|
+
"type": "string",
|
|
318016
|
+
"enum": [
|
|
318017
|
+
"v1",
|
|
318018
|
+
"v2"
|
|
318019
|
+
],
|
|
318020
|
+
"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.'
|
|
317921
318021
|
}
|
|
317922
318022
|
},
|
|
317923
318023
|
"required": [
|
|
@@ -333412,42 +333512,6 @@ var state5 = {
|
|
|
333412
333512
|
"description": "Conversation object configuration",
|
|
333413
333513
|
"additionalProperties": false
|
|
333414
333514
|
},
|
|
333415
|
-
"dependencies": {
|
|
333416
|
-
"type": "object",
|
|
333417
|
-
"properties": {
|
|
333418
|
-
"interfaces": {
|
|
333419
|
-
"type": "object",
|
|
333420
|
-
"additionalProperties": {
|
|
333421
|
-
"type": "object",
|
|
333422
|
-
"properties": {
|
|
333423
|
-
"id": {
|
|
333424
|
-
"type": "string"
|
|
333425
|
-
}
|
|
333426
|
-
},
|
|
333427
|
-
"required": [
|
|
333428
|
-
"id"
|
|
333429
|
-
],
|
|
333430
|
-
"additionalProperties": false
|
|
333431
|
-
}
|
|
333432
|
-
},
|
|
333433
|
-
"integrations": {
|
|
333434
|
-
"type": "object",
|
|
333435
|
-
"additionalProperties": {
|
|
333436
|
-
"type": "object",
|
|
333437
|
-
"properties": {
|
|
333438
|
-
"id": {
|
|
333439
|
-
"type": "string"
|
|
333440
|
-
}
|
|
333441
|
-
},
|
|
333442
|
-
"required": [
|
|
333443
|
-
"id"
|
|
333444
|
-
],
|
|
333445
|
-
"additionalProperties": false
|
|
333446
|
-
}
|
|
333447
|
-
}
|
|
333448
|
-
},
|
|
333449
|
-
"additionalProperties": false
|
|
333450
|
-
},
|
|
333451
333515
|
"attributes": {
|
|
333452
333516
|
"type": "object",
|
|
333453
333517
|
"additionalProperties": {
|
|
@@ -333496,6 +333560,56 @@ var state5 = {
|
|
|
333496
333560
|
"public": {
|
|
333497
333561
|
"type": "boolean",
|
|
333498
333562
|
"description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
|
|
333563
|
+
},
|
|
333564
|
+
"dependencies": {
|
|
333565
|
+
"type": "object",
|
|
333566
|
+
"properties": {
|
|
333567
|
+
"interfaces": {
|
|
333568
|
+
"type": "object",
|
|
333569
|
+
"additionalProperties": {
|
|
333570
|
+
"type": "object",
|
|
333571
|
+
"properties": {
|
|
333572
|
+
"id": {
|
|
333573
|
+
"type": "string",
|
|
333574
|
+
"description": 'Id of the interface. If provided, "name" and "version" are ignored'
|
|
333575
|
+
},
|
|
333576
|
+
"name": {
|
|
333577
|
+
"type": "string",
|
|
333578
|
+
"description": "Name of the interface"
|
|
333579
|
+
},
|
|
333580
|
+
"version": {
|
|
333581
|
+
"type": "string",
|
|
333582
|
+
"description": "Version of the interface. Accepts semver versions and version ranges"
|
|
333583
|
+
}
|
|
333584
|
+
},
|
|
333585
|
+
"additionalProperties": false
|
|
333586
|
+
},
|
|
333587
|
+
"description": "Mapping of interface aliases to interface references"
|
|
333588
|
+
},
|
|
333589
|
+
"integrations": {
|
|
333590
|
+
"type": "object",
|
|
333591
|
+
"additionalProperties": {
|
|
333592
|
+
"type": "object",
|
|
333593
|
+
"properties": {
|
|
333594
|
+
"id": {
|
|
333595
|
+
"type": "string",
|
|
333596
|
+
"description": 'Id of the integration. If provided, "name" and "version" are ignored'
|
|
333597
|
+
},
|
|
333598
|
+
"name": {
|
|
333599
|
+
"type": "string",
|
|
333600
|
+
"description": "Name of the integration"
|
|
333601
|
+
},
|
|
333602
|
+
"version": {
|
|
333603
|
+
"type": "string",
|
|
333604
|
+
"description": "Version of the integration. Accepts semver versions and version ranges"
|
|
333605
|
+
}
|
|
333606
|
+
},
|
|
333607
|
+
"additionalProperties": false
|
|
333608
|
+
},
|
|
333609
|
+
"description": "Mapping of integration aliases to integration references"
|
|
333610
|
+
}
|
|
333611
|
+
},
|
|
333612
|
+
"additionalProperties": false
|
|
333499
333613
|
}
|
|
333500
333614
|
},
|
|
333501
333615
|
"required": [
|
|
@@ -333872,44 +333986,6 @@ var state5 = {
|
|
|
333872
333986
|
],
|
|
333873
333987
|
"additionalProperties": false
|
|
333874
333988
|
},
|
|
333875
|
-
"dependencies": {
|
|
333876
|
-
"type": "object",
|
|
333877
|
-
"properties": {
|
|
333878
|
-
"interfaces": {
|
|
333879
|
-
"type": "object",
|
|
333880
|
-
"additionalProperties": {
|
|
333881
|
-
"type": "object",
|
|
333882
|
-
"properties": {
|
|
333883
|
-
"id": {
|
|
333884
|
-
"type": "string"
|
|
333885
|
-
}
|
|
333886
|
-
},
|
|
333887
|
-
"required": [
|
|
333888
|
-
"id"
|
|
333889
|
-
],
|
|
333890
|
-
"nullable": true,
|
|
333891
|
-
"additionalProperties": false
|
|
333892
|
-
}
|
|
333893
|
-
},
|
|
333894
|
-
"integrations": {
|
|
333895
|
-
"type": "object",
|
|
333896
|
-
"additionalProperties": {
|
|
333897
|
-
"type": "object",
|
|
333898
|
-
"properties": {
|
|
333899
|
-
"id": {
|
|
333900
|
-
"type": "string"
|
|
333901
|
-
}
|
|
333902
|
-
},
|
|
333903
|
-
"required": [
|
|
333904
|
-
"id"
|
|
333905
|
-
],
|
|
333906
|
-
"nullable": true,
|
|
333907
|
-
"additionalProperties": false
|
|
333908
|
-
}
|
|
333909
|
-
}
|
|
333910
|
-
},
|
|
333911
|
-
"additionalProperties": false
|
|
333912
|
-
},
|
|
333913
333989
|
"attributes": {
|
|
333914
333990
|
"type": "object",
|
|
333915
333991
|
"additionalProperties": {
|
|
@@ -333955,6 +334031,58 @@ var state5 = {
|
|
|
333955
334031
|
"public": {
|
|
333956
334032
|
"type": "boolean",
|
|
333957
334033
|
"description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
|
|
334034
|
+
},
|
|
334035
|
+
"dependencies": {
|
|
334036
|
+
"type": "object",
|
|
334037
|
+
"properties": {
|
|
334038
|
+
"interfaces": {
|
|
334039
|
+
"type": "object",
|
|
334040
|
+
"additionalProperties": {
|
|
334041
|
+
"type": "object",
|
|
334042
|
+
"properties": {
|
|
334043
|
+
"id": {
|
|
334044
|
+
"type": "string",
|
|
334045
|
+
"description": 'Id of the interface. If provided, "name" and "version" are ignored'
|
|
334046
|
+
},
|
|
334047
|
+
"name": {
|
|
334048
|
+
"type": "string",
|
|
334049
|
+
"description": "Name of the interface"
|
|
334050
|
+
},
|
|
334051
|
+
"version": {
|
|
334052
|
+
"type": "string",
|
|
334053
|
+
"description": "Version of the interface. Accepts semver versions and version ranges"
|
|
334054
|
+
}
|
|
334055
|
+
},
|
|
334056
|
+
"nullable": true,
|
|
334057
|
+
"additionalProperties": false
|
|
334058
|
+
},
|
|
334059
|
+
"description": "Mapping of interface aliases to interface references"
|
|
334060
|
+
},
|
|
334061
|
+
"integrations": {
|
|
334062
|
+
"type": "object",
|
|
334063
|
+
"additionalProperties": {
|
|
334064
|
+
"type": "object",
|
|
334065
|
+
"properties": {
|
|
334066
|
+
"id": {
|
|
334067
|
+
"type": "string",
|
|
334068
|
+
"description": 'Id of the integration. If provided, "name" and "version" are ignored'
|
|
334069
|
+
},
|
|
334070
|
+
"name": {
|
|
334071
|
+
"type": "string",
|
|
334072
|
+
"description": "Name of the integration"
|
|
334073
|
+
},
|
|
334074
|
+
"version": {
|
|
334075
|
+
"type": "string",
|
|
334076
|
+
"description": "Version of the integration. Accepts semver versions and version ranges"
|
|
334077
|
+
}
|
|
334078
|
+
},
|
|
334079
|
+
"nullable": true,
|
|
334080
|
+
"additionalProperties": false
|
|
334081
|
+
},
|
|
334082
|
+
"description": "Mapping of integration aliases to integration references"
|
|
334083
|
+
}
|
|
334084
|
+
},
|
|
334085
|
+
"additionalProperties": false
|
|
333958
334086
|
}
|
|
333959
334087
|
},
|
|
333960
334088
|
"title": "updatePluginBody",
|
|
@@ -334976,6 +335104,14 @@ var state5 = {
|
|
|
334976
335104
|
],
|
|
334977
335105
|
"additionalProperties": false
|
|
334978
335106
|
},
|
|
335107
|
+
"indexingStack": {
|
|
335108
|
+
"type": "string",
|
|
335109
|
+
"enum": [
|
|
335110
|
+
"v1",
|
|
335111
|
+
"v2"
|
|
335112
|
+
],
|
|
335113
|
+
"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.'
|
|
335114
|
+
},
|
|
334979
335115
|
"uploadUrl": {
|
|
334980
335116
|
"type": "string",
|
|
334981
335117
|
"description": "URL to upload the file content. File content needs to be sent to this URL via a PUT request."
|
|
@@ -335200,6 +335336,14 @@ var state5 = {
|
|
|
335200
335336
|
"required": [
|
|
335201
335337
|
"type"
|
|
335202
335338
|
]
|
|
335339
|
+
},
|
|
335340
|
+
"indexingStack": {
|
|
335341
|
+
"type": "string",
|
|
335342
|
+
"enum": [
|
|
335343
|
+
"v1",
|
|
335344
|
+
"v2"
|
|
335345
|
+
],
|
|
335346
|
+
"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.'
|
|
335203
335347
|
}
|
|
335204
335348
|
},
|
|
335205
335349
|
"required": [
|
|
@@ -335368,6 +335512,14 @@ var state5 = {
|
|
|
335368
335512
|
"type"
|
|
335369
335513
|
],
|
|
335370
335514
|
"additionalProperties": false
|
|
335515
|
+
},
|
|
335516
|
+
"indexingStack": {
|
|
335517
|
+
"type": "string",
|
|
335518
|
+
"enum": [
|
|
335519
|
+
"v1",
|
|
335520
|
+
"v2"
|
|
335521
|
+
],
|
|
335522
|
+
"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.'
|
|
335371
335523
|
}
|
|
335372
335524
|
},
|
|
335373
335525
|
"required": [
|
|
@@ -335564,6 +335716,14 @@ var state5 = {
|
|
|
335564
335716
|
"type"
|
|
335565
335717
|
],
|
|
335566
335718
|
"additionalProperties": false
|
|
335719
|
+
},
|
|
335720
|
+
"indexingStack": {
|
|
335721
|
+
"type": "string",
|
|
335722
|
+
"enum": [
|
|
335723
|
+
"v1",
|
|
335724
|
+
"v2"
|
|
335725
|
+
],
|
|
335726
|
+
"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.'
|
|
335567
335727
|
}
|
|
335568
335728
|
},
|
|
335569
335729
|
"required": [
|
|
@@ -335745,6 +335905,14 @@ var state5 = {
|
|
|
335745
335905
|
"type"
|
|
335746
335906
|
],
|
|
335747
335907
|
"additionalProperties": false
|
|
335908
|
+
},
|
|
335909
|
+
"indexingStack": {
|
|
335910
|
+
"type": "string",
|
|
335911
|
+
"enum": [
|
|
335912
|
+
"v1",
|
|
335913
|
+
"v2"
|
|
335914
|
+
],
|
|
335915
|
+
"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.'
|
|
335748
335916
|
}
|
|
335749
335917
|
},
|
|
335750
335918
|
"required": [
|
|
@@ -337709,7 +337877,7 @@ var state5 = {
|
|
|
337709
337877
|
"title": "Botpress API",
|
|
337710
337878
|
"description": "API for Botpress Cloud",
|
|
337711
337879
|
"server": "https://api.botpress.cloud",
|
|
337712
|
-
"version": "1.
|
|
337880
|
+
"version": "1.38.0",
|
|
337713
337881
|
"prefix": "v1"
|
|
337714
337882
|
},
|
|
337715
337883
|
"errors": [
|
|
@@ -341611,6 +341779,14 @@ var state5 = {
|
|
|
341611
341779
|
"type"
|
|
341612
341780
|
],
|
|
341613
341781
|
"additionalProperties": false
|
|
341782
|
+
},
|
|
341783
|
+
"indexingStack": {
|
|
341784
|
+
"type": "string",
|
|
341785
|
+
"enum": [
|
|
341786
|
+
"v1",
|
|
341787
|
+
"v2"
|
|
341788
|
+
],
|
|
341789
|
+
"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.'
|
|
341614
341790
|
}
|
|
341615
341791
|
},
|
|
341616
341792
|
"required": [
|