FileStorageProviderSchema: ZodObject<{
    ClientDriverKey: ZodString;
    Description: ZodNullable<ZodString>;
    ID: ZodString;
    IsActive: ZodBoolean;
    Name: ZodString;
    Priority: ZodNumber;
    ServerDriverKey: ZodString;
    SupportsSearch: ZodBoolean;
    __mj_CreatedAt: ZodDate;
    __mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
    ClientDriverKey?: string;
    Description?: string;
    ID?: string;
    IsActive?: boolean;
    Name?: string;
    Priority?: number;
    ServerDriverKey?: string;
    SupportsSearch?: boolean;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}, {
    ClientDriverKey?: string;
    Description?: string;
    ID?: string;
    IsActive?: boolean;
    Name?: string;
    Priority?: number;
    ServerDriverKey?: string;
    SupportsSearch?: boolean;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}> = ...

zod schema definition for the entity File Storage Providers

Type declaration

  • ClientDriverKey: ZodString
  • Description: ZodNullable<ZodString>
  • ID: ZodString
  • IsActive: ZodBoolean
  • Name: ZodString
  • Priority: ZodNumber
  • ServerDriverKey: ZodString
  • SupportsSearch: ZodBoolean
  • __mj_CreatedAt: ZodDate
  • __mj_UpdatedAt: ZodDate

Type declaration

  • Optional ClientDriverKey?: string
  • Optional Description?: string
  • Optional ID?: string
  • Optional IsActive?: boolean
  • Optional Name?: string
  • Optional Priority?: number
  • Optional ServerDriverKey?: string
  • Optional SupportsSearch?: boolean
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date

Type declaration

  • Optional ClientDriverKey?: string
  • Optional Description?: string
  • Optional ID?: string
  • Optional IsActive?: boolean
  • Optional Name?: string
  • Optional Priority?: number
  • Optional ServerDriverKey?: string
  • Optional SupportsSearch?: boolean
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date