@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
@@ -2686,9 +2686,9 @@ export declare const ProgressSessionSchema: z.ZodObject<{
2686
2686
  msg: string;
2687
2687
  accomplished: boolean;
2688
2688
  }[];
2689
+ threshold: string | number;
2689
2690
  next_node: string;
2690
2691
  weights: string | number;
2691
- threshold: string | number;
2692
2692
  }, {
2693
2693
  forwards: {
2694
2694
  time: string | number;
@@ -2702,9 +2702,9 @@ export declare const ProgressSessionSchema: z.ZodObject<{
2702
2702
  msg: string;
2703
2703
  accomplished: boolean;
2704
2704
  }[];
2705
+ threshold: string | number;
2705
2706
  next_node: string;
2706
2707
  weights: string | number;
2707
- threshold: string | number;
2708
2708
  }>;
2709
2709
  export declare const ObjectProgressSchema: z.ZodObject<{
2710
2710
  object: z.ZodString;
@@ -2882,9 +2882,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
2882
2882
  msg: string;
2883
2883
  accomplished: boolean;
2884
2884
  }[];
2885
+ threshold: string | number;
2885
2886
  next_node: string;
2886
2887
  weights: string | number;
2887
- threshold: string | number;
2888
2888
  }, {
2889
2889
  forwards: {
2890
2890
  time: string | number;
@@ -2898,9 +2898,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
2898
2898
  msg: string;
2899
2899
  accomplished: boolean;
2900
2900
  }[];
2901
+ threshold: string | number;
2901
2902
  next_node: string;
2902
2903
  weights: string | number;
2903
- threshold: string | number;
2904
2904
  }>, "many">;
2905
2905
  history_count: z.ZodNumber;
2906
2906
  current_time: z.ZodNumber;
@@ -3080,9 +3080,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
3080
3080
  msg: string;
3081
3081
  accomplished: boolean;
3082
3082
  }[];
3083
+ threshold: string | number;
3083
3084
  next_node: string;
3084
3085
  weights: string | number;
3085
- threshold: string | number;
3086
3086
  }, {
3087
3087
  forwards: {
3088
3088
  time: string | number;
@@ -3096,9 +3096,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
3096
3096
  msg: string;
3097
3097
  accomplished: boolean;
3098
3098
  }[];
3099
+ threshold: string | number;
3099
3100
  next_node: string;
3100
3101
  weights: string | number;
3101
- threshold: string | number;
3102
3102
  }>, "many">;
3103
3103
  history_count: z.ZodNumber;
3104
3104
  current_time: z.ZodNumber;
@@ -3278,9 +3278,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
3278
3278
  msg: string;
3279
3279
  accomplished: boolean;
3280
3280
  }[];
3281
+ threshold: string | number;
3281
3282
  next_node: string;
3282
3283
  weights: string | number;
3283
- threshold: string | number;
3284
3284
  }, {
3285
3285
  forwards: {
3286
3286
  time: string | number;
@@ -3294,9 +3294,9 @@ export declare const ObjectProgressSchema: z.ZodObject<{
3294
3294
  msg: string;
3295
3295
  accomplished: boolean;
3296
3296
  }[];
3297
+ threshold: string | number;
3297
3298
  next_node: string;
3298
3299
  weights: string | number;
3299
- threshold: string | number;
3300
3300
  }>, "many">;
3301
3301
  history_count: z.ZodNumber;
3302
3302
  current_time: z.ZodNumber;
@@ -4229,6 +4229,7 @@ export declare const AllocatorsSchema: z.ZodObject<{
4229
4229
  }>, "many">;
4230
4230
  }, "strip", z.ZodTypeAny, {
4231
4231
  description: string;
4232
+ threshold: string | number;
4232
4233
  allocators: {
4233
4234
  guard: string;
4234
4235
  sharing: {
@@ -4248,9 +4249,9 @@ export declare const AllocatorsSchema: z.ZodObject<{
4248
4249
  max?: string | number | null | undefined;
4249
4250
  fix?: string | number | undefined;
4250
4251
  }[];
4251
- threshold: string | number;
4252
4252
  }, {
4253
4253
  description: string;
4254
+ threshold: string | number;
4254
4255
  allocators: {
4255
4256
  guard: string;
4256
4257
  sharing: {
@@ -4270,7 +4271,6 @@ export declare const AllocatorsSchema: z.ZodObject<{
4270
4271
  max?: string | number | null | undefined;
4271
4272
  fix?: string | number | undefined;
4272
4273
  }[];
4273
- threshold: string | number;
4274
4274
  }>;
4275
4275
  export declare const ObjectServiceSchema: z.ZodObject<{
4276
4276
  object: z.ZodString;
@@ -4486,6 +4486,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4486
4486
  }>, "many">;
4487
4487
  }, "strip", z.ZodTypeAny, {
4488
4488
  description: string;
4489
+ threshold: string | number;
4489
4490
  allocators: {
4490
4491
  guard: string;
4491
4492
  sharing: {
@@ -4505,9 +4506,9 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4505
4506
  max?: string | number | null | undefined;
4506
4507
  fix?: string | number | undefined;
4507
4508
  }[];
4508
- threshold: string | number;
4509
4509
  }, {
4510
4510
  description: string;
4511
+ threshold: string | number;
4511
4512
  allocators: {
4512
4513
  guard: string;
4513
4514
  sharing: {
@@ -4527,7 +4528,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4527
4528
  max?: string | number | null | undefined;
4528
4529
  fix?: string | number | undefined;
4529
4530
  }[];
4530
- threshold: string | number;
4531
4531
  }>, z.ZodNull]>;
4532
4532
  rewards: z.ZodArray<z.ZodString, "many">;
4533
4533
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -4746,6 +4746,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4746
4746
  }>, "many">;
4747
4747
  }, "strip", z.ZodTypeAny, {
4748
4748
  description: string;
4749
+ threshold: string | number;
4749
4750
  allocators: {
4750
4751
  guard: string;
4751
4752
  sharing: {
@@ -4765,9 +4766,9 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4765
4766
  max?: string | number | null | undefined;
4766
4767
  fix?: string | number | undefined;
4767
4768
  }[];
4768
- threshold: string | number;
4769
4769
  }, {
4770
4770
  description: string;
4771
+ threshold: string | number;
4771
4772
  allocators: {
4772
4773
  guard: string;
4773
4774
  sharing: {
@@ -4787,7 +4788,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4787
4788
  max?: string | number | null | undefined;
4788
4789
  fix?: string | number | undefined;
4789
4790
  }[];
4790
- threshold: string | number;
4791
4791
  }>, z.ZodNull]>;
4792
4792
  rewards: z.ZodArray<z.ZodString, "many">;
4793
4793
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -5006,6 +5006,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5006
5006
  }>, "many">;
5007
5007
  }, "strip", z.ZodTypeAny, {
5008
5008
  description: string;
5009
+ threshold: string | number;
5009
5010
  allocators: {
5010
5011
  guard: string;
5011
5012
  sharing: {
@@ -5025,9 +5026,9 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5025
5026
  max?: string | number | null | undefined;
5026
5027
  fix?: string | number | undefined;
5027
5028
  }[];
5028
- threshold: string | number;
5029
5029
  }, {
5030
5030
  description: string;
5031
+ threshold: string | number;
5031
5032
  allocators: {
5032
5033
  guard: string;
5033
5034
  sharing: {
@@ -5047,7 +5048,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5047
5048
  max?: string | number | null | undefined;
5048
5049
  fix?: string | number | undefined;
5049
5050
  }[];
5050
- threshold: string | number;
5051
5051
  }>, z.ZodNull]>;
5052
5052
  rewards: z.ZodArray<z.ZodString, "many">;
5053
5053
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -6076,7 +6076,7 @@ export declare const PolicyRuleSchema: z.ZodObject<{
6076
6076
  id_from_submission?: number | undefined;
6077
6077
  data_from_submission?: number | undefined;
6078
6078
  }[];
6079
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
6079
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
6080
6080
  quote_guard?: string | null | undefined;
6081
6081
  }, {
6082
6082
  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";
@@ -6087,7 +6087,7 @@ export declare const PolicyRuleSchema: z.ZodObject<{
6087
6087
  id_from_submission?: number | undefined;
6088
6088
  data_from_submission?: number | undefined;
6089
6089
  }[];
6090
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
6090
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
6091
6091
  quote_guard?: string | null | undefined;
6092
6092
  }>;
6093
6093
  export declare const TableItem_RepositoryDataSchema: z.ZodObject<{
@@ -6797,7 +6797,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
6797
6797
  id_from_submission?: number | undefined;
6798
6798
  data_from_submission?: number | undefined;
6799
6799
  }[];
6800
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
6800
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
6801
6801
  quote_guard?: string | null | undefined;
6802
6802
  }, {
6803
6803
  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";
@@ -6808,7 +6808,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
6808
6808
  id_from_submission?: number | undefined;
6809
6809
  data_from_submission?: number | undefined;
6810
6810
  }[];
6811
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
6811
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
6812
6812
  quote_guard?: string | null | undefined;
6813
6813
  }>, "many">;
6814
6814
  data_count: z.ZodNumber;
@@ -6914,7 +6914,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
6914
6914
  id_from_submission?: number | undefined;
6915
6915
  data_from_submission?: number | undefined;
6916
6916
  }[];
6917
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
6917
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
6918
6918
  quote_guard?: string | null | undefined;
6919
6919
  }, {
6920
6920
  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";
@@ -6925,7 +6925,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
6925
6925
  id_from_submission?: number | undefined;
6926
6926
  data_from_submission?: number | undefined;
6927
6927
  }[];
6928
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
6928
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
6929
6929
  quote_guard?: string | null | undefined;
6930
6930
  }>, "many">;
6931
6931
  data_count: z.ZodNumber;
@@ -7031,7 +7031,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
7031
7031
  id_from_submission?: number | undefined;
7032
7032
  data_from_submission?: number | undefined;
7033
7033
  }[];
7034
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
7034
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
7035
7035
  quote_guard?: string | null | undefined;
7036
7036
  }, {
7037
7037
  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";
@@ -7042,7 +7042,7 @@ export declare const ObjectRepositorySchema: z.ZodObject<{
7042
7042
  id_from_submission?: number | undefined;
7043
7043
  data_from_submission?: number | undefined;
7044
7044
  }[];
7045
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
7045
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
7046
7046
  quote_guard?: string | null | undefined;
7047
7047
  }>, "many">;
7048
7048
  data_count: z.ZodNumber;
@@ -12112,9 +12112,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12112
12112
  msg: string;
12113
12113
  accomplished: boolean;
12114
12114
  }[];
12115
+ threshold: string | number;
12115
12116
  next_node: string;
12116
12117
  weights: string | number;
12117
- threshold: string | number;
12118
12118
  }, {
12119
12119
  forwards: {
12120
12120
  time: string | number;
@@ -12128,9 +12128,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12128
12128
  msg: string;
12129
12129
  accomplished: boolean;
12130
12130
  }[];
12131
+ threshold: string | number;
12131
12132
  next_node: string;
12132
12133
  weights: string | number;
12133
- threshold: string | number;
12134
12134
  }>, "many">;
12135
12135
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
12136
12136
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -12298,9 +12298,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12298
12298
  msg: string;
12299
12299
  accomplished: boolean;
12300
12300
  }[];
12301
+ threshold: string | number;
12301
12302
  next_node: string;
12302
12303
  weights: string | number;
12303
- threshold: string | number;
12304
12304
  }, {
12305
12305
  forwards: {
12306
12306
  time: string | number;
@@ -12314,9 +12314,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12314
12314
  msg: string;
12315
12315
  accomplished: boolean;
12316
12316
  }[];
12317
+ threshold: string | number;
12317
12318
  next_node: string;
12318
12319
  weights: string | number;
12319
- threshold: string | number;
12320
12320
  }>, "many">;
12321
12321
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
12322
12322
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -12484,9 +12484,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12484
12484
  msg: string;
12485
12485
  accomplished: boolean;
12486
12486
  }[];
12487
+ threshold: string | number;
12487
12488
  next_node: string;
12488
12489
  weights: string | number;
12489
- threshold: string | number;
12490
12490
  }, {
12491
12491
  forwards: {
12492
12492
  time: string | number;
@@ -12500,9 +12500,9 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12500
12500
  msg: string;
12501
12501
  accomplished: boolean;
12502
12502
  }[];
12503
+ threshold: string | number;
12503
12504
  next_node: string;
12504
12505
  weights: string | number;
12505
- threshold: string | number;
12506
12506
  }>, "many">;
12507
12507
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
12508
12508
  }, z.ZodTypeAny, "passthrough">>;
@@ -13761,6 +13761,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13761
13761
  }>, "many">;
13762
13762
  }, "strip", z.ZodTypeAny, {
13763
13763
  description: string;
13764
+ threshold: string | number;
13764
13765
  allocators: {
13765
13766
  guard: string;
13766
13767
  sharing: {
@@ -13780,9 +13781,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13780
13781
  max?: string | number | null | undefined;
13781
13782
  fix?: string | number | undefined;
13782
13783
  }[];
13783
- threshold: string | number;
13784
13784
  }, {
13785
13785
  description: string;
13786
+ threshold: string | number;
13786
13787
  allocators: {
13787
13788
  guard: string;
13788
13789
  sharing: {
@@ -13802,7 +13803,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13802
13803
  max?: string | number | null | undefined;
13803
13804
  fix?: string | number | undefined;
13804
13805
  }[];
13805
- threshold: string | number;
13806
13806
  }>, z.ZodNull]>;
13807
13807
  rewards: z.ZodArray<z.ZodString, "many">;
13808
13808
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -14021,6 +14021,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14021
14021
  }>, "many">;
14022
14022
  }, "strip", z.ZodTypeAny, {
14023
14023
  description: string;
14024
+ threshold: string | number;
14024
14025
  allocators: {
14025
14026
  guard: string;
14026
14027
  sharing: {
@@ -14040,9 +14041,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14040
14041
  max?: string | number | null | undefined;
14041
14042
  fix?: string | number | undefined;
14042
14043
  }[];
14043
- threshold: string | number;
14044
14044
  }, {
14045
14045
  description: string;
14046
+ threshold: string | number;
14046
14047
  allocators: {
14047
14048
  guard: string;
14048
14049
  sharing: {
@@ -14062,7 +14063,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14062
14063
  max?: string | number | null | undefined;
14063
14064
  fix?: string | number | undefined;
14064
14065
  }[];
14065
- threshold: string | number;
14066
14066
  }>, z.ZodNull]>;
14067
14067
  rewards: z.ZodArray<z.ZodString, "many">;
14068
14068
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -14281,6 +14281,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14281
14281
  }>, "many">;
14282
14282
  }, "strip", z.ZodTypeAny, {
14283
14283
  description: string;
14284
+ threshold: string | number;
14284
14285
  allocators: {
14285
14286
  guard: string;
14286
14287
  sharing: {
@@ -14300,9 +14301,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14300
14301
  max?: string | number | null | undefined;
14301
14302
  fix?: string | number | undefined;
14302
14303
  }[];
14303
- threshold: string | number;
14304
14304
  }, {
14305
14305
  description: string;
14306
+ threshold: string | number;
14306
14307
  allocators: {
14307
14308
  guard: string;
14308
14309
  sharing: {
@@ -14322,7 +14323,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14322
14323
  max?: string | number | null | undefined;
14323
14324
  fix?: string | number | undefined;
14324
14325
  }[];
14325
- threshold: string | number;
14326
14326
  }>, z.ZodNull]>;
14327
14327
  rewards: z.ZodArray<z.ZodString, "many">;
14328
14328
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -14797,9 +14797,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14797
14797
  msg: string;
14798
14798
  accomplished: boolean;
14799
14799
  }[];
14800
+ threshold: string | number;
14800
14801
  next_node: string;
14801
14802
  weights: string | number;
14802
- threshold: string | number;
14803
14803
  }, {
14804
14804
  forwards: {
14805
14805
  time: string | number;
@@ -14813,9 +14813,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14813
14813
  msg: string;
14814
14814
  accomplished: boolean;
14815
14815
  }[];
14816
+ threshold: string | number;
14816
14817
  next_node: string;
14817
14818
  weights: string | number;
14818
- threshold: string | number;
14819
14819
  }>, "many">;
14820
14820
  history_count: z.ZodNumber;
14821
14821
  current_time: z.ZodNumber;
@@ -14995,9 +14995,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14995
14995
  msg: string;
14996
14996
  accomplished: boolean;
14997
14997
  }[];
14998
+ threshold: string | number;
14998
14999
  next_node: string;
14999
15000
  weights: string | number;
15000
- threshold: string | number;
15001
15001
  }, {
15002
15002
  forwards: {
15003
15003
  time: string | number;
@@ -15011,9 +15011,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15011
15011
  msg: string;
15012
15012
  accomplished: boolean;
15013
15013
  }[];
15014
+ threshold: string | number;
15014
15015
  next_node: string;
15015
15016
  weights: string | number;
15016
- threshold: string | number;
15017
15017
  }>, "many">;
15018
15018
  history_count: z.ZodNumber;
15019
15019
  current_time: z.ZodNumber;
@@ -15193,9 +15193,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15193
15193
  msg: string;
15194
15194
  accomplished: boolean;
15195
15195
  }[];
15196
+ threshold: string | number;
15196
15197
  next_node: string;
15197
15198
  weights: string | number;
15198
- threshold: string | number;
15199
15199
  }, {
15200
15200
  forwards: {
15201
15201
  time: string | number;
@@ -15209,9 +15209,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15209
15209
  msg: string;
15210
15210
  accomplished: boolean;
15211
15211
  }[];
15212
+ threshold: string | number;
15212
15213
  next_node: string;
15213
15214
  weights: string | number;
15214
- threshold: string | number;
15215
15215
  }>, "many">;
15216
15216
  history_count: z.ZodNumber;
15217
15217
  current_time: z.ZodNumber;
@@ -17006,7 +17006,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
17006
17006
  id_from_submission?: number | undefined;
17007
17007
  data_from_submission?: number | undefined;
17008
17008
  }[];
17009
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
17009
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
17010
17010
  quote_guard?: string | null | undefined;
17011
17011
  }, {
17012
17012
  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";
@@ -17017,7 +17017,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
17017
17017
  id_from_submission?: number | undefined;
17018
17018
  data_from_submission?: number | undefined;
17019
17019
  }[];
17020
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
17020
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
17021
17021
  quote_guard?: string | null | undefined;
17022
17022
  }>, "many">;
17023
17023
  data_count: z.ZodNumber;
@@ -17123,7 +17123,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
17123
17123
  id_from_submission?: number | undefined;
17124
17124
  data_from_submission?: number | undefined;
17125
17125
  }[];
17126
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
17126
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
17127
17127
  quote_guard?: string | null | undefined;
17128
17128
  }, {
17129
17129
  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";
@@ -17134,7 +17134,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
17134
17134
  id_from_submission?: number | undefined;
17135
17135
  data_from_submission?: number | undefined;
17136
17136
  }[];
17137
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
17137
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
17138
17138
  quote_guard?: string | null | undefined;
17139
17139
  }>, "many">;
17140
17140
  data_count: z.ZodNumber;
@@ -17240,7 +17240,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
17240
17240
  id_from_submission?: number | undefined;
17241
17241
  data_from_submission?: number | undefined;
17242
17242
  }[];
17243
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
17243
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
17244
17244
  quote_guard?: string | null | undefined;
17245
17245
  }, {
17246
17246
  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";
@@ -17251,7 +17251,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
17251
17251
  id_from_submission?: number | undefined;
17252
17252
  data_from_submission?: number | undefined;
17253
17253
  }[];
17254
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
17254
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
17255
17255
  quote_guard?: string | null | undefined;
17256
17256
  }>, "many">;
17257
17257
  data_count: z.ZodNumber;
@@ -21992,6 +21992,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21992
21992
  }>, "many">;
21993
21993
  }, "strip", z.ZodTypeAny, {
21994
21994
  description: string;
21995
+ threshold: string | number;
21995
21996
  allocators: {
21996
21997
  guard: string;
21997
21998
  sharing: {
@@ -22011,9 +22012,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22011
22012
  max?: string | number | null | undefined;
22012
22013
  fix?: string | number | undefined;
22013
22014
  }[];
22014
- threshold: string | number;
22015
22015
  }, {
22016
22016
  description: string;
22017
+ threshold: string | number;
22017
22018
  allocators: {
22018
22019
  guard: string;
22019
22020
  sharing: {
@@ -22033,7 +22034,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22033
22034
  max?: string | number | null | undefined;
22034
22035
  fix?: string | number | undefined;
22035
22036
  }[];
22036
- threshold: string | number;
22037
22037
  }>, z.ZodNull]>;
22038
22038
  rewards: z.ZodArray<z.ZodString, "many">;
22039
22039
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -22252,6 +22252,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22252
22252
  }>, "many">;
22253
22253
  }, "strip", z.ZodTypeAny, {
22254
22254
  description: string;
22255
+ threshold: string | number;
22255
22256
  allocators: {
22256
22257
  guard: string;
22257
22258
  sharing: {
@@ -22271,9 +22272,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22271
22272
  max?: string | number | null | undefined;
22272
22273
  fix?: string | number | undefined;
22273
22274
  }[];
22274
- threshold: string | number;
22275
22275
  }, {
22276
22276
  description: string;
22277
+ threshold: string | number;
22277
22278
  allocators: {
22278
22279
  guard: string;
22279
22280
  sharing: {
@@ -22293,7 +22294,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22293
22294
  max?: string | number | null | undefined;
22294
22295
  fix?: string | number | undefined;
22295
22296
  }[];
22296
- threshold: string | number;
22297
22297
  }>, z.ZodNull]>;
22298
22298
  rewards: z.ZodArray<z.ZodString, "many">;
22299
22299
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -22512,6 +22512,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22512
22512
  }>, "many">;
22513
22513
  }, "strip", z.ZodTypeAny, {
22514
22514
  description: string;
22515
+ threshold: string | number;
22515
22516
  allocators: {
22516
22517
  guard: string;
22517
22518
  sharing: {
@@ -22531,9 +22532,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22531
22532
  max?: string | number | null | undefined;
22532
22533
  fix?: string | number | undefined;
22533
22534
  }[];
22534
- threshold: string | number;
22535
22535
  }, {
22536
22536
  description: string;
22537
+ threshold: string | number;
22537
22538
  allocators: {
22538
22539
  guard: string;
22539
22540
  sharing: {
@@ -22553,7 +22554,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22553
22554
  max?: string | number | null | undefined;
22554
22555
  fix?: string | number | undefined;
22555
22556
  }[];
22556
- threshold: string | number;
22557
22557
  }>, z.ZodNull]>;
22558
22558
  rewards: z.ZodArray<z.ZodString, "many">;
22559
22559
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -23028,9 +23028,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23028
23028
  msg: string;
23029
23029
  accomplished: boolean;
23030
23030
  }[];
23031
+ threshold: string | number;
23031
23032
  next_node: string;
23032
23033
  weights: string | number;
23033
- threshold: string | number;
23034
23034
  }, {
23035
23035
  forwards: {
23036
23036
  time: string | number;
@@ -23044,9 +23044,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23044
23044
  msg: string;
23045
23045
  accomplished: boolean;
23046
23046
  }[];
23047
+ threshold: string | number;
23047
23048
  next_node: string;
23048
23049
  weights: string | number;
23049
- threshold: string | number;
23050
23050
  }>, "many">;
23051
23051
  history_count: z.ZodNumber;
23052
23052
  current_time: z.ZodNumber;
@@ -23226,9 +23226,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23226
23226
  msg: string;
23227
23227
  accomplished: boolean;
23228
23228
  }[];
23229
+ threshold: string | number;
23229
23230
  next_node: string;
23230
23231
  weights: string | number;
23231
- threshold: string | number;
23232
23232
  }, {
23233
23233
  forwards: {
23234
23234
  time: string | number;
@@ -23242,9 +23242,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23242
23242
  msg: string;
23243
23243
  accomplished: boolean;
23244
23244
  }[];
23245
+ threshold: string | number;
23245
23246
  next_node: string;
23246
23247
  weights: string | number;
23247
- threshold: string | number;
23248
23248
  }>, "many">;
23249
23249
  history_count: z.ZodNumber;
23250
23250
  current_time: z.ZodNumber;
@@ -23424,9 +23424,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23424
23424
  msg: string;
23425
23425
  accomplished: boolean;
23426
23426
  }[];
23427
+ threshold: string | number;
23427
23428
  next_node: string;
23428
23429
  weights: string | number;
23429
- threshold: string | number;
23430
23430
  }, {
23431
23431
  forwards: {
23432
23432
  time: string | number;
@@ -23440,9 +23440,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23440
23440
  msg: string;
23441
23441
  accomplished: boolean;
23442
23442
  }[];
23443
+ threshold: string | number;
23443
23444
  next_node: string;
23444
23445
  weights: string | number;
23445
- threshold: string | number;
23446
23446
  }>, "many">;
23447
23447
  history_count: z.ZodNumber;
23448
23448
  current_time: z.ZodNumber;
@@ -25237,7 +25237,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
25237
25237
  id_from_submission?: number | undefined;
25238
25238
  data_from_submission?: number | undefined;
25239
25239
  }[];
25240
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
25240
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
25241
25241
  quote_guard?: string | null | undefined;
25242
25242
  }, {
25243
25243
  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";
@@ -25248,7 +25248,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
25248
25248
  id_from_submission?: number | undefined;
25249
25249
  data_from_submission?: number | undefined;
25250
25250
  }[];
25251
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
25251
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
25252
25252
  quote_guard?: string | null | undefined;
25253
25253
  }>, "many">;
25254
25254
  data_count: z.ZodNumber;
@@ -25354,7 +25354,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
25354
25354
  id_from_submission?: number | undefined;
25355
25355
  data_from_submission?: number | undefined;
25356
25356
  }[];
25357
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
25357
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
25358
25358
  quote_guard?: string | null | undefined;
25359
25359
  }, {
25360
25360
  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";
@@ -25365,7 +25365,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
25365
25365
  id_from_submission?: number | undefined;
25366
25366
  data_from_submission?: number | undefined;
25367
25367
  }[];
25368
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
25368
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
25369
25369
  quote_guard?: string | null | undefined;
25370
25370
  }>, "many">;
25371
25371
  data_count: z.ZodNumber;
@@ -25471,7 +25471,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
25471
25471
  id_from_submission?: number | undefined;
25472
25472
  data_from_submission?: number | undefined;
25473
25473
  }[];
25474
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
25474
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
25475
25475
  quote_guard?: string | null | undefined;
25476
25476
  }, {
25477
25477
  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";
@@ -25482,7 +25482,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
25482
25482
  id_from_submission?: number | undefined;
25483
25483
  data_from_submission?: number | undefined;
25484
25484
  }[];
25485
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
25485
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
25486
25486
  quote_guard?: string | null | undefined;
25487
25487
  }>, "many">;
25488
25488
  data_count: z.ZodNumber;
@@ -29933,9 +29933,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
29933
29933
  msg: string;
29934
29934
  accomplished: boolean;
29935
29935
  }[];
29936
+ threshold: string | number;
29936
29937
  next_node: string;
29937
29938
  weights: string | number;
29938
- threshold: string | number;
29939
29939
  }, {
29940
29940
  forwards: {
29941
29941
  time: string | number;
@@ -29949,9 +29949,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
29949
29949
  msg: string;
29950
29950
  accomplished: boolean;
29951
29951
  }[];
29952
+ threshold: string | number;
29952
29953
  next_node: string;
29953
29954
  weights: string | number;
29954
- threshold: string | number;
29955
29955
  }>, "many">;
29956
29956
  history_count: z.ZodNumber;
29957
29957
  current_time: z.ZodNumber;
@@ -30345,6 +30345,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30345
30345
  }>, "many">;
30346
30346
  }, "strip", z.ZodTypeAny, {
30347
30347
  description: string;
30348
+ threshold: string | number;
30348
30349
  allocators: {
30349
30350
  guard: string;
30350
30351
  sharing: {
@@ -30364,9 +30365,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30364
30365
  max?: string | number | null | undefined;
30365
30366
  fix?: string | number | undefined;
30366
30367
  }[];
30367
- threshold: string | number;
30368
30368
  }, {
30369
30369
  description: string;
30370
+ threshold: string | number;
30370
30371
  allocators: {
30371
30372
  guard: string;
30372
30373
  sharing: {
@@ -30386,7 +30387,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30386
30387
  max?: string | number | null | undefined;
30387
30388
  fix?: string | number | undefined;
30388
30389
  }[];
30389
- threshold: string | number;
30390
30390
  }>, z.ZodNull]>;
30391
30391
  rewards: z.ZodArray<z.ZodString, "many">;
30392
30392
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -30787,7 +30787,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30787
30787
  id_from_submission?: number | undefined;
30788
30788
  data_from_submission?: number | undefined;
30789
30789
  }[];
30790
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
30790
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
30791
30791
  quote_guard?: string | null | undefined;
30792
30792
  }, {
30793
30793
  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";
@@ -30798,7 +30798,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30798
30798
  id_from_submission?: number | undefined;
30799
30799
  data_from_submission?: number | undefined;
30800
30800
  }[];
30801
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
30801
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
30802
30802
  quote_guard?: string | null | undefined;
30803
30803
  }>, "many">;
30804
30804
  data_count: z.ZodNumber;
@@ -32678,9 +32678,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
32678
32678
  msg: string;
32679
32679
  accomplished: boolean;
32680
32680
  }[];
32681
+ threshold: string | number;
32681
32682
  next_node: string;
32682
32683
  weights: string | number;
32683
- threshold: string | number;
32684
32684
  }, {
32685
32685
  forwards: {
32686
32686
  time: string | number;
@@ -32694,9 +32694,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
32694
32694
  msg: string;
32695
32695
  accomplished: boolean;
32696
32696
  }[];
32697
+ threshold: string | number;
32697
32698
  next_node: string;
32698
32699
  weights: string | number;
32699
- threshold: string | number;
32700
32700
  }>, "many">;
32701
32701
  history_count: z.ZodNumber;
32702
32702
  current_time: z.ZodNumber;
@@ -33090,6 +33090,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33090
33090
  }>, "many">;
33091
33091
  }, "strip", z.ZodTypeAny, {
33092
33092
  description: string;
33093
+ threshold: string | number;
33093
33094
  allocators: {
33094
33095
  guard: string;
33095
33096
  sharing: {
@@ -33109,9 +33110,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33109
33110
  max?: string | number | null | undefined;
33110
33111
  fix?: string | number | undefined;
33111
33112
  }[];
33112
- threshold: string | number;
33113
33113
  }, {
33114
33114
  description: string;
33115
+ threshold: string | number;
33115
33116
  allocators: {
33116
33117
  guard: string;
33117
33118
  sharing: {
@@ -33131,7 +33132,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33131
33132
  max?: string | number | null | undefined;
33132
33133
  fix?: string | number | undefined;
33133
33134
  }[];
33134
- threshold: string | number;
33135
33135
  }>, z.ZodNull]>;
33136
33136
  rewards: z.ZodArray<z.ZodString, "many">;
33137
33137
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -33532,7 +33532,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33532
33532
  id_from_submission?: number | undefined;
33533
33533
  data_from_submission?: number | undefined;
33534
33534
  }[];
33535
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
33535
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
33536
33536
  quote_guard?: string | null | undefined;
33537
33537
  }, {
33538
33538
  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";
@@ -33543,7 +33543,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33543
33543
  id_from_submission?: number | undefined;
33544
33544
  data_from_submission?: number | undefined;
33545
33545
  }[];
33546
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
33546
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
33547
33547
  quote_guard?: string | null | undefined;
33548
33548
  }>, "many">;
33549
33549
  data_count: z.ZodNumber;
@@ -35928,7 +35928,7 @@ export declare const OnchainEventsInputSchema: z.ZodObject<{
35928
35928
  order: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ascending">, z.ZodLiteral<"descending">, z.ZodNull]>>;
35929
35929
  no_cache: z.ZodOptional<z.ZodBoolean>;
35930
35930
  network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
35931
- }, "strip", z.ZodTypeAny, {
35931
+ }, "strict", z.ZodTypeAny, {
35932
35932
  type: string;
35933
35933
  no_cache?: boolean | undefined;
35934
35934
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -36509,7 +36509,669 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36509
36509
  txDigest: string;
36510
36510
  } | null | undefined;
36511
36511
  }>, z.ZodNull]>;
36512
- semantic: z.ZodOptional<z.ZodAny>;
36512
+ semantic: z.ZodOptional<z.ZodObject<{
36513
+ intent: z.ZodString;
36514
+ status: z.ZodEnum<["success", "partial", "failed", "pending_input"]>;
36515
+ summary: z.ZodString;
36516
+ created: z.ZodOptional<z.ZodArray<z.ZodObject<{
36517
+ id: z.ZodString;
36518
+ name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
36519
+ role: z.ZodEnum<["Permission", "Guard", "Machine", "Progress", "Service", "Order", "Allocation", "Arbitration", "ArbCase", "Messenger", "Contact", "Demand", "Reward", "Personal", "Repository", "Treasury", "Discount", "Other"]>;
36520
+ relation: z.ZodOptional<z.ZodObject<{
36521
+ parent: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
36522
+ relation_type: z.ZodOptional<z.ZodEnum<["machine_of", "guard_of", "allocator_of", "permission_of", "progress_of", "allocation_of", "arb_of", "other"]>>;
36523
+ }, "strip", z.ZodTypeAny, {
36524
+ parent?: string | null | undefined;
36525
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36526
+ }, {
36527
+ parent?: string | null | undefined;
36528
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36529
+ }>>;
36530
+ immutable: z.ZodOptional<z.ZodBoolean>;
36531
+ }, "strict", z.ZodTypeAny, {
36532
+ id: string;
36533
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
36534
+ name?: string | null | undefined;
36535
+ relation?: {
36536
+ parent?: string | null | undefined;
36537
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36538
+ } | undefined;
36539
+ immutable?: boolean | undefined;
36540
+ }, {
36541
+ id: string;
36542
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
36543
+ name?: string | null | undefined;
36544
+ relation?: {
36545
+ parent?: string | null | undefined;
36546
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36547
+ } | undefined;
36548
+ immutable?: boolean | undefined;
36549
+ }>, "many">>;
36550
+ modified: z.ZodOptional<z.ZodArray<z.ZodObject<{
36551
+ id: z.ZodString;
36552
+ name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
36553
+ role: z.ZodEnum<["Permission", "Guard", "Machine", "Progress", "Service", "Order", "Allocation", "Arbitration", "ArbCase", "Messenger", "Contact", "Demand", "Reward", "Personal", "Repository", "Treasury", "Discount", "Other"]>;
36554
+ relation: z.ZodOptional<z.ZodObject<{
36555
+ parent: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
36556
+ relation_type: z.ZodOptional<z.ZodEnum<["machine_of", "guard_of", "allocator_of", "permission_of", "progress_of", "allocation_of", "arb_of", "other"]>>;
36557
+ }, "strip", z.ZodTypeAny, {
36558
+ parent?: string | null | undefined;
36559
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36560
+ }, {
36561
+ parent?: string | null | undefined;
36562
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36563
+ }>>;
36564
+ immutable: z.ZodOptional<z.ZodBoolean>;
36565
+ }, "strict", z.ZodTypeAny, {
36566
+ id: string;
36567
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
36568
+ name?: string | null | undefined;
36569
+ relation?: {
36570
+ parent?: string | null | undefined;
36571
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36572
+ } | undefined;
36573
+ immutable?: boolean | undefined;
36574
+ }, {
36575
+ id: string;
36576
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
36577
+ name?: string | null | undefined;
36578
+ relation?: {
36579
+ parent?: string | null | undefined;
36580
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36581
+ } | undefined;
36582
+ immutable?: boolean | undefined;
36583
+ }>, "many">>;
36584
+ released: z.ZodOptional<z.ZodArray<z.ZodObject<{
36585
+ amount: z.ZodString;
36586
+ coinType: z.ZodString;
36587
+ role: z.ZodEnum<["payment", "refund", "change", "compensation", "reward", "gas", "deposit", "release", "other"]>;
36588
+ from: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36589
+ to: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36590
+ }, "strict", z.ZodTypeAny, {
36591
+ coinType: string;
36592
+ amount: string;
36593
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
36594
+ from?: string | null | undefined;
36595
+ to?: string | null | undefined;
36596
+ }, {
36597
+ coinType: string;
36598
+ amount: string;
36599
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
36600
+ from?: string | null | undefined;
36601
+ to?: string | null | undefined;
36602
+ }>, "many">>;
36603
+ events: z.ZodOptional<z.ZodArray<z.ZodObject<{
36604
+ event_type: z.ZodString;
36605
+ business_meaning: z.ZodString;
36606
+ category: z.ZodEnum<["lifecycle", "state_change", "fund_flow", "permission", "guard", "other"]>;
36607
+ related_object: z.ZodOptional<z.ZodString>;
36608
+ side_effect: z.ZodOptional<z.ZodString>;
36609
+ }, "strict", z.ZodTypeAny, {
36610
+ event_type: string;
36611
+ business_meaning: string;
36612
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
36613
+ related_object?: string | undefined;
36614
+ side_effect?: string | undefined;
36615
+ }, {
36616
+ event_type: string;
36617
+ business_meaning: string;
36618
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
36619
+ related_object?: string | undefined;
36620
+ side_effect?: string | undefined;
36621
+ }>, "many">>;
36622
+ next_actions: z.ZodOptional<z.ZodArray<z.ZodObject<{
36623
+ action: z.ZodString;
36624
+ reason: z.ZodString;
36625
+ tool: z.ZodOptional<z.ZodString>;
36626
+ prerequisite: z.ZodOptional<z.ZodString>;
36627
+ priority: z.ZodEnum<["required", "recommended", "optional"]>;
36628
+ }, "strict", z.ZodTypeAny, {
36629
+ action: string;
36630
+ reason: string;
36631
+ priority: "required" | "recommended" | "optional";
36632
+ tool?: string | undefined;
36633
+ prerequisite?: string | undefined;
36634
+ }, {
36635
+ action: string;
36636
+ reason: string;
36637
+ priority: "required" | "recommended" | "optional";
36638
+ tool?: string | undefined;
36639
+ prerequisite?: string | undefined;
36640
+ }>, "many">>;
36641
+ warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36642
+ experience: z.ZodOptional<z.ZodObject<{
36643
+ advice: z.ZodOptional<z.ZodString>;
36644
+ avoid: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36645
+ relevance: z.ZodOptional<z.ZodNumber>;
36646
+ matched_scenario: z.ZodOptional<z.ZodString>;
36647
+ }, "strict", z.ZodTypeAny, {
36648
+ advice?: string | undefined;
36649
+ avoid?: string[] | undefined;
36650
+ relevance?: number | undefined;
36651
+ matched_scenario?: string | undefined;
36652
+ }, {
36653
+ advice?: string | undefined;
36654
+ avoid?: string[] | undefined;
36655
+ relevance?: number | undefined;
36656
+ matched_scenario?: string | undefined;
36657
+ }>>;
36658
+ service_status: z.ZodOptional<z.ZodObject<{
36659
+ active: z.ZodArray<z.ZodString, "many">;
36660
+ inactive: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36661
+ }, "strict", z.ZodTypeAny, {
36662
+ active: string[];
36663
+ inactive?: string[] | undefined;
36664
+ }, {
36665
+ active: string[];
36666
+ inactive?: string[] | undefined;
36667
+ }>>;
36668
+ customer_advice: z.ZodOptional<z.ZodObject<{
36669
+ risk_score: z.ZodOptional<z.ZodNumber>;
36670
+ risk_level: z.ZodOptional<z.ZodEnum<["low", "medium_low", "medium_high", "high"]>>;
36671
+ recommendations: z.ZodArray<z.ZodString, "many">;
36672
+ reminders: z.ZodArray<z.ZodObject<{
36673
+ id: z.ZodString;
36674
+ stage: z.ZodEnum<["browse", "evaluate", "preorder", "in_progress", "complete", "after_sale"]>;
36675
+ priority: z.ZodEnum<["required", "recommended", "info", "reminder"]>;
36676
+ message: z.ZodString;
36677
+ action: z.ZodOptional<z.ZodString>;
36678
+ }, "strict", z.ZodTypeAny, {
36679
+ message: string;
36680
+ id: string;
36681
+ priority: "required" | "recommended" | "info" | "reminder";
36682
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
36683
+ action?: string | undefined;
36684
+ }, {
36685
+ message: string;
36686
+ id: string;
36687
+ priority: "required" | "recommended" | "info" | "reminder";
36688
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
36689
+ action?: string | undefined;
36690
+ }>, "many">;
36691
+ preference_match: z.ZodOptional<z.ZodObject<{
36692
+ score: z.ZodNumber;
36693
+ matches: z.ZodArray<z.ZodString, "many">;
36694
+ mismatches: z.ZodArray<z.ZodString, "many">;
36695
+ }, "strict", z.ZodTypeAny, {
36696
+ score: number;
36697
+ matches: string[];
36698
+ mismatches: string[];
36699
+ }, {
36700
+ score: number;
36701
+ matches: string[];
36702
+ mismatches: string[];
36703
+ }>>;
36704
+ }, "strict", z.ZodTypeAny, {
36705
+ recommendations: string[];
36706
+ reminders: {
36707
+ message: string;
36708
+ id: string;
36709
+ priority: "required" | "recommended" | "info" | "reminder";
36710
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
36711
+ action?: string | undefined;
36712
+ }[];
36713
+ risk_score?: number | undefined;
36714
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
36715
+ preference_match?: {
36716
+ score: number;
36717
+ matches: string[];
36718
+ mismatches: string[];
36719
+ } | undefined;
36720
+ }, {
36721
+ recommendations: string[];
36722
+ reminders: {
36723
+ message: string;
36724
+ id: string;
36725
+ priority: "required" | "recommended" | "info" | "reminder";
36726
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
36727
+ action?: string | undefined;
36728
+ }[];
36729
+ risk_score?: number | undefined;
36730
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
36731
+ preference_match?: {
36732
+ score: number;
36733
+ matches: string[];
36734
+ mismatches: string[];
36735
+ } | undefined;
36736
+ }>>;
36737
+ evolution_context: z.ZodOptional<z.ZodObject<{
36738
+ industry_signal: z.ZodOptional<z.ZodString>;
36739
+ evolution_advice: z.ZodOptional<z.ZodString>;
36740
+ confidence: z.ZodNumber;
36741
+ health_score: z.ZodOptional<z.ZodNumber>;
36742
+ pending_suggestions: z.ZodOptional<z.ZodNumber>;
36743
+ intent: z.ZodOptional<z.ZodEnum<["default", "growth", "retention", "compliance", "efficiency", "trust_building", "custom"]>>;
36744
+ role_advice: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36745
+ role: z.ZodOptional<z.ZodEnum<["user", "merchant", "arbitrator"]>>;
36746
+ }, "strict", z.ZodTypeAny, {
36747
+ confidence: number;
36748
+ role?: "user" | "merchant" | "arbitrator" | undefined;
36749
+ industry_signal?: string | undefined;
36750
+ evolution_advice?: string | undefined;
36751
+ health_score?: number | undefined;
36752
+ pending_suggestions?: number | undefined;
36753
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
36754
+ role_advice?: string[] | undefined;
36755
+ }, {
36756
+ confidence: number;
36757
+ role?: "user" | "merchant" | "arbitrator" | undefined;
36758
+ industry_signal?: string | undefined;
36759
+ evolution_advice?: string | undefined;
36760
+ health_score?: number | undefined;
36761
+ pending_suggestions?: number | undefined;
36762
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
36763
+ role_advice?: string[] | undefined;
36764
+ }>>;
36765
+ guard_advice: z.ZodOptional<z.ZodObject<{
36766
+ current_round: z.ZodOptional<z.ZodEnum<["R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R10"]>>;
36767
+ puzzle_status: z.ZodOptional<z.ZodObject<{
36768
+ intent: z.ZodBoolean;
36769
+ binding: z.ZodBoolean;
36770
+ data: z.ZodBoolean;
36771
+ query: z.ZodBoolean;
36772
+ logic: z.ZodBoolean;
36773
+ constraints: z.ZodBoolean;
36774
+ }, "strict", z.ZodTypeAny, {
36775
+ data: boolean;
36776
+ intent: boolean;
36777
+ binding: boolean;
36778
+ query: boolean;
36779
+ logic: boolean;
36780
+ constraints: boolean;
36781
+ }, {
36782
+ data: boolean;
36783
+ intent: boolean;
36784
+ binding: boolean;
36785
+ query: boolean;
36786
+ logic: boolean;
36787
+ constraints: boolean;
36788
+ }>>;
36789
+ matched_scene: z.ZodOptional<z.ZodString>;
36790
+ scene_description: z.ZodOptional<z.ZodString>;
36791
+ scene_constraints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36792
+ suggested_patterns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36793
+ available_queries: z.ZodOptional<z.ZodArray<z.ZodObject<{
36794
+ id: z.ZodNumber;
36795
+ name: z.ZodString;
36796
+ objectType: z.ZodString;
36797
+ returnType: z.ZodString;
36798
+ description: z.ZodOptional<z.ZodString>;
36799
+ }, "strict", z.ZodTypeAny, {
36800
+ name: string;
36801
+ id: number;
36802
+ objectType: string;
36803
+ returnType: string;
36804
+ description?: string | undefined;
36805
+ }, {
36806
+ name: string;
36807
+ id: number;
36808
+ objectType: string;
36809
+ returnType: string;
36810
+ description?: string | undefined;
36811
+ }>, "many">>;
36812
+ risk_warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36813
+ pending_questions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36814
+ confirmation_text: z.ZodOptional<z.ZodString>;
36815
+ test_result: z.ZodOptional<z.ZodObject<{
36816
+ status: z.ZodEnum<["pass", "fail", "not_tested"]>;
36817
+ failure_node: z.ZodOptional<z.ZodString>;
36818
+ passport_id: z.ZodOptional<z.ZodString>;
36819
+ }, "strip", z.ZodTypeAny, {
36820
+ status: "pass" | "fail" | "not_tested";
36821
+ failure_node?: string | undefined;
36822
+ passport_id?: string | undefined;
36823
+ }, {
36824
+ status: "pass" | "fail" | "not_tested";
36825
+ failure_node?: string | undefined;
36826
+ passport_id?: string | undefined;
36827
+ }>>;
36828
+ risk_assessment: z.ZodOptional<z.ZodObject<{
36829
+ overall_risk: z.ZodEnum<["critical", "high", "medium", "low", "info"]>;
36830
+ risk_count: z.ZodNumber;
36831
+ critical_count: z.ZodNumber;
36832
+ high_count: z.ZodNumber;
36833
+ needs_human_review: z.ZodBoolean;
36834
+ top_risks: z.ZodArray<z.ZodString, "many">;
36835
+ stakeholder_advice: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
36836
+ }, "strip", z.ZodTypeAny, {
36837
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
36838
+ risk_count: number;
36839
+ critical_count: number;
36840
+ high_count: number;
36841
+ needs_human_review: boolean;
36842
+ top_risks: string[];
36843
+ stakeholder_advice?: Record<string, string[]> | undefined;
36844
+ }, {
36845
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
36846
+ risk_count: number;
36847
+ critical_count: number;
36848
+ high_count: number;
36849
+ needs_human_review: boolean;
36850
+ top_risks: string[];
36851
+ stakeholder_advice?: Record<string, string[]> | undefined;
36852
+ }>>;
36853
+ }, "strict", z.ZodTypeAny, {
36854
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
36855
+ puzzle_status?: {
36856
+ data: boolean;
36857
+ intent: boolean;
36858
+ binding: boolean;
36859
+ query: boolean;
36860
+ logic: boolean;
36861
+ constraints: boolean;
36862
+ } | undefined;
36863
+ matched_scene?: string | undefined;
36864
+ scene_description?: string | undefined;
36865
+ scene_constraints?: string[] | undefined;
36866
+ suggested_patterns?: string[] | undefined;
36867
+ available_queries?: {
36868
+ name: string;
36869
+ id: number;
36870
+ objectType: string;
36871
+ returnType: string;
36872
+ description?: string | undefined;
36873
+ }[] | undefined;
36874
+ risk_warnings?: string[] | undefined;
36875
+ pending_questions?: string[] | undefined;
36876
+ confirmation_text?: string | undefined;
36877
+ test_result?: {
36878
+ status: "pass" | "fail" | "not_tested";
36879
+ failure_node?: string | undefined;
36880
+ passport_id?: string | undefined;
36881
+ } | undefined;
36882
+ risk_assessment?: {
36883
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
36884
+ risk_count: number;
36885
+ critical_count: number;
36886
+ high_count: number;
36887
+ needs_human_review: boolean;
36888
+ top_risks: string[];
36889
+ stakeholder_advice?: Record<string, string[]> | undefined;
36890
+ } | undefined;
36891
+ }, {
36892
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
36893
+ puzzle_status?: {
36894
+ data: boolean;
36895
+ intent: boolean;
36896
+ binding: boolean;
36897
+ query: boolean;
36898
+ logic: boolean;
36899
+ constraints: boolean;
36900
+ } | undefined;
36901
+ matched_scene?: string | undefined;
36902
+ scene_description?: string | undefined;
36903
+ scene_constraints?: string[] | undefined;
36904
+ suggested_patterns?: string[] | undefined;
36905
+ available_queries?: {
36906
+ name: string;
36907
+ id: number;
36908
+ objectType: string;
36909
+ returnType: string;
36910
+ description?: string | undefined;
36911
+ }[] | undefined;
36912
+ risk_warnings?: string[] | undefined;
36913
+ pending_questions?: string[] | undefined;
36914
+ confirmation_text?: string | undefined;
36915
+ test_result?: {
36916
+ status: "pass" | "fail" | "not_tested";
36917
+ failure_node?: string | undefined;
36918
+ passport_id?: string | undefined;
36919
+ } | undefined;
36920
+ risk_assessment?: {
36921
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
36922
+ risk_count: number;
36923
+ critical_count: number;
36924
+ high_count: number;
36925
+ needs_human_review: boolean;
36926
+ top_risks: string[];
36927
+ stakeholder_advice?: Record<string, string[]> | undefined;
36928
+ } | undefined;
36929
+ }>>;
36930
+ }, "strict", z.ZodTypeAny, {
36931
+ status: "success" | "partial" | "failed" | "pending_input";
36932
+ intent: string;
36933
+ summary: string;
36934
+ created?: {
36935
+ id: string;
36936
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
36937
+ name?: string | null | undefined;
36938
+ relation?: {
36939
+ parent?: string | null | undefined;
36940
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36941
+ } | undefined;
36942
+ immutable?: boolean | undefined;
36943
+ }[] | undefined;
36944
+ events?: {
36945
+ event_type: string;
36946
+ business_meaning: string;
36947
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
36948
+ related_object?: string | undefined;
36949
+ side_effect?: string | undefined;
36950
+ }[] | undefined;
36951
+ modified?: {
36952
+ id: string;
36953
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
36954
+ name?: string | null | undefined;
36955
+ relation?: {
36956
+ parent?: string | null | undefined;
36957
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
36958
+ } | undefined;
36959
+ immutable?: boolean | undefined;
36960
+ }[] | undefined;
36961
+ released?: {
36962
+ coinType: string;
36963
+ amount: string;
36964
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
36965
+ from?: string | null | undefined;
36966
+ to?: string | null | undefined;
36967
+ }[] | undefined;
36968
+ next_actions?: {
36969
+ action: string;
36970
+ reason: string;
36971
+ priority: "required" | "recommended" | "optional";
36972
+ tool?: string | undefined;
36973
+ prerequisite?: string | undefined;
36974
+ }[] | undefined;
36975
+ warnings?: string[] | undefined;
36976
+ experience?: {
36977
+ advice?: string | undefined;
36978
+ avoid?: string[] | undefined;
36979
+ relevance?: number | undefined;
36980
+ matched_scenario?: string | undefined;
36981
+ } | undefined;
36982
+ service_status?: {
36983
+ active: string[];
36984
+ inactive?: string[] | undefined;
36985
+ } | undefined;
36986
+ customer_advice?: {
36987
+ recommendations: string[];
36988
+ reminders: {
36989
+ message: string;
36990
+ id: string;
36991
+ priority: "required" | "recommended" | "info" | "reminder";
36992
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
36993
+ action?: string | undefined;
36994
+ }[];
36995
+ risk_score?: number | undefined;
36996
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
36997
+ preference_match?: {
36998
+ score: number;
36999
+ matches: string[];
37000
+ mismatches: string[];
37001
+ } | undefined;
37002
+ } | undefined;
37003
+ evolution_context?: {
37004
+ confidence: number;
37005
+ role?: "user" | "merchant" | "arbitrator" | undefined;
37006
+ industry_signal?: string | undefined;
37007
+ evolution_advice?: string | undefined;
37008
+ health_score?: number | undefined;
37009
+ pending_suggestions?: number | undefined;
37010
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
37011
+ role_advice?: string[] | undefined;
37012
+ } | undefined;
37013
+ guard_advice?: {
37014
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
37015
+ puzzle_status?: {
37016
+ data: boolean;
37017
+ intent: boolean;
37018
+ binding: boolean;
37019
+ query: boolean;
37020
+ logic: boolean;
37021
+ constraints: boolean;
37022
+ } | undefined;
37023
+ matched_scene?: string | undefined;
37024
+ scene_description?: string | undefined;
37025
+ scene_constraints?: string[] | undefined;
37026
+ suggested_patterns?: string[] | undefined;
37027
+ available_queries?: {
37028
+ name: string;
37029
+ id: number;
37030
+ objectType: string;
37031
+ returnType: string;
37032
+ description?: string | undefined;
37033
+ }[] | undefined;
37034
+ risk_warnings?: string[] | undefined;
37035
+ pending_questions?: string[] | undefined;
37036
+ confirmation_text?: string | undefined;
37037
+ test_result?: {
37038
+ status: "pass" | "fail" | "not_tested";
37039
+ failure_node?: string | undefined;
37040
+ passport_id?: string | undefined;
37041
+ } | undefined;
37042
+ risk_assessment?: {
37043
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
37044
+ risk_count: number;
37045
+ critical_count: number;
37046
+ high_count: number;
37047
+ needs_human_review: boolean;
37048
+ top_risks: string[];
37049
+ stakeholder_advice?: Record<string, string[]> | undefined;
37050
+ } | undefined;
37051
+ } | undefined;
37052
+ }, {
37053
+ status: "success" | "partial" | "failed" | "pending_input";
37054
+ intent: string;
37055
+ summary: string;
37056
+ created?: {
37057
+ id: string;
37058
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
37059
+ name?: string | null | undefined;
37060
+ relation?: {
37061
+ parent?: string | null | undefined;
37062
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
37063
+ } | undefined;
37064
+ immutable?: boolean | undefined;
37065
+ }[] | undefined;
37066
+ events?: {
37067
+ event_type: string;
37068
+ business_meaning: string;
37069
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
37070
+ related_object?: string | undefined;
37071
+ side_effect?: string | undefined;
37072
+ }[] | undefined;
37073
+ modified?: {
37074
+ id: string;
37075
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
37076
+ name?: string | null | undefined;
37077
+ relation?: {
37078
+ parent?: string | null | undefined;
37079
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
37080
+ } | undefined;
37081
+ immutable?: boolean | undefined;
37082
+ }[] | undefined;
37083
+ released?: {
37084
+ coinType: string;
37085
+ amount: string;
37086
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
37087
+ from?: string | null | undefined;
37088
+ to?: string | null | undefined;
37089
+ }[] | undefined;
37090
+ next_actions?: {
37091
+ action: string;
37092
+ reason: string;
37093
+ priority: "required" | "recommended" | "optional";
37094
+ tool?: string | undefined;
37095
+ prerequisite?: string | undefined;
37096
+ }[] | undefined;
37097
+ warnings?: string[] | undefined;
37098
+ experience?: {
37099
+ advice?: string | undefined;
37100
+ avoid?: string[] | undefined;
37101
+ relevance?: number | undefined;
37102
+ matched_scenario?: string | undefined;
37103
+ } | undefined;
37104
+ service_status?: {
37105
+ active: string[];
37106
+ inactive?: string[] | undefined;
37107
+ } | undefined;
37108
+ customer_advice?: {
37109
+ recommendations: string[];
37110
+ reminders: {
37111
+ message: string;
37112
+ id: string;
37113
+ priority: "required" | "recommended" | "info" | "reminder";
37114
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
37115
+ action?: string | undefined;
37116
+ }[];
37117
+ risk_score?: number | undefined;
37118
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
37119
+ preference_match?: {
37120
+ score: number;
37121
+ matches: string[];
37122
+ mismatches: string[];
37123
+ } | undefined;
37124
+ } | undefined;
37125
+ evolution_context?: {
37126
+ confidence: number;
37127
+ role?: "user" | "merchant" | "arbitrator" | undefined;
37128
+ industry_signal?: string | undefined;
37129
+ evolution_advice?: string | undefined;
37130
+ health_score?: number | undefined;
37131
+ pending_suggestions?: number | undefined;
37132
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
37133
+ role_advice?: string[] | undefined;
37134
+ } | undefined;
37135
+ guard_advice?: {
37136
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
37137
+ puzzle_status?: {
37138
+ data: boolean;
37139
+ intent: boolean;
37140
+ binding: boolean;
37141
+ query: boolean;
37142
+ logic: boolean;
37143
+ constraints: boolean;
37144
+ } | undefined;
37145
+ matched_scene?: string | undefined;
37146
+ scene_description?: string | undefined;
37147
+ scene_constraints?: string[] | undefined;
37148
+ suggested_patterns?: string[] | undefined;
37149
+ available_queries?: {
37150
+ name: string;
37151
+ id: number;
37152
+ objectType: string;
37153
+ returnType: string;
37154
+ description?: string | undefined;
37155
+ }[] | undefined;
37156
+ risk_warnings?: string[] | undefined;
37157
+ pending_questions?: string[] | undefined;
37158
+ confirmation_text?: string | undefined;
37159
+ test_result?: {
37160
+ status: "pass" | "fail" | "not_tested";
37161
+ failure_node?: string | undefined;
37162
+ passport_id?: string | undefined;
37163
+ } | undefined;
37164
+ risk_assessment?: {
37165
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
37166
+ risk_count: number;
37167
+ critical_count: number;
37168
+ high_count: number;
37169
+ needs_human_review: boolean;
37170
+ top_risks: string[];
37171
+ stakeholder_advice?: Record<string, string[]> | undefined;
37172
+ } | undefined;
37173
+ } | undefined;
37174
+ }>>;
36513
37175
  }, "strip", z.ZodTypeAny, {
36514
37176
  result: {
36515
37177
  data: ({
@@ -36616,7 +37278,129 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36616
37278
  txDigest: string;
36617
37279
  } | null | undefined;
36618
37280
  } | null;
36619
- semantic?: any;
37281
+ semantic?: {
37282
+ status: "success" | "partial" | "failed" | "pending_input";
37283
+ intent: string;
37284
+ summary: string;
37285
+ created?: {
37286
+ id: string;
37287
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
37288
+ name?: string | null | undefined;
37289
+ relation?: {
37290
+ parent?: string | null | undefined;
37291
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
37292
+ } | undefined;
37293
+ immutable?: boolean | undefined;
37294
+ }[] | undefined;
37295
+ events?: {
37296
+ event_type: string;
37297
+ business_meaning: string;
37298
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
37299
+ related_object?: string | undefined;
37300
+ side_effect?: string | undefined;
37301
+ }[] | undefined;
37302
+ modified?: {
37303
+ id: string;
37304
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
37305
+ name?: string | null | undefined;
37306
+ relation?: {
37307
+ parent?: string | null | undefined;
37308
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
37309
+ } | undefined;
37310
+ immutable?: boolean | undefined;
37311
+ }[] | undefined;
37312
+ released?: {
37313
+ coinType: string;
37314
+ amount: string;
37315
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
37316
+ from?: string | null | undefined;
37317
+ to?: string | null | undefined;
37318
+ }[] | undefined;
37319
+ next_actions?: {
37320
+ action: string;
37321
+ reason: string;
37322
+ priority: "required" | "recommended" | "optional";
37323
+ tool?: string | undefined;
37324
+ prerequisite?: string | undefined;
37325
+ }[] | undefined;
37326
+ warnings?: string[] | undefined;
37327
+ experience?: {
37328
+ advice?: string | undefined;
37329
+ avoid?: string[] | undefined;
37330
+ relevance?: number | undefined;
37331
+ matched_scenario?: string | undefined;
37332
+ } | undefined;
37333
+ service_status?: {
37334
+ active: string[];
37335
+ inactive?: string[] | undefined;
37336
+ } | undefined;
37337
+ customer_advice?: {
37338
+ recommendations: string[];
37339
+ reminders: {
37340
+ message: string;
37341
+ id: string;
37342
+ priority: "required" | "recommended" | "info" | "reminder";
37343
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
37344
+ action?: string | undefined;
37345
+ }[];
37346
+ risk_score?: number | undefined;
37347
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
37348
+ preference_match?: {
37349
+ score: number;
37350
+ matches: string[];
37351
+ mismatches: string[];
37352
+ } | undefined;
37353
+ } | undefined;
37354
+ evolution_context?: {
37355
+ confidence: number;
37356
+ role?: "user" | "merchant" | "arbitrator" | undefined;
37357
+ industry_signal?: string | undefined;
37358
+ evolution_advice?: string | undefined;
37359
+ health_score?: number | undefined;
37360
+ pending_suggestions?: number | undefined;
37361
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
37362
+ role_advice?: string[] | undefined;
37363
+ } | undefined;
37364
+ guard_advice?: {
37365
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
37366
+ puzzle_status?: {
37367
+ data: boolean;
37368
+ intent: boolean;
37369
+ binding: boolean;
37370
+ query: boolean;
37371
+ logic: boolean;
37372
+ constraints: boolean;
37373
+ } | undefined;
37374
+ matched_scene?: string | undefined;
37375
+ scene_description?: string | undefined;
37376
+ scene_constraints?: string[] | undefined;
37377
+ suggested_patterns?: string[] | undefined;
37378
+ available_queries?: {
37379
+ name: string;
37380
+ id: number;
37381
+ objectType: string;
37382
+ returnType: string;
37383
+ description?: string | undefined;
37384
+ }[] | undefined;
37385
+ risk_warnings?: string[] | undefined;
37386
+ pending_questions?: string[] | undefined;
37387
+ confirmation_text?: string | undefined;
37388
+ test_result?: {
37389
+ status: "pass" | "fail" | "not_tested";
37390
+ failure_node?: string | undefined;
37391
+ passport_id?: string | undefined;
37392
+ } | undefined;
37393
+ risk_assessment?: {
37394
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
37395
+ risk_count: number;
37396
+ critical_count: number;
37397
+ high_count: number;
37398
+ needs_human_review: boolean;
37399
+ top_risks: string[];
37400
+ stakeholder_advice?: Record<string, string[]> | undefined;
37401
+ } | undefined;
37402
+ } | undefined;
37403
+ } | undefined;
36620
37404
  }, {
36621
37405
  result: {
36622
37406
  data: ({
@@ -36723,7 +37507,129 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36723
37507
  txDigest: string;
36724
37508
  } | null | undefined;
36725
37509
  } | null;
36726
- semantic?: any;
37510
+ semantic?: {
37511
+ status: "success" | "partial" | "failed" | "pending_input";
37512
+ intent: string;
37513
+ summary: string;
37514
+ created?: {
37515
+ id: string;
37516
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
37517
+ name?: string | null | undefined;
37518
+ relation?: {
37519
+ parent?: string | null | undefined;
37520
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
37521
+ } | undefined;
37522
+ immutable?: boolean | undefined;
37523
+ }[] | undefined;
37524
+ events?: {
37525
+ event_type: string;
37526
+ business_meaning: string;
37527
+ category: "permission" | "other" | "lifecycle" | "state_change" | "fund_flow" | "guard";
37528
+ related_object?: string | undefined;
37529
+ side_effect?: string | undefined;
37530
+ }[] | undefined;
37531
+ modified?: {
37532
+ id: string;
37533
+ role: "Permission" | "Guard" | "Machine" | "Progress" | "Service" | "Order" | "Allocation" | "Arbitration" | "ArbCase" | "Messenger" | "Contact" | "Demand" | "Reward" | "Personal" | "Repository" | "Treasury" | "Discount" | "Other";
37534
+ name?: string | null | undefined;
37535
+ relation?: {
37536
+ parent?: string | null | undefined;
37537
+ relation_type?: "machine_of" | "guard_of" | "allocator_of" | "permission_of" | "progress_of" | "allocation_of" | "arb_of" | "other" | undefined;
37538
+ } | undefined;
37539
+ immutable?: boolean | undefined;
37540
+ }[] | undefined;
37541
+ released?: {
37542
+ coinType: string;
37543
+ amount: string;
37544
+ role: "payment" | "change" | "other" | "refund" | "compensation" | "reward" | "gas" | "deposit" | "release";
37545
+ from?: string | null | undefined;
37546
+ to?: string | null | undefined;
37547
+ }[] | undefined;
37548
+ next_actions?: {
37549
+ action: string;
37550
+ reason: string;
37551
+ priority: "required" | "recommended" | "optional";
37552
+ tool?: string | undefined;
37553
+ prerequisite?: string | undefined;
37554
+ }[] | undefined;
37555
+ warnings?: string[] | undefined;
37556
+ experience?: {
37557
+ advice?: string | undefined;
37558
+ avoid?: string[] | undefined;
37559
+ relevance?: number | undefined;
37560
+ matched_scenario?: string | undefined;
37561
+ } | undefined;
37562
+ service_status?: {
37563
+ active: string[];
37564
+ inactive?: string[] | undefined;
37565
+ } | undefined;
37566
+ customer_advice?: {
37567
+ recommendations: string[];
37568
+ reminders: {
37569
+ message: string;
37570
+ id: string;
37571
+ priority: "required" | "recommended" | "info" | "reminder";
37572
+ stage: "browse" | "evaluate" | "preorder" | "in_progress" | "complete" | "after_sale";
37573
+ action?: string | undefined;
37574
+ }[];
37575
+ risk_score?: number | undefined;
37576
+ risk_level?: "low" | "medium_low" | "medium_high" | "high" | undefined;
37577
+ preference_match?: {
37578
+ score: number;
37579
+ matches: string[];
37580
+ mismatches: string[];
37581
+ } | undefined;
37582
+ } | undefined;
37583
+ evolution_context?: {
37584
+ confidence: number;
37585
+ role?: "user" | "merchant" | "arbitrator" | undefined;
37586
+ industry_signal?: string | undefined;
37587
+ evolution_advice?: string | undefined;
37588
+ health_score?: number | undefined;
37589
+ pending_suggestions?: number | undefined;
37590
+ intent?: "custom" | "default" | "growth" | "retention" | "compliance" | "efficiency" | "trust_building" | undefined;
37591
+ role_advice?: string[] | undefined;
37592
+ } | undefined;
37593
+ guard_advice?: {
37594
+ current_round?: "R1" | "R2" | "R3" | "R4" | "R5" | "R6" | "R7" | "R8" | "R9" | "R10" | undefined;
37595
+ puzzle_status?: {
37596
+ data: boolean;
37597
+ intent: boolean;
37598
+ binding: boolean;
37599
+ query: boolean;
37600
+ logic: boolean;
37601
+ constraints: boolean;
37602
+ } | undefined;
37603
+ matched_scene?: string | undefined;
37604
+ scene_description?: string | undefined;
37605
+ scene_constraints?: string[] | undefined;
37606
+ suggested_patterns?: string[] | undefined;
37607
+ available_queries?: {
37608
+ name: string;
37609
+ id: number;
37610
+ objectType: string;
37611
+ returnType: string;
37612
+ description?: string | undefined;
37613
+ }[] | undefined;
37614
+ risk_warnings?: string[] | undefined;
37615
+ pending_questions?: string[] | undefined;
37616
+ confirmation_text?: string | undefined;
37617
+ test_result?: {
37618
+ status: "pass" | "fail" | "not_tested";
37619
+ failure_node?: string | undefined;
37620
+ passport_id?: string | undefined;
37621
+ } | undefined;
37622
+ risk_assessment?: {
37623
+ overall_risk: "info" | "low" | "high" | "critical" | "medium";
37624
+ risk_count: number;
37625
+ critical_count: number;
37626
+ high_count: number;
37627
+ needs_human_review: boolean;
37628
+ top_risks: string[];
37629
+ stakeholder_advice?: Record<string, string[]> | undefined;
37630
+ } | undefined;
37631
+ } | undefined;
37632
+ } | undefined;
36727
37633
  }>;
36728
37634
  export declare const TableItem_RepositoryDataOrUndefinedSchema: z.ZodUnion<[z.ZodObject<{
36729
37635
  object: z.ZodString;
@@ -39226,9 +40132,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
39226
40132
  msg: string;
39227
40133
  accomplished: boolean;
39228
40134
  }[];
40135
+ threshold: string | number;
39229
40136
  next_node: string;
39230
40137
  weights: string | number;
39231
- threshold: string | number;
39232
40138
  }, {
39233
40139
  forwards: {
39234
40140
  time: string | number;
@@ -39242,9 +40148,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
39242
40148
  msg: string;
39243
40149
  accomplished: boolean;
39244
40150
  }[];
40151
+ threshold: string | number;
39245
40152
  next_node: string;
39246
40153
  weights: string | number;
39247
- threshold: string | number;
39248
40154
  }>, "many">;
39249
40155
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
39250
40156
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -39412,9 +40318,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
39412
40318
  msg: string;
39413
40319
  accomplished: boolean;
39414
40320
  }[];
40321
+ threshold: string | number;
39415
40322
  next_node: string;
39416
40323
  weights: string | number;
39417
- threshold: string | number;
39418
40324
  }, {
39419
40325
  forwards: {
39420
40326
  time: string | number;
@@ -39428,9 +40334,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
39428
40334
  msg: string;
39429
40335
  accomplished: boolean;
39430
40336
  }[];
40337
+ threshold: string | number;
39431
40338
  next_node: string;
39432
40339
  weights: string | number;
39433
- threshold: string | number;
39434
40340
  }>, "many">;
39435
40341
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
39436
40342
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -39598,9 +40504,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
39598
40504
  msg: string;
39599
40505
  accomplished: boolean;
39600
40506
  }[];
40507
+ threshold: string | number;
39601
40508
  next_node: string;
39602
40509
  weights: string | number;
39603
- threshold: string | number;
39604
40510
  }, {
39605
40511
  forwards: {
39606
40512
  time: string | number;
@@ -39614,9 +40520,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
39614
40520
  msg: string;
39615
40521
  accomplished: boolean;
39616
40522
  }[];
40523
+ threshold: string | number;
39617
40524
  next_node: string;
39618
40525
  weights: string | number;
39619
- threshold: string | number;
39620
40526
  }>, "many">;
39621
40527
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
39622
40528
  }, z.ZodTypeAny, "passthrough">>, z.ZodNull]>;
@@ -44281,9 +45187,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44281
45187
  msg: string;
44282
45188
  accomplished: boolean;
44283
45189
  }[];
45190
+ threshold: string | number;
44284
45191
  next_node: string;
44285
45192
  weights: string | number;
44286
- threshold: string | number;
44287
45193
  }, {
44288
45194
  forwards: {
44289
45195
  time: string | number;
@@ -44297,9 +45203,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44297
45203
  msg: string;
44298
45204
  accomplished: boolean;
44299
45205
  }[];
45206
+ threshold: string | number;
44300
45207
  next_node: string;
44301
45208
  weights: string | number;
44302
- threshold: string | number;
44303
45209
  }>, "many">;
44304
45210
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
44305
45211
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -44467,9 +45373,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44467
45373
  msg: string;
44468
45374
  accomplished: boolean;
44469
45375
  }[];
45376
+ threshold: string | number;
44470
45377
  next_node: string;
44471
45378
  weights: string | number;
44472
- threshold: string | number;
44473
45379
  }, {
44474
45380
  forwards: {
44475
45381
  time: string | number;
@@ -44483,9 +45389,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44483
45389
  msg: string;
44484
45390
  accomplished: boolean;
44485
45391
  }[];
45392
+ threshold: string | number;
44486
45393
  next_node: string;
44487
45394
  weights: string | number;
44488
- threshold: string | number;
44489
45395
  }>, "many">;
44490
45396
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
44491
45397
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -44653,9 +45559,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44653
45559
  msg: string;
44654
45560
  accomplished: boolean;
44655
45561
  }[];
45562
+ threshold: string | number;
44656
45563
  next_node: string;
44657
45564
  weights: string | number;
44658
- threshold: string | number;
44659
45565
  }, {
44660
45566
  forwards: {
44661
45567
  time: string | number;
@@ -44669,9 +45575,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44669
45575
  msg: string;
44670
45576
  accomplished: boolean;
44671
45577
  }[];
45578
+ threshold: string | number;
44672
45579
  next_node: string;
44673
45580
  weights: string | number;
44674
- threshold: string | number;
44675
45581
  }>, "many">;
44676
45582
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
44677
45583
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
@@ -45832,9 +46738,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45832
46738
  msg: string;
45833
46739
  accomplished: boolean;
45834
46740
  }[];
46741
+ threshold: string | number;
45835
46742
  next_node: string;
45836
46743
  weights: string | number;
45837
- threshold: string | number;
45838
46744
  }, {
45839
46745
  forwards: {
45840
46746
  time: string | number;
@@ -45848,9 +46754,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45848
46754
  msg: string;
45849
46755
  accomplished: boolean;
45850
46756
  }[];
46757
+ threshold: string | number;
45851
46758
  next_node: string;
45852
46759
  weights: string | number;
45853
- threshold: string | number;
45854
46760
  }>, "many">;
45855
46761
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
45856
46762
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
@@ -46869,9 +47775,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
46869
47775
  msg: string;
46870
47776
  accomplished: boolean;
46871
47777
  }[];
47778
+ threshold: string | number;
46872
47779
  next_node: string;
46873
47780
  weights: string | number;
46874
- threshold: string | number;
46875
47781
  }, {
46876
47782
  forwards: {
46877
47783
  time: string | number;
@@ -46885,9 +47791,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
46885
47791
  msg: string;
46886
47792
  accomplished: boolean;
46887
47793
  }[];
47794
+ threshold: string | number;
46888
47795
  next_node: string;
46889
47796
  weights: string | number;
46890
- threshold: string | number;
46891
47797
  }>, "many">;
46892
47798
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
46893
47799
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
@@ -47028,19 +47934,19 @@ export declare const GuardItemSchema: z.ZodObject<{
47028
47934
  description: string;
47029
47935
  id: number;
47030
47936
  objectType?: import("@wowok/wowok").ObjectType | undefined;
47937
+ returnType?: "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" | undefined;
47031
47938
  parameters?: ("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")[] | undefined;
47032
47939
  return?: "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" | undefined;
47033
47940
  parameters_description?: string[] | undefined;
47034
- returnType?: "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" | undefined;
47035
47941
  }, {
47036
47942
  name: string;
47037
47943
  description: string;
47038
47944
  id: number;
47039
47945
  objectType?: import("@wowok/wowok").ObjectType | undefined;
47946
+ returnType?: "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" | undefined;
47040
47947
  parameters?: ("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")[] | undefined;
47041
47948
  return?: "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" | undefined;
47042
47949
  parameters_description?: string[] | undefined;
47043
- returnType?: "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" | undefined;
47044
47950
  }>;
47045
47951
  export declare const GuardInstructFilterOptionsSchema: z.ZodObject<{
47046
47952
  name: z.ZodOptional<z.ZodString>;
@@ -47110,7 +48016,7 @@ export declare const BridgeTokenInfoSchema: z.ZodObject<{
47110
48016
  }>;
47111
48017
  export declare const ProtocolInfoQuerySchema: z.ZodDiscriminatedUnion<"info", [z.ZodObject<{
47112
48018
  info: z.ZodLiteral<"constants">;
47113
- }, "strip", z.ZodTypeAny, {
48019
+ }, "strict", z.ZodTypeAny, {
47114
48020
  info: "constants";
47115
48021
  }, {
47116
48022
  info: "constants";
@@ -47132,7 +48038,7 @@ export declare const ProtocolInfoQuerySchema: z.ZodDiscriminatedUnion<"info", [z
47132
48038
  objectType?: import("@wowok/wowok").ObjectType | undefined;
47133
48039
  index?: number | undefined;
47134
48040
  }>>;
47135
- }, "strip", z.ZodTypeAny, {
48041
+ }, "strict", z.ZodTypeAny, {
47136
48042
  info: "built-in permissions";
47137
48043
  filter?: {
47138
48044
  name?: string | undefined;
@@ -47172,7 +48078,7 @@ export declare const ProtocolInfoQuerySchema: z.ZodDiscriminatedUnion<"info", [z
47172
48078
  paramCount?: number | undefined;
47173
48079
  scope?: "instruct" | "object query" | "all" | undefined;
47174
48080
  }>>;
47175
- }, "strip", z.ZodTypeAny, {
48081
+ }, "strict", z.ZodTypeAny, {
47176
48082
  info: "guard instructions";
47177
48083
  filter?: {
47178
48084
  scope: "instruct" | "object query" | "all";
@@ -47194,19 +48100,19 @@ export declare const ProtocolInfoQuerySchema: z.ZodDiscriminatedUnion<"info", [z
47194
48100
  } | undefined;
47195
48101
  }>, z.ZodObject<{
47196
48102
  info: z.ZodLiteral<"current network">;
47197
- }, "strip", z.ZodTypeAny, {
48103
+ }, "strict", z.ZodTypeAny, {
47198
48104
  info: "current network";
47199
48105
  }, {
47200
48106
  info: "current network";
47201
48107
  }>, z.ZodObject<{
47202
48108
  info: z.ZodLiteral<"value types">;
47203
- }, "strip", z.ZodTypeAny, {
48109
+ }, "strict", z.ZodTypeAny, {
47204
48110
  info: "value types";
47205
48111
  }, {
47206
48112
  info: "value types";
47207
48113
  }>, z.ZodObject<{
47208
48114
  info: z.ZodLiteral<"mainnet bridge tokens">;
47209
- }, "strip", z.ZodTypeAny, {
48115
+ }, "strict", z.ZodTypeAny, {
47210
48116
  info: "mainnet bridge tokens";
47211
48117
  }, {
47212
48118
  info: "mainnet bridge tokens";
@@ -47322,19 +48228,19 @@ export declare const ProtocolInfoResultWrappedSchema: z.ZodDiscriminatedUnion<"i
47322
48228
  description: string;
47323
48229
  id: number;
47324
48230
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48231
+ returnType?: "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" | undefined;
47325
48232
  parameters?: ("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")[] | undefined;
47326
48233
  return?: "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" | undefined;
47327
48234
  parameters_description?: string[] | undefined;
47328
- returnType?: "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" | undefined;
47329
48235
  }, {
47330
48236
  name: string;
47331
48237
  description: string;
47332
48238
  id: number;
47333
48239
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48240
+ returnType?: "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" | undefined;
47334
48241
  parameters?: ("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")[] | undefined;
47335
48242
  return?: "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" | undefined;
47336
48243
  parameters_description?: string[] | undefined;
47337
- returnType?: "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" | undefined;
47338
48244
  }>, "many">;
47339
48245
  }, "strip", z.ZodTypeAny, {
47340
48246
  result: {
@@ -47342,10 +48248,10 @@ export declare const ProtocolInfoResultWrappedSchema: z.ZodDiscriminatedUnion<"i
47342
48248
  description: string;
47343
48249
  id: number;
47344
48250
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48251
+ returnType?: "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" | undefined;
47345
48252
  parameters?: ("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")[] | undefined;
47346
48253
  return?: "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" | undefined;
47347
48254
  parameters_description?: string[] | undefined;
47348
- returnType?: "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" | undefined;
47349
48255
  }[];
47350
48256
  info: "guard instructions";
47351
48257
  }, {
@@ -47354,10 +48260,10 @@ export declare const ProtocolInfoResultWrappedSchema: z.ZodDiscriminatedUnion<"i
47354
48260
  description: string;
47355
48261
  id: number;
47356
48262
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48263
+ returnType?: "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" | undefined;
47357
48264
  parameters?: ("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")[] | undefined;
47358
48265
  return?: "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" | undefined;
47359
48266
  parameters_description?: string[] | undefined;
47360
- returnType?: "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" | undefined;
47361
48267
  }[];
47362
48268
  info: "guard instructions";
47363
48269
  }>, z.ZodObject<{
@@ -47533,19 +48439,19 @@ export declare const ProtocolInfoResultSchema: z.ZodObject<{
47533
48439
  description: string;
47534
48440
  id: number;
47535
48441
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48442
+ returnType?: "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" | undefined;
47536
48443
  parameters?: ("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")[] | undefined;
47537
48444
  return?: "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" | undefined;
47538
48445
  parameters_description?: string[] | undefined;
47539
- returnType?: "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" | undefined;
47540
48446
  }, {
47541
48447
  name: string;
47542
48448
  description: string;
47543
48449
  id: number;
47544
48450
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48451
+ returnType?: "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" | undefined;
47545
48452
  parameters?: ("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")[] | undefined;
47546
48453
  return?: "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" | undefined;
47547
48454
  parameters_description?: string[] | undefined;
47548
- returnType?: "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" | undefined;
47549
48455
  }>, "many">;
47550
48456
  }, "strip", z.ZodTypeAny, {
47551
48457
  result: {
@@ -47553,10 +48459,10 @@ export declare const ProtocolInfoResultSchema: z.ZodObject<{
47553
48459
  description: string;
47554
48460
  id: number;
47555
48461
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48462
+ returnType?: "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" | undefined;
47556
48463
  parameters?: ("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")[] | undefined;
47557
48464
  return?: "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" | undefined;
47558
48465
  parameters_description?: string[] | undefined;
47559
- returnType?: "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" | undefined;
47560
48466
  }[];
47561
48467
  info: "guard instructions";
47562
48468
  }, {
@@ -47565,10 +48471,10 @@ export declare const ProtocolInfoResultSchema: z.ZodObject<{
47565
48471
  description: string;
47566
48472
  id: number;
47567
48473
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48474
+ returnType?: "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" | undefined;
47568
48475
  parameters?: ("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")[] | undefined;
47569
48476
  return?: "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" | undefined;
47570
48477
  parameters_description?: string[] | undefined;
47571
- returnType?: "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" | undefined;
47572
48478
  }[];
47573
48479
  info: "guard instructions";
47574
48480
  }>, z.ZodObject<{
@@ -47686,10 +48592,10 @@ export declare const ProtocolInfoResultSchema: z.ZodObject<{
47686
48592
  description: string;
47687
48593
  id: number;
47688
48594
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48595
+ returnType?: "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" | undefined;
47689
48596
  parameters?: ("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")[] | undefined;
47690
48597
  return?: "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" | undefined;
47691
48598
  parameters_description?: string[] | undefined;
47692
- returnType?: "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" | undefined;
47693
48599
  }[];
47694
48600
  info: "guard instructions";
47695
48601
  } | {
@@ -47737,10 +48643,10 @@ export declare const ProtocolInfoResultSchema: z.ZodObject<{
47737
48643
  description: string;
47738
48644
  id: number;
47739
48645
  objectType?: import("@wowok/wowok").ObjectType | undefined;
48646
+ returnType?: "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" | undefined;
47740
48647
  parameters?: ("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")[] | undefined;
47741
48648
  return?: "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" | undefined;
47742
48649
  parameters_description?: string[] | undefined;
47743
- returnType?: "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" | undefined;
47744
48650
  }[];
47745
48651
  info: "guard instructions";
47746
48652
  } | {
@@ -49856,6 +50762,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49856
50762
  }>, "many">;
49857
50763
  }, "strip", z.ZodTypeAny, {
49858
50764
  description: string;
50765
+ threshold: string | number;
49859
50766
  allocators: {
49860
50767
  guard: string;
49861
50768
  sharing: {
@@ -49875,9 +50782,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49875
50782
  max?: string | number | null | undefined;
49876
50783
  fix?: string | number | undefined;
49877
50784
  }[];
49878
- threshold: string | number;
49879
50785
  }, {
49880
50786
  description: string;
50787
+ threshold: string | number;
49881
50788
  allocators: {
49882
50789
  guard: string;
49883
50790
  sharing: {
@@ -49897,7 +50804,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49897
50804
  max?: string | number | null | undefined;
49898
50805
  fix?: string | number | undefined;
49899
50806
  }[];
49900
- threshold: string | number;
49901
50807
  }>, z.ZodNull]>;
49902
50808
  rewards: z.ZodArray<z.ZodString, "many">;
49903
50809
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -50116,6 +51022,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50116
51022
  }>, "many">;
50117
51023
  }, "strip", z.ZodTypeAny, {
50118
51024
  description: string;
51025
+ threshold: string | number;
50119
51026
  allocators: {
50120
51027
  guard: string;
50121
51028
  sharing: {
@@ -50135,9 +51042,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50135
51042
  max?: string | number | null | undefined;
50136
51043
  fix?: string | number | undefined;
50137
51044
  }[];
50138
- threshold: string | number;
50139
51045
  }, {
50140
51046
  description: string;
51047
+ threshold: string | number;
50141
51048
  allocators: {
50142
51049
  guard: string;
50143
51050
  sharing: {
@@ -50157,7 +51064,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50157
51064
  max?: string | number | null | undefined;
50158
51065
  fix?: string | number | undefined;
50159
51066
  }[];
50160
- threshold: string | number;
50161
51067
  }>, z.ZodNull]>;
50162
51068
  rewards: z.ZodArray<z.ZodString, "many">;
50163
51069
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -50376,6 +51282,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50376
51282
  }>, "many">;
50377
51283
  }, "strip", z.ZodTypeAny, {
50378
51284
  description: string;
51285
+ threshold: string | number;
50379
51286
  allocators: {
50380
51287
  guard: string;
50381
51288
  sharing: {
@@ -50395,9 +51302,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50395
51302
  max?: string | number | null | undefined;
50396
51303
  fix?: string | number | undefined;
50397
51304
  }[];
50398
- threshold: string | number;
50399
51305
  }, {
50400
51306
  description: string;
51307
+ threshold: string | number;
50401
51308
  allocators: {
50402
51309
  guard: string;
50403
51310
  sharing: {
@@ -50417,7 +51324,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50417
51324
  max?: string | number | null | undefined;
50418
51325
  fix?: string | number | undefined;
50419
51326
  }[];
50420
- threshold: string | number;
50421
51327
  }>, z.ZodNull]>;
50422
51328
  rewards: z.ZodArray<z.ZodString, "many">;
50423
51329
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -50892,9 +51798,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50892
51798
  msg: string;
50893
51799
  accomplished: boolean;
50894
51800
  }[];
51801
+ threshold: string | number;
50895
51802
  next_node: string;
50896
51803
  weights: string | number;
50897
- threshold: string | number;
50898
51804
  }, {
50899
51805
  forwards: {
50900
51806
  time: string | number;
@@ -50908,9 +51814,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50908
51814
  msg: string;
50909
51815
  accomplished: boolean;
50910
51816
  }[];
51817
+ threshold: string | number;
50911
51818
  next_node: string;
50912
51819
  weights: string | number;
50913
- threshold: string | number;
50914
51820
  }>, "many">;
50915
51821
  history_count: z.ZodNumber;
50916
51822
  current_time: z.ZodNumber;
@@ -51090,9 +51996,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51090
51996
  msg: string;
51091
51997
  accomplished: boolean;
51092
51998
  }[];
51999
+ threshold: string | number;
51093
52000
  next_node: string;
51094
52001
  weights: string | number;
51095
- threshold: string | number;
51096
52002
  }, {
51097
52003
  forwards: {
51098
52004
  time: string | number;
@@ -51106,9 +52012,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51106
52012
  msg: string;
51107
52013
  accomplished: boolean;
51108
52014
  }[];
52015
+ threshold: string | number;
51109
52016
  next_node: string;
51110
52017
  weights: string | number;
51111
- threshold: string | number;
51112
52018
  }>, "many">;
51113
52019
  history_count: z.ZodNumber;
51114
52020
  current_time: z.ZodNumber;
@@ -51288,9 +52194,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51288
52194
  msg: string;
51289
52195
  accomplished: boolean;
51290
52196
  }[];
52197
+ threshold: string | number;
51291
52198
  next_node: string;
51292
52199
  weights: string | number;
51293
- threshold: string | number;
51294
52200
  }, {
51295
52201
  forwards: {
51296
52202
  time: string | number;
@@ -51304,9 +52210,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51304
52210
  msg: string;
51305
52211
  accomplished: boolean;
51306
52212
  }[];
52213
+ threshold: string | number;
51307
52214
  next_node: string;
51308
52215
  weights: string | number;
51309
- threshold: string | number;
51310
52216
  }>, "many">;
51311
52217
  history_count: z.ZodNumber;
51312
52218
  current_time: z.ZodNumber;
@@ -53101,7 +54007,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
53101
54007
  id_from_submission?: number | undefined;
53102
54008
  data_from_submission?: number | undefined;
53103
54009
  }[];
53104
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
54010
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
53105
54011
  quote_guard?: string | null | undefined;
53106
54012
  }, {
53107
54013
  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";
@@ -53112,7 +54018,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
53112
54018
  id_from_submission?: number | undefined;
53113
54019
  data_from_submission?: number | undefined;
53114
54020
  }[];
53115
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
54021
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
53116
54022
  quote_guard?: string | null | undefined;
53117
54023
  }>, "many">;
53118
54024
  data_count: z.ZodNumber;
@@ -53218,7 +54124,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
53218
54124
  id_from_submission?: number | undefined;
53219
54125
  data_from_submission?: number | undefined;
53220
54126
  }[];
53221
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
54127
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
53222
54128
  quote_guard?: string | null | undefined;
53223
54129
  }, {
53224
54130
  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";
@@ -53229,7 +54135,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
53229
54135
  id_from_submission?: number | undefined;
53230
54136
  data_from_submission?: number | undefined;
53231
54137
  }[];
53232
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
54138
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
53233
54139
  quote_guard?: string | null | undefined;
53234
54140
  }>, "many">;
53235
54141
  data_count: z.ZodNumber;
@@ -53335,7 +54241,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
53335
54241
  id_from_submission?: number | undefined;
53336
54242
  data_from_submission?: number | undefined;
53337
54243
  }[];
53338
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
54244
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
53339
54245
  quote_guard?: string | null | undefined;
53340
54246
  }, {
53341
54247
  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";
@@ -53346,7 +54252,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
53346
54252
  id_from_submission?: number | undefined;
53347
54253
  data_from_submission?: number | undefined;
53348
54254
  }[];
53349
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
54255
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
53350
54256
  quote_guard?: string | null | undefined;
53351
54257
  }>, "many">;
53352
54258
  data_count: z.ZodNumber;
@@ -57797,9 +58703,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
57797
58703
  msg: string;
57798
58704
  accomplished: boolean;
57799
58705
  }[];
58706
+ threshold: string | number;
57800
58707
  next_node: string;
57801
58708
  weights: string | number;
57802
- threshold: string | number;
57803
58709
  }, {
57804
58710
  forwards: {
57805
58711
  time: string | number;
@@ -57813,9 +58719,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
57813
58719
  msg: string;
57814
58720
  accomplished: boolean;
57815
58721
  }[];
58722
+ threshold: string | number;
57816
58723
  next_node: string;
57817
58724
  weights: string | number;
57818
- threshold: string | number;
57819
58725
  }>, "many">;
57820
58726
  history_count: z.ZodNumber;
57821
58727
  current_time: z.ZodNumber;
@@ -58209,6 +59115,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58209
59115
  }>, "many">;
58210
59116
  }, "strip", z.ZodTypeAny, {
58211
59117
  description: string;
59118
+ threshold: string | number;
58212
59119
  allocators: {
58213
59120
  guard: string;
58214
59121
  sharing: {
@@ -58228,9 +59135,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58228
59135
  max?: string | number | null | undefined;
58229
59136
  fix?: string | number | undefined;
58230
59137
  }[];
58231
- threshold: string | number;
58232
59138
  }, {
58233
59139
  description: string;
59140
+ threshold: string | number;
58234
59141
  allocators: {
58235
59142
  guard: string;
58236
59143
  sharing: {
@@ -58250,7 +59157,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58250
59157
  max?: string | number | null | undefined;
58251
59158
  fix?: string | number | undefined;
58252
59159
  }[];
58253
- threshold: string | number;
58254
59160
  }>, z.ZodNull]>;
58255
59161
  rewards: z.ZodArray<z.ZodString, "many">;
58256
59162
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -58651,7 +59557,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58651
59557
  id_from_submission?: number | undefined;
58652
59558
  data_from_submission?: number | undefined;
58653
59559
  }[];
58654
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
59560
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
58655
59561
  quote_guard?: string | null | undefined;
58656
59562
  }, {
58657
59563
  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";
@@ -58662,7 +59568,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58662
59568
  id_from_submission?: number | undefined;
58663
59569
  data_from_submission?: number | undefined;
58664
59570
  }[];
58665
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
59571
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
58666
59572
  quote_guard?: string | null | undefined;
58667
59573
  }>, "many">;
58668
59574
  data_count: z.ZodNumber;
@@ -60542,9 +61448,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60542
61448
  msg: string;
60543
61449
  accomplished: boolean;
60544
61450
  }[];
61451
+ threshold: string | number;
60545
61452
  next_node: string;
60546
61453
  weights: string | number;
60547
- threshold: string | number;
60548
61454
  }, {
60549
61455
  forwards: {
60550
61456
  time: string | number;
@@ -60558,9 +61464,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60558
61464
  msg: string;
60559
61465
  accomplished: boolean;
60560
61466
  }[];
61467
+ threshold: string | number;
60561
61468
  next_node: string;
60562
61469
  weights: string | number;
60563
- threshold: string | number;
60564
61470
  }>, "many">;
60565
61471
  history_count: z.ZodNumber;
60566
61472
  current_time: z.ZodNumber;
@@ -60954,6 +61860,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60954
61860
  }>, "many">;
60955
61861
  }, "strip", z.ZodTypeAny, {
60956
61862
  description: string;
61863
+ threshold: string | number;
60957
61864
  allocators: {
60958
61865
  guard: string;
60959
61866
  sharing: {
@@ -60973,9 +61880,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60973
61880
  max?: string | number | null | undefined;
60974
61881
  fix?: string | number | undefined;
60975
61882
  }[];
60976
- threshold: string | number;
60977
61883
  }, {
60978
61884
  description: string;
61885
+ threshold: string | number;
60979
61886
  allocators: {
60980
61887
  guard: string;
60981
61888
  sharing: {
@@ -60995,7 +61902,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60995
61902
  max?: string | number | null | undefined;
60996
61903
  fix?: string | number | undefined;
60997
61904
  }[];
60998
- threshold: string | number;
60999
61905
  }>, z.ZodNull]>;
61000
61906
  rewards: z.ZodArray<z.ZodString, "many">;
61001
61907
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -61396,7 +62302,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
61396
62302
  id_from_submission?: number | undefined;
61397
62303
  data_from_submission?: number | undefined;
61398
62304
  }[];
61399
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
62305
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
61400
62306
  quote_guard?: string | null | undefined;
61401
62307
  }, {
61402
62308
  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";
@@ -61407,7 +62313,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
61407
62313
  id_from_submission?: number | undefined;
61408
62314
  data_from_submission?: number | undefined;
61409
62315
  }[];
61410
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
62316
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
61411
62317
  quote_guard?: string | null | undefined;
61412
62318
  }>, "many">;
61413
62319
  data_count: z.ZodNumber;
@@ -63289,9 +64195,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63289
64195
  msg: string;
63290
64196
  accomplished: boolean;
63291
64197
  }[];
64198
+ threshold: string | number;
63292
64199
  next_node: string;
63293
64200
  weights: string | number;
63294
- threshold: string | number;
63295
64201
  }, {
63296
64202
  forwards: {
63297
64203
  time: string | number;
@@ -63305,9 +64211,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63305
64211
  msg: string;
63306
64212
  accomplished: boolean;
63307
64213
  }[];
64214
+ threshold: string | number;
63308
64215
  next_node: string;
63309
64216
  weights: string | number;
63310
- threshold: string | number;
63311
64217
  }>, "many">;
63312
64218
  history_count: z.ZodNumber;
63313
64219
  current_time: z.ZodNumber;
@@ -63701,6 +64607,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63701
64607
  }>, "many">;
63702
64608
  }, "strip", z.ZodTypeAny, {
63703
64609
  description: string;
64610
+ threshold: string | number;
63704
64611
  allocators: {
63705
64612
  guard: string;
63706
64613
  sharing: {
@@ -63720,9 +64627,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63720
64627
  max?: string | number | null | undefined;
63721
64628
  fix?: string | number | undefined;
63722
64629
  }[];
63723
- threshold: string | number;
63724
64630
  }, {
63725
64631
  description: string;
64632
+ threshold: string | number;
63726
64633
  allocators: {
63727
64634
  guard: string;
63728
64635
  sharing: {
@@ -63742,7 +64649,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63742
64649
  max?: string | number | null | undefined;
63743
64650
  fix?: string | number | undefined;
63744
64651
  }[];
63745
- threshold: string | number;
63746
64652
  }>, z.ZodNull]>;
63747
64653
  rewards: z.ZodArray<z.ZodString, "many">;
63748
64654
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -64143,7 +65049,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64143
65049
  id_from_submission?: number | undefined;
64144
65050
  data_from_submission?: number | undefined;
64145
65051
  }[];
64146
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
65052
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
64147
65053
  quote_guard?: string | null | undefined;
64148
65054
  }, {
64149
65055
  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";
@@ -64154,7 +65060,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64154
65060
  id_from_submission?: number | undefined;
64155
65061
  data_from_submission?: number | undefined;
64156
65062
  }[];
64157
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
65063
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
64158
65064
  quote_guard?: string | null | undefined;
64159
65065
  }>, "many">;
64160
65066
  data_count: z.ZodNumber;
@@ -66037,9 +66943,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66037
66943
  msg: string;
66038
66944
  accomplished: boolean;
66039
66945
  }[];
66946
+ threshold: string | number;
66040
66947
  next_node: string;
66041
66948
  weights: string | number;
66042
- threshold: string | number;
66043
66949
  }, {
66044
66950
  forwards: {
66045
66951
  time: string | number;
@@ -66053,9 +66959,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66053
66959
  msg: string;
66054
66960
  accomplished: boolean;
66055
66961
  }[];
66962
+ threshold: string | number;
66056
66963
  next_node: string;
66057
66964
  weights: string | number;
66058
- threshold: string | number;
66059
66965
  }>, "many">;
66060
66966
  history_count: z.ZodNumber;
66061
66967
  current_time: z.ZodNumber;
@@ -66449,6 +67355,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66449
67355
  }>, "many">;
66450
67356
  }, "strip", z.ZodTypeAny, {
66451
67357
  description: string;
67358
+ threshold: string | number;
66452
67359
  allocators: {
66453
67360
  guard: string;
66454
67361
  sharing: {
@@ -66468,9 +67375,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66468
67375
  max?: string | number | null | undefined;
66469
67376
  fix?: string | number | undefined;
66470
67377
  }[];
66471
- threshold: string | number;
66472
67378
  }, {
66473
67379
  description: string;
67380
+ threshold: string | number;
66474
67381
  allocators: {
66475
67382
  guard: string;
66476
67383
  sharing: {
@@ -66490,7 +67397,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66490
67397
  max?: string | number | null | undefined;
66491
67398
  fix?: string | number | undefined;
66492
67399
  }[];
66493
- threshold: string | number;
66494
67400
  }>, z.ZodNull]>;
66495
67401
  rewards: z.ZodArray<z.ZodString, "many">;
66496
67402
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -66891,7 +67797,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66891
67797
  id_from_submission?: number | undefined;
66892
67798
  data_from_submission?: number | undefined;
66893
67799
  }[];
66894
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
67800
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
66895
67801
  quote_guard?: string | null | undefined;
66896
67802
  }, {
66897
67803
  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";
@@ -66902,7 +67808,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66902
67808
  id_from_submission?: number | undefined;
66903
67809
  data_from_submission?: number | undefined;
66904
67810
  }[];
66905
- id_from: 0 | 1 | 2 | "none" | "Signer" | "signer" | "None" | "Clock" | "clock";
67811
+ id_from: 0 | 1 | 2 | "none" | "Signer" | "Clock" | "signer" | "None" | "clock";
66906
67812
  quote_guard?: string | null | undefined;
66907
67813
  }>, "many">;
66908
67814
  data_count: z.ZodNumber;
@@ -72280,9 +73186,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72280
73186
  msg: string;
72281
73187
  accomplished: boolean;
72282
73188
  }[];
73189
+ threshold: string | number;
72283
73190
  next_node: string;
72284
73191
  weights: string | number;
72285
- threshold: string | number;
72286
73192
  }, {
72287
73193
  forwards: {
72288
73194
  time: string | number;
@@ -72296,9 +73202,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72296
73202
  msg: string;
72297
73203
  accomplished: boolean;
72298
73204
  }[];
73205
+ threshold: string | number;
72299
73206
  next_node: string;
72300
73207
  weights: string | number;
72301
- threshold: string | number;
72302
73208
  }>, "many">;
72303
73209
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
72304
73210
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -72466,9 +73372,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72466
73372
  msg: string;
72467
73373
  accomplished: boolean;
72468
73374
  }[];
73375
+ threshold: string | number;
72469
73376
  next_node: string;
72470
73377
  weights: string | number;
72471
- threshold: string | number;
72472
73378
  }, {
72473
73379
  forwards: {
72474
73380
  time: string | number;
@@ -72482,9 +73388,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72482
73388
  msg: string;
72483
73389
  accomplished: boolean;
72484
73390
  }[];
73391
+ threshold: string | number;
72485
73392
  next_node: string;
72486
73393
  weights: string | number;
72487
- threshold: string | number;
72488
73394
  }>, "many">;
72489
73395
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
72490
73396
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -72652,9 +73558,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72652
73558
  msg: string;
72653
73559
  accomplished: boolean;
72654
73560
  }[];
73561
+ threshold: string | number;
72655
73562
  next_node: string;
72656
73563
  weights: string | number;
72657
- threshold: string | number;
72658
73564
  }, {
72659
73565
  forwards: {
72660
73566
  time: string | number;
@@ -72668,9 +73574,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72668
73574
  msg: string;
72669
73575
  accomplished: boolean;
72670
73576
  }[];
73577
+ threshold: string | number;
72671
73578
  next_node: string;
72672
73579
  weights: string | number;
72673
- threshold: string | number;
72674
73580
  }>, "many">;
72675
73581
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
72676
73582
  }, z.ZodTypeAny, "passthrough">>, z.ZodUndefined]>;
@@ -72841,9 +73747,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72841
73747
  msg: string;
72842
73748
  accomplished: boolean;
72843
73749
  }[];
73750
+ threshold: string | number;
72844
73751
  next_node: string;
72845
73752
  weights: string | number;
72846
- threshold: string | number;
72847
73753
  }, {
72848
73754
  forwards: {
72849
73755
  time: string | number;
@@ -72857,9 +73763,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72857
73763
  msg: string;
72858
73764
  accomplished: boolean;
72859
73765
  }[];
73766
+ threshold: string | number;
72860
73767
  next_node: string;
72861
73768
  weights: string | number;
72862
- threshold: string | number;
72863
73769
  }>, "many">;
72864
73770
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
72865
73771
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -73030,9 +73936,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73030
73936
  msg: string;
73031
73937
  accomplished: boolean;
73032
73938
  }[];
73939
+ threshold: string | number;
73033
73940
  next_node: string;
73034
73941
  weights: string | number;
73035
- threshold: string | number;
73036
73942
  }, {
73037
73943
  forwards: {
73038
73944
  time: string | number;
@@ -73046,9 +73952,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73046
73952
  msg: string;
73047
73953
  accomplished: boolean;
73048
73954
  }[];
73955
+ threshold: string | number;
73049
73956
  next_node: string;
73050
73957
  weights: string | number;
73051
- threshold: string | number;
73052
73958
  }>, "many">;
73053
73959
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
73054
73960
  }, z.ZodTypeAny, "passthrough"> | undefined;