@wowok/agent-mcp 2.2.8

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 (62) hide show
  1. package/README.md +56 -0
  2. package/dist/index.d.ts +15800 -0
  3. package/dist/index.js +1479 -0
  4. package/dist/schema/call/allocation.d.ts +1430 -0
  5. package/dist/schema/call/allocation.js +24 -0
  6. package/dist/schema/call/arbitration.d.ts +1974 -0
  7. package/dist/schema/call/arbitration.js +92 -0
  8. package/dist/schema/call/base.d.ts +7325 -0
  9. package/dist/schema/call/base.js +138 -0
  10. package/dist/schema/call/contact.d.ts +970 -0
  11. package/dist/schema/call/contact.js +37 -0
  12. package/dist/schema/call/demand.d.ts +1265 -0
  13. package/dist/schema/call/demand.js +47 -0
  14. package/dist/schema/call/guard.d.ts +951 -0
  15. package/dist/schema/call/guard.js +58 -0
  16. package/dist/schema/call/handler.d.ts +38 -0
  17. package/dist/schema/call/handler.js +171 -0
  18. package/dist/schema/call/index.d.ts +18 -0
  19. package/dist/schema/call/index.js +18 -0
  20. package/dist/schema/call/machine.d.ts +3974 -0
  21. package/dist/schema/call/machine.js +152 -0
  22. package/dist/schema/call/order.d.ts +974 -0
  23. package/dist/schema/call/order.js +34 -0
  24. package/dist/schema/call/payment.d.ts +404 -0
  25. package/dist/schema/call/payment.js +17 -0
  26. package/dist/schema/call/permission.d.ts +3017 -0
  27. package/dist/schema/call/permission.js +105 -0
  28. package/dist/schema/call/personal.d.ts +1472 -0
  29. package/dist/schema/call/personal.js +68 -0
  30. package/dist/schema/call/progress.d.ts +725 -0
  31. package/dist/schema/call/progress.js +26 -0
  32. package/dist/schema/call/proof.d.ts +320 -0
  33. package/dist/schema/call/proof.js +27 -0
  34. package/dist/schema/call/repository.d.ts +2358 -0
  35. package/dist/schema/call/repository.js +76 -0
  36. package/dist/schema/call/reward.d.ts +1232 -0
  37. package/dist/schema/call/reward.js +30 -0
  38. package/dist/schema/call/service.d.ts +3494 -0
  39. package/dist/schema/call/service.js +82 -0
  40. package/dist/schema/call/treasury.d.ts +2345 -0
  41. package/dist/schema/call/treasury.js +71 -0
  42. package/dist/schema/common/index.d.ts +843 -0
  43. package/dist/schema/common/index.js +347 -0
  44. package/dist/schema/index.d.ts +7 -0
  45. package/dist/schema/index.js +7 -0
  46. package/dist/schema/local/index.d.ts +17522 -0
  47. package/dist/schema/local/index.js +855 -0
  48. package/dist/schema/local/wip.d.ts +784 -0
  49. package/dist/schema/local/wip.js +187 -0
  50. package/dist/schema/messenger/index.d.ts +4655 -0
  51. package/dist/schema/messenger/index.js +446 -0
  52. package/dist/schema/query/index.d.ts +73445 -0
  53. package/dist/schema/query/index.js +1324 -0
  54. package/dist/schema/utils/guard-parser.d.ts +20 -0
  55. package/dist/schema/utils/guard-parser.js +401 -0
  56. package/dist/schema/utils/guard-query-utils.d.ts +5 -0
  57. package/dist/schema/utils/guard-query-utils.js +22 -0
  58. package/dist/schema/utils/node-parser.d.ts +45 -0
  59. package/dist/schema/utils/node-parser.js +353 -0
  60. package/dist/schema/utils/permission-index-utils.d.ts +2 -0
  61. package/dist/schema/utils/permission-index-utils.js +7 -0
  62. package/package.json +48 -0
@@ -0,0 +1,974 @@
1
+ import { z } from "zod";
2
+ export declare const ArbConfirmSchema: z.ZodObject<{
3
+ arb: z.ZodEffects<z.ZodString, string, string>;
4
+ confirm: z.ZodBoolean;
5
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
6
+ proposition: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
7
+ }, "strict", z.ZodTypeAny, {
8
+ arb: string;
9
+ confirm: boolean;
10
+ description?: string | undefined;
11
+ proposition?: string[] | undefined;
12
+ }, {
13
+ arb: string;
14
+ confirm: boolean;
15
+ description?: string | undefined;
16
+ proposition?: string[] | undefined;
17
+ }>;
18
+ export declare const ArbObjectionSchema: z.ZodObject<{
19
+ arb: z.ZodEffects<z.ZodString, string, string>;
20
+ objection: z.ZodEffects<z.ZodString, string, string>;
21
+ }, "strict", z.ZodTypeAny, {
22
+ objection: string;
23
+ arb: string;
24
+ }, {
25
+ objection: string;
26
+ arb: string;
27
+ }>;
28
+ export declare const ArbClaimCompensationSchema: z.ZodObject<{
29
+ arb: z.ZodEffects<z.ZodString, string, string>;
30
+ }, "strict", z.ZodTypeAny, {
31
+ arb: string;
32
+ }, {
33
+ arb: string;
34
+ }>;
35
+ export declare const CallOrder_DataSchema: z.ZodObject<{
36
+ object: z.ZodEffects<z.ZodString, string, string>;
37
+ agents: z.ZodOptional<z.ZodObject<{
38
+ entities: z.ZodArray<z.ZodObject<{
39
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
40
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
41
+ }, "strict", z.ZodTypeAny, {
42
+ name_or_address?: string | undefined;
43
+ local_mark_first?: boolean | undefined;
44
+ }, {
45
+ name_or_address?: string | undefined;
46
+ local_mark_first?: boolean | undefined;
47
+ }>, "many">;
48
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
49
+ }, "strict", z.ZodTypeAny, {
50
+ entities: {
51
+ name_or_address?: string | undefined;
52
+ local_mark_first?: boolean | undefined;
53
+ }[];
54
+ check_all_founded?: boolean | undefined;
55
+ }, {
56
+ entities: {
57
+ name_or_address?: string | undefined;
58
+ local_mark_first?: boolean | undefined;
59
+ }[];
60
+ check_all_founded?: boolean | undefined;
61
+ }>>;
62
+ required_info: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
63
+ progress: z.ZodOptional<z.ZodObject<{
64
+ operation: z.ZodObject<{
65
+ next_node_name: z.ZodEffects<z.ZodString, string, string>;
66
+ forward: z.ZodEffects<z.ZodString, string, string>;
67
+ }, "strict", z.ZodTypeAny, {
68
+ forward: string;
69
+ next_node_name: string;
70
+ }, {
71
+ forward: string;
72
+ next_node_name: string;
73
+ }>;
74
+ hold: z.ZodOptional<z.ZodBoolean>;
75
+ adminUnhold: z.ZodOptional<z.ZodBoolean>;
76
+ message: z.ZodOptional<z.ZodString>;
77
+ }, "strict", z.ZodTypeAny, {
78
+ operation: {
79
+ forward: string;
80
+ next_node_name: string;
81
+ };
82
+ message?: string | undefined;
83
+ hold?: boolean | undefined;
84
+ adminUnhold?: boolean | undefined;
85
+ }, {
86
+ operation: {
87
+ forward: string;
88
+ next_node_name: string;
89
+ };
90
+ message?: string | undefined;
91
+ hold?: boolean | undefined;
92
+ adminUnhold?: boolean | undefined;
93
+ }>>;
94
+ arb_confirm: z.ZodOptional<z.ZodObject<{
95
+ arb: z.ZodEffects<z.ZodString, string, string>;
96
+ confirm: z.ZodBoolean;
97
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
98
+ proposition: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
99
+ }, "strict", z.ZodTypeAny, {
100
+ arb: string;
101
+ confirm: boolean;
102
+ description?: string | undefined;
103
+ proposition?: string[] | undefined;
104
+ }, {
105
+ arb: string;
106
+ confirm: boolean;
107
+ description?: string | undefined;
108
+ proposition?: string[] | undefined;
109
+ }>>;
110
+ arb_objection: z.ZodOptional<z.ZodObject<{
111
+ arb: z.ZodEffects<z.ZodString, string, string>;
112
+ objection: z.ZodEffects<z.ZodString, string, string>;
113
+ }, "strict", z.ZodTypeAny, {
114
+ objection: string;
115
+ arb: string;
116
+ }, {
117
+ objection: string;
118
+ arb: string;
119
+ }>>;
120
+ arb_claim_compensation: z.ZodOptional<z.ZodObject<{
121
+ arb: z.ZodEffects<z.ZodString, string, string>;
122
+ }, "strict", z.ZodTypeAny, {
123
+ arb: string;
124
+ }, {
125
+ arb: string;
126
+ }>>;
127
+ receive: z.ZodOptional<z.ZodObject<{
128
+ result: z.ZodUnion<[z.ZodObject<{
129
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
130
+ token_type: z.ZodEffects<z.ZodString, string, string>;
131
+ received: z.ZodArray<z.ZodObject<{
132
+ id: z.ZodString;
133
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
134
+ payment: z.ZodString;
135
+ }, "strict", z.ZodTypeAny, {
136
+ id: string;
137
+ balance: string | number;
138
+ payment: string;
139
+ }, {
140
+ id: string;
141
+ balance: string | number;
142
+ payment: string;
143
+ }>, "many">;
144
+ }, "strict", z.ZodTypeAny, {
145
+ received: {
146
+ id: string;
147
+ balance: string | number;
148
+ payment: string;
149
+ }[];
150
+ balance: string | number;
151
+ token_type: string;
152
+ }, {
153
+ received: {
154
+ id: string;
155
+ balance: string | number;
156
+ payment: string;
157
+ }[];
158
+ balance: string | number;
159
+ token_type: string;
160
+ }>, z.ZodArray<z.ZodObject<{
161
+ id: z.ZodString;
162
+ type: z.ZodString;
163
+ content_raw: z.ZodOptional<z.ZodAny>;
164
+ }, "strict", z.ZodTypeAny, {
165
+ type: string;
166
+ id: string;
167
+ content_raw?: any;
168
+ }, {
169
+ type: string;
170
+ id: string;
171
+ content_raw?: any;
172
+ }>, "many">]>;
173
+ }, "strict", z.ZodTypeAny, {
174
+ result: {
175
+ received: {
176
+ id: string;
177
+ balance: string | number;
178
+ payment: string;
179
+ }[];
180
+ balance: string | number;
181
+ token_type: string;
182
+ } | {
183
+ type: string;
184
+ id: string;
185
+ content_raw?: any;
186
+ }[];
187
+ }, {
188
+ result: {
189
+ received: {
190
+ id: string;
191
+ balance: string | number;
192
+ payment: string;
193
+ }[];
194
+ balance: string | number;
195
+ token_type: string;
196
+ } | {
197
+ type: string;
198
+ id: string;
199
+ content_raw?: any;
200
+ }[];
201
+ }>>;
202
+ transfer_to: z.ZodOptional<z.ZodObject<{
203
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
204
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
205
+ }, "strict", z.ZodTypeAny, {
206
+ name_or_address?: string | undefined;
207
+ local_mark_first?: boolean | undefined;
208
+ }, {
209
+ name_or_address?: string | undefined;
210
+ local_mark_first?: boolean | undefined;
211
+ }>>;
212
+ }, "strict", z.ZodTypeAny, {
213
+ object: string;
214
+ progress?: {
215
+ operation: {
216
+ forward: string;
217
+ next_node_name: string;
218
+ };
219
+ message?: string | undefined;
220
+ hold?: boolean | undefined;
221
+ adminUnhold?: boolean | undefined;
222
+ } | undefined;
223
+ required_info?: string | null | undefined;
224
+ agents?: {
225
+ entities: {
226
+ name_or_address?: string | undefined;
227
+ local_mark_first?: boolean | undefined;
228
+ }[];
229
+ check_all_founded?: boolean | undefined;
230
+ } | undefined;
231
+ arb_confirm?: {
232
+ arb: string;
233
+ confirm: boolean;
234
+ description?: string | undefined;
235
+ proposition?: string[] | undefined;
236
+ } | undefined;
237
+ arb_objection?: {
238
+ objection: string;
239
+ arb: string;
240
+ } | undefined;
241
+ arb_claim_compensation?: {
242
+ arb: string;
243
+ } | undefined;
244
+ receive?: {
245
+ result: {
246
+ received: {
247
+ id: string;
248
+ balance: string | number;
249
+ payment: string;
250
+ }[];
251
+ balance: string | number;
252
+ token_type: string;
253
+ } | {
254
+ type: string;
255
+ id: string;
256
+ content_raw?: any;
257
+ }[];
258
+ } | undefined;
259
+ transfer_to?: {
260
+ name_or_address?: string | undefined;
261
+ local_mark_first?: boolean | undefined;
262
+ } | undefined;
263
+ }, {
264
+ object: string;
265
+ progress?: {
266
+ operation: {
267
+ forward: string;
268
+ next_node_name: string;
269
+ };
270
+ message?: string | undefined;
271
+ hold?: boolean | undefined;
272
+ adminUnhold?: boolean | undefined;
273
+ } | undefined;
274
+ required_info?: string | null | undefined;
275
+ agents?: {
276
+ entities: {
277
+ name_or_address?: string | undefined;
278
+ local_mark_first?: boolean | undefined;
279
+ }[];
280
+ check_all_founded?: boolean | undefined;
281
+ } | undefined;
282
+ arb_confirm?: {
283
+ arb: string;
284
+ confirm: boolean;
285
+ description?: string | undefined;
286
+ proposition?: string[] | undefined;
287
+ } | undefined;
288
+ arb_objection?: {
289
+ objection: string;
290
+ arb: string;
291
+ } | undefined;
292
+ arb_claim_compensation?: {
293
+ arb: string;
294
+ } | undefined;
295
+ receive?: {
296
+ result: {
297
+ received: {
298
+ id: string;
299
+ balance: string | number;
300
+ payment: string;
301
+ }[];
302
+ balance: string | number;
303
+ token_type: string;
304
+ } | {
305
+ type: string;
306
+ id: string;
307
+ content_raw?: any;
308
+ }[];
309
+ } | undefined;
310
+ transfer_to?: {
311
+ name_or_address?: string | undefined;
312
+ local_mark_first?: boolean | undefined;
313
+ } | undefined;
314
+ }>;
315
+ export declare const CallOrder_InputSchema: z.ZodObject<{
316
+ data: z.ZodObject<{
317
+ object: z.ZodEffects<z.ZodString, string, string>;
318
+ agents: z.ZodOptional<z.ZodObject<{
319
+ entities: z.ZodArray<z.ZodObject<{
320
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
321
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
322
+ }, "strict", z.ZodTypeAny, {
323
+ name_or_address?: string | undefined;
324
+ local_mark_first?: boolean | undefined;
325
+ }, {
326
+ name_or_address?: string | undefined;
327
+ local_mark_first?: boolean | undefined;
328
+ }>, "many">;
329
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
330
+ }, "strict", z.ZodTypeAny, {
331
+ entities: {
332
+ name_or_address?: string | undefined;
333
+ local_mark_first?: boolean | undefined;
334
+ }[];
335
+ check_all_founded?: boolean | undefined;
336
+ }, {
337
+ entities: {
338
+ name_or_address?: string | undefined;
339
+ local_mark_first?: boolean | undefined;
340
+ }[];
341
+ check_all_founded?: boolean | undefined;
342
+ }>>;
343
+ required_info: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
344
+ progress: z.ZodOptional<z.ZodObject<{
345
+ operation: z.ZodObject<{
346
+ next_node_name: z.ZodEffects<z.ZodString, string, string>;
347
+ forward: z.ZodEffects<z.ZodString, string, string>;
348
+ }, "strict", z.ZodTypeAny, {
349
+ forward: string;
350
+ next_node_name: string;
351
+ }, {
352
+ forward: string;
353
+ next_node_name: string;
354
+ }>;
355
+ hold: z.ZodOptional<z.ZodBoolean>;
356
+ adminUnhold: z.ZodOptional<z.ZodBoolean>;
357
+ message: z.ZodOptional<z.ZodString>;
358
+ }, "strict", z.ZodTypeAny, {
359
+ operation: {
360
+ forward: string;
361
+ next_node_name: string;
362
+ };
363
+ message?: string | undefined;
364
+ hold?: boolean | undefined;
365
+ adminUnhold?: boolean | undefined;
366
+ }, {
367
+ operation: {
368
+ forward: string;
369
+ next_node_name: string;
370
+ };
371
+ message?: string | undefined;
372
+ hold?: boolean | undefined;
373
+ adminUnhold?: boolean | undefined;
374
+ }>>;
375
+ arb_confirm: z.ZodOptional<z.ZodObject<{
376
+ arb: z.ZodEffects<z.ZodString, string, string>;
377
+ confirm: z.ZodBoolean;
378
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
379
+ proposition: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
380
+ }, "strict", z.ZodTypeAny, {
381
+ arb: string;
382
+ confirm: boolean;
383
+ description?: string | undefined;
384
+ proposition?: string[] | undefined;
385
+ }, {
386
+ arb: string;
387
+ confirm: boolean;
388
+ description?: string | undefined;
389
+ proposition?: string[] | undefined;
390
+ }>>;
391
+ arb_objection: z.ZodOptional<z.ZodObject<{
392
+ arb: z.ZodEffects<z.ZodString, string, string>;
393
+ objection: z.ZodEffects<z.ZodString, string, string>;
394
+ }, "strict", z.ZodTypeAny, {
395
+ objection: string;
396
+ arb: string;
397
+ }, {
398
+ objection: string;
399
+ arb: string;
400
+ }>>;
401
+ arb_claim_compensation: z.ZodOptional<z.ZodObject<{
402
+ arb: z.ZodEffects<z.ZodString, string, string>;
403
+ }, "strict", z.ZodTypeAny, {
404
+ arb: string;
405
+ }, {
406
+ arb: string;
407
+ }>>;
408
+ receive: z.ZodOptional<z.ZodObject<{
409
+ result: z.ZodUnion<[z.ZodObject<{
410
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
411
+ token_type: z.ZodEffects<z.ZodString, string, string>;
412
+ received: z.ZodArray<z.ZodObject<{
413
+ id: z.ZodString;
414
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
415
+ payment: z.ZodString;
416
+ }, "strict", z.ZodTypeAny, {
417
+ id: string;
418
+ balance: string | number;
419
+ payment: string;
420
+ }, {
421
+ id: string;
422
+ balance: string | number;
423
+ payment: string;
424
+ }>, "many">;
425
+ }, "strict", z.ZodTypeAny, {
426
+ received: {
427
+ id: string;
428
+ balance: string | number;
429
+ payment: string;
430
+ }[];
431
+ balance: string | number;
432
+ token_type: string;
433
+ }, {
434
+ received: {
435
+ id: string;
436
+ balance: string | number;
437
+ payment: string;
438
+ }[];
439
+ balance: string | number;
440
+ token_type: string;
441
+ }>, z.ZodArray<z.ZodObject<{
442
+ id: z.ZodString;
443
+ type: z.ZodString;
444
+ content_raw: z.ZodOptional<z.ZodAny>;
445
+ }, "strict", z.ZodTypeAny, {
446
+ type: string;
447
+ id: string;
448
+ content_raw?: any;
449
+ }, {
450
+ type: string;
451
+ id: string;
452
+ content_raw?: any;
453
+ }>, "many">]>;
454
+ }, "strict", z.ZodTypeAny, {
455
+ result: {
456
+ received: {
457
+ id: string;
458
+ balance: string | number;
459
+ payment: string;
460
+ }[];
461
+ balance: string | number;
462
+ token_type: string;
463
+ } | {
464
+ type: string;
465
+ id: string;
466
+ content_raw?: any;
467
+ }[];
468
+ }, {
469
+ result: {
470
+ received: {
471
+ id: string;
472
+ balance: string | number;
473
+ payment: string;
474
+ }[];
475
+ balance: string | number;
476
+ token_type: string;
477
+ } | {
478
+ type: string;
479
+ id: string;
480
+ content_raw?: any;
481
+ }[];
482
+ }>>;
483
+ transfer_to: z.ZodOptional<z.ZodObject<{
484
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
485
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
486
+ }, "strict", z.ZodTypeAny, {
487
+ name_or_address?: string | undefined;
488
+ local_mark_first?: boolean | undefined;
489
+ }, {
490
+ name_or_address?: string | undefined;
491
+ local_mark_first?: boolean | undefined;
492
+ }>>;
493
+ }, "strict", z.ZodTypeAny, {
494
+ object: string;
495
+ progress?: {
496
+ operation: {
497
+ forward: string;
498
+ next_node_name: string;
499
+ };
500
+ message?: string | undefined;
501
+ hold?: boolean | undefined;
502
+ adminUnhold?: boolean | undefined;
503
+ } | undefined;
504
+ required_info?: string | null | undefined;
505
+ agents?: {
506
+ entities: {
507
+ name_or_address?: string | undefined;
508
+ local_mark_first?: boolean | undefined;
509
+ }[];
510
+ check_all_founded?: boolean | undefined;
511
+ } | undefined;
512
+ arb_confirm?: {
513
+ arb: string;
514
+ confirm: boolean;
515
+ description?: string | undefined;
516
+ proposition?: string[] | undefined;
517
+ } | undefined;
518
+ arb_objection?: {
519
+ objection: string;
520
+ arb: string;
521
+ } | undefined;
522
+ arb_claim_compensation?: {
523
+ arb: string;
524
+ } | undefined;
525
+ receive?: {
526
+ result: {
527
+ received: {
528
+ id: string;
529
+ balance: string | number;
530
+ payment: string;
531
+ }[];
532
+ balance: string | number;
533
+ token_type: string;
534
+ } | {
535
+ type: string;
536
+ id: string;
537
+ content_raw?: any;
538
+ }[];
539
+ } | undefined;
540
+ transfer_to?: {
541
+ name_or_address?: string | undefined;
542
+ local_mark_first?: boolean | undefined;
543
+ } | undefined;
544
+ }, {
545
+ object: string;
546
+ progress?: {
547
+ operation: {
548
+ forward: string;
549
+ next_node_name: string;
550
+ };
551
+ message?: string | undefined;
552
+ hold?: boolean | undefined;
553
+ adminUnhold?: boolean | undefined;
554
+ } | undefined;
555
+ required_info?: string | null | undefined;
556
+ agents?: {
557
+ entities: {
558
+ name_or_address?: string | undefined;
559
+ local_mark_first?: boolean | undefined;
560
+ }[];
561
+ check_all_founded?: boolean | undefined;
562
+ } | undefined;
563
+ arb_confirm?: {
564
+ arb: string;
565
+ confirm: boolean;
566
+ description?: string | undefined;
567
+ proposition?: string[] | undefined;
568
+ } | undefined;
569
+ arb_objection?: {
570
+ objection: string;
571
+ arb: string;
572
+ } | undefined;
573
+ arb_claim_compensation?: {
574
+ arb: string;
575
+ } | undefined;
576
+ receive?: {
577
+ result: {
578
+ received: {
579
+ id: string;
580
+ balance: string | number;
581
+ payment: string;
582
+ }[];
583
+ balance: string | number;
584
+ token_type: string;
585
+ } | {
586
+ type: string;
587
+ id: string;
588
+ content_raw?: any;
589
+ }[];
590
+ } | undefined;
591
+ transfer_to?: {
592
+ name_or_address?: string | undefined;
593
+ local_mark_first?: boolean | undefined;
594
+ } | undefined;
595
+ }>;
596
+ env: z.ZodOptional<z.ZodObject<{
597
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
598
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
599
+ no_cache: z.ZodOptional<z.ZodBoolean>;
600
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
601
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
602
+ }, "strict", z.ZodTypeAny, {
603
+ account: string;
604
+ no_cache?: boolean | undefined;
605
+ network?: import("wowok").ENTRYPOINT | undefined;
606
+ permission_guard?: string[] | undefined;
607
+ referrer?: string | undefined;
608
+ }, {
609
+ no_cache?: boolean | undefined;
610
+ network?: import("wowok").ENTRYPOINT | undefined;
611
+ account?: string | undefined;
612
+ permission_guard?: string[] | undefined;
613
+ referrer?: string | undefined;
614
+ }>>;
615
+ submission: z.ZodOptional<z.ZodObject<{
616
+ type: z.ZodLiteral<"submission">;
617
+ guard: z.ZodArray<z.ZodObject<{
618
+ object: z.ZodEffects<z.ZodString, string, string>;
619
+ impack: z.ZodBoolean;
620
+ }, "strict", z.ZodTypeAny, {
621
+ object: string;
622
+ impack: boolean;
623
+ }, {
624
+ object: string;
625
+ impack: boolean;
626
+ }>, "many">;
627
+ submission: z.ZodArray<z.ZodObject<{
628
+ guard: z.ZodEffects<z.ZodString, string, string>;
629
+ submission: z.ZodArray<z.ZodObject<{
630
+ identifier: z.ZodNumber;
631
+ b_submission: z.ZodBoolean;
632
+ value_type: z.ZodUnion<[z.ZodLiteral<import("wowok").ValueType.Bool>, z.ZodLiteral<import("wowok").ValueType.Address>, z.ZodLiteral<import("wowok").ValueType.String>, z.ZodLiteral<import("wowok").ValueType.U8>, z.ZodLiteral<import("wowok").ValueType.U16>, z.ZodLiteral<import("wowok").ValueType.U32>, z.ZodLiteral<import("wowok").ValueType.U64>, z.ZodLiteral<import("wowok").ValueType.U128>, z.ZodLiteral<import("wowok").ValueType.U256>, z.ZodLiteral<import("wowok").ValueType.VecBool>, z.ZodLiteral<import("wowok").ValueType.VecAddress>, z.ZodLiteral<import("wowok").ValueType.VecString>, z.ZodLiteral<import("wowok").ValueType.VecU8>, z.ZodLiteral<import("wowok").ValueType.VecU16>, z.ZodLiteral<import("wowok").ValueType.VecU32>, z.ZodLiteral<import("wowok").ValueType.VecU64>, z.ZodLiteral<import("wowok").ValueType.VecU128>, z.ZodLiteral<import("wowok").ValueType.VecU256>, z.ZodLiteral<import("wowok").ValueType.VecVecU8>, z.ZodLiteral<"Bool">, z.ZodLiteral<"Address">, z.ZodLiteral<"String">, z.ZodLiteral<"U8">, z.ZodLiteral<"U16">, z.ZodLiteral<"U32">, z.ZodLiteral<"U64">, z.ZodLiteral<"U128">, z.ZodLiteral<"U256">, z.ZodLiteral<"VecBool">, z.ZodLiteral<"VecAddress">, z.ZodLiteral<"VecString">, z.ZodLiteral<"VecU8">, z.ZodLiteral<"VecU16">, z.ZodLiteral<"VecU32">, z.ZodLiteral<"VecU64">, z.ZodLiteral<"VecU128">, z.ZodLiteral<"VecU256">, z.ZodLiteral<"VecVecU8">, z.ZodLiteral<"bool">, z.ZodLiteral<"address">, z.ZodLiteral<"string">, z.ZodLiteral<"u8">, z.ZodLiteral<"u16">, z.ZodLiteral<"u32">, z.ZodLiteral<"u64">, z.ZodLiteral<"u128">, z.ZodLiteral<"u256">, z.ZodLiteral<"vecbool">, z.ZodLiteral<"vecaddress">, z.ZodLiteral<"vecstring">, z.ZodLiteral<"vecu8">, z.ZodLiteral<"vecu16">, z.ZodLiteral<"vecu32">, z.ZodLiteral<"vecu64">, z.ZodLiteral<"vecu128">, z.ZodLiteral<"vecu256">, z.ZodLiteral<"vecvecu8">]>;
633
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
634
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
635
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
636
+ }, "strict", z.ZodTypeAny, {
637
+ name_or_address?: string | undefined;
638
+ local_mark_first?: boolean | undefined;
639
+ }, {
640
+ name_or_address?: string | undefined;
641
+ local_mark_first?: boolean | undefined;
642
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
643
+ entities: z.ZodArray<z.ZodObject<{
644
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
645
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
646
+ }, "strict", z.ZodTypeAny, {
647
+ name_or_address?: string | undefined;
648
+ local_mark_first?: boolean | undefined;
649
+ }, {
650
+ name_or_address?: string | undefined;
651
+ local_mark_first?: boolean | undefined;
652
+ }>, "many">;
653
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
654
+ }, "strict", z.ZodTypeAny, {
655
+ entities: {
656
+ name_or_address?: string | undefined;
657
+ local_mark_first?: boolean | undefined;
658
+ }[];
659
+ check_all_founded?: boolean | undefined;
660
+ }, {
661
+ entities: {
662
+ name_or_address?: string | undefined;
663
+ local_mark_first?: boolean | undefined;
664
+ }[];
665
+ check_all_founded?: boolean | undefined;
666
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
667
+ name: z.ZodDefault<z.ZodString>;
668
+ } & {
669
+ object_type: z.ZodOptional<z.ZodEnum<[import("wowok").ObjectType.Permission, import("wowok").ObjectType.Repository, import("wowok").ObjectType.Arb, import("wowok").ObjectType.Arbitration, import("wowok").ObjectType.Service, import("wowok").ObjectType.Machine, import("wowok").ObjectType.Order, import("wowok").ObjectType.Progress, import("wowok").ObjectType.Payment, import("wowok").ObjectType.Treasury, import("wowok").ObjectType.Guard, import("wowok").ObjectType.Demand, import("wowok").ObjectType.Passport, import("wowok").ObjectType.Allocation, import("wowok").ObjectType.Resource, import("wowok").ObjectType.Reward, import("wowok").ObjectType.Discount, import("wowok").ObjectType.EntityRegistrar, import("wowok").ObjectType.EntityLinker, import("wowok").ObjectType.Proof, import("wowok").ObjectType.WReceivedObject, import("wowok").ObjectType.Contact, import("wowok").ObjectType.TableItem_ProgressHistory, import("wowok").ObjectType.TableItem_PermissionPerm, import("wowok").ObjectType.TableItem_DemandPresenter, import("wowok").ObjectType.TableItem_MachineNode, import("wowok").ObjectType.TableItem_TreasuryHistory, import("wowok").ObjectType.TableItem_RepositoryData, import("wowok").ObjectType.TableItem_RewardRecord, import("wowok").ObjectType.TableItem_EntityLinker, import("wowok").ObjectType.TableItem_AddressMark, import("wowok").ObjectType.TableItem_EntityRegistrar]>>;
670
+ }, "strict", z.ZodTypeAny, {
671
+ identifier: number;
672
+ b_submission: boolean;
673
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
674
+ name: string;
675
+ value?: string | number | boolean | {
676
+ name_or_address?: string | undefined;
677
+ local_mark_first?: boolean | undefined;
678
+ } | {
679
+ entities: {
680
+ name_or_address?: string | undefined;
681
+ local_mark_first?: boolean | undefined;
682
+ }[];
683
+ check_all_founded?: boolean | undefined;
684
+ } | string[] | boolean[] | number[] | number[][] | undefined;
685
+ object_type?: import("wowok").ObjectType | undefined;
686
+ }, {
687
+ identifier: number;
688
+ b_submission: boolean;
689
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
690
+ value?: string | number | boolean | {
691
+ name_or_address?: string | undefined;
692
+ local_mark_first?: boolean | undefined;
693
+ } | {
694
+ entities: {
695
+ name_or_address?: string | undefined;
696
+ local_mark_first?: boolean | undefined;
697
+ }[];
698
+ check_all_founded?: boolean | undefined;
699
+ } | string[] | boolean[] | number[] | number[][] | undefined;
700
+ name?: string | undefined;
701
+ object_type?: import("wowok").ObjectType | undefined;
702
+ }>, "many">;
703
+ }, "strict", z.ZodTypeAny, {
704
+ guard: string;
705
+ submission: {
706
+ identifier: number;
707
+ b_submission: boolean;
708
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
709
+ name: string;
710
+ value?: string | number | boolean | {
711
+ name_or_address?: string | undefined;
712
+ local_mark_first?: boolean | undefined;
713
+ } | {
714
+ entities: {
715
+ name_or_address?: string | undefined;
716
+ local_mark_first?: boolean | undefined;
717
+ }[];
718
+ check_all_founded?: boolean | undefined;
719
+ } | string[] | boolean[] | number[] | number[][] | undefined;
720
+ object_type?: import("wowok").ObjectType | undefined;
721
+ }[];
722
+ }, {
723
+ guard: string;
724
+ submission: {
725
+ identifier: number;
726
+ b_submission: boolean;
727
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
728
+ value?: string | number | boolean | {
729
+ name_or_address?: string | undefined;
730
+ local_mark_first?: boolean | undefined;
731
+ } | {
732
+ entities: {
733
+ name_or_address?: string | undefined;
734
+ local_mark_first?: boolean | undefined;
735
+ }[];
736
+ check_all_founded?: boolean | undefined;
737
+ } | string[] | boolean[] | number[] | number[][] | undefined;
738
+ name?: string | undefined;
739
+ object_type?: import("wowok").ObjectType | undefined;
740
+ }[];
741
+ }>, "many">;
742
+ }, "strict", z.ZodTypeAny, {
743
+ type: "submission";
744
+ guard: {
745
+ object: string;
746
+ impack: boolean;
747
+ }[];
748
+ submission: {
749
+ guard: string;
750
+ submission: {
751
+ identifier: number;
752
+ b_submission: boolean;
753
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
754
+ name: string;
755
+ value?: string | number | boolean | {
756
+ name_or_address?: string | undefined;
757
+ local_mark_first?: boolean | undefined;
758
+ } | {
759
+ entities: {
760
+ name_or_address?: string | undefined;
761
+ local_mark_first?: boolean | undefined;
762
+ }[];
763
+ check_all_founded?: boolean | undefined;
764
+ } | string[] | boolean[] | number[] | number[][] | undefined;
765
+ object_type?: import("wowok").ObjectType | undefined;
766
+ }[];
767
+ }[];
768
+ }, {
769
+ type: "submission";
770
+ guard: {
771
+ object: string;
772
+ impack: boolean;
773
+ }[];
774
+ submission: {
775
+ guard: string;
776
+ submission: {
777
+ identifier: number;
778
+ b_submission: boolean;
779
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
780
+ value?: string | number | boolean | {
781
+ name_or_address?: string | undefined;
782
+ local_mark_first?: boolean | undefined;
783
+ } | {
784
+ entities: {
785
+ name_or_address?: string | undefined;
786
+ local_mark_first?: boolean | undefined;
787
+ }[];
788
+ check_all_founded?: boolean | undefined;
789
+ } | string[] | boolean[] | number[] | number[][] | undefined;
790
+ name?: string | undefined;
791
+ object_type?: import("wowok").ObjectType | undefined;
792
+ }[];
793
+ }[];
794
+ }>>;
795
+ }, "strict", z.ZodTypeAny, {
796
+ data: {
797
+ object: string;
798
+ progress?: {
799
+ operation: {
800
+ forward: string;
801
+ next_node_name: string;
802
+ };
803
+ message?: string | undefined;
804
+ hold?: boolean | undefined;
805
+ adminUnhold?: boolean | undefined;
806
+ } | undefined;
807
+ required_info?: string | null | undefined;
808
+ agents?: {
809
+ entities: {
810
+ name_or_address?: string | undefined;
811
+ local_mark_first?: boolean | undefined;
812
+ }[];
813
+ check_all_founded?: boolean | undefined;
814
+ } | undefined;
815
+ arb_confirm?: {
816
+ arb: string;
817
+ confirm: boolean;
818
+ description?: string | undefined;
819
+ proposition?: string[] | undefined;
820
+ } | undefined;
821
+ arb_objection?: {
822
+ objection: string;
823
+ arb: string;
824
+ } | undefined;
825
+ arb_claim_compensation?: {
826
+ arb: string;
827
+ } | undefined;
828
+ receive?: {
829
+ result: {
830
+ received: {
831
+ id: string;
832
+ balance: string | number;
833
+ payment: string;
834
+ }[];
835
+ balance: string | number;
836
+ token_type: string;
837
+ } | {
838
+ type: string;
839
+ id: string;
840
+ content_raw?: any;
841
+ }[];
842
+ } | undefined;
843
+ transfer_to?: {
844
+ name_or_address?: string | undefined;
845
+ local_mark_first?: boolean | undefined;
846
+ } | undefined;
847
+ };
848
+ submission?: {
849
+ type: "submission";
850
+ guard: {
851
+ object: string;
852
+ impack: boolean;
853
+ }[];
854
+ submission: {
855
+ guard: string;
856
+ submission: {
857
+ identifier: number;
858
+ b_submission: boolean;
859
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
860
+ name: string;
861
+ value?: string | number | boolean | {
862
+ name_or_address?: string | undefined;
863
+ local_mark_first?: boolean | undefined;
864
+ } | {
865
+ entities: {
866
+ name_or_address?: string | undefined;
867
+ local_mark_first?: boolean | undefined;
868
+ }[];
869
+ check_all_founded?: boolean | undefined;
870
+ } | string[] | boolean[] | number[] | number[][] | undefined;
871
+ object_type?: import("wowok").ObjectType | undefined;
872
+ }[];
873
+ }[];
874
+ } | undefined;
875
+ env?: {
876
+ account: string;
877
+ no_cache?: boolean | undefined;
878
+ network?: import("wowok").ENTRYPOINT | undefined;
879
+ permission_guard?: string[] | undefined;
880
+ referrer?: string | undefined;
881
+ } | undefined;
882
+ }, {
883
+ data: {
884
+ object: string;
885
+ progress?: {
886
+ operation: {
887
+ forward: string;
888
+ next_node_name: string;
889
+ };
890
+ message?: string | undefined;
891
+ hold?: boolean | undefined;
892
+ adminUnhold?: boolean | undefined;
893
+ } | undefined;
894
+ required_info?: string | null | undefined;
895
+ agents?: {
896
+ entities: {
897
+ name_or_address?: string | undefined;
898
+ local_mark_first?: boolean | undefined;
899
+ }[];
900
+ check_all_founded?: boolean | undefined;
901
+ } | undefined;
902
+ arb_confirm?: {
903
+ arb: string;
904
+ confirm: boolean;
905
+ description?: string | undefined;
906
+ proposition?: string[] | undefined;
907
+ } | undefined;
908
+ arb_objection?: {
909
+ objection: string;
910
+ arb: string;
911
+ } | undefined;
912
+ arb_claim_compensation?: {
913
+ arb: string;
914
+ } | undefined;
915
+ receive?: {
916
+ result: {
917
+ received: {
918
+ id: string;
919
+ balance: string | number;
920
+ payment: string;
921
+ }[];
922
+ balance: string | number;
923
+ token_type: string;
924
+ } | {
925
+ type: string;
926
+ id: string;
927
+ content_raw?: any;
928
+ }[];
929
+ } | undefined;
930
+ transfer_to?: {
931
+ name_or_address?: string | undefined;
932
+ local_mark_first?: boolean | undefined;
933
+ } | undefined;
934
+ };
935
+ submission?: {
936
+ type: "submission";
937
+ guard: {
938
+ object: string;
939
+ impack: boolean;
940
+ }[];
941
+ submission: {
942
+ guard: string;
943
+ submission: {
944
+ identifier: number;
945
+ b_submission: boolean;
946
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
947
+ value?: string | number | boolean | {
948
+ name_or_address?: string | undefined;
949
+ local_mark_first?: boolean | undefined;
950
+ } | {
951
+ entities: {
952
+ name_or_address?: string | undefined;
953
+ local_mark_first?: boolean | undefined;
954
+ }[];
955
+ check_all_founded?: boolean | undefined;
956
+ } | string[] | boolean[] | number[] | number[][] | undefined;
957
+ name?: string | undefined;
958
+ object_type?: import("wowok").ObjectType | undefined;
959
+ }[];
960
+ }[];
961
+ } | undefined;
962
+ env?: {
963
+ no_cache?: boolean | undefined;
964
+ network?: import("wowok").ENTRYPOINT | undefined;
965
+ account?: string | undefined;
966
+ permission_guard?: string[] | undefined;
967
+ referrer?: string | undefined;
968
+ } | undefined;
969
+ }>;
970
+ export type ArbConfirm = z.infer<typeof ArbConfirmSchema>;
971
+ export type ArbObjection = z.infer<typeof ArbObjectionSchema>;
972
+ export type ArbClaimCompensation = z.infer<typeof ArbClaimCompensationSchema>;
973
+ export type CallOrder_Data = z.infer<typeof CallOrder_DataSchema>;
974
+ export type CallOrder_Input = z.infer<typeof CallOrder_InputSchema>;