This commit is contained in:
mertalev
2025-05-04 20:12:29 -04:00
parent a3a2ced3a9
commit ef9245487c
7 changed files with 124 additions and 28 deletions
+15 -8
View File
@@ -13645,16 +13645,23 @@
},
"type": "array"
},
"stackCount": {
"items": {
"type": "number"
},
"type": "array"
},
"stackId": {
"stack": {
"description": "The stack ID and stack asset count as a tuple",
"items": {
"items": {
"maxItems": 2,
"minItems": 2,
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"nullable": true,
"type": "string"
"type": "array"
},
"type": "array"
},
+2 -2
View File
@@ -1398,8 +1398,8 @@ export type TimeBucketAssetResponseDto = {
ownerId: string[];
projectionType: (string | null)[];
ratio: number[];
stackCount?: number[];
stackId?: (string | null)[];
/** The stack ID and stack asset count as a tuple */
stack?: ((string | number)[] | null)[];
thumbhash: (string | null)[];
};
export type TimeBucketsResponseDto = {