feed-common 1.25.0 → 1.25.1

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.25.1](https://github.com/advertikon/package-maxify-feed-common/compare/v1.25.0...v1.25.1) (2024-07-31)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * change title to label for XmlFeedEntryType ([da910f1](https://github.com/advertikon/package-maxify-feed-common/commit/da910f1786ee3f94d1df51d844469723ceccac44))
7
+
1
8
  # [1.25.0](https://github.com/advertikon/package-maxify-feed-common/compare/v1.24.0...v1.25.0) (2024-07-31)
2
9
 
3
10
 
@@ -76,7 +76,7 @@ export type MacroPartType = {
76
76
  };
77
77
  export type XmlFeedEntryType = {
78
78
  id: string;
79
- title: string;
79
+ label: string;
80
80
  description: string;
81
81
  required: boolean;
82
82
  type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feed-common",
3
- "version": "1.25.0",
3
+ "version": "1.25.1",
4
4
  "description": "Maxify feed common library",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -82,7 +82,7 @@ export type MacroPartType = {
82
82
 
83
83
  export type XmlFeedEntryType = {
84
84
  id: string,
85
- title: string,
85
+ label: string,
86
86
  description: string;
87
87
  required: boolean;
88
88
  type: string;