@spiffcommerce/core 7.1.0 → 7.2.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/main.js CHANGED
@@ -92,6 +92,7 @@ var t=require("@apollo/client"),e=require("lodash.clonedeep"),A=require("react/j
92
92
  variants {
93
93
  id
94
94
  name
95
+ enabled
95
96
  color
96
97
  namedColor
97
98
  priceModifier
package/dist/module.js CHANGED
@@ -92,6 +92,7 @@ import{CommandContext as A,AssetType as t,BringForwardCommand as e,BringToFrontC
92
92
  variants {
93
93
  id
94
94
  name
95
+ enabled
95
96
  color
96
97
  namedColor
97
98
  priceModifier
package/dist/types.d.ts CHANGED
@@ -652,7 +652,11 @@ export interface Transaction {
652
652
  */
653
653
  integrationProduct?: IntegrationProduct;
654
654
  /**
655
- * The line item corresponding to this transaction.
655
+ * Whether this transaction has previously been ordered.
656
+ */
657
+ isOrdered?: boolean;
658
+ /**
659
+ * @deprecated use isOrdered to check whether transaction has been ordered instead.
656
660
  */
657
661
  lineItem?: LineItem;
658
662
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "7.1.0",
3
+ "version": "7.2.0",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/main.js",