@fctc/interface-logic 2.3.3 → 2.3.5
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/configs.d.mts +6 -6
- package/dist/configs.d.ts +6 -6
- package/dist/configs.js +48 -18
- package/dist/configs.mjs +48 -18
- package/dist/constants.d.mts +3 -1
- package/dist/constants.d.ts +3 -1
- package/dist/constants.js +3 -1
- package/dist/constants.mjs +3 -1
- package/dist/environment.js +48 -18
- package/dist/environment.mjs +48 -18
- package/dist/hooks.d.mts +22 -8
- package/dist/hooks.d.ts +22 -8
- package/dist/hooks.js +319 -200
- package/dist/hooks.mjs +288 -170
- package/dist/provider.d.mts +5 -3
- package/dist/provider.d.ts +5 -3
- package/dist/provider.js +368 -220
- package/dist/provider.mjs +338 -190
- package/dist/services.d.mts +28 -17
- package/dist/services.d.ts +28 -17
- package/dist/services.js +218 -128
- package/dist/services.mjs +203 -113
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils.js +3 -1
- package/dist/utils.mjs +3 -1
- package/dist/{view-type-BGJfDe73.d.mts → view-type-p4JdAOsz.d.mts} +5 -0
- package/dist/{view-type-BGJfDe73.d.ts → view-type-p4JdAOsz.d.ts} +5 -0
- 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, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, c as GetSelectionType, f as GetViewParams } from './view-type-
|
|
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-p4JdAOsz.mjs';
|
|
3
3
|
|
|
4
4
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
5
5
|
|
|
@@ -38,7 +38,6 @@ declare const useGetAccessByCode: () => _tanstack_react_query.UseMutationResult<
|
|
|
38
38
|
|
|
39
39
|
declare const useValidateActionToken: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
40
40
|
actionToken: string;
|
|
41
|
-
path: string;
|
|
42
41
|
}, unknown>;
|
|
43
42
|
|
|
44
43
|
declare const useGetCompanyInfo: () => _tanstack_react_query.UseMutationResult<any, Error, number, unknown>;
|
|
@@ -82,7 +81,7 @@ declare const useParsePreview: () => _tanstack_react_query.UseMutationResult<any
|
|
|
82
81
|
context: any;
|
|
83
82
|
}, unknown>;
|
|
84
83
|
|
|
85
|
-
declare const
|
|
84
|
+
declare const useUploadFileExcel: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
86
85
|
formData: any;
|
|
87
86
|
}, unknown>;
|
|
88
87
|
|
|
@@ -137,9 +136,14 @@ declare const useUploadImage: () => _tanstack_react_query.UseMutationResult<any,
|
|
|
137
136
|
formData: any;
|
|
138
137
|
}, unknown>;
|
|
139
138
|
|
|
139
|
+
declare const useUploadFile: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
140
|
+
formData: any;
|
|
141
|
+
}, unknown>;
|
|
142
|
+
|
|
140
143
|
declare const useDelete: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
141
144
|
ids: any;
|
|
142
145
|
model: string;
|
|
146
|
+
service?: string;
|
|
143
147
|
}, unknown>;
|
|
144
148
|
|
|
145
149
|
declare const useGetAll: ({ data, queryKey, viewResponse }: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -153,10 +157,12 @@ declare const useGetDetail: () => _tanstack_react_query.UseMutationResult<any, E
|
|
|
153
157
|
ids: any;
|
|
154
158
|
specification?: any;
|
|
155
159
|
context?: any;
|
|
160
|
+
service?: string;
|
|
156
161
|
}, unknown>;
|
|
157
162
|
|
|
158
|
-
declare const useGetFieldOnChange: ({ model }: {
|
|
163
|
+
declare const useGetFieldOnChange: ({ model, service, }: {
|
|
159
164
|
model: string;
|
|
165
|
+
service?: string;
|
|
160
166
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
161
167
|
|
|
162
168
|
declare const useGetListMyBankAccount: ({ domain, spectification, model, }: {
|
|
@@ -204,6 +210,7 @@ declare const useOnChangeForm: () => _tanstack_react_query.UseMutationResult<any
|
|
|
204
210
|
context: any;
|
|
205
211
|
object: any;
|
|
206
212
|
fieldChange?: any;
|
|
213
|
+
service?: string;
|
|
207
214
|
}, unknown>;
|
|
208
215
|
|
|
209
216
|
declare const useSave: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
@@ -213,6 +220,7 @@ declare const useSave: () => _tanstack_react_query.UseMutationResult<any, Error,
|
|
|
213
220
|
specification?: any;
|
|
214
221
|
context: any;
|
|
215
222
|
path?: string;
|
|
223
|
+
service?: string;
|
|
216
224
|
}, unknown>;
|
|
217
225
|
|
|
218
226
|
declare const useGetProfile: (path?: string) => _tanstack_react_query.UseMutationResult<any, Error, void, unknown>;
|
|
@@ -235,12 +243,14 @@ declare const useButton: () => _tanstack_react_query.UseMutationResult<any, Erro
|
|
|
235
243
|
ids: Record<string, any>[] | any;
|
|
236
244
|
context: ContextApi;
|
|
237
245
|
method: any;
|
|
246
|
+
service?: string;
|
|
238
247
|
}, unknown>;
|
|
239
248
|
|
|
240
249
|
declare const useDuplicateRecord: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
241
250
|
id: any;
|
|
242
251
|
model: string;
|
|
243
252
|
context: ContextApi;
|
|
253
|
+
service?: string;
|
|
244
254
|
}, unknown>;
|
|
245
255
|
|
|
246
256
|
declare const useGetActionDetail: ({ aid, context, enabled, id, model, queryKey, }: {
|
|
@@ -259,9 +269,9 @@ declare const useGetGroups: ({ model, width_context, }: {
|
|
|
259
269
|
width_context: any;
|
|
260
270
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
261
271
|
|
|
262
|
-
declare const useGetListData: (listDataProps: any, queryKey?: any, enabled?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
272
|
+
declare const useGetListData: (listDataProps: any, queryKey?: any, enabled?: any, service?: string) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
263
273
|
|
|
264
|
-
declare const useGetMenu: (context: any, specification: any, enabled?: boolean) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
274
|
+
declare const useGetMenu: (context: any, specification: any, enabled?: boolean, domain?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
265
275
|
|
|
266
276
|
declare const useGetPrintReport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
267
277
|
id: number;
|
|
@@ -274,10 +284,11 @@ declare const useGetProGressBar: ({ field, color, model, width_context, }: {
|
|
|
274
284
|
width_context: string;
|
|
275
285
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
276
286
|
|
|
277
|
-
declare const useGetSelection: ({ data, queryKey, enabled, }: {
|
|
287
|
+
declare const useGetSelection: ({ data, queryKey, enabled, service }: {
|
|
278
288
|
data: GetSelectionType;
|
|
279
289
|
queryKey: any[];
|
|
280
290
|
enabled?: boolean;
|
|
291
|
+
service?: string;
|
|
281
292
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
282
293
|
|
|
283
294
|
declare const useGetView: (viewParams: GetViewParams, actData?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -285,6 +296,7 @@ declare const useGetView: (viewParams: GetViewParams, actData?: any) => _tanstac
|
|
|
285
296
|
declare const useLoadAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
286
297
|
idAction: any;
|
|
287
298
|
context: ContextApi;
|
|
299
|
+
service?: string;
|
|
288
300
|
}, unknown>;
|
|
289
301
|
|
|
290
302
|
declare const useLoadMessage: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -299,6 +311,7 @@ declare const useRemoveRow: () => _tanstack_react_query.UseMutationResult<any, E
|
|
|
299
311
|
model: string;
|
|
300
312
|
ids: Record<string, any>[] | any;
|
|
301
313
|
context: ContextApi;
|
|
314
|
+
service?: string;
|
|
302
315
|
}, unknown>;
|
|
303
316
|
|
|
304
317
|
declare const useGetResequence: (model: string, resIds: any, context: any, offset: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -306,6 +319,7 @@ declare const useGetResequence: (model: string, resIds: any, context: any, offse
|
|
|
306
319
|
declare const useRunAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
307
320
|
idAction: any;
|
|
308
321
|
context: ContextApi;
|
|
322
|
+
service?: string;
|
|
309
323
|
}, unknown>;
|
|
310
324
|
|
|
311
325
|
declare const useSignInSSO: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
@@ -360,4 +374,4 @@ declare const useVerifyTotp: () => _tanstack_react_query.UseMutationResult<unkno
|
|
|
360
374
|
code: string;
|
|
361
375
|
}, unknown>;
|
|
362
376
|
|
|
363
|
-
export { useButton, useChangeStatus, useDelete, useDeleteComment, useDuplicateRecord, useExecuteImport, useExportExcel, useForgotPassword, useForgotPasswordSSO, useGet2FAMethods, useGetAccessByCode, useGetActionDetail, useGetAll, useGetCalendar, useGetComment, useGetCompanyInfo, useGetConversionRate, useGetCurrency, useGetCurrentCompany, useGetDetail, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetFormView, useGetGroups, useGetImage, useGetListCompany, useGetListData, useGetListMyBankAccount, useGetMenu, useGetPrintReport, useGetProGressBar, useGetProfile, useGetProvider, useGetResequence, useGetSelection, useGetUser, useGetView, useGrantAccess, useIsValidToken, useLoadAction, useLoadMessage, useLoginCredential, useLoginSocial, useLogout, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useRemoveRow, useRemoveTotpSetup, useRequestSetupTotp, useResetPassword, useResetPasswordSSO, useRunAction, useSave, useSendComment, useSettingsWebRead2fa, useSignInSSO, useSwitchLocale, useUpdatePassword, useUploadFile, useUploadIdFile, useUploadImage, useValidateActionToken, useVerify2FA, useVerifyTotp };
|
|
377
|
+
export { useButton, useChangeStatus, useDelete, useDeleteComment, useDuplicateRecord, useExecuteImport, useExportExcel, useForgotPassword, useForgotPasswordSSO, useGet2FAMethods, useGetAccessByCode, useGetActionDetail, useGetAll, useGetCalendar, useGetComment, useGetCompanyInfo, useGetConversionRate, useGetCurrency, useGetCurrentCompany, useGetDetail, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetFormView, useGetGroups, useGetImage, useGetListCompany, useGetListData, useGetListMyBankAccount, useGetMenu, useGetPrintReport, useGetProGressBar, useGetProfile, useGetProvider, useGetResequence, useGetSelection, useGetUser, useGetView, useGrantAccess, useIsValidToken, useLoadAction, useLoadMessage, useLoginCredential, useLoginSocial, useLogout, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useRemoveRow, useRemoveTotpSetup, useRequestSetupTotp, useResetPassword, useResetPasswordSSO, useRunAction, useSave, useSendComment, useSettingsWebRead2fa, useSignInSSO, useSwitchLocale, useUpdatePassword, useUploadFile, useUploadFileExcel, useUploadIdFile, useUploadImage, useValidateActionToken, useVerify2FA, useVerifyTotp };
|
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, d as SocialTokenBody, F as ForgotPasswordBody, u as updatePasswordBody, V as ViewData, C as ContextApi, c as GetSelectionType, f as GetViewParams } from './view-type-
|
|
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-p4JdAOsz.js';
|
|
3
3
|
|
|
4
4
|
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
5
5
|
|
|
@@ -38,7 +38,6 @@ declare const useGetAccessByCode: () => _tanstack_react_query.UseMutationResult<
|
|
|
38
38
|
|
|
39
39
|
declare const useValidateActionToken: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
40
40
|
actionToken: string;
|
|
41
|
-
path: string;
|
|
42
41
|
}, unknown>;
|
|
43
42
|
|
|
44
43
|
declare const useGetCompanyInfo: () => _tanstack_react_query.UseMutationResult<any, Error, number, unknown>;
|
|
@@ -82,7 +81,7 @@ declare const useParsePreview: () => _tanstack_react_query.UseMutationResult<any
|
|
|
82
81
|
context: any;
|
|
83
82
|
}, unknown>;
|
|
84
83
|
|
|
85
|
-
declare const
|
|
84
|
+
declare const useUploadFileExcel: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
86
85
|
formData: any;
|
|
87
86
|
}, unknown>;
|
|
88
87
|
|
|
@@ -137,9 +136,14 @@ declare const useUploadImage: () => _tanstack_react_query.UseMutationResult<any,
|
|
|
137
136
|
formData: any;
|
|
138
137
|
}, unknown>;
|
|
139
138
|
|
|
139
|
+
declare const useUploadFile: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
140
|
+
formData: any;
|
|
141
|
+
}, unknown>;
|
|
142
|
+
|
|
140
143
|
declare const useDelete: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
141
144
|
ids: any;
|
|
142
145
|
model: string;
|
|
146
|
+
service?: string;
|
|
143
147
|
}, unknown>;
|
|
144
148
|
|
|
145
149
|
declare const useGetAll: ({ data, queryKey, viewResponse }: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -153,10 +157,12 @@ declare const useGetDetail: () => _tanstack_react_query.UseMutationResult<any, E
|
|
|
153
157
|
ids: any;
|
|
154
158
|
specification?: any;
|
|
155
159
|
context?: any;
|
|
160
|
+
service?: string;
|
|
156
161
|
}, unknown>;
|
|
157
162
|
|
|
158
|
-
declare const useGetFieldOnChange: ({ model }: {
|
|
163
|
+
declare const useGetFieldOnChange: ({ model, service, }: {
|
|
159
164
|
model: string;
|
|
165
|
+
service?: string;
|
|
160
166
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
161
167
|
|
|
162
168
|
declare const useGetListMyBankAccount: ({ domain, spectification, model, }: {
|
|
@@ -204,6 +210,7 @@ declare const useOnChangeForm: () => _tanstack_react_query.UseMutationResult<any
|
|
|
204
210
|
context: any;
|
|
205
211
|
object: any;
|
|
206
212
|
fieldChange?: any;
|
|
213
|
+
service?: string;
|
|
207
214
|
}, unknown>;
|
|
208
215
|
|
|
209
216
|
declare const useSave: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
@@ -213,6 +220,7 @@ declare const useSave: () => _tanstack_react_query.UseMutationResult<any, Error,
|
|
|
213
220
|
specification?: any;
|
|
214
221
|
context: any;
|
|
215
222
|
path?: string;
|
|
223
|
+
service?: string;
|
|
216
224
|
}, unknown>;
|
|
217
225
|
|
|
218
226
|
declare const useGetProfile: (path?: string) => _tanstack_react_query.UseMutationResult<any, Error, void, unknown>;
|
|
@@ -235,12 +243,14 @@ declare const useButton: () => _tanstack_react_query.UseMutationResult<any, Erro
|
|
|
235
243
|
ids: Record<string, any>[] | any;
|
|
236
244
|
context: ContextApi;
|
|
237
245
|
method: any;
|
|
246
|
+
service?: string;
|
|
238
247
|
}, unknown>;
|
|
239
248
|
|
|
240
249
|
declare const useDuplicateRecord: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
241
250
|
id: any;
|
|
242
251
|
model: string;
|
|
243
252
|
context: ContextApi;
|
|
253
|
+
service?: string;
|
|
244
254
|
}, unknown>;
|
|
245
255
|
|
|
246
256
|
declare const useGetActionDetail: ({ aid, context, enabled, id, model, queryKey, }: {
|
|
@@ -259,9 +269,9 @@ declare const useGetGroups: ({ model, width_context, }: {
|
|
|
259
269
|
width_context: any;
|
|
260
270
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
261
271
|
|
|
262
|
-
declare const useGetListData: (listDataProps: any, queryKey?: any, enabled?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
272
|
+
declare const useGetListData: (listDataProps: any, queryKey?: any, enabled?: any, service?: string) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
263
273
|
|
|
264
|
-
declare const useGetMenu: (context: any, specification: any, enabled?: boolean) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
274
|
+
declare const useGetMenu: (context: any, specification: any, enabled?: boolean, domain?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
265
275
|
|
|
266
276
|
declare const useGetPrintReport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
267
277
|
id: number;
|
|
@@ -274,10 +284,11 @@ declare const useGetProGressBar: ({ field, color, model, width_context, }: {
|
|
|
274
284
|
width_context: string;
|
|
275
285
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
276
286
|
|
|
277
|
-
declare const useGetSelection: ({ data, queryKey, enabled, }: {
|
|
287
|
+
declare const useGetSelection: ({ data, queryKey, enabled, service }: {
|
|
278
288
|
data: GetSelectionType;
|
|
279
289
|
queryKey: any[];
|
|
280
290
|
enabled?: boolean;
|
|
291
|
+
service?: string;
|
|
281
292
|
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
282
293
|
|
|
283
294
|
declare const useGetView: (viewParams: GetViewParams, actData?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -285,6 +296,7 @@ declare const useGetView: (viewParams: GetViewParams, actData?: any) => _tanstac
|
|
|
285
296
|
declare const useLoadAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
286
297
|
idAction: any;
|
|
287
298
|
context: ContextApi;
|
|
299
|
+
service?: string;
|
|
288
300
|
}, unknown>;
|
|
289
301
|
|
|
290
302
|
declare const useLoadMessage: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -299,6 +311,7 @@ declare const useRemoveRow: () => _tanstack_react_query.UseMutationResult<any, E
|
|
|
299
311
|
model: string;
|
|
300
312
|
ids: Record<string, any>[] | any;
|
|
301
313
|
context: ContextApi;
|
|
314
|
+
service?: string;
|
|
302
315
|
}, unknown>;
|
|
303
316
|
|
|
304
317
|
declare const useGetResequence: (model: string, resIds: any, context: any, offset: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
@@ -306,6 +319,7 @@ declare const useGetResequence: (model: string, resIds: any, context: any, offse
|
|
|
306
319
|
declare const useRunAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
307
320
|
idAction: any;
|
|
308
321
|
context: ContextApi;
|
|
322
|
+
service?: string;
|
|
309
323
|
}, unknown>;
|
|
310
324
|
|
|
311
325
|
declare const useSignInSSO: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
@@ -360,4 +374,4 @@ declare const useVerifyTotp: () => _tanstack_react_query.UseMutationResult<unkno
|
|
|
360
374
|
code: string;
|
|
361
375
|
}, unknown>;
|
|
362
376
|
|
|
363
|
-
export { useButton, useChangeStatus, useDelete, useDeleteComment, useDuplicateRecord, useExecuteImport, useExportExcel, useForgotPassword, useForgotPasswordSSO, useGet2FAMethods, useGetAccessByCode, useGetActionDetail, useGetAll, useGetCalendar, useGetComment, useGetCompanyInfo, useGetConversionRate, useGetCurrency, useGetCurrentCompany, useGetDetail, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetFormView, useGetGroups, useGetImage, useGetListCompany, useGetListData, useGetListMyBankAccount, useGetMenu, useGetPrintReport, useGetProGressBar, useGetProfile, useGetProvider, useGetResequence, useGetSelection, useGetUser, useGetView, useGrantAccess, useIsValidToken, useLoadAction, useLoadMessage, useLoginCredential, useLoginSocial, useLogout, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useRemoveRow, useRemoveTotpSetup, useRequestSetupTotp, useResetPassword, useResetPasswordSSO, useRunAction, useSave, useSendComment, useSettingsWebRead2fa, useSignInSSO, useSwitchLocale, useUpdatePassword, useUploadFile, useUploadIdFile, useUploadImage, useValidateActionToken, useVerify2FA, useVerifyTotp };
|
|
377
|
+
export { useButton, useChangeStatus, useDelete, useDeleteComment, useDuplicateRecord, useExecuteImport, useExportExcel, useForgotPassword, useForgotPasswordSSO, useGet2FAMethods, useGetAccessByCode, useGetActionDetail, useGetAll, useGetCalendar, useGetComment, useGetCompanyInfo, useGetConversionRate, useGetCurrency, useGetCurrentCompany, useGetDetail, useGetFieldExport, useGetFieldOnChange, useGetFileExcel, useGetFormView, useGetGroups, useGetImage, useGetListCompany, useGetListData, useGetListMyBankAccount, useGetMenu, useGetPrintReport, useGetProGressBar, useGetProfile, useGetProvider, useGetResequence, useGetSelection, useGetUser, useGetView, useGrantAccess, useIsValidToken, useLoadAction, useLoadMessage, useLoginCredential, useLoginSocial, useLogout, useModel, useOdooDataTransform, useOnChangeForm, useParsePreview, usePrint, useRemoveRow, useRemoveTotpSetup, useRequestSetupTotp, useResetPassword, useResetPasswordSSO, useRunAction, useSave, useSendComment, useSettingsWebRead2fa, useSignInSSO, useSwitchLocale, useUpdatePassword, useUploadFile, useUploadFileExcel, useUploadIdFile, useUploadImage, useValidateActionToken, useVerify2FA, useVerifyTotp };
|