@fctc/interface-logic 2.4.2 → 2.4.4
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.js +1 -1
- package/dist/configs.mjs +1 -1
- package/dist/environment.js +1 -1
- package/dist/environment.mjs +1 -1
- package/dist/hooks.d.mts +14 -5
- package/dist/hooks.d.ts +14 -5
- package/dist/hooks.js +99 -50
- package/dist/hooks.mjs +100 -51
- package/dist/provider.d.mts +1 -1
- package/dist/provider.d.ts +1 -1
- package/dist/provider.js +100 -51
- package/dist/provider.mjs +101 -52
- package/dist/services.d.mts +21 -13
- package/dist/services.d.ts +21 -13
- package/dist/services.js +57 -25
- package/dist/services.mjs +58 -26
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils.d.mts +2 -1
- package/dist/utils.d.ts +2 -1
- package/dist/utils.js +10 -5
- package/dist/utils.mjs +10 -5
- package/dist/{view-type-p4JdAOsz.d.mts → view-type-xxw9OeSR.d.mts} +4 -0
- package/dist/{view-type-p4JdAOsz.d.ts → view-type-xxw9OeSR.d.ts} +4 -0
- package/package.json +1 -1
|
@@ -59,6 +59,7 @@ interface GetDetailParams {
|
|
|
59
59
|
specification?: Specification;
|
|
60
60
|
context?: ContextApi;
|
|
61
61
|
service?: string;
|
|
62
|
+
xNode?: string;
|
|
62
63
|
}
|
|
63
64
|
interface SaveParams {
|
|
64
65
|
model: string;
|
|
@@ -68,6 +69,7 @@ interface SaveParams {
|
|
|
68
69
|
context?: ContextApi;
|
|
69
70
|
path?: string;
|
|
70
71
|
service?: string;
|
|
72
|
+
xNode?: string;
|
|
71
73
|
}
|
|
72
74
|
interface DeleteParams {
|
|
73
75
|
ids?: number[];
|
|
@@ -82,6 +84,7 @@ interface OnChangeParams {
|
|
|
82
84
|
context?: ContextApi;
|
|
83
85
|
fieldChange?: string[];
|
|
84
86
|
service?: string;
|
|
87
|
+
xNode?: string;
|
|
85
88
|
}
|
|
86
89
|
interface ViewData {
|
|
87
90
|
models?: {
|
|
@@ -113,6 +116,7 @@ interface GetViewParams {
|
|
|
113
116
|
options?: Option;
|
|
114
117
|
aid?: number | string | null | boolean;
|
|
115
118
|
service?: string;
|
|
119
|
+
xNode?: string;
|
|
116
120
|
}
|
|
117
121
|
|
|
118
122
|
export type { ContextApi as C, DeleteParams as D, ForgotPasswordBody as F, GetAllParams as G, LoginCredentialBody as L, OnChangeParams as O, ResetPasswordRequest as R, SaveParams as S, UpdatePasswordRequest as U, ViewData as V, GetDetailParams as a, GetListParams as b, GetSelectionType as c, SocialTokenBody as d, Specification as e, GetViewParams as f, View as g, updatePasswordBody as u };
|