@botpress/api 0.38.3 → 0.39.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 +8 -3
- 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 +8 -3
package/dist/index.js
CHANGED
|
@@ -292050,7 +292050,7 @@ var state = {
|
|
|
292050
292050
|
"expiresAt": {
|
|
292051
292051
|
"type": "string",
|
|
292052
292052
|
"format": "date-time",
|
|
292053
|
-
"description": "Expiry timestamp in ISO 8601 format with UTC timezone. After expiry, the File will be deleted. Must be in the future. Cannot be more than
|
|
292053
|
+
"description": "Expiry timestamp in ISO 8601 format with UTC timezone. After expiry, the File will be deleted. Must be in the future. Cannot be more than 90 days from now. The value up to minutes is considered. Seconds and milliseconds are ignored."
|
|
292054
292054
|
}
|
|
292055
292055
|
},
|
|
292056
292056
|
"required": [
|
|
@@ -292512,7 +292512,7 @@ var state = {
|
|
|
292512
292512
|
"expiresAt": {
|
|
292513
292513
|
"type": "string",
|
|
292514
292514
|
"format": "date-time",
|
|
292515
|
-
"description": "Expiry timestamp in ISO 8601 format with UTC timezone. After expiry, the File will be deleted. Must be in the future. Cannot be more than
|
|
292515
|
+
"description": "Expiry timestamp in ISO 8601 format with UTC timezone. After expiry, the File will be deleted. Must be in the future. Cannot be more than 90 days from now. The value up to minutes is considered. Seconds and milliseconds are ignored. Omit to keep the existing expiry intact. Set to `null` to remove the expiry.",
|
|
292516
292516
|
"nullable": true
|
|
292517
292517
|
}
|
|
292518
292518
|
},
|
|
@@ -292663,6 +292663,11 @@ var state = {
|
|
|
292663
292663
|
"in": "query",
|
|
292664
292664
|
"type": "integer",
|
|
292665
292665
|
"description": "The maximum number of passages to return."
|
|
292666
|
+
},
|
|
292667
|
+
"includeBreadcrumb": {
|
|
292668
|
+
"in": "query",
|
|
292669
|
+
"type": "boolean",
|
|
292670
|
+
"description": "Prepend a breadcrumb to each passage, containing the title and subtitle(s) the passage belongs to in the file."
|
|
292666
292671
|
}
|
|
292667
292672
|
},
|
|
292668
292673
|
"response": {
|
|
@@ -293780,7 +293785,7 @@ var state = {
|
|
|
293780
293785
|
"title": "Botpress API",
|
|
293781
293786
|
"description": "API for Botpress Cloud",
|
|
293782
293787
|
"server": "https://api.botpress.cloud",
|
|
293783
|
-
"version": "0.
|
|
293788
|
+
"version": "0.39.0",
|
|
293784
293789
|
"prefix": "v1"
|
|
293785
293790
|
},
|
|
293786
293791
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED