@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 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
@@ -643,6 +643,20 @@
643
643
  id
644
644
  name
645
645
  }
646
+ productImages {
647
+ id
648
+ precedence
649
+ asset {
650
+ key
651
+ fileLink
652
+ name
653
+ type
654
+ versions {
655
+ name
656
+ link
657
+ }
658
+ }
659
+ }
646
660
  priceBreaks {
647
661
  id
648
662
  minQty
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "21.17.2",
3
+ "version": "21.17.3",
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",