2026-05-22 20:55:27 +02:00
|
|
|
"""Domain schemas for user-engine."""
|
|
|
|
|
|
|
|
|
|
from user_engine.domain.models import (
|
|
|
|
|
Account,
|
|
|
|
|
AccountStatus,
|
|
|
|
|
Actor,
|
|
|
|
|
Application,
|
|
|
|
|
ApplicationBinding,
|
|
|
|
|
AttributeDefinition,
|
|
|
|
|
AuditRecord,
|
|
|
|
|
AuthorizationDecision,
|
|
|
|
|
AuthorizationEffect,
|
|
|
|
|
AuthorizationRequest,
|
2026-06-05 16:04:43 +02:00
|
|
|
CanonEntityReference,
|
|
|
|
|
CanonRelationshipReference,
|
2026-05-22 20:55:27 +02:00
|
|
|
Catalog,
|
|
|
|
|
CatalogLifecycle,
|
|
|
|
|
ExternalIdentity,
|
2026-05-22 21:20:19 +02:00
|
|
|
ManagementMode,
|
2026-05-22 20:55:27 +02:00
|
|
|
Membership,
|
|
|
|
|
Mutability,
|
|
|
|
|
OutboxEvent,
|
|
|
|
|
PrincipalType,
|
|
|
|
|
ProfileScope,
|
|
|
|
|
ProfileValue,
|
|
|
|
|
ProjectionType,
|
|
|
|
|
Sensitivity,
|
2026-05-22 21:28:40 +02:00
|
|
|
TenantAccount,
|
2026-05-22 20:55:27 +02:00
|
|
|
User,
|
|
|
|
|
Visibility,
|
2026-05-22 21:20:19 +02:00
|
|
|
new_id,
|
|
|
|
|
utc_now,
|
2026-05-22 20:55:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"Account",
|
|
|
|
|
"AccountStatus",
|
|
|
|
|
"Actor",
|
|
|
|
|
"Application",
|
|
|
|
|
"ApplicationBinding",
|
|
|
|
|
"AttributeDefinition",
|
|
|
|
|
"AuditRecord",
|
|
|
|
|
"AuthorizationDecision",
|
|
|
|
|
"AuthorizationEffect",
|
|
|
|
|
"AuthorizationRequest",
|
2026-06-05 16:04:43 +02:00
|
|
|
"CanonEntityReference",
|
|
|
|
|
"CanonRelationshipReference",
|
2026-05-22 20:55:27 +02:00
|
|
|
"Catalog",
|
|
|
|
|
"CatalogLifecycle",
|
|
|
|
|
"ExternalIdentity",
|
2026-05-22 21:20:19 +02:00
|
|
|
"ManagementMode",
|
2026-05-22 20:55:27 +02:00
|
|
|
"Membership",
|
|
|
|
|
"Mutability",
|
|
|
|
|
"OutboxEvent",
|
|
|
|
|
"PrincipalType",
|
|
|
|
|
"ProfileScope",
|
|
|
|
|
"ProfileValue",
|
|
|
|
|
"ProjectionType",
|
|
|
|
|
"Sensitivity",
|
2026-05-22 21:28:40 +02:00
|
|
|
"TenantAccount",
|
2026-05-22 20:55:27 +02:00
|
|
|
"User",
|
|
|
|
|
"Visibility",
|
2026-05-22 21:20:19 +02:00
|
|
|
"new_id",
|
|
|
|
|
"utc_now",
|
2026-05-22 20:55:27 +02:00
|
|
|
]
|