feed-common 1.14.1 → 1.14.2

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.14.2](https://github.com/advertikon/package-maxify-feed-common/compare/v1.14.1...v1.14.2) (2024-06-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * change GmcProduct price type ([4e1ca45](https://github.com/advertikon/package-maxify-feed-common/commit/4e1ca45a469d413436c64f8d590c355813fabd95))
7
+
1
8
  ## [1.14.1](https://github.com/advertikon/package-maxify-feed-common/compare/v1.14.0...v1.14.1) (2024-06-09)
2
9
 
3
10
 
@@ -111,7 +111,7 @@ export type UploadProductBulkPayload = {
111
111
  export type GmcProduct = {
112
112
  id: number;
113
113
  title: string;
114
- price: string;
114
+ price: number;
115
115
  sku: string;
116
116
  image?: string;
117
117
  locale: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feed-common",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
4
4
  "description": "Maxify feed common library",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -126,7 +126,7 @@ export type UploadProductBulkPayload = {
126
126
  export type GmcProduct = {
127
127
  id: number;
128
128
  title: string;
129
- price: string;
129
+ price: number;
130
130
  sku: string;
131
131
  image?: string;
132
132
  locale: string;