Compare commits

...

1 Commits

Author SHA1 Message Date
Mees Frensel 714f6d4184 fix: update datetimeRelative description to number minutes instead of seconds 2026-06-16 11:55:06 +02:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ class AssetBulkUpdateDto {
///
Optional<String?> dateTimeOriginal;
/// Relative time offset in seconds
/// Relative time offset in minutes
///
/// Minimum value: -9007199254740991
/// Maximum value: 9007199254740991
+1 -1
View File
@@ -16868,7 +16868,7 @@
"type": "string"
},
"dateTimeRelative": {
"description": "Relative time offset in seconds",
"description": "Relative time offset in minutes",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
+1 -1
View File
@@ -673,7 +673,7 @@ export type AssetMediaResponseDto = {
export type AssetBulkUpdateDto = {
/** Original date and time */
dateTimeOriginal?: string;
/** Relative time offset in seconds */
/** Relative time offset in minutes */
dateTimeRelative?: number;
/** Asset description */
description?: string;
+1 -1
View File
@@ -41,7 +41,7 @@ const UpdateAssetBaseSchema = z
const AssetBulkUpdateBaseSchema = UpdateAssetBaseSchema.extend({
ids: z.array(z.uuidv4()).describe('Asset IDs to update'),
duplicateId: z.string().nullish().describe('Duplicate ID'),
dateTimeRelative: z.int().optional().describe('Relative time offset in seconds'),
dateTimeRelative: z.int().optional().describe('Relative time offset in minutes'),
timeZone: z.string().optional().describe('Time zone (IANA timezone)'),
});