@wowok/agent-mcp 2.3.16 → 2.3.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) 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 +14 -0
  5. package/dist/customer/user-preferences.d.ts +3 -0
  6. package/dist/customer/user-preferences.js +9 -0
  7. package/dist/experience/realtime-feedback.js +17 -0
  8. package/dist/index.js +360 -273
  9. package/dist/knowledge/acquisition-flywheel.d.ts +3 -0
  10. package/dist/knowledge/acquisition-flywheel.js +9 -0
  11. package/dist/knowledge/guard-ledger.d.ts +19 -0
  12. package/dist/knowledge/guard-ledger.js +219 -0
  13. package/dist/knowledge/guard-puzzle.d.ts +93 -0
  14. package/dist/knowledge/guard-puzzle.js +278 -0
  15. package/dist/knowledge/guard-risk.d.ts +60 -0
  16. package/dist/knowledge/guard-risk.js +474 -0
  17. package/dist/knowledge/guard-translation.d.ts +46 -0
  18. package/dist/knowledge/guard-translation.js +487 -0
  19. package/dist/knowledge/index.d.ts +13 -0
  20. package/dist/knowledge/index.js +13 -0
  21. package/dist/knowledge/industry-registry.d.ts +1 -2
  22. package/dist/knowledge/industry-registry.js +23 -3
  23. package/dist/knowledge/safety-rules.js +61 -0
  24. package/dist/knowledge/tool-constraints.js +12 -22
  25. package/dist/safety/confirm-gate.d.ts +4 -2
  26. package/dist/safety/confirm-gate.js +48 -4
  27. package/dist/schema/call/allocation.d.ts +24 -14
  28. package/dist/schema/call/arbitration.d.ts +142 -132
  29. package/dist/schema/call/base.d.ts +901 -43
  30. package/dist/schema/call/base.js +66 -2
  31. package/dist/schema/call/bridge-handler.js +15 -2
  32. package/dist/schema/call/bridge.d.ts +769 -1
  33. package/dist/schema/call/bridge.js +37 -0
  34. package/dist/schema/call/contact.d.ts +10 -0
  35. package/dist/schema/call/demand.d.ts +10 -0
  36. package/dist/schema/call/guard.d.ts +76 -46
  37. package/dist/schema/call/handler.js +46 -14
  38. package/dist/schema/call/machine.d.ts +158 -138
  39. package/dist/schema/call/order.d.ts +10 -0
  40. package/dist/schema/call/payment.d.ts +10 -0
  41. package/dist/schema/call/permission.d.ts +232 -222
  42. package/dist/schema/call/personal.d.ts +10 -0
  43. package/dist/schema/call/progress.d.ts +10 -0
  44. package/dist/schema/call/proof.d.ts +20 -0
  45. package/dist/schema/call/repository.d.ts +32 -22
  46. package/dist/schema/call/reward.d.ts +10 -0
  47. package/dist/schema/call/semantic.d.ts +9 -2
  48. package/dist/schema/call/semantic.js +409 -21
  49. package/dist/schema/call/service.d.ts +20 -10
  50. package/dist/schema/call/treasury.d.ts +10 -0
  51. package/dist/schema/config/index.d.ts +18 -0
  52. package/dist/schema/config/index.js +17 -0
  53. package/dist/schema/index.d.ts +6 -0
  54. package/dist/schema/index.js +5 -0
  55. package/dist/schema/local/index.d.ts +9 -9
  56. package/dist/schema/local/index.js +9 -0
  57. package/dist/schema/messenger/index.d.ts +350 -29
  58. package/dist/schema/messenger/index.js +17 -17
  59. package/dist/schema/operations.d.ts +1667 -545
  60. package/dist/schema/operations.js +91 -96
  61. package/dist/schema/project/index.d.ts +21 -0
  62. package/dist/schema/project/index.js +32 -0
  63. package/dist/schema/query/index.d.ts +1074 -168
  64. package/dist/schema/query/index.js +8 -8
  65. package/dist/schema/schema-query/index.d.ts +33 -0
  66. package/dist/schema/schema-query/index.js +36 -0
  67. package/dist/schema/schema-version.d.ts +25 -0
  68. package/dist/schema/schema-version.js +76 -0
  69. package/dist/schema/trust/index.d.ts +407 -0
  70. package/dist/schema/trust/index.js +113 -0
  71. package/dist/schemas/bridge_operation.output.json +224 -0
  72. package/dist/schemas/bridge_operation.schema.json +67 -8
  73. package/dist/schemas/config_operation.output.json +18 -0
  74. package/dist/schemas/config_operation.schema.json +34 -0
  75. package/dist/schemas/guard-node-schema.json +82 -0
  76. package/dist/schemas/guard2file.schema.json +8 -0
  77. package/dist/schemas/index.json +19 -1
  78. package/dist/schemas/machineNode2file.schema.json +8 -0
  79. package/dist/schemas/messenger_operation.output.json +224 -0
  80. package/dist/schemas/onchain_events.output.json +718 -0
  81. package/dist/schemas/onchain_operations.output.json +277 -2
  82. package/dist/schemas/onchain_operations.schema.json +19 -16
  83. package/dist/schemas/onchain_operations_allocation.schema.json +8 -0
  84. package/dist/schemas/onchain_operations_arbitration.schema.json +8 -0
  85. package/dist/schemas/onchain_operations_contact.schema.json +8 -0
  86. package/dist/schemas/onchain_operations_demand.schema.json +8 -0
  87. package/dist/schemas/onchain_operations_gen_passport.schema.json +16 -0
  88. package/dist/schemas/onchain_operations_guard.schema.json +11 -16
  89. package/dist/schemas/onchain_operations_machine.schema.json +8 -0
  90. package/dist/schemas/onchain_operations_order.schema.json +8 -0
  91. package/dist/schemas/onchain_operations_payment.schema.json +8 -0
  92. package/dist/schemas/onchain_operations_permission.schema.json +8 -0
  93. package/dist/schemas/onchain_operations_personal.schema.json +8 -0
  94. package/dist/schemas/onchain_operations_progress.schema.json +8 -0
  95. package/dist/schemas/onchain_operations_repository.schema.json +8 -0
  96. package/dist/schemas/onchain_operations_reward.schema.json +8 -0
  97. package/dist/schemas/onchain_operations_service.schema.json +8 -0
  98. package/dist/schemas/onchain_operations_treasury.schema.json +8 -0
  99. package/dist/schemas/onchain_table_data.output.json +718 -0
  100. package/dist/schemas/project_operation.output.json +18 -0
  101. package/dist/schemas/project_operation.schema.json +42 -0
  102. package/dist/schemas/query_toolkit.schema.json +360 -368
  103. package/dist/schemas/schema_query.schema.json +6 -3
  104. package/dist/schemas/trust_score.output.json +327 -0
  105. package/dist/schemas/trust_score.schema.json +46 -0
  106. 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" | "None" | "clock";
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" | "None" | "clock";
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" | "None" | "clock";
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" | "None" | "clock";
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" | "None" | "clock";
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" | "None" | "clock";
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" | "None" | "clock";
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" | "None" | "clock";
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,6 +10303,58 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10213
10303
  onChain?: boolean | undefined;
10214
10304
  } | undefined;
10215
10305
  description?: string | 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;
10216
10358
  owner_receive?: {
10217
10359
  received: {
10218
10360
  id: string;
@@ -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,15 +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
10494
  owner_receive?: {
10353
10495
  received: {
10354
10496
  id: string;
@@ -10424,58 +10566,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10424
10566
  } | {
10425
10567
  op: "clear";
10426
10568
  } | undefined;
10427
- table?: {
10428
- op: "add perm by index";
10429
- entity: {
10430
- entities: {
10431
- name_or_address?: string | undefined;
10432
- local_mark_first?: boolean | undefined;
10433
- }[];
10434
- check_all_founded?: boolean | undefined;
10435
- };
10436
- index: number;
10437
- } | {
10438
- op: "set perm by index";
10439
- entity: {
10440
- entities: {
10441
- name_or_address?: string | undefined;
10442
- local_mark_first?: boolean | undefined;
10443
- }[];
10444
- check_all_founded?: boolean | undefined;
10445
- };
10446
- index: number;
10447
- } | {
10448
- op: "remove perm by index";
10449
- entity: {
10450
- entities: {
10451
- name_or_address?: string | undefined;
10452
- local_mark_first?: boolean | undefined;
10453
- }[];
10454
- check_all_founded?: boolean | undefined;
10455
- };
10456
- index: number;
10457
- } | {
10458
- op: "add perm by entity";
10459
- entity: {
10460
- name_or_address?: string | undefined;
10461
- local_mark_first?: boolean | undefined;
10462
- };
10463
- index: number[];
10464
- } | {
10465
- op: "set perm by entity";
10466
- entity: {
10467
- name_or_address?: string | undefined;
10468
- local_mark_first?: boolean | undefined;
10469
- };
10470
- index: number[];
10471
- } | {
10472
- op: "remove perm by entity";
10473
- entity: {
10474
- name_or_address?: string | undefined;
10475
- local_mark_first?: boolean | undefined;
10476
- };
10477
- index: number[];
10478
- } | undefined;
10479
10569
  apply?: string[] | undefined;
10480
10570
  }>;
10481
10571
  env: z.ZodOptional<z.ZodObject<{
@@ -10487,6 +10577,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10487
10577
  confirmed: z.ZodOptional<z.ZodBoolean>;
10488
10578
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10489
10579
  project: z.ZodOptional<z.ZodString>;
10580
+ client_schema_version: z.ZodOptional<z.ZodString>;
10581
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
10490
10582
  }, "strict", z.ZodTypeAny, {
10491
10583
  account: string;
10492
10584
  no_cache?: boolean | undefined;
@@ -10496,6 +10588,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10496
10588
  confirmed?: boolean | undefined;
10497
10589
  user_intent_phrases?: string[] | undefined;
10498
10590
  project?: string | undefined;
10591
+ client_schema_version?: string | undefined;
10592
+ schema_strict_mode?: boolean | undefined;
10499
10593
  }, {
10500
10594
  no_cache?: boolean | undefined;
10501
10595
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -10505,8 +10599,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10505
10599
  confirmed?: boolean | undefined;
10506
10600
  user_intent_phrases?: string[] | undefined;
10507
10601
  project?: string | undefined;
10602
+ client_schema_version?: string | undefined;
10603
+ schema_strict_mode?: boolean | undefined;
10508
10604
  }>>;
10509
- }, "strip", z.ZodTypeAny, {
10605
+ }, "strict", z.ZodTypeAny, {
10510
10606
  data: {
10511
10607
  object?: string | {
10512
10608
  name?: string | undefined;
@@ -10515,6 +10611,58 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10515
10611
  onChain?: boolean | undefined;
10516
10612
  } | undefined;
10517
10613
  description?: string | undefined;
10614
+ table?: {
10615
+ op: "add perm by index";
10616
+ entity: {
10617
+ entities: {
10618
+ name_or_address?: string | undefined;
10619
+ local_mark_first?: boolean | undefined;
10620
+ }[];
10621
+ check_all_founded?: boolean | undefined;
10622
+ };
10623
+ index: number;
10624
+ } | {
10625
+ op: "set perm by index";
10626
+ entity: {
10627
+ entities: {
10628
+ name_or_address?: string | undefined;
10629
+ local_mark_first?: boolean | undefined;
10630
+ }[];
10631
+ check_all_founded?: boolean | undefined;
10632
+ };
10633
+ index: number;
10634
+ } | {
10635
+ op: "remove perm by index";
10636
+ entity: {
10637
+ entities: {
10638
+ name_or_address?: string | undefined;
10639
+ local_mark_first?: boolean | undefined;
10640
+ }[];
10641
+ check_all_founded?: boolean | undefined;
10642
+ };
10643
+ index: number;
10644
+ } | {
10645
+ op: "add perm by entity";
10646
+ entity: {
10647
+ name_or_address?: string | undefined;
10648
+ local_mark_first?: boolean | undefined;
10649
+ };
10650
+ index: number[];
10651
+ } | {
10652
+ op: "set perm by entity";
10653
+ entity: {
10654
+ name_or_address?: string | undefined;
10655
+ local_mark_first?: boolean | undefined;
10656
+ };
10657
+ index: number[];
10658
+ } | {
10659
+ op: "remove perm by entity";
10660
+ entity: {
10661
+ name_or_address?: string | undefined;
10662
+ local_mark_first?: boolean | undefined;
10663
+ };
10664
+ index: number[];
10665
+ } | undefined;
10518
10666
  owner_receive?: {
10519
10667
  received: {
10520
10668
  id: string;
@@ -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,28 +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
10817
  owner_receive?: {
10668
10818
  received: {
10669
10819
  id: string;
@@ -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">;
@@ -10919,13 +11019,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10919
11019
  }>>;
10920
11020
  }, "strict", z.ZodTypeAny, {
10921
11021
  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
11022
  table?: {
10930
11023
  identifier: number;
10931
11024
  b_submission: boolean;
@@ -10942,19 +11035,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10942
11035
  check_all_founded?: boolean | undefined;
10943
11036
  } | string[] | boolean[] | number[] | number[][] | undefined;
10944
11037
  }[] | undefined;
11038
+ root?: any;
10945
11039
  rely?: {
10946
11040
  guards: string[];
10947
11041
  logic_or?: boolean | undefined;
10948
11042
  } | undefined;
10949
- }, {
10950
- description?: string | undefined;
10951
11043
  namedNew?: {
10952
11044
  name?: string | undefined;
10953
11045
  replaceExistName?: boolean | undefined;
10954
11046
  tags?: string[] | undefined;
10955
11047
  onChain?: boolean | undefined;
10956
11048
  } | undefined;
10957
- root?: any;
11049
+ }, {
11050
+ description?: string | undefined;
10958
11051
  table?: {
10959
11052
  identifier: number;
10960
11053
  b_submission: boolean;
@@ -10971,19 +11064,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
10971
11064
  } | string[] | boolean[] | number[] | number[][] | undefined;
10972
11065
  name?: string | undefined;
10973
11066
  }[] | undefined;
11067
+ root?: any;
10974
11068
  rely?: {
10975
11069
  guards: string[];
10976
11070
  logic_or?: boolean | undefined;
10977
11071
  } | undefined;
10978
- }>, {
10979
- description?: string | undefined;
10980
11072
  namedNew?: {
10981
11073
  name?: string | undefined;
10982
11074
  replaceExistName?: boolean | undefined;
10983
11075
  tags?: string[] | undefined;
10984
11076
  onChain?: boolean | undefined;
10985
11077
  } | undefined;
10986
- root?: any;
11078
+ }>, {
11079
+ description?: string | undefined;
10987
11080
  table?: {
10988
11081
  identifier: number;
10989
11082
  b_submission: boolean;
@@ -11000,19 +11093,19 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11000
11093
  check_all_founded?: boolean | undefined;
11001
11094
  } | string[] | boolean[] | number[] | number[][] | undefined;
11002
11095
  }[] | undefined;
11096
+ root?: any;
11003
11097
  rely?: {
11004
11098
  guards: string[];
11005
11099
  logic_or?: boolean | undefined;
11006
11100
  } | undefined;
11007
- }, {
11008
- description?: string | undefined;
11009
11101
  namedNew?: {
11010
11102
  name?: string | undefined;
11011
11103
  replaceExistName?: boolean | undefined;
11012
11104
  tags?: string[] | undefined;
11013
11105
  onChain?: boolean | undefined;
11014
11106
  } | undefined;
11015
- root?: any;
11107
+ }, {
11108
+ description?: string | undefined;
11016
11109
  table?: {
11017
11110
  identifier: number;
11018
11111
  b_submission: boolean;
@@ -11029,10 +11122,17 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11029
11122
  } | string[] | boolean[] | number[] | number[][] | undefined;
11030
11123
  name?: string | undefined;
11031
11124
  }[] | undefined;
11125
+ root?: any;
11032
11126
  rely?: {
11033
11127
  guards: string[];
11034
11128
  logic_or?: boolean | undefined;
11035
11129
  } | undefined;
11130
+ namedNew?: {
11131
+ name?: string | undefined;
11132
+ replaceExistName?: boolean | undefined;
11133
+ tags?: string[] | undefined;
11134
+ onChain?: boolean | undefined;
11135
+ } | undefined;
11036
11136
  }>;
11037
11137
  env: z.ZodOptional<z.ZodObject<{
11038
11138
  account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
@@ -11043,6 +11143,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11043
11143
  confirmed: z.ZodOptional<z.ZodBoolean>;
11044
11144
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11045
11145
  project: z.ZodOptional<z.ZodString>;
11146
+ client_schema_version: z.ZodOptional<z.ZodString>;
11147
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
11046
11148
  }, "strict", z.ZodTypeAny, {
11047
11149
  account: string;
11048
11150
  no_cache?: boolean | undefined;
@@ -11052,6 +11154,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11052
11154
  confirmed?: boolean | undefined;
11053
11155
  user_intent_phrases?: string[] | undefined;
11054
11156
  project?: string | undefined;
11157
+ client_schema_version?: string | undefined;
11158
+ schema_strict_mode?: boolean | undefined;
11055
11159
  }, {
11056
11160
  no_cache?: boolean | undefined;
11057
11161
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -11061,17 +11165,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11061
11165
  confirmed?: boolean | undefined;
11062
11166
  user_intent_phrases?: string[] | undefined;
11063
11167
  project?: string | undefined;
11168
+ client_schema_version?: string | undefined;
11169
+ schema_strict_mode?: boolean | undefined;
11064
11170
  }>>;
11065
- }, "strip", z.ZodTypeAny, {
11171
+ }, "strict", z.ZodTypeAny, {
11066
11172
  data: {
11067
11173
  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
11174
  table?: {
11076
11175
  identifier: number;
11077
11176
  b_submission: boolean;
@@ -11088,10 +11187,17 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11088
11187
  check_all_founded?: boolean | undefined;
11089
11188
  } | string[] | boolean[] | number[] | number[][] | undefined;
11090
11189
  }[] | undefined;
11190
+ root?: any;
11091
11191
  rely?: {
11092
11192
  guards: string[];
11093
11193
  logic_or?: boolean | undefined;
11094
11194
  } | undefined;
11195
+ namedNew?: {
11196
+ name?: string | undefined;
11197
+ replaceExistName?: boolean | undefined;
11198
+ tags?: string[] | undefined;
11199
+ onChain?: boolean | undefined;
11200
+ } | undefined;
11095
11201
  };
11096
11202
  operation_type: "guard";
11097
11203
  env?: {
@@ -11103,17 +11209,12 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11103
11209
  confirmed?: boolean | undefined;
11104
11210
  user_intent_phrases?: string[] | undefined;
11105
11211
  project?: string | undefined;
11212
+ client_schema_version?: string | undefined;
11213
+ schema_strict_mode?: boolean | undefined;
11106
11214
  } | undefined;
11107
11215
  }, {
11108
11216
  data: {
11109
11217
  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
11218
  table?: {
11118
11219
  identifier: number;
11119
11220
  b_submission: boolean;
@@ -11130,10 +11231,17 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11130
11231
  } | string[] | boolean[] | number[] | number[][] | undefined;
11131
11232
  name?: string | undefined;
11132
11233
  }[] | undefined;
11234
+ root?: any;
11133
11235
  rely?: {
11134
11236
  guards: string[];
11135
11237
  logic_or?: boolean | undefined;
11136
11238
  } | undefined;
11239
+ namedNew?: {
11240
+ name?: string | undefined;
11241
+ replaceExistName?: boolean | undefined;
11242
+ tags?: string[] | undefined;
11243
+ onChain?: boolean | undefined;
11244
+ } | undefined;
11137
11245
  };
11138
11246
  operation_type: "guard";
11139
11247
  env?: {
@@ -11145,6 +11253,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11145
11253
  confirmed?: boolean | undefined;
11146
11254
  user_intent_phrases?: string[] | undefined;
11147
11255
  project?: string | undefined;
11256
+ client_schema_version?: string | undefined;
11257
+ schema_strict_mode?: boolean | undefined;
11148
11258
  } | undefined;
11149
11259
  }>, z.ZodObject<{
11150
11260
  operation_type: z.ZodLiteral<"personal">;
@@ -11546,6 +11656,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11546
11656
  confirmed: z.ZodOptional<z.ZodBoolean>;
11547
11657
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11548
11658
  project: z.ZodOptional<z.ZodString>;
11659
+ client_schema_version: z.ZodOptional<z.ZodString>;
11660
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
11549
11661
  }, "strict", z.ZodTypeAny, {
11550
11662
  account: string;
11551
11663
  no_cache?: boolean | undefined;
@@ -11555,6 +11667,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11555
11667
  confirmed?: boolean | undefined;
11556
11668
  user_intent_phrases?: string[] | undefined;
11557
11669
  project?: string | undefined;
11670
+ client_schema_version?: string | undefined;
11671
+ schema_strict_mode?: boolean | undefined;
11558
11672
  }, {
11559
11673
  no_cache?: boolean | undefined;
11560
11674
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -11564,8 +11678,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11564
11678
  confirmed?: boolean | undefined;
11565
11679
  user_intent_phrases?: string[] | undefined;
11566
11680
  project?: string | undefined;
11681
+ client_schema_version?: string | undefined;
11682
+ schema_strict_mode?: boolean | undefined;
11567
11683
  }>>;
11568
- }, "strip", z.ZodTypeAny, {
11684
+ }, "strict", z.ZodTypeAny, {
11569
11685
  data: {
11570
11686
  description?: string | undefined;
11571
11687
  referrer?: string | {
@@ -11636,6 +11752,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11636
11752
  confirmed?: boolean | undefined;
11637
11753
  user_intent_phrases?: string[] | undefined;
11638
11754
  project?: string | undefined;
11755
+ client_schema_version?: string | undefined;
11756
+ schema_strict_mode?: boolean | undefined;
11639
11757
  } | undefined;
11640
11758
  }, {
11641
11759
  data: {
@@ -11708,6 +11826,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11708
11826
  confirmed?: boolean | undefined;
11709
11827
  user_intent_phrases?: string[] | undefined;
11710
11828
  project?: string | undefined;
11829
+ client_schema_version?: string | undefined;
11830
+ schema_strict_mode?: boolean | undefined;
11711
11831
  } | undefined;
11712
11832
  }>, z.ZodObject<{
11713
11833
  operation_type: z.ZodLiteral<"payment">;
@@ -11853,6 +11973,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11853
11973
  confirmed: z.ZodOptional<z.ZodBoolean>;
11854
11974
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11855
11975
  project: z.ZodOptional<z.ZodString>;
11976
+ client_schema_version: z.ZodOptional<z.ZodString>;
11977
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
11856
11978
  }, "strict", z.ZodTypeAny, {
11857
11979
  account: string;
11858
11980
  no_cache?: boolean | undefined;
@@ -11862,6 +11984,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11862
11984
  confirmed?: boolean | undefined;
11863
11985
  user_intent_phrases?: string[] | undefined;
11864
11986
  project?: string | undefined;
11987
+ client_schema_version?: string | undefined;
11988
+ schema_strict_mode?: boolean | undefined;
11865
11989
  }, {
11866
11990
  no_cache?: boolean | undefined;
11867
11991
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -11871,8 +11995,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11871
11995
  confirmed?: boolean | undefined;
11872
11996
  user_intent_phrases?: string[] | undefined;
11873
11997
  project?: string | undefined;
11998
+ client_schema_version?: string | undefined;
11999
+ schema_strict_mode?: boolean | undefined;
11874
12000
  }>>;
11875
- }, "strip", z.ZodTypeAny, {
12001
+ }, "strict", z.ZodTypeAny, {
11876
12002
  data: {
11877
12003
  object: {
11878
12004
  type_parameter: string;
@@ -11909,6 +12035,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11909
12035
  confirmed?: boolean | undefined;
11910
12036
  user_intent_phrases?: string[] | undefined;
11911
12037
  project?: string | undefined;
12038
+ client_schema_version?: string | undefined;
12039
+ schema_strict_mode?: boolean | undefined;
11912
12040
  } | undefined;
11913
12041
  }, {
11914
12042
  data: {
@@ -11947,6 +12075,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
11947
12075
  confirmed?: boolean | undefined;
11948
12076
  user_intent_phrases?: string[] | undefined;
11949
12077
  project?: string | undefined;
12078
+ client_schema_version?: string | undefined;
12079
+ schema_strict_mode?: boolean | undefined;
11950
12080
  } | undefined;
11951
12081
  }>, z.ZodObject<{
11952
12082
  operation_type: z.ZodLiteral<"demand">;
@@ -12330,6 +12460,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12330
12460
  confirmed: z.ZodOptional<z.ZodBoolean>;
12331
12461
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12332
12462
  project: z.ZodOptional<z.ZodString>;
12463
+ client_schema_version: z.ZodOptional<z.ZodString>;
12464
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
12333
12465
  }, "strict", z.ZodTypeAny, {
12334
12466
  account: string;
12335
12467
  no_cache?: boolean | undefined;
@@ -12339,6 +12471,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12339
12471
  confirmed?: boolean | undefined;
12340
12472
  user_intent_phrases?: string[] | undefined;
12341
12473
  project?: string | undefined;
12474
+ client_schema_version?: string | undefined;
12475
+ schema_strict_mode?: boolean | undefined;
12342
12476
  }, {
12343
12477
  no_cache?: boolean | undefined;
12344
12478
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -12348,6 +12482,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12348
12482
  confirmed?: boolean | undefined;
12349
12483
  user_intent_phrases?: string[] | undefined;
12350
12484
  project?: string | undefined;
12485
+ client_schema_version?: string | undefined;
12486
+ schema_strict_mode?: boolean | undefined;
12351
12487
  }>>;
12352
12488
  submission: z.ZodOptional<z.ZodObject<{
12353
12489
  type: z.ZodLiteral<"submission">;
@@ -12529,7 +12665,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12529
12665
  }[];
12530
12666
  }[];
12531
12667
  }>>;
12532
- }, "strip", z.ZodTypeAny, {
12668
+ }, "strict", z.ZodTypeAny, {
12533
12669
  data: {
12534
12670
  object: string | {
12535
12671
  name?: string | undefined;
@@ -12638,6 +12774,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12638
12774
  confirmed?: boolean | undefined;
12639
12775
  user_intent_phrases?: string[] | undefined;
12640
12776
  project?: string | undefined;
12777
+ client_schema_version?: string | undefined;
12778
+ schema_strict_mode?: boolean | undefined;
12641
12779
  } | undefined;
12642
12780
  }, {
12643
12781
  data: {
@@ -12748,6 +12886,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
12748
12886
  confirmed?: boolean | undefined;
12749
12887
  user_intent_phrases?: string[] | undefined;
12750
12888
  project?: string | undefined;
12889
+ client_schema_version?: string | undefined;
12890
+ schema_strict_mode?: boolean | undefined;
12751
12891
  } | undefined;
12752
12892
  }>, z.ZodObject<{
12753
12893
  operation_type: z.ZodLiteral<"order">;
@@ -13040,6 +13180,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13040
13180
  confirmed: z.ZodOptional<z.ZodBoolean>;
13041
13181
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13042
13182
  project: z.ZodOptional<z.ZodString>;
13183
+ client_schema_version: z.ZodOptional<z.ZodString>;
13184
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
13043
13185
  }, "strict", z.ZodTypeAny, {
13044
13186
  account: string;
13045
13187
  no_cache?: boolean | undefined;
@@ -13049,6 +13191,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13049
13191
  confirmed?: boolean | undefined;
13050
13192
  user_intent_phrases?: string[] | undefined;
13051
13193
  project?: string | undefined;
13194
+ client_schema_version?: string | undefined;
13195
+ schema_strict_mode?: boolean | undefined;
13052
13196
  }, {
13053
13197
  no_cache?: boolean | undefined;
13054
13198
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -13058,6 +13202,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13058
13202
  confirmed?: boolean | undefined;
13059
13203
  user_intent_phrases?: string[] | undefined;
13060
13204
  project?: string | undefined;
13205
+ client_schema_version?: string | undefined;
13206
+ schema_strict_mode?: boolean | undefined;
13061
13207
  }>>;
13062
13208
  submission: z.ZodOptional<z.ZodObject<{
13063
13209
  type: z.ZodLiteral<"submission">;
@@ -13239,7 +13385,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13239
13385
  }[];
13240
13386
  }[];
13241
13387
  }>>;
13242
- }, "strip", z.ZodTypeAny, {
13388
+ }, "strict", z.ZodTypeAny, {
13243
13389
  data: {
13244
13390
  object: string;
13245
13391
  progress?: {
@@ -13329,6 +13475,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13329
13475
  confirmed?: boolean | undefined;
13330
13476
  user_intent_phrases?: string[] | undefined;
13331
13477
  project?: string | undefined;
13478
+ client_schema_version?: string | undefined;
13479
+ schema_strict_mode?: boolean | undefined;
13332
13480
  } | undefined;
13333
13481
  }, {
13334
13482
  data: {
@@ -13420,6 +13568,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13420
13568
  confirmed?: boolean | undefined;
13421
13569
  user_intent_phrases?: string[] | undefined;
13422
13570
  project?: string | undefined;
13571
+ client_schema_version?: string | undefined;
13572
+ schema_strict_mode?: boolean | undefined;
13423
13573
  } | undefined;
13424
13574
  }>, z.ZodObject<{
13425
13575
  operation_type: z.ZodLiteral<"gen_passport">;
@@ -13613,6 +13763,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13613
13763
  confirmed: z.ZodOptional<z.ZodBoolean>;
13614
13764
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13615
13765
  project: z.ZodOptional<z.ZodString>;
13766
+ client_schema_version: z.ZodOptional<z.ZodString>;
13767
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
13616
13768
  }, "strict", z.ZodTypeAny, {
13617
13769
  account: string;
13618
13770
  no_cache?: boolean | undefined;
@@ -13622,6 +13774,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13622
13774
  confirmed?: boolean | undefined;
13623
13775
  user_intent_phrases?: string[] | undefined;
13624
13776
  project?: string | undefined;
13777
+ client_schema_version?: string | undefined;
13778
+ schema_strict_mode?: boolean | undefined;
13625
13779
  }, {
13626
13780
  no_cache?: boolean | undefined;
13627
13781
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -13631,8 +13785,10 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13631
13785
  confirmed?: boolean | undefined;
13632
13786
  user_intent_phrases?: string[] | undefined;
13633
13787
  project?: string | undefined;
13788
+ client_schema_version?: string | undefined;
13789
+ schema_strict_mode?: boolean | undefined;
13634
13790
  }>>;
13635
- }, "strip", z.ZodTypeAny, {
13791
+ }, "strict", z.ZodTypeAny, {
13636
13792
  guard: string | string[];
13637
13793
  operation_type: "gen_passport";
13638
13794
  info?: {
@@ -13671,6 +13827,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13671
13827
  confirmed?: boolean | undefined;
13672
13828
  user_intent_phrases?: string[] | undefined;
13673
13829
  project?: string | undefined;
13830
+ client_schema_version?: string | undefined;
13831
+ schema_strict_mode?: boolean | undefined;
13674
13832
  } | undefined;
13675
13833
  }, {
13676
13834
  guard: string | string[];
@@ -13711,6 +13869,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13711
13869
  confirmed?: boolean | undefined;
13712
13870
  user_intent_phrases?: string[] | undefined;
13713
13871
  project?: string | undefined;
13872
+ client_schema_version?: string | undefined;
13873
+ schema_strict_mode?: boolean | undefined;
13714
13874
  } | undefined;
13715
13875
  }>, z.ZodObject<{
13716
13876
  operation_type: z.ZodLiteral<"proof">;
@@ -13776,6 +13936,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13776
13936
  confirmed: z.ZodOptional<z.ZodBoolean>;
13777
13937
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13778
13938
  project: z.ZodOptional<z.ZodString>;
13939
+ client_schema_version: z.ZodOptional<z.ZodString>;
13940
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
13779
13941
  }, "strict", z.ZodTypeAny, {
13780
13942
  account: string;
13781
13943
  no_cache?: boolean | undefined;
@@ -13785,6 +13947,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13785
13947
  confirmed?: boolean | undefined;
13786
13948
  user_intent_phrases?: string[] | undefined;
13787
13949
  project?: string | undefined;
13950
+ client_schema_version?: string | undefined;
13951
+ schema_strict_mode?: boolean | undefined;
13788
13952
  }, {
13789
13953
  no_cache?: boolean | undefined;
13790
13954
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -13794,6 +13958,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13794
13958
  confirmed?: boolean | undefined;
13795
13959
  user_intent_phrases?: string[] | undefined;
13796
13960
  project?: string | undefined;
13961
+ client_schema_version?: string | undefined;
13962
+ schema_strict_mode?: boolean | undefined;
13797
13963
  }>>;
13798
13964
  submission: z.ZodOptional<z.ZodObject<{
13799
13965
  type: z.ZodLiteral<"submission">;
@@ -13975,7 +14141,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
13975
14141
  }[];
13976
14142
  }[];
13977
14143
  }>>;
13978
- }, "strip", z.ZodTypeAny, {
14144
+ }, "strict", z.ZodTypeAny, {
13979
14145
  data: {
13980
14146
  proof: string;
13981
14147
  server_pubkey: string;
@@ -14028,6 +14194,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14028
14194
  confirmed?: boolean | undefined;
14029
14195
  user_intent_phrases?: string[] | undefined;
14030
14196
  project?: string | undefined;
14197
+ client_schema_version?: string | undefined;
14198
+ schema_strict_mode?: boolean | undefined;
14031
14199
  } | undefined;
14032
14200
  }, {
14033
14201
  data: {
@@ -14082,6 +14250,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14082
14250
  confirmed?: boolean | undefined;
14083
14251
  user_intent_phrases?: string[] | undefined;
14084
14252
  project?: string | undefined;
14253
+ client_schema_version?: string | undefined;
14254
+ schema_strict_mode?: boolean | undefined;
14085
14255
  } | undefined;
14086
14256
  }>, z.ZodObject<{
14087
14257
  proof: z.ZodString;
@@ -14100,6 +14270,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14100
14270
  confirmed: z.ZodOptional<z.ZodBoolean>;
14101
14271
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14102
14272
  project: z.ZodOptional<z.ZodString>;
14273
+ client_schema_version: z.ZodOptional<z.ZodString>;
14274
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
14103
14275
  }, "strict", z.ZodTypeAny, {
14104
14276
  account: string;
14105
14277
  no_cache?: boolean | undefined;
@@ -14109,6 +14281,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14109
14281
  confirmed?: boolean | undefined;
14110
14282
  user_intent_phrases?: string[] | undefined;
14111
14283
  project?: string | undefined;
14284
+ client_schema_version?: string | undefined;
14285
+ schema_strict_mode?: boolean | undefined;
14112
14286
  }, {
14113
14287
  no_cache?: boolean | undefined;
14114
14288
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -14118,6 +14292,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14118
14292
  confirmed?: boolean | undefined;
14119
14293
  user_intent_phrases?: string[] | undefined;
14120
14294
  project?: string | undefined;
14295
+ client_schema_version?: string | undefined;
14296
+ schema_strict_mode?: boolean | undefined;
14121
14297
  }>>;
14122
14298
  } & {
14123
14299
  operation_type: z.ZodLiteral<"gen_proof">;
@@ -14137,6 +14313,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14137
14313
  confirmed?: boolean | undefined;
14138
14314
  user_intent_phrases?: string[] | undefined;
14139
14315
  project?: string | undefined;
14316
+ client_schema_version?: string | undefined;
14317
+ schema_strict_mode?: boolean | undefined;
14140
14318
  } | undefined;
14141
14319
  item_count?: string | number | null | undefined;
14142
14320
  about_address?: string | null | undefined;
@@ -14156,6 +14334,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14156
14334
  confirmed?: boolean | undefined;
14157
14335
  user_intent_phrases?: string[] | undefined;
14158
14336
  project?: string | undefined;
14337
+ client_schema_version?: string | undefined;
14338
+ schema_strict_mode?: boolean | undefined;
14159
14339
  } | undefined;
14160
14340
  item_count?: string | number | null | undefined;
14161
14341
  about_address?: string | null | undefined;
@@ -14181,6 +14361,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14181
14361
  machine?: string | null | undefined;
14182
14362
  order_allocators?: {
14183
14363
  description: string;
14364
+ threshold: string | number;
14184
14365
  allocators: {
14185
14366
  guard: string;
14186
14367
  sharing: {
@@ -14200,7 +14381,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14200
14381
  max?: string | number | null | undefined;
14201
14382
  fix?: string | number | undefined;
14202
14383
  }[];
14203
- threshold: string | number;
14204
14384
  } | null | undefined;
14205
14385
  sales?: {
14206
14386
  op: "add";
@@ -14390,6 +14570,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14390
14570
  confirmed?: boolean | undefined;
14391
14571
  user_intent_phrases?: string[] | undefined;
14392
14572
  project?: string | undefined;
14573
+ client_schema_version?: string | undefined;
14574
+ schema_strict_mode?: boolean | undefined;
14393
14575
  } | undefined;
14394
14576
  } | {
14395
14577
  data: {
@@ -14409,29 +14591,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14409
14591
  description?: string | undefined;
14410
14592
  publish?: boolean | undefined;
14411
14593
  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;
14435
14594
  node?: {
14436
14595
  op: "add";
14437
14596
  nodes: {
@@ -14518,6 +14677,29 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14518
14677
  } | {
14519
14678
  json_or_markdown_file: string;
14520
14679
  } | undefined;
14680
+ repository?: {
14681
+ op: "set" | "add";
14682
+ objects: string[];
14683
+ } | {
14684
+ op: "remove";
14685
+ objects: string[];
14686
+ } | {
14687
+ op: "clear";
14688
+ } | undefined;
14689
+ owner_receive?: {
14690
+ received: {
14691
+ id: string;
14692
+ balance: string | number;
14693
+ payment: string;
14694
+ }[];
14695
+ balance: string | number;
14696
+ token_type: string;
14697
+ } | "recently" | {
14698
+ type: string;
14699
+ id: string;
14700
+ content_raw?: any;
14701
+ }[] | undefined;
14702
+ um?: string | null | undefined;
14521
14703
  progress_new?: {
14522
14704
  namedNew?: {
14523
14705
  name?: string | undefined;
@@ -14585,6 +14767,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14585
14767
  confirmed?: boolean | undefined;
14586
14768
  user_intent_phrases?: string[] | undefined;
14587
14769
  project?: string | undefined;
14770
+ client_schema_version?: string | undefined;
14771
+ schema_strict_mode?: boolean | undefined;
14588
14772
  } | undefined;
14589
14773
  } | {
14590
14774
  data: {
@@ -14657,6 +14841,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14657
14841
  confirmed?: boolean | undefined;
14658
14842
  user_intent_phrases?: string[] | undefined;
14659
14843
  project?: string | undefined;
14844
+ client_schema_version?: string | undefined;
14845
+ schema_strict_mode?: boolean | undefined;
14660
14846
  } | undefined;
14661
14847
  } | {
14662
14848
  data: {
@@ -14708,7 +14894,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14708
14894
  id_from_submission?: number | undefined;
14709
14895
  data_from_submission?: number | undefined;
14710
14896
  }[];
14711
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
14897
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
14712
14898
  quote_guard?: string | null | undefined;
14713
14899
  }[];
14714
14900
  } | {
@@ -14785,6 +14971,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14785
14971
  confirmed?: boolean | undefined;
14786
14972
  user_intent_phrases?: string[] | undefined;
14787
14973
  project?: string | undefined;
14974
+ client_schema_version?: string | undefined;
14975
+ schema_strict_mode?: boolean | undefined;
14788
14976
  } | undefined;
14789
14977
  } | {
14790
14978
  data: {
@@ -14829,6 +15017,28 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14829
15017
  onChain?: boolean | undefined;
14830
15018
  } | undefined;
14831
15019
  } | undefined;
15020
+ usage_guard?: string | null | undefined;
15021
+ voting_guard?: {
15022
+ op: "set" | "add";
15023
+ guards: {
15024
+ guard: string;
15025
+ vote_weight: {
15026
+ GuardIdentifier: number;
15027
+ } | {
15028
+ FixedValue: number;
15029
+ };
15030
+ }[];
15031
+ } | {
15032
+ op: "remove";
15033
+ guards: string[];
15034
+ } | {
15035
+ op: "clear";
15036
+ } | undefined;
15037
+ vote?: {
15038
+ arb: string;
15039
+ votes: number[];
15040
+ voting_guard?: string | undefined;
15041
+ } | undefined;
14832
15042
  location?: string | undefined;
14833
15043
  owner_receive?: {
14834
15044
  received: {
@@ -14849,23 +15059,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14849
15059
  arb: string;
14850
15060
  feedback: string;
14851
15061
  } | 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
15062
  confirm?: {
14870
15063
  arb: string;
14871
15064
  voting_deadline: number | null;
@@ -14874,11 +15067,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14874
15067
  arb: string;
14875
15068
  voting_deadline: number | null;
14876
15069
  } | undefined;
14877
- vote?: {
14878
- arb: string;
14879
- votes: number[];
14880
- voting_guard?: string | undefined;
14881
- } | undefined;
14882
15070
  arb_withdraw?: {
14883
15071
  arb: string;
14884
15072
  } | undefined;
@@ -14935,6 +15123,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
14935
15123
  confirmed?: boolean | undefined;
14936
15124
  user_intent_phrases?: string[] | undefined;
14937
15125
  project?: string | undefined;
15126
+ client_schema_version?: string | undefined;
15127
+ schema_strict_mode?: boolean | undefined;
14938
15128
  } | undefined;
14939
15129
  } | {
14940
15130
  data: {
@@ -15023,6 +15213,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15023
15213
  confirmed?: boolean | undefined;
15024
15214
  user_intent_phrases?: string[] | undefined;
15025
15215
  project?: string | undefined;
15216
+ client_schema_version?: string | undefined;
15217
+ schema_strict_mode?: boolean | undefined;
15026
15218
  } | undefined;
15027
15219
  } | {
15028
15220
  data: {
@@ -15185,6 +15377,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15185
15377
  confirmed?: boolean | undefined;
15186
15378
  user_intent_phrases?: string[] | undefined;
15187
15379
  project?: string | undefined;
15380
+ client_schema_version?: string | undefined;
15381
+ schema_strict_mode?: boolean | undefined;
15188
15382
  } | undefined;
15189
15383
  } | {
15190
15384
  data: {
@@ -15294,6 +15488,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15294
15488
  confirmed?: boolean | undefined;
15295
15489
  user_intent_phrases?: string[] | undefined;
15296
15490
  project?: string | undefined;
15491
+ client_schema_version?: string | undefined;
15492
+ schema_strict_mode?: boolean | undefined;
15297
15493
  } | undefined;
15298
15494
  } | {
15299
15495
  data: {
@@ -15311,6 +15507,7 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15311
15507
  };
15312
15508
  allocators: {
15313
15509
  description: string;
15510
+ threshold: string | number;
15314
15511
  allocators: {
15315
15512
  guard: string;
15316
15513
  sharing: {
@@ -15330,7 +15527,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15330
15527
  max?: string | number | null | undefined;
15331
15528
  fix?: string | number | undefined;
15332
15529
  }[];
15333
- threshold: string | number;
15334
15530
  };
15335
15531
  payment_info: {
15336
15532
  index: string | number;
@@ -15388,6 +15584,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15388
15584
  confirmed?: boolean | undefined;
15389
15585
  user_intent_phrases?: string[] | undefined;
15390
15586
  project?: string | undefined;
15587
+ client_schema_version?: string | undefined;
15588
+ schema_strict_mode?: boolean | undefined;
15391
15589
  } | undefined;
15392
15590
  } | {
15393
15591
  data: {
@@ -15398,6 +15596,58 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15398
15596
  onChain?: boolean | undefined;
15399
15597
  } | undefined;
15400
15598
  description?: string | undefined;
15599
+ table?: {
15600
+ op: "add perm by index";
15601
+ entity: {
15602
+ entities: {
15603
+ name_or_address?: string | undefined;
15604
+ local_mark_first?: boolean | undefined;
15605
+ }[];
15606
+ check_all_founded?: boolean | undefined;
15607
+ };
15608
+ index: number;
15609
+ } | {
15610
+ op: "set perm by index";
15611
+ entity: {
15612
+ entities: {
15613
+ name_or_address?: string | undefined;
15614
+ local_mark_first?: boolean | undefined;
15615
+ }[];
15616
+ check_all_founded?: boolean | undefined;
15617
+ };
15618
+ index: number;
15619
+ } | {
15620
+ op: "remove perm by index";
15621
+ entity: {
15622
+ entities: {
15623
+ name_or_address?: string | undefined;
15624
+ local_mark_first?: boolean | undefined;
15625
+ }[];
15626
+ check_all_founded?: boolean | undefined;
15627
+ };
15628
+ index: number;
15629
+ } | {
15630
+ op: "add perm by entity";
15631
+ entity: {
15632
+ name_or_address?: string | undefined;
15633
+ local_mark_first?: boolean | undefined;
15634
+ };
15635
+ index: number[];
15636
+ } | {
15637
+ op: "set perm by entity";
15638
+ entity: {
15639
+ name_or_address?: string | undefined;
15640
+ local_mark_first?: boolean | undefined;
15641
+ };
15642
+ index: number[];
15643
+ } | {
15644
+ op: "remove perm by entity";
15645
+ entity: {
15646
+ name_or_address?: string | undefined;
15647
+ local_mark_first?: boolean | undefined;
15648
+ };
15649
+ index: number[];
15650
+ } | undefined;
15401
15651
  owner_receive?: {
15402
15652
  received: {
15403
15653
  id: string;
@@ -15473,58 +15723,6 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15473
15723
  } | {
15474
15724
  op: "clear";
15475
15725
  } | 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
15726
  apply?: string[] | undefined;
15529
15727
  };
15530
15728
  operation_type: "permission";
@@ -15535,19 +15733,14 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15535
15733
  permission_guard?: string[] | undefined;
15536
15734
  referrer?: string | undefined;
15537
15735
  confirmed?: boolean | undefined;
15538
- user_intent_phrases?: string[] | undefined;
15539
- project?: string | undefined;
15540
- } | undefined;
15541
- } | {
15542
- data: {
15543
- 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;
15736
+ user_intent_phrases?: string[] | undefined;
15737
+ project?: string | undefined;
15738
+ client_schema_version?: string | undefined;
15739
+ schema_strict_mode?: boolean | undefined;
15740
+ } | undefined;
15741
+ } | {
15742
+ data: {
15743
+ description?: string | undefined;
15551
15744
  table?: {
15552
15745
  identifier: number;
15553
15746
  b_submission: boolean;
@@ -15564,10 +15757,17 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15564
15757
  check_all_founded?: boolean | undefined;
15565
15758
  } | string[] | boolean[] | number[] | number[][] | undefined;
15566
15759
  }[] | undefined;
15760
+ root?: any;
15567
15761
  rely?: {
15568
15762
  guards: string[];
15569
15763
  logic_or?: boolean | undefined;
15570
15764
  } | undefined;
15765
+ namedNew?: {
15766
+ name?: string | undefined;
15767
+ replaceExistName?: boolean | undefined;
15768
+ tags?: string[] | undefined;
15769
+ onChain?: boolean | undefined;
15770
+ } | undefined;
15571
15771
  };
15572
15772
  operation_type: "guard";
15573
15773
  env?: {
@@ -15579,6 +15779,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15579
15779
  confirmed?: boolean | undefined;
15580
15780
  user_intent_phrases?: string[] | undefined;
15581
15781
  project?: string | undefined;
15782
+ client_schema_version?: string | undefined;
15783
+ schema_strict_mode?: boolean | undefined;
15582
15784
  } | undefined;
15583
15785
  } | {
15584
15786
  data: {
@@ -15651,6 +15853,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15651
15853
  confirmed?: boolean | undefined;
15652
15854
  user_intent_phrases?: string[] | undefined;
15653
15855
  project?: string | undefined;
15856
+ client_schema_version?: string | undefined;
15857
+ schema_strict_mode?: boolean | undefined;
15654
15858
  } | undefined;
15655
15859
  } | {
15656
15860
  data: {
@@ -15689,6 +15893,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15689
15893
  confirmed?: boolean | undefined;
15690
15894
  user_intent_phrases?: string[] | undefined;
15691
15895
  project?: string | undefined;
15896
+ client_schema_version?: string | undefined;
15897
+ schema_strict_mode?: boolean | undefined;
15692
15898
  } | undefined;
15693
15899
  } | {
15694
15900
  data: {
@@ -15799,6 +16005,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15799
16005
  confirmed?: boolean | undefined;
15800
16006
  user_intent_phrases?: string[] | undefined;
15801
16007
  project?: string | undefined;
16008
+ client_schema_version?: string | undefined;
16009
+ schema_strict_mode?: boolean | undefined;
15802
16010
  } | undefined;
15803
16011
  } | {
15804
16012
  data: {
@@ -15890,6 +16098,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15890
16098
  confirmed?: boolean | undefined;
15891
16099
  user_intent_phrases?: string[] | undefined;
15892
16100
  project?: string | undefined;
16101
+ client_schema_version?: string | undefined;
16102
+ schema_strict_mode?: boolean | undefined;
15893
16103
  } | undefined;
15894
16104
  } | {
15895
16105
  guard: string | string[];
@@ -15930,6 +16140,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15930
16140
  confirmed?: boolean | undefined;
15931
16141
  user_intent_phrases?: string[] | undefined;
15932
16142
  project?: string | undefined;
16143
+ client_schema_version?: string | undefined;
16144
+ schema_strict_mode?: boolean | undefined;
15933
16145
  } | undefined;
15934
16146
  } | {
15935
16147
  data: {
@@ -15984,6 +16196,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
15984
16196
  confirmed?: boolean | undefined;
15985
16197
  user_intent_phrases?: string[] | undefined;
15986
16198
  project?: string | undefined;
16199
+ client_schema_version?: string | undefined;
16200
+ schema_strict_mode?: boolean | undefined;
15987
16201
  } | undefined;
15988
16202
  } | {
15989
16203
  operation_type: "gen_proof";
@@ -16001,6 +16215,8 @@ export declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUni
16001
16215
  confirmed?: boolean | undefined;
16002
16216
  user_intent_phrases?: string[] | undefined;
16003
16217
  project?: string | undefined;
16218
+ client_schema_version?: string | undefined;
16219
+ schema_strict_mode?: boolean | undefined;
16004
16220
  } | undefined;
16005
16221
  item_count?: string | number | null | undefined;
16006
16222
  about_address?: string | null | undefined;
@@ -16041,7 +16257,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16041
16257
  account?: string | undefined;
16042
16258
  }>;
16043
16259
  outputPath: z.ZodString;
16044
- }, "strip", z.ZodTypeAny, {
16260
+ }, "strict", z.ZodTypeAny, {
16045
16261
  options: {
16046
16262
  markdown_text: string;
16047
16263
  images?: {
@@ -16070,7 +16286,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16070
16286
  wipFilePath: z.ZodString;
16071
16287
  hash_equal: z.ZodOptional<z.ZodString>;
16072
16288
  requireSignature: z.ZodOptional<z.ZodBoolean>;
16073
- }, "strip", z.ZodTypeAny, {
16289
+ }, "strict", z.ZodTypeAny, {
16074
16290
  type: "verify";
16075
16291
  wipFilePath: string;
16076
16292
  hash_equal?: string | undefined;
@@ -16085,7 +16301,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16085
16301
  wipFilePath: z.ZodString;
16086
16302
  account: z.ZodOptional<z.ZodString>;
16087
16303
  outputPath: z.ZodOptional<z.ZodString>;
16088
- }, "strip", z.ZodTypeAny, {
16304
+ }, "strict", z.ZodTypeAny, {
16089
16305
  type: "sign";
16090
16306
  wipFilePath: string;
16091
16307
  account?: string | undefined;
@@ -16111,7 +16327,7 @@ export declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
16111
16327
  theme?: "light" | "dark" | undefined;
16112
16328
  outputPath?: string | undefined;
16113
16329
  }>>;
16114
- }, "strip", z.ZodTypeAny, {
16330
+ }, "strict", z.ZodTypeAny, {
16115
16331
  type: "wip2html";
16116
16332
  wipPath: string;
16117
16333
  options?: {
@@ -16165,7 +16381,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16165
16381
  limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
16166
16382
  no_cache: z.ZodOptional<z.ZodBoolean>;
16167
16383
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16168
- }, "strip", z.ZodTypeAny, {
16384
+ }, "strict", z.ZodTypeAny, {
16169
16385
  parent: string;
16170
16386
  query_type: "onchain_table";
16171
16387
  no_cache?: boolean | undefined;
@@ -16195,7 +16411,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16195
16411
  }>, z.ZodNumber]>;
16196
16412
  no_cache: z.ZodOptional<z.ZodBoolean>;
16197
16413
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16198
- }, "strip", z.ZodTypeAny, {
16414
+ }, "strict", z.ZodTypeAny, {
16199
16415
  name: string;
16200
16416
  parent: string;
16201
16417
  entity: number | {
@@ -16230,7 +16446,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16230
16446
  }>, z.ZodString]>;
16231
16447
  no_cache: z.ZodOptional<z.ZodBoolean>;
16232
16448
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16233
- }, "strip", z.ZodTypeAny, {
16449
+ }, "strict", z.ZodTypeAny, {
16234
16450
  address: string | {
16235
16451
  name_or_address?: string | undefined;
16236
16452
  local_mark_first?: boolean | undefined;
@@ -16262,7 +16478,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16262
16478
  }>, z.ZodString]>;
16263
16479
  no_cache: z.ZodOptional<z.ZodBoolean>;
16264
16480
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16265
- }, "strip", z.ZodTypeAny, {
16481
+ }, "strict", z.ZodTypeAny, {
16266
16482
  address: string | {
16267
16483
  name_or_address?: string | undefined;
16268
16484
  local_mark_first?: boolean | undefined;
@@ -16292,7 +16508,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16292
16508
  }>, z.ZodString]>;
16293
16509
  no_cache: z.ZodOptional<z.ZodBoolean>;
16294
16510
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16295
- }, "strip", z.ZodTypeAny, {
16511
+ }, "strict", z.ZodTypeAny, {
16296
16512
  address: string | {
16297
16513
  name_or_address?: string | undefined;
16298
16514
  local_mark_first?: boolean | undefined;
@@ -16323,7 +16539,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16323
16539
  }>;
16324
16540
  no_cache: z.ZodOptional<z.ZodBoolean>;
16325
16541
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16326
- }, "strip", z.ZodTypeAny, {
16542
+ }, "strict", z.ZodTypeAny, {
16327
16543
  address: {
16328
16544
  name_or_address?: string | undefined;
16329
16545
  local_mark_first?: boolean | undefined;
@@ -16356,7 +16572,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16356
16572
  }>;
16357
16573
  no_cache: z.ZodOptional<z.ZodBoolean>;
16358
16574
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16359
- }, "strip", z.ZodTypeAny, {
16575
+ }, "strict", z.ZodTypeAny, {
16360
16576
  address: {
16361
16577
  name_or_address?: string | undefined;
16362
16578
  local_mark_first?: boolean | undefined;
@@ -16389,7 +16605,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16389
16605
  }>;
16390
16606
  no_cache: z.ZodOptional<z.ZodBoolean>;
16391
16607
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16392
- }, "strip", z.ZodTypeAny, {
16608
+ }, "strict", z.ZodTypeAny, {
16393
16609
  address: {
16394
16610
  name_or_address?: string | undefined;
16395
16611
  local_mark_first?: boolean | undefined;
@@ -16413,7 +16629,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16413
16629
  key: z.ZodString;
16414
16630
  no_cache: z.ZodOptional<z.ZodBoolean>;
16415
16631
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16416
- }, "strip", z.ZodTypeAny, {
16632
+ }, "strict", z.ZodTypeAny, {
16417
16633
  parent: string;
16418
16634
  key: string;
16419
16635
  query_type: "onchain_table_item_machine_node";
@@ -16431,7 +16647,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16431
16647
  u64: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
16432
16648
  no_cache: z.ZodOptional<z.ZodBoolean>;
16433
16649
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16434
- }, "strip", z.ZodTypeAny, {
16650
+ }, "strict", z.ZodTypeAny, {
16435
16651
  u64: string | number;
16436
16652
  parent: string;
16437
16653
  query_type: "onchain_table_item_progress_history";
@@ -16458,7 +16674,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16458
16674
  }>;
16459
16675
  no_cache: z.ZodOptional<z.ZodBoolean>;
16460
16676
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16461
- }, "strip", z.ZodTypeAny, {
16677
+ }, "strict", z.ZodTypeAny, {
16462
16678
  address: {
16463
16679
  name_or_address?: string | undefined;
16464
16680
  local_mark_first?: boolean | undefined;
@@ -16483,7 +16699,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16483
16699
  key_value: z.ZodAny;
16484
16700
  no_cache: z.ZodOptional<z.ZodBoolean>;
16485
16701
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16486
- }, "strip", z.ZodTypeAny, {
16702
+ }, "strict", z.ZodTypeAny, {
16487
16703
  parent: string;
16488
16704
  query_type: "onchain_table_item_generic";
16489
16705
  key_type: string;
@@ -16595,7 +16811,7 @@ export declare const OnchainTableDataSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscr
16595
16811
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
16596
16812
  key_value?: any;
16597
16813
  }, unknown>;
16598
- export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
16814
+ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
16599
16815
  query_type: z.ZodLiteral<"local_mark_list">;
16600
16816
  filter: z.ZodOptional<z.ZodObject<{
16601
16817
  name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -16646,7 +16862,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16646
16862
  lte?: number | undefined;
16647
16863
  } | undefined;
16648
16864
  }>>;
16649
- }, "strip", z.ZodTypeAny, {
16865
+ }, "strict", z.ZodTypeAny, {
16650
16866
  query_type: "local_mark_list";
16651
16867
  filter?: {
16652
16868
  address?: string | undefined;
@@ -16736,7 +16952,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16736
16952
  hasMessenger?: boolean | undefined;
16737
16953
  includePubkey?: boolean | undefined;
16738
16954
  }>>;
16739
- }, "strip", z.ZodTypeAny, {
16955
+ }, "strict", z.ZodTypeAny, {
16740
16956
  query_type: "account_list";
16741
16957
  filter?: {
16742
16958
  address?: string | undefined;
@@ -16823,7 +17039,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16823
17039
  default?: string | undefined;
16824
17040
  contents?: string[] | undefined;
16825
17041
  }>>;
16826
- }, "strip", z.ZodTypeAny, {
17042
+ }, "strict", z.ZodTypeAny, {
16827
17043
  query_type: "local_info_list";
16828
17044
  filter?: {
16829
17045
  name?: string | undefined;
@@ -16868,7 +17084,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16868
17084
  type?: string | undefined;
16869
17085
  alias_or_name?: string | undefined;
16870
17086
  }>>;
16871
- }, "strip", z.ZodTypeAny, {
17087
+ }, "strict", z.ZodTypeAny, {
16872
17088
  query_type: "token_list";
16873
17089
  filter?: {
16874
17090
  symbol?: string | undefined;
@@ -16889,7 +17105,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16889
17105
  coin: z.ZodOptional<z.ZodObject<{
16890
17106
  cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
16891
17107
  limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
16892
- }, "strip", z.ZodTypeAny, {
17108
+ }, "strict", z.ZodTypeAny, {
16893
17109
  cursor?: string | null | undefined;
16894
17110
  limit?: number | null | undefined;
16895
17111
  }, {
@@ -16898,7 +17114,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16898
17114
  }>>;
16899
17115
  token_type: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
16900
17116
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16901
- }, "strip", z.ZodTypeAny, {
17117
+ }, "strict", z.ZodTypeAny, {
16902
17118
  query_type: "account_balance";
16903
17119
  name_or_address?: string | undefined;
16904
17120
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -16921,18 +17137,18 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16921
17137
  }>, z.ZodObject<{
16922
17138
  query_type: z.ZodLiteral<"local_names">;
16923
17139
  addresses: z.ZodArray<z.ZodString, "many">;
16924
- }, "strip", z.ZodTypeAny, {
17140
+ }, "strict", z.ZodTypeAny, {
16925
17141
  query_type: "local_names";
16926
17142
  addresses: string[];
16927
17143
  }, {
16928
17144
  query_type: "local_names";
16929
17145
  addresses: string[];
16930
- }>]>, z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
17146
+ }>, z.ZodObject<{
16931
17147
  query_type: z.ZodLiteral<"onchain_personal_profile">;
16932
17148
  account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
16933
17149
  no_cache: z.ZodOptional<z.ZodBoolean>;
16934
17150
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16935
- }, "strip", z.ZodTypeAny, {
17151
+ }, "strict", z.ZodTypeAny, {
16936
17152
  query_type: "onchain_personal_profile";
16937
17153
  no_cache?: boolean | undefined;
16938
17154
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -16947,7 +17163,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16947
17163
  objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
16948
17164
  no_cache: z.ZodOptional<z.ZodBoolean>;
16949
17165
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16950
- }, "strip", z.ZodTypeAny, {
17166
+ }, "strict", z.ZodTypeAny, {
16951
17167
  objects: string[];
16952
17168
  query_type: "onchain_objects";
16953
17169
  no_cache?: boolean | undefined;
@@ -16974,7 +17190,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16974
17190
  limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
16975
17191
  no_cache: z.ZodOptional<z.ZodBoolean>;
16976
17192
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
16977
- }, "strip", z.ZodTypeAny, {
17193
+ }, "strict", z.ZodTypeAny, {
16978
17194
  name_or_address: string | {
16979
17195
  name_or_address?: string | undefined;
16980
17196
  local_mark_first?: boolean | undefined;
@@ -16996,7 +17212,7 @@ export declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodD
16996
17212
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
16997
17213
  cursor?: string | null | undefined;
16998
17214
  limit?: number | null | undefined;
16999
- }>]>]>, {
17215
+ }>]>, {
17000
17216
  query_type: "local_mark_list";
17001
17217
  filter?: {
17002
17218
  address?: string | undefined;
@@ -21302,9 +21518,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21302
21518
  msg: string;
21303
21519
  accomplished: boolean;
21304
21520
  }[];
21521
+ threshold: string | number;
21305
21522
  next_node: string;
21306
21523
  weights: string | number;
21307
- threshold: string | number;
21308
21524
  }, {
21309
21525
  forwards: {
21310
21526
  time: string | number;
@@ -21318,9 +21534,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21318
21534
  msg: string;
21319
21535
  accomplished: boolean;
21320
21536
  }[];
21537
+ threshold: string | number;
21321
21538
  next_node: string;
21322
21539
  weights: string | number;
21323
- threshold: string | number;
21324
21540
  }>, "many">;
21325
21541
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21326
21542
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -21488,9 +21704,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21488
21704
  msg: string;
21489
21705
  accomplished: boolean;
21490
21706
  }[];
21707
+ threshold: string | number;
21491
21708
  next_node: string;
21492
21709
  weights: string | number;
21493
- threshold: string | number;
21494
21710
  }, {
21495
21711
  forwards: {
21496
21712
  time: string | number;
@@ -21504,9 +21720,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21504
21720
  msg: string;
21505
21721
  accomplished: boolean;
21506
21722
  }[];
21723
+ threshold: string | number;
21507
21724
  next_node: string;
21508
21725
  weights: string | number;
21509
- threshold: string | number;
21510
21726
  }>, "many">;
21511
21727
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21512
21728
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -21674,9 +21890,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21674
21890
  msg: string;
21675
21891
  accomplished: boolean;
21676
21892
  }[];
21893
+ threshold: string | number;
21677
21894
  next_node: string;
21678
21895
  weights: string | number;
21679
- threshold: string | number;
21680
21896
  }, {
21681
21897
  forwards: {
21682
21898
  time: string | number;
@@ -21690,9 +21906,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21690
21906
  msg: string;
21691
21907
  accomplished: boolean;
21692
21908
  }[];
21909
+ threshold: string | number;
21693
21910
  next_node: string;
21694
21911
  weights: string | number;
21695
- threshold: string | number;
21696
21912
  }>, "many">;
21697
21913
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21698
21914
  }, z.ZodTypeAny, "passthrough">>, z.ZodUndefined]>;
@@ -21863,9 +22079,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21863
22079
  msg: string;
21864
22080
  accomplished: boolean;
21865
22081
  }[];
22082
+ threshold: string | number;
21866
22083
  next_node: string;
21867
22084
  weights: string | number;
21868
- threshold: string | number;
21869
22085
  }, {
21870
22086
  forwards: {
21871
22087
  time: string | number;
@@ -21879,9 +22095,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
21879
22095
  msg: string;
21880
22096
  accomplished: boolean;
21881
22097
  }[];
22098
+ threshold: string | number;
21882
22099
  next_node: string;
21883
22100
  weights: string | number;
21884
- threshold: string | number;
21885
22101
  }>, "many">;
21886
22102
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
21887
22103
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -22052,9 +22268,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
22052
22268
  msg: string;
22053
22269
  accomplished: boolean;
22054
22270
  }[];
22271
+ threshold: string | number;
22055
22272
  next_node: string;
22056
22273
  weights: string | number;
22057
- threshold: string | number;
22058
22274
  }, {
22059
22275
  forwards: {
22060
22276
  time: string | number;
@@ -22068,9 +22284,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
22068
22284
  msg: string;
22069
22285
  accomplished: boolean;
22070
22286
  }[];
22287
+ threshold: string | number;
22071
22288
  next_node: string;
22072
22289
  weights: string | number;
22073
- threshold: string | number;
22074
22290
  }>, "many">;
22075
22291
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
22076
22292
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -22803,7 +23019,669 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
22803
23019
  }>, "many">>;
22804
23020
  }, z.ZodTypeAny, "passthrough"> | undefined;
22805
23021
  }>]>;
22806
- semantic: z.ZodOptional<z.ZodAny>;
23022
+ semantic: z.ZodOptional<z.ZodObject<{
23023
+ intent: z.ZodString;
23024
+ status: z.ZodEnum<["success", "partial", "failed", "pending_input"]>;
23025
+ summary: z.ZodString;
23026
+ created: z.ZodOptional<z.ZodArray<z.ZodObject<{
23027
+ id: z.ZodString;
23028
+ name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23029
+ role: z.ZodEnum<["Permission", "Guard", "Machine", "Progress", "Service", "Order", "Allocation", "Arbitration", "ArbCase", "Messenger", "Contact", "Demand", "Reward", "Personal", "Repository", "Treasury", "Discount", "Other"]>;
23030
+ relation: z.ZodOptional<z.ZodObject<{
23031
+ parent: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23032
+ relation_type: z.ZodOptional<z.ZodEnum<["machine_of", "guard_of", "allocator_of", "permission_of", "progress_of", "allocation_of", "arb_of", "other"]>>;
23033
+ }, "strip", z.ZodTypeAny, {
23034
+ parent?: string | null | undefined;
23035
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23036
+ }, {
23037
+ parent?: string | null | undefined;
23038
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23039
+ }>>;
23040
+ immutable: z.ZodOptional<z.ZodBoolean>;
23041
+ }, "strict", z.ZodTypeAny, {
23042
+ id: string;
23043
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23044
+ name?: string | null | undefined;
23045
+ relation?: {
23046
+ parent?: string | null | undefined;
23047
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23048
+ } | undefined;
23049
+ immutable?: boolean | undefined;
23050
+ }, {
23051
+ id: string;
23052
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23053
+ name?: string | null | undefined;
23054
+ relation?: {
23055
+ parent?: string | null | undefined;
23056
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23057
+ } | undefined;
23058
+ immutable?: boolean | undefined;
23059
+ }>, "many">>;
23060
+ modified: z.ZodOptional<z.ZodArray<z.ZodObject<{
23061
+ id: z.ZodString;
23062
+ name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23063
+ role: z.ZodEnum<["Permission", "Guard", "Machine", "Progress", "Service", "Order", "Allocation", "Arbitration", "ArbCase", "Messenger", "Contact", "Demand", "Reward", "Personal", "Repository", "Treasury", "Discount", "Other"]>;
23064
+ relation: z.ZodOptional<z.ZodObject<{
23065
+ parent: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
23066
+ relation_type: z.ZodOptional<z.ZodEnum<["machine_of", "guard_of", "allocator_of", "permission_of", "progress_of", "allocation_of", "arb_of", "other"]>>;
23067
+ }, "strip", z.ZodTypeAny, {
23068
+ parent?: string | null | undefined;
23069
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23070
+ }, {
23071
+ parent?: string | null | undefined;
23072
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23073
+ }>>;
23074
+ immutable: z.ZodOptional<z.ZodBoolean>;
23075
+ }, "strict", z.ZodTypeAny, {
23076
+ id: string;
23077
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23078
+ name?: string | null | undefined;
23079
+ relation?: {
23080
+ parent?: string | null | undefined;
23081
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23082
+ } | undefined;
23083
+ immutable?: boolean | undefined;
23084
+ }, {
23085
+ id: string;
23086
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23087
+ name?: string | null | undefined;
23088
+ relation?: {
23089
+ parent?: string | null | undefined;
23090
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23091
+ } | undefined;
23092
+ immutable?: boolean | undefined;
23093
+ }>, "many">>;
23094
+ released: z.ZodOptional<z.ZodArray<z.ZodObject<{
23095
+ amount: z.ZodString;
23096
+ coinType: z.ZodString;
23097
+ role: z.ZodEnum<["payment", "refund", "change", "compensation", "reward", "gas", "deposit", "release", "other"]>;
23098
+ from: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23099
+ to: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23100
+ }, "strict", z.ZodTypeAny, {
23101
+ coinType: string;
23102
+ amount: string;
23103
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23104
+ from?: string | null | undefined;
23105
+ to?: string | null | undefined;
23106
+ }, {
23107
+ coinType: string;
23108
+ amount: string;
23109
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23110
+ from?: string | null | undefined;
23111
+ to?: string | null | undefined;
23112
+ }>, "many">>;
23113
+ events: z.ZodOptional<z.ZodArray<z.ZodObject<{
23114
+ event_type: z.ZodString;
23115
+ business_meaning: z.ZodString;
23116
+ category: z.ZodEnum<["lifecycle", "state_change", "fund_flow", "permission", "guard", "other"]>;
23117
+ related_object: z.ZodOptional<z.ZodString>;
23118
+ side_effect: z.ZodOptional<z.ZodString>;
23119
+ }, "strict", z.ZodTypeAny, {
23120
+ event_type: string;
23121
+ business_meaning: string;
23122
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23123
+ related_object?: string | undefined;
23124
+ side_effect?: string | undefined;
23125
+ }, {
23126
+ event_type: string;
23127
+ business_meaning: string;
23128
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23129
+ related_object?: string | undefined;
23130
+ side_effect?: string | undefined;
23131
+ }>, "many">>;
23132
+ next_actions: z.ZodOptional<z.ZodArray<z.ZodObject<{
23133
+ action: z.ZodString;
23134
+ reason: z.ZodString;
23135
+ tool: z.ZodOptional<z.ZodString>;
23136
+ prerequisite: z.ZodOptional<z.ZodString>;
23137
+ priority: z.ZodEnum<["required", "recommended", "optional"]>;
23138
+ }, "strict", z.ZodTypeAny, {
23139
+ action: string;
23140
+ reason: string;
23141
+ priority: "required" | "recommended" | "optional";
23142
+ tool?: string | undefined;
23143
+ prerequisite?: string | undefined;
23144
+ }, {
23145
+ action: string;
23146
+ reason: string;
23147
+ priority: "required" | "recommended" | "optional";
23148
+ tool?: string | undefined;
23149
+ prerequisite?: string | undefined;
23150
+ }>, "many">>;
23151
+ warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23152
+ experience: z.ZodOptional<z.ZodObject<{
23153
+ advice: z.ZodOptional<z.ZodString>;
23154
+ avoid: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23155
+ relevance: z.ZodOptional<z.ZodNumber>;
23156
+ matched_scenario: z.ZodOptional<z.ZodString>;
23157
+ }, "strict", z.ZodTypeAny, {
23158
+ advice?: string | undefined;
23159
+ avoid?: string[] | undefined;
23160
+ relevance?: number | undefined;
23161
+ matched_scenario?: string | undefined;
23162
+ }, {
23163
+ advice?: string | undefined;
23164
+ avoid?: string[] | undefined;
23165
+ relevance?: number | undefined;
23166
+ matched_scenario?: string | undefined;
23167
+ }>>;
23168
+ service_status: z.ZodOptional<z.ZodObject<{
23169
+ active: z.ZodArray<z.ZodString, "many">;
23170
+ inactive: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23171
+ }, "strict", z.ZodTypeAny, {
23172
+ active: string[];
23173
+ inactive?: string[] | undefined;
23174
+ }, {
23175
+ active: string[];
23176
+ inactive?: string[] | undefined;
23177
+ }>>;
23178
+ customer_advice: z.ZodOptional<z.ZodObject<{
23179
+ risk_score: z.ZodOptional<z.ZodNumber>;
23180
+ risk_level: z.ZodOptional<z.ZodEnum<["low", "medium_low", "medium_high", "high"]>>;
23181
+ recommendations: z.ZodArray<z.ZodString, "many">;
23182
+ reminders: z.ZodArray<z.ZodObject<{
23183
+ id: z.ZodString;
23184
+ stage: z.ZodEnum<["browse", "evaluate", "preorder", "in_progress", "complete", "after_sale"]>;
23185
+ priority: z.ZodEnum<["required", "recommended", "info", "reminder"]>;
23186
+ message: z.ZodString;
23187
+ action: z.ZodOptional<z.ZodString>;
23188
+ }, "strict", z.ZodTypeAny, {
23189
+ message: string;
23190
+ id: string;
23191
+ priority: "required" | "recommended" | "info" | "reminder";
23192
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23193
+ action?: string | undefined;
23194
+ }, {
23195
+ message: string;
23196
+ id: string;
23197
+ priority: "required" | "recommended" | "info" | "reminder";
23198
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23199
+ action?: string | undefined;
23200
+ }>, "many">;
23201
+ preference_match: z.ZodOptional<z.ZodObject<{
23202
+ score: z.ZodNumber;
23203
+ matches: z.ZodArray<z.ZodString, "many">;
23204
+ mismatches: z.ZodArray<z.ZodString, "many">;
23205
+ }, "strict", z.ZodTypeAny, {
23206
+ score: number;
23207
+ matches: string[];
23208
+ mismatches: string[];
23209
+ }, {
23210
+ score: number;
23211
+ matches: string[];
23212
+ mismatches: string[];
23213
+ }>>;
23214
+ }, "strict", z.ZodTypeAny, {
23215
+ recommendations: string[];
23216
+ reminders: {
23217
+ message: string;
23218
+ id: string;
23219
+ priority: "required" | "recommended" | "info" | "reminder";
23220
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23221
+ action?: string | undefined;
23222
+ }[];
23223
+ risk_score?: number | undefined;
23224
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23225
+ preference_match?: {
23226
+ score: number;
23227
+ matches: string[];
23228
+ mismatches: string[];
23229
+ } | undefined;
23230
+ }, {
23231
+ recommendations: string[];
23232
+ reminders: {
23233
+ message: string;
23234
+ id: string;
23235
+ priority: "required" | "recommended" | "info" | "reminder";
23236
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23237
+ action?: string | undefined;
23238
+ }[];
23239
+ risk_score?: number | undefined;
23240
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23241
+ preference_match?: {
23242
+ score: number;
23243
+ matches: string[];
23244
+ mismatches: string[];
23245
+ } | undefined;
23246
+ }>>;
23247
+ evolution_context: z.ZodOptional<z.ZodObject<{
23248
+ industry_signal: z.ZodOptional<z.ZodString>;
23249
+ evolution_advice: z.ZodOptional<z.ZodString>;
23250
+ confidence: z.ZodNumber;
23251
+ health_score: z.ZodOptional<z.ZodNumber>;
23252
+ pending_suggestions: z.ZodOptional<z.ZodNumber>;
23253
+ intent: z.ZodOptional<z.ZodEnum<["default", "growth", "retention", "compliance", "efficiency", "trust_building", "custom"]>>;
23254
+ role_advice: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23255
+ role: z.ZodOptional<z.ZodEnum<["user", "merchant", "arbitrator"]>>;
23256
+ }, "strict", z.ZodTypeAny, {
23257
+ confidence: number;
23258
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23259
+ industry_signal?: string | undefined;
23260
+ evolution_advice?: string | undefined;
23261
+ health_score?: number | undefined;
23262
+ pending_suggestions?: number | undefined;
23263
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23264
+ role_advice?: string[] | undefined;
23265
+ }, {
23266
+ confidence: number;
23267
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23268
+ industry_signal?: string | undefined;
23269
+ evolution_advice?: string | undefined;
23270
+ health_score?: number | undefined;
23271
+ pending_suggestions?: number | undefined;
23272
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23273
+ role_advice?: string[] | undefined;
23274
+ }>>;
23275
+ guard_advice: z.ZodOptional<z.ZodObject<{
23276
+ current_round: z.ZodOptional<z.ZodEnum<["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R10"]>>;
23277
+ puzzle_status: z.ZodOptional<z.ZodObject<{
23278
+ intent: z.ZodBoolean;
23279
+ binding: z.ZodBoolean;
23280
+ data: z.ZodBoolean;
23281
+ query: z.ZodBoolean;
23282
+ logic: z.ZodBoolean;
23283
+ constraints: z.ZodBoolean;
23284
+ }, "strict", z.ZodTypeAny, {
23285
+ data: boolean;
23286
+ intent: boolean;
23287
+ binding: boolean;
23288
+ query: boolean;
23289
+ logic: boolean;
23290
+ constraints: boolean;
23291
+ }, {
23292
+ data: boolean;
23293
+ intent: boolean;
23294
+ binding: boolean;
23295
+ query: boolean;
23296
+ logic: boolean;
23297
+ constraints: boolean;
23298
+ }>>;
23299
+ matched_scene: z.ZodOptional<z.ZodString>;
23300
+ scene_description: z.ZodOptional<z.ZodString>;
23301
+ scene_constraints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23302
+ suggested_patterns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23303
+ available_queries: z.ZodOptional<z.ZodArray<z.ZodObject<{
23304
+ id: z.ZodNumber;
23305
+ name: z.ZodString;
23306
+ objectType: z.ZodString;
23307
+ returnType: z.ZodString;
23308
+ description: z.ZodOptional<z.ZodString>;
23309
+ }, "strict", z.ZodTypeAny, {
23310
+ name: string;
23311
+ id: number;
23312
+ objectType: string;
23313
+ returnType: string;
23314
+ description?: string | undefined;
23315
+ }, {
23316
+ name: string;
23317
+ id: number;
23318
+ objectType: string;
23319
+ returnType: string;
23320
+ description?: string | undefined;
23321
+ }>, "many">>;
23322
+ risk_warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23323
+ pending_questions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23324
+ confirmation_text: z.ZodOptional<z.ZodString>;
23325
+ test_result: z.ZodOptional<z.ZodObject<{
23326
+ status: z.ZodEnum<["pass", "fail", "not_tested"]>;
23327
+ failure_node: z.ZodOptional<z.ZodString>;
23328
+ passport_id: z.ZodOptional<z.ZodString>;
23329
+ }, "strip", z.ZodTypeAny, {
23330
+ status: "pass" | "fail" | "not_tested";
23331
+ failure_node?: string | undefined;
23332
+ passport_id?: string | undefined;
23333
+ }, {
23334
+ status: "pass" | "fail" | "not_tested";
23335
+ failure_node?: string | undefined;
23336
+ passport_id?: string | undefined;
23337
+ }>>;
23338
+ risk_assessment: z.ZodOptional<z.ZodObject<{
23339
+ overall_risk: z.ZodEnum<["critical", "high", "medium", "low", "info"]>;
23340
+ risk_count: z.ZodNumber;
23341
+ critical_count: z.ZodNumber;
23342
+ high_count: z.ZodNumber;
23343
+ needs_human_review: z.ZodBoolean;
23344
+ top_risks: z.ZodArray<z.ZodString, "many">;
23345
+ stakeholder_advice: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
23346
+ }, "strip", z.ZodTypeAny, {
23347
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23348
+ risk_count: number;
23349
+ critical_count: number;
23350
+ high_count: number;
23351
+ needs_human_review: boolean;
23352
+ top_risks: string[];
23353
+ stakeholder_advice?: Record<string, string[]> | undefined;
23354
+ }, {
23355
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23356
+ risk_count: number;
23357
+ critical_count: number;
23358
+ high_count: number;
23359
+ needs_human_review: boolean;
23360
+ top_risks: string[];
23361
+ stakeholder_advice?: Record<string, string[]> | undefined;
23362
+ }>>;
23363
+ }, "strict", z.ZodTypeAny, {
23364
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23365
+ puzzle_status?: {
23366
+ data: boolean;
23367
+ intent: boolean;
23368
+ binding: boolean;
23369
+ query: boolean;
23370
+ logic: boolean;
23371
+ constraints: boolean;
23372
+ } | undefined;
23373
+ matched_scene?: string | undefined;
23374
+ scene_description?: string | undefined;
23375
+ scene_constraints?: string[] | undefined;
23376
+ suggested_patterns?: string[] | undefined;
23377
+ available_queries?: {
23378
+ name: string;
23379
+ id: number;
23380
+ objectType: string;
23381
+ returnType: string;
23382
+ description?: string | undefined;
23383
+ }[] | undefined;
23384
+ risk_warnings?: string[] | undefined;
23385
+ pending_questions?: string[] | undefined;
23386
+ confirmation_text?: string | undefined;
23387
+ test_result?: {
23388
+ status: "pass" | "fail" | "not_tested";
23389
+ failure_node?: string | undefined;
23390
+ passport_id?: string | undefined;
23391
+ } | undefined;
23392
+ risk_assessment?: {
23393
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23394
+ risk_count: number;
23395
+ critical_count: number;
23396
+ high_count: number;
23397
+ needs_human_review: boolean;
23398
+ top_risks: string[];
23399
+ stakeholder_advice?: Record<string, string[]> | undefined;
23400
+ } | undefined;
23401
+ }, {
23402
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23403
+ puzzle_status?: {
23404
+ data: boolean;
23405
+ intent: boolean;
23406
+ binding: boolean;
23407
+ query: boolean;
23408
+ logic: boolean;
23409
+ constraints: boolean;
23410
+ } | undefined;
23411
+ matched_scene?: string | undefined;
23412
+ scene_description?: string | undefined;
23413
+ scene_constraints?: string[] | undefined;
23414
+ suggested_patterns?: string[] | undefined;
23415
+ available_queries?: {
23416
+ name: string;
23417
+ id: number;
23418
+ objectType: string;
23419
+ returnType: string;
23420
+ description?: string | undefined;
23421
+ }[] | undefined;
23422
+ risk_warnings?: string[] | undefined;
23423
+ pending_questions?: string[] | undefined;
23424
+ confirmation_text?: string | undefined;
23425
+ test_result?: {
23426
+ status: "pass" | "fail" | "not_tested";
23427
+ failure_node?: string | undefined;
23428
+ passport_id?: string | undefined;
23429
+ } | undefined;
23430
+ risk_assessment?: {
23431
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23432
+ risk_count: number;
23433
+ critical_count: number;
23434
+ high_count: number;
23435
+ needs_human_review: boolean;
23436
+ top_risks: string[];
23437
+ stakeholder_advice?: Record<string, string[]> | undefined;
23438
+ } | undefined;
23439
+ }>>;
23440
+ }, "strict", z.ZodTypeAny, {
23441
+ status: "success" | "partial" | "failed" | "pending_input";
23442
+ intent: string;
23443
+ summary: string;
23444
+ created?: {
23445
+ id: string;
23446
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23447
+ name?: string | null | undefined;
23448
+ relation?: {
23449
+ parent?: string | null | undefined;
23450
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23451
+ } | undefined;
23452
+ immutable?: boolean | undefined;
23453
+ }[] | undefined;
23454
+ events?: {
23455
+ event_type: string;
23456
+ business_meaning: string;
23457
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23458
+ related_object?: string | undefined;
23459
+ side_effect?: string | undefined;
23460
+ }[] | undefined;
23461
+ modified?: {
23462
+ id: string;
23463
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23464
+ name?: string | null | undefined;
23465
+ relation?: {
23466
+ parent?: string | null | undefined;
23467
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23468
+ } | undefined;
23469
+ immutable?: boolean | undefined;
23470
+ }[] | undefined;
23471
+ released?: {
23472
+ coinType: string;
23473
+ amount: string;
23474
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23475
+ from?: string | null | undefined;
23476
+ to?: string | null | undefined;
23477
+ }[] | undefined;
23478
+ next_actions?: {
23479
+ action: string;
23480
+ reason: string;
23481
+ priority: "required" | "recommended" | "optional";
23482
+ tool?: string | undefined;
23483
+ prerequisite?: string | undefined;
23484
+ }[] | undefined;
23485
+ warnings?: string[] | undefined;
23486
+ experience?: {
23487
+ advice?: string | undefined;
23488
+ avoid?: string[] | undefined;
23489
+ relevance?: number | undefined;
23490
+ matched_scenario?: string | undefined;
23491
+ } | undefined;
23492
+ service_status?: {
23493
+ active: string[];
23494
+ inactive?: string[] | undefined;
23495
+ } | undefined;
23496
+ customer_advice?: {
23497
+ recommendations: string[];
23498
+ reminders: {
23499
+ message: string;
23500
+ id: string;
23501
+ priority: "required" | "recommended" | "info" | "reminder";
23502
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23503
+ action?: string | undefined;
23504
+ }[];
23505
+ risk_score?: number | undefined;
23506
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23507
+ preference_match?: {
23508
+ score: number;
23509
+ matches: string[];
23510
+ mismatches: string[];
23511
+ } | undefined;
23512
+ } | undefined;
23513
+ evolution_context?: {
23514
+ confidence: number;
23515
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23516
+ industry_signal?: string | undefined;
23517
+ evolution_advice?: string | undefined;
23518
+ health_score?: number | undefined;
23519
+ pending_suggestions?: number | undefined;
23520
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23521
+ role_advice?: string[] | undefined;
23522
+ } | undefined;
23523
+ guard_advice?: {
23524
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23525
+ puzzle_status?: {
23526
+ data: boolean;
23527
+ intent: boolean;
23528
+ binding: boolean;
23529
+ query: boolean;
23530
+ logic: boolean;
23531
+ constraints: boolean;
23532
+ } | undefined;
23533
+ matched_scene?: string | undefined;
23534
+ scene_description?: string | undefined;
23535
+ scene_constraints?: string[] | undefined;
23536
+ suggested_patterns?: string[] | undefined;
23537
+ available_queries?: {
23538
+ name: string;
23539
+ id: number;
23540
+ objectType: string;
23541
+ returnType: string;
23542
+ description?: string | undefined;
23543
+ }[] | undefined;
23544
+ risk_warnings?: string[] | undefined;
23545
+ pending_questions?: string[] | undefined;
23546
+ confirmation_text?: string | undefined;
23547
+ test_result?: {
23548
+ status: "pass" | "fail" | "not_tested";
23549
+ failure_node?: string | undefined;
23550
+ passport_id?: string | undefined;
23551
+ } | undefined;
23552
+ risk_assessment?: {
23553
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23554
+ risk_count: number;
23555
+ critical_count: number;
23556
+ high_count: number;
23557
+ needs_human_review: boolean;
23558
+ top_risks: string[];
23559
+ stakeholder_advice?: Record<string, string[]> | undefined;
23560
+ } | undefined;
23561
+ } | undefined;
23562
+ }, {
23563
+ status: "success" | "partial" | "failed" | "pending_input";
23564
+ intent: string;
23565
+ summary: string;
23566
+ created?: {
23567
+ id: string;
23568
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23569
+ name?: string | null | undefined;
23570
+ relation?: {
23571
+ parent?: string | null | undefined;
23572
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23573
+ } | undefined;
23574
+ immutable?: boolean | undefined;
23575
+ }[] | undefined;
23576
+ events?: {
23577
+ event_type: string;
23578
+ business_meaning: string;
23579
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
23580
+ related_object?: string | undefined;
23581
+ side_effect?: string | undefined;
23582
+ }[] | undefined;
23583
+ modified?: {
23584
+ id: string;
23585
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
23586
+ name?: string | null | undefined;
23587
+ relation?: {
23588
+ parent?: string | null | undefined;
23589
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
23590
+ } | undefined;
23591
+ immutable?: boolean | undefined;
23592
+ }[] | undefined;
23593
+ released?: {
23594
+ coinType: string;
23595
+ amount: string;
23596
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
23597
+ from?: string | null | undefined;
23598
+ to?: string | null | undefined;
23599
+ }[] | undefined;
23600
+ next_actions?: {
23601
+ action: string;
23602
+ reason: string;
23603
+ priority: "required" | "recommended" | "optional";
23604
+ tool?: string | undefined;
23605
+ prerequisite?: string | undefined;
23606
+ }[] | undefined;
23607
+ warnings?: string[] | undefined;
23608
+ experience?: {
23609
+ advice?: string | undefined;
23610
+ avoid?: string[] | undefined;
23611
+ relevance?: number | undefined;
23612
+ matched_scenario?: string | undefined;
23613
+ } | undefined;
23614
+ service_status?: {
23615
+ active: string[];
23616
+ inactive?: string[] | undefined;
23617
+ } | undefined;
23618
+ customer_advice?: {
23619
+ recommendations: string[];
23620
+ reminders: {
23621
+ message: string;
23622
+ id: string;
23623
+ priority: "required" | "recommended" | "info" | "reminder";
23624
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
23625
+ action?: string | undefined;
23626
+ }[];
23627
+ risk_score?: number | undefined;
23628
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
23629
+ preference_match?: {
23630
+ score: number;
23631
+ matches: string[];
23632
+ mismatches: string[];
23633
+ } | undefined;
23634
+ } | undefined;
23635
+ evolution_context?: {
23636
+ confidence: number;
23637
+ role?: "user" | "merchant" | "arbitrator" | undefined;
23638
+ industry_signal?: string | undefined;
23639
+ evolution_advice?: string | undefined;
23640
+ health_score?: number | undefined;
23641
+ pending_suggestions?: number | undefined;
23642
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
23643
+ role_advice?: string[] | undefined;
23644
+ } | undefined;
23645
+ guard_advice?: {
23646
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
23647
+ puzzle_status?: {
23648
+ data: boolean;
23649
+ intent: boolean;
23650
+ binding: boolean;
23651
+ query: boolean;
23652
+ logic: boolean;
23653
+ constraints: boolean;
23654
+ } | undefined;
23655
+ matched_scene?: string | undefined;
23656
+ scene_description?: string | undefined;
23657
+ scene_constraints?: string[] | undefined;
23658
+ suggested_patterns?: string[] | undefined;
23659
+ available_queries?: {
23660
+ name: string;
23661
+ id: number;
23662
+ objectType: string;
23663
+ returnType: string;
23664
+ description?: string | undefined;
23665
+ }[] | undefined;
23666
+ risk_warnings?: string[] | undefined;
23667
+ pending_questions?: string[] | undefined;
23668
+ confirmation_text?: string | undefined;
23669
+ test_result?: {
23670
+ status: "pass" | "fail" | "not_tested";
23671
+ failure_node?: string | undefined;
23672
+ passport_id?: string | undefined;
23673
+ } | undefined;
23674
+ risk_assessment?: {
23675
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
23676
+ risk_count: number;
23677
+ critical_count: number;
23678
+ high_count: number;
23679
+ needs_human_review: boolean;
23680
+ top_risks: string[];
23681
+ stakeholder_advice?: Record<string, string[]> | undefined;
23682
+ } | undefined;
23683
+ } | undefined;
23684
+ }>>;
22807
23685
  }, "strip", z.ZodTypeAny, {
22808
23686
  result: {
22809
23687
  query_type: "onchain_table";
@@ -23788,9 +24666,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
23788
24666
  msg: string;
23789
24667
  accomplished: boolean;
23790
24668
  }[];
24669
+ threshold: string | number;
23791
24670
  next_node: string;
23792
24671
  weights: string | number;
23793
- threshold: string | number;
23794
24672
  }, {
23795
24673
  forwards: {
23796
24674
  time: string | number;
@@ -23804,9 +24682,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
23804
24682
  msg: string;
23805
24683
  accomplished: boolean;
23806
24684
  }[];
24685
+ threshold: string | number;
23807
24686
  next_node: string;
23808
24687
  weights: string | number;
23809
- threshold: string | number;
23810
24688
  }>, "many">;
23811
24689
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
23812
24690
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -23959,7 +24837,129 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
23959
24837
  }>, "many">>;
23960
24838
  }, z.ZodTypeAny, "passthrough"> | undefined;
23961
24839
  };
23962
- semantic?: any;
24840
+ semantic?: {
24841
+ status: "success" | "partial" | "failed" | "pending_input";
24842
+ intent: string;
24843
+ summary: string;
24844
+ created?: {
24845
+ id: string;
24846
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
24847
+ name?: string | null | undefined;
24848
+ relation?: {
24849
+ parent?: string | null | undefined;
24850
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
24851
+ } | undefined;
24852
+ immutable?: boolean | undefined;
24853
+ }[] | undefined;
24854
+ events?: {
24855
+ event_type: string;
24856
+ business_meaning: string;
24857
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
24858
+ related_object?: string | undefined;
24859
+ side_effect?: string | undefined;
24860
+ }[] | undefined;
24861
+ modified?: {
24862
+ id: string;
24863
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
24864
+ name?: string | null | undefined;
24865
+ relation?: {
24866
+ parent?: string | null | undefined;
24867
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
24868
+ } | undefined;
24869
+ immutable?: boolean | undefined;
24870
+ }[] | undefined;
24871
+ released?: {
24872
+ coinType: string;
24873
+ amount: string;
24874
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
24875
+ from?: string | null | undefined;
24876
+ to?: string | null | undefined;
24877
+ }[] | undefined;
24878
+ next_actions?: {
24879
+ action: string;
24880
+ reason: string;
24881
+ priority: "required" | "recommended" | "optional";
24882
+ tool?: string | undefined;
24883
+ prerequisite?: string | undefined;
24884
+ }[] | undefined;
24885
+ warnings?: string[] | undefined;
24886
+ experience?: {
24887
+ advice?: string | undefined;
24888
+ avoid?: string[] | undefined;
24889
+ relevance?: number | undefined;
24890
+ matched_scenario?: string | undefined;
24891
+ } | undefined;
24892
+ service_status?: {
24893
+ active: string[];
24894
+ inactive?: string[] | undefined;
24895
+ } | undefined;
24896
+ customer_advice?: {
24897
+ recommendations: string[];
24898
+ reminders: {
24899
+ message: string;
24900
+ id: string;
24901
+ priority: "required" | "recommended" | "info" | "reminder";
24902
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
24903
+ action?: string | undefined;
24904
+ }[];
24905
+ risk_score?: number | undefined;
24906
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
24907
+ preference_match?: {
24908
+ score: number;
24909
+ matches: string[];
24910
+ mismatches: string[];
24911
+ } | undefined;
24912
+ } | undefined;
24913
+ evolution_context?: {
24914
+ confidence: number;
24915
+ role?: "user" | "merchant" | "arbitrator" | undefined;
24916
+ industry_signal?: string | undefined;
24917
+ evolution_advice?: string | undefined;
24918
+ health_score?: number | undefined;
24919
+ pending_suggestions?: number | undefined;
24920
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
24921
+ role_advice?: string[] | undefined;
24922
+ } | undefined;
24923
+ guard_advice?: {
24924
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
24925
+ puzzle_status?: {
24926
+ data: boolean;
24927
+ intent: boolean;
24928
+ binding: boolean;
24929
+ query: boolean;
24930
+ logic: boolean;
24931
+ constraints: boolean;
24932
+ } | undefined;
24933
+ matched_scene?: string | undefined;
24934
+ scene_description?: string | undefined;
24935
+ scene_constraints?: string[] | undefined;
24936
+ suggested_patterns?: string[] | undefined;
24937
+ available_queries?: {
24938
+ name: string;
24939
+ id: number;
24940
+ objectType: string;
24941
+ returnType: string;
24942
+ description?: string | undefined;
24943
+ }[] | undefined;
24944
+ risk_warnings?: string[] | undefined;
24945
+ pending_questions?: string[] | undefined;
24946
+ confirmation_text?: string | undefined;
24947
+ test_result?: {
24948
+ status: "pass" | "fail" | "not_tested";
24949
+ failure_node?: string | undefined;
24950
+ passport_id?: string | undefined;
24951
+ } | undefined;
24952
+ risk_assessment?: {
24953
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
24954
+ risk_count: number;
24955
+ critical_count: number;
24956
+ high_count: number;
24957
+ needs_human_review: boolean;
24958
+ top_risks: string[];
24959
+ stakeholder_advice?: Record<string, string[]> | undefined;
24960
+ } | undefined;
24961
+ } | undefined;
24962
+ } | undefined;
23963
24963
  }, {
23964
24964
  result: {
23965
24965
  query_type: "onchain_table";
@@ -24944,9 +25944,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
24944
25944
  msg: string;
24945
25945
  accomplished: boolean;
24946
25946
  }[];
25947
+ threshold: string | number;
24947
25948
  next_node: string;
24948
25949
  weights: string | number;
24949
- threshold: string | number;
24950
25950
  }, {
24951
25951
  forwards: {
24952
25952
  time: string | number;
@@ -24960,9 +25960,9 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
24960
25960
  msg: string;
24961
25961
  accomplished: boolean;
24962
25962
  }[];
25963
+ threshold: string | number;
24963
25964
  next_node: string;
24964
25965
  weights: string | number;
24965
- threshold: string | number;
24966
25966
  }>, "many">;
24967
25967
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
24968
25968
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -25115,5 +26115,127 @@ export declare const OnchainTableDataResultSchema: z.ZodObject<{
25115
26115
  }>, "many">>;
25116
26116
  }, z.ZodTypeAny, "passthrough"> | undefined;
25117
26117
  };
25118
- semantic?: any;
26118
+ semantic?: {
26119
+ status: "success" | "partial" | "failed" | "pending_input";
26120
+ intent: string;
26121
+ summary: string;
26122
+ created?: {
26123
+ id: string;
26124
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
26125
+ name?: string | null | undefined;
26126
+ relation?: {
26127
+ parent?: string | null | undefined;
26128
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
26129
+ } | undefined;
26130
+ immutable?: boolean | undefined;
26131
+ }[] | undefined;
26132
+ events?: {
26133
+ event_type: string;
26134
+ business_meaning: string;
26135
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
26136
+ related_object?: string | undefined;
26137
+ side_effect?: string | undefined;
26138
+ }[] | undefined;
26139
+ modified?: {
26140
+ id: string;
26141
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
26142
+ name?: string | null | undefined;
26143
+ relation?: {
26144
+ parent?: string | null | undefined;
26145
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
26146
+ } | undefined;
26147
+ immutable?: boolean | undefined;
26148
+ }[] | undefined;
26149
+ released?: {
26150
+ coinType: string;
26151
+ amount: string;
26152
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
26153
+ from?: string | null | undefined;
26154
+ to?: string | null | undefined;
26155
+ }[] | undefined;
26156
+ next_actions?: {
26157
+ action: string;
26158
+ reason: string;
26159
+ priority: "required" | "recommended" | "optional";
26160
+ tool?: string | undefined;
26161
+ prerequisite?: string | undefined;
26162
+ }[] | undefined;
26163
+ warnings?: string[] | undefined;
26164
+ experience?: {
26165
+ advice?: string | undefined;
26166
+ avoid?: string[] | undefined;
26167
+ relevance?: number | undefined;
26168
+ matched_scenario?: string | undefined;
26169
+ } | undefined;
26170
+ service_status?: {
26171
+ active: string[];
26172
+ inactive?: string[] | undefined;
26173
+ } | undefined;
26174
+ customer_advice?: {
26175
+ recommendations: string[];
26176
+ reminders: {
26177
+ message: string;
26178
+ id: string;
26179
+ priority: "required" | "recommended" | "info" | "reminder";
26180
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
26181
+ action?: string | undefined;
26182
+ }[];
26183
+ risk_score?: number | undefined;
26184
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
26185
+ preference_match?: {
26186
+ score: number;
26187
+ matches: string[];
26188
+ mismatches: string[];
26189
+ } | undefined;
26190
+ } | undefined;
26191
+ evolution_context?: {
26192
+ confidence: number;
26193
+ role?: "user" | "merchant" | "arbitrator" | undefined;
26194
+ industry_signal?: string | undefined;
26195
+ evolution_advice?: string | undefined;
26196
+ health_score?: number | undefined;
26197
+ pending_suggestions?: number | undefined;
26198
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
26199
+ role_advice?: string[] | undefined;
26200
+ } | undefined;
26201
+ guard_advice?: {
26202
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
26203
+ puzzle_status?: {
26204
+ data: boolean;
26205
+ intent: boolean;
26206
+ binding: boolean;
26207
+ query: boolean;
26208
+ logic: boolean;
26209
+ constraints: boolean;
26210
+ } | undefined;
26211
+ matched_scene?: string | undefined;
26212
+ scene_description?: string | undefined;
26213
+ scene_constraints?: string[] | undefined;
26214
+ suggested_patterns?: string[] | undefined;
26215
+ available_queries?: {
26216
+ name: string;
26217
+ id: number;
26218
+ objectType: string;
26219
+ returnType: string;
26220
+ description?: string | undefined;
26221
+ }[] | undefined;
26222
+ risk_warnings?: string[] | undefined;
26223
+ pending_questions?: string[] | undefined;
26224
+ confirmation_text?: string | undefined;
26225
+ test_result?: {
26226
+ status: "pass" | "fail" | "not_tested";
26227
+ failure_node?: string | undefined;
26228
+ passport_id?: string | undefined;
26229
+ } | undefined;
26230
+ risk_assessment?: {
26231
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
26232
+ risk_count: number;
26233
+ critical_count: number;
26234
+ high_count: number;
26235
+ needs_human_review: boolean;
26236
+ top_risks: string[];
26237
+ stakeholder_advice?: Record<string, string[]> | undefined;
26238
+ } | undefined;
26239
+ } | undefined;
26240
+ } | undefined;
25119
26241
  }>;