mirror of
https://github.com/immich-app/immich.git
synced 2026-02-14 12:58:17 +03:00
string tuple
This commit is contained in:
@@ -13646,23 +13646,13 @@
|
||||
"type": "array"
|
||||
},
|
||||
"stack": {
|
||||
"description": "The stack ID and stack asset count as a tuple",
|
||||
"description": "(stack ID, stack asset count) tuple",
|
||||
"items": {
|
||||
"items": {
|
||||
"maxItems": 2,
|
||||
"minItems": 2,
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "number"
|
||||
}
|
||||
]
|
||||
},
|
||||
"nullable": true,
|
||||
"type": "array"
|
||||
"type": "string"
|
||||
},
|
||||
"maxItems": 2,
|
||||
"minItems": 2,
|
||||
"type": "array"
|
||||
},
|
||||
"thumbhash": {
|
||||
|
||||
@@ -1398,8 +1398,8 @@ export type TimeBucketAssetResponseDto = {
|
||||
ownerId: string[];
|
||||
projectionType: (string | null)[];
|
||||
ratio: number[];
|
||||
/** The stack ID and stack asset count as a tuple */
|
||||
stack?: ((string | number)[] | null)[];
|
||||
/** (stack ID, stack asset count) tuple */
|
||||
stack?: (string | null)[];
|
||||
thumbhash: (string | null)[];
|
||||
};
|
||||
export type TimeBucketsResponseDto = {
|
||||
|
||||
Reference in New Issue
Block a user