@springtree/eva-services-core-management 3.0.0-beta.36 → 3.0.0-beta.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14212,6 +14212,17 @@ export interface CreateEmployeeUser<ID_TYPE = string> {
|
|
|
14212
14212
|
* Entity type: Role
|
|
14213
14213
|
*/
|
|
14214
14214
|
RoleID?: ID_TYPE;
|
|
14215
|
+
UserRoles?: UsersEmployeesCreateEmployeeUser_UserRole<ID_TYPE>[];
|
|
14216
|
+
}
|
|
14217
|
+
export interface UsersEmployeesCreateEmployeeUser_UserRole<ID_TYPE = string> {
|
|
14218
|
+
/**
|
|
14219
|
+
* Entity type: OrganizationUnit
|
|
14220
|
+
*/
|
|
14221
|
+
OrganizationUnitID: ID_TYPE;
|
|
14222
|
+
/**
|
|
14223
|
+
* Entity type: Role
|
|
14224
|
+
*/
|
|
14225
|
+
RoleID: ID_TYPE;
|
|
14215
14226
|
}
|
|
14216
14227
|
export interface CreateEmployeeUserResponse<ID_TYPE = string> {
|
|
14217
14228
|
Error?: ServiceError<ID_TYPE>;
|