@integry/sdk 4.9.27 → 4.9.29
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 +17 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +10 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -454,6 +454,15 @@ type SDKOptions = UserConfig; // rename user config to options for better unders
|
|
|
454
454
|
// rename user config to options for better understanding
|
|
455
455
|
interface SDKConfig {
|
|
456
456
|
baseUrl?: string;
|
|
457
|
+
authBaseUrl?: string;
|
|
458
|
+
/**
|
|
459
|
+
* Optional override for the public API domain. Falls back to api.integry.io.
|
|
460
|
+
*/
|
|
461
|
+
baseAPIUrl?: string;
|
|
462
|
+
/**
|
|
463
|
+
* Backwards compatible alias for baseAPIUrl.
|
|
464
|
+
*/
|
|
465
|
+
apiBaseUrl?: string;
|
|
457
466
|
debug?: boolean;
|
|
458
467
|
integrationId?: number;
|
|
459
468
|
lang?: string;
|
|
@@ -810,6 +819,7 @@ declare class IntegryJS {
|
|
|
810
819
|
private forceRerender;
|
|
811
820
|
private appAuthorizationsPollingIntervals;
|
|
812
821
|
private appAuthorizationsRequestIds;
|
|
822
|
+
private isAppAuthorizationsViewActive;
|
|
813
823
|
private clearAppAuthorizationsPolling;
|
|
814
824
|
constructor(config: ConfigWithObject | ConfigWithUrlParams);
|
|
815
825
|
/**
|