@fctc/interface-logic 3.5.6 → 3.5.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/constants.d.mts +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.mjs +1 -1
- package/dist/hooks.d.mts +660 -5
- package/dist/hooks.d.ts +660 -5
- package/dist/hooks.js +2 -2
- package/dist/hooks.mjs +2 -2
- package/dist/provider.d.mts +2 -1
- package/dist/provider.d.ts +2 -1
- package/dist/provider.js +37 -2
- package/dist/provider.mjs +37 -2
- package/dist/services.js +2 -2
- package/dist/services.mjs +2 -2
- package/package.json +1 -1
- package/dist/use-get-pin-code-BJKKezWh.d.mts +0 -662
- package/dist/use-get-pin-code-CGkMoRxA.d.ts +0 -662
|
@@ -1,662 +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, T as TThreadData, C as ContextApi, V as ViewData, c as GetSelectionType, f as GetViewParams } from './view-type-DUiFtWlQ.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 useGetTenantMapping: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
46
|
-
shortName: string;
|
|
47
|
-
service: string;
|
|
48
|
-
}, unknown>;
|
|
49
|
-
|
|
50
|
-
declare const useGetToken: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
51
|
-
phone: string;
|
|
52
|
-
name: string;
|
|
53
|
-
service: string;
|
|
54
|
-
xNode: string;
|
|
55
|
-
}, unknown>;
|
|
56
|
-
|
|
57
|
-
declare const useGetCompanyInfo: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
58
|
-
service?: string;
|
|
59
|
-
id: number;
|
|
60
|
-
}, unknown>;
|
|
61
|
-
|
|
62
|
-
declare const useGetCurrentCompany: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
63
|
-
service?: string;
|
|
64
|
-
}, unknown>;
|
|
65
|
-
|
|
66
|
-
declare const useGetListCompany: (companyIDs?: number[]) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
67
|
-
|
|
68
|
-
declare const useExportExcel: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
69
|
-
model: string;
|
|
70
|
-
domain: any;
|
|
71
|
-
ids: any;
|
|
72
|
-
fields: any;
|
|
73
|
-
type: any;
|
|
74
|
-
importCompat: any;
|
|
75
|
-
context: any;
|
|
76
|
-
groupby: any;
|
|
77
|
-
service?: string;
|
|
78
|
-
xNode?: string;
|
|
79
|
-
}, unknown>;
|
|
80
|
-
|
|
81
|
-
declare const useGetFieldExport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
82
|
-
ids: any;
|
|
83
|
-
model: string;
|
|
84
|
-
isShow?: boolean;
|
|
85
|
-
parentField?: any;
|
|
86
|
-
fieldType?: any;
|
|
87
|
-
parentName?: any;
|
|
88
|
-
prefix?: any;
|
|
89
|
-
name?: any;
|
|
90
|
-
context: any;
|
|
91
|
-
importCompat?: any;
|
|
92
|
-
service?: string;
|
|
93
|
-
xNode?: string;
|
|
94
|
-
}, unknown>;
|
|
95
|
-
|
|
96
|
-
declare const useGetFileExcel: ({ model, service, xNode, context, }: {
|
|
97
|
-
model: string;
|
|
98
|
-
service?: string;
|
|
99
|
-
xNode?: string;
|
|
100
|
-
context: any;
|
|
101
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
102
|
-
|
|
103
|
-
declare const useParsePreview: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
104
|
-
id: any;
|
|
105
|
-
selectedSheet: any;
|
|
106
|
-
isHeader: boolean;
|
|
107
|
-
context: any;
|
|
108
|
-
service?: string;
|
|
109
|
-
xNode?: string;
|
|
110
|
-
}, unknown>;
|
|
111
|
-
|
|
112
|
-
declare const useUploadFileExcel: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
113
|
-
formData: any;
|
|
114
|
-
service?: string;
|
|
115
|
-
xNode?: string;
|
|
116
|
-
}, unknown>;
|
|
117
|
-
|
|
118
|
-
declare const useUploadIdFile: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
119
|
-
formData: any;
|
|
120
|
-
service?: string;
|
|
121
|
-
xNode?: string;
|
|
122
|
-
}, unknown>;
|
|
123
|
-
|
|
124
|
-
declare const useExecuteImport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
125
|
-
fields: any;
|
|
126
|
-
columns: any;
|
|
127
|
-
idFile: any;
|
|
128
|
-
options: any;
|
|
129
|
-
dryrun: any;
|
|
130
|
-
context: any;
|
|
131
|
-
service?: string;
|
|
132
|
-
xNode?: string;
|
|
133
|
-
}, unknown>;
|
|
134
|
-
|
|
135
|
-
declare const useChangeStatus: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
136
|
-
data: any;
|
|
137
|
-
}, unknown>;
|
|
138
|
-
|
|
139
|
-
declare const useDeleteComment: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
140
|
-
data: any;
|
|
141
|
-
}, unknown>;
|
|
142
|
-
|
|
143
|
-
declare const useGetComment: ({ data, queryKey }: {
|
|
144
|
-
data: any;
|
|
145
|
-
queryKey: any;
|
|
146
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
147
|
-
|
|
148
|
-
type TFormView = {
|
|
149
|
-
model: string;
|
|
150
|
-
id?: number | null;
|
|
151
|
-
context?: any;
|
|
152
|
-
};
|
|
153
|
-
declare const useGetFormView: ({ data, queryKey, enabled, }: {
|
|
154
|
-
data: TFormView;
|
|
155
|
-
queryKey?: any;
|
|
156
|
-
enabled?: any;
|
|
157
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
158
|
-
|
|
159
|
-
declare const useGetImage: ({ data, queryKey, src, }: {
|
|
160
|
-
data: any;
|
|
161
|
-
queryKey: any;
|
|
162
|
-
src: any;
|
|
163
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
164
|
-
|
|
165
|
-
declare const useSendComment: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
166
|
-
data: any;
|
|
167
|
-
}, unknown>;
|
|
168
|
-
|
|
169
|
-
declare const useUploadImage: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
170
|
-
formData: any;
|
|
171
|
-
service?: string;
|
|
172
|
-
xNode?: string;
|
|
173
|
-
}, unknown>;
|
|
174
|
-
|
|
175
|
-
declare const useUploadFile: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
176
|
-
formData: any;
|
|
177
|
-
service?: string;
|
|
178
|
-
xNode?: string;
|
|
179
|
-
}, unknown>;
|
|
180
|
-
|
|
181
|
-
declare const useGetThreadData: ({ data, queryKey, enabled, service, xNode, }: {
|
|
182
|
-
data: TThreadData;
|
|
183
|
-
queryKey: any;
|
|
184
|
-
enabled?: boolean;
|
|
185
|
-
service?: string;
|
|
186
|
-
xNode?: string;
|
|
187
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
188
|
-
|
|
189
|
-
declare const useGetThreadMessages: ({ data, queryKey, enabled, service, xNode, }: {
|
|
190
|
-
data: TThreadData;
|
|
191
|
-
queryKey: any;
|
|
192
|
-
enabled?: boolean;
|
|
193
|
-
service?: string;
|
|
194
|
-
xNode?: string;
|
|
195
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
196
|
-
|
|
197
|
-
declare const useGetExternalTabs: ({ data, queryKey, enabled, service, xNode, }: {
|
|
198
|
-
data: {
|
|
199
|
-
method?: string;
|
|
200
|
-
context: ContextApi;
|
|
201
|
-
};
|
|
202
|
-
queryKey: any[];
|
|
203
|
-
enabled?: boolean;
|
|
204
|
-
service?: string;
|
|
205
|
-
xNode?: string;
|
|
206
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
207
|
-
|
|
208
|
-
declare const useDelete: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
209
|
-
ids: any;
|
|
210
|
-
model: string;
|
|
211
|
-
service?: string;
|
|
212
|
-
}, unknown>;
|
|
213
|
-
|
|
214
|
-
declare const useGetAll: ({ data, queryKey, viewResponse }: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
215
|
-
|
|
216
|
-
declare const useGetConversionRate: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
217
|
-
|
|
218
|
-
declare const useGetCurrency: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
219
|
-
|
|
220
|
-
declare const useGetDetail: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
221
|
-
model?: string;
|
|
222
|
-
ids: any;
|
|
223
|
-
specification?: any;
|
|
224
|
-
context?: any;
|
|
225
|
-
service?: string;
|
|
226
|
-
xNode?: string;
|
|
227
|
-
}, unknown>;
|
|
228
|
-
|
|
229
|
-
declare const useGetFieldOnChange: ({ model, service, xNode, enabled, }: {
|
|
230
|
-
model: string;
|
|
231
|
-
service?: string;
|
|
232
|
-
xNode?: string;
|
|
233
|
-
enabled?: boolean;
|
|
234
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
235
|
-
|
|
236
|
-
declare const useGetListMyBankAccount: ({ domain, spectification, model, }: {
|
|
237
|
-
domain: any;
|
|
238
|
-
spectification: any;
|
|
239
|
-
model: string;
|
|
240
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
241
|
-
|
|
242
|
-
declare const useModel: () => {
|
|
243
|
-
initModel: (modelData: BaseModelInit) => BaseModel;
|
|
244
|
-
};
|
|
245
|
-
|
|
246
|
-
declare const useOdooDataTransform: () => {
|
|
247
|
-
toDataJS: (data: Record<string, any>, viewData?: ViewData, model?: string) => {
|
|
248
|
-
[x: string]: any;
|
|
249
|
-
};
|
|
250
|
-
parseORM: (data: Record<string, any>) => {
|
|
251
|
-
[x: string]: any;
|
|
252
|
-
};
|
|
253
|
-
};
|
|
254
|
-
|
|
255
|
-
declare const useOnChangeForm: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
256
|
-
ids: any;
|
|
257
|
-
model: string;
|
|
258
|
-
specification: any;
|
|
259
|
-
context: any;
|
|
260
|
-
object: any;
|
|
261
|
-
fieldChange?: any;
|
|
262
|
-
service?: string;
|
|
263
|
-
xNode?: string;
|
|
264
|
-
}, unknown>;
|
|
265
|
-
|
|
266
|
-
declare const useSave: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
267
|
-
ids: any;
|
|
268
|
-
model: string;
|
|
269
|
-
data: any;
|
|
270
|
-
specification?: any;
|
|
271
|
-
context: any;
|
|
272
|
-
path?: string;
|
|
273
|
-
service?: string;
|
|
274
|
-
xNode?: string;
|
|
275
|
-
}, unknown>;
|
|
276
|
-
|
|
277
|
-
declare const useGetProfile: (service?: string, path?: string) => _tanstack_react_query.UseMutationResult<any, Error, void, unknown>;
|
|
278
|
-
|
|
279
|
-
declare const useGetUser: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
280
|
-
id: any;
|
|
281
|
-
context: ContextApi;
|
|
282
|
-
}, unknown>;
|
|
283
|
-
|
|
284
|
-
type SwitchUserLocaleParams = {
|
|
285
|
-
data: {
|
|
286
|
-
id: number;
|
|
287
|
-
values: any;
|
|
288
|
-
};
|
|
289
|
-
};
|
|
290
|
-
declare const useSwitchLocale: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
291
|
-
data: SwitchUserLocaleParams;
|
|
292
|
-
service: string;
|
|
293
|
-
}, unknown>;
|
|
294
|
-
|
|
295
|
-
declare const useButton: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
296
|
-
model: string;
|
|
297
|
-
ids: Record<string, any>[] | any;
|
|
298
|
-
context: ContextApi;
|
|
299
|
-
method: any;
|
|
300
|
-
service?: string;
|
|
301
|
-
xNode?: string;
|
|
302
|
-
}, unknown>;
|
|
303
|
-
|
|
304
|
-
declare const useDuplicateRecord: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
305
|
-
id: any;
|
|
306
|
-
model: string;
|
|
307
|
-
context: ContextApi;
|
|
308
|
-
service?: string;
|
|
309
|
-
xNode?: string;
|
|
310
|
-
}, unknown>;
|
|
311
|
-
|
|
312
|
-
declare const useGetActionDetail: ({ aid, context, enabled, id, model, queryKey, }: {
|
|
313
|
-
aid: number;
|
|
314
|
-
context: any;
|
|
315
|
-
enabled: boolean;
|
|
316
|
-
id?: number;
|
|
317
|
-
model?: string;
|
|
318
|
-
queryKey?: any;
|
|
319
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
320
|
-
|
|
321
|
-
declare const useGetCalendar: (listDataProps: any, queryKey?: any, enabled?: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
322
|
-
|
|
323
|
-
declare const useGetGroups: ({ model, width_context, }: {
|
|
324
|
-
model: string;
|
|
325
|
-
width_context: any;
|
|
326
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
327
|
-
|
|
328
|
-
declare const useGetListData: (listDataProps: any, queryKey?: any, enabled?: any, service?: string, xNode?: string) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
329
|
-
|
|
330
|
-
declare const useGetMenu: (context: any, specification: any, enabled?: boolean, domain?: any, service?: string) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
331
|
-
|
|
332
|
-
declare const useGetPrintReport: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
333
|
-
id: number;
|
|
334
|
-
}, unknown>;
|
|
335
|
-
|
|
336
|
-
declare const useGetProGressBar: ({ field, color, model, width_context, }: {
|
|
337
|
-
field: any;
|
|
338
|
-
color: any;
|
|
339
|
-
model: string;
|
|
340
|
-
width_context: string;
|
|
341
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
342
|
-
|
|
343
|
-
declare const useGetSelection: ({ data, queryKey, enabled, service, xNode, }: {
|
|
344
|
-
data: GetSelectionType;
|
|
345
|
-
queryKey: any[];
|
|
346
|
-
enabled?: boolean;
|
|
347
|
-
service?: string;
|
|
348
|
-
xNode?: string;
|
|
349
|
-
}) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
350
|
-
|
|
351
|
-
type UseGetViewProps = {
|
|
352
|
-
viewParams: GetViewParams;
|
|
353
|
-
enabled?: boolean;
|
|
354
|
-
};
|
|
355
|
-
declare const useGetView: ({ viewParams, enabled }: UseGetViewProps) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
356
|
-
|
|
357
|
-
declare const useLoadAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
358
|
-
idAction: any;
|
|
359
|
-
context: ContextApi;
|
|
360
|
-
service?: string;
|
|
361
|
-
xNode?: string;
|
|
362
|
-
}, unknown>;
|
|
363
|
-
|
|
364
|
-
declare const useLoadMessage: () => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
365
|
-
|
|
366
|
-
declare const usePrint: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
367
|
-
id: number;
|
|
368
|
-
report: any;
|
|
369
|
-
db: any;
|
|
370
|
-
}, unknown>;
|
|
371
|
-
|
|
372
|
-
declare const useRemoveRow: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
373
|
-
model: string;
|
|
374
|
-
ids: Record<string, any>[] | any;
|
|
375
|
-
context: ContextApi;
|
|
376
|
-
service?: string;
|
|
377
|
-
xNode?: string;
|
|
378
|
-
}, unknown>;
|
|
379
|
-
|
|
380
|
-
declare const useGetResequence: (model: string, resIds: any, context: any, offset: any) => _tanstack_react_query.UseQueryResult<any, Error>;
|
|
381
|
-
|
|
382
|
-
declare const useRunAction: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
383
|
-
idAction: any;
|
|
384
|
-
context: ContextApi;
|
|
385
|
-
service?: string;
|
|
386
|
-
xNode?: string;
|
|
387
|
-
}, unknown>;
|
|
388
|
-
|
|
389
|
-
declare const useSignInSSO: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
390
|
-
redirect_uri: string;
|
|
391
|
-
state: string;
|
|
392
|
-
client_id: string;
|
|
393
|
-
response_type: string;
|
|
394
|
-
path: string;
|
|
395
|
-
scope: string;
|
|
396
|
-
}, unknown>;
|
|
397
|
-
|
|
398
|
-
declare const useVerify2FA: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
399
|
-
method: string;
|
|
400
|
-
with_context: any;
|
|
401
|
-
code: string;
|
|
402
|
-
device: string;
|
|
403
|
-
location: string;
|
|
404
|
-
}, unknown>;
|
|
405
|
-
|
|
406
|
-
declare const useGet2FAMethods: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
407
|
-
method: string;
|
|
408
|
-
with_context: any;
|
|
409
|
-
}, unknown>;
|
|
410
|
-
|
|
411
|
-
declare const useGrantAccess: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
412
|
-
redirect_uri: string;
|
|
413
|
-
state: string;
|
|
414
|
-
client_id: string;
|
|
415
|
-
scopes: string[];
|
|
416
|
-
}, unknown>;
|
|
417
|
-
|
|
418
|
-
declare const useRemoveTotpSetup: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
419
|
-
method: string;
|
|
420
|
-
token: string;
|
|
421
|
-
}, unknown>;
|
|
422
|
-
|
|
423
|
-
declare const useRequestSetupTotp: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
424
|
-
method: string;
|
|
425
|
-
token: string;
|
|
426
|
-
}, unknown>;
|
|
427
|
-
|
|
428
|
-
declare const useSettingsWebRead2fa: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
429
|
-
method: string;
|
|
430
|
-
model: string;
|
|
431
|
-
kwargs: any;
|
|
432
|
-
token: string;
|
|
433
|
-
}, unknown>;
|
|
434
|
-
|
|
435
|
-
declare const useVerifyTotp: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
436
|
-
method: string;
|
|
437
|
-
action_token: string;
|
|
438
|
-
code: string;
|
|
439
|
-
}, unknown>;
|
|
440
|
-
|
|
441
|
-
declare const useGetASession: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
442
|
-
model: string;
|
|
443
|
-
args: [];
|
|
444
|
-
domain: [];
|
|
445
|
-
service?: string;
|
|
446
|
-
xNode?: string;
|
|
447
|
-
}, unknown>;
|
|
448
|
-
|
|
449
|
-
declare const useUpdateClosedSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
450
|
-
model: string;
|
|
451
|
-
domain: [];
|
|
452
|
-
values: {};
|
|
453
|
-
service?: string;
|
|
454
|
-
xNode?: string;
|
|
455
|
-
}, unknown>;
|
|
456
|
-
|
|
457
|
-
declare const useManageSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
458
|
-
model: string;
|
|
459
|
-
ids: any;
|
|
460
|
-
args: any;
|
|
461
|
-
kwargs: any;
|
|
462
|
-
service?: string;
|
|
463
|
-
xNode?: string;
|
|
464
|
-
method: string;
|
|
465
|
-
}, unknown>;
|
|
466
|
-
|
|
467
|
-
declare const useHandleClosingSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
468
|
-
model: string;
|
|
469
|
-
method: string;
|
|
470
|
-
ids: any;
|
|
471
|
-
kwargs: any;
|
|
472
|
-
service?: string;
|
|
473
|
-
xNode?: string;
|
|
474
|
-
}, unknown>;
|
|
475
|
-
|
|
476
|
-
declare const useCreateSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
477
|
-
model: string;
|
|
478
|
-
configId: number;
|
|
479
|
-
service?: string;
|
|
480
|
-
xNode?: string;
|
|
481
|
-
}, unknown>;
|
|
482
|
-
|
|
483
|
-
declare const useGetPos: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
484
|
-
model: string;
|
|
485
|
-
args: any;
|
|
486
|
-
domain: any;
|
|
487
|
-
service?: string;
|
|
488
|
-
xNode?: string;
|
|
489
|
-
}, unknown>;
|
|
490
|
-
|
|
491
|
-
declare const useCreateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
492
|
-
model: string;
|
|
493
|
-
args: any;
|
|
494
|
-
service?: string;
|
|
495
|
-
xNode?: string;
|
|
496
|
-
}, unknown>;
|
|
497
|
-
|
|
498
|
-
declare const useGetList: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
499
|
-
model: string;
|
|
500
|
-
domain: any;
|
|
501
|
-
service?: string;
|
|
502
|
-
xNode?: string;
|
|
503
|
-
specification: any;
|
|
504
|
-
offset: number;
|
|
505
|
-
limit: number;
|
|
506
|
-
}, unknown>;
|
|
507
|
-
|
|
508
|
-
declare const useUpdateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
509
|
-
model: string;
|
|
510
|
-
domain: any;
|
|
511
|
-
values: any;
|
|
512
|
-
service?: string;
|
|
513
|
-
xNode?: string;
|
|
514
|
-
}, unknown>;
|
|
515
|
-
|
|
516
|
-
declare const useDeleteEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
517
|
-
model: string;
|
|
518
|
-
ids: any;
|
|
519
|
-
service?: string;
|
|
520
|
-
xNode?: string;
|
|
521
|
-
method: string;
|
|
522
|
-
}, unknown>;
|
|
523
|
-
|
|
524
|
-
declare const useLoadDataPosSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
525
|
-
model: string;
|
|
526
|
-
ids: any;
|
|
527
|
-
service?: string;
|
|
528
|
-
xNode?: string;
|
|
529
|
-
}, unknown>;
|
|
530
|
-
|
|
531
|
-
declare const useManageOnChange: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
532
|
-
model: string;
|
|
533
|
-
ids: any;
|
|
534
|
-
args: any;
|
|
535
|
-
service?: string;
|
|
536
|
-
xNode?: string;
|
|
537
|
-
}, unknown>;
|
|
538
|
-
|
|
539
|
-
declare const useGenSerialNumber: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
540
|
-
kwargs: any;
|
|
541
|
-
context: ContextApi;
|
|
542
|
-
service?: string;
|
|
543
|
-
xNode?: string;
|
|
544
|
-
}, unknown>;
|
|
545
|
-
|
|
546
|
-
declare const useGetOrderLine: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
547
|
-
model: string;
|
|
548
|
-
ids: any;
|
|
549
|
-
specification: any;
|
|
550
|
-
service?: string;
|
|
551
|
-
xNode?: string;
|
|
552
|
-
}, unknown>;
|
|
553
|
-
|
|
554
|
-
declare const useGetProductImage: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
555
|
-
model: string;
|
|
556
|
-
fields: any;
|
|
557
|
-
limit: number;
|
|
558
|
-
offset: number;
|
|
559
|
-
domain: any;
|
|
560
|
-
service?: string;
|
|
561
|
-
xNode?: string;
|
|
562
|
-
}, unknown>;
|
|
563
|
-
|
|
564
|
-
declare const useAddEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
565
|
-
model: string;
|
|
566
|
-
values: any;
|
|
567
|
-
service?: string;
|
|
568
|
-
xNode?: string;
|
|
569
|
-
isCreateEndpoint?: boolean;
|
|
570
|
-
}, unknown>;
|
|
571
|
-
|
|
572
|
-
declare const useCheckPayment: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
573
|
-
model: string;
|
|
574
|
-
ids: any;
|
|
575
|
-
withContext: any;
|
|
576
|
-
service?: string;
|
|
577
|
-
xNode?: string;
|
|
578
|
-
}, unknown>;
|
|
579
|
-
|
|
580
|
-
declare const useHandleCloseSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
581
|
-
model: string;
|
|
582
|
-
ids: any;
|
|
583
|
-
service?: string;
|
|
584
|
-
xNode?: string;
|
|
585
|
-
method: string;
|
|
586
|
-
}, unknown>;
|
|
587
|
-
|
|
588
|
-
declare const useHandleClosingDetailSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
589
|
-
model: string;
|
|
590
|
-
ids: any;
|
|
591
|
-
method: string;
|
|
592
|
-
service?: string;
|
|
593
|
-
xNode?: string;
|
|
594
|
-
kwargs: any;
|
|
595
|
-
}, unknown>;
|
|
596
|
-
|
|
597
|
-
declare const useCreatePosConfig: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
598
|
-
model: string;
|
|
599
|
-
name: string;
|
|
600
|
-
modulePosRestaurant: string;
|
|
601
|
-
service?: string;
|
|
602
|
-
xNode?: string;
|
|
603
|
-
}, unknown>;
|
|
604
|
-
|
|
605
|
-
declare const useSearchJournal: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
606
|
-
model: string;
|
|
607
|
-
method: string;
|
|
608
|
-
args: any;
|
|
609
|
-
kwargs: any;
|
|
610
|
-
service?: string;
|
|
611
|
-
xNode?: string;
|
|
612
|
-
}, unknown>;
|
|
613
|
-
|
|
614
|
-
declare const useGetPreparationDisplayData: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
615
|
-
ids: any;
|
|
616
|
-
service?: string;
|
|
617
|
-
xNode?: string;
|
|
618
|
-
}, unknown>;
|
|
619
|
-
|
|
620
|
-
declare const useChangeOrderPreparationState: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
621
|
-
orderId: number;
|
|
622
|
-
stageId: number;
|
|
623
|
-
preparationDisplayId: number;
|
|
624
|
-
service?: string;
|
|
625
|
-
xNode?: string;
|
|
626
|
-
}, unknown>;
|
|
627
|
-
|
|
628
|
-
declare const useUpdateOrderStatus: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
629
|
-
orderId: number;
|
|
630
|
-
state: string;
|
|
631
|
-
service?: string;
|
|
632
|
-
xNode?: string;
|
|
633
|
-
}, unknown>;
|
|
634
|
-
|
|
635
|
-
declare const useProcessOrder: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
636
|
-
orderId: number;
|
|
637
|
-
service?: string;
|
|
638
|
-
xNode?: string;
|
|
639
|
-
}, unknown>;
|
|
640
|
-
|
|
641
|
-
declare const useGeneratePaymentQrInfo: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
642
|
-
orderId: number;
|
|
643
|
-
amount: number;
|
|
644
|
-
posSessionId: number;
|
|
645
|
-
service?: string;
|
|
646
|
-
xNode?: string;
|
|
647
|
-
}, unknown>;
|
|
648
|
-
|
|
649
|
-
declare const useSavePinCode: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
650
|
-
serialNumber: string;
|
|
651
|
-
pinCode: string;
|
|
652
|
-
service?: string;
|
|
653
|
-
xNode?: string;
|
|
654
|
-
}, unknown>;
|
|
655
|
-
|
|
656
|
-
declare const useGetPinCode: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
657
|
-
serialNumber: string;
|
|
658
|
-
service?: string;
|
|
659
|
-
xNode?: string;
|
|
660
|
-
}, unknown>;
|
|
661
|
-
|
|
662
|
-
export { useSignInSSO as $, useGetListData as A, useGetListMyBankAccount as B, useGetMenu as C, useGetPrintReport as D, useGetProfile as E, useGetProGressBar as F, useGetProvider as G, useGetResequence as H, useGetSelection as I, useGetUser as J, useGetView as K, useIsValidToken as L, useLoadAction as M, useLoadMessage as N, useLoginCredential as O, useLoginSocial as P, useModel as Q, useOdooDataTransform as R, useOnChangeForm as S, useParsePreview as T, usePrint as U, useRemoveRow as V, useResetPassword as W, useResetPasswordSSO as X, useRunAction as Y, useSave as Z, useSendComment as _, useChangeStatus as a, useSwitchLocale as a0, useUpdatePassword as a1, useUploadFileExcel as a2, useUploadIdFile as a3, useUploadImage as a4, useVerify2FA as a5, useGetAccessByCode as a6, useLogout as a7, useGrantAccess as a8, useRemoveTotpSetup as a9, useGetTenantMapping as aA, useGetToken as aB, useGetPreparationDisplayData as aC, useChangeOrderPreparationState as aD, useUpdateOrderStatus as aE, useGetThreadData as aF, useGetThreadMessages as aG, useGetExternalTabs as aH, useProcessOrder as aI, useGeneratePaymentQrInfo as aJ, useSavePinCode as aK, useGetPinCode as aL, useRequestSetupTotp as aa, useSettingsWebRead2fa as ab, useVerifyTotp as ac, useValidateActionToken as ad, useUploadFile as ae, useGetASession as af, useUpdateClosedSession as ag, useManageSession as ah, useHandleClosingSession as ai, useCreateSession as aj, useGetPos as ak, useCreateEntity as al, useGetList as am, useUpdateEntity as an, useDeleteEntity as ao, useLoadDataPosSession as ap, useManageOnChange as aq, useGenSerialNumber as ar, useGetOrderLine as as, useGetProductImage as at, useAddEntity as au, useCheckPayment as av, useHandleCloseSession as aw, useHandleClosingDetailSession as ax, useCreatePosConfig as ay, useSearchJournal as az, useDelete as b, useDeleteComment as c, useDuplicateRecord as d, useExecuteImport as e, useExportExcel as f, useForgotPassword as g, useForgotPasswordSSO as h, useGet2FAMethods as i, useGetActionDetail as j, useGetAll as k, useGetCalendar as l, useGetComment as m, useGetCompanyInfo as n, useGetConversionRate as o, useGetCurrency as p, useGetCurrentCompany as q, useGetDetail as r, useGetFieldExport as s, useGetFieldOnChange as t, useButton as u, useGetFileExcel as v, useGetFormView as w, useGetGroups as x, useGetImage as y, useGetListCompany as z };
|