@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/main.js +16 -11
- package/dist/module.js +19 -14
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
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;
|