@authing/react-ui-components 3.1.34 → 3.1.35-beta.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 CHANGED
@@ -2998,6 +2998,8 @@ declare module '@authing/react-ui-components/components/_utils/config/index' {
2998
2998
  expired?: string | undefined;
2999
2999
  retry?: string | undefined;
3000
3000
  failed?: string | undefined;
3001
+ middleTitle?: string | undefined;
3002
+ referText?: string | undefined;
3001
3003
  } | undefined;
3002
3004
  onAuthFlow?: ((flow: Record<string, any>) => {}) | undefined;
3003
3005
  customData?: {
@@ -3213,7 +3215,7 @@ declare module '@authing/react-ui-components/components/_utils/http' {
3213
3215
  import { AxiosRequestConfig } from 'axios';
3214
3216
  export const requestClient: {
3215
3217
  (input: RequestInfo, init?: RequestInit | undefined): Promise<any>;
3216
- get<T>(path: string, query?: Record<string, any>, init?: AxiosRequestConfig | undefined): Promise<AuthingResponse<T>>;
3218
+ get<T>(path: string, query?: Record<string, any>, init?: AxiosRequestConfig<any> | undefined): Promise<AuthingResponse<T>>;
3217
3219
  post<T_1>(path: string, data: any, config?: {
3218
3220
  headers: any;
3219
3221
  } | undefined): Promise<AuthingResponse<T_1>>;
@@ -3283,7 +3285,11 @@ declare module '@authing/react-ui-components/components/_utils/index' {
3283
3285
  * @param ...sources
3284
3286
  */
3285
3287
  export function deepMerge<T extends any = any>(target: T, ...sources: any[]): T;
3286
- export const getUserRegisterParams: () => {
3288
+ /**
3289
+ * 在托管页下上传query中指定的用户自定义字段进行补全
3290
+ * @param params 指定上传的用户自定义字段
3291
+ */
3292
+ export const getUserRegisterParams: (params?: string[] | undefined) => {
3287
3293
  key: string;
3288
3294
  value: string | string[] | qs.ParsedQs | qs.ParsedQs[] | undefined;
3289
3295
  }[];
@@ -3537,7 +3543,7 @@ declare module '@authing/react-ui-components/components/version/index' {
3537
3543
 
3538
3544
  }
3539
3545
  declare module '@authing/react-ui-components/components/version/version' {
3540
- const _default: "3.1.34";
3546
+ const _default: "3.1.35-beta.0";
3541
3547
  export default _default;
3542
3548
 
3543
3549
  }