@botpress/api 1.52.1 → 1.53.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.
@@ -3608,7 +3608,7 @@ export const state = {
3608
3608
  "title": "Botpress Runtime API",
3609
3609
  "description": "API for Botpress Runtime",
3610
3610
  "server": "https://api.botpress.cloud",
3611
- "version": "1.52.1",
3611
+ "version": "1.53.0",
3612
3612
  "prefix": "v1"
3613
3613
  },
3614
3614
  "defaultParameters": {
package/src/gen/state.ts CHANGED
@@ -5047,7 +5047,17 @@ export const state = {
5047
5047
  },
5048
5048
  "public": {
5049
5049
  "type": "boolean",
5050
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
5050
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
5051
+ "deprecated": true
5052
+ },
5053
+ "visibility": {
5054
+ "type": "string",
5055
+ "enum": [
5056
+ "public",
5057
+ "private",
5058
+ "unlisted"
5059
+ ],
5060
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
5051
5061
  }
5052
5062
  },
5053
5063
  "required": [
@@ -5060,7 +5070,8 @@ export const state = {
5060
5070
  "description",
5061
5071
  "iconUrl",
5062
5072
  "readmeUrl",
5063
- "public"
5073
+ "public",
5074
+ "visibility"
5064
5075
  ]
5065
5076
  }
5066
5077
  },
@@ -5444,7 +5455,17 @@ export const state = {
5444
5455
  },
5445
5456
  "public": {
5446
5457
  "type": "boolean",
5447
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
5458
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
5459
+ "deprecated": true
5460
+ },
5461
+ "visibility": {
5462
+ "type": "string",
5463
+ "enum": [
5464
+ "public",
5465
+ "private",
5466
+ "unlisted"
5467
+ ],
5468
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
5448
5469
  }
5449
5470
  },
5450
5471
  "required": [
@@ -5464,7 +5485,8 @@ export const state = {
5464
5485
  "description",
5465
5486
  "iconUrl",
5466
5487
  "readmeUrl",
5467
- "public"
5488
+ "public",
5489
+ "visibility"
5468
5490
  ],
5469
5491
  "additionalProperties": false
5470
5492
  }
@@ -5851,7 +5873,17 @@ export const state = {
5851
5873
  },
5852
5874
  "public": {
5853
5875
  "type": "boolean",
5854
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
5876
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
5877
+ "deprecated": true
5878
+ },
5879
+ "visibility": {
5880
+ "type": "string",
5881
+ "enum": [
5882
+ "public",
5883
+ "private",
5884
+ "unlisted"
5885
+ ],
5886
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
5855
5887
  }
5856
5888
  },
5857
5889
  "required": [
@@ -5871,7 +5903,8 @@ export const state = {
5871
5903
  "description",
5872
5904
  "iconUrl",
5873
5905
  "readmeUrl",
5874
- "public"
5906
+ "public",
5907
+ "visibility"
5875
5908
  ],
5876
5909
  "additionalProperties": false
5877
5910
  }
@@ -6249,7 +6282,17 @@ export const state = {
6249
6282
  },
6250
6283
  "public": {
6251
6284
  "type": "boolean",
6252
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
6285
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
6286
+ "deprecated": true
6287
+ },
6288
+ "visibility": {
6289
+ "type": "string",
6290
+ "enum": [
6291
+ "public",
6292
+ "private",
6293
+ "unlisted"
6294
+ ],
6295
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
6253
6296
  }
6254
6297
  },
6255
6298
  "required": [
@@ -6269,7 +6312,8 @@ export const state = {
6269
6312
  "description",
6270
6313
  "iconUrl",
6271
6314
  "readmeUrl",
6272
- "public"
6315
+ "public",
6316
+ "visibility"
6273
6317
  ],
6274
6318
  "additionalProperties": false
6275
6319
  }
@@ -15693,7 +15737,17 @@ export const state = {
15693
15737
  },
15694
15738
  "public": {
15695
15739
  "type": "boolean",
15696
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
15740
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
15741
+ "deprecated": true
15742
+ },
15743
+ "visibility": {
15744
+ "type": "string",
15745
+ "enum": [
15746
+ "public",
15747
+ "private",
15748
+ "unlisted"
15749
+ ],
15750
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
15697
15751
  },
15698
15752
  "dependencies": {
15699
15753
  "type": "object",
@@ -16164,7 +16218,17 @@ export const state = {
16164
16218
  },
16165
16219
  "public": {
16166
16220
  "type": "boolean",
16167
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
16221
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
16222
+ "deprecated": true
16223
+ },
16224
+ "visibility": {
16225
+ "type": "string",
16226
+ "enum": [
16227
+ "public",
16228
+ "private",
16229
+ "unlisted"
16230
+ ],
16231
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
16168
16232
  },
16169
16233
  "dependencies": {
16170
16234
  "type": "object",
@@ -16343,7 +16407,17 @@ export const state = {
16343
16407
  },
16344
16408
  "public": {
16345
16409
  "type": "boolean",
16346
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
16410
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
16411
+ "deprecated": true
16412
+ },
16413
+ "visibility": {
16414
+ "type": "string",
16415
+ "enum": [
16416
+ "public",
16417
+ "private",
16418
+ "unlisted"
16419
+ ],
16420
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
16347
16421
  }
16348
16422
  },
16349
16423
  "required": [
@@ -16356,7 +16430,8 @@ export const state = {
16356
16430
  "description",
16357
16431
  "iconUrl",
16358
16432
  "readmeUrl",
16359
- "public"
16433
+ "public",
16434
+ "visibility"
16360
16435
  ]
16361
16436
  }
16362
16437
  },
@@ -20101,7 +20176,7 @@ export const state = {
20101
20176
  "title": "Botpress API",
20102
20177
  "description": "API for Botpress Cloud",
20103
20178
  "server": "https://api.botpress.cloud",
20104
- "version": "1.52.1",
20179
+ "version": "1.53.0",
20105
20180
  "prefix": "v1"
20106
20181
  },
20107
20182
  "errors": [
@@ -20808,7 +20883,17 @@ export const state = {
20808
20883
  },
20809
20884
  "public": {
20810
20885
  "type": "boolean",
20811
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
20886
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
20887
+ "deprecated": true
20888
+ },
20889
+ "visibility": {
20890
+ "type": "string",
20891
+ "enum": [
20892
+ "public",
20893
+ "private",
20894
+ "unlisted"
20895
+ ],
20896
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
20812
20897
  }
20813
20898
  },
20814
20899
  "required": [
@@ -20823,7 +20908,8 @@ export const state = {
20823
20908
  "description",
20824
20909
  "iconUrl",
20825
20910
  "readmeUrl",
20826
- "public"
20911
+ "public",
20912
+ "visibility"
20827
20913
  ],
20828
20914
  "additionalProperties": false
20829
20915
  },
@@ -22522,7 +22608,17 @@ export const state = {
22522
22608
  },
22523
22609
  "public": {
22524
22610
  "type": "boolean",
22525
- "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
22611
+ "description": "[DEPRECATED] Indicates if the plugin is public. Please use the \"visibility\" parameter instead.",
22612
+ "deprecated": true
22613
+ },
22614
+ "visibility": {
22615
+ "type": "string",
22616
+ "enum": [
22617
+ "public",
22618
+ "private",
22619
+ "unlisted"
22620
+ ],
22621
+ "description": "The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them."
22526
22622
  }
22527
22623
  },
22528
22624
  "required": [
@@ -22542,7 +22638,8 @@ export const state = {
22542
22638
  "description",
22543
22639
  "iconUrl",
22544
22640
  "readmeUrl",
22545
- "public"
22641
+ "public",
22642
+ "visibility"
22546
22643
  ],
22547
22644
  "additionalProperties": false
22548
22645
  }