@fctc/interface-logic 2.5.9 → 2.6.0
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 +372 -5
- package/dist/hooks.d.ts +372 -5
- package/dist/provider.d.mts +11 -1
- package/dist/provider.d.ts +11 -1
- package/dist/provider.js +221 -1
- package/dist/provider.mjs +221 -1
- package/package.json +1 -1
- package/dist/use-verify-totp-lA66gl-D.d.mts +0 -374
- package/dist/use-verify-totp-wSSlNI9w.d.ts +0 -374
|
@@ -1,374 +0,0 @@
|
|
|
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-xxw9OeSR.mjs';
|
|
3
|
-
import { B as BaseModelInit } from './base-model-type-DD8uZnDP.mjs';
|
|
4
|
-
import { BaseModel } from './models.mjs';
|
|
5
|
-
|
|
6
|
-
declare const useForgotPassword: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
7
|
-
|
|
8
|
-
declare const useForgotPasswordSSO: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
9
|
-
email: string;
|
|
10
|
-
with_context: any;
|
|
11
|
-
method: string;
|
|
12
|
-
}, unknown>;
|
|
13
|
-
|
|
14
|
-
type ProviderPropsType = {
|
|
15
|
-
db: string;
|
|
16
|
-
};
|
|
17
|
-
declare const useGetProvider: () => _tanstack_react_query.UseMutationResult<any, Error, ProviderPropsType, unknown>;
|
|
18
|
-
|
|
19
|
-
declare const useIsValidToken: () => _tanstack_react_query.UseMutationResult<any, Error, string, unknown>;
|
|
20
|
-
|
|
21
|
-
declare const useLoginCredential: () => _tanstack_react_query.UseMutationResult<any, Error, LoginCredentialBody, unknown>;
|
|
22
|
-
|
|
23
|
-
declare const useLoginSocial: () => _tanstack_react_query.UseMutationResult<any, Error, SocialTokenBody, unknown>;
|
|
24
|
-
|
|
25
|
-
declare const useResetPassword: () => _tanstack_react_query.UseMutationResult<any, Error, ForgotPasswordBody, unknown>;
|
|
26
|
-
|
|
27
|
-
declare const useResetPasswordSSO: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
28
|
-
method: any;
|
|
29
|
-
password: string;
|
|
30
|
-
with_context: any;
|
|
31
|
-
}, unknown>;
|
|
32
|
-
|
|
33
|
-
declare const useUpdatePassword: () => _tanstack_react_query.UseMutationResult<any, Error, updatePasswordBody, unknown>;
|
|
34
|
-
|
|
35
|
-
declare const useLogout: () => _tanstack_react_query.UseMutationResult<any, Error, string | undefined, unknown>;
|
|
36
|
-
|
|
37
|
-
declare const useGetAccessByCode: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
38
|
-
code: string;
|
|
39
|
-
}, unknown>;
|
|
40
|
-
|
|
41
|
-
declare const useValidateActionToken: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
42
|
-
actionToken: string;
|
|
43
|
-
}, unknown>;
|
|
44
|
-
|
|
45
|
-
declare const useGetCompanyInfo: () => _tanstack_react_query.UseMutationResult<any, Error, number, unknown>;
|
|
46
|
-
|
|
47
|
-
declare const useGetCurrentCompany: () => _tanstack_react_query.UseMutationResult<any, Error, void, unknown>;
|
|
48
|
-
|
|
49
|
-
declare const useGetListCompany: (companyIDs?: number[]) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
50
|
-
|
|
51
|
-
declare const useExportExcel: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
52
|
-
model: string;
|
|
53
|
-
domain: any;
|
|
54
|
-
ids: any;
|
|
55
|
-
fields: any;
|
|
56
|
-
type: any;
|
|
57
|
-
importCompat: any;
|
|
58
|
-
context: any;
|
|
59
|
-
groupby: any;
|
|
60
|
-
}, unknown>;
|
|
61
|
-
|
|
62
|
-
declare const useGetFieldExport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
63
|
-
ids: any;
|
|
64
|
-
model: string;
|
|
65
|
-
isShow?: boolean;
|
|
66
|
-
parentField?: any;
|
|
67
|
-
fieldType?: any;
|
|
68
|
-
parentName?: any;
|
|
69
|
-
prefix?: any;
|
|
70
|
-
name?: any;
|
|
71
|
-
context: any;
|
|
72
|
-
importCompat?: any;
|
|
73
|
-
}, unknown>;
|
|
74
|
-
|
|
75
|
-
declare const useGetFileExcel: ({ model }: {
|
|
76
|
-
model: string;
|
|
77
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
78
|
-
|
|
79
|
-
declare const useParsePreview: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
80
|
-
id: any;
|
|
81
|
-
selectedSheet: any;
|
|
82
|
-
isHeader: boolean;
|
|
83
|
-
context: any;
|
|
84
|
-
}, unknown>;
|
|
85
|
-
|
|
86
|
-
declare const useUploadFileExcel: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
87
|
-
formData: any;
|
|
88
|
-
}, unknown>;
|
|
89
|
-
|
|
90
|
-
declare const useUploadIdFile: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
91
|
-
formData: any;
|
|
92
|
-
}, unknown>;
|
|
93
|
-
|
|
94
|
-
declare const useExecuteImport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
95
|
-
fields: any;
|
|
96
|
-
columns: any;
|
|
97
|
-
idFile: any;
|
|
98
|
-
options: any;
|
|
99
|
-
dryrun: any;
|
|
100
|
-
context: any;
|
|
101
|
-
}, unknown>;
|
|
102
|
-
|
|
103
|
-
declare const useChangeStatus: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
104
|
-
data: any;
|
|
105
|
-
}, unknown>;
|
|
106
|
-
|
|
107
|
-
declare const useDeleteComment: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
108
|
-
data: any;
|
|
109
|
-
}, unknown>;
|
|
110
|
-
|
|
111
|
-
declare const useGetComment: ({ data, queryKey }: {
|
|
112
|
-
data: any;
|
|
113
|
-
queryKey: any;
|
|
114
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
115
|
-
|
|
116
|
-
type TFormView = {
|
|
117
|
-
model: string;
|
|
118
|
-
id?: number | null;
|
|
119
|
-
context?: any;
|
|
120
|
-
};
|
|
121
|
-
declare const useGetFormView: ({ data, queryKey, enabled, }: {
|
|
122
|
-
data: TFormView;
|
|
123
|
-
queryKey?: any;
|
|
124
|
-
enabled?: any;
|
|
125
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
126
|
-
|
|
127
|
-
declare const useGetImage: ({ data, queryKey, src, }: {
|
|
128
|
-
data: any;
|
|
129
|
-
queryKey: any;
|
|
130
|
-
src: any;
|
|
131
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
132
|
-
|
|
133
|
-
declare const useSendComment: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
134
|
-
data: any;
|
|
135
|
-
}, unknown>;
|
|
136
|
-
|
|
137
|
-
declare const useUploadImage: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
138
|
-
formData: any;
|
|
139
|
-
}, unknown>;
|
|
140
|
-
|
|
141
|
-
declare const useUploadFile: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
142
|
-
formData: any;
|
|
143
|
-
}, unknown>;
|
|
144
|
-
|
|
145
|
-
declare const useDelete: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
146
|
-
ids: any;
|
|
147
|
-
model: string;
|
|
148
|
-
service?: string;
|
|
149
|
-
}, unknown>;
|
|
150
|
-
|
|
151
|
-
declare const useGetAll: ({ data, queryKey, viewResponse }: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
152
|
-
|
|
153
|
-
declare const useGetConversionRate: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
154
|
-
|
|
155
|
-
declare const useGetCurrency: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
156
|
-
|
|
157
|
-
declare const useGetDetail: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
158
|
-
model?: string;
|
|
159
|
-
ids: any;
|
|
160
|
-
specification?: any;
|
|
161
|
-
context?: any;
|
|
162
|
-
service?: string;
|
|
163
|
-
xNode?: string;
|
|
164
|
-
}, unknown>;
|
|
165
|
-
|
|
166
|
-
declare const useGetFieldOnChange: ({ model, service, xNode, }: {
|
|
167
|
-
model: string;
|
|
168
|
-
service?: string;
|
|
169
|
-
xNode?: string;
|
|
170
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
171
|
-
|
|
172
|
-
declare const useGetListMyBankAccount: ({ domain, spectification, model, }: {
|
|
173
|
-
domain: any;
|
|
174
|
-
spectification: any;
|
|
175
|
-
model: string;
|
|
176
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
177
|
-
|
|
178
|
-
declare const useModel: () => {
|
|
179
|
-
initModel: (modelData: BaseModelInit) => BaseModel;
|
|
180
|
-
};
|
|
181
|
-
|
|
182
|
-
declare const useOdooDataTransform: () => {
|
|
183
|
-
toDataJS: (data: Record<string, any>, viewData?: ViewData, model?: string) => {
|
|
184
|
-
[x: string]: any;
|
|
185
|
-
};
|
|
186
|
-
parseORM: (data: Record<string, any>) => {
|
|
187
|
-
[x: string]: any;
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
|
|
191
|
-
declare const useOnChangeForm: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
192
|
-
ids: any;
|
|
193
|
-
model: string;
|
|
194
|
-
specification: any;
|
|
195
|
-
context: any;
|
|
196
|
-
object: any;
|
|
197
|
-
fieldChange?: any;
|
|
198
|
-
service?: string;
|
|
199
|
-
xNode?: string;
|
|
200
|
-
}, unknown>;
|
|
201
|
-
|
|
202
|
-
declare const useSave: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
203
|
-
ids: any;
|
|
204
|
-
model: string;
|
|
205
|
-
data: any;
|
|
206
|
-
specification?: any;
|
|
207
|
-
context: any;
|
|
208
|
-
path?: string;
|
|
209
|
-
service?: string;
|
|
210
|
-
xNode?: string;
|
|
211
|
-
}, unknown>;
|
|
212
|
-
|
|
213
|
-
declare const useGetProfile: (path?: string) => _tanstack_react_query.UseMutationResult<any, Error, void, unknown>;
|
|
214
|
-
|
|
215
|
-
declare const useGetUser: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
216
|
-
id: any;
|
|
217
|
-
context: ContextApi;
|
|
218
|
-
}, unknown>;
|
|
219
|
-
|
|
220
|
-
type SwitchUserLocaleParams = {
|
|
221
|
-
data: {
|
|
222
|
-
id: number;
|
|
223
|
-
values: any;
|
|
224
|
-
};
|
|
225
|
-
};
|
|
226
|
-
declare const useSwitchLocale: () => _tanstack_react_query.UseMutationResult<any, Error, SwitchUserLocaleParams, unknown>;
|
|
227
|
-
|
|
228
|
-
declare const useButton: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
229
|
-
model: string;
|
|
230
|
-
ids: Record<string, any>[] | any;
|
|
231
|
-
context: ContextApi;
|
|
232
|
-
method: any;
|
|
233
|
-
service?: string;
|
|
234
|
-
xNode?: string;
|
|
235
|
-
}, unknown>;
|
|
236
|
-
|
|
237
|
-
declare const useDuplicateRecord: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
238
|
-
id: any;
|
|
239
|
-
model: string;
|
|
240
|
-
context: ContextApi;
|
|
241
|
-
service?: string;
|
|
242
|
-
xNode?: string;
|
|
243
|
-
}, unknown>;
|
|
244
|
-
|
|
245
|
-
declare const useGetActionDetail: ({ aid, context, enabled, id, model, queryKey, }: {
|
|
246
|
-
aid: number;
|
|
247
|
-
context: any;
|
|
248
|
-
enabled: boolean;
|
|
249
|
-
id?: number;
|
|
250
|
-
model?: string;
|
|
251
|
-
queryKey?: any;
|
|
252
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
253
|
-
|
|
254
|
-
declare const useGetCalendar: (listDataProps: any, queryKey?: any, enabled?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
255
|
-
|
|
256
|
-
declare const useGetGroups: ({ model, width_context, }: {
|
|
257
|
-
model: string;
|
|
258
|
-
width_context: any;
|
|
259
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
260
|
-
|
|
261
|
-
declare const useGetListData: (listDataProps: any, queryKey?: any, enabled?: any, service?: string, xNode?: string) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
262
|
-
|
|
263
|
-
declare const useGetMenu: (context: any, specification: any, enabled?: boolean, domain?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
264
|
-
|
|
265
|
-
declare const useGetPrintReport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
266
|
-
id: number;
|
|
267
|
-
}, unknown>;
|
|
268
|
-
|
|
269
|
-
declare const useGetProGressBar: ({ field, color, model, width_context, }: {
|
|
270
|
-
field: any;
|
|
271
|
-
color: any;
|
|
272
|
-
model: string;
|
|
273
|
-
width_context: string;
|
|
274
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
275
|
-
|
|
276
|
-
declare const useGetSelection: ({ data, queryKey, enabled, service, xNode, }: {
|
|
277
|
-
data: GetSelectionType;
|
|
278
|
-
queryKey: any[];
|
|
279
|
-
enabled?: boolean;
|
|
280
|
-
service?: string;
|
|
281
|
-
xNode?: string;
|
|
282
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
283
|
-
|
|
284
|
-
type UseGetViewProps = {
|
|
285
|
-
viewParams: GetViewParams;
|
|
286
|
-
enabled?: boolean;
|
|
287
|
-
};
|
|
288
|
-
declare const useGetView: ({ viewParams, enabled }: UseGetViewProps) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
289
|
-
|
|
290
|
-
declare const useLoadAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
291
|
-
idAction: any;
|
|
292
|
-
context: ContextApi;
|
|
293
|
-
service?: string;
|
|
294
|
-
xNode?: string;
|
|
295
|
-
}, unknown>;
|
|
296
|
-
|
|
297
|
-
declare const useLoadMessage: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
298
|
-
|
|
299
|
-
declare const usePrint: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
300
|
-
id: number;
|
|
301
|
-
report: any;
|
|
302
|
-
db: any;
|
|
303
|
-
}, unknown>;
|
|
304
|
-
|
|
305
|
-
declare const useRemoveRow: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
306
|
-
model: string;
|
|
307
|
-
ids: Record<string, any>[] | any;
|
|
308
|
-
context: ContextApi;
|
|
309
|
-
service?: string;
|
|
310
|
-
xNode?: string;
|
|
311
|
-
}, unknown>;
|
|
312
|
-
|
|
313
|
-
declare const useGetResequence: (model: string, resIds: any, context: any, offset: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
314
|
-
|
|
315
|
-
declare const useRunAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
316
|
-
idAction: any;
|
|
317
|
-
context: ContextApi;
|
|
318
|
-
service?: string;
|
|
319
|
-
xNode?: string;
|
|
320
|
-
}, unknown>;
|
|
321
|
-
|
|
322
|
-
declare const useSignInSSO: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
323
|
-
redirect_uri: string;
|
|
324
|
-
state: string;
|
|
325
|
-
client_id: string;
|
|
326
|
-
response_type: string;
|
|
327
|
-
path: string;
|
|
328
|
-
scope: string;
|
|
329
|
-
}, unknown>;
|
|
330
|
-
|
|
331
|
-
declare const useVerify2FA: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
332
|
-
method: string;
|
|
333
|
-
with_context: any;
|
|
334
|
-
code: string;
|
|
335
|
-
device: string;
|
|
336
|
-
location: string;
|
|
337
|
-
}, unknown>;
|
|
338
|
-
|
|
339
|
-
declare const useGet2FAMethods: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
340
|
-
method: string;
|
|
341
|
-
with_context: any;
|
|
342
|
-
}, unknown>;
|
|
343
|
-
|
|
344
|
-
declare const useGrantAccess: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
345
|
-
redirect_uri: string;
|
|
346
|
-
state: string;
|
|
347
|
-
client_id: string;
|
|
348
|
-
scopes: string[];
|
|
349
|
-
}, unknown>;
|
|
350
|
-
|
|
351
|
-
declare const useRemoveTotpSetup: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
352
|
-
method: string;
|
|
353
|
-
token: string;
|
|
354
|
-
}, unknown>;
|
|
355
|
-
|
|
356
|
-
declare const useRequestSetupTotp: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
357
|
-
method: string;
|
|
358
|
-
token: string;
|
|
359
|
-
}, unknown>;
|
|
360
|
-
|
|
361
|
-
declare const useSettingsWebRead2fa: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
362
|
-
method: string;
|
|
363
|
-
model: string;
|
|
364
|
-
kwargs: any;
|
|
365
|
-
token: string;
|
|
366
|
-
}, unknown>;
|
|
367
|
-
|
|
368
|
-
declare const useVerifyTotp: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
369
|
-
method: string;
|
|
370
|
-
action_token: string;
|
|
371
|
-
code: string;
|
|
372
|
-
}, unknown>;
|
|
373
|
-
|
|
374
|
-
export { useGetResequence as $, useGetImage as A, useSendComment as B, useUploadImage as C, useDelete as D, useGetAll as E, useGetConversionRate as F, useGetCurrency as G, useGetDetail as H, useGetFieldOnChange as I, useGetListMyBankAccount as J, useModel as K, useOdooDataTransform as L, useOnChangeForm as M, useSave as N, useGetProfile as O, useGetUser as P, useSwitchLocale as Q, useButton as R, useDuplicateRecord as S, useGet2FAMethods as T, useGetActionDetail as U, useGetCalendar as V, useGetGroups as W, useGetListData as X, useGetMenu as Y, useGetPrintReport as Z, useGetProGressBar as _, useForgotPasswordSSO as a, useGetSelection as a0, useGetView as a1, useLoadAction as a2, useLoadMessage as a3, usePrint as a4, useRemoveRow as a5, useRunAction as a6, useSignInSSO as a7, useVerify2FA as a8, useGrantAccess as a9, useRemoveTotpSetup as aa, useRequestSetupTotp as ab, useSettingsWebRead2fa as ac, useVerifyTotp as ad, useUploadFile as ae, useGetProvider as b, useIsValidToken as c, useLoginCredential as d, useLoginSocial as e, useResetPassword as f, useResetPasswordSSO as g, useUpdatePassword as h, useLogout as i, useGetAccessByCode as j, useValidateActionToken as k, useGetCompanyInfo as l, useGetCurrentCompany as m, useGetListCompany as n, useExecuteImport as o, useExportExcel as p, useGetFieldExport as q, useGetFileExcel as r, useParsePreview as s, useUploadFileExcel as t, useForgotPassword as u, useUploadIdFile as v, useChangeStatus as w, useDeleteComment as x, useGetComment as y, useGetFormView as z };
|