@floe-ai/sdk 0.1.0-dev.6 → 0.1.0-dev.7
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-sdk/floe-sdk.es.js
CHANGED
|
@@ -18597,7 +18597,9 @@ typeof window < "u" && (window.OnboardingSDK = ec);
|
|
|
18597
18597
|
function oh(n) {
|
|
18598
18598
|
return {
|
|
18599
18599
|
clientKey: n.clientKey,
|
|
18600
|
-
apiUrl
|
|
18600
|
+
// Only include apiUrl if explicitly provided - this allows the SDK constructor
|
|
18601
|
+
// to use its build-time default (__FLOE_API_URL__) when not overridden
|
|
18602
|
+
...n.apiUrl !== void 0 && { apiUrl: n.apiUrl },
|
|
18601
18603
|
enableVideo: !1,
|
|
18602
18604
|
// Video not used in current implementation
|
|
18603
18605
|
enableAudio: n.enableAudio ?? !0,
|