@authing/react-ui-components 3.1.29 → 3.1.30-rc.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.
- package/lib/index.d.ts +4 -2
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -521,6 +521,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
|
|
|
521
521
|
websocket: string;
|
|
522
522
|
welcomeMessage: any;
|
|
523
523
|
skipComplateFileds: boolean;
|
|
524
|
+
selfUnlockStrategy: 'captcha' | 'password-captcha';
|
|
524
525
|
}
|
|
525
526
|
export const fetchAppConfig: (appId: string) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<ApplicationConfig>>;
|
|
526
527
|
|
|
@@ -1041,6 +1042,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/Guard
|
|
|
1041
1042
|
agreements: Agreement[];
|
|
1042
1043
|
loginMethodTitleMapping: Record<string, string>;
|
|
1043
1044
|
qrcodeTabsSettings: QrcodeTabsSettings;
|
|
1045
|
+
verifyCodeLength: number;
|
|
1044
1046
|
}
|
|
1045
1047
|
export interface LocalesConfig {
|
|
1046
1048
|
defaultLang?: Lang;
|
|
@@ -3209,7 +3211,7 @@ declare module '@authing/react-ui-components/components/_utils/http' {
|
|
|
3209
3211
|
import { AxiosRequestConfig } from 'axios';
|
|
3210
3212
|
export const requestClient: {
|
|
3211
3213
|
(input: RequestInfo, init?: RequestInit | undefined): Promise<any>;
|
|
3212
|
-
get<T>(path: string, query?: Record<string, any>, init?: AxiosRequestConfig
|
|
3214
|
+
get<T>(path: string, query?: Record<string, any>, init?: AxiosRequestConfig | undefined): Promise<AuthingResponse<T>>;
|
|
3213
3215
|
post<T_1>(path: string, data: any, config?: {
|
|
3214
3216
|
headers: any;
|
|
3215
3217
|
} | undefined): Promise<AuthingResponse<T_1>>;
|
|
@@ -3533,7 +3535,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3533
3535
|
|
|
3534
3536
|
}
|
|
3535
3537
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3536
|
-
const _default: "3.1.
|
|
3538
|
+
const _default: "3.1.30-rc.0";
|
|
3537
3539
|
export default _default;
|
|
3538
3540
|
|
|
3539
3541
|
}
|