@softwear/latestcollectioncore 1.0.128 → 1.0.129

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
@@ -139,6 +139,7 @@ interface SkuI {
139
139
  genderSupplier?: string;
140
140
  __created?: string;
141
141
  __modified?: string;
142
+ [key: `_${string}`]: unknown;
142
143
  }
143
144
  interface DocumentItemI {
144
145
  barcode: barcode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.128",
3
+ "version": "1.0.129",
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
@@ -148,6 +148,7 @@ interface SkuI {
148
148
  genderSupplier?: string
149
149
  __created?: string
150
150
  __modified?: string
151
+ [key: `_${string}`]: unknown
151
152
  }
152
153
 
153
154
  interface DocumentItemI {