@fctc/interface-logic 2.6.8 → 2.6.9

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 CHANGED
@@ -434,6 +434,8 @@ declare const useGetList: () => _tanstack_react_query.UseMutationResult<unknown,
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, {
package/dist/hooks.d.ts CHANGED
@@ -434,6 +434,8 @@ declare const useGetList: () => _tanstack_react_query.UseMutationResult<unknown,
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, {
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
  };
@@ -6501,14 +6505,18 @@ var useGetList = () => {
6501
6505
  domain,
6502
6506
  xNode,
6503
6507
  service,
6504
- specification
6508
+ specification,
6509
+ offset,
6510
+ limit
6505
6511
  }) => {
6506
6512
  return getList({
6507
6513
  model,
6508
6514
  domain,
6509
6515
  service,
6510
6516
  xNode,
6511
- specification
6517
+ specification,
6518
+ offset,
6519
+ limit
6512
6520
  });
6513
6521
  }
6514
6522
  });
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
  };
@@ -6386,14 +6390,18 @@ var useGetList = () => {
6386
6390
  domain,
6387
6391
  xNode,
6388
6392
  service,
6389
- specification
6393
+ specification,
6394
+ offset,
6395
+ limit
6390
6396
  }) => {
6391
6397
  return getList({
6392
6398
  model,
6393
6399
  domain,
6394
6400
  service,
6395
6401
  xNode,
6396
- specification
6402
+ specification,
6403
+ offset,
6404
+ limit
6397
6405
  });
6398
6406
  }
6399
6407
  });
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
  };
@@ -6856,14 +6860,18 @@ var useGetList = () => {
6856
6860
  domain,
6857
6861
  xNode,
6858
6862
  service,
6859
- specification
6863
+ specification,
6864
+ offset,
6865
+ limit
6860
6866
  }) => {
6861
6867
  return getList({
6862
6868
  model,
6863
6869
  domain,
6864
6870
  service,
6865
6871
  xNode,
6866
- specification
6872
+ specification,
6873
+ offset,
6874
+ limit
6867
6875
  });
6868
6876
  }
6869
6877
  });
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
  };
@@ -6813,14 +6817,18 @@ var useGetList = () => {
6813
6817
  domain,
6814
6818
  xNode,
6815
6819
  service,
6816
- specification
6820
+ specification,
6821
+ offset,
6822
+ limit
6817
6823
  }) => {
6818
6824
  return getList({
6819
6825
  model,
6820
6826
  domain,
6821
6827
  service,
6822
6828
  xNode,
6823
- specification
6829
+ specification,
6830
+ offset,
6831
+ limit
6824
6832
  });
6825
6833
  }
6826
6834
  });
@@ -322,12 +322,14 @@ declare function useViewService(): {
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
327
  domain: [];
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;
@@ -322,12 +322,14 @@ declare function useViewService(): {
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
327
  domain: [];
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;
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fctc/interface-logic",
3
- "version": "2.6.8",
3
+ "version": "2.6.9",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",