@fctc/interface-logic 3.5.8 → 3.5.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.
@@ -9,8 +9,7 @@ declare enum KeyConstants {
9
9
  GET_DATA_SELECTION = "get_data_select",
10
10
  WEB_SAVE = "web_save",
11
11
  WEB_READ = "web_read",
12
- GET_PROVIDER = "get_provider",
13
- PIE_CHART = "pie_chart"
12
+ GET_PROVIDER = "get_provider"
14
13
  }
15
14
 
16
15
  declare enum MethodConstants {
@@ -9,8 +9,7 @@ declare enum KeyConstants {
9
9
  GET_DATA_SELECTION = "get_data_select",
10
10
  WEB_SAVE = "web_save",
11
11
  WEB_READ = "web_read",
12
- GET_PROVIDER = "get_provider",
13
- PIE_CHART = "pie_chart"
12
+ GET_PROVIDER = "get_provider"
14
13
  }
15
14
 
16
15
  declare enum MethodConstants {
package/dist/constants.js CHANGED
@@ -49,7 +49,6 @@ var KeyConstants = /* @__PURE__ */ ((KeyConstants2) => {
49
49
  KeyConstants2["WEB_SAVE"] = "web_save";
50
50
  KeyConstants2["WEB_READ"] = "web_read";
51
51
  KeyConstants2["GET_PROVIDER"] = "get_provider";
52
- KeyConstants2["PIE_CHART"] = "pie_chart";
53
52
  return KeyConstants2;
54
53
  })(KeyConstants || {});
55
54
 
@@ -11,7 +11,6 @@ var KeyConstants = /* @__PURE__ */ ((KeyConstants2) => {
11
11
  KeyConstants2["WEB_SAVE"] = "web_save";
12
12
  KeyConstants2["WEB_READ"] = "web_read";
13
13
  KeyConstants2["GET_PROVIDER"] = "get_provider";
14
- KeyConstants2["PIE_CHART"] = "pie_chart";
15
14
  return KeyConstants2;
16
15
  })(KeyConstants || {});
17
16
 
package/dist/hooks.js CHANGED
@@ -7940,7 +7940,7 @@ var import_react_query103 = require("@tanstack/react-query");
7940
7940
  var useGetPieChart = (services, xNode, body) => {
7941
7941
  const { pieChart } = useDashboardService();
7942
7942
  return (0, import_react_query103.useQuery)({
7943
- queryKey: ["pie_chart" /* PIE_CHART */],
7943
+ queryKey: [body],
7944
7944
  queryFn: () => pieChart({
7945
7945
  service: services,
7946
7946
  xNode,
package/dist/hooks.mjs CHANGED
@@ -7802,7 +7802,7 @@ import { useQuery as useQuery24 } from "@tanstack/react-query";
7802
7802
  var useGetPieChart = (services, xNode, body) => {
7803
7803
  const { pieChart } = useDashboardService();
7804
7804
  return useQuery24({
7805
- queryKey: ["pie_chart" /* PIE_CHART */],
7805
+ queryKey: [body],
7806
7806
  queryFn: () => pieChart({
7807
7807
  service: services,
7808
7808
  xNode,
package/dist/provider.js CHANGED
@@ -8313,7 +8313,7 @@ var import_react_query103 = require("@tanstack/react-query");
8313
8313
  var useGetPieChart = (services, xNode, body) => {
8314
8314
  const { pieChart } = useDashboardService();
8315
8315
  return (0, import_react_query103.useQuery)({
8316
- queryKey: ["pie_chart" /* PIE_CHART */],
8316
+ queryKey: [body],
8317
8317
  queryFn: () => pieChart({
8318
8318
  service: services,
8319
8319
  xNode,
package/dist/provider.mjs CHANGED
@@ -8270,7 +8270,7 @@ import { useQuery as useQuery24 } from "@tanstack/react-query";
8270
8270
  var useGetPieChart = (services, xNode, body) => {
8271
8271
  const { pieChart } = useDashboardService();
8272
8272
  return useQuery24({
8273
- queryKey: ["pie_chart" /* PIE_CHART */],
8273
+ queryKey: [body],
8274
8274
  queryFn: () => pieChart({
8275
8275
  service: services,
8276
8276
  xNode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fctc/interface-logic",
3
- "version": "3.5.8",
3
+ "version": "3.5.9",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",