@wowok/agent-mcp 2.3.12 → 2.3.14

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 (93) hide show
  1. package/dist/harness/checkpoint.d.ts +8 -0
  2. package/dist/harness/checkpoint.js +129 -0
  3. package/dist/harness/index.d.ts +33 -0
  4. package/dist/harness/index.js +75 -0
  5. package/dist/harness/plan.d.ts +18 -0
  6. package/dist/harness/plan.js +252 -0
  7. package/dist/harness/recover.d.ts +17 -0
  8. package/dist/harness/recover.js +139 -0
  9. package/dist/harness/types.d.ts +137 -0
  10. package/dist/harness/types.js +1 -0
  11. package/dist/harness/verify.d.ts +42 -0
  12. package/dist/harness/verify.js +237 -0
  13. package/dist/index.js +134 -52
  14. package/dist/loop-engineering/aggregate.d.ts +50 -0
  15. package/dist/loop-engineering/aggregate.js +132 -0
  16. package/dist/loop-engineering/diagnose.d.ts +21 -0
  17. package/dist/loop-engineering/diagnose.js +179 -0
  18. package/dist/loop-engineering/improve.d.ts +26 -0
  19. package/dist/loop-engineering/improve.js +178 -0
  20. package/dist/loop-engineering/index.d.ts +4 -0
  21. package/dist/loop-engineering/index.js +4 -0
  22. package/dist/loop-engineering/pipeline.d.ts +17 -0
  23. package/dist/loop-engineering/pipeline.js +56 -0
  24. package/dist/mode-market/index.d.ts +3 -0
  25. package/dist/mode-market/index.js +3 -0
  26. package/dist/mode-market/registry.d.ts +53 -0
  27. package/dist/mode-market/registry.js +124 -0
  28. package/dist/mode-market/review.d.ts +27 -0
  29. package/dist/mode-market/review.js +214 -0
  30. package/dist/mode-market/submission.d.ts +25 -0
  31. package/dist/mode-market/submission.js +85 -0
  32. package/dist/schema/call/allocation.d.ts +40 -40
  33. package/dist/schema/call/arbitration.d.ts +90 -90
  34. package/dist/schema/call/base.d.ts +1054 -0
  35. package/dist/schema/call/base.js +100 -22
  36. package/dist/schema/call/bridge-handler.js +36 -18
  37. package/dist/schema/call/bridge.d.ts +115 -115
  38. package/dist/schema/call/handler.d.ts +2 -1
  39. package/dist/schema/call/handler.js +94 -3
  40. package/dist/schema/call/index.d.ts +1 -0
  41. package/dist/schema/call/index.js +1 -0
  42. package/dist/schema/call/machine.d.ts +144 -144
  43. package/dist/schema/call/order.d.ts +12 -12
  44. package/dist/schema/call/progress.d.ts +6 -6
  45. package/dist/schema/call/proof.js +7 -6
  46. package/dist/schema/call/reward.d.ts +6 -6
  47. package/dist/schema/call/semantic.d.ts +23 -0
  48. package/dist/schema/call/semantic.js +764 -0
  49. package/dist/schema/call/service.d.ts +142 -142
  50. package/dist/schema/call/treasury.d.ts +204 -204
  51. package/dist/schema/local/index.d.ts +113 -2
  52. package/dist/schema/local/index.js +11 -1
  53. package/dist/schema/messenger/index.d.ts +435 -95
  54. package/dist/schema/messenger/index.js +20 -8
  55. package/dist/schema/operations.d.ts +988 -495
  56. package/dist/schema/operations.js +14 -3
  57. package/dist/schema/query/index.d.ts +346 -342
  58. package/dist/schema/query/index.js +4 -1
  59. package/dist/schemas/account_operation.output.json +3 -0
  60. package/dist/schemas/account_operation.schema.json +1 -1
  61. package/dist/schemas/index.json +1 -1
  62. package/dist/schemas/local_info_operation.output.json +3 -0
  63. package/dist/schemas/local_mark_operation.output.json +3 -0
  64. package/dist/schemas/messenger_operation.output.json +21 -0
  65. package/dist/schemas/messenger_operation.schema.json +43 -8
  66. package/dist/schemas/onchain_events.output.json +3 -0
  67. package/dist/schemas/onchain_operations.output.json +464 -21
  68. package/dist/schemas/onchain_operations.schema.json +21 -17
  69. package/dist/schemas/onchain_operations_allocation.schema.json +11 -9
  70. package/dist/schemas/onchain_operations_arbitration.schema.json +11 -9
  71. package/dist/schemas/onchain_operations_contact.schema.json +11 -9
  72. package/dist/schemas/onchain_operations_demand.schema.json +11 -9
  73. package/dist/schemas/onchain_operations_gen_passport.schema.json +21 -17
  74. package/dist/schemas/onchain_operations_guard.schema.json +11 -9
  75. package/dist/schemas/onchain_operations_machine.schema.json +11 -9
  76. package/dist/schemas/onchain_operations_order.schema.json +11 -9
  77. package/dist/schemas/onchain_operations_payment.schema.json +11 -9
  78. package/dist/schemas/onchain_operations_permission.schema.json +11 -9
  79. package/dist/schemas/onchain_operations_personal.schema.json +11 -9
  80. package/dist/schemas/onchain_operations_progress.schema.json +11 -9
  81. package/dist/schemas/onchain_operations_repository.schema.json +11 -9
  82. package/dist/schemas/onchain_operations_reward.schema.json +11 -9
  83. package/dist/schemas/onchain_operations_service.schema.json +11 -9
  84. package/dist/schemas/onchain_operations_treasury.schema.json +11 -9
  85. package/dist/schemas/onchain_table_data.output.json +3 -0
  86. package/dist/schemas/query_toolkit.schema.json +5 -1
  87. package/dist/telemetry/index.d.ts +19 -0
  88. package/dist/telemetry/index.js +112 -0
  89. package/dist/telemetry/redact.d.ts +2 -0
  90. package/dist/telemetry/redact.js +23 -0
  91. package/dist/telemetry/storage.d.ts +8 -0
  92. package/dist/telemetry/storage.js +80 -0
  93. package/package.json +6 -3
@@ -3988,6 +3988,7 @@ export declare const AllocationSharingSchema: z.ZodObject<{
3988
3988
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
3989
3989
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
3990
3990
  }, "strip", z.ZodTypeAny, {
3991
+ sharing: string | number;
3991
3992
  who: {
3992
3993
  GuardIdentifier: number;
3993
3994
  } | {
@@ -3998,9 +3999,9 @@ export declare const AllocationSharingSchema: z.ZodObject<{
3998
3999
  } | {
3999
4000
  Signer: "signer";
4000
4001
  };
4001
- sharing: string | number;
4002
4002
  mode: "Amount" | "Rate" | "Surplus";
4003
4003
  }, {
4004
+ sharing: string | number;
4004
4005
  who: {
4005
4006
  GuardIdentifier: number;
4006
4007
  } | {
@@ -4011,7 +4012,6 @@ export declare const AllocationSharingSchema: z.ZodObject<{
4011
4012
  } | {
4012
4013
  Signer: "signer";
4013
4014
  };
4014
- sharing: string | number;
4015
4015
  mode: "Amount" | "Rate" | "Surplus";
4016
4016
  }>;
4017
4017
  export declare const AllocatorSchema: z.ZodObject<{
@@ -4054,6 +4054,7 @@ export declare const AllocatorSchema: z.ZodObject<{
4054
4054
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4055
4055
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
4056
4056
  }, "strip", z.ZodTypeAny, {
4057
+ sharing: string | number;
4057
4058
  who: {
4058
4059
  GuardIdentifier: number;
4059
4060
  } | {
@@ -4064,9 +4065,9 @@ export declare const AllocatorSchema: z.ZodObject<{
4064
4065
  } | {
4065
4066
  Signer: "signer";
4066
4067
  };
4067
- sharing: string | number;
4068
4068
  mode: "Amount" | "Rate" | "Surplus";
4069
4069
  }, {
4070
+ sharing: string | number;
4070
4071
  who: {
4071
4072
  GuardIdentifier: number;
4072
4073
  } | {
@@ -4077,7 +4078,6 @@ export declare const AllocatorSchema: z.ZodObject<{
4077
4078
  } | {
4078
4079
  Signer: "signer";
4079
4080
  };
4080
- sharing: string | number;
4081
4081
  mode: "Amount" | "Rate" | "Surplus";
4082
4082
  }>, "many">;
4083
4083
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -4085,6 +4085,7 @@ export declare const AllocatorSchema: z.ZodObject<{
4085
4085
  }, "strip", z.ZodTypeAny, {
4086
4086
  guard: string;
4087
4087
  sharing: {
4088
+ sharing: string | number;
4088
4089
  who: {
4089
4090
  GuardIdentifier: number;
4090
4091
  } | {
@@ -4095,7 +4096,6 @@ export declare const AllocatorSchema: z.ZodObject<{
4095
4096
  } | {
4096
4097
  Signer: "signer";
4097
4098
  };
4098
- sharing: string | number;
4099
4099
  mode: "Amount" | "Rate" | "Surplus";
4100
4100
  }[];
4101
4101
  max?: string | number | null | undefined;
@@ -4103,6 +4103,7 @@ export declare const AllocatorSchema: z.ZodObject<{
4103
4103
  }, {
4104
4104
  guard: string;
4105
4105
  sharing: {
4106
+ sharing: string | number;
4106
4107
  who: {
4107
4108
  GuardIdentifier: number;
4108
4109
  } | {
@@ -4113,7 +4114,6 @@ export declare const AllocatorSchema: z.ZodObject<{
4113
4114
  } | {
4114
4115
  Signer: "signer";
4115
4116
  };
4116
- sharing: string | number;
4117
4117
  mode: "Amount" | "Rate" | "Surplus";
4118
4118
  }[];
4119
4119
  max?: string | number | null | undefined;
@@ -4162,6 +4162,7 @@ export declare const AllocatorsSchema: z.ZodObject<{
4162
4162
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4163
4163
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
4164
4164
  }, "strip", z.ZodTypeAny, {
4165
+ sharing: string | number;
4165
4166
  who: {
4166
4167
  GuardIdentifier: number;
4167
4168
  } | {
@@ -4172,9 +4173,9 @@ export declare const AllocatorsSchema: z.ZodObject<{
4172
4173
  } | {
4173
4174
  Signer: "signer";
4174
4175
  };
4175
- sharing: string | number;
4176
4176
  mode: "Amount" | "Rate" | "Surplus";
4177
4177
  }, {
4178
+ sharing: string | number;
4178
4179
  who: {
4179
4180
  GuardIdentifier: number;
4180
4181
  } | {
@@ -4185,7 +4186,6 @@ export declare const AllocatorsSchema: z.ZodObject<{
4185
4186
  } | {
4186
4187
  Signer: "signer";
4187
4188
  };
4188
- sharing: string | number;
4189
4189
  mode: "Amount" | "Rate" | "Surplus";
4190
4190
  }>, "many">;
4191
4191
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -4193,6 +4193,7 @@ export declare const AllocatorsSchema: z.ZodObject<{
4193
4193
  }, "strip", z.ZodTypeAny, {
4194
4194
  guard: string;
4195
4195
  sharing: {
4196
+ sharing: string | number;
4196
4197
  who: {
4197
4198
  GuardIdentifier: number;
4198
4199
  } | {
@@ -4203,7 +4204,6 @@ export declare const AllocatorsSchema: z.ZodObject<{
4203
4204
  } | {
4204
4205
  Signer: "signer";
4205
4206
  };
4206
- sharing: string | number;
4207
4207
  mode: "Amount" | "Rate" | "Surplus";
4208
4208
  }[];
4209
4209
  max?: string | number | null | undefined;
@@ -4211,6 +4211,7 @@ export declare const AllocatorsSchema: z.ZodObject<{
4211
4211
  }, {
4212
4212
  guard: string;
4213
4213
  sharing: {
4214
+ sharing: string | number;
4214
4215
  who: {
4215
4216
  GuardIdentifier: number;
4216
4217
  } | {
@@ -4221,7 +4222,6 @@ export declare const AllocatorsSchema: z.ZodObject<{
4221
4222
  } | {
4222
4223
  Signer: "signer";
4223
4224
  };
4224
- sharing: string | number;
4225
4225
  mode: "Amount" | "Rate" | "Surplus";
4226
4226
  }[];
4227
4227
  max?: string | number | null | undefined;
@@ -4229,10 +4229,10 @@ export declare const AllocatorsSchema: z.ZodObject<{
4229
4229
  }>, "many">;
4230
4230
  }, "strip", z.ZodTypeAny, {
4231
4231
  description: string;
4232
- threshold: string | number;
4233
4232
  allocators: {
4234
4233
  guard: string;
4235
4234
  sharing: {
4235
+ sharing: string | number;
4236
4236
  who: {
4237
4237
  GuardIdentifier: number;
4238
4238
  } | {
@@ -4243,18 +4243,18 @@ export declare const AllocatorsSchema: z.ZodObject<{
4243
4243
  } | {
4244
4244
  Signer: "signer";
4245
4245
  };
4246
- sharing: string | number;
4247
4246
  mode: "Amount" | "Rate" | "Surplus";
4248
4247
  }[];
4249
4248
  max?: string | number | null | undefined;
4250
4249
  fix?: string | number | undefined;
4251
4250
  }[];
4251
+ threshold: string | number;
4252
4252
  }, {
4253
4253
  description: string;
4254
- threshold: string | number;
4255
4254
  allocators: {
4256
4255
  guard: string;
4257
4256
  sharing: {
4257
+ sharing: string | number;
4258
4258
  who: {
4259
4259
  GuardIdentifier: number;
4260
4260
  } | {
@@ -4265,12 +4265,12 @@ export declare const AllocatorsSchema: z.ZodObject<{
4265
4265
  } | {
4266
4266
  Signer: "signer";
4267
4267
  };
4268
- sharing: string | number;
4269
4268
  mode: "Amount" | "Rate" | "Surplus";
4270
4269
  }[];
4271
4270
  max?: string | number | null | undefined;
4272
4271
  fix?: string | number | undefined;
4273
4272
  }[];
4273
+ threshold: string | number;
4274
4274
  }>;
4275
4275
  export declare const ObjectServiceSchema: z.ZodObject<{
4276
4276
  object: z.ZodString;
@@ -4419,6 +4419,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4419
4419
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4420
4420
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
4421
4421
  }, "strip", z.ZodTypeAny, {
4422
+ sharing: string | number;
4422
4423
  who: {
4423
4424
  GuardIdentifier: number;
4424
4425
  } | {
@@ -4429,9 +4430,9 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4429
4430
  } | {
4430
4431
  Signer: "signer";
4431
4432
  };
4432
- sharing: string | number;
4433
4433
  mode: "Amount" | "Rate" | "Surplus";
4434
4434
  }, {
4435
+ sharing: string | number;
4435
4436
  who: {
4436
4437
  GuardIdentifier: number;
4437
4438
  } | {
@@ -4442,7 +4443,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4442
4443
  } | {
4443
4444
  Signer: "signer";
4444
4445
  };
4445
- sharing: string | number;
4446
4446
  mode: "Amount" | "Rate" | "Surplus";
4447
4447
  }>, "many">;
4448
4448
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -4450,6 +4450,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4450
4450
  }, "strip", z.ZodTypeAny, {
4451
4451
  guard: string;
4452
4452
  sharing: {
4453
+ sharing: string | number;
4453
4454
  who: {
4454
4455
  GuardIdentifier: number;
4455
4456
  } | {
@@ -4460,7 +4461,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4460
4461
  } | {
4461
4462
  Signer: "signer";
4462
4463
  };
4463
- sharing: string | number;
4464
4464
  mode: "Amount" | "Rate" | "Surplus";
4465
4465
  }[];
4466
4466
  max?: string | number | null | undefined;
@@ -4468,6 +4468,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4468
4468
  }, {
4469
4469
  guard: string;
4470
4470
  sharing: {
4471
+ sharing: string | number;
4471
4472
  who: {
4472
4473
  GuardIdentifier: number;
4473
4474
  } | {
@@ -4478,7 +4479,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4478
4479
  } | {
4479
4480
  Signer: "signer";
4480
4481
  };
4481
- sharing: string | number;
4482
4482
  mode: "Amount" | "Rate" | "Surplus";
4483
4483
  }[];
4484
4484
  max?: string | number | null | undefined;
@@ -4486,10 +4486,10 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4486
4486
  }>, "many">;
4487
4487
  }, "strip", z.ZodTypeAny, {
4488
4488
  description: string;
4489
- threshold: string | number;
4490
4489
  allocators: {
4491
4490
  guard: string;
4492
4491
  sharing: {
4492
+ sharing: string | number;
4493
4493
  who: {
4494
4494
  GuardIdentifier: number;
4495
4495
  } | {
@@ -4500,18 +4500,18 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4500
4500
  } | {
4501
4501
  Signer: "signer";
4502
4502
  };
4503
- sharing: string | number;
4504
4503
  mode: "Amount" | "Rate" | "Surplus";
4505
4504
  }[];
4506
4505
  max?: string | number | null | undefined;
4507
4506
  fix?: string | number | undefined;
4508
4507
  }[];
4508
+ threshold: string | number;
4509
4509
  }, {
4510
4510
  description: string;
4511
- threshold: string | number;
4512
4511
  allocators: {
4513
4512
  guard: string;
4514
4513
  sharing: {
4514
+ sharing: string | number;
4515
4515
  who: {
4516
4516
  GuardIdentifier: number;
4517
4517
  } | {
@@ -4522,12 +4522,12 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4522
4522
  } | {
4523
4523
  Signer: "signer";
4524
4524
  };
4525
- sharing: string | number;
4526
4525
  mode: "Amount" | "Rate" | "Surplus";
4527
4526
  }[];
4528
4527
  max?: string | number | null | undefined;
4529
4528
  fix?: string | number | undefined;
4530
4529
  }[];
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]>;
@@ -4679,6 +4679,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4679
4679
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4680
4680
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
4681
4681
  }, "strip", z.ZodTypeAny, {
4682
+ sharing: string | number;
4682
4683
  who: {
4683
4684
  GuardIdentifier: number;
4684
4685
  } | {
@@ -4689,9 +4690,9 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4689
4690
  } | {
4690
4691
  Signer: "signer";
4691
4692
  };
4692
- sharing: string | number;
4693
4693
  mode: "Amount" | "Rate" | "Surplus";
4694
4694
  }, {
4695
+ sharing: string | number;
4695
4696
  who: {
4696
4697
  GuardIdentifier: number;
4697
4698
  } | {
@@ -4702,7 +4703,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4702
4703
  } | {
4703
4704
  Signer: "signer";
4704
4705
  };
4705
- sharing: string | number;
4706
4706
  mode: "Amount" | "Rate" | "Surplus";
4707
4707
  }>, "many">;
4708
4708
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -4710,6 +4710,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4710
4710
  }, "strip", z.ZodTypeAny, {
4711
4711
  guard: string;
4712
4712
  sharing: {
4713
+ sharing: string | number;
4713
4714
  who: {
4714
4715
  GuardIdentifier: number;
4715
4716
  } | {
@@ -4720,7 +4721,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4720
4721
  } | {
4721
4722
  Signer: "signer";
4722
4723
  };
4723
- sharing: string | number;
4724
4724
  mode: "Amount" | "Rate" | "Surplus";
4725
4725
  }[];
4726
4726
  max?: string | number | null | undefined;
@@ -4728,6 +4728,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4728
4728
  }, {
4729
4729
  guard: string;
4730
4730
  sharing: {
4731
+ sharing: string | number;
4731
4732
  who: {
4732
4733
  GuardIdentifier: number;
4733
4734
  } | {
@@ -4738,7 +4739,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4738
4739
  } | {
4739
4740
  Signer: "signer";
4740
4741
  };
4741
- sharing: string | number;
4742
4742
  mode: "Amount" | "Rate" | "Surplus";
4743
4743
  }[];
4744
4744
  max?: string | number | null | undefined;
@@ -4746,10 +4746,10 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4746
4746
  }>, "many">;
4747
4747
  }, "strip", z.ZodTypeAny, {
4748
4748
  description: string;
4749
- threshold: string | number;
4750
4749
  allocators: {
4751
4750
  guard: string;
4752
4751
  sharing: {
4752
+ sharing: string | number;
4753
4753
  who: {
4754
4754
  GuardIdentifier: number;
4755
4755
  } | {
@@ -4760,18 +4760,18 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4760
4760
  } | {
4761
4761
  Signer: "signer";
4762
4762
  };
4763
- sharing: string | number;
4764
4763
  mode: "Amount" | "Rate" | "Surplus";
4765
4764
  }[];
4766
4765
  max?: string | number | null | undefined;
4767
4766
  fix?: string | number | undefined;
4768
4767
  }[];
4768
+ threshold: string | number;
4769
4769
  }, {
4770
4770
  description: string;
4771
- threshold: string | number;
4772
4771
  allocators: {
4773
4772
  guard: string;
4774
4773
  sharing: {
4774
+ sharing: string | number;
4775
4775
  who: {
4776
4776
  GuardIdentifier: number;
4777
4777
  } | {
@@ -4782,12 +4782,12 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4782
4782
  } | {
4783
4783
  Signer: "signer";
4784
4784
  };
4785
- sharing: string | number;
4786
4785
  mode: "Amount" | "Rate" | "Surplus";
4787
4786
  }[];
4788
4787
  max?: string | number | null | undefined;
4789
4788
  fix?: string | number | undefined;
4790
4789
  }[];
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]>;
@@ -4939,6 +4939,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4939
4939
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
4940
4940
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
4941
4941
  }, "strip", z.ZodTypeAny, {
4942
+ sharing: string | number;
4942
4943
  who: {
4943
4944
  GuardIdentifier: number;
4944
4945
  } | {
@@ -4949,9 +4950,9 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4949
4950
  } | {
4950
4951
  Signer: "signer";
4951
4952
  };
4952
- sharing: string | number;
4953
4953
  mode: "Amount" | "Rate" | "Surplus";
4954
4954
  }, {
4955
+ sharing: string | number;
4955
4956
  who: {
4956
4957
  GuardIdentifier: number;
4957
4958
  } | {
@@ -4962,7 +4963,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4962
4963
  } | {
4963
4964
  Signer: "signer";
4964
4965
  };
4965
- sharing: string | number;
4966
4966
  mode: "Amount" | "Rate" | "Surplus";
4967
4967
  }>, "many">;
4968
4968
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -4970,6 +4970,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4970
4970
  }, "strip", z.ZodTypeAny, {
4971
4971
  guard: string;
4972
4972
  sharing: {
4973
+ sharing: string | number;
4973
4974
  who: {
4974
4975
  GuardIdentifier: number;
4975
4976
  } | {
@@ -4980,7 +4981,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4980
4981
  } | {
4981
4982
  Signer: "signer";
4982
4983
  };
4983
- sharing: string | number;
4984
4984
  mode: "Amount" | "Rate" | "Surplus";
4985
4985
  }[];
4986
4986
  max?: string | number | null | undefined;
@@ -4988,6 +4988,7 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4988
4988
  }, {
4989
4989
  guard: string;
4990
4990
  sharing: {
4991
+ sharing: string | number;
4991
4992
  who: {
4992
4993
  GuardIdentifier: number;
4993
4994
  } | {
@@ -4998,7 +4999,6 @@ export declare const ObjectServiceSchema: z.ZodObject<{
4998
4999
  } | {
4999
5000
  Signer: "signer";
5000
5001
  };
5001
- sharing: string | number;
5002
5002
  mode: "Amount" | "Rate" | "Surplus";
5003
5003
  }[];
5004
5004
  max?: string | number | null | undefined;
@@ -5006,10 +5006,10 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5006
5006
  }>, "many">;
5007
5007
  }, "strip", z.ZodTypeAny, {
5008
5008
  description: string;
5009
- threshold: string | number;
5010
5009
  allocators: {
5011
5010
  guard: string;
5012
5011
  sharing: {
5012
+ sharing: string | number;
5013
5013
  who: {
5014
5014
  GuardIdentifier: number;
5015
5015
  } | {
@@ -5020,18 +5020,18 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5020
5020
  } | {
5021
5021
  Signer: "signer";
5022
5022
  };
5023
- sharing: string | number;
5024
5023
  mode: "Amount" | "Rate" | "Surplus";
5025
5024
  }[];
5026
5025
  max?: string | number | null | undefined;
5027
5026
  fix?: string | number | undefined;
5028
5027
  }[];
5028
+ threshold: string | number;
5029
5029
  }, {
5030
5030
  description: string;
5031
- threshold: string | number;
5032
5031
  allocators: {
5033
5032
  guard: string;
5034
5033
  sharing: {
5034
+ sharing: string | number;
5035
5035
  who: {
5036
5036
  GuardIdentifier: number;
5037
5037
  } | {
@@ -5042,12 +5042,12 @@ export declare const ObjectServiceSchema: z.ZodObject<{
5042
5042
  } | {
5043
5043
  Signer: "signer";
5044
5044
  };
5045
- sharing: string | number;
5046
5045
  mode: "Amount" | "Rate" | "Surplus";
5047
5046
  }[];
5048
5047
  max?: string | number | null | undefined;
5049
5048
  fix?: string | number | undefined;
5050
5049
  }[];
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]>;
@@ -9516,6 +9516,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9516
9516
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
9517
9517
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
9518
9518
  }, "strip", z.ZodTypeAny, {
9519
+ sharing: string | number;
9519
9520
  who: {
9520
9521
  GuardIdentifier: number;
9521
9522
  } | {
@@ -9526,9 +9527,9 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9526
9527
  } | {
9527
9528
  Signer: "signer";
9528
9529
  };
9529
- sharing: string | number;
9530
9530
  mode: "Amount" | "Rate" | "Surplus";
9531
9531
  }, {
9532
+ sharing: string | number;
9532
9533
  who: {
9533
9534
  GuardIdentifier: number;
9534
9535
  } | {
@@ -9539,7 +9540,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9539
9540
  } | {
9540
9541
  Signer: "signer";
9541
9542
  };
9542
- sharing: string | number;
9543
9543
  mode: "Amount" | "Rate" | "Surplus";
9544
9544
  }>, "many">;
9545
9545
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -9547,6 +9547,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9547
9547
  }, "strip", z.ZodTypeAny, {
9548
9548
  guard: string;
9549
9549
  sharing: {
9550
+ sharing: string | number;
9550
9551
  who: {
9551
9552
  GuardIdentifier: number;
9552
9553
  } | {
@@ -9557,7 +9558,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9557
9558
  } | {
9558
9559
  Signer: "signer";
9559
9560
  };
9560
- sharing: string | number;
9561
9561
  mode: "Amount" | "Rate" | "Surplus";
9562
9562
  }[];
9563
9563
  max?: string | number | null | undefined;
@@ -9565,6 +9565,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9565
9565
  }, {
9566
9566
  guard: string;
9567
9567
  sharing: {
9568
+ sharing: string | number;
9568
9569
  who: {
9569
9570
  GuardIdentifier: number;
9570
9571
  } | {
@@ -9575,7 +9576,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9575
9576
  } | {
9576
9577
  Signer: "signer";
9577
9578
  };
9578
- sharing: string | number;
9579
9579
  mode: "Amount" | "Rate" | "Surplus";
9580
9580
  }[];
9581
9581
  max?: string | number | null | undefined;
@@ -9710,6 +9710,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9710
9710
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
9711
9711
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
9712
9712
  }, "strip", z.ZodTypeAny, {
9713
+ sharing: string | number;
9713
9714
  who: {
9714
9715
  GuardIdentifier: number;
9715
9716
  } | {
@@ -9720,9 +9721,9 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9720
9721
  } | {
9721
9722
  Signer: "signer";
9722
9723
  };
9723
- sharing: string | number;
9724
9724
  mode: "Amount" | "Rate" | "Surplus";
9725
9725
  }, {
9726
+ sharing: string | number;
9726
9727
  who: {
9727
9728
  GuardIdentifier: number;
9728
9729
  } | {
@@ -9733,7 +9734,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9733
9734
  } | {
9734
9735
  Signer: "signer";
9735
9736
  };
9736
- sharing: string | number;
9737
9737
  mode: "Amount" | "Rate" | "Surplus";
9738
9738
  }>, "many">;
9739
9739
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -9741,6 +9741,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9741
9741
  }, "strip", z.ZodTypeAny, {
9742
9742
  guard: string;
9743
9743
  sharing: {
9744
+ sharing: string | number;
9744
9745
  who: {
9745
9746
  GuardIdentifier: number;
9746
9747
  } | {
@@ -9751,7 +9752,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9751
9752
  } | {
9752
9753
  Signer: "signer";
9753
9754
  };
9754
- sharing: string | number;
9755
9755
  mode: "Amount" | "Rate" | "Surplus";
9756
9756
  }[];
9757
9757
  max?: string | number | null | undefined;
@@ -9759,6 +9759,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9759
9759
  }, {
9760
9760
  guard: string;
9761
9761
  sharing: {
9762
+ sharing: string | number;
9762
9763
  who: {
9763
9764
  GuardIdentifier: number;
9764
9765
  } | {
@@ -9769,7 +9770,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9769
9770
  } | {
9770
9771
  Signer: "signer";
9771
9772
  };
9772
- sharing: string | number;
9773
9773
  mode: "Amount" | "Rate" | "Surplus";
9774
9774
  }[];
9775
9775
  max?: string | number | null | undefined;
@@ -9904,6 +9904,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9904
9904
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
9905
9905
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
9906
9906
  }, "strip", z.ZodTypeAny, {
9907
+ sharing: string | number;
9907
9908
  who: {
9908
9909
  GuardIdentifier: number;
9909
9910
  } | {
@@ -9914,9 +9915,9 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9914
9915
  } | {
9915
9916
  Signer: "signer";
9916
9917
  };
9917
- sharing: string | number;
9918
9918
  mode: "Amount" | "Rate" | "Surplus";
9919
9919
  }, {
9920
+ sharing: string | number;
9920
9921
  who: {
9921
9922
  GuardIdentifier: number;
9922
9923
  } | {
@@ -9927,7 +9928,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9927
9928
  } | {
9928
9929
  Signer: "signer";
9929
9930
  };
9930
- sharing: string | number;
9931
9931
  mode: "Amount" | "Rate" | "Surplus";
9932
9932
  }>, "many">;
9933
9933
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -9935,6 +9935,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9935
9935
  }, "strip", z.ZodTypeAny, {
9936
9936
  guard: string;
9937
9937
  sharing: {
9938
+ sharing: string | number;
9938
9939
  who: {
9939
9940
  GuardIdentifier: number;
9940
9941
  } | {
@@ -9945,7 +9946,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9945
9946
  } | {
9946
9947
  Signer: "signer";
9947
9948
  };
9948
- sharing: string | number;
9949
9949
  mode: "Amount" | "Rate" | "Surplus";
9950
9950
  }[];
9951
9951
  max?: string | number | null | undefined;
@@ -9953,6 +9953,7 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9953
9953
  }, {
9954
9954
  guard: string;
9955
9955
  sharing: {
9956
+ sharing: string | number;
9956
9957
  who: {
9957
9958
  GuardIdentifier: number;
9958
9959
  } | {
@@ -9963,7 +9964,6 @@ export declare const ObjectAllocationSchema: z.ZodObject<{
9963
9964
  } | {
9964
9965
  Signer: "signer";
9965
9966
  };
9966
- sharing: string | number;
9967
9967
  mode: "Amount" | "Rate" | "Surplus";
9968
9968
  }[];
9969
9969
  max?: string | number | null | undefined;
@@ -13694,6 +13694,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13694
13694
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13695
13695
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
13696
13696
  }, "strip", z.ZodTypeAny, {
13697
+ sharing: string | number;
13697
13698
  who: {
13698
13699
  GuardIdentifier: number;
13699
13700
  } | {
@@ -13704,9 +13705,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13704
13705
  } | {
13705
13706
  Signer: "signer";
13706
13707
  };
13707
- sharing: string | number;
13708
13708
  mode: "Amount" | "Rate" | "Surplus";
13709
13709
  }, {
13710
+ sharing: string | number;
13710
13711
  who: {
13711
13712
  GuardIdentifier: number;
13712
13713
  } | {
@@ -13717,7 +13718,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13717
13718
  } | {
13718
13719
  Signer: "signer";
13719
13720
  };
13720
- sharing: string | number;
13721
13721
  mode: "Amount" | "Rate" | "Surplus";
13722
13722
  }>, "many">;
13723
13723
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -13725,6 +13725,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13725
13725
  }, "strip", z.ZodTypeAny, {
13726
13726
  guard: string;
13727
13727
  sharing: {
13728
+ sharing: string | number;
13728
13729
  who: {
13729
13730
  GuardIdentifier: number;
13730
13731
  } | {
@@ -13735,7 +13736,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13735
13736
  } | {
13736
13737
  Signer: "signer";
13737
13738
  };
13738
- sharing: string | number;
13739
13739
  mode: "Amount" | "Rate" | "Surplus";
13740
13740
  }[];
13741
13741
  max?: string | number | null | undefined;
@@ -13743,6 +13743,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13743
13743
  }, {
13744
13744
  guard: string;
13745
13745
  sharing: {
13746
+ sharing: string | number;
13746
13747
  who: {
13747
13748
  GuardIdentifier: number;
13748
13749
  } | {
@@ -13753,7 +13754,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13753
13754
  } | {
13754
13755
  Signer: "signer";
13755
13756
  };
13756
- sharing: string | number;
13757
13757
  mode: "Amount" | "Rate" | "Surplus";
13758
13758
  }[];
13759
13759
  max?: string | number | null | undefined;
@@ -13761,10 +13761,10 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13761
13761
  }>, "many">;
13762
13762
  }, "strip", z.ZodTypeAny, {
13763
13763
  description: string;
13764
- threshold: string | number;
13765
13764
  allocators: {
13766
13765
  guard: string;
13767
13766
  sharing: {
13767
+ sharing: string | number;
13768
13768
  who: {
13769
13769
  GuardIdentifier: number;
13770
13770
  } | {
@@ -13775,18 +13775,18 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13775
13775
  } | {
13776
13776
  Signer: "signer";
13777
13777
  };
13778
- sharing: string | number;
13779
13778
  mode: "Amount" | "Rate" | "Surplus";
13780
13779
  }[];
13781
13780
  max?: string | number | null | undefined;
13782
13781
  fix?: string | number | undefined;
13783
13782
  }[];
13783
+ threshold: string | number;
13784
13784
  }, {
13785
13785
  description: string;
13786
- threshold: string | number;
13787
13786
  allocators: {
13788
13787
  guard: string;
13789
13788
  sharing: {
13789
+ sharing: string | number;
13790
13790
  who: {
13791
13791
  GuardIdentifier: number;
13792
13792
  } | {
@@ -13797,12 +13797,12 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13797
13797
  } | {
13798
13798
  Signer: "signer";
13799
13799
  };
13800
- sharing: string | number;
13801
13800
  mode: "Amount" | "Rate" | "Surplus";
13802
13801
  }[];
13803
13802
  max?: string | number | null | undefined;
13804
13803
  fix?: string | number | undefined;
13805
13804
  }[];
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]>;
@@ -13954,6 +13954,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13954
13954
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13955
13955
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
13956
13956
  }, "strip", z.ZodTypeAny, {
13957
+ sharing: string | number;
13957
13958
  who: {
13958
13959
  GuardIdentifier: number;
13959
13960
  } | {
@@ -13964,9 +13965,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13964
13965
  } | {
13965
13966
  Signer: "signer";
13966
13967
  };
13967
- sharing: string | number;
13968
13968
  mode: "Amount" | "Rate" | "Surplus";
13969
13969
  }, {
13970
+ sharing: string | number;
13970
13971
  who: {
13971
13972
  GuardIdentifier: number;
13972
13973
  } | {
@@ -13977,7 +13978,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13977
13978
  } | {
13978
13979
  Signer: "signer";
13979
13980
  };
13980
- sharing: string | number;
13981
13981
  mode: "Amount" | "Rate" | "Surplus";
13982
13982
  }>, "many">;
13983
13983
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -13985,6 +13985,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13985
13985
  }, "strip", z.ZodTypeAny, {
13986
13986
  guard: string;
13987
13987
  sharing: {
13988
+ sharing: string | number;
13988
13989
  who: {
13989
13990
  GuardIdentifier: number;
13990
13991
  } | {
@@ -13995,7 +13996,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
13995
13996
  } | {
13996
13997
  Signer: "signer";
13997
13998
  };
13998
- sharing: string | number;
13999
13999
  mode: "Amount" | "Rate" | "Surplus";
14000
14000
  }[];
14001
14001
  max?: string | number | null | undefined;
@@ -14003,6 +14003,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14003
14003
  }, {
14004
14004
  guard: string;
14005
14005
  sharing: {
14006
+ sharing: string | number;
14006
14007
  who: {
14007
14008
  GuardIdentifier: number;
14008
14009
  } | {
@@ -14013,7 +14014,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14013
14014
  } | {
14014
14015
  Signer: "signer";
14015
14016
  };
14016
- sharing: string | number;
14017
14017
  mode: "Amount" | "Rate" | "Surplus";
14018
14018
  }[];
14019
14019
  max?: string | number | null | undefined;
@@ -14021,10 +14021,10 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14021
14021
  }>, "many">;
14022
14022
  }, "strip", z.ZodTypeAny, {
14023
14023
  description: string;
14024
- threshold: string | number;
14025
14024
  allocators: {
14026
14025
  guard: string;
14027
14026
  sharing: {
14027
+ sharing: string | number;
14028
14028
  who: {
14029
14029
  GuardIdentifier: number;
14030
14030
  } | {
@@ -14035,18 +14035,18 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14035
14035
  } | {
14036
14036
  Signer: "signer";
14037
14037
  };
14038
- sharing: string | number;
14039
14038
  mode: "Amount" | "Rate" | "Surplus";
14040
14039
  }[];
14041
14040
  max?: string | number | null | undefined;
14042
14041
  fix?: string | number | undefined;
14043
14042
  }[];
14043
+ threshold: string | number;
14044
14044
  }, {
14045
14045
  description: string;
14046
- threshold: string | number;
14047
14046
  allocators: {
14048
14047
  guard: string;
14049
14048
  sharing: {
14049
+ sharing: string | number;
14050
14050
  who: {
14051
14051
  GuardIdentifier: number;
14052
14052
  } | {
@@ -14057,12 +14057,12 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14057
14057
  } | {
14058
14058
  Signer: "signer";
14059
14059
  };
14060
- sharing: string | number;
14061
14060
  mode: "Amount" | "Rate" | "Surplus";
14062
14061
  }[];
14063
14062
  max?: string | number | null | undefined;
14064
14063
  fix?: string | number | undefined;
14065
14064
  }[];
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]>;
@@ -14214,6 +14214,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14214
14214
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
14215
14215
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
14216
14216
  }, "strip", z.ZodTypeAny, {
14217
+ sharing: string | number;
14217
14218
  who: {
14218
14219
  GuardIdentifier: number;
14219
14220
  } | {
@@ -14224,9 +14225,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14224
14225
  } | {
14225
14226
  Signer: "signer";
14226
14227
  };
14227
- sharing: string | number;
14228
14228
  mode: "Amount" | "Rate" | "Surplus";
14229
14229
  }, {
14230
+ sharing: string | number;
14230
14231
  who: {
14231
14232
  GuardIdentifier: number;
14232
14233
  } | {
@@ -14237,7 +14238,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14237
14238
  } | {
14238
14239
  Signer: "signer";
14239
14240
  };
14240
- sharing: string | number;
14241
14241
  mode: "Amount" | "Rate" | "Surplus";
14242
14242
  }>, "many">;
14243
14243
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -14245,6 +14245,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14245
14245
  }, "strip", z.ZodTypeAny, {
14246
14246
  guard: string;
14247
14247
  sharing: {
14248
+ sharing: string | number;
14248
14249
  who: {
14249
14250
  GuardIdentifier: number;
14250
14251
  } | {
@@ -14255,7 +14256,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14255
14256
  } | {
14256
14257
  Signer: "signer";
14257
14258
  };
14258
- sharing: string | number;
14259
14259
  mode: "Amount" | "Rate" | "Surplus";
14260
14260
  }[];
14261
14261
  max?: string | number | null | undefined;
@@ -14263,6 +14263,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14263
14263
  }, {
14264
14264
  guard: string;
14265
14265
  sharing: {
14266
+ sharing: string | number;
14266
14267
  who: {
14267
14268
  GuardIdentifier: number;
14268
14269
  } | {
@@ -14273,7 +14274,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14273
14274
  } | {
14274
14275
  Signer: "signer";
14275
14276
  };
14276
- sharing: string | number;
14277
14277
  mode: "Amount" | "Rate" | "Surplus";
14278
14278
  }[];
14279
14279
  max?: string | number | null | undefined;
@@ -14281,10 +14281,10 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14281
14281
  }>, "many">;
14282
14282
  }, "strip", z.ZodTypeAny, {
14283
14283
  description: string;
14284
- threshold: string | number;
14285
14284
  allocators: {
14286
14285
  guard: string;
14287
14286
  sharing: {
14287
+ sharing: string | number;
14288
14288
  who: {
14289
14289
  GuardIdentifier: number;
14290
14290
  } | {
@@ -14295,18 +14295,18 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14295
14295
  } | {
14296
14296
  Signer: "signer";
14297
14297
  };
14298
- sharing: string | number;
14299
14298
  mode: "Amount" | "Rate" | "Surplus";
14300
14299
  }[];
14301
14300
  max?: string | number | null | undefined;
14302
14301
  fix?: string | number | undefined;
14303
14302
  }[];
14303
+ threshold: string | number;
14304
14304
  }, {
14305
14305
  description: string;
14306
- threshold: string | number;
14307
14306
  allocators: {
14308
14307
  guard: string;
14309
14308
  sharing: {
14309
+ sharing: string | number;
14310
14310
  who: {
14311
14311
  GuardIdentifier: number;
14312
14312
  } | {
@@ -14317,12 +14317,12 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
14317
14317
  } | {
14318
14318
  Signer: "signer";
14319
14319
  };
14320
- sharing: string | number;
14321
14320
  mode: "Amount" | "Rate" | "Surplus";
14322
14321
  }[];
14323
14322
  max?: string | number | null | undefined;
14324
14323
  fix?: string | number | undefined;
14325
14324
  }[];
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]>;
@@ -15908,6 +15908,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15908
15908
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
15909
15909
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
15910
15910
  }, "strip", z.ZodTypeAny, {
15911
+ sharing: string | number;
15911
15912
  who: {
15912
15913
  GuardIdentifier: number;
15913
15914
  } | {
@@ -15918,9 +15919,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15918
15919
  } | {
15919
15920
  Signer: "signer";
15920
15921
  };
15921
- sharing: string | number;
15922
15922
  mode: "Amount" | "Rate" | "Surplus";
15923
15923
  }, {
15924
+ sharing: string | number;
15924
15925
  who: {
15925
15926
  GuardIdentifier: number;
15926
15927
  } | {
@@ -15931,7 +15932,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15931
15932
  } | {
15932
15933
  Signer: "signer";
15933
15934
  };
15934
- sharing: string | number;
15935
15935
  mode: "Amount" | "Rate" | "Surplus";
15936
15936
  }>, "many">;
15937
15937
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -15939,6 +15939,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15939
15939
  }, "strip", z.ZodTypeAny, {
15940
15940
  guard: string;
15941
15941
  sharing: {
15942
+ sharing: string | number;
15942
15943
  who: {
15943
15944
  GuardIdentifier: number;
15944
15945
  } | {
@@ -15949,7 +15950,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15949
15950
  } | {
15950
15951
  Signer: "signer";
15951
15952
  };
15952
- sharing: string | number;
15953
15953
  mode: "Amount" | "Rate" | "Surplus";
15954
15954
  }[];
15955
15955
  max?: string | number | null | undefined;
@@ -15957,6 +15957,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15957
15957
  }, {
15958
15958
  guard: string;
15959
15959
  sharing: {
15960
+ sharing: string | number;
15960
15961
  who: {
15961
15962
  GuardIdentifier: number;
15962
15963
  } | {
@@ -15967,7 +15968,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
15967
15968
  } | {
15968
15969
  Signer: "signer";
15969
15970
  };
15970
- sharing: string | number;
15971
15971
  mode: "Amount" | "Rate" | "Surplus";
15972
15972
  }[];
15973
15973
  max?: string | number | null | undefined;
@@ -16102,6 +16102,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16102
16102
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
16103
16103
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
16104
16104
  }, "strip", z.ZodTypeAny, {
16105
+ sharing: string | number;
16105
16106
  who: {
16106
16107
  GuardIdentifier: number;
16107
16108
  } | {
@@ -16112,9 +16113,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16112
16113
  } | {
16113
16114
  Signer: "signer";
16114
16115
  };
16115
- sharing: string | number;
16116
16116
  mode: "Amount" | "Rate" | "Surplus";
16117
16117
  }, {
16118
+ sharing: string | number;
16118
16119
  who: {
16119
16120
  GuardIdentifier: number;
16120
16121
  } | {
@@ -16125,7 +16126,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16125
16126
  } | {
16126
16127
  Signer: "signer";
16127
16128
  };
16128
- sharing: string | number;
16129
16129
  mode: "Amount" | "Rate" | "Surplus";
16130
16130
  }>, "many">;
16131
16131
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -16133,6 +16133,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16133
16133
  }, "strip", z.ZodTypeAny, {
16134
16134
  guard: string;
16135
16135
  sharing: {
16136
+ sharing: string | number;
16136
16137
  who: {
16137
16138
  GuardIdentifier: number;
16138
16139
  } | {
@@ -16143,7 +16144,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16143
16144
  } | {
16144
16145
  Signer: "signer";
16145
16146
  };
16146
- sharing: string | number;
16147
16147
  mode: "Amount" | "Rate" | "Surplus";
16148
16148
  }[];
16149
16149
  max?: string | number | null | undefined;
@@ -16151,6 +16151,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16151
16151
  }, {
16152
16152
  guard: string;
16153
16153
  sharing: {
16154
+ sharing: string | number;
16154
16155
  who: {
16155
16156
  GuardIdentifier: number;
16156
16157
  } | {
@@ -16161,7 +16162,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16161
16162
  } | {
16162
16163
  Signer: "signer";
16163
16164
  };
16164
- sharing: string | number;
16165
16165
  mode: "Amount" | "Rate" | "Surplus";
16166
16166
  }[];
16167
16167
  max?: string | number | null | undefined;
@@ -16296,6 +16296,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16296
16296
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
16297
16297
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
16298
16298
  }, "strip", z.ZodTypeAny, {
16299
+ sharing: string | number;
16299
16300
  who: {
16300
16301
  GuardIdentifier: number;
16301
16302
  } | {
@@ -16306,9 +16307,9 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16306
16307
  } | {
16307
16308
  Signer: "signer";
16308
16309
  };
16309
- sharing: string | number;
16310
16310
  mode: "Amount" | "Rate" | "Surplus";
16311
16311
  }, {
16312
+ sharing: string | number;
16312
16313
  who: {
16313
16314
  GuardIdentifier: number;
16314
16315
  } | {
@@ -16319,7 +16320,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16319
16320
  } | {
16320
16321
  Signer: "signer";
16321
16322
  };
16322
- sharing: string | number;
16323
16323
  mode: "Amount" | "Rate" | "Surplus";
16324
16324
  }>, "many">;
16325
16325
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -16327,6 +16327,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16327
16327
  }, "strip", z.ZodTypeAny, {
16328
16328
  guard: string;
16329
16329
  sharing: {
16330
+ sharing: string | number;
16330
16331
  who: {
16331
16332
  GuardIdentifier: number;
16332
16333
  } | {
@@ -16337,7 +16338,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16337
16338
  } | {
16338
16339
  Signer: "signer";
16339
16340
  };
16340
- sharing: string | number;
16341
16341
  mode: "Amount" | "Rate" | "Surplus";
16342
16342
  }[];
16343
16343
  max?: string | number | null | undefined;
@@ -16345,6 +16345,7 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16345
16345
  }, {
16346
16346
  guard: string;
16347
16347
  sharing: {
16348
+ sharing: string | number;
16348
16349
  who: {
16349
16350
  GuardIdentifier: number;
16350
16351
  } | {
@@ -16355,7 +16356,6 @@ export declare const ObjectUnionSchema: z.ZodUnion<[z.ZodObject<{
16355
16356
  } | {
16356
16357
  Signer: "signer";
16357
16358
  };
16358
- sharing: string | number;
16359
16359
  mode: "Amount" | "Rate" | "Surplus";
16360
16360
  }[];
16361
16361
  max?: string | number | null | undefined;
@@ -21925,6 +21925,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21925
21925
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
21926
21926
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
21927
21927
  }, "strip", z.ZodTypeAny, {
21928
+ sharing: string | number;
21928
21929
  who: {
21929
21930
  GuardIdentifier: number;
21930
21931
  } | {
@@ -21935,9 +21936,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21935
21936
  } | {
21936
21937
  Signer: "signer";
21937
21938
  };
21938
- sharing: string | number;
21939
21939
  mode: "Amount" | "Rate" | "Surplus";
21940
21940
  }, {
21941
+ sharing: string | number;
21941
21942
  who: {
21942
21943
  GuardIdentifier: number;
21943
21944
  } | {
@@ -21948,7 +21949,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21948
21949
  } | {
21949
21950
  Signer: "signer";
21950
21951
  };
21951
- sharing: string | number;
21952
21952
  mode: "Amount" | "Rate" | "Surplus";
21953
21953
  }>, "many">;
21954
21954
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -21956,6 +21956,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21956
21956
  }, "strip", z.ZodTypeAny, {
21957
21957
  guard: string;
21958
21958
  sharing: {
21959
+ sharing: string | number;
21959
21960
  who: {
21960
21961
  GuardIdentifier: number;
21961
21962
  } | {
@@ -21966,7 +21967,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21966
21967
  } | {
21967
21968
  Signer: "signer";
21968
21969
  };
21969
- sharing: string | number;
21970
21970
  mode: "Amount" | "Rate" | "Surplus";
21971
21971
  }[];
21972
21972
  max?: string | number | null | undefined;
@@ -21974,6 +21974,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21974
21974
  }, {
21975
21975
  guard: string;
21976
21976
  sharing: {
21977
+ sharing: string | number;
21977
21978
  who: {
21978
21979
  GuardIdentifier: number;
21979
21980
  } | {
@@ -21984,7 +21985,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21984
21985
  } | {
21985
21986
  Signer: "signer";
21986
21987
  };
21987
- sharing: string | number;
21988
21988
  mode: "Amount" | "Rate" | "Surplus";
21989
21989
  }[];
21990
21990
  max?: string | number | null | undefined;
@@ -21992,10 +21992,10 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
21992
21992
  }>, "many">;
21993
21993
  }, "strip", z.ZodTypeAny, {
21994
21994
  description: string;
21995
- threshold: string | number;
21996
21995
  allocators: {
21997
21996
  guard: string;
21998
21997
  sharing: {
21998
+ sharing: string | number;
21999
21999
  who: {
22000
22000
  GuardIdentifier: number;
22001
22001
  } | {
@@ -22006,18 +22006,18 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22006
22006
  } | {
22007
22007
  Signer: "signer";
22008
22008
  };
22009
- sharing: string | number;
22010
22009
  mode: "Amount" | "Rate" | "Surplus";
22011
22010
  }[];
22012
22011
  max?: string | number | null | undefined;
22013
22012
  fix?: string | number | undefined;
22014
22013
  }[];
22014
+ threshold: string | number;
22015
22015
  }, {
22016
22016
  description: string;
22017
- threshold: string | number;
22018
22017
  allocators: {
22019
22018
  guard: string;
22020
22019
  sharing: {
22020
+ sharing: string | number;
22021
22021
  who: {
22022
22022
  GuardIdentifier: number;
22023
22023
  } | {
@@ -22028,12 +22028,12 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22028
22028
  } | {
22029
22029
  Signer: "signer";
22030
22030
  };
22031
- sharing: string | number;
22032
22031
  mode: "Amount" | "Rate" | "Surplus";
22033
22032
  }[];
22034
22033
  max?: string | number | null | undefined;
22035
22034
  fix?: string | number | undefined;
22036
22035
  }[];
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]>;
@@ -22185,6 +22185,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22185
22185
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
22186
22186
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
22187
22187
  }, "strip", z.ZodTypeAny, {
22188
+ sharing: string | number;
22188
22189
  who: {
22189
22190
  GuardIdentifier: number;
22190
22191
  } | {
@@ -22195,9 +22196,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22195
22196
  } | {
22196
22197
  Signer: "signer";
22197
22198
  };
22198
- sharing: string | number;
22199
22199
  mode: "Amount" | "Rate" | "Surplus";
22200
22200
  }, {
22201
+ sharing: string | number;
22201
22202
  who: {
22202
22203
  GuardIdentifier: number;
22203
22204
  } | {
@@ -22208,7 +22209,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22208
22209
  } | {
22209
22210
  Signer: "signer";
22210
22211
  };
22211
- sharing: string | number;
22212
22212
  mode: "Amount" | "Rate" | "Surplus";
22213
22213
  }>, "many">;
22214
22214
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -22216,6 +22216,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22216
22216
  }, "strip", z.ZodTypeAny, {
22217
22217
  guard: string;
22218
22218
  sharing: {
22219
+ sharing: string | number;
22219
22220
  who: {
22220
22221
  GuardIdentifier: number;
22221
22222
  } | {
@@ -22226,7 +22227,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22226
22227
  } | {
22227
22228
  Signer: "signer";
22228
22229
  };
22229
- sharing: string | number;
22230
22230
  mode: "Amount" | "Rate" | "Surplus";
22231
22231
  }[];
22232
22232
  max?: string | number | null | undefined;
@@ -22234,6 +22234,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22234
22234
  }, {
22235
22235
  guard: string;
22236
22236
  sharing: {
22237
+ sharing: string | number;
22237
22238
  who: {
22238
22239
  GuardIdentifier: number;
22239
22240
  } | {
@@ -22244,7 +22245,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22244
22245
  } | {
22245
22246
  Signer: "signer";
22246
22247
  };
22247
- sharing: string | number;
22248
22248
  mode: "Amount" | "Rate" | "Surplus";
22249
22249
  }[];
22250
22250
  max?: string | number | null | undefined;
@@ -22252,10 +22252,10 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22252
22252
  }>, "many">;
22253
22253
  }, "strip", z.ZodTypeAny, {
22254
22254
  description: string;
22255
- threshold: string | number;
22256
22255
  allocators: {
22257
22256
  guard: string;
22258
22257
  sharing: {
22258
+ sharing: string | number;
22259
22259
  who: {
22260
22260
  GuardIdentifier: number;
22261
22261
  } | {
@@ -22266,18 +22266,18 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22266
22266
  } | {
22267
22267
  Signer: "signer";
22268
22268
  };
22269
- sharing: string | number;
22270
22269
  mode: "Amount" | "Rate" | "Surplus";
22271
22270
  }[];
22272
22271
  max?: string | number | null | undefined;
22273
22272
  fix?: string | number | undefined;
22274
22273
  }[];
22274
+ threshold: string | number;
22275
22275
  }, {
22276
22276
  description: string;
22277
- threshold: string | number;
22278
22277
  allocators: {
22279
22278
  guard: string;
22280
22279
  sharing: {
22280
+ sharing: string | number;
22281
22281
  who: {
22282
22282
  GuardIdentifier: number;
22283
22283
  } | {
@@ -22288,12 +22288,12 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22288
22288
  } | {
22289
22289
  Signer: "signer";
22290
22290
  };
22291
- sharing: string | number;
22292
22291
  mode: "Amount" | "Rate" | "Surplus";
22293
22292
  }[];
22294
22293
  max?: string | number | null | undefined;
22295
22294
  fix?: string | number | undefined;
22296
22295
  }[];
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]>;
@@ -22445,6 +22445,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22445
22445
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
22446
22446
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
22447
22447
  }, "strip", z.ZodTypeAny, {
22448
+ sharing: string | number;
22448
22449
  who: {
22449
22450
  GuardIdentifier: number;
22450
22451
  } | {
@@ -22455,9 +22456,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22455
22456
  } | {
22456
22457
  Signer: "signer";
22457
22458
  };
22458
- sharing: string | number;
22459
22459
  mode: "Amount" | "Rate" | "Surplus";
22460
22460
  }, {
22461
+ sharing: string | number;
22461
22462
  who: {
22462
22463
  GuardIdentifier: number;
22463
22464
  } | {
@@ -22468,7 +22469,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22468
22469
  } | {
22469
22470
  Signer: "signer";
22470
22471
  };
22471
- sharing: string | number;
22472
22472
  mode: "Amount" | "Rate" | "Surplus";
22473
22473
  }>, "many">;
22474
22474
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -22476,6 +22476,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22476
22476
  }, "strip", z.ZodTypeAny, {
22477
22477
  guard: string;
22478
22478
  sharing: {
22479
+ sharing: string | number;
22479
22480
  who: {
22480
22481
  GuardIdentifier: number;
22481
22482
  } | {
@@ -22486,7 +22487,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22486
22487
  } | {
22487
22488
  Signer: "signer";
22488
22489
  };
22489
- sharing: string | number;
22490
22490
  mode: "Amount" | "Rate" | "Surplus";
22491
22491
  }[];
22492
22492
  max?: string | number | null | undefined;
@@ -22494,6 +22494,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22494
22494
  }, {
22495
22495
  guard: string;
22496
22496
  sharing: {
22497
+ sharing: string | number;
22497
22498
  who: {
22498
22499
  GuardIdentifier: number;
22499
22500
  } | {
@@ -22504,7 +22505,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22504
22505
  } | {
22505
22506
  Signer: "signer";
22506
22507
  };
22507
- sharing: string | number;
22508
22508
  mode: "Amount" | "Rate" | "Surplus";
22509
22509
  }[];
22510
22510
  max?: string | number | null | undefined;
@@ -22512,10 +22512,10 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22512
22512
  }>, "many">;
22513
22513
  }, "strip", z.ZodTypeAny, {
22514
22514
  description: string;
22515
- threshold: string | number;
22516
22515
  allocators: {
22517
22516
  guard: string;
22518
22517
  sharing: {
22518
+ sharing: string | number;
22519
22519
  who: {
22520
22520
  GuardIdentifier: number;
22521
22521
  } | {
@@ -22526,18 +22526,18 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22526
22526
  } | {
22527
22527
  Signer: "signer";
22528
22528
  };
22529
- sharing: string | number;
22530
22529
  mode: "Amount" | "Rate" | "Surplus";
22531
22530
  }[];
22532
22531
  max?: string | number | null | undefined;
22533
22532
  fix?: string | number | undefined;
22534
22533
  }[];
22534
+ threshold: string | number;
22535
22535
  }, {
22536
22536
  description: string;
22537
- threshold: string | number;
22538
22537
  allocators: {
22539
22538
  guard: string;
22540
22539
  sharing: {
22540
+ sharing: string | number;
22541
22541
  who: {
22542
22542
  GuardIdentifier: number;
22543
22543
  } | {
@@ -22548,12 +22548,12 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
22548
22548
  } | {
22549
22549
  Signer: "signer";
22550
22550
  };
22551
- sharing: string | number;
22552
22551
  mode: "Amount" | "Rate" | "Surplus";
22553
22552
  }[];
22554
22553
  max?: string | number | null | undefined;
22555
22554
  fix?: string | number | undefined;
22556
22555
  }[];
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]>;
@@ -24139,6 +24139,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24139
24139
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
24140
24140
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
24141
24141
  }, "strip", z.ZodTypeAny, {
24142
+ sharing: string | number;
24142
24143
  who: {
24143
24144
  GuardIdentifier: number;
24144
24145
  } | {
@@ -24149,9 +24150,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24149
24150
  } | {
24150
24151
  Signer: "signer";
24151
24152
  };
24152
- sharing: string | number;
24153
24153
  mode: "Amount" | "Rate" | "Surplus";
24154
24154
  }, {
24155
+ sharing: string | number;
24155
24156
  who: {
24156
24157
  GuardIdentifier: number;
24157
24158
  } | {
@@ -24162,7 +24163,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24162
24163
  } | {
24163
24164
  Signer: "signer";
24164
24165
  };
24165
- sharing: string | number;
24166
24166
  mode: "Amount" | "Rate" | "Surplus";
24167
24167
  }>, "many">;
24168
24168
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -24170,6 +24170,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24170
24170
  }, "strip", z.ZodTypeAny, {
24171
24171
  guard: string;
24172
24172
  sharing: {
24173
+ sharing: string | number;
24173
24174
  who: {
24174
24175
  GuardIdentifier: number;
24175
24176
  } | {
@@ -24180,7 +24181,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24180
24181
  } | {
24181
24182
  Signer: "signer";
24182
24183
  };
24183
- sharing: string | number;
24184
24184
  mode: "Amount" | "Rate" | "Surplus";
24185
24185
  }[];
24186
24186
  max?: string | number | null | undefined;
@@ -24188,6 +24188,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24188
24188
  }, {
24189
24189
  guard: string;
24190
24190
  sharing: {
24191
+ sharing: string | number;
24191
24192
  who: {
24192
24193
  GuardIdentifier: number;
24193
24194
  } | {
@@ -24198,7 +24199,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24198
24199
  } | {
24199
24200
  Signer: "signer";
24200
24201
  };
24201
- sharing: string | number;
24202
24202
  mode: "Amount" | "Rate" | "Surplus";
24203
24203
  }[];
24204
24204
  max?: string | number | null | undefined;
@@ -24333,6 +24333,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24333
24333
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
24334
24334
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
24335
24335
  }, "strip", z.ZodTypeAny, {
24336
+ sharing: string | number;
24336
24337
  who: {
24337
24338
  GuardIdentifier: number;
24338
24339
  } | {
@@ -24343,9 +24344,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24343
24344
  } | {
24344
24345
  Signer: "signer";
24345
24346
  };
24346
- sharing: string | number;
24347
24347
  mode: "Amount" | "Rate" | "Surplus";
24348
24348
  }, {
24349
+ sharing: string | number;
24349
24350
  who: {
24350
24351
  GuardIdentifier: number;
24351
24352
  } | {
@@ -24356,7 +24357,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24356
24357
  } | {
24357
24358
  Signer: "signer";
24358
24359
  };
24359
- sharing: string | number;
24360
24360
  mode: "Amount" | "Rate" | "Surplus";
24361
24361
  }>, "many">;
24362
24362
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -24364,6 +24364,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24364
24364
  }, "strip", z.ZodTypeAny, {
24365
24365
  guard: string;
24366
24366
  sharing: {
24367
+ sharing: string | number;
24367
24368
  who: {
24368
24369
  GuardIdentifier: number;
24369
24370
  } | {
@@ -24374,7 +24375,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24374
24375
  } | {
24375
24376
  Signer: "signer";
24376
24377
  };
24377
- sharing: string | number;
24378
24378
  mode: "Amount" | "Rate" | "Surplus";
24379
24379
  }[];
24380
24380
  max?: string | number | null | undefined;
@@ -24382,6 +24382,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24382
24382
  }, {
24383
24383
  guard: string;
24384
24384
  sharing: {
24385
+ sharing: string | number;
24385
24386
  who: {
24386
24387
  GuardIdentifier: number;
24387
24388
  } | {
@@ -24392,7 +24393,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24392
24393
  } | {
24393
24394
  Signer: "signer";
24394
24395
  };
24395
- sharing: string | number;
24396
24396
  mode: "Amount" | "Rate" | "Surplus";
24397
24397
  }[];
24398
24398
  max?: string | number | null | undefined;
@@ -24527,6 +24527,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24527
24527
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
24528
24528
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
24529
24529
  }, "strip", z.ZodTypeAny, {
24530
+ sharing: string | number;
24530
24531
  who: {
24531
24532
  GuardIdentifier: number;
24532
24533
  } | {
@@ -24537,9 +24538,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24537
24538
  } | {
24538
24539
  Signer: "signer";
24539
24540
  };
24540
- sharing: string | number;
24541
24541
  mode: "Amount" | "Rate" | "Surplus";
24542
24542
  }, {
24543
+ sharing: string | number;
24543
24544
  who: {
24544
24545
  GuardIdentifier: number;
24545
24546
  } | {
@@ -24550,7 +24551,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24550
24551
  } | {
24551
24552
  Signer: "signer";
24552
24553
  };
24553
- sharing: string | number;
24554
24554
  mode: "Amount" | "Rate" | "Surplus";
24555
24555
  }>, "many">;
24556
24556
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -24558,6 +24558,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24558
24558
  }, "strip", z.ZodTypeAny, {
24559
24559
  guard: string;
24560
24560
  sharing: {
24561
+ sharing: string | number;
24561
24562
  who: {
24562
24563
  GuardIdentifier: number;
24563
24564
  } | {
@@ -24568,7 +24569,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24568
24569
  } | {
24569
24570
  Signer: "signer";
24570
24571
  };
24571
- sharing: string | number;
24572
24572
  mode: "Amount" | "Rate" | "Surplus";
24573
24573
  }[];
24574
24574
  max?: string | number | null | undefined;
@@ -24576,6 +24576,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24576
24576
  }, {
24577
24577
  guard: string;
24578
24578
  sharing: {
24579
+ sharing: string | number;
24579
24580
  who: {
24580
24581
  GuardIdentifier: number;
24581
24582
  } | {
@@ -24586,7 +24587,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
24586
24587
  } | {
24587
24588
  Signer: "signer";
24588
24589
  };
24589
- sharing: string | number;
24590
24590
  mode: "Amount" | "Rate" | "Surplus";
24591
24591
  }[];
24592
24592
  max?: string | number | null | undefined;
@@ -30278,6 +30278,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30278
30278
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
30279
30279
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
30280
30280
  }, "strip", z.ZodTypeAny, {
30281
+ sharing: string | number;
30281
30282
  who: {
30282
30283
  GuardIdentifier: number;
30283
30284
  } | {
@@ -30288,9 +30289,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30288
30289
  } | {
30289
30290
  Signer: "signer";
30290
30291
  };
30291
- sharing: string | number;
30292
30292
  mode: "Amount" | "Rate" | "Surplus";
30293
30293
  }, {
30294
+ sharing: string | number;
30294
30295
  who: {
30295
30296
  GuardIdentifier: number;
30296
30297
  } | {
@@ -30301,7 +30302,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30301
30302
  } | {
30302
30303
  Signer: "signer";
30303
30304
  };
30304
- sharing: string | number;
30305
30305
  mode: "Amount" | "Rate" | "Surplus";
30306
30306
  }>, "many">;
30307
30307
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -30309,6 +30309,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30309
30309
  }, "strip", z.ZodTypeAny, {
30310
30310
  guard: string;
30311
30311
  sharing: {
30312
+ sharing: string | number;
30312
30313
  who: {
30313
30314
  GuardIdentifier: number;
30314
30315
  } | {
@@ -30319,7 +30320,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30319
30320
  } | {
30320
30321
  Signer: "signer";
30321
30322
  };
30322
- sharing: string | number;
30323
30323
  mode: "Amount" | "Rate" | "Surplus";
30324
30324
  }[];
30325
30325
  max?: string | number | null | undefined;
@@ -30327,6 +30327,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30327
30327
  }, {
30328
30328
  guard: string;
30329
30329
  sharing: {
30330
+ sharing: string | number;
30330
30331
  who: {
30331
30332
  GuardIdentifier: number;
30332
30333
  } | {
@@ -30337,7 +30338,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30337
30338
  } | {
30338
30339
  Signer: "signer";
30339
30340
  };
30340
- sharing: string | number;
30341
30341
  mode: "Amount" | "Rate" | "Surplus";
30342
30342
  }[];
30343
30343
  max?: string | number | null | undefined;
@@ -30345,10 +30345,10 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30345
30345
  }>, "many">;
30346
30346
  }, "strip", z.ZodTypeAny, {
30347
30347
  description: string;
30348
- threshold: string | number;
30349
30348
  allocators: {
30350
30349
  guard: string;
30351
30350
  sharing: {
30351
+ sharing: string | number;
30352
30352
  who: {
30353
30353
  GuardIdentifier: number;
30354
30354
  } | {
@@ -30359,18 +30359,18 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30359
30359
  } | {
30360
30360
  Signer: "signer";
30361
30361
  };
30362
- sharing: string | number;
30363
30362
  mode: "Amount" | "Rate" | "Surplus";
30364
30363
  }[];
30365
30364
  max?: string | number | null | undefined;
30366
30365
  fix?: string | number | undefined;
30367
30366
  }[];
30367
+ threshold: string | number;
30368
30368
  }, {
30369
30369
  description: string;
30370
- threshold: string | number;
30371
30370
  allocators: {
30372
30371
  guard: string;
30373
30372
  sharing: {
30373
+ sharing: string | number;
30374
30374
  who: {
30375
30375
  GuardIdentifier: number;
30376
30376
  } | {
@@ -30381,12 +30381,12 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
30381
30381
  } | {
30382
30382
  Signer: "signer";
30383
30383
  };
30384
- sharing: string | number;
30385
30384
  mode: "Amount" | "Rate" | "Surplus";
30386
30385
  }[];
30387
30386
  max?: string | number | null | undefined;
30388
30387
  fix?: string | number | undefined;
30389
30388
  }[];
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]>;
@@ -31615,6 +31615,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
31615
31615
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
31616
31616
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
31617
31617
  }, "strip", z.ZodTypeAny, {
31618
+ sharing: string | number;
31618
31619
  who: {
31619
31620
  GuardIdentifier: number;
31620
31621
  } | {
@@ -31625,9 +31626,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
31625
31626
  } | {
31626
31627
  Signer: "signer";
31627
31628
  };
31628
- sharing: string | number;
31629
31629
  mode: "Amount" | "Rate" | "Surplus";
31630
31630
  }, {
31631
+ sharing: string | number;
31631
31632
  who: {
31632
31633
  GuardIdentifier: number;
31633
31634
  } | {
@@ -31638,7 +31639,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
31638
31639
  } | {
31639
31640
  Signer: "signer";
31640
31641
  };
31641
- sharing: string | number;
31642
31642
  mode: "Amount" | "Rate" | "Surplus";
31643
31643
  }>, "many">;
31644
31644
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -31646,6 +31646,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
31646
31646
  }, "strip", z.ZodTypeAny, {
31647
31647
  guard: string;
31648
31648
  sharing: {
31649
+ sharing: string | number;
31649
31650
  who: {
31650
31651
  GuardIdentifier: number;
31651
31652
  } | {
@@ -31656,7 +31657,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
31656
31657
  } | {
31657
31658
  Signer: "signer";
31658
31659
  };
31659
- sharing: string | number;
31660
31660
  mode: "Amount" | "Rate" | "Surplus";
31661
31661
  }[];
31662
31662
  max?: string | number | null | undefined;
@@ -31664,6 +31664,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
31664
31664
  }, {
31665
31665
  guard: string;
31666
31666
  sharing: {
31667
+ sharing: string | number;
31667
31668
  who: {
31668
31669
  GuardIdentifier: number;
31669
31670
  } | {
@@ -31674,7 +31675,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
31674
31675
  } | {
31675
31676
  Signer: "signer";
31676
31677
  };
31677
- sharing: string | number;
31678
31678
  mode: "Amount" | "Rate" | "Surplus";
31679
31679
  }[];
31680
31680
  max?: string | number | null | undefined;
@@ -33023,6 +33023,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33023
33023
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
33024
33024
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
33025
33025
  }, "strip", z.ZodTypeAny, {
33026
+ sharing: string | number;
33026
33027
  who: {
33027
33028
  GuardIdentifier: number;
33028
33029
  } | {
@@ -33033,9 +33034,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33033
33034
  } | {
33034
33035
  Signer: "signer";
33035
33036
  };
33036
- sharing: string | number;
33037
33037
  mode: "Amount" | "Rate" | "Surplus";
33038
33038
  }, {
33039
+ sharing: string | number;
33039
33040
  who: {
33040
33041
  GuardIdentifier: number;
33041
33042
  } | {
@@ -33046,7 +33047,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33046
33047
  } | {
33047
33048
  Signer: "signer";
33048
33049
  };
33049
- sharing: string | number;
33050
33050
  mode: "Amount" | "Rate" | "Surplus";
33051
33051
  }>, "many">;
33052
33052
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -33054,6 +33054,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33054
33054
  }, "strip", z.ZodTypeAny, {
33055
33055
  guard: string;
33056
33056
  sharing: {
33057
+ sharing: string | number;
33057
33058
  who: {
33058
33059
  GuardIdentifier: number;
33059
33060
  } | {
@@ -33064,7 +33065,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33064
33065
  } | {
33065
33066
  Signer: "signer";
33066
33067
  };
33067
- sharing: string | number;
33068
33068
  mode: "Amount" | "Rate" | "Surplus";
33069
33069
  }[];
33070
33070
  max?: string | number | null | undefined;
@@ -33072,6 +33072,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33072
33072
  }, {
33073
33073
  guard: string;
33074
33074
  sharing: {
33075
+ sharing: string | number;
33075
33076
  who: {
33076
33077
  GuardIdentifier: number;
33077
33078
  } | {
@@ -33082,7 +33083,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33082
33083
  } | {
33083
33084
  Signer: "signer";
33084
33085
  };
33085
- sharing: string | number;
33086
33086
  mode: "Amount" | "Rate" | "Surplus";
33087
33087
  }[];
33088
33088
  max?: string | number | null | undefined;
@@ -33090,10 +33090,10 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33090
33090
  }>, "many">;
33091
33091
  }, "strip", z.ZodTypeAny, {
33092
33092
  description: string;
33093
- threshold: string | number;
33094
33093
  allocators: {
33095
33094
  guard: string;
33096
33095
  sharing: {
33096
+ sharing: string | number;
33097
33097
  who: {
33098
33098
  GuardIdentifier: number;
33099
33099
  } | {
@@ -33104,18 +33104,18 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33104
33104
  } | {
33105
33105
  Signer: "signer";
33106
33106
  };
33107
- sharing: string | number;
33108
33107
  mode: "Amount" | "Rate" | "Surplus";
33109
33108
  }[];
33110
33109
  max?: string | number | null | undefined;
33111
33110
  fix?: string | number | undefined;
33112
33111
  }[];
33112
+ threshold: string | number;
33113
33113
  }, {
33114
33114
  description: string;
33115
- threshold: string | number;
33116
33115
  allocators: {
33117
33116
  guard: string;
33118
33117
  sharing: {
33118
+ sharing: string | number;
33119
33119
  who: {
33120
33120
  GuardIdentifier: number;
33121
33121
  } | {
@@ -33126,12 +33126,12 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
33126
33126
  } | {
33127
33127
  Signer: "signer";
33128
33128
  };
33129
- sharing: string | number;
33130
33129
  mode: "Amount" | "Rate" | "Surplus";
33131
33130
  }[];
33132
33131
  max?: string | number | null | undefined;
33133
33132
  fix?: string | number | undefined;
33134
33133
  }[];
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]>;
@@ -34360,6 +34360,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
34360
34360
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
34361
34361
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
34362
34362
  }, "strip", z.ZodTypeAny, {
34363
+ sharing: string | number;
34363
34364
  who: {
34364
34365
  GuardIdentifier: number;
34365
34366
  } | {
@@ -34370,9 +34371,9 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
34370
34371
  } | {
34371
34372
  Signer: "signer";
34372
34373
  };
34373
- sharing: string | number;
34374
34374
  mode: "Amount" | "Rate" | "Surplus";
34375
34375
  }, {
34376
+ sharing: string | number;
34376
34377
  who: {
34377
34378
  GuardIdentifier: number;
34378
34379
  } | {
@@ -34383,7 +34384,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
34383
34384
  } | {
34384
34385
  Signer: "signer";
34385
34386
  };
34386
- sharing: string | number;
34387
34387
  mode: "Amount" | "Rate" | "Surplus";
34388
34388
  }>, "many">;
34389
34389
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -34391,6 +34391,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
34391
34391
  }, "strip", z.ZodTypeAny, {
34392
34392
  guard: string;
34393
34393
  sharing: {
34394
+ sharing: string | number;
34394
34395
  who: {
34395
34396
  GuardIdentifier: number;
34396
34397
  } | {
@@ -34401,7 +34402,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
34401
34402
  } | {
34402
34403
  Signer: "signer";
34403
34404
  };
34404
- sharing: string | number;
34405
34405
  mode: "Amount" | "Rate" | "Surplus";
34406
34406
  }[];
34407
34407
  max?: string | number | null | undefined;
@@ -34409,6 +34409,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
34409
34409
  }, {
34410
34410
  guard: string;
34411
34411
  sharing: {
34412
+ sharing: string | number;
34412
34413
  who: {
34413
34414
  GuardIdentifier: number;
34414
34415
  } | {
@@ -34419,7 +34420,6 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
34419
34420
  } | {
34420
34421
  Signer: "signer";
34421
34422
  };
34422
- sharing: string | number;
34423
34423
  mode: "Amount" | "Rate" | "Surplus";
34424
34424
  }[];
34425
34425
  max?: string | number | null | undefined;
@@ -34915,20 +34915,20 @@ export declare const QueryTableItem_byNameAddressSchema: z.ZodObject<{
34915
34915
  }>, z.ZodNumber]>;
34916
34916
  }, "strict", z.ZodTypeAny, {
34917
34917
  name: string;
34918
+ parent: string;
34918
34919
  entity: number | {
34919
34920
  name_or_address?: string | undefined;
34920
34921
  local_mark_first?: boolean | undefined;
34921
34922
  };
34922
- parent: string;
34923
34923
  no_cache?: boolean | undefined;
34924
34924
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
34925
34925
  }, {
34926
34926
  name: string;
34927
+ parent: string;
34927
34928
  entity: number | {
34928
34929
  name_or_address?: string | undefined;
34929
34930
  local_mark_first?: boolean | undefined;
34930
34931
  };
34931
- parent: string;
34932
34932
  no_cache?: boolean | undefined;
34933
34933
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
34934
34934
  }>;
@@ -35040,9 +35040,9 @@ export declare const ArbEventSchema: z.ZodObject<{
35040
35040
  };
35041
35041
  time: string | number;
35042
35042
  sender: string;
35043
- arbitration: string;
35044
35043
  order: string;
35045
35044
  arb: string;
35045
+ arbitration: string;
35046
35046
  parsedJson_raw?: any;
35047
35047
  }, {
35048
35048
  type: string;
@@ -35054,9 +35054,9 @@ export declare const ArbEventSchema: z.ZodObject<{
35054
35054
  };
35055
35055
  time: string | number;
35056
35056
  sender: string;
35057
- arbitration: string;
35058
35057
  order: string;
35059
35058
  arb: string;
35059
+ arbitration: string;
35060
35060
  parsedJson_raw?: any;
35061
35061
  }>;
35062
35062
  export declare const NewOrderEventSchema: z.ZodObject<{
@@ -35094,9 +35094,9 @@ export declare const NewOrderEventSchema: z.ZodObject<{
35094
35094
  sender: string;
35095
35095
  service: string;
35096
35096
  order: string;
35097
- discount?: string | null | undefined;
35098
- progress?: string | null | undefined;
35099
35097
  allocation?: string | null | undefined;
35098
+ progress?: string | null | undefined;
35099
+ discount?: string | null | undefined;
35100
35100
  parsedJson_raw?: any;
35101
35101
  }, {
35102
35102
  type: string;
@@ -35110,9 +35110,9 @@ export declare const NewOrderEventSchema: z.ZodObject<{
35110
35110
  sender: string;
35111
35111
  service: string;
35112
35112
  order: string;
35113
- discount?: string | null | undefined;
35114
- progress?: string | null | undefined;
35115
35113
  allocation?: string | null | undefined;
35114
+ progress?: string | null | undefined;
35115
+ discount?: string | null | undefined;
35116
35116
  parsedJson_raw?: any;
35117
35117
  }>;
35118
35118
  export declare const ProgressEventSchema: z.ZodObject<{
@@ -35147,8 +35147,8 @@ export declare const ProgressEventSchema: z.ZodObject<{
35147
35147
  };
35148
35148
  time: string | number;
35149
35149
  sender: string;
35150
- progress: string;
35151
35150
  machine: string;
35151
+ progress: string;
35152
35152
  node: string;
35153
35153
  forward?: string | null | undefined;
35154
35154
  task?: string | null | undefined;
@@ -35163,8 +35163,8 @@ export declare const ProgressEventSchema: z.ZodObject<{
35163
35163
  };
35164
35164
  time: string | number;
35165
35165
  sender: string;
35166
- progress: string;
35167
35166
  machine: string;
35167
+ progress: string;
35168
35168
  node: string;
35169
35169
  forward?: string | null | undefined;
35170
35170
  task?: string | null | undefined;
@@ -35200,8 +35200,8 @@ export declare const DemandPresentEventSchema: z.ZodObject<{
35200
35200
  };
35201
35201
  time: string | number;
35202
35202
  sender: string;
35203
- recommend: string;
35204
35203
  demand: string;
35204
+ recommend: string;
35205
35205
  service?: string | null | undefined;
35206
35206
  parsedJson_raw?: any;
35207
35207
  }, {
@@ -35213,8 +35213,8 @@ export declare const DemandPresentEventSchema: z.ZodObject<{
35213
35213
  };
35214
35214
  time: string | number;
35215
35215
  sender: string;
35216
- recommend: string;
35217
35216
  demand: string;
35217
+ recommend: string;
35218
35218
  service?: string | null | undefined;
35219
35219
  parsedJson_raw?: any;
35220
35220
  }>;
@@ -35248,8 +35248,8 @@ export declare const DemandFeedbackEventSchema: z.ZodObject<{
35248
35248
  };
35249
35249
  time: string | number;
35250
35250
  sender: string;
35251
- feedback: string;
35252
35251
  demand: string;
35252
+ feedback: string;
35253
35253
  service?: string | null | undefined;
35254
35254
  acceptance_score?: number | null | undefined;
35255
35255
  parsedJson_raw?: any;
@@ -35262,8 +35262,8 @@ export declare const DemandFeedbackEventSchema: z.ZodObject<{
35262
35262
  };
35263
35263
  time: string | number;
35264
35264
  sender: string;
35265
- feedback: string;
35266
35265
  demand: string;
35266
+ feedback: string;
35267
35267
  service?: string | null | undefined;
35268
35268
  acceptance_score?: number | null | undefined;
35269
35269
  parsedJson_raw?: any;
@@ -35383,9 +35383,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35383
35383
  };
35384
35384
  time: string | number;
35385
35385
  sender: string;
35386
- arbitration: string;
35387
35386
  order: string;
35388
35387
  arb: string;
35388
+ arbitration: string;
35389
35389
  parsedJson_raw?: any;
35390
35390
  }, {
35391
35391
  type: string;
@@ -35397,9 +35397,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35397
35397
  };
35398
35398
  time: string | number;
35399
35399
  sender: string;
35400
- arbitration: string;
35401
35400
  order: string;
35402
35401
  arb: string;
35402
+ arbitration: string;
35403
35403
  parsedJson_raw?: any;
35404
35404
  }>, z.ZodObject<{
35405
35405
  id: z.ZodObject<{
@@ -35436,9 +35436,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35436
35436
  sender: string;
35437
35437
  service: string;
35438
35438
  order: string;
35439
- discount?: string | null | undefined;
35440
- progress?: string | null | undefined;
35441
35439
  allocation?: string | null | undefined;
35440
+ progress?: string | null | undefined;
35441
+ discount?: string | null | undefined;
35442
35442
  parsedJson_raw?: any;
35443
35443
  }, {
35444
35444
  type: string;
@@ -35452,9 +35452,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35452
35452
  sender: string;
35453
35453
  service: string;
35454
35454
  order: string;
35455
- discount?: string | null | undefined;
35456
- progress?: string | null | undefined;
35457
35455
  allocation?: string | null | undefined;
35456
+ progress?: string | null | undefined;
35457
+ discount?: string | null | undefined;
35458
35458
  parsedJson_raw?: any;
35459
35459
  }>, z.ZodObject<{
35460
35460
  id: z.ZodObject<{
@@ -35488,8 +35488,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35488
35488
  };
35489
35489
  time: string | number;
35490
35490
  sender: string;
35491
- progress: string;
35492
35491
  machine: string;
35492
+ progress: string;
35493
35493
  node: string;
35494
35494
  forward?: string | null | undefined;
35495
35495
  task?: string | null | undefined;
@@ -35504,8 +35504,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35504
35504
  };
35505
35505
  time: string | number;
35506
35506
  sender: string;
35507
- progress: string;
35508
35507
  machine: string;
35508
+ progress: string;
35509
35509
  node: string;
35510
35510
  forward?: string | null | undefined;
35511
35511
  task?: string | null | undefined;
@@ -35540,8 +35540,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35540
35540
  };
35541
35541
  time: string | number;
35542
35542
  sender: string;
35543
- recommend: string;
35544
35543
  demand: string;
35544
+ recommend: string;
35545
35545
  service?: string | null | undefined;
35546
35546
  parsedJson_raw?: any;
35547
35547
  }, {
@@ -35553,8 +35553,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35553
35553
  };
35554
35554
  time: string | number;
35555
35555
  sender: string;
35556
- recommend: string;
35557
35556
  demand: string;
35557
+ recommend: string;
35558
35558
  service?: string | null | undefined;
35559
35559
  parsedJson_raw?: any;
35560
35560
  }>, z.ZodObject<{
@@ -35587,8 +35587,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35587
35587
  };
35588
35588
  time: string | number;
35589
35589
  sender: string;
35590
- feedback: string;
35591
35590
  demand: string;
35591
+ feedback: string;
35592
35592
  service?: string | null | undefined;
35593
35593
  acceptance_score?: number | null | undefined;
35594
35594
  parsedJson_raw?: any;
@@ -35601,8 +35601,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35601
35601
  };
35602
35602
  time: string | number;
35603
35603
  sender: string;
35604
- feedback: string;
35605
35604
  demand: string;
35605
+ feedback: string;
35606
35606
  service?: string | null | undefined;
35607
35607
  acceptance_score?: number | null | undefined;
35608
35608
  parsedJson_raw?: any;
@@ -35686,9 +35686,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35686
35686
  };
35687
35687
  time: string | number;
35688
35688
  sender: string;
35689
- arbitration: string;
35690
35689
  order: string;
35691
35690
  arb: string;
35691
+ arbitration: string;
35692
35692
  parsedJson_raw?: any;
35693
35693
  } | {
35694
35694
  type: string;
@@ -35702,9 +35702,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35702
35702
  sender: string;
35703
35703
  service: string;
35704
35704
  order: string;
35705
- discount?: string | null | undefined;
35706
- progress?: string | null | undefined;
35707
35705
  allocation?: string | null | undefined;
35706
+ progress?: string | null | undefined;
35707
+ discount?: string | null | undefined;
35708
35708
  parsedJson_raw?: any;
35709
35709
  } | {
35710
35710
  type: string;
@@ -35715,8 +35715,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35715
35715
  };
35716
35716
  time: string | number;
35717
35717
  sender: string;
35718
- progress: string;
35719
35718
  machine: string;
35719
+ progress: string;
35720
35720
  node: string;
35721
35721
  forward?: string | null | undefined;
35722
35722
  task?: string | null | undefined;
@@ -35731,8 +35731,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35731
35731
  };
35732
35732
  time: string | number;
35733
35733
  sender: string;
35734
- recommend: string;
35735
35734
  demand: string;
35735
+ recommend: string;
35736
35736
  service?: string | null | undefined;
35737
35737
  parsedJson_raw?: any;
35738
35738
  } | {
@@ -35744,8 +35744,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35744
35744
  };
35745
35745
  time: string | number;
35746
35746
  sender: string;
35747
- feedback: string;
35748
35747
  demand: string;
35748
+ feedback: string;
35749
35749
  service?: string | null | undefined;
35750
35750
  acceptance_score?: number | null | undefined;
35751
35751
  parsedJson_raw?: any;
@@ -35790,9 +35790,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35790
35790
  };
35791
35791
  time: string | number;
35792
35792
  sender: string;
35793
- arbitration: string;
35794
35793
  order: string;
35795
35794
  arb: string;
35795
+ arbitration: string;
35796
35796
  parsedJson_raw?: any;
35797
35797
  } | {
35798
35798
  type: string;
@@ -35806,9 +35806,9 @@ export declare const EventAnswerSchema: z.ZodObject<{
35806
35806
  sender: string;
35807
35807
  service: string;
35808
35808
  order: string;
35809
- discount?: string | null | undefined;
35810
- progress?: string | null | undefined;
35811
35809
  allocation?: string | null | undefined;
35810
+ progress?: string | null | undefined;
35811
+ discount?: string | null | undefined;
35812
35812
  parsedJson_raw?: any;
35813
35813
  } | {
35814
35814
  type: string;
@@ -35819,8 +35819,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35819
35819
  };
35820
35820
  time: string | number;
35821
35821
  sender: string;
35822
- progress: string;
35823
35822
  machine: string;
35823
+ progress: string;
35824
35824
  node: string;
35825
35825
  forward?: string | null | undefined;
35826
35826
  task?: string | null | undefined;
@@ -35835,8 +35835,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35835
35835
  };
35836
35836
  time: string | number;
35837
35837
  sender: string;
35838
- recommend: string;
35839
35838
  demand: string;
35839
+ recommend: string;
35840
35840
  service?: string | null | undefined;
35841
35841
  parsedJson_raw?: any;
35842
35842
  } | {
@@ -35848,8 +35848,8 @@ export declare const EventAnswerSchema: z.ZodObject<{
35848
35848
  };
35849
35849
  time: string | number;
35850
35850
  sender: string;
35851
- feedback: string;
35852
35851
  demand: string;
35852
+ feedback: string;
35853
35853
  service?: string | null | undefined;
35854
35854
  acceptance_score?: number | null | undefined;
35855
35855
  parsedJson_raw?: any;
@@ -36018,9 +36018,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36018
36018
  };
36019
36019
  time: string | number;
36020
36020
  sender: string;
36021
- arbitration: string;
36022
36021
  order: string;
36023
36022
  arb: string;
36023
+ arbitration: string;
36024
36024
  parsedJson_raw?: any;
36025
36025
  }, {
36026
36026
  type: string;
@@ -36032,9 +36032,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36032
36032
  };
36033
36033
  time: string | number;
36034
36034
  sender: string;
36035
- arbitration: string;
36036
36035
  order: string;
36037
36036
  arb: string;
36037
+ arbitration: string;
36038
36038
  parsedJson_raw?: any;
36039
36039
  }>, z.ZodObject<{
36040
36040
  id: z.ZodObject<{
@@ -36071,9 +36071,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36071
36071
  sender: string;
36072
36072
  service: string;
36073
36073
  order: string;
36074
- discount?: string | null | undefined;
36075
- progress?: string | null | undefined;
36076
36074
  allocation?: string | null | undefined;
36075
+ progress?: string | null | undefined;
36076
+ discount?: string | null | undefined;
36077
36077
  parsedJson_raw?: any;
36078
36078
  }, {
36079
36079
  type: string;
@@ -36087,9 +36087,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36087
36087
  sender: string;
36088
36088
  service: string;
36089
36089
  order: string;
36090
- discount?: string | null | undefined;
36091
- progress?: string | null | undefined;
36092
36090
  allocation?: string | null | undefined;
36091
+ progress?: string | null | undefined;
36092
+ discount?: string | null | undefined;
36093
36093
  parsedJson_raw?: any;
36094
36094
  }>, z.ZodObject<{
36095
36095
  id: z.ZodObject<{
@@ -36123,8 +36123,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36123
36123
  };
36124
36124
  time: string | number;
36125
36125
  sender: string;
36126
- progress: string;
36127
36126
  machine: string;
36127
+ progress: string;
36128
36128
  node: string;
36129
36129
  forward?: string | null | undefined;
36130
36130
  task?: string | null | undefined;
@@ -36139,8 +36139,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36139
36139
  };
36140
36140
  time: string | number;
36141
36141
  sender: string;
36142
- progress: string;
36143
36142
  machine: string;
36143
+ progress: string;
36144
36144
  node: string;
36145
36145
  forward?: string | null | undefined;
36146
36146
  task?: string | null | undefined;
@@ -36175,8 +36175,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36175
36175
  };
36176
36176
  time: string | number;
36177
36177
  sender: string;
36178
- recommend: string;
36179
36178
  demand: string;
36179
+ recommend: string;
36180
36180
  service?: string | null | undefined;
36181
36181
  parsedJson_raw?: any;
36182
36182
  }, {
@@ -36188,8 +36188,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36188
36188
  };
36189
36189
  time: string | number;
36190
36190
  sender: string;
36191
- recommend: string;
36192
36191
  demand: string;
36192
+ recommend: string;
36193
36193
  service?: string | null | undefined;
36194
36194
  parsedJson_raw?: any;
36195
36195
  }>, z.ZodObject<{
@@ -36222,8 +36222,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36222
36222
  };
36223
36223
  time: string | number;
36224
36224
  sender: string;
36225
- feedback: string;
36226
36225
  demand: string;
36226
+ feedback: string;
36227
36227
  service?: string | null | undefined;
36228
36228
  acceptance_score?: number | null | undefined;
36229
36229
  parsedJson_raw?: any;
@@ -36236,8 +36236,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36236
36236
  };
36237
36237
  time: string | number;
36238
36238
  sender: string;
36239
- feedback: string;
36240
36239
  demand: string;
36240
+ feedback: string;
36241
36241
  service?: string | null | undefined;
36242
36242
  acceptance_score?: number | null | undefined;
36243
36243
  parsedJson_raw?: any;
@@ -36321,9 +36321,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36321
36321
  };
36322
36322
  time: string | number;
36323
36323
  sender: string;
36324
- arbitration: string;
36325
36324
  order: string;
36326
36325
  arb: string;
36326
+ arbitration: string;
36327
36327
  parsedJson_raw?: any;
36328
36328
  } | {
36329
36329
  type: string;
@@ -36337,9 +36337,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36337
36337
  sender: string;
36338
36338
  service: string;
36339
36339
  order: string;
36340
- discount?: string | null | undefined;
36341
- progress?: string | null | undefined;
36342
36340
  allocation?: string | null | undefined;
36341
+ progress?: string | null | undefined;
36342
+ discount?: string | null | undefined;
36343
36343
  parsedJson_raw?: any;
36344
36344
  } | {
36345
36345
  type: string;
@@ -36350,8 +36350,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36350
36350
  };
36351
36351
  time: string | number;
36352
36352
  sender: string;
36353
- progress: string;
36354
36353
  machine: string;
36354
+ progress: string;
36355
36355
  node: string;
36356
36356
  forward?: string | null | undefined;
36357
36357
  task?: string | null | undefined;
@@ -36366,8 +36366,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36366
36366
  };
36367
36367
  time: string | number;
36368
36368
  sender: string;
36369
- recommend: string;
36370
36369
  demand: string;
36370
+ recommend: string;
36371
36371
  service?: string | null | undefined;
36372
36372
  parsedJson_raw?: any;
36373
36373
  } | {
@@ -36379,8 +36379,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36379
36379
  };
36380
36380
  time: string | number;
36381
36381
  sender: string;
36382
- feedback: string;
36383
36382
  demand: string;
36383
+ feedback: string;
36384
36384
  service?: string | null | undefined;
36385
36385
  acceptance_score?: number | null | undefined;
36386
36386
  parsedJson_raw?: any;
@@ -36425,9 +36425,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36425
36425
  };
36426
36426
  time: string | number;
36427
36427
  sender: string;
36428
- arbitration: string;
36429
36428
  order: string;
36430
36429
  arb: string;
36430
+ arbitration: string;
36431
36431
  parsedJson_raw?: any;
36432
36432
  } | {
36433
36433
  type: string;
@@ -36441,9 +36441,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36441
36441
  sender: string;
36442
36442
  service: string;
36443
36443
  order: string;
36444
- discount?: string | null | undefined;
36445
- progress?: string | null | undefined;
36446
36444
  allocation?: string | null | undefined;
36445
+ progress?: string | null | undefined;
36446
+ discount?: string | null | undefined;
36447
36447
  parsedJson_raw?: any;
36448
36448
  } | {
36449
36449
  type: string;
@@ -36454,8 +36454,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36454
36454
  };
36455
36455
  time: string | number;
36456
36456
  sender: string;
36457
- progress: string;
36458
36457
  machine: string;
36458
+ progress: string;
36459
36459
  node: string;
36460
36460
  forward?: string | null | undefined;
36461
36461
  task?: string | null | undefined;
@@ -36470,8 +36470,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36470
36470
  };
36471
36471
  time: string | number;
36472
36472
  sender: string;
36473
- recommend: string;
36474
36473
  demand: string;
36474
+ recommend: string;
36475
36475
  service?: string | null | undefined;
36476
36476
  parsedJson_raw?: any;
36477
36477
  } | {
@@ -36483,8 +36483,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36483
36483
  };
36484
36484
  time: string | number;
36485
36485
  sender: string;
36486
- feedback: string;
36487
36486
  demand: string;
36487
+ feedback: string;
36488
36488
  service?: string | null | undefined;
36489
36489
  acceptance_score?: number | null | undefined;
36490
36490
  parsedJson_raw?: any;
@@ -36509,6 +36509,7 @@ 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
36513
  }, "strip", z.ZodTypeAny, {
36513
36514
  result: {
36514
36515
  data: ({
@@ -36531,9 +36532,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36531
36532
  };
36532
36533
  time: string | number;
36533
36534
  sender: string;
36534
- arbitration: string;
36535
36535
  order: string;
36536
36536
  arb: string;
36537
+ arbitration: string;
36537
36538
  parsedJson_raw?: any;
36538
36539
  } | {
36539
36540
  type: string;
@@ -36547,9 +36548,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36547
36548
  sender: string;
36548
36549
  service: string;
36549
36550
  order: string;
36550
- discount?: string | null | undefined;
36551
- progress?: string | null | undefined;
36552
36551
  allocation?: string | null | undefined;
36552
+ progress?: string | null | undefined;
36553
+ discount?: string | null | undefined;
36553
36554
  parsedJson_raw?: any;
36554
36555
  } | {
36555
36556
  type: string;
@@ -36560,8 +36561,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36560
36561
  };
36561
36562
  time: string | number;
36562
36563
  sender: string;
36563
- progress: string;
36564
36564
  machine: string;
36565
+ progress: string;
36565
36566
  node: string;
36566
36567
  forward?: string | null | undefined;
36567
36568
  task?: string | null | undefined;
@@ -36576,8 +36577,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36576
36577
  };
36577
36578
  time: string | number;
36578
36579
  sender: string;
36579
- recommend: string;
36580
36580
  demand: string;
36581
+ recommend: string;
36581
36582
  service?: string | null | undefined;
36582
36583
  parsedJson_raw?: any;
36583
36584
  } | {
@@ -36589,8 +36590,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36589
36590
  };
36590
36591
  time: string | number;
36591
36592
  sender: string;
36592
- feedback: string;
36593
36593
  demand: string;
36594
+ feedback: string;
36594
36595
  service?: string | null | undefined;
36595
36596
  acceptance_score?: number | null | undefined;
36596
36597
  parsedJson_raw?: any;
@@ -36615,6 +36616,7 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36615
36616
  txDigest: string;
36616
36617
  } | null | undefined;
36617
36618
  } | null;
36619
+ semantic?: any;
36618
36620
  }, {
36619
36621
  result: {
36620
36622
  data: ({
@@ -36637,9 +36639,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36637
36639
  };
36638
36640
  time: string | number;
36639
36641
  sender: string;
36640
- arbitration: string;
36641
36642
  order: string;
36642
36643
  arb: string;
36644
+ arbitration: string;
36643
36645
  parsedJson_raw?: any;
36644
36646
  } | {
36645
36647
  type: string;
@@ -36653,9 +36655,9 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36653
36655
  sender: string;
36654
36656
  service: string;
36655
36657
  order: string;
36656
- discount?: string | null | undefined;
36657
- progress?: string | null | undefined;
36658
36658
  allocation?: string | null | undefined;
36659
+ progress?: string | null | undefined;
36660
+ discount?: string | null | undefined;
36659
36661
  parsedJson_raw?: any;
36660
36662
  } | {
36661
36663
  type: string;
@@ -36666,8 +36668,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36666
36668
  };
36667
36669
  time: string | number;
36668
36670
  sender: string;
36669
- progress: string;
36670
36671
  machine: string;
36672
+ progress: string;
36671
36673
  node: string;
36672
36674
  forward?: string | null | undefined;
36673
36675
  task?: string | null | undefined;
@@ -36682,8 +36684,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36682
36684
  };
36683
36685
  time: string | number;
36684
36686
  sender: string;
36685
- recommend: string;
36686
36687
  demand: string;
36688
+ recommend: string;
36687
36689
  service?: string | null | undefined;
36688
36690
  parsedJson_raw?: any;
36689
36691
  } | {
@@ -36695,8 +36697,8 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36695
36697
  };
36696
36698
  time: string | number;
36697
36699
  sender: string;
36698
- feedback: string;
36699
36700
  demand: string;
36701
+ feedback: string;
36700
36702
  service?: string | null | undefined;
36701
36703
  acceptance_score?: number | null | undefined;
36702
36704
  parsedJson_raw?: any;
@@ -36721,6 +36723,7 @@ export declare const OnchainEventsResultSchema: z.ZodObject<{
36721
36723
  txDigest: string;
36722
36724
  } | null | undefined;
36723
36725
  } | null;
36726
+ semantic?: any;
36724
36727
  }>;
36725
36728
  export declare const TableItem_RepositoryDataOrUndefinedSchema: z.ZodUnion<[z.ZodObject<{
36726
36729
  object: z.ZodString;
@@ -40685,9 +40688,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40685
40688
  };
40686
40689
  time: string | number;
40687
40690
  sender: string;
40688
- arbitration: string;
40689
40691
  order: string;
40690
40692
  arb: string;
40693
+ arbitration: string;
40691
40694
  parsedJson_raw?: any;
40692
40695
  }, {
40693
40696
  type: string;
@@ -40699,9 +40702,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40699
40702
  };
40700
40703
  time: string | number;
40701
40704
  sender: string;
40702
- arbitration: string;
40703
40705
  order: string;
40704
40706
  arb: string;
40707
+ arbitration: string;
40705
40708
  parsedJson_raw?: any;
40706
40709
  }>, z.ZodObject<{
40707
40710
  id: z.ZodObject<{
@@ -40738,9 +40741,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40738
40741
  sender: string;
40739
40742
  service: string;
40740
40743
  order: string;
40741
- discount?: string | null | undefined;
40742
- progress?: string | null | undefined;
40743
40744
  allocation?: string | null | undefined;
40745
+ progress?: string | null | undefined;
40746
+ discount?: string | null | undefined;
40744
40747
  parsedJson_raw?: any;
40745
40748
  }, {
40746
40749
  type: string;
@@ -40754,9 +40757,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40754
40757
  sender: string;
40755
40758
  service: string;
40756
40759
  order: string;
40757
- discount?: string | null | undefined;
40758
- progress?: string | null | undefined;
40759
40760
  allocation?: string | null | undefined;
40761
+ progress?: string | null | undefined;
40762
+ discount?: string | null | undefined;
40760
40763
  parsedJson_raw?: any;
40761
40764
  }>, z.ZodObject<{
40762
40765
  id: z.ZodObject<{
@@ -40790,8 +40793,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40790
40793
  };
40791
40794
  time: string | number;
40792
40795
  sender: string;
40793
- progress: string;
40794
40796
  machine: string;
40797
+ progress: string;
40795
40798
  node: string;
40796
40799
  forward?: string | null | undefined;
40797
40800
  task?: string | null | undefined;
@@ -40806,8 +40809,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40806
40809
  };
40807
40810
  time: string | number;
40808
40811
  sender: string;
40809
- progress: string;
40810
40812
  machine: string;
40813
+ progress: string;
40811
40814
  node: string;
40812
40815
  forward?: string | null | undefined;
40813
40816
  task?: string | null | undefined;
@@ -40842,8 +40845,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40842
40845
  };
40843
40846
  time: string | number;
40844
40847
  sender: string;
40845
- recommend: string;
40846
40848
  demand: string;
40849
+ recommend: string;
40847
40850
  service?: string | null | undefined;
40848
40851
  parsedJson_raw?: any;
40849
40852
  }, {
@@ -40855,8 +40858,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40855
40858
  };
40856
40859
  time: string | number;
40857
40860
  sender: string;
40858
- recommend: string;
40859
40861
  demand: string;
40862
+ recommend: string;
40860
40863
  service?: string | null | undefined;
40861
40864
  parsedJson_raw?: any;
40862
40865
  }>, z.ZodObject<{
@@ -40889,8 +40892,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40889
40892
  };
40890
40893
  time: string | number;
40891
40894
  sender: string;
40892
- feedback: string;
40893
40895
  demand: string;
40896
+ feedback: string;
40894
40897
  service?: string | null | undefined;
40895
40898
  acceptance_score?: number | null | undefined;
40896
40899
  parsedJson_raw?: any;
@@ -40903,8 +40906,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40903
40906
  };
40904
40907
  time: string | number;
40905
40908
  sender: string;
40906
- feedback: string;
40907
40909
  demand: string;
40910
+ feedback: string;
40908
40911
  service?: string | null | undefined;
40909
40912
  acceptance_score?: number | null | undefined;
40910
40913
  parsedJson_raw?: any;
@@ -40988,9 +40991,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
40988
40991
  };
40989
40992
  time: string | number;
40990
40993
  sender: string;
40991
- arbitration: string;
40992
40994
  order: string;
40993
40995
  arb: string;
40996
+ arbitration: string;
40994
40997
  parsedJson_raw?: any;
40995
40998
  } | {
40996
40999
  type: string;
@@ -41004,9 +41007,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41004
41007
  sender: string;
41005
41008
  service: string;
41006
41009
  order: string;
41007
- discount?: string | null | undefined;
41008
- progress?: string | null | undefined;
41009
41010
  allocation?: string | null | undefined;
41011
+ progress?: string | null | undefined;
41012
+ discount?: string | null | undefined;
41010
41013
  parsedJson_raw?: any;
41011
41014
  } | {
41012
41015
  type: string;
@@ -41017,8 +41020,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41017
41020
  };
41018
41021
  time: string | number;
41019
41022
  sender: string;
41020
- progress: string;
41021
41023
  machine: string;
41024
+ progress: string;
41022
41025
  node: string;
41023
41026
  forward?: string | null | undefined;
41024
41027
  task?: string | null | undefined;
@@ -41033,8 +41036,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41033
41036
  };
41034
41037
  time: string | number;
41035
41038
  sender: string;
41036
- recommend: string;
41037
41039
  demand: string;
41040
+ recommend: string;
41038
41041
  service?: string | null | undefined;
41039
41042
  parsedJson_raw?: any;
41040
41043
  } | {
@@ -41046,8 +41049,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41046
41049
  };
41047
41050
  time: string | number;
41048
41051
  sender: string;
41049
- feedback: string;
41050
41052
  demand: string;
41053
+ feedback: string;
41051
41054
  service?: string | null | undefined;
41052
41055
  acceptance_score?: number | null | undefined;
41053
41056
  parsedJson_raw?: any;
@@ -41092,9 +41095,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41092
41095
  };
41093
41096
  time: string | number;
41094
41097
  sender: string;
41095
- arbitration: string;
41096
41098
  order: string;
41097
41099
  arb: string;
41100
+ arbitration: string;
41098
41101
  parsedJson_raw?: any;
41099
41102
  } | {
41100
41103
  type: string;
@@ -41108,9 +41111,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41108
41111
  sender: string;
41109
41112
  service: string;
41110
41113
  order: string;
41111
- discount?: string | null | undefined;
41112
- progress?: string | null | undefined;
41113
41114
  allocation?: string | null | undefined;
41115
+ progress?: string | null | undefined;
41116
+ discount?: string | null | undefined;
41114
41117
  parsedJson_raw?: any;
41115
41118
  } | {
41116
41119
  type: string;
@@ -41121,8 +41124,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41121
41124
  };
41122
41125
  time: string | number;
41123
41126
  sender: string;
41124
- progress: string;
41125
41127
  machine: string;
41128
+ progress: string;
41126
41129
  node: string;
41127
41130
  forward?: string | null | undefined;
41128
41131
  task?: string | null | undefined;
@@ -41137,8 +41140,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41137
41140
  };
41138
41141
  time: string | number;
41139
41142
  sender: string;
41140
- recommend: string;
41141
41143
  demand: string;
41144
+ recommend: string;
41142
41145
  service?: string | null | undefined;
41143
41146
  parsedJson_raw?: any;
41144
41147
  } | {
@@ -41150,8 +41153,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41150
41153
  };
41151
41154
  time: string | number;
41152
41155
  sender: string;
41153
- feedback: string;
41154
41156
  demand: string;
41157
+ feedback: string;
41155
41158
  service?: string | null | undefined;
41156
41159
  acceptance_score?: number | null | undefined;
41157
41160
  parsedJson_raw?: any;
@@ -41198,9 +41201,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41198
41201
  };
41199
41202
  time: string | number;
41200
41203
  sender: string;
41201
- arbitration: string;
41202
41204
  order: string;
41203
41205
  arb: string;
41206
+ arbitration: string;
41204
41207
  parsedJson_raw?: any;
41205
41208
  } | {
41206
41209
  type: string;
@@ -41214,9 +41217,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41214
41217
  sender: string;
41215
41218
  service: string;
41216
41219
  order: string;
41217
- discount?: string | null | undefined;
41218
- progress?: string | null | undefined;
41219
41220
  allocation?: string | null | undefined;
41221
+ progress?: string | null | undefined;
41222
+ discount?: string | null | undefined;
41220
41223
  parsedJson_raw?: any;
41221
41224
  } | {
41222
41225
  type: string;
@@ -41227,8 +41230,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41227
41230
  };
41228
41231
  time: string | number;
41229
41232
  sender: string;
41230
- progress: string;
41231
41233
  machine: string;
41234
+ progress: string;
41232
41235
  node: string;
41233
41236
  forward?: string | null | undefined;
41234
41237
  task?: string | null | undefined;
@@ -41243,8 +41246,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41243
41246
  };
41244
41247
  time: string | number;
41245
41248
  sender: string;
41246
- recommend: string;
41247
41249
  demand: string;
41250
+ recommend: string;
41248
41251
  service?: string | null | undefined;
41249
41252
  parsedJson_raw?: any;
41250
41253
  } | {
@@ -41256,8 +41259,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41256
41259
  };
41257
41260
  time: string | number;
41258
41261
  sender: string;
41259
- feedback: string;
41260
41262
  demand: string;
41263
+ feedback: string;
41261
41264
  service?: string | null | undefined;
41262
41265
  acceptance_score?: number | null | undefined;
41263
41266
  parsedJson_raw?: any;
@@ -41304,9 +41307,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41304
41307
  };
41305
41308
  time: string | number;
41306
41309
  sender: string;
41307
- arbitration: string;
41308
41310
  order: string;
41309
41311
  arb: string;
41312
+ arbitration: string;
41310
41313
  parsedJson_raw?: any;
41311
41314
  } | {
41312
41315
  type: string;
@@ -41320,9 +41323,9 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41320
41323
  sender: string;
41321
41324
  service: string;
41322
41325
  order: string;
41323
- discount?: string | null | undefined;
41324
- progress?: string | null | undefined;
41325
41326
  allocation?: string | null | undefined;
41327
+ progress?: string | null | undefined;
41328
+ discount?: string | null | undefined;
41326
41329
  parsedJson_raw?: any;
41327
41330
  } | {
41328
41331
  type: string;
@@ -41333,8 +41336,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41333
41336
  };
41334
41337
  time: string | number;
41335
41338
  sender: string;
41336
- progress: string;
41337
41339
  machine: string;
41340
+ progress: string;
41338
41341
  node: string;
41339
41342
  forward?: string | null | undefined;
41340
41343
  task?: string | null | undefined;
@@ -41349,8 +41352,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41349
41352
  };
41350
41353
  time: string | number;
41351
41354
  sender: string;
41352
- recommend: string;
41353
41355
  demand: string;
41356
+ recommend: string;
41354
41357
  service?: string | null | undefined;
41355
41358
  parsedJson_raw?: any;
41356
41359
  } | {
@@ -41362,8 +41365,8 @@ export declare const EventAnswerOrUndefinedSchema: z.ZodObject<{
41362
41365
  };
41363
41366
  time: string | number;
41364
41367
  sender: string;
41365
- feedback: string;
41366
41368
  demand: string;
41369
+ feedback: string;
41367
41370
  service?: string | null | undefined;
41368
41371
  acceptance_score?: number | null | undefined;
41369
41372
  parsedJson_raw?: any;
@@ -41502,21 +41505,21 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
41502
41505
  }, "strip", z.ZodTypeAny, {
41503
41506
  type: "RepositoryData";
41504
41507
  name: string;
41508
+ parent: string;
41505
41509
  entity: number | {
41506
41510
  name_or_address?: string | undefined;
41507
41511
  local_mark_first?: boolean | undefined;
41508
41512
  };
41509
- parent: string;
41510
41513
  no_cache?: boolean | undefined;
41511
41514
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
41512
41515
  }, {
41513
41516
  type: "RepositoryData";
41514
41517
  name: string;
41518
+ parent: string;
41515
41519
  entity: number | {
41516
41520
  name_or_address?: string | undefined;
41517
41521
  local_mark_first?: boolean | undefined;
41518
41522
  };
41519
- parent: string;
41520
41523
  no_cache?: boolean | undefined;
41521
41524
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
41522
41525
  }>, z.ZodObject<{
@@ -49786,6 +49789,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49786
49789
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
49787
49790
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
49788
49791
  }, "strip", z.ZodTypeAny, {
49792
+ sharing: string | number;
49789
49793
  who: {
49790
49794
  GuardIdentifier: number;
49791
49795
  } | {
@@ -49796,9 +49800,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49796
49800
  } | {
49797
49801
  Signer: "signer";
49798
49802
  };
49799
- sharing: string | number;
49800
49803
  mode: "Amount" | "Rate" | "Surplus";
49801
49804
  }, {
49805
+ sharing: string | number;
49802
49806
  who: {
49803
49807
  GuardIdentifier: number;
49804
49808
  } | {
@@ -49809,7 +49813,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49809
49813
  } | {
49810
49814
  Signer: "signer";
49811
49815
  };
49812
- sharing: string | number;
49813
49816
  mode: "Amount" | "Rate" | "Surplus";
49814
49817
  }>, "many">;
49815
49818
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -49817,6 +49820,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49817
49820
  }, "strip", z.ZodTypeAny, {
49818
49821
  guard: string;
49819
49822
  sharing: {
49823
+ sharing: string | number;
49820
49824
  who: {
49821
49825
  GuardIdentifier: number;
49822
49826
  } | {
@@ -49827,7 +49831,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49827
49831
  } | {
49828
49832
  Signer: "signer";
49829
49833
  };
49830
- sharing: string | number;
49831
49834
  mode: "Amount" | "Rate" | "Surplus";
49832
49835
  }[];
49833
49836
  max?: string | number | null | undefined;
@@ -49835,6 +49838,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49835
49838
  }, {
49836
49839
  guard: string;
49837
49840
  sharing: {
49841
+ sharing: string | number;
49838
49842
  who: {
49839
49843
  GuardIdentifier: number;
49840
49844
  } | {
@@ -49845,7 +49849,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49845
49849
  } | {
49846
49850
  Signer: "signer";
49847
49851
  };
49848
- sharing: string | number;
49849
49852
  mode: "Amount" | "Rate" | "Surplus";
49850
49853
  }[];
49851
49854
  max?: string | number | null | undefined;
@@ -49853,10 +49856,10 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49853
49856
  }>, "many">;
49854
49857
  }, "strip", z.ZodTypeAny, {
49855
49858
  description: string;
49856
- threshold: string | number;
49857
49859
  allocators: {
49858
49860
  guard: string;
49859
49861
  sharing: {
49862
+ sharing: string | number;
49860
49863
  who: {
49861
49864
  GuardIdentifier: number;
49862
49865
  } | {
@@ -49867,18 +49870,18 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49867
49870
  } | {
49868
49871
  Signer: "signer";
49869
49872
  };
49870
- sharing: string | number;
49871
49873
  mode: "Amount" | "Rate" | "Surplus";
49872
49874
  }[];
49873
49875
  max?: string | number | null | undefined;
49874
49876
  fix?: string | number | undefined;
49875
49877
  }[];
49878
+ threshold: string | number;
49876
49879
  }, {
49877
49880
  description: string;
49878
- threshold: string | number;
49879
49881
  allocators: {
49880
49882
  guard: string;
49881
49883
  sharing: {
49884
+ sharing: string | number;
49882
49885
  who: {
49883
49886
  GuardIdentifier: number;
49884
49887
  } | {
@@ -49889,12 +49892,12 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
49889
49892
  } | {
49890
49893
  Signer: "signer";
49891
49894
  };
49892
- sharing: string | number;
49893
49895
  mode: "Amount" | "Rate" | "Surplus";
49894
49896
  }[];
49895
49897
  max?: string | number | null | undefined;
49896
49898
  fix?: string | number | undefined;
49897
49899
  }[];
49900
+ threshold: string | number;
49898
49901
  }>, z.ZodNull]>;
49899
49902
  rewards: z.ZodArray<z.ZodString, "many">;
49900
49903
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -50046,6 +50049,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50046
50049
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
50047
50050
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
50048
50051
  }, "strip", z.ZodTypeAny, {
50052
+ sharing: string | number;
50049
50053
  who: {
50050
50054
  GuardIdentifier: number;
50051
50055
  } | {
@@ -50056,9 +50060,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50056
50060
  } | {
50057
50061
  Signer: "signer";
50058
50062
  };
50059
- sharing: string | number;
50060
50063
  mode: "Amount" | "Rate" | "Surplus";
50061
50064
  }, {
50065
+ sharing: string | number;
50062
50066
  who: {
50063
50067
  GuardIdentifier: number;
50064
50068
  } | {
@@ -50069,7 +50073,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50069
50073
  } | {
50070
50074
  Signer: "signer";
50071
50075
  };
50072
- sharing: string | number;
50073
50076
  mode: "Amount" | "Rate" | "Surplus";
50074
50077
  }>, "many">;
50075
50078
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -50077,6 +50080,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50077
50080
  }, "strip", z.ZodTypeAny, {
50078
50081
  guard: string;
50079
50082
  sharing: {
50083
+ sharing: string | number;
50080
50084
  who: {
50081
50085
  GuardIdentifier: number;
50082
50086
  } | {
@@ -50087,7 +50091,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50087
50091
  } | {
50088
50092
  Signer: "signer";
50089
50093
  };
50090
- sharing: string | number;
50091
50094
  mode: "Amount" | "Rate" | "Surplus";
50092
50095
  }[];
50093
50096
  max?: string | number | null | undefined;
@@ -50095,6 +50098,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50095
50098
  }, {
50096
50099
  guard: string;
50097
50100
  sharing: {
50101
+ sharing: string | number;
50098
50102
  who: {
50099
50103
  GuardIdentifier: number;
50100
50104
  } | {
@@ -50105,7 +50109,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50105
50109
  } | {
50106
50110
  Signer: "signer";
50107
50111
  };
50108
- sharing: string | number;
50109
50112
  mode: "Amount" | "Rate" | "Surplus";
50110
50113
  }[];
50111
50114
  max?: string | number | null | undefined;
@@ -50113,10 +50116,10 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50113
50116
  }>, "many">;
50114
50117
  }, "strip", z.ZodTypeAny, {
50115
50118
  description: string;
50116
- threshold: string | number;
50117
50119
  allocators: {
50118
50120
  guard: string;
50119
50121
  sharing: {
50122
+ sharing: string | number;
50120
50123
  who: {
50121
50124
  GuardIdentifier: number;
50122
50125
  } | {
@@ -50127,18 +50130,18 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50127
50130
  } | {
50128
50131
  Signer: "signer";
50129
50132
  };
50130
- sharing: string | number;
50131
50133
  mode: "Amount" | "Rate" | "Surplus";
50132
50134
  }[];
50133
50135
  max?: string | number | null | undefined;
50134
50136
  fix?: string | number | undefined;
50135
50137
  }[];
50138
+ threshold: string | number;
50136
50139
  }, {
50137
50140
  description: string;
50138
- threshold: string | number;
50139
50141
  allocators: {
50140
50142
  guard: string;
50141
50143
  sharing: {
50144
+ sharing: string | number;
50142
50145
  who: {
50143
50146
  GuardIdentifier: number;
50144
50147
  } | {
@@ -50149,12 +50152,12 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50149
50152
  } | {
50150
50153
  Signer: "signer";
50151
50154
  };
50152
- sharing: string | number;
50153
50155
  mode: "Amount" | "Rate" | "Surplus";
50154
50156
  }[];
50155
50157
  max?: string | number | null | undefined;
50156
50158
  fix?: string | number | undefined;
50157
50159
  }[];
50160
+ threshold: string | number;
50158
50161
  }>, z.ZodNull]>;
50159
50162
  rewards: z.ZodArray<z.ZodString, "many">;
50160
50163
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -50306,6 +50309,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50306
50309
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
50307
50310
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
50308
50311
  }, "strip", z.ZodTypeAny, {
50312
+ sharing: string | number;
50309
50313
  who: {
50310
50314
  GuardIdentifier: number;
50311
50315
  } | {
@@ -50316,9 +50320,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50316
50320
  } | {
50317
50321
  Signer: "signer";
50318
50322
  };
50319
- sharing: string | number;
50320
50323
  mode: "Amount" | "Rate" | "Surplus";
50321
50324
  }, {
50325
+ sharing: string | number;
50322
50326
  who: {
50323
50327
  GuardIdentifier: number;
50324
50328
  } | {
@@ -50329,7 +50333,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50329
50333
  } | {
50330
50334
  Signer: "signer";
50331
50335
  };
50332
- sharing: string | number;
50333
50336
  mode: "Amount" | "Rate" | "Surplus";
50334
50337
  }>, "many">;
50335
50338
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -50337,6 +50340,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50337
50340
  }, "strip", z.ZodTypeAny, {
50338
50341
  guard: string;
50339
50342
  sharing: {
50343
+ sharing: string | number;
50340
50344
  who: {
50341
50345
  GuardIdentifier: number;
50342
50346
  } | {
@@ -50347,7 +50351,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50347
50351
  } | {
50348
50352
  Signer: "signer";
50349
50353
  };
50350
- sharing: string | number;
50351
50354
  mode: "Amount" | "Rate" | "Surplus";
50352
50355
  }[];
50353
50356
  max?: string | number | null | undefined;
@@ -50355,6 +50358,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50355
50358
  }, {
50356
50359
  guard: string;
50357
50360
  sharing: {
50361
+ sharing: string | number;
50358
50362
  who: {
50359
50363
  GuardIdentifier: number;
50360
50364
  } | {
@@ -50365,7 +50369,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50365
50369
  } | {
50366
50370
  Signer: "signer";
50367
50371
  };
50368
- sharing: string | number;
50369
50372
  mode: "Amount" | "Rate" | "Surplus";
50370
50373
  }[];
50371
50374
  max?: string | number | null | undefined;
@@ -50373,10 +50376,10 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50373
50376
  }>, "many">;
50374
50377
  }, "strip", z.ZodTypeAny, {
50375
50378
  description: string;
50376
- threshold: string | number;
50377
50379
  allocators: {
50378
50380
  guard: string;
50379
50381
  sharing: {
50382
+ sharing: string | number;
50380
50383
  who: {
50381
50384
  GuardIdentifier: number;
50382
50385
  } | {
@@ -50387,18 +50390,18 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50387
50390
  } | {
50388
50391
  Signer: "signer";
50389
50392
  };
50390
- sharing: string | number;
50391
50393
  mode: "Amount" | "Rate" | "Surplus";
50392
50394
  }[];
50393
50395
  max?: string | number | null | undefined;
50394
50396
  fix?: string | number | undefined;
50395
50397
  }[];
50398
+ threshold: string | number;
50396
50399
  }, {
50397
50400
  description: string;
50398
- threshold: string | number;
50399
50401
  allocators: {
50400
50402
  guard: string;
50401
50403
  sharing: {
50404
+ sharing: string | number;
50402
50405
  who: {
50403
50406
  GuardIdentifier: number;
50404
50407
  } | {
@@ -50409,12 +50412,12 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
50409
50412
  } | {
50410
50413
  Signer: "signer";
50411
50414
  };
50412
- sharing: string | number;
50413
50415
  mode: "Amount" | "Rate" | "Surplus";
50414
50416
  }[];
50415
50417
  max?: string | number | null | undefined;
50416
50418
  fix?: string | number | undefined;
50417
50419
  }[];
50420
+ threshold: string | number;
50418
50421
  }>, z.ZodNull]>;
50419
50422
  rewards: z.ZodArray<z.ZodString, "many">;
50420
50423
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -52000,6 +52003,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52000
52003
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
52001
52004
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
52002
52005
  }, "strip", z.ZodTypeAny, {
52006
+ sharing: string | number;
52003
52007
  who: {
52004
52008
  GuardIdentifier: number;
52005
52009
  } | {
@@ -52010,9 +52014,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52010
52014
  } | {
52011
52015
  Signer: "signer";
52012
52016
  };
52013
- sharing: string | number;
52014
52017
  mode: "Amount" | "Rate" | "Surplus";
52015
52018
  }, {
52019
+ sharing: string | number;
52016
52020
  who: {
52017
52021
  GuardIdentifier: number;
52018
52022
  } | {
@@ -52023,7 +52027,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52023
52027
  } | {
52024
52028
  Signer: "signer";
52025
52029
  };
52026
- sharing: string | number;
52027
52030
  mode: "Amount" | "Rate" | "Surplus";
52028
52031
  }>, "many">;
52029
52032
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -52031,6 +52034,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52031
52034
  }, "strip", z.ZodTypeAny, {
52032
52035
  guard: string;
52033
52036
  sharing: {
52037
+ sharing: string | number;
52034
52038
  who: {
52035
52039
  GuardIdentifier: number;
52036
52040
  } | {
@@ -52041,7 +52045,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52041
52045
  } | {
52042
52046
  Signer: "signer";
52043
52047
  };
52044
- sharing: string | number;
52045
52048
  mode: "Amount" | "Rate" | "Surplus";
52046
52049
  }[];
52047
52050
  max?: string | number | null | undefined;
@@ -52049,6 +52052,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52049
52052
  }, {
52050
52053
  guard: string;
52051
52054
  sharing: {
52055
+ sharing: string | number;
52052
52056
  who: {
52053
52057
  GuardIdentifier: number;
52054
52058
  } | {
@@ -52059,7 +52063,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52059
52063
  } | {
52060
52064
  Signer: "signer";
52061
52065
  };
52062
- sharing: string | number;
52063
52066
  mode: "Amount" | "Rate" | "Surplus";
52064
52067
  }[];
52065
52068
  max?: string | number | null | undefined;
@@ -52194,6 +52197,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52194
52197
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
52195
52198
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
52196
52199
  }, "strip", z.ZodTypeAny, {
52200
+ sharing: string | number;
52197
52201
  who: {
52198
52202
  GuardIdentifier: number;
52199
52203
  } | {
@@ -52204,9 +52208,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52204
52208
  } | {
52205
52209
  Signer: "signer";
52206
52210
  };
52207
- sharing: string | number;
52208
52211
  mode: "Amount" | "Rate" | "Surplus";
52209
52212
  }, {
52213
+ sharing: string | number;
52210
52214
  who: {
52211
52215
  GuardIdentifier: number;
52212
52216
  } | {
@@ -52217,7 +52221,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52217
52221
  } | {
52218
52222
  Signer: "signer";
52219
52223
  };
52220
- sharing: string | number;
52221
52224
  mode: "Amount" | "Rate" | "Surplus";
52222
52225
  }>, "many">;
52223
52226
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -52225,6 +52228,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52225
52228
  }, "strip", z.ZodTypeAny, {
52226
52229
  guard: string;
52227
52230
  sharing: {
52231
+ sharing: string | number;
52228
52232
  who: {
52229
52233
  GuardIdentifier: number;
52230
52234
  } | {
@@ -52235,7 +52239,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52235
52239
  } | {
52236
52240
  Signer: "signer";
52237
52241
  };
52238
- sharing: string | number;
52239
52242
  mode: "Amount" | "Rate" | "Surplus";
52240
52243
  }[];
52241
52244
  max?: string | number | null | undefined;
@@ -52243,6 +52246,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52243
52246
  }, {
52244
52247
  guard: string;
52245
52248
  sharing: {
52249
+ sharing: string | number;
52246
52250
  who: {
52247
52251
  GuardIdentifier: number;
52248
52252
  } | {
@@ -52253,7 +52257,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52253
52257
  } | {
52254
52258
  Signer: "signer";
52255
52259
  };
52256
- sharing: string | number;
52257
52260
  mode: "Amount" | "Rate" | "Surplus";
52258
52261
  }[];
52259
52262
  max?: string | number | null | undefined;
@@ -52388,6 +52391,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52388
52391
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
52389
52392
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
52390
52393
  }, "strip", z.ZodTypeAny, {
52394
+ sharing: string | number;
52391
52395
  who: {
52392
52396
  GuardIdentifier: number;
52393
52397
  } | {
@@ -52398,9 +52402,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52398
52402
  } | {
52399
52403
  Signer: "signer";
52400
52404
  };
52401
- sharing: string | number;
52402
52405
  mode: "Amount" | "Rate" | "Surplus";
52403
52406
  }, {
52407
+ sharing: string | number;
52404
52408
  who: {
52405
52409
  GuardIdentifier: number;
52406
52410
  } | {
@@ -52411,7 +52415,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52411
52415
  } | {
52412
52416
  Signer: "signer";
52413
52417
  };
52414
- sharing: string | number;
52415
52418
  mode: "Amount" | "Rate" | "Surplus";
52416
52419
  }>, "many">;
52417
52420
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -52419,6 +52422,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52419
52422
  }, "strip", z.ZodTypeAny, {
52420
52423
  guard: string;
52421
52424
  sharing: {
52425
+ sharing: string | number;
52422
52426
  who: {
52423
52427
  GuardIdentifier: number;
52424
52428
  } | {
@@ -52429,7 +52433,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52429
52433
  } | {
52430
52434
  Signer: "signer";
52431
52435
  };
52432
- sharing: string | number;
52433
52436
  mode: "Amount" | "Rate" | "Surplus";
52434
52437
  }[];
52435
52438
  max?: string | number | null | undefined;
@@ -52437,6 +52440,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52437
52440
  }, {
52438
52441
  guard: string;
52439
52442
  sharing: {
52443
+ sharing: string | number;
52440
52444
  who: {
52441
52445
  GuardIdentifier: number;
52442
52446
  } | {
@@ -52447,7 +52451,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
52447
52451
  } | {
52448
52452
  Signer: "signer";
52449
52453
  };
52450
- sharing: string | number;
52451
52454
  mode: "Amount" | "Rate" | "Surplus";
52452
52455
  }[];
52453
52456
  max?: string | number | null | undefined;
@@ -58139,6 +58142,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58139
58142
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
58140
58143
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
58141
58144
  }, "strip", z.ZodTypeAny, {
58145
+ sharing: string | number;
58142
58146
  who: {
58143
58147
  GuardIdentifier: number;
58144
58148
  } | {
@@ -58149,9 +58153,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58149
58153
  } | {
58150
58154
  Signer: "signer";
58151
58155
  };
58152
- sharing: string | number;
58153
58156
  mode: "Amount" | "Rate" | "Surplus";
58154
58157
  }, {
58158
+ sharing: string | number;
58155
58159
  who: {
58156
58160
  GuardIdentifier: number;
58157
58161
  } | {
@@ -58162,7 +58166,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58162
58166
  } | {
58163
58167
  Signer: "signer";
58164
58168
  };
58165
- sharing: string | number;
58166
58169
  mode: "Amount" | "Rate" | "Surplus";
58167
58170
  }>, "many">;
58168
58171
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -58170,6 +58173,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58170
58173
  }, "strip", z.ZodTypeAny, {
58171
58174
  guard: string;
58172
58175
  sharing: {
58176
+ sharing: string | number;
58173
58177
  who: {
58174
58178
  GuardIdentifier: number;
58175
58179
  } | {
@@ -58180,7 +58184,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58180
58184
  } | {
58181
58185
  Signer: "signer";
58182
58186
  };
58183
- sharing: string | number;
58184
58187
  mode: "Amount" | "Rate" | "Surplus";
58185
58188
  }[];
58186
58189
  max?: string | number | null | undefined;
@@ -58188,6 +58191,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58188
58191
  }, {
58189
58192
  guard: string;
58190
58193
  sharing: {
58194
+ sharing: string | number;
58191
58195
  who: {
58192
58196
  GuardIdentifier: number;
58193
58197
  } | {
@@ -58198,7 +58202,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58198
58202
  } | {
58199
58203
  Signer: "signer";
58200
58204
  };
58201
- sharing: string | number;
58202
58205
  mode: "Amount" | "Rate" | "Surplus";
58203
58206
  }[];
58204
58207
  max?: string | number | null | undefined;
@@ -58206,10 +58209,10 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58206
58209
  }>, "many">;
58207
58210
  }, "strip", z.ZodTypeAny, {
58208
58211
  description: string;
58209
- threshold: string | number;
58210
58212
  allocators: {
58211
58213
  guard: string;
58212
58214
  sharing: {
58215
+ sharing: string | number;
58213
58216
  who: {
58214
58217
  GuardIdentifier: number;
58215
58218
  } | {
@@ -58220,18 +58223,18 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58220
58223
  } | {
58221
58224
  Signer: "signer";
58222
58225
  };
58223
- sharing: string | number;
58224
58226
  mode: "Amount" | "Rate" | "Surplus";
58225
58227
  }[];
58226
58228
  max?: string | number | null | undefined;
58227
58229
  fix?: string | number | undefined;
58228
58230
  }[];
58231
+ threshold: string | number;
58229
58232
  }, {
58230
58233
  description: string;
58231
- threshold: string | number;
58232
58234
  allocators: {
58233
58235
  guard: string;
58234
58236
  sharing: {
58237
+ sharing: string | number;
58235
58238
  who: {
58236
58239
  GuardIdentifier: number;
58237
58240
  } | {
@@ -58242,12 +58245,12 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
58242
58245
  } | {
58243
58246
  Signer: "signer";
58244
58247
  };
58245
- sharing: string | number;
58246
58248
  mode: "Amount" | "Rate" | "Surplus";
58247
58249
  }[];
58248
58250
  max?: string | number | null | undefined;
58249
58251
  fix?: string | number | undefined;
58250
58252
  }[];
58253
+ threshold: string | number;
58251
58254
  }>, z.ZodNull]>;
58252
58255
  rewards: z.ZodArray<z.ZodString, "many">;
58253
58256
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -59476,6 +59479,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59476
59479
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
59477
59480
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
59478
59481
  }, "strip", z.ZodTypeAny, {
59482
+ sharing: string | number;
59479
59483
  who: {
59480
59484
  GuardIdentifier: number;
59481
59485
  } | {
@@ -59486,9 +59490,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59486
59490
  } | {
59487
59491
  Signer: "signer";
59488
59492
  };
59489
- sharing: string | number;
59490
59493
  mode: "Amount" | "Rate" | "Surplus";
59491
59494
  }, {
59495
+ sharing: string | number;
59492
59496
  who: {
59493
59497
  GuardIdentifier: number;
59494
59498
  } | {
@@ -59499,7 +59503,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59499
59503
  } | {
59500
59504
  Signer: "signer";
59501
59505
  };
59502
- sharing: string | number;
59503
59506
  mode: "Amount" | "Rate" | "Surplus";
59504
59507
  }>, "many">;
59505
59508
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -59507,6 +59510,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59507
59510
  }, "strip", z.ZodTypeAny, {
59508
59511
  guard: string;
59509
59512
  sharing: {
59513
+ sharing: string | number;
59510
59514
  who: {
59511
59515
  GuardIdentifier: number;
59512
59516
  } | {
@@ -59517,7 +59521,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59517
59521
  } | {
59518
59522
  Signer: "signer";
59519
59523
  };
59520
- sharing: string | number;
59521
59524
  mode: "Amount" | "Rate" | "Surplus";
59522
59525
  }[];
59523
59526
  max?: string | number | null | undefined;
@@ -59525,6 +59528,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59525
59528
  }, {
59526
59529
  guard: string;
59527
59530
  sharing: {
59531
+ sharing: string | number;
59528
59532
  who: {
59529
59533
  GuardIdentifier: number;
59530
59534
  } | {
@@ -59535,7 +59539,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
59535
59539
  } | {
59536
59540
  Signer: "signer";
59537
59541
  };
59538
- sharing: string | number;
59539
59542
  mode: "Amount" | "Rate" | "Surplus";
59540
59543
  }[];
59541
59544
  max?: string | number | null | undefined;
@@ -60884,6 +60887,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60884
60887
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
60885
60888
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
60886
60889
  }, "strip", z.ZodTypeAny, {
60890
+ sharing: string | number;
60887
60891
  who: {
60888
60892
  GuardIdentifier: number;
60889
60893
  } | {
@@ -60894,9 +60898,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60894
60898
  } | {
60895
60899
  Signer: "signer";
60896
60900
  };
60897
- sharing: string | number;
60898
60901
  mode: "Amount" | "Rate" | "Surplus";
60899
60902
  }, {
60903
+ sharing: string | number;
60900
60904
  who: {
60901
60905
  GuardIdentifier: number;
60902
60906
  } | {
@@ -60907,7 +60911,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60907
60911
  } | {
60908
60912
  Signer: "signer";
60909
60913
  };
60910
- sharing: string | number;
60911
60914
  mode: "Amount" | "Rate" | "Surplus";
60912
60915
  }>, "many">;
60913
60916
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -60915,6 +60918,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60915
60918
  }, "strip", z.ZodTypeAny, {
60916
60919
  guard: string;
60917
60920
  sharing: {
60921
+ sharing: string | number;
60918
60922
  who: {
60919
60923
  GuardIdentifier: number;
60920
60924
  } | {
@@ -60925,7 +60929,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60925
60929
  } | {
60926
60930
  Signer: "signer";
60927
60931
  };
60928
- sharing: string | number;
60929
60932
  mode: "Amount" | "Rate" | "Surplus";
60930
60933
  }[];
60931
60934
  max?: string | number | null | undefined;
@@ -60933,6 +60936,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60933
60936
  }, {
60934
60937
  guard: string;
60935
60938
  sharing: {
60939
+ sharing: string | number;
60936
60940
  who: {
60937
60941
  GuardIdentifier: number;
60938
60942
  } | {
@@ -60943,7 +60947,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60943
60947
  } | {
60944
60948
  Signer: "signer";
60945
60949
  };
60946
- sharing: string | number;
60947
60950
  mode: "Amount" | "Rate" | "Surplus";
60948
60951
  }[];
60949
60952
  max?: string | number | null | undefined;
@@ -60951,10 +60954,10 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60951
60954
  }>, "many">;
60952
60955
  }, "strip", z.ZodTypeAny, {
60953
60956
  description: string;
60954
- threshold: string | number;
60955
60957
  allocators: {
60956
60958
  guard: string;
60957
60959
  sharing: {
60960
+ sharing: string | number;
60958
60961
  who: {
60959
60962
  GuardIdentifier: number;
60960
60963
  } | {
@@ -60965,18 +60968,18 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60965
60968
  } | {
60966
60969
  Signer: "signer";
60967
60970
  };
60968
- sharing: string | number;
60969
60971
  mode: "Amount" | "Rate" | "Surplus";
60970
60972
  }[];
60971
60973
  max?: string | number | null | undefined;
60972
60974
  fix?: string | number | undefined;
60973
60975
  }[];
60976
+ threshold: string | number;
60974
60977
  }, {
60975
60978
  description: string;
60976
- threshold: string | number;
60977
60979
  allocators: {
60978
60980
  guard: string;
60979
60981
  sharing: {
60982
+ sharing: string | number;
60980
60983
  who: {
60981
60984
  GuardIdentifier: number;
60982
60985
  } | {
@@ -60987,12 +60990,12 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
60987
60990
  } | {
60988
60991
  Signer: "signer";
60989
60992
  };
60990
- sharing: string | number;
60991
60993
  mode: "Amount" | "Rate" | "Surplus";
60992
60994
  }[];
60993
60995
  max?: string | number | null | undefined;
60994
60996
  fix?: string | number | undefined;
60995
60997
  }[];
60998
+ threshold: string | number;
60996
60999
  }>, z.ZodNull]>;
60997
61000
  rewards: z.ZodArray<z.ZodString, "many">;
60998
61001
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -62221,6 +62224,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
62221
62224
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
62222
62225
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
62223
62226
  }, "strip", z.ZodTypeAny, {
62227
+ sharing: string | number;
62224
62228
  who: {
62225
62229
  GuardIdentifier: number;
62226
62230
  } | {
@@ -62231,9 +62235,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
62231
62235
  } | {
62232
62236
  Signer: "signer";
62233
62237
  };
62234
- sharing: string | number;
62235
62238
  mode: "Amount" | "Rate" | "Surplus";
62236
62239
  }, {
62240
+ sharing: string | number;
62237
62241
  who: {
62238
62242
  GuardIdentifier: number;
62239
62243
  } | {
@@ -62244,7 +62248,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
62244
62248
  } | {
62245
62249
  Signer: "signer";
62246
62250
  };
62247
- sharing: string | number;
62248
62251
  mode: "Amount" | "Rate" | "Surplus";
62249
62252
  }>, "many">;
62250
62253
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -62252,6 +62255,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
62252
62255
  }, "strip", z.ZodTypeAny, {
62253
62256
  guard: string;
62254
62257
  sharing: {
62258
+ sharing: string | number;
62255
62259
  who: {
62256
62260
  GuardIdentifier: number;
62257
62261
  } | {
@@ -62262,7 +62266,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
62262
62266
  } | {
62263
62267
  Signer: "signer";
62264
62268
  };
62265
- sharing: string | number;
62266
62269
  mode: "Amount" | "Rate" | "Surplus";
62267
62270
  }[];
62268
62271
  max?: string | number | null | undefined;
@@ -62270,6 +62273,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
62270
62273
  }, {
62271
62274
  guard: string;
62272
62275
  sharing: {
62276
+ sharing: string | number;
62273
62277
  who: {
62274
62278
  GuardIdentifier: number;
62275
62279
  } | {
@@ -62280,7 +62284,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
62280
62284
  } | {
62281
62285
  Signer: "signer";
62282
62286
  };
62283
- sharing: string | number;
62284
62287
  mode: "Amount" | "Rate" | "Surplus";
62285
62288
  }[];
62286
62289
  max?: string | number | null | undefined;
@@ -63631,6 +63634,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63631
63634
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
63632
63635
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
63633
63636
  }, "strip", z.ZodTypeAny, {
63637
+ sharing: string | number;
63634
63638
  who: {
63635
63639
  GuardIdentifier: number;
63636
63640
  } | {
@@ -63641,9 +63645,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63641
63645
  } | {
63642
63646
  Signer: "signer";
63643
63647
  };
63644
- sharing: string | number;
63645
63648
  mode: "Amount" | "Rate" | "Surplus";
63646
63649
  }, {
63650
+ sharing: string | number;
63647
63651
  who: {
63648
63652
  GuardIdentifier: number;
63649
63653
  } | {
@@ -63654,7 +63658,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63654
63658
  } | {
63655
63659
  Signer: "signer";
63656
63660
  };
63657
- sharing: string | number;
63658
63661
  mode: "Amount" | "Rate" | "Surplus";
63659
63662
  }>, "many">;
63660
63663
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -63662,6 +63665,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63662
63665
  }, "strip", z.ZodTypeAny, {
63663
63666
  guard: string;
63664
63667
  sharing: {
63668
+ sharing: string | number;
63665
63669
  who: {
63666
63670
  GuardIdentifier: number;
63667
63671
  } | {
@@ -63672,7 +63676,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63672
63676
  } | {
63673
63677
  Signer: "signer";
63674
63678
  };
63675
- sharing: string | number;
63676
63679
  mode: "Amount" | "Rate" | "Surplus";
63677
63680
  }[];
63678
63681
  max?: string | number | null | undefined;
@@ -63680,6 +63683,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63680
63683
  }, {
63681
63684
  guard: string;
63682
63685
  sharing: {
63686
+ sharing: string | number;
63683
63687
  who: {
63684
63688
  GuardIdentifier: number;
63685
63689
  } | {
@@ -63690,7 +63694,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63690
63694
  } | {
63691
63695
  Signer: "signer";
63692
63696
  };
63693
- sharing: string | number;
63694
63697
  mode: "Amount" | "Rate" | "Surplus";
63695
63698
  }[];
63696
63699
  max?: string | number | null | undefined;
@@ -63698,10 +63701,10 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63698
63701
  }>, "many">;
63699
63702
  }, "strip", z.ZodTypeAny, {
63700
63703
  description: string;
63701
- threshold: string | number;
63702
63704
  allocators: {
63703
63705
  guard: string;
63704
63706
  sharing: {
63707
+ sharing: string | number;
63705
63708
  who: {
63706
63709
  GuardIdentifier: number;
63707
63710
  } | {
@@ -63712,18 +63715,18 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63712
63715
  } | {
63713
63716
  Signer: "signer";
63714
63717
  };
63715
- sharing: string | number;
63716
63718
  mode: "Amount" | "Rate" | "Surplus";
63717
63719
  }[];
63718
63720
  max?: string | number | null | undefined;
63719
63721
  fix?: string | number | undefined;
63720
63722
  }[];
63723
+ threshold: string | number;
63721
63724
  }, {
63722
63725
  description: string;
63723
- threshold: string | number;
63724
63726
  allocators: {
63725
63727
  guard: string;
63726
63728
  sharing: {
63729
+ sharing: string | number;
63727
63730
  who: {
63728
63731
  GuardIdentifier: number;
63729
63732
  } | {
@@ -63734,12 +63737,12 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
63734
63737
  } | {
63735
63738
  Signer: "signer";
63736
63739
  };
63737
- sharing: string | number;
63738
63740
  mode: "Amount" | "Rate" | "Surplus";
63739
63741
  }[];
63740
63742
  max?: string | number | null | undefined;
63741
63743
  fix?: string | number | undefined;
63742
63744
  }[];
63745
+ threshold: string | number;
63743
63746
  }>, z.ZodNull]>;
63744
63747
  rewards: z.ZodArray<z.ZodString, "many">;
63745
63748
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -64968,6 +64971,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64968
64971
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
64969
64972
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
64970
64973
  }, "strip", z.ZodTypeAny, {
64974
+ sharing: string | number;
64971
64975
  who: {
64972
64976
  GuardIdentifier: number;
64973
64977
  } | {
@@ -64978,9 +64982,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64978
64982
  } | {
64979
64983
  Signer: "signer";
64980
64984
  };
64981
- sharing: string | number;
64982
64985
  mode: "Amount" | "Rate" | "Surplus";
64983
64986
  }, {
64987
+ sharing: string | number;
64984
64988
  who: {
64985
64989
  GuardIdentifier: number;
64986
64990
  } | {
@@ -64991,7 +64995,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64991
64995
  } | {
64992
64996
  Signer: "signer";
64993
64997
  };
64994
- sharing: string | number;
64995
64998
  mode: "Amount" | "Rate" | "Surplus";
64996
64999
  }>, "many">;
64997
65000
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -64999,6 +65002,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
64999
65002
  }, "strip", z.ZodTypeAny, {
65000
65003
  guard: string;
65001
65004
  sharing: {
65005
+ sharing: string | number;
65002
65006
  who: {
65003
65007
  GuardIdentifier: number;
65004
65008
  } | {
@@ -65009,7 +65013,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
65009
65013
  } | {
65010
65014
  Signer: "signer";
65011
65015
  };
65012
- sharing: string | number;
65013
65016
  mode: "Amount" | "Rate" | "Surplus";
65014
65017
  }[];
65015
65018
  max?: string | number | null | undefined;
@@ -65017,6 +65020,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
65017
65020
  }, {
65018
65021
  guard: string;
65019
65022
  sharing: {
65023
+ sharing: string | number;
65020
65024
  who: {
65021
65025
  GuardIdentifier: number;
65022
65026
  } | {
@@ -65027,7 +65031,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
65027
65031
  } | {
65028
65032
  Signer: "signer";
65029
65033
  };
65030
- sharing: string | number;
65031
65034
  mode: "Amount" | "Rate" | "Surplus";
65032
65035
  }[];
65033
65036
  max?: string | number | null | undefined;
@@ -66379,6 +66382,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66379
66382
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
66380
66383
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
66381
66384
  }, "strip", z.ZodTypeAny, {
66385
+ sharing: string | number;
66382
66386
  who: {
66383
66387
  GuardIdentifier: number;
66384
66388
  } | {
@@ -66389,9 +66393,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66389
66393
  } | {
66390
66394
  Signer: "signer";
66391
66395
  };
66392
- sharing: string | number;
66393
66396
  mode: "Amount" | "Rate" | "Surplus";
66394
66397
  }, {
66398
+ sharing: string | number;
66395
66399
  who: {
66396
66400
  GuardIdentifier: number;
66397
66401
  } | {
@@ -66402,7 +66406,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66402
66406
  } | {
66403
66407
  Signer: "signer";
66404
66408
  };
66405
- sharing: string | number;
66406
66409
  mode: "Amount" | "Rate" | "Surplus";
66407
66410
  }>, "many">;
66408
66411
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -66410,6 +66413,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66410
66413
  }, "strip", z.ZodTypeAny, {
66411
66414
  guard: string;
66412
66415
  sharing: {
66416
+ sharing: string | number;
66413
66417
  who: {
66414
66418
  GuardIdentifier: number;
66415
66419
  } | {
@@ -66420,7 +66424,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66420
66424
  } | {
66421
66425
  Signer: "signer";
66422
66426
  };
66423
- sharing: string | number;
66424
66427
  mode: "Amount" | "Rate" | "Surplus";
66425
66428
  }[];
66426
66429
  max?: string | number | null | undefined;
@@ -66428,6 +66431,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66428
66431
  }, {
66429
66432
  guard: string;
66430
66433
  sharing: {
66434
+ sharing: string | number;
66431
66435
  who: {
66432
66436
  GuardIdentifier: number;
66433
66437
  } | {
@@ -66438,7 +66442,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66438
66442
  } | {
66439
66443
  Signer: "signer";
66440
66444
  };
66441
- sharing: string | number;
66442
66445
  mode: "Amount" | "Rate" | "Surplus";
66443
66446
  }[];
66444
66447
  max?: string | number | null | undefined;
@@ -66446,10 +66449,10 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66446
66449
  }>, "many">;
66447
66450
  }, "strip", z.ZodTypeAny, {
66448
66451
  description: string;
66449
- threshold: string | number;
66450
66452
  allocators: {
66451
66453
  guard: string;
66452
66454
  sharing: {
66455
+ sharing: string | number;
66453
66456
  who: {
66454
66457
  GuardIdentifier: number;
66455
66458
  } | {
@@ -66460,18 +66463,18 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66460
66463
  } | {
66461
66464
  Signer: "signer";
66462
66465
  };
66463
- sharing: string | number;
66464
66466
  mode: "Amount" | "Rate" | "Surplus";
66465
66467
  }[];
66466
66468
  max?: string | number | null | undefined;
66467
66469
  fix?: string | number | undefined;
66468
66470
  }[];
66471
+ threshold: string | number;
66469
66472
  }, {
66470
66473
  description: string;
66471
- threshold: string | number;
66472
66474
  allocators: {
66473
66475
  guard: string;
66474
66476
  sharing: {
66477
+ sharing: string | number;
66475
66478
  who: {
66476
66479
  GuardIdentifier: number;
66477
66480
  } | {
@@ -66482,12 +66485,12 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
66482
66485
  } | {
66483
66486
  Signer: "signer";
66484
66487
  };
66485
- sharing: string | number;
66486
66488
  mode: "Amount" | "Rate" | "Surplus";
66487
66489
  }[];
66488
66490
  max?: string | number | null | undefined;
66489
66491
  fix?: string | number | undefined;
66490
66492
  }[];
66493
+ threshold: string | number;
66491
66494
  }>, z.ZodNull]>;
66492
66495
  rewards: z.ZodArray<z.ZodString, "many">;
66493
66496
  um: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -67716,6 +67719,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67716
67719
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
67717
67720
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
67718
67721
  }, "strip", z.ZodTypeAny, {
67722
+ sharing: string | number;
67719
67723
  who: {
67720
67724
  GuardIdentifier: number;
67721
67725
  } | {
@@ -67726,9 +67730,9 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67726
67730
  } | {
67727
67731
  Signer: "signer";
67728
67732
  };
67729
- sharing: string | number;
67730
67733
  mode: "Amount" | "Rate" | "Surplus";
67731
67734
  }, {
67735
+ sharing: string | number;
67732
67736
  who: {
67733
67737
  GuardIdentifier: number;
67734
67738
  } | {
@@ -67739,7 +67743,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67739
67743
  } | {
67740
67744
  Signer: "signer";
67741
67745
  };
67742
- sharing: string | number;
67743
67746
  mode: "Amount" | "Rate" | "Surplus";
67744
67747
  }>, "many">;
67745
67748
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -67747,6 +67750,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67747
67750
  }, "strip", z.ZodTypeAny, {
67748
67751
  guard: string;
67749
67752
  sharing: {
67753
+ sharing: string | number;
67750
67754
  who: {
67751
67755
  GuardIdentifier: number;
67752
67756
  } | {
@@ -67757,7 +67761,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67757
67761
  } | {
67758
67762
  Signer: "signer";
67759
67763
  };
67760
- sharing: string | number;
67761
67764
  mode: "Amount" | "Rate" | "Surplus";
67762
67765
  }[];
67763
67766
  max?: string | number | null | undefined;
@@ -67765,6 +67768,7 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67765
67768
  }, {
67766
67769
  guard: string;
67767
67770
  sharing: {
67771
+ sharing: string | number;
67768
67772
  who: {
67769
67773
  GuardIdentifier: number;
67770
67774
  } | {
@@ -67775,7 +67779,6 @@ export declare const OnchainQueryResultSchema_Part1: z.ZodUnion<[z.ZodObject<{
67775
67779
  } | {
67776
67780
  Signer: "signer";
67777
67781
  };
67778
- sharing: string | number;
67779
67782
  mode: "Amount" | "Rate" | "Surplus";
67780
67783
  }[];
67781
67784
  max?: string | number | null | undefined;
@@ -73504,6 +73507,7 @@ export declare const OnchainQueryResultSchema_Part2: z.ZodUnion<[z.ZodObject<{
73504
73507
  export declare const AllQueryResultsSchema: z.ZodType<any>;
73505
73508
  export declare const WatchQueryOperationsResultSchema: z.ZodType<{
73506
73509
  result: any;
73510
+ semantic?: any;
73507
73511
  }>;
73508
73512
  export type RecordsInEntity = z.infer<typeof RecordsInEntitySchema>;
73509
73513
  export type VoteInLinker = z.infer<typeof VoteInEntityLinkerSchema>;