@epilot/file-client 1.20.1 → 1.21.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 +21 -1
- package/dist/openapi.json +22 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -234,6 +234,14 @@ declare namespace Components {
|
|
|
234
234
|
* Whether the collection is starred / favorited
|
|
235
235
|
*/
|
|
236
236
|
starred?: boolean;
|
|
237
|
+
/**
|
|
238
|
+
* List of location slugs where the collection is enabled. If empty, enabled for all.
|
|
239
|
+
*/
|
|
240
|
+
enabled_locations?: string[];
|
|
241
|
+
/**
|
|
242
|
+
* List of purpose IDs where the collection is enabled. If empty, enabled for all.
|
|
243
|
+
*/
|
|
244
|
+
enabled_purposes?: string[];
|
|
237
245
|
}
|
|
238
246
|
/**
|
|
239
247
|
* Request body for creating a file collection
|
|
@@ -251,6 +259,14 @@ declare namespace Components {
|
|
|
251
259
|
* Whether the collection is starred / favorited
|
|
252
260
|
*/
|
|
253
261
|
starred?: boolean;
|
|
262
|
+
/**
|
|
263
|
+
* List of location slugs where the collection is enabled. If empty, enabled for all.
|
|
264
|
+
*/
|
|
265
|
+
enabled_locations?: string[];
|
|
266
|
+
/**
|
|
267
|
+
* List of purpose IDs where the collection is enabled. If empty, enabled for all.
|
|
268
|
+
*/
|
|
269
|
+
enabled_purposes?: string[];
|
|
254
270
|
}
|
|
255
271
|
/**
|
|
256
272
|
* Generated uuid for a file collection
|
|
@@ -303,6 +319,10 @@ declare namespace Components {
|
|
|
303
319
|
* 0
|
|
304
320
|
*/
|
|
305
321
|
order?: number;
|
|
322
|
+
/**
|
|
323
|
+
* List of location slugs where the collection is enabled. If empty, enabled for all.
|
|
324
|
+
*/
|
|
325
|
+
enabled_locations?: string[];
|
|
306
326
|
/**
|
|
307
327
|
* List of purpose slugs where the collection is enabled. If empty, enabled for all.
|
|
308
328
|
* example:
|
|
@@ -311,7 +331,7 @@ declare namespace Components {
|
|
|
311
331
|
* "purpose:5c544c09-a691-43ed-a7fa-0a8b44b5b161"
|
|
312
332
|
* ]
|
|
313
333
|
*/
|
|
314
|
-
|
|
334
|
+
enabled_purposes?: string[];
|
|
315
335
|
/**
|
|
316
336
|
* Timestamp when the collection was created
|
|
317
337
|
* 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.7.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": [
|
|
@@ -2011,6 +2011,13 @@
|
|
|
2011
2011
|
"example": 0
|
|
2012
2012
|
},
|
|
2013
2013
|
"enabled_locations": {
|
|
2014
|
+
"description": "List of location slugs where the collection is enabled. If empty, enabled for all.",
|
|
2015
|
+
"type": "array",
|
|
2016
|
+
"items": {
|
|
2017
|
+
"type": "string"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
"enabled_purposes": {
|
|
2014
2021
|
"description": "List of purpose slugs where the collection is enabled. If empty, enabled for all.",
|
|
2015
2022
|
"type": "array",
|
|
2016
2023
|
"items": {
|
|
@@ -2056,6 +2063,20 @@
|
|
|
2056
2063
|
"type": "boolean",
|
|
2057
2064
|
"description": "Whether the collection is starred / favorited",
|
|
2058
2065
|
"default": false
|
|
2066
|
+
},
|
|
2067
|
+
"enabled_locations": {
|
|
2068
|
+
"description": "List of location slugs where the collection is enabled. If empty, enabled for all.",
|
|
2069
|
+
"type": "array",
|
|
2070
|
+
"items": {
|
|
2071
|
+
"type": "string"
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"enabled_purposes": {
|
|
2075
|
+
"description": "List of purpose IDs where the collection is enabled. If empty, enabled for all.",
|
|
2076
|
+
"type": "array",
|
|
2077
|
+
"items": {
|
|
2078
|
+
"type": "string"
|
|
2079
|
+
}
|
|
2059
2080
|
}
|
|
2060
2081
|
}
|
|
2061
2082
|
},
|