@kohost/api-client 3.2.13 → 3.2.14

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.
@@ -55,6 +55,7 @@ export interface Product {
55
55
  [k: string]: unknown;
56
56
  };
57
57
  price: number;
58
+ tax?: number | null;
58
59
  image?: MediaFile;
59
60
  category?: string;
60
61
  imageUrl?: {
@@ -25,6 +25,9 @@
25
25
  "price": {
26
26
  "type": "number"
27
27
  },
28
+ "tax": {
29
+ "type": ["number", "null"]
30
+ },
28
31
  "image": {
29
32
  "$ref": "mediaFile.json"
30
33
  },
@@ -11883,6 +11883,9 @@ var require_product = __commonJS({
11883
11883
  price: {
11884
11884
  type: "number"
11885
11885
  },
11886
+ tax: {
11887
+ type: ["number", "null"]
11888
+ },
11886
11889
  image: {
11887
11890
  $ref: "mediaFile.json"
11888
11891
  },