@botpress/api 1.3.1 → 1.4.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 +93 -42
- package/dist/src/gen/admin/state.d.ts +18 -2
- package/dist/src/gen/files/state.d.ts +4 -0
- package/dist/src/gen/runtime/state.d.ts +4 -0
- package/dist/src/gen/state.d.ts +18 -2
- package/dist/src/gen/tables/state.d.ts +4 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +33 -15
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +9 -4
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +9 -4
- package/src/gen/state.ts +33 -15
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +9 -4
package/src/gen/files/state.ts
CHANGED
|
@@ -1579,7 +1579,7 @@ export const state = {
|
|
|
1579
1579
|
"title": "Botpress API",
|
|
1580
1580
|
"description": "API for Botpress Cloud",
|
|
1581
1581
|
"server": "https://api.botpress.cloud",
|
|
1582
|
-
"version": "1.
|
|
1582
|
+
"version": "1.4.0",
|
|
1583
1583
|
"prefix": "v1"
|
|
1584
1584
|
},
|
|
1585
1585
|
"errors": [
|
|
@@ -1870,7 +1870,7 @@ export const state = {
|
|
|
1870
1870
|
},
|
|
1871
1871
|
"public": {
|
|
1872
1872
|
"type": "boolean",
|
|
1873
|
-
"description": "
|
|
1873
|
+
"description": "Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
1874
1874
|
},
|
|
1875
1875
|
"verificationStatus": {
|
|
1876
1876
|
"type": "string",
|
|
@@ -2883,7 +2883,7 @@ export const state = {
|
|
|
2883
2883
|
},
|
|
2884
2884
|
"public": {
|
|
2885
2885
|
"type": "boolean",
|
|
2886
|
-
"description": "
|
|
2886
|
+
"description": "Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
|
|
2887
2887
|
},
|
|
2888
2888
|
"verificationStatus": {
|
|
2889
2889
|
"type": "string",
|
|
@@ -3460,6 +3460,10 @@ export const state = {
|
|
|
3460
3460
|
"readmeUrl": {
|
|
3461
3461
|
"type": "string",
|
|
3462
3462
|
"description": "URL of the readme of the plugin. This is the readme that will be displayed in the UI"
|
|
3463
|
+
},
|
|
3464
|
+
"public": {
|
|
3465
|
+
"type": "boolean",
|
|
3466
|
+
"description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
|
|
3463
3467
|
}
|
|
3464
3468
|
},
|
|
3465
3469
|
"required": [
|
|
@@ -3478,7 +3482,8 @@ export const state = {
|
|
|
3478
3482
|
"title",
|
|
3479
3483
|
"description",
|
|
3480
3484
|
"iconUrl",
|
|
3481
|
-
"readmeUrl"
|
|
3485
|
+
"readmeUrl",
|
|
3486
|
+
"public"
|
|
3482
3487
|
],
|
|
3483
3488
|
"additionalProperties": false
|
|
3484
3489
|
}
|