@botpress/api 0.83.0 → 0.84.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 +27 -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 +27 -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
|
},
|
|
@@ -296132,6 +296155,7 @@ var state = {
|
|
|
296132
296155
|
"list",
|
|
296133
296156
|
"table",
|
|
296134
296157
|
"code",
|
|
296158
|
+
"image",
|
|
296135
296159
|
"page"
|
|
296136
296160
|
],
|
|
296137
296161
|
"description": "The subtype of passage, if available."
|
|
@@ -296275,6 +296299,7 @@ var state = {
|
|
|
296275
296299
|
"list",
|
|
296276
296300
|
"table",
|
|
296277
296301
|
"code",
|
|
296302
|
+
"image",
|
|
296278
296303
|
"page"
|
|
296279
296304
|
],
|
|
296280
296305
|
"description": "The subtype of passage, if available."
|
|
@@ -297832,7 +297857,7 @@ var state = {
|
|
|
297832
297857
|
"title": "Botpress API",
|
|
297833
297858
|
"description": "API for Botpress Cloud",
|
|
297834
297859
|
"server": "https://api.botpress.cloud",
|
|
297835
|
-
"version": "0.
|
|
297860
|
+
"version": "0.84.0",
|
|
297836
297861
|
"prefix": "v1"
|
|
297837
297862
|
},
|
|
297838
297863
|
"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
|
};
|