@spiffcommerce/core 18.1.0-beta.1 → 18.2.0-beta.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 +7 -3
- package/dist/index.js +222 -208
- package/dist/index.umd.cjs +35 -32
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -654,10 +654,14 @@ interface IntegrationProduct {
|
|
|
654
654
|
*/
|
|
655
655
|
additionalExternalVariantId?: string;
|
|
656
656
|
/**
|
|
657
|
-
* When the additionalExternalProductId is set, this is the
|
|
657
|
+
* When the additionalExternalProductId is set, this is the IntegrationProduct that is associated with it.
|
|
658
658
|
* If no Spiff product has been associated with the additionalExternalProductId, this will be null.
|
|
659
659
|
*/
|
|
660
|
-
|
|
660
|
+
additionalIntegrationProduct?: IntegrationProduct;
|
|
661
|
+
/**
|
|
662
|
+
* The product that this integration product is associated with.
|
|
663
|
+
*/
|
|
664
|
+
product?: Product;
|
|
661
665
|
}
|
|
662
666
|
interface Integration {
|
|
663
667
|
id: string;
|
|
@@ -2387,7 +2391,7 @@ declare class IllustrationStepService implements StepService<IllustrationStepDat
|
|
|
2387
2391
|
};
|
|
2388
2392
|
init(stepData: Step<IllustrationStepData>, workflowManager: WorkflowManager, reducerState?: LayoutsState): Promise<CommandWithFollowup | null>;
|
|
2389
2393
|
private reload;
|
|
2390
|
-
availableColors(stepData: Step<IllustrationStepData>,
|
|
2394
|
+
availableColors(stepData: Step<IllustrationStepData>, _workflowManager: WorkflowManager): Promise<{
|
|
2391
2395
|
fill: string | undefined;
|
|
2392
2396
|
stroke: string | undefined;
|
|
2393
2397
|
variant: VariantResource;
|