@incodetech/welcome 1.90.0-rc.20260612232011 → 1.90.0
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/onBoarding.d.ts +1 -2
- package/dist/onBoarding.mjs +2084 -2087
- package/dist/onBoarding.umd.js +100 -100
- package/package.json +2 -4
package/dist/onBoarding.d.ts
CHANGED
|
@@ -3661,7 +3661,7 @@ declare function setSessionStatus({ token, action }: {
|
|
|
3661
3661
|
|
|
3662
3662
|
declare function setSpeechOffset(token: string, seconds: number): Promise<any>;
|
|
3663
3663
|
|
|
3664
|
-
export declare const setup: ({ forceProductionMode, theme: _theme, clientId, lang, translations, apiKey, apiURL, tokboxApiKey, options, customHeaders, fingerprintApiKey, clientExperimentId, version, flowId, skipInitialization,
|
|
3664
|
+
export declare const setup: ({ forceProductionMode, theme: _theme, clientId, lang, translations, apiKey, apiURL, tokboxApiKey, options, customHeaders, fingerprintApiKey, clientExperimentId, version, flowId, skipInitialization, }: SetupParams) => Promise<void>;
|
|
3665
3665
|
|
|
3666
3666
|
export declare const setupDetect: () => Promise<void>;
|
|
3667
3667
|
|
|
@@ -3682,7 +3682,6 @@ declare type SetupParams = {
|
|
|
3682
3682
|
version?: string;
|
|
3683
3683
|
flowId?: string;
|
|
3684
3684
|
skipInitialization?: boolean;
|
|
3685
|
-
useSentry?: boolean;
|
|
3686
3685
|
};
|
|
3687
3686
|
|
|
3688
3687
|
export declare const setupWebClient: (apiURL?: string, useSha256?: boolean, defaultHeaders?: Record<string, string>) => Promise<void>;
|