@spiffcommerce/core 12.4.2 → 12.5.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/types.d.ts CHANGED
@@ -710,6 +710,13 @@ export interface Transaction {
710
710
  }
711
711
  interface IntegrationProduct {
712
712
  id: string;
713
+ externalProductId?: string;
714
+ integration?: Integration;
715
+ }
716
+ interface Integration {
717
+ id: string;
718
+ enabled: boolean;
719
+ externalIntegrationId?: string;
713
720
  }
714
721
  /**
715
722
  * Fields found in a variant within a line item resource.
@@ -838,6 +845,7 @@ interface Product {
838
845
  * Configuration for conversion. Optional.
839
846
  */
840
847
  conversionConfiguration?: ConversionConfiguration;
848
+ integrationProducts?: IntegrationProduct[];
841
849
  }
842
850
  export interface ColorOption {
843
851
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "12.4.2",
3
+ "version": "12.5.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",