@wowok/agent-mcp 2.3.14 → 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 (156) 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/index.js +570 -186
  36. package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
  37. package/dist/knowledge/acquisition-flywheel.js +183 -0
  38. package/dist/knowledge/arbitration-trust.d.ts +24 -0
  39. package/dist/knowledge/arbitration-trust.js +117 -0
  40. package/dist/knowledge/audit-rules.d.ts +28 -0
  41. package/dist/knowledge/audit-rules.js +141 -0
  42. package/dist/knowledge/demand-matching.d.ts +29 -0
  43. package/dist/knowledge/demand-matching.js +132 -0
  44. package/dist/knowledge/dynamic-pricing.d.ts +31 -0
  45. package/dist/knowledge/dynamic-pricing.js +87 -0
  46. package/dist/knowledge/flywheel-loop.d.ts +87 -0
  47. package/dist/knowledge/flywheel-loop.js +378 -0
  48. package/dist/knowledge/glossary.d.ts +18 -0
  49. package/dist/knowledge/glossary.js +209 -0
  50. package/dist/knowledge/index.d.ts +64 -0
  51. package/dist/knowledge/index.js +66 -0
  52. package/dist/knowledge/industry-evolution.d.ts +82 -0
  53. package/dist/knowledge/industry-evolution.js +323 -0
  54. package/dist/knowledge/industry-generalizer.d.ts +17 -0
  55. package/dist/knowledge/industry-generalizer.js +381 -0
  56. package/dist/knowledge/industry-registry.d.ts +49 -0
  57. package/dist/knowledge/industry-registry.js +167 -0
  58. package/dist/knowledge/intent-metrics.d.ts +42 -0
  59. package/dist/knowledge/intent-metrics.js +566 -0
  60. package/dist/knowledge/process-model.d.ts +24 -0
  61. package/dist/knowledge/process-model.js +160 -0
  62. package/dist/knowledge/reputation-rules.d.ts +42 -0
  63. package/dist/knowledge/reputation-rules.js +99 -0
  64. package/dist/knowledge/reward-templates.d.ts +25 -0
  65. package/dist/knowledge/reward-templates.js +125 -0
  66. package/dist/knowledge/safety-rules.d.ts +36 -0
  67. package/dist/knowledge/safety-rules.js +171 -0
  68. package/dist/knowledge/tool-constraints.d.ts +30 -0
  69. package/dist/knowledge/tool-constraints.js +185 -0
  70. package/dist/knowledge/trust-metrics.d.ts +37 -0
  71. package/dist/knowledge/trust-metrics.js +138 -0
  72. package/dist/loop-engineering/diagnose.d.ts +3 -2
  73. package/dist/loop-engineering/diagnose.js +94 -0
  74. package/dist/loop-engineering/improve.d.ts +1 -1
  75. package/dist/loop-engineering/improve.js +52 -1
  76. package/dist/project/graph.d.ts +71 -0
  77. package/dist/project/graph.js +314 -0
  78. package/dist/project/index.d.ts +62 -0
  79. package/dist/project/index.js +167 -0
  80. package/dist/project/namespace.d.ts +62 -0
  81. package/dist/project/namespace.js +181 -0
  82. package/dist/project/query.d.ts +40 -0
  83. package/dist/project/query.js +110 -0
  84. package/dist/safety/confirm-gate.d.ts +15 -0
  85. package/dist/safety/confirm-gate.js +44 -0
  86. package/dist/safety/index.d.ts +3 -0
  87. package/dist/safety/index.js +3 -0
  88. package/dist/safety/preview.d.ts +2 -0
  89. package/dist/safety/preview.js +36 -0
  90. package/dist/schema/call/allocation.d.ts +15 -0
  91. package/dist/schema/call/arbitration.d.ts +111 -96
  92. package/dist/schema/call/base.d.ts +1070 -44
  93. package/dist/schema/call/base.js +69 -1
  94. package/dist/schema/call/bridge.d.ts +709 -52
  95. package/dist/schema/call/bridge.js +13 -2
  96. package/dist/schema/call/contact.d.ts +15 -0
  97. package/dist/schema/call/demand.d.ts +69 -54
  98. package/dist/schema/call/guard.d.ts +125 -80
  99. package/dist/schema/call/handler.d.ts +3 -0
  100. package/dist/schema/call/handler.js +14 -0
  101. package/dist/schema/call/machine.d.ts +830 -800
  102. package/dist/schema/call/order.d.ts +15 -0
  103. package/dist/schema/call/payment.d.ts +15 -0
  104. package/dist/schema/call/permission.d.ts +15 -0
  105. package/dist/schema/call/personal.d.ts +15 -0
  106. package/dist/schema/call/progress.d.ts +15 -0
  107. package/dist/schema/call/proof.d.ts +42 -12
  108. package/dist/schema/call/proof.js +3 -3
  109. package/dist/schema/call/repository.d.ts +91 -76
  110. package/dist/schema/call/reward.d.ts +45 -30
  111. package/dist/schema/call/semantic.d.ts +1 -0
  112. package/dist/schema/call/semantic.js +217 -0
  113. package/dist/schema/call/service.d.ts +407 -392
  114. package/dist/schema/call/treasury.d.ts +15 -0
  115. package/dist/schema/common/index.js +3 -3
  116. package/dist/schema/local/index.d.ts +228 -72
  117. package/dist/schema/local/index.js +33 -6
  118. package/dist/schema/messenger/index.d.ts +668 -50
  119. package/dist/schema/messenger/index.js +9 -0
  120. package/dist/schema/operations.d.ts +1693 -1369
  121. package/dist/schema/operations.js +2 -2
  122. package/dist/schema/query/index.d.ts +1614 -1614
  123. package/dist/schema/query/index.js +30 -27
  124. package/dist/schemas/account_operation.output.json +25 -16
  125. package/dist/schemas/account_operation.schema.json +1 -1
  126. package/dist/schemas/bridge_operation.output.json +520 -0
  127. package/dist/schemas/bridge_operation.schema.json +15 -0
  128. package/dist/schemas/guard2file.schema.json +15 -0
  129. package/dist/schemas/index.json +1 -1
  130. package/dist/schemas/local_info_operation.output.json +23 -0
  131. package/dist/schemas/local_info_operation.schema.json +1 -1
  132. package/dist/schemas/local_mark_operation.output.json +24 -1
  133. package/dist/schemas/local_mark_operation.schema.json +4 -4
  134. package/dist/schemas/machineNode2file.schema.json +15 -0
  135. package/dist/schemas/messenger_operation.output.json +528 -0
  136. package/dist/schemas/onchain_operations.output.json +350 -16
  137. package/dist/schemas/onchain_operations.schema.json +96 -23
  138. package/dist/schemas/onchain_operations_allocation.schema.json +15 -0
  139. package/dist/schemas/onchain_operations_arbitration.schema.json +15 -0
  140. package/dist/schemas/onchain_operations_contact.schema.json +15 -0
  141. package/dist/schemas/onchain_operations_demand.schema.json +15 -0
  142. package/dist/schemas/onchain_operations_gen_passport.schema.json +30 -0
  143. package/dist/schemas/onchain_operations_guard.schema.json +15 -0
  144. package/dist/schemas/onchain_operations_machine.schema.json +81 -23
  145. package/dist/schemas/onchain_operations_order.schema.json +15 -0
  146. package/dist/schemas/onchain_operations_payment.schema.json +15 -0
  147. package/dist/schemas/onchain_operations_permission.schema.json +15 -0
  148. package/dist/schemas/onchain_operations_personal.schema.json +15 -0
  149. package/dist/schemas/onchain_operations_progress.schema.json +15 -0
  150. package/dist/schemas/onchain_operations_repository.schema.json +15 -0
  151. package/dist/schemas/onchain_operations_reward.schema.json +15 -0
  152. package/dist/schemas/onchain_operations_service.schema.json +15 -0
  153. package/dist/schemas/onchain_operations_treasury.schema.json +15 -0
  154. package/dist/schemas/onchain_table_data.output.json +221 -69
  155. package/dist/schemas/onchain_table_data.schema.json +2 -2
  156. package/package.json +2 -2
@@ -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">;
@@ -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: {
@@ -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>;
@@ -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">;
@@ -653,6 +662,9 @@ 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: {
@@ -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");