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.
@@ -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"),
@@ -202,11 +202,11 @@ export const ListOperationResponseSchema = z.object({
202
202
  modifiedCount: z.number().describe("Number of items modified"),
203
203
  currentCount: z.number().describe("Current list size"),
204
204
  maxCount: z.number().describe("Maximum list size"),
205
- invalidAddresses: z.array(z.string()).optional().describe("Invalid addresses"),
206
- existResults: z.array(AddressExistenceSchema).optional().describe("Existence check results"),
207
- message: z.string().optional().describe("Operation message"),
208
- currentList: z.array(z.string()).optional().describe("Current list content"),
209
- currentGuardList: z.array(GuardListItemSchema).optional().describe("Current guard list content"),
205
+ invalidAddresses: z.array(z.string()).optional().nullable().describe("Invalid addresses"),
206
+ existResults: z.array(AddressExistenceSchema).optional().nullable().describe("Existence check results"),
207
+ message: z.string().optional().nullable().describe("Operation message"),
208
+ currentList: z.array(z.string()).optional().nullable().describe("Current list content"),
209
+ currentGuardList: z.array(GuardListItemSchema).optional().nullable().describe("Current guard list content"),
210
210
  }).describe("List operation response");
211
211
  // Blacklist Operations
212
212
  export const BlacklistOperationSchema = z.discriminatedUnion("op", [
@@ -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");