@wowok/agent-mcp 2.3.13 → 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 (92) 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/reward.d.ts +6 -6
  46. package/dist/schema/call/semantic.d.ts +23 -0
  47. package/dist/schema/call/semantic.js +764 -0
  48. package/dist/schema/call/service.d.ts +142 -142
  49. package/dist/schema/call/treasury.d.ts +204 -204
  50. package/dist/schema/local/index.d.ts +113 -2
  51. package/dist/schema/local/index.js +11 -1
  52. package/dist/schema/messenger/index.d.ts +416 -92
  53. package/dist/schema/messenger/index.js +9 -0
  54. package/dist/schema/operations.d.ts +988 -495
  55. package/dist/schema/operations.js +14 -3
  56. package/dist/schema/query/index.d.ts +346 -342
  57. package/dist/schema/query/index.js +4 -1
  58. package/dist/schemas/account_operation.output.json +3 -0
  59. package/dist/schemas/account_operation.schema.json +1 -1
  60. package/dist/schemas/index.json +1 -1
  61. package/dist/schemas/local_info_operation.output.json +3 -0
  62. package/dist/schemas/local_mark_operation.output.json +3 -0
  63. package/dist/schemas/messenger_operation.output.json +21 -0
  64. package/dist/schemas/messenger_operation.schema.json +21 -0
  65. package/dist/schemas/onchain_events.output.json +3 -0
  66. package/dist/schemas/onchain_operations.output.json +464 -21
  67. package/dist/schemas/onchain_operations.schema.json +21 -17
  68. package/dist/schemas/onchain_operations_allocation.schema.json +11 -9
  69. package/dist/schemas/onchain_operations_arbitration.schema.json +11 -9
  70. package/dist/schemas/onchain_operations_contact.schema.json +11 -9
  71. package/dist/schemas/onchain_operations_demand.schema.json +11 -9
  72. package/dist/schemas/onchain_operations_gen_passport.schema.json +21 -17
  73. package/dist/schemas/onchain_operations_guard.schema.json +11 -9
  74. package/dist/schemas/onchain_operations_machine.schema.json +11 -9
  75. package/dist/schemas/onchain_operations_order.schema.json +11 -9
  76. package/dist/schemas/onchain_operations_payment.schema.json +11 -9
  77. package/dist/schemas/onchain_operations_permission.schema.json +11 -9
  78. package/dist/schemas/onchain_operations_personal.schema.json +11 -9
  79. package/dist/schemas/onchain_operations_progress.schema.json +11 -9
  80. package/dist/schemas/onchain_operations_repository.schema.json +11 -9
  81. package/dist/schemas/onchain_operations_reward.schema.json +11 -9
  82. package/dist/schemas/onchain_operations_service.schema.json +11 -9
  83. package/dist/schemas/onchain_operations_treasury.schema.json +11 -9
  84. package/dist/schemas/onchain_table_data.output.json +3 -0
  85. package/dist/schemas/query_toolkit.schema.json +5 -1
  86. package/dist/telemetry/index.d.ts +19 -0
  87. package/dist/telemetry/index.js +112 -0
  88. package/dist/telemetry/redact.d.ts +2 -0
  89. package/dist/telemetry/redact.js +23 -0
  90. package/dist/telemetry/storage.d.ts +8 -0
  91. package/dist/telemetry/storage.js +80 -0
  92. package/package.json +6 -3
@@ -63,6 +63,7 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
63
63
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
64
64
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
65
65
  }, "strip", z.ZodTypeAny, {
66
+ sharing: string | number;
66
67
  who: {
67
68
  GuardIdentifier: number;
68
69
  } | {
@@ -73,9 +74,9 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
73
74
  } | {
74
75
  Signer: "signer";
75
76
  };
76
- sharing: string | number;
77
77
  mode: "Amount" | "Rate" | "Surplus";
78
78
  }, {
79
+ sharing: string | number;
79
80
  who: {
80
81
  GuardIdentifier: number;
81
82
  } | {
@@ -86,7 +87,6 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
86
87
  } | {
87
88
  Signer: "signer";
88
89
  };
89
- sharing: string | number;
90
90
  mode: "Amount" | "Rate" | "Surplus";
91
91
  }>, "many">;
92
92
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -94,6 +94,7 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
94
94
  }, "strip", z.ZodTypeAny, {
95
95
  guard: string;
96
96
  sharing: {
97
+ sharing: string | number;
97
98
  who: {
98
99
  GuardIdentifier: number;
99
100
  } | {
@@ -104,7 +105,6 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
104
105
  } | {
105
106
  Signer: "signer";
106
107
  };
107
- sharing: string | number;
108
108
  mode: "Amount" | "Rate" | "Surplus";
109
109
  }[];
110
110
  max?: string | number | null | undefined;
@@ -112,6 +112,7 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
112
112
  }, {
113
113
  guard: string;
114
114
  sharing: {
115
+ sharing: string | number;
115
116
  who: {
116
117
  GuardIdentifier: number;
117
118
  } | {
@@ -122,7 +123,6 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
122
123
  } | {
123
124
  Signer: "signer";
124
125
  };
125
- sharing: string | number;
126
126
  mode: "Amount" | "Rate" | "Surplus";
127
127
  }[];
128
128
  max?: string | number | null | undefined;
@@ -130,10 +130,10 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
130
130
  }>, "many">;
131
131
  }, "strip", z.ZodTypeAny, {
132
132
  description: string;
133
- threshold: string | number;
134
133
  allocators: {
135
134
  guard: string;
136
135
  sharing: {
136
+ sharing: string | number;
137
137
  who: {
138
138
  GuardIdentifier: number;
139
139
  } | {
@@ -144,18 +144,18 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
144
144
  } | {
145
145
  Signer: "signer";
146
146
  };
147
- sharing: string | number;
148
147
  mode: "Amount" | "Rate" | "Surplus";
149
148
  }[];
150
149
  max?: string | number | null | undefined;
151
150
  fix?: string | number | undefined;
152
151
  }[];
152
+ threshold: string | number;
153
153
  }, {
154
154
  description: string;
155
- threshold: string | number;
156
155
  allocators: {
157
156
  guard: string;
158
157
  sharing: {
158
+ sharing: string | number;
159
159
  who: {
160
160
  GuardIdentifier: number;
161
161
  } | {
@@ -166,12 +166,12 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
166
166
  } | {
167
167
  Signer: "signer";
168
168
  };
169
- sharing: string | number;
170
169
  mode: "Amount" | "Rate" | "Surplus";
171
170
  }[];
172
171
  max?: string | number | null | undefined;
173
172
  fix?: string | number | undefined;
174
173
  }[];
174
+ threshold: string | number;
175
175
  }>;
176
176
  coin: z.ZodUnion<[z.ZodObject<{
177
177
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -217,10 +217,10 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
217
217
  };
218
218
  allocators: {
219
219
  description: string;
220
- threshold: string | number;
221
220
  allocators: {
222
221
  guard: string;
223
222
  sharing: {
223
+ sharing: string | number;
224
224
  who: {
225
225
  GuardIdentifier: number;
226
226
  } | {
@@ -231,12 +231,12 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
231
231
  } | {
232
232
  Signer: "signer";
233
233
  };
234
- sharing: string | number;
235
234
  mode: "Amount" | "Rate" | "Surplus";
236
235
  }[];
237
236
  max?: string | number | null | undefined;
238
237
  fix?: string | number | undefined;
239
238
  }[];
239
+ threshold: string | number;
240
240
  };
241
241
  payment_info: {
242
242
  index: string | number;
@@ -259,10 +259,10 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
259
259
  };
260
260
  allocators: {
261
261
  description: string;
262
- threshold: string | number;
263
262
  allocators: {
264
263
  guard: string;
265
264
  sharing: {
265
+ sharing: string | number;
266
266
  who: {
267
267
  GuardIdentifier: number;
268
268
  } | {
@@ -273,12 +273,12 @@ export declare const CallAllocation_CreateSchema: z.ZodObject<{
273
273
  } | {
274
274
  Signer: "signer";
275
275
  };
276
- sharing: string | number;
277
276
  mode: "Amount" | "Rate" | "Surplus";
278
277
  }[];
279
278
  max?: string | number | null | undefined;
280
279
  fix?: string | number | undefined;
281
280
  }[];
281
+ threshold: string | number;
282
282
  };
283
283
  payment_info: {
284
284
  index: string | number;
@@ -412,6 +412,7 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
412
412
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
413
413
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
414
414
  }, "strip", z.ZodTypeAny, {
415
+ sharing: string | number;
415
416
  who: {
416
417
  GuardIdentifier: number;
417
418
  } | {
@@ -422,9 +423,9 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
422
423
  } | {
423
424
  Signer: "signer";
424
425
  };
425
- sharing: string | number;
426
426
  mode: "Amount" | "Rate" | "Surplus";
427
427
  }, {
428
+ sharing: string | number;
428
429
  who: {
429
430
  GuardIdentifier: number;
430
431
  } | {
@@ -435,7 +436,6 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
435
436
  } | {
436
437
  Signer: "signer";
437
438
  };
438
- sharing: string | number;
439
439
  mode: "Amount" | "Rate" | "Surplus";
440
440
  }>, "many">;
441
441
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -443,6 +443,7 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
443
443
  }, "strip", z.ZodTypeAny, {
444
444
  guard: string;
445
445
  sharing: {
446
+ sharing: string | number;
446
447
  who: {
447
448
  GuardIdentifier: number;
448
449
  } | {
@@ -453,7 +454,6 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
453
454
  } | {
454
455
  Signer: "signer";
455
456
  };
456
- sharing: string | number;
457
457
  mode: "Amount" | "Rate" | "Surplus";
458
458
  }[];
459
459
  max?: string | number | null | undefined;
@@ -461,6 +461,7 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
461
461
  }, {
462
462
  guard: string;
463
463
  sharing: {
464
+ sharing: string | number;
464
465
  who: {
465
466
  GuardIdentifier: number;
466
467
  } | {
@@ -471,7 +472,6 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
471
472
  } | {
472
473
  Signer: "signer";
473
474
  };
474
- sharing: string | number;
475
475
  mode: "Amount" | "Rate" | "Surplus";
476
476
  }[];
477
477
  max?: string | number | null | undefined;
@@ -479,10 +479,10 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
479
479
  }>, "many">;
480
480
  }, "strip", z.ZodTypeAny, {
481
481
  description: string;
482
- threshold: string | number;
483
482
  allocators: {
484
483
  guard: string;
485
484
  sharing: {
485
+ sharing: string | number;
486
486
  who: {
487
487
  GuardIdentifier: number;
488
488
  } | {
@@ -493,18 +493,18 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
493
493
  } | {
494
494
  Signer: "signer";
495
495
  };
496
- sharing: string | number;
497
496
  mode: "Amount" | "Rate" | "Surplus";
498
497
  }[];
499
498
  max?: string | number | null | undefined;
500
499
  fix?: string | number | undefined;
501
500
  }[];
501
+ threshold: string | number;
502
502
  }, {
503
503
  description: string;
504
- threshold: string | number;
505
504
  allocators: {
506
505
  guard: string;
507
506
  sharing: {
507
+ sharing: string | number;
508
508
  who: {
509
509
  GuardIdentifier: number;
510
510
  } | {
@@ -515,12 +515,12 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
515
515
  } | {
516
516
  Signer: "signer";
517
517
  };
518
- sharing: string | number;
519
518
  mode: "Amount" | "Rate" | "Surplus";
520
519
  }[];
521
520
  max?: string | number | null | undefined;
522
521
  fix?: string | number | undefined;
523
522
  }[];
523
+ threshold: string | number;
524
524
  }>;
525
525
  coin: z.ZodUnion<[z.ZodObject<{
526
526
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -566,10 +566,10 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
566
566
  };
567
567
  allocators: {
568
568
  description: string;
569
- threshold: string | number;
570
569
  allocators: {
571
570
  guard: string;
572
571
  sharing: {
572
+ sharing: string | number;
573
573
  who: {
574
574
  GuardIdentifier: number;
575
575
  } | {
@@ -580,12 +580,12 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
580
580
  } | {
581
581
  Signer: "signer";
582
582
  };
583
- sharing: string | number;
584
583
  mode: "Amount" | "Rate" | "Surplus";
585
584
  }[];
586
585
  max?: string | number | null | undefined;
587
586
  fix?: string | number | undefined;
588
587
  }[];
588
+ threshold: string | number;
589
589
  };
590
590
  payment_info: {
591
591
  index: string | number;
@@ -608,10 +608,10 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
608
608
  };
609
609
  allocators: {
610
610
  description: string;
611
- threshold: string | number;
612
611
  allocators: {
613
612
  guard: string;
614
613
  sharing: {
614
+ sharing: string | number;
615
615
  who: {
616
616
  GuardIdentifier: number;
617
617
  } | {
@@ -622,12 +622,12 @@ export declare const CallAllocation_DataSchema: z.ZodUnion<[z.ZodObject<{
622
622
  } | {
623
623
  Signer: "signer";
624
624
  };
625
- sharing: string | number;
626
625
  mode: "Amount" | "Rate" | "Surplus";
627
626
  }[];
628
627
  max?: string | number | null | undefined;
629
628
  fix?: string | number | undefined;
630
629
  }[];
630
+ threshold: string | number;
631
631
  };
632
632
  payment_info: {
633
633
  index: string | number;
@@ -761,6 +761,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
761
761
  sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
762
762
  mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
763
763
  }, "strip", z.ZodTypeAny, {
764
+ sharing: string | number;
764
765
  who: {
765
766
  GuardIdentifier: number;
766
767
  } | {
@@ -771,9 +772,9 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
771
772
  } | {
772
773
  Signer: "signer";
773
774
  };
774
- sharing: string | number;
775
775
  mode: "Amount" | "Rate" | "Surplus";
776
776
  }, {
777
+ sharing: string | number;
777
778
  who: {
778
779
  GuardIdentifier: number;
779
780
  } | {
@@ -784,7 +785,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
784
785
  } | {
785
786
  Signer: "signer";
786
787
  };
787
- sharing: string | number;
788
788
  mode: "Amount" | "Rate" | "Surplus";
789
789
  }>, "many">;
790
790
  fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -792,6 +792,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
792
792
  }, "strip", z.ZodTypeAny, {
793
793
  guard: string;
794
794
  sharing: {
795
+ sharing: string | number;
795
796
  who: {
796
797
  GuardIdentifier: number;
797
798
  } | {
@@ -802,7 +803,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
802
803
  } | {
803
804
  Signer: "signer";
804
805
  };
805
- sharing: string | number;
806
806
  mode: "Amount" | "Rate" | "Surplus";
807
807
  }[];
808
808
  max?: string | number | null | undefined;
@@ -810,6 +810,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
810
810
  }, {
811
811
  guard: string;
812
812
  sharing: {
813
+ sharing: string | number;
813
814
  who: {
814
815
  GuardIdentifier: number;
815
816
  } | {
@@ -820,7 +821,6 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
820
821
  } | {
821
822
  Signer: "signer";
822
823
  };
823
- sharing: string | number;
824
824
  mode: "Amount" | "Rate" | "Surplus";
825
825
  }[];
826
826
  max?: string | number | null | undefined;
@@ -828,10 +828,10 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
828
828
  }>, "many">;
829
829
  }, "strip", z.ZodTypeAny, {
830
830
  description: string;
831
- threshold: string | number;
832
831
  allocators: {
833
832
  guard: string;
834
833
  sharing: {
834
+ sharing: string | number;
835
835
  who: {
836
836
  GuardIdentifier: number;
837
837
  } | {
@@ -842,18 +842,18 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
842
842
  } | {
843
843
  Signer: "signer";
844
844
  };
845
- sharing: string | number;
846
845
  mode: "Amount" | "Rate" | "Surplus";
847
846
  }[];
848
847
  max?: string | number | null | undefined;
849
848
  fix?: string | number | undefined;
850
849
  }[];
850
+ threshold: string | number;
851
851
  }, {
852
852
  description: string;
853
- threshold: string | number;
854
853
  allocators: {
855
854
  guard: string;
856
855
  sharing: {
856
+ sharing: string | number;
857
857
  who: {
858
858
  GuardIdentifier: number;
859
859
  } | {
@@ -864,12 +864,12 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
864
864
  } | {
865
865
  Signer: "signer";
866
866
  };
867
- sharing: string | number;
868
867
  mode: "Amount" | "Rate" | "Surplus";
869
868
  }[];
870
869
  max?: string | number | null | undefined;
871
870
  fix?: string | number | undefined;
872
871
  }[];
872
+ threshold: string | number;
873
873
  }>;
874
874
  coin: z.ZodUnion<[z.ZodObject<{
875
875
  balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
@@ -915,10 +915,10 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
915
915
  };
916
916
  allocators: {
917
917
  description: string;
918
- threshold: string | number;
919
918
  allocators: {
920
919
  guard: string;
921
920
  sharing: {
921
+ sharing: string | number;
922
922
  who: {
923
923
  GuardIdentifier: number;
924
924
  } | {
@@ -929,12 +929,12 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
929
929
  } | {
930
930
  Signer: "signer";
931
931
  };
932
- sharing: string | number;
933
932
  mode: "Amount" | "Rate" | "Surplus";
934
933
  }[];
935
934
  max?: string | number | null | undefined;
936
935
  fix?: string | number | undefined;
937
936
  }[];
937
+ threshold: string | number;
938
938
  };
939
939
  payment_info: {
940
940
  index: string | number;
@@ -957,10 +957,10 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
957
957
  };
958
958
  allocators: {
959
959
  description: string;
960
- threshold: string | number;
961
960
  allocators: {
962
961
  guard: string;
963
962
  sharing: {
963
+ sharing: string | number;
964
964
  who: {
965
965
  GuardIdentifier: number;
966
966
  } | {
@@ -971,12 +971,12 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
971
971
  } | {
972
972
  Signer: "signer";
973
973
  };
974
- sharing: string | number;
975
974
  mode: "Amount" | "Rate" | "Surplus";
976
975
  }[];
977
976
  max?: string | number | null | undefined;
978
977
  fix?: string | number | undefined;
979
978
  }[];
979
+ threshold: string | number;
980
980
  };
981
981
  payment_info: {
982
982
  index: string | number;
@@ -1260,10 +1260,10 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1260
1260
  };
1261
1261
  allocators: {
1262
1262
  description: string;
1263
- threshold: string | number;
1264
1263
  allocators: {
1265
1264
  guard: string;
1266
1265
  sharing: {
1266
+ sharing: string | number;
1267
1267
  who: {
1268
1268
  GuardIdentifier: number;
1269
1269
  } | {
@@ -1274,12 +1274,12 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1274
1274
  } | {
1275
1275
  Signer: "signer";
1276
1276
  };
1277
- sharing: string | number;
1278
1277
  mode: "Amount" | "Rate" | "Surplus";
1279
1278
  }[];
1280
1279
  max?: string | number | null | undefined;
1281
1280
  fix?: string | number | undefined;
1282
1281
  }[];
1282
+ threshold: string | number;
1283
1283
  };
1284
1284
  payment_info: {
1285
1285
  index: string | number;
@@ -1350,10 +1350,10 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1350
1350
  };
1351
1351
  allocators: {
1352
1352
  description: string;
1353
- threshold: string | number;
1354
1353
  allocators: {
1355
1354
  guard: string;
1356
1355
  sharing: {
1356
+ sharing: string | number;
1357
1357
  who: {
1358
1358
  GuardIdentifier: number;
1359
1359
  } | {
@@ -1364,12 +1364,12 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
1364
1364
  } | {
1365
1365
  Signer: "signer";
1366
1366
  };
1367
- sharing: string | number;
1368
1367
  mode: "Amount" | "Rate" | "Surplus";
1369
1368
  }[];
1370
1369
  max?: string | number | null | undefined;
1371
1370
  fix?: string | number | undefined;
1372
1371
  }[];
1372
+ threshold: string | number;
1373
1373
  };
1374
1374
  payment_info: {
1375
1375
  index: string | number;