@spiffcommerce/core 21.17.2 → 21.17.3
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 +6 -0
- package/dist/index.js +14 -0
- package/dist/index.umd.cjs +14 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2462,6 +2462,7 @@ interface Product {
|
|
|
2462
2462
|
conversionConfiguration?: ConversionConfiguration;
|
|
2463
2463
|
integrationProducts?: IntegrationProductResource[];
|
|
2464
2464
|
productTags?: ProductTag[];
|
|
2465
|
+
productImages?: ProductImage[];
|
|
2465
2466
|
/**
|
|
2466
2467
|
* The SKU of the product in the merchant's store.
|
|
2467
2468
|
*/
|
|
@@ -2475,6 +2476,11 @@ interface Product {
|
|
|
2475
2476
|
*/
|
|
2476
2477
|
priceBreaks?: ProductPriceBreak[];
|
|
2477
2478
|
}
|
|
2479
|
+
interface ProductImage {
|
|
2480
|
+
id: string;
|
|
2481
|
+
precedence?: number;
|
|
2482
|
+
asset: Asset;
|
|
2483
|
+
}
|
|
2478
2484
|
/**
|
|
2479
2485
|
* A price break represents a minimum quantity of a product and the price that will be charged for that quantity.
|
|
2480
2486
|
* This can be seen as an override for the base price of the product.
|
package/dist/index.js
CHANGED
|
@@ -1296,6 +1296,20 @@ const _t = D`
|
|
|
1296
1296
|
id
|
|
1297
1297
|
name
|
|
1298
1298
|
}
|
|
1299
|
+
productImages {
|
|
1300
|
+
id
|
|
1301
|
+
precedence
|
|
1302
|
+
asset {
|
|
1303
|
+
key
|
|
1304
|
+
fileLink
|
|
1305
|
+
name
|
|
1306
|
+
type
|
|
1307
|
+
versions {
|
|
1308
|
+
name
|
|
1309
|
+
link
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1299
1313
|
priceBreaks {
|
|
1300
1314
|
id
|
|
1301
1315
|
minQty
|
package/dist/index.umd.cjs
CHANGED