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.
@@ -278,7 +278,11 @@ export const ObjectBaseSchema = z.object({
278
278
  previousTransaction: z.string().optional().describe("Previous transaction ID"),
279
279
  cache_expire: CacheExpireTypeSchema.optional().describe("Cache expiration time"),
280
280
  query_name: z.string().optional().describe("Original query name or address used to retrieve this object"),
281
- }).strict().describe("Object base information");
281
+ _guard_node_comments: z.array(z.object({
282
+ type: z.string(),
283
+ description: z.string()
284
+ })).optional().describe("Additional comments for Guard node instructions"),
285
+ }).passthrough().describe("Object base information");
282
286
  // ================================================
283
287
  // Received related type definitions
284
288
  // ================================================