mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
fix: null validation (#25891)
This commit is contained in:
@@ -15760,7 +15760,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"duplicateId": {
|
||||
"description": "Duplicate asset ID",
|
||||
"description": "Duplicate ID",
|
||||
"nullable": true,
|
||||
"type": "string"
|
||||
},
|
||||
@@ -19038,6 +19038,7 @@
|
||||
"format": "uuid",
|
||||
"type": "string"
|
||||
},
|
||||
"minItems": 1,
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
@@ -19128,6 +19129,7 @@
|
||||
"format": "uuid",
|
||||
"type": "string"
|
||||
},
|
||||
"minItems": 1,
|
||||
"type": "array"
|
||||
},
|
||||
"readAt": {
|
||||
@@ -25069,6 +25071,12 @@
|
||||
"description": "User password",
|
||||
"type": "string"
|
||||
},
|
||||
"pinCode": {
|
||||
"description": "PIN code",
|
||||
"example": "123456",
|
||||
"nullable": true,
|
||||
"type": "string"
|
||||
},
|
||||
"quotaSizeInBytes": {
|
||||
"description": "Storage quota in bytes",
|
||||
"format": "int64",
|
||||
|
||||
@@ -233,6 +233,8 @@ export type UserAdminCreateDto = {
|
||||
notify?: boolean;
|
||||
/** User password */
|
||||
password: string;
|
||||
/** PIN code */
|
||||
pinCode?: string | null;
|
||||
/** Storage quota in bytes */
|
||||
quotaSizeInBytes?: number | null;
|
||||
/** Require password change on next login */
|
||||
@@ -822,7 +824,7 @@ export type AssetBulkUpdateDto = {
|
||||
dateTimeRelative?: number;
|
||||
/** Asset description */
|
||||
description?: string;
|
||||
/** Duplicate asset ID */
|
||||
/** Duplicate ID */
|
||||
duplicateId?: string | null;
|
||||
/** Asset IDs to update */
|
||||
ids: string[];
|
||||
|
||||
Reference in New Issue
Block a user