@authing/guard-shim-react 4.5.0-alpha.4 → 4.5.0

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.
@@ -6,4 +6,5 @@ export declare enum ChangePasswordBusinessAction {
6
6
  export declare const authFlow: (action: ChangePasswordBusinessAction, content: {
7
7
  password: string;
8
8
  oldPassword?: string;
9
+ code?: string;
9
10
  }) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
@@ -0,0 +1,5 @@
1
+ interface SendPhoneCodeProps {
2
+ publicConfig: any;
3
+ }
4
+ export declare const SendPhoneCode: (props: SendPhoneCodeProps) => JSX.Element;
5
+ export {};
@@ -1 +1 @@
1
- export declare const useIsChangeComplete: (currentMode: 'phone' | 'email') => boolean;
1
+ export declare const useIsChangeComplete: (currentMode: 'phone' | 'email' | string) => boolean;
@@ -226,6 +226,7 @@ export interface ApplicationConfig {
226
226
  phoneRegisterType?: RegisterMethods[];
227
227
  };
228
228
  };
229
+ resetPwdCustomLogo?: string;
229
230
  qrcodeTabsSettings: QrcodeTabsSettings;
230
231
  qrCodeSortConfig: {
231
232
  loginMethodsSort?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authing/guard-shim-react",
3
- "version": "4.5.0-alpha.4",
3
+ "version": "4.5.0",
4
4
  "description": "Guard shim for react 16 / 17, only be used to internal",
5
5
  "types": "dist/typings/src/index.d.ts",
6
6
  "module": "dist/guard.min.js",