refactor(schemas): group network schemas by direction

Move request and response schemas into matching subdirectories, extract the shared chat lock type, and update barrels and imports without changing wire formats.
This commit is contained in:
2026-07-14 15:12:19 +08:00
parent 8eaea17156
commit 759481b621
75 changed files with 222 additions and 124 deletions
+7 -6
View File
@@ -2,11 +2,12 @@
* @file Automatically generated by barrelsby.
*/
export * from "./chat_history_response";
export * from "./chat_lock_type";
export * from "./chat_message";
export * from "./chat_payloads";
export * from "./chat_send_response";
export * from "./send_message_request";
export * from "./unlock_history_response";
export * from "./unlock_private_request";
export * from "./unlock_private_response";
export * from "./request/send_message_request";
export * from "./request/unlock_private_request";
export * from "./response/chat_history_response";
export * from "./response/chat_send_response";
export * from "./response/unlock_history_response";
export * from "./response/unlock_private_response";