@wowok/agent-mcp 2.3.14 → 2.3.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.
Files changed (189) hide show
  1. package/dist/config/index.d.ts +1 -0
  2. package/dist/config/index.js +1 -0
  3. package/dist/config/runtime.d.ts +26 -0
  4. package/dist/config/runtime.js +217 -0
  5. package/dist/customer/index.d.ts +9 -0
  6. package/dist/customer/index.js +9 -0
  7. package/dist/customer/industry-risks.d.ts +40 -0
  8. package/dist/customer/industry-risks.js +438 -0
  9. package/dist/customer/info-puzzle.d.ts +102 -0
  10. package/dist/customer/info-puzzle.js +312 -0
  11. package/dist/customer/order-monitor.d.ts +75 -0
  12. package/dist/customer/order-monitor.js +327 -0
  13. package/dist/customer/order-strategy.d.ts +36 -0
  14. package/dist/customer/order-strategy.js +373 -0
  15. package/dist/customer/post-purchase.d.ts +42 -0
  16. package/dist/customer/post-purchase.js +350 -0
  17. package/dist/customer/reminder-system.d.ts +42 -0
  18. package/dist/customer/reminder-system.js +295 -0
  19. package/dist/customer/risk-assessment.d.ts +8 -0
  20. package/dist/customer/risk-assessment.js +337 -0
  21. package/dist/customer/types.d.ts +193 -0
  22. package/dist/customer/types.js +13 -0
  23. package/dist/customer/user-preferences.d.ts +70 -0
  24. package/dist/customer/user-preferences.js +460 -0
  25. package/dist/experience/experience-reuse.d.ts +10 -0
  26. package/dist/experience/experience-reuse.js +103 -0
  27. package/dist/experience/index.d.ts +6 -0
  28. package/dist/experience/index.js +5 -0
  29. package/dist/experience/intent-distill.d.ts +3 -0
  30. package/dist/experience/intent-distill.js +83 -0
  31. package/dist/experience/realtime-feedback.d.ts +5 -0
  32. package/dist/experience/realtime-feedback.js +94 -0
  33. package/dist/experience/types.d.ts +50 -0
  34. package/dist/experience/types.js +1 -0
  35. package/dist/experience/user-profile.d.ts +25 -0
  36. package/dist/experience/user-profile.js +171 -0
  37. package/dist/index.js +842 -371
  38. package/dist/knowledge/acquisition-flywheel.d.ts +53 -0
  39. package/dist/knowledge/acquisition-flywheel.js +192 -0
  40. package/dist/knowledge/arbitration-trust.d.ts +24 -0
  41. package/dist/knowledge/arbitration-trust.js +117 -0
  42. package/dist/knowledge/audit-rules.d.ts +28 -0
  43. package/dist/knowledge/audit-rules.js +141 -0
  44. package/dist/knowledge/demand-matching.d.ts +29 -0
  45. package/dist/knowledge/demand-matching.js +132 -0
  46. package/dist/knowledge/dynamic-pricing.d.ts +31 -0
  47. package/dist/knowledge/dynamic-pricing.js +87 -0
  48. package/dist/knowledge/flywheel-loop.d.ts +87 -0
  49. package/dist/knowledge/flywheel-loop.js +378 -0
  50. package/dist/knowledge/glossary.d.ts +18 -0
  51. package/dist/knowledge/glossary.js +209 -0
  52. package/dist/knowledge/guard-ledger.d.ts +19 -0
  53. package/dist/knowledge/guard-ledger.js +219 -0
  54. package/dist/knowledge/guard-puzzle.d.ts +93 -0
  55. package/dist/knowledge/guard-puzzle.js +278 -0
  56. package/dist/knowledge/guard-risk.d.ts +60 -0
  57. package/dist/knowledge/guard-risk.js +474 -0
  58. package/dist/knowledge/guard-translation.d.ts +46 -0
  59. package/dist/knowledge/guard-translation.js +487 -0
  60. package/dist/knowledge/index.d.ts +77 -0
  61. package/dist/knowledge/index.js +79 -0
  62. package/dist/knowledge/industry-evolution.d.ts +82 -0
  63. package/dist/knowledge/industry-evolution.js +323 -0
  64. package/dist/knowledge/industry-generalizer.d.ts +17 -0
  65. package/dist/knowledge/industry-generalizer.js +381 -0
  66. package/dist/knowledge/industry-registry.d.ts +48 -0
  67. package/dist/knowledge/industry-registry.js +187 -0
  68. package/dist/knowledge/intent-metrics.d.ts +42 -0
  69. package/dist/knowledge/intent-metrics.js +566 -0
  70. package/dist/knowledge/process-model.d.ts +24 -0
  71. package/dist/knowledge/process-model.js +160 -0
  72. package/dist/knowledge/reputation-rules.d.ts +42 -0
  73. package/dist/knowledge/reputation-rules.js +99 -0
  74. package/dist/knowledge/reward-templates.d.ts +25 -0
  75. package/dist/knowledge/reward-templates.js +125 -0
  76. package/dist/knowledge/safety-rules.d.ts +36 -0
  77. package/dist/knowledge/safety-rules.js +232 -0
  78. package/dist/knowledge/tool-constraints.d.ts +30 -0
  79. package/dist/knowledge/tool-constraints.js +175 -0
  80. package/dist/knowledge/trust-metrics.d.ts +37 -0
  81. package/dist/knowledge/trust-metrics.js +138 -0
  82. package/dist/loop-engineering/diagnose.d.ts +3 -2
  83. package/dist/loop-engineering/diagnose.js +94 -0
  84. package/dist/loop-engineering/improve.d.ts +1 -1
  85. package/dist/loop-engineering/improve.js +52 -1
  86. package/dist/project/graph.d.ts +71 -0
  87. package/dist/project/graph.js +314 -0
  88. package/dist/project/index.d.ts +62 -0
  89. package/dist/project/index.js +167 -0
  90. package/dist/project/namespace.d.ts +62 -0
  91. package/dist/project/namespace.js +181 -0
  92. package/dist/project/query.d.ts +40 -0
  93. package/dist/project/query.js +110 -0
  94. package/dist/safety/confirm-gate.d.ts +17 -0
  95. package/dist/safety/confirm-gate.js +88 -0
  96. package/dist/safety/index.d.ts +3 -0
  97. package/dist/safety/index.js +3 -0
  98. package/dist/safety/preview.d.ts +2 -0
  99. package/dist/safety/preview.js +36 -0
  100. package/dist/schema/call/allocation.d.ts +39 -14
  101. package/dist/schema/call/arbitration.d.ts +187 -162
  102. package/dist/schema/call/base.d.ts +1971 -87
  103. package/dist/schema/call/base.js +135 -3
  104. package/dist/schema/call/bridge-handler.js +15 -2
  105. package/dist/schema/call/bridge.d.ts +1478 -53
  106. package/dist/schema/call/bridge.js +50 -2
  107. package/dist/schema/call/contact.d.ts +25 -0
  108. package/dist/schema/call/demand.d.ts +79 -54
  109. package/dist/schema/call/guard.d.ts +125 -50
  110. package/dist/schema/call/handler.d.ts +3 -0
  111. package/dist/schema/call/handler.js +60 -14
  112. package/dist/schema/call/machine.d.ts +988 -938
  113. package/dist/schema/call/order.d.ts +25 -0
  114. package/dist/schema/call/payment.d.ts +25 -0
  115. package/dist/schema/call/permission.d.ts +244 -219
  116. package/dist/schema/call/personal.d.ts +25 -0
  117. package/dist/schema/call/progress.d.ts +25 -0
  118. package/dist/schema/call/proof.d.ts +62 -12
  119. package/dist/schema/call/proof.js +3 -3
  120. package/dist/schema/call/repository.d.ts +101 -76
  121. package/dist/schema/call/reward.d.ts +55 -30
  122. package/dist/schema/call/semantic.d.ts +10 -2
  123. package/dist/schema/call/semantic.js +616 -11
  124. package/dist/schema/call/service.d.ts +442 -417
  125. package/dist/schema/call/treasury.d.ts +25 -0
  126. package/dist/schema/common/index.js +3 -3
  127. package/dist/schema/config/index.d.ts +18 -0
  128. package/dist/schema/config/index.js +17 -0
  129. package/dist/schema/index.d.ts +6 -0
  130. package/dist/schema/index.js +5 -0
  131. package/dist/schema/local/index.d.ts +237 -81
  132. package/dist/schema/local/index.js +42 -6
  133. package/dist/schema/messenger/index.d.ts +1018 -79
  134. package/dist/schema/messenger/index.js +26 -17
  135. package/dist/schema/operations.d.ts +3192 -1746
  136. package/dist/schema/operations.js +93 -98
  137. package/dist/schema/project/index.d.ts +21 -0
  138. package/dist/schema/project/index.js +32 -0
  139. package/dist/schema/query/index.d.ts +2762 -1856
  140. package/dist/schema/query/index.js +38 -35
  141. package/dist/schema/schema-query/index.d.ts +33 -0
  142. package/dist/schema/schema-query/index.js +36 -0
  143. package/dist/schema/schema-version.d.ts +25 -0
  144. package/dist/schema/schema-version.js +76 -0
  145. package/dist/schema/trust/index.d.ts +407 -0
  146. package/dist/schema/trust/index.js +113 -0
  147. package/dist/schemas/account_operation.output.json +25 -16
  148. package/dist/schemas/account_operation.schema.json +1 -1
  149. package/dist/schemas/bridge_operation.output.json +744 -0
  150. package/dist/schemas/bridge_operation.schema.json +82 -8
  151. package/dist/schemas/config_operation.output.json +18 -0
  152. package/dist/schemas/config_operation.schema.json +34 -0
  153. package/dist/schemas/guard-node-schema.json +82 -0
  154. package/dist/schemas/guard2file.schema.json +23 -0
  155. package/dist/schemas/index.json +19 -1
  156. package/dist/schemas/local_info_operation.output.json +23 -0
  157. package/dist/schemas/local_info_operation.schema.json +1 -1
  158. package/dist/schemas/local_mark_operation.output.json +24 -1
  159. package/dist/schemas/local_mark_operation.schema.json +4 -4
  160. package/dist/schemas/machineNode2file.schema.json +23 -0
  161. package/dist/schemas/messenger_operation.output.json +752 -0
  162. package/dist/schemas/onchain_events.output.json +718 -0
  163. package/dist/schemas/onchain_operations.output.json +627 -18
  164. package/dist/schemas/onchain_operations.schema.json +115 -39
  165. package/dist/schemas/onchain_operations_allocation.schema.json +23 -0
  166. package/dist/schemas/onchain_operations_arbitration.schema.json +23 -0
  167. package/dist/schemas/onchain_operations_contact.schema.json +23 -0
  168. package/dist/schemas/onchain_operations_demand.schema.json +23 -0
  169. package/dist/schemas/onchain_operations_gen_passport.schema.json +46 -0
  170. package/dist/schemas/onchain_operations_guard.schema.json +26 -16
  171. package/dist/schemas/onchain_operations_machine.schema.json +89 -23
  172. package/dist/schemas/onchain_operations_order.schema.json +23 -0
  173. package/dist/schemas/onchain_operations_payment.schema.json +23 -0
  174. package/dist/schemas/onchain_operations_permission.schema.json +23 -0
  175. package/dist/schemas/onchain_operations_personal.schema.json +23 -0
  176. package/dist/schemas/onchain_operations_progress.schema.json +23 -0
  177. package/dist/schemas/onchain_operations_repository.schema.json +23 -0
  178. package/dist/schemas/onchain_operations_reward.schema.json +23 -0
  179. package/dist/schemas/onchain_operations_service.schema.json +23 -0
  180. package/dist/schemas/onchain_operations_treasury.schema.json +23 -0
  181. package/dist/schemas/onchain_table_data.output.json +939 -69
  182. package/dist/schemas/onchain_table_data.schema.json +2 -2
  183. package/dist/schemas/project_operation.output.json +18 -0
  184. package/dist/schemas/project_operation.schema.json +42 -0
  185. package/dist/schemas/query_toolkit.schema.json +360 -368
  186. package/dist/schemas/schema_query.schema.json +6 -3
  187. package/dist/schemas/trust_score.output.json +327 -0
  188. package/dist/schemas/trust_score.schema.json +46 -0
  189. package/package.json +2 -2
@@ -257,7 +257,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
257
257
  id_from_submission?: number | undefined;
258
258
  data_from_submission?: number | undefined;
259
259
  }[];
260
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
260
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
261
261
  quote_guard?: string | null | undefined;
262
262
  }, {
263
263
  value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
@@ -268,7 +268,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
268
268
  id_from_submission?: number | undefined;
269
269
  data_from_submission?: number | undefined;
270
270
  }[];
271
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
271
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
272
272
  quote_guard?: string | null | undefined;
273
273
  }>, "many">;
274
274
  }, "strict", z.ZodTypeAny, {
@@ -282,7 +282,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
282
282
  id_from_submission?: number | undefined;
283
283
  data_from_submission?: number | undefined;
284
284
  }[];
285
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
285
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
286
286
  quote_guard?: string | null | undefined;
287
287
  }[];
288
288
  }, {
@@ -296,7 +296,7 @@ export declare const PoliciesAddSetSchema: z.ZodObject<{
296
296
  id_from_submission?: number | undefined;
297
297
  data_from_submission?: number | undefined;
298
298
  }[];
299
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
299
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
300
300
  quote_guard?: string | null | undefined;
301
301
  }[];
302
302
  }>;
@@ -347,7 +347,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
347
347
  id_from_submission?: number | undefined;
348
348
  data_from_submission?: number | undefined;
349
349
  }[];
350
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
350
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
351
351
  quote_guard?: string | null | undefined;
352
352
  }, {
353
353
  value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
@@ -358,7 +358,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
358
358
  id_from_submission?: number | undefined;
359
359
  data_from_submission?: number | undefined;
360
360
  }[];
361
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
361
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
362
362
  quote_guard?: string | null | undefined;
363
363
  }>, "many">;
364
364
  }, "strict", z.ZodTypeAny, {
@@ -372,7 +372,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
372
372
  id_from_submission?: number | undefined;
373
373
  data_from_submission?: number | undefined;
374
374
  }[];
375
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
375
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
376
376
  quote_guard?: string | null | undefined;
377
377
  }[];
378
378
  }, {
@@ -386,7 +386,7 @@ export declare const PoliciesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<
386
386
  id_from_submission?: number | undefined;
387
387
  data_from_submission?: number | undefined;
388
388
  }[];
389
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
389
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
390
390
  quote_guard?: string | null | undefined;
391
391
  }[];
392
392
  }>, z.ZodObject<{
@@ -800,7 +800,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
800
800
  id_from_submission?: number | undefined;
801
801
  data_from_submission?: number | undefined;
802
802
  }[];
803
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
803
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
804
804
  quote_guard?: string | null | undefined;
805
805
  }, {
806
806
  value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
@@ -811,7 +811,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
811
811
  id_from_submission?: number | undefined;
812
812
  data_from_submission?: number | undefined;
813
813
  }[];
814
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
814
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
815
815
  quote_guard?: string | null | undefined;
816
816
  }>, "many">;
817
817
  }, "strict", z.ZodTypeAny, {
@@ -825,7 +825,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
825
825
  id_from_submission?: number | undefined;
826
826
  data_from_submission?: number | undefined;
827
827
  }[];
828
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
828
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
829
829
  quote_guard?: string | null | undefined;
830
830
  }[];
831
831
  }, {
@@ -839,7 +839,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
839
839
  id_from_submission?: number | undefined;
840
840
  data_from_submission?: number | undefined;
841
841
  }[];
842
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
842
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
843
843
  quote_guard?: string | null | undefined;
844
844
  }[];
845
845
  }>, z.ZodObject<{
@@ -1150,6 +1150,15 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1150
1150
  } | undefined;
1151
1151
  };
1152
1152
  description?: string | undefined;
1153
+ rewards?: {
1154
+ op: "set" | "add";
1155
+ objects: string[];
1156
+ } | {
1157
+ op: "remove";
1158
+ objects: string[];
1159
+ } | {
1160
+ op: "clear";
1161
+ } | undefined;
1153
1162
  owner_receive?: {
1154
1163
  received: {
1155
1164
  id: string;
@@ -1163,15 +1172,6 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1163
1172
  id: string;
1164
1173
  content_raw?: any;
1165
1174
  }[] | undefined;
1166
- rewards?: {
1167
- op: "set" | "add";
1168
- objects: string[];
1169
- } | {
1170
- op: "remove";
1171
- objects: string[];
1172
- } | {
1173
- op: "clear";
1174
- } | undefined;
1175
1175
  um?: string | null | undefined;
1176
1176
  policies?: {
1177
1177
  op: "set" | "add";
@@ -1184,7 +1184,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1184
1184
  id_from_submission?: number | undefined;
1185
1185
  data_from_submission?: number | undefined;
1186
1186
  }[];
1187
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1187
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1188
1188
  quote_guard?: string | null | undefined;
1189
1189
  }[];
1190
1190
  } | {
@@ -1238,6 +1238,15 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1238
1238
  } | undefined;
1239
1239
  };
1240
1240
  description?: string | undefined;
1241
+ rewards?: {
1242
+ op: "set" | "add";
1243
+ objects: string[];
1244
+ } | {
1245
+ op: "remove";
1246
+ objects: string[];
1247
+ } | {
1248
+ op: "clear";
1249
+ } | undefined;
1241
1250
  owner_receive?: {
1242
1251
  received: {
1243
1252
  id: string;
@@ -1251,15 +1260,6 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1251
1260
  id: string;
1252
1261
  content_raw?: any;
1253
1262
  }[] | undefined;
1254
- rewards?: {
1255
- op: "set" | "add";
1256
- objects: string[];
1257
- } | {
1258
- op: "remove";
1259
- objects: string[];
1260
- } | {
1261
- op: "clear";
1262
- } | undefined;
1263
1263
  um?: string | null | undefined;
1264
1264
  policies?: {
1265
1265
  op: "set" | "add";
@@ -1272,7 +1272,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
1272
1272
  id_from_submission?: number | undefined;
1273
1273
  data_from_submission?: number | undefined;
1274
1274
  }[];
1275
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1275
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1276
1276
  quote_guard?: string | null | undefined;
1277
1277
  }[];
1278
1278
  } | {
@@ -1396,7 +1396,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1396
1396
  id_from_submission?: number | undefined;
1397
1397
  data_from_submission?: number | undefined;
1398
1398
  }[];
1399
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1399
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1400
1400
  quote_guard?: string | null | undefined;
1401
1401
  }, {
1402
1402
  value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
@@ -1407,7 +1407,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1407
1407
  id_from_submission?: number | undefined;
1408
1408
  data_from_submission?: number | undefined;
1409
1409
  }[];
1410
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1410
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1411
1411
  quote_guard?: string | null | undefined;
1412
1412
  }>, "many">;
1413
1413
  }, "strict", z.ZodTypeAny, {
@@ -1421,7 +1421,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1421
1421
  id_from_submission?: number | undefined;
1422
1422
  data_from_submission?: number | undefined;
1423
1423
  }[];
1424
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1424
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1425
1425
  quote_guard?: string | null | undefined;
1426
1426
  }[];
1427
1427
  }, {
@@ -1435,7 +1435,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1435
1435
  id_from_submission?: number | undefined;
1436
1436
  data_from_submission?: number | undefined;
1437
1437
  }[];
1438
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1438
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1439
1439
  quote_guard?: string | null | undefined;
1440
1440
  }[];
1441
1441
  }>, z.ZodObject<{
@@ -1746,6 +1746,15 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1746
1746
  } | undefined;
1747
1747
  };
1748
1748
  description?: string | undefined;
1749
+ rewards?: {
1750
+ op: "set" | "add";
1751
+ objects: string[];
1752
+ } | {
1753
+ op: "remove";
1754
+ objects: string[];
1755
+ } | {
1756
+ op: "clear";
1757
+ } | undefined;
1749
1758
  owner_receive?: {
1750
1759
  received: {
1751
1760
  id: string;
@@ -1759,15 +1768,6 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1759
1768
  id: string;
1760
1769
  content_raw?: any;
1761
1770
  }[] | undefined;
1762
- rewards?: {
1763
- op: "set" | "add";
1764
- objects: string[];
1765
- } | {
1766
- op: "remove";
1767
- objects: string[];
1768
- } | {
1769
- op: "clear";
1770
- } | undefined;
1771
1771
  um?: string | null | undefined;
1772
1772
  policies?: {
1773
1773
  op: "set" | "add";
@@ -1780,7 +1780,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1780
1780
  id_from_submission?: number | undefined;
1781
1781
  data_from_submission?: number | undefined;
1782
1782
  }[];
1783
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1783
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1784
1784
  quote_guard?: string | null | undefined;
1785
1785
  }[];
1786
1786
  } | {
@@ -1834,6 +1834,15 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1834
1834
  } | undefined;
1835
1835
  };
1836
1836
  description?: string | undefined;
1837
+ rewards?: {
1838
+ op: "set" | "add";
1839
+ objects: string[];
1840
+ } | {
1841
+ op: "remove";
1842
+ objects: string[];
1843
+ } | {
1844
+ op: "clear";
1845
+ } | undefined;
1837
1846
  owner_receive?: {
1838
1847
  received: {
1839
1848
  id: string;
@@ -1847,15 +1856,6 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1847
1856
  id: string;
1848
1857
  content_raw?: any;
1849
1858
  }[] | undefined;
1850
- rewards?: {
1851
- op: "set" | "add";
1852
- objects: string[];
1853
- } | {
1854
- op: "remove";
1855
- objects: string[];
1856
- } | {
1857
- op: "clear";
1858
- } | undefined;
1859
1859
  um?: string | null | undefined;
1860
1860
  policies?: {
1861
1861
  op: "set" | "add";
@@ -1868,7 +1868,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1868
1868
  id_from_submission?: number | undefined;
1869
1869
  data_from_submission?: number | undefined;
1870
1870
  }[];
1871
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
1871
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
1872
1872
  quote_guard?: string | null | undefined;
1873
1873
  }[];
1874
1874
  } | {
@@ -1914,18 +1914,33 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
1914
1914
  no_cache: z.ZodOptional<z.ZodBoolean>;
1915
1915
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
1916
1916
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1917
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1918
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1919
+ project: z.ZodOptional<z.ZodString>;
1920
+ client_schema_version: z.ZodOptional<z.ZodString>;
1921
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
1917
1922
  }, "strict", z.ZodTypeAny, {
1918
1923
  account: string;
1919
1924
  no_cache?: boolean | undefined;
1920
1925
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1921
1926
  permission_guard?: string[] | undefined;
1922
1927
  referrer?: string | undefined;
1928
+ confirmed?: boolean | undefined;
1929
+ user_intent_phrases?: string[] | undefined;
1930
+ project?: string | undefined;
1931
+ client_schema_version?: string | undefined;
1932
+ schema_strict_mode?: boolean | undefined;
1923
1933
  }, {
1924
1934
  no_cache?: boolean | undefined;
1925
1935
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1926
1936
  account?: string | undefined;
1927
1937
  permission_guard?: string[] | undefined;
1928
1938
  referrer?: string | undefined;
1939
+ confirmed?: boolean | undefined;
1940
+ user_intent_phrases?: string[] | undefined;
1941
+ project?: string | undefined;
1942
+ client_schema_version?: string | undefined;
1943
+ schema_strict_mode?: boolean | undefined;
1929
1944
  }>>;
1930
1945
  submission: z.ZodOptional<z.ZodObject<{
1931
1946
  type: z.ZodLiteral<"submission">;
@@ -2123,6 +2138,15 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2123
2138
  } | undefined;
2124
2139
  };
2125
2140
  description?: string | undefined;
2141
+ rewards?: {
2142
+ op: "set" | "add";
2143
+ objects: string[];
2144
+ } | {
2145
+ op: "remove";
2146
+ objects: string[];
2147
+ } | {
2148
+ op: "clear";
2149
+ } | undefined;
2126
2150
  owner_receive?: {
2127
2151
  received: {
2128
2152
  id: string;
@@ -2136,15 +2160,6 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2136
2160
  id: string;
2137
2161
  content_raw?: any;
2138
2162
  }[] | undefined;
2139
- rewards?: {
2140
- op: "set" | "add";
2141
- objects: string[];
2142
- } | {
2143
- op: "remove";
2144
- objects: string[];
2145
- } | {
2146
- op: "clear";
2147
- } | undefined;
2148
2163
  um?: string | null | undefined;
2149
2164
  policies?: {
2150
2165
  op: "set" | "add";
@@ -2157,7 +2172,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2157
2172
  id_from_submission?: number | undefined;
2158
2173
  data_from_submission?: number | undefined;
2159
2174
  }[];
2160
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
2175
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
2161
2176
  quote_guard?: string | null | undefined;
2162
2177
  }[];
2163
2178
  } | {
@@ -2230,6 +2245,11 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2230
2245
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2231
2246
  permission_guard?: string[] | undefined;
2232
2247
  referrer?: string | undefined;
2248
+ confirmed?: boolean | undefined;
2249
+ user_intent_phrases?: string[] | undefined;
2250
+ project?: string | undefined;
2251
+ client_schema_version?: string | undefined;
2252
+ schema_strict_mode?: boolean | undefined;
2233
2253
  } | undefined;
2234
2254
  }, {
2235
2255
  data: {
@@ -2247,6 +2267,15 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2247
2267
  } | undefined;
2248
2268
  };
2249
2269
  description?: string | undefined;
2270
+ rewards?: {
2271
+ op: "set" | "add";
2272
+ objects: string[];
2273
+ } | {
2274
+ op: "remove";
2275
+ objects: string[];
2276
+ } | {
2277
+ op: "clear";
2278
+ } | undefined;
2250
2279
  owner_receive?: {
2251
2280
  received: {
2252
2281
  id: string;
@@ -2260,15 +2289,6 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2260
2289
  id: string;
2261
2290
  content_raw?: any;
2262
2291
  }[] | undefined;
2263
- rewards?: {
2264
- op: "set" | "add";
2265
- objects: string[];
2266
- } | {
2267
- op: "remove";
2268
- objects: string[];
2269
- } | {
2270
- op: "clear";
2271
- } | undefined;
2272
2292
  um?: string | null | undefined;
2273
2293
  policies?: {
2274
2294
  op: "set" | "add";
@@ -2281,7 +2301,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2281
2301
  id_from_submission?: number | undefined;
2282
2302
  data_from_submission?: number | undefined;
2283
2303
  }[];
2284
- id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
2304
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
2285
2305
  quote_guard?: string | null | undefined;
2286
2306
  }[];
2287
2307
  } | {
@@ -2354,5 +2374,10 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
2354
2374
  account?: string | undefined;
2355
2375
  permission_guard?: string[] | undefined;
2356
2376
  referrer?: string | undefined;
2377
+ confirmed?: boolean | undefined;
2378
+ user_intent_phrases?: string[] | undefined;
2379
+ project?: string | undefined;
2380
+ client_schema_version?: string | undefined;
2381
+ schema_strict_mode?: boolean | undefined;
2357
2382
  } | undefined;
2358
2383
  }>;
@@ -305,6 +305,11 @@ export declare const CallReward_DataSchema: z.ZodObject<{
305
305
  } | undefined;
306
306
  };
307
307
  description?: string | undefined;
308
+ coin_add?: {
309
+ balance: string | number;
310
+ } | {
311
+ coin: string;
312
+ } | undefined;
308
313
  claim?: string | undefined;
309
314
  owner_receive?: {
310
315
  received: {
@@ -329,11 +334,6 @@ export declare const CallReward_DataSchema: z.ZodObject<{
329
334
  balance: string | number;
330
335
  token_type: string;
331
336
  } | "recently" | undefined;
332
- coin_add?: {
333
- balance: string | number;
334
- } | {
335
- coin: string;
336
- } | undefined;
337
337
  guard_add?: {
338
338
  amount: {
339
339
  value: number;
@@ -374,6 +374,11 @@ export declare const CallReward_DataSchema: z.ZodObject<{
374
374
  } | undefined;
375
375
  };
376
376
  description?: string | undefined;
377
+ coin_add?: {
378
+ balance: string | number;
379
+ } | {
380
+ coin: string;
381
+ } | undefined;
377
382
  claim?: string | undefined;
378
383
  owner_receive?: {
379
384
  received: {
@@ -398,11 +403,6 @@ export declare const CallReward_DataSchema: z.ZodObject<{
398
403
  balance: string | number;
399
404
  token_type: string;
400
405
  } | "recently" | undefined;
401
- coin_add?: {
402
- balance: string | number;
403
- } | {
404
- coin: string;
405
- } | undefined;
406
406
  guard_add?: {
407
407
  amount: {
408
408
  value: number;
@@ -697,6 +697,11 @@ export declare const CallReward_InputSchema: z.ZodObject<{
697
697
  } | undefined;
698
698
  };
699
699
  description?: string | undefined;
700
+ coin_add?: {
701
+ balance: string | number;
702
+ } | {
703
+ coin: string;
704
+ } | undefined;
700
705
  claim?: string | undefined;
701
706
  owner_receive?: {
702
707
  received: {
@@ -721,11 +726,6 @@ export declare const CallReward_InputSchema: z.ZodObject<{
721
726
  balance: string | number;
722
727
  token_type: string;
723
728
  } | "recently" | undefined;
724
- coin_add?: {
725
- balance: string | number;
726
- } | {
727
- coin: string;
728
- } | undefined;
729
729
  guard_add?: {
730
730
  amount: {
731
731
  value: number;
@@ -766,6 +766,11 @@ export declare const CallReward_InputSchema: z.ZodObject<{
766
766
  } | undefined;
767
767
  };
768
768
  description?: string | undefined;
769
+ coin_add?: {
770
+ balance: string | number;
771
+ } | {
772
+ coin: string;
773
+ } | undefined;
769
774
  claim?: string | undefined;
770
775
  owner_receive?: {
771
776
  received: {
@@ -790,11 +795,6 @@ export declare const CallReward_InputSchema: z.ZodObject<{
790
795
  balance: string | number;
791
796
  token_type: string;
792
797
  } | "recently" | undefined;
793
- coin_add?: {
794
- balance: string | number;
795
- } | {
796
- coin: string;
797
- } | undefined;
798
798
  guard_add?: {
799
799
  amount: {
800
800
  value: number;
@@ -826,18 +826,33 @@ export declare const CallReward_InputSchema: z.ZodObject<{
826
826
  no_cache: z.ZodOptional<z.ZodBoolean>;
827
827
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
828
828
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
829
+ confirmed: z.ZodOptional<z.ZodBoolean>;
830
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
831
+ project: z.ZodOptional<z.ZodString>;
832
+ client_schema_version: z.ZodOptional<z.ZodString>;
833
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
829
834
  }, "strict", z.ZodTypeAny, {
830
835
  account: string;
831
836
  no_cache?: boolean | undefined;
832
837
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
833
838
  permission_guard?: string[] | undefined;
834
839
  referrer?: string | undefined;
840
+ confirmed?: boolean | undefined;
841
+ user_intent_phrases?: string[] | undefined;
842
+ project?: string | undefined;
843
+ client_schema_version?: string | undefined;
844
+ schema_strict_mode?: boolean | undefined;
835
845
  }, {
836
846
  no_cache?: boolean | undefined;
837
847
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
838
848
  account?: string | undefined;
839
849
  permission_guard?: string[] | undefined;
840
850
  referrer?: string | undefined;
851
+ confirmed?: boolean | undefined;
852
+ user_intent_phrases?: string[] | undefined;
853
+ project?: string | undefined;
854
+ client_schema_version?: string | undefined;
855
+ schema_strict_mode?: boolean | undefined;
841
856
  }>>;
842
857
  submission: z.ZodOptional<z.ZodObject<{
843
858
  type: z.ZodLiteral<"submission">;
@@ -1036,6 +1051,11 @@ export declare const CallReward_InputSchema: z.ZodObject<{
1036
1051
  } | undefined;
1037
1052
  };
1038
1053
  description?: string | undefined;
1054
+ coin_add?: {
1055
+ balance: string | number;
1056
+ } | {
1057
+ coin: string;
1058
+ } | undefined;
1039
1059
  claim?: string | undefined;
1040
1060
  owner_receive?: {
1041
1061
  received: {
@@ -1060,11 +1080,6 @@ export declare const CallReward_InputSchema: z.ZodObject<{
1060
1080
  balance: string | number;
1061
1081
  token_type: string;
1062
1082
  } | "recently" | undefined;
1063
- coin_add?: {
1064
- balance: string | number;
1065
- } | {
1066
- coin: string;
1067
- } | undefined;
1068
1083
  guard_add?: {
1069
1084
  amount: {
1070
1085
  value: number;
@@ -1123,6 +1138,11 @@ export declare const CallReward_InputSchema: z.ZodObject<{
1123
1138
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1124
1139
  permission_guard?: string[] | undefined;
1125
1140
  referrer?: string | undefined;
1141
+ confirmed?: boolean | undefined;
1142
+ user_intent_phrases?: string[] | undefined;
1143
+ project?: string | undefined;
1144
+ client_schema_version?: string | undefined;
1145
+ schema_strict_mode?: boolean | undefined;
1126
1146
  } | undefined;
1127
1147
  }, {
1128
1148
  data: {
@@ -1141,6 +1161,11 @@ export declare const CallReward_InputSchema: z.ZodObject<{
1141
1161
  } | undefined;
1142
1162
  };
1143
1163
  description?: string | undefined;
1164
+ coin_add?: {
1165
+ balance: string | number;
1166
+ } | {
1167
+ coin: string;
1168
+ } | undefined;
1144
1169
  claim?: string | undefined;
1145
1170
  owner_receive?: {
1146
1171
  received: {
@@ -1165,11 +1190,6 @@ export declare const CallReward_InputSchema: z.ZodObject<{
1165
1190
  balance: string | number;
1166
1191
  token_type: string;
1167
1192
  } | "recently" | undefined;
1168
- coin_add?: {
1169
- balance: string | number;
1170
- } | {
1171
- coin: string;
1172
- } | undefined;
1173
1193
  guard_add?: {
1174
1194
  amount: {
1175
1195
  value: number;
@@ -1228,5 +1248,10 @@ export declare const CallReward_InputSchema: z.ZodObject<{
1228
1248
  account?: string | undefined;
1229
1249
  permission_guard?: string[] | undefined;
1230
1250
  referrer?: string | undefined;
1251
+ confirmed?: boolean | undefined;
1252
+ user_intent_phrases?: string[] | undefined;
1253
+ project?: string | undefined;
1254
+ client_schema_version?: string | undefined;
1255
+ schema_strict_mode?: boolean | undefined;
1231
1256
  } | undefined;
1232
1257
  }>;
@@ -5,14 +5,22 @@ export interface SemanticContext {
5
5
  harness?: import("../../harness/index.js").Harness;
6
6
  expected?: import("../../harness/types.js").ExpectedResult;
7
7
  operation_id?: string;
8
+ pre_warnings?: string[];
9
+ schema_check?: import("../schema-version.js").SchemaCheckResult;
10
+ }
11
+ export type ErrorCode = "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | "rate_limit" | "gas_exceeded" | "bcs_error" | "signature_error" | "config_error" | "unknown";
12
+ export interface MoveAbortInfo {
13
+ module: string;
14
+ code: number;
15
+ description?: string;
8
16
  }
9
- export type ErrorCode = "invalid_parameter" | "guard_rejected" | "state_conflict" | "insufficient_balance" | "object_not_found" | "permission_denied" | "immutable_violation" | "network_error" | "unknown";
10
17
  export interface ErrorClassification {
11
18
  error_code: ErrorCode;
12
19
  retryable: boolean;
13
20
  recovery_hint?: string;
21
+ move_abort_info?: MoveAbortInfo;
14
22
  }
15
- export declare function classifyError(errorMsg: string): ErrorClassification;
23
+ export declare function classifyError(errorMsg: string, error?: unknown): ErrorClassification;
16
24
  export declare function inferIntent(operation_type: string, data: any): string;
17
25
  export declare function objectTypeToRole(objectType: string): ObjectRole["role"];
18
26
  export declare function tagObjectRoles(objectChanges: any[]): ObjectRole[];