@botpress/api 0.21.0 → 0.22.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/dist/index.js CHANGED
@@ -279778,8 +279778,7 @@ var state = {
279778
279778
  "x-name": {
279779
279779
  "type": "string",
279780
279780
  "description": "File name",
279781
- "in": "header",
279782
- "required": true
279781
+ "in": "header"
279783
279782
  },
279784
279783
  "x-tags": {
279785
279784
  "type": "string",
@@ -279793,7 +279792,7 @@ var state = {
279793
279792
  },
279794
279793
  "x-index": {
279795
279794
  "type": "boolean",
279796
- "description": 'Set to a value of "true" to index the file in vector storage. Only PDFs, Office documents, and text-based files are currently supported. Note that if a file is indexed, it will count towards the Vector Storage quota of the workspace rather than the File Storage quota.',
279795
+ "description": 'Set to a value of "true" to index the file in vector storage (default: false). Only PDFs, Office documents, and text-based files are currently supported. Note that if a file is indexed, it will count towards the Vector Storage quota of the workspace rather than the File Storage quota.',
279797
279796
  "in": "header"
279798
279797
  },
279799
279798
  "Content-Type": {
@@ -280458,6 +280457,10 @@ var state = {
280458
280457
  "maximum": 30,
280459
280458
  "description": "The 'factor' multiplies the row's data storage limit by 4KB and its quota count, but can only be set at table creation and not modified later. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1."
280460
280459
  },
280460
+ "frozen": {
280461
+ "type": "boolean",
280462
+ "description": 'A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.'
280463
+ },
280461
280464
  "schema": {
280462
280465
  "type": "object",
280463
280466
  "additionalProperties": true,
@@ -280533,6 +280536,10 @@ var state = {
280533
280536
  "maximum": 30,
280534
280537
  "description": "The 'factor' multiplies the row's data storage limit by 4KB and its quota count, but can only be set at table creation and not modified later. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1."
280535
280538
  },
280539
+ "frozen": {
280540
+ "type": "boolean",
280541
+ "description": 'A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.'
280542
+ },
280536
280543
  "schema": {
280537
280544
  "type": "object",
280538
280545
  "additionalProperties": true,
@@ -280651,6 +280658,10 @@ var state = {
280651
280658
  "type": "string",
280652
280659
  "minLength": 1
280653
280660
  },
280661
+ "frozen": {
280662
+ "type": "boolean",
280663
+ "description": 'A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.'
280664
+ },
280654
280665
  "schema": {
280655
280666
  "type": "object",
280656
280667
  "additionalProperties": true,
@@ -281196,7 +281207,7 @@ var state = {
281196
281207
  "title": "Botpress API",
281197
281208
  "description": "API for Botpress Cloud",
281198
281209
  "server": "https://api.botpress.cloud",
281199
- "version": "0.21.0",
281210
+ "version": "0.22.0",
281200
281211
  "prefix": "v1"
281201
281212
  },
281202
281213
  "errors": [
@@ -283299,6 +283310,10 @@ var state = {
283299
283310
  "maximum": 30,
283300
283311
  "description": "The 'factor' multiplies the row's data storage limit by 4KB and its quota count, but can only be set at table creation and not modified later. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1."
283301
283312
  },
283313
+ "frozen": {
283314
+ "type": "boolean",
283315
+ "description": 'A table designated as "frozen" is immutable in terms of its name and schema structure; modifications to its schema or a renaming operation are not permitted. The only action that can be taken on such a table is deletion. The schema established at the time of creation is locked in as the final structure. To implement any changes, the table must be duplicated with the desired alterations.'
283316
+ },
283302
283317
  "schema": {
283303
283318
  "type": "object",
283304
283319
  "properties": {
@@ -7220,7 +7220,6 @@ export declare const state: {
7220
7220
  type: "string";
7221
7221
  description: string;
7222
7222
  in: "header";
7223
- required: true;
7224
7223
  };
7225
7224
  "x-tags": {
7226
7225
  type: "string";
@@ -7823,6 +7822,10 @@ export declare const state: {
7823
7822
  maximum: number;
7824
7823
  description: string;
7825
7824
  };
7825
+ frozen: {
7826
+ type: "boolean";
7827
+ description: string;
7828
+ };
7826
7829
  schema: {
7827
7830
  type: "object";
7828
7831
  additionalProperties: true;
@@ -7891,6 +7894,10 @@ export declare const state: {
7891
7894
  maximum: number;
7892
7895
  description: string;
7893
7896
  };
7897
+ frozen: {
7898
+ type: "boolean";
7899
+ description: string;
7900
+ };
7894
7901
  schema: {
7895
7902
  type: "object";
7896
7903
  additionalProperties: true;
@@ -8001,6 +8008,10 @@ export declare const state: {
8001
8008
  type: "string";
8002
8009
  minLength: number;
8003
8010
  };
8011
+ frozen: {
8012
+ type: "boolean";
8013
+ description: string;
8014
+ };
8004
8015
  schema: {
8005
8016
  type: "object";
8006
8017
  additionalProperties: true;
@@ -10225,6 +10236,10 @@ export declare const state: {
10225
10236
  maximum: number;
10226
10237
  description: string;
10227
10238
  };
10239
+ frozen: {
10240
+ type: "boolean";
10241
+ description: string;
10242
+ };
10228
10243
  schema: {
10229
10244
  type: "object";
10230
10245
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {