@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
@@ -67,67 +67,67 @@ export declare const ConfirmSchema: z.ZodObject<{
67
67
  arb: z.ZodEffects<z.ZodString, string, string>;
68
68
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
69
69
  }, "strict", z.ZodTypeAny, {
70
- voting_deadline: number | null;
71
70
  arb: string;
72
- }, {
73
71
  voting_deadline: number | null;
72
+ }, {
74
73
  arb: string;
74
+ voting_deadline: number | null;
75
75
  }>;
76
76
  export declare const VotingDeadlineChangeSchema: z.ZodObject<{
77
77
  arb: z.ZodEffects<z.ZodString, string, string>;
78
78
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
79
79
  }, "strict", z.ZodTypeAny, {
80
- voting_deadline: number | null;
81
80
  arb: string;
82
- }, {
83
81
  voting_deadline: number | null;
82
+ }, {
84
83
  arb: string;
84
+ voting_deadline: number | null;
85
85
  }>;
86
86
  export declare const VoteSchema: z.ZodObject<{
87
87
  arb: z.ZodEffects<z.ZodString, string, string>;
88
88
  votes: z.ZodArray<z.ZodNumber, "many">;
89
89
  voting_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
90
90
  }, "strict", z.ZodTypeAny, {
91
- votes: number[];
92
91
  arb: string;
92
+ votes: number[];
93
93
  voting_guard?: string | undefined;
94
94
  }, {
95
- votes: number[];
96
95
  arb: string;
96
+ votes: number[];
97
97
  voting_guard?: string | undefined;
98
98
  }>;
99
99
  export declare const FeedbackSchema: z.ZodObject<{
100
100
  arb: z.ZodEffects<z.ZodString, string, string>;
101
101
  feedback: z.ZodEffects<z.ZodString, string, string>;
102
102
  }, "strict", z.ZodTypeAny, {
103
- feedback: string;
104
103
  arb: string;
105
- }, {
106
104
  feedback: string;
105
+ }, {
107
106
  arb: string;
107
+ feedback: string;
108
108
  }>;
109
109
  export declare const ArbitrationActionSchema: z.ZodObject<{
110
110
  arb: z.ZodEffects<z.ZodString, string, string>;
111
111
  feedback: z.ZodEffects<z.ZodString, string, string>;
112
112
  indemnity: z.ZodNumber;
113
113
  }, "strict", z.ZodTypeAny, {
114
+ arb: string;
114
115
  feedback: string;
115
116
  indemnity: number;
116
- arb: string;
117
117
  }, {
118
+ arb: string;
118
119
  feedback: string;
119
120
  indemnity: number;
120
- arb: string;
121
121
  }>;
122
122
  export declare const ResetSchema: z.ZodObject<{
123
123
  arb: z.ZodEffects<z.ZodString, string, string>;
124
124
  feedback: z.ZodEffects<z.ZodString, string, string>;
125
125
  }, "strict", z.ZodTypeAny, {
126
- feedback: string;
127
126
  arb: string;
128
- }, {
129
127
  feedback: string;
128
+ }, {
130
129
  arb: string;
130
+ feedback: string;
131
131
  }>;
132
132
  export declare const ArbWithdrawSchema: z.ZodObject<{
133
133
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -406,67 +406,67 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
406
406
  arb: z.ZodEffects<z.ZodString, string, string>;
407
407
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
408
408
  }, "strict", z.ZodTypeAny, {
409
- voting_deadline: number | null;
410
409
  arb: string;
411
- }, {
412
410
  voting_deadline: number | null;
411
+ }, {
413
412
  arb: string;
413
+ voting_deadline: number | null;
414
414
  }>>;
415
415
  voting_deadline_change: z.ZodOptional<z.ZodObject<{
416
416
  arb: z.ZodEffects<z.ZodString, string, string>;
417
417
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
418
418
  }, "strict", z.ZodTypeAny, {
419
- voting_deadline: number | null;
420
419
  arb: string;
421
- }, {
422
420
  voting_deadline: number | null;
421
+ }, {
423
422
  arb: string;
423
+ voting_deadline: number | null;
424
424
  }>>;
425
425
  vote: z.ZodOptional<z.ZodObject<{
426
426
  arb: z.ZodEffects<z.ZodString, string, string>;
427
427
  votes: z.ZodArray<z.ZodNumber, "many">;
428
428
  voting_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
429
429
  }, "strict", z.ZodTypeAny, {
430
- votes: number[];
431
430
  arb: string;
431
+ votes: number[];
432
432
  voting_guard?: string | undefined;
433
433
  }, {
434
- votes: number[];
435
434
  arb: string;
435
+ votes: number[];
436
436
  voting_guard?: string | undefined;
437
437
  }>>;
438
438
  feedback: z.ZodOptional<z.ZodObject<{
439
439
  arb: z.ZodEffects<z.ZodString, string, string>;
440
440
  feedback: z.ZodEffects<z.ZodString, string, string>;
441
441
  }, "strict", z.ZodTypeAny, {
442
- feedback: string;
443
442
  arb: string;
444
- }, {
445
443
  feedback: string;
444
+ }, {
446
445
  arb: string;
446
+ feedback: string;
447
447
  }>>;
448
448
  arbitration: z.ZodOptional<z.ZodObject<{
449
449
  arb: z.ZodEffects<z.ZodString, string, string>;
450
450
  feedback: z.ZodEffects<z.ZodString, string, string>;
451
451
  indemnity: z.ZodNumber;
452
452
  }, "strict", z.ZodTypeAny, {
453
+ arb: string;
453
454
  feedback: string;
454
455
  indemnity: number;
455
- arb: string;
456
456
  }, {
457
+ arb: string;
457
458
  feedback: string;
458
459
  indemnity: number;
459
- arb: string;
460
460
  }>>;
461
461
  reset: z.ZodOptional<z.ZodObject<{
462
462
  arb: z.ZodEffects<z.ZodString, string, string>;
463
463
  feedback: z.ZodEffects<z.ZodString, string, string>;
464
464
  }, "strict", z.ZodTypeAny, {
465
- feedback: string;
466
465
  arb: string;
467
- }, {
468
466
  feedback: string;
467
+ }, {
469
468
  arb: string;
469
+ feedback: string;
470
470
  }>>;
471
471
  arb_withdraw: z.ZodOptional<z.ZodObject<{
472
472
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -668,8 +668,13 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
668
668
  };
669
669
  description?: string | undefined;
670
670
  reset?: {
671
+ arb: string;
671
672
  feedback: string;
673
+ } | undefined;
674
+ arbitration?: {
672
675
  arb: string;
676
+ feedback: string;
677
+ indemnity: number;
673
678
  } | undefined;
674
679
  location?: string | undefined;
675
680
  owner_receive?: {
@@ -702,15 +707,10 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
702
707
  onChain?: boolean | undefined;
703
708
  } | undefined;
704
709
  } | undefined;
705
- arbitration?: {
706
- feedback: string;
707
- indemnity: number;
708
- arb: string;
709
- } | undefined;
710
710
  fee?: string | number | undefined;
711
711
  feedback?: {
712
- feedback: string;
713
712
  arb: string;
713
+ feedback: string;
714
714
  } | undefined;
715
715
  voting_guard?: {
716
716
  op: "set" | "add";
@@ -731,16 +731,16 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
731
731
  usage_guard?: string | null | undefined;
732
732
  pause?: boolean | undefined;
733
733
  confirm?: {
734
- voting_deadline: number | null;
735
734
  arb: string;
735
+ voting_deadline: number | null;
736
736
  } | undefined;
737
737
  voting_deadline_change?: {
738
- voting_deadline: number | null;
739
738
  arb: string;
739
+ voting_deadline: number | null;
740
740
  } | undefined;
741
741
  vote?: {
742
- votes: number[];
743
742
  arb: string;
743
+ votes: number[];
744
744
  voting_guard?: string | undefined;
745
745
  } | undefined;
746
746
  arb_withdraw?: {
@@ -778,8 +778,13 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
778
778
  };
779
779
  description?: string | undefined;
780
780
  reset?: {
781
+ arb: string;
781
782
  feedback: string;
783
+ } | undefined;
784
+ arbitration?: {
782
785
  arb: string;
786
+ feedback: string;
787
+ indemnity: number;
783
788
  } | undefined;
784
789
  location?: string | undefined;
785
790
  owner_receive?: {
@@ -812,15 +817,10 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
812
817
  onChain?: boolean | undefined;
813
818
  } | undefined;
814
819
  } | undefined;
815
- arbitration?: {
816
- feedback: string;
817
- indemnity: number;
818
- arb: string;
819
- } | undefined;
820
820
  fee?: string | number | undefined;
821
821
  feedback?: {
822
- feedback: string;
823
822
  arb: string;
823
+ feedback: string;
824
824
  } | undefined;
825
825
  voting_guard?: {
826
826
  op: "set" | "add";
@@ -841,16 +841,16 @@ export declare const CallArbitration_DataSchema: z.ZodObject<{
841
841
  usage_guard?: string | null | undefined;
842
842
  pause?: boolean | undefined;
843
843
  confirm?: {
844
- voting_deadline: number | null;
845
844
  arb: string;
845
+ voting_deadline: number | null;
846
846
  } | undefined;
847
847
  voting_deadline_change?: {
848
- voting_deadline: number | null;
849
848
  arb: string;
849
+ voting_deadline: number | null;
850
850
  } | undefined;
851
851
  vote?: {
852
- votes: number[];
853
852
  arb: string;
853
+ votes: number[];
854
854
  voting_guard?: string | undefined;
855
855
  } | undefined;
856
856
  arb_withdraw?: {
@@ -1001,67 +1001,67 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1001
1001
  arb: z.ZodEffects<z.ZodString, string, string>;
1002
1002
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
1003
1003
  }, "strict", z.ZodTypeAny, {
1004
- voting_deadline: number | null;
1005
1004
  arb: string;
1006
- }, {
1007
1005
  voting_deadline: number | null;
1006
+ }, {
1008
1007
  arb: string;
1008
+ voting_deadline: number | null;
1009
1009
  }>>;
1010
1010
  voting_deadline_change: z.ZodOptional<z.ZodObject<{
1011
1011
  arb: z.ZodEffects<z.ZodString, string, string>;
1012
1012
  voting_deadline: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
1013
1013
  }, "strict", z.ZodTypeAny, {
1014
- voting_deadline: number | null;
1015
1014
  arb: string;
1016
- }, {
1017
1015
  voting_deadline: number | null;
1016
+ }, {
1018
1017
  arb: string;
1018
+ voting_deadline: number | null;
1019
1019
  }>>;
1020
1020
  vote: z.ZodOptional<z.ZodObject<{
1021
1021
  arb: z.ZodEffects<z.ZodString, string, string>;
1022
1022
  votes: z.ZodArray<z.ZodNumber, "many">;
1023
1023
  voting_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1024
1024
  }, "strict", z.ZodTypeAny, {
1025
- votes: number[];
1026
1025
  arb: string;
1026
+ votes: number[];
1027
1027
  voting_guard?: string | undefined;
1028
1028
  }, {
1029
- votes: number[];
1030
1029
  arb: string;
1030
+ votes: number[];
1031
1031
  voting_guard?: string | undefined;
1032
1032
  }>>;
1033
1033
  feedback: z.ZodOptional<z.ZodObject<{
1034
1034
  arb: z.ZodEffects<z.ZodString, string, string>;
1035
1035
  feedback: z.ZodEffects<z.ZodString, string, string>;
1036
1036
  }, "strict", z.ZodTypeAny, {
1037
- feedback: string;
1038
1037
  arb: string;
1039
- }, {
1040
1038
  feedback: string;
1039
+ }, {
1041
1040
  arb: string;
1041
+ feedback: string;
1042
1042
  }>>;
1043
1043
  arbitration: z.ZodOptional<z.ZodObject<{
1044
1044
  arb: z.ZodEffects<z.ZodString, string, string>;
1045
1045
  feedback: z.ZodEffects<z.ZodString, string, string>;
1046
1046
  indemnity: z.ZodNumber;
1047
1047
  }, "strict", z.ZodTypeAny, {
1048
+ arb: string;
1048
1049
  feedback: string;
1049
1050
  indemnity: number;
1050
- arb: string;
1051
1051
  }, {
1052
+ arb: string;
1052
1053
  feedback: string;
1053
1054
  indemnity: number;
1054
- arb: string;
1055
1055
  }>>;
1056
1056
  reset: z.ZodOptional<z.ZodObject<{
1057
1057
  arb: z.ZodEffects<z.ZodString, string, string>;
1058
1058
  feedback: z.ZodEffects<z.ZodString, string, string>;
1059
1059
  }, "strict", z.ZodTypeAny, {
1060
- feedback: string;
1061
1060
  arb: string;
1062
- }, {
1063
1061
  feedback: string;
1062
+ }, {
1064
1063
  arb: string;
1064
+ feedback: string;
1065
1065
  }>>;
1066
1066
  arb_withdraw: z.ZodOptional<z.ZodObject<{
1067
1067
  arb: z.ZodEffects<z.ZodString, string, string>;
@@ -1263,8 +1263,13 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1263
1263
  };
1264
1264
  description?: string | undefined;
1265
1265
  reset?: {
1266
+ arb: string;
1266
1267
  feedback: string;
1268
+ } | undefined;
1269
+ arbitration?: {
1267
1270
  arb: string;
1271
+ feedback: string;
1272
+ indemnity: number;
1268
1273
  } | undefined;
1269
1274
  location?: string | undefined;
1270
1275
  owner_receive?: {
@@ -1297,15 +1302,10 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1297
1302
  onChain?: boolean | undefined;
1298
1303
  } | undefined;
1299
1304
  } | undefined;
1300
- arbitration?: {
1301
- feedback: string;
1302
- indemnity: number;
1303
- arb: string;
1304
- } | undefined;
1305
1305
  fee?: string | number | undefined;
1306
1306
  feedback?: {
1307
- feedback: string;
1308
1307
  arb: string;
1308
+ feedback: string;
1309
1309
  } | undefined;
1310
1310
  voting_guard?: {
1311
1311
  op: "set" | "add";
@@ -1326,16 +1326,16 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1326
1326
  usage_guard?: string | null | undefined;
1327
1327
  pause?: boolean | undefined;
1328
1328
  confirm?: {
1329
- voting_deadline: number | null;
1330
1329
  arb: string;
1330
+ voting_deadline: number | null;
1331
1331
  } | undefined;
1332
1332
  voting_deadline_change?: {
1333
- voting_deadline: number | null;
1334
1333
  arb: string;
1334
+ voting_deadline: number | null;
1335
1335
  } | undefined;
1336
1336
  vote?: {
1337
- votes: number[];
1338
1337
  arb: string;
1338
+ votes: number[];
1339
1339
  voting_guard?: string | undefined;
1340
1340
  } | undefined;
1341
1341
  arb_withdraw?: {
@@ -1373,8 +1373,13 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1373
1373
  };
1374
1374
  description?: string | undefined;
1375
1375
  reset?: {
1376
+ arb: string;
1376
1377
  feedback: string;
1378
+ } | undefined;
1379
+ arbitration?: {
1377
1380
  arb: string;
1381
+ feedback: string;
1382
+ indemnity: number;
1378
1383
  } | undefined;
1379
1384
  location?: string | undefined;
1380
1385
  owner_receive?: {
@@ -1407,15 +1412,10 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1407
1412
  onChain?: boolean | undefined;
1408
1413
  } | undefined;
1409
1414
  } | undefined;
1410
- arbitration?: {
1411
- feedback: string;
1412
- indemnity: number;
1413
- arb: string;
1414
- } | undefined;
1415
1415
  fee?: string | number | undefined;
1416
1416
  feedback?: {
1417
- feedback: string;
1418
1417
  arb: string;
1418
+ feedback: string;
1419
1419
  } | undefined;
1420
1420
  voting_guard?: {
1421
1421
  op: "set" | "add";
@@ -1436,16 +1436,16 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1436
1436
  usage_guard?: string | null | undefined;
1437
1437
  pause?: boolean | undefined;
1438
1438
  confirm?: {
1439
- voting_deadline: number | null;
1440
1439
  arb: string;
1440
+ voting_deadline: number | null;
1441
1441
  } | undefined;
1442
1442
  voting_deadline_change?: {
1443
- voting_deadline: number | null;
1444
1443
  arb: string;
1444
+ voting_deadline: number | null;
1445
1445
  } | undefined;
1446
1446
  vote?: {
1447
- votes: number[];
1448
1447
  arb: string;
1448
+ votes: number[];
1449
1449
  voting_guard?: string | undefined;
1450
1450
  } | undefined;
1451
1451
  arb_withdraw?: {
@@ -1684,8 +1684,13 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1684
1684
  };
1685
1685
  description?: string | undefined;
1686
1686
  reset?: {
1687
+ arb: string;
1687
1688
  feedback: string;
1689
+ } | undefined;
1690
+ arbitration?: {
1688
1691
  arb: string;
1692
+ feedback: string;
1693
+ indemnity: number;
1689
1694
  } | undefined;
1690
1695
  location?: string | undefined;
1691
1696
  owner_receive?: {
@@ -1718,15 +1723,10 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1718
1723
  onChain?: boolean | undefined;
1719
1724
  } | undefined;
1720
1725
  } | undefined;
1721
- arbitration?: {
1722
- feedback: string;
1723
- indemnity: number;
1724
- arb: string;
1725
- } | undefined;
1726
1726
  fee?: string | number | undefined;
1727
1727
  feedback?: {
1728
- feedback: string;
1729
1728
  arb: string;
1729
+ feedback: string;
1730
1730
  } | undefined;
1731
1731
  voting_guard?: {
1732
1732
  op: "set" | "add";
@@ -1747,16 +1747,16 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1747
1747
  usage_guard?: string | null | undefined;
1748
1748
  pause?: boolean | undefined;
1749
1749
  confirm?: {
1750
- voting_deadline: number | null;
1751
1750
  arb: string;
1751
+ voting_deadline: number | null;
1752
1752
  } | undefined;
1753
1753
  voting_deadline_change?: {
1754
- voting_deadline: number | null;
1755
1754
  arb: string;
1755
+ voting_deadline: number | null;
1756
1756
  } | undefined;
1757
1757
  vote?: {
1758
- votes: number[];
1759
1758
  arb: string;
1759
+ votes: number[];
1760
1760
  voting_guard?: string | undefined;
1761
1761
  } | undefined;
1762
1762
  arb_withdraw?: {
@@ -1830,8 +1830,13 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1830
1830
  };
1831
1831
  description?: string | undefined;
1832
1832
  reset?: {
1833
+ arb: string;
1833
1834
  feedback: string;
1835
+ } | undefined;
1836
+ arbitration?: {
1834
1837
  arb: string;
1838
+ feedback: string;
1839
+ indemnity: number;
1835
1840
  } | undefined;
1836
1841
  location?: string | undefined;
1837
1842
  owner_receive?: {
@@ -1864,15 +1869,10 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1864
1869
  onChain?: boolean | undefined;
1865
1870
  } | undefined;
1866
1871
  } | undefined;
1867
- arbitration?: {
1868
- feedback: string;
1869
- indemnity: number;
1870
- arb: string;
1871
- } | undefined;
1872
1872
  fee?: string | number | undefined;
1873
1873
  feedback?: {
1874
- feedback: string;
1875
1874
  arb: string;
1875
+ feedback: string;
1876
1876
  } | undefined;
1877
1877
  voting_guard?: {
1878
1878
  op: "set" | "add";
@@ -1893,16 +1893,16 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
1893
1893
  usage_guard?: string | null | undefined;
1894
1894
  pause?: boolean | undefined;
1895
1895
  confirm?: {
1896
- voting_deadline: number | null;
1897
1896
  arb: string;
1897
+ voting_deadline: number | null;
1898
1898
  } | undefined;
1899
1899
  voting_deadline_change?: {
1900
- voting_deadline: number | null;
1901
1900
  arb: string;
1901
+ voting_deadline: number | null;
1902
1902
  } | undefined;
1903
1903
  vote?: {
1904
- votes: number[];
1905
1904
  arb: string;
1905
+ votes: number[];
1906
1906
  voting_guard?: string | undefined;
1907
1907
  } | undefined;
1908
1908
  arb_withdraw?: {