@fctc/interface-logic 2.5.5 → 2.5.7
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 +4 -2
- package/dist/constants.d.ts +4 -2
- package/dist/constants.js +2 -0
- package/dist/constants.mjs +2 -0
- package/dist/hooks.d.mts +31 -356
- package/dist/hooks.d.ts +31 -356
- package/dist/hooks.js +302 -7
- package/dist/hooks.mjs +297 -7
- package/dist/provider.d.mts +8 -7
- package/dist/provider.d.ts +8 -7
- package/dist/provider.js +183 -7
- package/dist/provider.mjs +183 -7
- package/dist/services.d.mts +37 -0
- package/dist/services.d.ts +37 -0
- package/dist/services.js +182 -1
- package/dist/services.mjs +182 -1
- package/dist/use-verify-totp-BLzI9aQL.d.mts +374 -0
- package/dist/use-verify-totp-lH2HZdt4.d.ts +374 -0
- package/package.json +90 -90
package/dist/constants.d.mts
CHANGED
|
@@ -20,7 +20,8 @@ declare enum MethodConstants {
|
|
|
20
20
|
UNLINK = "unlink",
|
|
21
21
|
ONCHANGE = "onchange",
|
|
22
22
|
GET_ONCHANGE_FIELDS = "get_fields_onchange",
|
|
23
|
-
GET_FIELD_VIEW = "get_fields_view_v2"
|
|
23
|
+
GET_FIELD_VIEW = "get_fields_view_v2",
|
|
24
|
+
CREATE = "create"
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
declare enum UriConstants {
|
|
@@ -50,7 +51,8 @@ declare enum UriConstants {
|
|
|
50
51
|
SIGNIN_SSO = "/signin-sso/oauth",
|
|
51
52
|
GRANT_ACCESS = "/grant-access",
|
|
52
53
|
TOKEN_BY_CODE = "/token",
|
|
53
|
-
LOGOUT = "/logout"
|
|
54
|
+
LOGOUT = "/logout",
|
|
55
|
+
CREATE_UPDATE = "/create_update"
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
declare enum FieldTypeConstants {
|
package/dist/constants.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ declare enum MethodConstants {
|
|
|
20
20
|
UNLINK = "unlink",
|
|
21
21
|
ONCHANGE = "onchange",
|
|
22
22
|
GET_ONCHANGE_FIELDS = "get_fields_onchange",
|
|
23
|
-
GET_FIELD_VIEW = "get_fields_view_v2"
|
|
23
|
+
GET_FIELD_VIEW = "get_fields_view_v2",
|
|
24
|
+
CREATE = "create"
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
declare enum UriConstants {
|
|
@@ -50,7 +51,8 @@ declare enum UriConstants {
|
|
|
50
51
|
SIGNIN_SSO = "/signin-sso/oauth",
|
|
51
52
|
GRANT_ACCESS = "/grant-access",
|
|
52
53
|
TOKEN_BY_CODE = "/token",
|
|
53
|
-
LOGOUT = "/logout"
|
|
54
|
+
LOGOUT = "/logout",
|
|
55
|
+
CREATE_UPDATE = "/create_update"
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
declare enum FieldTypeConstants {
|
package/dist/constants.js
CHANGED
|
@@ -62,6 +62,7 @@ var MethodConstants = /* @__PURE__ */ ((MethodConstants2) => {
|
|
|
62
62
|
MethodConstants2["ONCHANGE"] = "onchange";
|
|
63
63
|
MethodConstants2["GET_ONCHANGE_FIELDS"] = "get_fields_onchange";
|
|
64
64
|
MethodConstants2["GET_FIELD_VIEW"] = "get_fields_view_v2";
|
|
65
|
+
MethodConstants2["CREATE"] = "create";
|
|
65
66
|
return MethodConstants2;
|
|
66
67
|
})(MethodConstants || {});
|
|
67
68
|
|
|
@@ -94,6 +95,7 @@ var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
|
94
95
|
UriConstants2["GRANT_ACCESS"] = "/grant-access";
|
|
95
96
|
UriConstants2["TOKEN_BY_CODE"] = "/token";
|
|
96
97
|
UriConstants2["LOGOUT"] = "/logout";
|
|
98
|
+
UriConstants2["CREATE_UPDATE"] = "/create_update";
|
|
97
99
|
return UriConstants2;
|
|
98
100
|
})(UriConstants || {});
|
|
99
101
|
|
package/dist/constants.mjs
CHANGED
|
@@ -24,6 +24,7 @@ var MethodConstants = /* @__PURE__ */ ((MethodConstants2) => {
|
|
|
24
24
|
MethodConstants2["ONCHANGE"] = "onchange";
|
|
25
25
|
MethodConstants2["GET_ONCHANGE_FIELDS"] = "get_fields_onchange";
|
|
26
26
|
MethodConstants2["GET_FIELD_VIEW"] = "get_fields_view_v2";
|
|
27
|
+
MethodConstants2["CREATE"] = "create";
|
|
27
28
|
return MethodConstants2;
|
|
28
29
|
})(MethodConstants || {});
|
|
29
30
|
|
|
@@ -56,6 +57,7 @@ var UriConstants = /* @__PURE__ */ ((UriConstants2) => {
|
|
|
56
57
|
UriConstants2["GRANT_ACCESS"] = "/grant-access";
|
|
57
58
|
UriConstants2["TOKEN_BY_CODE"] = "/token";
|
|
58
59
|
UriConstants2["LOGOUT"] = "/logout";
|
|
60
|
+
UriConstants2["CREATE_UPDATE"] = "/create_update";
|
|
59
61
|
return UriConstants2;
|
|
60
62
|
})(UriConstants || {});
|
|
61
63
|
|
package/dist/hooks.d.mts
CHANGED
|
@@ -1,374 +1,49 @@
|
|
|
1
|
+
export { u as useButton, a as useChangeStatus, b as useDelete, c as useDeleteComment, d as useDuplicateRecord, e as useExecuteImport, f as useExportExcel, g as useForgotPassword, h as useForgotPasswordSSO, i as useGet2FAMethods, a6 as useGetAccessByCode, j as useGetActionDetail, k as useGetAll, l as useGetCalendar, m as useGetComment, n as useGetCompanyInfo, o as useGetConversionRate, p as useGetCurrency, q as useGetCurrentCompany, r as useGetDetail, s as useGetFieldExport, t as useGetFieldOnChange, v as useGetFileExcel, w as useGetFormView, x as useGetGroups, y as useGetImage, z as useGetListCompany, A as useGetListData, B as useGetListMyBankAccount, C as useGetMenu, D as useGetPrintReport, F as useGetProGressBar, E as useGetProfile, G as useGetProvider, H as useGetResequence, I as useGetSelection, J as useGetUser, K as useGetView, a8 as useGrantAccess, L as useIsValidToken, M as useLoadAction, N as useLoadMessage, O as useLoginCredential, P as useLoginSocial, a7 as useLogout, Q as useModel, R as useOdooDataTransform, S as useOnChangeForm, T as useParsePreview, U as usePrint, V as useRemoveRow, a9 as useRemoveTotpSetup, aa as useRequestSetupTotp, W as useResetPassword, X as useResetPasswordSSO, Y as useRunAction, Z as useSave, _ as useSendComment, ab as useSettingsWebRead2fa, $ as useSignInSSO, a0 as useSwitchLocale, a1 as useUpdatePassword, ae as useUploadFile, a2 as useUploadFileExcel, a3 as useUploadIdFile, a4 as useUploadImage, ad as useValidateActionToken, a5 as useVerify2FA, ac as useVerifyTotp } from './use-verify-totp-BLzI9aQL.mjs';
|
|
1
2
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
3
|
+
import './view-type-xxw9OeSR.mjs';
|
|
4
|
+
import './base-model-type-DD8uZnDP.mjs';
|
|
5
|
+
import './models.mjs';
|
|
5
6
|
|
|
6
|
-
declare const
|
|
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 = {
|
|
7
|
+
declare const useGetASession: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
117
8
|
model: string;
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
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;
|
|
9
|
+
args: [];
|
|
10
|
+
domain: [];
|
|
11
|
+
service: string;
|
|
12
|
+
xNode: string;
|
|
139
13
|
}, unknown>;
|
|
140
14
|
|
|
141
|
-
declare const
|
|
142
|
-
formData: any;
|
|
143
|
-
}, unknown>;
|
|
144
|
-
|
|
145
|
-
declare const useDelete: () => _tanstack_react_query.UseMutationResult<any, Error, {
|
|
146
|
-
ids: any;
|
|
15
|
+
declare const useUpdateClosedSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
147
16
|
model: string;
|
|
148
|
-
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
|
|
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;
|
|
17
|
+
domain: [];
|
|
18
|
+
values: {};
|
|
19
|
+
service: string;
|
|
20
|
+
xNode: string;
|
|
164
21
|
}, unknown>;
|
|
165
22
|
|
|
166
|
-
declare const
|
|
23
|
+
declare const useManageSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
167
24
|
model: string;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
|
|
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, {
|
|
25
|
+
ids: [];
|
|
26
|
+
args: [];
|
|
27
|
+
kwargs: {};
|
|
28
|
+
service: string;
|
|
29
|
+
xNode: string;
|
|
332
30
|
method: string;
|
|
333
|
-
with_context: any;
|
|
334
|
-
code: string;
|
|
335
|
-
device: string;
|
|
336
|
-
location: string;
|
|
337
31
|
}, unknown>;
|
|
338
32
|
|
|
339
|
-
declare const
|
|
340
|
-
|
|
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, {
|
|
33
|
+
declare const useHandleClosingSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
34
|
+
model: string;
|
|
357
35
|
method: string;
|
|
358
|
-
|
|
36
|
+
ids: [];
|
|
37
|
+
kwargs: {};
|
|
38
|
+
service: string;
|
|
39
|
+
xNode: string;
|
|
359
40
|
}, unknown>;
|
|
360
41
|
|
|
361
|
-
declare const
|
|
362
|
-
method: string;
|
|
42
|
+
declare const useCreateSession: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
363
43
|
model: string;
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
declare const useVerifyTotp: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
369
|
-
method: string;
|
|
370
|
-
action_token: string;
|
|
371
|
-
code: string;
|
|
44
|
+
configId: number;
|
|
45
|
+
service: string;
|
|
46
|
+
xNode: string;
|
|
372
47
|
}, unknown>;
|
|
373
48
|
|
|
374
|
-
export {
|
|
49
|
+
export { useCreateSession, useGetASession, useHandleClosingSession, useManageSession, useUpdateClosedSession };
|