/** * @public * @enum */ export declare const ImageSetState: { readonly ACTIVE: "ACTIVE"; readonly DELETED: "DELETED"; readonly LOCKED: "LOCKED"; }; /** * @public */ export type ImageSetState = (typeof ImageSetState)[keyof typeof ImageSetState]; /** * @public * @enum */ export declare const ImageSetWorkflowStatus: { readonly COPIED: "COPIED"; readonly COPYING: "COPYING"; readonly COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS"; readonly COPY_FAILED: "COPY_FAILED"; readonly CREATED: "CREATED"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly IMPORTED: "IMPORTED"; readonly IMPORTING: "IMPORTING"; readonly IMPORT_FAILED: "IMPORT_FAILED"; readonly UPDATED: "UPDATED"; readonly UPDATE_FAILED: "UPDATE_FAILED"; readonly UPDATING: "UPDATING"; readonly UPDATING_FOR_STUDY_CONSISTENCY: "UPDATING_FOR_STUDY_CONSISTENCY"; }; /** * @public */ export type ImageSetWorkflowStatus = (typeof ImageSetWorkflowStatus)[keyof typeof ImageSetWorkflowStatus]; /** * @public * @enum */ export declare const LosslessStorageFormat: { readonly HTJ2K: "HTJ2K"; readonly JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS"; }; /** * @public */ export type LosslessStorageFormat = (typeof LosslessStorageFormat)[keyof typeof LosslessStorageFormat]; /** * @public * @enum */ export declare const DatastoreStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; }; /** * @public */ export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus]; /** * @public * @enum */ export declare const JobStatus: { readonly COMPLETED: "COMPLETED"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus]; /** * @public * @enum */ export declare const StorageTier: { /** * Archive instant access storage tier for image sets that are accessed infrequently */ readonly ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS"; /** * Frequent access storage tier for image sets that are accessed regularly */ readonly FREQUENT_ACCESS: "FREQUENT_ACCESS"; }; /** * @public */ export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier]; /** * @public * @enum */ export declare const Operator: { readonly BETWEEN: "BETWEEN"; readonly EQUAL: "EQUAL"; }; /** * @public */ export type Operator = (typeof Operator)[keyof typeof Operator]; /** * @public * @enum */ export declare const SortField: { readonly DICOMStudyDateAndTime: "DICOMStudyDateAndTime"; readonly createdAt: "createdAt"; readonly updatedAt: "updatedAt"; }; /** * @public */ export type SortField = (typeof SortField)[keyof typeof SortField]; /** * @public * @enum */ export declare const SortOrder: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; /** * @public */ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];