@squonk/account-server-client 0.1.5-rc.2 → 0.1.8-rc.1

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.
Files changed (42) hide show
  1. package/{custom-instance-d8cc704b.d.ts → custom-instance-cc5da68e.d.ts} +169 -120
  2. package/index.cjs +103 -2
  3. package/index.cjs.map +3 -3
  4. package/index.d.ts +1 -1
  5. package/index.js +69 -2
  6. package/index.js.map +3 -3
  7. package/organisation/organisation.cjs +111 -2
  8. package/organisation/organisation.cjs.map +3 -3
  9. package/organisation/organisation.d.ts +28 -123
  10. package/organisation/organisation.js +83 -2
  11. package/organisation/organisation.js.map +3 -3
  12. package/organisation/package.json +2 -1
  13. package/package.json +8 -8
  14. package/product/package.json +2 -1
  15. package/product/product.cjs +161 -2
  16. package/product/product.cjs.map +3 -3
  17. package/product/product.d.ts +60 -241
  18. package/product/product.js +127 -2
  19. package/product/product.js.map +3 -3
  20. package/src/account-server-api.schemas.ts +278 -0
  21. package/src/custom-instance.ts +52 -0
  22. package/src/index.ts +6 -0
  23. package/src/organisation/organisation.ts +181 -0
  24. package/src/product/product.ts +289 -0
  25. package/src/unit/unit.ts +322 -0
  26. package/src/user/user.ts +340 -0
  27. package/unit/package.json +2 -1
  28. package/unit/unit.cjs +168 -2
  29. package/unit/unit.cjs.map +3 -3
  30. package/unit/unit.d.ts +58 -122
  31. package/unit/unit.js +133 -2
  32. package/unit/unit.js.map +3 -3
  33. package/user/package.json +2 -1
  34. package/user/user.cjs +176 -2
  35. package/user/user.cjs.map +3 -3
  36. package/user/user.d.ts +20 -246
  37. package/user/user.js +141 -2
  38. package/user/user.js.map +3 -3
  39. package/chunk-OULWOQLW.cjs +0 -2
  40. package/chunk-OULWOQLW.cjs.map +0 -7
  41. package/chunk-WMX3LCLR.js +0 -2
  42. package/chunk-WMX3LCLR.js.map +0 -7
@@ -1,2 +1,161 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkOULWOQLWcjs = require('../chunk-OULWOQLW.cjs');var _reactquery = require('react-query');var d=e=>_chunkOULWOQLWcjs.e.call(void 0, {url:"/product",method:"get"},e),i= exports.getGetProductsQueryKey =()=>["/product"],F= exports.useGetProducts =e=>{var n;let{query:t,request:r}=e||{},o=(n=t==null?void 0:t.queryKey)!=null?n:i(),y=_reactquery.useQuery.call(void 0, o,()=>d(r),t);return _chunkOULWOQLWcjs.a.call(void 0, {queryKey:o},y)},P= exports.getProductsForUnit =(e,t)=>_chunkOULWOQLWcjs.e.call(void 0, {url:`/product/unit/${e}`,method:"get"},t),T= exports.getGetProductsForUnitQueryKey =e=>[`/product/unit/${e}`],U= exports.useGetProductsForUnit =(e,t)=>{var a;let{query:r,request:o}=t||{},u=(a=r==null?void 0:r.queryKey)!=null?a:T(e),n=_reactquery.useQuery.call(void 0, u,()=>P(e,o),_chunkOULWOQLWcjs.a.call(void 0, {enabled:!!e},r));return _chunkOULWOQLWcjs.a.call(void 0, {queryKey:u},n)};exports.getGetProductsForUnitQueryKey = T; exports.getGetProductsQueryKey = i; exports.getProducts = d; exports.getProductsForUnit = P; exports.useGetProducts = F; exports.useGetProductsForUnit = U;
2
- //# sourceMappingURL=product.cjs.map
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __defProps = Object.defineProperties;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
8
+ var __getProtoOf = Object.getPrototypeOf;
9
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
10
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
11
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
12
+ var __spreadValues = (a, b) => {
13
+ for (var prop in b || (b = {}))
14
+ if (__hasOwnProp.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ if (__getOwnPropSymbols)
17
+ for (var prop of __getOwnPropSymbols(b)) {
18
+ if (__propIsEnum.call(b, prop))
19
+ __defNormalProp(a, prop, b[prop]);
20
+ }
21
+ return a;
22
+ };
23
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
24
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
25
+ var __export = (target, all) => {
26
+ __markAsModule(target);
27
+ for (var name in all)
28
+ __defProp(target, name, { get: all[name], enumerable: true });
29
+ };
30
+ var __reExport = (target, module2, desc) => {
31
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
32
+ for (let key of __getOwnPropNames(module2))
33
+ if (!__hasOwnProp.call(target, key) && key !== "default")
34
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
35
+ }
36
+ return target;
37
+ };
38
+ var __toModule = (module2) => {
39
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
40
+ };
41
+
42
+ // src/product/product.ts
43
+ __export(exports, {
44
+ createUnitProduct: () => createUnitProduct,
45
+ getGetProductQueryKey: () => getGetProductQueryKey,
46
+ getGetProductsForUnitQueryKey: () => getGetProductsForUnitQueryKey,
47
+ getGetProductsQueryKey: () => getGetProductsQueryKey,
48
+ getProduct: () => getProduct,
49
+ getProducts: () => getProducts,
50
+ getProductsForUnit: () => getProductsForUnit,
51
+ patchProduct: () => patchProduct,
52
+ useCreateUnitProduct: () => useCreateUnitProduct,
53
+ useGetProduct: () => useGetProduct,
54
+ useGetProducts: () => useGetProducts,
55
+ useGetProductsForUnit: () => useGetProductsForUnit,
56
+ usePatchProduct: () => usePatchProduct
57
+ });
58
+ var import_react_query = __toModule(require("react-query"));
59
+
60
+ // src/custom-instance.ts
61
+ var import_axios = __toModule(require("axios"));
62
+ var AXIOS_INSTANCE = import_axios.default.create({ baseURL: "" });
63
+ var customInstance = (config, options) => {
64
+ const source = import_axios.default.CancelToken.source();
65
+ const promise = AXIOS_INSTANCE(__spreadProps(__spreadValues(__spreadValues({}, config), options), { cancelToken: source.token })).then(({ data }) => data);
66
+ promise.cancel = () => {
67
+ source.cancel("Query was cancelled by React Query");
68
+ };
69
+ return promise;
70
+ };
71
+
72
+ // src/product/product.ts
73
+ var getProducts = (options) => {
74
+ return customInstance({ url: `/product`, method: "get" }, options);
75
+ };
76
+ var getGetProductsQueryKey = () => [`/product`];
77
+ var useGetProducts = (options) => {
78
+ const { query: queryOptions, request: requestOptions } = options || {};
79
+ const queryKey = (queryOptions == null ? void 0 : queryOptions.queryKey) ?? getGetProductsQueryKey();
80
+ const queryFn = () => getProducts(requestOptions);
81
+ const query = (0, import_react_query.useQuery)(queryKey, queryFn, queryOptions);
82
+ return __spreadValues({
83
+ queryKey
84
+ }, query);
85
+ };
86
+ var createUnitProduct = (unitid, unitProductPostBodyBody, options) => {
87
+ return customInstance({
88
+ url: `/product/unit/${unitid}`,
89
+ method: "post",
90
+ data: unitProductPostBodyBody
91
+ }, options);
92
+ };
93
+ var useCreateUnitProduct = (options) => {
94
+ const { mutation: mutationOptions, request: requestOptions } = options || {};
95
+ const mutationFn = (props) => {
96
+ const { unitid, data } = props || {};
97
+ return createUnitProduct(unitid, data, requestOptions);
98
+ };
99
+ return (0, import_react_query.useMutation)(mutationFn, mutationOptions);
100
+ };
101
+ var getProductsForUnit = (unitid, options) => {
102
+ return customInstance({ url: `/product/unit/${unitid}`, method: "get" }, options);
103
+ };
104
+ var getGetProductsForUnitQueryKey = (unitid) => [
105
+ `/product/unit/${unitid}`
106
+ ];
107
+ var useGetProductsForUnit = (unitid, options) => {
108
+ const { query: queryOptions, request: requestOptions } = options || {};
109
+ const queryKey = (queryOptions == null ? void 0 : queryOptions.queryKey) ?? getGetProductsForUnitQueryKey(unitid);
110
+ const queryFn = () => getProductsForUnit(unitid, requestOptions);
111
+ const query = (0, import_react_query.useQuery)(queryKey, queryFn, __spreadValues({ enabled: !!unitid }, queryOptions));
112
+ return __spreadValues({
113
+ queryKey
114
+ }, query);
115
+ };
116
+ var getProduct = (unitid, productid, options) => {
117
+ return customInstance({ url: `/product/unit/${unitid}/product/${productid}`, method: "get" }, options);
118
+ };
119
+ var getGetProductQueryKey = (unitid, productid) => [
120
+ `/product/unit/${unitid}/product/${productid}`
121
+ ];
122
+ var useGetProduct = (unitid, productid, options) => {
123
+ const { query: queryOptions, request: requestOptions } = options || {};
124
+ const queryKey = (queryOptions == null ? void 0 : queryOptions.queryKey) ?? getGetProductQueryKey(unitid, productid);
125
+ const queryFn = () => getProduct(unitid, productid, requestOptions);
126
+ const query = (0, import_react_query.useQuery)(queryKey, queryFn, __spreadValues({ enabled: !!(unitid && productid) }, queryOptions));
127
+ return __spreadValues({
128
+ queryKey
129
+ }, query);
130
+ };
131
+ var patchProduct = (unitid, productid, productPatchBodyBody, options) => {
132
+ return customInstance({
133
+ url: `/product/unit/${unitid}/product/${productid}`,
134
+ method: "patch",
135
+ data: productPatchBodyBody
136
+ }, options);
137
+ };
138
+ var usePatchProduct = (options) => {
139
+ const { mutation: mutationOptions, request: requestOptions } = options || {};
140
+ const mutationFn = (props) => {
141
+ const { unitid, productid, data } = props || {};
142
+ return patchProduct(unitid, productid, data, requestOptions);
143
+ };
144
+ return (0, import_react_query.useMutation)(mutationFn, mutationOptions);
145
+ };
146
+ // Annotate the CommonJS export names for ESM import in node:
147
+ 0 && (module.exports = {
148
+ createUnitProduct,
149
+ getGetProductQueryKey,
150
+ getGetProductsForUnitQueryKey,
151
+ getGetProductsQueryKey,
152
+ getProduct,
153
+ getProducts,
154
+ getProductsForUnit,
155
+ patchProduct,
156
+ useCreateUnitProduct,
157
+ useGetProduct,
158
+ useGetProducts,
159
+ useGetProductsForUnit,
160
+ usePatchProduct
161
+ });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["../../src/product/product.ts"],
4
- "sourcesContent": ["/**\n * Generated by orval v6.3.0 \uD83C\uDF7A\n * Do not edit manually.\n * Account Server API\n * The Informatics Matters Account Server API.\n\nA service that provides access to the Account Server, which gives *registered* users access to **Products**, **Organisations**, **Units** and **Users**.\n\n * OpenAPI spec version: 0.1\n */\nimport { useQuery, UseQueryOptions, QueryFunction } from \"react-query\";\nimport type {\n ProductGetResponse,\n Error,\n ProductUnitGetResponse,\n} from \"../account-server-api.schemas\";\nimport { customInstance } from \".././custom-instance\";\n\ntype AsyncReturnType<T extends (...args: any) => Promise<any>> = T extends (\n ...args: any\n) => Promise<infer R>\n ? R\n : any;\n\ntype SecondParameter<T extends (...args: any) => any> = T extends (\n config: any,\n args: infer P\n) => any\n ? P\n : never;\n\n/**\n * Gets products you have access to\n\n * @summary Gets products\n */\nexport const getProducts = (\n options?: SecondParameter<typeof customInstance>\n) => {\n return customInstance<ProductGetResponse>(\n { url: `/product`, method: \"get\" },\n options\n );\n};\n\nexport const getGetProductsQueryKey = () => [`/product`];\n\nexport const useGetProducts = <\n TData = AsyncReturnType<typeof getProducts>,\n TError = Error | void\n>(options?: {\n query?: UseQueryOptions<AsyncReturnType<typeof getProducts>, TError, TData>;\n request?: SecondParameter<typeof customInstance>;\n}) => {\n const { query: queryOptions, request: requestOptions } = options || {};\n\n const queryKey = queryOptions?.queryKey ?? getGetProductsQueryKey();\n\n const queryFn: QueryFunction<AsyncReturnType<typeof getProducts>> = () =>\n getProducts(requestOptions);\n\n const query = useQuery<AsyncReturnType<typeof getProducts>, TError, TData>(\n queryKey,\n queryFn,\n queryOptions\n );\n\n return {\n queryKey,\n ...query,\n };\n};\n\n/**\n * Gets products you have access to based on an Organisational Unit\n\n * @summary Gets Products for an Organisational Unit\n */\nexport const getProductsForUnit = (\n unitid: string,\n options?: SecondParameter<typeof customInstance>\n) => {\n return customInstance<ProductUnitGetResponse>(\n { url: `/product/unit/${unitid}`, method: \"get\" },\n options\n );\n};\n\nexport const getGetProductsForUnitQueryKey = (unitid: string) => [\n `/product/unit/${unitid}`,\n];\n\nexport const useGetProductsForUnit = <\n TData = AsyncReturnType<typeof getProductsForUnit>,\n TError = void | Error\n>(\n unitid: string,\n options?: {\n query?: UseQueryOptions<\n AsyncReturnType<typeof getProductsForUnit>,\n TError,\n TData\n >;\n request?: SecondParameter<typeof customInstance>;\n }\n) => {\n const { query: queryOptions, request: requestOptions } = options || {};\n\n const queryKey =\n queryOptions?.queryKey ?? getGetProductsForUnitQueryKey(unitid);\n\n const queryFn: QueryFunction<AsyncReturnType<typeof getProductsForUnit>> =\n () => getProductsForUnit(unitid, requestOptions);\n\n const query = useQuery<\n AsyncReturnType<typeof getProductsForUnit>,\n TError,\n TData\n >(queryKey, queryFn, { enabled: !!unitid, ...queryOptions });\n\n return {\n queryKey,\n ...query,\n };\n};\n"],
5
- "mappings": "iDAUA,uCA0BO,GAAM,GAAc,AACzB,GAEO,EACL,CAAE,IAAK,WAAY,OAAQ,OAC3B,GAIS,EAAyB,IAAM,CAAC,YAEhC,EAAiB,AAG5B,GAGI,CArDN,MAsDE,GAAM,CAAE,MAAO,EAAc,QAAS,GAAmB,GAAW,GAE9D,EAAW,oBAAc,WAAd,OAA0B,IAKrC,EAAQ,EACZ,EAJkE,IAClE,EAAY,GAKZ,GAGF,MAAO,IACL,YACG,IASM,EAAqB,CAChC,EACA,IAEO,EACL,CAAE,IAAK,iBAAiB,IAAU,OAAQ,OAC1C,GAIS,EAAgC,AAAC,GAAmB,CAC/D,iBAAiB,KAGN,EAAwB,CAInC,EACA,IAQG,CAzGL,MA0GE,GAAM,CAAE,MAAO,EAAc,QAAS,GAAmB,GAAW,GAE9D,EACJ,oBAAc,WAAd,OAA0B,EAA8B,GAKpD,EAAQ,EAIZ,EANA,IAAM,EAAmB,EAAQ,GAMd,GAAE,QAAS,CAAC,CAAC,GAAW,IAE7C,MAAO,IACL,YACG",
3
+ "sources": ["../../src/product/product.ts", "../../src/custom-instance.ts"],
4
+ "sourcesContent": ["/**\n * Generated by orval v6.4.2 \uD83C\uDF7A\n * Do not edit manually.\n * Account Server API\n * The Informatics Matters Account Server API.\n\nA service that provides access to the Account Server, which gives *registered* users access to and management of **Products**, **Organisations**, **Units** and **Users**.\n\n * OpenAPI spec version: 0.1\n */\nimport {\n useQuery,\n useMutation,\n UseQueryOptions,\n UseMutationOptions,\n QueryFunction,\n MutationFunction,\n UseQueryResult,\n QueryKey,\n} from \"react-query\";\nimport type {\n ProductsGetResponse,\n AsError,\n UnitProductPostResponse,\n UnitProductPostBodyBody,\n ProductUnitGetResponse,\n ProductPatchBodyBody,\n} from \"../account-server-api.schemas\";\nimport { customInstance, ErrorType } from \".././custom-instance\";\n\ntype AsyncReturnType<T extends (...args: any) => Promise<any>> = T extends (\n ...args: any\n) => Promise<infer R>\n ? R\n : any;\n\ntype SecondParameter<T extends (...args: any) => any> = T extends (\n config: any,\n args: infer P\n) => any\n ? P\n : never;\n\n/**\n * Gets products you have access to, across all Units and Organisations\n\n * @summary Gets all Products\n */\nexport const getProducts = (\n options?: SecondParameter<typeof customInstance>\n) => {\n return customInstance<ProductsGetResponse>(\n { url: `/product`, method: \"get\" },\n options\n );\n};\n\nexport const getGetProductsQueryKey = () => [`/product`];\n\nexport const useGetProducts = <\n TData = AsyncReturnType<typeof getProducts>,\n TError = ErrorType<AsError | void>\n>(options?: {\n query?: UseQueryOptions<AsyncReturnType<typeof getProducts>, TError, TData>;\n request?: SecondParameter<typeof customInstance>;\n}): UseQueryResult<TData, TError> & { queryKey: QueryKey } => {\n const { query: queryOptions, request: requestOptions } = options || {};\n\n const queryKey = queryOptions?.queryKey ?? getGetProductsQueryKey();\n\n const queryFn: QueryFunction<AsyncReturnType<typeof getProducts>> = () =>\n getProducts(requestOptions);\n\n const query = useQuery<AsyncReturnType<typeof getProducts>, TError, TData>(\n queryKey,\n queryFn,\n queryOptions\n );\n\n return {\n queryKey,\n ...query,\n };\n};\n\n/**\n * @summary Creates a Product for an Organisational Unit\n */\nexport const createUnitProduct = (\n unitid: string,\n unitProductPostBodyBody: UnitProductPostBodyBody,\n options?: SecondParameter<typeof customInstance>\n) => {\n return customInstance<UnitProductPostResponse>(\n {\n url: `/product/unit/${unitid}`,\n method: \"post\",\n data: unitProductPostBodyBody,\n },\n options\n );\n};\n\nexport const useCreateUnitProduct = <\n TError = ErrorType<AsError | void>,\n TContext = unknown\n>(options?: {\n mutation?: UseMutationOptions<\n AsyncReturnType<typeof createUnitProduct>,\n TError,\n { unitid: string; data: UnitProductPostBodyBody },\n TContext\n >;\n request?: SecondParameter<typeof customInstance>;\n}) => {\n const { mutation: mutationOptions, request: requestOptions } = options || {};\n\n const mutationFn: MutationFunction<\n AsyncReturnType<typeof createUnitProduct>,\n { unitid: string; data: UnitProductPostBodyBody }\n > = (props) => {\n const { unitid, data } = props || {};\n\n return createUnitProduct(unitid, data, requestOptions);\n };\n\n return useMutation<\n AsyncReturnType<typeof createUnitProduct>,\n TError,\n { unitid: string; data: UnitProductPostBodyBody },\n TContext\n >(mutationFn, mutationOptions);\n};\n/**\n * Gets products you have access to based on an Organisational Unit\n\n * @summary Gets Products for an Organisational Unit\n */\nexport const getProductsForUnit = (\n unitid: string,\n options?: SecondParameter<typeof customInstance>\n) => {\n return customInstance<ProductsGetResponse>(\n { url: `/product/unit/${unitid}`, method: \"get\" },\n options\n );\n};\n\nexport const getGetProductsForUnitQueryKey = (unitid: string) => [\n `/product/unit/${unitid}`,\n];\n\nexport const useGetProductsForUnit = <\n TData = AsyncReturnType<typeof getProductsForUnit>,\n TError = ErrorType<void | AsError>\n>(\n unitid: string,\n options?: {\n query?: UseQueryOptions<\n AsyncReturnType<typeof getProductsForUnit>,\n TError,\n TData\n >;\n request?: SecondParameter<typeof customInstance>;\n }\n): UseQueryResult<TData, TError> & { queryKey: QueryKey } => {\n const { query: queryOptions, request: requestOptions } = options || {};\n\n const queryKey =\n queryOptions?.queryKey ?? getGetProductsForUnitQueryKey(unitid);\n\n const queryFn: QueryFunction<\n AsyncReturnType<typeof getProductsForUnit>\n > = () => getProductsForUnit(unitid, requestOptions);\n\n const query = useQuery<\n AsyncReturnType<typeof getProductsForUnit>,\n TError,\n TData\n >(queryKey, queryFn, { enabled: !!unitid, ...queryOptions });\n\n return {\n queryKey,\n ...query,\n };\n};\n\n/**\n * Gets a Unit's Product\n\n * @summary Gets a Unit's Product\n */\nexport const getProduct = (\n unitid: string,\n productid: string,\n options?: SecondParameter<typeof customInstance>\n) => {\n return customInstance<ProductUnitGetResponse>(\n { url: `/product/unit/${unitid}/product/${productid}`, method: \"get\" },\n options\n );\n};\n\nexport const getGetProductQueryKey = (unitid: string, productid: string) => [\n `/product/unit/${unitid}/product/${productid}`,\n];\n\nexport const useGetProduct = <\n TData = AsyncReturnType<typeof getProduct>,\n TError = ErrorType<AsError | void>\n>(\n unitid: string,\n productid: string,\n options?: {\n query?: UseQueryOptions<AsyncReturnType<typeof getProduct>, TError, TData>;\n request?: SecondParameter<typeof customInstance>;\n }\n): UseQueryResult<TData, TError> & { queryKey: QueryKey } => {\n const { query: queryOptions, request: requestOptions } = options || {};\n\n const queryKey =\n queryOptions?.queryKey ?? getGetProductQueryKey(unitid, productid);\n\n const queryFn: QueryFunction<AsyncReturnType<typeof getProduct>> = () =>\n getProduct(unitid, productid, requestOptions);\n\n const query = useQuery<AsyncReturnType<typeof getProduct>, TError, TData>(\n queryKey,\n queryFn,\n { enabled: !!(unitid && productid), ...queryOptions }\n );\n\n return {\n queryKey,\n ...query,\n };\n};\n\n/**\n * Used to update some adjustable parameters of a Product, i.e. to extend the Allowance or Limit. Curently you can only patch storage Products\n\n * @summary Adjust an existing Product\n */\nexport const patchProduct = (\n unitid: string,\n productid: string,\n productPatchBodyBody: ProductPatchBodyBody,\n options?: SecondParameter<typeof customInstance>\n) => {\n return customInstance<void>(\n {\n url: `/product/unit/${unitid}/product/${productid}`,\n method: \"patch\",\n data: productPatchBodyBody,\n },\n options\n );\n};\n\nexport const usePatchProduct = <\n TError = ErrorType<AsError>,\n TContext = unknown\n>(options?: {\n mutation?: UseMutationOptions<\n AsyncReturnType<typeof patchProduct>,\n TError,\n { unitid: string; productid: string; data: ProductPatchBodyBody },\n TContext\n >;\n request?: SecondParameter<typeof customInstance>;\n}) => {\n const { mutation: mutationOptions, request: requestOptions } = options || {};\n\n const mutationFn: MutationFunction<\n AsyncReturnType<typeof patchProduct>,\n { unitid: string; productid: string; data: ProductPatchBodyBody }\n > = (props) => {\n const { unitid, productid, data } = props || {};\n\n return patchProduct(unitid, productid, data, requestOptions);\n };\n\n return useMutation<\n AsyncReturnType<typeof patchProduct>,\n TError,\n { unitid: string; productid: string; data: ProductPatchBodyBody },\n TContext\n >(mutationFn, mutationOptions);\n};\n", "/** Based off the example custom-instance from Orval docs\n * https://github.com/anymaniax/orval/blob/master/samples/react-app-with-react-query/src/api/mutator/custom-instance.ts\n *\n * See https://react-query.tanstack.com/guides/query-cancellation\n *\n * TODO: Considering using Fetch-API instead of axios. This instance will have to change. Could be\n * achieved without changing much using `redaxios`\n * Or use 'ky'\n */\n\nimport Axios, { AxiosError, AxiosRequestConfig } from 'axios';\n\n// ? Need the baseUrl or does it default to ''?\nexport const AXIOS_INSTANCE = Axios.create({ baseURL: '' });\n\n/**\n * Set the access token to be added as the `Authorization: Bearer 'token'` header\n * Useful for client only apps where a proxy API route isn't involved to securely add the access token\n * @param token access token\n */\nexport const setAuthToken = (token: string) => {\n AXIOS_INSTANCE.defaults.headers.common['Authorization'] = `Bearer ${token}`;\n};\n\n/**\n * Set the url to which request paths are added to.\n * @param baseUrl origin + subpath e.g. 'https://example.com/subpath' or '/subpath'\n */\nexport const setBaseUrl = (baseUrl: string) => {\n AXIOS_INSTANCE.defaults.baseURL = baseUrl;\n};\n\nexport const customInstance = <TReturn>(\n config: AxiosRequestConfig,\n options?: AxiosRequestConfig,\n): Promise<TReturn> => {\n const source = Axios.CancelToken.source();\n\n const promise = AXIOS_INSTANCE({ ...config, ...options, cancelToken: source.token }).then(\n ({ data }) => data,\n );\n\n // Promise doesn't have a cancel method but react-query requires this method to make cancellations general.\n // This can either be a any assertion or a @ts-ignore comment.\n (promise as any).cancel = () => {\n source.cancel('Query was cancelled by React Query');\n };\n\n return promise;\n};\n\nexport type ErrorType<TError> = AxiosError<TError>;\n"],
5
+ "mappings": "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",
6
6
  "names": []
7
7
  }
@@ -1,260 +1,79 @@
1
1
  import * as react_query from 'react-query';
2
- import { UseQueryOptions } from 'react-query';
3
- import { z as customInstance, d as ProductGetResponse, E as Error, f as ProductUnitGetResponse } from '../custom-instance-d8cc704b';
2
+ import { UseQueryOptions, QueryKey, UseQueryResult, UseMutationOptions } from 'react-query';
3
+ import { H as customInstance, x as ProductsGetResponse, I as ErrorType, D as AsError, b as UnitProductPostBodyBody, t as UnitProductPostResponse, v as ProductUnitGetResponse, P as ProductPatchBodyBody } from '../custom-instance-cc5da68e';
4
4
  import 'axios';
5
5
 
6
6
  declare type SecondParameter<T extends (...args: any) => any> = T extends (config: any, args: infer P) => any ? P : never;
7
7
  /**
8
- * Gets products you have access to
8
+ * Gets products you have access to, across all Units and Organisations
9
9
 
10
- * @summary Gets products
10
+ * @summary Gets all Products
11
11
  */
12
- declare const getProducts: (options?: SecondParameter<typeof customInstance>) => Promise<ProductGetResponse>;
12
+ declare const getProducts: (options?: SecondParameter<typeof customInstance>) => Promise<ProductsGetResponse>;
13
13
  declare const getGetProductsQueryKey: () => string[];
14
- declare const useGetProducts: <TData = ProductGetResponse, TError = void | Error>(options?: {
15
- query?: UseQueryOptions<ProductGetResponse, TError, TData, react_query.QueryKey> | undefined;
14
+ declare const useGetProducts: <TData = ProductsGetResponse, TError = ErrorType<void | AsError>>(options?: {
15
+ query?: UseQueryOptions<ProductsGetResponse, TError, TData, QueryKey> | undefined;
16
16
  request?: SecondParameter<typeof customInstance>;
17
- } | undefined) => {
18
- data: undefined;
19
- error: null;
20
- isError: false;
21
- isIdle: true;
22
- isLoading: false;
23
- isLoadingError: false;
24
- isRefetchError: false;
25
- isSuccess: false;
26
- status: "idle";
27
- dataUpdatedAt: number;
28
- errorUpdatedAt: number;
29
- failureCount: number;
30
- isFetched: boolean;
31
- isFetchedAfterMount: boolean;
32
- isFetching: boolean;
33
- isPlaceholderData: boolean;
34
- isPreviousData: boolean;
35
- isRefetching: boolean;
36
- isStale: boolean;
37
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
38
- remove: () => void;
39
- queryKey: react_query.QueryKey;
40
- } | {
41
- data: undefined;
42
- error: TError;
43
- isError: true;
44
- isIdle: false;
45
- isLoading: false;
46
- isLoadingError: true;
47
- isRefetchError: false;
48
- isSuccess: false;
49
- status: "error";
50
- dataUpdatedAt: number;
51
- errorUpdatedAt: number;
52
- failureCount: number;
53
- isFetched: boolean;
54
- isFetchedAfterMount: boolean;
55
- isFetching: boolean;
56
- isPlaceholderData: boolean;
57
- isPreviousData: boolean;
58
- isRefetching: boolean;
59
- isStale: boolean;
60
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
61
- remove: () => void;
62
- queryKey: react_query.QueryKey;
63
- } | {
64
- data: undefined;
65
- error: null;
66
- isError: false;
67
- isIdle: false;
68
- isLoading: true;
69
- isLoadingError: false;
70
- isRefetchError: false;
71
- isSuccess: false;
72
- status: "loading";
73
- dataUpdatedAt: number;
74
- errorUpdatedAt: number;
75
- failureCount: number;
76
- isFetched: boolean;
77
- isFetchedAfterMount: boolean;
78
- isFetching: boolean;
79
- isPlaceholderData: boolean;
80
- isPreviousData: boolean;
81
- isRefetching: boolean;
82
- isStale: boolean;
83
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
84
- remove: () => void;
85
- queryKey: react_query.QueryKey;
86
- } | {
87
- data: TData;
88
- error: TError;
89
- isError: true;
90
- isIdle: false;
91
- isLoading: false;
92
- isLoadingError: false;
93
- isRefetchError: true;
94
- isSuccess: false;
95
- status: "error";
96
- dataUpdatedAt: number;
97
- errorUpdatedAt: number;
98
- failureCount: number;
99
- isFetched: boolean;
100
- isFetchedAfterMount: boolean;
101
- isFetching: boolean;
102
- isPlaceholderData: boolean;
103
- isPreviousData: boolean;
104
- isRefetching: boolean;
105
- isStale: boolean;
106
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
107
- remove: () => void;
108
- queryKey: react_query.QueryKey;
109
- } | {
110
- data: TData;
111
- error: null;
112
- isError: false;
113
- isIdle: false;
114
- isLoading: false;
115
- isLoadingError: false;
116
- isRefetchError: false;
117
- isSuccess: true;
118
- status: "success";
119
- dataUpdatedAt: number;
120
- errorUpdatedAt: number;
121
- failureCount: number;
122
- isFetched: boolean;
123
- isFetchedAfterMount: boolean;
124
- isFetching: boolean;
125
- isPlaceholderData: boolean;
126
- isPreviousData: boolean;
127
- isRefetching: boolean;
128
- isStale: boolean;
129
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
130
- remove: () => void;
131
- queryKey: react_query.QueryKey;
17
+ } | undefined) => UseQueryResult<TData, TError> & {
18
+ queryKey: QueryKey;
132
19
  };
20
+ /**
21
+ * @summary Creates a Product for an Organisational Unit
22
+ */
23
+ declare const createUnitProduct: (unitid: string, unitProductPostBodyBody: UnitProductPostBodyBody, options?: SecondParameter<typeof customInstance>) => Promise<UnitProductPostResponse>;
24
+ declare const useCreateUnitProduct: <TError = ErrorType<void | AsError>, TContext = unknown>(options?: {
25
+ mutation?: UseMutationOptions<UnitProductPostResponse, TError, {
26
+ unitid: string;
27
+ data: UnitProductPostBodyBody;
28
+ }, TContext> | undefined;
29
+ request?: SecondParameter<typeof customInstance>;
30
+ } | undefined) => react_query.UseMutationResult<UnitProductPostResponse, TError, {
31
+ unitid: string;
32
+ data: UnitProductPostBodyBody;
33
+ }, TContext>;
133
34
  /**
134
35
  * Gets products you have access to based on an Organisational Unit
135
36
 
136
37
  * @summary Gets Products for an Organisational Unit
137
38
  */
138
- declare const getProductsForUnit: (unitid: string, options?: SecondParameter<typeof customInstance>) => Promise<ProductUnitGetResponse>;
39
+ declare const getProductsForUnit: (unitid: string, options?: SecondParameter<typeof customInstance>) => Promise<ProductsGetResponse>;
139
40
  declare const getGetProductsForUnitQueryKey: (unitid: string) => string[];
140
- declare const useGetProductsForUnit: <TData = ProductUnitGetResponse, TError = void | Error>(unitid: string, options?: {
141
- query?: UseQueryOptions<ProductUnitGetResponse, TError, TData, react_query.QueryKey> | undefined;
41
+ declare const useGetProductsForUnit: <TData = ProductsGetResponse, TError = ErrorType<void | AsError>>(unitid: string, options?: {
42
+ query?: UseQueryOptions<ProductsGetResponse, TError, TData, QueryKey> | undefined;
43
+ request?: SecondParameter<typeof customInstance>;
44
+ } | undefined) => UseQueryResult<TData, TError> & {
45
+ queryKey: QueryKey;
46
+ };
47
+ /**
48
+ * Gets a Unit's Product
49
+
50
+ * @summary Gets a Unit's Product
51
+ */
52
+ declare const getProduct: (unitid: string, productid: string, options?: SecondParameter<typeof customInstance>) => Promise<ProductUnitGetResponse>;
53
+ declare const getGetProductQueryKey: (unitid: string, productid: string) => string[];
54
+ declare const useGetProduct: <TData = ProductUnitGetResponse, TError = ErrorType<void | AsError>>(unitid: string, productid: string, options?: {
55
+ query?: UseQueryOptions<ProductUnitGetResponse, TError, TData, QueryKey> | undefined;
142
56
  request?: SecondParameter<typeof customInstance>;
143
- } | undefined) => {
144
- data: undefined;
145
- error: null;
146
- isError: false;
147
- isIdle: true;
148
- isLoading: false;
149
- isLoadingError: false;
150
- isRefetchError: false;
151
- isSuccess: false;
152
- status: "idle";
153
- dataUpdatedAt: number;
154
- errorUpdatedAt: number;
155
- failureCount: number;
156
- isFetched: boolean;
157
- isFetchedAfterMount: boolean;
158
- isFetching: boolean;
159
- isPlaceholderData: boolean;
160
- isPreviousData: boolean;
161
- isRefetching: boolean;
162
- isStale: boolean;
163
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
164
- remove: () => void;
165
- queryKey: react_query.QueryKey;
166
- } | {
167
- data: undefined;
168
- error: TError;
169
- isError: true;
170
- isIdle: false;
171
- isLoading: false;
172
- isLoadingError: true;
173
- isRefetchError: false;
174
- isSuccess: false;
175
- status: "error";
176
- dataUpdatedAt: number;
177
- errorUpdatedAt: number;
178
- failureCount: number;
179
- isFetched: boolean;
180
- isFetchedAfterMount: boolean;
181
- isFetching: boolean;
182
- isPlaceholderData: boolean;
183
- isPreviousData: boolean;
184
- isRefetching: boolean;
185
- isStale: boolean;
186
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
187
- remove: () => void;
188
- queryKey: react_query.QueryKey;
189
- } | {
190
- data: undefined;
191
- error: null;
192
- isError: false;
193
- isIdle: false;
194
- isLoading: true;
195
- isLoadingError: false;
196
- isRefetchError: false;
197
- isSuccess: false;
198
- status: "loading";
199
- dataUpdatedAt: number;
200
- errorUpdatedAt: number;
201
- failureCount: number;
202
- isFetched: boolean;
203
- isFetchedAfterMount: boolean;
204
- isFetching: boolean;
205
- isPlaceholderData: boolean;
206
- isPreviousData: boolean;
207
- isRefetching: boolean;
208
- isStale: boolean;
209
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
210
- remove: () => void;
211
- queryKey: react_query.QueryKey;
212
- } | {
213
- data: TData;
214
- error: TError;
215
- isError: true;
216
- isIdle: false;
217
- isLoading: false;
218
- isLoadingError: false;
219
- isRefetchError: true;
220
- isSuccess: false;
221
- status: "error";
222
- dataUpdatedAt: number;
223
- errorUpdatedAt: number;
224
- failureCount: number;
225
- isFetched: boolean;
226
- isFetchedAfterMount: boolean;
227
- isFetching: boolean;
228
- isPlaceholderData: boolean;
229
- isPreviousData: boolean;
230
- isRefetching: boolean;
231
- isStale: boolean;
232
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
233
- remove: () => void;
234
- queryKey: react_query.QueryKey;
235
- } | {
236
- data: TData;
237
- error: null;
238
- isError: false;
239
- isIdle: false;
240
- isLoading: false;
241
- isLoadingError: false;
242
- isRefetchError: false;
243
- isSuccess: true;
244
- status: "success";
245
- dataUpdatedAt: number;
246
- errorUpdatedAt: number;
247
- failureCount: number;
248
- isFetched: boolean;
249
- isFetchedAfterMount: boolean;
250
- isFetching: boolean;
251
- isPlaceholderData: boolean;
252
- isPreviousData: boolean;
253
- isRefetching: boolean;
254
- isStale: boolean;
255
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<TData, TError>>;
256
- remove: () => void;
257
- queryKey: react_query.QueryKey;
57
+ } | undefined) => UseQueryResult<TData, TError> & {
58
+ queryKey: QueryKey;
258
59
  };
60
+ /**
61
+ * Used to update some adjustable parameters of a Product, i.e. to extend the Allowance or Limit. Curently you can only patch storage Products
62
+
63
+ * @summary Adjust an existing Product
64
+ */
65
+ declare const patchProduct: (unitid: string, productid: string, productPatchBodyBody: ProductPatchBodyBody, options?: SecondParameter<typeof customInstance>) => Promise<void>;
66
+ declare const usePatchProduct: <TError = ErrorType<AsError>, TContext = unknown>(options?: {
67
+ mutation?: UseMutationOptions<void, TError, {
68
+ unitid: string;
69
+ productid: string;
70
+ data: ProductPatchBodyBody;
71
+ }, TContext> | undefined;
72
+ request?: SecondParameter<typeof customInstance>;
73
+ } | undefined) => react_query.UseMutationResult<void, TError, {
74
+ unitid: string;
75
+ productid: string;
76
+ data: ProductPatchBodyBody;
77
+ }, TContext>;
259
78
 
260
- export { getGetProductsForUnitQueryKey, getGetProductsQueryKey, getProducts, getProductsForUnit, useGetProducts, useGetProductsForUnit };
79
+ export { createUnitProduct, getGetProductQueryKey, getGetProductsForUnitQueryKey, getGetProductsQueryKey, getProduct, getProducts, getProductsForUnit, patchProduct, useCreateUnitProduct, useGetProduct, useGetProducts, useGetProductsForUnit, usePatchProduct };
@@ -1,2 +1,127 @@
1
- import{a as s,e as c}from"../chunk-WMX3LCLR.js";import{useQuery as p}from"react-query";var d=e=>c({url:"/product",method:"get"},e),i=()=>["/product"],R=e=>{var n;let{query:t,request:r}=e||{},o=(n=t==null?void 0:t.queryKey)!=null?n:i(),y=p(o,()=>d(r),t);return s({queryKey:o},y)},P=(e,t)=>c({url:`/product/unit/${e}`,method:"get"},t),T=e=>[`/product/unit/${e}`],F=(e,t)=>{var a;let{query:r,request:o}=t||{},u=(a=r==null?void 0:r.queryKey)!=null?a:T(e),n=p(u,()=>P(e,o),s({enabled:!!e},r));return s({queryKey:u},n)};export{T as getGetProductsForUnitQueryKey,i as getGetProductsQueryKey,d as getProducts,P as getProductsForUnit,R as useGetProducts,F as useGetProductsForUnit};
2
- //# sourceMappingURL=product.js.map
1
+ var __defProp = Object.defineProperty;
2
+ var __defProps = Object.defineProperties;
3
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
4
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
7
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
8
+ var __spreadValues = (a, b) => {
9
+ for (var prop in b || (b = {}))
10
+ if (__hasOwnProp.call(b, prop))
11
+ __defNormalProp(a, prop, b[prop]);
12
+ if (__getOwnPropSymbols)
13
+ for (var prop of __getOwnPropSymbols(b)) {
14
+ if (__propIsEnum.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ }
17
+ return a;
18
+ };
19
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
+
21
+ // src/product/product.ts
22
+ import {
23
+ useQuery,
24
+ useMutation
25
+ } from "react-query";
26
+
27
+ // src/custom-instance.ts
28
+ import Axios from "axios";
29
+ var AXIOS_INSTANCE = Axios.create({ baseURL: "" });
30
+ var customInstance = (config, options) => {
31
+ const source = Axios.CancelToken.source();
32
+ const promise = AXIOS_INSTANCE(__spreadProps(__spreadValues(__spreadValues({}, config), options), { cancelToken: source.token })).then(({ data }) => data);
33
+ promise.cancel = () => {
34
+ source.cancel("Query was cancelled by React Query");
35
+ };
36
+ return promise;
37
+ };
38
+
39
+ // src/product/product.ts
40
+ var getProducts = (options) => {
41
+ return customInstance({ url: `/product`, method: "get" }, options);
42
+ };
43
+ var getGetProductsQueryKey = () => [`/product`];
44
+ var useGetProducts = (options) => {
45
+ const { query: queryOptions, request: requestOptions } = options || {};
46
+ const queryKey = (queryOptions == null ? void 0 : queryOptions.queryKey) ?? getGetProductsQueryKey();
47
+ const queryFn = () => getProducts(requestOptions);
48
+ const query = useQuery(queryKey, queryFn, queryOptions);
49
+ return __spreadValues({
50
+ queryKey
51
+ }, query);
52
+ };
53
+ var createUnitProduct = (unitid, unitProductPostBodyBody, options) => {
54
+ return customInstance({
55
+ url: `/product/unit/${unitid}`,
56
+ method: "post",
57
+ data: unitProductPostBodyBody
58
+ }, options);
59
+ };
60
+ var useCreateUnitProduct = (options) => {
61
+ const { mutation: mutationOptions, request: requestOptions } = options || {};
62
+ const mutationFn = (props) => {
63
+ const { unitid, data } = props || {};
64
+ return createUnitProduct(unitid, data, requestOptions);
65
+ };
66
+ return useMutation(mutationFn, mutationOptions);
67
+ };
68
+ var getProductsForUnit = (unitid, options) => {
69
+ return customInstance({ url: `/product/unit/${unitid}`, method: "get" }, options);
70
+ };
71
+ var getGetProductsForUnitQueryKey = (unitid) => [
72
+ `/product/unit/${unitid}`
73
+ ];
74
+ var useGetProductsForUnit = (unitid, options) => {
75
+ const { query: queryOptions, request: requestOptions } = options || {};
76
+ const queryKey = (queryOptions == null ? void 0 : queryOptions.queryKey) ?? getGetProductsForUnitQueryKey(unitid);
77
+ const queryFn = () => getProductsForUnit(unitid, requestOptions);
78
+ const query = useQuery(queryKey, queryFn, __spreadValues({ enabled: !!unitid }, queryOptions));
79
+ return __spreadValues({
80
+ queryKey
81
+ }, query);
82
+ };
83
+ var getProduct = (unitid, productid, options) => {
84
+ return customInstance({ url: `/product/unit/${unitid}/product/${productid}`, method: "get" }, options);
85
+ };
86
+ var getGetProductQueryKey = (unitid, productid) => [
87
+ `/product/unit/${unitid}/product/${productid}`
88
+ ];
89
+ var useGetProduct = (unitid, productid, options) => {
90
+ const { query: queryOptions, request: requestOptions } = options || {};
91
+ const queryKey = (queryOptions == null ? void 0 : queryOptions.queryKey) ?? getGetProductQueryKey(unitid, productid);
92
+ const queryFn = () => getProduct(unitid, productid, requestOptions);
93
+ const query = useQuery(queryKey, queryFn, __spreadValues({ enabled: !!(unitid && productid) }, queryOptions));
94
+ return __spreadValues({
95
+ queryKey
96
+ }, query);
97
+ };
98
+ var patchProduct = (unitid, productid, productPatchBodyBody, options) => {
99
+ return customInstance({
100
+ url: `/product/unit/${unitid}/product/${productid}`,
101
+ method: "patch",
102
+ data: productPatchBodyBody
103
+ }, options);
104
+ };
105
+ var usePatchProduct = (options) => {
106
+ const { mutation: mutationOptions, request: requestOptions } = options || {};
107
+ const mutationFn = (props) => {
108
+ const { unitid, productid, data } = props || {};
109
+ return patchProduct(unitid, productid, data, requestOptions);
110
+ };
111
+ return useMutation(mutationFn, mutationOptions);
112
+ };
113
+ export {
114
+ createUnitProduct,
115
+ getGetProductQueryKey,
116
+ getGetProductsForUnitQueryKey,
117
+ getGetProductsQueryKey,
118
+ getProduct,
119
+ getProducts,
120
+ getProductsForUnit,
121
+ patchProduct,
122
+ useCreateUnitProduct,
123
+ useGetProduct,
124
+ useGetProducts,
125
+ useGetProductsForUnit,
126
+ usePatchProduct
127
+ };