@dascompany/product 4.2.5 → 4.2.6

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.
@@ -2,7 +2,6 @@ import { QueryOptions } from "@dascompany/database";
2
2
  type MarketData = {
3
3
  id: string;
4
4
  country: string;
5
- language: string;
6
5
  vatRate: string;
7
6
  };
8
7
  export default class MarketPlacesReader {
@@ -21,7 +21,6 @@ export default class MarketPlacesReader {
21
21
  const correctMarket = {
22
22
  id: marketRow.id,
23
23
  country: marketRow.country,
24
- language: marketRow.language,
25
24
  vatRate: marketRow.vat_rate,
26
25
  };
27
26
  return correctMarket;
@@ -1,6 +1,5 @@
1
1
  export default interface MarketPlaceRow {
2
2
  id: string;
3
3
  country: string;
4
- language: string;
5
4
  vat_rate: string;
6
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dascompany/product",
3
- "version": "4.2.5",
3
+ "version": "4.2.6",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "test": "vitest",