generated from coulomb/repo-seed
66 lines
1.2 KiB
Python
66 lines
1.2 KiB
Python
"""Domain schemas for user-engine."""
|
|
|
|
from user_engine.domain.models import (
|
|
Account,
|
|
AccountStatus,
|
|
Actor,
|
|
Application,
|
|
ApplicationBinding,
|
|
AttributeDefinition,
|
|
AuditRecord,
|
|
AuthorizationDecision,
|
|
AuthorizationEffect,
|
|
AuthorizationRequest,
|
|
CanonEntityReference,
|
|
CanonRelationshipReference,
|
|
Catalog,
|
|
CatalogLifecycle,
|
|
ExternalIdentity,
|
|
ManagementMode,
|
|
Membership,
|
|
Mutability,
|
|
OutboxEvent,
|
|
PrincipalType,
|
|
ProfileScope,
|
|
ProfileValue,
|
|
ProjectionType,
|
|
Sensitivity,
|
|
TenantAccount,
|
|
User,
|
|
Visibility,
|
|
new_id,
|
|
utc_now,
|
|
)
|
|
|
|
__all__ = [
|
|
"Account",
|
|
"AccountStatus",
|
|
"Actor",
|
|
"Application",
|
|
"ApplicationBinding",
|
|
"AttributeDefinition",
|
|
"AuditRecord",
|
|
"AuthorizationDecision",
|
|
"AuthorizationEffect",
|
|
"AuthorizationRequest",
|
|
"CanonEntityReference",
|
|
"CanonRelationshipReference",
|
|
"Catalog",
|
|
"CatalogLifecycle",
|
|
"ExternalIdentity",
|
|
"ManagementMode",
|
|
"Membership",
|
|
"Mutability",
|
|
"OutboxEvent",
|
|
"PrincipalType",
|
|
"ProfileScope",
|
|
"ProfileValue",
|
|
"ProjectionType",
|
|
"Sensitivity",
|
|
"TenantAccount",
|
|
"User",
|
|
"Visibility",
|
|
"new_id",
|
|
"utc_now",
|
|
]
|