@eloquentai/chat-sdk 0.25.10-dev → 0.25.11-dev

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.
@@ -1,21 +0,0 @@
1
- /**
2
- * Cookie utility functions for managing browser cookies
3
- */
4
- /**
5
- * Set a cookie with the given name, value, and options
6
- */
7
- export declare function setCookie(name: string, value: string, options?: {
8
- maxAge?: number;
9
- path?: string;
10
- domain?: string;
11
- secure?: boolean;
12
- sameSite?: "Strict" | "Lax" | "None";
13
- }): void;
14
- /**
15
- * Get a cookie value by name
16
- */
17
- export declare function getCookie(name: string): string | null;
18
- /**
19
- * Delete a cookie by name
20
- */
21
- export declare function deleteCookie(name: string, path?: string): void;