@fctc/interface-logic 1.9.9 → 1.9.10
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/hooks.d.mts +4 -2
- package/dist/hooks.d.ts +4 -2
- package/dist/hooks.js +127 -132
- package/dist/hooks.mjs +87 -92
- package/dist/services.d.mts +1 -1
- package/dist/services.d.ts +1 -1
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
- package/dist/{view-type-D8ukwj_2.d.mts → view-type-DtGzLLEa.d.mts} +27 -27
- package/dist/{view-type-D8ukwj_2.d.ts → view-type-DtGzLLEa.d.ts} +27 -27
package/dist/hooks.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
-
import { L as LoginCredentialBody, S as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, G as GetSelectionType, a as GetViewParams } from './view-type-
|
|
2
|
+
import { L as LoginCredentialBody, S as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, G as GetSelectionType, a as GetViewParams } from './view-type-DtGzLLEa.mjs';
|
|
3
3
|
|
|
4
4
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
5
5
|
|
|
@@ -16,7 +16,9 @@ declare const useGetProvider: () => _tanstack_react_query.UseMutationResult<any,
|
|
|
16
16
|
|
|
17
17
|
declare const useIsValidToken: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
18
18
|
|
|
19
|
-
declare const useLoginCredential: () =>
|
|
19
|
+
declare const useLoginCredential: () => {
|
|
20
|
+
login: (body: LoginCredentialBody) => Promise<any>;
|
|
21
|
+
};
|
|
20
22
|
|
|
21
23
|
declare const useLoginSocial: () => _tanstack_react_query.UseMutationResult<any, Error, SocialTokenBody, unknown>;
|
|
22
24
|
|
package/dist/hooks.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
-
import { L as LoginCredentialBody, S as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, G as GetSelectionType, a as GetViewParams } from './view-type-
|
|
2
|
+
import { L as LoginCredentialBody, S as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, G as GetSelectionType, a as GetViewParams } from './view-type-DtGzLLEa.js';
|
|
3
3
|
|
|
4
4
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
5
5
|
|
|
@@ -16,7 +16,9 @@ declare const useGetProvider: () => _tanstack_react_query.UseMutationResult<any,
|
|
|
16
16
|
|
|
17
17
|
declare const useIsValidToken: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
18
18
|
|
|
19
|
-
declare const useLoginCredential: () =>
|
|
19
|
+
declare const useLoginCredential: () => {
|
|
20
|
+
login: (body: LoginCredentialBody) => Promise<any>;
|
|
21
|
+
};
|
|
20
22
|
|
|
21
23
|
declare const useLoginSocial: () => _tanstack_react_query.UseMutationResult<any, Error, SocialTokenBody, unknown>;
|
|
22
24
|
|