@spiffcommerce/core 19.1.0 → 19.2.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 +6 -0
- package/dist/index.js +250 -226
- package/dist/index.umd.cjs +24 -6
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2227,6 +2227,12 @@ declare class SpiffCommerceClient {
|
|
|
2227
2227
|
getAssetManager(): AssetManager;
|
|
2228
2228
|
getCurrencyCode(): string;
|
|
2229
2229
|
getFlowService(): FlowService;
|
|
2230
|
+
getIntegration(): Promise<{
|
|
2231
|
+
id: string;
|
|
2232
|
+
theme: Theme;
|
|
2233
|
+
partner: Partner;
|
|
2234
|
+
logo: string;
|
|
2235
|
+
}>;
|
|
2230
2236
|
/**
|
|
2231
2237
|
* Attempts to load persisted authentication information from local storage, and authenticate with the Spiff Commerce API.
|
|
2232
2238
|
* @param bundleId The ID of the bundle you intend to load.
|