@declarion/react 0.1.68 → 0.1.69
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/dist-lib/api/auth.d.ts +1 -0
- package/dist-lib/index.js +3733 -3476
- package/dist-lib/index.js.map +1 -1
- package/dist-lib/stores/auth.d.ts +1 -0
- package/package.json +1 -1
package/dist-lib/api/auth.d.ts
CHANGED
|
@@ -23,3 +23,4 @@ export interface ImpersonationStartResponse extends LoginResponse {
|
|
|
23
23
|
export declare function impersonationStart(targetUserId: string, reason: string, durationMinutes?: number): Promise<ImpersonationStartResponse>;
|
|
24
24
|
export declare function impersonationStop(): Promise<LoginResponse>;
|
|
25
25
|
export declare function impersonationRevoke(sessionId: string): Promise<void>;
|
|
26
|
+
export declare function changePassword(currentPassword: string, newPassword: string): Promise<void>;
|