generated from coulomb/repo-seed
124 lines
2.6 KiB
Python
124 lines
2.6 KiB
Python
"""Domain schemas for user-engine."""
|
|
|
|
from user_engine.domain.models import (
|
|
AccessControlFact,
|
|
AccessMembershipRequirement,
|
|
AccessProfile,
|
|
AccessScopeType,
|
|
Account,
|
|
AccountStatus,
|
|
ActiveAccessContext,
|
|
Actor,
|
|
Application,
|
|
ApplicationBinding,
|
|
AttributeDefinition,
|
|
AuditRecord,
|
|
AuthorizationDecision,
|
|
AuthorizationEffect,
|
|
AuthorizationRequest,
|
|
CanonEntityReference,
|
|
CanonRelationshipReference,
|
|
Catalog,
|
|
CatalogLifecycle,
|
|
ExternalIdentity,
|
|
FactorVerification,
|
|
FamilyDataspaceRequest,
|
|
FamilyInvitation,
|
|
FamilyMemberSpec,
|
|
FamilyRole,
|
|
IdentityFactor,
|
|
IdentityFactorType,
|
|
InvitationStatus,
|
|
ManagementMode,
|
|
Membership,
|
|
Mutability,
|
|
OnboardingJourney,
|
|
OnboardingJourneyStatus,
|
|
OnboardingStep,
|
|
OnboardingStepStatus,
|
|
OnboardingTask,
|
|
OnboardingTriggerType,
|
|
OutboxEvent,
|
|
PrincipalType,
|
|
PreparedAccount,
|
|
PreparedAccountStatus,
|
|
PreparedEntitlement,
|
|
PreparedEntitlementKind,
|
|
PreparedFactorRequirement,
|
|
ProfileScope,
|
|
ProfileValue,
|
|
ProjectionType,
|
|
RegistrationSession,
|
|
RegistrationStatus,
|
|
Sensitivity,
|
|
SubsystemHandoff,
|
|
TenantAccount,
|
|
User,
|
|
Visibility,
|
|
WelcomeProtocol,
|
|
WelcomeProtocolStep,
|
|
new_id,
|
|
utc_now,
|
|
)
|
|
|
|
__all__ = [
|
|
"Account",
|
|
"AccessControlFact",
|
|
"AccessMembershipRequirement",
|
|
"AccessProfile",
|
|
"AccessScopeType",
|
|
"AccountStatus",
|
|
"ActiveAccessContext",
|
|
"Actor",
|
|
"Application",
|
|
"ApplicationBinding",
|
|
"AttributeDefinition",
|
|
"AuditRecord",
|
|
"AuthorizationDecision",
|
|
"AuthorizationEffect",
|
|
"AuthorizationRequest",
|
|
"CanonEntityReference",
|
|
"CanonRelationshipReference",
|
|
"Catalog",
|
|
"CatalogLifecycle",
|
|
"ExternalIdentity",
|
|
"FactorVerification",
|
|
"FamilyDataspaceRequest",
|
|
"FamilyInvitation",
|
|
"FamilyMemberSpec",
|
|
"FamilyRole",
|
|
"IdentityFactor",
|
|
"IdentityFactorType",
|
|
"InvitationStatus",
|
|
"ManagementMode",
|
|
"Membership",
|
|
"Mutability",
|
|
"OnboardingJourney",
|
|
"OnboardingJourneyStatus",
|
|
"OnboardingStep",
|
|
"OnboardingStepStatus",
|
|
"OnboardingTask",
|
|
"OnboardingTriggerType",
|
|
"OutboxEvent",
|
|
"PrincipalType",
|
|
"PreparedAccount",
|
|
"PreparedAccountStatus",
|
|
"PreparedEntitlement",
|
|
"PreparedEntitlementKind",
|
|
"PreparedFactorRequirement",
|
|
"ProfileScope",
|
|
"ProfileValue",
|
|
"ProjectionType",
|
|
"RegistrationSession",
|
|
"RegistrationStatus",
|
|
"Sensitivity",
|
|
"SubsystemHandoff",
|
|
"TenantAccount",
|
|
"User",
|
|
"Visibility",
|
|
"WelcomeProtocol",
|
|
"WelcomeProtocolStep",
|
|
"new_id",
|
|
"utc_now",
|
|
]
|