@deepdesk/deepdesk-sdk 10.10.3-beta.1 → 10.10.3-beta.2
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/index.cjs.js +7 -7
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +6 -6
- package/dist/index.iife.js +12 -12
- package/package.json +1 -1
- package/styles/index.js +1 -1
- package/styles.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2104,7 +2104,9 @@ declare class DeepdeskSDK {
|
|
|
2104
2104
|
private handleError;
|
|
2105
2105
|
private loadProfileConfigPromise;
|
|
2106
2106
|
private loadProfileConfig;
|
|
2107
|
-
loginViaPopup(
|
|
2107
|
+
loginViaPopup(options?: {
|
|
2108
|
+
url?: string;
|
|
2109
|
+
}): Promise<void>;
|
|
2108
2110
|
checkForTrialMode(agentId: string): Promise<void>;
|
|
2109
2111
|
private refreshWidgetSuggestions;
|
|
2110
2112
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2104,7 +2104,9 @@ declare class DeepdeskSDK {
|
|
|
2104
2104
|
private handleError;
|
|
2105
2105
|
private loadProfileConfigPromise;
|
|
2106
2106
|
private loadProfileConfig;
|
|
2107
|
-
loginViaPopup(
|
|
2107
|
+
loginViaPopup(options?: {
|
|
2108
|
+
url?: string;
|
|
2109
|
+
}): Promise<void>;
|
|
2108
2110
|
checkForTrialMode(agentId: string): Promise<void>;
|
|
2109
2111
|
private refreshWidgetSuggestions;
|
|
2110
2112
|
}
|