@softwear/latestcollectioncore 1.0.40 → 1.0.41

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
@@ -130,6 +130,7 @@ interface SkuI {
130
130
  erpSource?: string;
131
131
  }
132
132
  interface MarkedSkuI extends SkuI {
133
+ SOURCE?: string;
133
134
  groups?: Array<GroupI>;
134
135
  usedByTenant?: boolean;
135
136
  warehouse?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
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
@@ -139,6 +139,7 @@ interface SkuI {
139
139
  }
140
140
 
141
141
  interface MarkedSkuI extends SkuI {
142
+ SOURCE?: string;
142
143
  groups?: Array<GroupI>;
143
144
  usedByTenant?: boolean;
144
145
  warehouse?: string;