@fctc/interface-logic 4.0.9 → 4.1.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 +2 -2
- package/dist/hooks.d.ts +2 -2
- package/package.json +1 -1
package/dist/hooks.d.mts
CHANGED
|
@@ -512,8 +512,8 @@ declare const useGetList: () => _tanstack_react_query.UseMutationResult<unknown,
|
|
|
512
512
|
service?: string;
|
|
513
513
|
xNode?: string;
|
|
514
514
|
specification: any;
|
|
515
|
-
offset
|
|
516
|
-
limit
|
|
515
|
+
offset?: number;
|
|
516
|
+
limit?: number;
|
|
517
517
|
}, unknown>;
|
|
518
518
|
|
|
519
519
|
declare const useUpdateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
package/dist/hooks.d.ts
CHANGED
|
@@ -512,8 +512,8 @@ declare const useGetList: () => _tanstack_react_query.UseMutationResult<unknown,
|
|
|
512
512
|
service?: string;
|
|
513
513
|
xNode?: string;
|
|
514
514
|
specification: any;
|
|
515
|
-
offset
|
|
516
|
-
limit
|
|
515
|
+
offset?: number;
|
|
516
|
+
limit?: number;
|
|
517
517
|
}, unknown>;
|
|
518
518
|
|
|
519
519
|
declare const useUpdateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|