@spiffcommerce/core 25.0.7 → 25.0.9
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 +8 -0
- package/dist/index.js +85 -85
- package/dist/index.mjs +1844 -1877
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1492,7 +1492,15 @@ interface BundleOptions {
|
|
|
1492
1492
|
additionalHeaders?: {
|
|
1493
1493
|
[key: string]: string;
|
|
1494
1494
|
};
|
|
1495
|
+
/**
|
|
1496
|
+
* If set to true, the products associated with the bundle will be eagerly fetched.
|
|
1497
|
+
*/
|
|
1495
1498
|
eagerFetchProducts?: boolean;
|
|
1499
|
+
/**
|
|
1500
|
+
* If set to true, a new global state will be created. Typically for use when we
|
|
1501
|
+
* know the bundle is new and we want to skip the existing state check.
|
|
1502
|
+
*/
|
|
1503
|
+
createNewGlobalState?: boolean;
|
|
1496
1504
|
}
|
|
1497
1505
|
|
|
1498
1506
|
/**
|