All checks were successful
Deploy Development / deploy (push) Successful in 44s
Test Suite / pytest-backend (push) Successful in 1m54s
Test Suite / lint-backend (push) Successful in 2s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 19s
Test Suite / playwright-smoke (push) Successful in 15s
EFS-Tabellen, Registry-Sync und Fields-API ermöglichen archetyp-spezifische Felder; Frontend rendert sie im Profil-Modal per FieldRenderer. Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
636 B
Python
21 lines
636 B
Python
from entity_fields.definitions import FIELD_DEFINITIONS
|
|
from entity_fields.service import (
|
|
get_entity_field_values,
|
|
get_initiative_archetype_key,
|
|
list_field_definitions,
|
|
patch_entity_field_values,
|
|
)
|
|
from entity_fields.sync import sync_entity_field_registry_to_db
|
|
from entity_fields.validation import normalize_field_value, validate_required_fields
|
|
|
|
__all__ = [
|
|
"FIELD_DEFINITIONS",
|
|
"get_entity_field_values",
|
|
"get_initiative_archetype_key",
|
|
"list_field_definitions",
|
|
"normalize_field_value",
|
|
"patch_entity_field_values",
|
|
"sync_entity_field_registry_to_db",
|
|
"validate_required_fields",
|
|
]
|