@1interface/chat-core 0.6.1 → 0.7.0

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
@@ -223,7 +223,8 @@ export declare class AudioRecorder {
223
223
  }
224
224
 
225
225
  export declare const AUTH_CLIENT_TYPES: {
226
- readonly ALL: "all";
226
+ readonly WEB: "Web";
227
+ readonly MOBILE: "Mobile";
227
228
  };
228
229
 
229
230
  export declare const AUTH_MODES: {
@@ -607,7 +608,7 @@ export declare interface ClientConfig {
607
608
  features?: string[];
608
609
  backend_version?: string;
609
610
  panel_switcher_enabled?: boolean;
610
- auth_mode_config?: Partial<Record<string, AuthMode>>;
611
+ auth_mode_config?: Partial<Record<AuthClientType | (string & {}), AuthMode>>;
611
612
  }
612
613
 
613
614
  export declare interface ClientConfigResponse {