@epilot/file-client 1.20.0 → 1.20.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/openapi.d.ts +9 -0
- package/dist/openapi.json +12 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -303,6 +303,15 @@ declare namespace Components {
|
|
|
303
303
|
* 0
|
|
304
304
|
*/
|
|
305
305
|
order?: number;
|
|
306
|
+
/**
|
|
307
|
+
* List of purpose slugs where the collection is enabled. If empty, enabled for all.
|
|
308
|
+
* example:
|
|
309
|
+
* [
|
|
310
|
+
* "purpose:9eefcb98-93cf-4c5b-a040-f1d26d57c177",
|
|
311
|
+
* "purpose:5c544c09-a691-43ed-a7fa-0a8b44b5b161"
|
|
312
|
+
* ]
|
|
313
|
+
*/
|
|
314
|
+
enabled_locations?: string[];
|
|
306
315
|
/**
|
|
307
316
|
* Timestamp when the collection was created
|
|
308
317
|
* example:
|
package/dist/openapi.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "File API",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.6.0",
|
|
6
6
|
"description": "Upload and manage epilot Files\n\n## Changelog\n<a href=\"changelog\">View API Changelog</a>\n"
|
|
7
7
|
},
|
|
8
8
|
"tags": [
|
|
@@ -2010,6 +2010,17 @@
|
|
|
2010
2010
|
"description": "Display order for the collection",
|
|
2011
2011
|
"example": 0
|
|
2012
2012
|
},
|
|
2013
|
+
"enabled_locations": {
|
|
2014
|
+
"description": "List of purpose slugs where the collection is enabled. If empty, enabled for all.",
|
|
2015
|
+
"type": "array",
|
|
2016
|
+
"items": {
|
|
2017
|
+
"type": "string"
|
|
2018
|
+
},
|
|
2019
|
+
"example": [
|
|
2020
|
+
"purpose:9eefcb98-93cf-4c5b-a040-f1d26d57c177",
|
|
2021
|
+
"purpose:5c544c09-a691-43ed-a7fa-0a8b44b5b161"
|
|
2022
|
+
]
|
|
2023
|
+
},
|
|
2013
2024
|
"created_at": {
|
|
2014
2025
|
"type": "string",
|
|
2015
2026
|
"format": "date-time",
|