@botpress/api 0.86.0 → 0.87.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 +7 -1
- package/dist/src/gen/state.d.ts +5 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +7 -1
package/dist/index.js
CHANGED
|
@@ -297971,7 +297971,7 @@ var state = {
|
|
|
297971
297971
|
"title": "Botpress API",
|
|
297972
297972
|
"description": "API for Botpress Cloud",
|
|
297973
297973
|
"server": "https://api.botpress.cloud",
|
|
297974
|
-
"version": "0.
|
|
297974
|
+
"version": "0.87.0",
|
|
297975
297975
|
"prefix": "v1"
|
|
297976
297976
|
},
|
|
297977
297977
|
"errors": [
|
|
@@ -300696,6 +300696,11 @@ var state = {
|
|
|
300696
300696
|
"format": "date-time",
|
|
300697
300697
|
"description": "Creation date of the [Message](#schema_message) in ISO 8601 format"
|
|
300698
300698
|
},
|
|
300699
|
+
"updatedAt": {
|
|
300700
|
+
"type": "string",
|
|
300701
|
+
"format": "date-time",
|
|
300702
|
+
"description": "Update date of the [Message](#schema_message) in ISO 8601 format"
|
|
300703
|
+
},
|
|
300699
300704
|
"type": {
|
|
300700
300705
|
"type": "string",
|
|
300701
300706
|
"maxLength": 200,
|
|
@@ -300737,6 +300742,7 @@ var state = {
|
|
|
300737
300742
|
"required": [
|
|
300738
300743
|
"id",
|
|
300739
300744
|
"createdAt",
|
|
300745
|
+
"updatedAt",
|
|
300740
300746
|
"type",
|
|
300741
300747
|
"payload",
|
|
300742
300748
|
"direction",
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -16320,6 +16320,11 @@ export declare const state: {
|
|
|
16320
16320
|
format: string;
|
|
16321
16321
|
description: string;
|
|
16322
16322
|
};
|
|
16323
|
+
updatedAt: {
|
|
16324
|
+
type: "string";
|
|
16325
|
+
format: string;
|
|
16326
|
+
description: string;
|
|
16327
|
+
};
|
|
16323
16328
|
type: {
|
|
16324
16329
|
type: "string";
|
|
16325
16330
|
maxLength: number;
|