@botpress/api 0.37.0 → 0.37.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 +11 -1
- package/dist/src/gen/state.d.ts +8 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +11 -1
package/dist/index.js
CHANGED
|
@@ -292107,6 +292107,14 @@ var state = {
|
|
|
292107
292107
|
"type": "string",
|
|
292108
292108
|
"description": "File ID"
|
|
292109
292109
|
},
|
|
292110
|
+
"key": {
|
|
292111
|
+
"type": "string",
|
|
292112
|
+
"description": "Unique key for the file. Must be unique across the bot (and the integration, when applicable)."
|
|
292113
|
+
},
|
|
292114
|
+
"contentType": {
|
|
292115
|
+
"type": "string",
|
|
292116
|
+
"description": "MIME type of the file's content"
|
|
292117
|
+
},
|
|
292110
292118
|
"tags": {
|
|
292111
292119
|
"type": "object",
|
|
292112
292120
|
"additionalProperties": {
|
|
@@ -292126,6 +292134,8 @@ var state = {
|
|
|
292126
292134
|
},
|
|
292127
292135
|
"required": [
|
|
292128
292136
|
"id",
|
|
292137
|
+
"key",
|
|
292138
|
+
"contentType",
|
|
292129
292139
|
"tags",
|
|
292130
292140
|
"createdAt",
|
|
292131
292141
|
"updatedAt"
|
|
@@ -293153,7 +293163,7 @@ var state = {
|
|
|
293153
293163
|
"title": "Botpress API",
|
|
293154
293164
|
"description": "API for Botpress Cloud",
|
|
293155
293165
|
"server": "https://api.botpress.cloud",
|
|
293156
|
-
"version": "0.37.
|
|
293166
|
+
"version": "0.37.1",
|
|
293157
293167
|
"prefix": "v1"
|
|
293158
293168
|
},
|
|
293159
293169
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -8799,6 +8799,14 @@ export declare const state: {
|
|
|
8799
8799
|
type: "string";
|
|
8800
8800
|
description: string;
|
|
8801
8801
|
};
|
|
8802
|
+
key: {
|
|
8803
|
+
type: "string";
|
|
8804
|
+
description: string;
|
|
8805
|
+
};
|
|
8806
|
+
contentType: {
|
|
8807
|
+
type: "string";
|
|
8808
|
+
description: string;
|
|
8809
|
+
};
|
|
8802
8810
|
tags: {
|
|
8803
8811
|
type: "object";
|
|
8804
8812
|
additionalProperties: {
|