@1interface/chat-core 0.6.0 → 0.6.1

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.ts CHANGED
@@ -607,7 +607,7 @@ export declare interface ClientConfig {
607
607
  features?: string[];
608
608
  backend_version?: string;
609
609
  panel_switcher_enabled?: boolean;
610
- auth_mode_config?: Partial<Record<AuthClientType, AuthMode>>;
610
+ auth_mode_config?: Partial<Record<string, AuthMode>>;
611
611
  }
612
612
 
613
613
  export declare interface ClientConfigResponse {
@@ -3300,7 +3300,7 @@ isError: false;
3300
3300
  };
3301
3301
 
3302
3302
  export declare function useGuestLogin(): {
3303
- guest: () => Promise<{
3303
+ guestLogin: () => Promise<{
3304
3304
  success: true;
3305
3305
  data: AppResponse<SessionResponse>;
3306
3306
  error?: undefined;