@spiffcommerce/core 34.1.0-beta.3fb0da60-1da5-5e84-b959-ca75a31ba2e9 → 34.1.0-beta.7a56a636-d7cf-54ee-8dfc-5407b655bd46
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -15284,7 +15284,7 @@ class dn {
|
|
|
15284
15284
|
getWorkflowExperiences() {
|
|
15285
15285
|
const t = [...this.workflowExperiences], e = (a, i) => {
|
|
15286
15286
|
const r = a.getBundleIndex(), o = i.getBundleIndex();
|
|
15287
|
-
return r === void 0 || o === void 0 ? 0 : r
|
|
15287
|
+
return r === void 0 || o === void 0 ? 0 : r < o ? -1 : 1;
|
|
15288
15288
|
};
|
|
15289
15289
|
return t.sort(e), t;
|
|
15290
15290
|
}
|
|
@@ -16166,7 +16166,7 @@ class Od {
|
|
|
16166
16166
|
} catch (a) {
|
|
16167
16167
|
throw console.error(a), new gt("Critical - Unable to synchronize workflow state with server.");
|
|
16168
16168
|
}
|
|
16169
|
-
}, this.options = t, this.options.applicationKey && nr(this.options.applicationKey), console.debug("------------------------"), console.debug("Spiff Commerce Core SDK"), console.debug("Version: 34.1.0"), console.debug(`Application Key Provided: ${!!this.options.applicationKey}`), console.debug("------------------------");
|
|
16169
|
+
}, this.options = t, this.options.applicationKey && nr(this.options.applicationKey), console.debug("------------------------"), console.debug("Spiff Commerce Core SDK"), console.debug("Version: 34.1.0-beta.3fb0da60-1da5-5e84-b959-ca75a31ba2e9"), console.debug(`Application Key Provided: ${!!this.options.applicationKey}`), console.debug("------------------------");
|
|
16170
16170
|
}
|
|
16171
16171
|
configure(t) {
|
|
16172
16172
|
pt.setHubUrl(t.hubUrl), pt.setServerUrl(t.serverUrl), pt.setServicesApiUrl(t.servicesApiUrl), this.marketplaceThemeInstallId = t.marketplaceThemeInstallId, this.marketplaceThemeInstallConfigurationId = t.marketplaceThemeInstallConfigurationId, this.userPoolClientId = t.userPoolClientId, this.userPoolRegion = t.userPoolRegion, this.spiffRegion = t.spiffRegion, t.bearerAuthenticationToken && rr(t.bearerAuthenticationToken), this.options.applicationKey && this.getIntegration(), this.spiffRegion && this.userPoolRegion && this.userPoolClientId && Lt.init(this.spiffRegion, this.userPoolRegion, this.userPoolClientId);
|