@softwear/latestcollectioncore 1.0.22 → 1.0.23

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/dist/types.d.ts CHANGED
@@ -178,6 +178,7 @@ interface ProductI {
178
178
  year?: string;
179
179
  }
180
180
  interface BrandSettingI {
181
+ id: string;
181
182
  name: string;
182
183
  collection: string;
183
184
  count?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "Core functions for LatestCollections applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -190,6 +190,7 @@ interface ProductI {
190
190
  }
191
191
 
192
192
  interface BrandSettingI {
193
+ id: string
193
194
  name: string
194
195
  collection: string
195
196
  count?: number