string tuple

This commit is contained in:
mertalev
2025-05-05 10:33:48 -04:00
parent 21bbf2f5e2
commit 71cc045405
12 changed files with 21 additions and 127 deletions

View File

@@ -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": {

View File

@@ -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 = {