🚀 Identity features
Identity features are SDK composers, not Express middleware; identitiesService mounts the Identity features with the required stores and drivers.
Inventory
| Feature | Composed schema(s) | Composed route(s) | Purpose |
|---|---|---|---|
getIdentityFeature | getIdentitySchema | getIdentityRoute | Retrieve one administrator-visible identity. |
findIdentitiesFeature | findIdentitySchema | findIdentitiesRoute | List identities with query filtering. |
updateIdentityFeature | updateIdentitySchema | updateIdentityRoute | Update an identity and return its normalized representation. |
deleteIdentityFeature | deleteIdentitySchema | deleteIdentityRoute | Delete an identity. |
lockIdentityFeature | lockIdentitySchema | lockIdentityRoute | Lock an identity. |
unlockIdentityFeature | unlockIdentitySchema | unlockIdentityRoute | Unlock an identity. |
Details
Each feature is mounted by identitiesService. The source definitions below show the exact schema-to-route composition.
getIdentityFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by identitiesService or a compatible custom service context.View complete source
findIdentitiesFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by identitiesService or a compatible custom service context.View complete source
updateIdentityFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by identitiesService or a compatible custom service context.View complete source
deleteIdentityFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by identitiesService or a compatible custom service context.View complete source
lockIdentityFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by identitiesService or a compatible custom service context.View complete source
unlockIdentityFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by identitiesService or a compatible custom service context.View complete source