@deepdesk/deepdesk-sdk 14.2.1-beta.2 → 14.2.1-beta.4

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
@@ -2297,9 +2297,12 @@ declare class DeepdeskSDK {
2297
2297
  */
2298
2298
  setCustomData(data: CustomData): void;
2299
2299
  /**
2300
- * Store the agent information in memory
2300
+ * Store the agent information in memory and on the server.
2301
+ * Pass `skipPatch` as option to skip saving on the server.
2301
2302
  */
2302
- setAgentInfo(agentInfo: AgentInfo): Promise<void>;
2303
+ setAgentInfo(agentInfo: AgentInfo, options?: {
2304
+ skipSync?: boolean;
2305
+ }): Promise<void>;
2303
2306
  /**
2304
2307
  * Store the agent settings
2305
2308
  */
package/dist/index.d.ts CHANGED
@@ -2297,9 +2297,12 @@ declare class DeepdeskSDK {
2297
2297
  */
2298
2298
  setCustomData(data: CustomData): void;
2299
2299
  /**
2300
- * Store the agent information in memory
2300
+ * Store the agent information in memory and on the server.
2301
+ * Pass `skipPatch` as option to skip saving on the server.
2301
2302
  */
2302
- setAgentInfo(agentInfo: AgentInfo): Promise<void>;
2303
+ setAgentInfo(agentInfo: AgentInfo, options?: {
2304
+ skipSync?: boolean;
2305
+ }): Promise<void>;
2303
2306
  /**
2304
2307
  * Store the agent settings
2305
2308
  */