@1interface/chat-core 0.6.0 → 0.6.2
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 +4 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +11 -11
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
|
|
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<
|
|
611
|
+
auth_mode_config?: Partial<Record<string, AuthMode>>;
|
|
611
612
|
}
|
|
612
613
|
|
|
613
614
|
export declare interface ClientConfigResponse {
|
|
@@ -3300,7 +3301,7 @@ isError: false;
|
|
|
3300
3301
|
};
|
|
3301
3302
|
|
|
3302
3303
|
export declare function useGuestLogin(): {
|
|
3303
|
-
|
|
3304
|
+
guestLogin: () => Promise<{
|
|
3304
3305
|
success: true;
|
|
3305
3306
|
data: AppResponse<SessionResponse>;
|
|
3306
3307
|
error?: undefined;
|