@5minds/processcube_engine
Version:
The ProcessCube Engine. Stores and executes BPMNs.
19 lines (18 loc) • 490 B
TypeScript
import { Identity } from '@5minds/processcube_engine_sdk';
export type InternalIdentity = Identity & {
/**
* Optional. A list of claims granted to the identity.
*/
claims?: {
[claimName: string]: any;
};
originUserId?: string;
/**
* Optional. The name of the user to which this identiy belongs.
*/
userName?: string;
/**
* Optional. The email address of the user to which this identiy belongs.
*/
userEmail?: string;
};