@fctc/interface-logic 2.7.1 → 2.7.3
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 +7 -5
- package/dist/hooks.d.ts +7 -5
- package/dist/hooks.js +11 -3
- package/dist/hooks.mjs +11 -3
- package/dist/provider.js +11 -3
- package/dist/provider.mjs +11 -3
- package/dist/services.d.mts +8 -6
- package/dist/services.d.ts +8 -6
- package/dist/services.js +5 -1
- package/dist/services.mjs +5 -1
- package/package.json +1 -1
package/dist/hooks.d.mts
CHANGED
|
@@ -423,30 +423,32 @@ declare const useGetPos: () => _tanstack_react_query.UseMutationResult<unknown,
|
|
|
423
423
|
|
|
424
424
|
declare const useCreateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
425
425
|
model: string;
|
|
426
|
-
args:
|
|
426
|
+
args: any;
|
|
427
427
|
service: string;
|
|
428
428
|
xNode: string;
|
|
429
429
|
}, unknown>;
|
|
430
430
|
|
|
431
431
|
declare const useGetList: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
432
432
|
model: string;
|
|
433
|
-
domain:
|
|
433
|
+
domain: any;
|
|
434
434
|
service: string;
|
|
435
435
|
xNode: string;
|
|
436
436
|
specification: any;
|
|
437
|
+
offset: number;
|
|
438
|
+
limit: number;
|
|
437
439
|
}, unknown>;
|
|
438
440
|
|
|
439
441
|
declare const useUpdateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
440
442
|
model: string;
|
|
441
|
-
domain:
|
|
442
|
-
values:
|
|
443
|
+
domain: any;
|
|
444
|
+
values: any;
|
|
443
445
|
service: string;
|
|
444
446
|
xNode: string;
|
|
445
447
|
}, unknown>;
|
|
446
448
|
|
|
447
449
|
declare const useDeleteEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
448
450
|
model: string;
|
|
449
|
-
ids:
|
|
451
|
+
ids: any;
|
|
450
452
|
service: string;
|
|
451
453
|
xNode: string;
|
|
452
454
|
}, unknown>;
|
package/dist/hooks.d.ts
CHANGED
|
@@ -423,30 +423,32 @@ declare const useGetPos: () => _tanstack_react_query.UseMutationResult<unknown,
|
|
|
423
423
|
|
|
424
424
|
declare const useCreateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
425
425
|
model: string;
|
|
426
|
-
args:
|
|
426
|
+
args: any;
|
|
427
427
|
service: string;
|
|
428
428
|
xNode: string;
|
|
429
429
|
}, unknown>;
|
|
430
430
|
|
|
431
431
|
declare const useGetList: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
432
432
|
model: string;
|
|
433
|
-
domain:
|
|
433
|
+
domain: any;
|
|
434
434
|
service: string;
|
|
435
435
|
xNode: string;
|
|
436
436
|
specification: any;
|
|
437
|
+
offset: number;
|
|
438
|
+
limit: number;
|
|
437
439
|
}, unknown>;
|
|
438
440
|
|
|
439
441
|
declare const useUpdateEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
440
442
|
model: string;
|
|
441
|
-
domain:
|
|
442
|
-
values:
|
|
443
|
+
domain: any;
|
|
444
|
+
values: any;
|
|
443
445
|
service: string;
|
|
444
446
|
xNode: string;
|
|
445
447
|
}, unknown>;
|
|
446
448
|
|
|
447
449
|
declare const useDeleteEntity: () => _tanstack_react_query.UseMutationResult<unknown, Error, {
|
|
448
450
|
model: string;
|
|
449
|
-
ids:
|
|
451
|
+
ids: any;
|
|
450
452
|
service: string;
|
|
451
453
|
xNode: string;
|
|
452
454
|
}, unknown>;
|
package/dist/hooks.js
CHANGED
|
@@ -4825,13 +4825,17 @@ function useViewService() {
|
|
|
4825
4825
|
domain,
|
|
4826
4826
|
xNode,
|
|
4827
4827
|
service,
|
|
4828
|
-
specification
|
|
4828
|
+
specification,
|
|
4829
|
+
offset,
|
|
4830
|
+
limit
|
|
4829
4831
|
}) => {
|
|
4830
4832
|
const jsonData = {
|
|
4831
4833
|
model,
|
|
4832
4834
|
method: "web_search_read" /* WEB_SEARCH_READ */,
|
|
4833
4835
|
kwargs: {
|
|
4834
4836
|
domain,
|
|
4837
|
+
offset,
|
|
4838
|
+
limit,
|
|
4835
4839
|
specification
|
|
4836
4840
|
}
|
|
4837
4841
|
};
|
|
@@ -6506,14 +6510,18 @@ var useGetList = () => {
|
|
|
6506
6510
|
domain,
|
|
6507
6511
|
xNode,
|
|
6508
6512
|
service,
|
|
6509
|
-
specification
|
|
6513
|
+
specification,
|
|
6514
|
+
offset,
|
|
6515
|
+
limit
|
|
6510
6516
|
}) => {
|
|
6511
6517
|
return getList({
|
|
6512
6518
|
model,
|
|
6513
6519
|
domain,
|
|
6514
6520
|
service,
|
|
6515
6521
|
xNode,
|
|
6516
|
-
specification
|
|
6522
|
+
specification,
|
|
6523
|
+
offset,
|
|
6524
|
+
limit
|
|
6517
6525
|
});
|
|
6518
6526
|
}
|
|
6519
6527
|
});
|
package/dist/hooks.mjs
CHANGED
|
@@ -4710,13 +4710,17 @@ function useViewService() {
|
|
|
4710
4710
|
domain,
|
|
4711
4711
|
xNode,
|
|
4712
4712
|
service,
|
|
4713
|
-
specification
|
|
4713
|
+
specification,
|
|
4714
|
+
offset,
|
|
4715
|
+
limit
|
|
4714
4716
|
}) => {
|
|
4715
4717
|
const jsonData = {
|
|
4716
4718
|
model,
|
|
4717
4719
|
method: "web_search_read" /* WEB_SEARCH_READ */,
|
|
4718
4720
|
kwargs: {
|
|
4719
4721
|
domain,
|
|
4722
|
+
offset,
|
|
4723
|
+
limit,
|
|
4720
4724
|
specification
|
|
4721
4725
|
}
|
|
4722
4726
|
};
|
|
@@ -6391,14 +6395,18 @@ var useGetList = () => {
|
|
|
6391
6395
|
domain,
|
|
6392
6396
|
xNode,
|
|
6393
6397
|
service,
|
|
6394
|
-
specification
|
|
6398
|
+
specification,
|
|
6399
|
+
offset,
|
|
6400
|
+
limit
|
|
6395
6401
|
}) => {
|
|
6396
6402
|
return getList({
|
|
6397
6403
|
model,
|
|
6398
6404
|
domain,
|
|
6399
6405
|
service,
|
|
6400
6406
|
xNode,
|
|
6401
|
-
specification
|
|
6407
|
+
specification,
|
|
6408
|
+
offset,
|
|
6409
|
+
limit
|
|
6402
6410
|
});
|
|
6403
6411
|
}
|
|
6404
6412
|
});
|
package/dist/provider.js
CHANGED
|
@@ -4762,13 +4762,17 @@ function useViewService() {
|
|
|
4762
4762
|
domain,
|
|
4763
4763
|
xNode,
|
|
4764
4764
|
service,
|
|
4765
|
-
specification
|
|
4765
|
+
specification,
|
|
4766
|
+
offset,
|
|
4767
|
+
limit
|
|
4766
4768
|
}) => {
|
|
4767
4769
|
const jsonData = {
|
|
4768
4770
|
model,
|
|
4769
4771
|
method: "web_search_read" /* WEB_SEARCH_READ */,
|
|
4770
4772
|
kwargs: {
|
|
4771
4773
|
domain,
|
|
4774
|
+
offset,
|
|
4775
|
+
limit,
|
|
4772
4776
|
specification
|
|
4773
4777
|
}
|
|
4774
4778
|
};
|
|
@@ -6861,14 +6865,18 @@ var useGetList = () => {
|
|
|
6861
6865
|
domain,
|
|
6862
6866
|
xNode,
|
|
6863
6867
|
service,
|
|
6864
|
-
specification
|
|
6868
|
+
specification,
|
|
6869
|
+
offset,
|
|
6870
|
+
limit
|
|
6865
6871
|
}) => {
|
|
6866
6872
|
return getList({
|
|
6867
6873
|
model,
|
|
6868
6874
|
domain,
|
|
6869
6875
|
service,
|
|
6870
6876
|
xNode,
|
|
6871
|
-
specification
|
|
6877
|
+
specification,
|
|
6878
|
+
offset,
|
|
6879
|
+
limit
|
|
6872
6880
|
});
|
|
6873
6881
|
}
|
|
6874
6882
|
});
|
package/dist/provider.mjs
CHANGED
|
@@ -4719,13 +4719,17 @@ function useViewService() {
|
|
|
4719
4719
|
domain,
|
|
4720
4720
|
xNode,
|
|
4721
4721
|
service,
|
|
4722
|
-
specification
|
|
4722
|
+
specification,
|
|
4723
|
+
offset,
|
|
4724
|
+
limit
|
|
4723
4725
|
}) => {
|
|
4724
4726
|
const jsonData = {
|
|
4725
4727
|
model,
|
|
4726
4728
|
method: "web_search_read" /* WEB_SEARCH_READ */,
|
|
4727
4729
|
kwargs: {
|
|
4728
4730
|
domain,
|
|
4731
|
+
offset,
|
|
4732
|
+
limit,
|
|
4729
4733
|
specification
|
|
4730
4734
|
}
|
|
4731
4735
|
};
|
|
@@ -6818,14 +6822,18 @@ var useGetList = () => {
|
|
|
6818
6822
|
domain,
|
|
6819
6823
|
xNode,
|
|
6820
6824
|
service,
|
|
6821
|
-
specification
|
|
6825
|
+
specification,
|
|
6826
|
+
offset,
|
|
6827
|
+
limit
|
|
6822
6828
|
}) => {
|
|
6823
6829
|
return getList({
|
|
6824
6830
|
model,
|
|
6825
6831
|
domain,
|
|
6826
6832
|
service,
|
|
6827
6833
|
xNode,
|
|
6828
|
-
specification
|
|
6834
|
+
specification,
|
|
6835
|
+
offset,
|
|
6836
|
+
limit
|
|
6829
6837
|
});
|
|
6830
6838
|
}
|
|
6831
6839
|
});
|
package/dist/services.d.mts
CHANGED
|
@@ -318,27 +318,29 @@ declare function useViewService(): {
|
|
|
318
318
|
}) => any;
|
|
319
319
|
createEntity: ({ model, args, xNode, service, }: {
|
|
320
320
|
model: string;
|
|
321
|
-
args:
|
|
321
|
+
args: any;
|
|
322
322
|
service: string;
|
|
323
323
|
xNode: string;
|
|
324
324
|
}) => any;
|
|
325
|
-
getList: ({ model, domain, xNode, service, specification, }: {
|
|
325
|
+
getList: ({ model, domain, xNode, service, specification, offset, limit, }: {
|
|
326
326
|
model: string;
|
|
327
|
-
domain:
|
|
327
|
+
domain: any;
|
|
328
328
|
service: string;
|
|
329
329
|
xNode: string;
|
|
330
330
|
specification: any;
|
|
331
|
+
offset: number;
|
|
332
|
+
limit: number;
|
|
331
333
|
}) => any;
|
|
332
334
|
updateEntity: ({ model, domain, values, xNode, service, }: {
|
|
333
335
|
model: string;
|
|
334
|
-
domain:
|
|
335
|
-
values:
|
|
336
|
+
domain: any;
|
|
337
|
+
values: any;
|
|
336
338
|
service: string;
|
|
337
339
|
xNode: string;
|
|
338
340
|
}) => any;
|
|
339
341
|
deleteEntity: ({ model, ids, xNode, service, }: {
|
|
340
342
|
model: string;
|
|
341
|
-
ids:
|
|
343
|
+
ids: any;
|
|
342
344
|
service: string;
|
|
343
345
|
xNode: string;
|
|
344
346
|
}) => any;
|
package/dist/services.d.ts
CHANGED
|
@@ -318,27 +318,29 @@ declare function useViewService(): {
|
|
|
318
318
|
}) => any;
|
|
319
319
|
createEntity: ({ model, args, xNode, service, }: {
|
|
320
320
|
model: string;
|
|
321
|
-
args:
|
|
321
|
+
args: any;
|
|
322
322
|
service: string;
|
|
323
323
|
xNode: string;
|
|
324
324
|
}) => any;
|
|
325
|
-
getList: ({ model, domain, xNode, service, specification, }: {
|
|
325
|
+
getList: ({ model, domain, xNode, service, specification, offset, limit, }: {
|
|
326
326
|
model: string;
|
|
327
|
-
domain:
|
|
327
|
+
domain: any;
|
|
328
328
|
service: string;
|
|
329
329
|
xNode: string;
|
|
330
330
|
specification: any;
|
|
331
|
+
offset: number;
|
|
332
|
+
limit: number;
|
|
331
333
|
}) => any;
|
|
332
334
|
updateEntity: ({ model, domain, values, xNode, service, }: {
|
|
333
335
|
model: string;
|
|
334
|
-
domain:
|
|
335
|
-
values:
|
|
336
|
+
domain: any;
|
|
337
|
+
values: any;
|
|
336
338
|
service: string;
|
|
337
339
|
xNode: string;
|
|
338
340
|
}) => any;
|
|
339
341
|
deleteEntity: ({ model, ids, xNode, service, }: {
|
|
340
342
|
model: string;
|
|
341
|
-
ids:
|
|
343
|
+
ids: any;
|
|
342
344
|
service: string;
|
|
343
345
|
xNode: string;
|
|
344
346
|
}) => any;
|
package/dist/services.js
CHANGED
|
@@ -4965,13 +4965,17 @@ function useViewService() {
|
|
|
4965
4965
|
domain,
|
|
4966
4966
|
xNode,
|
|
4967
4967
|
service,
|
|
4968
|
-
specification
|
|
4968
|
+
specification,
|
|
4969
|
+
offset,
|
|
4970
|
+
limit
|
|
4969
4971
|
}) => {
|
|
4970
4972
|
const jsonData = {
|
|
4971
4973
|
model,
|
|
4972
4974
|
method: "web_search_read" /* WEB_SEARCH_READ */,
|
|
4973
4975
|
kwargs: {
|
|
4974
4976
|
domain,
|
|
4977
|
+
offset,
|
|
4978
|
+
limit,
|
|
4975
4979
|
specification
|
|
4976
4980
|
}
|
|
4977
4981
|
};
|
package/dist/services.mjs
CHANGED
|
@@ -4921,13 +4921,17 @@ function useViewService() {
|
|
|
4921
4921
|
domain,
|
|
4922
4922
|
xNode,
|
|
4923
4923
|
service,
|
|
4924
|
-
specification
|
|
4924
|
+
specification,
|
|
4925
|
+
offset,
|
|
4926
|
+
limit
|
|
4925
4927
|
}) => {
|
|
4926
4928
|
const jsonData = {
|
|
4927
4929
|
model,
|
|
4928
4930
|
method: "web_search_read" /* WEB_SEARCH_READ */,
|
|
4929
4931
|
kwargs: {
|
|
4930
4932
|
domain,
|
|
4933
|
+
offset,
|
|
4934
|
+
limit,
|
|
4931
4935
|
specification
|
|
4932
4936
|
}
|
|
4933
4937
|
};
|