@epilot/file-client 1.11.0 → 1.12.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/openapi.d.ts +6 -0
- package/dist/openapi.json +7 -1
- package/package.json +2 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -286,6 +286,12 @@ declare namespace Components {
|
|
|
286
286
|
* application/pdf
|
|
287
287
|
*/
|
|
288
288
|
mime_type?: string;
|
|
289
|
+
/**
|
|
290
|
+
* Used to index the file at the storage layer, which helps when browsing for this file
|
|
291
|
+
* example:
|
|
292
|
+
* 2f6a377c8e78
|
|
293
|
+
*/
|
|
294
|
+
index_tag?: string;
|
|
289
295
|
/**
|
|
290
296
|
* Allows passing in custom metadata for the file, expects key-value pairs of string type
|
|
291
297
|
* example:
|
package/dist/openapi.json
CHANGED
|
@@ -1071,6 +1071,12 @@
|
|
|
1071
1071
|
"example": "application/pdf",
|
|
1072
1072
|
"default": "application/octet-stream"
|
|
1073
1073
|
},
|
|
1074
|
+
"index_tag": {
|
|
1075
|
+
"type": "string",
|
|
1076
|
+
"example": "2f6a377c8e78",
|
|
1077
|
+
"maxLength": 64,
|
|
1078
|
+
"description": "Used to index the file at the storage layer, which helps when browsing for this file"
|
|
1079
|
+
},
|
|
1074
1080
|
"metadata": {
|
|
1075
1081
|
"type": "object",
|
|
1076
1082
|
"additionalProperties": {
|
|
@@ -1421,4 +1427,4 @@
|
|
|
1421
1427
|
"url": "https://file.sls.epilot.io"
|
|
1422
1428
|
}
|
|
1423
1429
|
]
|
|
1424
|
-
}
|
|
1430
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/file-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "Client library for the epilot File API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"webpack": "^5.18.0",
|
|
71
71
|
"webpack-cli": "^4.4.0"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "59c5ea8db9845622bc32845f17321467d73908d9"
|
|
74
74
|
}
|