teodor-new-chat-ui 4.3.323 → 4.3.325
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/api/chat-api.d.ts +2 -0
- package/dist/index.esm.js +293 -296
- package/dist/index.umd.js +10 -10
- package/package.json +1 -1
package/dist/api/chat-api.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { AgentDetail, AgentSchemaInfo, AgentSummary, CheckpointList, CheckpointSnapshot, HistoryPayload, ThreadInfo, ThreadSummary } from "@/types/api";
|
|
2
2
|
import type { TokenListener } from "../types/api";
|
|
3
|
+
import { getChatToken, onChatTokenChanged, setChatToken } from "./utils";
|
|
3
4
|
export declare class ChatApi {
|
|
4
5
|
get baseUrl(): string;
|
|
5
6
|
updateConfig(config: {
|
|
@@ -37,5 +38,6 @@ export declare class ChatApi {
|
|
|
37
38
|
}
|
|
38
39
|
export declare const chatApiClient: ChatApi;
|
|
39
40
|
export default chatApiClient;
|
|
41
|
+
export { getChatToken, onChatTokenChanged, setChatToken };
|
|
40
42
|
export declare const ApiClient: typeof ChatApi;
|
|
41
43
|
export declare const Api: typeof ChatApi;
|