@botpress/api 1.23.0 → 1.25.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.
@@ -2602,7 +2602,7 @@ export const state = {
2602
2602
  "title": "Botpress API",
2603
2603
  "description": "API for Botpress Cloud",
2604
2604
  "server": "https://api.botpress.cloud",
2605
- "version": "1.23.0",
2605
+ "version": "1.25.0",
2606
2606
  "prefix": "v1"
2607
2607
  },
2608
2608
  "errors": [
package/src/gen/state.ts CHANGED
@@ -8309,6 +8309,67 @@ export const state = {
8309
8309
  }
8310
8310
  }
8311
8311
  },
8312
+ "getBotJson": {
8313
+ "name": "getBotJson",
8314
+ "description": "Download the raw bot JSON for a bot. Optionally specify versionId to download a specific version.",
8315
+ "method": "get",
8316
+ "path": "/v1/admin/bots/{id}/bot-json",
8317
+ "section": "bot",
8318
+ "parameters": {
8319
+ "id": {
8320
+ "type": "string",
8321
+ "description": "Bot ID",
8322
+ "in": "path"
8323
+ }
8324
+ },
8325
+ "response": {
8326
+ "description": "Success",
8327
+ "schema": {
8328
+ "type": "object",
8329
+ "additionalProperties": true,
8330
+ "title": "getBotJsonResponse"
8331
+ }
8332
+ }
8333
+ },
8334
+ "publishFromBotJson": {
8335
+ "name": "publishFromBotJson",
8336
+ "description": "Deploy a bot using the provided raw bot JSON payload.",
8337
+ "method": "post",
8338
+ "path": "/v1/admin/bots/{id}/publish-from-bot-json",
8339
+ "section": "bot",
8340
+ "parameters": {
8341
+ "id": {
8342
+ "type": "string",
8343
+ "description": "Bot ID",
8344
+ "in": "path"
8345
+ }
8346
+ },
8347
+ "requestBody": {
8348
+ "description": "Raw bot JSON payload",
8349
+ "schema": {
8350
+ "type": "object",
8351
+ "properties": {
8352
+ "botJson": {
8353
+ "type": "object",
8354
+ "additionalProperties": true
8355
+ }
8356
+ },
8357
+ "required": [
8358
+ "botJson"
8359
+ ],
8360
+ "title": "publishFromBotJsonBody",
8361
+ "additionalProperties": false
8362
+ }
8363
+ },
8364
+ "response": {
8365
+ "description": "Success",
8366
+ "schema": {
8367
+ "type": "object",
8368
+ "additionalProperties": true,
8369
+ "title": "publishFromBotJsonResponse"
8370
+ }
8371
+ }
8372
+ },
8312
8373
  "createBotVersion": {
8313
8374
  "name": "createBotVersion",
8314
8375
  "description": "Create a new version for a bot",
@@ -11206,6 +11267,10 @@ export const state = {
11206
11267
  "additionalProperties": false
11207
11268
  }
11208
11269
  },
11270
+ "messageStatusChangeNotificationsEnabled": {
11271
+ "type": "boolean",
11272
+ "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
11273
+ },
11209
11274
  "secrets": {
11210
11275
  "type": "object",
11211
11276
  "additionalProperties": {
@@ -11796,6 +11861,10 @@ export const state = {
11796
11861
  "additionalProperties": false
11797
11862
  }
11798
11863
  },
11864
+ "messageStatusChangeNotificationsEnabled": {
11865
+ "type": "boolean",
11866
+ "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
11867
+ },
11799
11868
  "secrets": {
11800
11869
  "type": "object",
11801
11870
  "additionalProperties": {
@@ -11959,6 +12028,10 @@ export const state = {
11959
12028
  },
11960
12029
  "description": "Additional configuration definitions of the integration"
11961
12030
  },
12031
+ "messageStatusChangeNotificationsEnabled": {
12032
+ "type": "boolean",
12033
+ "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
12034
+ },
11962
12035
  "channels": {
11963
12036
  "type": "object",
11964
12037
  "additionalProperties": {
@@ -12551,6 +12624,10 @@ export const state = {
12551
12624
  },
12552
12625
  "description": "Additional configuration definitions of the integration"
12553
12626
  },
12627
+ "messageStatusChangeNotificationsEnabled": {
12628
+ "type": "boolean",
12629
+ "description": "**EXPERIMENTAL** Whether the integration should be notified when the message status changes"
12630
+ },
12554
12631
  "channels": {
12555
12632
  "type": "object",
12556
12633
  "additionalProperties": {
@@ -18679,7 +18756,7 @@ export const state = {
18679
18756
  "title": "Botpress API",
18680
18757
  "description": "API for Botpress Cloud",
18681
18758
  "server": "https://api.botpress.cloud",
18682
- "version": "1.23.0",
18759
+ "version": "1.25.0",
18683
18760
  "prefix": "v1"
18684
18761
  },
18685
18762
  "errors": [
@@ -18838,6 +18915,7 @@ export const state = {
18838
18915
  "createBotBody": true,
18839
18916
  "updateBotBody": true,
18840
18917
  "transferBotBody": true,
18918
+ "publishFromBotJsonBody": true,
18841
18919
  "createBotVersionBody": true,
18842
18920
  "deployBotVersionBody": true,
18843
18921
  "createIntegrationShareableIdBody": true,
@@ -18959,6 +19037,8 @@ export const state = {
18959
19037
  "listBotIssueEventsResponse": true,
18960
19038
  "listBotVersionsResponse": true,
18961
19039
  "getBotVersionResponse": true,
19040
+ "getBotJsonResponse": true,
19041
+ "publishFromBotJsonResponse": true,
18962
19042
  "createBotVersionResponse": true,
18963
19043
  "deployBotVersionResponse": true,
18964
19044
  "createIntegrationShareableIdResponse": true,
@@ -22706,6 +22786,8 @@ export const state = {
22706
22786
  "listBotIssueEvents",
22707
22787
  "listBotVersions",
22708
22788
  "getBotVersion",
22789
+ "getBotJson",
22790
+ "publishFromBotJson",
22709
22791
  "createBotVersion",
22710
22792
  "deployBotVersion",
22711
22793
  "createIntegrationShareableId",