@wowok/agent-mcp 2.3.13 → 2.3.16

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 (194) 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/industry-risks.d.ts +36 -0
  6. package/dist/customer/industry-risks.js +424 -0
  7. package/dist/customer/info-puzzle.d.ts +102 -0
  8. package/dist/customer/info-puzzle.js +312 -0
  9. package/dist/customer/order-monitor.d.ts +75 -0
  10. package/dist/customer/order-monitor.js +327 -0
  11. package/dist/customer/order-strategy.d.ts +36 -0
  12. package/dist/customer/order-strategy.js +373 -0
  13. package/dist/customer/post-purchase.d.ts +42 -0
  14. package/dist/customer/post-purchase.js +350 -0
  15. package/dist/customer/reminder-system.d.ts +42 -0
  16. package/dist/customer/reminder-system.js +295 -0
  17. package/dist/customer/risk-assessment.d.ts +8 -0
  18. package/dist/customer/risk-assessment.js +337 -0
  19. package/dist/customer/types.d.ts +193 -0
  20. package/dist/customer/types.js +13 -0
  21. package/dist/customer/user-preferences.d.ts +67 -0
  22. package/dist/customer/user-preferences.js +451 -0
  23. package/dist/experience/experience-reuse.d.ts +10 -0
  24. package/dist/experience/experience-reuse.js +103 -0
  25. package/dist/experience/index.d.ts +6 -0
  26. package/dist/experience/index.js +5 -0
  27. package/dist/experience/intent-distill.d.ts +3 -0
  28. package/dist/experience/intent-distill.js +83 -0
  29. package/dist/experience/realtime-feedback.d.ts +5 -0
  30. package/dist/experience/realtime-feedback.js +77 -0
  31. package/dist/experience/types.d.ts +50 -0
  32. package/dist/experience/types.js +1 -0
  33. package/dist/experience/user-profile.d.ts +25 -0
  34. package/dist/experience/user-profile.js +171 -0
  35. package/dist/harness/checkpoint.d.ts +8 -0
  36. package/dist/harness/checkpoint.js +129 -0
  37. package/dist/harness/index.d.ts +33 -0
  38. package/dist/harness/index.js +75 -0
  39. package/dist/harness/plan.d.ts +18 -0
  40. package/dist/harness/plan.js +252 -0
  41. package/dist/harness/recover.d.ts +17 -0
  42. package/dist/harness/recover.js +139 -0
  43. package/dist/harness/types.d.ts +137 -0
  44. package/dist/harness/types.js +1 -0
  45. package/dist/harness/verify.d.ts +42 -0
  46. package/dist/harness/verify.js +237 -0
  47. package/dist/index.js +667 -201
  48. package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
  49. package/dist/knowledge/acquisition-flywheel.js +183 -0
  50. package/dist/knowledge/arbitration-trust.d.ts +24 -0
  51. package/dist/knowledge/arbitration-trust.js +117 -0
  52. package/dist/knowledge/audit-rules.d.ts +28 -0
  53. package/dist/knowledge/audit-rules.js +141 -0
  54. package/dist/knowledge/demand-matching.d.ts +29 -0
  55. package/dist/knowledge/demand-matching.js +132 -0
  56. package/dist/knowledge/dynamic-pricing.d.ts +31 -0
  57. package/dist/knowledge/dynamic-pricing.js +87 -0
  58. package/dist/knowledge/flywheel-loop.d.ts +87 -0
  59. package/dist/knowledge/flywheel-loop.js +378 -0
  60. package/dist/knowledge/glossary.d.ts +18 -0
  61. package/dist/knowledge/glossary.js +209 -0
  62. package/dist/knowledge/index.d.ts +64 -0
  63. package/dist/knowledge/index.js +66 -0
  64. package/dist/knowledge/industry-evolution.d.ts +82 -0
  65. package/dist/knowledge/industry-evolution.js +323 -0
  66. package/dist/knowledge/industry-generalizer.d.ts +17 -0
  67. package/dist/knowledge/industry-generalizer.js +381 -0
  68. package/dist/knowledge/industry-registry.d.ts +49 -0
  69. package/dist/knowledge/industry-registry.js +167 -0
  70. package/dist/knowledge/intent-metrics.d.ts +42 -0
  71. package/dist/knowledge/intent-metrics.js +566 -0
  72. package/dist/knowledge/process-model.d.ts +24 -0
  73. package/dist/knowledge/process-model.js +160 -0
  74. package/dist/knowledge/reputation-rules.d.ts +42 -0
  75. package/dist/knowledge/reputation-rules.js +99 -0
  76. package/dist/knowledge/reward-templates.d.ts +25 -0
  77. package/dist/knowledge/reward-templates.js +125 -0
  78. package/dist/knowledge/safety-rules.d.ts +36 -0
  79. package/dist/knowledge/safety-rules.js +171 -0
  80. package/dist/knowledge/tool-constraints.d.ts +30 -0
  81. package/dist/knowledge/tool-constraints.js +185 -0
  82. package/dist/knowledge/trust-metrics.d.ts +37 -0
  83. package/dist/knowledge/trust-metrics.js +138 -0
  84. package/dist/loop-engineering/aggregate.d.ts +50 -0
  85. package/dist/loop-engineering/aggregate.js +132 -0
  86. package/dist/loop-engineering/diagnose.d.ts +22 -0
  87. package/dist/loop-engineering/diagnose.js +273 -0
  88. package/dist/loop-engineering/improve.d.ts +26 -0
  89. package/dist/loop-engineering/improve.js +229 -0
  90. package/dist/loop-engineering/index.d.ts +4 -0
  91. package/dist/loop-engineering/index.js +4 -0
  92. package/dist/loop-engineering/pipeline.d.ts +17 -0
  93. package/dist/loop-engineering/pipeline.js +56 -0
  94. package/dist/mode-market/index.d.ts +3 -0
  95. package/dist/mode-market/index.js +3 -0
  96. package/dist/mode-market/registry.d.ts +53 -0
  97. package/dist/mode-market/registry.js +124 -0
  98. package/dist/mode-market/review.d.ts +27 -0
  99. package/dist/mode-market/review.js +214 -0
  100. package/dist/mode-market/submission.d.ts +25 -0
  101. package/dist/mode-market/submission.js +85 -0
  102. package/dist/project/graph.d.ts +71 -0
  103. package/dist/project/graph.js +314 -0
  104. package/dist/project/index.d.ts +62 -0
  105. package/dist/project/index.js +167 -0
  106. package/dist/project/namespace.d.ts +62 -0
  107. package/dist/project/namespace.js +181 -0
  108. package/dist/project/query.d.ts +40 -0
  109. package/dist/project/query.js +110 -0
  110. package/dist/safety/confirm-gate.d.ts +15 -0
  111. package/dist/safety/confirm-gate.js +44 -0
  112. package/dist/safety/index.d.ts +3 -0
  113. package/dist/safety/index.js +3 -0
  114. package/dist/safety/preview.d.ts +2 -0
  115. package/dist/safety/preview.js +36 -0
  116. package/dist/schema/call/allocation.d.ts +55 -40
  117. package/dist/schema/call/arbitration.d.ts +201 -186
  118. package/dist/schema/call/base.d.ts +2104 -24
  119. package/dist/schema/call/base.js +168 -22
  120. package/dist/schema/call/bridge-handler.js +36 -18
  121. package/dist/schema/call/bridge.d.ts +777 -120
  122. package/dist/schema/call/bridge.js +13 -2
  123. package/dist/schema/call/contact.d.ts +15 -0
  124. package/dist/schema/call/demand.d.ts +69 -54
  125. package/dist/schema/call/guard.d.ts +125 -80
  126. package/dist/schema/call/handler.d.ts +5 -1
  127. package/dist/schema/call/handler.js +108 -3
  128. package/dist/schema/call/index.d.ts +1 -0
  129. package/dist/schema/call/index.js +1 -0
  130. package/dist/schema/call/machine.d.ts +830 -800
  131. package/dist/schema/call/order.d.ts +27 -12
  132. package/dist/schema/call/payment.d.ts +15 -0
  133. package/dist/schema/call/permission.d.ts +15 -0
  134. package/dist/schema/call/personal.d.ts +15 -0
  135. package/dist/schema/call/progress.d.ts +21 -6
  136. package/dist/schema/call/proof.d.ts +42 -12
  137. package/dist/schema/call/proof.js +3 -3
  138. package/dist/schema/call/repository.d.ts +91 -76
  139. package/dist/schema/call/reward.d.ts +51 -36
  140. package/dist/schema/call/semantic.d.ts +24 -0
  141. package/dist/schema/call/semantic.js +981 -0
  142. package/dist/schema/call/service.d.ts +444 -429
  143. package/dist/schema/call/treasury.d.ts +219 -204
  144. package/dist/schema/common/index.js +3 -3
  145. package/dist/schema/local/index.d.ts +341 -74
  146. package/dist/schema/local/index.js +44 -7
  147. package/dist/schema/messenger/index.d.ts +1034 -92
  148. package/dist/schema/messenger/index.js +18 -0
  149. package/dist/schema/operations.d.ts +2634 -1817
  150. package/dist/schema/operations.js +16 -5
  151. package/dist/schema/query/index.d.ts +2293 -2289
  152. package/dist/schema/query/index.js +34 -28
  153. package/dist/schemas/account_operation.output.json +28 -16
  154. package/dist/schemas/account_operation.schema.json +2 -2
  155. package/dist/schemas/bridge_operation.output.json +520 -0
  156. package/dist/schemas/bridge_operation.schema.json +15 -0
  157. package/dist/schemas/guard2file.schema.json +15 -0
  158. package/dist/schemas/index.json +1 -1
  159. package/dist/schemas/local_info_operation.output.json +26 -0
  160. package/dist/schemas/local_info_operation.schema.json +1 -1
  161. package/dist/schemas/local_mark_operation.output.json +27 -1
  162. package/dist/schemas/local_mark_operation.schema.json +4 -4
  163. package/dist/schemas/machineNode2file.schema.json +15 -0
  164. package/dist/schemas/messenger_operation.output.json +549 -0
  165. package/dist/schemas/messenger_operation.schema.json +21 -0
  166. package/dist/schemas/onchain_events.output.json +3 -0
  167. package/dist/schemas/onchain_operations.output.json +814 -37
  168. package/dist/schemas/onchain_operations.schema.json +117 -40
  169. package/dist/schemas/onchain_operations_allocation.schema.json +26 -9
  170. package/dist/schemas/onchain_operations_arbitration.schema.json +26 -9
  171. package/dist/schemas/onchain_operations_contact.schema.json +26 -9
  172. package/dist/schemas/onchain_operations_demand.schema.json +26 -9
  173. package/dist/schemas/onchain_operations_gen_passport.schema.json +51 -17
  174. package/dist/schemas/onchain_operations_guard.schema.json +26 -9
  175. package/dist/schemas/onchain_operations_machine.schema.json +92 -32
  176. package/dist/schemas/onchain_operations_order.schema.json +26 -9
  177. package/dist/schemas/onchain_operations_payment.schema.json +26 -9
  178. package/dist/schemas/onchain_operations_permission.schema.json +26 -9
  179. package/dist/schemas/onchain_operations_personal.schema.json +26 -9
  180. package/dist/schemas/onchain_operations_progress.schema.json +26 -9
  181. package/dist/schemas/onchain_operations_repository.schema.json +26 -9
  182. package/dist/schemas/onchain_operations_reward.schema.json +26 -9
  183. package/dist/schemas/onchain_operations_service.schema.json +26 -9
  184. package/dist/schemas/onchain_operations_treasury.schema.json +26 -9
  185. package/dist/schemas/onchain_table_data.output.json +224 -69
  186. package/dist/schemas/onchain_table_data.schema.json +2 -2
  187. package/dist/schemas/query_toolkit.schema.json +5 -1
  188. package/dist/telemetry/index.d.ts +19 -0
  189. package/dist/telemetry/index.js +112 -0
  190. package/dist/telemetry/redact.d.ts +2 -0
  191. package/dist/telemetry/redact.js +23 -0
  192. package/dist/telemetry/storage.d.ts +8 -0
  193. package/dist/telemetry/storage.js +80 -0
  194. package/package.json +6 -3
@@ -19,11 +19,11 @@ export declare const ArbObjectionSchema: z.ZodObject<{
19
19
  arb: z.ZodEffects<z.ZodString, string, string>;
20
20
  objection: z.ZodEffects<z.ZodString, string, string>;
21
21
  }, "strict", z.ZodTypeAny, {
22
- objection: string;
23
22
  arb: string;
24
- }, {
25
23
  objection: string;
24
+ }, {
26
25
  arb: string;
26
+ objection: string;
27
27
  }>;
28
28
  export declare const ArbClaimCompensationSchema: z.ZodObject<{
29
29
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -111,11 +111,11 @@ export declare const CallOrder_DataSchema: z.ZodObject<{
111
111
  arb: z.ZodEffects<z.ZodString, string, string>;
112
112
  objection: z.ZodEffects<z.ZodString, string, string>;
113
113
  }, "strict", z.ZodTypeAny, {
114
- objection: string;
115
114
  arb: string;
116
- }, {
117
115
  objection: string;
116
+ }, {
118
117
  arb: string;
118
+ objection: string;
119
119
  }>>;
120
120
  arb_claim_compensation: z.ZodOptional<z.ZodObject<{
121
121
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -235,8 +235,8 @@ export declare const CallOrder_DataSchema: z.ZodObject<{
235
235
  proposition?: string[] | undefined;
236
236
  } | undefined;
237
237
  arb_objection?: {
238
- objection: string;
239
238
  arb: string;
239
+ objection: string;
240
240
  } | undefined;
241
241
  arb_claim_compensation?: {
242
242
  arb: string;
@@ -286,8 +286,8 @@ export declare const CallOrder_DataSchema: z.ZodObject<{
286
286
  proposition?: string[] | undefined;
287
287
  } | undefined;
288
288
  arb_objection?: {
289
- objection: string;
290
289
  arb: string;
290
+ objection: string;
291
291
  } | undefined;
292
292
  arb_claim_compensation?: {
293
293
  arb: string;
@@ -392,11 +392,11 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
392
392
  arb: z.ZodEffects<z.ZodString, string, string>;
393
393
  objection: z.ZodEffects<z.ZodString, string, string>;
394
394
  }, "strict", z.ZodTypeAny, {
395
- objection: string;
396
395
  arb: string;
397
- }, {
398
396
  objection: string;
397
+ }, {
399
398
  arb: string;
399
+ objection: string;
400
400
  }>>;
401
401
  arb_claim_compensation: z.ZodOptional<z.ZodObject<{
402
402
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -516,8 +516,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
516
516
  proposition?: string[] | undefined;
517
517
  } | undefined;
518
518
  arb_objection?: {
519
- objection: string;
520
519
  arb: string;
520
+ objection: string;
521
521
  } | undefined;
522
522
  arb_claim_compensation?: {
523
523
  arb: string;
@@ -567,8 +567,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
567
567
  proposition?: string[] | undefined;
568
568
  } | undefined;
569
569
  arb_objection?: {
570
- objection: string;
571
570
  arb: string;
571
+ objection: string;
572
572
  } | undefined;
573
573
  arb_claim_compensation?: {
574
574
  arb: string;
@@ -599,18 +599,27 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
599
599
  no_cache: z.ZodOptional<z.ZodBoolean>;
600
600
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
601
601
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
602
+ confirmed: z.ZodOptional<z.ZodBoolean>;
603
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
604
+ project: z.ZodOptional<z.ZodString>;
602
605
  }, "strict", z.ZodTypeAny, {
603
606
  account: string;
604
607
  no_cache?: boolean | undefined;
605
608
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
606
609
  permission_guard?: string[] | undefined;
607
610
  referrer?: string | undefined;
611
+ confirmed?: boolean | undefined;
612
+ user_intent_phrases?: string[] | undefined;
613
+ project?: string | undefined;
608
614
  }, {
609
615
  no_cache?: boolean | undefined;
610
616
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
611
617
  account?: string | undefined;
612
618
  permission_guard?: string[] | undefined;
613
619
  referrer?: string | undefined;
620
+ confirmed?: boolean | undefined;
621
+ user_intent_phrases?: string[] | undefined;
622
+ project?: string | undefined;
614
623
  }>>;
615
624
  submission: z.ZodOptional<z.ZodObject<{
616
625
  type: z.ZodLiteral<"submission">;
@@ -819,8 +828,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
819
828
  proposition?: string[] | undefined;
820
829
  } | undefined;
821
830
  arb_objection?: {
822
- objection: string;
823
831
  arb: string;
832
+ objection: string;
824
833
  } | undefined;
825
834
  arb_claim_compensation?: {
826
835
  arb: string;
@@ -878,6 +887,9 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
878
887
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
879
888
  permission_guard?: string[] | undefined;
880
889
  referrer?: string | undefined;
890
+ confirmed?: boolean | undefined;
891
+ user_intent_phrases?: string[] | undefined;
892
+ project?: string | undefined;
881
893
  } | undefined;
882
894
  }, {
883
895
  data: {
@@ -906,8 +918,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
906
918
  proposition?: string[] | undefined;
907
919
  } | undefined;
908
920
  arb_objection?: {
909
- objection: string;
910
921
  arb: string;
922
+ objection: string;
911
923
  } | undefined;
912
924
  arb_claim_compensation?: {
913
925
  arb: string;
@@ -965,6 +977,9 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
965
977
  account?: string | undefined;
966
978
  permission_guard?: string[] | undefined;
967
979
  referrer?: string | undefined;
980
+ confirmed?: boolean | undefined;
981
+ user_intent_phrases?: string[] | undefined;
982
+ project?: string | undefined;
968
983
  } | undefined;
969
984
  }>;
970
985
  export type ArbConfirm = z.infer<typeof ArbConfirmSchema>;
@@ -317,18 +317,27 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
317
317
  no_cache: z.ZodOptional<z.ZodBoolean>;
318
318
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
319
319
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
320
+ confirmed: z.ZodOptional<z.ZodBoolean>;
321
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
322
+ project: z.ZodOptional<z.ZodString>;
320
323
  }, "strict", z.ZodTypeAny, {
321
324
  account: string;
322
325
  no_cache?: boolean | undefined;
323
326
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
324
327
  permission_guard?: string[] | undefined;
325
328
  referrer?: string | undefined;
329
+ confirmed?: boolean | undefined;
330
+ user_intent_phrases?: string[] | undefined;
331
+ project?: string | undefined;
326
332
  }, {
327
333
  no_cache?: boolean | undefined;
328
334
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
329
335
  account?: string | undefined;
330
336
  permission_guard?: string[] | undefined;
331
337
  referrer?: string | undefined;
338
+ confirmed?: boolean | undefined;
339
+ user_intent_phrases?: string[] | undefined;
340
+ project?: string | undefined;
332
341
  }>>;
333
342
  }, "strict", z.ZodTypeAny, {
334
343
  data: {
@@ -363,6 +372,9 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
363
372
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
364
373
  permission_guard?: string[] | undefined;
365
374
  referrer?: string | undefined;
375
+ confirmed?: boolean | undefined;
376
+ user_intent_phrases?: string[] | undefined;
377
+ project?: string | undefined;
366
378
  } | undefined;
367
379
  }, {
368
380
  data: {
@@ -397,6 +409,9 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
397
409
  account?: string | undefined;
398
410
  permission_guard?: string[] | undefined;
399
411
  referrer?: string | undefined;
412
+ confirmed?: boolean | undefined;
413
+ user_intent_phrases?: string[] | undefined;
414
+ project?: string | undefined;
400
415
  } | undefined;
401
416
  }>;
402
417
  export type Revenue = z.infer<typeof RevenueSchema>;
@@ -2464,18 +2464,27 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2464
2464
  no_cache: z.ZodOptional<z.ZodBoolean>;
2465
2465
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
2466
2466
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2467
+ confirmed: z.ZodOptional<z.ZodBoolean>;
2468
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2469
+ project: z.ZodOptional<z.ZodString>;
2467
2470
  }, "strict", z.ZodTypeAny, {
2468
2471
  account: string;
2469
2472
  no_cache?: boolean | undefined;
2470
2473
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2471
2474
  permission_guard?: string[] | undefined;
2472
2475
  referrer?: string | undefined;
2476
+ confirmed?: boolean | undefined;
2477
+ user_intent_phrases?: string[] | undefined;
2478
+ project?: string | undefined;
2473
2479
  }, {
2474
2480
  no_cache?: boolean | undefined;
2475
2481
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2476
2482
  account?: string | undefined;
2477
2483
  permission_guard?: string[] | undefined;
2478
2484
  referrer?: string | undefined;
2485
+ confirmed?: boolean | undefined;
2486
+ user_intent_phrases?: string[] | undefined;
2487
+ project?: string | undefined;
2479
2488
  }>>;
2480
2489
  submission: z.ZodOptional<z.ZodObject<{
2481
2490
  type: z.ZodLiteral<"submission">;
@@ -2828,6 +2837,9 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
2828
2837
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
2829
2838
  permission_guard?: string[] | undefined;
2830
2839
  referrer?: string | undefined;
2840
+ confirmed?: boolean | undefined;
2841
+ user_intent_phrases?: string[] | undefined;
2842
+ project?: string | undefined;
2831
2843
  } | undefined;
2832
2844
  }, {
2833
2845
  data: {
@@ -3000,6 +3012,9 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
3000
3012
  account?: string | undefined;
3001
3013
  permission_guard?: string[] | undefined;
3002
3014
  referrer?: string | undefined;
3015
+ confirmed?: boolean | undefined;
3016
+ user_intent_phrases?: string[] | undefined;
3017
+ project?: string | undefined;
3003
3018
  } | undefined;
3004
3019
  }>;
3005
3020
  export type RemarkSet = z.infer<typeof RemarkSetSchema>;
@@ -1307,18 +1307,27 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1307
1307
  no_cache: z.ZodOptional<z.ZodBoolean>;
1308
1308
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
1309
1309
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1310
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1311
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1312
+ project: z.ZodOptional<z.ZodString>;
1310
1313
  }, "strict", z.ZodTypeAny, {
1311
1314
  account: string;
1312
1315
  no_cache?: boolean | undefined;
1313
1316
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1314
1317
  permission_guard?: string[] | undefined;
1315
1318
  referrer?: string | undefined;
1319
+ confirmed?: boolean | undefined;
1320
+ user_intent_phrases?: string[] | undefined;
1321
+ project?: string | undefined;
1316
1322
  }, {
1317
1323
  no_cache?: boolean | undefined;
1318
1324
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1319
1325
  account?: string | undefined;
1320
1326
  permission_guard?: string[] | undefined;
1321
1327
  referrer?: string | undefined;
1328
+ confirmed?: boolean | undefined;
1329
+ user_intent_phrases?: string[] | undefined;
1330
+ project?: string | undefined;
1322
1331
  }>>;
1323
1332
  }, "strict", z.ZodTypeAny, {
1324
1333
  data: {
@@ -1387,6 +1396,9 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1387
1396
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
1388
1397
  permission_guard?: string[] | undefined;
1389
1398
  referrer?: string | undefined;
1399
+ confirmed?: boolean | undefined;
1400
+ user_intent_phrases?: string[] | undefined;
1401
+ project?: string | undefined;
1390
1402
  } | undefined;
1391
1403
  }, {
1392
1404
  data: {
@@ -1455,6 +1467,9 @@ export declare const CallPersonal_InputSchema: z.ZodObject<{
1455
1467
  account?: string | undefined;
1456
1468
  permission_guard?: string[] | undefined;
1457
1469
  referrer?: string | undefined;
1470
+ confirmed?: boolean | undefined;
1471
+ user_intent_phrases?: string[] | undefined;
1472
+ project?: string | undefined;
1458
1473
  } | undefined;
1459
1474
  }>;
1460
1475
  export type InformationAdd = z.infer<typeof InformationAddSchema>;
@@ -150,7 +150,6 @@ export declare const CallProgress_DataSchema: z.ZodObject<{
150
150
  }>>;
151
151
  }, "strict", z.ZodTypeAny, {
152
152
  object: string;
153
- task?: string | undefined;
154
153
  repository?: {
155
154
  op: "set" | "add";
156
155
  objects: string[];
@@ -160,6 +159,7 @@ export declare const CallProgress_DataSchema: z.ZodObject<{
160
159
  } | {
161
160
  op: "clear";
162
161
  } | undefined;
162
+ task?: string | undefined;
163
163
  progress_namedOperator?: {
164
164
  name: string;
165
165
  op: "set" | "add" | "remove";
@@ -182,7 +182,6 @@ export declare const CallProgress_DataSchema: z.ZodObject<{
182
182
  } | undefined;
183
183
  }, {
184
184
  object: string;
185
- task?: string | undefined;
186
185
  repository?: {
187
186
  op: "set" | "add";
188
187
  objects: string[];
@@ -192,6 +191,7 @@ export declare const CallProgress_DataSchema: z.ZodObject<{
192
191
  } | {
193
192
  op: "clear";
194
193
  } | undefined;
194
+ task?: string | undefined;
195
195
  progress_namedOperator?: {
196
196
  name: string;
197
197
  op: "set" | "add" | "remove";
@@ -324,7 +324,6 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
324
324
  }>>;
325
325
  }, "strict", z.ZodTypeAny, {
326
326
  object: string;
327
- task?: string | undefined;
328
327
  repository?: {
329
328
  op: "set" | "add";
330
329
  objects: string[];
@@ -334,6 +333,7 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
334
333
  } | {
335
334
  op: "clear";
336
335
  } | undefined;
336
+ task?: string | undefined;
337
337
  progress_namedOperator?: {
338
338
  name: string;
339
339
  op: "set" | "add" | "remove";
@@ -356,7 +356,6 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
356
356
  } | undefined;
357
357
  }, {
358
358
  object: string;
359
- task?: string | undefined;
360
359
  repository?: {
361
360
  op: "set" | "add";
362
361
  objects: string[];
@@ -366,6 +365,7 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
366
365
  } | {
367
366
  op: "clear";
368
367
  } | undefined;
368
+ task?: string | undefined;
369
369
  progress_namedOperator?: {
370
370
  name: string;
371
371
  op: "set" | "add" | "remove";
@@ -393,18 +393,27 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
393
393
  no_cache: z.ZodOptional<z.ZodBoolean>;
394
394
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
395
395
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
396
+ confirmed: z.ZodOptional<z.ZodBoolean>;
397
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
398
+ project: z.ZodOptional<z.ZodString>;
396
399
  }, "strict", z.ZodTypeAny, {
397
400
  account: string;
398
401
  no_cache?: boolean | undefined;
399
402
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
400
403
  permission_guard?: string[] | undefined;
401
404
  referrer?: string | undefined;
405
+ confirmed?: boolean | undefined;
406
+ user_intent_phrases?: string[] | undefined;
407
+ project?: string | undefined;
402
408
  }, {
403
409
  no_cache?: boolean | undefined;
404
410
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
405
411
  account?: string | undefined;
406
412
  permission_guard?: string[] | undefined;
407
413
  referrer?: string | undefined;
414
+ confirmed?: boolean | undefined;
415
+ user_intent_phrases?: string[] | undefined;
416
+ project?: string | undefined;
408
417
  }>>;
409
418
  submission: z.ZodOptional<z.ZodObject<{
410
419
  type: z.ZodLiteral<"submission">;
@@ -589,7 +598,6 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
589
598
  }, "strict", z.ZodTypeAny, {
590
599
  data: {
591
600
  object: string;
592
- task?: string | undefined;
593
601
  repository?: {
594
602
  op: "set" | "add";
595
603
  objects: string[];
@@ -599,6 +607,7 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
599
607
  } | {
600
608
  op: "clear";
601
609
  } | undefined;
610
+ task?: string | undefined;
602
611
  progress_namedOperator?: {
603
612
  name: string;
604
613
  op: "set" | "add" | "remove";
@@ -653,11 +662,13 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
653
662
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
654
663
  permission_guard?: string[] | undefined;
655
664
  referrer?: string | undefined;
665
+ confirmed?: boolean | undefined;
666
+ user_intent_phrases?: string[] | undefined;
667
+ project?: string | undefined;
656
668
  } | undefined;
657
669
  }, {
658
670
  data: {
659
671
  object: string;
660
- task?: string | undefined;
661
672
  repository?: {
662
673
  op: "set" | "add";
663
674
  objects: string[];
@@ -667,6 +678,7 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
667
678
  } | {
668
679
  op: "clear";
669
680
  } | undefined;
681
+ task?: string | undefined;
670
682
  progress_namedOperator?: {
671
683
  name: string;
672
684
  op: "set" | "add" | "remove";
@@ -721,5 +733,8 @@ export declare const CallProgress_InputSchema: z.ZodObject<{
721
733
  account?: string | undefined;
722
734
  permission_guard?: string[] | undefined;
723
735
  referrer?: string | undefined;
736
+ confirmed?: boolean | undefined;
737
+ user_intent_phrases?: string[] | undefined;
738
+ project?: string | undefined;
724
739
  } | undefined;
725
740
  }>;
@@ -29,28 +29,28 @@ export declare const CallProof_DataSchema: z.ZodObject<{
29
29
  server_signature: string;
30
30
  proof_type: string | number;
31
31
  description?: string | undefined;
32
- item_count?: string | number | null | undefined;
33
- about_address?: string | null | undefined;
34
32
  namedNew?: {
35
33
  name?: string | undefined;
36
34
  replaceExistName?: boolean | undefined;
37
35
  tags?: string[] | undefined;
38
36
  onChain?: boolean | undefined;
39
37
  } | undefined;
38
+ item_count?: string | number | null | undefined;
39
+ about_address?: string | null | undefined;
40
40
  }, {
41
41
  proof: string;
42
42
  server_pubkey: string;
43
43
  server_signature: string;
44
44
  proof_type: string | number;
45
45
  description?: string | undefined;
46
- item_count?: string | number | null | undefined;
47
- about_address?: string | null | undefined;
48
46
  namedNew?: {
49
47
  name?: string | undefined;
50
48
  replaceExistName?: boolean | undefined;
51
49
  tags?: string[] | undefined;
52
50
  onChain?: boolean | undefined;
53
51
  } | undefined;
52
+ item_count?: string | number | null | undefined;
53
+ about_address?: string | null | undefined;
54
54
  }>;
55
55
  export declare const CallProof_InputSchema: z.ZodObject<{
56
56
  data: z.ZodObject<{
@@ -83,28 +83,28 @@ export declare const CallProof_InputSchema: z.ZodObject<{
83
83
  server_signature: string;
84
84
  proof_type: string | number;
85
85
  description?: string | undefined;
86
- item_count?: string | number | null | undefined;
87
- about_address?: string | null | undefined;
88
86
  namedNew?: {
89
87
  name?: string | undefined;
90
88
  replaceExistName?: boolean | undefined;
91
89
  tags?: string[] | undefined;
92
90
  onChain?: boolean | undefined;
93
91
  } | undefined;
92
+ item_count?: string | number | null | undefined;
93
+ about_address?: string | null | undefined;
94
94
  }, {
95
95
  proof: string;
96
96
  server_pubkey: string;
97
97
  server_signature: string;
98
98
  proof_type: string | number;
99
99
  description?: string | undefined;
100
- item_count?: string | number | null | undefined;
101
- about_address?: string | null | undefined;
102
100
  namedNew?: {
103
101
  name?: string | undefined;
104
102
  replaceExistName?: boolean | undefined;
105
103
  tags?: string[] | undefined;
106
104
  onChain?: boolean | undefined;
107
105
  } | undefined;
106
+ item_count?: string | number | null | undefined;
107
+ about_address?: string | null | undefined;
108
108
  }>;
109
109
  env: z.ZodOptional<z.ZodObject<{
110
110
  account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
@@ -112,18 +112,27 @@ export declare const CallProof_InputSchema: z.ZodObject<{
112
112
  no_cache: z.ZodOptional<z.ZodBoolean>;
113
113
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
114
114
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
115
+ confirmed: z.ZodOptional<z.ZodBoolean>;
116
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
117
+ project: z.ZodOptional<z.ZodString>;
115
118
  }, "strict", z.ZodTypeAny, {
116
119
  account: string;
117
120
  no_cache?: boolean | undefined;
118
121
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
119
122
  permission_guard?: string[] | undefined;
120
123
  referrer?: string | undefined;
124
+ confirmed?: boolean | undefined;
125
+ user_intent_phrases?: string[] | undefined;
126
+ project?: string | undefined;
121
127
  }, {
122
128
  no_cache?: boolean | undefined;
123
129
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
124
130
  account?: string | undefined;
125
131
  permission_guard?: string[] | undefined;
126
132
  referrer?: string | undefined;
133
+ confirmed?: boolean | undefined;
134
+ user_intent_phrases?: string[] | undefined;
135
+ project?: string | undefined;
127
136
  }>>;
128
137
  }, "strict", z.ZodTypeAny, {
129
138
  data: {
@@ -132,14 +141,14 @@ export declare const CallProof_InputSchema: z.ZodObject<{
132
141
  server_signature: string;
133
142
  proof_type: string | number;
134
143
  description?: string | undefined;
135
- item_count?: string | number | null | undefined;
136
- about_address?: string | null | undefined;
137
144
  namedNew?: {
138
145
  name?: string | undefined;
139
146
  replaceExistName?: boolean | undefined;
140
147
  tags?: string[] | undefined;
141
148
  onChain?: boolean | undefined;
142
149
  } | undefined;
150
+ item_count?: string | number | null | undefined;
151
+ about_address?: string | null | undefined;
143
152
  };
144
153
  env?: {
145
154
  account: string;
@@ -147,6 +156,9 @@ export declare const CallProof_InputSchema: z.ZodObject<{
147
156
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
148
157
  permission_guard?: string[] | undefined;
149
158
  referrer?: string | undefined;
159
+ confirmed?: boolean | undefined;
160
+ user_intent_phrases?: string[] | undefined;
161
+ project?: string | undefined;
150
162
  } | undefined;
151
163
  }, {
152
164
  data: {
@@ -155,14 +167,14 @@ export declare const CallProof_InputSchema: z.ZodObject<{
155
167
  server_signature: string;
156
168
  proof_type: string | number;
157
169
  description?: string | undefined;
158
- item_count?: string | number | null | undefined;
159
- about_address?: string | null | undefined;
160
170
  namedNew?: {
161
171
  name?: string | undefined;
162
172
  replaceExistName?: boolean | undefined;
163
173
  tags?: string[] | undefined;
164
174
  onChain?: boolean | undefined;
165
175
  } | undefined;
176
+ item_count?: string | number | null | undefined;
177
+ about_address?: string | null | undefined;
166
178
  };
167
179
  env?: {
168
180
  no_cache?: boolean | undefined;
@@ -170,6 +182,9 @@ export declare const CallProof_InputSchema: z.ZodObject<{
170
182
  account?: string | undefined;
171
183
  permission_guard?: string[] | undefined;
172
184
  referrer?: string | undefined;
185
+ confirmed?: boolean | undefined;
186
+ user_intent_phrases?: string[] | undefined;
187
+ project?: string | undefined;
173
188
  } | undefined;
174
189
  }>;
175
190
  export declare const CallGenProof_InputSchema: z.ZodObject<{
@@ -186,18 +201,27 @@ export declare const CallGenProof_InputSchema: z.ZodObject<{
186
201
  no_cache: z.ZodOptional<z.ZodBoolean>;
187
202
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
188
203
  referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
204
+ confirmed: z.ZodOptional<z.ZodBoolean>;
205
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
206
+ project: z.ZodOptional<z.ZodString>;
189
207
  }, "strict", z.ZodTypeAny, {
190
208
  account: string;
191
209
  no_cache?: boolean | undefined;
192
210
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
193
211
  permission_guard?: string[] | undefined;
194
212
  referrer?: string | undefined;
213
+ confirmed?: boolean | undefined;
214
+ user_intent_phrases?: string[] | undefined;
215
+ project?: string | undefined;
195
216
  }, {
196
217
  no_cache?: boolean | undefined;
197
218
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
198
219
  account?: string | undefined;
199
220
  permission_guard?: string[] | undefined;
200
221
  referrer?: string | undefined;
222
+ confirmed?: boolean | undefined;
223
+ user_intent_phrases?: string[] | undefined;
224
+ project?: string | undefined;
201
225
  }>>;
202
226
  }, "strict", z.ZodTypeAny, {
203
227
  proof: string;
@@ -211,6 +235,9 @@ export declare const CallGenProof_InputSchema: z.ZodObject<{
211
235
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
212
236
  permission_guard?: string[] | undefined;
213
237
  referrer?: string | undefined;
238
+ confirmed?: boolean | undefined;
239
+ user_intent_phrases?: string[] | undefined;
240
+ project?: string | undefined;
214
241
  } | undefined;
215
242
  item_count?: string | number | null | undefined;
216
243
  about_address?: string | null | undefined;
@@ -226,6 +253,9 @@ export declare const CallGenProof_InputSchema: z.ZodObject<{
226
253
  account?: string | undefined;
227
254
  permission_guard?: string[] | undefined;
228
255
  referrer?: string | undefined;
256
+ confirmed?: boolean | undefined;
257
+ user_intent_phrases?: string[] | undefined;
258
+ project?: string | undefined;
229
259
  } | undefined;
230
260
  item_count?: string | number | null | undefined;
231
261
  about_address?: string | null | undefined;
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { CallEnvSchema, NamedObjectSchema } from './base.js';
3
- import { DescriptionSchema, NameOrAddressSchema } from '../common/index.js';
3
+ import { DescriptionSchema, WowAddressSchema } from '../common/index.js';
4
4
  import { MAX_PROOF_SIZE, MAX_SERVER_PUBKEY_SIZE, MAX_SERVER_SIGNATURE_SIZE } from '@wowok/wowok';
5
5
  export const CallProof_DataSchema = z.object({
6
6
  namedNew: NamedObjectSchema.optional(),
@@ -10,7 +10,7 @@ export const CallProof_DataSchema = z.object({
10
10
  server_signature: z.string().max(MAX_SERVER_SIGNATURE_SIZE).describe("Server signature"),
11
11
  proof_type: z.union([z.number().int().min(0), z.string()]).describe("Proof type. 1: WTS proof; 1-100 reserved."),
12
12
  item_count: z.union([z.number().int().min(0), z.string(), z.null()]).optional().describe("Item count. e.g. number of items in the merkle tree"),
13
- about_address: z.union([NameOrAddressSchema, z.null()]).optional().describe("About address. e.g. address of the entity being proved"),
13
+ about_address: z.union([WowAddressSchema, z.null()]).optional().describe("About address (raw address only, NOT name). e.g. address of the entity being proved. Use 0x-prefixed 64-hex address."),
14
14
  }).strict().describe("On-chain Proof creation. USAGE: Set 'namedNew' field with {name, tag?} to create a named Proof. Proof is an immutable object - it can only be created, not modified. The 'namedNew' field is CRITICAL and REQUIRED.");
15
15
  export const CallProof_InputSchema = z.object({
16
16
  data: CallProof_DataSchema,
@@ -23,6 +23,6 @@ export const CallGenProof_InputSchema = z.object({
23
23
  proof_type: z.union([z.number().int().min(0), z.string()]).describe("Proof type. 1: WTS proof; 1-100 reserved."),
24
24
  description: DescriptionSchema.optional(),
25
25
  item_count: z.union([z.number().int().min(0), z.string(), z.null()]).optional().describe("Item count. e.g. number of items in the merkle tree"),
26
- about_address: z.union([NameOrAddressSchema, z.null()]).optional().describe("About address. e.g. address of the entity being proved"),
26
+ about_address: z.union([WowAddressSchema, z.null()]).optional().describe("About address (raw address only, NOT name). e.g. address of the entity being proved. Use 0x-prefixed 64-hex address."),
27
27
  env: CallEnvSchema.optional(),
28
28
  }).strict().describe("Generate a new Proof object on-chain");