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,7 +1,3654 @@
1
- export declare const ServiceBuyItemSchema: any;
2
- export declare const BuySchema: any;
3
- export declare const DiscountSchema: any;
4
- export declare const OrderNewSchema: any;
5
- export declare const SalesSchema: any;
6
- export declare const CallService_DataSchema: any;
7
- export declare const CallService_InputSchema: any;
1
+ import { z } from "zod";
2
+ export declare const ServiceBuyItemSchema: z.ZodObject<{
3
+ name: z.ZodEffects<z.ZodString, string, string>;
4
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
5
+ wip_hash: z.ZodString;
6
+ }, "strict", z.ZodTypeAny, {
7
+ name: string;
8
+ stock: string | number;
9
+ wip_hash: string;
10
+ }, {
11
+ name: string;
12
+ stock: string | number;
13
+ wip_hash: string;
14
+ }>;
15
+ export declare const BuySchema: z.ZodObject<{
16
+ items: z.ZodArray<z.ZodObject<{
17
+ name: z.ZodEffects<z.ZodString, string, string>;
18
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
19
+ wip_hash: z.ZodString;
20
+ }, "strict", z.ZodTypeAny, {
21
+ name: string;
22
+ stock: string | number;
23
+ wip_hash: string;
24
+ }, {
25
+ name: string;
26
+ stock: string | number;
27
+ wip_hash: string;
28
+ }>, "many">;
29
+ total_pay: z.ZodUnion<[z.ZodObject<{
30
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ balance: string | number;
33
+ }, {
34
+ balance: string | number;
35
+ }>, z.ZodObject<{
36
+ coin: z.ZodString;
37
+ }, "strip", z.ZodTypeAny, {
38
+ coin: string;
39
+ }, {
40
+ coin: string;
41
+ }>]>;
42
+ discount: z.ZodOptional<z.ZodString>;
43
+ payment_remark: z.ZodOptional<z.ZodString>;
44
+ payment_index: z.ZodOptional<z.ZodNumber>;
45
+ }, "strict", z.ZodTypeAny, {
46
+ items: {
47
+ name: string;
48
+ stock: string | number;
49
+ wip_hash: string;
50
+ }[];
51
+ total_pay: {
52
+ balance: string | number;
53
+ } | {
54
+ coin: string;
55
+ };
56
+ discount?: string | undefined;
57
+ payment_remark?: string | undefined;
58
+ payment_index?: number | undefined;
59
+ }, {
60
+ items: {
61
+ name: string;
62
+ stock: string | number;
63
+ wip_hash: string;
64
+ }[];
65
+ total_pay: {
66
+ balance: string | number;
67
+ } | {
68
+ coin: string;
69
+ };
70
+ discount?: string | undefined;
71
+ payment_remark?: string | undefined;
72
+ payment_index?: number | undefined;
73
+ }>;
74
+ export declare const DiscountSchema: z.ZodObject<{
75
+ name: z.ZodString;
76
+ discount_type: z.ZodUnion<[z.ZodLiteral<import("wowok").DiscountType.RATES>, z.ZodLiteral<import("wowok").DiscountType.FIXED>]>;
77
+ discount_value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
78
+ benchmark: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
79
+ time_ms_start: z.ZodOptional<z.ZodNumber>;
80
+ time_ms_end: z.ZodOptional<z.ZodNumber>;
81
+ count: z.ZodOptional<z.ZodNumber>;
82
+ recipient: z.ZodObject<{
83
+ entities: z.ZodArray<z.ZodObject<{
84
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
85
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
86
+ }, "strict", z.ZodTypeAny, {
87
+ name_or_address?: string | undefined;
88
+ local_mark_first?: boolean | undefined;
89
+ }, {
90
+ name_or_address?: string | undefined;
91
+ local_mark_first?: boolean | undefined;
92
+ }>, "many">;
93
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
94
+ }, "strict", z.ZodTypeAny, {
95
+ entities: {
96
+ name_or_address?: string | undefined;
97
+ local_mark_first?: boolean | undefined;
98
+ }[];
99
+ check_all_founded?: boolean | undefined;
100
+ }, {
101
+ entities: {
102
+ name_or_address?: string | undefined;
103
+ local_mark_first?: boolean | undefined;
104
+ }[];
105
+ check_all_founded?: boolean | undefined;
106
+ }>;
107
+ transferable: z.ZodOptional<z.ZodBoolean>;
108
+ }, "strict", z.ZodTypeAny, {
109
+ name: string;
110
+ recipient: {
111
+ entities: {
112
+ name_or_address?: string | undefined;
113
+ local_mark_first?: boolean | undefined;
114
+ }[];
115
+ check_all_founded?: boolean | undefined;
116
+ };
117
+ discount_type: import("wowok").DiscountType;
118
+ discount_value: string | number;
119
+ count?: number | undefined;
120
+ benchmark?: string | number | undefined;
121
+ transferable?: boolean | undefined;
122
+ time_ms_start?: number | undefined;
123
+ time_ms_end?: number | undefined;
124
+ }, {
125
+ name: string;
126
+ recipient: {
127
+ entities: {
128
+ name_or_address?: string | undefined;
129
+ local_mark_first?: boolean | undefined;
130
+ }[];
131
+ check_all_founded?: boolean | undefined;
132
+ };
133
+ discount_type: import("wowok").DiscountType;
134
+ discount_value: string | number;
135
+ count?: number | undefined;
136
+ benchmark?: string | number | undefined;
137
+ transferable?: boolean | undefined;
138
+ time_ms_start?: number | undefined;
139
+ time_ms_end?: number | undefined;
140
+ }>;
141
+ export declare const OrderNewSchema: z.ZodObject<{
142
+ buy: z.ZodObject<{
143
+ items: z.ZodArray<z.ZodObject<{
144
+ name: z.ZodEffects<z.ZodString, string, string>;
145
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
146
+ wip_hash: z.ZodString;
147
+ }, "strict", z.ZodTypeAny, {
148
+ name: string;
149
+ stock: string | number;
150
+ wip_hash: string;
151
+ }, {
152
+ name: string;
153
+ stock: string | number;
154
+ wip_hash: string;
155
+ }>, "many">;
156
+ total_pay: z.ZodUnion<[z.ZodObject<{
157
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
158
+ }, "strip", z.ZodTypeAny, {
159
+ balance: string | number;
160
+ }, {
161
+ balance: string | number;
162
+ }>, z.ZodObject<{
163
+ coin: z.ZodString;
164
+ }, "strip", z.ZodTypeAny, {
165
+ coin: string;
166
+ }, {
167
+ coin: string;
168
+ }>]>;
169
+ discount: z.ZodOptional<z.ZodString>;
170
+ payment_remark: z.ZodOptional<z.ZodString>;
171
+ payment_index: z.ZodOptional<z.ZodNumber>;
172
+ }, "strict", z.ZodTypeAny, {
173
+ items: {
174
+ name: string;
175
+ stock: string | number;
176
+ wip_hash: string;
177
+ }[];
178
+ total_pay: {
179
+ balance: string | number;
180
+ } | {
181
+ coin: string;
182
+ };
183
+ discount?: string | undefined;
184
+ payment_remark?: string | undefined;
185
+ payment_index?: number | undefined;
186
+ }, {
187
+ items: {
188
+ name: string;
189
+ stock: string | number;
190
+ wip_hash: string;
191
+ }[];
192
+ total_pay: {
193
+ balance: string | number;
194
+ } | {
195
+ coin: string;
196
+ };
197
+ discount?: string | undefined;
198
+ payment_remark?: string | undefined;
199
+ payment_index?: number | undefined;
200
+ }>;
201
+ agents: z.ZodOptional<z.ZodObject<{
202
+ entities: z.ZodArray<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
+ }>, "many">;
212
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
213
+ }, "strict", z.ZodTypeAny, {
214
+ entities: {
215
+ name_or_address?: string | undefined;
216
+ local_mark_first?: boolean | undefined;
217
+ }[];
218
+ check_all_founded?: boolean | undefined;
219
+ }, {
220
+ entities: {
221
+ name_or_address?: string | undefined;
222
+ local_mark_first?: boolean | undefined;
223
+ }[];
224
+ check_all_founded?: boolean | undefined;
225
+ }>>;
226
+ order_required_info: z.ZodString;
227
+ transfer: z.ZodOptional<z.ZodObject<{
228
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
229
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
230
+ }, "strict", z.ZodTypeAny, {
231
+ name_or_address?: string | undefined;
232
+ local_mark_first?: boolean | undefined;
233
+ }, {
234
+ name_or_address?: string | undefined;
235
+ local_mark_first?: boolean | undefined;
236
+ }>>;
237
+ namedNewOrder: z.ZodOptional<z.ZodObject<{
238
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
239
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
240
+ onChain: z.ZodOptional<z.ZodBoolean>;
241
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
242
+ }, "strict", z.ZodTypeAny, {
243
+ name?: string | undefined;
244
+ replaceExistName?: boolean | undefined;
245
+ tags?: string[] | undefined;
246
+ onChain?: boolean | undefined;
247
+ }, {
248
+ name?: string | undefined;
249
+ replaceExistName?: boolean | undefined;
250
+ tags?: string[] | undefined;
251
+ onChain?: boolean | undefined;
252
+ }>>;
253
+ namedNewAllocation: z.ZodOptional<z.ZodObject<{
254
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
255
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
256
+ onChain: z.ZodOptional<z.ZodBoolean>;
257
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
258
+ }, "strict", z.ZodTypeAny, {
259
+ name?: string | undefined;
260
+ replaceExistName?: boolean | undefined;
261
+ tags?: string[] | undefined;
262
+ onChain?: boolean | undefined;
263
+ }, {
264
+ name?: string | undefined;
265
+ replaceExistName?: boolean | undefined;
266
+ tags?: string[] | undefined;
267
+ onChain?: boolean | undefined;
268
+ }>>;
269
+ namedNewProgress: z.ZodOptional<z.ZodObject<{
270
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
271
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
272
+ onChain: z.ZodOptional<z.ZodBoolean>;
273
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
274
+ }, "strict", z.ZodTypeAny, {
275
+ name?: string | undefined;
276
+ replaceExistName?: boolean | undefined;
277
+ tags?: string[] | undefined;
278
+ onChain?: boolean | undefined;
279
+ }, {
280
+ name?: string | undefined;
281
+ replaceExistName?: boolean | undefined;
282
+ tags?: string[] | undefined;
283
+ onChain?: boolean | undefined;
284
+ }>>;
285
+ }, "strict", z.ZodTypeAny, {
286
+ buy: {
287
+ items: {
288
+ name: string;
289
+ stock: string | number;
290
+ wip_hash: string;
291
+ }[];
292
+ total_pay: {
293
+ balance: string | number;
294
+ } | {
295
+ coin: string;
296
+ };
297
+ discount?: string | undefined;
298
+ payment_remark?: string | undefined;
299
+ payment_index?: number | undefined;
300
+ };
301
+ order_required_info: string;
302
+ transfer?: {
303
+ name_or_address?: string | undefined;
304
+ local_mark_first?: boolean | undefined;
305
+ } | undefined;
306
+ agents?: {
307
+ entities: {
308
+ name_or_address?: string | undefined;
309
+ local_mark_first?: boolean | undefined;
310
+ }[];
311
+ check_all_founded?: boolean | undefined;
312
+ } | undefined;
313
+ namedNewOrder?: {
314
+ name?: string | undefined;
315
+ replaceExistName?: boolean | undefined;
316
+ tags?: string[] | undefined;
317
+ onChain?: boolean | undefined;
318
+ } | undefined;
319
+ namedNewAllocation?: {
320
+ name?: string | undefined;
321
+ replaceExistName?: boolean | undefined;
322
+ tags?: string[] | undefined;
323
+ onChain?: boolean | undefined;
324
+ } | undefined;
325
+ namedNewProgress?: {
326
+ name?: string | undefined;
327
+ replaceExistName?: boolean | undefined;
328
+ tags?: string[] | undefined;
329
+ onChain?: boolean | undefined;
330
+ } | undefined;
331
+ }, {
332
+ buy: {
333
+ items: {
334
+ name: string;
335
+ stock: string | number;
336
+ wip_hash: string;
337
+ }[];
338
+ total_pay: {
339
+ balance: string | number;
340
+ } | {
341
+ coin: string;
342
+ };
343
+ discount?: string | undefined;
344
+ payment_remark?: string | undefined;
345
+ payment_index?: number | undefined;
346
+ };
347
+ order_required_info: string;
348
+ transfer?: {
349
+ name_or_address?: string | undefined;
350
+ local_mark_first?: boolean | undefined;
351
+ } | undefined;
352
+ agents?: {
353
+ entities: {
354
+ name_or_address?: string | undefined;
355
+ local_mark_first?: boolean | undefined;
356
+ }[];
357
+ check_all_founded?: boolean | undefined;
358
+ } | undefined;
359
+ namedNewOrder?: {
360
+ name?: string | undefined;
361
+ replaceExistName?: boolean | undefined;
362
+ tags?: string[] | undefined;
363
+ onChain?: boolean | undefined;
364
+ } | undefined;
365
+ namedNewAllocation?: {
366
+ name?: string | undefined;
367
+ replaceExistName?: boolean | undefined;
368
+ tags?: string[] | undefined;
369
+ onChain?: boolean | undefined;
370
+ } | undefined;
371
+ namedNewProgress?: {
372
+ name?: string | undefined;
373
+ replaceExistName?: boolean | undefined;
374
+ tags?: string[] | undefined;
375
+ onChain?: boolean | undefined;
376
+ } | undefined;
377
+ }>;
378
+ export declare const SalesSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
379
+ op: z.ZodLiteral<"add">;
380
+ sales: z.ZodArray<z.ZodObject<{
381
+ name: z.ZodEffects<z.ZodString, string, string>;
382
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
383
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
384
+ suspension: z.ZodBoolean;
385
+ wip: z.ZodString;
386
+ wip_hash: z.ZodString;
387
+ }, "strip", z.ZodTypeAny, {
388
+ name: string;
389
+ wip: string;
390
+ price: string | number;
391
+ stock: string | number;
392
+ suspension: boolean;
393
+ wip_hash: string;
394
+ }, {
395
+ name: string;
396
+ wip: string;
397
+ price: string | number;
398
+ stock: string | number;
399
+ suspension: boolean;
400
+ wip_hash: string;
401
+ }>, "many">;
402
+ }, "strict", z.ZodTypeAny, {
403
+ op: "add";
404
+ sales: {
405
+ name: string;
406
+ wip: string;
407
+ price: string | number;
408
+ stock: string | number;
409
+ suspension: boolean;
410
+ wip_hash: string;
411
+ }[];
412
+ }, {
413
+ op: "add";
414
+ sales: {
415
+ name: string;
416
+ wip: string;
417
+ price: string | number;
418
+ stock: string | number;
419
+ suspension: boolean;
420
+ wip_hash: string;
421
+ }[];
422
+ }>, z.ZodObject<{
423
+ op: z.ZodLiteral<"set">;
424
+ sales: z.ZodArray<z.ZodObject<{
425
+ name: z.ZodEffects<z.ZodString, string, string>;
426
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
427
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
428
+ suspension: z.ZodBoolean;
429
+ wip: z.ZodString;
430
+ wip_hash: z.ZodString;
431
+ }, "strip", z.ZodTypeAny, {
432
+ name: string;
433
+ wip: string;
434
+ price: string | number;
435
+ stock: string | number;
436
+ suspension: boolean;
437
+ wip_hash: string;
438
+ }, {
439
+ name: string;
440
+ wip: string;
441
+ price: string | number;
442
+ stock: string | number;
443
+ suspension: boolean;
444
+ wip_hash: string;
445
+ }>, "many">;
446
+ }, "strict", z.ZodTypeAny, {
447
+ op: "set";
448
+ sales: {
449
+ name: string;
450
+ wip: string;
451
+ price: string | number;
452
+ stock: string | number;
453
+ suspension: boolean;
454
+ wip_hash: string;
455
+ }[];
456
+ }, {
457
+ op: "set";
458
+ sales: {
459
+ name: string;
460
+ wip: string;
461
+ price: string | number;
462
+ stock: string | number;
463
+ suspension: boolean;
464
+ wip_hash: string;
465
+ }[];
466
+ }>, z.ZodObject<{
467
+ op: z.ZodLiteral<"remove">;
468
+ sales_name: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
469
+ }, "strict", z.ZodTypeAny, {
470
+ op: "remove";
471
+ sales_name: string[];
472
+ }, {
473
+ op: "remove";
474
+ sales_name: string[];
475
+ }>, z.ZodObject<{
476
+ op: z.ZodLiteral<"clear">;
477
+ }, "strict", z.ZodTypeAny, {
478
+ op: "clear";
479
+ }, {
480
+ op: "clear";
481
+ }>]>;
482
+ export declare const CallService_DataSchema: z.ZodObject<{
483
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
484
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
485
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
486
+ onChain: z.ZodOptional<z.ZodBoolean>;
487
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
488
+ } & {
489
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
490
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
491
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
492
+ onChain: z.ZodOptional<z.ZodBoolean>;
493
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
494
+ } & {
495
+ description: z.ZodOptional<z.ZodString>;
496
+ }, "strict", z.ZodTypeAny, {
497
+ name?: string | undefined;
498
+ description?: string | undefined;
499
+ replaceExistName?: boolean | undefined;
500
+ tags?: string[] | undefined;
501
+ onChain?: boolean | undefined;
502
+ }, {
503
+ name?: string | undefined;
504
+ description?: string | undefined;
505
+ replaceExistName?: boolean | undefined;
506
+ tags?: string[] | undefined;
507
+ onChain?: boolean | undefined;
508
+ }>]>>;
509
+ } & {
510
+ type_parameter: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
511
+ }, "strict", z.ZodTypeAny, {
512
+ type_parameter: string;
513
+ name?: string | undefined;
514
+ replaceExistName?: boolean | undefined;
515
+ tags?: string[] | undefined;
516
+ onChain?: boolean | undefined;
517
+ permission?: string | {
518
+ name?: string | undefined;
519
+ description?: string | undefined;
520
+ replaceExistName?: boolean | undefined;
521
+ tags?: string[] | undefined;
522
+ onChain?: boolean | undefined;
523
+ } | undefined;
524
+ }, {
525
+ name?: string | undefined;
526
+ replaceExistName?: boolean | undefined;
527
+ tags?: string[] | undefined;
528
+ onChain?: boolean | undefined;
529
+ type_parameter?: string | undefined;
530
+ permission?: string | {
531
+ name?: string | undefined;
532
+ description?: string | undefined;
533
+ replaceExistName?: boolean | undefined;
534
+ tags?: string[] | undefined;
535
+ onChain?: boolean | undefined;
536
+ } | undefined;
537
+ }>]>;
538
+ order_new: z.ZodOptional<z.ZodObject<{
539
+ buy: z.ZodObject<{
540
+ items: z.ZodArray<z.ZodObject<{
541
+ name: z.ZodEffects<z.ZodString, string, string>;
542
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
543
+ wip_hash: z.ZodString;
544
+ }, "strict", z.ZodTypeAny, {
545
+ name: string;
546
+ stock: string | number;
547
+ wip_hash: string;
548
+ }, {
549
+ name: string;
550
+ stock: string | number;
551
+ wip_hash: string;
552
+ }>, "many">;
553
+ total_pay: z.ZodUnion<[z.ZodObject<{
554
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
555
+ }, "strip", z.ZodTypeAny, {
556
+ balance: string | number;
557
+ }, {
558
+ balance: string | number;
559
+ }>, z.ZodObject<{
560
+ coin: z.ZodString;
561
+ }, "strip", z.ZodTypeAny, {
562
+ coin: string;
563
+ }, {
564
+ coin: string;
565
+ }>]>;
566
+ discount: z.ZodOptional<z.ZodString>;
567
+ payment_remark: z.ZodOptional<z.ZodString>;
568
+ payment_index: z.ZodOptional<z.ZodNumber>;
569
+ }, "strict", z.ZodTypeAny, {
570
+ items: {
571
+ name: string;
572
+ stock: string | number;
573
+ wip_hash: string;
574
+ }[];
575
+ total_pay: {
576
+ balance: string | number;
577
+ } | {
578
+ coin: string;
579
+ };
580
+ discount?: string | undefined;
581
+ payment_remark?: string | undefined;
582
+ payment_index?: number | undefined;
583
+ }, {
584
+ items: {
585
+ name: string;
586
+ stock: string | number;
587
+ wip_hash: string;
588
+ }[];
589
+ total_pay: {
590
+ balance: string | number;
591
+ } | {
592
+ coin: string;
593
+ };
594
+ discount?: string | undefined;
595
+ payment_remark?: string | undefined;
596
+ payment_index?: number | undefined;
597
+ }>;
598
+ agents: z.ZodOptional<z.ZodObject<{
599
+ entities: z.ZodArray<z.ZodObject<{
600
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
601
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
602
+ }, "strict", z.ZodTypeAny, {
603
+ name_or_address?: string | undefined;
604
+ local_mark_first?: boolean | undefined;
605
+ }, {
606
+ name_or_address?: string | undefined;
607
+ local_mark_first?: boolean | undefined;
608
+ }>, "many">;
609
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
610
+ }, "strict", z.ZodTypeAny, {
611
+ entities: {
612
+ name_or_address?: string | undefined;
613
+ local_mark_first?: boolean | undefined;
614
+ }[];
615
+ check_all_founded?: boolean | undefined;
616
+ }, {
617
+ entities: {
618
+ name_or_address?: string | undefined;
619
+ local_mark_first?: boolean | undefined;
620
+ }[];
621
+ check_all_founded?: boolean | undefined;
622
+ }>>;
623
+ order_required_info: z.ZodString;
624
+ transfer: z.ZodOptional<z.ZodObject<{
625
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
626
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
627
+ }, "strict", z.ZodTypeAny, {
628
+ name_or_address?: string | undefined;
629
+ local_mark_first?: boolean | undefined;
630
+ }, {
631
+ name_or_address?: string | undefined;
632
+ local_mark_first?: boolean | undefined;
633
+ }>>;
634
+ namedNewOrder: z.ZodOptional<z.ZodObject<{
635
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
636
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
637
+ onChain: z.ZodOptional<z.ZodBoolean>;
638
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
639
+ }, "strict", z.ZodTypeAny, {
640
+ name?: string | undefined;
641
+ replaceExistName?: boolean | undefined;
642
+ tags?: string[] | undefined;
643
+ onChain?: boolean | undefined;
644
+ }, {
645
+ name?: string | undefined;
646
+ replaceExistName?: boolean | undefined;
647
+ tags?: string[] | undefined;
648
+ onChain?: boolean | undefined;
649
+ }>>;
650
+ namedNewAllocation: z.ZodOptional<z.ZodObject<{
651
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
652
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
653
+ onChain: z.ZodOptional<z.ZodBoolean>;
654
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
655
+ }, "strict", z.ZodTypeAny, {
656
+ name?: string | undefined;
657
+ replaceExistName?: boolean | undefined;
658
+ tags?: string[] | undefined;
659
+ onChain?: boolean | undefined;
660
+ }, {
661
+ name?: string | undefined;
662
+ replaceExistName?: boolean | undefined;
663
+ tags?: string[] | undefined;
664
+ onChain?: boolean | undefined;
665
+ }>>;
666
+ namedNewProgress: z.ZodOptional<z.ZodObject<{
667
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
668
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
669
+ onChain: z.ZodOptional<z.ZodBoolean>;
670
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
671
+ }, "strict", z.ZodTypeAny, {
672
+ name?: string | undefined;
673
+ replaceExistName?: boolean | undefined;
674
+ tags?: string[] | undefined;
675
+ onChain?: boolean | undefined;
676
+ }, {
677
+ name?: string | undefined;
678
+ replaceExistName?: boolean | undefined;
679
+ tags?: string[] | undefined;
680
+ onChain?: boolean | undefined;
681
+ }>>;
682
+ }, "strict", z.ZodTypeAny, {
683
+ buy: {
684
+ items: {
685
+ name: string;
686
+ stock: string | number;
687
+ wip_hash: string;
688
+ }[];
689
+ total_pay: {
690
+ balance: string | number;
691
+ } | {
692
+ coin: string;
693
+ };
694
+ discount?: string | undefined;
695
+ payment_remark?: string | undefined;
696
+ payment_index?: number | undefined;
697
+ };
698
+ order_required_info: string;
699
+ transfer?: {
700
+ name_or_address?: string | undefined;
701
+ local_mark_first?: boolean | undefined;
702
+ } | undefined;
703
+ agents?: {
704
+ entities: {
705
+ name_or_address?: string | undefined;
706
+ local_mark_first?: boolean | undefined;
707
+ }[];
708
+ check_all_founded?: boolean | undefined;
709
+ } | undefined;
710
+ namedNewOrder?: {
711
+ name?: string | undefined;
712
+ replaceExistName?: boolean | undefined;
713
+ tags?: string[] | undefined;
714
+ onChain?: boolean | undefined;
715
+ } | undefined;
716
+ namedNewAllocation?: {
717
+ name?: string | undefined;
718
+ replaceExistName?: boolean | undefined;
719
+ tags?: string[] | undefined;
720
+ onChain?: boolean | undefined;
721
+ } | undefined;
722
+ namedNewProgress?: {
723
+ name?: string | undefined;
724
+ replaceExistName?: boolean | undefined;
725
+ tags?: string[] | undefined;
726
+ onChain?: boolean | undefined;
727
+ } | undefined;
728
+ }, {
729
+ buy: {
730
+ items: {
731
+ name: string;
732
+ stock: string | number;
733
+ wip_hash: string;
734
+ }[];
735
+ total_pay: {
736
+ balance: string | number;
737
+ } | {
738
+ coin: string;
739
+ };
740
+ discount?: string | undefined;
741
+ payment_remark?: string | undefined;
742
+ payment_index?: number | undefined;
743
+ };
744
+ order_required_info: string;
745
+ transfer?: {
746
+ name_or_address?: string | undefined;
747
+ local_mark_first?: boolean | undefined;
748
+ } | undefined;
749
+ agents?: {
750
+ entities: {
751
+ name_or_address?: string | undefined;
752
+ local_mark_first?: boolean | undefined;
753
+ }[];
754
+ check_all_founded?: boolean | undefined;
755
+ } | undefined;
756
+ namedNewOrder?: {
757
+ name?: string | undefined;
758
+ replaceExistName?: boolean | undefined;
759
+ tags?: string[] | undefined;
760
+ onChain?: boolean | undefined;
761
+ } | undefined;
762
+ namedNewAllocation?: {
763
+ name?: string | undefined;
764
+ replaceExistName?: boolean | undefined;
765
+ tags?: string[] | undefined;
766
+ onChain?: boolean | undefined;
767
+ } | undefined;
768
+ namedNewProgress?: {
769
+ name?: string | undefined;
770
+ replaceExistName?: boolean | undefined;
771
+ tags?: string[] | undefined;
772
+ onChain?: boolean | undefined;
773
+ } | undefined;
774
+ }>>;
775
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
776
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
777
+ sales: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
778
+ op: z.ZodLiteral<"add">;
779
+ sales: z.ZodArray<z.ZodObject<{
780
+ name: z.ZodEffects<z.ZodString, string, string>;
781
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
782
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
783
+ suspension: z.ZodBoolean;
784
+ wip: z.ZodString;
785
+ wip_hash: z.ZodString;
786
+ }, "strip", z.ZodTypeAny, {
787
+ name: string;
788
+ wip: string;
789
+ price: string | number;
790
+ stock: string | number;
791
+ suspension: boolean;
792
+ wip_hash: string;
793
+ }, {
794
+ name: string;
795
+ wip: string;
796
+ price: string | number;
797
+ stock: string | number;
798
+ suspension: boolean;
799
+ wip_hash: string;
800
+ }>, "many">;
801
+ }, "strict", z.ZodTypeAny, {
802
+ op: "add";
803
+ sales: {
804
+ name: string;
805
+ wip: string;
806
+ price: string | number;
807
+ stock: string | number;
808
+ suspension: boolean;
809
+ wip_hash: string;
810
+ }[];
811
+ }, {
812
+ op: "add";
813
+ sales: {
814
+ name: string;
815
+ wip: string;
816
+ price: string | number;
817
+ stock: string | number;
818
+ suspension: boolean;
819
+ wip_hash: string;
820
+ }[];
821
+ }>, z.ZodObject<{
822
+ op: z.ZodLiteral<"set">;
823
+ sales: z.ZodArray<z.ZodObject<{
824
+ name: z.ZodEffects<z.ZodString, string, string>;
825
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
826
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
827
+ suspension: z.ZodBoolean;
828
+ wip: z.ZodString;
829
+ wip_hash: z.ZodString;
830
+ }, "strip", z.ZodTypeAny, {
831
+ name: string;
832
+ wip: string;
833
+ price: string | number;
834
+ stock: string | number;
835
+ suspension: boolean;
836
+ wip_hash: string;
837
+ }, {
838
+ name: string;
839
+ wip: string;
840
+ price: string | number;
841
+ stock: string | number;
842
+ suspension: boolean;
843
+ wip_hash: string;
844
+ }>, "many">;
845
+ }, "strict", z.ZodTypeAny, {
846
+ op: "set";
847
+ sales: {
848
+ name: string;
849
+ wip: string;
850
+ price: string | number;
851
+ stock: string | number;
852
+ suspension: boolean;
853
+ wip_hash: string;
854
+ }[];
855
+ }, {
856
+ op: "set";
857
+ sales: {
858
+ name: string;
859
+ wip: string;
860
+ price: string | number;
861
+ stock: string | number;
862
+ suspension: boolean;
863
+ wip_hash: string;
864
+ }[];
865
+ }>, z.ZodObject<{
866
+ op: z.ZodLiteral<"remove">;
867
+ sales_name: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
868
+ }, "strict", z.ZodTypeAny, {
869
+ op: "remove";
870
+ sales_name: string[];
871
+ }, {
872
+ op: "remove";
873
+ sales_name: string[];
874
+ }>, z.ZodObject<{
875
+ op: z.ZodLiteral<"clear">;
876
+ }, "strict", z.ZodTypeAny, {
877
+ op: "clear";
878
+ }, {
879
+ op: "clear";
880
+ }>]>>;
881
+ repositories: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
882
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
883
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
884
+ }, "strict", z.ZodTypeAny, {
885
+ op: "set" | "add";
886
+ objects: string[];
887
+ }, {
888
+ op: "set" | "add";
889
+ objects: string[];
890
+ }>, z.ZodObject<{
891
+ op: z.ZodLiteral<"remove">;
892
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
893
+ }, "strict", z.ZodTypeAny, {
894
+ op: "remove";
895
+ objects: string[];
896
+ }, {
897
+ op: "remove";
898
+ objects: string[];
899
+ }>, z.ZodObject<{
900
+ op: z.ZodLiteral<"clear">;
901
+ }, "strict", z.ZodTypeAny, {
902
+ op: "clear";
903
+ }, {
904
+ op: "clear";
905
+ }>]>>;
906
+ rewards: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
907
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
908
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
909
+ }, "strict", z.ZodTypeAny, {
910
+ op: "set" | "add";
911
+ objects: string[];
912
+ }, {
913
+ op: "set" | "add";
914
+ objects: string[];
915
+ }>, z.ZodObject<{
916
+ op: z.ZodLiteral<"remove">;
917
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
918
+ }, "strict", z.ZodTypeAny, {
919
+ op: "remove";
920
+ objects: string[];
921
+ }, {
922
+ op: "remove";
923
+ objects: string[];
924
+ }>, z.ZodObject<{
925
+ op: z.ZodLiteral<"clear">;
926
+ }, "strict", z.ZodTypeAny, {
927
+ op: "clear";
928
+ }, {
929
+ op: "clear";
930
+ }>]>>;
931
+ arbitrations: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
932
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
933
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
934
+ }, "strict", z.ZodTypeAny, {
935
+ op: "set" | "add";
936
+ objects: string[];
937
+ }, {
938
+ op: "set" | "add";
939
+ objects: string[];
940
+ }>, z.ZodObject<{
941
+ op: z.ZodLiteral<"remove">;
942
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
943
+ }, "strict", z.ZodTypeAny, {
944
+ op: "remove";
945
+ objects: string[];
946
+ }, {
947
+ op: "remove";
948
+ objects: string[];
949
+ }>, z.ZodObject<{
950
+ op: z.ZodLiteral<"clear">;
951
+ }, "strict", z.ZodTypeAny, {
952
+ op: "clear";
953
+ }, {
954
+ op: "clear";
955
+ }>]>>;
956
+ machine: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
957
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
958
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
959
+ onChain: z.ZodOptional<z.ZodBoolean>;
960
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
961
+ }, "strict", z.ZodTypeAny, {
962
+ name?: string | undefined;
963
+ replaceExistName?: boolean | undefined;
964
+ tags?: string[] | undefined;
965
+ onChain?: boolean | undefined;
966
+ }, {
967
+ name?: string | undefined;
968
+ replaceExistName?: boolean | undefined;
969
+ tags?: string[] | undefined;
970
+ onChain?: boolean | undefined;
971
+ }>, z.ZodNull]>>;
972
+ discount: z.ZodOptional<z.ZodObject<{
973
+ name: z.ZodString;
974
+ discount_type: z.ZodUnion<[z.ZodLiteral<import("wowok").DiscountType.RATES>, z.ZodLiteral<import("wowok").DiscountType.FIXED>]>;
975
+ discount_value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
976
+ benchmark: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
977
+ time_ms_start: z.ZodOptional<z.ZodNumber>;
978
+ time_ms_end: z.ZodOptional<z.ZodNumber>;
979
+ count: z.ZodOptional<z.ZodNumber>;
980
+ recipient: z.ZodObject<{
981
+ entities: z.ZodArray<z.ZodObject<{
982
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
983
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
984
+ }, "strict", z.ZodTypeAny, {
985
+ name_or_address?: string | undefined;
986
+ local_mark_first?: boolean | undefined;
987
+ }, {
988
+ name_or_address?: string | undefined;
989
+ local_mark_first?: boolean | undefined;
990
+ }>, "many">;
991
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
992
+ }, "strict", z.ZodTypeAny, {
993
+ entities: {
994
+ name_or_address?: string | undefined;
995
+ local_mark_first?: boolean | undefined;
996
+ }[];
997
+ check_all_founded?: boolean | undefined;
998
+ }, {
999
+ entities: {
1000
+ name_or_address?: string | undefined;
1001
+ local_mark_first?: boolean | undefined;
1002
+ }[];
1003
+ check_all_founded?: boolean | undefined;
1004
+ }>;
1005
+ transferable: z.ZodOptional<z.ZodBoolean>;
1006
+ }, "strict", z.ZodTypeAny, {
1007
+ name: string;
1008
+ recipient: {
1009
+ entities: {
1010
+ name_or_address?: string | undefined;
1011
+ local_mark_first?: boolean | undefined;
1012
+ }[];
1013
+ check_all_founded?: boolean | undefined;
1014
+ };
1015
+ discount_type: import("wowok").DiscountType;
1016
+ discount_value: string | number;
1017
+ count?: number | undefined;
1018
+ benchmark?: string | number | undefined;
1019
+ transferable?: boolean | undefined;
1020
+ time_ms_start?: number | undefined;
1021
+ time_ms_end?: number | undefined;
1022
+ }, {
1023
+ name: string;
1024
+ recipient: {
1025
+ entities: {
1026
+ name_or_address?: string | undefined;
1027
+ local_mark_first?: boolean | undefined;
1028
+ }[];
1029
+ check_all_founded?: boolean | undefined;
1030
+ };
1031
+ discount_type: import("wowok").DiscountType;
1032
+ discount_value: string | number;
1033
+ count?: number | undefined;
1034
+ benchmark?: string | number | undefined;
1035
+ transferable?: boolean | undefined;
1036
+ time_ms_start?: number | undefined;
1037
+ time_ms_end?: number | undefined;
1038
+ }>>;
1039
+ discount_destroy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1040
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1041
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1042
+ onChain: z.ZodOptional<z.ZodBoolean>;
1043
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1044
+ }, "strict", z.ZodTypeAny, {
1045
+ name?: string | undefined;
1046
+ replaceExistName?: boolean | undefined;
1047
+ tags?: string[] | undefined;
1048
+ onChain?: boolean | undefined;
1049
+ }, {
1050
+ name?: string | undefined;
1051
+ replaceExistName?: boolean | undefined;
1052
+ tags?: string[] | undefined;
1053
+ onChain?: boolean | undefined;
1054
+ }>, "many">>;
1055
+ customer_required: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
1056
+ order_allocators: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1057
+ description: z.ZodEffects<z.ZodString, string, string>;
1058
+ threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1059
+ allocators: z.ZodArray<z.ZodObject<{
1060
+ guard: z.ZodEffects<z.ZodString, string, string>;
1061
+ sharing: z.ZodArray<z.ZodObject<{
1062
+ who: z.ZodUnion<[z.ZodObject<{
1063
+ GuardIdentifier: z.ZodNumber;
1064
+ }, "strip", z.ZodTypeAny, {
1065
+ GuardIdentifier: number;
1066
+ }, {
1067
+ GuardIdentifier: number;
1068
+ }>, z.ZodObject<{
1069
+ Entity: z.ZodObject<{
1070
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1071
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1072
+ }, "strict", z.ZodTypeAny, {
1073
+ name_or_address?: string | undefined;
1074
+ local_mark_first?: boolean | undefined;
1075
+ }, {
1076
+ name_or_address?: string | undefined;
1077
+ local_mark_first?: boolean | undefined;
1078
+ }>;
1079
+ }, "strip", z.ZodTypeAny, {
1080
+ Entity: {
1081
+ name_or_address?: string | undefined;
1082
+ local_mark_first?: boolean | undefined;
1083
+ };
1084
+ }, {
1085
+ Entity: {
1086
+ name_or_address?: string | undefined;
1087
+ local_mark_first?: boolean | undefined;
1088
+ };
1089
+ }>, z.ZodObject<{
1090
+ Signer: z.ZodLiteral<"signer">;
1091
+ }, "strip", z.ZodTypeAny, {
1092
+ Signer: "signer";
1093
+ }, {
1094
+ Signer: "signer";
1095
+ }>]>;
1096
+ sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1097
+ mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
1098
+ }, "strip", z.ZodTypeAny, {
1099
+ who: {
1100
+ GuardIdentifier: number;
1101
+ } | {
1102
+ Entity: {
1103
+ name_or_address?: string | undefined;
1104
+ local_mark_first?: boolean | undefined;
1105
+ };
1106
+ } | {
1107
+ Signer: "signer";
1108
+ };
1109
+ sharing: string | number;
1110
+ mode: "Amount" | "Rate" | "Surplus";
1111
+ }, {
1112
+ who: {
1113
+ GuardIdentifier: number;
1114
+ } | {
1115
+ Entity: {
1116
+ name_or_address?: string | undefined;
1117
+ local_mark_first?: boolean | undefined;
1118
+ };
1119
+ } | {
1120
+ Signer: "signer";
1121
+ };
1122
+ sharing: string | number;
1123
+ mode: "Amount" | "Rate" | "Surplus";
1124
+ }>, "many">;
1125
+ fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
1126
+ max: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNull]>>;
1127
+ }, "strip", z.ZodTypeAny, {
1128
+ guard: string;
1129
+ sharing: {
1130
+ who: {
1131
+ GuardIdentifier: number;
1132
+ } | {
1133
+ Entity: {
1134
+ name_or_address?: string | undefined;
1135
+ local_mark_first?: boolean | undefined;
1136
+ };
1137
+ } | {
1138
+ Signer: "signer";
1139
+ };
1140
+ sharing: string | number;
1141
+ mode: "Amount" | "Rate" | "Surplus";
1142
+ }[];
1143
+ max?: string | number | null | undefined;
1144
+ fix?: string | number | undefined;
1145
+ }, {
1146
+ guard: string;
1147
+ sharing: {
1148
+ who: {
1149
+ GuardIdentifier: number;
1150
+ } | {
1151
+ Entity: {
1152
+ name_or_address?: string | undefined;
1153
+ local_mark_first?: boolean | undefined;
1154
+ };
1155
+ } | {
1156
+ Signer: "signer";
1157
+ };
1158
+ sharing: string | number;
1159
+ mode: "Amount" | "Rate" | "Surplus";
1160
+ }[];
1161
+ max?: string | number | null | undefined;
1162
+ fix?: string | number | undefined;
1163
+ }>, "many">;
1164
+ }, "strip", z.ZodTypeAny, {
1165
+ description: string;
1166
+ threshold: string | number;
1167
+ allocators: {
1168
+ guard: string;
1169
+ sharing: {
1170
+ who: {
1171
+ GuardIdentifier: number;
1172
+ } | {
1173
+ Entity: {
1174
+ name_or_address?: string | undefined;
1175
+ local_mark_first?: boolean | undefined;
1176
+ };
1177
+ } | {
1178
+ Signer: "signer";
1179
+ };
1180
+ sharing: string | number;
1181
+ mode: "Amount" | "Rate" | "Surplus";
1182
+ }[];
1183
+ max?: string | number | null | undefined;
1184
+ fix?: string | number | undefined;
1185
+ }[];
1186
+ }, {
1187
+ description: string;
1188
+ threshold: string | number;
1189
+ allocators: {
1190
+ guard: string;
1191
+ sharing: {
1192
+ who: {
1193
+ GuardIdentifier: number;
1194
+ } | {
1195
+ Entity: {
1196
+ name_or_address?: string | undefined;
1197
+ local_mark_first?: boolean | undefined;
1198
+ };
1199
+ } | {
1200
+ Signer: "signer";
1201
+ };
1202
+ sharing: string | number;
1203
+ mode: "Amount" | "Rate" | "Surplus";
1204
+ }[];
1205
+ max?: string | number | null | undefined;
1206
+ fix?: string | number | undefined;
1207
+ }[];
1208
+ }>, z.ZodNull]>>;
1209
+ compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1210
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1211
+ }, "strip", z.ZodTypeAny, {
1212
+ balance: string | number;
1213
+ }, {
1214
+ balance: string | number;
1215
+ }>, z.ZodObject<{
1216
+ coin: z.ZodString;
1217
+ }, "strip", z.ZodTypeAny, {
1218
+ coin: string;
1219
+ }, {
1220
+ coin: string;
1221
+ }>]>>;
1222
+ compensation_locked_time_add: z.ZodOptional<z.ZodNumber>;
1223
+ compensation_fund_receive: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1224
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1225
+ token_type: z.ZodEffects<z.ZodString, string, string>;
1226
+ received: z.ZodArray<z.ZodObject<{
1227
+ id: z.ZodString;
1228
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1229
+ payment: z.ZodString;
1230
+ }, "strict", z.ZodTypeAny, {
1231
+ id: string;
1232
+ balance: string | number;
1233
+ payment: string;
1234
+ }, {
1235
+ id: string;
1236
+ balance: string | number;
1237
+ payment: string;
1238
+ }>, "many">;
1239
+ }, "strict", z.ZodTypeAny, {
1240
+ received: {
1241
+ id: string;
1242
+ balance: string | number;
1243
+ payment: string;
1244
+ }[];
1245
+ balance: string | number;
1246
+ token_type: string;
1247
+ }, {
1248
+ received: {
1249
+ id: string;
1250
+ balance: string | number;
1251
+ payment: string;
1252
+ }[];
1253
+ balance: string | number;
1254
+ token_type: string;
1255
+ }>, z.ZodLiteral<"recently">]>>;
1256
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
1257
+ id: z.ZodString;
1258
+ type: z.ZodString;
1259
+ }, "strict", z.ZodTypeAny, {
1260
+ type: string;
1261
+ id: string;
1262
+ }, {
1263
+ type: string;
1264
+ id: string;
1265
+ }>, "many">, z.ZodObject<{
1266
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1267
+ token_type: z.ZodEffects<z.ZodString, string, string>;
1268
+ received: z.ZodArray<z.ZodObject<{
1269
+ id: z.ZodString;
1270
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1271
+ payment: z.ZodString;
1272
+ }, "strict", z.ZodTypeAny, {
1273
+ id: string;
1274
+ balance: string | number;
1275
+ payment: string;
1276
+ }, {
1277
+ id: string;
1278
+ balance: string | number;
1279
+ payment: string;
1280
+ }>, "many">;
1281
+ }, "strict", z.ZodTypeAny, {
1282
+ received: {
1283
+ id: string;
1284
+ balance: string | number;
1285
+ payment: string;
1286
+ }[];
1287
+ balance: string | number;
1288
+ token_type: string;
1289
+ }, {
1290
+ received: {
1291
+ id: string;
1292
+ balance: string | number;
1293
+ payment: string;
1294
+ }[];
1295
+ balance: string | number;
1296
+ token_type: string;
1297
+ }>, z.ZodLiteral<"recently">]>>;
1298
+ um: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1299
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1300
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1301
+ onChain: z.ZodOptional<z.ZodBoolean>;
1302
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1303
+ }, "strict", z.ZodTypeAny, {
1304
+ name?: string | undefined;
1305
+ replaceExistName?: boolean | undefined;
1306
+ tags?: string[] | undefined;
1307
+ onChain?: boolean | undefined;
1308
+ }, {
1309
+ name?: string | undefined;
1310
+ replaceExistName?: boolean | undefined;
1311
+ tags?: string[] | undefined;
1312
+ onChain?: boolean | undefined;
1313
+ }>, z.ZodNull]>>;
1314
+ pause: z.ZodOptional<z.ZodBoolean>;
1315
+ publish: z.ZodOptional<z.ZodBoolean>;
1316
+ }, "strict", z.ZodTypeAny, {
1317
+ object: string | {
1318
+ type_parameter: string;
1319
+ name?: string | undefined;
1320
+ replaceExistName?: boolean | undefined;
1321
+ tags?: string[] | undefined;
1322
+ onChain?: boolean | undefined;
1323
+ permission?: string | {
1324
+ name?: string | undefined;
1325
+ description?: string | undefined;
1326
+ replaceExistName?: boolean | undefined;
1327
+ tags?: string[] | undefined;
1328
+ onChain?: boolean | undefined;
1329
+ } | undefined;
1330
+ };
1331
+ description?: string | undefined;
1332
+ location?: string | undefined;
1333
+ owner_receive?: {
1334
+ received: {
1335
+ id: string;
1336
+ balance: string | number;
1337
+ payment: string;
1338
+ }[];
1339
+ balance: string | number;
1340
+ token_type: string;
1341
+ } | "recently" | {
1342
+ type: string;
1343
+ id: string;
1344
+ }[] | undefined;
1345
+ rewards?: {
1346
+ op: "set" | "add";
1347
+ objects: string[];
1348
+ } | {
1349
+ op: "remove";
1350
+ objects: string[];
1351
+ } | {
1352
+ op: "clear";
1353
+ } | undefined;
1354
+ um?: {
1355
+ name?: string | undefined;
1356
+ replaceExistName?: boolean | undefined;
1357
+ tags?: string[] | undefined;
1358
+ onChain?: boolean | undefined;
1359
+ } | null | undefined;
1360
+ discount?: {
1361
+ name: string;
1362
+ recipient: {
1363
+ entities: {
1364
+ name_or_address?: string | undefined;
1365
+ local_mark_first?: boolean | undefined;
1366
+ }[];
1367
+ check_all_founded?: boolean | undefined;
1368
+ };
1369
+ discount_type: import("wowok").DiscountType;
1370
+ discount_value: string | number;
1371
+ count?: number | undefined;
1372
+ benchmark?: string | number | undefined;
1373
+ transferable?: boolean | undefined;
1374
+ time_ms_start?: number | undefined;
1375
+ time_ms_end?: number | undefined;
1376
+ } | undefined;
1377
+ machine?: {
1378
+ name?: string | undefined;
1379
+ replaceExistName?: boolean | undefined;
1380
+ tags?: string[] | undefined;
1381
+ onChain?: boolean | undefined;
1382
+ } | null | undefined;
1383
+ sales?: {
1384
+ op: "add";
1385
+ sales: {
1386
+ name: string;
1387
+ wip: string;
1388
+ price: string | number;
1389
+ stock: string | number;
1390
+ suspension: boolean;
1391
+ wip_hash: string;
1392
+ }[];
1393
+ } | {
1394
+ op: "set";
1395
+ sales: {
1396
+ name: string;
1397
+ wip: string;
1398
+ price: string | number;
1399
+ stock: string | number;
1400
+ suspension: boolean;
1401
+ wip_hash: string;
1402
+ }[];
1403
+ } | {
1404
+ op: "remove";
1405
+ sales_name: string[];
1406
+ } | {
1407
+ op: "clear";
1408
+ } | undefined;
1409
+ repositories?: {
1410
+ op: "set" | "add";
1411
+ objects: string[];
1412
+ } | {
1413
+ op: "remove";
1414
+ objects: string[];
1415
+ } | {
1416
+ op: "clear";
1417
+ } | undefined;
1418
+ customer_required?: string[] | undefined;
1419
+ arbitrations?: {
1420
+ op: "set" | "add";
1421
+ objects: string[];
1422
+ } | {
1423
+ op: "remove";
1424
+ objects: string[];
1425
+ } | {
1426
+ op: "clear";
1427
+ } | undefined;
1428
+ order_allocators?: {
1429
+ description: string;
1430
+ threshold: string | number;
1431
+ allocators: {
1432
+ guard: string;
1433
+ sharing: {
1434
+ who: {
1435
+ GuardIdentifier: number;
1436
+ } | {
1437
+ Entity: {
1438
+ name_or_address?: string | undefined;
1439
+ local_mark_first?: boolean | undefined;
1440
+ };
1441
+ } | {
1442
+ Signer: "signer";
1443
+ };
1444
+ sharing: string | number;
1445
+ mode: "Amount" | "Rate" | "Surplus";
1446
+ }[];
1447
+ max?: string | number | null | undefined;
1448
+ fix?: string | number | undefined;
1449
+ }[];
1450
+ } | null | undefined;
1451
+ pause?: boolean | undefined;
1452
+ publish?: boolean | undefined;
1453
+ order_new?: {
1454
+ buy: {
1455
+ items: {
1456
+ name: string;
1457
+ stock: string | number;
1458
+ wip_hash: string;
1459
+ }[];
1460
+ total_pay: {
1461
+ balance: string | number;
1462
+ } | {
1463
+ coin: string;
1464
+ };
1465
+ discount?: string | undefined;
1466
+ payment_remark?: string | undefined;
1467
+ payment_index?: number | undefined;
1468
+ };
1469
+ order_required_info: string;
1470
+ transfer?: {
1471
+ name_or_address?: string | undefined;
1472
+ local_mark_first?: boolean | undefined;
1473
+ } | undefined;
1474
+ agents?: {
1475
+ entities: {
1476
+ name_or_address?: string | undefined;
1477
+ local_mark_first?: boolean | undefined;
1478
+ }[];
1479
+ check_all_founded?: boolean | undefined;
1480
+ } | undefined;
1481
+ namedNewOrder?: {
1482
+ name?: string | undefined;
1483
+ replaceExistName?: boolean | undefined;
1484
+ tags?: string[] | undefined;
1485
+ onChain?: boolean | undefined;
1486
+ } | undefined;
1487
+ namedNewAllocation?: {
1488
+ name?: string | undefined;
1489
+ replaceExistName?: boolean | undefined;
1490
+ tags?: string[] | undefined;
1491
+ onChain?: boolean | undefined;
1492
+ } | undefined;
1493
+ namedNewProgress?: {
1494
+ name?: string | undefined;
1495
+ replaceExistName?: boolean | undefined;
1496
+ tags?: string[] | undefined;
1497
+ onChain?: boolean | undefined;
1498
+ } | undefined;
1499
+ } | undefined;
1500
+ discount_destroy?: {
1501
+ name?: string | undefined;
1502
+ replaceExistName?: boolean | undefined;
1503
+ tags?: string[] | undefined;
1504
+ onChain?: boolean | undefined;
1505
+ }[] | undefined;
1506
+ compensation_fund_add?: {
1507
+ balance: string | number;
1508
+ } | {
1509
+ coin: string;
1510
+ } | undefined;
1511
+ compensation_locked_time_add?: number | undefined;
1512
+ compensation_fund_receive?: {
1513
+ received: {
1514
+ id: string;
1515
+ balance: string | number;
1516
+ payment: string;
1517
+ }[];
1518
+ balance: string | number;
1519
+ token_type: string;
1520
+ } | "recently" | undefined;
1521
+ }, {
1522
+ object: string | {
1523
+ name?: string | undefined;
1524
+ replaceExistName?: boolean | undefined;
1525
+ tags?: string[] | undefined;
1526
+ onChain?: boolean | undefined;
1527
+ type_parameter?: string | undefined;
1528
+ permission?: string | {
1529
+ name?: string | undefined;
1530
+ description?: string | undefined;
1531
+ replaceExistName?: boolean | undefined;
1532
+ tags?: string[] | undefined;
1533
+ onChain?: boolean | undefined;
1534
+ } | undefined;
1535
+ };
1536
+ description?: string | undefined;
1537
+ location?: string | undefined;
1538
+ owner_receive?: {
1539
+ received: {
1540
+ id: string;
1541
+ balance: string | number;
1542
+ payment: string;
1543
+ }[];
1544
+ balance: string | number;
1545
+ token_type: string;
1546
+ } | "recently" | {
1547
+ type: string;
1548
+ id: string;
1549
+ }[] | undefined;
1550
+ rewards?: {
1551
+ op: "set" | "add";
1552
+ objects: string[];
1553
+ } | {
1554
+ op: "remove";
1555
+ objects: string[];
1556
+ } | {
1557
+ op: "clear";
1558
+ } | undefined;
1559
+ um?: {
1560
+ name?: string | undefined;
1561
+ replaceExistName?: boolean | undefined;
1562
+ tags?: string[] | undefined;
1563
+ onChain?: boolean | undefined;
1564
+ } | null | undefined;
1565
+ discount?: {
1566
+ name: string;
1567
+ recipient: {
1568
+ entities: {
1569
+ name_or_address?: string | undefined;
1570
+ local_mark_first?: boolean | undefined;
1571
+ }[];
1572
+ check_all_founded?: boolean | undefined;
1573
+ };
1574
+ discount_type: import("wowok").DiscountType;
1575
+ discount_value: string | number;
1576
+ count?: number | undefined;
1577
+ benchmark?: string | number | undefined;
1578
+ transferable?: boolean | undefined;
1579
+ time_ms_start?: number | undefined;
1580
+ time_ms_end?: number | undefined;
1581
+ } | undefined;
1582
+ machine?: {
1583
+ name?: string | undefined;
1584
+ replaceExistName?: boolean | undefined;
1585
+ tags?: string[] | undefined;
1586
+ onChain?: boolean | undefined;
1587
+ } | null | undefined;
1588
+ sales?: {
1589
+ op: "add";
1590
+ sales: {
1591
+ name: string;
1592
+ wip: string;
1593
+ price: string | number;
1594
+ stock: string | number;
1595
+ suspension: boolean;
1596
+ wip_hash: string;
1597
+ }[];
1598
+ } | {
1599
+ op: "set";
1600
+ sales: {
1601
+ name: string;
1602
+ wip: string;
1603
+ price: string | number;
1604
+ stock: string | number;
1605
+ suspension: boolean;
1606
+ wip_hash: string;
1607
+ }[];
1608
+ } | {
1609
+ op: "remove";
1610
+ sales_name: string[];
1611
+ } | {
1612
+ op: "clear";
1613
+ } | undefined;
1614
+ repositories?: {
1615
+ op: "set" | "add";
1616
+ objects: string[];
1617
+ } | {
1618
+ op: "remove";
1619
+ objects: string[];
1620
+ } | {
1621
+ op: "clear";
1622
+ } | undefined;
1623
+ customer_required?: string[] | undefined;
1624
+ arbitrations?: {
1625
+ op: "set" | "add";
1626
+ objects: string[];
1627
+ } | {
1628
+ op: "remove";
1629
+ objects: string[];
1630
+ } | {
1631
+ op: "clear";
1632
+ } | undefined;
1633
+ order_allocators?: {
1634
+ description: string;
1635
+ threshold: string | number;
1636
+ allocators: {
1637
+ guard: string;
1638
+ sharing: {
1639
+ who: {
1640
+ GuardIdentifier: number;
1641
+ } | {
1642
+ Entity: {
1643
+ name_or_address?: string | undefined;
1644
+ local_mark_first?: boolean | undefined;
1645
+ };
1646
+ } | {
1647
+ Signer: "signer";
1648
+ };
1649
+ sharing: string | number;
1650
+ mode: "Amount" | "Rate" | "Surplus";
1651
+ }[];
1652
+ max?: string | number | null | undefined;
1653
+ fix?: string | number | undefined;
1654
+ }[];
1655
+ } | null | undefined;
1656
+ pause?: boolean | undefined;
1657
+ publish?: boolean | undefined;
1658
+ order_new?: {
1659
+ buy: {
1660
+ items: {
1661
+ name: string;
1662
+ stock: string | number;
1663
+ wip_hash: string;
1664
+ }[];
1665
+ total_pay: {
1666
+ balance: string | number;
1667
+ } | {
1668
+ coin: string;
1669
+ };
1670
+ discount?: string | undefined;
1671
+ payment_remark?: string | undefined;
1672
+ payment_index?: number | undefined;
1673
+ };
1674
+ order_required_info: string;
1675
+ transfer?: {
1676
+ name_or_address?: string | undefined;
1677
+ local_mark_first?: boolean | undefined;
1678
+ } | undefined;
1679
+ agents?: {
1680
+ entities: {
1681
+ name_or_address?: string | undefined;
1682
+ local_mark_first?: boolean | undefined;
1683
+ }[];
1684
+ check_all_founded?: boolean | undefined;
1685
+ } | undefined;
1686
+ namedNewOrder?: {
1687
+ name?: string | undefined;
1688
+ replaceExistName?: boolean | undefined;
1689
+ tags?: string[] | undefined;
1690
+ onChain?: boolean | undefined;
1691
+ } | undefined;
1692
+ namedNewAllocation?: {
1693
+ name?: string | undefined;
1694
+ replaceExistName?: boolean | undefined;
1695
+ tags?: string[] | undefined;
1696
+ onChain?: boolean | undefined;
1697
+ } | undefined;
1698
+ namedNewProgress?: {
1699
+ name?: string | undefined;
1700
+ replaceExistName?: boolean | undefined;
1701
+ tags?: string[] | undefined;
1702
+ onChain?: boolean | undefined;
1703
+ } | undefined;
1704
+ } | undefined;
1705
+ discount_destroy?: {
1706
+ name?: string | undefined;
1707
+ replaceExistName?: boolean | undefined;
1708
+ tags?: string[] | undefined;
1709
+ onChain?: boolean | undefined;
1710
+ }[] | undefined;
1711
+ compensation_fund_add?: {
1712
+ balance: string | number;
1713
+ } | {
1714
+ coin: string;
1715
+ } | undefined;
1716
+ compensation_locked_time_add?: number | undefined;
1717
+ compensation_fund_receive?: {
1718
+ received: {
1719
+ id: string;
1720
+ balance: string | number;
1721
+ payment: string;
1722
+ }[];
1723
+ balance: string | number;
1724
+ token_type: string;
1725
+ } | "recently" | undefined;
1726
+ }>;
1727
+ export declare const CallService_InputSchema: z.ZodObject<{
1728
+ data: z.ZodObject<{
1729
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1730
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1731
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1732
+ onChain: z.ZodOptional<z.ZodBoolean>;
1733
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1734
+ } & {
1735
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1736
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1737
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1738
+ onChain: z.ZodOptional<z.ZodBoolean>;
1739
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1740
+ } & {
1741
+ description: z.ZodOptional<z.ZodString>;
1742
+ }, "strict", z.ZodTypeAny, {
1743
+ name?: string | undefined;
1744
+ description?: string | undefined;
1745
+ replaceExistName?: boolean | undefined;
1746
+ tags?: string[] | undefined;
1747
+ onChain?: boolean | undefined;
1748
+ }, {
1749
+ name?: string | undefined;
1750
+ description?: string | undefined;
1751
+ replaceExistName?: boolean | undefined;
1752
+ tags?: string[] | undefined;
1753
+ onChain?: boolean | undefined;
1754
+ }>]>>;
1755
+ } & {
1756
+ type_parameter: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
1757
+ }, "strict", z.ZodTypeAny, {
1758
+ type_parameter: string;
1759
+ name?: string | undefined;
1760
+ replaceExistName?: boolean | undefined;
1761
+ tags?: string[] | undefined;
1762
+ onChain?: boolean | undefined;
1763
+ permission?: string | {
1764
+ name?: string | undefined;
1765
+ description?: string | undefined;
1766
+ replaceExistName?: boolean | undefined;
1767
+ tags?: string[] | undefined;
1768
+ onChain?: boolean | undefined;
1769
+ } | undefined;
1770
+ }, {
1771
+ name?: string | undefined;
1772
+ replaceExistName?: boolean | undefined;
1773
+ tags?: string[] | undefined;
1774
+ onChain?: boolean | undefined;
1775
+ type_parameter?: string | undefined;
1776
+ permission?: string | {
1777
+ name?: string | undefined;
1778
+ description?: string | undefined;
1779
+ replaceExistName?: boolean | undefined;
1780
+ tags?: string[] | undefined;
1781
+ onChain?: boolean | undefined;
1782
+ } | undefined;
1783
+ }>]>;
1784
+ order_new: z.ZodOptional<z.ZodObject<{
1785
+ buy: z.ZodObject<{
1786
+ items: z.ZodArray<z.ZodObject<{
1787
+ name: z.ZodEffects<z.ZodString, string, string>;
1788
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1789
+ wip_hash: z.ZodString;
1790
+ }, "strict", z.ZodTypeAny, {
1791
+ name: string;
1792
+ stock: string | number;
1793
+ wip_hash: string;
1794
+ }, {
1795
+ name: string;
1796
+ stock: string | number;
1797
+ wip_hash: string;
1798
+ }>, "many">;
1799
+ total_pay: z.ZodUnion<[z.ZodObject<{
1800
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1801
+ }, "strip", z.ZodTypeAny, {
1802
+ balance: string | number;
1803
+ }, {
1804
+ balance: string | number;
1805
+ }>, z.ZodObject<{
1806
+ coin: z.ZodString;
1807
+ }, "strip", z.ZodTypeAny, {
1808
+ coin: string;
1809
+ }, {
1810
+ coin: string;
1811
+ }>]>;
1812
+ discount: z.ZodOptional<z.ZodString>;
1813
+ payment_remark: z.ZodOptional<z.ZodString>;
1814
+ payment_index: z.ZodOptional<z.ZodNumber>;
1815
+ }, "strict", z.ZodTypeAny, {
1816
+ items: {
1817
+ name: string;
1818
+ stock: string | number;
1819
+ wip_hash: string;
1820
+ }[];
1821
+ total_pay: {
1822
+ balance: string | number;
1823
+ } | {
1824
+ coin: string;
1825
+ };
1826
+ discount?: string | undefined;
1827
+ payment_remark?: string | undefined;
1828
+ payment_index?: number | undefined;
1829
+ }, {
1830
+ items: {
1831
+ name: string;
1832
+ stock: string | number;
1833
+ wip_hash: string;
1834
+ }[];
1835
+ total_pay: {
1836
+ balance: string | number;
1837
+ } | {
1838
+ coin: string;
1839
+ };
1840
+ discount?: string | undefined;
1841
+ payment_remark?: string | undefined;
1842
+ payment_index?: number | undefined;
1843
+ }>;
1844
+ agents: z.ZodOptional<z.ZodObject<{
1845
+ entities: z.ZodArray<z.ZodObject<{
1846
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1847
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1848
+ }, "strict", z.ZodTypeAny, {
1849
+ name_or_address?: string | undefined;
1850
+ local_mark_first?: boolean | undefined;
1851
+ }, {
1852
+ name_or_address?: string | undefined;
1853
+ local_mark_first?: boolean | undefined;
1854
+ }>, "many">;
1855
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
1856
+ }, "strict", z.ZodTypeAny, {
1857
+ entities: {
1858
+ name_or_address?: string | undefined;
1859
+ local_mark_first?: boolean | undefined;
1860
+ }[];
1861
+ check_all_founded?: boolean | undefined;
1862
+ }, {
1863
+ entities: {
1864
+ name_or_address?: string | undefined;
1865
+ local_mark_first?: boolean | undefined;
1866
+ }[];
1867
+ check_all_founded?: boolean | undefined;
1868
+ }>>;
1869
+ order_required_info: z.ZodString;
1870
+ transfer: z.ZodOptional<z.ZodObject<{
1871
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1872
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1873
+ }, "strict", z.ZodTypeAny, {
1874
+ name_or_address?: string | undefined;
1875
+ local_mark_first?: boolean | undefined;
1876
+ }, {
1877
+ name_or_address?: string | undefined;
1878
+ local_mark_first?: boolean | undefined;
1879
+ }>>;
1880
+ namedNewOrder: z.ZodOptional<z.ZodObject<{
1881
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1882
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1883
+ onChain: z.ZodOptional<z.ZodBoolean>;
1884
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1885
+ }, "strict", z.ZodTypeAny, {
1886
+ name?: string | undefined;
1887
+ replaceExistName?: boolean | undefined;
1888
+ tags?: string[] | undefined;
1889
+ onChain?: boolean | undefined;
1890
+ }, {
1891
+ name?: string | undefined;
1892
+ replaceExistName?: boolean | undefined;
1893
+ tags?: string[] | undefined;
1894
+ onChain?: boolean | undefined;
1895
+ }>>;
1896
+ namedNewAllocation: z.ZodOptional<z.ZodObject<{
1897
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1898
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1899
+ onChain: z.ZodOptional<z.ZodBoolean>;
1900
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1901
+ }, "strict", z.ZodTypeAny, {
1902
+ name?: string | undefined;
1903
+ replaceExistName?: boolean | undefined;
1904
+ tags?: string[] | undefined;
1905
+ onChain?: boolean | undefined;
1906
+ }, {
1907
+ name?: string | undefined;
1908
+ replaceExistName?: boolean | undefined;
1909
+ tags?: string[] | undefined;
1910
+ onChain?: boolean | undefined;
1911
+ }>>;
1912
+ namedNewProgress: z.ZodOptional<z.ZodObject<{
1913
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1914
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1915
+ onChain: z.ZodOptional<z.ZodBoolean>;
1916
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1917
+ }, "strict", z.ZodTypeAny, {
1918
+ name?: string | undefined;
1919
+ replaceExistName?: boolean | undefined;
1920
+ tags?: string[] | undefined;
1921
+ onChain?: boolean | undefined;
1922
+ }, {
1923
+ name?: string | undefined;
1924
+ replaceExistName?: boolean | undefined;
1925
+ tags?: string[] | undefined;
1926
+ onChain?: boolean | undefined;
1927
+ }>>;
1928
+ }, "strict", z.ZodTypeAny, {
1929
+ buy: {
1930
+ items: {
1931
+ name: string;
1932
+ stock: string | number;
1933
+ wip_hash: string;
1934
+ }[];
1935
+ total_pay: {
1936
+ balance: string | number;
1937
+ } | {
1938
+ coin: string;
1939
+ };
1940
+ discount?: string | undefined;
1941
+ payment_remark?: string | undefined;
1942
+ payment_index?: number | undefined;
1943
+ };
1944
+ order_required_info: string;
1945
+ transfer?: {
1946
+ name_or_address?: string | undefined;
1947
+ local_mark_first?: boolean | undefined;
1948
+ } | undefined;
1949
+ agents?: {
1950
+ entities: {
1951
+ name_or_address?: string | undefined;
1952
+ local_mark_first?: boolean | undefined;
1953
+ }[];
1954
+ check_all_founded?: boolean | undefined;
1955
+ } | undefined;
1956
+ namedNewOrder?: {
1957
+ name?: string | undefined;
1958
+ replaceExistName?: boolean | undefined;
1959
+ tags?: string[] | undefined;
1960
+ onChain?: boolean | undefined;
1961
+ } | undefined;
1962
+ namedNewAllocation?: {
1963
+ name?: string | undefined;
1964
+ replaceExistName?: boolean | undefined;
1965
+ tags?: string[] | undefined;
1966
+ onChain?: boolean | undefined;
1967
+ } | undefined;
1968
+ namedNewProgress?: {
1969
+ name?: string | undefined;
1970
+ replaceExistName?: boolean | undefined;
1971
+ tags?: string[] | undefined;
1972
+ onChain?: boolean | undefined;
1973
+ } | undefined;
1974
+ }, {
1975
+ buy: {
1976
+ items: {
1977
+ name: string;
1978
+ stock: string | number;
1979
+ wip_hash: string;
1980
+ }[];
1981
+ total_pay: {
1982
+ balance: string | number;
1983
+ } | {
1984
+ coin: string;
1985
+ };
1986
+ discount?: string | undefined;
1987
+ payment_remark?: string | undefined;
1988
+ payment_index?: number | undefined;
1989
+ };
1990
+ order_required_info: string;
1991
+ transfer?: {
1992
+ name_or_address?: string | undefined;
1993
+ local_mark_first?: boolean | undefined;
1994
+ } | undefined;
1995
+ agents?: {
1996
+ entities: {
1997
+ name_or_address?: string | undefined;
1998
+ local_mark_first?: boolean | undefined;
1999
+ }[];
2000
+ check_all_founded?: boolean | undefined;
2001
+ } | undefined;
2002
+ namedNewOrder?: {
2003
+ name?: string | undefined;
2004
+ replaceExistName?: boolean | undefined;
2005
+ tags?: string[] | undefined;
2006
+ onChain?: boolean | undefined;
2007
+ } | undefined;
2008
+ namedNewAllocation?: {
2009
+ name?: string | undefined;
2010
+ replaceExistName?: boolean | undefined;
2011
+ tags?: string[] | undefined;
2012
+ onChain?: boolean | undefined;
2013
+ } | undefined;
2014
+ namedNewProgress?: {
2015
+ name?: string | undefined;
2016
+ replaceExistName?: boolean | undefined;
2017
+ tags?: string[] | undefined;
2018
+ onChain?: boolean | undefined;
2019
+ } | undefined;
2020
+ }>>;
2021
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2022
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2023
+ sales: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
2024
+ op: z.ZodLiteral<"add">;
2025
+ sales: z.ZodArray<z.ZodObject<{
2026
+ name: z.ZodEffects<z.ZodString, string, string>;
2027
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2028
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2029
+ suspension: z.ZodBoolean;
2030
+ wip: z.ZodString;
2031
+ wip_hash: z.ZodString;
2032
+ }, "strip", z.ZodTypeAny, {
2033
+ name: string;
2034
+ wip: string;
2035
+ price: string | number;
2036
+ stock: string | number;
2037
+ suspension: boolean;
2038
+ wip_hash: string;
2039
+ }, {
2040
+ name: string;
2041
+ wip: string;
2042
+ price: string | number;
2043
+ stock: string | number;
2044
+ suspension: boolean;
2045
+ wip_hash: string;
2046
+ }>, "many">;
2047
+ }, "strict", z.ZodTypeAny, {
2048
+ op: "add";
2049
+ sales: {
2050
+ name: string;
2051
+ wip: string;
2052
+ price: string | number;
2053
+ stock: string | number;
2054
+ suspension: boolean;
2055
+ wip_hash: string;
2056
+ }[];
2057
+ }, {
2058
+ op: "add";
2059
+ sales: {
2060
+ name: string;
2061
+ wip: string;
2062
+ price: string | number;
2063
+ stock: string | number;
2064
+ suspension: boolean;
2065
+ wip_hash: string;
2066
+ }[];
2067
+ }>, z.ZodObject<{
2068
+ op: z.ZodLiteral<"set">;
2069
+ sales: z.ZodArray<z.ZodObject<{
2070
+ name: z.ZodEffects<z.ZodString, string, string>;
2071
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2072
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2073
+ suspension: z.ZodBoolean;
2074
+ wip: z.ZodString;
2075
+ wip_hash: z.ZodString;
2076
+ }, "strip", z.ZodTypeAny, {
2077
+ name: string;
2078
+ wip: string;
2079
+ price: string | number;
2080
+ stock: string | number;
2081
+ suspension: boolean;
2082
+ wip_hash: string;
2083
+ }, {
2084
+ name: string;
2085
+ wip: string;
2086
+ price: string | number;
2087
+ stock: string | number;
2088
+ suspension: boolean;
2089
+ wip_hash: string;
2090
+ }>, "many">;
2091
+ }, "strict", z.ZodTypeAny, {
2092
+ op: "set";
2093
+ sales: {
2094
+ name: string;
2095
+ wip: string;
2096
+ price: string | number;
2097
+ stock: string | number;
2098
+ suspension: boolean;
2099
+ wip_hash: string;
2100
+ }[];
2101
+ }, {
2102
+ op: "set";
2103
+ sales: {
2104
+ name: string;
2105
+ wip: string;
2106
+ price: string | number;
2107
+ stock: string | number;
2108
+ suspension: boolean;
2109
+ wip_hash: string;
2110
+ }[];
2111
+ }>, z.ZodObject<{
2112
+ op: z.ZodLiteral<"remove">;
2113
+ sales_name: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2114
+ }, "strict", z.ZodTypeAny, {
2115
+ op: "remove";
2116
+ sales_name: string[];
2117
+ }, {
2118
+ op: "remove";
2119
+ sales_name: string[];
2120
+ }>, z.ZodObject<{
2121
+ op: z.ZodLiteral<"clear">;
2122
+ }, "strict", z.ZodTypeAny, {
2123
+ op: "clear";
2124
+ }, {
2125
+ op: "clear";
2126
+ }>]>>;
2127
+ repositories: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2128
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
2129
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2130
+ }, "strict", z.ZodTypeAny, {
2131
+ op: "set" | "add";
2132
+ objects: string[];
2133
+ }, {
2134
+ op: "set" | "add";
2135
+ objects: string[];
2136
+ }>, z.ZodObject<{
2137
+ op: z.ZodLiteral<"remove">;
2138
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2139
+ }, "strict", z.ZodTypeAny, {
2140
+ op: "remove";
2141
+ objects: string[];
2142
+ }, {
2143
+ op: "remove";
2144
+ objects: string[];
2145
+ }>, z.ZodObject<{
2146
+ op: z.ZodLiteral<"clear">;
2147
+ }, "strict", z.ZodTypeAny, {
2148
+ op: "clear";
2149
+ }, {
2150
+ op: "clear";
2151
+ }>]>>;
2152
+ rewards: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2153
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
2154
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2155
+ }, "strict", z.ZodTypeAny, {
2156
+ op: "set" | "add";
2157
+ objects: string[];
2158
+ }, {
2159
+ op: "set" | "add";
2160
+ objects: string[];
2161
+ }>, z.ZodObject<{
2162
+ op: z.ZodLiteral<"remove">;
2163
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2164
+ }, "strict", z.ZodTypeAny, {
2165
+ op: "remove";
2166
+ objects: string[];
2167
+ }, {
2168
+ op: "remove";
2169
+ objects: string[];
2170
+ }>, z.ZodObject<{
2171
+ op: z.ZodLiteral<"clear">;
2172
+ }, "strict", z.ZodTypeAny, {
2173
+ op: "clear";
2174
+ }, {
2175
+ op: "clear";
2176
+ }>]>>;
2177
+ arbitrations: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2178
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
2179
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2180
+ }, "strict", z.ZodTypeAny, {
2181
+ op: "set" | "add";
2182
+ objects: string[];
2183
+ }, {
2184
+ op: "set" | "add";
2185
+ objects: string[];
2186
+ }>, z.ZodObject<{
2187
+ op: z.ZodLiteral<"remove">;
2188
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2189
+ }, "strict", z.ZodTypeAny, {
2190
+ op: "remove";
2191
+ objects: string[];
2192
+ }, {
2193
+ op: "remove";
2194
+ objects: string[];
2195
+ }>, z.ZodObject<{
2196
+ op: z.ZodLiteral<"clear">;
2197
+ }, "strict", z.ZodTypeAny, {
2198
+ op: "clear";
2199
+ }, {
2200
+ op: "clear";
2201
+ }>]>>;
2202
+ machine: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2203
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2204
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2205
+ onChain: z.ZodOptional<z.ZodBoolean>;
2206
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
2207
+ }, "strict", z.ZodTypeAny, {
2208
+ name?: string | undefined;
2209
+ replaceExistName?: boolean | undefined;
2210
+ tags?: string[] | undefined;
2211
+ onChain?: boolean | undefined;
2212
+ }, {
2213
+ name?: string | undefined;
2214
+ replaceExistName?: boolean | undefined;
2215
+ tags?: string[] | undefined;
2216
+ onChain?: boolean | undefined;
2217
+ }>, z.ZodNull]>>;
2218
+ discount: z.ZodOptional<z.ZodObject<{
2219
+ name: z.ZodString;
2220
+ discount_type: z.ZodUnion<[z.ZodLiteral<import("wowok").DiscountType.RATES>, z.ZodLiteral<import("wowok").DiscountType.FIXED>]>;
2221
+ discount_value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2222
+ benchmark: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
2223
+ time_ms_start: z.ZodOptional<z.ZodNumber>;
2224
+ time_ms_end: z.ZodOptional<z.ZodNumber>;
2225
+ count: z.ZodOptional<z.ZodNumber>;
2226
+ recipient: z.ZodObject<{
2227
+ entities: z.ZodArray<z.ZodObject<{
2228
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2229
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
2230
+ }, "strict", z.ZodTypeAny, {
2231
+ name_or_address?: string | undefined;
2232
+ local_mark_first?: boolean | undefined;
2233
+ }, {
2234
+ name_or_address?: string | undefined;
2235
+ local_mark_first?: boolean | undefined;
2236
+ }>, "many">;
2237
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
2238
+ }, "strict", z.ZodTypeAny, {
2239
+ entities: {
2240
+ name_or_address?: string | undefined;
2241
+ local_mark_first?: boolean | undefined;
2242
+ }[];
2243
+ check_all_founded?: boolean | undefined;
2244
+ }, {
2245
+ entities: {
2246
+ name_or_address?: string | undefined;
2247
+ local_mark_first?: boolean | undefined;
2248
+ }[];
2249
+ check_all_founded?: boolean | undefined;
2250
+ }>;
2251
+ transferable: z.ZodOptional<z.ZodBoolean>;
2252
+ }, "strict", z.ZodTypeAny, {
2253
+ name: string;
2254
+ recipient: {
2255
+ entities: {
2256
+ name_or_address?: string | undefined;
2257
+ local_mark_first?: boolean | undefined;
2258
+ }[];
2259
+ check_all_founded?: boolean | undefined;
2260
+ };
2261
+ discount_type: import("wowok").DiscountType;
2262
+ discount_value: string | number;
2263
+ count?: number | undefined;
2264
+ benchmark?: string | number | undefined;
2265
+ transferable?: boolean | undefined;
2266
+ time_ms_start?: number | undefined;
2267
+ time_ms_end?: number | undefined;
2268
+ }, {
2269
+ name: string;
2270
+ recipient: {
2271
+ entities: {
2272
+ name_or_address?: string | undefined;
2273
+ local_mark_first?: boolean | undefined;
2274
+ }[];
2275
+ check_all_founded?: boolean | undefined;
2276
+ };
2277
+ discount_type: import("wowok").DiscountType;
2278
+ discount_value: string | number;
2279
+ count?: number | undefined;
2280
+ benchmark?: string | number | undefined;
2281
+ transferable?: boolean | undefined;
2282
+ time_ms_start?: number | undefined;
2283
+ time_ms_end?: number | undefined;
2284
+ }>>;
2285
+ discount_destroy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2286
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2287
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2288
+ onChain: z.ZodOptional<z.ZodBoolean>;
2289
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
2290
+ }, "strict", z.ZodTypeAny, {
2291
+ name?: string | undefined;
2292
+ replaceExistName?: boolean | undefined;
2293
+ tags?: string[] | undefined;
2294
+ onChain?: boolean | undefined;
2295
+ }, {
2296
+ name?: string | undefined;
2297
+ replaceExistName?: boolean | undefined;
2298
+ tags?: string[] | undefined;
2299
+ onChain?: boolean | undefined;
2300
+ }>, "many">>;
2301
+ customer_required: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
2302
+ order_allocators: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2303
+ description: z.ZodEffects<z.ZodString, string, string>;
2304
+ threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2305
+ allocators: z.ZodArray<z.ZodObject<{
2306
+ guard: z.ZodEffects<z.ZodString, string, string>;
2307
+ sharing: z.ZodArray<z.ZodObject<{
2308
+ who: z.ZodUnion<[z.ZodObject<{
2309
+ GuardIdentifier: z.ZodNumber;
2310
+ }, "strip", z.ZodTypeAny, {
2311
+ GuardIdentifier: number;
2312
+ }, {
2313
+ GuardIdentifier: number;
2314
+ }>, z.ZodObject<{
2315
+ Entity: z.ZodObject<{
2316
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2317
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
2318
+ }, "strict", z.ZodTypeAny, {
2319
+ name_or_address?: string | undefined;
2320
+ local_mark_first?: boolean | undefined;
2321
+ }, {
2322
+ name_or_address?: string | undefined;
2323
+ local_mark_first?: boolean | undefined;
2324
+ }>;
2325
+ }, "strip", z.ZodTypeAny, {
2326
+ Entity: {
2327
+ name_or_address?: string | undefined;
2328
+ local_mark_first?: boolean | undefined;
2329
+ };
2330
+ }, {
2331
+ Entity: {
2332
+ name_or_address?: string | undefined;
2333
+ local_mark_first?: boolean | undefined;
2334
+ };
2335
+ }>, z.ZodObject<{
2336
+ Signer: z.ZodLiteral<"signer">;
2337
+ }, "strip", z.ZodTypeAny, {
2338
+ Signer: "signer";
2339
+ }, {
2340
+ Signer: "signer";
2341
+ }>]>;
2342
+ sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2343
+ mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
2344
+ }, "strip", z.ZodTypeAny, {
2345
+ who: {
2346
+ GuardIdentifier: number;
2347
+ } | {
2348
+ Entity: {
2349
+ name_or_address?: string | undefined;
2350
+ local_mark_first?: boolean | undefined;
2351
+ };
2352
+ } | {
2353
+ Signer: "signer";
2354
+ };
2355
+ sharing: string | number;
2356
+ mode: "Amount" | "Rate" | "Surplus";
2357
+ }, {
2358
+ who: {
2359
+ GuardIdentifier: number;
2360
+ } | {
2361
+ Entity: {
2362
+ name_or_address?: string | undefined;
2363
+ local_mark_first?: boolean | undefined;
2364
+ };
2365
+ } | {
2366
+ Signer: "signer";
2367
+ };
2368
+ sharing: string | number;
2369
+ mode: "Amount" | "Rate" | "Surplus";
2370
+ }>, "many">;
2371
+ fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
2372
+ max: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNull]>>;
2373
+ }, "strip", z.ZodTypeAny, {
2374
+ guard: string;
2375
+ sharing: {
2376
+ who: {
2377
+ GuardIdentifier: number;
2378
+ } | {
2379
+ Entity: {
2380
+ name_or_address?: string | undefined;
2381
+ local_mark_first?: boolean | undefined;
2382
+ };
2383
+ } | {
2384
+ Signer: "signer";
2385
+ };
2386
+ sharing: string | number;
2387
+ mode: "Amount" | "Rate" | "Surplus";
2388
+ }[];
2389
+ max?: string | number | null | undefined;
2390
+ fix?: string | number | undefined;
2391
+ }, {
2392
+ guard: string;
2393
+ sharing: {
2394
+ who: {
2395
+ GuardIdentifier: number;
2396
+ } | {
2397
+ Entity: {
2398
+ name_or_address?: string | undefined;
2399
+ local_mark_first?: boolean | undefined;
2400
+ };
2401
+ } | {
2402
+ Signer: "signer";
2403
+ };
2404
+ sharing: string | number;
2405
+ mode: "Amount" | "Rate" | "Surplus";
2406
+ }[];
2407
+ max?: string | number | null | undefined;
2408
+ fix?: string | number | undefined;
2409
+ }>, "many">;
2410
+ }, "strip", z.ZodTypeAny, {
2411
+ description: string;
2412
+ threshold: string | number;
2413
+ allocators: {
2414
+ guard: string;
2415
+ sharing: {
2416
+ who: {
2417
+ GuardIdentifier: number;
2418
+ } | {
2419
+ Entity: {
2420
+ name_or_address?: string | undefined;
2421
+ local_mark_first?: boolean | undefined;
2422
+ };
2423
+ } | {
2424
+ Signer: "signer";
2425
+ };
2426
+ sharing: string | number;
2427
+ mode: "Amount" | "Rate" | "Surplus";
2428
+ }[];
2429
+ max?: string | number | null | undefined;
2430
+ fix?: string | number | undefined;
2431
+ }[];
2432
+ }, {
2433
+ description: string;
2434
+ threshold: string | number;
2435
+ allocators: {
2436
+ guard: string;
2437
+ sharing: {
2438
+ who: {
2439
+ GuardIdentifier: number;
2440
+ } | {
2441
+ Entity: {
2442
+ name_or_address?: string | undefined;
2443
+ local_mark_first?: boolean | undefined;
2444
+ };
2445
+ } | {
2446
+ Signer: "signer";
2447
+ };
2448
+ sharing: string | number;
2449
+ mode: "Amount" | "Rate" | "Surplus";
2450
+ }[];
2451
+ max?: string | number | null | undefined;
2452
+ fix?: string | number | undefined;
2453
+ }[];
2454
+ }>, z.ZodNull]>>;
2455
+ compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2456
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2457
+ }, "strip", z.ZodTypeAny, {
2458
+ balance: string | number;
2459
+ }, {
2460
+ balance: string | number;
2461
+ }>, z.ZodObject<{
2462
+ coin: z.ZodString;
2463
+ }, "strip", z.ZodTypeAny, {
2464
+ coin: string;
2465
+ }, {
2466
+ coin: string;
2467
+ }>]>>;
2468
+ compensation_locked_time_add: z.ZodOptional<z.ZodNumber>;
2469
+ compensation_fund_receive: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2470
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2471
+ token_type: z.ZodEffects<z.ZodString, string, string>;
2472
+ received: z.ZodArray<z.ZodObject<{
2473
+ id: z.ZodString;
2474
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2475
+ payment: z.ZodString;
2476
+ }, "strict", z.ZodTypeAny, {
2477
+ id: string;
2478
+ balance: string | number;
2479
+ payment: string;
2480
+ }, {
2481
+ id: string;
2482
+ balance: string | number;
2483
+ payment: string;
2484
+ }>, "many">;
2485
+ }, "strict", z.ZodTypeAny, {
2486
+ received: {
2487
+ id: string;
2488
+ balance: string | number;
2489
+ payment: string;
2490
+ }[];
2491
+ balance: string | number;
2492
+ token_type: string;
2493
+ }, {
2494
+ received: {
2495
+ id: string;
2496
+ balance: string | number;
2497
+ payment: string;
2498
+ }[];
2499
+ balance: string | number;
2500
+ token_type: string;
2501
+ }>, z.ZodLiteral<"recently">]>>;
2502
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
2503
+ id: z.ZodString;
2504
+ type: z.ZodString;
2505
+ }, "strict", z.ZodTypeAny, {
2506
+ type: string;
2507
+ id: string;
2508
+ }, {
2509
+ type: string;
2510
+ id: string;
2511
+ }>, "many">, z.ZodObject<{
2512
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2513
+ token_type: z.ZodEffects<z.ZodString, string, string>;
2514
+ received: z.ZodArray<z.ZodObject<{
2515
+ id: z.ZodString;
2516
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2517
+ payment: z.ZodString;
2518
+ }, "strict", z.ZodTypeAny, {
2519
+ id: string;
2520
+ balance: string | number;
2521
+ payment: string;
2522
+ }, {
2523
+ id: string;
2524
+ balance: string | number;
2525
+ payment: string;
2526
+ }>, "many">;
2527
+ }, "strict", z.ZodTypeAny, {
2528
+ received: {
2529
+ id: string;
2530
+ balance: string | number;
2531
+ payment: string;
2532
+ }[];
2533
+ balance: string | number;
2534
+ token_type: string;
2535
+ }, {
2536
+ received: {
2537
+ id: string;
2538
+ balance: string | number;
2539
+ payment: string;
2540
+ }[];
2541
+ balance: string | number;
2542
+ token_type: string;
2543
+ }>, z.ZodLiteral<"recently">]>>;
2544
+ um: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2545
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2546
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2547
+ onChain: z.ZodOptional<z.ZodBoolean>;
2548
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
2549
+ }, "strict", z.ZodTypeAny, {
2550
+ name?: string | undefined;
2551
+ replaceExistName?: boolean | undefined;
2552
+ tags?: string[] | undefined;
2553
+ onChain?: boolean | undefined;
2554
+ }, {
2555
+ name?: string | undefined;
2556
+ replaceExistName?: boolean | undefined;
2557
+ tags?: string[] | undefined;
2558
+ onChain?: boolean | undefined;
2559
+ }>, z.ZodNull]>>;
2560
+ pause: z.ZodOptional<z.ZodBoolean>;
2561
+ publish: z.ZodOptional<z.ZodBoolean>;
2562
+ }, "strict", z.ZodTypeAny, {
2563
+ object: string | {
2564
+ type_parameter: string;
2565
+ name?: string | undefined;
2566
+ replaceExistName?: boolean | undefined;
2567
+ tags?: string[] | undefined;
2568
+ onChain?: boolean | undefined;
2569
+ permission?: string | {
2570
+ name?: string | undefined;
2571
+ description?: string | undefined;
2572
+ replaceExistName?: boolean | undefined;
2573
+ tags?: string[] | undefined;
2574
+ onChain?: boolean | undefined;
2575
+ } | undefined;
2576
+ };
2577
+ description?: string | undefined;
2578
+ location?: string | undefined;
2579
+ owner_receive?: {
2580
+ received: {
2581
+ id: string;
2582
+ balance: string | number;
2583
+ payment: string;
2584
+ }[];
2585
+ balance: string | number;
2586
+ token_type: string;
2587
+ } | "recently" | {
2588
+ type: string;
2589
+ id: string;
2590
+ }[] | undefined;
2591
+ rewards?: {
2592
+ op: "set" | "add";
2593
+ objects: string[];
2594
+ } | {
2595
+ op: "remove";
2596
+ objects: string[];
2597
+ } | {
2598
+ op: "clear";
2599
+ } | undefined;
2600
+ um?: {
2601
+ name?: string | undefined;
2602
+ replaceExistName?: boolean | undefined;
2603
+ tags?: string[] | undefined;
2604
+ onChain?: boolean | undefined;
2605
+ } | null | undefined;
2606
+ discount?: {
2607
+ name: string;
2608
+ recipient: {
2609
+ entities: {
2610
+ name_or_address?: string | undefined;
2611
+ local_mark_first?: boolean | undefined;
2612
+ }[];
2613
+ check_all_founded?: boolean | undefined;
2614
+ };
2615
+ discount_type: import("wowok").DiscountType;
2616
+ discount_value: string | number;
2617
+ count?: number | undefined;
2618
+ benchmark?: string | number | undefined;
2619
+ transferable?: boolean | undefined;
2620
+ time_ms_start?: number | undefined;
2621
+ time_ms_end?: number | undefined;
2622
+ } | undefined;
2623
+ machine?: {
2624
+ name?: string | undefined;
2625
+ replaceExistName?: boolean | undefined;
2626
+ tags?: string[] | undefined;
2627
+ onChain?: boolean | undefined;
2628
+ } | null | undefined;
2629
+ sales?: {
2630
+ op: "add";
2631
+ sales: {
2632
+ name: string;
2633
+ wip: string;
2634
+ price: string | number;
2635
+ stock: string | number;
2636
+ suspension: boolean;
2637
+ wip_hash: string;
2638
+ }[];
2639
+ } | {
2640
+ op: "set";
2641
+ sales: {
2642
+ name: string;
2643
+ wip: string;
2644
+ price: string | number;
2645
+ stock: string | number;
2646
+ suspension: boolean;
2647
+ wip_hash: string;
2648
+ }[];
2649
+ } | {
2650
+ op: "remove";
2651
+ sales_name: string[];
2652
+ } | {
2653
+ op: "clear";
2654
+ } | undefined;
2655
+ repositories?: {
2656
+ op: "set" | "add";
2657
+ objects: string[];
2658
+ } | {
2659
+ op: "remove";
2660
+ objects: string[];
2661
+ } | {
2662
+ op: "clear";
2663
+ } | undefined;
2664
+ customer_required?: string[] | undefined;
2665
+ arbitrations?: {
2666
+ op: "set" | "add";
2667
+ objects: string[];
2668
+ } | {
2669
+ op: "remove";
2670
+ objects: string[];
2671
+ } | {
2672
+ op: "clear";
2673
+ } | undefined;
2674
+ order_allocators?: {
2675
+ description: string;
2676
+ threshold: string | number;
2677
+ allocators: {
2678
+ guard: string;
2679
+ sharing: {
2680
+ who: {
2681
+ GuardIdentifier: number;
2682
+ } | {
2683
+ Entity: {
2684
+ name_or_address?: string | undefined;
2685
+ local_mark_first?: boolean | undefined;
2686
+ };
2687
+ } | {
2688
+ Signer: "signer";
2689
+ };
2690
+ sharing: string | number;
2691
+ mode: "Amount" | "Rate" | "Surplus";
2692
+ }[];
2693
+ max?: string | number | null | undefined;
2694
+ fix?: string | number | undefined;
2695
+ }[];
2696
+ } | null | undefined;
2697
+ pause?: boolean | undefined;
2698
+ publish?: boolean | undefined;
2699
+ order_new?: {
2700
+ buy: {
2701
+ items: {
2702
+ name: string;
2703
+ stock: string | number;
2704
+ wip_hash: string;
2705
+ }[];
2706
+ total_pay: {
2707
+ balance: string | number;
2708
+ } | {
2709
+ coin: string;
2710
+ };
2711
+ discount?: string | undefined;
2712
+ payment_remark?: string | undefined;
2713
+ payment_index?: number | undefined;
2714
+ };
2715
+ order_required_info: string;
2716
+ transfer?: {
2717
+ name_or_address?: string | undefined;
2718
+ local_mark_first?: boolean | undefined;
2719
+ } | undefined;
2720
+ agents?: {
2721
+ entities: {
2722
+ name_or_address?: string | undefined;
2723
+ local_mark_first?: boolean | undefined;
2724
+ }[];
2725
+ check_all_founded?: boolean | undefined;
2726
+ } | undefined;
2727
+ namedNewOrder?: {
2728
+ name?: string | undefined;
2729
+ replaceExistName?: boolean | undefined;
2730
+ tags?: string[] | undefined;
2731
+ onChain?: boolean | undefined;
2732
+ } | undefined;
2733
+ namedNewAllocation?: {
2734
+ name?: string | undefined;
2735
+ replaceExistName?: boolean | undefined;
2736
+ tags?: string[] | undefined;
2737
+ onChain?: boolean | undefined;
2738
+ } | undefined;
2739
+ namedNewProgress?: {
2740
+ name?: string | undefined;
2741
+ replaceExistName?: boolean | undefined;
2742
+ tags?: string[] | undefined;
2743
+ onChain?: boolean | undefined;
2744
+ } | undefined;
2745
+ } | undefined;
2746
+ discount_destroy?: {
2747
+ name?: string | undefined;
2748
+ replaceExistName?: boolean | undefined;
2749
+ tags?: string[] | undefined;
2750
+ onChain?: boolean | undefined;
2751
+ }[] | undefined;
2752
+ compensation_fund_add?: {
2753
+ balance: string | number;
2754
+ } | {
2755
+ coin: string;
2756
+ } | undefined;
2757
+ compensation_locked_time_add?: number | undefined;
2758
+ compensation_fund_receive?: {
2759
+ received: {
2760
+ id: string;
2761
+ balance: string | number;
2762
+ payment: string;
2763
+ }[];
2764
+ balance: string | number;
2765
+ token_type: string;
2766
+ } | "recently" | undefined;
2767
+ }, {
2768
+ object: string | {
2769
+ name?: string | undefined;
2770
+ replaceExistName?: boolean | undefined;
2771
+ tags?: string[] | undefined;
2772
+ onChain?: boolean | undefined;
2773
+ type_parameter?: string | undefined;
2774
+ permission?: string | {
2775
+ name?: string | undefined;
2776
+ description?: string | undefined;
2777
+ replaceExistName?: boolean | undefined;
2778
+ tags?: string[] | undefined;
2779
+ onChain?: boolean | undefined;
2780
+ } | undefined;
2781
+ };
2782
+ description?: string | undefined;
2783
+ location?: string | undefined;
2784
+ owner_receive?: {
2785
+ received: {
2786
+ id: string;
2787
+ balance: string | number;
2788
+ payment: string;
2789
+ }[];
2790
+ balance: string | number;
2791
+ token_type: string;
2792
+ } | "recently" | {
2793
+ type: string;
2794
+ id: string;
2795
+ }[] | undefined;
2796
+ rewards?: {
2797
+ op: "set" | "add";
2798
+ objects: string[];
2799
+ } | {
2800
+ op: "remove";
2801
+ objects: string[];
2802
+ } | {
2803
+ op: "clear";
2804
+ } | undefined;
2805
+ um?: {
2806
+ name?: string | undefined;
2807
+ replaceExistName?: boolean | undefined;
2808
+ tags?: string[] | undefined;
2809
+ onChain?: boolean | undefined;
2810
+ } | null | undefined;
2811
+ discount?: {
2812
+ name: string;
2813
+ recipient: {
2814
+ entities: {
2815
+ name_or_address?: string | undefined;
2816
+ local_mark_first?: boolean | undefined;
2817
+ }[];
2818
+ check_all_founded?: boolean | undefined;
2819
+ };
2820
+ discount_type: import("wowok").DiscountType;
2821
+ discount_value: string | number;
2822
+ count?: number | undefined;
2823
+ benchmark?: string | number | undefined;
2824
+ transferable?: boolean | undefined;
2825
+ time_ms_start?: number | undefined;
2826
+ time_ms_end?: number | undefined;
2827
+ } | undefined;
2828
+ machine?: {
2829
+ name?: string | undefined;
2830
+ replaceExistName?: boolean | undefined;
2831
+ tags?: string[] | undefined;
2832
+ onChain?: boolean | undefined;
2833
+ } | null | undefined;
2834
+ sales?: {
2835
+ op: "add";
2836
+ sales: {
2837
+ name: string;
2838
+ wip: string;
2839
+ price: string | number;
2840
+ stock: string | number;
2841
+ suspension: boolean;
2842
+ wip_hash: string;
2843
+ }[];
2844
+ } | {
2845
+ op: "set";
2846
+ sales: {
2847
+ name: string;
2848
+ wip: string;
2849
+ price: string | number;
2850
+ stock: string | number;
2851
+ suspension: boolean;
2852
+ wip_hash: string;
2853
+ }[];
2854
+ } | {
2855
+ op: "remove";
2856
+ sales_name: string[];
2857
+ } | {
2858
+ op: "clear";
2859
+ } | undefined;
2860
+ repositories?: {
2861
+ op: "set" | "add";
2862
+ objects: string[];
2863
+ } | {
2864
+ op: "remove";
2865
+ objects: string[];
2866
+ } | {
2867
+ op: "clear";
2868
+ } | undefined;
2869
+ customer_required?: string[] | undefined;
2870
+ arbitrations?: {
2871
+ op: "set" | "add";
2872
+ objects: string[];
2873
+ } | {
2874
+ op: "remove";
2875
+ objects: string[];
2876
+ } | {
2877
+ op: "clear";
2878
+ } | undefined;
2879
+ order_allocators?: {
2880
+ description: string;
2881
+ threshold: string | number;
2882
+ allocators: {
2883
+ guard: string;
2884
+ sharing: {
2885
+ who: {
2886
+ GuardIdentifier: number;
2887
+ } | {
2888
+ Entity: {
2889
+ name_or_address?: string | undefined;
2890
+ local_mark_first?: boolean | undefined;
2891
+ };
2892
+ } | {
2893
+ Signer: "signer";
2894
+ };
2895
+ sharing: string | number;
2896
+ mode: "Amount" | "Rate" | "Surplus";
2897
+ }[];
2898
+ max?: string | number | null | undefined;
2899
+ fix?: string | number | undefined;
2900
+ }[];
2901
+ } | null | undefined;
2902
+ pause?: boolean | undefined;
2903
+ publish?: boolean | undefined;
2904
+ order_new?: {
2905
+ buy: {
2906
+ items: {
2907
+ name: string;
2908
+ stock: string | number;
2909
+ wip_hash: string;
2910
+ }[];
2911
+ total_pay: {
2912
+ balance: string | number;
2913
+ } | {
2914
+ coin: string;
2915
+ };
2916
+ discount?: string | undefined;
2917
+ payment_remark?: string | undefined;
2918
+ payment_index?: number | undefined;
2919
+ };
2920
+ order_required_info: string;
2921
+ transfer?: {
2922
+ name_or_address?: string | undefined;
2923
+ local_mark_first?: boolean | undefined;
2924
+ } | undefined;
2925
+ agents?: {
2926
+ entities: {
2927
+ name_or_address?: string | undefined;
2928
+ local_mark_first?: boolean | undefined;
2929
+ }[];
2930
+ check_all_founded?: boolean | undefined;
2931
+ } | undefined;
2932
+ namedNewOrder?: {
2933
+ name?: string | undefined;
2934
+ replaceExistName?: boolean | undefined;
2935
+ tags?: string[] | undefined;
2936
+ onChain?: boolean | undefined;
2937
+ } | undefined;
2938
+ namedNewAllocation?: {
2939
+ name?: string | undefined;
2940
+ replaceExistName?: boolean | undefined;
2941
+ tags?: string[] | undefined;
2942
+ onChain?: boolean | undefined;
2943
+ } | undefined;
2944
+ namedNewProgress?: {
2945
+ name?: string | undefined;
2946
+ replaceExistName?: boolean | undefined;
2947
+ tags?: string[] | undefined;
2948
+ onChain?: boolean | undefined;
2949
+ } | undefined;
2950
+ } | undefined;
2951
+ discount_destroy?: {
2952
+ name?: string | undefined;
2953
+ replaceExistName?: boolean | undefined;
2954
+ tags?: string[] | undefined;
2955
+ onChain?: boolean | undefined;
2956
+ }[] | undefined;
2957
+ compensation_fund_add?: {
2958
+ balance: string | number;
2959
+ } | {
2960
+ coin: string;
2961
+ } | undefined;
2962
+ compensation_locked_time_add?: number | undefined;
2963
+ compensation_fund_receive?: {
2964
+ received: {
2965
+ id: string;
2966
+ balance: string | number;
2967
+ payment: string;
2968
+ }[];
2969
+ balance: string | number;
2970
+ token_type: string;
2971
+ } | "recently" | undefined;
2972
+ }>;
2973
+ env: z.ZodOptional<z.ZodObject<{
2974
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
2975
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2976
+ no_cache: z.ZodOptional<z.ZodBoolean>;
2977
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
2978
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2979
+ }, "strict", z.ZodTypeAny, {
2980
+ account: string;
2981
+ no_cache?: boolean | undefined;
2982
+ network?: import("wowok").ENTRYPOINT | undefined;
2983
+ permission_guard?: string[] | undefined;
2984
+ referrer?: string | undefined;
2985
+ }, {
2986
+ no_cache?: boolean | undefined;
2987
+ network?: import("wowok").ENTRYPOINT | undefined;
2988
+ account?: string | undefined;
2989
+ permission_guard?: string[] | undefined;
2990
+ referrer?: string | undefined;
2991
+ }>>;
2992
+ submission: z.ZodOptional<z.ZodObject<{
2993
+ type: z.ZodLiteral<"submission">;
2994
+ guard: z.ZodArray<z.ZodObject<{
2995
+ object: z.ZodEffects<z.ZodString, string, string>;
2996
+ impack: z.ZodBoolean;
2997
+ }, "strict", z.ZodTypeAny, {
2998
+ object: string;
2999
+ impack: boolean;
3000
+ }, {
3001
+ object: string;
3002
+ impack: boolean;
3003
+ }>, "many">;
3004
+ submission: z.ZodArray<z.ZodObject<{
3005
+ guard: z.ZodEffects<z.ZodString, string, string>;
3006
+ submission: z.ZodArray<z.ZodObject<{
3007
+ identifier: z.ZodNumber;
3008
+ b_submission: z.ZodBoolean;
3009
+ 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">]>;
3010
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
3011
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3012
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
3013
+ }, "strict", z.ZodTypeAny, {
3014
+ name_or_address?: string | undefined;
3015
+ local_mark_first?: boolean | undefined;
3016
+ }, {
3017
+ name_or_address?: string | undefined;
3018
+ local_mark_first?: boolean | undefined;
3019
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
3020
+ entities: z.ZodArray<z.ZodObject<{
3021
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3022
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
3023
+ }, "strict", z.ZodTypeAny, {
3024
+ name_or_address?: string | undefined;
3025
+ local_mark_first?: boolean | undefined;
3026
+ }, {
3027
+ name_or_address?: string | undefined;
3028
+ local_mark_first?: boolean | undefined;
3029
+ }>, "many">;
3030
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
3031
+ }, "strict", z.ZodTypeAny, {
3032
+ entities: {
3033
+ name_or_address?: string | undefined;
3034
+ local_mark_first?: boolean | undefined;
3035
+ }[];
3036
+ check_all_founded?: boolean | undefined;
3037
+ }, {
3038
+ entities: {
3039
+ name_or_address?: string | undefined;
3040
+ local_mark_first?: boolean | undefined;
3041
+ }[];
3042
+ check_all_founded?: boolean | undefined;
3043
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
3044
+ name: z.ZodDefault<z.ZodString>;
3045
+ } & {
3046
+ 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]>>;
3047
+ }, "strict", z.ZodTypeAny, {
3048
+ identifier: number;
3049
+ b_submission: boolean;
3050
+ 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";
3051
+ name: string;
3052
+ value?: string | number | boolean | {
3053
+ name_or_address?: string | undefined;
3054
+ local_mark_first?: boolean | undefined;
3055
+ } | {
3056
+ entities: {
3057
+ name_or_address?: string | undefined;
3058
+ local_mark_first?: boolean | undefined;
3059
+ }[];
3060
+ check_all_founded?: boolean | undefined;
3061
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3062
+ object_type?: import("wowok").ObjectType | undefined;
3063
+ }, {
3064
+ identifier: number;
3065
+ b_submission: boolean;
3066
+ 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";
3067
+ value?: string | number | boolean | {
3068
+ name_or_address?: string | undefined;
3069
+ local_mark_first?: boolean | undefined;
3070
+ } | {
3071
+ entities: {
3072
+ name_or_address?: string | undefined;
3073
+ local_mark_first?: boolean | undefined;
3074
+ }[];
3075
+ check_all_founded?: boolean | undefined;
3076
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3077
+ name?: string | undefined;
3078
+ object_type?: import("wowok").ObjectType | undefined;
3079
+ }>, "many">;
3080
+ }, "strict", z.ZodTypeAny, {
3081
+ guard: string;
3082
+ submission: {
3083
+ identifier: number;
3084
+ b_submission: boolean;
3085
+ 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";
3086
+ name: string;
3087
+ value?: string | number | boolean | {
3088
+ name_or_address?: string | undefined;
3089
+ local_mark_first?: boolean | undefined;
3090
+ } | {
3091
+ entities: {
3092
+ name_or_address?: string | undefined;
3093
+ local_mark_first?: boolean | undefined;
3094
+ }[];
3095
+ check_all_founded?: boolean | undefined;
3096
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3097
+ object_type?: import("wowok").ObjectType | undefined;
3098
+ }[];
3099
+ }, {
3100
+ guard: string;
3101
+ submission: {
3102
+ identifier: number;
3103
+ b_submission: boolean;
3104
+ 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";
3105
+ value?: string | number | boolean | {
3106
+ name_or_address?: string | undefined;
3107
+ local_mark_first?: boolean | undefined;
3108
+ } | {
3109
+ entities: {
3110
+ name_or_address?: string | undefined;
3111
+ local_mark_first?: boolean | undefined;
3112
+ }[];
3113
+ check_all_founded?: boolean | undefined;
3114
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3115
+ name?: string | undefined;
3116
+ object_type?: import("wowok").ObjectType | undefined;
3117
+ }[];
3118
+ }>, "many">;
3119
+ }, "strict", z.ZodTypeAny, {
3120
+ type: "submission";
3121
+ guard: {
3122
+ object: string;
3123
+ impack: boolean;
3124
+ }[];
3125
+ submission: {
3126
+ guard: string;
3127
+ submission: {
3128
+ identifier: number;
3129
+ b_submission: boolean;
3130
+ 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";
3131
+ name: string;
3132
+ value?: string | number | boolean | {
3133
+ name_or_address?: string | undefined;
3134
+ local_mark_first?: boolean | undefined;
3135
+ } | {
3136
+ entities: {
3137
+ name_or_address?: string | undefined;
3138
+ local_mark_first?: boolean | undefined;
3139
+ }[];
3140
+ check_all_founded?: boolean | undefined;
3141
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3142
+ object_type?: import("wowok").ObjectType | undefined;
3143
+ }[];
3144
+ }[];
3145
+ }, {
3146
+ type: "submission";
3147
+ guard: {
3148
+ object: string;
3149
+ impack: boolean;
3150
+ }[];
3151
+ submission: {
3152
+ guard: string;
3153
+ submission: {
3154
+ identifier: number;
3155
+ b_submission: boolean;
3156
+ 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";
3157
+ value?: string | number | boolean | {
3158
+ name_or_address?: string | undefined;
3159
+ local_mark_first?: boolean | undefined;
3160
+ } | {
3161
+ entities: {
3162
+ name_or_address?: string | undefined;
3163
+ local_mark_first?: boolean | undefined;
3164
+ }[];
3165
+ check_all_founded?: boolean | undefined;
3166
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3167
+ name?: string | undefined;
3168
+ object_type?: import("wowok").ObjectType | undefined;
3169
+ }[];
3170
+ }[];
3171
+ }>>;
3172
+ }, "strict", z.ZodTypeAny, {
3173
+ data: {
3174
+ object: string | {
3175
+ type_parameter: string;
3176
+ name?: string | undefined;
3177
+ replaceExistName?: boolean | undefined;
3178
+ tags?: string[] | undefined;
3179
+ onChain?: boolean | undefined;
3180
+ permission?: string | {
3181
+ name?: string | undefined;
3182
+ description?: string | undefined;
3183
+ replaceExistName?: boolean | undefined;
3184
+ tags?: string[] | undefined;
3185
+ onChain?: boolean | undefined;
3186
+ } | undefined;
3187
+ };
3188
+ description?: string | undefined;
3189
+ location?: string | undefined;
3190
+ owner_receive?: {
3191
+ received: {
3192
+ id: string;
3193
+ balance: string | number;
3194
+ payment: string;
3195
+ }[];
3196
+ balance: string | number;
3197
+ token_type: string;
3198
+ } | "recently" | {
3199
+ type: string;
3200
+ id: string;
3201
+ }[] | undefined;
3202
+ rewards?: {
3203
+ op: "set" | "add";
3204
+ objects: string[];
3205
+ } | {
3206
+ op: "remove";
3207
+ objects: string[];
3208
+ } | {
3209
+ op: "clear";
3210
+ } | undefined;
3211
+ um?: {
3212
+ name?: string | undefined;
3213
+ replaceExistName?: boolean | undefined;
3214
+ tags?: string[] | undefined;
3215
+ onChain?: boolean | undefined;
3216
+ } | null | undefined;
3217
+ discount?: {
3218
+ name: string;
3219
+ recipient: {
3220
+ entities: {
3221
+ name_or_address?: string | undefined;
3222
+ local_mark_first?: boolean | undefined;
3223
+ }[];
3224
+ check_all_founded?: boolean | undefined;
3225
+ };
3226
+ discount_type: import("wowok").DiscountType;
3227
+ discount_value: string | number;
3228
+ count?: number | undefined;
3229
+ benchmark?: string | number | undefined;
3230
+ transferable?: boolean | undefined;
3231
+ time_ms_start?: number | undefined;
3232
+ time_ms_end?: number | undefined;
3233
+ } | undefined;
3234
+ machine?: {
3235
+ name?: string | undefined;
3236
+ replaceExistName?: boolean | undefined;
3237
+ tags?: string[] | undefined;
3238
+ onChain?: boolean | undefined;
3239
+ } | null | undefined;
3240
+ sales?: {
3241
+ op: "add";
3242
+ sales: {
3243
+ name: string;
3244
+ wip: string;
3245
+ price: string | number;
3246
+ stock: string | number;
3247
+ suspension: boolean;
3248
+ wip_hash: string;
3249
+ }[];
3250
+ } | {
3251
+ op: "set";
3252
+ sales: {
3253
+ name: string;
3254
+ wip: string;
3255
+ price: string | number;
3256
+ stock: string | number;
3257
+ suspension: boolean;
3258
+ wip_hash: string;
3259
+ }[];
3260
+ } | {
3261
+ op: "remove";
3262
+ sales_name: string[];
3263
+ } | {
3264
+ op: "clear";
3265
+ } | undefined;
3266
+ repositories?: {
3267
+ op: "set" | "add";
3268
+ objects: string[];
3269
+ } | {
3270
+ op: "remove";
3271
+ objects: string[];
3272
+ } | {
3273
+ op: "clear";
3274
+ } | undefined;
3275
+ customer_required?: string[] | undefined;
3276
+ arbitrations?: {
3277
+ op: "set" | "add";
3278
+ objects: string[];
3279
+ } | {
3280
+ op: "remove";
3281
+ objects: string[];
3282
+ } | {
3283
+ op: "clear";
3284
+ } | undefined;
3285
+ order_allocators?: {
3286
+ description: string;
3287
+ threshold: string | number;
3288
+ allocators: {
3289
+ guard: string;
3290
+ sharing: {
3291
+ who: {
3292
+ GuardIdentifier: number;
3293
+ } | {
3294
+ Entity: {
3295
+ name_or_address?: string | undefined;
3296
+ local_mark_first?: boolean | undefined;
3297
+ };
3298
+ } | {
3299
+ Signer: "signer";
3300
+ };
3301
+ sharing: string | number;
3302
+ mode: "Amount" | "Rate" | "Surplus";
3303
+ }[];
3304
+ max?: string | number | null | undefined;
3305
+ fix?: string | number | undefined;
3306
+ }[];
3307
+ } | null | undefined;
3308
+ pause?: boolean | undefined;
3309
+ publish?: boolean | undefined;
3310
+ order_new?: {
3311
+ buy: {
3312
+ items: {
3313
+ name: string;
3314
+ stock: string | number;
3315
+ wip_hash: string;
3316
+ }[];
3317
+ total_pay: {
3318
+ balance: string | number;
3319
+ } | {
3320
+ coin: string;
3321
+ };
3322
+ discount?: string | undefined;
3323
+ payment_remark?: string | undefined;
3324
+ payment_index?: number | undefined;
3325
+ };
3326
+ order_required_info: string;
3327
+ transfer?: {
3328
+ name_or_address?: string | undefined;
3329
+ local_mark_first?: boolean | undefined;
3330
+ } | undefined;
3331
+ agents?: {
3332
+ entities: {
3333
+ name_or_address?: string | undefined;
3334
+ local_mark_first?: boolean | undefined;
3335
+ }[];
3336
+ check_all_founded?: boolean | undefined;
3337
+ } | undefined;
3338
+ namedNewOrder?: {
3339
+ name?: string | undefined;
3340
+ replaceExistName?: boolean | undefined;
3341
+ tags?: string[] | undefined;
3342
+ onChain?: boolean | undefined;
3343
+ } | undefined;
3344
+ namedNewAllocation?: {
3345
+ name?: string | undefined;
3346
+ replaceExistName?: boolean | undefined;
3347
+ tags?: string[] | undefined;
3348
+ onChain?: boolean | undefined;
3349
+ } | undefined;
3350
+ namedNewProgress?: {
3351
+ name?: string | undefined;
3352
+ replaceExistName?: boolean | undefined;
3353
+ tags?: string[] | undefined;
3354
+ onChain?: boolean | undefined;
3355
+ } | undefined;
3356
+ } | undefined;
3357
+ discount_destroy?: {
3358
+ name?: string | undefined;
3359
+ replaceExistName?: boolean | undefined;
3360
+ tags?: string[] | undefined;
3361
+ onChain?: boolean | undefined;
3362
+ }[] | undefined;
3363
+ compensation_fund_add?: {
3364
+ balance: string | number;
3365
+ } | {
3366
+ coin: string;
3367
+ } | undefined;
3368
+ compensation_locked_time_add?: number | undefined;
3369
+ compensation_fund_receive?: {
3370
+ received: {
3371
+ id: string;
3372
+ balance: string | number;
3373
+ payment: string;
3374
+ }[];
3375
+ balance: string | number;
3376
+ token_type: string;
3377
+ } | "recently" | undefined;
3378
+ };
3379
+ submission?: {
3380
+ type: "submission";
3381
+ guard: {
3382
+ object: string;
3383
+ impack: boolean;
3384
+ }[];
3385
+ submission: {
3386
+ guard: string;
3387
+ submission: {
3388
+ identifier: number;
3389
+ b_submission: boolean;
3390
+ 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";
3391
+ name: string;
3392
+ value?: string | number | boolean | {
3393
+ name_or_address?: string | undefined;
3394
+ local_mark_first?: boolean | undefined;
3395
+ } | {
3396
+ entities: {
3397
+ name_or_address?: string | undefined;
3398
+ local_mark_first?: boolean | undefined;
3399
+ }[];
3400
+ check_all_founded?: boolean | undefined;
3401
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3402
+ object_type?: import("wowok").ObjectType | undefined;
3403
+ }[];
3404
+ }[];
3405
+ } | undefined;
3406
+ env?: {
3407
+ account: string;
3408
+ no_cache?: boolean | undefined;
3409
+ network?: import("wowok").ENTRYPOINT | undefined;
3410
+ permission_guard?: string[] | undefined;
3411
+ referrer?: string | undefined;
3412
+ } | undefined;
3413
+ }, {
3414
+ data: {
3415
+ object: string | {
3416
+ name?: string | undefined;
3417
+ replaceExistName?: boolean | undefined;
3418
+ tags?: string[] | undefined;
3419
+ onChain?: boolean | undefined;
3420
+ type_parameter?: string | undefined;
3421
+ permission?: string | {
3422
+ name?: string | undefined;
3423
+ description?: string | undefined;
3424
+ replaceExistName?: boolean | undefined;
3425
+ tags?: string[] | undefined;
3426
+ onChain?: boolean | undefined;
3427
+ } | undefined;
3428
+ };
3429
+ description?: string | undefined;
3430
+ location?: string | undefined;
3431
+ owner_receive?: {
3432
+ received: {
3433
+ id: string;
3434
+ balance: string | number;
3435
+ payment: string;
3436
+ }[];
3437
+ balance: string | number;
3438
+ token_type: string;
3439
+ } | "recently" | {
3440
+ type: string;
3441
+ id: string;
3442
+ }[] | undefined;
3443
+ rewards?: {
3444
+ op: "set" | "add";
3445
+ objects: string[];
3446
+ } | {
3447
+ op: "remove";
3448
+ objects: string[];
3449
+ } | {
3450
+ op: "clear";
3451
+ } | undefined;
3452
+ um?: {
3453
+ name?: string | undefined;
3454
+ replaceExistName?: boolean | undefined;
3455
+ tags?: string[] | undefined;
3456
+ onChain?: boolean | undefined;
3457
+ } | null | undefined;
3458
+ discount?: {
3459
+ name: string;
3460
+ recipient: {
3461
+ entities: {
3462
+ name_or_address?: string | undefined;
3463
+ local_mark_first?: boolean | undefined;
3464
+ }[];
3465
+ check_all_founded?: boolean | undefined;
3466
+ };
3467
+ discount_type: import("wowok").DiscountType;
3468
+ discount_value: string | number;
3469
+ count?: number | undefined;
3470
+ benchmark?: string | number | undefined;
3471
+ transferable?: boolean | undefined;
3472
+ time_ms_start?: number | undefined;
3473
+ time_ms_end?: number | undefined;
3474
+ } | undefined;
3475
+ machine?: {
3476
+ name?: string | undefined;
3477
+ replaceExistName?: boolean | undefined;
3478
+ tags?: string[] | undefined;
3479
+ onChain?: boolean | undefined;
3480
+ } | null | undefined;
3481
+ sales?: {
3482
+ op: "add";
3483
+ sales: {
3484
+ name: string;
3485
+ wip: string;
3486
+ price: string | number;
3487
+ stock: string | number;
3488
+ suspension: boolean;
3489
+ wip_hash: string;
3490
+ }[];
3491
+ } | {
3492
+ op: "set";
3493
+ sales: {
3494
+ name: string;
3495
+ wip: string;
3496
+ price: string | number;
3497
+ stock: string | number;
3498
+ suspension: boolean;
3499
+ wip_hash: string;
3500
+ }[];
3501
+ } | {
3502
+ op: "remove";
3503
+ sales_name: string[];
3504
+ } | {
3505
+ op: "clear";
3506
+ } | undefined;
3507
+ repositories?: {
3508
+ op: "set" | "add";
3509
+ objects: string[];
3510
+ } | {
3511
+ op: "remove";
3512
+ objects: string[];
3513
+ } | {
3514
+ op: "clear";
3515
+ } | undefined;
3516
+ customer_required?: string[] | undefined;
3517
+ arbitrations?: {
3518
+ op: "set" | "add";
3519
+ objects: string[];
3520
+ } | {
3521
+ op: "remove";
3522
+ objects: string[];
3523
+ } | {
3524
+ op: "clear";
3525
+ } | undefined;
3526
+ order_allocators?: {
3527
+ description: string;
3528
+ threshold: string | number;
3529
+ allocators: {
3530
+ guard: string;
3531
+ sharing: {
3532
+ who: {
3533
+ GuardIdentifier: number;
3534
+ } | {
3535
+ Entity: {
3536
+ name_or_address?: string | undefined;
3537
+ local_mark_first?: boolean | undefined;
3538
+ };
3539
+ } | {
3540
+ Signer: "signer";
3541
+ };
3542
+ sharing: string | number;
3543
+ mode: "Amount" | "Rate" | "Surplus";
3544
+ }[];
3545
+ max?: string | number | null | undefined;
3546
+ fix?: string | number | undefined;
3547
+ }[];
3548
+ } | null | undefined;
3549
+ pause?: boolean | undefined;
3550
+ publish?: boolean | undefined;
3551
+ order_new?: {
3552
+ buy: {
3553
+ items: {
3554
+ name: string;
3555
+ stock: string | number;
3556
+ wip_hash: string;
3557
+ }[];
3558
+ total_pay: {
3559
+ balance: string | number;
3560
+ } | {
3561
+ coin: string;
3562
+ };
3563
+ discount?: string | undefined;
3564
+ payment_remark?: string | undefined;
3565
+ payment_index?: number | undefined;
3566
+ };
3567
+ order_required_info: string;
3568
+ transfer?: {
3569
+ name_or_address?: string | undefined;
3570
+ local_mark_first?: boolean | undefined;
3571
+ } | undefined;
3572
+ agents?: {
3573
+ entities: {
3574
+ name_or_address?: string | undefined;
3575
+ local_mark_first?: boolean | undefined;
3576
+ }[];
3577
+ check_all_founded?: boolean | undefined;
3578
+ } | undefined;
3579
+ namedNewOrder?: {
3580
+ name?: string | undefined;
3581
+ replaceExistName?: boolean | undefined;
3582
+ tags?: string[] | undefined;
3583
+ onChain?: boolean | undefined;
3584
+ } | undefined;
3585
+ namedNewAllocation?: {
3586
+ name?: string | undefined;
3587
+ replaceExistName?: boolean | undefined;
3588
+ tags?: string[] | undefined;
3589
+ onChain?: boolean | undefined;
3590
+ } | undefined;
3591
+ namedNewProgress?: {
3592
+ name?: string | undefined;
3593
+ replaceExistName?: boolean | undefined;
3594
+ tags?: string[] | undefined;
3595
+ onChain?: boolean | undefined;
3596
+ } | undefined;
3597
+ } | undefined;
3598
+ discount_destroy?: {
3599
+ name?: string | undefined;
3600
+ replaceExistName?: boolean | undefined;
3601
+ tags?: string[] | undefined;
3602
+ onChain?: boolean | undefined;
3603
+ }[] | undefined;
3604
+ compensation_fund_add?: {
3605
+ balance: string | number;
3606
+ } | {
3607
+ coin: string;
3608
+ } | undefined;
3609
+ compensation_locked_time_add?: number | undefined;
3610
+ compensation_fund_receive?: {
3611
+ received: {
3612
+ id: string;
3613
+ balance: string | number;
3614
+ payment: string;
3615
+ }[];
3616
+ balance: string | number;
3617
+ token_type: string;
3618
+ } | "recently" | undefined;
3619
+ };
3620
+ submission?: {
3621
+ type: "submission";
3622
+ guard: {
3623
+ object: string;
3624
+ impack: boolean;
3625
+ }[];
3626
+ submission: {
3627
+ guard: string;
3628
+ submission: {
3629
+ identifier: number;
3630
+ b_submission: boolean;
3631
+ 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";
3632
+ value?: string | number | boolean | {
3633
+ name_or_address?: string | undefined;
3634
+ local_mark_first?: boolean | undefined;
3635
+ } | {
3636
+ entities: {
3637
+ name_or_address?: string | undefined;
3638
+ local_mark_first?: boolean | undefined;
3639
+ }[];
3640
+ check_all_founded?: boolean | undefined;
3641
+ } | boolean[] | string[] | number[] | number[][] | undefined;
3642
+ name?: string | undefined;
3643
+ object_type?: import("wowok").ObjectType | undefined;
3644
+ }[];
3645
+ }[];
3646
+ } | undefined;
3647
+ env?: {
3648
+ no_cache?: boolean | undefined;
3649
+ network?: import("wowok").ENTRYPOINT | undefined;
3650
+ account?: string | undefined;
3651
+ permission_guard?: string[] | undefined;
3652
+ referrer?: string | undefined;
3653
+ } | undefined;
3654
+ }>;