@keycloak/keycloak-admin-client 19.0.0-dev.21 → 19.0.0-dev.23
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.
|
@@ -10,7 +10,7 @@ export default interface UserRepresentation {
|
|
|
10
10
|
totp?: boolean;
|
|
11
11
|
emailVerified?: boolean;
|
|
12
12
|
disableableCredentialTypes?: string[];
|
|
13
|
-
requiredActions?: RequiredActionAlias[];
|
|
13
|
+
requiredActions?: (RequiredActionAlias | string)[];
|
|
14
14
|
notBefore?: number;
|
|
15
15
|
access?: Record<string, boolean>;
|
|
16
16
|
attributes?: Record<string, any>;
|
package/lib/resources/users.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import type { KeycloakAdminClient } from '../client.js';
|
|
|
6
6
|
import type MappingsRepresentation from '../defs/mappingsRepresentation.js';
|
|
7
7
|
import type RoleRepresentation from '../defs/roleRepresentation.js';
|
|
8
8
|
import type { RoleMappingPayload } from '../defs/roleRepresentation.js';
|
|
9
|
-
import type { RequiredActionAlias } from '../defs/requiredActionProviderRepresentation.js';
|
|
10
9
|
import type FederatedIdentityRepresentation from '../defs/federatedIdentityRepresentation.js';
|
|
11
10
|
import type GroupRepresentation from '../defs/groupRepresentation.js';
|
|
12
11
|
import type CredentialRepresentation from '../defs/credentialRepresentation.js';
|
|
@@ -126,7 +125,7 @@ export declare class Users extends Resource<{
|
|
|
126
125
|
clientId?: string | undefined;
|
|
127
126
|
lifespan?: number | undefined;
|
|
128
127
|
redirectUri?: string | undefined;
|
|
129
|
-
actions?:
|
|
128
|
+
actions?: string[] | undefined;
|
|
130
129
|
} & {
|
|
131
130
|
realm?: string | undefined;
|
|
132
131
|
}) | undefined, options?: Pick<import("./agent.js").RequestArgs, "catchNotFound"> | undefined) => Promise<void>;
|