@deepdesk/deepdesk-sdk 10.10.3-beta.1 → 10.10.3-beta.3

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.d.mts CHANGED
@@ -1211,6 +1211,8 @@ declare class DeepdeskAPI {
1211
1211
  }>, options?: {
1212
1212
  model?: string;
1213
1213
  promptInstruction?: string;
1214
+ agentId?: string;
1215
+ externalConversationId?: string;
1214
1216
  }): Promise<string>;
1215
1217
  /**
1216
1218
  * Get a temporary exchange / login token
@@ -2104,7 +2106,9 @@ declare class DeepdeskSDK {
2104
2106
  private handleError;
2105
2107
  private loadProfileConfigPromise;
2106
2108
  private loadProfileConfig;
2107
- loginViaPopup(): Promise<void>;
2109
+ loginViaPopup(options?: {
2110
+ url?: string;
2111
+ }): Promise<void>;
2108
2112
  checkForTrialMode(agentId: string): Promise<void>;
2109
2113
  private refreshWidgetSuggestions;
2110
2114
  }
package/dist/index.d.ts CHANGED
@@ -1211,6 +1211,8 @@ declare class DeepdeskAPI {
1211
1211
  }>, options?: {
1212
1212
  model?: string;
1213
1213
  promptInstruction?: string;
1214
+ agentId?: string;
1215
+ externalConversationId?: string;
1214
1216
  }): Promise<string>;
1215
1217
  /**
1216
1218
  * Get a temporary exchange / login token
@@ -2104,7 +2106,9 @@ declare class DeepdeskSDK {
2104
2106
  private handleError;
2105
2107
  private loadProfileConfigPromise;
2106
2108
  private loadProfileConfig;
2107
- loginViaPopup(): Promise<void>;
2109
+ loginViaPopup(options?: {
2110
+ url?: string;
2111
+ }): Promise<void>;
2108
2112
  checkForTrialMode(agentId: string): Promise<void>;
2109
2113
  private refreshWidgetSuggestions;
2110
2114
  }