@spiffcommerce/core 17.3.0 → 17.3.1-alpha.0

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
@@ -784,6 +784,14 @@ interface Product {
784
784
  conversionConfiguration?: ConversionConfiguration;
785
785
  integrationProducts?: IntegrationProduct[];
786
786
  productTags?: ProductTag[];
787
+ /**
788
+ * The SKU of the product in the merchant's store.
789
+ */
790
+ sku?: string;
791
+ /**
792
+ * The Spiff SKU code for the product.
793
+ */
794
+ skuCode?: string;
787
795
  }
788
796
  interface ProductTag {
789
797
  id: string;
package/dist/index.js CHANGED
@@ -732,6 +732,7 @@ const he = y`
732
732
  word
733
733
  }
734
734
  sku
735
+ skuCode
735
736
  weight
736
737
  workflows {
737
738
  id
@@ -799,6 +800,7 @@ const he = y`
799
800
  word
800
801
  }
801
802
  sku
803
+ skuCode
802
804
  weight
803
805
  workflows {
804
806
  id
@@ -866,6 +868,7 @@ const he = y`
866
868
  word
867
869
  }
868
870
  sku
871
+ skuCode
869
872
  weight
870
873
  workflows {
871
874
  id
@@ -940,6 +943,7 @@ const he = y`
940
943
  word
941
944
  }
942
945
  sku
946
+
943
947
  weight
944
948
  workflows {
945
949
  id
@@ -7349,6 +7353,7 @@ const Ms = (c, A) => {
7349
7353
  overlayImageUrl
7350
7354
  preloadImageUrl
7351
7355
  sku
7356
+ skuCode
7352
7357
  workflows {
7353
7358
  id
7354
7359
  index
@@ -185,6 +185,7 @@
185
185
  word
186
186
  }
187
187
  sku
188
+ skuCode
188
189
  weight
189
190
  workflows {
190
191
  id
@@ -252,6 +253,7 @@
252
253
  word
253
254
  }
254
255
  sku
256
+ skuCode
255
257
  weight
256
258
  workflows {
257
259
  id
@@ -319,6 +321,7 @@
319
321
  word
320
322
  }
321
323
  sku
324
+ skuCode
322
325
  weight
323
326
  workflows {
324
327
  id
@@ -393,6 +396,7 @@
393
396
  word
394
397
  }
395
398
  sku
399
+
396
400
  weight
397
401
  workflows {
398
402
  id
@@ -1899,6 +1903,7 @@ IfnI8vaNAAAAAElFTkSuQmCC" transform="matrix(0.13 0.0141 -0.0141 0.1301 104.926 1
1899
1903
  overlayImageUrl
1900
1904
  preloadImageUrl
1901
1905
  sku
1906
+ skuCode
1902
1907
  workflows {
1903
1908
  id
1904
1909
  index
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "17.3.0",
3
+ "version": "17.3.1-alpha.0",
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",