mirror of
https://github.com/immich-app/immich.git
synced 2026-05-23 07:22:31 -04:00
fix: null validation (#25891)
This commit is contained in:
@@ -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