@botpress/api 0.19.3 → 0.20.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/src/gen/state.ts CHANGED
@@ -2348,6 +2348,10 @@ export const state = {
2348
2348
  "type": "string",
2349
2349
  "description": "URL of the icon of the integration. This is the icon that will be displayed in the UI"
2350
2350
  },
2351
+ "public": {
2352
+ "type": "boolean",
2353
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
2354
+ },
2351
2355
  "ownerWorkspace": {
2352
2356
  "type": "object",
2353
2357
  "properties": {
@@ -2378,6 +2382,7 @@ export const state = {
2378
2382
  "title",
2379
2383
  "description",
2380
2384
  "iconUrl",
2385
+ "public",
2381
2386
  "ownerWorkspace"
2382
2387
  ]
2383
2388
  }
@@ -2835,6 +2840,10 @@ export const state = {
2835
2840
  "type": "string",
2836
2841
  "description": "URL of the readme of the integration. This is the readme that will be displayed in the UI"
2837
2842
  },
2843
+ "public": {
2844
+ "type": "boolean",
2845
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
2846
+ },
2838
2847
  "secrets": {
2839
2848
  "type": "array",
2840
2849
  "items": {
@@ -2883,6 +2892,7 @@ export const state = {
2883
2892
  "description",
2884
2893
  "iconUrl",
2885
2894
  "readmeUrl",
2895
+ "public",
2886
2896
  "secrets",
2887
2897
  "ownerWorkspace"
2888
2898
  ],
@@ -3335,6 +3345,10 @@ export const state = {
3335
3345
  "type": "string",
3336
3346
  "description": "URL of the readme of the integration. This is the readme that will be displayed in the UI"
3337
3347
  },
3348
+ "public": {
3349
+ "type": "boolean",
3350
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
3351
+ },
3338
3352
  "secrets": {
3339
3353
  "type": "array",
3340
3354
  "items": {
@@ -3383,6 +3397,7 @@ export const state = {
3383
3397
  "description",
3384
3398
  "iconUrl",
3385
3399
  "readmeUrl",
3400
+ "public",
3386
3401
  "secrets",
3387
3402
  "ownerWorkspace"
3388
3403
  ],
@@ -7077,6 +7092,10 @@ export const state = {
7077
7092
  "type": "string",
7078
7093
  "maxLength": 256,
7079
7094
  "description": "Description of the integration. This is the description that will be displayed in the UI"
7095
+ },
7096
+ "public": {
7097
+ "type": "boolean",
7098
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
7080
7099
  }
7081
7100
  },
7082
7101
  "required": [
@@ -7500,6 +7519,10 @@ export const state = {
7500
7519
  "url": {
7501
7520
  "type": "string",
7502
7521
  "description": "URL of the integration; Only available for dev integrations"
7522
+ },
7523
+ "public": {
7524
+ "type": "boolean",
7525
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
7503
7526
  }
7504
7527
  },
7505
7528
  "title": "updateIntegrationBody",
@@ -7602,6 +7625,10 @@ export const state = {
7602
7625
  "iconUrl": {
7603
7626
  "type": "string",
7604
7627
  "description": "URL of the icon of the integration. This is the icon that will be displayed in the UI"
7628
+ },
7629
+ "public": {
7630
+ "type": "boolean",
7631
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
7605
7632
  }
7606
7633
  },
7607
7634
  "required": [
@@ -7612,7 +7639,8 @@ export const state = {
7612
7639
  "updatedAt",
7613
7640
  "title",
7614
7641
  "description",
7615
- "iconUrl"
7642
+ "iconUrl",
7643
+ "public"
7616
7644
  ]
7617
7645
  }
7618
7646
  },
@@ -8528,6 +8556,11 @@ export const state = {
8528
8556
  "description": "Query expressed in natural language to retrieve matching text passages within all files using semantical search.",
8529
8557
  "required": true
8530
8558
  },
8559
+ "contextDepth": {
8560
+ "in": "query",
8561
+ "type": "string",
8562
+ "description": "The number of neighbor passages to prepend and append as surrounding context to the content of each returned passage. Default: 0, Maximum: 10"
8563
+ },
8531
8564
  "limit": {
8532
8565
  "in": "query",
8533
8566
  "type": "string",
@@ -9287,7 +9320,7 @@ export const state = {
9287
9320
  "title": "Botpress API",
9288
9321
  "description": "API for Botpress Cloud",
9289
9322
  "server": "https://api.botpress.cloud",
9290
- "version": "0.19.3",
9323
+ "version": "0.20.0",
9291
9324
  "prefix": "v1"
9292
9325
  },
9293
9326
  "errors": [
@@ -9400,6 +9433,11 @@ export const state = {
9400
9433
  "status": 413,
9401
9434
  "type": "LimitExceeded",
9402
9435
  "description": "The request exceeds the allowed limit. Limits are a hard limit that cannot be increased."
9436
+ },
9437
+ {
9438
+ "status": 400,
9439
+ "type": "BreakingChanges",
9440
+ "description": "Request payload contains breaking changes which is not allowed for this resource without a version increment."
9403
9441
  }
9404
9442
  ],
9405
9443
  "refs": {
@@ -9701,6 +9739,10 @@ export const state = {
9701
9739
  "iconUrl": {
9702
9740
  "type": "string",
9703
9741
  "description": "URL of the icon of the integration. This is the icon that will be displayed in the UI"
9742
+ },
9743
+ "public": {
9744
+ "type": "boolean",
9745
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
9704
9746
  }
9705
9747
  },
9706
9748
  "required": [
@@ -9717,7 +9759,8 @@ export const state = {
9717
9759
  "updatedAt",
9718
9760
  "title",
9719
9761
  "description",
9720
- "iconUrl"
9762
+ "iconUrl",
9763
+ "public"
9721
9764
  ],
9722
9765
  "additionalProperties": false
9723
9766
  },
@@ -10507,6 +10550,10 @@ export const state = {
10507
10550
  "type": "string",
10508
10551
  "description": "URL of the readme of the integration. This is the readme that will be displayed in the UI"
10509
10552
  },
10553
+ "public": {
10554
+ "type": "boolean",
10555
+ "description": "Idicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
10556
+ },
10510
10557
  "secrets": {
10511
10558
  "type": "array",
10512
10559
  "items": {
@@ -10534,6 +10581,7 @@ export const state = {
10534
10581
  "description",
10535
10582
  "iconUrl",
10536
10583
  "readmeUrl",
10584
+ "public",
10537
10585
  "secrets"
10538
10586
  ],
10539
10587
  "additionalProperties": false