wowok_agent 2.1.9 → 2.1.18

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.
@@ -1,9 +1,1052 @@
1
1
  import { z } from "zod";
2
- export declare const ArbConfirmSchema: any;
3
- export declare const ArbObjectionSchema: any;
4
- export declare const ArbClaimCompensationSchema: any;
5
- export declare const CallOrder_DataSchema: any;
6
- export declare const CallOrder_InputSchema: any;
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.ZodDiscriminatedUnion<"hold", [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.ZodLiteral<true>;
75
+ adminUnhold: z.ZodOptional<z.ZodBoolean>;
76
+ message: z.ZodOptional<z.ZodString>;
77
+ }, "strict", z.ZodTypeAny, {
78
+ hold: true;
79
+ operation: {
80
+ forward: string;
81
+ next_node_name: string;
82
+ };
83
+ message?: string | undefined;
84
+ adminUnhold?: boolean | undefined;
85
+ }, {
86
+ hold: true;
87
+ operation: {
88
+ forward: string;
89
+ next_node_name: string;
90
+ };
91
+ message?: string | undefined;
92
+ adminUnhold?: boolean | undefined;
93
+ }>, z.ZodObject<{
94
+ operation: z.ZodObject<{
95
+ next_node_name: z.ZodEffects<z.ZodString, string, string>;
96
+ forward: z.ZodEffects<z.ZodString, string, string>;
97
+ }, "strict", z.ZodTypeAny, {
98
+ forward: string;
99
+ next_node_name: string;
100
+ }, {
101
+ forward: string;
102
+ next_node_name: string;
103
+ }>;
104
+ hold: z.ZodLiteral<false>;
105
+ message: z.ZodOptional<z.ZodString>;
106
+ }, "strict", z.ZodTypeAny, {
107
+ hold: false;
108
+ operation: {
109
+ forward: string;
110
+ next_node_name: string;
111
+ };
112
+ message?: string | undefined;
113
+ }, {
114
+ hold: false;
115
+ operation: {
116
+ forward: string;
117
+ next_node_name: string;
118
+ };
119
+ message?: string | undefined;
120
+ }>]>>;
121
+ arb_confirm: z.ZodOptional<z.ZodObject<{
122
+ arb: z.ZodEffects<z.ZodString, string, string>;
123
+ confirm: z.ZodBoolean;
124
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
125
+ proposition: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
126
+ }, "strict", z.ZodTypeAny, {
127
+ arb: string;
128
+ confirm: boolean;
129
+ description?: string | undefined;
130
+ proposition?: string[] | undefined;
131
+ }, {
132
+ arb: string;
133
+ confirm: boolean;
134
+ description?: string | undefined;
135
+ proposition?: string[] | undefined;
136
+ }>>;
137
+ arb_objection: z.ZodOptional<z.ZodObject<{
138
+ arb: z.ZodEffects<z.ZodString, string, string>;
139
+ objection: z.ZodEffects<z.ZodString, string, string>;
140
+ }, "strict", z.ZodTypeAny, {
141
+ objection: string;
142
+ arb: string;
143
+ }, {
144
+ objection: string;
145
+ arb: string;
146
+ }>>;
147
+ arb_claim_compensation: z.ZodOptional<z.ZodObject<{
148
+ arb: z.ZodEffects<z.ZodString, string, string>;
149
+ }, "strict", z.ZodTypeAny, {
150
+ arb: string;
151
+ }, {
152
+ arb: string;
153
+ }>>;
154
+ receive: z.ZodOptional<z.ZodObject<{
155
+ result: z.ZodUnion<[z.ZodObject<{
156
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
157
+ token_type: z.ZodEffects<z.ZodString, string, string>;
158
+ received: z.ZodArray<z.ZodObject<{
159
+ id: z.ZodString;
160
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
161
+ payment: z.ZodString;
162
+ }, "strict", z.ZodTypeAny, {
163
+ id: string;
164
+ balance: string | number;
165
+ payment: string;
166
+ }, {
167
+ id: string;
168
+ balance: string | number;
169
+ payment: string;
170
+ }>, "many">;
171
+ }, "strict", z.ZodTypeAny, {
172
+ received: {
173
+ id: string;
174
+ balance: string | number;
175
+ payment: string;
176
+ }[];
177
+ balance: string | number;
178
+ token_type: string;
179
+ }, {
180
+ received: {
181
+ id: string;
182
+ balance: string | number;
183
+ payment: string;
184
+ }[];
185
+ balance: string | number;
186
+ token_type: string;
187
+ }>, z.ZodArray<z.ZodObject<{
188
+ id: z.ZodString;
189
+ type: z.ZodString;
190
+ }, "strict", z.ZodTypeAny, {
191
+ type: string;
192
+ id: string;
193
+ }, {
194
+ type: string;
195
+ id: string;
196
+ }>, "many">]>;
197
+ }, "strict", z.ZodTypeAny, {
198
+ result: {
199
+ received: {
200
+ id: string;
201
+ balance: string | number;
202
+ payment: string;
203
+ }[];
204
+ balance: string | number;
205
+ token_type: string;
206
+ } | {
207
+ type: string;
208
+ id: string;
209
+ }[];
210
+ }, {
211
+ result: {
212
+ received: {
213
+ id: string;
214
+ balance: string | number;
215
+ payment: string;
216
+ }[];
217
+ balance: string | number;
218
+ token_type: string;
219
+ } | {
220
+ type: string;
221
+ id: string;
222
+ }[];
223
+ }>>;
224
+ transfer_to: z.ZodOptional<z.ZodObject<{
225
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
226
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
227
+ }, "strict", z.ZodTypeAny, {
228
+ name_or_address?: string | undefined;
229
+ local_mark_first?: boolean | undefined;
230
+ }, {
231
+ name_or_address?: string | undefined;
232
+ local_mark_first?: boolean | undefined;
233
+ }>>;
234
+ }, "strict", z.ZodTypeAny, {
235
+ object: string;
236
+ progress?: {
237
+ hold: true;
238
+ operation: {
239
+ forward: string;
240
+ next_node_name: string;
241
+ };
242
+ message?: string | undefined;
243
+ adminUnhold?: boolean | undefined;
244
+ } | {
245
+ hold: false;
246
+ operation: {
247
+ forward: string;
248
+ next_node_name: string;
249
+ };
250
+ message?: string | undefined;
251
+ } | undefined;
252
+ required_info?: string | null | undefined;
253
+ agents?: {
254
+ entities: {
255
+ name_or_address?: string | undefined;
256
+ local_mark_first?: boolean | undefined;
257
+ }[];
258
+ check_all_founded?: boolean | undefined;
259
+ } | undefined;
260
+ arb_confirm?: {
261
+ arb: string;
262
+ confirm: boolean;
263
+ description?: string | undefined;
264
+ proposition?: string[] | undefined;
265
+ } | undefined;
266
+ arb_objection?: {
267
+ objection: string;
268
+ arb: string;
269
+ } | undefined;
270
+ arb_claim_compensation?: {
271
+ arb: string;
272
+ } | undefined;
273
+ receive?: {
274
+ result: {
275
+ received: {
276
+ id: string;
277
+ balance: string | number;
278
+ payment: string;
279
+ }[];
280
+ balance: string | number;
281
+ token_type: string;
282
+ } | {
283
+ type: string;
284
+ id: string;
285
+ }[];
286
+ } | undefined;
287
+ transfer_to?: {
288
+ name_or_address?: string | undefined;
289
+ local_mark_first?: boolean | undefined;
290
+ } | undefined;
291
+ }, {
292
+ object: string;
293
+ progress?: {
294
+ hold: true;
295
+ operation: {
296
+ forward: string;
297
+ next_node_name: string;
298
+ };
299
+ message?: string | undefined;
300
+ adminUnhold?: boolean | undefined;
301
+ } | {
302
+ hold: false;
303
+ operation: {
304
+ forward: string;
305
+ next_node_name: string;
306
+ };
307
+ message?: string | undefined;
308
+ } | undefined;
309
+ required_info?: string | null | undefined;
310
+ agents?: {
311
+ entities: {
312
+ name_or_address?: string | undefined;
313
+ local_mark_first?: boolean | undefined;
314
+ }[];
315
+ check_all_founded?: boolean | undefined;
316
+ } | undefined;
317
+ arb_confirm?: {
318
+ arb: string;
319
+ confirm: boolean;
320
+ description?: string | undefined;
321
+ proposition?: string[] | undefined;
322
+ } | undefined;
323
+ arb_objection?: {
324
+ objection: string;
325
+ arb: string;
326
+ } | undefined;
327
+ arb_claim_compensation?: {
328
+ arb: string;
329
+ } | undefined;
330
+ receive?: {
331
+ result: {
332
+ received: {
333
+ id: string;
334
+ balance: string | number;
335
+ payment: string;
336
+ }[];
337
+ balance: string | number;
338
+ token_type: string;
339
+ } | {
340
+ type: string;
341
+ id: string;
342
+ }[];
343
+ } | undefined;
344
+ transfer_to?: {
345
+ name_or_address?: string | undefined;
346
+ local_mark_first?: boolean | undefined;
347
+ } | undefined;
348
+ }>;
349
+ export declare const CallOrder_InputSchema: z.ZodObject<{
350
+ data: z.ZodObject<{
351
+ object: z.ZodEffects<z.ZodString, string, string>;
352
+ agents: z.ZodOptional<z.ZodObject<{
353
+ entities: z.ZodArray<z.ZodObject<{
354
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
355
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
356
+ }, "strict", z.ZodTypeAny, {
357
+ name_or_address?: string | undefined;
358
+ local_mark_first?: boolean | undefined;
359
+ }, {
360
+ name_or_address?: string | undefined;
361
+ local_mark_first?: boolean | undefined;
362
+ }>, "many">;
363
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
364
+ }, "strict", z.ZodTypeAny, {
365
+ entities: {
366
+ name_or_address?: string | undefined;
367
+ local_mark_first?: boolean | undefined;
368
+ }[];
369
+ check_all_founded?: boolean | undefined;
370
+ }, {
371
+ entities: {
372
+ name_or_address?: string | undefined;
373
+ local_mark_first?: boolean | undefined;
374
+ }[];
375
+ check_all_founded?: boolean | undefined;
376
+ }>>;
377
+ required_info: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
378
+ progress: z.ZodOptional<z.ZodDiscriminatedUnion<"hold", [z.ZodObject<{
379
+ operation: z.ZodObject<{
380
+ next_node_name: z.ZodEffects<z.ZodString, string, string>;
381
+ forward: z.ZodEffects<z.ZodString, string, string>;
382
+ }, "strict", z.ZodTypeAny, {
383
+ forward: string;
384
+ next_node_name: string;
385
+ }, {
386
+ forward: string;
387
+ next_node_name: string;
388
+ }>;
389
+ hold: z.ZodLiteral<true>;
390
+ adminUnhold: z.ZodOptional<z.ZodBoolean>;
391
+ message: z.ZodOptional<z.ZodString>;
392
+ }, "strict", z.ZodTypeAny, {
393
+ hold: true;
394
+ operation: {
395
+ forward: string;
396
+ next_node_name: string;
397
+ };
398
+ message?: string | undefined;
399
+ adminUnhold?: boolean | undefined;
400
+ }, {
401
+ hold: true;
402
+ operation: {
403
+ forward: string;
404
+ next_node_name: string;
405
+ };
406
+ message?: string | undefined;
407
+ adminUnhold?: boolean | undefined;
408
+ }>, z.ZodObject<{
409
+ operation: z.ZodObject<{
410
+ next_node_name: z.ZodEffects<z.ZodString, string, string>;
411
+ forward: z.ZodEffects<z.ZodString, string, string>;
412
+ }, "strict", z.ZodTypeAny, {
413
+ forward: string;
414
+ next_node_name: string;
415
+ }, {
416
+ forward: string;
417
+ next_node_name: string;
418
+ }>;
419
+ hold: z.ZodLiteral<false>;
420
+ message: z.ZodOptional<z.ZodString>;
421
+ }, "strict", z.ZodTypeAny, {
422
+ hold: false;
423
+ operation: {
424
+ forward: string;
425
+ next_node_name: string;
426
+ };
427
+ message?: string | undefined;
428
+ }, {
429
+ hold: false;
430
+ operation: {
431
+ forward: string;
432
+ next_node_name: string;
433
+ };
434
+ message?: string | undefined;
435
+ }>]>>;
436
+ arb_confirm: z.ZodOptional<z.ZodObject<{
437
+ arb: z.ZodEffects<z.ZodString, string, string>;
438
+ confirm: z.ZodBoolean;
439
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
440
+ proposition: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
441
+ }, "strict", z.ZodTypeAny, {
442
+ arb: string;
443
+ confirm: boolean;
444
+ description?: string | undefined;
445
+ proposition?: string[] | undefined;
446
+ }, {
447
+ arb: string;
448
+ confirm: boolean;
449
+ description?: string | undefined;
450
+ proposition?: string[] | undefined;
451
+ }>>;
452
+ arb_objection: z.ZodOptional<z.ZodObject<{
453
+ arb: z.ZodEffects<z.ZodString, string, string>;
454
+ objection: z.ZodEffects<z.ZodString, string, string>;
455
+ }, "strict", z.ZodTypeAny, {
456
+ objection: string;
457
+ arb: string;
458
+ }, {
459
+ objection: string;
460
+ arb: string;
461
+ }>>;
462
+ arb_claim_compensation: z.ZodOptional<z.ZodObject<{
463
+ arb: z.ZodEffects<z.ZodString, string, string>;
464
+ }, "strict", z.ZodTypeAny, {
465
+ arb: string;
466
+ }, {
467
+ arb: string;
468
+ }>>;
469
+ receive: z.ZodOptional<z.ZodObject<{
470
+ result: z.ZodUnion<[z.ZodObject<{
471
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
472
+ token_type: z.ZodEffects<z.ZodString, string, string>;
473
+ received: z.ZodArray<z.ZodObject<{
474
+ id: z.ZodString;
475
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
476
+ payment: z.ZodString;
477
+ }, "strict", z.ZodTypeAny, {
478
+ id: string;
479
+ balance: string | number;
480
+ payment: string;
481
+ }, {
482
+ id: string;
483
+ balance: string | number;
484
+ payment: string;
485
+ }>, "many">;
486
+ }, "strict", z.ZodTypeAny, {
487
+ received: {
488
+ id: string;
489
+ balance: string | number;
490
+ payment: string;
491
+ }[];
492
+ balance: string | number;
493
+ token_type: string;
494
+ }, {
495
+ received: {
496
+ id: string;
497
+ balance: string | number;
498
+ payment: string;
499
+ }[];
500
+ balance: string | number;
501
+ token_type: string;
502
+ }>, z.ZodArray<z.ZodObject<{
503
+ id: z.ZodString;
504
+ type: z.ZodString;
505
+ }, "strict", z.ZodTypeAny, {
506
+ type: string;
507
+ id: string;
508
+ }, {
509
+ type: string;
510
+ id: string;
511
+ }>, "many">]>;
512
+ }, "strict", z.ZodTypeAny, {
513
+ result: {
514
+ received: {
515
+ id: string;
516
+ balance: string | number;
517
+ payment: string;
518
+ }[];
519
+ balance: string | number;
520
+ token_type: string;
521
+ } | {
522
+ type: string;
523
+ id: string;
524
+ }[];
525
+ }, {
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
+ }[];
538
+ }>>;
539
+ transfer_to: z.ZodOptional<z.ZodObject<{
540
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
541
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
542
+ }, "strict", z.ZodTypeAny, {
543
+ name_or_address?: string | undefined;
544
+ local_mark_first?: boolean | undefined;
545
+ }, {
546
+ name_or_address?: string | undefined;
547
+ local_mark_first?: boolean | undefined;
548
+ }>>;
549
+ }, "strict", z.ZodTypeAny, {
550
+ object: string;
551
+ progress?: {
552
+ hold: true;
553
+ operation: {
554
+ forward: string;
555
+ next_node_name: string;
556
+ };
557
+ message?: string | undefined;
558
+ adminUnhold?: boolean | undefined;
559
+ } | {
560
+ hold: false;
561
+ operation: {
562
+ forward: string;
563
+ next_node_name: string;
564
+ };
565
+ message?: string | undefined;
566
+ } | undefined;
567
+ required_info?: string | null | undefined;
568
+ agents?: {
569
+ entities: {
570
+ name_or_address?: string | undefined;
571
+ local_mark_first?: boolean | undefined;
572
+ }[];
573
+ check_all_founded?: boolean | undefined;
574
+ } | undefined;
575
+ arb_confirm?: {
576
+ arb: string;
577
+ confirm: boolean;
578
+ description?: string | undefined;
579
+ proposition?: string[] | undefined;
580
+ } | undefined;
581
+ arb_objection?: {
582
+ objection: string;
583
+ arb: string;
584
+ } | undefined;
585
+ arb_claim_compensation?: {
586
+ arb: string;
587
+ } | undefined;
588
+ receive?: {
589
+ result: {
590
+ received: {
591
+ id: string;
592
+ balance: string | number;
593
+ payment: string;
594
+ }[];
595
+ balance: string | number;
596
+ token_type: string;
597
+ } | {
598
+ type: string;
599
+ id: string;
600
+ }[];
601
+ } | undefined;
602
+ transfer_to?: {
603
+ name_or_address?: string | undefined;
604
+ local_mark_first?: boolean | undefined;
605
+ } | undefined;
606
+ }, {
607
+ object: string;
608
+ progress?: {
609
+ hold: true;
610
+ operation: {
611
+ forward: string;
612
+ next_node_name: string;
613
+ };
614
+ message?: string | undefined;
615
+ adminUnhold?: boolean | undefined;
616
+ } | {
617
+ hold: false;
618
+ operation: {
619
+ forward: string;
620
+ next_node_name: string;
621
+ };
622
+ message?: string | undefined;
623
+ } | undefined;
624
+ required_info?: string | null | undefined;
625
+ agents?: {
626
+ entities: {
627
+ name_or_address?: string | undefined;
628
+ local_mark_first?: boolean | undefined;
629
+ }[];
630
+ check_all_founded?: boolean | undefined;
631
+ } | undefined;
632
+ arb_confirm?: {
633
+ arb: string;
634
+ confirm: boolean;
635
+ description?: string | undefined;
636
+ proposition?: string[] | undefined;
637
+ } | undefined;
638
+ arb_objection?: {
639
+ objection: string;
640
+ arb: string;
641
+ } | undefined;
642
+ arb_claim_compensation?: {
643
+ arb: string;
644
+ } | undefined;
645
+ receive?: {
646
+ result: {
647
+ received: {
648
+ id: string;
649
+ balance: string | number;
650
+ payment: string;
651
+ }[];
652
+ balance: string | number;
653
+ token_type: string;
654
+ } | {
655
+ type: string;
656
+ id: string;
657
+ }[];
658
+ } | undefined;
659
+ transfer_to?: {
660
+ name_or_address?: string | undefined;
661
+ local_mark_first?: boolean | undefined;
662
+ } | undefined;
663
+ }>;
664
+ env: z.ZodOptional<z.ZodObject<{
665
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
666
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
667
+ no_cache: z.ZodOptional<z.ZodBoolean>;
668
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
669
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
670
+ }, "strict", z.ZodTypeAny, {
671
+ account: string;
672
+ no_cache?: boolean | undefined;
673
+ network?: import("wowok").ENTRYPOINT | undefined;
674
+ permission_guard?: string[] | undefined;
675
+ referrer?: string | undefined;
676
+ }, {
677
+ no_cache?: boolean | undefined;
678
+ network?: import("wowok").ENTRYPOINT | undefined;
679
+ account?: string | undefined;
680
+ permission_guard?: string[] | undefined;
681
+ referrer?: string | undefined;
682
+ }>>;
683
+ submission: z.ZodOptional<z.ZodObject<{
684
+ type: z.ZodLiteral<"submission">;
685
+ guard: z.ZodArray<z.ZodObject<{
686
+ object: z.ZodEffects<z.ZodString, string, string>;
687
+ impack: z.ZodBoolean;
688
+ }, "strict", z.ZodTypeAny, {
689
+ object: string;
690
+ impack: boolean;
691
+ }, {
692
+ object: string;
693
+ impack: boolean;
694
+ }>, "many">;
695
+ submission: z.ZodArray<z.ZodObject<{
696
+ guard: z.ZodEffects<z.ZodString, string, string>;
697
+ submission: z.ZodArray<z.ZodObject<{
698
+ identifier: z.ZodNumber;
699
+ b_submission: z.ZodBoolean;
700
+ 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">]>;
701
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
702
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
703
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
704
+ }, "strict", z.ZodTypeAny, {
705
+ name_or_address?: string | undefined;
706
+ local_mark_first?: boolean | undefined;
707
+ }, {
708
+ name_or_address?: string | undefined;
709
+ local_mark_first?: boolean | undefined;
710
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
711
+ entities: z.ZodArray<z.ZodObject<{
712
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
713
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
714
+ }, "strict", z.ZodTypeAny, {
715
+ name_or_address?: string | undefined;
716
+ local_mark_first?: boolean | undefined;
717
+ }, {
718
+ name_or_address?: string | undefined;
719
+ local_mark_first?: boolean | undefined;
720
+ }>, "many">;
721
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
722
+ }, "strict", z.ZodTypeAny, {
723
+ entities: {
724
+ name_or_address?: string | undefined;
725
+ local_mark_first?: boolean | undefined;
726
+ }[];
727
+ check_all_founded?: boolean | undefined;
728
+ }, {
729
+ entities: {
730
+ name_or_address?: string | undefined;
731
+ local_mark_first?: boolean | undefined;
732
+ }[];
733
+ check_all_founded?: boolean | undefined;
734
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
735
+ name: z.ZodDefault<z.ZodString>;
736
+ } & {
737
+ 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]>>;
738
+ }, "strict", z.ZodTypeAny, {
739
+ identifier: number;
740
+ b_submission: boolean;
741
+ 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";
742
+ name: string;
743
+ value?: string | number | boolean | {
744
+ name_or_address?: string | undefined;
745
+ local_mark_first?: boolean | undefined;
746
+ } | {
747
+ entities: {
748
+ name_or_address?: string | undefined;
749
+ local_mark_first?: boolean | undefined;
750
+ }[];
751
+ check_all_founded?: boolean | undefined;
752
+ } | boolean[] | string[] | number[] | number[][] | undefined;
753
+ object_type?: import("wowok").ObjectType | undefined;
754
+ }, {
755
+ identifier: number;
756
+ b_submission: boolean;
757
+ 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";
758
+ value?: string | number | boolean | {
759
+ name_or_address?: string | undefined;
760
+ local_mark_first?: boolean | undefined;
761
+ } | {
762
+ entities: {
763
+ name_or_address?: string | undefined;
764
+ local_mark_first?: boolean | undefined;
765
+ }[];
766
+ check_all_founded?: boolean | undefined;
767
+ } | boolean[] | string[] | number[] | number[][] | undefined;
768
+ name?: string | undefined;
769
+ object_type?: import("wowok").ObjectType | undefined;
770
+ }>, "many">;
771
+ }, "strict", z.ZodTypeAny, {
772
+ guard: string;
773
+ submission: {
774
+ identifier: number;
775
+ b_submission: boolean;
776
+ 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";
777
+ name: string;
778
+ value?: string | number | boolean | {
779
+ name_or_address?: string | undefined;
780
+ local_mark_first?: boolean | undefined;
781
+ } | {
782
+ entities: {
783
+ name_or_address?: string | undefined;
784
+ local_mark_first?: boolean | undefined;
785
+ }[];
786
+ check_all_founded?: boolean | undefined;
787
+ } | boolean[] | string[] | number[] | number[][] | undefined;
788
+ object_type?: import("wowok").ObjectType | undefined;
789
+ }[];
790
+ }, {
791
+ guard: string;
792
+ submission: {
793
+ identifier: number;
794
+ b_submission: boolean;
795
+ 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";
796
+ value?: string | number | boolean | {
797
+ name_or_address?: string | undefined;
798
+ local_mark_first?: boolean | undefined;
799
+ } | {
800
+ entities: {
801
+ name_or_address?: string | undefined;
802
+ local_mark_first?: boolean | undefined;
803
+ }[];
804
+ check_all_founded?: boolean | undefined;
805
+ } | boolean[] | string[] | number[] | number[][] | undefined;
806
+ name?: string | undefined;
807
+ object_type?: import("wowok").ObjectType | undefined;
808
+ }[];
809
+ }>, "many">;
810
+ }, "strict", z.ZodTypeAny, {
811
+ type: "submission";
812
+ guard: {
813
+ object: string;
814
+ impack: boolean;
815
+ }[];
816
+ submission: {
817
+ guard: string;
818
+ submission: {
819
+ identifier: number;
820
+ b_submission: boolean;
821
+ 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";
822
+ name: string;
823
+ value?: string | number | boolean | {
824
+ name_or_address?: string | undefined;
825
+ local_mark_first?: boolean | undefined;
826
+ } | {
827
+ entities: {
828
+ name_or_address?: string | undefined;
829
+ local_mark_first?: boolean | undefined;
830
+ }[];
831
+ check_all_founded?: boolean | undefined;
832
+ } | boolean[] | string[] | number[] | number[][] | undefined;
833
+ object_type?: import("wowok").ObjectType | undefined;
834
+ }[];
835
+ }[];
836
+ }, {
837
+ type: "submission";
838
+ guard: {
839
+ object: string;
840
+ impack: boolean;
841
+ }[];
842
+ submission: {
843
+ guard: string;
844
+ submission: {
845
+ identifier: number;
846
+ b_submission: boolean;
847
+ 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";
848
+ value?: string | number | boolean | {
849
+ name_or_address?: string | undefined;
850
+ local_mark_first?: boolean | undefined;
851
+ } | {
852
+ entities: {
853
+ name_or_address?: string | undefined;
854
+ local_mark_first?: boolean | undefined;
855
+ }[];
856
+ check_all_founded?: boolean | undefined;
857
+ } | boolean[] | string[] | number[] | number[][] | undefined;
858
+ name?: string | undefined;
859
+ object_type?: import("wowok").ObjectType | undefined;
860
+ }[];
861
+ }[];
862
+ }>>;
863
+ }, "strict", z.ZodTypeAny, {
864
+ data: {
865
+ object: string;
866
+ progress?: {
867
+ hold: true;
868
+ operation: {
869
+ forward: string;
870
+ next_node_name: string;
871
+ };
872
+ message?: string | undefined;
873
+ adminUnhold?: boolean | undefined;
874
+ } | {
875
+ hold: false;
876
+ operation: {
877
+ forward: string;
878
+ next_node_name: string;
879
+ };
880
+ message?: string | undefined;
881
+ } | undefined;
882
+ required_info?: string | null | undefined;
883
+ agents?: {
884
+ entities: {
885
+ name_or_address?: string | undefined;
886
+ local_mark_first?: boolean | undefined;
887
+ }[];
888
+ check_all_founded?: boolean | undefined;
889
+ } | undefined;
890
+ arb_confirm?: {
891
+ arb: string;
892
+ confirm: boolean;
893
+ description?: string | undefined;
894
+ proposition?: string[] | undefined;
895
+ } | undefined;
896
+ arb_objection?: {
897
+ objection: string;
898
+ arb: string;
899
+ } | undefined;
900
+ arb_claim_compensation?: {
901
+ arb: string;
902
+ } | undefined;
903
+ receive?: {
904
+ result: {
905
+ received: {
906
+ id: string;
907
+ balance: string | number;
908
+ payment: string;
909
+ }[];
910
+ balance: string | number;
911
+ token_type: string;
912
+ } | {
913
+ type: string;
914
+ id: string;
915
+ }[];
916
+ } | undefined;
917
+ transfer_to?: {
918
+ name_or_address?: string | undefined;
919
+ local_mark_first?: boolean | undefined;
920
+ } | undefined;
921
+ };
922
+ submission?: {
923
+ type: "submission";
924
+ guard: {
925
+ object: string;
926
+ impack: boolean;
927
+ }[];
928
+ submission: {
929
+ guard: string;
930
+ submission: {
931
+ identifier: number;
932
+ b_submission: boolean;
933
+ 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";
934
+ name: string;
935
+ value?: string | number | boolean | {
936
+ name_or_address?: string | undefined;
937
+ local_mark_first?: boolean | undefined;
938
+ } | {
939
+ entities: {
940
+ name_or_address?: string | undefined;
941
+ local_mark_first?: boolean | undefined;
942
+ }[];
943
+ check_all_founded?: boolean | undefined;
944
+ } | boolean[] | string[] | number[] | number[][] | undefined;
945
+ object_type?: import("wowok").ObjectType | undefined;
946
+ }[];
947
+ }[];
948
+ } | undefined;
949
+ env?: {
950
+ account: string;
951
+ no_cache?: boolean | undefined;
952
+ network?: import("wowok").ENTRYPOINT | undefined;
953
+ permission_guard?: string[] | undefined;
954
+ referrer?: string | undefined;
955
+ } | undefined;
956
+ }, {
957
+ data: {
958
+ object: string;
959
+ progress?: {
960
+ hold: true;
961
+ operation: {
962
+ forward: string;
963
+ next_node_name: string;
964
+ };
965
+ message?: string | undefined;
966
+ adminUnhold?: boolean | undefined;
967
+ } | {
968
+ hold: false;
969
+ operation: {
970
+ forward: string;
971
+ next_node_name: string;
972
+ };
973
+ message?: string | undefined;
974
+ } | undefined;
975
+ required_info?: string | null | undefined;
976
+ agents?: {
977
+ entities: {
978
+ name_or_address?: string | undefined;
979
+ local_mark_first?: boolean | undefined;
980
+ }[];
981
+ check_all_founded?: boolean | undefined;
982
+ } | undefined;
983
+ arb_confirm?: {
984
+ arb: string;
985
+ confirm: boolean;
986
+ description?: string | undefined;
987
+ proposition?: string[] | undefined;
988
+ } | undefined;
989
+ arb_objection?: {
990
+ objection: string;
991
+ arb: string;
992
+ } | undefined;
993
+ arb_claim_compensation?: {
994
+ arb: string;
995
+ } | undefined;
996
+ receive?: {
997
+ result: {
998
+ received: {
999
+ id: string;
1000
+ balance: string | number;
1001
+ payment: string;
1002
+ }[];
1003
+ balance: string | number;
1004
+ token_type: string;
1005
+ } | {
1006
+ type: string;
1007
+ id: string;
1008
+ }[];
1009
+ } | undefined;
1010
+ transfer_to?: {
1011
+ name_or_address?: string | undefined;
1012
+ local_mark_first?: boolean | undefined;
1013
+ } | undefined;
1014
+ };
1015
+ submission?: {
1016
+ type: "submission";
1017
+ guard: {
1018
+ object: string;
1019
+ impack: boolean;
1020
+ }[];
1021
+ submission: {
1022
+ guard: string;
1023
+ submission: {
1024
+ identifier: number;
1025
+ b_submission: boolean;
1026
+ 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";
1027
+ value?: string | number | boolean | {
1028
+ name_or_address?: string | undefined;
1029
+ local_mark_first?: boolean | undefined;
1030
+ } | {
1031
+ entities: {
1032
+ name_or_address?: string | undefined;
1033
+ local_mark_first?: boolean | undefined;
1034
+ }[];
1035
+ check_all_founded?: boolean | undefined;
1036
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1037
+ name?: string | undefined;
1038
+ object_type?: import("wowok").ObjectType | undefined;
1039
+ }[];
1040
+ }[];
1041
+ } | undefined;
1042
+ env?: {
1043
+ no_cache?: boolean | undefined;
1044
+ network?: import("wowok").ENTRYPOINT | undefined;
1045
+ account?: string | undefined;
1046
+ permission_guard?: string[] | undefined;
1047
+ referrer?: string | undefined;
1048
+ } | undefined;
1049
+ }>;
7
1050
  export type ArbConfirm = z.infer<typeof ArbConfirmSchema>;
8
1051
  export type ArbObjection = z.infer<typeof ArbObjectionSchema>;
9
1052
  export type ArbClaimCompensation = z.infer<typeof ArbClaimCompensationSchema>;