/** * Entitlement name * * @public */ export type IEntitlementsName = "CacheStrategy" | "Contract" | "CustomTheming" | "ExtraCache" | "PdfExports" | "Tier" | "UiLocalization" | "UserCount" | "WhiteLabeling" | "UnlimitedUsers" | "UnlimitedWorkspaces" | "WorkspaceCount" | "Hipaa" | "DailyAlertActionCount" | "UnlimitedDailyAlertActions" | "UserTelemetryDisabled" | "AutomationCount" | "UnlimitedAutomations" | "AutomationRecipientCount" | "UnlimitedAutomationRecipients" | "DailyScheduledActionCount" | "UnlimitedDailyScheduledActions" | "ScheduledActionMinimumRecurrenceMinutes" | "FederatedIdentityManagement" | "AuditLogging" | "ControlledFeatureRollout" | "ManagedIdpUserCount" | "AiLake" | "AiModule" | "AiQueryLimit" | "AiKnowledgeStorageLimit" | "AiAgentLimit"; /** * Entitlement descriptor * * @public */ export interface IEntitlementDescriptor { /** * License entitlement name */ name: IEntitlementsName; /** * Optional value provided for the entitlement, for example workspace or user counts * for the respective entitlement names */ value?: string; /** * Expiration date string of the entitlement returned as YYYY-MM-DD, used for * example with"Contract" entitlement */ expiry?: string; } //# sourceMappingURL=index.d.ts.map