@authing/react-ui-components 3.1.25-rc.3 → 3.1.25-rc.6

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
@@ -3130,7 +3130,7 @@ declare module '@authing/react-ui-components/components/_utils/guardHttp' {
3130
3130
  setTenantId(tenantId: string): this;
3131
3131
  setBaseUrl(baseUrl: string): this;
3132
3132
  getHeaders: () => Record<string, string>;
3133
- get: <T = any>(path: string, query?: Record<string, any>, config?: RequestInit | undefined) => Promise<AuthingGuardResponse<T>>;
3133
+ get: <T = any>(path: string, query?: Record<string, any>, config?: any) => Promise<AuthingGuardResponse<T>>;
3134
3134
  post: <T = any>(path: string, data: any, config?: {
3135
3135
  headers: any;
3136
3136
  } | undefined) => Promise<AuthingGuardResponse<T>>;
@@ -3194,9 +3194,10 @@ declare module '@authing/react-ui-components/components/_utils/hooks/index' {
3194
3194
  }
3195
3195
  declare module '@authing/react-ui-components/components/_utils/http' {
3196
3196
  import { CodeAction } from '@authing/react-ui-components/components/_utils/responseManagement/interface';
3197
+ import { AxiosRequestConfig } from 'axios';
3197
3198
  export const requestClient: {
3198
3199
  (input: RequestInfo, init?: RequestInit | undefined): Promise<any>;
3199
- get<T>(path: string, query?: Record<string, any>, init?: RequestInit | undefined): Promise<AuthingResponse<T>>;
3200
+ get<T>(path: string, query?: Record<string, any>, init?: AxiosRequestConfig<any> | undefined): Promise<AuthingResponse<T>>;
3200
3201
  post<T_1>(path: string, data: any, config?: {
3201
3202
  headers: any;
3202
3203
  } | undefined): Promise<AuthingResponse<T_1>>;
@@ -3510,7 +3511,7 @@ declare module '@authing/react-ui-components/components/version/index' {
3510
3511
 
3511
3512
  }
3512
3513
  declare module '@authing/react-ui-components/components/version/version' {
3513
- const _default: "3.1.25-rc.3";
3514
+ const _default: "3.1.25-rc.6";
3514
3515
  export default _default;
3515
3516
 
3516
3517
  }