@wowok/agent-mcp 2.3.16 → 2.4.1

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 (136) hide show
  1. package/dist/customer/index.d.ts +9 -0
  2. package/dist/customer/index.js +9 -0
  3. package/dist/customer/industry-risks.d.ts +4 -0
  4. package/dist/customer/industry-risks.js +45 -31
  5. package/dist/customer/order-monitor.js +57 -57
  6. package/dist/customer/order-strategy.js +89 -89
  7. package/dist/customer/post-purchase.js +97 -97
  8. package/dist/customer/reminder-system.js +26 -26
  9. package/dist/customer/risk-assessment.js +46 -46
  10. package/dist/customer/types.d.ts +4 -4
  11. package/dist/customer/types.js +4 -4
  12. package/dist/customer/user-preferences.d.ts +3 -0
  13. package/dist/customer/user-preferences.js +59 -50
  14. package/dist/experience/intent-distill.js +6 -6
  15. package/dist/experience/realtime-feedback.js +17 -0
  16. package/dist/index.js +360 -273
  17. package/dist/knowledge/acquisition-flywheel.d.ts +3 -0
  18. package/dist/knowledge/acquisition-flywheel.js +73 -64
  19. package/dist/knowledge/arbitration-trust.js +10 -10
  20. package/dist/knowledge/demand-matching.js +8 -8
  21. package/dist/knowledge/dynamic-pricing.js +18 -18
  22. package/dist/knowledge/flywheel-loop.js +11 -11
  23. package/dist/knowledge/glossary.js +22 -22
  24. package/dist/knowledge/guard-ledger.d.ts +19 -0
  25. package/dist/knowledge/guard-ledger.js +246 -0
  26. package/dist/knowledge/guard-lint.d.ts +76 -0
  27. package/dist/knowledge/guard-lint.js +590 -0
  28. package/dist/knowledge/guard-puzzle.d.ts +188 -0
  29. package/dist/knowledge/guard-puzzle.js +804 -0
  30. package/dist/knowledge/guard-risk.d.ts +67 -0
  31. package/dist/knowledge/guard-risk.js +1046 -0
  32. package/dist/knowledge/guard-templates.d.ts +37 -0
  33. package/dist/knowledge/guard-templates.js +329 -0
  34. package/dist/knowledge/guard-translation.d.ts +58 -0
  35. package/dist/knowledge/guard-translation.js +1118 -0
  36. package/dist/knowledge/index.d.ts +17 -0
  37. package/dist/knowledge/index.js +17 -0
  38. package/dist/knowledge/industry-evolution.js +29 -29
  39. package/dist/knowledge/industry-generalizer.js +52 -52
  40. package/dist/knowledge/industry-registry.d.ts +1 -2
  41. package/dist/knowledge/industry-registry.js +43 -36
  42. package/dist/knowledge/intent-metrics.js +67 -67
  43. package/dist/knowledge/process-model.js +80 -80
  44. package/dist/knowledge/reputation-rules.js +9 -9
  45. package/dist/knowledge/reward-templates.js +51 -51
  46. package/dist/knowledge/safety-rules.js +63 -2
  47. package/dist/knowledge/tool-constraints.js +17 -11
  48. package/dist/knowledge/trust-metrics.js +26 -26
  49. package/dist/safety/confirm-gate.d.ts +4 -2
  50. package/dist/safety/confirm-gate.js +48 -4
  51. package/dist/schema/call/allocation.d.ts +24 -14
  52. package/dist/schema/call/arbitration.d.ts +142 -132
  53. package/dist/schema/call/base.d.ts +901 -43
  54. package/dist/schema/call/base.js +77 -13
  55. package/dist/schema/call/bridge-handler.js +15 -2
  56. package/dist/schema/call/bridge.d.ts +795 -27
  57. package/dist/schema/call/bridge.js +37 -0
  58. package/dist/schema/call/contact.d.ts +10 -0
  59. package/dist/schema/call/demand.d.ts +94 -84
  60. package/dist/schema/call/guard.d.ts +229 -46
  61. package/dist/schema/call/guard.js +50 -0
  62. package/dist/schema/call/handler.js +46 -14
  63. package/dist/schema/call/machine.d.ts +158 -138
  64. package/dist/schema/call/order.d.ts +10 -0
  65. package/dist/schema/call/payment.d.ts +10 -0
  66. package/dist/schema/call/permission.d.ts +314 -304
  67. package/dist/schema/call/personal.d.ts +10 -0
  68. package/dist/schema/call/progress.d.ts +10 -0
  69. package/dist/schema/call/proof.d.ts +20 -0
  70. package/dist/schema/call/repository.d.ts +32 -22
  71. package/dist/schema/call/reward.d.ts +10 -0
  72. package/dist/schema/call/semantic.d.ts +9 -2
  73. package/dist/schema/call/semantic.js +617 -25
  74. package/dist/schema/call/service.d.ts +20 -10
  75. package/dist/schema/call/treasury.d.ts +10 -0
  76. package/dist/schema/config/index.d.ts +18 -0
  77. package/dist/schema/config/index.js +17 -0
  78. package/dist/schema/index.d.ts +6 -0
  79. package/dist/schema/index.js +5 -0
  80. package/dist/schema/local/index.d.ts +9 -9
  81. package/dist/schema/local/index.js +9 -0
  82. package/dist/schema/local/wip.d.ts +39 -19
  83. package/dist/schema/local/wip.js +5 -5
  84. package/dist/schema/messenger/index.d.ts +376 -55
  85. package/dist/schema/messenger/index.js +19 -19
  86. package/dist/schema/operations.d.ts +1881 -681
  87. package/dist/schema/operations.js +91 -96
  88. package/dist/schema/project/index.d.ts +21 -0
  89. package/dist/schema/project/index.js +32 -0
  90. package/dist/schema/query/index.d.ts +1074 -168
  91. package/dist/schema/query/index.js +8 -8
  92. package/dist/schema/schema-query/index.d.ts +33 -0
  93. package/dist/schema/schema-query/index.js +36 -0
  94. package/dist/schema/schema-version.d.ts +25 -0
  95. package/dist/schema/schema-version.js +76 -0
  96. package/dist/schema/trust/index.d.ts +407 -0
  97. package/dist/schema/trust/index.js +113 -0
  98. package/dist/schema/utils/guard-parser.js +4 -4
  99. package/dist/schema/utils/node-parser.js +14 -14
  100. package/dist/schemas/bridge_operation.output.json +233 -9
  101. package/dist/schemas/bridge_operation.schema.json +67 -8
  102. package/dist/schemas/config_operation.output.json +18 -0
  103. package/dist/schemas/config_operation.schema.json +34 -0
  104. package/dist/schemas/guard-node-schema.json +82 -0
  105. package/dist/schemas/guard2file.schema.json +8 -0
  106. package/dist/schemas/index.json +19 -1
  107. package/dist/schemas/machineNode2file.schema.json +8 -0
  108. package/dist/schemas/messenger_operation.output.json +236 -10
  109. package/dist/schemas/onchain_events.output.json +718 -0
  110. package/dist/schemas/onchain_operations.output.json +286 -11
  111. package/dist/schemas/onchain_operations.schema.json +19 -16
  112. package/dist/schemas/onchain_operations_allocation.schema.json +8 -0
  113. package/dist/schemas/onchain_operations_arbitration.schema.json +8 -0
  114. package/dist/schemas/onchain_operations_contact.schema.json +8 -0
  115. package/dist/schemas/onchain_operations_demand.schema.json +8 -0
  116. package/dist/schemas/onchain_operations_gen_passport.schema.json +16 -0
  117. package/dist/schemas/onchain_operations_guard.schema.json +11 -16
  118. package/dist/schemas/onchain_operations_machine.schema.json +8 -0
  119. package/dist/schemas/onchain_operations_order.schema.json +8 -0
  120. package/dist/schemas/onchain_operations_payment.schema.json +8 -0
  121. package/dist/schemas/onchain_operations_permission.schema.json +8 -0
  122. package/dist/schemas/onchain_operations_personal.schema.json +8 -0
  123. package/dist/schemas/onchain_operations_progress.schema.json +8 -0
  124. package/dist/schemas/onchain_operations_repository.schema.json +8 -0
  125. package/dist/schemas/onchain_operations_reward.schema.json +8 -0
  126. package/dist/schemas/onchain_operations_service.schema.json +8 -0
  127. package/dist/schemas/onchain_operations_treasury.schema.json +8 -0
  128. package/dist/schemas/onchain_table_data.output.json +718 -0
  129. package/dist/schemas/project_operation.output.json +18 -0
  130. package/dist/schemas/project_operation.schema.json +42 -0
  131. package/dist/schemas/query_toolkit.schema.json +360 -368
  132. package/dist/schemas/schema_query.schema.json +6 -3
  133. package/dist/schemas/trust_score.output.json +327 -0
  134. package/dist/schemas/trust_score.schema.json +46 -0
  135. package/dist/schemas/wip_file.output.json +24 -1
  136. package/package.json +2 -2
@@ -655,6 +655,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
655
655
  }>, "many">;
656
656
  }, "strip", z.ZodTypeAny, {
657
657
  description: string;
658
+ threshold: string | number;
658
659
  allocators: {
659
660
  guard: string;
660
661
  sharing: {
@@ -674,9 +675,9 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
674
675
  max?: string | number | null | undefined;
675
676
  fix?: string | number | undefined;
676
677
  }[];
677
- threshold: string | number;
678
678
  }, {
679
679
  description: string;
680
+ threshold: string | number;
680
681
  allocators: {
681
682
  guard: string;
682
683
  sharing: {
@@ -696,7 +697,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
696
697
  max?: string | number | null | undefined;
697
698
  fix?: string | number | undefined;
698
699
  }[];
699
- threshold: string | number;
700
700
  }>, z.ZodNull]>>;
701
701
  buy_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
702
702
  compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -815,6 +815,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
815
815
  machine?: string | null | undefined;
816
816
  order_allocators?: {
817
817
  description: string;
818
+ threshold: string | number;
818
819
  allocators: {
819
820
  guard: string;
820
821
  sharing: {
@@ -834,7 +835,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
834
835
  max?: string | number | null | undefined;
835
836
  fix?: string | number | undefined;
836
837
  }[];
837
- threshold: string | number;
838
838
  } | null | undefined;
839
839
  sales?: {
840
840
  op: "add";
@@ -1007,6 +1007,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1007
1007
  machine?: string | null | undefined;
1008
1008
  order_allocators?: {
1009
1009
  description: string;
1010
+ threshold: string | number;
1010
1011
  allocators: {
1011
1012
  guard: string;
1012
1013
  sharing: {
@@ -1026,7 +1027,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1026
1027
  max?: string | number | null | undefined;
1027
1028
  fix?: string | number | undefined;
1028
1029
  }[];
1029
- threshold: string | number;
1030
1030
  } | null | undefined;
1031
1031
  sales?: {
1032
1032
  op: "add";
@@ -1188,6 +1188,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1188
1188
  confirmed: z.ZodOptional<z.ZodBoolean>;
1189
1189
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1190
1190
  project: z.ZodOptional<z.ZodString>;
1191
+ client_schema_version: z.ZodOptional<z.ZodString>;
1192
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
1191
1193
  }, "strict", z.ZodTypeAny, {
1192
1194
  account: string;
1193
1195
  no_cache?: boolean | undefined;
@@ -1197,6 +1199,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1197
1199
  confirmed?: boolean | undefined;
1198
1200
  user_intent_phrases?: string[] | undefined;
1199
1201
  project?: string | undefined;
1202
+ client_schema_version?: string | undefined;
1203
+ schema_strict_mode?: boolean | undefined;
1200
1204
  }, {
1201
1205
  no_cache?: boolean | undefined;
1202
1206
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -1206,6 +1210,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1206
1210
  confirmed?: boolean | undefined;
1207
1211
  user_intent_phrases?: string[] | undefined;
1208
1212
  project?: string | undefined;
1213
+ client_schema_version?: string | undefined;
1214
+ schema_strict_mode?: boolean | undefined;
1209
1215
  }>>;
1210
1216
  submission: z.ZodOptional<z.ZodObject<{
1211
1217
  type: z.ZodLiteral<"submission">;
@@ -1387,7 +1393,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1387
1393
  }[];
1388
1394
  }[];
1389
1395
  }>>;
1390
- }, "strip", z.ZodTypeAny, {
1396
+ }, "strict", z.ZodTypeAny, {
1391
1397
  data: {
1392
1398
  object: string | {
1393
1399
  type_parameter: string;
@@ -1409,6 +1415,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1409
1415
  machine?: string | null | undefined;
1410
1416
  order_allocators?: {
1411
1417
  description: string;
1418
+ threshold: string | number;
1412
1419
  allocators: {
1413
1420
  guard: string;
1414
1421
  sharing: {
@@ -1428,7 +1435,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1428
1435
  max?: string | number | null | undefined;
1429
1436
  fix?: string | number | undefined;
1430
1437
  }[];
1431
- threshold: string | number;
1432
1438
  } | null | undefined;
1433
1439
  sales?: {
1434
1440
  op: "add";
@@ -1618,6 +1624,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1618
1624
  confirmed?: boolean | undefined;
1619
1625
  user_intent_phrases?: string[] | undefined;
1620
1626
  project?: string | undefined;
1627
+ client_schema_version?: string | undefined;
1628
+ schema_strict_mode?: boolean | undefined;
1621
1629
  } | undefined;
1622
1630
  }, {
1623
1631
  data: {
@@ -1641,6 +1649,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1641
1649
  machine?: string | null | undefined;
1642
1650
  order_allocators?: {
1643
1651
  description: string;
1652
+ threshold: string | number;
1644
1653
  allocators: {
1645
1654
  guard: string;
1646
1655
  sharing: {
@@ -1660,7 +1669,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1660
1669
  max?: string | number | null | undefined;
1661
1670
  fix?: string | number | undefined;
1662
1671
  }[];
1663
- threshold: string | number;
1664
1672
  } | null | undefined;
1665
1673
  sales?: {
1666
1674
  op: "add";
@@ -1850,6 +1858,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
1850
1858
  confirmed?: boolean | undefined;
1851
1859
  user_intent_phrases?: string[] | undefined;
1852
1860
  project?: string | undefined;
1861
+ client_schema_version?: string | undefined;
1862
+ schema_strict_mode?: boolean | undefined;
1853
1863
  } | undefined;
1854
1864
  }>, z.ZodObject<{
1855
1865
  operation_type: z.ZodLiteral<"machine">;
@@ -2631,29 +2641,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2631
2641
  description?: string | undefined;
2632
2642
  publish?: boolean | undefined;
2633
2643
  pause?: boolean | undefined;
2634
- repository?: {
2635
- op: "set" | "add";
2636
- objects: string[];
2637
- } | {
2638
- op: "remove";
2639
- objects: string[];
2640
- } | {
2641
- op: "clear";
2642
- } | undefined;
2643
- owner_receive?: {
2644
- received: {
2645
- id: string;
2646
- balance: string | number;
2647
- payment: string;
2648
- }[];
2649
- balance: string | number;
2650
- token_type: string;
2651
- } | "recently" | {
2652
- type: string;
2653
- id: string;
2654
- content_raw?: any;
2655
- }[] | undefined;
2656
- um?: string | null | undefined;
2657
2644
  node?: {
2658
2645
  op: "add";
2659
2646
  nodes: {
@@ -2740,6 +2727,29 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2740
2727
  } | {
2741
2728
  json_or_markdown_file: string;
2742
2729
  } | undefined;
2730
+ repository?: {
2731
+ op: "set" | "add";
2732
+ objects: string[];
2733
+ } | {
2734
+ op: "remove";
2735
+ objects: string[];
2736
+ } | {
2737
+ op: "clear";
2738
+ } | undefined;
2739
+ owner_receive?: {
2740
+ received: {
2741
+ id: string;
2742
+ balance: string | number;
2743
+ payment: string;
2744
+ }[];
2745
+ balance: string | number;
2746
+ token_type: string;
2747
+ } | "recently" | {
2748
+ type: string;
2749
+ id: string;
2750
+ content_raw?: any;
2751
+ }[] | undefined;
2752
+ um?: string | null | undefined;
2743
2753
  progress_new?: {
2744
2754
  namedNew?: {
2745
2755
  name?: string | undefined;
@@ -2786,29 +2796,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2786
2796
  description?: string | undefined;
2787
2797
  publish?: boolean | undefined;
2788
2798
  pause?: boolean | undefined;
2789
- repository?: {
2790
- op: "set" | "add";
2791
- objects: string[];
2792
- } | {
2793
- op: "remove";
2794
- objects: string[];
2795
- } | {
2796
- op: "clear";
2797
- } | undefined;
2798
- owner_receive?: {
2799
- received: {
2800
- id: string;
2801
- balance: string | number;
2802
- payment: string;
2803
- }[];
2804
- balance: string | number;
2805
- token_type: string;
2806
- } | "recently" | {
2807
- type: string;
2808
- id: string;
2809
- content_raw?: any;
2810
- }[] | undefined;
2811
- um?: string | null | undefined;
2812
2799
  node?: {
2813
2800
  op: "add";
2814
2801
  nodes: {
@@ -2895,6 +2882,29 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2895
2882
  } | {
2896
2883
  json_or_markdown_file: string;
2897
2884
  } | undefined;
2885
+ repository?: {
2886
+ op: "set" | "add";
2887
+ objects: string[];
2888
+ } | {
2889
+ op: "remove";
2890
+ objects: string[];
2891
+ } | {
2892
+ op: "clear";
2893
+ } | undefined;
2894
+ owner_receive?: {
2895
+ received: {
2896
+ id: string;
2897
+ balance: string | number;
2898
+ payment: string;
2899
+ }[];
2900
+ balance: string | number;
2901
+ token_type: string;
2902
+ } | "recently" | {
2903
+ type: string;
2904
+ id: string;
2905
+ content_raw?: any;
2906
+ }[] | undefined;
2907
+ um?: string | null | undefined;
2898
2908
  progress_new?: {
2899
2909
  namedNew?: {
2900
2910
  name?: string | undefined;
@@ -2934,6 +2944,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2934
2944
  confirmed: z.ZodOptional<z.ZodBoolean>;
2935
2945
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2936
2946
  project: z.ZodOptional<z.ZodString>;
2947
+ client_schema_version: z.ZodOptional<z.ZodString>;
2948
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
2937
2949
  }, "strict", z.ZodTypeAny, {
2938
2950
  account: string;
2939
2951
  no_cache?: boolean | undefined;
@@ -2943,6 +2955,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2943
2955
  confirmed?: boolean | undefined;
2944
2956
  user_intent_phrases?: string[] | undefined;
2945
2957
  project?: string | undefined;
2958
+ client_schema_version?: string | undefined;
2959
+ schema_strict_mode?: boolean | undefined;
2946
2960
  }, {
2947
2961
  no_cache?: boolean | undefined;
2948
2962
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -2952,6 +2966,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
2952
2966
  confirmed?: boolean | undefined;
2953
2967
  user_intent_phrases?: string[] | undefined;
2954
2968
  project?: string | undefined;
2969
+ client_schema_version?: string | undefined;
2970
+ schema_strict_mode?: boolean | undefined;
2955
2971
  }>>;
2956
2972
  submission: z.ZodOptional<z.ZodObject<{
2957
2973
  type: z.ZodLiteral<"submission">;
@@ -3133,7 +3149,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3133
3149
  }[];
3134
3150
  }[];
3135
3151
  }>>;
3136
- }, "strip", z.ZodTypeAny, {
3152
+ }, "strict", z.ZodTypeAny, {
3137
3153
  data: {
3138
3154
  object: string | {
3139
3155
  name?: string | undefined;
@@ -3151,29 +3167,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3151
3167
  description?: string | undefined;
3152
3168
  publish?: boolean | undefined;
3153
3169
  pause?: boolean | undefined;
3154
- repository?: {
3155
- op: "set" | "add";
3156
- objects: string[];
3157
- } | {
3158
- op: "remove";
3159
- objects: string[];
3160
- } | {
3161
- op: "clear";
3162
- } | undefined;
3163
- owner_receive?: {
3164
- received: {
3165
- id: string;
3166
- balance: string | number;
3167
- payment: string;
3168
- }[];
3169
- balance: string | number;
3170
- token_type: string;
3171
- } | "recently" | {
3172
- type: string;
3173
- id: string;
3174
- content_raw?: any;
3175
- }[] | undefined;
3176
- um?: string | null | undefined;
3177
3170
  node?: {
3178
3171
  op: "add";
3179
3172
  nodes: {
@@ -3260,6 +3253,29 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3260
3253
  } | {
3261
3254
  json_or_markdown_file: string;
3262
3255
  } | undefined;
3256
+ repository?: {
3257
+ op: "set" | "add";
3258
+ objects: string[];
3259
+ } | {
3260
+ op: "remove";
3261
+ objects: string[];
3262
+ } | {
3263
+ op: "clear";
3264
+ } | undefined;
3265
+ owner_receive?: {
3266
+ received: {
3267
+ id: string;
3268
+ balance: string | number;
3269
+ payment: string;
3270
+ }[];
3271
+ balance: string | number;
3272
+ token_type: string;
3273
+ } | "recently" | {
3274
+ type: string;
3275
+ id: string;
3276
+ content_raw?: any;
3277
+ }[] | undefined;
3278
+ um?: string | null | undefined;
3263
3279
  progress_new?: {
3264
3280
  namedNew?: {
3265
3281
  name?: string | undefined;
@@ -3327,6 +3343,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3327
3343
  confirmed?: boolean | undefined;
3328
3344
  user_intent_phrases?: string[] | undefined;
3329
3345
  project?: string | undefined;
3346
+ client_schema_version?: string | undefined;
3347
+ schema_strict_mode?: boolean | undefined;
3330
3348
  } | undefined;
3331
3349
  }, {
3332
3350
  data: {
@@ -3346,29 +3364,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3346
3364
  description?: string | undefined;
3347
3365
  publish?: boolean | undefined;
3348
3366
  pause?: boolean | undefined;
3349
- repository?: {
3350
- op: "set" | "add";
3351
- objects: string[];
3352
- } | {
3353
- op: "remove";
3354
- objects: string[];
3355
- } | {
3356
- op: "clear";
3357
- } | undefined;
3358
- owner_receive?: {
3359
- received: {
3360
- id: string;
3361
- balance: string | number;
3362
- payment: string;
3363
- }[];
3364
- balance: string | number;
3365
- token_type: string;
3366
- } | "recently" | {
3367
- type: string;
3368
- id: string;
3369
- content_raw?: any;
3370
- }[] | undefined;
3371
- um?: string | null | undefined;
3372
3367
  node?: {
3373
3368
  op: "add";
3374
3369
  nodes: {
@@ -3455,6 +3450,29 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3455
3450
  } | {
3456
3451
  json_or_markdown_file: string;
3457
3452
  } | undefined;
3453
+ repository?: {
3454
+ op: "set" | "add";
3455
+ objects: string[];
3456
+ } | {
3457
+ op: "remove";
3458
+ objects: string[];
3459
+ } | {
3460
+ op: "clear";
3461
+ } | undefined;
3462
+ owner_receive?: {
3463
+ received: {
3464
+ id: string;
3465
+ balance: string | number;
3466
+ payment: string;
3467
+ }[];
3468
+ balance: string | number;
3469
+ token_type: string;
3470
+ } | "recently" | {
3471
+ type: string;
3472
+ id: string;
3473
+ content_raw?: any;
3474
+ }[] | undefined;
3475
+ um?: string | null | undefined;
3458
3476
  progress_new?: {
3459
3477
  namedNew?: {
3460
3478
  name?: string | undefined;
@@ -3522,6 +3540,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3522
3540
  confirmed?: boolean | undefined;
3523
3541
  user_intent_phrases?: string[] | undefined;
3524
3542
  project?: string | undefined;
3543
+ client_schema_version?: string | undefined;
3544
+ schema_strict_mode?: boolean | undefined;
3525
3545
  } | undefined;
3526
3546
  }>, z.ZodObject<{
3527
3547
  operation_type: z.ZodLiteral<"progress">;
@@ -3707,6 +3727,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3707
3727
  confirmed: z.ZodOptional<z.ZodBoolean>;
3708
3728
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3709
3729
  project: z.ZodOptional<z.ZodString>;
3730
+ client_schema_version: z.ZodOptional<z.ZodString>;
3731
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
3710
3732
  }, "strict", z.ZodTypeAny, {
3711
3733
  account: string;
3712
3734
  no_cache?: boolean | undefined;
@@ -3716,6 +3738,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3716
3738
  confirmed?: boolean | undefined;
3717
3739
  user_intent_phrases?: string[] | undefined;
3718
3740
  project?: string | undefined;
3741
+ client_schema_version?: string | undefined;
3742
+ schema_strict_mode?: boolean | undefined;
3719
3743
  }, {
3720
3744
  no_cache?: boolean | undefined;
3721
3745
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -3725,6 +3749,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3725
3749
  confirmed?: boolean | undefined;
3726
3750
  user_intent_phrases?: string[] | undefined;
3727
3751
  project?: string | undefined;
3752
+ client_schema_version?: string | undefined;
3753
+ schema_strict_mode?: boolean | undefined;
3728
3754
  }>>;
3729
3755
  submission: z.ZodOptional<z.ZodObject<{
3730
3756
  type: z.ZodLiteral<"submission">;
@@ -3906,7 +3932,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3906
3932
  }[];
3907
3933
  }[];
3908
3934
  }>>;
3909
- }, "strip", z.ZodTypeAny, {
3935
+ }, "strict", z.ZodTypeAny, {
3910
3936
  data: {
3911
3937
  object: string;
3912
3938
  repository?: {
@@ -3977,6 +4003,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
3977
4003
  confirmed?: boolean | undefined;
3978
4004
  user_intent_phrases?: string[] | undefined;
3979
4005
  project?: string | undefined;
4006
+ client_schema_version?: string | undefined;
4007
+ schema_strict_mode?: boolean | undefined;
3980
4008
  } | undefined;
3981
4009
  }, {
3982
4010
  data: {
@@ -4049,6 +4077,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4049
4077
  confirmed?: boolean | undefined;
4050
4078
  user_intent_phrases?: string[] | undefined;
4051
4079
  project?: string | undefined;
4080
+ client_schema_version?: string | undefined;
4081
+ schema_strict_mode?: boolean | undefined;
4052
4082
  } | undefined;
4053
4083
  }>, z.ZodObject<{
4054
4084
  operation_type: z.ZodLiteral<"repository">;
@@ -4135,7 +4165,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4135
4165
  id_from_submission?: number | undefined;
4136
4166
  data_from_submission?: number | undefined;
4137
4167
  }[];
4138
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
4168
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
4139
4169
  quote_guard?: string | null | undefined;
4140
4170
  }, {
4141
4171
  value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("@wowok/wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
@@ -4146,7 +4176,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4146
4176
  id_from_submission?: number | undefined;
4147
4177
  data_from_submission?: number | undefined;
4148
4178
  }[];
4149
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
4179
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
4150
4180
  quote_guard?: string | null | undefined;
4151
4181
  }>, "many">;
4152
4182
  }, "strict", z.ZodTypeAny, {
@@ -4160,7 +4190,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4160
4190
  id_from_submission?: number | undefined;
4161
4191
  data_from_submission?: number | undefined;
4162
4192
  }[];
4163
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
4193
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
4164
4194
  quote_guard?: string | null | undefined;
4165
4195
  }[];
4166
4196
  }, {
@@ -4174,7 +4204,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4174
4204
  id_from_submission?: number | undefined;
4175
4205
  data_from_submission?: number | undefined;
4176
4206
  }[];
4177
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
4207
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
4178
4208
  quote_guard?: string | null | undefined;
4179
4209
  }[];
4180
4210
  }>, z.ZodObject<{
@@ -4519,7 +4549,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4519
4549
  id_from_submission?: number | undefined;
4520
4550
  data_from_submission?: number | undefined;
4521
4551
  }[];
4522
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
4552
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
4523
4553
  quote_guard?: string | null | undefined;
4524
4554
  }[];
4525
4555
  } | {
@@ -4607,7 +4637,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4607
4637
  id_from_submission?: number | undefined;
4608
4638
  data_from_submission?: number | undefined;
4609
4639
  }[];
4610
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
4640
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
4611
4641
  quote_guard?: string | null | undefined;
4612
4642
  }[];
4613
4643
  } | {
@@ -4656,6 +4686,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4656
4686
  confirmed: z.ZodOptional<z.ZodBoolean>;
4657
4687
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4658
4688
  project: z.ZodOptional<z.ZodString>;
4689
+ client_schema_version: z.ZodOptional<z.ZodString>;
4690
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
4659
4691
  }, "strict", z.ZodTypeAny, {
4660
4692
  account: string;
4661
4693
  no_cache?: boolean | undefined;
@@ -4665,6 +4697,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4665
4697
  confirmed?: boolean | undefined;
4666
4698
  user_intent_phrases?: string[] | undefined;
4667
4699
  project?: string | undefined;
4700
+ client_schema_version?: string | undefined;
4701
+ schema_strict_mode?: boolean | undefined;
4668
4702
  }, {
4669
4703
  no_cache?: boolean | undefined;
4670
4704
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -4674,6 +4708,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4674
4708
  confirmed?: boolean | undefined;
4675
4709
  user_intent_phrases?: string[] | undefined;
4676
4710
  project?: string | undefined;
4711
+ client_schema_version?: string | undefined;
4712
+ schema_strict_mode?: boolean | undefined;
4677
4713
  }>>;
4678
4714
  submission: z.ZodOptional<z.ZodObject<{
4679
4715
  type: z.ZodLiteral<"submission">;
@@ -4855,7 +4891,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4855
4891
  }[];
4856
4892
  }[];
4857
4893
  }>>;
4858
- }, "strip", z.ZodTypeAny, {
4894
+ }, "strict", z.ZodTypeAny, {
4859
4895
  data: {
4860
4896
  object: string | {
4861
4897
  name?: string | undefined;
@@ -4905,7 +4941,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4905
4941
  id_from_submission?: number | undefined;
4906
4942
  data_from_submission?: number | undefined;
4907
4943
  }[];
4908
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
4944
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
4909
4945
  quote_guard?: string | null | undefined;
4910
4946
  }[];
4911
4947
  } | {
@@ -4982,6 +5018,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
4982
5018
  confirmed?: boolean | undefined;
4983
5019
  user_intent_phrases?: string[] | undefined;
4984
5020
  project?: string | undefined;
5021
+ client_schema_version?: string | undefined;
5022
+ schema_strict_mode?: boolean | undefined;
4985
5023
  } | undefined;
4986
5024
  }, {
4987
5025
  data: {
@@ -5033,7 +5071,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5033
5071
  id_from_submission?: number | undefined;
5034
5072
  data_from_submission?: number | undefined;
5035
5073
  }[];
5036
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
5074
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
5037
5075
  quote_guard?: string | null | undefined;
5038
5076
  }[];
5039
5077
  } | {
@@ -5110,6 +5148,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5110
5148
  confirmed?: boolean | undefined;
5111
5149
  user_intent_phrases?: string[] | undefined;
5112
5150
  project?: string | undefined;
5151
+ client_schema_version?: string | undefined;
5152
+ schema_strict_mode?: boolean | undefined;
5113
5153
  } | undefined;
5114
5154
  }>, z.ZodObject<{
5115
5155
  operation_type: z.ZodLiteral<"arbitration">;
@@ -5528,6 +5568,28 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5528
5568
  onChain?: boolean | undefined;
5529
5569
  } | undefined;
5530
5570
  } | undefined;
5571
+ usage_guard?: string | null | undefined;
5572
+ voting_guard?: {
5573
+ op: "set" | "add";
5574
+ guards: {
5575
+ guard: string;
5576
+ vote_weight: {
5577
+ GuardIdentifier: number;
5578
+ } | {
5579
+ FixedValue: number;
5580
+ };
5581
+ }[];
5582
+ } | {
5583
+ op: "remove";
5584
+ guards: string[];
5585
+ } | {
5586
+ op: "clear";
5587
+ } | undefined;
5588
+ vote?: {
5589
+ arb: string;
5590
+ votes: number[];
5591
+ voting_guard?: string | undefined;
5592
+ } | undefined;
5531
5593
  location?: string | undefined;
5532
5594
  owner_receive?: {
5533
5595
  received: {
@@ -5548,23 +5610,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5548
5610
  arb: string;
5549
5611
  feedback: string;
5550
5612
  } | undefined;
5551
- voting_guard?: {
5552
- op: "set" | "add";
5553
- guards: {
5554
- guard: string;
5555
- vote_weight: {
5556
- GuardIdentifier: number;
5557
- } | {
5558
- FixedValue: number;
5559
- };
5560
- }[];
5561
- } | {
5562
- op: "remove";
5563
- guards: string[];
5564
- } | {
5565
- op: "clear";
5566
- } | undefined;
5567
- usage_guard?: string | null | undefined;
5568
5613
  confirm?: {
5569
5614
  arb: string;
5570
5615
  voting_deadline: number | null;
@@ -5573,11 +5618,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5573
5618
  arb: string;
5574
5619
  voting_deadline: number | null;
5575
5620
  } | undefined;
5576
- vote?: {
5577
- arb: string;
5578
- votes: number[];
5579
- voting_guard?: string | undefined;
5580
- } | undefined;
5581
5621
  arb_withdraw?: {
5582
5622
  arb: string;
5583
5623
  } | undefined;
@@ -5638,26 +5678,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5638
5678
  onChain?: boolean | undefined;
5639
5679
  } | undefined;
5640
5680
  } | undefined;
5641
- location?: string | undefined;
5642
- owner_receive?: {
5643
- received: {
5644
- id: string;
5645
- balance: string | number;
5646
- payment: string;
5647
- }[];
5648
- balance: string | number;
5649
- token_type: string;
5650
- } | "recently" | {
5651
- type: string;
5652
- id: string;
5653
- content_raw?: any;
5654
- }[] | undefined;
5655
- um?: string | null | undefined;
5656
- fee?: string | number | undefined;
5657
- feedback?: {
5658
- arb: string;
5659
- feedback: string;
5660
- } | undefined;
5681
+ usage_guard?: string | null | undefined;
5661
5682
  voting_guard?: {
5662
5683
  op: "set" | "add";
5663
5684
  guards: {
@@ -5674,7 +5695,31 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5674
5695
  } | {
5675
5696
  op: "clear";
5676
5697
  } | undefined;
5677
- usage_guard?: string | null | undefined;
5698
+ vote?: {
5699
+ arb: string;
5700
+ votes: number[];
5701
+ voting_guard?: string | undefined;
5702
+ } | undefined;
5703
+ location?: string | undefined;
5704
+ owner_receive?: {
5705
+ received: {
5706
+ id: string;
5707
+ balance: string | number;
5708
+ payment: string;
5709
+ }[];
5710
+ balance: string | number;
5711
+ token_type: string;
5712
+ } | "recently" | {
5713
+ type: string;
5714
+ id: string;
5715
+ content_raw?: any;
5716
+ }[] | undefined;
5717
+ um?: string | null | undefined;
5718
+ fee?: string | number | undefined;
5719
+ feedback?: {
5720
+ arb: string;
5721
+ feedback: string;
5722
+ } | undefined;
5678
5723
  confirm?: {
5679
5724
  arb: string;
5680
5725
  voting_deadline: number | null;
@@ -5683,11 +5728,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5683
5728
  arb: string;
5684
5729
  voting_deadline: number | null;
5685
5730
  } | undefined;
5686
- vote?: {
5687
- arb: string;
5688
- votes: number[];
5689
- voting_guard?: string | undefined;
5690
- } | undefined;
5691
5731
  arb_withdraw?: {
5692
5732
  arb: string;
5693
5733
  } | undefined;
@@ -5716,6 +5756,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5716
5756
  confirmed: z.ZodOptional<z.ZodBoolean>;
5717
5757
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5718
5758
  project: z.ZodOptional<z.ZodString>;
5759
+ client_schema_version: z.ZodOptional<z.ZodString>;
5760
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
5719
5761
  }, "strict", z.ZodTypeAny, {
5720
5762
  account: string;
5721
5763
  no_cache?: boolean | undefined;
@@ -5725,6 +5767,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5725
5767
  confirmed?: boolean | undefined;
5726
5768
  user_intent_phrases?: string[] | undefined;
5727
5769
  project?: string | undefined;
5770
+ client_schema_version?: string | undefined;
5771
+ schema_strict_mode?: boolean | undefined;
5728
5772
  }, {
5729
5773
  no_cache?: boolean | undefined;
5730
5774
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -5734,6 +5778,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5734
5778
  confirmed?: boolean | undefined;
5735
5779
  user_intent_phrases?: string[] | undefined;
5736
5780
  project?: string | undefined;
5781
+ client_schema_version?: string | undefined;
5782
+ schema_strict_mode?: boolean | undefined;
5737
5783
  }>>;
5738
5784
  submission: z.ZodOptional<z.ZodObject<{
5739
5785
  type: z.ZodLiteral<"submission">;
@@ -5915,7 +5961,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5915
5961
  }[];
5916
5962
  }[];
5917
5963
  }>>;
5918
- }, "strip", z.ZodTypeAny, {
5964
+ }, "strict", z.ZodTypeAny, {
5919
5965
  data: {
5920
5966
  object: string | {
5921
5967
  type_parameter: string;
@@ -5958,6 +6004,28 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5958
6004
  onChain?: boolean | undefined;
5959
6005
  } | undefined;
5960
6006
  } | undefined;
6007
+ usage_guard?: string | null | undefined;
6008
+ voting_guard?: {
6009
+ op: "set" | "add";
6010
+ guards: {
6011
+ guard: string;
6012
+ vote_weight: {
6013
+ GuardIdentifier: number;
6014
+ } | {
6015
+ FixedValue: number;
6016
+ };
6017
+ }[];
6018
+ } | {
6019
+ op: "remove";
6020
+ guards: string[];
6021
+ } | {
6022
+ op: "clear";
6023
+ } | undefined;
6024
+ vote?: {
6025
+ arb: string;
6026
+ votes: number[];
6027
+ voting_guard?: string | undefined;
6028
+ } | undefined;
5961
6029
  location?: string | undefined;
5962
6030
  owner_receive?: {
5963
6031
  received: {
@@ -5978,23 +6046,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
5978
6046
  arb: string;
5979
6047
  feedback: string;
5980
6048
  } | undefined;
5981
- voting_guard?: {
5982
- op: "set" | "add";
5983
- guards: {
5984
- guard: string;
5985
- vote_weight: {
5986
- GuardIdentifier: number;
5987
- } | {
5988
- FixedValue: number;
5989
- };
5990
- }[];
5991
- } | {
5992
- op: "remove";
5993
- guards: string[];
5994
- } | {
5995
- op: "clear";
5996
- } | undefined;
5997
- usage_guard?: string | null | undefined;
5998
6049
  confirm?: {
5999
6050
  arb: string;
6000
6051
  voting_deadline: number | null;
@@ -6003,11 +6054,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6003
6054
  arb: string;
6004
6055
  voting_deadline: number | null;
6005
6056
  } | undefined;
6006
- vote?: {
6007
- arb: string;
6008
- votes: number[];
6009
- voting_guard?: string | undefined;
6010
- } | undefined;
6011
6057
  arb_withdraw?: {
6012
6058
  arb: string;
6013
6059
  } | undefined;
@@ -6064,6 +6110,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6064
6110
  confirmed?: boolean | undefined;
6065
6111
  user_intent_phrases?: string[] | undefined;
6066
6112
  project?: string | undefined;
6113
+ client_schema_version?: string | undefined;
6114
+ schema_strict_mode?: boolean | undefined;
6067
6115
  } | undefined;
6068
6116
  }, {
6069
6117
  data: {
@@ -6108,6 +6156,28 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6108
6156
  onChain?: boolean | undefined;
6109
6157
  } | undefined;
6110
6158
  } | undefined;
6159
+ usage_guard?: string | null | undefined;
6160
+ voting_guard?: {
6161
+ op: "set" | "add";
6162
+ guards: {
6163
+ guard: string;
6164
+ vote_weight: {
6165
+ GuardIdentifier: number;
6166
+ } | {
6167
+ FixedValue: number;
6168
+ };
6169
+ }[];
6170
+ } | {
6171
+ op: "remove";
6172
+ guards: string[];
6173
+ } | {
6174
+ op: "clear";
6175
+ } | undefined;
6176
+ vote?: {
6177
+ arb: string;
6178
+ votes: number[];
6179
+ voting_guard?: string | undefined;
6180
+ } | undefined;
6111
6181
  location?: string | undefined;
6112
6182
  owner_receive?: {
6113
6183
  received: {
@@ -6128,23 +6198,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6128
6198
  arb: string;
6129
6199
  feedback: string;
6130
6200
  } | undefined;
6131
- voting_guard?: {
6132
- op: "set" | "add";
6133
- guards: {
6134
- guard: string;
6135
- vote_weight: {
6136
- GuardIdentifier: number;
6137
- } | {
6138
- FixedValue: number;
6139
- };
6140
- }[];
6141
- } | {
6142
- op: "remove";
6143
- guards: string[];
6144
- } | {
6145
- op: "clear";
6146
- } | undefined;
6147
- usage_guard?: string | null | undefined;
6148
6201
  confirm?: {
6149
6202
  arb: string;
6150
6203
  voting_deadline: number | null;
@@ -6153,11 +6206,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6153
6206
  arb: string;
6154
6207
  voting_deadline: number | null;
6155
6208
  } | undefined;
6156
- vote?: {
6157
- arb: string;
6158
- votes: number[];
6159
- voting_guard?: string | undefined;
6160
- } | undefined;
6161
6209
  arb_withdraw?: {
6162
6210
  arb: string;
6163
6211
  } | undefined;
@@ -6214,6 +6262,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6214
6262
  confirmed?: boolean | undefined;
6215
6263
  user_intent_phrases?: string[] | undefined;
6216
6264
  project?: string | undefined;
6265
+ client_schema_version?: string | undefined;
6266
+ schema_strict_mode?: boolean | undefined;
6217
6267
  } | undefined;
6218
6268
  }>, z.ZodObject<{
6219
6269
  operation_type: z.ZodLiteral<"contact">;
@@ -6487,6 +6537,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6487
6537
  confirmed: z.ZodOptional<z.ZodBoolean>;
6488
6538
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6489
6539
  project: z.ZodOptional<z.ZodString>;
6540
+ client_schema_version: z.ZodOptional<z.ZodString>;
6541
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
6490
6542
  }, "strict", z.ZodTypeAny, {
6491
6543
  account: string;
6492
6544
  no_cache?: boolean | undefined;
@@ -6496,6 +6548,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6496
6548
  confirmed?: boolean | undefined;
6497
6549
  user_intent_phrases?: string[] | undefined;
6498
6550
  project?: string | undefined;
6551
+ client_schema_version?: string | undefined;
6552
+ schema_strict_mode?: boolean | undefined;
6499
6553
  }, {
6500
6554
  no_cache?: boolean | undefined;
6501
6555
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -6505,6 +6559,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6505
6559
  confirmed?: boolean | undefined;
6506
6560
  user_intent_phrases?: string[] | undefined;
6507
6561
  project?: string | undefined;
6562
+ client_schema_version?: string | undefined;
6563
+ schema_strict_mode?: boolean | undefined;
6508
6564
  }>>;
6509
6565
  submission: z.ZodOptional<z.ZodObject<{
6510
6566
  type: z.ZodLiteral<"submission">;
@@ -6686,7 +6742,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6686
6742
  }[];
6687
6743
  }[];
6688
6744
  }>>;
6689
- }, "strip", z.ZodTypeAny, {
6745
+ }, "strict", z.ZodTypeAny, {
6690
6746
  data: {
6691
6747
  object: string | {
6692
6748
  name?: string | undefined;
@@ -6773,6 +6829,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6773
6829
  confirmed?: boolean | undefined;
6774
6830
  user_intent_phrases?: string[] | undefined;
6775
6831
  project?: string | undefined;
6832
+ client_schema_version?: string | undefined;
6833
+ schema_strict_mode?: boolean | undefined;
6776
6834
  } | undefined;
6777
6835
  }, {
6778
6836
  data: {
@@ -6861,6 +6919,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
6861
6919
  confirmed?: boolean | undefined;
6862
6920
  user_intent_phrases?: string[] | undefined;
6863
6921
  project?: string | undefined;
6922
+ client_schema_version?: string | undefined;
6923
+ schema_strict_mode?: boolean | undefined;
6864
6924
  } | undefined;
6865
6925
  }>, z.ZodObject<{
6866
6926
  operation_type: z.ZodLiteral<"treasury">;
@@ -7589,6 +7649,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7589
7649
  confirmed: z.ZodOptional<z.ZodBoolean>;
7590
7650
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7591
7651
  project: z.ZodOptional<z.ZodString>;
7652
+ client_schema_version: z.ZodOptional<z.ZodString>;
7653
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
7592
7654
  }, "strict", z.ZodTypeAny, {
7593
7655
  account: string;
7594
7656
  no_cache?: boolean | undefined;
@@ -7598,6 +7660,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7598
7660
  confirmed?: boolean | undefined;
7599
7661
  user_intent_phrases?: string[] | undefined;
7600
7662
  project?: string | undefined;
7663
+ client_schema_version?: string | undefined;
7664
+ schema_strict_mode?: boolean | undefined;
7601
7665
  }, {
7602
7666
  no_cache?: boolean | undefined;
7603
7667
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -7607,6 +7671,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7607
7671
  confirmed?: boolean | undefined;
7608
7672
  user_intent_phrases?: string[] | undefined;
7609
7673
  project?: string | undefined;
7674
+ client_schema_version?: string | undefined;
7675
+ schema_strict_mode?: boolean | undefined;
7610
7676
  }>>;
7611
7677
  submission: z.ZodOptional<z.ZodObject<{
7612
7678
  type: z.ZodLiteral<"submission">;
@@ -7788,7 +7854,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7788
7854
  }[];
7789
7855
  }[];
7790
7856
  }>>;
7791
- }, "strip", z.ZodTypeAny, {
7857
+ }, "strict", z.ZodTypeAny, {
7792
7858
  data: {
7793
7859
  object: string | {
7794
7860
  type_parameter: string;
@@ -7949,6 +8015,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
7949
8015
  confirmed?: boolean | undefined;
7950
8016
  user_intent_phrases?: string[] | undefined;
7951
8017
  project?: string | undefined;
8018
+ client_schema_version?: string | undefined;
8019
+ schema_strict_mode?: boolean | undefined;
7952
8020
  } | undefined;
7953
8021
  }, {
7954
8022
  data: {
@@ -8111,6 +8179,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8111
8179
  confirmed?: boolean | undefined;
8112
8180
  user_intent_phrases?: string[] | undefined;
8113
8181
  project?: string | undefined;
8182
+ client_schema_version?: string | undefined;
8183
+ schema_strict_mode?: boolean | undefined;
8114
8184
  } | undefined;
8115
8185
  }>, z.ZodObject<{
8116
8186
  operation_type: z.ZodLiteral<"reward">;
@@ -8514,6 +8584,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8514
8584
  confirmed: z.ZodOptional<z.ZodBoolean>;
8515
8585
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8516
8586
  project: z.ZodOptional<z.ZodString>;
8587
+ client_schema_version: z.ZodOptional<z.ZodString>;
8588
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
8517
8589
  }, "strict", z.ZodTypeAny, {
8518
8590
  account: string;
8519
8591
  no_cache?: boolean | undefined;
@@ -8523,6 +8595,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8523
8595
  confirmed?: boolean | undefined;
8524
8596
  user_intent_phrases?: string[] | undefined;
8525
8597
  project?: string | undefined;
8598
+ client_schema_version?: string | undefined;
8599
+ schema_strict_mode?: boolean | undefined;
8526
8600
  }, {
8527
8601
  no_cache?: boolean | undefined;
8528
8602
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -8532,6 +8606,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8532
8606
  confirmed?: boolean | undefined;
8533
8607
  user_intent_phrases?: string[] | undefined;
8534
8608
  project?: string | undefined;
8609
+ client_schema_version?: string | undefined;
8610
+ schema_strict_mode?: boolean | undefined;
8535
8611
  }>>;
8536
8612
  submission: z.ZodOptional<z.ZodObject<{
8537
8613
  type: z.ZodLiteral<"submission">;
@@ -8713,7 +8789,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8713
8789
  }[];
8714
8790
  }[];
8715
8791
  }>>;
8716
- }, "strip", z.ZodTypeAny, {
8792
+ }, "strict", z.ZodTypeAny, {
8717
8793
  data: {
8718
8794
  object: string | {
8719
8795
  type_parameter: string;
@@ -8821,6 +8897,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8821
8897
  confirmed?: boolean | undefined;
8822
8898
  user_intent_phrases?: string[] | undefined;
8823
8899
  project?: string | undefined;
8900
+ client_schema_version?: string | undefined;
8901
+ schema_strict_mode?: boolean | undefined;
8824
8902
  } | undefined;
8825
8903
  }, {
8826
8904
  data: {
@@ -8930,6 +9008,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
8930
9008
  confirmed?: boolean | undefined;
8931
9009
  user_intent_phrases?: string[] | undefined;
8932
9010
  project?: string | undefined;
9011
+ client_schema_version?: string | undefined;
9012
+ schema_strict_mode?: boolean | undefined;
8933
9013
  } | undefined;
8934
9014
  }>, z.ZodObject<{
8935
9015
  operation_type: z.ZodLiteral<"allocation">;
@@ -9064,6 +9144,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9064
9144
  }>, "many">;
9065
9145
  }, "strip", z.ZodTypeAny, {
9066
9146
  description: string;
9147
+ threshold: string | number;
9067
9148
  allocators: {
9068
9149
  guard: string;
9069
9150
  sharing: {
@@ -9083,9 +9164,9 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9083
9164
  max?: string | number | null | undefined;
9084
9165
  fix?: string | number | undefined;
9085
9166
  }[];
9086
- threshold: string | number;
9087
9167
  }, {
9088
9168
  description: string;
9169
+ threshold: string | number;
9089
9170
  allocators: {
9090
9171
  guard: string;
9091
9172
  sharing: {
@@ -9105,7 +9186,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9105
9186
  max?: string | number | null | undefined;
9106
9187
  fix?: string | number | undefined;
9107
9188
  }[];
9108
- threshold: string | number;
9109
9189
  }>;
9110
9190
  coin: z.ZodUnion<[z.ZodObject<{
9111
9191
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -9151,6 +9231,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9151
9231
  };
9152
9232
  allocators: {
9153
9233
  description: string;
9234
+ threshold: string | number;
9154
9235
  allocators: {
9155
9236
  guard: string;
9156
9237
  sharing: {
@@ -9170,7 +9251,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9170
9251
  max?: string | number | null | undefined;
9171
9252
  fix?: string | number | undefined;
9172
9253
  }[];
9173
- threshold: string | number;
9174
9254
  };
9175
9255
  payment_info: {
9176
9256
  index: string | number;
@@ -9193,6 +9273,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9193
9273
  };
9194
9274
  allocators: {
9195
9275
  description: string;
9276
+ threshold: string | number;
9196
9277
  allocators: {
9197
9278
  guard: string;
9198
9279
  sharing: {
@@ -9212,7 +9293,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9212
9293
  max?: string | number | null | undefined;
9213
9294
  fix?: string | number | undefined;
9214
9295
  }[];
9215
- threshold: string | number;
9216
9296
  };
9217
9297
  payment_info: {
9218
9298
  index: string | number;
@@ -9290,6 +9370,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9290
9370
  confirmed: z.ZodOptional<z.ZodBoolean>;
9291
9371
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9292
9372
  project: z.ZodOptional<z.ZodString>;
9373
+ client_schema_version: z.ZodOptional<z.ZodString>;
9374
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
9293
9375
  }, "strict", z.ZodTypeAny, {
9294
9376
  account: string;
9295
9377
  no_cache?: boolean | undefined;
@@ -9299,6 +9381,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9299
9381
  confirmed?: boolean | undefined;
9300
9382
  user_intent_phrases?: string[] | undefined;
9301
9383
  project?: string | undefined;
9384
+ client_schema_version?: string | undefined;
9385
+ schema_strict_mode?: boolean | undefined;
9302
9386
  }, {
9303
9387
  no_cache?: boolean | undefined;
9304
9388
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -9308,6 +9392,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9308
9392
  confirmed?: boolean | undefined;
9309
9393
  user_intent_phrases?: string[] | undefined;
9310
9394
  project?: string | undefined;
9395
+ client_schema_version?: string | undefined;
9396
+ schema_strict_mode?: boolean | undefined;
9311
9397
  }>>;
9312
9398
  submission: z.ZodOptional<z.ZodObject<{
9313
9399
  type: z.ZodLiteral<"submission">;
@@ -9489,7 +9575,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9489
9575
  }[];
9490
9576
  }[];
9491
9577
  }>>;
9492
- }, "strip", z.ZodTypeAny, {
9578
+ }, "strict", z.ZodTypeAny, {
9493
9579
  data: {
9494
9580
  object: {
9495
9581
  type_parameter: string;
@@ -9505,6 +9591,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9505
9591
  };
9506
9592
  allocators: {
9507
9593
  description: string;
9594
+ threshold: string | number;
9508
9595
  allocators: {
9509
9596
  guard: string;
9510
9597
  sharing: {
@@ -9524,7 +9611,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9524
9611
  max?: string | number | null | undefined;
9525
9612
  fix?: string | number | undefined;
9526
9613
  }[];
9527
- threshold: string | number;
9528
9614
  };
9529
9615
  payment_info: {
9530
9616
  index: string | number;
@@ -9582,6 +9668,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9582
9668
  confirmed?: boolean | undefined;
9583
9669
  user_intent_phrases?: string[] | undefined;
9584
9670
  project?: string | undefined;
9671
+ client_schema_version?: string | undefined;
9672
+ schema_strict_mode?: boolean | undefined;
9585
9673
  } | undefined;
9586
9674
  }, {
9587
9675
  data: {
@@ -9599,6 +9687,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9599
9687
  };
9600
9688
  allocators: {
9601
9689
  description: string;
9690
+ threshold: string | number;
9602
9691
  allocators: {
9603
9692
  guard: string;
9604
9693
  sharing: {
@@ -9618,7 +9707,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9618
9707
  max?: string | number | null | undefined;
9619
9708
  fix?: string | number | undefined;
9620
9709
  }[];
9621
- threshold: string | number;
9622
9710
  };
9623
9711
  payment_info: {
9624
9712
  index: string | number;
@@ -9676,6 +9764,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
9676
9764
  confirmed?: boolean | undefined;
9677
9765
  user_intent_phrases?: string[] | undefined;
9678
9766
  project?: string | undefined;
9767
+ client_schema_version?: string | undefined;
9768
+ schema_strict_mode?: boolean | undefined;
9679
9769
  } | undefined;
9680
9770
  }>, z.ZodObject<{
9681
9771
  operation_type: z.ZodLiteral<"permission">;
@@ -10213,19 +10303,58 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10213
10303
  onChain?: boolean | undefined;
10214
10304
  } | undefined;
10215
10305
  description?: string | undefined;
10216
- owner_receive?: {
10217
- received: {
10218
- id: string;
10219
- balance: string | number;
10220
- payment: string;
10221
- }[];
10222
- balance: string | number;
10223
- token_type: string;
10224
- } | "recently" | {
10225
- type: string;
10226
- id: string;
10227
- content_raw?: any;
10228
- }[] | undefined;
10306
+ table?: {
10307
+ op: "add perm by index";
10308
+ entity: {
10309
+ entities: {
10310
+ name_or_address?: string | undefined;
10311
+ local_mark_first?: boolean | undefined;
10312
+ }[];
10313
+ check_all_founded?: boolean | undefined;
10314
+ };
10315
+ index: number;
10316
+ } | {
10317
+ op: "set perm by index";
10318
+ entity: {
10319
+ entities: {
10320
+ name_or_address?: string | undefined;
10321
+ local_mark_first?: boolean | undefined;
10322
+ }[];
10323
+ check_all_founded?: boolean | undefined;
10324
+ };
10325
+ index: number;
10326
+ } | {
10327
+ op: "remove perm by index";
10328
+ entity: {
10329
+ entities: {
10330
+ name_or_address?: string | undefined;
10331
+ local_mark_first?: boolean | undefined;
10332
+ }[];
10333
+ check_all_founded?: boolean | undefined;
10334
+ };
10335
+ index: number;
10336
+ } | {
10337
+ op: "add perm by entity";
10338
+ entity: {
10339
+ name_or_address?: string | undefined;
10340
+ local_mark_first?: boolean | undefined;
10341
+ };
10342
+ index: number[];
10343
+ } | {
10344
+ op: "set perm by entity";
10345
+ entity: {
10346
+ name_or_address?: string | undefined;
10347
+ local_mark_first?: boolean | undefined;
10348
+ };
10349
+ index: number[];
10350
+ } | {
10351
+ op: "remove perm by entity";
10352
+ entity: {
10353
+ name_or_address?: string | undefined;
10354
+ local_mark_first?: boolean | undefined;
10355
+ };
10356
+ index: number[];
10357
+ } | undefined;
10229
10358
  entity?: {
10230
10359
  op: "swap";
10231
10360
  entity1: {
@@ -10263,6 +10392,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10263
10392
  local_mark_first?: boolean | undefined;
10264
10393
  };
10265
10394
  } | undefined;
10395
+ owner_receive?: {
10396
+ received: {
10397
+ id: string;
10398
+ balance: string | number;
10399
+ payment: string;
10400
+ }[];
10401
+ balance: string | number;
10402
+ token_type: string;
10403
+ } | "recently" | {
10404
+ type: string;
10405
+ id: string;
10406
+ content_raw?: any;
10407
+ }[] | undefined;
10266
10408
  um?: string | null | undefined;
10267
10409
  builder?: {
10268
10410
  name_or_address?: string | undefined;
@@ -10288,6 +10430,15 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10288
10430
  } | {
10289
10431
  op: "clear";
10290
10432
  } | undefined;
10433
+ apply?: string[] | undefined;
10434
+ }, {
10435
+ object?: string | {
10436
+ name?: string | undefined;
10437
+ replaceExistName?: boolean | undefined;
10438
+ tags?: string[] | undefined;
10439
+ onChain?: boolean | undefined;
10440
+ } | undefined;
10441
+ description?: string | undefined;
10291
10442
  table?: {
10292
10443
  op: "add perm by index";
10293
10444
  entity: {
@@ -10340,28 +10491,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10340
10491
  };
10341
10492
  index: number[];
10342
10493
  } | undefined;
10343
- apply?: string[] | undefined;
10344
- }, {
10345
- object?: string | {
10346
- name?: string | undefined;
10347
- replaceExistName?: boolean | undefined;
10348
- tags?: string[] | undefined;
10349
- onChain?: boolean | undefined;
10350
- } | undefined;
10351
- description?: string | undefined;
10352
- owner_receive?: {
10353
- received: {
10354
- id: string;
10355
- balance: string | number;
10356
- payment: string;
10357
- }[];
10358
- balance: string | number;
10359
- token_type: string;
10360
- } | "recently" | {
10361
- type: string;
10362
- id: string;
10363
- content_raw?: any;
10364
- }[] | undefined;
10365
10494
  entity?: {
10366
10495
  op: "swap";
10367
10496
  entity1: {
@@ -10399,6 +10528,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10399
10528
  local_mark_first?: boolean | undefined;
10400
10529
  };
10401
10530
  } | undefined;
10531
+ owner_receive?: {
10532
+ received: {
10533
+ id: string;
10534
+ balance: string | number;
10535
+ payment: string;
10536
+ }[];
10537
+ balance: string | number;
10538
+ token_type: string;
10539
+ } | "recently" | {
10540
+ type: string;
10541
+ id: string;
10542
+ content_raw?: any;
10543
+ }[] | undefined;
10402
10544
  um?: string | null | undefined;
10403
10545
  builder?: {
10404
10546
  name_or_address?: string | undefined;
@@ -10424,6 +10566,51 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10424
10566
  } | {
10425
10567
  op: "clear";
10426
10568
  } | undefined;
10569
+ apply?: string[] | undefined;
10570
+ }>;
10571
+ env: z.ZodOptional<z.ZodObject<{
10572
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
10573
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10574
+ no_cache: z.ZodOptional<z.ZodBoolean>;
10575
+ network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
10576
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
10577
+ confirmed: z.ZodOptional<z.ZodBoolean>;
10578
+ user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10579
+ project: z.ZodOptional<z.ZodString>;
10580
+ client_schema_version: z.ZodOptional<z.ZodString>;
10581
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
10582
+ }, "strict", z.ZodTypeAny, {
10583
+ account: string;
10584
+ no_cache?: boolean | undefined;
10585
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
10586
+ permission_guard?: string[] | undefined;
10587
+ referrer?: string | undefined;
10588
+ confirmed?: boolean | undefined;
10589
+ user_intent_phrases?: string[] | undefined;
10590
+ project?: string | undefined;
10591
+ client_schema_version?: string | undefined;
10592
+ schema_strict_mode?: boolean | undefined;
10593
+ }, {
10594
+ no_cache?: boolean | undefined;
10595
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
10596
+ account?: string | undefined;
10597
+ permission_guard?: string[] | undefined;
10598
+ referrer?: string | undefined;
10599
+ confirmed?: boolean | undefined;
10600
+ user_intent_phrases?: string[] | undefined;
10601
+ project?: string | undefined;
10602
+ client_schema_version?: string | undefined;
10603
+ schema_strict_mode?: boolean | undefined;
10604
+ }>>;
10605
+ }, "strict", z.ZodTypeAny, {
10606
+ data: {
10607
+ object?: string | {
10608
+ name?: string | undefined;
10609
+ replaceExistName?: boolean | undefined;
10610
+ tags?: string[] | undefined;
10611
+ onChain?: boolean | undefined;
10612
+ } | undefined;
10613
+ description?: string | undefined;
10427
10614
  table?: {
10428
10615
  op: "add perm by index";
10429
10616
  entity: {
@@ -10476,58 +10663,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10476
10663
  };
10477
10664
  index: number[];
10478
10665
  } | undefined;
10479
- apply?: string[] | undefined;
10480
- }>;
10481
- env: z.ZodOptional<z.ZodObject<{
10482
- account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
10483
- permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10484
- no_cache: z.ZodOptional<z.ZodBoolean>;
10485
- network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
10486
- referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
10487
- confirmed: z.ZodOptional<z.ZodBoolean>;
10488
- user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10489
- project: z.ZodOptional<z.ZodString>;
10490
- }, "strict", z.ZodTypeAny, {
10491
- account: string;
10492
- no_cache?: boolean | undefined;
10493
- network?: import("@wowok/wowok").ENTRYPOINT | undefined;
10494
- permission_guard?: string[] | undefined;
10495
- referrer?: string | undefined;
10496
- confirmed?: boolean | undefined;
10497
- user_intent_phrases?: string[] | undefined;
10498
- project?: string | undefined;
10499
- }, {
10500
- no_cache?: boolean | undefined;
10501
- network?: import("@wowok/wowok").ENTRYPOINT | undefined;
10502
- account?: string | undefined;
10503
- permission_guard?: string[] | undefined;
10504
- referrer?: string | undefined;
10505
- confirmed?: boolean | undefined;
10506
- user_intent_phrases?: string[] | undefined;
10507
- project?: string | undefined;
10508
- }>>;
10509
- }, "strip", z.ZodTypeAny, {
10510
- data: {
10511
- object?: string | {
10512
- name?: string | undefined;
10513
- replaceExistName?: boolean | undefined;
10514
- tags?: string[] | undefined;
10515
- onChain?: boolean | undefined;
10516
- } | undefined;
10517
- description?: string | undefined;
10518
- owner_receive?: {
10519
- received: {
10520
- id: string;
10521
- balance: string | number;
10522
- payment: string;
10523
- }[];
10524
- balance: string | number;
10525
- token_type: string;
10526
- } | "recently" | {
10527
- type: string;
10528
- id: string;
10529
- content_raw?: any;
10530
- }[] | undefined;
10531
10666
  entity?: {
10532
10667
  op: "swap";
10533
10668
  entity1: {
@@ -10565,6 +10700,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10565
10700
  local_mark_first?: boolean | undefined;
10566
10701
  };
10567
10702
  } | undefined;
10703
+ owner_receive?: {
10704
+ received: {
10705
+ id: string;
10706
+ balance: string | number;
10707
+ payment: string;
10708
+ }[];
10709
+ balance: string | number;
10710
+ token_type: string;
10711
+ } | "recently" | {
10712
+ type: string;
10713
+ id: string;
10714
+ content_raw?: any;
10715
+ }[] | undefined;
10568
10716
  um?: string | null | undefined;
10569
10717
  builder?: {
10570
10718
  name_or_address?: string | undefined;
@@ -10590,6 +10738,30 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10590
10738
  } | {
10591
10739
  op: "clear";
10592
10740
  } | undefined;
10741
+ apply?: string[] | undefined;
10742
+ };
10743
+ operation_type: "permission";
10744
+ env?: {
10745
+ account: string;
10746
+ no_cache?: boolean | undefined;
10747
+ network?: import("@wowok/wowok").ENTRYPOINT | undefined;
10748
+ permission_guard?: string[] | undefined;
10749
+ referrer?: string | undefined;
10750
+ confirmed?: boolean | undefined;
10751
+ user_intent_phrases?: string[] | undefined;
10752
+ project?: string | undefined;
10753
+ client_schema_version?: string | undefined;
10754
+ schema_strict_mode?: boolean | undefined;
10755
+ } | undefined;
10756
+ }, {
10757
+ data: {
10758
+ object?: string | {
10759
+ name?: string | undefined;
10760
+ replaceExistName?: boolean | undefined;
10761
+ tags?: string[] | undefined;
10762
+ onChain?: boolean | undefined;
10763
+ } | undefined;
10764
+ description?: string | undefined;
10593
10765
  table?: {
10594
10766
  op: "add perm by index";
10595
10767
  entity: {
@@ -10642,41 +10814,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10642
10814
  };
10643
10815
  index: number[];
10644
10816
  } | undefined;
10645
- apply?: string[] | undefined;
10646
- };
10647
- operation_type: "permission";
10648
- env?: {
10649
- account: string;
10650
- no_cache?: boolean | undefined;
10651
- network?: import("@wowok/wowok").ENTRYPOINT | undefined;
10652
- permission_guard?: string[] | undefined;
10653
- referrer?: string | undefined;
10654
- confirmed?: boolean | undefined;
10655
- user_intent_phrases?: string[] | undefined;
10656
- project?: string | undefined;
10657
- } | undefined;
10658
- }, {
10659
- data: {
10660
- object?: string | {
10661
- name?: string | undefined;
10662
- replaceExistName?: boolean | undefined;
10663
- tags?: string[] | undefined;
10664
- onChain?: boolean | undefined;
10665
- } | undefined;
10666
- description?: string | undefined;
10667
- owner_receive?: {
10668
- received: {
10669
- id: string;
10670
- balance: string | number;
10671
- payment: string;
10672
- }[];
10673
- balance: string | number;
10674
- token_type: string;
10675
- } | "recently" | {
10676
- type: string;
10677
- id: string;
10678
- content_raw?: any;
10679
- }[] | undefined;
10680
10817
  entity?: {
10681
10818
  op: "swap";
10682
10819
  entity1: {
@@ -10714,6 +10851,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10714
10851
  local_mark_first?: boolean | undefined;
10715
10852
  };
10716
10853
  } | undefined;
10854
+ owner_receive?: {
10855
+ received: {
10856
+ id: string;
10857
+ balance: string | number;
10858
+ payment: string;
10859
+ }[];
10860
+ balance: string | number;
10861
+ token_type: string;
10862
+ } | "recently" | {
10863
+ type: string;
10864
+ id: string;
10865
+ content_raw?: any;
10866
+ }[] | undefined;
10717
10867
  um?: string | null | undefined;
10718
10868
  builder?: {
10719
10869
  name_or_address?: string | undefined;
@@ -10739,58 +10889,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10739
10889
  } | {
10740
10890
  op: "clear";
10741
10891
  } | undefined;
10742
- table?: {
10743
- op: "add perm by index";
10744
- entity: {
10745
- entities: {
10746
- name_or_address?: string | undefined;
10747
- local_mark_first?: boolean | undefined;
10748
- }[];
10749
- check_all_founded?: boolean | undefined;
10750
- };
10751
- index: number;
10752
- } | {
10753
- op: "set perm by index";
10754
- entity: {
10755
- entities: {
10756
- name_or_address?: string | undefined;
10757
- local_mark_first?: boolean | undefined;
10758
- }[];
10759
- check_all_founded?: boolean | undefined;
10760
- };
10761
- index: number;
10762
- } | {
10763
- op: "remove perm by index";
10764
- entity: {
10765
- entities: {
10766
- name_or_address?: string | undefined;
10767
- local_mark_first?: boolean | undefined;
10768
- }[];
10769
- check_all_founded?: boolean | undefined;
10770
- };
10771
- index: number;
10772
- } | {
10773
- op: "add perm by entity";
10774
- entity: {
10775
- name_or_address?: string | undefined;
10776
- local_mark_first?: boolean | undefined;
10777
- };
10778
- index: number[];
10779
- } | {
10780
- op: "set perm by entity";
10781
- entity: {
10782
- name_or_address?: string | undefined;
10783
- local_mark_first?: boolean | undefined;
10784
- };
10785
- index: number[];
10786
- } | {
10787
- op: "remove perm by entity";
10788
- entity: {
10789
- name_or_address?: string | undefined;
10790
- local_mark_first?: boolean | undefined;
10791
- };
10792
- index: number[];
10793
- } | undefined;
10794
10892
  apply?: string[] | undefined;
10795
10893
  };
10796
10894
  operation_type: "permission";
@@ -10803,6 +10901,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10803
10901
  confirmed?: boolean | undefined;
10804
10902
  user_intent_phrases?: string[] | undefined;
10805
10903
  project?: string | undefined;
10904
+ client_schema_version?: string | undefined;
10905
+ schema_strict_mode?: boolean | undefined;
10806
10906
  } | undefined;
10807
10907
  }>, z.ZodObject<{
10808
10908
  operation_type: z.ZodLiteral<"guard">;
@@ -10917,15 +11017,30 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10917
11017
  guards: string[];
10918
11018
  logic_or?: boolean | undefined;
10919
11019
  }>>;
11020
+ binding_hint: z.ZodOptional<z.ZodObject<{
11021
+ action: z.ZodEnum<["buy", "forward", "allocate", "claim_reward", "vote", "dispute", "write_repository", "submit_progress", "gen_passport", "custom"]>;
11022
+ host_object: z.ZodEnum<["Service", "Machine", "Arbitration", "Reward", "Repository", "Progress", "Demand", "Standalone"]>;
11023
+ binding_field: z.ZodEnum<["buy_guard", "order_allocators", "Forward.guard", "submission", "guard", "write_guard", "usage_guard", "voting_guard", "ServiceGuard", "none"]>;
11024
+ rule_sentence: z.ZodOptional<z.ZodString>;
11025
+ failure_conditions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11026
+ circular_reference: z.ZodOptional<z.ZodBoolean>;
11027
+ }, "strict", z.ZodTypeAny, {
11028
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11029
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11030
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11031
+ rule_sentence?: string | undefined;
11032
+ failure_conditions?: string[] | undefined;
11033
+ circular_reference?: boolean | undefined;
11034
+ }, {
11035
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11036
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11037
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11038
+ rule_sentence?: string | undefined;
11039
+ failure_conditions?: string[] | undefined;
11040
+ circular_reference?: boolean | undefined;
11041
+ }>>;
10920
11042
  }, "strict", z.ZodTypeAny, {
10921
11043
  description?: string | undefined;
10922
- namedNew?: {
10923
- name?: string | undefined;
10924
- replaceExistName?: boolean | undefined;
10925
- tags?: string[] | undefined;
10926
- onChain?: boolean | undefined;
10927
- } | undefined;
10928
- root?: any;
10929
11044
  table?: {
10930
11045
  identifier: number;
10931
11046
  b_submission: boolean;
@@ -10942,19 +11057,27 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10942
11057
  check_all_founded?: boolean | undefined;
10943
11058
  } | string[] | boolean[] | number[] | number[][] | undefined;
10944
11059
  }[] | undefined;
11060
+ root?: any;
10945
11061
  rely?: {
10946
11062
  guards: string[];
10947
11063
  logic_or?: boolean | undefined;
10948
11064
  } | undefined;
10949
- }, {
10950
- description?: string | undefined;
10951
11065
  namedNew?: {
10952
11066
  name?: string | undefined;
10953
11067
  replaceExistName?: boolean | undefined;
10954
11068
  tags?: string[] | undefined;
10955
11069
  onChain?: boolean | undefined;
10956
11070
  } | undefined;
10957
- root?: any;
11071
+ binding_hint?: {
11072
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11073
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11074
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11075
+ rule_sentence?: string | undefined;
11076
+ failure_conditions?: string[] | undefined;
11077
+ circular_reference?: boolean | undefined;
11078
+ } | undefined;
11079
+ }, {
11080
+ description?: string | undefined;
10958
11081
  table?: {
10959
11082
  identifier: number;
10960
11083
  b_submission: boolean;
@@ -10971,19 +11094,27 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10971
11094
  } | string[] | boolean[] | number[] | number[][] | undefined;
10972
11095
  name?: string | undefined;
10973
11096
  }[] | undefined;
11097
+ root?: any;
10974
11098
  rely?: {
10975
11099
  guards: string[];
10976
11100
  logic_or?: boolean | undefined;
10977
11101
  } | undefined;
10978
- }>, {
10979
- description?: string | undefined;
10980
11102
  namedNew?: {
10981
11103
  name?: string | undefined;
10982
11104
  replaceExistName?: boolean | undefined;
10983
11105
  tags?: string[] | undefined;
10984
11106
  onChain?: boolean | undefined;
10985
11107
  } | undefined;
10986
- root?: any;
11108
+ binding_hint?: {
11109
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11110
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11111
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11112
+ rule_sentence?: string | undefined;
11113
+ failure_conditions?: string[] | undefined;
11114
+ circular_reference?: boolean | undefined;
11115
+ } | undefined;
11116
+ }>, {
11117
+ description?: string | undefined;
10987
11118
  table?: {
10988
11119
  identifier: number;
10989
11120
  b_submission: boolean;
@@ -11000,19 +11131,27 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11000
11131
  check_all_founded?: boolean | undefined;
11001
11132
  } | string[] | boolean[] | number[] | number[][] | undefined;
11002
11133
  }[] | undefined;
11134
+ root?: any;
11003
11135
  rely?: {
11004
11136
  guards: string[];
11005
11137
  logic_or?: boolean | undefined;
11006
11138
  } | undefined;
11007
- }, {
11008
- description?: string | undefined;
11009
11139
  namedNew?: {
11010
11140
  name?: string | undefined;
11011
11141
  replaceExistName?: boolean | undefined;
11012
11142
  tags?: string[] | undefined;
11013
11143
  onChain?: boolean | undefined;
11014
11144
  } | undefined;
11015
- root?: any;
11145
+ binding_hint?: {
11146
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11147
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11148
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11149
+ rule_sentence?: string | undefined;
11150
+ failure_conditions?: string[] | undefined;
11151
+ circular_reference?: boolean | undefined;
11152
+ } | undefined;
11153
+ }, {
11154
+ description?: string | undefined;
11016
11155
  table?: {
11017
11156
  identifier: number;
11018
11157
  b_submission: boolean;
@@ -11029,10 +11168,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11029
11168
  } | string[] | boolean[] | number[] | number[][] | undefined;
11030
11169
  name?: string | undefined;
11031
11170
  }[] | undefined;
11171
+ root?: any;
11032
11172
  rely?: {
11033
11173
  guards: string[];
11034
11174
  logic_or?: boolean | undefined;
11035
11175
  } | undefined;
11176
+ namedNew?: {
11177
+ name?: string | undefined;
11178
+ replaceExistName?: boolean | undefined;
11179
+ tags?: string[] | undefined;
11180
+ onChain?: boolean | undefined;
11181
+ } | undefined;
11182
+ binding_hint?: {
11183
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11184
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11185
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11186
+ rule_sentence?: string | undefined;
11187
+ failure_conditions?: string[] | undefined;
11188
+ circular_reference?: boolean | undefined;
11189
+ } | undefined;
11036
11190
  }>;
11037
11191
  env: z.ZodOptional<z.ZodObject<{
11038
11192
  account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
@@ -11043,6 +11197,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11043
11197
  confirmed: z.ZodOptional<z.ZodBoolean>;
11044
11198
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11045
11199
  project: z.ZodOptional<z.ZodString>;
11200
+ client_schema_version: z.ZodOptional<z.ZodString>;
11201
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
11046
11202
  }, "strict", z.ZodTypeAny, {
11047
11203
  account: string;
11048
11204
  no_cache?: boolean | undefined;
@@ -11052,6 +11208,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11052
11208
  confirmed?: boolean | undefined;
11053
11209
  user_intent_phrases?: string[] | undefined;
11054
11210
  project?: string | undefined;
11211
+ client_schema_version?: string | undefined;
11212
+ schema_strict_mode?: boolean | undefined;
11055
11213
  }, {
11056
11214
  no_cache?: boolean | undefined;
11057
11215
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -11061,17 +11219,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11061
11219
  confirmed?: boolean | undefined;
11062
11220
  user_intent_phrases?: string[] | undefined;
11063
11221
  project?: string | undefined;
11222
+ client_schema_version?: string | undefined;
11223
+ schema_strict_mode?: boolean | undefined;
11064
11224
  }>>;
11065
- }, "strip", z.ZodTypeAny, {
11225
+ }, "strict", z.ZodTypeAny, {
11066
11226
  data: {
11067
11227
  description?: string | undefined;
11068
- namedNew?: {
11069
- name?: string | undefined;
11070
- replaceExistName?: boolean | undefined;
11071
- tags?: string[] | undefined;
11072
- onChain?: boolean | undefined;
11073
- } | undefined;
11074
- root?: any;
11075
11228
  table?: {
11076
11229
  identifier: number;
11077
11230
  b_submission: boolean;
@@ -11088,10 +11241,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11088
11241
  check_all_founded?: boolean | undefined;
11089
11242
  } | string[] | boolean[] | number[] | number[][] | undefined;
11090
11243
  }[] | undefined;
11244
+ root?: any;
11091
11245
  rely?: {
11092
11246
  guards: string[];
11093
11247
  logic_or?: boolean | undefined;
11094
11248
  } | undefined;
11249
+ namedNew?: {
11250
+ name?: string | undefined;
11251
+ replaceExistName?: boolean | undefined;
11252
+ tags?: string[] | undefined;
11253
+ onChain?: boolean | undefined;
11254
+ } | undefined;
11255
+ binding_hint?: {
11256
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11257
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11258
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11259
+ rule_sentence?: string | undefined;
11260
+ failure_conditions?: string[] | undefined;
11261
+ circular_reference?: boolean | undefined;
11262
+ } | undefined;
11095
11263
  };
11096
11264
  operation_type: "guard";
11097
11265
  env?: {
@@ -11103,17 +11271,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11103
11271
  confirmed?: boolean | undefined;
11104
11272
  user_intent_phrases?: string[] | undefined;
11105
11273
  project?: string | undefined;
11274
+ client_schema_version?: string | undefined;
11275
+ schema_strict_mode?: boolean | undefined;
11106
11276
  } | undefined;
11107
11277
  }, {
11108
11278
  data: {
11109
11279
  description?: string | undefined;
11110
- namedNew?: {
11111
- name?: string | undefined;
11112
- replaceExistName?: boolean | undefined;
11113
- tags?: string[] | undefined;
11114
- onChain?: boolean | undefined;
11115
- } | undefined;
11116
- root?: any;
11117
11280
  table?: {
11118
11281
  identifier: number;
11119
11282
  b_submission: boolean;
@@ -11130,10 +11293,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11130
11293
  } | string[] | boolean[] | number[] | number[][] | undefined;
11131
11294
  name?: string | undefined;
11132
11295
  }[] | undefined;
11296
+ root?: any;
11133
11297
  rely?: {
11134
11298
  guards: string[];
11135
11299
  logic_or?: boolean | undefined;
11136
11300
  } | undefined;
11301
+ namedNew?: {
11302
+ name?: string | undefined;
11303
+ replaceExistName?: boolean | undefined;
11304
+ tags?: string[] | undefined;
11305
+ onChain?: boolean | undefined;
11306
+ } | undefined;
11307
+ binding_hint?: {
11308
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
11309
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
11310
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
11311
+ rule_sentence?: string | undefined;
11312
+ failure_conditions?: string[] | undefined;
11313
+ circular_reference?: boolean | undefined;
11314
+ } | undefined;
11137
11315
  };
11138
11316
  operation_type: "guard";
11139
11317
  env?: {
@@ -11145,6 +11323,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11145
11323
  confirmed?: boolean | undefined;
11146
11324
  user_intent_phrases?: string[] | undefined;
11147
11325
  project?: string | undefined;
11326
+ client_schema_version?: string | undefined;
11327
+ schema_strict_mode?: boolean | undefined;
11148
11328
  } | undefined;
11149
11329
  }>, z.ZodObject<{
11150
11330
  operation_type: z.ZodLiteral<"personal">;
@@ -11546,6 +11726,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11546
11726
  confirmed: z.ZodOptional<z.ZodBoolean>;
11547
11727
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11548
11728
  project: z.ZodOptional<z.ZodString>;
11729
+ client_schema_version: z.ZodOptional<z.ZodString>;
11730
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
11549
11731
  }, "strict", z.ZodTypeAny, {
11550
11732
  account: string;
11551
11733
  no_cache?: boolean | undefined;
@@ -11555,6 +11737,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11555
11737
  confirmed?: boolean | undefined;
11556
11738
  user_intent_phrases?: string[] | undefined;
11557
11739
  project?: string | undefined;
11740
+ client_schema_version?: string | undefined;
11741
+ schema_strict_mode?: boolean | undefined;
11558
11742
  }, {
11559
11743
  no_cache?: boolean | undefined;
11560
11744
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -11564,8 +11748,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11564
11748
  confirmed?: boolean | undefined;
11565
11749
  user_intent_phrases?: string[] | undefined;
11566
11750
  project?: string | undefined;
11751
+ client_schema_version?: string | undefined;
11752
+ schema_strict_mode?: boolean | undefined;
11567
11753
  }>>;
11568
- }, "strip", z.ZodTypeAny, {
11754
+ }, "strict", z.ZodTypeAny, {
11569
11755
  data: {
11570
11756
  description?: string | undefined;
11571
11757
  referrer?: string | {
@@ -11636,6 +11822,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11636
11822
  confirmed?: boolean | undefined;
11637
11823
  user_intent_phrases?: string[] | undefined;
11638
11824
  project?: string | undefined;
11825
+ client_schema_version?: string | undefined;
11826
+ schema_strict_mode?: boolean | undefined;
11639
11827
  } | undefined;
11640
11828
  }, {
11641
11829
  data: {
@@ -11708,6 +11896,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11708
11896
  confirmed?: boolean | undefined;
11709
11897
  user_intent_phrases?: string[] | undefined;
11710
11898
  project?: string | undefined;
11899
+ client_schema_version?: string | undefined;
11900
+ schema_strict_mode?: boolean | undefined;
11711
11901
  } | undefined;
11712
11902
  }>, z.ZodObject<{
11713
11903
  operation_type: z.ZodLiteral<"payment">;
@@ -11853,6 +12043,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11853
12043
  confirmed: z.ZodOptional<z.ZodBoolean>;
11854
12044
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11855
12045
  project: z.ZodOptional<z.ZodString>;
12046
+ client_schema_version: z.ZodOptional<z.ZodString>;
12047
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
11856
12048
  }, "strict", z.ZodTypeAny, {
11857
12049
  account: string;
11858
12050
  no_cache?: boolean | undefined;
@@ -11862,6 +12054,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11862
12054
  confirmed?: boolean | undefined;
11863
12055
  user_intent_phrases?: string[] | undefined;
11864
12056
  project?: string | undefined;
12057
+ client_schema_version?: string | undefined;
12058
+ schema_strict_mode?: boolean | undefined;
11865
12059
  }, {
11866
12060
  no_cache?: boolean | undefined;
11867
12061
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -11871,8 +12065,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11871
12065
  confirmed?: boolean | undefined;
11872
12066
  user_intent_phrases?: string[] | undefined;
11873
12067
  project?: string | undefined;
12068
+ client_schema_version?: string | undefined;
12069
+ schema_strict_mode?: boolean | undefined;
11874
12070
  }>>;
11875
- }, "strip", z.ZodTypeAny, {
12071
+ }, "strict", z.ZodTypeAny, {
11876
12072
  data: {
11877
12073
  object: {
11878
12074
  type_parameter: string;
@@ -11909,6 +12105,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11909
12105
  confirmed?: boolean | undefined;
11910
12106
  user_intent_phrases?: string[] | undefined;
11911
12107
  project?: string | undefined;
12108
+ client_schema_version?: string | undefined;
12109
+ schema_strict_mode?: boolean | undefined;
11912
12110
  } | undefined;
11913
12111
  }, {
11914
12112
  data: {
@@ -11947,6 +12145,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11947
12145
  confirmed?: boolean | undefined;
11948
12146
  user_intent_phrases?: string[] | undefined;
11949
12147
  project?: string | undefined;
12148
+ client_schema_version?: string | undefined;
12149
+ schema_strict_mode?: boolean | undefined;
11950
12150
  } | undefined;
11951
12151
  }>, z.ZodObject<{
11952
12152
  operation_type: z.ZodLiteral<"demand">;
@@ -12204,20 +12404,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12204
12404
  } | {
12205
12405
  op: "clear";
12206
12406
  } | undefined;
12207
- location?: string | undefined;
12208
- owner_receive?: {
12209
- received: {
12210
- id: string;
12211
- balance: string | number;
12212
- payment: string;
12213
- }[];
12214
- balance: string | number;
12215
- token_type: string;
12216
- } | "recently" | {
12217
- type: string;
12218
- id: string;
12219
- content_raw?: any;
12220
- }[] | undefined;
12221
12407
  guards?: {
12222
12408
  op: "add";
12223
12409
  guard: {
@@ -12236,6 +12422,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12236
12422
  } | {
12237
12423
  op: "clear";
12238
12424
  } | undefined;
12425
+ location?: string | undefined;
12426
+ owner_receive?: {
12427
+ received: {
12428
+ id: string;
12429
+ balance: string | number;
12430
+ payment: string;
12431
+ }[];
12432
+ balance: string | number;
12433
+ token_type: string;
12434
+ } | "recently" | {
12435
+ type: string;
12436
+ id: string;
12437
+ content_raw?: any;
12438
+ }[] | undefined;
12239
12439
  um?: string | null | undefined;
12240
12440
  feedback?: {
12241
12441
  who: {
@@ -12274,20 +12474,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12274
12474
  } | {
12275
12475
  op: "clear";
12276
12476
  } | undefined;
12277
- location?: string | undefined;
12278
- owner_receive?: {
12279
- received: {
12280
- id: string;
12281
- balance: string | number;
12282
- payment: string;
12283
- }[];
12284
- balance: string | number;
12285
- token_type: string;
12286
- } | "recently" | {
12287
- type: string;
12288
- id: string;
12289
- content_raw?: any;
12290
- }[] | undefined;
12291
12477
  guards?: {
12292
12478
  op: "add";
12293
12479
  guard: {
@@ -12306,6 +12492,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12306
12492
  } | {
12307
12493
  op: "clear";
12308
12494
  } | undefined;
12495
+ location?: string | undefined;
12496
+ owner_receive?: {
12497
+ received: {
12498
+ id: string;
12499
+ balance: string | number;
12500
+ payment: string;
12501
+ }[];
12502
+ balance: string | number;
12503
+ token_type: string;
12504
+ } | "recently" | {
12505
+ type: string;
12506
+ id: string;
12507
+ content_raw?: any;
12508
+ }[] | undefined;
12309
12509
  um?: string | null | undefined;
12310
12510
  feedback?: {
12311
12511
  who: {
@@ -12330,6 +12530,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12330
12530
  confirmed: z.ZodOptional<z.ZodBoolean>;
12331
12531
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12332
12532
  project: z.ZodOptional<z.ZodString>;
12533
+ client_schema_version: z.ZodOptional<z.ZodString>;
12534
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
12333
12535
  }, "strict", z.ZodTypeAny, {
12334
12536
  account: string;
12335
12537
  no_cache?: boolean | undefined;
@@ -12339,6 +12541,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12339
12541
  confirmed?: boolean | undefined;
12340
12542
  user_intent_phrases?: string[] | undefined;
12341
12543
  project?: string | undefined;
12544
+ client_schema_version?: string | undefined;
12545
+ schema_strict_mode?: boolean | undefined;
12342
12546
  }, {
12343
12547
  no_cache?: boolean | undefined;
12344
12548
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -12348,6 +12552,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12348
12552
  confirmed?: boolean | undefined;
12349
12553
  user_intent_phrases?: string[] | undefined;
12350
12554
  project?: string | undefined;
12555
+ client_schema_version?: string | undefined;
12556
+ schema_strict_mode?: boolean | undefined;
12351
12557
  }>>;
12352
12558
  submission: z.ZodOptional<z.ZodObject<{
12353
12559
  type: z.ZodLiteral<"submission">;
@@ -12529,7 +12735,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12529
12735
  }[];
12530
12736
  }[];
12531
12737
  }>>;
12532
- }, "strip", z.ZodTypeAny, {
12738
+ }, "strict", z.ZodTypeAny, {
12533
12739
  data: {
12534
12740
  object: string | {
12535
12741
  name?: string | undefined;
@@ -12554,20 +12760,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12554
12760
  } | {
12555
12761
  op: "clear";
12556
12762
  } | undefined;
12557
- location?: string | undefined;
12558
- owner_receive?: {
12559
- received: {
12560
- id: string;
12561
- balance: string | number;
12562
- payment: string;
12563
- }[];
12564
- balance: string | number;
12565
- token_type: string;
12566
- } | "recently" | {
12567
- type: string;
12568
- id: string;
12569
- content_raw?: any;
12570
- }[] | undefined;
12571
12763
  guards?: {
12572
12764
  op: "add";
12573
12765
  guard: {
@@ -12586,6 +12778,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12586
12778
  } | {
12587
12779
  op: "clear";
12588
12780
  } | undefined;
12781
+ location?: string | undefined;
12782
+ owner_receive?: {
12783
+ received: {
12784
+ id: string;
12785
+ balance: string | number;
12786
+ payment: string;
12787
+ }[];
12788
+ balance: string | number;
12789
+ token_type: string;
12790
+ } | "recently" | {
12791
+ type: string;
12792
+ id: string;
12793
+ content_raw?: any;
12794
+ }[] | undefined;
12589
12795
  um?: string | null | undefined;
12590
12796
  feedback?: {
12591
12797
  who: {
@@ -12638,6 +12844,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12638
12844
  confirmed?: boolean | undefined;
12639
12845
  user_intent_phrases?: string[] | undefined;
12640
12846
  project?: string | undefined;
12847
+ client_schema_version?: string | undefined;
12848
+ schema_strict_mode?: boolean | undefined;
12641
12849
  } | undefined;
12642
12850
  }, {
12643
12851
  data: {
@@ -12664,20 +12872,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12664
12872
  } | {
12665
12873
  op: "clear";
12666
12874
  } | undefined;
12667
- location?: string | undefined;
12668
- owner_receive?: {
12669
- received: {
12670
- id: string;
12671
- balance: string | number;
12672
- payment: string;
12673
- }[];
12674
- balance: string | number;
12675
- token_type: string;
12676
- } | "recently" | {
12677
- type: string;
12678
- id: string;
12679
- content_raw?: any;
12680
- }[] | undefined;
12681
12875
  guards?: {
12682
12876
  op: "add";
12683
12877
  guard: {
@@ -12696,6 +12890,20 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12696
12890
  } | {
12697
12891
  op: "clear";
12698
12892
  } | undefined;
12893
+ location?: string | undefined;
12894
+ owner_receive?: {
12895
+ received: {
12896
+ id: string;
12897
+ balance: string | number;
12898
+ payment: string;
12899
+ }[];
12900
+ balance: string | number;
12901
+ token_type: string;
12902
+ } | "recently" | {
12903
+ type: string;
12904
+ id: string;
12905
+ content_raw?: any;
12906
+ }[] | undefined;
12699
12907
  um?: string | null | undefined;
12700
12908
  feedback?: {
12701
12909
  who: {
@@ -12748,6 +12956,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12748
12956
  confirmed?: boolean | undefined;
12749
12957
  user_intent_phrases?: string[] | undefined;
12750
12958
  project?: string | undefined;
12959
+ client_schema_version?: string | undefined;
12960
+ schema_strict_mode?: boolean | undefined;
12751
12961
  } | undefined;
12752
12962
  }>, z.ZodObject<{
12753
12963
  operation_type: z.ZodLiteral<"order">;
@@ -13040,6 +13250,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13040
13250
  confirmed: z.ZodOptional<z.ZodBoolean>;
13041
13251
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13042
13252
  project: z.ZodOptional<z.ZodString>;
13253
+ client_schema_version: z.ZodOptional<z.ZodString>;
13254
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
13043
13255
  }, "strict", z.ZodTypeAny, {
13044
13256
  account: string;
13045
13257
  no_cache?: boolean | undefined;
@@ -13049,6 +13261,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13049
13261
  confirmed?: boolean | undefined;
13050
13262
  user_intent_phrases?: string[] | undefined;
13051
13263
  project?: string | undefined;
13264
+ client_schema_version?: string | undefined;
13265
+ schema_strict_mode?: boolean | undefined;
13052
13266
  }, {
13053
13267
  no_cache?: boolean | undefined;
13054
13268
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -13058,6 +13272,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13058
13272
  confirmed?: boolean | undefined;
13059
13273
  user_intent_phrases?: string[] | undefined;
13060
13274
  project?: string | undefined;
13275
+ client_schema_version?: string | undefined;
13276
+ schema_strict_mode?: boolean | undefined;
13061
13277
  }>>;
13062
13278
  submission: z.ZodOptional<z.ZodObject<{
13063
13279
  type: z.ZodLiteral<"submission">;
@@ -13239,7 +13455,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13239
13455
  }[];
13240
13456
  }[];
13241
13457
  }>>;
13242
- }, "strip", z.ZodTypeAny, {
13458
+ }, "strict", z.ZodTypeAny, {
13243
13459
  data: {
13244
13460
  object: string;
13245
13461
  progress?: {
@@ -13329,6 +13545,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13329
13545
  confirmed?: boolean | undefined;
13330
13546
  user_intent_phrases?: string[] | undefined;
13331
13547
  project?: string | undefined;
13548
+ client_schema_version?: string | undefined;
13549
+ schema_strict_mode?: boolean | undefined;
13332
13550
  } | undefined;
13333
13551
  }, {
13334
13552
  data: {
@@ -13420,6 +13638,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13420
13638
  confirmed?: boolean | undefined;
13421
13639
  user_intent_phrases?: string[] | undefined;
13422
13640
  project?: string | undefined;
13641
+ client_schema_version?: string | undefined;
13642
+ schema_strict_mode?: boolean | undefined;
13423
13643
  } | undefined;
13424
13644
  }>, z.ZodObject<{
13425
13645
  operation_type: z.ZodLiteral<"gen_passport">;
@@ -13613,6 +13833,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13613
13833
  confirmed: z.ZodOptional<z.ZodBoolean>;
13614
13834
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13615
13835
  project: z.ZodOptional<z.ZodString>;
13836
+ client_schema_version: z.ZodOptional<z.ZodString>;
13837
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
13616
13838
  }, "strict", z.ZodTypeAny, {
13617
13839
  account: string;
13618
13840
  no_cache?: boolean | undefined;
@@ -13622,6 +13844,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13622
13844
  confirmed?: boolean | undefined;
13623
13845
  user_intent_phrases?: string[] | undefined;
13624
13846
  project?: string | undefined;
13847
+ client_schema_version?: string | undefined;
13848
+ schema_strict_mode?: boolean | undefined;
13625
13849
  }, {
13626
13850
  no_cache?: boolean | undefined;
13627
13851
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -13631,8 +13855,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13631
13855
  confirmed?: boolean | undefined;
13632
13856
  user_intent_phrases?: string[] | undefined;
13633
13857
  project?: string | undefined;
13858
+ client_schema_version?: string | undefined;
13859
+ schema_strict_mode?: boolean | undefined;
13634
13860
  }>>;
13635
- }, "strip", z.ZodTypeAny, {
13861
+ }, "strict", z.ZodTypeAny, {
13636
13862
  guard: string | string[];
13637
13863
  operation_type: "gen_passport";
13638
13864
  info?: {
@@ -13671,6 +13897,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13671
13897
  confirmed?: boolean | undefined;
13672
13898
  user_intent_phrases?: string[] | undefined;
13673
13899
  project?: string | undefined;
13900
+ client_schema_version?: string | undefined;
13901
+ schema_strict_mode?: boolean | undefined;
13674
13902
  } | undefined;
13675
13903
  }, {
13676
13904
  guard: string | string[];
@@ -13711,6 +13939,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13711
13939
  confirmed?: boolean | undefined;
13712
13940
  user_intent_phrases?: string[] | undefined;
13713
13941
  project?: string | undefined;
13942
+ client_schema_version?: string | undefined;
13943
+ schema_strict_mode?: boolean | undefined;
13714
13944
  } | undefined;
13715
13945
  }>, z.ZodObject<{
13716
13946
  operation_type: z.ZodLiteral<"proof">;
@@ -13776,6 +14006,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13776
14006
  confirmed: z.ZodOptional<z.ZodBoolean>;
13777
14007
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13778
14008
  project: z.ZodOptional<z.ZodString>;
14009
+ client_schema_version: z.ZodOptional<z.ZodString>;
14010
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
13779
14011
  }, "strict", z.ZodTypeAny, {
13780
14012
  account: string;
13781
14013
  no_cache?: boolean | undefined;
@@ -13785,6 +14017,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13785
14017
  confirmed?: boolean | undefined;
13786
14018
  user_intent_phrases?: string[] | undefined;
13787
14019
  project?: string | undefined;
14020
+ client_schema_version?: string | undefined;
14021
+ schema_strict_mode?: boolean | undefined;
13788
14022
  }, {
13789
14023
  no_cache?: boolean | undefined;
13790
14024
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -13794,6 +14028,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13794
14028
  confirmed?: boolean | undefined;
13795
14029
  user_intent_phrases?: string[] | undefined;
13796
14030
  project?: string | undefined;
14031
+ client_schema_version?: string | undefined;
14032
+ schema_strict_mode?: boolean | undefined;
13797
14033
  }>>;
13798
14034
  submission: z.ZodOptional<z.ZodObject<{
13799
14035
  type: z.ZodLiteral<"submission">;
@@ -13975,7 +14211,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13975
14211
  }[];
13976
14212
  }[];
13977
14213
  }>>;
13978
- }, "strip", z.ZodTypeAny, {
14214
+ }, "strict", z.ZodTypeAny, {
13979
14215
  data: {
13980
14216
  proof: string;
13981
14217
  server_pubkey: string;
@@ -14028,6 +14264,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14028
14264
  confirmed?: boolean | undefined;
14029
14265
  user_intent_phrases?: string[] | undefined;
14030
14266
  project?: string | undefined;
14267
+ client_schema_version?: string | undefined;
14268
+ schema_strict_mode?: boolean | undefined;
14031
14269
  } | undefined;
14032
14270
  }, {
14033
14271
  data: {
@@ -14082,6 +14320,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14082
14320
  confirmed?: boolean | undefined;
14083
14321
  user_intent_phrases?: string[] | undefined;
14084
14322
  project?: string | undefined;
14323
+ client_schema_version?: string | undefined;
14324
+ schema_strict_mode?: boolean | undefined;
14085
14325
  } | undefined;
14086
14326
  }>, z.ZodObject<{
14087
14327
  proof: z.ZodString;
@@ -14100,6 +14340,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14100
14340
  confirmed: z.ZodOptional<z.ZodBoolean>;
14101
14341
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14102
14342
  project: z.ZodOptional<z.ZodString>;
14343
+ client_schema_version: z.ZodOptional<z.ZodString>;
14344
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
14103
14345
  }, "strict", z.ZodTypeAny, {
14104
14346
  account: string;
14105
14347
  no_cache?: boolean | undefined;
@@ -14109,6 +14351,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14109
14351
  confirmed?: boolean | undefined;
14110
14352
  user_intent_phrases?: string[] | undefined;
14111
14353
  project?: string | undefined;
14354
+ client_schema_version?: string | undefined;
14355
+ schema_strict_mode?: boolean | undefined;
14112
14356
  }, {
14113
14357
  no_cache?: boolean | undefined;
14114
14358
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -14118,6 +14362,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14118
14362
  confirmed?: boolean | undefined;
14119
14363
  user_intent_phrases?: string[] | undefined;
14120
14364
  project?: string | undefined;
14365
+ client_schema_version?: string | undefined;
14366
+ schema_strict_mode?: boolean | undefined;
14121
14367
  }>>;
14122
14368
  } & {
14123
14369
  operation_type: z.ZodLiteral<"gen_proof">;
@@ -14137,6 +14383,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14137
14383
  confirmed?: boolean | undefined;
14138
14384
  user_intent_phrases?: string[] | undefined;
14139
14385
  project?: string | undefined;
14386
+ client_schema_version?: string | undefined;
14387
+ schema_strict_mode?: boolean | undefined;
14140
14388
  } | undefined;
14141
14389
  item_count?: string | number | null | undefined;
14142
14390
  about_address?: string | null | undefined;
@@ -14156,6 +14404,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14156
14404
  confirmed?: boolean | undefined;
14157
14405
  user_intent_phrases?: string[] | undefined;
14158
14406
  project?: string | undefined;
14407
+ client_schema_version?: string | undefined;
14408
+ schema_strict_mode?: boolean | undefined;
14159
14409
  } | undefined;
14160
14410
  item_count?: string | number | null | undefined;
14161
14411
  about_address?: string | null | undefined;
@@ -14181,6 +14431,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14181
14431
  machine?: string | null | undefined;
14182
14432
  order_allocators?: {
14183
14433
  description: string;
14434
+ threshold: string | number;
14184
14435
  allocators: {
14185
14436
  guard: string;
14186
14437
  sharing: {
@@ -14200,7 +14451,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14200
14451
  max?: string | number | null | undefined;
14201
14452
  fix?: string | number | undefined;
14202
14453
  }[];
14203
- threshold: string | number;
14204
14454
  } | null | undefined;
14205
14455
  sales?: {
14206
14456
  op: "add";
@@ -14390,48 +14640,27 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14390
14640
  confirmed?: boolean | undefined;
14391
14641
  user_intent_phrases?: string[] | undefined;
14392
14642
  project?: string | undefined;
14643
+ client_schema_version?: string | undefined;
14644
+ schema_strict_mode?: boolean | undefined;
14393
14645
  } | undefined;
14394
14646
  } | {
14395
14647
  data: {
14396
14648
  object: string | {
14397
- name?: string | undefined;
14398
- replaceExistName?: boolean | undefined;
14399
- tags?: string[] | undefined;
14400
- onChain?: boolean | undefined;
14401
- permission?: string | {
14402
- name?: string | undefined;
14403
- description?: string | undefined;
14404
- replaceExistName?: boolean | undefined;
14405
- tags?: string[] | undefined;
14406
- onChain?: boolean | undefined;
14407
- } | undefined;
14408
- };
14409
- description?: string | undefined;
14410
- publish?: boolean | undefined;
14411
- pause?: boolean | undefined;
14412
- repository?: {
14413
- op: "set" | "add";
14414
- objects: string[];
14415
- } | {
14416
- op: "remove";
14417
- objects: string[];
14418
- } | {
14419
- op: "clear";
14420
- } | undefined;
14421
- owner_receive?: {
14422
- received: {
14423
- id: string;
14424
- balance: string | number;
14425
- payment: string;
14426
- }[];
14427
- balance: string | number;
14428
- token_type: string;
14429
- } | "recently" | {
14430
- type: string;
14431
- id: string;
14432
- content_raw?: any;
14433
- }[] | undefined;
14434
- um?: string | null | undefined;
14649
+ name?: string | undefined;
14650
+ replaceExistName?: boolean | undefined;
14651
+ tags?: string[] | undefined;
14652
+ onChain?: boolean | undefined;
14653
+ permission?: string | {
14654
+ name?: string | undefined;
14655
+ description?: string | undefined;
14656
+ replaceExistName?: boolean | undefined;
14657
+ tags?: string[] | undefined;
14658
+ onChain?: boolean | undefined;
14659
+ } | undefined;
14660
+ };
14661
+ description?: string | undefined;
14662
+ publish?: boolean | undefined;
14663
+ pause?: boolean | undefined;
14435
14664
  node?: {
14436
14665
  op: "add";
14437
14666
  nodes: {
@@ -14518,6 +14747,29 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14518
14747
  } | {
14519
14748
  json_or_markdown_file: string;
14520
14749
  } | undefined;
14750
+ repository?: {
14751
+ op: "set" | "add";
14752
+ objects: string[];
14753
+ } | {
14754
+ op: "remove";
14755
+ objects: string[];
14756
+ } | {
14757
+ op: "clear";
14758
+ } | undefined;
14759
+ owner_receive?: {
14760
+ received: {
14761
+ id: string;
14762
+ balance: string | number;
14763
+ payment: string;
14764
+ }[];
14765
+ balance: string | number;
14766
+ token_type: string;
14767
+ } | "recently" | {
14768
+ type: string;
14769
+ id: string;
14770
+ content_raw?: any;
14771
+ }[] | undefined;
14772
+ um?: string | null | undefined;
14521
14773
  progress_new?: {
14522
14774
  namedNew?: {
14523
14775
  name?: string | undefined;
@@ -14585,6 +14837,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14585
14837
  confirmed?: boolean | undefined;
14586
14838
  user_intent_phrases?: string[] | undefined;
14587
14839
  project?: string | undefined;
14840
+ client_schema_version?: string | undefined;
14841
+ schema_strict_mode?: boolean | undefined;
14588
14842
  } | undefined;
14589
14843
  } | {
14590
14844
  data: {
@@ -14657,6 +14911,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14657
14911
  confirmed?: boolean | undefined;
14658
14912
  user_intent_phrases?: string[] | undefined;
14659
14913
  project?: string | undefined;
14914
+ client_schema_version?: string | undefined;
14915
+ schema_strict_mode?: boolean | undefined;
14660
14916
  } | undefined;
14661
14917
  } | {
14662
14918
  data: {
@@ -14708,7 +14964,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14708
14964
  id_from_submission?: number | undefined;
14709
14965
  data_from_submission?: number | undefined;
14710
14966
  }[];
14711
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
14967
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "clock" | "None";
14712
14968
  quote_guard?: string | null | undefined;
14713
14969
  }[];
14714
14970
  } | {
@@ -14785,6 +15041,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14785
15041
  confirmed?: boolean | undefined;
14786
15042
  user_intent_phrases?: string[] | undefined;
14787
15043
  project?: string | undefined;
15044
+ client_schema_version?: string | undefined;
15045
+ schema_strict_mode?: boolean | undefined;
14788
15046
  } | undefined;
14789
15047
  } | {
14790
15048
  data: {
@@ -14829,6 +15087,28 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14829
15087
  onChain?: boolean | undefined;
14830
15088
  } | undefined;
14831
15089
  } | undefined;
15090
+ usage_guard?: string | null | undefined;
15091
+ voting_guard?: {
15092
+ op: "set" | "add";
15093
+ guards: {
15094
+ guard: string;
15095
+ vote_weight: {
15096
+ GuardIdentifier: number;
15097
+ } | {
15098
+ FixedValue: number;
15099
+ };
15100
+ }[];
15101
+ } | {
15102
+ op: "remove";
15103
+ guards: string[];
15104
+ } | {
15105
+ op: "clear";
15106
+ } | undefined;
15107
+ vote?: {
15108
+ arb: string;
15109
+ votes: number[];
15110
+ voting_guard?: string | undefined;
15111
+ } | undefined;
14832
15112
  location?: string | undefined;
14833
15113
  owner_receive?: {
14834
15114
  received: {
@@ -14849,23 +15129,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14849
15129
  arb: string;
14850
15130
  feedback: string;
14851
15131
  } | undefined;
14852
- voting_guard?: {
14853
- op: "set" | "add";
14854
- guards: {
14855
- guard: string;
14856
- vote_weight: {
14857
- GuardIdentifier: number;
14858
- } | {
14859
- FixedValue: number;
14860
- };
14861
- }[];
14862
- } | {
14863
- op: "remove";
14864
- guards: string[];
14865
- } | {
14866
- op: "clear";
14867
- } | undefined;
14868
- usage_guard?: string | null | undefined;
14869
15132
  confirm?: {
14870
15133
  arb: string;
14871
15134
  voting_deadline: number | null;
@@ -14874,11 +15137,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14874
15137
  arb: string;
14875
15138
  voting_deadline: number | null;
14876
15139
  } | undefined;
14877
- vote?: {
14878
- arb: string;
14879
- votes: number[];
14880
- voting_guard?: string | undefined;
14881
- } | undefined;
14882
15140
  arb_withdraw?: {
14883
15141
  arb: string;
14884
15142
  } | undefined;
@@ -14935,6 +15193,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14935
15193
  confirmed?: boolean | undefined;
14936
15194
  user_intent_phrases?: string[] | undefined;
14937
15195
  project?: string | undefined;
15196
+ client_schema_version?: string | undefined;
15197
+ schema_strict_mode?: boolean | undefined;
14938
15198
  } | undefined;
14939
15199
  } | {
14940
15200
  data: {
@@ -15023,6 +15283,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15023
15283
  confirmed?: boolean | undefined;
15024
15284
  user_intent_phrases?: string[] | undefined;
15025
15285
  project?: string | undefined;
15286
+ client_schema_version?: string | undefined;
15287
+ schema_strict_mode?: boolean | undefined;
15026
15288
  } | undefined;
15027
15289
  } | {
15028
15290
  data: {
@@ -15185,6 +15447,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15185
15447
  confirmed?: boolean | undefined;
15186
15448
  user_intent_phrases?: string[] | undefined;
15187
15449
  project?: string | undefined;
15450
+ client_schema_version?: string | undefined;
15451
+ schema_strict_mode?: boolean | undefined;
15188
15452
  } | undefined;
15189
15453
  } | {
15190
15454
  data: {
@@ -15294,6 +15558,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15294
15558
  confirmed?: boolean | undefined;
15295
15559
  user_intent_phrases?: string[] | undefined;
15296
15560
  project?: string | undefined;
15561
+ client_schema_version?: string | undefined;
15562
+ schema_strict_mode?: boolean | undefined;
15297
15563
  } | undefined;
15298
15564
  } | {
15299
15565
  data: {
@@ -15311,6 +15577,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15311
15577
  };
15312
15578
  allocators: {
15313
15579
  description: string;
15580
+ threshold: string | number;
15314
15581
  allocators: {
15315
15582
  guard: string;
15316
15583
  sharing: {
@@ -15330,7 +15597,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15330
15597
  max?: string | number | null | undefined;
15331
15598
  fix?: string | number | undefined;
15332
15599
  }[];
15333
- threshold: string | number;
15334
15600
  };
15335
15601
  payment_info: {
15336
15602
  index: string | number;
@@ -15388,6 +15654,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15388
15654
  confirmed?: boolean | undefined;
15389
15655
  user_intent_phrases?: string[] | undefined;
15390
15656
  project?: string | undefined;
15657
+ client_schema_version?: string | undefined;
15658
+ schema_strict_mode?: boolean | undefined;
15391
15659
  } | undefined;
15392
15660
  } | {
15393
15661
  data: {
@@ -15398,19 +15666,58 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15398
15666
  onChain?: boolean | undefined;
15399
15667
  } | undefined;
15400
15668
  description?: string | undefined;
15401
- owner_receive?: {
15402
- received: {
15403
- id: string;
15404
- balance: string | number;
15405
- payment: string;
15406
- }[];
15407
- balance: string | number;
15408
- token_type: string;
15409
- } | "recently" | {
15410
- type: string;
15411
- id: string;
15412
- content_raw?: any;
15413
- }[] | undefined;
15669
+ table?: {
15670
+ op: "add perm by index";
15671
+ entity: {
15672
+ entities: {
15673
+ name_or_address?: string | undefined;
15674
+ local_mark_first?: boolean | undefined;
15675
+ }[];
15676
+ check_all_founded?: boolean | undefined;
15677
+ };
15678
+ index: number;
15679
+ } | {
15680
+ op: "set perm by index";
15681
+ entity: {
15682
+ entities: {
15683
+ name_or_address?: string | undefined;
15684
+ local_mark_first?: boolean | undefined;
15685
+ }[];
15686
+ check_all_founded?: boolean | undefined;
15687
+ };
15688
+ index: number;
15689
+ } | {
15690
+ op: "remove perm by index";
15691
+ entity: {
15692
+ entities: {
15693
+ name_or_address?: string | undefined;
15694
+ local_mark_first?: boolean | undefined;
15695
+ }[];
15696
+ check_all_founded?: boolean | undefined;
15697
+ };
15698
+ index: number;
15699
+ } | {
15700
+ op: "add perm by entity";
15701
+ entity: {
15702
+ name_or_address?: string | undefined;
15703
+ local_mark_first?: boolean | undefined;
15704
+ };
15705
+ index: number[];
15706
+ } | {
15707
+ op: "set perm by entity";
15708
+ entity: {
15709
+ name_or_address?: string | undefined;
15710
+ local_mark_first?: boolean | undefined;
15711
+ };
15712
+ index: number[];
15713
+ } | {
15714
+ op: "remove perm by entity";
15715
+ entity: {
15716
+ name_or_address?: string | undefined;
15717
+ local_mark_first?: boolean | undefined;
15718
+ };
15719
+ index: number[];
15720
+ } | undefined;
15414
15721
  entity?: {
15415
15722
  op: "swap";
15416
15723
  entity1: {
@@ -15448,6 +15755,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15448
15755
  local_mark_first?: boolean | undefined;
15449
15756
  };
15450
15757
  } | undefined;
15758
+ owner_receive?: {
15759
+ received: {
15760
+ id: string;
15761
+ balance: string | number;
15762
+ payment: string;
15763
+ }[];
15764
+ balance: string | number;
15765
+ token_type: string;
15766
+ } | "recently" | {
15767
+ type: string;
15768
+ id: string;
15769
+ content_raw?: any;
15770
+ }[] | undefined;
15451
15771
  um?: string | null | undefined;
15452
15772
  builder?: {
15453
15773
  name_or_address?: string | undefined;
@@ -15473,58 +15793,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15473
15793
  } | {
15474
15794
  op: "clear";
15475
15795
  } | undefined;
15476
- table?: {
15477
- op: "add perm by index";
15478
- entity: {
15479
- entities: {
15480
- name_or_address?: string | undefined;
15481
- local_mark_first?: boolean | undefined;
15482
- }[];
15483
- check_all_founded?: boolean | undefined;
15484
- };
15485
- index: number;
15486
- } | {
15487
- op: "set perm by index";
15488
- entity: {
15489
- entities: {
15490
- name_or_address?: string | undefined;
15491
- local_mark_first?: boolean | undefined;
15492
- }[];
15493
- check_all_founded?: boolean | undefined;
15494
- };
15495
- index: number;
15496
- } | {
15497
- op: "remove perm by index";
15498
- entity: {
15499
- entities: {
15500
- name_or_address?: string | undefined;
15501
- local_mark_first?: boolean | undefined;
15502
- }[];
15503
- check_all_founded?: boolean | undefined;
15504
- };
15505
- index: number;
15506
- } | {
15507
- op: "add perm by entity";
15508
- entity: {
15509
- name_or_address?: string | undefined;
15510
- local_mark_first?: boolean | undefined;
15511
- };
15512
- index: number[];
15513
- } | {
15514
- op: "set perm by entity";
15515
- entity: {
15516
- name_or_address?: string | undefined;
15517
- local_mark_first?: boolean | undefined;
15518
- };
15519
- index: number[];
15520
- } | {
15521
- op: "remove perm by entity";
15522
- entity: {
15523
- name_or_address?: string | undefined;
15524
- local_mark_first?: boolean | undefined;
15525
- };
15526
- index: number[];
15527
- } | undefined;
15528
15796
  apply?: string[] | undefined;
15529
15797
  };
15530
15798
  operation_type: "permission";
@@ -15537,17 +15805,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15537
15805
  confirmed?: boolean | undefined;
15538
15806
  user_intent_phrases?: string[] | undefined;
15539
15807
  project?: string | undefined;
15808
+ client_schema_version?: string | undefined;
15809
+ schema_strict_mode?: boolean | undefined;
15540
15810
  } | undefined;
15541
15811
  } | {
15542
15812
  data: {
15543
15813
  description?: string | undefined;
15544
- namedNew?: {
15545
- name?: string | undefined;
15546
- replaceExistName?: boolean | undefined;
15547
- tags?: string[] | undefined;
15548
- onChain?: boolean | undefined;
15549
- } | undefined;
15550
- root?: any;
15551
15814
  table?: {
15552
15815
  identifier: number;
15553
15816
  b_submission: boolean;
@@ -15564,10 +15827,25 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15564
15827
  check_all_founded?: boolean | undefined;
15565
15828
  } | string[] | boolean[] | number[] | number[][] | undefined;
15566
15829
  }[] | undefined;
15830
+ root?: any;
15567
15831
  rely?: {
15568
15832
  guards: string[];
15569
15833
  logic_or?: boolean | undefined;
15570
15834
  } | undefined;
15835
+ namedNew?: {
15836
+ name?: string | undefined;
15837
+ replaceExistName?: boolean | undefined;
15838
+ tags?: string[] | undefined;
15839
+ onChain?: boolean | undefined;
15840
+ } | undefined;
15841
+ binding_hint?: {
15842
+ action: "custom" | "gen_passport" | "buy" | "dispute" | "forward" | "allocate" | "claim_reward" | "vote" | "write_repository" | "submit_progress";
15843
+ host_object: "Machine" | "Progress" | "Service" | "Arbitration" | "Demand" | "Reward" | "Repository" | "Standalone";
15844
+ binding_field: "guard" | "none" | "submission" | "buy_guard" | "order_allocators" | "Forward.guard" | "write_guard" | "usage_guard" | "voting_guard" | "ServiceGuard";
15845
+ rule_sentence?: string | undefined;
15846
+ failure_conditions?: string[] | undefined;
15847
+ circular_reference?: boolean | undefined;
15848
+ } | undefined;
15571
15849
  };
15572
15850
  operation_type: "guard";
15573
15851
  env?: {
@@ -15579,6 +15857,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15579
15857
  confirmed?: boolean | undefined;
15580
15858
  user_intent_phrases?: string[] | undefined;
15581
15859
  project?: string | undefined;
15860
+ client_schema_version?: string | undefined;
15861
+ schema_strict_mode?: boolean | undefined;
15582
15862
  } | undefined;
15583
15863
  } | {
15584
15864
  data: {
@@ -15651,6 +15931,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15651
15931
  confirmed?: boolean | undefined;
15652
15932
  user_intent_phrases?: string[] | undefined;
15653
15933
  project?: string | undefined;
15934
+ client_schema_version?: string | undefined;
15935
+ schema_strict_mode?: boolean | undefined;
15654
15936
  } | undefined;
15655
15937
  } | {
15656
15938
  data: {
@@ -15689,6 +15971,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15689
15971
  confirmed?: boolean | undefined;
15690
15972
  user_intent_phrases?: string[] | undefined;
15691
15973
  project?: string | undefined;
15974
+ client_schema_version?: string | undefined;
15975
+ schema_strict_mode?: boolean | undefined;
15692
15976
  } | undefined;
15693
15977
  } | {
15694
15978
  data: {
@@ -15715,20 +15999,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15715
15999
  } | {
15716
16000
  op: "clear";
15717
16001
  } | undefined;
15718
- location?: string | undefined;
15719
- owner_receive?: {
15720
- received: {
15721
- id: string;
15722
- balance: string | number;
15723
- payment: string;
15724
- }[];
15725
- balance: string | number;
15726
- token_type: string;
15727
- } | "recently" | {
15728
- type: string;
15729
- id: string;
15730
- content_raw?: any;
15731
- }[] | undefined;
15732
16002
  guards?: {
15733
16003
  op: "add";
15734
16004
  guard: {
@@ -15741,12 +16011,26 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15741
16011
  guard: string;
15742
16012
  service_identifier?: number | null | undefined;
15743
16013
  }[];
15744
- } | {
15745
- op: "remove";
15746
- guard: string[];
15747
- } | {
15748
- op: "clear";
15749
- } | undefined;
16014
+ } | {
16015
+ op: "remove";
16016
+ guard: string[];
16017
+ } | {
16018
+ op: "clear";
16019
+ } | undefined;
16020
+ location?: string | undefined;
16021
+ owner_receive?: {
16022
+ received: {
16023
+ id: string;
16024
+ balance: string | number;
16025
+ payment: string;
16026
+ }[];
16027
+ balance: string | number;
16028
+ token_type: string;
16029
+ } | "recently" | {
16030
+ type: string;
16031
+ id: string;
16032
+ content_raw?: any;
16033
+ }[] | undefined;
15750
16034
  um?: string | null | undefined;
15751
16035
  feedback?: {
15752
16036
  who: {
@@ -15799,6 +16083,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15799
16083
  confirmed?: boolean | undefined;
15800
16084
  user_intent_phrases?: string[] | undefined;
15801
16085
  project?: string | undefined;
16086
+ client_schema_version?: string | undefined;
16087
+ schema_strict_mode?: boolean | undefined;
15802
16088
  } | undefined;
15803
16089
  } | {
15804
16090
  data: {
@@ -15890,6 +16176,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15890
16176
  confirmed?: boolean | undefined;
15891
16177
  user_intent_phrases?: string[] | undefined;
15892
16178
  project?: string | undefined;
16179
+ client_schema_version?: string | undefined;
16180
+ schema_strict_mode?: boolean | undefined;
15893
16181
  } | undefined;
15894
16182
  } | {
15895
16183
  guard: string | string[];
@@ -15930,6 +16218,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15930
16218
  confirmed?: boolean | undefined;
15931
16219
  user_intent_phrases?: string[] | undefined;
15932
16220
  project?: string | undefined;
16221
+ client_schema_version?: string | undefined;
16222
+ schema_strict_mode?: boolean | undefined;
15933
16223
  } | undefined;
15934
16224
  } | {
15935
16225
  data: {
@@ -15984,6 +16274,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15984
16274
  confirmed?: boolean | undefined;
15985
16275
  user_intent_phrases?: string[] | undefined;
15986
16276
  project?: string | undefined;
16277
+ client_schema_version?: string | undefined;
16278
+ schema_strict_mode?: boolean | undefined;
15987
16279
  } | undefined;
15988
16280
  } | {
15989
16281
  operation_type: "gen_proof";
@@ -16001,6 +16293,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
16001
16293
  confirmed?: boolean | undefined;
16002
16294
  user_intent_phrases?: string[] | undefined;
16003
16295
  project?: string | undefined;
16296
+ client_schema_version?: string | undefined;
16297
+ schema_strict_mode?: boolean | undefined;
16004
16298
  } | undefined;
16005
16299
  item_count?: string | number | null | undefined;
16006
16300
  about_address?: string | null | undefined;
@@ -16041,7 +16335,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16041
16335
  account?: string | undefined;
16042
16336
  }>;
16043
16337
  outputPath: z.ZodString;
16044
- }, "strip", z.ZodTypeAny, {
16338
+ }, "strict", z.ZodTypeAny, {
16045
16339
  options: {
16046
16340
  markdown_text: string;
16047
16341
  images?: {
@@ -16070,7 +16364,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16070
16364
  wipFilePath: z.ZodString;
16071
16365
  hash_equal: z.ZodOptional<z.ZodString>;
16072
16366
  requireSignature: z.ZodOptional<z.ZodBoolean>;
16073
- }, "strip", z.ZodTypeAny, {
16367
+ }, "strict", z.ZodTypeAny, {
16074
16368
  type: "verify";
16075
16369
  wipFilePath: string;
16076
16370
  hash_equal?: string | undefined;
@@ -16085,7 +16379,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16085
16379
  wipFilePath: z.ZodString;
16086
16380
  account: z.ZodOptional<z.ZodString>;
16087
16381
  outputPath: z.ZodOptional<z.ZodString>;
16088
- }, "strip", z.ZodTypeAny, {
16382
+ }, "strict", z.ZodTypeAny, {
16089
16383
  type: "sign";
16090
16384
  wipFilePath: string;
16091
16385
  account?: string | undefined;
@@ -16111,7 +16405,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16111
16405
  theme?: "light" | "dark" | undefined;
16112
16406
  outputPath?: string | undefined;
16113
16407
  }>>;
16114
- }, "strip", z.ZodTypeAny, {
16408
+ }, "strict", z.ZodTypeAny, {
16115
16409
  type: "wip2html";
16116
16410
  wipPath: string;
16117
16411
  options?: {
@@ -16165,7 +16459,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16165
16459
  limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
16166
16460
  no_cache: z.ZodOptional<z.ZodBoolean>;
16167
16461
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16168
- }, "strip", z.ZodTypeAny, {
16462
+ }, "strict", z.ZodTypeAny, {
16169
16463
  parent: string;
16170
16464
  query_type: "onchain_table";
16171
16465
  no_cache?: boolean | undefined;
@@ -16195,7 +16489,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16195
16489
  }>, z.ZodNumber]>;
16196
16490
  no_cache: z.ZodOptional<z.ZodBoolean>;
16197
16491
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16198
- }, "strip", z.ZodTypeAny, {
16492
+ }, "strict", z.ZodTypeAny, {
16199
16493
  name: string;
16200
16494
  parent: string;
16201
16495
  entity: number | {
@@ -16230,7 +16524,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16230
16524
  }>, z.ZodString]>;
16231
16525
  no_cache: z.ZodOptional<z.ZodBoolean>;
16232
16526
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16233
- }, "strip", z.ZodTypeAny, {
16527
+ }, "strict", z.ZodTypeAny, {
16234
16528
  address: string | {
16235
16529
  name_or_address?: string | undefined;
16236
16530
  local_mark_first?: boolean | undefined;
@@ -16262,7 +16556,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16262
16556
  }>, z.ZodString]>;
16263
16557
  no_cache: z.ZodOptional<z.ZodBoolean>;
16264
16558
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16265
- }, "strip", z.ZodTypeAny, {
16559
+ }, "strict", z.ZodTypeAny, {
16266
16560
  address: string | {
16267
16561
  name_or_address?: string | undefined;
16268
16562
  local_mark_first?: boolean | undefined;
@@ -16292,7 +16586,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16292
16586
  }>, z.ZodString]>;
16293
16587
  no_cache: z.ZodOptional<z.ZodBoolean>;
16294
16588
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16295
- }, "strip", z.ZodTypeAny, {
16589
+ }, "strict", z.ZodTypeAny, {
16296
16590
  address: string | {
16297
16591
  name_or_address?: string | undefined;
16298
16592
  local_mark_first?: boolean | undefined;
@@ -16323,7 +16617,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16323
16617
  }>;
16324
16618
  no_cache: z.ZodOptional<z.ZodBoolean>;
16325
16619
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16326
- }, "strip", z.ZodTypeAny, {
16620
+ }, "strict", z.ZodTypeAny, {
16327
16621
  address: {
16328
16622
  name_or_address?: string | undefined;
16329
16623
  local_mark_first?: boolean | undefined;
@@ -16356,7 +16650,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16356
16650
  }>;
16357
16651
  no_cache: z.ZodOptional<z.ZodBoolean>;
16358
16652
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16359
- }, "strip", z.ZodTypeAny, {
16653
+ }, "strict", z.ZodTypeAny, {
16360
16654
  address: {
16361
16655
  name_or_address?: string | undefined;
16362
16656
  local_mark_first?: boolean | undefined;
@@ -16389,7 +16683,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16389
16683
  }>;
16390
16684
  no_cache: z.ZodOptional<z.ZodBoolean>;
16391
16685
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16392
- }, "strip", z.ZodTypeAny, {
16686
+ }, "strict", z.ZodTypeAny, {
16393
16687
  address: {
16394
16688
  name_or_address?: string | undefined;
16395
16689
  local_mark_first?: boolean | undefined;
@@ -16413,7 +16707,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16413
16707
  key: z.ZodString;
16414
16708
  no_cache: z.ZodOptional<z.ZodBoolean>;
16415
16709
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16416
- }, "strip", z.ZodTypeAny, {
16710
+ }, "strict", z.ZodTypeAny, {
16417
16711
  parent: string;
16418
16712
  key: string;
16419
16713
  query_type: "onchain_table_item_machine_node";
@@ -16431,7 +16725,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16431
16725
  u64: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
16432
16726
  no_cache: z.ZodOptional<z.ZodBoolean>;
16433
16727
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16434
- }, "strip", z.ZodTypeAny, {
16728
+ }, "strict", z.ZodTypeAny, {
16435
16729
  u64: string | number;
16436
16730
  parent: string;
16437
16731
  query_type: "onchain_table_item_progress_history";
@@ -16458,7 +16752,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16458
16752
  }>;
16459
16753
  no_cache: z.ZodOptional<z.ZodBoolean>;
16460
16754
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16461
- }, "strip", z.ZodTypeAny, {
16755
+ }, "strict", z.ZodTypeAny, {
16462
16756
  address: {
16463
16757
  name_or_address?: string | undefined;
16464
16758
  local_mark_first?: boolean | undefined;
@@ -16483,7 +16777,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16483
16777
  key_value: z.ZodAny;
16484
16778
  no_cache: z.ZodOptional<z.ZodBoolean>;
16485
16779
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16486
- }, "strip", z.ZodTypeAny, {
16780
+ }, "strict", z.ZodTypeAny, {
16487
16781
  parent: string;
16488
16782
  query_type: "onchain_table_item_generic";
16489
16783
  key_type: string;
@@ -16595,7 +16889,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16595
16889
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
16596
16890
  key_value?: any;
16597
16891
  }, unknown>;
16598
- export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
16892
+ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
16599
16893
  query_type: z.ZodLiteral<"local_mark_list">;
16600
16894
  filter: z.ZodOptional<z.ZodObject<{
16601
16895
  name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -16646,7 +16940,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16646
16940
  lte?: number | undefined;
16647
16941
  } | undefined;
16648
16942
  }>>;
16649
- }, "strip", z.ZodTypeAny, {
16943
+ }, "strict", z.ZodTypeAny, {
16650
16944
  query_type: "local_mark_list";
16651
16945
  filter?: {
16652
16946
  address?: string | undefined;
@@ -16736,7 +17030,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16736
17030
  hasMessenger?: boolean | undefined;
16737
17031
  includePubkey?: boolean | undefined;
16738
17032
  }>>;
16739
- }, "strip", z.ZodTypeAny, {
17033
+ }, "strict", z.ZodTypeAny, {
16740
17034
  query_type: "account_list";
16741
17035
  filter?: {
16742
17036
  address?: string | undefined;
@@ -16823,7 +17117,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16823
17117
  default?: string | undefined;
16824
17118
  contents?: string[] | undefined;
16825
17119
  }>>;
16826
- }, "strip", z.ZodTypeAny, {
17120
+ }, "strict", z.ZodTypeAny, {
16827
17121
  query_type: "local_info_list";
16828
17122
  filter?: {
16829
17123
  name?: string | undefined;
@@ -16868,7 +17162,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16868
17162
  type?: string | undefined;
16869
17163
  alias_or_name?: string | undefined;
16870
17164
  }>>;
16871
- }, "strip", z.ZodTypeAny, {
17165
+ }, "strict", z.ZodTypeAny, {
16872
17166
  query_type: "token_list";
16873
17167
  filter?: {
16874
17168
  symbol?: string | undefined;
@@ -16889,7 +17183,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16889
17183
  coin: z.ZodOptional<z.ZodObject<{
16890
17184
  cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
16891
17185
  limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
16892
- }, "strip", z.ZodTypeAny, {
17186
+ }, "strict", z.ZodTypeAny, {
16893
17187
  cursor?: string | null | undefined;
16894
17188
  limit?: number | null | undefined;
16895
17189
  }, {
@@ -16898,7 +17192,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16898
17192
  }>>;
16899
17193
  token_type: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
16900
17194
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16901
- }, "strip", z.ZodTypeAny, {
17195
+ }, "strict", z.ZodTypeAny, {
16902
17196
  query_type: "account_balance";
16903
17197
  name_or_address?: string | undefined;
16904
17198
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -16921,18 +17215,18 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16921
17215
  }>, z.ZodObject<{
16922
17216
  query_type: z.ZodLiteral<"local_names">;
16923
17217
  addresses: z.ZodArray<z.ZodString, "many">;
16924
- }, "strip", z.ZodTypeAny, {
17218
+ }, "strict", z.ZodTypeAny, {
16925
17219
  query_type: "local_names";
16926
17220
  addresses: string[];
16927
17221
  }, {
16928
17222
  query_type: "local_names";
16929
17223
  addresses: string[];
16930
- }>]>, z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
17224
+ }>, z.ZodObject<{
16931
17225
  query_type: z.ZodLiteral<"onchain_personal_profile">;
16932
17226
  account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
16933
17227
  no_cache: z.ZodOptional<z.ZodBoolean>;
16934
17228
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16935
- }, "strip", z.ZodTypeAny, {
17229
+ }, "strict", z.ZodTypeAny, {
16936
17230
  query_type: "onchain_personal_profile";
16937
17231
  no_cache?: boolean | undefined;
16938
17232
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -16947,7 +17241,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16947
17241
  objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
16948
17242
  no_cache: z.ZodOptional<z.ZodBoolean>;
16949
17243
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16950
- }, "strip", z.ZodTypeAny, {
17244
+ }, "strict", z.ZodTypeAny, {
16951
17245
  objects: string[];
16952
17246
  query_type: "onchain_objects";
16953
17247
  no_cache?: boolean | undefined;
@@ -16974,7 +17268,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16974
17268
  limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
16975
17269
  no_cache: z.ZodOptional<z.ZodBoolean>;
16976
17270
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16977
- }, "strip", z.ZodTypeAny, {
17271
+ }, "strict", z.ZodTypeAny, {
16978
17272
  name_or_address: string | {
16979
17273
  name_or_address?: string | undefined;
16980
17274
  local_mark_first?: boolean | undefined;
@@ -16996,7 +17290,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16996
17290
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
16997
17291
  cursor?: string | null | undefined;
16998
17292
  limit?: number | null | undefined;
16999
- }>]>]>, {
17293
+ }>]>, {
17000
17294
  query_type: "local_mark_list";
17001
17295
  filter?: {
17002
17296
  address?: string | undefined;
@@ -21302,9 +21596,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21302
21596
  msg: string;
21303
21597
  accomplished: boolean;
21304
21598
  }[];
21599
+ threshold: string | number;
21305
21600
  next_node: string;
21306
21601
  weights: string | number;
21307
- threshold: string | number;
21308
21602
  }, {
21309
21603
  forwards: {
21310
21604
  time: string | number;
@@ -21318,9 +21612,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21318
21612
  msg: string;
21319
21613
  accomplished: boolean;
21320
21614
  }[];
21615
+ threshold: string | number;
21321
21616
  next_node: string;
21322
21617
  weights: string | number;
21323
- threshold: string | number;
21324
21618
  }>, "many">;
21325
21619
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21326
21620
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -21488,9 +21782,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21488
21782
  msg: string;
21489
21783
  accomplished: boolean;
21490
21784
  }[];
21785
+ threshold: string | number;
21491
21786
  next_node: string;
21492
21787
  weights: string | number;
21493
- threshold: string | number;
21494
21788
  }, {
21495
21789
  forwards: {
21496
21790
  time: string | number;
@@ -21504,9 +21798,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21504
21798
  msg: string;
21505
21799
  accomplished: boolean;
21506
21800
  }[];
21801
+ threshold: string | number;
21507
21802
  next_node: string;
21508
21803
  weights: string | number;
21509
- threshold: string | number;
21510
21804
  }>, "many">;
21511
21805
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21512
21806
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -21674,9 +21968,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21674
21968
  msg: string;
21675
21969
  accomplished: boolean;
21676
21970
  }[];
21971
+ threshold: string | number;
21677
21972
  next_node: string;
21678
21973
  weights: string | number;
21679
- threshold: string | number;
21680
21974
  }, {
21681
21975
  forwards: {
21682
21976
  time: string | number;
@@ -21690,9 +21984,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21690
21984
  msg: string;
21691
21985
  accomplished: boolean;
21692
21986
  }[];
21987
+ threshold: string | number;
21693
21988
  next_node: string;
21694
21989
  weights: string | number;
21695
- threshold: string | number;
21696
21990
  }>, "many">;
21697
21991
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21698
21992
  }, z.ZodTypeAny, "passthrough">>, z.ZodUndefined]>;
@@ -21863,9 +22157,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21863
22157
  msg: string;
21864
22158
  accomplished: boolean;
21865
22159
  }[];
22160
+ threshold: string | number;
21866
22161
  next_node: string;
21867
22162
  weights: string | number;
21868
- threshold: string | number;
21869
22163
  }, {
21870
22164
  forwards: {
21871
22165
  time: string | number;
@@ -21879,9 +22173,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21879
22173
  msg: string;
21880
22174
  accomplished: boolean;
21881
22175
  }[];
22176
+ threshold: string | number;
21882
22177
  next_node: string;
21883
22178
  weights: string | number;
21884
- threshold: string | number;
21885
22179
  }>, "many">;
21886
22180
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21887
22181
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -22052,9 +22346,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
22052
22346
  msg: string;
22053
22347
  accomplished: boolean;
22054
22348
  }[];
22349
+ threshold: string | number;
22055
22350
  next_node: string;
22056
22351
  weights: string | number;
22057
- threshold: string | number;
22058
22352
  }, {
22059
22353
  forwards: {
22060
22354
  time: string | number;
@@ -22068,9 +22362,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
22068
22362
  msg: string;
22069
22363
  accomplished: boolean;
22070
22364
  }[];
22365
+ threshold: string | number;
22071
22366
  next_node: string;
22072
22367
  weights: string | number;
22073
- threshold: string | number;
22074
22368
  }>, "many">;
22075
22369
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
22076
22370
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -22803,7 +23097,669 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
22803
23097
  }>, "many">>;
22804
23098
  }, z.ZodTypeAny, "passthrough"> | undefined;
22805
23099
  }>]>;
22806
- semantic: z.ZodOptional<z.ZodAny>;
23100
+ semantic: z.ZodOptional<z.ZodObject<{
23101
+ intent: z.ZodString;
23102
+ status: z.ZodEnum<["success", "partial", "failed", "pending_input"]>;
23103
+ summary: z.ZodString;
23104
+ created: z.ZodOptional<z.ZodArray<z.ZodObject<{
23105
+ id: z.ZodString;
23106
+ name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23107
+ role: z.ZodEnum<["Permission", "Guard", "Machine", "Progress", "Service", "Order", "Allocation", "Arbitration", "ArbCase", "Messenger", "Contact", "Demand", "Reward", "Personal", "Repository", "Treasury", "Discount", "Other"]>;
23108
+ relation: z.ZodOptional<z.ZodObject<{
23109
+ parent: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23110
+ relation_type: z.ZodOptional<z.ZodEnum<["machine_of", "guard_of", "allocator_of", "permission_of", "progress_of", "allocation_of", "arb_of", "other"]>>;
23111
+ }, "strip", z.ZodTypeAny, {
23112
+ parent?: string | null | undefined;
23113
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23114
+ }, {
23115
+ parent?: string | null | undefined;
23116
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23117
+ }>>;
23118
+ immutable: z.ZodOptional<z.ZodBoolean>;
23119
+ }, "strict", z.ZodTypeAny, {
23120
+ id: string;
23121
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23122
+ name?: string | null | undefined;
23123
+ relation?: {
23124
+ parent?: string | null | undefined;
23125
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23126
+ } | undefined;
23127
+ immutable?: boolean | undefined;
23128
+ }, {
23129
+ id: string;
23130
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23131
+ name?: string | null | undefined;
23132
+ relation?: {
23133
+ parent?: string | null | undefined;
23134
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23135
+ } | undefined;
23136
+ immutable?: boolean | undefined;
23137
+ }>, "many">>;
23138
+ modified: z.ZodOptional<z.ZodArray<z.ZodObject<{
23139
+ id: z.ZodString;
23140
+ name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23141
+ role: z.ZodEnum<["Permission", "Guard", "Machine", "Progress", "Service", "Order", "Allocation", "Arbitration", "ArbCase", "Messenger", "Contact", "Demand", "Reward", "Personal", "Repository", "Treasury", "Discount", "Other"]>;
23142
+ relation: z.ZodOptional<z.ZodObject<{
23143
+ parent: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23144
+ relation_type: z.ZodOptional<z.ZodEnum<["machine_of", "guard_of", "allocator_of", "permission_of", "progress_of", "allocation_of", "arb_of", "other"]>>;
23145
+ }, "strip", z.ZodTypeAny, {
23146
+ parent?: string | null | undefined;
23147
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23148
+ }, {
23149
+ parent?: string | null | undefined;
23150
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23151
+ }>>;
23152
+ immutable: z.ZodOptional<z.ZodBoolean>;
23153
+ }, "strict", z.ZodTypeAny, {
23154
+ id: string;
23155
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23156
+ name?: string | null | undefined;
23157
+ relation?: {
23158
+ parent?: string | null | undefined;
23159
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23160
+ } | undefined;
23161
+ immutable?: boolean | undefined;
23162
+ }, {
23163
+ id: string;
23164
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23165
+ name?: string | null | undefined;
23166
+ relation?: {
23167
+ parent?: string | null | undefined;
23168
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23169
+ } | undefined;
23170
+ immutable?: boolean | undefined;
23171
+ }>, "many">>;
23172
+ released: z.ZodOptional<z.ZodArray<z.ZodObject<{
23173
+ amount: z.ZodString;
23174
+ coinType: z.ZodString;
23175
+ role: z.ZodEnum<["payment", "refund", "change", "compensation", "reward", "gas", "deposit", "release", "other"]>;
23176
+ from: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23177
+ to: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23178
+ }, "strict", z.ZodTypeAny, {
23179
+ coinType: string;
23180
+ amount: string;
23181
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23182
+ from?: string | null | undefined;
23183
+ to?: string | null | undefined;
23184
+ }, {
23185
+ coinType: string;
23186
+ amount: string;
23187
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23188
+ from?: string | null | undefined;
23189
+ to?: string | null | undefined;
23190
+ }>, "many">>;
23191
+ events: z.ZodOptional<z.ZodArray<z.ZodObject<{
23192
+ event_type: z.ZodString;
23193
+ business_meaning: z.ZodString;
23194
+ category: z.ZodEnum<["lifecycle", "state_change", "fund_flow", "permission", "guard", "other"]>;
23195
+ related_object: z.ZodOptional<z.ZodString>;
23196
+ side_effect: z.ZodOptional<z.ZodString>;
23197
+ }, "strict", z.ZodTypeAny, {
23198
+ event_type: string;
23199
+ business_meaning: string;
23200
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23201
+ related_object?: string | undefined;
23202
+ side_effect?: string | undefined;
23203
+ }, {
23204
+ event_type: string;
23205
+ business_meaning: string;
23206
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23207
+ related_object?: string | undefined;
23208
+ side_effect?: string | undefined;
23209
+ }>, "many">>;
23210
+ next_actions: z.ZodOptional<z.ZodArray<z.ZodObject<{
23211
+ action: z.ZodString;
23212
+ reason: z.ZodString;
23213
+ tool: z.ZodOptional<z.ZodString>;
23214
+ prerequisite: z.ZodOptional<z.ZodString>;
23215
+ priority: z.ZodEnum<["required", "recommended", "optional"]>;
23216
+ }, "strict", z.ZodTypeAny, {
23217
+ action: string;
23218
+ reason: string;
23219
+ priority: "required" | "recommended" | "optional";
23220
+ tool?: string | undefined;
23221
+ prerequisite?: string | undefined;
23222
+ }, {
23223
+ action: string;
23224
+ reason: string;
23225
+ priority: "required" | "recommended" | "optional";
23226
+ tool?: string | undefined;
23227
+ prerequisite?: string | undefined;
23228
+ }>, "many">>;
23229
+ warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23230
+ experience: z.ZodOptional<z.ZodObject<{
23231
+ advice: z.ZodOptional<z.ZodString>;
23232
+ avoid: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23233
+ relevance: z.ZodOptional<z.ZodNumber>;
23234
+ matched_scenario: z.ZodOptional<z.ZodString>;
23235
+ }, "strict", z.ZodTypeAny, {
23236
+ advice?: string | undefined;
23237
+ avoid?: string[] | undefined;
23238
+ relevance?: number | undefined;
23239
+ matched_scenario?: string | undefined;
23240
+ }, {
23241
+ advice?: string | undefined;
23242
+ avoid?: string[] | undefined;
23243
+ relevance?: number | undefined;
23244
+ matched_scenario?: string | undefined;
23245
+ }>>;
23246
+ service_status: z.ZodOptional<z.ZodObject<{
23247
+ active: z.ZodArray<z.ZodString, "many">;
23248
+ inactive: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23249
+ }, "strict", z.ZodTypeAny, {
23250
+ active: string[];
23251
+ inactive?: string[] | undefined;
23252
+ }, {
23253
+ active: string[];
23254
+ inactive?: string[] | undefined;
23255
+ }>>;
23256
+ customer_advice: z.ZodOptional<z.ZodObject<{
23257
+ risk_score: z.ZodOptional<z.ZodNumber>;
23258
+ risk_level: z.ZodOptional<z.ZodEnum<["low", "medium_low", "medium_high", "high"]>>;
23259
+ recommendations: z.ZodArray<z.ZodString, "many">;
23260
+ reminders: z.ZodArray<z.ZodObject<{
23261
+ id: z.ZodString;
23262
+ stage: z.ZodEnum<["browse", "evaluate", "preorder", "in_progress", "complete", "after_sale"]>;
23263
+ priority: z.ZodEnum<["required", "recommended", "info", "reminder"]>;
23264
+ message: z.ZodString;
23265
+ action: z.ZodOptional<z.ZodString>;
23266
+ }, "strict", z.ZodTypeAny, {
23267
+ message: string;
23268
+ id: string;
23269
+ priority: "required" | "recommended" | "info" | "reminder";
23270
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23271
+ action?: string | undefined;
23272
+ }, {
23273
+ message: string;
23274
+ id: string;
23275
+ priority: "required" | "recommended" | "info" | "reminder";
23276
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23277
+ action?: string | undefined;
23278
+ }>, "many">;
23279
+ preference_match: z.ZodOptional<z.ZodObject<{
23280
+ score: z.ZodNumber;
23281
+ matches: z.ZodArray<z.ZodString, "many">;
23282
+ mismatches: z.ZodArray<z.ZodString, "many">;
23283
+ }, "strict", z.ZodTypeAny, {
23284
+ score: number;
23285
+ matches: string[];
23286
+ mismatches: string[];
23287
+ }, {
23288
+ score: number;
23289
+ matches: string[];
23290
+ mismatches: string[];
23291
+ }>>;
23292
+ }, "strict", z.ZodTypeAny, {
23293
+ recommendations: string[];
23294
+ reminders: {
23295
+ message: string;
23296
+ id: string;
23297
+ priority: "required" | "recommended" | "info" | "reminder";
23298
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23299
+ action?: string | undefined;
23300
+ }[];
23301
+ risk_score?: number | undefined;
23302
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23303
+ preference_match?: {
23304
+ score: number;
23305
+ matches: string[];
23306
+ mismatches: string[];
23307
+ } | undefined;
23308
+ }, {
23309
+ recommendations: string[];
23310
+ reminders: {
23311
+ message: string;
23312
+ id: string;
23313
+ priority: "required" | "recommended" | "info" | "reminder";
23314
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23315
+ action?: string | undefined;
23316
+ }[];
23317
+ risk_score?: number | undefined;
23318
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23319
+ preference_match?: {
23320
+ score: number;
23321
+ matches: string[];
23322
+ mismatches: string[];
23323
+ } | undefined;
23324
+ }>>;
23325
+ evolution_context: z.ZodOptional<z.ZodObject<{
23326
+ industry_signal: z.ZodOptional<z.ZodString>;
23327
+ evolution_advice: z.ZodOptional<z.ZodString>;
23328
+ confidence: z.ZodNumber;
23329
+ health_score: z.ZodOptional<z.ZodNumber>;
23330
+ pending_suggestions: z.ZodOptional<z.ZodNumber>;
23331
+ intent: z.ZodOptional<z.ZodEnum<["default", "growth", "retention", "compliance", "efficiency", "trust_building", "custom"]>>;
23332
+ role_advice: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23333
+ role: z.ZodOptional<z.ZodEnum<["user", "merchant", "arbitrator"]>>;
23334
+ }, "strict", z.ZodTypeAny, {
23335
+ confidence: number;
23336
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23337
+ industry_signal?: string | undefined;
23338
+ evolution_advice?: string | undefined;
23339
+ health_score?: number | undefined;
23340
+ pending_suggestions?: number | undefined;
23341
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23342
+ role_advice?: string[] | undefined;
23343
+ }, {
23344
+ confidence: number;
23345
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23346
+ industry_signal?: string | undefined;
23347
+ evolution_advice?: string | undefined;
23348
+ health_score?: number | undefined;
23349
+ pending_suggestions?: number | undefined;
23350
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23351
+ role_advice?: string[] | undefined;
23352
+ }>>;
23353
+ guard_advice: z.ZodOptional<z.ZodObject<{
23354
+ current_round: z.ZodOptional<z.ZodEnum<["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R10"]>>;
23355
+ puzzle_status: z.ZodOptional<z.ZodObject<{
23356
+ intent: z.ZodBoolean;
23357
+ binding: z.ZodBoolean;
23358
+ data: z.ZodBoolean;
23359
+ query: z.ZodBoolean;
23360
+ logic: z.ZodBoolean;
23361
+ constraints: z.ZodBoolean;
23362
+ }, "strict", z.ZodTypeAny, {
23363
+ data: boolean;
23364
+ intent: boolean;
23365
+ binding: boolean;
23366
+ query: boolean;
23367
+ logic: boolean;
23368
+ constraints: boolean;
23369
+ }, {
23370
+ data: boolean;
23371
+ intent: boolean;
23372
+ binding: boolean;
23373
+ query: boolean;
23374
+ logic: boolean;
23375
+ constraints: boolean;
23376
+ }>>;
23377
+ matched_scene: z.ZodOptional<z.ZodString>;
23378
+ scene_description: z.ZodOptional<z.ZodString>;
23379
+ scene_constraints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23380
+ suggested_patterns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23381
+ available_queries: z.ZodOptional<z.ZodArray<z.ZodObject<{
23382
+ id: z.ZodNumber;
23383
+ name: z.ZodString;
23384
+ objectType: z.ZodString;
23385
+ returnType: z.ZodString;
23386
+ description: z.ZodOptional<z.ZodString>;
23387
+ }, "strict", z.ZodTypeAny, {
23388
+ name: string;
23389
+ id: number;
23390
+ objectType: string;
23391
+ returnType: string;
23392
+ description?: string | undefined;
23393
+ }, {
23394
+ name: string;
23395
+ id: number;
23396
+ objectType: string;
23397
+ returnType: string;
23398
+ description?: string | undefined;
23399
+ }>, "many">>;
23400
+ risk_warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23401
+ pending_questions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23402
+ confirmation_text: z.ZodOptional<z.ZodString>;
23403
+ test_result: z.ZodOptional<z.ZodObject<{
23404
+ status: z.ZodEnum<["pass", "fail", "not_tested"]>;
23405
+ failure_node: z.ZodOptional<z.ZodString>;
23406
+ passport_id: z.ZodOptional<z.ZodString>;
23407
+ }, "strip", z.ZodTypeAny, {
23408
+ status: "pass" | "fail" | "not_tested";
23409
+ failure_node?: string | undefined;
23410
+ passport_id?: string | undefined;
23411
+ }, {
23412
+ status: "pass" | "fail" | "not_tested";
23413
+ failure_node?: string | undefined;
23414
+ passport_id?: string | undefined;
23415
+ }>>;
23416
+ risk_assessment: z.ZodOptional<z.ZodObject<{
23417
+ overall_risk: z.ZodEnum<["critical", "high", "medium", "low", "info"]>;
23418
+ risk_count: z.ZodNumber;
23419
+ critical_count: z.ZodNumber;
23420
+ high_count: z.ZodNumber;
23421
+ needs_human_review: z.ZodBoolean;
23422
+ top_risks: z.ZodArray<z.ZodString, "many">;
23423
+ stakeholder_advice: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
23424
+ }, "strip", z.ZodTypeAny, {
23425
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23426
+ risk_count: number;
23427
+ critical_count: number;
23428
+ high_count: number;
23429
+ needs_human_review: boolean;
23430
+ top_risks: string[];
23431
+ stakeholder_advice?: Record<string, string[]> | undefined;
23432
+ }, {
23433
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23434
+ risk_count: number;
23435
+ critical_count: number;
23436
+ high_count: number;
23437
+ needs_human_review: boolean;
23438
+ top_risks: string[];
23439
+ stakeholder_advice?: Record<string, string[]> | undefined;
23440
+ }>>;
23441
+ }, "strict", z.ZodTypeAny, {
23442
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23443
+ puzzle_status?: {
23444
+ data: boolean;
23445
+ intent: boolean;
23446
+ binding: boolean;
23447
+ query: boolean;
23448
+ logic: boolean;
23449
+ constraints: boolean;
23450
+ } | undefined;
23451
+ matched_scene?: string | undefined;
23452
+ scene_description?: string | undefined;
23453
+ scene_constraints?: string[] | undefined;
23454
+ suggested_patterns?: string[] | undefined;
23455
+ available_queries?: {
23456
+ name: string;
23457
+ id: number;
23458
+ objectType: string;
23459
+ returnType: string;
23460
+ description?: string | undefined;
23461
+ }[] | undefined;
23462
+ risk_warnings?: string[] | undefined;
23463
+ pending_questions?: string[] | undefined;
23464
+ confirmation_text?: string | undefined;
23465
+ test_result?: {
23466
+ status: "pass" | "fail" | "not_tested";
23467
+ failure_node?: string | undefined;
23468
+ passport_id?: string | undefined;
23469
+ } | undefined;
23470
+ risk_assessment?: {
23471
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23472
+ risk_count: number;
23473
+ critical_count: number;
23474
+ high_count: number;
23475
+ needs_human_review: boolean;
23476
+ top_risks: string[];
23477
+ stakeholder_advice?: Record<string, string[]> | undefined;
23478
+ } | undefined;
23479
+ }, {
23480
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23481
+ puzzle_status?: {
23482
+ data: boolean;
23483
+ intent: boolean;
23484
+ binding: boolean;
23485
+ query: boolean;
23486
+ logic: boolean;
23487
+ constraints: boolean;
23488
+ } | undefined;
23489
+ matched_scene?: string | undefined;
23490
+ scene_description?: string | undefined;
23491
+ scene_constraints?: string[] | undefined;
23492
+ suggested_patterns?: string[] | undefined;
23493
+ available_queries?: {
23494
+ name: string;
23495
+ id: number;
23496
+ objectType: string;
23497
+ returnType: string;
23498
+ description?: string | undefined;
23499
+ }[] | undefined;
23500
+ risk_warnings?: string[] | undefined;
23501
+ pending_questions?: string[] | undefined;
23502
+ confirmation_text?: string | undefined;
23503
+ test_result?: {
23504
+ status: "pass" | "fail" | "not_tested";
23505
+ failure_node?: string | undefined;
23506
+ passport_id?: string | undefined;
23507
+ } | undefined;
23508
+ risk_assessment?: {
23509
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23510
+ risk_count: number;
23511
+ critical_count: number;
23512
+ high_count: number;
23513
+ needs_human_review: boolean;
23514
+ top_risks: string[];
23515
+ stakeholder_advice?: Record<string, string[]> | undefined;
23516
+ } | undefined;
23517
+ }>>;
23518
+ }, "strict", z.ZodTypeAny, {
23519
+ status: "success" | "partial" | "failed" | "pending_input";
23520
+ intent: string;
23521
+ summary: string;
23522
+ created?: {
23523
+ id: string;
23524
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23525
+ name?: string | null | undefined;
23526
+ relation?: {
23527
+ parent?: string | null | undefined;
23528
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23529
+ } | undefined;
23530
+ immutable?: boolean | undefined;
23531
+ }[] | undefined;
23532
+ events?: {
23533
+ event_type: string;
23534
+ business_meaning: string;
23535
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23536
+ related_object?: string | undefined;
23537
+ side_effect?: string | undefined;
23538
+ }[] | undefined;
23539
+ modified?: {
23540
+ id: string;
23541
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23542
+ name?: string | null | undefined;
23543
+ relation?: {
23544
+ parent?: string | null | undefined;
23545
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23546
+ } | undefined;
23547
+ immutable?: boolean | undefined;
23548
+ }[] | undefined;
23549
+ released?: {
23550
+ coinType: string;
23551
+ amount: string;
23552
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23553
+ from?: string | null | undefined;
23554
+ to?: string | null | undefined;
23555
+ }[] | undefined;
23556
+ next_actions?: {
23557
+ action: string;
23558
+ reason: string;
23559
+ priority: "required" | "recommended" | "optional";
23560
+ tool?: string | undefined;
23561
+ prerequisite?: string | undefined;
23562
+ }[] | undefined;
23563
+ warnings?: string[] | undefined;
23564
+ experience?: {
23565
+ advice?: string | undefined;
23566
+ avoid?: string[] | undefined;
23567
+ relevance?: number | undefined;
23568
+ matched_scenario?: string | undefined;
23569
+ } | undefined;
23570
+ service_status?: {
23571
+ active: string[];
23572
+ inactive?: string[] | undefined;
23573
+ } | undefined;
23574
+ customer_advice?: {
23575
+ recommendations: string[];
23576
+ reminders: {
23577
+ message: string;
23578
+ id: string;
23579
+ priority: "required" | "recommended" | "info" | "reminder";
23580
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23581
+ action?: string | undefined;
23582
+ }[];
23583
+ risk_score?: number | undefined;
23584
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23585
+ preference_match?: {
23586
+ score: number;
23587
+ matches: string[];
23588
+ mismatches: string[];
23589
+ } | undefined;
23590
+ } | undefined;
23591
+ evolution_context?: {
23592
+ confidence: number;
23593
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23594
+ industry_signal?: string | undefined;
23595
+ evolution_advice?: string | undefined;
23596
+ health_score?: number | undefined;
23597
+ pending_suggestions?: number | undefined;
23598
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23599
+ role_advice?: string[] | undefined;
23600
+ } | undefined;
23601
+ guard_advice?: {
23602
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23603
+ puzzle_status?: {
23604
+ data: boolean;
23605
+ intent: boolean;
23606
+ binding: boolean;
23607
+ query: boolean;
23608
+ logic: boolean;
23609
+ constraints: boolean;
23610
+ } | undefined;
23611
+ matched_scene?: string | undefined;
23612
+ scene_description?: string | undefined;
23613
+ scene_constraints?: string[] | undefined;
23614
+ suggested_patterns?: string[] | undefined;
23615
+ available_queries?: {
23616
+ name: string;
23617
+ id: number;
23618
+ objectType: string;
23619
+ returnType: string;
23620
+ description?: string | undefined;
23621
+ }[] | undefined;
23622
+ risk_warnings?: string[] | undefined;
23623
+ pending_questions?: string[] | undefined;
23624
+ confirmation_text?: string | undefined;
23625
+ test_result?: {
23626
+ status: "pass" | "fail" | "not_tested";
23627
+ failure_node?: string | undefined;
23628
+ passport_id?: string | undefined;
23629
+ } | undefined;
23630
+ risk_assessment?: {
23631
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23632
+ risk_count: number;
23633
+ critical_count: number;
23634
+ high_count: number;
23635
+ needs_human_review: boolean;
23636
+ top_risks: string[];
23637
+ stakeholder_advice?: Record<string, string[]> | undefined;
23638
+ } | undefined;
23639
+ } | undefined;
23640
+ }, {
23641
+ status: "success" | "partial" | "failed" | "pending_input";
23642
+ intent: string;
23643
+ summary: string;
23644
+ created?: {
23645
+ id: string;
23646
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23647
+ name?: string | null | undefined;
23648
+ relation?: {
23649
+ parent?: string | null | undefined;
23650
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23651
+ } | undefined;
23652
+ immutable?: boolean | undefined;
23653
+ }[] | undefined;
23654
+ events?: {
23655
+ event_type: string;
23656
+ business_meaning: string;
23657
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23658
+ related_object?: string | undefined;
23659
+ side_effect?: string | undefined;
23660
+ }[] | undefined;
23661
+ modified?: {
23662
+ id: string;
23663
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23664
+ name?: string | null | undefined;
23665
+ relation?: {
23666
+ parent?: string | null | undefined;
23667
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23668
+ } | undefined;
23669
+ immutable?: boolean | undefined;
23670
+ }[] | undefined;
23671
+ released?: {
23672
+ coinType: string;
23673
+ amount: string;
23674
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23675
+ from?: string | null | undefined;
23676
+ to?: string | null | undefined;
23677
+ }[] | undefined;
23678
+ next_actions?: {
23679
+ action: string;
23680
+ reason: string;
23681
+ priority: "required" | "recommended" | "optional";
23682
+ tool?: string | undefined;
23683
+ prerequisite?: string | undefined;
23684
+ }[] | undefined;
23685
+ warnings?: string[] | undefined;
23686
+ experience?: {
23687
+ advice?: string | undefined;
23688
+ avoid?: string[] | undefined;
23689
+ relevance?: number | undefined;
23690
+ matched_scenario?: string | undefined;
23691
+ } | undefined;
23692
+ service_status?: {
23693
+ active: string[];
23694
+ inactive?: string[] | undefined;
23695
+ } | undefined;
23696
+ customer_advice?: {
23697
+ recommendations: string[];
23698
+ reminders: {
23699
+ message: string;
23700
+ id: string;
23701
+ priority: "required" | "recommended" | "info" | "reminder";
23702
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23703
+ action?: string | undefined;
23704
+ }[];
23705
+ risk_score?: number | undefined;
23706
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23707
+ preference_match?: {
23708
+ score: number;
23709
+ matches: string[];
23710
+ mismatches: string[];
23711
+ } | undefined;
23712
+ } | undefined;
23713
+ evolution_context?: {
23714
+ confidence: number;
23715
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23716
+ industry_signal?: string | undefined;
23717
+ evolution_advice?: string | undefined;
23718
+ health_score?: number | undefined;
23719
+ pending_suggestions?: number | undefined;
23720
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23721
+ role_advice?: string[] | undefined;
23722
+ } | undefined;
23723
+ guard_advice?: {
23724
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23725
+ puzzle_status?: {
23726
+ data: boolean;
23727
+ intent: boolean;
23728
+ binding: boolean;
23729
+ query: boolean;
23730
+ logic: boolean;
23731
+ constraints: boolean;
23732
+ } | undefined;
23733
+ matched_scene?: string | undefined;
23734
+ scene_description?: string | undefined;
23735
+ scene_constraints?: string[] | undefined;
23736
+ suggested_patterns?: string[] | undefined;
23737
+ available_queries?: {
23738
+ name: string;
23739
+ id: number;
23740
+ objectType: string;
23741
+ returnType: string;
23742
+ description?: string | undefined;
23743
+ }[] | undefined;
23744
+ risk_warnings?: string[] | undefined;
23745
+ pending_questions?: string[] | undefined;
23746
+ confirmation_text?: string | undefined;
23747
+ test_result?: {
23748
+ status: "pass" | "fail" | "not_tested";
23749
+ failure_node?: string | undefined;
23750
+ passport_id?: string | undefined;
23751
+ } | undefined;
23752
+ risk_assessment?: {
23753
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23754
+ risk_count: number;
23755
+ critical_count: number;
23756
+ high_count: number;
23757
+ needs_human_review: boolean;
23758
+ top_risks: string[];
23759
+ stakeholder_advice?: Record<string, string[]> | undefined;
23760
+ } | undefined;
23761
+ } | undefined;
23762
+ }>>;
22807
23763
  }, "strip", z.ZodTypeAny, {
22808
23764
  result: {
22809
23765
  query_type: "onchain_table";
@@ -23788,9 +24744,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
23788
24744
  msg: string;
23789
24745
  accomplished: boolean;
23790
24746
  }[];
24747
+ threshold: string | number;
23791
24748
  next_node: string;
23792
24749
  weights: string | number;
23793
- threshold: string | number;
23794
24750
  }, {
23795
24751
  forwards: {
23796
24752
  time: string | number;
@@ -23804,9 +24760,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
23804
24760
  msg: string;
23805
24761
  accomplished: boolean;
23806
24762
  }[];
24763
+ threshold: string | number;
23807
24764
  next_node: string;
23808
24765
  weights: string | number;
23809
- threshold: string | number;
23810
24766
  }>, "many">;
23811
24767
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
23812
24768
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -23959,7 +24915,129 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
23959
24915
  }>, "many">>;
23960
24916
  }, z.ZodTypeAny, "passthrough"> | undefined;
23961
24917
  };
23962
- semantic?: any;
24918
+ semantic?: {
24919
+ status: "success" | "partial" | "failed" | "pending_input";
24920
+ intent: string;
24921
+ summary: string;
24922
+ created?: {
24923
+ id: string;
24924
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
24925
+ name?: string | null | undefined;
24926
+ relation?: {
24927
+ parent?: string | null | undefined;
24928
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
24929
+ } | undefined;
24930
+ immutable?: boolean | undefined;
24931
+ }[] | undefined;
24932
+ events?: {
24933
+ event_type: string;
24934
+ business_meaning: string;
24935
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
24936
+ related_object?: string | undefined;
24937
+ side_effect?: string | undefined;
24938
+ }[] | undefined;
24939
+ modified?: {
24940
+ id: string;
24941
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
24942
+ name?: string | null | undefined;
24943
+ relation?: {
24944
+ parent?: string | null | undefined;
24945
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
24946
+ } | undefined;
24947
+ immutable?: boolean | undefined;
24948
+ }[] | undefined;
24949
+ released?: {
24950
+ coinType: string;
24951
+ amount: string;
24952
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
24953
+ from?: string | null | undefined;
24954
+ to?: string | null | undefined;
24955
+ }[] | undefined;
24956
+ next_actions?: {
24957
+ action: string;
24958
+ reason: string;
24959
+ priority: "required" | "recommended" | "optional";
24960
+ tool?: string | undefined;
24961
+ prerequisite?: string | undefined;
24962
+ }[] | undefined;
24963
+ warnings?: string[] | undefined;
24964
+ experience?: {
24965
+ advice?: string | undefined;
24966
+ avoid?: string[] | undefined;
24967
+ relevance?: number | undefined;
24968
+ matched_scenario?: string | undefined;
24969
+ } | undefined;
24970
+ service_status?: {
24971
+ active: string[];
24972
+ inactive?: string[] | undefined;
24973
+ } | undefined;
24974
+ customer_advice?: {
24975
+ recommendations: string[];
24976
+ reminders: {
24977
+ message: string;
24978
+ id: string;
24979
+ priority: "required" | "recommended" | "info" | "reminder";
24980
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
24981
+ action?: string | undefined;
24982
+ }[];
24983
+ risk_score?: number | undefined;
24984
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
24985
+ preference_match?: {
24986
+ score: number;
24987
+ matches: string[];
24988
+ mismatches: string[];
24989
+ } | undefined;
24990
+ } | undefined;
24991
+ evolution_context?: {
24992
+ confidence: number;
24993
+ role?: "user" | "merchant" | "arbitrator" | undefined;
24994
+ industry_signal?: string | undefined;
24995
+ evolution_advice?: string | undefined;
24996
+ health_score?: number | undefined;
24997
+ pending_suggestions?: number | undefined;
24998
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
24999
+ role_advice?: string[] | undefined;
25000
+ } | undefined;
25001
+ guard_advice?: {
25002
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
25003
+ puzzle_status?: {
25004
+ data: boolean;
25005
+ intent: boolean;
25006
+ binding: boolean;
25007
+ query: boolean;
25008
+ logic: boolean;
25009
+ constraints: boolean;
25010
+ } | undefined;
25011
+ matched_scene?: string | undefined;
25012
+ scene_description?: string | undefined;
25013
+ scene_constraints?: string[] | undefined;
25014
+ suggested_patterns?: string[] | undefined;
25015
+ available_queries?: {
25016
+ name: string;
25017
+ id: number;
25018
+ objectType: string;
25019
+ returnType: string;
25020
+ description?: string | undefined;
25021
+ }[] | undefined;
25022
+ risk_warnings?: string[] | undefined;
25023
+ pending_questions?: string[] | undefined;
25024
+ confirmation_text?: string | undefined;
25025
+ test_result?: {
25026
+ status: "pass" | "fail" | "not_tested";
25027
+ failure_node?: string | undefined;
25028
+ passport_id?: string | undefined;
25029
+ } | undefined;
25030
+ risk_assessment?: {
25031
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
25032
+ risk_count: number;
25033
+ critical_count: number;
25034
+ high_count: number;
25035
+ needs_human_review: boolean;
25036
+ top_risks: string[];
25037
+ stakeholder_advice?: Record<string, string[]> | undefined;
25038
+ } | undefined;
25039
+ } | undefined;
25040
+ } | undefined;
23963
25041
  }, {
23964
25042
  result: {
23965
25043
  query_type: "onchain_table";
@@ -24944,9 +26022,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
24944
26022
  msg: string;
24945
26023
  accomplished: boolean;
24946
26024
  }[];
26025
+ threshold: string | number;
24947
26026
  next_node: string;
24948
26027
  weights: string | number;
24949
- threshold: string | number;
24950
26028
  }, {
24951
26029
  forwards: {
24952
26030
  time: string | number;
@@ -24960,9 +26038,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
24960
26038
  msg: string;
24961
26039
  accomplished: boolean;
24962
26040
  }[];
26041
+ threshold: string | number;
24963
26042
  next_node: string;
24964
26043
  weights: string | number;
24965
- threshold: string | number;
24966
26044
  }>, "many">;
24967
26045
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
24968
26046
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -25115,5 +26193,127 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
25115
26193
  }>, "many">>;
25116
26194
  }, z.ZodTypeAny, "passthrough"> | undefined;
25117
26195
  };
25118
- semantic?: any;
26196
+ semantic?: {
26197
+ status: "success" | "partial" | "failed" | "pending_input";
26198
+ intent: string;
26199
+ summary: string;
26200
+ created?: {
26201
+ id: string;
26202
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
26203
+ name?: string | null | undefined;
26204
+ relation?: {
26205
+ parent?: string | null | undefined;
26206
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
26207
+ } | undefined;
26208
+ immutable?: boolean | undefined;
26209
+ }[] | undefined;
26210
+ events?: {
26211
+ event_type: string;
26212
+ business_meaning: string;
26213
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
26214
+ related_object?: string | undefined;
26215
+ side_effect?: string | undefined;
26216
+ }[] | undefined;
26217
+ modified?: {
26218
+ id: string;
26219
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
26220
+ name?: string | null | undefined;
26221
+ relation?: {
26222
+ parent?: string | null | undefined;
26223
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
26224
+ } | undefined;
26225
+ immutable?: boolean | undefined;
26226
+ }[] | undefined;
26227
+ released?: {
26228
+ coinType: string;
26229
+ amount: string;
26230
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
26231
+ from?: string | null | undefined;
26232
+ to?: string | null | undefined;
26233
+ }[] | undefined;
26234
+ next_actions?: {
26235
+ action: string;
26236
+ reason: string;
26237
+ priority: "required" | "recommended" | "optional";
26238
+ tool?: string | undefined;
26239
+ prerequisite?: string | undefined;
26240
+ }[] | undefined;
26241
+ warnings?: string[] | undefined;
26242
+ experience?: {
26243
+ advice?: string | undefined;
26244
+ avoid?: string[] | undefined;
26245
+ relevance?: number | undefined;
26246
+ matched_scenario?: string | undefined;
26247
+ } | undefined;
26248
+ service_status?: {
26249
+ active: string[];
26250
+ inactive?: string[] | undefined;
26251
+ } | undefined;
26252
+ customer_advice?: {
26253
+ recommendations: string[];
26254
+ reminders: {
26255
+ message: string;
26256
+ id: string;
26257
+ priority: "required" | "recommended" | "info" | "reminder";
26258
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
26259
+ action?: string | undefined;
26260
+ }[];
26261
+ risk_score?: number | undefined;
26262
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
26263
+ preference_match?: {
26264
+ score: number;
26265
+ matches: string[];
26266
+ mismatches: string[];
26267
+ } | undefined;
26268
+ } | undefined;
26269
+ evolution_context?: {
26270
+ confidence: number;
26271
+ role?: "user" | "merchant" | "arbitrator" | undefined;
26272
+ industry_signal?: string | undefined;
26273
+ evolution_advice?: string | undefined;
26274
+ health_score?: number | undefined;
26275
+ pending_suggestions?: number | undefined;
26276
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
26277
+ role_advice?: string[] | undefined;
26278
+ } | undefined;
26279
+ guard_advice?: {
26280
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
26281
+ puzzle_status?: {
26282
+ data: boolean;
26283
+ intent: boolean;
26284
+ binding: boolean;
26285
+ query: boolean;
26286
+ logic: boolean;
26287
+ constraints: boolean;
26288
+ } | undefined;
26289
+ matched_scene?: string | undefined;
26290
+ scene_description?: string | undefined;
26291
+ scene_constraints?: string[] | undefined;
26292
+ suggested_patterns?: string[] | undefined;
26293
+ available_queries?: {
26294
+ name: string;
26295
+ id: number;
26296
+ objectType: string;
26297
+ returnType: string;
26298
+ description?: string | undefined;
26299
+ }[] | undefined;
26300
+ risk_warnings?: string[] | undefined;
26301
+ pending_questions?: string[] | undefined;
26302
+ confirmation_text?: string | undefined;
26303
+ test_result?: {
26304
+ status: "pass" | "fail" | "not_tested";
26305
+ failure_node?: string | undefined;
26306
+ passport_id?: string | undefined;
26307
+ } | undefined;
26308
+ risk_assessment?: {
26309
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
26310
+ risk_count: number;
26311
+ critical_count: number;
26312
+ high_count: number;
26313
+ needs_human_review: boolean;
26314
+ top_risks: string[];
26315
+ stakeholder_advice?: Record<string, string[]> | undefined;
26316
+ } | undefined;
26317
+ } | undefined;
26318
+ } | undefined;
25119
26319
  }>;