@keycloak/keycloak-account-ui 26.2.5 → 26.3.1
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/lib/api/methods.d.ts +0 -3
- package/lib/index.d.ts +1 -1
- package/lib/keycloak-account-ui.js +6443 -6477
- package/lib/keycloak-account-ui.js.map +1 -1
- package/package.json +13 -13
package/lib/api/methods.d.ts
CHANGED
|
@@ -24,8 +24,5 @@ export type LinkedAccountQueryParams = PaginationParams & {
|
|
|
24
24
|
};
|
|
25
25
|
export declare function getLinkedAccounts({ signal, context }: CallOptions, query: LinkedAccountQueryParams): Promise<LinkedAccountRepresentation[]>;
|
|
26
26
|
export declare function unLinkAccount(context: KeycloakContext<BaseEnvironment>, account: LinkedAccountRepresentation): Promise<unknown>;
|
|
27
|
-
export declare function linkAccount(context: KeycloakContext<BaseEnvironment>, account: LinkedAccountRepresentation): Promise<{
|
|
28
|
-
accountLinkUri: string;
|
|
29
|
-
}>;
|
|
30
27
|
export declare function getGroups({ signal, context }: CallOptions): Promise<Group[]>;
|
|
31
28
|
export declare function getUserOrganizations({ signal, context }: CallOptions): Promise<OrganizationRepresentation[]>;
|
package/lib/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export { ResourceToolbar } from './resources/ResourceToolbar';
|
|
|
18
18
|
export { SharedWith } from './resources/SharedWith';
|
|
19
19
|
export { Oid4Vci } from './oid4vci/Oid4Vci';
|
|
20
20
|
export { ShareTheResource } from './resources/ShareTheResource';
|
|
21
|
-
export { deleteConsent, deleteSession, getApplications, getCredentials, getDevices, getGroups, getLinkedAccounts, getPermissionRequests, getPersonalInfo, getSupportedLocales,
|
|
21
|
+
export { deleteConsent, deleteSession, getApplications, getCredentials, getDevices, getGroups, getLinkedAccounts, getPermissionRequests, getPersonalInfo, getSupportedLocales, savePersonalInfo, unLinkAccount, } from './api/methods';
|
|
22
22
|
export type { Environment as AccountEnvironment } from './environment';
|
|
23
23
|
export { KeycloakProvider, useEnvironment } from '@keycloak/keycloak-ui-shared';
|
|
24
24
|
export { useAccountAlerts } from './utils/useAccountAlerts';
|