wowok_agent 2.1.9 → 2.1.18

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.
@@ -836,7 +836,7 @@ export const AccountDataSchema = z.object({
836
836
  suspended: z.boolean().optional().describe("Whether account is suspended"),
837
837
  createdAt: z.number().optional().describe("Timestamp when account was created"),
838
838
  updatedAt: z.number().optional().describe("Timestamp when account was last updated"),
839
- m: z.string().optional().describe("Messenger name, indicates this account has messenger enabled"),
839
+ m: z.string().nullable().optional().describe("Messenger name, indicates this account has messenger enabled"),
840
840
  }).describe("Account data");
841
841
  // Define QueryAccountListResult schema
842
842
  export const QueryAccountListResultSchema = z.object({