@wowok/agent-mcp 2.4.1 → 2.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/dist/index.js +11 -1624
  3. package/dist/knowledge/guard-ledger.js +14 -0
  4. package/dist/knowledge/guard-lint.d.ts +1 -0
  5. package/dist/knowledge/guard-lint.js +83 -3
  6. package/dist/knowledge/guard-migration.d.ts +48 -0
  7. package/dist/knowledge/guard-migration.js +228 -0
  8. package/dist/knowledge/guard-risk.d.ts +2 -0
  9. package/dist/knowledge/guard-risk.js +827 -57
  10. package/dist/knowledge/guard-templates.d.ts +1 -0
  11. package/dist/knowledge/guard-templates.js +278 -2
  12. package/dist/project/graph.d.ts +1 -0
  13. package/dist/project/graph.js +27 -1
  14. package/dist/project/index.d.ts +1 -0
  15. package/dist/project/index.js +39 -2
  16. package/dist/project/namespace.d.ts +11 -1
  17. package/dist/project/namespace.js +27 -2
  18. package/dist/project/query.d.ts +2 -0
  19. package/dist/project/query.js +56 -15
  20. package/dist/rules.d.ts +12 -0
  21. package/dist/rules.js +9 -0
  22. package/dist/schema/call/allocation.d.ts +10 -10
  23. package/dist/schema/call/base.js +3 -3
  24. package/dist/schema/call/machine.d.ts +38 -38
  25. package/dist/schema/call/semantic.js +1 -1
  26. package/dist/schema/call/service.d.ts +7 -7
  27. package/dist/schema/operations.d.ts +48 -48
  28. package/dist/schema/query/index.d.ts +146 -146
  29. package/dist/schema/query/index.js +15 -9
  30. package/dist/schema/utils/guard-query-utils.d.ts +7 -0
  31. package/dist/schema/utils/guard-query-utils.js +14 -1
  32. package/dist/schemas/bridge_operation.output.json +1 -1
  33. package/dist/schemas/index.json +1 -1
  34. package/dist/schemas/messenger_operation.output.json +1 -1
  35. package/dist/schemas/onchain_events.output.json +1 -1
  36. package/dist/schemas/onchain_operations.output.json +2 -2
  37. package/dist/schemas/onchain_operations.schema.json +11 -20
  38. package/dist/schemas/onchain_operations_allocation.schema.json +7 -10
  39. package/dist/schemas/onchain_operations_machine.schema.json +2 -5
  40. package/dist/schemas/onchain_operations_service.schema.json +2 -5
  41. package/dist/schemas/onchain_table_data.output.json +6 -12
  42. package/dist/tools/handlers/bridge.d.ts +1 -0
  43. package/dist/tools/handlers/bridge.js +1 -0
  44. package/dist/tools/handlers/config.d.ts +2 -0
  45. package/dist/tools/handlers/config.js +71 -0
  46. package/dist/tools/handlers/file-export.d.ts +3 -0
  47. package/dist/tools/handlers/file-export.js +90 -0
  48. package/dist/tools/handlers/local.d.ts +30 -0
  49. package/dist/tools/handlers/local.js +27 -0
  50. package/dist/tools/handlers/messenger.d.ts +16 -0
  51. package/dist/tools/handlers/messenger.js +187 -0
  52. package/dist/tools/handlers/onchain.d.ts +2 -0
  53. package/dist/tools/handlers/onchain.js +246 -0
  54. package/dist/tools/handlers/project.d.ts +2 -0
  55. package/dist/tools/handlers/project.js +53 -0
  56. package/dist/tools/handlers/query.d.ts +5 -0
  57. package/dist/tools/handlers/query.js +256 -0
  58. package/dist/tools/handlers/schema-query.d.ts +2 -0
  59. package/dist/tools/handlers/schema-query.js +92 -0
  60. package/dist/tools/handlers/trust.d.ts +2 -0
  61. package/dist/tools/handlers/trust.js +194 -0
  62. package/dist/tools/handlers/wip.d.ts +2 -0
  63. package/dist/tools/handlers/wip.js +44 -0
  64. package/dist/tools/index.d.ts +13 -0
  65. package/dist/tools/index.js +479 -0
  66. package/dist/tools/rules-hook.d.ts +2 -0
  67. package/dist/tools/rules-hook.js +22 -0
  68. package/dist/tools/shared.d.ts +29 -0
  69. package/dist/tools/shared.js +130 -0
  70. package/dist/tools/types.d.ts +35 -0
  71. package/dist/tools/types.js +1 -0
  72. package/dist/tools/wrap.d.ts +6 -0
  73. package/dist/tools/wrap.js +55 -0
  74. package/package.json +19 -5
@@ -2672,7 +2672,7 @@ export declare const ProgressSessionSchema: z.ZodObject<{
2672
2672
  accomplished: boolean;
2673
2673
  }>, "many">;
2674
2674
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2675
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2675
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
2676
2676
  }, "strip", z.ZodTypeAny, {
2677
2677
  forwards: {
2678
2678
  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;
2706
2705
  next_node: string;
2707
2706
  weights: string | number;
2707
+ threshold?: string | number | undefined;
2708
2708
  }>;
2709
2709
  export declare const ObjectProgressSchema: z.ZodObject<{
2710
2710
  object: z.ZodString;
@@ -2868,7 +2868,7 @@ export declare const ObjectProgressSchema: z.ZodObject<{
2868
2868
  accomplished: boolean;
2869
2869
  }>, "many">;
2870
2870
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2871
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2871
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
2872
2872
  }, "strip", z.ZodTypeAny, {
2873
2873
  forwards: {
2874
2874
  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;
2902
2901
  next_node: string;
2903
2902
  weights: string | number;
2903
+ threshold?: string | number | undefined;
2904
2904
  }>, "many">;
2905
2905
  history_count: z.ZodNumber;
2906
2906
  current_time: z.ZodNumber;
@@ -3066,7 +3066,7 @@ export declare const ObjectProgressSchema: z.ZodObject<{
3066
3066
  accomplished: boolean;
3067
3067
  }>, "many">;
3068
3068
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
3069
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
3069
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
3070
3070
  }, "strip", z.ZodTypeAny, {
3071
3071
  forwards: {
3072
3072
  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;
3100
3099
  next_node: string;
3101
3100
  weights: string | number;
3101
+ threshold?: string | number | undefined;
3102
3102
  }>, "many">;
3103
3103
  history_count: z.ZodNumber;
3104
3104
  current_time: z.ZodNumber;
@@ -3264,7 +3264,7 @@ export declare const ObjectProgressSchema: z.ZodObject<{
3264
3264
  accomplished: boolean;
3265
3265
  }>, "many">;
3266
3266
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
3267
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
3267
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
3268
3268
  }, "strip", z.ZodTypeAny, {
3269
3269
  forwards: {
3270
3270
  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;
3298
3297
  next_node: string;
3299
3298
  weights: string | number;
3299
+ threshold?: string | number | undefined;
3300
3300
  }>, "many">;
3301
3301
  history_count: z.ZodNumber;
3302
3302
  current_time: z.ZodNumber;
@@ -4121,7 +4121,7 @@ export declare const AllocatorSchema: z.ZodObject<{
4121
4121
  }>;
4122
4122
  export declare const AllocatorsSchema: z.ZodObject<{
4123
4123
  description: z.ZodEffects<z.ZodString, string, string>;
4124
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4124
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
4125
4125
  allocators: z.ZodArray<z.ZodObject<{
4126
4126
  guard: z.ZodEffects<z.ZodString, string, string>;
4127
4127
  sharing: z.ZodArray<z.ZodObject<{
@@ -4251,7 +4251,6 @@ export declare const AllocatorsSchema: z.ZodObject<{
4251
4251
  }[];
4252
4252
  }, {
4253
4253
  description: string;
4254
- threshold: string | number;
4255
4254
  allocators: {
4256
4255
  guard: string;
4257
4256
  sharing: {
@@ -4271,6 +4270,7 @@ export declare const AllocatorsSchema: z.ZodObject<{
4271
4270
  max?: string | number | null | undefined;
4272
4271
  fix?: string | number | undefined;
4273
4272
  }[];
4273
+ threshold?: string | number | undefined;
4274
4274
  }>;
4275
4275
  export declare const ObjectServiceSchema: z.ZodObject<{
4276
4276
  object: z.ZodString;
@@ -4378,7 +4378,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4378
4378
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
4379
4379
  order_allocators: z.ZodUnion<[z.ZodObject<{
4380
4380
  description: z.ZodEffects<z.ZodString, string, string>;
4381
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4381
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
4382
4382
  allocators: z.ZodArray<z.ZodObject<{
4383
4383
  guard: z.ZodEffects<z.ZodString, string, string>;
4384
4384
  sharing: z.ZodArray<z.ZodObject<{
@@ -4508,7 +4508,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4508
4508
  }[];
4509
4509
  }, {
4510
4510
  description: string;
4511
- threshold: string | number;
4512
4511
  allocators: {
4513
4512
  guard: string;
4514
4513
  sharing: {
@@ -4528,6 +4527,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4528
4527
  max?: string | number | null | undefined;
4529
4528
  fix?: string | number | undefined;
4530
4529
  }[];
4530
+ threshold?: string | number | undefined;
4531
4531
  }>, z.ZodNull]>;
4532
4532
  rewards: z.ZodArray<z.ZodString, "many">;
4533
4533
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -4638,7 +4638,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4638
4638
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
4639
4639
  order_allocators: z.ZodUnion<[z.ZodObject<{
4640
4640
  description: z.ZodEffects<z.ZodString, string, string>;
4641
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4641
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
4642
4642
  allocators: z.ZodArray<z.ZodObject<{
4643
4643
  guard: z.ZodEffects<z.ZodString, string, string>;
4644
4644
  sharing: z.ZodArray<z.ZodObject<{
@@ -4768,7 +4768,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4768
4768
  }[];
4769
4769
  }, {
4770
4770
  description: string;
4771
- threshold: string | number;
4772
4771
  allocators: {
4773
4772
  guard: string;
4774
4773
  sharing: {
@@ -4788,6 +4787,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4788
4787
  max?: string | number | null | undefined;
4789
4788
  fix?: string | number | undefined;
4790
4789
  }[];
4790
+ threshold?: string | number | undefined;
4791
4791
  }>, z.ZodNull]>;
4792
4792
  rewards: z.ZodArray<z.ZodString, "many">;
4793
4793
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -4898,7 +4898,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4898
4898
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
4899
4899
  order_allocators: z.ZodUnion<[z.ZodObject<{
4900
4900
  description: z.ZodEffects<z.ZodString, string, string>;
4901
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4901
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
4902
4902
  allocators: z.ZodArray<z.ZodObject<{
4903
4903
  guard: z.ZodEffects<z.ZodString, string, string>;
4904
4904
  sharing: z.ZodArray<z.ZodObject<{
@@ -5028,7 +5028,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5028
5028
  }[];
5029
5029
  }, {
5030
5030
  description: string;
5031
- threshold: string | number;
5032
5031
  allocators: {
5033
5032
  guard: string;
5034
5033
  sharing: {
@@ -5048,6 +5047,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5048
5047
  max?: string | number | null | undefined;
5049
5048
  fix?: string | number | undefined;
5050
5049
  }[];
5050
+ threshold?: string | number | undefined;
5051
5051
  }>, z.ZodNull]>;
5052
5052
  rewards: z.ZodArray<z.ZodString, "many">;
5053
5053
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -8478,7 +8478,7 @@ export declare const ObjectPermissionSchema: z.ZodObject<{
8478
8478
  }>, "many">;
8479
8479
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
8480
8480
  }, z.ZodTypeAny, "passthrough">>;
8481
- export declare const WitnessTypeSchema: z.ZodEffects<z.ZodNumber, import("@wowok/wowok").WitnessType, number>;
8481
+ export declare const WitnessTypeSchema: z.ZodUnion<[z.ZodEffects<z.ZodNumber, import("@wowok/wowok").WitnessType, number>, z.ZodEffects<z.ZodString, string, string>]>;
8482
8482
  export declare const GuardQueryIdSchema: z.ZodEffects<z.ZodNumber, number, number>;
8483
8483
  export declare const GuardNodeSchema: z.ZodType;
8484
8484
  export declare const ObjectGuardSchema: z.ZodObject<{
@@ -11380,7 +11380,7 @@ export declare const MachineForwardSchema: z.ZodObject<{
11380
11380
  }>;
11381
11381
  export declare const MachineNodePairSchema: z.ZodObject<{
11382
11382
  prev_node: z.ZodString;
11383
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11383
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
11384
11384
  forwards: z.ZodArray<z.ZodObject<{
11385
11385
  name: z.ZodString;
11386
11386
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -11439,14 +11439,14 @@ export declare const MachineNodePairSchema: z.ZodObject<{
11439
11439
  namedOperator?: string | null | undefined;
11440
11440
  permissionIndex?: string | number | null | undefined;
11441
11441
  }[];
11442
- threshold: string | number;
11443
11442
  prev_node: string;
11443
+ threshold?: string | number | undefined;
11444
11444
  }>;
11445
11445
  export declare const MachineNodeSchema: z.ZodObject<{
11446
11446
  name: z.ZodString;
11447
11447
  pairs: z.ZodArray<z.ZodObject<{
11448
11448
  prev_node: z.ZodString;
11449
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11449
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
11450
11450
  forwards: z.ZodArray<z.ZodObject<{
11451
11451
  name: z.ZodString;
11452
11452
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -11505,8 +11505,8 @@ export declare const MachineNodeSchema: z.ZodObject<{
11505
11505
  namedOperator?: string | null | undefined;
11506
11506
  permissionIndex?: string | number | null | undefined;
11507
11507
  }[];
11508
- threshold: string | number;
11509
11508
  prev_node: string;
11509
+ threshold?: string | number | undefined;
11510
11510
  }>, "many">;
11511
11511
  }, "strict", z.ZodTypeAny, {
11512
11512
  name: string;
@@ -11537,8 +11537,8 @@ export declare const MachineNodeSchema: z.ZodObject<{
11537
11537
  namedOperator?: string | null | undefined;
11538
11538
  permissionIndex?: string | number | null | undefined;
11539
11539
  }[];
11540
- threshold: string | number;
11541
11540
  prev_node: string;
11541
+ threshold?: string | number | undefined;
11542
11542
  }[];
11543
11543
  }>;
11544
11544
  export declare const TableItem_MachineNodeSchema: z.ZodObject<{
@@ -11614,7 +11614,7 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
11614
11614
  name: z.ZodString;
11615
11615
  value: z.ZodArray<z.ZodObject<{
11616
11616
  prev_node: z.ZodString;
11617
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11617
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
11618
11618
  forwards: z.ZodArray<z.ZodObject<{
11619
11619
  name: z.ZodString;
11620
11620
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -11673,8 +11673,8 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
11673
11673
  namedOperator?: string | null | undefined;
11674
11674
  permissionIndex?: string | number | null | undefined;
11675
11675
  }[];
11676
- threshold: string | number;
11677
11676
  prev_node: string;
11677
+ threshold?: string | number | undefined;
11678
11678
  }>, "many">;
11679
11679
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
11680
11680
  object: z.ZodString;
@@ -11749,7 +11749,7 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
11749
11749
  name: z.ZodString;
11750
11750
  value: z.ZodArray<z.ZodObject<{
11751
11751
  prev_node: z.ZodString;
11752
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11752
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
11753
11753
  forwards: z.ZodArray<z.ZodObject<{
11754
11754
  name: z.ZodString;
11755
11755
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -11808,8 +11808,8 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
11808
11808
  namedOperator?: string | null | undefined;
11809
11809
  permissionIndex?: string | number | null | undefined;
11810
11810
  }[];
11811
- threshold: string | number;
11812
11811
  prev_node: string;
11812
+ threshold?: string | number | undefined;
11813
11813
  }>, "many">;
11814
11814
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
11815
11815
  object: z.ZodString;
@@ -11884,7 +11884,7 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
11884
11884
  name: z.ZodString;
11885
11885
  value: z.ZodArray<z.ZodObject<{
11886
11886
  prev_node: z.ZodString;
11887
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11887
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
11888
11888
  forwards: z.ZodArray<z.ZodObject<{
11889
11889
  name: z.ZodString;
11890
11890
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -11943,8 +11943,8 @@ export declare const TableItem_MachineNodeSchema: z.ZodObject<{
11943
11943
  namedOperator?: string | null | undefined;
11944
11944
  permissionIndex?: string | number | null | undefined;
11945
11945
  }[];
11946
- threshold: string | number;
11947
11946
  prev_node: string;
11947
+ threshold?: string | number | undefined;
11948
11948
  }>, "many">;
11949
11949
  }, z.ZodTypeAny, "passthrough">>;
11950
11950
  export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
@@ -12098,7 +12098,7 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12098
12098
  accomplished: boolean;
12099
12099
  }>, "many">;
12100
12100
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
12101
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
12101
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
12102
12102
  }, "strip", z.ZodTypeAny, {
12103
12103
  forwards: {
12104
12104
  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;
12132
12131
  next_node: string;
12133
12132
  weights: string | number;
12133
+ threshold?: string | number | undefined;
12134
12134
  }>, "many">;
12135
12135
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
12136
12136
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -12284,7 +12284,7 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12284
12284
  accomplished: boolean;
12285
12285
  }>, "many">;
12286
12286
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
12287
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
12287
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
12288
12288
  }, "strip", z.ZodTypeAny, {
12289
12289
  forwards: {
12290
12290
  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;
12318
12317
  next_node: string;
12319
12318
  weights: string | number;
12319
+ threshold?: string | number | undefined;
12320
12320
  }>, "many">;
12321
12321
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
12322
12322
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -12470,7 +12470,7 @@ export declare const TableItem_ProgressHistorySchema: z.ZodObject<{
12470
12470
  accomplished: boolean;
12471
12471
  }>, "many">;
12472
12472
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
12473
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
12473
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
12474
12474
  }, "strip", z.ZodTypeAny, {
12475
12475
  forwards: {
12476
12476
  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;
12504
12503
  next_node: string;
12505
12504
  weights: string | number;
12505
+ threshold?: string | number | undefined;
12506
12506
  }>, "many">;
12507
12507
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
12508
12508
  }, z.ZodTypeAny, "passthrough">>;
@@ -13653,7 +13653,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13653
13653
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
13654
13654
  order_allocators: z.ZodUnion<[z.ZodObject<{
13655
13655
  description: z.ZodEffects<z.ZodString, string, string>;
13656
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13656
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
13657
13657
  allocators: z.ZodArray<z.ZodObject<{
13658
13658
  guard: z.ZodEffects<z.ZodString, string, string>;
13659
13659
  sharing: z.ZodArray<z.ZodObject<{
@@ -13783,7 +13783,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13783
13783
  }[];
13784
13784
  }, {
13785
13785
  description: string;
13786
- threshold: string | number;
13787
13786
  allocators: {
13788
13787
  guard: string;
13789
13788
  sharing: {
@@ -13803,6 +13802,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13803
13802
  max?: string | number | null | undefined;
13804
13803
  fix?: string | number | undefined;
13805
13804
  }[];
13805
+ threshold?: string | number | undefined;
13806
13806
  }>, z.ZodNull]>;
13807
13807
  rewards: z.ZodArray<z.ZodString, "many">;
13808
13808
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -13913,7 +13913,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13913
13913
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
13914
13914
  order_allocators: z.ZodUnion<[z.ZodObject<{
13915
13915
  description: z.ZodEffects<z.ZodString, string, string>;
13916
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13916
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
13917
13917
  allocators: z.ZodArray<z.ZodObject<{
13918
13918
  guard: z.ZodEffects<z.ZodString, string, string>;
13919
13919
  sharing: z.ZodArray<z.ZodObject<{
@@ -14043,7 +14043,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14043
14043
  }[];
14044
14044
  }, {
14045
14045
  description: string;
14046
- threshold: string | number;
14047
14046
  allocators: {
14048
14047
  guard: string;
14049
14048
  sharing: {
@@ -14063,6 +14062,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14063
14062
  max?: string | number | null | undefined;
14064
14063
  fix?: string | number | undefined;
14065
14064
  }[];
14065
+ threshold?: string | number | undefined;
14066
14066
  }>, z.ZodNull]>;
14067
14067
  rewards: z.ZodArray<z.ZodString, "many">;
14068
14068
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -14173,7 +14173,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14173
14173
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
14174
14174
  order_allocators: z.ZodUnion<[z.ZodObject<{
14175
14175
  description: z.ZodEffects<z.ZodString, string, string>;
14176
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
14176
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
14177
14177
  allocators: z.ZodArray<z.ZodObject<{
14178
14178
  guard: z.ZodEffects<z.ZodString, string, string>;
14179
14179
  sharing: z.ZodArray<z.ZodObject<{
@@ -14303,7 +14303,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14303
14303
  }[];
14304
14304
  }, {
14305
14305
  description: string;
14306
- threshold: string | number;
14307
14306
  allocators: {
14308
14307
  guard: string;
14309
14308
  sharing: {
@@ -14323,6 +14322,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14323
14322
  max?: string | number | null | undefined;
14324
14323
  fix?: string | number | undefined;
14325
14324
  }[];
14325
+ threshold?: string | number | undefined;
14326
14326
  }>, z.ZodNull]>;
14327
14327
  rewards: z.ZodArray<z.ZodString, "many">;
14328
14328
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -14783,7 +14783,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14783
14783
  accomplished: boolean;
14784
14784
  }>, "many">;
14785
14785
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
14786
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
14786
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
14787
14787
  }, "strip", z.ZodTypeAny, {
14788
14788
  forwards: {
14789
14789
  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;
14817
14816
  next_node: string;
14818
14817
  weights: string | number;
14818
+ threshold?: string | number | undefined;
14819
14819
  }>, "many">;
14820
14820
  history_count: z.ZodNumber;
14821
14821
  current_time: z.ZodNumber;
@@ -14981,7 +14981,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14981
14981
  accomplished: boolean;
14982
14982
  }>, "many">;
14983
14983
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
14984
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
14984
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
14985
14985
  }, "strip", z.ZodTypeAny, {
14986
14986
  forwards: {
14987
14987
  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;
15015
15014
  next_node: string;
15016
15015
  weights: string | number;
15016
+ threshold?: string | number | undefined;
15017
15017
  }>, "many">;
15018
15018
  history_count: z.ZodNumber;
15019
15019
  current_time: z.ZodNumber;
@@ -15179,7 +15179,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15179
15179
  accomplished: boolean;
15180
15180
  }>, "many">;
15181
15181
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
15182
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
15182
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
15183
15183
  }, "strip", z.ZodTypeAny, {
15184
15184
  forwards: {
15185
15185
  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;
15213
15212
  next_node: string;
15214
15213
  weights: string | number;
15214
+ threshold?: string | number | undefined;
15215
15215
  }>, "many">;
15216
15216
  history_count: z.ZodNumber;
15217
15217
  current_time: z.ZodNumber;
@@ -21884,7 +21884,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21884
21884
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
21885
21885
  order_allocators: z.ZodUnion<[z.ZodObject<{
21886
21886
  description: z.ZodEffects<z.ZodString, string, string>;
21887
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
21887
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
21888
21888
  allocators: z.ZodArray<z.ZodObject<{
21889
21889
  guard: z.ZodEffects<z.ZodString, string, string>;
21890
21890
  sharing: z.ZodArray<z.ZodObject<{
@@ -22014,7 +22014,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22014
22014
  }[];
22015
22015
  }, {
22016
22016
  description: string;
22017
- threshold: string | number;
22018
22017
  allocators: {
22019
22018
  guard: string;
22020
22019
  sharing: {
@@ -22034,6 +22033,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22034
22033
  max?: string | number | null | undefined;
22035
22034
  fix?: string | number | undefined;
22036
22035
  }[];
22036
+ threshold?: string | number | undefined;
22037
22037
  }>, z.ZodNull]>;
22038
22038
  rewards: z.ZodArray<z.ZodString, "many">;
22039
22039
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -22144,7 +22144,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22144
22144
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
22145
22145
  order_allocators: z.ZodUnion<[z.ZodObject<{
22146
22146
  description: z.ZodEffects<z.ZodString, string, string>;
22147
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
22147
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
22148
22148
  allocators: z.ZodArray<z.ZodObject<{
22149
22149
  guard: z.ZodEffects<z.ZodString, string, string>;
22150
22150
  sharing: z.ZodArray<z.ZodObject<{
@@ -22274,7 +22274,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22274
22274
  }[];
22275
22275
  }, {
22276
22276
  description: string;
22277
- threshold: string | number;
22278
22277
  allocators: {
22279
22278
  guard: string;
22280
22279
  sharing: {
@@ -22294,6 +22293,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22294
22293
  max?: string | number | null | undefined;
22295
22294
  fix?: string | number | undefined;
22296
22295
  }[];
22296
+ threshold?: string | number | undefined;
22297
22297
  }>, z.ZodNull]>;
22298
22298
  rewards: z.ZodArray<z.ZodString, "many">;
22299
22299
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -22404,7 +22404,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22404
22404
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
22405
22405
  order_allocators: z.ZodUnion<[z.ZodObject<{
22406
22406
  description: z.ZodEffects<z.ZodString, string, string>;
22407
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
22407
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
22408
22408
  allocators: z.ZodArray<z.ZodObject<{
22409
22409
  guard: z.ZodEffects<z.ZodString, string, string>;
22410
22410
  sharing: z.ZodArray<z.ZodObject<{
@@ -22534,7 +22534,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22534
22534
  }[];
22535
22535
  }, {
22536
22536
  description: string;
22537
- threshold: string | number;
22538
22537
  allocators: {
22539
22538
  guard: string;
22540
22539
  sharing: {
@@ -22554,6 +22553,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22554
22553
  max?: string | number | null | undefined;
22555
22554
  fix?: string | number | undefined;
22556
22555
  }[];
22556
+ threshold?: string | number | undefined;
22557
22557
  }>, z.ZodNull]>;
22558
22558
  rewards: z.ZodArray<z.ZodString, "many">;
22559
22559
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -23014,7 +23014,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23014
23014
  accomplished: boolean;
23015
23015
  }>, "many">;
23016
23016
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
23017
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
23017
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
23018
23018
  }, "strip", z.ZodTypeAny, {
23019
23019
  forwards: {
23020
23020
  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;
23048
23047
  next_node: string;
23049
23048
  weights: string | number;
23049
+ threshold?: string | number | undefined;
23050
23050
  }>, "many">;
23051
23051
  history_count: z.ZodNumber;
23052
23052
  current_time: z.ZodNumber;
@@ -23212,7 +23212,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23212
23212
  accomplished: boolean;
23213
23213
  }>, "many">;
23214
23214
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
23215
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
23215
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
23216
23216
  }, "strip", z.ZodTypeAny, {
23217
23217
  forwards: {
23218
23218
  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;
23246
23245
  next_node: string;
23247
23246
  weights: string | number;
23247
+ threshold?: string | number | undefined;
23248
23248
  }>, "many">;
23249
23249
  history_count: z.ZodNumber;
23250
23250
  current_time: z.ZodNumber;
@@ -23410,7 +23410,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
23410
23410
  accomplished: boolean;
23411
23411
  }>, "many">;
23412
23412
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
23413
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
23413
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
23414
23414
  }, "strip", z.ZodTypeAny, {
23415
23415
  forwards: {
23416
23416
  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;
23444
23443
  next_node: string;
23445
23444
  weights: string | number;
23445
+ threshold?: string | number | undefined;
23446
23446
  }>, "many">;
23447
23447
  history_count: z.ZodNumber;
23448
23448
  current_time: z.ZodNumber;
@@ -29919,7 +29919,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
29919
29919
  accomplished: boolean;
29920
29920
  }>, "many">;
29921
29921
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
29922
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
29922
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
29923
29923
  }, "strip", z.ZodTypeAny, {
29924
29924
  forwards: {
29925
29925
  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;
29953
29952
  next_node: string;
29954
29953
  weights: string | number;
29954
+ threshold?: string | number | undefined;
29955
29955
  }>, "many">;
29956
29956
  history_count: z.ZodNumber;
29957
29957
  current_time: z.ZodNumber;
@@ -30237,7 +30237,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30237
30237
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
30238
30238
  order_allocators: z.ZodUnion<[z.ZodObject<{
30239
30239
  description: z.ZodEffects<z.ZodString, string, string>;
30240
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
30240
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
30241
30241
  allocators: z.ZodArray<z.ZodObject<{
30242
30242
  guard: z.ZodEffects<z.ZodString, string, string>;
30243
30243
  sharing: z.ZodArray<z.ZodObject<{
@@ -30367,7 +30367,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30367
30367
  }[];
30368
30368
  }, {
30369
30369
  description: string;
30370
- threshold: string | number;
30371
30370
  allocators: {
30372
30371
  guard: string;
30373
30372
  sharing: {
@@ -30387,6 +30386,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30387
30386
  max?: string | number | null | undefined;
30388
30387
  fix?: string | number | undefined;
30389
30388
  }[];
30389
+ threshold?: string | number | undefined;
30390
30390
  }>, z.ZodNull]>;
30391
30391
  rewards: z.ZodArray<z.ZodString, "many">;
30392
30392
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -32664,7 +32664,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
32664
32664
  accomplished: boolean;
32665
32665
  }>, "many">;
32666
32666
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
32667
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
32667
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
32668
32668
  }, "strip", z.ZodTypeAny, {
32669
32669
  forwards: {
32670
32670
  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;
32698
32697
  next_node: string;
32699
32698
  weights: string | number;
32699
+ threshold?: string | number | undefined;
32700
32700
  }>, "many">;
32701
32701
  history_count: z.ZodNumber;
32702
32702
  current_time: z.ZodNumber;
@@ -32982,7 +32982,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
32982
32982
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
32983
32983
  order_allocators: z.ZodUnion<[z.ZodObject<{
32984
32984
  description: z.ZodEffects<z.ZodString, string, string>;
32985
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
32985
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
32986
32986
  allocators: z.ZodArray<z.ZodObject<{
32987
32987
  guard: z.ZodEffects<z.ZodString, string, string>;
32988
32988
  sharing: z.ZodArray<z.ZodObject<{
@@ -33112,7 +33112,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33112
33112
  }[];
33113
33113
  }, {
33114
33114
  description: string;
33115
- threshold: string | number;
33116
33115
  allocators: {
33117
33116
  guard: string;
33118
33117
  sharing: {
@@ -33132,6 +33131,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33132
33131
  max?: string | number | null | undefined;
33133
33132
  fix?: string | number | undefined;
33134
33133
  }[];
33134
+ threshold?: string | number | undefined;
33135
33135
  }>, z.ZodNull]>;
33136
33136
  rewards: z.ZodArray<z.ZodString, "many">;
33137
33137
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -39634,7 +39634,7 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
39634
39634
  name: z.ZodString;
39635
39635
  value: z.ZodArray<z.ZodObject<{
39636
39636
  prev_node: z.ZodString;
39637
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
39637
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
39638
39638
  forwards: z.ZodArray<z.ZodObject<{
39639
39639
  name: z.ZodString;
39640
39640
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -39693,8 +39693,8 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
39693
39693
  namedOperator?: string | null | undefined;
39694
39694
  permissionIndex?: string | number | null | undefined;
39695
39695
  }[];
39696
- threshold: string | number;
39697
39696
  prev_node: string;
39697
+ threshold?: string | number | undefined;
39698
39698
  }>, "many">;
39699
39699
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
39700
39700
  object: z.ZodString;
@@ -39769,7 +39769,7 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
39769
39769
  name: z.ZodString;
39770
39770
  value: z.ZodArray<z.ZodObject<{
39771
39771
  prev_node: z.ZodString;
39772
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
39772
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
39773
39773
  forwards: z.ZodArray<z.ZodObject<{
39774
39774
  name: z.ZodString;
39775
39775
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -39828,8 +39828,8 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
39828
39828
  namedOperator?: string | null | undefined;
39829
39829
  permissionIndex?: string | number | null | undefined;
39830
39830
  }[];
39831
- threshold: string | number;
39832
39831
  prev_node: string;
39832
+ threshold?: string | number | undefined;
39833
39833
  }>, "many">;
39834
39834
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
39835
39835
  object: z.ZodString;
@@ -39904,7 +39904,7 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
39904
39904
  name: z.ZodString;
39905
39905
  value: z.ZodArray<z.ZodObject<{
39906
39906
  prev_node: z.ZodString;
39907
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
39907
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
39908
39908
  forwards: z.ZodArray<z.ZodObject<{
39909
39909
  name: z.ZodString;
39910
39910
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -39963,8 +39963,8 @@ export declare const TableItem_MachineNodeOrUndefinedSchema: z.ZodUnion<[z.ZodOb
39963
39963
  namedOperator?: string | null | undefined;
39964
39964
  permissionIndex?: string | number | null | undefined;
39965
39965
  }[];
39966
- threshold: string | number;
39967
39966
  prev_node: string;
39967
+ threshold?: string | number | undefined;
39968
39968
  }>, "many">;
39969
39969
  }, z.ZodTypeAny, "passthrough">>, z.ZodNull]>;
39970
39970
  export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.ZodObject<{
@@ -40118,7 +40118,7 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
40118
40118
  accomplished: boolean;
40119
40119
  }>, "many">;
40120
40120
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
40121
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
40121
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
40122
40122
  }, "strip", z.ZodTypeAny, {
40123
40123
  forwards: {
40124
40124
  time: string | number;
@@ -40148,9 +40148,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
40148
40148
  msg: string;
40149
40149
  accomplished: boolean;
40150
40150
  }[];
40151
- threshold: string | number;
40152
40151
  next_node: string;
40153
40152
  weights: string | number;
40153
+ threshold?: string | number | undefined;
40154
40154
  }>, "many">;
40155
40155
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
40156
40156
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -40304,7 +40304,7 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
40304
40304
  accomplished: boolean;
40305
40305
  }>, "many">;
40306
40306
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
40307
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
40307
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
40308
40308
  }, "strip", z.ZodTypeAny, {
40309
40309
  forwards: {
40310
40310
  time: string | number;
@@ -40334,9 +40334,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
40334
40334
  msg: string;
40335
40335
  accomplished: boolean;
40336
40336
  }[];
40337
- threshold: string | number;
40338
40337
  next_node: string;
40339
40338
  weights: string | number;
40339
+ threshold?: string | number | undefined;
40340
40340
  }>, "many">;
40341
40341
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
40342
40342
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -40490,7 +40490,7 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
40490
40490
  accomplished: boolean;
40491
40491
  }>, "many">;
40492
40492
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
40493
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
40493
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
40494
40494
  }, "strip", z.ZodTypeAny, {
40495
40495
  forwards: {
40496
40496
  time: string | number;
@@ -40520,9 +40520,9 @@ export declare const TableItem_ProgressHistoryOrUndefinedSchema: z.ZodUnion<[z.Z
40520
40520
  msg: string;
40521
40521
  accomplished: boolean;
40522
40522
  }[];
40523
- threshold: string | number;
40524
40523
  next_node: string;
40525
40524
  weights: string | number;
40525
+ threshold?: string | number | undefined;
40526
40526
  }>, "many">;
40527
40527
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
40528
40528
  }, z.ZodTypeAny, "passthrough">>, z.ZodNull]>;
@@ -44690,7 +44690,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44690
44690
  name: z.ZodString;
44691
44691
  value: z.ZodArray<z.ZodObject<{
44692
44692
  prev_node: z.ZodString;
44693
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
44693
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
44694
44694
  forwards: z.ZodArray<z.ZodObject<{
44695
44695
  name: z.ZodString;
44696
44696
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -44749,8 +44749,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44749
44749
  namedOperator?: string | null | undefined;
44750
44750
  permissionIndex?: string | number | null | undefined;
44751
44751
  }[];
44752
- threshold: string | number;
44753
44752
  prev_node: string;
44753
+ threshold?: string | number | undefined;
44754
44754
  }>, "many">;
44755
44755
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
44756
44756
  object: z.ZodString;
@@ -44825,7 +44825,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44825
44825
  name: z.ZodString;
44826
44826
  value: z.ZodArray<z.ZodObject<{
44827
44827
  prev_node: z.ZodString;
44828
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
44828
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
44829
44829
  forwards: z.ZodArray<z.ZodObject<{
44830
44830
  name: z.ZodString;
44831
44831
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -44884,8 +44884,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44884
44884
  namedOperator?: string | null | undefined;
44885
44885
  permissionIndex?: string | number | null | undefined;
44886
44886
  }[];
44887
- threshold: string | number;
44888
44887
  prev_node: string;
44888
+ threshold?: string | number | undefined;
44889
44889
  }>, "many">;
44890
44890
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
44891
44891
  object: z.ZodString;
@@ -44960,7 +44960,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
44960
44960
  name: z.ZodString;
44961
44961
  value: z.ZodArray<z.ZodObject<{
44962
44962
  prev_node: z.ZodString;
44963
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
44963
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
44964
44964
  forwards: z.ZodArray<z.ZodObject<{
44965
44965
  name: z.ZodString;
44966
44966
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -45019,8 +45019,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45019
45019
  namedOperator?: string | null | undefined;
45020
45020
  permissionIndex?: string | number | null | undefined;
45021
45021
  }[];
45022
- threshold: string | number;
45023
45022
  prev_node: string;
45023
+ threshold?: string | number | undefined;
45024
45024
  }>, "many">;
45025
45025
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
45026
45026
  object: z.ZodString;
@@ -45173,7 +45173,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45173
45173
  accomplished: boolean;
45174
45174
  }>, "many">;
45175
45175
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45176
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45176
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
45177
45177
  }, "strip", z.ZodTypeAny, {
45178
45178
  forwards: {
45179
45179
  time: string | number;
@@ -45203,9 +45203,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45203
45203
  msg: string;
45204
45204
  accomplished: boolean;
45205
45205
  }[];
45206
- threshold: string | number;
45207
45206
  next_node: string;
45208
45207
  weights: string | number;
45208
+ threshold?: string | number | undefined;
45209
45209
  }>, "many">;
45210
45210
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
45211
45211
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -45359,7 +45359,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45359
45359
  accomplished: boolean;
45360
45360
  }>, "many">;
45361
45361
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45362
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45362
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
45363
45363
  }, "strip", z.ZodTypeAny, {
45364
45364
  forwards: {
45365
45365
  time: string | number;
@@ -45389,9 +45389,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45389
45389
  msg: string;
45390
45390
  accomplished: boolean;
45391
45391
  }[];
45392
- threshold: string | number;
45393
45392
  next_node: string;
45394
45393
  weights: string | number;
45394
+ threshold?: string | number | undefined;
45395
45395
  }>, "many">;
45396
45396
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
45397
45397
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -45545,7 +45545,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45545
45545
  accomplished: boolean;
45546
45546
  }>, "many">;
45547
45547
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45548
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
45548
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
45549
45549
  }, "strip", z.ZodTypeAny, {
45550
45550
  forwards: {
45551
45551
  time: string | number;
@@ -45575,9 +45575,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
45575
45575
  msg: string;
45576
45576
  accomplished: boolean;
45577
45577
  }[];
45578
- threshold: string | number;
45579
45578
  next_node: string;
45580
45579
  weights: string | number;
45580
+ threshold?: string | number | undefined;
45581
45581
  }>, "many">;
45582
45582
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
45583
45583
  }, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
@@ -46511,7 +46511,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
46511
46511
  name: z.ZodString;
46512
46512
  value: z.ZodArray<z.ZodObject<{
46513
46513
  prev_node: z.ZodString;
46514
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
46514
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
46515
46515
  forwards: z.ZodArray<z.ZodObject<{
46516
46516
  name: z.ZodString;
46517
46517
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -46570,8 +46570,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
46570
46570
  namedOperator?: string | null | undefined;
46571
46571
  permissionIndex?: string | number | null | undefined;
46572
46572
  }[];
46573
- threshold: string | number;
46574
46573
  prev_node: string;
46574
+ threshold?: string | number | undefined;
46575
46575
  }>, "many">;
46576
46576
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
46577
46577
  object: z.ZodString;
@@ -46724,7 +46724,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
46724
46724
  accomplished: boolean;
46725
46725
  }>, "many">;
46726
46726
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
46727
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
46727
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
46728
46728
  }, "strip", z.ZodTypeAny, {
46729
46729
  forwards: {
46730
46730
  time: string | number;
@@ -46754,9 +46754,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
46754
46754
  msg: string;
46755
46755
  accomplished: boolean;
46756
46756
  }[];
46757
- threshold: string | number;
46758
46757
  next_node: string;
46759
46758
  weights: string | number;
46759
+ threshold?: string | number | undefined;
46760
46760
  }>, "many">;
46761
46761
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
46762
46762
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
@@ -47548,7 +47548,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
47548
47548
  name: z.ZodString;
47549
47549
  value: z.ZodArray<z.ZodObject<{
47550
47550
  prev_node: z.ZodString;
47551
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
47551
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
47552
47552
  forwards: z.ZodArray<z.ZodObject<{
47553
47553
  name: z.ZodString;
47554
47554
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -47607,8 +47607,8 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
47607
47607
  namedOperator?: string | null | undefined;
47608
47608
  permissionIndex?: string | number | null | undefined;
47609
47609
  }[];
47610
- threshold: string | number;
47611
47610
  prev_node: string;
47611
+ threshold?: string | number | undefined;
47612
47612
  }>, "many">;
47613
47613
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
47614
47614
  object: z.ZodString;
@@ -47761,7 +47761,7 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
47761
47761
  accomplished: boolean;
47762
47762
  }>, "many">;
47763
47763
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
47764
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
47764
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
47765
47765
  }, "strip", z.ZodTypeAny, {
47766
47766
  forwards: {
47767
47767
  time: string | number;
@@ -47791,9 +47791,9 @@ export declare const TableItemUnionOrUndefinedSchema: z.ZodObject<{
47791
47791
  msg: string;
47792
47792
  accomplished: boolean;
47793
47793
  }[];
47794
- threshold: string | number;
47795
47794
  next_node: string;
47796
47795
  weights: string | number;
47796
+ threshold?: string | number | undefined;
47797
47797
  }>, "many">;
47798
47798
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
47799
47799
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
@@ -50654,7 +50654,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50654
50654
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
50655
50655
  order_allocators: z.ZodUnion<[z.ZodObject<{
50656
50656
  description: z.ZodEffects<z.ZodString, string, string>;
50657
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
50657
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
50658
50658
  allocators: z.ZodArray<z.ZodObject<{
50659
50659
  guard: z.ZodEffects<z.ZodString, string, string>;
50660
50660
  sharing: z.ZodArray<z.ZodObject<{
@@ -50784,7 +50784,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50784
50784
  }[];
50785
50785
  }, {
50786
50786
  description: string;
50787
- threshold: string | number;
50788
50787
  allocators: {
50789
50788
  guard: string;
50790
50789
  sharing: {
@@ -50804,6 +50803,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50804
50803
  max?: string | number | null | undefined;
50805
50804
  fix?: string | number | undefined;
50806
50805
  }[];
50806
+ threshold?: string | number | undefined;
50807
50807
  }>, z.ZodNull]>;
50808
50808
  rewards: z.ZodArray<z.ZodString, "many">;
50809
50809
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -50914,7 +50914,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50914
50914
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
50915
50915
  order_allocators: z.ZodUnion<[z.ZodObject<{
50916
50916
  description: z.ZodEffects<z.ZodString, string, string>;
50917
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
50917
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
50918
50918
  allocators: z.ZodArray<z.ZodObject<{
50919
50919
  guard: z.ZodEffects<z.ZodString, string, string>;
50920
50920
  sharing: z.ZodArray<z.ZodObject<{
@@ -51044,7 +51044,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51044
51044
  }[];
51045
51045
  }, {
51046
51046
  description: string;
51047
- threshold: string | number;
51048
51047
  allocators: {
51049
51048
  guard: string;
51050
51049
  sharing: {
@@ -51064,6 +51063,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51064
51063
  max?: string | number | null | undefined;
51065
51064
  fix?: string | number | undefined;
51066
51065
  }[];
51066
+ threshold?: string | number | undefined;
51067
51067
  }>, z.ZodNull]>;
51068
51068
  rewards: z.ZodArray<z.ZodString, "many">;
51069
51069
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -51174,7 +51174,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51174
51174
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
51175
51175
  order_allocators: z.ZodUnion<[z.ZodObject<{
51176
51176
  description: z.ZodEffects<z.ZodString, string, string>;
51177
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
51177
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
51178
51178
  allocators: z.ZodArray<z.ZodObject<{
51179
51179
  guard: z.ZodEffects<z.ZodString, string, string>;
51180
51180
  sharing: z.ZodArray<z.ZodObject<{
@@ -51304,7 +51304,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51304
51304
  }[];
51305
51305
  }, {
51306
51306
  description: string;
51307
- threshold: string | number;
51308
51307
  allocators: {
51309
51308
  guard: string;
51310
51309
  sharing: {
@@ -51324,6 +51323,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51324
51323
  max?: string | number | null | undefined;
51325
51324
  fix?: string | number | undefined;
51326
51325
  }[];
51326
+ threshold?: string | number | undefined;
51327
51327
  }>, z.ZodNull]>;
51328
51328
  rewards: z.ZodArray<z.ZodString, "many">;
51329
51329
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -51784,7 +51784,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51784
51784
  accomplished: boolean;
51785
51785
  }>, "many">;
51786
51786
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
51787
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
51787
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
51788
51788
  }, "strip", z.ZodTypeAny, {
51789
51789
  forwards: {
51790
51790
  time: string | number;
@@ -51814,9 +51814,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51814
51814
  msg: string;
51815
51815
  accomplished: boolean;
51816
51816
  }[];
51817
- threshold: string | number;
51818
51817
  next_node: string;
51819
51818
  weights: string | number;
51819
+ threshold?: string | number | undefined;
51820
51820
  }>, "many">;
51821
51821
  history_count: z.ZodNumber;
51822
51822
  current_time: z.ZodNumber;
@@ -51982,7 +51982,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
51982
51982
  accomplished: boolean;
51983
51983
  }>, "many">;
51984
51984
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
51985
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
51985
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
51986
51986
  }, "strip", z.ZodTypeAny, {
51987
51987
  forwards: {
51988
51988
  time: string | number;
@@ -52012,9 +52012,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52012
52012
  msg: string;
52013
52013
  accomplished: boolean;
52014
52014
  }[];
52015
- threshold: string | number;
52016
52015
  next_node: string;
52017
52016
  weights: string | number;
52017
+ threshold?: string | number | undefined;
52018
52018
  }>, "many">;
52019
52019
  history_count: z.ZodNumber;
52020
52020
  current_time: z.ZodNumber;
@@ -52180,7 +52180,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52180
52180
  accomplished: boolean;
52181
52181
  }>, "many">;
52182
52182
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
52183
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
52183
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
52184
52184
  }, "strip", z.ZodTypeAny, {
52185
52185
  forwards: {
52186
52186
  time: string | number;
@@ -52210,9 +52210,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52210
52210
  msg: string;
52211
52211
  accomplished: boolean;
52212
52212
  }[];
52213
- threshold: string | number;
52214
52213
  next_node: string;
52215
52214
  weights: string | number;
52215
+ threshold?: string | number | undefined;
52216
52216
  }>, "many">;
52217
52217
  history_count: z.ZodNumber;
52218
52218
  current_time: z.ZodNumber;
@@ -58689,7 +58689,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58689
58689
  accomplished: boolean;
58690
58690
  }>, "many">;
58691
58691
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
58692
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
58692
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
58693
58693
  }, "strip", z.ZodTypeAny, {
58694
58694
  forwards: {
58695
58695
  time: string | number;
@@ -58719,9 +58719,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58719
58719
  msg: string;
58720
58720
  accomplished: boolean;
58721
58721
  }[];
58722
- threshold: string | number;
58723
58722
  next_node: string;
58724
58723
  weights: string | number;
58724
+ threshold?: string | number | undefined;
58725
58725
  }>, "many">;
58726
58726
  history_count: z.ZodNumber;
58727
58727
  current_time: z.ZodNumber;
@@ -59007,7 +59007,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59007
59007
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
59008
59008
  order_allocators: z.ZodUnion<[z.ZodObject<{
59009
59009
  description: z.ZodEffects<z.ZodString, string, string>;
59010
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
59010
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
59011
59011
  allocators: z.ZodArray<z.ZodObject<{
59012
59012
  guard: z.ZodEffects<z.ZodString, string, string>;
59013
59013
  sharing: z.ZodArray<z.ZodObject<{
@@ -59137,7 +59137,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59137
59137
  }[];
59138
59138
  }, {
59139
59139
  description: string;
59140
- threshold: string | number;
59141
59140
  allocators: {
59142
59141
  guard: string;
59143
59142
  sharing: {
@@ -59157,6 +59156,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59157
59156
  max?: string | number | null | undefined;
59158
59157
  fix?: string | number | undefined;
59159
59158
  }[];
59159
+ threshold?: string | number | undefined;
59160
59160
  }>, z.ZodNull]>;
59161
59161
  rewards: z.ZodArray<z.ZodString, "many">;
59162
59162
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -61434,7 +61434,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
61434
61434
  accomplished: boolean;
61435
61435
  }>, "many">;
61436
61436
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
61437
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
61437
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
61438
61438
  }, "strip", z.ZodTypeAny, {
61439
61439
  forwards: {
61440
61440
  time: string | number;
@@ -61464,9 +61464,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
61464
61464
  msg: string;
61465
61465
  accomplished: boolean;
61466
61466
  }[];
61467
- threshold: string | number;
61468
61467
  next_node: string;
61469
61468
  weights: string | number;
61469
+ threshold?: string | number | undefined;
61470
61470
  }>, "many">;
61471
61471
  history_count: z.ZodNumber;
61472
61472
  current_time: z.ZodNumber;
@@ -61752,7 +61752,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
61752
61752
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
61753
61753
  order_allocators: z.ZodUnion<[z.ZodObject<{
61754
61754
  description: z.ZodEffects<z.ZodString, string, string>;
61755
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
61755
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
61756
61756
  allocators: z.ZodArray<z.ZodObject<{
61757
61757
  guard: z.ZodEffects<z.ZodString, string, string>;
61758
61758
  sharing: z.ZodArray<z.ZodObject<{
@@ -61882,7 +61882,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
61882
61882
  }[];
61883
61883
  }, {
61884
61884
  description: string;
61885
- threshold: string | number;
61886
61885
  allocators: {
61887
61886
  guard: string;
61888
61887
  sharing: {
@@ -61902,6 +61901,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
61902
61901
  max?: string | number | null | undefined;
61903
61902
  fix?: string | number | undefined;
61904
61903
  }[];
61904
+ threshold?: string | number | undefined;
61905
61905
  }>, z.ZodNull]>;
61906
61906
  rewards: z.ZodArray<z.ZodString, "many">;
61907
61907
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -64181,7 +64181,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64181
64181
  accomplished: boolean;
64182
64182
  }>, "many">;
64183
64183
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
64184
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
64184
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
64185
64185
  }, "strip", z.ZodTypeAny, {
64186
64186
  forwards: {
64187
64187
  time: string | number;
@@ -64211,9 +64211,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64211
64211
  msg: string;
64212
64212
  accomplished: boolean;
64213
64213
  }[];
64214
- threshold: string | number;
64215
64214
  next_node: string;
64216
64215
  weights: string | number;
64216
+ threshold?: string | number | undefined;
64217
64217
  }>, "many">;
64218
64218
  history_count: z.ZodNumber;
64219
64219
  current_time: z.ZodNumber;
@@ -64499,7 +64499,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64499
64499
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
64500
64500
  order_allocators: z.ZodUnion<[z.ZodObject<{
64501
64501
  description: z.ZodEffects<z.ZodString, string, string>;
64502
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
64502
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
64503
64503
  allocators: z.ZodArray<z.ZodObject<{
64504
64504
  guard: z.ZodEffects<z.ZodString, string, string>;
64505
64505
  sharing: z.ZodArray<z.ZodObject<{
@@ -64629,7 +64629,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64629
64629
  }[];
64630
64630
  }, {
64631
64631
  description: string;
64632
- threshold: string | number;
64633
64632
  allocators: {
64634
64633
  guard: string;
64635
64634
  sharing: {
@@ -64649,6 +64648,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64649
64648
  max?: string | number | null | undefined;
64650
64649
  fix?: string | number | undefined;
64651
64650
  }[];
64651
+ threshold?: string | number | undefined;
64652
64652
  }>, z.ZodNull]>;
64653
64653
  rewards: z.ZodArray<z.ZodString, "many">;
64654
64654
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -66929,7 +66929,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66929
66929
  accomplished: boolean;
66930
66930
  }>, "many">;
66931
66931
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
66932
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
66932
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
66933
66933
  }, "strip", z.ZodTypeAny, {
66934
66934
  forwards: {
66935
66935
  time: string | number;
@@ -66959,9 +66959,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66959
66959
  msg: string;
66960
66960
  accomplished: boolean;
66961
66961
  }[];
66962
- threshold: string | number;
66963
66962
  next_node: string;
66964
66963
  weights: string | number;
66964
+ threshold?: string | number | undefined;
66965
66965
  }>, "many">;
66966
66966
  history_count: z.ZodNumber;
66967
66967
  current_time: z.ZodNumber;
@@ -67247,7 +67247,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67247
67247
  setting_lock_duration: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBigInt]>;
67248
67248
  order_allocators: z.ZodUnion<[z.ZodObject<{
67249
67249
  description: z.ZodEffects<z.ZodString, string, string>;
67250
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
67250
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
67251
67251
  allocators: z.ZodArray<z.ZodObject<{
67252
67252
  guard: z.ZodEffects<z.ZodString, string, string>;
67253
67253
  sharing: z.ZodArray<z.ZodObject<{
@@ -67377,7 +67377,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67377
67377
  }[];
67378
67378
  }, {
67379
67379
  description: string;
67380
- threshold: string | number;
67381
67380
  allocators: {
67382
67381
  guard: string;
67383
67382
  sharing: {
@@ -67397,6 +67396,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67397
67396
  max?: string | number | null | undefined;
67398
67397
  fix?: string | number | undefined;
67399
67398
  }[];
67399
+ threshold?: string | number | undefined;
67400
67400
  }>, z.ZodNull]>;
67401
67401
  rewards: z.ZodArray<z.ZodString, "many">;
67402
67402
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -72410,7 +72410,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72410
72410
  name: z.ZodString;
72411
72411
  value: z.ZodArray<z.ZodObject<{
72412
72412
  prev_node: z.ZodString;
72413
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
72413
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
72414
72414
  forwards: z.ZodArray<z.ZodObject<{
72415
72415
  name: z.ZodString;
72416
72416
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -72469,8 +72469,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72469
72469
  namedOperator?: string | null | undefined;
72470
72470
  permissionIndex?: string | number | null | undefined;
72471
72471
  }[];
72472
- threshold: string | number;
72473
72472
  prev_node: string;
72473
+ threshold?: string | number | undefined;
72474
72474
  }>, "many">;
72475
72475
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
72476
72476
  object: z.ZodString;
@@ -72545,7 +72545,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72545
72545
  name: z.ZodString;
72546
72546
  value: z.ZodArray<z.ZodObject<{
72547
72547
  prev_node: z.ZodString;
72548
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
72548
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
72549
72549
  forwards: z.ZodArray<z.ZodObject<{
72550
72550
  name: z.ZodString;
72551
72551
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -72604,8 +72604,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72604
72604
  namedOperator?: string | null | undefined;
72605
72605
  permissionIndex?: string | number | null | undefined;
72606
72606
  }[];
72607
- threshold: string | number;
72608
72607
  prev_node: string;
72608
+ threshold?: string | number | undefined;
72609
72609
  }>, "many">;
72610
72610
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
72611
72611
  object: z.ZodString;
@@ -72680,7 +72680,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72680
72680
  name: z.ZodString;
72681
72681
  value: z.ZodArray<z.ZodObject<{
72682
72682
  prev_node: z.ZodString;
72683
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
72683
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
72684
72684
  forwards: z.ZodArray<z.ZodObject<{
72685
72685
  name: z.ZodString;
72686
72686
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -72739,8 +72739,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72739
72739
  namedOperator?: string | null | undefined;
72740
72740
  permissionIndex?: string | number | null | undefined;
72741
72741
  }[];
72742
- threshold: string | number;
72743
72742
  prev_node: string;
72743
+ threshold?: string | number | undefined;
72744
72744
  }>, "many">;
72745
72745
  }, z.ZodTypeAny, "passthrough">>, z.ZodUndefined]>;
72746
72746
  }, "strip", z.ZodTypeAny, {
@@ -72818,7 +72818,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72818
72818
  name: z.ZodString;
72819
72819
  value: z.ZodArray<z.ZodObject<{
72820
72820
  prev_node: z.ZodString;
72821
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
72821
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
72822
72822
  forwards: z.ZodArray<z.ZodObject<{
72823
72823
  name: z.ZodString;
72824
72824
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -72877,8 +72877,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72877
72877
  namedOperator?: string | null | undefined;
72878
72878
  permissionIndex?: string | number | null | undefined;
72879
72879
  }[];
72880
- threshold: string | number;
72881
72880
  prev_node: string;
72881
+ threshold?: string | number | undefined;
72882
72882
  }>, "many">;
72883
72883
  }, z.ZodTypeAny, "passthrough"> | undefined;
72884
72884
  }, {
@@ -72956,7 +72956,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
72956
72956
  name: z.ZodString;
72957
72957
  value: z.ZodArray<z.ZodObject<{
72958
72958
  prev_node: z.ZodString;
72959
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
72959
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
72960
72960
  forwards: z.ZodArray<z.ZodObject<{
72961
72961
  name: z.ZodString;
72962
72962
  namedOperator: z.ZodUnion<[z.ZodString, z.ZodNull, z.ZodUndefined]>;
@@ -73015,8 +73015,8 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73015
73015
  namedOperator?: string | null | undefined;
73016
73016
  permissionIndex?: string | number | null | undefined;
73017
73017
  }[];
73018
- threshold: string | number;
73019
73018
  prev_node: string;
73019
+ threshold?: string | number | undefined;
73020
73020
  }>, "many">;
73021
73021
  }, z.ZodTypeAny, "passthrough"> | undefined;
73022
73022
  }>, z.ZodObject<{
@@ -73172,7 +73172,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73172
73172
  accomplished: boolean;
73173
73173
  }>, "many">;
73174
73174
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73175
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73175
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
73176
73176
  }, "strip", z.ZodTypeAny, {
73177
73177
  forwards: {
73178
73178
  time: string | number;
@@ -73202,9 +73202,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73202
73202
  msg: string;
73203
73203
  accomplished: boolean;
73204
73204
  }[];
73205
- threshold: string | number;
73206
73205
  next_node: string;
73207
73206
  weights: string | number;
73207
+ threshold?: string | number | undefined;
73208
73208
  }>, "many">;
73209
73209
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
73210
73210
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
@@ -73358,7 +73358,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73358
73358
  accomplished: boolean;
73359
73359
  }>, "many">;
73360
73360
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73361
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73361
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
73362
73362
  }, "strip", z.ZodTypeAny, {
73363
73363
  forwards: {
73364
73364
  time: string | number;
@@ -73388,9 +73388,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73388
73388
  msg: string;
73389
73389
  accomplished: boolean;
73390
73390
  }[];
73391
- threshold: string | number;
73392
73391
  next_node: string;
73393
73392
  weights: string | number;
73393
+ threshold?: string | number | undefined;
73394
73394
  }>, "many">;
73395
73395
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
73396
73396
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
@@ -73544,7 +73544,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73544
73544
  accomplished: boolean;
73545
73545
  }>, "many">;
73546
73546
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73547
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73547
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
73548
73548
  }, "strip", z.ZodTypeAny, {
73549
73549
  forwards: {
73550
73550
  time: string | number;
@@ -73574,9 +73574,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73574
73574
  msg: string;
73575
73575
  accomplished: boolean;
73576
73576
  }[];
73577
- threshold: string | number;
73578
73577
  next_node: string;
73579
73578
  weights: string | number;
73579
+ threshold?: string | number | undefined;
73580
73580
  }>, "many">;
73581
73581
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
73582
73582
  }, z.ZodTypeAny, "passthrough">>, z.ZodUndefined]>;
@@ -73733,7 +73733,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73733
73733
  accomplished: boolean;
73734
73734
  }>, "many">;
73735
73735
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73736
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73736
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
73737
73737
  }, "strip", z.ZodTypeAny, {
73738
73738
  forwards: {
73739
73739
  time: string | number;
@@ -73763,9 +73763,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73763
73763
  msg: string;
73764
73764
  accomplished: boolean;
73765
73765
  }[];
73766
- threshold: string | number;
73767
73766
  next_node: string;
73768
73767
  weights: string | number;
73768
+ threshold?: string | number | undefined;
73769
73769
  }>, "many">;
73770
73770
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
73771
73771
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -73922,7 +73922,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73922
73922
  accomplished: boolean;
73923
73923
  }>, "many">;
73924
73924
  weights: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73925
- threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
73925
+ threshold: z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
73926
73926
  }, "strip", z.ZodTypeAny, {
73927
73927
  forwards: {
73928
73928
  time: string | number;
@@ -73952,9 +73952,9 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73952
73952
  msg: string;
73953
73953
  accomplished: boolean;
73954
73954
  }[];
73955
- threshold: string | number;
73956
73955
  next_node: string;
73957
73956
  weights: string | number;
73957
+ threshold?: string | number | undefined;
73958
73958
  }>, "many">;
73959
73959
  time: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodNull, z.ZodUndefined]>;
73960
73960
  }, z.ZodTypeAny, "passthrough"> | undefined;