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.
@@ -27,7 +27,7 @@ export const CallGuard_DataSchema = z.object({
27
27
  guards: z.array(NameOrAddressSchema).describe("List of dependent Guard object IDs or names."),
28
28
  logic_or: z.boolean().optional().describe("Whether to use logical OR operator."),
29
29
  }).optional().describe("All Guard objects that the new Guard object depends on. If logic_or is true, the execution result of the new Guard object is the logical OR of the execution results of all dependent Guard objects; otherwise, it is logical AND. When using root.type='file', this field OVERRIDES rely in the file."),
30
- }).strict().describe("On-chain Guard creation. USAGE: Set 'namedNew' field with {name, tags?, onChain?} to name the new Guard. The Guard is immutable once created. Define the validation logic in 'root' field. When root.type='file', the file can contain all Guard fields, and any fields defined in the schema will OVERRIDE the file content.");
30
+ }).strict().describe("On-chain Guard creation. IMPORTANT: All defined data (include all submitted data) must be defined in the 'table' field. USAGE: Set 'namedNew' field with {name, tags?, onChain?} to name the new Guard. The Guard is immutable once created. Define the validation logic in 'root' field. When root.type='file', the file can contain all Guard fields, and any fields defined in the schema will OVERRIDE the file content.");
31
31
  // CallGuard_InputSchema - Guard 创建 Schema
32
32
  export const CallGuard_InputSchema = z.object({
33
33
  data: CallGuard_DataSchema.describe("Guard data definition."),