@juhuu/sdk-ts 1.2.189 → 1.2.190
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.mts +2 -4
- package/dist/index.d.ts +2 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1934,13 +1934,11 @@ declare namespace JUHUU {
|
|
1934
1934
|
} | null;
|
1935
1935
|
deleted: boolean;
|
1936
1936
|
edited: boolean;
|
1937
|
+
senderName: string;
|
1937
1938
|
};
|
1938
1939
|
export interface UserChatMessage extends Base {
|
1939
1940
|
type: "user";
|
1940
|
-
|
1941
|
-
id: string;
|
1942
|
-
name: string;
|
1943
|
-
};
|
1941
|
+
userId: string;
|
1944
1942
|
}
|
1945
1943
|
export interface AiChatMessage extends Base {
|
1946
1944
|
type: "ai";
|
package/dist/index.d.ts
CHANGED
@@ -1934,13 +1934,11 @@ declare namespace JUHUU {
|
|
1934
1934
|
} | null;
|
1935
1935
|
deleted: boolean;
|
1936
1936
|
edited: boolean;
|
1937
|
+
senderName: string;
|
1937
1938
|
};
|
1938
1939
|
export interface UserChatMessage extends Base {
|
1939
1940
|
type: "user";
|
1940
|
-
|
1941
|
-
id: string;
|
1942
|
-
name: string;
|
1943
|
-
};
|
1941
|
+
userId: string;
|
1944
1942
|
}
|
1945
1943
|
export interface AiChatMessage extends Base {
|
1946
1944
|
type: "ai";
|