@wowok/agent-mcp 2.3.18 → 2.4.3

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 (121) hide show
  1. package/dist/customer/industry-risks.js +31 -31
  2. package/dist/customer/order-monitor.js +57 -57
  3. package/dist/customer/order-strategy.js +89 -89
  4. package/dist/customer/post-purchase.js +97 -97
  5. package/dist/customer/reminder-system.js +26 -26
  6. package/dist/customer/risk-assessment.js +46 -46
  7. package/dist/customer/types.d.ts +4 -4
  8. package/dist/customer/types.js +4 -4
  9. package/dist/customer/user-preferences.js +50 -50
  10. package/dist/experience/intent-distill.js +6 -6
  11. package/dist/index.d.ts +2 -2
  12. package/dist/index.js +11 -1624
  13. package/dist/knowledge/acquisition-flywheel.js +64 -64
  14. package/dist/knowledge/arbitration-trust.js +10 -10
  15. package/dist/knowledge/demand-matching.js +8 -8
  16. package/dist/knowledge/dynamic-pricing.js +18 -18
  17. package/dist/knowledge/flywheel-loop.js +11 -11
  18. package/dist/knowledge/glossary.js +22 -22
  19. package/dist/knowledge/guard-ledger.d.ts +1 -1
  20. package/dist/knowledge/guard-ledger.js +145 -104
  21. package/dist/knowledge/guard-lint.d.ts +77 -0
  22. package/dist/knowledge/guard-lint.js +670 -0
  23. package/dist/knowledge/guard-migration.d.ts +48 -0
  24. package/dist/knowledge/guard-migration.js +228 -0
  25. package/dist/knowledge/guard-puzzle.d.ts +109 -14
  26. package/dist/knowledge/guard-puzzle.js +627 -101
  27. package/dist/knowledge/guard-risk.d.ts +10 -1
  28. package/dist/knowledge/guard-risk.js +1634 -292
  29. package/dist/knowledge/guard-templates.d.ts +38 -0
  30. package/dist/knowledge/guard-templates.js +605 -0
  31. package/dist/knowledge/guard-translation.d.ts +14 -2
  32. package/dist/knowledge/guard-translation.js +825 -194
  33. package/dist/knowledge/index.d.ts +8 -4
  34. package/dist/knowledge/index.js +9 -5
  35. package/dist/knowledge/industry-evolution.js +29 -29
  36. package/dist/knowledge/industry-generalizer.js +52 -52
  37. package/dist/knowledge/industry-registry.js +20 -33
  38. package/dist/knowledge/intent-metrics.js +67 -67
  39. package/dist/knowledge/process-model.js +80 -80
  40. package/dist/knowledge/reputation-rules.js +9 -9
  41. package/dist/knowledge/reward-templates.js +51 -51
  42. package/dist/knowledge/safety-rules.js +3 -3
  43. package/dist/knowledge/tool-constraints.js +20 -4
  44. package/dist/knowledge/trust-metrics.js +26 -26
  45. package/dist/project/graph.d.ts +1 -0
  46. package/dist/project/graph.js +27 -1
  47. package/dist/project/index.d.ts +1 -0
  48. package/dist/project/index.js +39 -2
  49. package/dist/project/namespace.d.ts +11 -1
  50. package/dist/project/namespace.js +27 -2
  51. package/dist/project/query.d.ts +2 -0
  52. package/dist/project/query.js +56 -15
  53. package/dist/rules.d.ts +12 -0
  54. package/dist/rules.js +9 -0
  55. package/dist/schema/call/allocation.d.ts +10 -10
  56. package/dist/schema/call/base.js +19 -19
  57. package/dist/schema/call/bridge.d.ts +32 -32
  58. package/dist/schema/call/demand.d.ts +84 -84
  59. package/dist/schema/call/guard.d.ts +153 -0
  60. package/dist/schema/call/guard.js +50 -0
  61. package/dist/schema/call/machine.d.ts +38 -38
  62. package/dist/schema/call/permission.d.ts +78 -78
  63. package/dist/schema/call/repository.d.ts +22 -22
  64. package/dist/schema/call/semantic.js +229 -25
  65. package/dist/schema/call/service.d.ts +7 -7
  66. package/dist/schema/local/wip.d.ts +39 -19
  67. package/dist/schema/local/wip.js +5 -5
  68. package/dist/schema/messenger/index.d.ts +26 -26
  69. package/dist/schema/messenger/index.js +2 -2
  70. package/dist/schema/operations.d.ts +270 -192
  71. package/dist/schema/query/index.d.ts +184 -184
  72. package/dist/schema/query/index.js +15 -9
  73. package/dist/schema/trust/index.d.ts +4 -4
  74. package/dist/schema/utils/guard-parser.js +4 -4
  75. package/dist/schema/utils/guard-query-utils.d.ts +7 -0
  76. package/dist/schema/utils/guard-query-utils.js +14 -1
  77. package/dist/schema/utils/node-parser.js +14 -14
  78. package/dist/schemas/bridge_operation.output.json +15 -15
  79. package/dist/schemas/index.json +1 -1
  80. package/dist/schemas/messenger_operation.output.json +18 -16
  81. package/dist/schemas/onchain_events.output.json +15 -15
  82. package/dist/schemas/onchain_operations.output.json +16 -16
  83. package/dist/schemas/onchain_operations.schema.json +11 -20
  84. package/dist/schemas/onchain_operations_allocation.schema.json +7 -10
  85. package/dist/schemas/onchain_operations_machine.schema.json +2 -5
  86. package/dist/schemas/onchain_operations_service.schema.json +2 -5
  87. package/dist/schemas/onchain_table_data.output.json +20 -26
  88. package/dist/schemas/wip_file.output.json +24 -1
  89. package/dist/tools/handlers/bridge.d.ts +1 -0
  90. package/dist/tools/handlers/bridge.js +1 -0
  91. package/dist/tools/handlers/config.d.ts +2 -0
  92. package/dist/tools/handlers/config.js +71 -0
  93. package/dist/tools/handlers/file-export.d.ts +3 -0
  94. package/dist/tools/handlers/file-export.js +90 -0
  95. package/dist/tools/handlers/local.d.ts +30 -0
  96. package/dist/tools/handlers/local.js +27 -0
  97. package/dist/tools/handlers/messenger.d.ts +16 -0
  98. package/dist/tools/handlers/messenger.js +187 -0
  99. package/dist/tools/handlers/onchain.d.ts +2 -0
  100. package/dist/tools/handlers/onchain.js +246 -0
  101. package/dist/tools/handlers/project.d.ts +2 -0
  102. package/dist/tools/handlers/project.js +53 -0
  103. package/dist/tools/handlers/query.d.ts +5 -0
  104. package/dist/tools/handlers/query.js +256 -0
  105. package/dist/tools/handlers/schema-query.d.ts +2 -0
  106. package/dist/tools/handlers/schema-query.js +92 -0
  107. package/dist/tools/handlers/trust.d.ts +2 -0
  108. package/dist/tools/handlers/trust.js +194 -0
  109. package/dist/tools/handlers/wip.d.ts +2 -0
  110. package/dist/tools/handlers/wip.js +44 -0
  111. package/dist/tools/index.d.ts +13 -0
  112. package/dist/tools/index.js +479 -0
  113. package/dist/tools/rules-hook.d.ts +2 -0
  114. package/dist/tools/rules-hook.js +22 -0
  115. package/dist/tools/shared.d.ts +29 -0
  116. package/dist/tools/shared.js +130 -0
  117. package/dist/tools/types.d.ts +35 -0
  118. package/dist/tools/types.js +1 -0
  119. package/dist/tools/wrap.d.ts +6 -0
  120. package/dist/tools/wrap.js +55 -0
  121. package/package.json +19 -5
@@ -939,6 +939,7 @@ export declare const BridgeLatestStateSchema: z.ZodObject<{
939
939
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
940
940
  error?: string | undefined;
941
941
  updatedAt?: number | undefined;
942
+ hint?: string | undefined;
942
943
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
943
944
  stepDescription?: string | undefined;
944
945
  sourceTxHash?: string | undefined;
@@ -948,12 +949,12 @@ export declare const BridgeLatestStateSchema: z.ZodObject<{
948
949
  claimReceipt?: any;
949
950
  ethReceipt?: any;
950
951
  wowReceipt?: any;
951
- hint?: string | undefined;
952
952
  }, {
953
953
  status: "confirmed" | "failed" | "completed" | "pending" | "not_started" | "signatures_ready" | "claiming";
954
954
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
955
955
  error?: string | undefined;
956
956
  updatedAt?: number | undefined;
957
+ hint?: string | undefined;
957
958
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
958
959
  stepDescription?: string | undefined;
959
960
  sourceTxHash?: string | undefined;
@@ -963,7 +964,6 @@ export declare const BridgeLatestStateSchema: z.ZodObject<{
963
964
  claimReceipt?: any;
964
965
  ethReceipt?: any;
965
966
  wowReceipt?: any;
966
- hint?: string | undefined;
967
967
  }>;
968
968
  export declare const BridgeTransferRecordSchema: z.ZodObject<{
969
969
  transferId: z.ZodString;
@@ -1005,6 +1005,7 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
1005
1005
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1006
1006
  error?: string | undefined;
1007
1007
  updatedAt?: number | undefined;
1008
+ hint?: string | undefined;
1008
1009
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1009
1010
  stepDescription?: string | undefined;
1010
1011
  sourceTxHash?: string | undefined;
@@ -1014,12 +1015,12 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
1014
1015
  claimReceipt?: any;
1015
1016
  ethReceipt?: any;
1016
1017
  wowReceipt?: any;
1017
- hint?: string | undefined;
1018
1018
  }, {
1019
1019
  status: "confirmed" | "failed" | "completed" | "pending" | "not_started" | "signatures_ready" | "claiming";
1020
1020
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1021
1021
  error?: string | undefined;
1022
1022
  updatedAt?: number | undefined;
1023
+ hint?: string | undefined;
1023
1024
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1024
1025
  stepDescription?: string | undefined;
1025
1026
  sourceTxHash?: string | undefined;
@@ -1029,7 +1030,6 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
1029
1030
  claimReceipt?: any;
1030
1031
  ethReceipt?: any;
1031
1032
  wowReceipt?: any;
1032
- hint?: string | undefined;
1033
1033
  }>>;
1034
1034
  }, "strict", z.ZodTypeAny, {
1035
1035
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1056,6 +1056,7 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
1056
1056
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1057
1057
  error?: string | undefined;
1058
1058
  updatedAt?: number | undefined;
1059
+ hint?: string | undefined;
1059
1060
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1060
1061
  stepDescription?: string | undefined;
1061
1062
  sourceTxHash?: string | undefined;
@@ -1065,7 +1066,6 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
1065
1066
  claimReceipt?: any;
1066
1067
  ethReceipt?: any;
1067
1068
  wowReceipt?: any;
1068
- hint?: string | undefined;
1069
1069
  } | undefined;
1070
1070
  }, {
1071
1071
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1092,6 +1092,7 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
1092
1092
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1093
1093
  error?: string | undefined;
1094
1094
  updatedAt?: number | undefined;
1095
+ hint?: string | undefined;
1095
1096
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1096
1097
  stepDescription?: string | undefined;
1097
1098
  sourceTxHash?: string | undefined;
@@ -1101,7 +1102,6 @@ export declare const BridgeTransferRecordSchema: z.ZodObject<{
1101
1102
  claimReceipt?: any;
1102
1103
  ethReceipt?: any;
1103
1104
  wowReceipt?: any;
1104
- hint?: string | undefined;
1105
1105
  } | undefined;
1106
1106
  }>;
1107
1107
  export declare const BridgeWowToEvmResultSchema: z.ZodObject<{
@@ -1342,6 +1342,7 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1342
1342
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1343
1343
  error?: string | undefined;
1344
1344
  updatedAt?: number | undefined;
1345
+ hint?: string | undefined;
1345
1346
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1346
1347
  stepDescription?: string | undefined;
1347
1348
  sourceTxHash?: string | undefined;
@@ -1351,12 +1352,12 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1351
1352
  claimReceipt?: any;
1352
1353
  ethReceipt?: any;
1353
1354
  wowReceipt?: any;
1354
- hint?: string | undefined;
1355
1355
  }, {
1356
1356
  status: "confirmed" | "failed" | "completed" | "pending" | "not_started" | "signatures_ready" | "claiming";
1357
1357
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1358
1358
  error?: string | undefined;
1359
1359
  updatedAt?: number | undefined;
1360
+ hint?: string | undefined;
1360
1361
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1361
1362
  stepDescription?: string | undefined;
1362
1363
  sourceTxHash?: string | undefined;
@@ -1366,7 +1367,6 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1366
1367
  claimReceipt?: any;
1367
1368
  ethReceipt?: any;
1368
1369
  wowReceipt?: any;
1369
- hint?: string | undefined;
1370
1370
  }>>;
1371
1371
  }, "strict", z.ZodTypeAny, {
1372
1372
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1393,6 +1393,7 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1393
1393
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1394
1394
  error?: string | undefined;
1395
1395
  updatedAt?: number | undefined;
1396
+ hint?: string | undefined;
1396
1397
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1397
1398
  stepDescription?: string | undefined;
1398
1399
  sourceTxHash?: string | undefined;
@@ -1402,7 +1403,6 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1402
1403
  claimReceipt?: any;
1403
1404
  ethReceipt?: any;
1404
1405
  wowReceipt?: any;
1405
- hint?: string | undefined;
1406
1406
  } | undefined;
1407
1407
  }, {
1408
1408
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1429,6 +1429,7 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1429
1429
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1430
1430
  error?: string | undefined;
1431
1431
  updatedAt?: number | undefined;
1432
+ hint?: string | undefined;
1432
1433
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1433
1434
  stepDescription?: string | undefined;
1434
1435
  sourceTxHash?: string | undefined;
@@ -1438,7 +1439,6 @@ export declare const BridgeQueryTransferListResultSchema: z.ZodArray<z.ZodObject
1438
1439
  claimReceipt?: any;
1439
1440
  ethReceipt?: any;
1440
1441
  wowReceipt?: any;
1441
- hint?: string | undefined;
1442
1442
  } | undefined;
1443
1443
  }>, "many">;
1444
1444
  export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodObject<{
@@ -1481,6 +1481,7 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1481
1481
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1482
1482
  error?: string | undefined;
1483
1483
  updatedAt?: number | undefined;
1484
+ hint?: string | undefined;
1484
1485
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1485
1486
  stepDescription?: string | undefined;
1486
1487
  sourceTxHash?: string | undefined;
@@ -1490,12 +1491,12 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1490
1491
  claimReceipt?: any;
1491
1492
  ethReceipt?: any;
1492
1493
  wowReceipt?: any;
1493
- hint?: string | undefined;
1494
1494
  }, {
1495
1495
  status: "confirmed" | "failed" | "completed" | "pending" | "not_started" | "signatures_ready" | "claiming";
1496
1496
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1497
1497
  error?: string | undefined;
1498
1498
  updatedAt?: number | undefined;
1499
+ hint?: string | undefined;
1499
1500
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1500
1501
  stepDescription?: string | undefined;
1501
1502
  sourceTxHash?: string | undefined;
@@ -1505,7 +1506,6 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1505
1506
  claimReceipt?: any;
1506
1507
  ethReceipt?: any;
1507
1508
  wowReceipt?: any;
1508
- hint?: string | undefined;
1509
1509
  }>>;
1510
1510
  }, "strict", z.ZodTypeAny, {
1511
1511
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1532,6 +1532,7 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1532
1532
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1533
1533
  error?: string | undefined;
1534
1534
  updatedAt?: number | undefined;
1535
+ hint?: string | undefined;
1535
1536
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1536
1537
  stepDescription?: string | undefined;
1537
1538
  sourceTxHash?: string | undefined;
@@ -1541,7 +1542,6 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1541
1542
  claimReceipt?: any;
1542
1543
  ethReceipt?: any;
1543
1544
  wowReceipt?: any;
1544
- hint?: string | undefined;
1545
1545
  } | undefined;
1546
1546
  }, {
1547
1547
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1568,6 +1568,7 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1568
1568
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1569
1569
  error?: string | undefined;
1570
1570
  updatedAt?: number | undefined;
1571
+ hint?: string | undefined;
1571
1572
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1572
1573
  stepDescription?: string | undefined;
1573
1574
  sourceTxHash?: string | undefined;
@@ -1577,7 +1578,6 @@ export declare const BridgeQueryTransferStatusResultSchema: z.ZodNullable<z.ZodO
1577
1578
  claimReceipt?: any;
1578
1579
  ethReceipt?: any;
1579
1580
  wowReceipt?: any;
1580
- hint?: string | undefined;
1581
1581
  } | undefined;
1582
1582
  }>>;
1583
1583
  export declare const BridgeManageEvmRpcResultSchema: z.ZodObject<{
@@ -1751,6 +1751,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1751
1751
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1752
1752
  error?: string | undefined;
1753
1753
  updatedAt?: number | undefined;
1754
+ hint?: string | undefined;
1754
1755
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1755
1756
  stepDescription?: string | undefined;
1756
1757
  sourceTxHash?: string | undefined;
@@ -1760,12 +1761,12 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1760
1761
  claimReceipt?: any;
1761
1762
  ethReceipt?: any;
1762
1763
  wowReceipt?: any;
1763
- hint?: string | undefined;
1764
1764
  }, {
1765
1765
  status: "confirmed" | "failed" | "completed" | "pending" | "not_started" | "signatures_ready" | "claiming";
1766
1766
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1767
1767
  error?: string | undefined;
1768
1768
  updatedAt?: number | undefined;
1769
+ hint?: string | undefined;
1769
1770
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1770
1771
  stepDescription?: string | undefined;
1771
1772
  sourceTxHash?: string | undefined;
@@ -1775,7 +1776,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1775
1776
  claimReceipt?: any;
1776
1777
  ethReceipt?: any;
1777
1778
  wowReceipt?: any;
1778
- hint?: string | undefined;
1779
1779
  }>>;
1780
1780
  }, "strict", z.ZodTypeAny, {
1781
1781
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1802,6 +1802,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1802
1802
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1803
1803
  error?: string | undefined;
1804
1804
  updatedAt?: number | undefined;
1805
+ hint?: string | undefined;
1805
1806
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1806
1807
  stepDescription?: string | undefined;
1807
1808
  sourceTxHash?: string | undefined;
@@ -1811,7 +1812,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1811
1812
  claimReceipt?: any;
1812
1813
  ethReceipt?: any;
1813
1814
  wowReceipt?: any;
1814
- hint?: string | undefined;
1815
1815
  } | undefined;
1816
1816
  }, {
1817
1817
  status: "success" | "in_progress" | "failed" | "pending";
@@ -1838,6 +1838,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1838
1838
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1839
1839
  error?: string | undefined;
1840
1840
  updatedAt?: number | undefined;
1841
+ hint?: string | undefined;
1841
1842
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1842
1843
  stepDescription?: string | undefined;
1843
1844
  sourceTxHash?: string | undefined;
@@ -1847,7 +1848,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1847
1848
  claimReceipt?: any;
1848
1849
  ethReceipt?: any;
1849
1850
  wowReceipt?: any;
1850
- hint?: string | undefined;
1851
1851
  } | undefined;
1852
1852
  }>;
1853
1853
  message: z.ZodOptional<z.ZodString>;
@@ -1877,6 +1877,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1877
1877
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1878
1878
  error?: string | undefined;
1879
1879
  updatedAt?: number | undefined;
1880
+ hint?: string | undefined;
1880
1881
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1881
1882
  stepDescription?: string | undefined;
1882
1883
  sourceTxHash?: string | undefined;
@@ -1886,7 +1887,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1886
1887
  claimReceipt?: any;
1887
1888
  ethReceipt?: any;
1888
1889
  wowReceipt?: any;
1889
- hint?: string | undefined;
1890
1890
  } | undefined;
1891
1891
  };
1892
1892
  operation_type: "resume_transfer";
@@ -1917,6 +1917,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1917
1917
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
1918
1918
  error?: string | undefined;
1919
1919
  updatedAt?: number | undefined;
1920
+ hint?: string | undefined;
1920
1921
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
1921
1922
  stepDescription?: string | undefined;
1922
1923
  sourceTxHash?: string | undefined;
@@ -1926,7 +1927,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
1926
1927
  claimReceipt?: any;
1927
1928
  ethReceipt?: any;
1928
1929
  wowReceipt?: any;
1929
- hint?: string | undefined;
1930
1930
  } | undefined;
1931
1931
  };
1932
1932
  operation_type: "resume_transfer";
@@ -2234,6 +2234,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2234
2234
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2235
2235
  error?: string | undefined;
2236
2236
  updatedAt?: number | undefined;
2237
+ hint?: string | undefined;
2237
2238
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2238
2239
  stepDescription?: string | undefined;
2239
2240
  sourceTxHash?: string | undefined;
@@ -2243,12 +2244,12 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2243
2244
  claimReceipt?: any;
2244
2245
  ethReceipt?: any;
2245
2246
  wowReceipt?: any;
2246
- hint?: string | undefined;
2247
2247
  }, {
2248
2248
  status: "confirmed" | "failed" | "completed" | "pending" | "not_started" | "signatures_ready" | "claiming";
2249
2249
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2250
2250
  error?: string | undefined;
2251
2251
  updatedAt?: number | undefined;
2252
+ hint?: string | undefined;
2252
2253
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2253
2254
  stepDescription?: string | undefined;
2254
2255
  sourceTxHash?: string | undefined;
@@ -2258,7 +2259,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2258
2259
  claimReceipt?: any;
2259
2260
  ethReceipt?: any;
2260
2261
  wowReceipt?: any;
2261
- hint?: string | undefined;
2262
2262
  }>>;
2263
2263
  }, "strict", z.ZodTypeAny, {
2264
2264
  status: "success" | "in_progress" | "failed" | "pending";
@@ -2285,6 +2285,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2285
2285
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2286
2286
  error?: string | undefined;
2287
2287
  updatedAt?: number | undefined;
2288
+ hint?: string | undefined;
2288
2289
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2289
2290
  stepDescription?: string | undefined;
2290
2291
  sourceTxHash?: string | undefined;
@@ -2294,7 +2295,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2294
2295
  claimReceipt?: any;
2295
2296
  ethReceipt?: any;
2296
2297
  wowReceipt?: any;
2297
- hint?: string | undefined;
2298
2298
  } | undefined;
2299
2299
  }, {
2300
2300
  status: "success" | "in_progress" | "failed" | "pending";
@@ -2321,6 +2321,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2321
2321
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2322
2322
  error?: string | undefined;
2323
2323
  updatedAt?: number | undefined;
2324
+ hint?: string | undefined;
2324
2325
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2325
2326
  stepDescription?: string | undefined;
2326
2327
  sourceTxHash?: string | undefined;
@@ -2330,7 +2331,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2330
2331
  claimReceipt?: any;
2331
2332
  ethReceipt?: any;
2332
2333
  wowReceipt?: any;
2333
- hint?: string | undefined;
2334
2334
  } | undefined;
2335
2335
  }>, "many">;
2336
2336
  message: z.ZodOptional<z.ZodString>;
@@ -2360,6 +2360,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2360
2360
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2361
2361
  error?: string | undefined;
2362
2362
  updatedAt?: number | undefined;
2363
+ hint?: string | undefined;
2363
2364
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2364
2365
  stepDescription?: string | undefined;
2365
2366
  sourceTxHash?: string | undefined;
@@ -2369,7 +2370,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2369
2370
  claimReceipt?: any;
2370
2371
  ethReceipt?: any;
2371
2372
  wowReceipt?: any;
2372
- hint?: string | undefined;
2373
2373
  } | undefined;
2374
2374
  }[];
2375
2375
  operation_type: "query_transfer_list";
@@ -2400,6 +2400,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2400
2400
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2401
2401
  error?: string | undefined;
2402
2402
  updatedAt?: number | undefined;
2403
+ hint?: string | undefined;
2403
2404
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2404
2405
  stepDescription?: string | undefined;
2405
2406
  sourceTxHash?: string | undefined;
@@ -2409,7 +2410,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2409
2410
  claimReceipt?: any;
2410
2411
  ethReceipt?: any;
2411
2412
  wowReceipt?: any;
2412
- hint?: string | undefined;
2413
2413
  } | undefined;
2414
2414
  }[];
2415
2415
  operation_type: "query_transfer_list";
@@ -2456,6 +2456,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2456
2456
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2457
2457
  error?: string | undefined;
2458
2458
  updatedAt?: number | undefined;
2459
+ hint?: string | undefined;
2459
2460
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2460
2461
  stepDescription?: string | undefined;
2461
2462
  sourceTxHash?: string | undefined;
@@ -2465,12 +2466,12 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2465
2466
  claimReceipt?: any;
2466
2467
  ethReceipt?: any;
2467
2468
  wowReceipt?: any;
2468
- hint?: string | undefined;
2469
2469
  }, {
2470
2470
  status: "confirmed" | "failed" | "completed" | "pending" | "not_started" | "signatures_ready" | "claiming";
2471
2471
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2472
2472
  error?: string | undefined;
2473
2473
  updatedAt?: number | undefined;
2474
+ hint?: string | undefined;
2474
2475
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2475
2476
  stepDescription?: string | undefined;
2476
2477
  sourceTxHash?: string | undefined;
@@ -2480,7 +2481,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2480
2481
  claimReceipt?: any;
2481
2482
  ethReceipt?: any;
2482
2483
  wowReceipt?: any;
2483
- hint?: string | undefined;
2484
2484
  }>>;
2485
2485
  }, "strict", z.ZodTypeAny, {
2486
2486
  status: "success" | "in_progress" | "failed" | "pending";
@@ -2507,6 +2507,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2507
2507
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2508
2508
  error?: string | undefined;
2509
2509
  updatedAt?: number | undefined;
2510
+ hint?: string | undefined;
2510
2511
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2511
2512
  stepDescription?: string | undefined;
2512
2513
  sourceTxHash?: string | undefined;
@@ -2516,7 +2517,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2516
2517
  claimReceipt?: any;
2517
2518
  ethReceipt?: any;
2518
2519
  wowReceipt?: any;
2519
- hint?: string | undefined;
2520
2520
  } | undefined;
2521
2521
  }, {
2522
2522
  status: "success" | "in_progress" | "failed" | "pending";
@@ -2543,6 +2543,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2543
2543
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2544
2544
  error?: string | undefined;
2545
2545
  updatedAt?: number | undefined;
2546
+ hint?: string | undefined;
2546
2547
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2547
2548
  stepDescription?: string | undefined;
2548
2549
  sourceTxHash?: string | undefined;
@@ -2552,7 +2553,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2552
2553
  claimReceipt?: any;
2553
2554
  ethReceipt?: any;
2554
2555
  wowReceipt?: any;
2555
- hint?: string | undefined;
2556
2556
  } | undefined;
2557
2557
  }>>;
2558
2558
  message: z.ZodOptional<z.ZodString>;
@@ -2582,6 +2582,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2582
2582
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2583
2583
  error?: string | undefined;
2584
2584
  updatedAt?: number | undefined;
2585
+ hint?: string | undefined;
2585
2586
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2586
2587
  stepDescription?: string | undefined;
2587
2588
  sourceTxHash?: string | undefined;
@@ -2591,7 +2592,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2591
2592
  claimReceipt?: any;
2592
2593
  ethReceipt?: any;
2593
2594
  wowReceipt?: any;
2594
- hint?: string | undefined;
2595
2595
  } | undefined;
2596
2596
  } | null;
2597
2597
  operation_type: "query_transfer_status";
@@ -2622,6 +2622,7 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2622
2622
  step: "failed" | "completed" | "not_started" | "signatures_ready" | "source_tx_pending" | "source_tx_confirmed" | "node_signing" | "claim_tx_pending";
2623
2623
  error?: string | undefined;
2624
2624
  updatedAt?: number | undefined;
2625
+ hint?: string | undefined;
2625
2626
  direction?: "wow_to_evm" | "evm_to_wow" | undefined;
2626
2627
  stepDescription?: string | undefined;
2627
2628
  sourceTxHash?: string | undefined;
@@ -2631,7 +2632,6 @@ export declare const BridgeOutputSchema: z.ZodDiscriminatedUnion<"operation_type
2631
2632
  claimReceipt?: any;
2632
2633
  ethReceipt?: any;
2633
2634
  wowReceipt?: any;
2634
- hint?: string | undefined;
2635
2635
  } | undefined;
2636
2636
  } | null;
2637
2637
  operation_type: "query_transfer_status";