/** * Creator of notification. */ export declare enum SdPlatformNotificationCreator { /** created by the platform backend itself */ Platform = "platform", /** created due to some action taken by the user, e.g. for type model-transfer-request */ User = "user", /** created by webhook call, typically by a geometry backend system */ Webhook = "webhook" } /** * Level of notification. */ export declare enum SdPlatformNotificationLevel { /** Information level */ Info = "info", /** Warning level */ Warning = "warning", /** Error level */ Error = "error" } /** * Classification of the notification which can be used to show different tabs of notifications to the user in the platform frontend. */ export declare enum SdPlatformNotificationClass { /** Model-related notification */ Model = "model", /** Account-related notification */ Account = "account", /** Organization-related notification */ Organization = "organization", /** Sharing-related notification */ Sharing = "sharing" } /** * Specific type of notification. */ export declare enum SdPlatformNotificationType { ModelTransferRequest = "model-transfer-request", ModelTransferAccept = "model-transfer-accept", ModelTransferDeny = "model-transfer-deny", ModelConfirmed = "model-confirmed", ModelDenied = "model-denied", ModelVisibilityChanged = "model-visibility-changed", ScriptDenied = "script-denied", ScriptConfirmed = "script-confirmed", ComputationFailed = "computation-failed", ExportFailed = "export-failed", CreditLimitWarning = "credit-limit-warning", CreditLimitError = "credit-limit-error", ModelShared = "model-shared", ModelUnshared = "model-unshared", SavedStateShared = "saved-state-shared", SavedStateUnshared = "saved-state-unshared", SavedStateCreated = "saved-state-created", SavedStateDeleted = "saved-state-deleted", OrganizationInvitation = "organization-invitation", OrganizationInvitationAccept = "organization-invitation-accept", OrganizationInvitationBlocked = "organization-invitation-blocked", OrganizationInvitationDeny = "organization-invitation-deny", PluginUpdate = "plugin-update", OrganizationUserSuspended = "organization-user-suspended", /** * Planned maintenance or downtime. */ Maintenance = "maintenance", PlatformFrontendUpdate = "platform-frontend-update", ViewerUpdate = "viewer-update", GeometryBackendUpdate = "geometry-backend-update", PlatformBackendUpdate = "platform-backend-update", /** * Updates about components like SDKs etc. */ GenericUpdate = "generic-update", /** * Used whenever a user's or organization's default backend system gets changed by the platform backend. */ BackendSystemChanged = "backend-system-changed", /** * Common. */ Update = "update", Information = "information" } //# sourceMappingURL=SdPlatformNotificationCommons.d.ts.map