feed-common 1.9.2 → 1.9.3

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.9.3](https://github.com/advertikon/package-maxify-feed-common/compare/v1.9.2...v1.9.3) (2024-05-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * change variant_id to number[] ([c99380e](https://github.com/advertikon/package-maxify-feed-common/commit/c99380e4989398a0d01e24ca1a395c50f8aa14a6))
7
+
1
8
  ## [1.9.2](https://github.com/advertikon/package-maxify-feed-common/compare/v1.9.1...v1.9.2) (2024-05-05)
2
9
 
3
10
 
@@ -48,7 +48,7 @@ export type AppProduct = {
48
48
  images: {
49
49
  src: string;
50
50
  id: string;
51
- variant_ids: string[];
51
+ variant_ids: number[];
52
52
  }[];
53
53
  collections: AppCollection[];
54
54
  tags: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feed-common",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "description": "Maxify feed common library",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -58,7 +58,7 @@ export type AppProduct = {
58
58
  images: {
59
59
  src: string;
60
60
  id: string;
61
- variant_ids: string[]
61
+ variant_ids: number[]
62
62
  }[];
63
63
  collections: AppCollection[];
64
64
  tags: string[];