@botpress/api 0.83.0 → 0.83.1
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 +25 -2
- package/dist/src/gen/state.d.ts +19 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +25 -2
package/dist/index.js
CHANGED
|
@@ -294532,6 +294532,25 @@ var state = {
|
|
|
294532
294532
|
"type": "string",
|
|
294533
294533
|
"maxLength": 200,
|
|
294534
294534
|
"description": "Version of the [Plugin](#schema_plugin)"
|
|
294535
|
+
},
|
|
294536
|
+
"title": {
|
|
294537
|
+
"type": "string",
|
|
294538
|
+
"minLength": 1,
|
|
294539
|
+
"maxLength": 64,
|
|
294540
|
+
"description": "Title of the plugin. This is the name that will be displayed in the UI"
|
|
294541
|
+
},
|
|
294542
|
+
"description": {
|
|
294543
|
+
"type": "string",
|
|
294544
|
+
"maxLength": 256,
|
|
294545
|
+
"description": "Description of the plugin. This is the description that will be displayed in the UI"
|
|
294546
|
+
},
|
|
294547
|
+
"iconUrl": {
|
|
294548
|
+
"type": "string",
|
|
294549
|
+
"description": "URL of the icon of the plugin. This is the icon that will be displayed in the UI"
|
|
294550
|
+
},
|
|
294551
|
+
"readmeUrl": {
|
|
294552
|
+
"type": "string",
|
|
294553
|
+
"description": "URL of the readme of the plugin. This is the readme that will be displayed in the UI"
|
|
294535
294554
|
}
|
|
294536
294555
|
},
|
|
294537
294556
|
"required": [
|
|
@@ -294539,7 +294558,11 @@ var state = {
|
|
|
294539
294558
|
"createdAt",
|
|
294540
294559
|
"updatedAt",
|
|
294541
294560
|
"name",
|
|
294542
|
-
"version"
|
|
294561
|
+
"version",
|
|
294562
|
+
"title",
|
|
294563
|
+
"description",
|
|
294564
|
+
"iconUrl",
|
|
294565
|
+
"readmeUrl"
|
|
294543
294566
|
]
|
|
294544
294567
|
}
|
|
294545
294568
|
},
|
|
@@ -297832,7 +297855,7 @@ var state = {
|
|
|
297832
297855
|
"title": "Botpress API",
|
|
297833
297856
|
"description": "API for Botpress Cloud",
|
|
297834
297857
|
"server": "https://api.botpress.cloud",
|
|
297835
|
-
"version": "0.83.
|
|
297858
|
+
"version": "0.83.1",
|
|
297836
297859
|
"prefix": "v1"
|
|
297837
297860
|
},
|
|
297838
297861
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -11096,6 +11096,25 @@ export declare const state: {
|
|
|
11096
11096
|
maxLength: number;
|
|
11097
11097
|
description: string;
|
|
11098
11098
|
};
|
|
11099
|
+
title: {
|
|
11100
|
+
type: "string";
|
|
11101
|
+
minLength: number;
|
|
11102
|
+
maxLength: number;
|
|
11103
|
+
description: string;
|
|
11104
|
+
};
|
|
11105
|
+
description: {
|
|
11106
|
+
type: "string";
|
|
11107
|
+
maxLength: number;
|
|
11108
|
+
description: string;
|
|
11109
|
+
};
|
|
11110
|
+
iconUrl: {
|
|
11111
|
+
type: "string";
|
|
11112
|
+
description: string;
|
|
11113
|
+
};
|
|
11114
|
+
readmeUrl: {
|
|
11115
|
+
type: "string";
|
|
11116
|
+
description: string;
|
|
11117
|
+
};
|
|
11099
11118
|
};
|
|
11100
11119
|
required: string[];
|
|
11101
11120
|
};
|