feat(app): wire dashboard administration flows
This commit is contained in:
@@ -172,6 +172,30 @@ export class IdpRequests {
|
||||
);
|
||||
}
|
||||
|
||||
public get deleteOrganization() {
|
||||
return this.idpClientArg.typedsocket.createTypedRequest<plugins.idpInterfaces.request.IReq_DeleteOrganization>(
|
||||
'deleteOrganization'
|
||||
);
|
||||
}
|
||||
|
||||
public get getOrgRoleDefinitions() {
|
||||
return this.idpClientArg.typedsocket.createTypedRequest<plugins.idpInterfaces.request.IReq_GetOrgRoleDefinitions>(
|
||||
'getOrgRoleDefinitions'
|
||||
);
|
||||
}
|
||||
|
||||
public get upsertOrgRoleDefinition() {
|
||||
return this.idpClientArg.typedsocket.createTypedRequest<plugins.idpInterfaces.request.IReq_UpsertOrgRoleDefinition>(
|
||||
'upsertOrgRoleDefinition'
|
||||
);
|
||||
}
|
||||
|
||||
public get deleteOrgRoleDefinition() {
|
||||
return this.idpClientArg.typedsocket.createTypedRequest<plugins.idpInterfaces.request.IReq_DeleteOrgRoleDefinition>(
|
||||
'deleteOrgRoleDefinition'
|
||||
);
|
||||
}
|
||||
|
||||
// ============================================
|
||||
// Member & Invitation Management
|
||||
// ============================================
|
||||
@@ -242,6 +266,12 @@ export class IdpRequests {
|
||||
);
|
||||
}
|
||||
|
||||
public get updateAppRoleMappings() {
|
||||
return this.idpClientArg.typedsocket.createTypedRequest<plugins.idpInterfaces.request.IReq_UpdateAppRoleMappings>(
|
||||
'updateAppRoleMappings'
|
||||
);
|
||||
}
|
||||
|
||||
// ============================================
|
||||
// Billing
|
||||
// ============================================
|
||||
|
||||
Reference in New Issue
Block a user