@softwear/latestcollectioncore 1.0.25 → 1.0.26

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
@@ -125,6 +125,7 @@ interface SkuI {
125
125
  IMAGES?: Array<ImageI>;
126
126
  SIZES?: unknown;
127
127
  FOOTPRINT?: number;
128
+ quickPick?: number;
128
129
  }
129
130
  interface MarkedSkuI extends SkuI {
130
131
  source?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwear/latestcollectioncore",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
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
@@ -133,6 +133,7 @@ interface SkuI {
133
133
  IMAGES?: Array<ImageI>
134
134
  SIZES?: unknown
135
135
  FOOTPRINT?: number
136
+ quickPick?: number
136
137
  }
137
138
 
138
139
  interface MarkedSkuI extends SkuI {