@hanzo/commerce 7.0.6 → 7.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanzo/commerce",
3
- "version": "7.0.6",
3
+ "version": "7.0.7",
4
4
  "description": "e-commerce framework.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -28,6 +28,7 @@ class ActualLineItem
28
28
  sku: string
29
29
  fullTitle?: string
30
30
  optionLabel: string
31
+ optionLabelShort?: string
31
32
  familyTitle: string
32
33
  familyId: string
33
34
  byline?: string
@@ -45,6 +46,7 @@ class ActualLineItem
45
46
  this.sku = prod.sku
46
47
  this.fullTitle = prod.fullTitle
47
48
  this.optionLabel = prod.optionLabel
49
+ this.optionLabelShort = prod.optionLabelShort
48
50
  this.familyTitle = prod.familyTitle
49
51
  this.familyId = prod.familyId
50
52
  this.byline = prod.byline
package/types/product.ts CHANGED
@@ -5,6 +5,7 @@ interface Product extends MediaStackDef {
5
5
  sku: string // human visible on orders etc.
6
6
  fullTitle?: string
7
7
  optionLabel: string
8
+ optionLabelShort?: string
8
9
  familyId: string // skuPath, eg LXB-AU-B
9
10
  familyTitle: string
10
11
  byline?: string