@connectedxm/client 7.8.2 → 7.8.3
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/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4084,8 +4084,8 @@ declare const useCreateLoginAccount: (options?: Omit<MutationOptions<Awaited<Ret
|
|
|
4084
4084
|
interface CheckLoginParams extends MutationParams {
|
|
4085
4085
|
email: string;
|
|
4086
4086
|
}
|
|
4087
|
-
declare const CheckLogin: ({ email, clientApiParams, }: CheckLoginParams) => Promise<ConnectedXMResponse<
|
|
4088
|
-
declare const useCheckLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckLogin>>, Omit<CheckLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<
|
|
4087
|
+
declare const CheckLogin: ({ email, clientApiParams, }: CheckLoginParams) => Promise<ConnectedXMResponse<string>>;
|
|
4088
|
+
declare const useCheckLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckLogin>>, Omit<CheckLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<string>, any>, Omit<CheckLoginParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4089
4089
|
|
|
4090
4090
|
interface VerifyLoginAccountParams extends MutationParams {
|
|
4091
4091
|
}
|