@spiffcommerce/core 21.16.5 → 21.17.1

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/index.d.ts CHANGED
@@ -2383,6 +2383,10 @@ interface Product {
2383
2383
  * The human friendly name of the product.
2384
2384
  */
2385
2385
  name: string;
2386
+ /**
2387
+ * A description of the Product, written in Markdown.
2388
+ */
2389
+ description: string;
2386
2390
  /**
2387
2391
  * A URL to the image asset associated with this product.
2388
2392
  */
package/dist/index.js CHANGED
@@ -810,6 +810,7 @@ const oe = D`
810
810
  basePrice
811
811
  enabled
812
812
  name
813
+ description
813
814
  sku
814
815
  skuCode
815
816
  weight
@@ -850,6 +851,7 @@ const oe = D`
850
851
  basePrice
851
852
  enabled
852
853
  name
854
+ description
853
855
  partner {
854
856
  id
855
857
  name
@@ -927,6 +929,7 @@ const oe = D`
927
929
  basePrice
928
930
  enabled
929
931
  name
932
+ description
930
933
  partner {
931
934
  id
932
935
  name
@@ -1004,6 +1007,7 @@ const oe = D`
1004
1007
  basePrice
1005
1008
  enabled
1006
1009
  name
1010
+ description
1007
1011
  partner {
1008
1012
  id
1009
1013
  name
@@ -1099,6 +1103,7 @@ const oe = D`
1099
1103
  basePrice
1100
1104
  enabled
1101
1105
  name
1106
+ description
1102
1107
  partner {
1103
1108
  id
1104
1109
  name
@@ -1267,6 +1272,7 @@ const _t = D`
1267
1272
  imageUrl
1268
1273
  modelUrl
1269
1274
  name
1275
+ description
1270
1276
  overlayImageUrl
1271
1277
  preloadImageUrl
1272
1278
  sku
@@ -7887,6 +7893,7 @@ const Vi = (c, e) => {
7887
7893
  }
7888
7894
  modelUrl
7889
7895
  name
7896
+ description
7890
7897
  overlayImageUrl
7891
7898
  preloadImageUrl
7892
7899
  sku
@@ -159,6 +159,7 @@
159
159
  basePrice
160
160
  enabled
161
161
  name
162
+ description
162
163
  sku
163
164
  skuCode
164
165
  weight
@@ -199,6 +200,7 @@
199
200
  basePrice
200
201
  enabled
201
202
  name
203
+ description
202
204
  partner {
203
205
  id
204
206
  name
@@ -276,6 +278,7 @@
276
278
  basePrice
277
279
  enabled
278
280
  name
281
+ description
279
282
  partner {
280
283
  id
281
284
  name
@@ -353,6 +356,7 @@
353
356
  basePrice
354
357
  enabled
355
358
  name
359
+ description
356
360
  partner {
357
361
  id
358
362
  name
@@ -448,6 +452,7 @@
448
452
  basePrice
449
453
  enabled
450
454
  name
455
+ description
451
456
  partner {
452
457
  id
453
458
  name
@@ -614,6 +619,7 @@
614
619
  imageUrl
615
620
  modelUrl
616
621
  name
622
+ description
617
623
  overlayImageUrl
618
624
  preloadImageUrl
619
625
  sku
@@ -2073,6 +2079,7 @@ IfnI8vaNAAAAAElFTkSuQmCC" transform="matrix(0.13 0.0141 -0.0141 0.1301 104.926 1
2073
2079
  }
2074
2080
  modelUrl
2075
2081
  name
2082
+ description
2076
2083
  overlayImageUrl
2077
2084
  preloadImageUrl
2078
2085
  sku
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "21.16.5",
3
+ "version": "21.17.1",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.umd.cjs",