/** * @public * @enum */ export declare const RelatedItemType: { readonly COMMENT: "Comment"; readonly CONNECT_CASE: "ConnectCase"; readonly CONTACT: "Contact"; readonly CUSTOM: "Custom"; readonly FILE: "File"; readonly SLA: "Sla"; }; /** * @public */ export type RelatedItemType = (typeof RelatedItemType)[keyof typeof RelatedItemType]; /** * @public * @enum */ export declare const AuditEventType: { readonly CASE_CREATED: "Case.Created"; readonly CASE_UPDATED: "Case.Updated"; readonly RELATED_ITEM_CREATED: "RelatedItem.Created"; readonly RELATED_ITEM_DELETED: "RelatedItem.Deleted"; readonly RELATED_ITEM_UPDATED: "RelatedItem.Updated"; }; /** * @public */ export type AuditEventType = (typeof AuditEventType)[keyof typeof AuditEventType]; /** * @public * @enum */ export declare const CommentBodyTextType: { readonly PLAINTEXT: "Text/Plain"; }; /** * @public */ export type CommentBodyTextType = (typeof CommentBodyTextType)[keyof typeof CommentBodyTextType]; /** * @public * @enum */ export declare const SlaType: { readonly CASE_FIELD: "CaseField"; }; /** * @public */ export type SlaType = (typeof SlaType)[keyof typeof SlaType]; /** * @public * @enum */ export declare const SlaStatus: { readonly ACTIVE: "Active"; readonly MET: "Met"; readonly NOT_MET: "NotMet"; readonly OVERDUE: "Overdue"; }; /** * @public */ export type SlaStatus = (typeof SlaStatus)[keyof typeof SlaStatus]; /** * @public * @enum */ export declare const Order: { readonly ASCENDING: "Asc"; readonly DESCENDING: "Desc"; }; /** * @public */ export type Order = (typeof Order)[keyof typeof Order]; /** * @public * @enum */ export declare const RuleType: { readonly FIELD_OPTIONS: "FieldOptions"; readonly HIDDEN: "Hidden"; readonly REQUIRED: "Required"; }; /** * @public */ export type RuleType = (typeof RuleType)[keyof typeof RuleType]; /** * @public * @enum */ export declare const DomainStatus: { readonly ACTIVE: "Active"; readonly CREATION_FAILED: "CreationFailed"; readonly CREATION_IN_PROGRESS: "CreationInProgress"; }; /** * @public */ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus]; /** * @public * @enum */ export declare const SearchAllRelatedItemsSortProperty: { readonly ASSOCIATION_TIME: "AssociationTime"; readonly CASE_ID: "CaseId"; }; /** * @public */ export type SearchAllRelatedItemsSortProperty = (typeof SearchAllRelatedItemsSortProperty)[keyof typeof SearchAllRelatedItemsSortProperty]; /** * @public * @enum */ export declare const FieldNamespace: { readonly CUSTOM: "Custom"; readonly SYSTEM: "System"; }; /** * @public */ export type FieldNamespace = (typeof FieldNamespace)[keyof typeof FieldNamespace]; /** * @public * @enum */ export declare const FieldType: { readonly BOOLEAN: "Boolean"; readonly DATE_TIME: "DateTime"; readonly NUMBER: "Number"; readonly SINGLE_SELECT: "SingleSelect"; readonly TEXT: "Text"; readonly URL: "Url"; readonly USER: "User"; }; /** * @public */ export type FieldType = (typeof FieldType)[keyof typeof FieldType]; /** * @public * @enum */ export declare const TemplateStatus: { readonly ACTIVE: "Active"; readonly INACTIVE: "Inactive"; }; /** * @public */ export type TemplateStatus = (typeof TemplateStatus)[keyof typeof TemplateStatus]; /** * @public * @enum */ export declare const TagPropagationResourceType: { /** * Cases resources created within the domain */ readonly CASES: "Cases"; }; /** * @public */ export type TagPropagationResourceType = (typeof TagPropagationResourceType)[keyof typeof TagPropagationResourceType];