@spiffcommerce/core 21.17.2 → 21.17.4

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
@@ -1117,6 +1117,20 @@ const oe = D`
1117
1117
  currencyCode
1118
1118
  customerDetailsPromptMarkdown
1119
1119
  }
1120
+ productImages {
1121
+ id
1122
+ precedence
1123
+ asset {
1124
+ key
1125
+ fileLink
1126
+ name
1127
+ type
1128
+ versions {
1129
+ name
1130
+ link
1131
+ }
1132
+ }
1133
+ }
1120
1134
  integrationProducts {
1121
1135
  id
1122
1136
  integration {
@@ -1296,6 +1310,20 @@ const _t = D`
1296
1310
  id
1297
1311
  name
1298
1312
  }
1313
+ productImages {
1314
+ id
1315
+ precedence
1316
+ asset {
1317
+ key
1318
+ fileLink
1319
+ name
1320
+ type
1321
+ versions {
1322
+ name
1323
+ link
1324
+ }
1325
+ }
1326
+ }
1299
1327
  priceBreaks {
1300
1328
  id
1301
1329
  minQty
@@ -466,6 +466,20 @@
466
466
  currencyCode
467
467
  customerDetailsPromptMarkdown
468
468
  }
469
+ productImages {
470
+ id
471
+ precedence
472
+ asset {
473
+ key
474
+ fileLink
475
+ name
476
+ type
477
+ versions {
478
+ name
479
+ link
480
+ }
481
+ }
482
+ }
469
483
  integrationProducts {
470
484
  id
471
485
  integration {
@@ -643,6 +657,20 @@
643
657
  id
644
658
  name
645
659
  }
660
+ productImages {
661
+ id
662
+ precedence
663
+ asset {
664
+ key
665
+ fileLink
666
+ name
667
+ type
668
+ versions {
669
+ name
670
+ link
671
+ }
672
+ }
673
+ }
646
674
  priceBreaks {
647
675
  id
648
676
  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.4",
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",