@embeddable.com/sdk-core 2.4.8 → 2.4.10
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/lib/index.esm.js +6 -3
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +6 -3
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.esm.js
CHANGED
|
@@ -19849,6 +19849,7 @@ var login = async () => {
|
|
|
19849
19849
|
}
|
|
19850
19850
|
catch (error) {
|
|
19851
19851
|
await reportErrorToRollbar(error);
|
|
19852
|
+
console.log(error);
|
|
19852
19853
|
throw error;
|
|
19853
19854
|
}
|
|
19854
19855
|
};
|
|
@@ -19958,6 +19959,7 @@ var build = async () => {
|
|
|
19958
19959
|
}
|
|
19959
19960
|
catch (error) {
|
|
19960
19961
|
await reportErrorToRollbar(error);
|
|
19962
|
+
console.log(error);
|
|
19961
19963
|
throw error;
|
|
19962
19964
|
}
|
|
19963
19965
|
};
|
|
@@ -19981,6 +19983,7 @@ var push = async () => {
|
|
|
19981
19983
|
spinnerPushing.succeed(`published to ${workspaceName} using ${config.pushBaseUrl}`);
|
|
19982
19984
|
}
|
|
19983
19985
|
catch (error) {
|
|
19986
|
+
console.log(error);
|
|
19984
19987
|
await reportErrorToRollbar(error);
|
|
19985
19988
|
throw error;
|
|
19986
19989
|
}
|
|
@@ -20106,9 +20109,9 @@ var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientI
|
|
|
20106
20109
|
typesEntryPointFilename: "embeddable-types-entry-point.js",
|
|
20107
20110
|
},
|
|
20108
20111
|
pushBaseUrl: pushBaseUrl !== null && pushBaseUrl !== void 0 ? pushBaseUrl : "https://api.embeddable.com",
|
|
20109
|
-
audienceUrl: audienceUrl !== null && audienceUrl !== void 0 ? audienceUrl : "https://
|
|
20110
|
-
authDomain: authDomain !== null && authDomain !== void 0 ? authDomain : "embeddable
|
|
20111
|
-
authClientId: authClientId !== null && authClientId !== void 0 ? authClientId : "
|
|
20112
|
+
audienceUrl: audienceUrl !== null && audienceUrl !== void 0 ? audienceUrl : "https://auth.embeddable.com",
|
|
20113
|
+
authDomain: authDomain !== null && authDomain !== void 0 ? authDomain : "auth.embeddable.com",
|
|
20114
|
+
authClientId: authClientId !== null && authClientId !== void 0 ? authClientId : "dygrSUmI6HmgY5ymVbEAoLDEBxIOyr1V",
|
|
20112
20115
|
applicationEnvironment: applicationEnvironment !== null && applicationEnvironment !== void 0 ? applicationEnvironment : "production",
|
|
20113
20116
|
rollbarAccessToken: rollbarAccessToken !== null && rollbarAccessToken !== void 0 ? rollbarAccessToken : "5c6028038d844bf1835a0f4db5f55d9e",
|
|
20114
20117
|
plugins,
|