wowok_agent 2.1.9 → 2.1.17

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.
@@ -152,8 +152,8 @@ export const WtsRangeSchema = z.discriminatedUnion("type", [
152
152
  ]).describe("WTS range filter parameters");
153
153
  // WtsGenerationParams
154
154
  export const WtsGenerationParamsSchema = z.object({
155
- myAccount: NameOrAddressSchema.describe("My account name or address"),
156
- peerAccount: NameOrAddressSchema.describe("Peer account or address"),
155
+ myAccount: NameOrAddressSchema.describe("My account name or address (string)"),
156
+ peerAccount: AccountOrMark_AddressSchema.describe("Peer account name or address"),
157
157
  range: WtsRangeSchema.optional().describe("Range filter parameters"),
158
158
  excludePlaintext: z.boolean().optional().describe("Whether to exclude plaintext"),
159
159
  outputDir: z.string().describe("Output directory path"),
@@ -403,5 +403,5 @@ export const MessengerOperationOutputSchema = z.object({
403
403
  op: z.enum(["add", "remove", "get"]).describe("Operation type"),
404
404
  result: ListOperationResponseSchema.describe("Guard list operation result"),
405
405
  }),
406
- ]).describe("Messenger operation output schema")
407
- });
406
+ ]).describe("Messenger operation result discriminated union"),
407
+ }).describe("Messenger operation output schema");