@fctc/interface-logic 1.10.6 → 1.10.8
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 +1 -1
- package/dist/hooks.d.ts +1 -1
- package/dist/hooks.js +18 -13
- package/dist/hooks.mjs +5 -0
- package/dist/provider.d.mts +84 -6
- package/dist/provider.d.ts +84 -6
- package/dist/provider.js +2970 -129
- package/dist/provider.mjs +2967 -128
- 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/dist/{view-type-D8ukwj_2.d.mts → view-type-BGJfDe73.d.mts} +1 -1
- package/dist/{view-type-D8ukwj_2.d.ts → view-type-BGJfDe73.d.ts} +1 -1
- package/package.json +1 -1
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,
|
|
2
|
+
import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, c as GetSelectionType, f as GetViewParams } from './view-type-BGJfDe73.mjs';
|
|
3
3
|
|
|
4
4
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
5
5
|
|
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,
|
|
2
|
+
import { L as LoginCredentialBody, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, c as GetSelectionType, f as GetViewParams } from './view-type-BGJfDe73.js';
|
|
3
3
|
|
|
4
4
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
5
5
|
|
package/dist/hooks.js
CHANGED
|
@@ -4225,7 +4225,7 @@ var use_isvalid_token_default = useIsValidToken;
|
|
|
4225
4225
|
var import_react_query7 = require("@tanstack/react-query");
|
|
4226
4226
|
|
|
4227
4227
|
// src/services/auth-service/backup.ts
|
|
4228
|
-
var
|
|
4228
|
+
var import_react6 = require("react");
|
|
4229
4229
|
|
|
4230
4230
|
// src/provider/react-query-provider.tsx
|
|
4231
4231
|
var import_react_query5 = require("@tanstack/react-query");
|
|
@@ -4878,10 +4878,15 @@ function useEnv() {
|
|
|
4878
4878
|
return context;
|
|
4879
4879
|
}
|
|
4880
4880
|
|
|
4881
|
+
// src/provider/service-provider.tsx
|
|
4882
|
+
var import_react5 = require("react");
|
|
4883
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
4884
|
+
var ServiceContext = (0, import_react5.createContext)(null);
|
|
4885
|
+
|
|
4881
4886
|
// src/services/auth-service/backup.ts
|
|
4882
4887
|
function useAuthService() {
|
|
4883
4888
|
const { env: env2 } = useEnv();
|
|
4884
|
-
const login = (0,
|
|
4889
|
+
const login = (0, import_react6.useCallback)(
|
|
4885
4890
|
async (body) => {
|
|
4886
4891
|
const payload = Object.fromEntries(
|
|
4887
4892
|
Object.entries({
|
|
@@ -4901,7 +4906,7 @@ function useAuthService() {
|
|
|
4901
4906
|
},
|
|
4902
4907
|
[env2]
|
|
4903
4908
|
);
|
|
4904
|
-
const forgotPassword = (0,
|
|
4909
|
+
const forgotPassword = (0, import_react6.useCallback)(
|
|
4905
4910
|
async (email) => {
|
|
4906
4911
|
const bodyData = {
|
|
4907
4912
|
login: email,
|
|
@@ -4915,7 +4920,7 @@ function useAuthService() {
|
|
|
4915
4920
|
},
|
|
4916
4921
|
[env2]
|
|
4917
4922
|
);
|
|
4918
|
-
const forgotPasswordSSO = (0,
|
|
4923
|
+
const forgotPasswordSSO = (0, import_react6.useCallback)(
|
|
4919
4924
|
async ({
|
|
4920
4925
|
email,
|
|
4921
4926
|
with_context,
|
|
@@ -4938,7 +4943,7 @@ function useAuthService() {
|
|
|
4938
4943
|
},
|
|
4939
4944
|
[env2]
|
|
4940
4945
|
);
|
|
4941
|
-
const resetPassword = (0,
|
|
4946
|
+
const resetPassword = (0, import_react6.useCallback)(
|
|
4942
4947
|
async (data, token) => {
|
|
4943
4948
|
const bodyData = {
|
|
4944
4949
|
token,
|
|
@@ -4953,7 +4958,7 @@ function useAuthService() {
|
|
|
4953
4958
|
},
|
|
4954
4959
|
[env2]
|
|
4955
4960
|
);
|
|
4956
|
-
const resetPasswordSSO = (0,
|
|
4961
|
+
const resetPasswordSSO = (0, import_react6.useCallback)(
|
|
4957
4962
|
async ({
|
|
4958
4963
|
method,
|
|
4959
4964
|
password,
|
|
@@ -4976,7 +4981,7 @@ function useAuthService() {
|
|
|
4976
4981
|
},
|
|
4977
4982
|
[env2]
|
|
4978
4983
|
);
|
|
4979
|
-
const updatePassword = (0,
|
|
4984
|
+
const updatePassword = (0, import_react6.useCallback)(
|
|
4980
4985
|
async (data, token) => {
|
|
4981
4986
|
const bodyData = {
|
|
4982
4987
|
token,
|
|
@@ -4991,7 +4996,7 @@ function useAuthService() {
|
|
|
4991
4996
|
},
|
|
4992
4997
|
[env2]
|
|
4993
4998
|
);
|
|
4994
|
-
const isValidToken = (0,
|
|
4999
|
+
const isValidToken = (0, import_react6.useCallback)(
|
|
4995
5000
|
async (token) => {
|
|
4996
5001
|
const bodyData = {
|
|
4997
5002
|
token
|
|
@@ -5004,7 +5009,7 @@ function useAuthService() {
|
|
|
5004
5009
|
},
|
|
5005
5010
|
[env2]
|
|
5006
5011
|
);
|
|
5007
|
-
const isValidActionToken = (0,
|
|
5012
|
+
const isValidActionToken = (0, import_react6.useCallback)(
|
|
5008
5013
|
async (actionToken, path) => {
|
|
5009
5014
|
return env2?.requests?.post(
|
|
5010
5015
|
path,
|
|
@@ -5020,7 +5025,7 @@ function useAuthService() {
|
|
|
5020
5025
|
},
|
|
5021
5026
|
[env2]
|
|
5022
5027
|
);
|
|
5023
|
-
const loginSocial = (0,
|
|
5028
|
+
const loginSocial = (0, import_react6.useCallback)(
|
|
5024
5029
|
async ({
|
|
5025
5030
|
db,
|
|
5026
5031
|
state,
|
|
@@ -5038,13 +5043,13 @@ function useAuthService() {
|
|
|
5038
5043
|
},
|
|
5039
5044
|
[env2]
|
|
5040
5045
|
);
|
|
5041
|
-
const getProviders = (0,
|
|
5046
|
+
const getProviders = (0, import_react6.useCallback)(
|
|
5042
5047
|
async (db) => {
|
|
5043
5048
|
return env2?.requests?.get("/oauth/providers", { params: { db } });
|
|
5044
5049
|
},
|
|
5045
5050
|
[env2]
|
|
5046
5051
|
);
|
|
5047
|
-
const getAccessByCode = (0,
|
|
5052
|
+
const getAccessByCode = (0, import_react6.useCallback)(
|
|
5048
5053
|
async (code) => {
|
|
5049
5054
|
const data = new URLSearchParams();
|
|
5050
5055
|
data.append("code", code);
|
|
@@ -5063,7 +5068,7 @@ function useAuthService() {
|
|
|
5063
5068
|
},
|
|
5064
5069
|
[env2]
|
|
5065
5070
|
);
|
|
5066
|
-
const logout = (0,
|
|
5071
|
+
const logout = (0, import_react6.useCallback)(
|
|
5067
5072
|
async (data) => {
|
|
5068
5073
|
console.log(data);
|
|
5069
5074
|
return env2?.requests?.post(
|
package/dist/hooks.mjs
CHANGED
|
@@ -4774,6 +4774,11 @@ function useEnv() {
|
|
|
4774
4774
|
return context;
|
|
4775
4775
|
}
|
|
4776
4776
|
|
|
4777
|
+
// src/provider/service-provider.tsx
|
|
4778
|
+
import { createContext as createContext2, useContext as useContext2 } from "react";
|
|
4779
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
4780
|
+
var ServiceContext = createContext2(null);
|
|
4781
|
+
|
|
4777
4782
|
// src/services/auth-service/backup.ts
|
|
4778
4783
|
function useAuthService() {
|
|
4779
4784
|
const { env: env2 } = useEnv();
|
package/dist/provider.d.mts
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import { ReactNode } from 'react';
|
|
3
2
|
import { L as LocalStorageUtilsType, S as SessionStorageUtilsType } from './session-storage-ARp_lhTD.mjs';
|
|
3
|
+
import { useForgotPassword, useForgotPasswordSSO, useGetProvider, useIsValidToken, useLoginCredential, useLoginSocial, useResetPassword, useResetPasswordSSO, useUpdatePassword, useLogout, useGetAccessByCode, useValidateActionToken, useGetCompanyInfo, useGetCurrentCompany, useGetListCompany, useExecuteImport, useExportExcel, useGetFieldExport, useGetFileExcel, useParsePreview, useUploadFile, useUploadIdFile, useChangeStatus, useDeleteComment, useGetComment, useGetFormView, useGetImage, useSendComment, useUploadImage, useDelete, useGetAll, useGetConversionRate, useGetCurrency, useGetDetail, useGetFieldOnChange, useGetListMyBankAccount, useModel, useOdooDataTransform, useOnChangeForm, useSave, useGetProfile, useGetUser, useSwitchLocale, useButton, useDuplicateRecord, useGet2FAMethods, useGetActionDetail, useGetCalendar, useGetGroups, useGetListData, useGetMenu, useGetPrintReport, useGetProGressBar, useGetResequence, useGetSelection, useGetView, useLoadAction, useLoadMessage, usePrint, useRemoveRow, useRunAction, useSignInSSO, useVerify2FA, useGetFieldsViewSecurity, useGrantAccess, useRemoveTotpSetup, useRequestSetupTotp, useSettingsWebRead2fa, useVerifyTotp } from './hooks.mjs';
|
|
4
|
+
import '@tanstack/react-query';
|
|
5
|
+
import './view-type-BGJfDe73.mjs';
|
|
4
6
|
|
|
5
7
|
declare const MainProvider: ({ children }: {
|
|
6
8
|
children: ReactNode;
|
|
7
|
-
}) =>
|
|
9
|
+
}) => JSX.Element;
|
|
8
10
|
|
|
9
11
|
declare const ReactQueryProvider: ({ children }: {
|
|
10
12
|
children: ReactNode;
|
|
11
|
-
}) =>
|
|
13
|
+
}) => JSX.Element;
|
|
12
14
|
|
|
13
15
|
declare const VersionGate: ({ children }: {
|
|
14
16
|
children: ReactNode;
|
|
15
|
-
}) =>
|
|
17
|
+
}) => JSX.Element | null;
|
|
16
18
|
|
|
17
19
|
interface EnvConfig {
|
|
18
20
|
env?: any;
|
|
@@ -43,7 +45,7 @@ declare function EnvProvider({ children, localStorageUtils: localStorageUtil, se
|
|
|
43
45
|
children: React.ReactNode;
|
|
44
46
|
localStorageUtils?: LocalStorageUtilsType;
|
|
45
47
|
sessionStorageUtils?: SessionStorageUtilsType;
|
|
46
|
-
}):
|
|
48
|
+
}): JSX.Element;
|
|
47
49
|
declare function useEnv(): {
|
|
48
50
|
env: EnvConfig;
|
|
49
51
|
setupEnv: (envConfig: Partial<EnvConfig>) => EnvConfig;
|
|
@@ -57,4 +59,80 @@ declare function useEnv(): {
|
|
|
57
59
|
setEnvFile: (envFile: any) => void;
|
|
58
60
|
};
|
|
59
61
|
|
|
60
|
-
|
|
62
|
+
interface ServiceContextType {
|
|
63
|
+
useForgotPassword: typeof useForgotPassword;
|
|
64
|
+
useForgotPasswordSSO: typeof useForgotPasswordSSO;
|
|
65
|
+
useGetProvider: typeof useGetProvider;
|
|
66
|
+
useIsValidToken: typeof useIsValidToken;
|
|
67
|
+
useLoginCredential: typeof useLoginCredential;
|
|
68
|
+
useLoginSocial: typeof useLoginSocial;
|
|
69
|
+
useResetPassword: typeof useResetPassword;
|
|
70
|
+
useResetPasswordSSO: typeof useResetPasswordSSO;
|
|
71
|
+
useUpdatePassword: typeof useUpdatePassword;
|
|
72
|
+
useLogout: typeof useLogout;
|
|
73
|
+
useGetAccessByCode: typeof useGetAccessByCode;
|
|
74
|
+
useValidateActionToken: typeof useValidateActionToken;
|
|
75
|
+
useGetCompanyInfo: typeof useGetCompanyInfo;
|
|
76
|
+
useGetCurrentCompany: typeof useGetCurrentCompany;
|
|
77
|
+
useGetListCompany: typeof useGetListCompany;
|
|
78
|
+
useExecuteImport: typeof useExecuteImport;
|
|
79
|
+
useExportExcel: typeof useExportExcel;
|
|
80
|
+
useGetFieldExport: typeof useGetFieldExport;
|
|
81
|
+
useGetFileExcel: typeof useGetFileExcel;
|
|
82
|
+
useParsePreview: typeof useParsePreview;
|
|
83
|
+
useUploadFile: typeof useUploadFile;
|
|
84
|
+
useUploadIdFile: typeof useUploadIdFile;
|
|
85
|
+
useChangeStatus: typeof useChangeStatus;
|
|
86
|
+
useDeleteComment: typeof useDeleteComment;
|
|
87
|
+
useGetComment: typeof useGetComment;
|
|
88
|
+
useGetFormView: typeof useGetFormView;
|
|
89
|
+
useGetImage: typeof useGetImage;
|
|
90
|
+
useSendComment: typeof useSendComment;
|
|
91
|
+
useUploadImage: typeof useUploadImage;
|
|
92
|
+
useDelete: typeof useDelete;
|
|
93
|
+
useGetAll: typeof useGetAll;
|
|
94
|
+
useGetConversionRate: typeof useGetConversionRate;
|
|
95
|
+
useGetCurrency: typeof useGetCurrency;
|
|
96
|
+
useGetDetail: typeof useGetDetail;
|
|
97
|
+
useGetFieldOnChange: typeof useGetFieldOnChange;
|
|
98
|
+
useGetListMyBankAccount: typeof useGetListMyBankAccount;
|
|
99
|
+
useModel: typeof useModel;
|
|
100
|
+
useOdooDataTransform: typeof useOdooDataTransform;
|
|
101
|
+
useOnChangeForm: typeof useOnChangeForm;
|
|
102
|
+
useSave: typeof useSave;
|
|
103
|
+
useGetProfile: typeof useGetProfile;
|
|
104
|
+
useGetUser: typeof useGetUser;
|
|
105
|
+
useSwitchLocale: typeof useSwitchLocale;
|
|
106
|
+
useButton: typeof useButton;
|
|
107
|
+
useDuplicateRecord: typeof useDuplicateRecord;
|
|
108
|
+
useGet2FAMethods: typeof useGet2FAMethods;
|
|
109
|
+
useGetActionDetail: typeof useGetActionDetail;
|
|
110
|
+
useGetCalendar: typeof useGetCalendar;
|
|
111
|
+
useGetGroups: typeof useGetGroups;
|
|
112
|
+
useGetListData: typeof useGetListData;
|
|
113
|
+
useGetMenu: typeof useGetMenu;
|
|
114
|
+
useGetPrintReport: typeof useGetPrintReport;
|
|
115
|
+
useGetProGressBar: typeof useGetProGressBar;
|
|
116
|
+
useGetResequence: typeof useGetResequence;
|
|
117
|
+
useGetSelection: typeof useGetSelection;
|
|
118
|
+
useGetView: typeof useGetView;
|
|
119
|
+
useLoadAction: typeof useLoadAction;
|
|
120
|
+
useLoadMessage: typeof useLoadMessage;
|
|
121
|
+
usePrint: typeof usePrint;
|
|
122
|
+
useRemoveRow: typeof useRemoveRow;
|
|
123
|
+
useRunAction: typeof useRunAction;
|
|
124
|
+
useSignInSSO: typeof useSignInSSO;
|
|
125
|
+
useVerify2FA: typeof useVerify2FA;
|
|
126
|
+
useGetFieldsViewSecurity: typeof useGetFieldsViewSecurity;
|
|
127
|
+
useGrantAccess: typeof useGrantAccess;
|
|
128
|
+
useRemoveTotpSetup: typeof useRemoveTotpSetup;
|
|
129
|
+
useRequestSetupTotp: typeof useRequestSetupTotp;
|
|
130
|
+
useSettingsWebRead2fa: typeof useSettingsWebRead2fa;
|
|
131
|
+
useVerifyTotp: typeof useVerifyTotp;
|
|
132
|
+
}
|
|
133
|
+
declare const ServiceProvider: ({ children, }: {
|
|
134
|
+
children: React.ReactNode;
|
|
135
|
+
}) => JSX.Element;
|
|
136
|
+
declare const useService: () => ServiceContextType;
|
|
137
|
+
|
|
138
|
+
export { EnvProvider, MainProvider, ReactQueryProvider, ServiceProvider, VersionGate, useEnv, useService };
|
package/dist/provider.d.ts
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import { ReactNode } from 'react';
|
|
3
2
|
import { L as LocalStorageUtilsType, S as SessionStorageUtilsType } from './session-storage-ARp_lhTD.js';
|
|
3
|
+
import { useForgotPassword, useForgotPasswordSSO, useGetProvider, useIsValidToken, useLoginCredential, useLoginSocial, useResetPassword, useResetPasswordSSO, useUpdatePassword, useLogout, useGetAccessByCode, useValidateActionToken, useGetCompanyInfo, useGetCurrentCompany, useGetListCompany, useExecuteImport, useExportExcel, useGetFieldExport, useGetFileExcel, useParsePreview, useUploadFile, useUploadIdFile, useChangeStatus, useDeleteComment, useGetComment, useGetFormView, useGetImage, useSendComment, useUploadImage, useDelete, useGetAll, useGetConversionRate, useGetCurrency, useGetDetail, useGetFieldOnChange, useGetListMyBankAccount, useModel, useOdooDataTransform, useOnChangeForm, useSave, useGetProfile, useGetUser, useSwitchLocale, useButton, useDuplicateRecord, useGet2FAMethods, useGetActionDetail, useGetCalendar, useGetGroups, useGetListData, useGetMenu, useGetPrintReport, useGetProGressBar, useGetResequence, useGetSelection, useGetView, useLoadAction, useLoadMessage, usePrint, useRemoveRow, useRunAction, useSignInSSO, useVerify2FA, useGetFieldsViewSecurity, useGrantAccess, useRemoveTotpSetup, useRequestSetupTotp, useSettingsWebRead2fa, useVerifyTotp } from './hooks.js';
|
|
4
|
+
import '@tanstack/react-query';
|
|
5
|
+
import './view-type-BGJfDe73.js';
|
|
4
6
|
|
|
5
7
|
declare const MainProvider: ({ children }: {
|
|
6
8
|
children: ReactNode;
|
|
7
|
-
}) =>
|
|
9
|
+
}) => JSX.Element;
|
|
8
10
|
|
|
9
11
|
declare const ReactQueryProvider: ({ children }: {
|
|
10
12
|
children: ReactNode;
|
|
11
|
-
}) =>
|
|
13
|
+
}) => JSX.Element;
|
|
12
14
|
|
|
13
15
|
declare const VersionGate: ({ children }: {
|
|
14
16
|
children: ReactNode;
|
|
15
|
-
}) =>
|
|
17
|
+
}) => JSX.Element | null;
|
|
16
18
|
|
|
17
19
|
interface EnvConfig {
|
|
18
20
|
env?: any;
|
|
@@ -43,7 +45,7 @@ declare function EnvProvider({ children, localStorageUtils: localStorageUtil, se
|
|
|
43
45
|
children: React.ReactNode;
|
|
44
46
|
localStorageUtils?: LocalStorageUtilsType;
|
|
45
47
|
sessionStorageUtils?: SessionStorageUtilsType;
|
|
46
|
-
}):
|
|
48
|
+
}): JSX.Element;
|
|
47
49
|
declare function useEnv(): {
|
|
48
50
|
env: EnvConfig;
|
|
49
51
|
setupEnv: (envConfig: Partial<EnvConfig>) => EnvConfig;
|
|
@@ -57,4 +59,80 @@ declare function useEnv(): {
|
|
|
57
59
|
setEnvFile: (envFile: any) => void;
|
|
58
60
|
};
|
|
59
61
|
|
|
60
|
-
|
|
62
|
+
interface ServiceContextType {
|
|
63
|
+
useForgotPassword: typeof useForgotPassword;
|
|
64
|
+
useForgotPasswordSSO: typeof useForgotPasswordSSO;
|
|
65
|
+
useGetProvider: typeof useGetProvider;
|
|
66
|
+
useIsValidToken: typeof useIsValidToken;
|
|
67
|
+
useLoginCredential: typeof useLoginCredential;
|
|
68
|
+
useLoginSocial: typeof useLoginSocial;
|
|
69
|
+
useResetPassword: typeof useResetPassword;
|
|
70
|
+
useResetPasswordSSO: typeof useResetPasswordSSO;
|
|
71
|
+
useUpdatePassword: typeof useUpdatePassword;
|
|
72
|
+
useLogout: typeof useLogout;
|
|
73
|
+
useGetAccessByCode: typeof useGetAccessByCode;
|
|
74
|
+
useValidateActionToken: typeof useValidateActionToken;
|
|
75
|
+
useGetCompanyInfo: typeof useGetCompanyInfo;
|
|
76
|
+
useGetCurrentCompany: typeof useGetCurrentCompany;
|
|
77
|
+
useGetListCompany: typeof useGetListCompany;
|
|
78
|
+
useExecuteImport: typeof useExecuteImport;
|
|
79
|
+
useExportExcel: typeof useExportExcel;
|
|
80
|
+
useGetFieldExport: typeof useGetFieldExport;
|
|
81
|
+
useGetFileExcel: typeof useGetFileExcel;
|
|
82
|
+
useParsePreview: typeof useParsePreview;
|
|
83
|
+
useUploadFile: typeof useUploadFile;
|
|
84
|
+
useUploadIdFile: typeof useUploadIdFile;
|
|
85
|
+
useChangeStatus: typeof useChangeStatus;
|
|
86
|
+
useDeleteComment: typeof useDeleteComment;
|
|
87
|
+
useGetComment: typeof useGetComment;
|
|
88
|
+
useGetFormView: typeof useGetFormView;
|
|
89
|
+
useGetImage: typeof useGetImage;
|
|
90
|
+
useSendComment: typeof useSendComment;
|
|
91
|
+
useUploadImage: typeof useUploadImage;
|
|
92
|
+
useDelete: typeof useDelete;
|
|
93
|
+
useGetAll: typeof useGetAll;
|
|
94
|
+
useGetConversionRate: typeof useGetConversionRate;
|
|
95
|
+
useGetCurrency: typeof useGetCurrency;
|
|
96
|
+
useGetDetail: typeof useGetDetail;
|
|
97
|
+
useGetFieldOnChange: typeof useGetFieldOnChange;
|
|
98
|
+
useGetListMyBankAccount: typeof useGetListMyBankAccount;
|
|
99
|
+
useModel: typeof useModel;
|
|
100
|
+
useOdooDataTransform: typeof useOdooDataTransform;
|
|
101
|
+
useOnChangeForm: typeof useOnChangeForm;
|
|
102
|
+
useSave: typeof useSave;
|
|
103
|
+
useGetProfile: typeof useGetProfile;
|
|
104
|
+
useGetUser: typeof useGetUser;
|
|
105
|
+
useSwitchLocale: typeof useSwitchLocale;
|
|
106
|
+
useButton: typeof useButton;
|
|
107
|
+
useDuplicateRecord: typeof useDuplicateRecord;
|
|
108
|
+
useGet2FAMethods: typeof useGet2FAMethods;
|
|
109
|
+
useGetActionDetail: typeof useGetActionDetail;
|
|
110
|
+
useGetCalendar: typeof useGetCalendar;
|
|
111
|
+
useGetGroups: typeof useGetGroups;
|
|
112
|
+
useGetListData: typeof useGetListData;
|
|
113
|
+
useGetMenu: typeof useGetMenu;
|
|
114
|
+
useGetPrintReport: typeof useGetPrintReport;
|
|
115
|
+
useGetProGressBar: typeof useGetProGressBar;
|
|
116
|
+
useGetResequence: typeof useGetResequence;
|
|
117
|
+
useGetSelection: typeof useGetSelection;
|
|
118
|
+
useGetView: typeof useGetView;
|
|
119
|
+
useLoadAction: typeof useLoadAction;
|
|
120
|
+
useLoadMessage: typeof useLoadMessage;
|
|
121
|
+
usePrint: typeof usePrint;
|
|
122
|
+
useRemoveRow: typeof useRemoveRow;
|
|
123
|
+
useRunAction: typeof useRunAction;
|
|
124
|
+
useSignInSSO: typeof useSignInSSO;
|
|
125
|
+
useVerify2FA: typeof useVerify2FA;
|
|
126
|
+
useGetFieldsViewSecurity: typeof useGetFieldsViewSecurity;
|
|
127
|
+
useGrantAccess: typeof useGrantAccess;
|
|
128
|
+
useRemoveTotpSetup: typeof useRemoveTotpSetup;
|
|
129
|
+
useRequestSetupTotp: typeof useRequestSetupTotp;
|
|
130
|
+
useSettingsWebRead2fa: typeof useSettingsWebRead2fa;
|
|
131
|
+
useVerifyTotp: typeof useVerifyTotp;
|
|
132
|
+
}
|
|
133
|
+
declare const ServiceProvider: ({ children, }: {
|
|
134
|
+
children: React.ReactNode;
|
|
135
|
+
}) => JSX.Element;
|
|
136
|
+
declare const useService: () => ServiceContextType;
|
|
137
|
+
|
|
138
|
+
export { EnvProvider, MainProvider, ReactQueryProvider, ServiceProvider, VersionGate, useEnv, useService };
|