@botpress/api 0.68.2 → 0.68.3
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 +4 -2
- package/dist/src/gen/state.d.ts +2 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +4 -2
package/dist/index.js
CHANGED
|
@@ -290734,7 +290734,8 @@ var state = {
|
|
|
290734
290734
|
"secrets": {
|
|
290735
290735
|
"type": "object",
|
|
290736
290736
|
"additionalProperties": {
|
|
290737
|
-
"type": "string"
|
|
290737
|
+
"type": "string",
|
|
290738
|
+
"maxLength": 2e4
|
|
290738
290739
|
},
|
|
290739
290740
|
"description": "Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing."
|
|
290740
290741
|
},
|
|
@@ -291308,6 +291309,7 @@ var state = {
|
|
|
291308
291309
|
"type": "object",
|
|
291309
291310
|
"additionalProperties": {
|
|
291310
291311
|
"type": "string",
|
|
291312
|
+
"maxLength": 2e4,
|
|
291311
291313
|
"nullable": true
|
|
291312
291314
|
},
|
|
291313
291315
|
"description": "Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing."
|
|
@@ -296129,7 +296131,7 @@ var state = {
|
|
|
296129
296131
|
"title": "Botpress API",
|
|
296130
296132
|
"description": "API for Botpress Cloud",
|
|
296131
296133
|
"server": "https://api.botpress.cloud",
|
|
296132
|
-
"version": "0.68.
|
|
296134
|
+
"version": "0.68.3",
|
|
296133
296135
|
"prefix": "v1"
|
|
296134
296136
|
},
|
|
296135
296137
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -7616,6 +7616,7 @@ export declare const state: {
|
|
|
7616
7616
|
type: "object";
|
|
7617
7617
|
additionalProperties: {
|
|
7618
7618
|
type: "string";
|
|
7619
|
+
maxLength: number;
|
|
7619
7620
|
};
|
|
7620
7621
|
description: string;
|
|
7621
7622
|
};
|
|
@@ -8148,6 +8149,7 @@ export declare const state: {
|
|
|
8148
8149
|
type: "object";
|
|
8149
8150
|
additionalProperties: {
|
|
8150
8151
|
type: "string";
|
|
8152
|
+
maxLength: number;
|
|
8151
8153
|
nullable: true;
|
|
8152
8154
|
};
|
|
8153
8155
|
description: string;
|