@meshmakers/octo-services 3.4.210 → 3.4.220
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.
package/package.json
CHANGED
|
@@ -210,6 +210,8 @@ interface DiagnosticsModel {
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
interface ClientDto {
|
|
213
|
+
/** Runtime ID of the client entity. Read-only; used to identify the client as a group member. */
|
|
214
|
+
rtId?: string;
|
|
213
215
|
isEnabled: boolean;
|
|
214
216
|
clientId: string;
|
|
215
217
|
clientName: string;
|
|
@@ -282,6 +284,7 @@ interface GroupDto {
|
|
|
282
284
|
roleIds: string[];
|
|
283
285
|
memberUserIds: string[];
|
|
284
286
|
memberExternalUserIds: string[];
|
|
287
|
+
memberClientIds: string[];
|
|
285
288
|
memberGroupIds: string[];
|
|
286
289
|
}
|
|
287
290
|
interface CreateGroupDto {
|
|
@@ -51141,6 +51144,10 @@ declare class IdentityService {
|
|
|
51141
51144
|
updateUserRoles(userName: string, roles: RoleDto[]): Promise<void>;
|
|
51142
51145
|
addUserToRole(userName: string, roleName: string): Promise<void>;
|
|
51143
51146
|
removeRoleFromUser(userName: string, roleName: string): Promise<void>;
|
|
51147
|
+
getClientRoles(clientId: string): Promise<string[] | null>;
|
|
51148
|
+
updateClientRoles(clientId: string, roleIds: string[]): Promise<void>;
|
|
51149
|
+
addClientToRole(clientId: string, roleName: string): Promise<void>;
|
|
51150
|
+
removeRoleFromClient(clientId: string, roleName: string): Promise<void>;
|
|
51144
51151
|
mergeUsers(targetUserName: string, sourceUserName: string): Promise<void>;
|
|
51145
51152
|
resetPassword(userName: string, password: string): Promise<unknown>;
|
|
51146
51153
|
getClients(skip: number, take: number): Promise<PagedResultDto<ClientDto> | null>;
|
|
@@ -51200,6 +51207,8 @@ declare class IdentityService {
|
|
|
51200
51207
|
updateGroupRoles(rtId: string, roleIds: string[]): Promise<void>;
|
|
51201
51208
|
addUserToGroup(rtId: string, userId: string): Promise<void>;
|
|
51202
51209
|
removeUserFromGroup(rtId: string, userId: string): Promise<void>;
|
|
51210
|
+
addClientToGroup(rtId: string, clientId: string): Promise<void>;
|
|
51211
|
+
removeClientFromGroup(rtId: string, clientId: string): Promise<void>;
|
|
51203
51212
|
addGroupToGroup(rtId: string, childGroupId: string): Promise<void>;
|
|
51204
51213
|
removeGroupFromGroup(rtId: string, childGroupId: string): Promise<void>;
|
|
51205
51214
|
private getSystemTenantBaseUrl;
|