@eloquentai/chat-sdk 0.16.1-dev → 0.16.2-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.
@@ -29,6 +29,6 @@ export interface UseChatReturn {
29
29
  * @returns The chat hook return type
30
30
  */
31
31
  export declare function useChat({ environment, appId, userId: initialUserId, chatProps, isMobile: propIsMobile, initialOpen: propInitialOpen, }: Readonly<Partial<UseChatProps> & {
32
- environment: "development" | "production";
32
+ environment: "test" | "live";
33
33
  appId: string;
34
34
  }>): UseChatReturn;
@@ -1,7 +1,7 @@
1
1
  import { Message } from '../../type';
2
2
  import { EloquentAiApiClient, BootResponse } from '../../lib/eloquent-ai-api-client';
3
3
  export interface UseSdkInitializationProps {
4
- environment: "development" | "production";
4
+ environment: "test" | "live";
5
5
  appId: string;
6
6
  initialUserId?: string;
7
7
  }