@spiffcommerce/core 21.8.2-1 → 21.8.2-3
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 +6 -1
- package/dist/index.js +229 -221
- package/dist/index.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1833,7 +1833,12 @@ interface GlobalPropertyStateManager {
|
|
|
1833
1833
|
getInitializationPromise(): Promise<void>;
|
|
1834
1834
|
getGlobalPropertyState(): GlobalPropertyState | undefined;
|
|
1835
1835
|
getAspect(name: string): string | undefined;
|
|
1836
|
-
setAspect(name: string, value: string): Promise<void>;
|
|
1836
|
+
setAspect(name: string, value: string, bundleOptions?: BundleOptions): Promise<void>;
|
|
1837
|
+
}
|
|
1838
|
+
interface BundleOptions {
|
|
1839
|
+
additionalHeaders?: {
|
|
1840
|
+
[key: string]: string;
|
|
1841
|
+
};
|
|
1837
1842
|
}
|
|
1838
1843
|
|
|
1839
1844
|
/**
|