@integry/sdk 4.9.27 → 4.9.28
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/esm/index.csm.d.ts
CHANGED
|
@@ -455,6 +455,15 @@ type SDKOptions = UserConfig; // rename user config to options for better unders
|
|
|
455
455
|
// rename user config to options for better understanding
|
|
456
456
|
interface SDKConfig {
|
|
457
457
|
baseUrl?: string;
|
|
458
|
+
authBaseUrl?: string;
|
|
459
|
+
/**
|
|
460
|
+
* Optional override for the public API domain. Falls back to api.integry.io.
|
|
461
|
+
*/
|
|
462
|
+
baseAPIUrl?: string;
|
|
463
|
+
/**
|
|
464
|
+
* Backwards compatible alias for baseAPIUrl.
|
|
465
|
+
*/
|
|
466
|
+
apiBaseUrl?: string;
|
|
458
467
|
debug?: boolean;
|
|
459
468
|
integrationId?: number;
|
|
460
469
|
lang?: string;
|