@wowok/agent-mcp 2.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/README.md +56 -0
  2. package/dist/index.d.ts +15800 -0
  3. package/dist/index.js +1479 -0
  4. package/dist/schema/call/allocation.d.ts +1430 -0
  5. package/dist/schema/call/allocation.js +24 -0
  6. package/dist/schema/call/arbitration.d.ts +1974 -0
  7. package/dist/schema/call/arbitration.js +92 -0
  8. package/dist/schema/call/base.d.ts +7325 -0
  9. package/dist/schema/call/base.js +138 -0
  10. package/dist/schema/call/contact.d.ts +970 -0
  11. package/dist/schema/call/contact.js +37 -0
  12. package/dist/schema/call/demand.d.ts +1265 -0
  13. package/dist/schema/call/demand.js +47 -0
  14. package/dist/schema/call/guard.d.ts +951 -0
  15. package/dist/schema/call/guard.js +58 -0
  16. package/dist/schema/call/handler.d.ts +38 -0
  17. package/dist/schema/call/handler.js +171 -0
  18. package/dist/schema/call/index.d.ts +18 -0
  19. package/dist/schema/call/index.js +18 -0
  20. package/dist/schema/call/machine.d.ts +3974 -0
  21. package/dist/schema/call/machine.js +152 -0
  22. package/dist/schema/call/order.d.ts +974 -0
  23. package/dist/schema/call/order.js +34 -0
  24. package/dist/schema/call/payment.d.ts +404 -0
  25. package/dist/schema/call/payment.js +17 -0
  26. package/dist/schema/call/permission.d.ts +3017 -0
  27. package/dist/schema/call/permission.js +105 -0
  28. package/dist/schema/call/personal.d.ts +1472 -0
  29. package/dist/schema/call/personal.js +68 -0
  30. package/dist/schema/call/progress.d.ts +725 -0
  31. package/dist/schema/call/progress.js +26 -0
  32. package/dist/schema/call/proof.d.ts +320 -0
  33. package/dist/schema/call/proof.js +27 -0
  34. package/dist/schema/call/repository.d.ts +2358 -0
  35. package/dist/schema/call/repository.js +76 -0
  36. package/dist/schema/call/reward.d.ts +1232 -0
  37. package/dist/schema/call/reward.js +30 -0
  38. package/dist/schema/call/service.d.ts +3494 -0
  39. package/dist/schema/call/service.js +82 -0
  40. package/dist/schema/call/treasury.d.ts +2345 -0
  41. package/dist/schema/call/treasury.js +71 -0
  42. package/dist/schema/common/index.d.ts +843 -0
  43. package/dist/schema/common/index.js +347 -0
  44. package/dist/schema/index.d.ts +7 -0
  45. package/dist/schema/index.js +7 -0
  46. package/dist/schema/local/index.d.ts +17522 -0
  47. package/dist/schema/local/index.js +855 -0
  48. package/dist/schema/local/wip.d.ts +784 -0
  49. package/dist/schema/local/wip.js +187 -0
  50. package/dist/schema/messenger/index.d.ts +4655 -0
  51. package/dist/schema/messenger/index.js +446 -0
  52. package/dist/schema/query/index.d.ts +73445 -0
  53. package/dist/schema/query/index.js +1324 -0
  54. package/dist/schema/utils/guard-parser.d.ts +20 -0
  55. package/dist/schema/utils/guard-parser.js +401 -0
  56. package/dist/schema/utils/guard-query-utils.d.ts +5 -0
  57. package/dist/schema/utils/guard-query-utils.js +22 -0
  58. package/dist/schema/utils/node-parser.d.ts +45 -0
  59. package/dist/schema/utils/node-parser.js +353 -0
  60. package/dist/schema/utils/permission-index-utils.d.ts +2 -0
  61. package/dist/schema/utils/permission-index-utils.js +7 -0
  62. package/package.json +48 -0
@@ -0,0 +1,3494 @@
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.ZodOptional<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
+ transfer?: {
302
+ name_or_address?: string | undefined;
303
+ local_mark_first?: boolean | undefined;
304
+ } | undefined;
305
+ agents?: {
306
+ entities: {
307
+ name_or_address?: string | undefined;
308
+ local_mark_first?: boolean | undefined;
309
+ }[];
310
+ check_all_founded?: boolean | undefined;
311
+ } | undefined;
312
+ order_required_info?: string | 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
+ transfer?: {
348
+ name_or_address?: string | undefined;
349
+ local_mark_first?: boolean | undefined;
350
+ } | undefined;
351
+ agents?: {
352
+ entities: {
353
+ name_or_address?: string | undefined;
354
+ local_mark_first?: boolean | undefined;
355
+ }[];
356
+ check_all_founded?: boolean | undefined;
357
+ } | undefined;
358
+ order_required_info?: string | 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.ZodOptional<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
+ transfer?: {
699
+ name_or_address?: string | undefined;
700
+ local_mark_first?: boolean | undefined;
701
+ } | undefined;
702
+ agents?: {
703
+ entities: {
704
+ name_or_address?: string | undefined;
705
+ local_mark_first?: boolean | undefined;
706
+ }[];
707
+ check_all_founded?: boolean | undefined;
708
+ } | undefined;
709
+ order_required_info?: string | 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
+ transfer?: {
745
+ name_or_address?: string | undefined;
746
+ local_mark_first?: boolean | undefined;
747
+ } | undefined;
748
+ agents?: {
749
+ entities: {
750
+ name_or_address?: string | undefined;
751
+ local_mark_first?: boolean | undefined;
752
+ }[];
753
+ check_all_founded?: boolean | undefined;
754
+ } | undefined;
755
+ order_required_info?: string | 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.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
957
+ discount: z.ZodOptional<z.ZodObject<{
958
+ name: z.ZodString;
959
+ discount_type: z.ZodUnion<[z.ZodLiteral<import("wowok").DiscountType.RATES>, z.ZodLiteral<import("wowok").DiscountType.FIXED>]>;
960
+ discount_value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
961
+ benchmark: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
962
+ time_ms_start: z.ZodOptional<z.ZodNumber>;
963
+ time_ms_end: z.ZodOptional<z.ZodNumber>;
964
+ count: z.ZodOptional<z.ZodNumber>;
965
+ recipient: z.ZodObject<{
966
+ entities: z.ZodArray<z.ZodObject<{
967
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
968
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
969
+ }, "strict", z.ZodTypeAny, {
970
+ name_or_address?: string | undefined;
971
+ local_mark_first?: boolean | undefined;
972
+ }, {
973
+ name_or_address?: string | undefined;
974
+ local_mark_first?: boolean | undefined;
975
+ }>, "many">;
976
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
977
+ }, "strict", z.ZodTypeAny, {
978
+ entities: {
979
+ name_or_address?: string | undefined;
980
+ local_mark_first?: boolean | undefined;
981
+ }[];
982
+ check_all_founded?: boolean | undefined;
983
+ }, {
984
+ entities: {
985
+ name_or_address?: string | undefined;
986
+ local_mark_first?: boolean | undefined;
987
+ }[];
988
+ check_all_founded?: boolean | undefined;
989
+ }>;
990
+ transferable: z.ZodOptional<z.ZodBoolean>;
991
+ }, "strict", z.ZodTypeAny, {
992
+ name: string;
993
+ recipient: {
994
+ entities: {
995
+ name_or_address?: string | undefined;
996
+ local_mark_first?: boolean | undefined;
997
+ }[];
998
+ check_all_founded?: boolean | undefined;
999
+ };
1000
+ discount_type: import("wowok").DiscountType;
1001
+ discount_value: string | number;
1002
+ count?: number | undefined;
1003
+ benchmark?: string | number | undefined;
1004
+ transferable?: boolean | undefined;
1005
+ time_ms_start?: number | undefined;
1006
+ time_ms_end?: number | undefined;
1007
+ }, {
1008
+ name: string;
1009
+ recipient: {
1010
+ entities: {
1011
+ name_or_address?: string | undefined;
1012
+ local_mark_first?: boolean | undefined;
1013
+ }[];
1014
+ check_all_founded?: boolean | undefined;
1015
+ };
1016
+ discount_type: import("wowok").DiscountType;
1017
+ discount_value: string | number;
1018
+ count?: number | undefined;
1019
+ benchmark?: string | number | undefined;
1020
+ transferable?: boolean | undefined;
1021
+ time_ms_start?: number | undefined;
1022
+ time_ms_end?: number | undefined;
1023
+ }>>;
1024
+ discount_destroy: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
1025
+ customer_required: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
1026
+ order_allocators: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1027
+ description: z.ZodEffects<z.ZodString, string, string>;
1028
+ threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1029
+ allocators: z.ZodArray<z.ZodObject<{
1030
+ guard: z.ZodEffects<z.ZodString, string, string>;
1031
+ sharing: z.ZodArray<z.ZodObject<{
1032
+ who: z.ZodUnion<[z.ZodObject<{
1033
+ GuardIdentifier: z.ZodNumber;
1034
+ }, "strip", z.ZodTypeAny, {
1035
+ GuardIdentifier: number;
1036
+ }, {
1037
+ GuardIdentifier: number;
1038
+ }>, z.ZodObject<{
1039
+ Entity: z.ZodObject<{
1040
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1041
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1042
+ }, "strict", z.ZodTypeAny, {
1043
+ name_or_address?: string | undefined;
1044
+ local_mark_first?: boolean | undefined;
1045
+ }, {
1046
+ name_or_address?: string | undefined;
1047
+ local_mark_first?: boolean | undefined;
1048
+ }>;
1049
+ }, "strip", z.ZodTypeAny, {
1050
+ Entity: {
1051
+ name_or_address?: string | undefined;
1052
+ local_mark_first?: boolean | undefined;
1053
+ };
1054
+ }, {
1055
+ Entity: {
1056
+ name_or_address?: string | undefined;
1057
+ local_mark_first?: boolean | undefined;
1058
+ };
1059
+ }>, z.ZodObject<{
1060
+ Signer: z.ZodLiteral<"signer">;
1061
+ }, "strip", z.ZodTypeAny, {
1062
+ Signer: "signer";
1063
+ }, {
1064
+ Signer: "signer";
1065
+ }>]>;
1066
+ sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1067
+ mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
1068
+ }, "strip", z.ZodTypeAny, {
1069
+ who: {
1070
+ GuardIdentifier: number;
1071
+ } | {
1072
+ Entity: {
1073
+ name_or_address?: string | undefined;
1074
+ local_mark_first?: boolean | undefined;
1075
+ };
1076
+ } | {
1077
+ Signer: "signer";
1078
+ };
1079
+ sharing: string | number;
1080
+ mode: "Amount" | "Rate" | "Surplus";
1081
+ }, {
1082
+ who: {
1083
+ GuardIdentifier: number;
1084
+ } | {
1085
+ Entity: {
1086
+ name_or_address?: string | undefined;
1087
+ local_mark_first?: boolean | undefined;
1088
+ };
1089
+ } | {
1090
+ Signer: "signer";
1091
+ };
1092
+ sharing: string | number;
1093
+ mode: "Amount" | "Rate" | "Surplus";
1094
+ }>, "many">;
1095
+ fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
1096
+ max: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNull]>>;
1097
+ }, "strip", z.ZodTypeAny, {
1098
+ guard: string;
1099
+ sharing: {
1100
+ who: {
1101
+ GuardIdentifier: number;
1102
+ } | {
1103
+ Entity: {
1104
+ name_or_address?: string | undefined;
1105
+ local_mark_first?: boolean | undefined;
1106
+ };
1107
+ } | {
1108
+ Signer: "signer";
1109
+ };
1110
+ sharing: string | number;
1111
+ mode: "Amount" | "Rate" | "Surplus";
1112
+ }[];
1113
+ max?: string | number | null | undefined;
1114
+ fix?: string | number | undefined;
1115
+ }, {
1116
+ guard: string;
1117
+ sharing: {
1118
+ who: {
1119
+ GuardIdentifier: number;
1120
+ } | {
1121
+ Entity: {
1122
+ name_or_address?: string | undefined;
1123
+ local_mark_first?: boolean | undefined;
1124
+ };
1125
+ } | {
1126
+ Signer: "signer";
1127
+ };
1128
+ sharing: string | number;
1129
+ mode: "Amount" | "Rate" | "Surplus";
1130
+ }[];
1131
+ max?: string | number | null | undefined;
1132
+ fix?: string | number | undefined;
1133
+ }>, "many">;
1134
+ }, "strip", z.ZodTypeAny, {
1135
+ description: string;
1136
+ threshold: string | number;
1137
+ allocators: {
1138
+ guard: string;
1139
+ sharing: {
1140
+ who: {
1141
+ GuardIdentifier: number;
1142
+ } | {
1143
+ Entity: {
1144
+ name_or_address?: string | undefined;
1145
+ local_mark_first?: boolean | undefined;
1146
+ };
1147
+ } | {
1148
+ Signer: "signer";
1149
+ };
1150
+ sharing: string | number;
1151
+ mode: "Amount" | "Rate" | "Surplus";
1152
+ }[];
1153
+ max?: string | number | null | undefined;
1154
+ fix?: string | number | undefined;
1155
+ }[];
1156
+ }, {
1157
+ description: string;
1158
+ threshold: string | number;
1159
+ allocators: {
1160
+ guard: string;
1161
+ sharing: {
1162
+ who: {
1163
+ GuardIdentifier: number;
1164
+ } | {
1165
+ Entity: {
1166
+ name_or_address?: string | undefined;
1167
+ local_mark_first?: boolean | undefined;
1168
+ };
1169
+ } | {
1170
+ Signer: "signer";
1171
+ };
1172
+ sharing: string | number;
1173
+ mode: "Amount" | "Rate" | "Surplus";
1174
+ }[];
1175
+ max?: string | number | null | undefined;
1176
+ fix?: string | number | undefined;
1177
+ }[];
1178
+ }>, z.ZodNull]>>;
1179
+ buy_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
1180
+ compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1181
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1182
+ }, "strip", z.ZodTypeAny, {
1183
+ balance: string | number;
1184
+ }, {
1185
+ balance: string | number;
1186
+ }>, z.ZodObject<{
1187
+ coin: z.ZodString;
1188
+ }, "strip", z.ZodTypeAny, {
1189
+ coin: string;
1190
+ }, {
1191
+ coin: string;
1192
+ }>]>>;
1193
+ setting_locked_time_add: z.ZodOptional<z.ZodNumber>;
1194
+ compensation_fund_receive: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1195
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1196
+ token_type: z.ZodEffects<z.ZodString, string, string>;
1197
+ received: z.ZodArray<z.ZodObject<{
1198
+ id: z.ZodString;
1199
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1200
+ payment: z.ZodString;
1201
+ }, "strict", z.ZodTypeAny, {
1202
+ id: string;
1203
+ balance: string | number;
1204
+ payment: string;
1205
+ }, {
1206
+ id: string;
1207
+ balance: string | number;
1208
+ payment: string;
1209
+ }>, "many">;
1210
+ }, "strict", z.ZodTypeAny, {
1211
+ received: {
1212
+ id: string;
1213
+ balance: string | number;
1214
+ payment: string;
1215
+ }[];
1216
+ balance: string | number;
1217
+ token_type: string;
1218
+ }, {
1219
+ received: {
1220
+ id: string;
1221
+ balance: string | number;
1222
+ payment: string;
1223
+ }[];
1224
+ balance: string | number;
1225
+ token_type: string;
1226
+ }>, z.ZodLiteral<"recently">]>>;
1227
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
1228
+ id: z.ZodString;
1229
+ type: z.ZodString;
1230
+ content_raw: z.ZodOptional<z.ZodAny>;
1231
+ }, "strict", z.ZodTypeAny, {
1232
+ type: string;
1233
+ id: string;
1234
+ content_raw?: any;
1235
+ }, {
1236
+ type: string;
1237
+ id: string;
1238
+ content_raw?: any;
1239
+ }>, "many">, z.ZodObject<{
1240
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1241
+ token_type: z.ZodEffects<z.ZodString, string, string>;
1242
+ received: z.ZodArray<z.ZodObject<{
1243
+ id: z.ZodString;
1244
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1245
+ payment: z.ZodString;
1246
+ }, "strict", z.ZodTypeAny, {
1247
+ id: string;
1248
+ balance: string | number;
1249
+ payment: string;
1250
+ }, {
1251
+ id: string;
1252
+ balance: string | number;
1253
+ payment: string;
1254
+ }>, "many">;
1255
+ }, "strict", z.ZodTypeAny, {
1256
+ received: {
1257
+ id: string;
1258
+ balance: string | number;
1259
+ payment: string;
1260
+ }[];
1261
+ balance: string | number;
1262
+ token_type: string;
1263
+ }, {
1264
+ received: {
1265
+ id: string;
1266
+ balance: string | number;
1267
+ payment: string;
1268
+ }[];
1269
+ balance: string | number;
1270
+ token_type: string;
1271
+ }>, z.ZodLiteral<"recently">]>>;
1272
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
1273
+ pause: z.ZodOptional<z.ZodBoolean>;
1274
+ publish: z.ZodOptional<z.ZodBoolean>;
1275
+ }, "strict", z.ZodTypeAny, {
1276
+ object: string | {
1277
+ type_parameter: string;
1278
+ name?: string | undefined;
1279
+ replaceExistName?: boolean | undefined;
1280
+ tags?: string[] | undefined;
1281
+ onChain?: boolean | undefined;
1282
+ permission?: string | {
1283
+ name?: string | undefined;
1284
+ description?: string | undefined;
1285
+ replaceExistName?: boolean | undefined;
1286
+ tags?: string[] | undefined;
1287
+ onChain?: boolean | undefined;
1288
+ } | undefined;
1289
+ };
1290
+ description?: string | undefined;
1291
+ location?: string | undefined;
1292
+ owner_receive?: {
1293
+ received: {
1294
+ id: string;
1295
+ balance: string | number;
1296
+ payment: string;
1297
+ }[];
1298
+ balance: string | number;
1299
+ token_type: string;
1300
+ } | "recently" | {
1301
+ type: string;
1302
+ id: string;
1303
+ content_raw?: any;
1304
+ }[] | undefined;
1305
+ rewards?: {
1306
+ op: "set" | "add";
1307
+ objects: string[];
1308
+ } | {
1309
+ op: "remove";
1310
+ objects: string[];
1311
+ } | {
1312
+ op: "clear";
1313
+ } | undefined;
1314
+ um?: string | null | undefined;
1315
+ discount?: {
1316
+ name: string;
1317
+ recipient: {
1318
+ entities: {
1319
+ name_or_address?: string | undefined;
1320
+ local_mark_first?: boolean | undefined;
1321
+ }[];
1322
+ check_all_founded?: boolean | undefined;
1323
+ };
1324
+ discount_type: import("wowok").DiscountType;
1325
+ discount_value: string | number;
1326
+ count?: number | undefined;
1327
+ benchmark?: string | number | undefined;
1328
+ transferable?: boolean | undefined;
1329
+ time_ms_start?: number | undefined;
1330
+ time_ms_end?: number | undefined;
1331
+ } | undefined;
1332
+ machine?: string | null | undefined;
1333
+ sales?: {
1334
+ op: "add";
1335
+ sales: {
1336
+ name: string;
1337
+ wip: string;
1338
+ price: string | number;
1339
+ stock: string | number;
1340
+ suspension: boolean;
1341
+ wip_hash: string;
1342
+ }[];
1343
+ } | {
1344
+ op: "set";
1345
+ sales: {
1346
+ name: string;
1347
+ wip: string;
1348
+ price: string | number;
1349
+ stock: string | number;
1350
+ suspension: boolean;
1351
+ wip_hash: string;
1352
+ }[];
1353
+ } | {
1354
+ op: "remove";
1355
+ sales_name: string[];
1356
+ } | {
1357
+ op: "clear";
1358
+ } | undefined;
1359
+ repositories?: {
1360
+ op: "set" | "add";
1361
+ objects: string[];
1362
+ } | {
1363
+ op: "remove";
1364
+ objects: string[];
1365
+ } | {
1366
+ op: "clear";
1367
+ } | undefined;
1368
+ buy_guard?: string | null | undefined;
1369
+ customer_required?: string[] | undefined;
1370
+ arbitrations?: {
1371
+ op: "set" | "add";
1372
+ objects: string[];
1373
+ } | {
1374
+ op: "remove";
1375
+ objects: string[];
1376
+ } | {
1377
+ op: "clear";
1378
+ } | undefined;
1379
+ order_allocators?: {
1380
+ description: string;
1381
+ threshold: string | number;
1382
+ allocators: {
1383
+ guard: string;
1384
+ sharing: {
1385
+ who: {
1386
+ GuardIdentifier: number;
1387
+ } | {
1388
+ Entity: {
1389
+ name_or_address?: string | undefined;
1390
+ local_mark_first?: boolean | undefined;
1391
+ };
1392
+ } | {
1393
+ Signer: "signer";
1394
+ };
1395
+ sharing: string | number;
1396
+ mode: "Amount" | "Rate" | "Surplus";
1397
+ }[];
1398
+ max?: string | number | null | undefined;
1399
+ fix?: string | number | undefined;
1400
+ }[];
1401
+ } | null | undefined;
1402
+ pause?: boolean | undefined;
1403
+ publish?: boolean | undefined;
1404
+ order_new?: {
1405
+ buy: {
1406
+ items: {
1407
+ name: string;
1408
+ stock: string | number;
1409
+ wip_hash: string;
1410
+ }[];
1411
+ total_pay: {
1412
+ balance: string | number;
1413
+ } | {
1414
+ coin: string;
1415
+ };
1416
+ discount?: string | undefined;
1417
+ payment_remark?: string | undefined;
1418
+ payment_index?: number | undefined;
1419
+ };
1420
+ transfer?: {
1421
+ name_or_address?: string | undefined;
1422
+ local_mark_first?: boolean | undefined;
1423
+ } | undefined;
1424
+ agents?: {
1425
+ entities: {
1426
+ name_or_address?: string | undefined;
1427
+ local_mark_first?: boolean | undefined;
1428
+ }[];
1429
+ check_all_founded?: boolean | undefined;
1430
+ } | undefined;
1431
+ order_required_info?: string | undefined;
1432
+ namedNewOrder?: {
1433
+ name?: string | undefined;
1434
+ replaceExistName?: boolean | undefined;
1435
+ tags?: string[] | undefined;
1436
+ onChain?: boolean | undefined;
1437
+ } | undefined;
1438
+ namedNewAllocation?: {
1439
+ name?: string | undefined;
1440
+ replaceExistName?: boolean | undefined;
1441
+ tags?: string[] | undefined;
1442
+ onChain?: boolean | undefined;
1443
+ } | undefined;
1444
+ namedNewProgress?: {
1445
+ name?: string | undefined;
1446
+ replaceExistName?: boolean | undefined;
1447
+ tags?: string[] | undefined;
1448
+ onChain?: boolean | undefined;
1449
+ } | undefined;
1450
+ } | undefined;
1451
+ discount_destroy?: string[] | undefined;
1452
+ compensation_fund_add?: {
1453
+ balance: string | number;
1454
+ } | {
1455
+ coin: string;
1456
+ } | undefined;
1457
+ setting_locked_time_add?: number | undefined;
1458
+ compensation_fund_receive?: {
1459
+ received: {
1460
+ id: string;
1461
+ balance: string | number;
1462
+ payment: string;
1463
+ }[];
1464
+ balance: string | number;
1465
+ token_type: string;
1466
+ } | "recently" | undefined;
1467
+ }, {
1468
+ object: string | {
1469
+ name?: string | undefined;
1470
+ replaceExistName?: boolean | undefined;
1471
+ tags?: string[] | undefined;
1472
+ onChain?: boolean | undefined;
1473
+ type_parameter?: string | undefined;
1474
+ permission?: string | {
1475
+ name?: string | undefined;
1476
+ description?: string | undefined;
1477
+ replaceExistName?: boolean | undefined;
1478
+ tags?: string[] | undefined;
1479
+ onChain?: boolean | undefined;
1480
+ } | undefined;
1481
+ };
1482
+ description?: string | undefined;
1483
+ location?: string | undefined;
1484
+ owner_receive?: {
1485
+ received: {
1486
+ id: string;
1487
+ balance: string | number;
1488
+ payment: string;
1489
+ }[];
1490
+ balance: string | number;
1491
+ token_type: string;
1492
+ } | "recently" | {
1493
+ type: string;
1494
+ id: string;
1495
+ content_raw?: any;
1496
+ }[] | undefined;
1497
+ rewards?: {
1498
+ op: "set" | "add";
1499
+ objects: string[];
1500
+ } | {
1501
+ op: "remove";
1502
+ objects: string[];
1503
+ } | {
1504
+ op: "clear";
1505
+ } | undefined;
1506
+ um?: string | null | undefined;
1507
+ discount?: {
1508
+ name: string;
1509
+ recipient: {
1510
+ entities: {
1511
+ name_or_address?: string | undefined;
1512
+ local_mark_first?: boolean | undefined;
1513
+ }[];
1514
+ check_all_founded?: boolean | undefined;
1515
+ };
1516
+ discount_type: import("wowok").DiscountType;
1517
+ discount_value: string | number;
1518
+ count?: number | undefined;
1519
+ benchmark?: string | number | undefined;
1520
+ transferable?: boolean | undefined;
1521
+ time_ms_start?: number | undefined;
1522
+ time_ms_end?: number | undefined;
1523
+ } | undefined;
1524
+ machine?: string | null | undefined;
1525
+ sales?: {
1526
+ op: "add";
1527
+ sales: {
1528
+ name: string;
1529
+ wip: string;
1530
+ price: string | number;
1531
+ stock: string | number;
1532
+ suspension: boolean;
1533
+ wip_hash: string;
1534
+ }[];
1535
+ } | {
1536
+ op: "set";
1537
+ sales: {
1538
+ name: string;
1539
+ wip: string;
1540
+ price: string | number;
1541
+ stock: string | number;
1542
+ suspension: boolean;
1543
+ wip_hash: string;
1544
+ }[];
1545
+ } | {
1546
+ op: "remove";
1547
+ sales_name: string[];
1548
+ } | {
1549
+ op: "clear";
1550
+ } | undefined;
1551
+ repositories?: {
1552
+ op: "set" | "add";
1553
+ objects: string[];
1554
+ } | {
1555
+ op: "remove";
1556
+ objects: string[];
1557
+ } | {
1558
+ op: "clear";
1559
+ } | undefined;
1560
+ buy_guard?: string | null | undefined;
1561
+ customer_required?: string[] | undefined;
1562
+ arbitrations?: {
1563
+ op: "set" | "add";
1564
+ objects: string[];
1565
+ } | {
1566
+ op: "remove";
1567
+ objects: string[];
1568
+ } | {
1569
+ op: "clear";
1570
+ } | undefined;
1571
+ order_allocators?: {
1572
+ description: string;
1573
+ threshold: string | number;
1574
+ allocators: {
1575
+ guard: string;
1576
+ sharing: {
1577
+ who: {
1578
+ GuardIdentifier: number;
1579
+ } | {
1580
+ Entity: {
1581
+ name_or_address?: string | undefined;
1582
+ local_mark_first?: boolean | undefined;
1583
+ };
1584
+ } | {
1585
+ Signer: "signer";
1586
+ };
1587
+ sharing: string | number;
1588
+ mode: "Amount" | "Rate" | "Surplus";
1589
+ }[];
1590
+ max?: string | number | null | undefined;
1591
+ fix?: string | number | undefined;
1592
+ }[];
1593
+ } | null | undefined;
1594
+ pause?: boolean | undefined;
1595
+ publish?: boolean | undefined;
1596
+ order_new?: {
1597
+ buy: {
1598
+ items: {
1599
+ name: string;
1600
+ stock: string | number;
1601
+ wip_hash: string;
1602
+ }[];
1603
+ total_pay: {
1604
+ balance: string | number;
1605
+ } | {
1606
+ coin: string;
1607
+ };
1608
+ discount?: string | undefined;
1609
+ payment_remark?: string | undefined;
1610
+ payment_index?: number | undefined;
1611
+ };
1612
+ transfer?: {
1613
+ name_or_address?: string | undefined;
1614
+ local_mark_first?: boolean | undefined;
1615
+ } | undefined;
1616
+ agents?: {
1617
+ entities: {
1618
+ name_or_address?: string | undefined;
1619
+ local_mark_first?: boolean | undefined;
1620
+ }[];
1621
+ check_all_founded?: boolean | undefined;
1622
+ } | undefined;
1623
+ order_required_info?: string | undefined;
1624
+ namedNewOrder?: {
1625
+ name?: string | undefined;
1626
+ replaceExistName?: boolean | undefined;
1627
+ tags?: string[] | undefined;
1628
+ onChain?: boolean | undefined;
1629
+ } | undefined;
1630
+ namedNewAllocation?: {
1631
+ name?: string | undefined;
1632
+ replaceExistName?: boolean | undefined;
1633
+ tags?: string[] | undefined;
1634
+ onChain?: boolean | undefined;
1635
+ } | undefined;
1636
+ namedNewProgress?: {
1637
+ name?: string | undefined;
1638
+ replaceExistName?: boolean | undefined;
1639
+ tags?: string[] | undefined;
1640
+ onChain?: boolean | undefined;
1641
+ } | undefined;
1642
+ } | undefined;
1643
+ discount_destroy?: string[] | undefined;
1644
+ compensation_fund_add?: {
1645
+ balance: string | number;
1646
+ } | {
1647
+ coin: string;
1648
+ } | undefined;
1649
+ setting_locked_time_add?: number | undefined;
1650
+ compensation_fund_receive?: {
1651
+ received: {
1652
+ id: string;
1653
+ balance: string | number;
1654
+ payment: string;
1655
+ }[];
1656
+ balance: string | number;
1657
+ token_type: string;
1658
+ } | "recently" | undefined;
1659
+ }>;
1660
+ export declare const CallService_InputSchema: z.ZodObject<{
1661
+ data: z.ZodObject<{
1662
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1663
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1664
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1665
+ onChain: z.ZodOptional<z.ZodBoolean>;
1666
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1667
+ } & {
1668
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1669
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1670
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1671
+ onChain: z.ZodOptional<z.ZodBoolean>;
1672
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1673
+ } & {
1674
+ description: z.ZodOptional<z.ZodString>;
1675
+ }, "strict", z.ZodTypeAny, {
1676
+ name?: string | undefined;
1677
+ description?: string | undefined;
1678
+ replaceExistName?: boolean | undefined;
1679
+ tags?: string[] | undefined;
1680
+ onChain?: boolean | undefined;
1681
+ }, {
1682
+ name?: string | undefined;
1683
+ description?: string | undefined;
1684
+ replaceExistName?: boolean | undefined;
1685
+ tags?: string[] | undefined;
1686
+ onChain?: boolean | undefined;
1687
+ }>]>>;
1688
+ } & {
1689
+ type_parameter: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
1690
+ }, "strict", z.ZodTypeAny, {
1691
+ type_parameter: string;
1692
+ name?: string | undefined;
1693
+ replaceExistName?: boolean | undefined;
1694
+ tags?: string[] | undefined;
1695
+ onChain?: boolean | undefined;
1696
+ permission?: string | {
1697
+ name?: string | undefined;
1698
+ description?: string | undefined;
1699
+ replaceExistName?: boolean | undefined;
1700
+ tags?: string[] | undefined;
1701
+ onChain?: boolean | undefined;
1702
+ } | undefined;
1703
+ }, {
1704
+ name?: string | undefined;
1705
+ replaceExistName?: boolean | undefined;
1706
+ tags?: string[] | undefined;
1707
+ onChain?: boolean | undefined;
1708
+ type_parameter?: string | undefined;
1709
+ permission?: string | {
1710
+ name?: string | undefined;
1711
+ description?: string | undefined;
1712
+ replaceExistName?: boolean | undefined;
1713
+ tags?: string[] | undefined;
1714
+ onChain?: boolean | undefined;
1715
+ } | undefined;
1716
+ }>]>;
1717
+ order_new: z.ZodOptional<z.ZodObject<{
1718
+ buy: z.ZodObject<{
1719
+ items: z.ZodArray<z.ZodObject<{
1720
+ name: z.ZodEffects<z.ZodString, string, string>;
1721
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1722
+ wip_hash: z.ZodString;
1723
+ }, "strict", z.ZodTypeAny, {
1724
+ name: string;
1725
+ stock: string | number;
1726
+ wip_hash: string;
1727
+ }, {
1728
+ name: string;
1729
+ stock: string | number;
1730
+ wip_hash: string;
1731
+ }>, "many">;
1732
+ total_pay: z.ZodUnion<[z.ZodObject<{
1733
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1734
+ }, "strip", z.ZodTypeAny, {
1735
+ balance: string | number;
1736
+ }, {
1737
+ balance: string | number;
1738
+ }>, z.ZodObject<{
1739
+ coin: z.ZodString;
1740
+ }, "strip", z.ZodTypeAny, {
1741
+ coin: string;
1742
+ }, {
1743
+ coin: string;
1744
+ }>]>;
1745
+ discount: z.ZodOptional<z.ZodString>;
1746
+ payment_remark: z.ZodOptional<z.ZodString>;
1747
+ payment_index: z.ZodOptional<z.ZodNumber>;
1748
+ }, "strict", z.ZodTypeAny, {
1749
+ items: {
1750
+ name: string;
1751
+ stock: string | number;
1752
+ wip_hash: string;
1753
+ }[];
1754
+ total_pay: {
1755
+ balance: string | number;
1756
+ } | {
1757
+ coin: string;
1758
+ };
1759
+ discount?: string | undefined;
1760
+ payment_remark?: string | undefined;
1761
+ payment_index?: number | undefined;
1762
+ }, {
1763
+ items: {
1764
+ name: string;
1765
+ stock: string | number;
1766
+ wip_hash: string;
1767
+ }[];
1768
+ total_pay: {
1769
+ balance: string | number;
1770
+ } | {
1771
+ coin: string;
1772
+ };
1773
+ discount?: string | undefined;
1774
+ payment_remark?: string | undefined;
1775
+ payment_index?: number | undefined;
1776
+ }>;
1777
+ agents: z.ZodOptional<z.ZodObject<{
1778
+ entities: z.ZodArray<z.ZodObject<{
1779
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1780
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1781
+ }, "strict", z.ZodTypeAny, {
1782
+ name_or_address?: string | undefined;
1783
+ local_mark_first?: boolean | undefined;
1784
+ }, {
1785
+ name_or_address?: string | undefined;
1786
+ local_mark_first?: boolean | undefined;
1787
+ }>, "many">;
1788
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
1789
+ }, "strict", z.ZodTypeAny, {
1790
+ entities: {
1791
+ name_or_address?: string | undefined;
1792
+ local_mark_first?: boolean | undefined;
1793
+ }[];
1794
+ check_all_founded?: boolean | undefined;
1795
+ }, {
1796
+ entities: {
1797
+ name_or_address?: string | undefined;
1798
+ local_mark_first?: boolean | undefined;
1799
+ }[];
1800
+ check_all_founded?: boolean | undefined;
1801
+ }>>;
1802
+ order_required_info: z.ZodOptional<z.ZodString>;
1803
+ transfer: z.ZodOptional<z.ZodObject<{
1804
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1805
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
1806
+ }, "strict", z.ZodTypeAny, {
1807
+ name_or_address?: string | undefined;
1808
+ local_mark_first?: boolean | undefined;
1809
+ }, {
1810
+ name_or_address?: string | undefined;
1811
+ local_mark_first?: boolean | undefined;
1812
+ }>>;
1813
+ namedNewOrder: z.ZodOptional<z.ZodObject<{
1814
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1815
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1816
+ onChain: z.ZodOptional<z.ZodBoolean>;
1817
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1818
+ }, "strict", z.ZodTypeAny, {
1819
+ name?: string | undefined;
1820
+ replaceExistName?: boolean | undefined;
1821
+ tags?: string[] | undefined;
1822
+ onChain?: boolean | undefined;
1823
+ }, {
1824
+ name?: string | undefined;
1825
+ replaceExistName?: boolean | undefined;
1826
+ tags?: string[] | undefined;
1827
+ onChain?: boolean | undefined;
1828
+ }>>;
1829
+ namedNewAllocation: z.ZodOptional<z.ZodObject<{
1830
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1831
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1832
+ onChain: z.ZodOptional<z.ZodBoolean>;
1833
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1834
+ }, "strict", z.ZodTypeAny, {
1835
+ name?: string | undefined;
1836
+ replaceExistName?: boolean | undefined;
1837
+ tags?: string[] | undefined;
1838
+ onChain?: boolean | undefined;
1839
+ }, {
1840
+ name?: string | undefined;
1841
+ replaceExistName?: boolean | undefined;
1842
+ tags?: string[] | undefined;
1843
+ onChain?: boolean | undefined;
1844
+ }>>;
1845
+ namedNewProgress: z.ZodOptional<z.ZodObject<{
1846
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1847
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1848
+ onChain: z.ZodOptional<z.ZodBoolean>;
1849
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
1850
+ }, "strict", z.ZodTypeAny, {
1851
+ name?: string | undefined;
1852
+ replaceExistName?: boolean | undefined;
1853
+ tags?: string[] | undefined;
1854
+ onChain?: boolean | undefined;
1855
+ }, {
1856
+ name?: string | undefined;
1857
+ replaceExistName?: boolean | undefined;
1858
+ tags?: string[] | undefined;
1859
+ onChain?: boolean | undefined;
1860
+ }>>;
1861
+ }, "strict", z.ZodTypeAny, {
1862
+ buy: {
1863
+ items: {
1864
+ name: string;
1865
+ stock: string | number;
1866
+ wip_hash: string;
1867
+ }[];
1868
+ total_pay: {
1869
+ balance: string | number;
1870
+ } | {
1871
+ coin: string;
1872
+ };
1873
+ discount?: string | undefined;
1874
+ payment_remark?: string | undefined;
1875
+ payment_index?: number | undefined;
1876
+ };
1877
+ transfer?: {
1878
+ name_or_address?: string | undefined;
1879
+ local_mark_first?: boolean | undefined;
1880
+ } | undefined;
1881
+ agents?: {
1882
+ entities: {
1883
+ name_or_address?: string | undefined;
1884
+ local_mark_first?: boolean | undefined;
1885
+ }[];
1886
+ check_all_founded?: boolean | undefined;
1887
+ } | undefined;
1888
+ order_required_info?: string | undefined;
1889
+ namedNewOrder?: {
1890
+ name?: string | undefined;
1891
+ replaceExistName?: boolean | undefined;
1892
+ tags?: string[] | undefined;
1893
+ onChain?: boolean | undefined;
1894
+ } | undefined;
1895
+ namedNewAllocation?: {
1896
+ name?: string | undefined;
1897
+ replaceExistName?: boolean | undefined;
1898
+ tags?: string[] | undefined;
1899
+ onChain?: boolean | undefined;
1900
+ } | undefined;
1901
+ namedNewProgress?: {
1902
+ name?: string | undefined;
1903
+ replaceExistName?: boolean | undefined;
1904
+ tags?: string[] | undefined;
1905
+ onChain?: boolean | undefined;
1906
+ } | undefined;
1907
+ }, {
1908
+ buy: {
1909
+ items: {
1910
+ name: string;
1911
+ stock: string | number;
1912
+ wip_hash: string;
1913
+ }[];
1914
+ total_pay: {
1915
+ balance: string | number;
1916
+ } | {
1917
+ coin: string;
1918
+ };
1919
+ discount?: string | undefined;
1920
+ payment_remark?: string | undefined;
1921
+ payment_index?: number | undefined;
1922
+ };
1923
+ transfer?: {
1924
+ name_or_address?: string | undefined;
1925
+ local_mark_first?: boolean | undefined;
1926
+ } | undefined;
1927
+ agents?: {
1928
+ entities: {
1929
+ name_or_address?: string | undefined;
1930
+ local_mark_first?: boolean | undefined;
1931
+ }[];
1932
+ check_all_founded?: boolean | undefined;
1933
+ } | undefined;
1934
+ order_required_info?: string | undefined;
1935
+ namedNewOrder?: {
1936
+ name?: string | undefined;
1937
+ replaceExistName?: boolean | undefined;
1938
+ tags?: string[] | undefined;
1939
+ onChain?: boolean | undefined;
1940
+ } | undefined;
1941
+ namedNewAllocation?: {
1942
+ name?: string | undefined;
1943
+ replaceExistName?: boolean | undefined;
1944
+ tags?: string[] | undefined;
1945
+ onChain?: boolean | undefined;
1946
+ } | undefined;
1947
+ namedNewProgress?: {
1948
+ name?: string | undefined;
1949
+ replaceExistName?: boolean | undefined;
1950
+ tags?: string[] | undefined;
1951
+ onChain?: boolean | undefined;
1952
+ } | undefined;
1953
+ }>>;
1954
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1955
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1956
+ sales: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
1957
+ op: z.ZodLiteral<"add">;
1958
+ sales: z.ZodArray<z.ZodObject<{
1959
+ name: z.ZodEffects<z.ZodString, string, string>;
1960
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1961
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1962
+ suspension: z.ZodBoolean;
1963
+ wip: z.ZodString;
1964
+ wip_hash: z.ZodString;
1965
+ }, "strip", z.ZodTypeAny, {
1966
+ name: string;
1967
+ wip: string;
1968
+ price: string | number;
1969
+ stock: string | number;
1970
+ suspension: boolean;
1971
+ wip_hash: string;
1972
+ }, {
1973
+ name: string;
1974
+ wip: string;
1975
+ price: string | number;
1976
+ stock: string | number;
1977
+ suspension: boolean;
1978
+ wip_hash: string;
1979
+ }>, "many">;
1980
+ }, "strict", z.ZodTypeAny, {
1981
+ op: "add";
1982
+ sales: {
1983
+ name: string;
1984
+ wip: string;
1985
+ price: string | number;
1986
+ stock: string | number;
1987
+ suspension: boolean;
1988
+ wip_hash: string;
1989
+ }[];
1990
+ }, {
1991
+ op: "add";
1992
+ sales: {
1993
+ name: string;
1994
+ wip: string;
1995
+ price: string | number;
1996
+ stock: string | number;
1997
+ suspension: boolean;
1998
+ wip_hash: string;
1999
+ }[];
2000
+ }>, z.ZodObject<{
2001
+ op: z.ZodLiteral<"set">;
2002
+ sales: z.ZodArray<z.ZodObject<{
2003
+ name: z.ZodEffects<z.ZodString, string, string>;
2004
+ price: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2005
+ stock: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2006
+ suspension: z.ZodBoolean;
2007
+ wip: z.ZodString;
2008
+ wip_hash: z.ZodString;
2009
+ }, "strip", z.ZodTypeAny, {
2010
+ name: string;
2011
+ wip: string;
2012
+ price: string | number;
2013
+ stock: string | number;
2014
+ suspension: boolean;
2015
+ wip_hash: string;
2016
+ }, {
2017
+ name: string;
2018
+ wip: string;
2019
+ price: string | number;
2020
+ stock: string | number;
2021
+ suspension: boolean;
2022
+ wip_hash: string;
2023
+ }>, "many">;
2024
+ }, "strict", z.ZodTypeAny, {
2025
+ op: "set";
2026
+ sales: {
2027
+ name: string;
2028
+ wip: string;
2029
+ price: string | number;
2030
+ stock: string | number;
2031
+ suspension: boolean;
2032
+ wip_hash: string;
2033
+ }[];
2034
+ }, {
2035
+ op: "set";
2036
+ sales: {
2037
+ name: string;
2038
+ wip: string;
2039
+ price: string | number;
2040
+ stock: string | number;
2041
+ suspension: boolean;
2042
+ wip_hash: string;
2043
+ }[];
2044
+ }>, z.ZodObject<{
2045
+ op: z.ZodLiteral<"remove">;
2046
+ sales_name: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2047
+ }, "strict", z.ZodTypeAny, {
2048
+ op: "remove";
2049
+ sales_name: string[];
2050
+ }, {
2051
+ op: "remove";
2052
+ sales_name: string[];
2053
+ }>, z.ZodObject<{
2054
+ op: z.ZodLiteral<"clear">;
2055
+ }, "strict", z.ZodTypeAny, {
2056
+ op: "clear";
2057
+ }, {
2058
+ op: "clear";
2059
+ }>]>>;
2060
+ repositories: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2061
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
2062
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2063
+ }, "strict", z.ZodTypeAny, {
2064
+ op: "set" | "add";
2065
+ objects: string[];
2066
+ }, {
2067
+ op: "set" | "add";
2068
+ objects: string[];
2069
+ }>, z.ZodObject<{
2070
+ op: z.ZodLiteral<"remove">;
2071
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2072
+ }, "strict", z.ZodTypeAny, {
2073
+ op: "remove";
2074
+ objects: string[];
2075
+ }, {
2076
+ op: "remove";
2077
+ objects: string[];
2078
+ }>, z.ZodObject<{
2079
+ op: z.ZodLiteral<"clear">;
2080
+ }, "strict", z.ZodTypeAny, {
2081
+ op: "clear";
2082
+ }, {
2083
+ op: "clear";
2084
+ }>]>>;
2085
+ rewards: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2086
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
2087
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2088
+ }, "strict", z.ZodTypeAny, {
2089
+ op: "set" | "add";
2090
+ objects: string[];
2091
+ }, {
2092
+ op: "set" | "add";
2093
+ objects: string[];
2094
+ }>, z.ZodObject<{
2095
+ op: z.ZodLiteral<"remove">;
2096
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2097
+ }, "strict", z.ZodTypeAny, {
2098
+ op: "remove";
2099
+ objects: string[];
2100
+ }, {
2101
+ op: "remove";
2102
+ objects: string[];
2103
+ }>, z.ZodObject<{
2104
+ op: z.ZodLiteral<"clear">;
2105
+ }, "strict", z.ZodTypeAny, {
2106
+ op: "clear";
2107
+ }, {
2108
+ op: "clear";
2109
+ }>]>>;
2110
+ arbitrations: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2111
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
2112
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2113
+ }, "strict", z.ZodTypeAny, {
2114
+ op: "set" | "add";
2115
+ objects: string[];
2116
+ }, {
2117
+ op: "set" | "add";
2118
+ objects: string[];
2119
+ }>, z.ZodObject<{
2120
+ op: z.ZodLiteral<"remove">;
2121
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2122
+ }, "strict", z.ZodTypeAny, {
2123
+ op: "remove";
2124
+ objects: string[];
2125
+ }, {
2126
+ op: "remove";
2127
+ objects: string[];
2128
+ }>, z.ZodObject<{
2129
+ op: z.ZodLiteral<"clear">;
2130
+ }, "strict", z.ZodTypeAny, {
2131
+ op: "clear";
2132
+ }, {
2133
+ op: "clear";
2134
+ }>]>>;
2135
+ machine: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
2136
+ discount: z.ZodOptional<z.ZodObject<{
2137
+ name: z.ZodString;
2138
+ discount_type: z.ZodUnion<[z.ZodLiteral<import("wowok").DiscountType.RATES>, z.ZodLiteral<import("wowok").DiscountType.FIXED>]>;
2139
+ discount_value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2140
+ benchmark: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
2141
+ time_ms_start: z.ZodOptional<z.ZodNumber>;
2142
+ time_ms_end: z.ZodOptional<z.ZodNumber>;
2143
+ count: z.ZodOptional<z.ZodNumber>;
2144
+ recipient: z.ZodObject<{
2145
+ entities: z.ZodArray<z.ZodObject<{
2146
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2147
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
2148
+ }, "strict", z.ZodTypeAny, {
2149
+ name_or_address?: string | undefined;
2150
+ local_mark_first?: boolean | undefined;
2151
+ }, {
2152
+ name_or_address?: string | undefined;
2153
+ local_mark_first?: boolean | undefined;
2154
+ }>, "many">;
2155
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
2156
+ }, "strict", z.ZodTypeAny, {
2157
+ entities: {
2158
+ name_or_address?: string | undefined;
2159
+ local_mark_first?: boolean | undefined;
2160
+ }[];
2161
+ check_all_founded?: boolean | undefined;
2162
+ }, {
2163
+ entities: {
2164
+ name_or_address?: string | undefined;
2165
+ local_mark_first?: boolean | undefined;
2166
+ }[];
2167
+ check_all_founded?: boolean | undefined;
2168
+ }>;
2169
+ transferable: z.ZodOptional<z.ZodBoolean>;
2170
+ }, "strict", z.ZodTypeAny, {
2171
+ name: string;
2172
+ recipient: {
2173
+ entities: {
2174
+ name_or_address?: string | undefined;
2175
+ local_mark_first?: boolean | undefined;
2176
+ }[];
2177
+ check_all_founded?: boolean | undefined;
2178
+ };
2179
+ discount_type: import("wowok").DiscountType;
2180
+ discount_value: string | number;
2181
+ count?: number | undefined;
2182
+ benchmark?: string | number | undefined;
2183
+ transferable?: boolean | undefined;
2184
+ time_ms_start?: number | undefined;
2185
+ time_ms_end?: number | undefined;
2186
+ }, {
2187
+ name: string;
2188
+ recipient: {
2189
+ entities: {
2190
+ name_or_address?: string | undefined;
2191
+ local_mark_first?: boolean | undefined;
2192
+ }[];
2193
+ check_all_founded?: boolean | undefined;
2194
+ };
2195
+ discount_type: import("wowok").DiscountType;
2196
+ discount_value: string | number;
2197
+ count?: number | undefined;
2198
+ benchmark?: string | number | undefined;
2199
+ transferable?: boolean | undefined;
2200
+ time_ms_start?: number | undefined;
2201
+ time_ms_end?: number | undefined;
2202
+ }>>;
2203
+ discount_destroy: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
2204
+ customer_required: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
2205
+ order_allocators: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2206
+ description: z.ZodEffects<z.ZodString, string, string>;
2207
+ threshold: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2208
+ allocators: z.ZodArray<z.ZodObject<{
2209
+ guard: z.ZodEffects<z.ZodString, string, string>;
2210
+ sharing: z.ZodArray<z.ZodObject<{
2211
+ who: z.ZodUnion<[z.ZodObject<{
2212
+ GuardIdentifier: z.ZodNumber;
2213
+ }, "strip", z.ZodTypeAny, {
2214
+ GuardIdentifier: number;
2215
+ }, {
2216
+ GuardIdentifier: number;
2217
+ }>, z.ZodObject<{
2218
+ Entity: z.ZodObject<{
2219
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2220
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
2221
+ }, "strict", z.ZodTypeAny, {
2222
+ name_or_address?: string | undefined;
2223
+ local_mark_first?: boolean | undefined;
2224
+ }, {
2225
+ name_or_address?: string | undefined;
2226
+ local_mark_first?: boolean | undefined;
2227
+ }>;
2228
+ }, "strip", z.ZodTypeAny, {
2229
+ Entity: {
2230
+ name_or_address?: string | undefined;
2231
+ local_mark_first?: boolean | undefined;
2232
+ };
2233
+ }, {
2234
+ Entity: {
2235
+ name_or_address?: string | undefined;
2236
+ local_mark_first?: boolean | undefined;
2237
+ };
2238
+ }>, z.ZodObject<{
2239
+ Signer: z.ZodLiteral<"signer">;
2240
+ }, "strip", z.ZodTypeAny, {
2241
+ Signer: "signer";
2242
+ }, {
2243
+ Signer: "signer";
2244
+ }>]>;
2245
+ sharing: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2246
+ mode: z.ZodEnum<["Amount", "Rate", "Surplus"]>;
2247
+ }, "strip", z.ZodTypeAny, {
2248
+ who: {
2249
+ GuardIdentifier: number;
2250
+ } | {
2251
+ Entity: {
2252
+ name_or_address?: string | undefined;
2253
+ local_mark_first?: boolean | undefined;
2254
+ };
2255
+ } | {
2256
+ Signer: "signer";
2257
+ };
2258
+ sharing: string | number;
2259
+ mode: "Amount" | "Rate" | "Surplus";
2260
+ }, {
2261
+ who: {
2262
+ GuardIdentifier: number;
2263
+ } | {
2264
+ Entity: {
2265
+ name_or_address?: string | undefined;
2266
+ local_mark_first?: boolean | undefined;
2267
+ };
2268
+ } | {
2269
+ Signer: "signer";
2270
+ };
2271
+ sharing: string | number;
2272
+ mode: "Amount" | "Rate" | "Surplus";
2273
+ }>, "many">;
2274
+ fix: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
2275
+ max: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNull]>>;
2276
+ }, "strip", z.ZodTypeAny, {
2277
+ guard: string;
2278
+ sharing: {
2279
+ who: {
2280
+ GuardIdentifier: number;
2281
+ } | {
2282
+ Entity: {
2283
+ name_or_address?: string | undefined;
2284
+ local_mark_first?: boolean | undefined;
2285
+ };
2286
+ } | {
2287
+ Signer: "signer";
2288
+ };
2289
+ sharing: string | number;
2290
+ mode: "Amount" | "Rate" | "Surplus";
2291
+ }[];
2292
+ max?: string | number | null | undefined;
2293
+ fix?: string | number | undefined;
2294
+ }, {
2295
+ guard: string;
2296
+ sharing: {
2297
+ who: {
2298
+ GuardIdentifier: number;
2299
+ } | {
2300
+ Entity: {
2301
+ name_or_address?: string | undefined;
2302
+ local_mark_first?: boolean | undefined;
2303
+ };
2304
+ } | {
2305
+ Signer: "signer";
2306
+ };
2307
+ sharing: string | number;
2308
+ mode: "Amount" | "Rate" | "Surplus";
2309
+ }[];
2310
+ max?: string | number | null | undefined;
2311
+ fix?: string | number | undefined;
2312
+ }>, "many">;
2313
+ }, "strip", z.ZodTypeAny, {
2314
+ description: string;
2315
+ threshold: string | number;
2316
+ allocators: {
2317
+ guard: string;
2318
+ sharing: {
2319
+ who: {
2320
+ GuardIdentifier: number;
2321
+ } | {
2322
+ Entity: {
2323
+ name_or_address?: string | undefined;
2324
+ local_mark_first?: boolean | undefined;
2325
+ };
2326
+ } | {
2327
+ Signer: "signer";
2328
+ };
2329
+ sharing: string | number;
2330
+ mode: "Amount" | "Rate" | "Surplus";
2331
+ }[];
2332
+ max?: string | number | null | undefined;
2333
+ fix?: string | number | undefined;
2334
+ }[];
2335
+ }, {
2336
+ description: string;
2337
+ threshold: string | number;
2338
+ allocators: {
2339
+ guard: string;
2340
+ sharing: {
2341
+ who: {
2342
+ GuardIdentifier: number;
2343
+ } | {
2344
+ Entity: {
2345
+ name_or_address?: string | undefined;
2346
+ local_mark_first?: boolean | undefined;
2347
+ };
2348
+ } | {
2349
+ Signer: "signer";
2350
+ };
2351
+ sharing: string | number;
2352
+ mode: "Amount" | "Rate" | "Surplus";
2353
+ }[];
2354
+ max?: string | number | null | undefined;
2355
+ fix?: string | number | undefined;
2356
+ }[];
2357
+ }>, z.ZodNull]>>;
2358
+ buy_guard: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
2359
+ compensation_fund_add: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2360
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2361
+ }, "strip", z.ZodTypeAny, {
2362
+ balance: string | number;
2363
+ }, {
2364
+ balance: string | number;
2365
+ }>, z.ZodObject<{
2366
+ coin: z.ZodString;
2367
+ }, "strip", z.ZodTypeAny, {
2368
+ coin: string;
2369
+ }, {
2370
+ coin: string;
2371
+ }>]>>;
2372
+ setting_locked_time_add: z.ZodOptional<z.ZodNumber>;
2373
+ compensation_fund_receive: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2374
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2375
+ token_type: z.ZodEffects<z.ZodString, string, string>;
2376
+ received: z.ZodArray<z.ZodObject<{
2377
+ id: z.ZodString;
2378
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2379
+ payment: z.ZodString;
2380
+ }, "strict", z.ZodTypeAny, {
2381
+ id: string;
2382
+ balance: string | number;
2383
+ payment: string;
2384
+ }, {
2385
+ id: string;
2386
+ balance: string | number;
2387
+ payment: string;
2388
+ }>, "many">;
2389
+ }, "strict", z.ZodTypeAny, {
2390
+ received: {
2391
+ id: string;
2392
+ balance: string | number;
2393
+ payment: string;
2394
+ }[];
2395
+ balance: string | number;
2396
+ token_type: string;
2397
+ }, {
2398
+ received: {
2399
+ id: string;
2400
+ balance: string | number;
2401
+ payment: string;
2402
+ }[];
2403
+ balance: string | number;
2404
+ token_type: string;
2405
+ }>, z.ZodLiteral<"recently">]>>;
2406
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
2407
+ id: z.ZodString;
2408
+ type: z.ZodString;
2409
+ content_raw: z.ZodOptional<z.ZodAny>;
2410
+ }, "strict", z.ZodTypeAny, {
2411
+ type: string;
2412
+ id: string;
2413
+ content_raw?: any;
2414
+ }, {
2415
+ type: string;
2416
+ id: string;
2417
+ content_raw?: any;
2418
+ }>, "many">, z.ZodObject<{
2419
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2420
+ token_type: z.ZodEffects<z.ZodString, string, string>;
2421
+ received: z.ZodArray<z.ZodObject<{
2422
+ id: z.ZodString;
2423
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2424
+ payment: z.ZodString;
2425
+ }, "strict", z.ZodTypeAny, {
2426
+ id: string;
2427
+ balance: string | number;
2428
+ payment: string;
2429
+ }, {
2430
+ id: string;
2431
+ balance: string | number;
2432
+ payment: string;
2433
+ }>, "many">;
2434
+ }, "strict", z.ZodTypeAny, {
2435
+ received: {
2436
+ id: string;
2437
+ balance: string | number;
2438
+ payment: string;
2439
+ }[];
2440
+ balance: string | number;
2441
+ token_type: string;
2442
+ }, {
2443
+ received: {
2444
+ id: string;
2445
+ balance: string | number;
2446
+ payment: string;
2447
+ }[];
2448
+ balance: string | number;
2449
+ token_type: string;
2450
+ }>, z.ZodLiteral<"recently">]>>;
2451
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
2452
+ pause: z.ZodOptional<z.ZodBoolean>;
2453
+ publish: z.ZodOptional<z.ZodBoolean>;
2454
+ }, "strict", z.ZodTypeAny, {
2455
+ object: string | {
2456
+ type_parameter: string;
2457
+ name?: string | undefined;
2458
+ replaceExistName?: boolean | undefined;
2459
+ tags?: string[] | undefined;
2460
+ onChain?: boolean | undefined;
2461
+ permission?: string | {
2462
+ name?: string | undefined;
2463
+ description?: string | undefined;
2464
+ replaceExistName?: boolean | undefined;
2465
+ tags?: string[] | undefined;
2466
+ onChain?: boolean | undefined;
2467
+ } | undefined;
2468
+ };
2469
+ description?: string | undefined;
2470
+ location?: string | undefined;
2471
+ owner_receive?: {
2472
+ received: {
2473
+ id: string;
2474
+ balance: string | number;
2475
+ payment: string;
2476
+ }[];
2477
+ balance: string | number;
2478
+ token_type: string;
2479
+ } | "recently" | {
2480
+ type: string;
2481
+ id: string;
2482
+ content_raw?: any;
2483
+ }[] | undefined;
2484
+ rewards?: {
2485
+ op: "set" | "add";
2486
+ objects: string[];
2487
+ } | {
2488
+ op: "remove";
2489
+ objects: string[];
2490
+ } | {
2491
+ op: "clear";
2492
+ } | undefined;
2493
+ um?: string | null | undefined;
2494
+ discount?: {
2495
+ name: string;
2496
+ recipient: {
2497
+ entities: {
2498
+ name_or_address?: string | undefined;
2499
+ local_mark_first?: boolean | undefined;
2500
+ }[];
2501
+ check_all_founded?: boolean | undefined;
2502
+ };
2503
+ discount_type: import("wowok").DiscountType;
2504
+ discount_value: string | number;
2505
+ count?: number | undefined;
2506
+ benchmark?: string | number | undefined;
2507
+ transferable?: boolean | undefined;
2508
+ time_ms_start?: number | undefined;
2509
+ time_ms_end?: number | undefined;
2510
+ } | undefined;
2511
+ machine?: string | null | undefined;
2512
+ sales?: {
2513
+ op: "add";
2514
+ sales: {
2515
+ name: string;
2516
+ wip: string;
2517
+ price: string | number;
2518
+ stock: string | number;
2519
+ suspension: boolean;
2520
+ wip_hash: string;
2521
+ }[];
2522
+ } | {
2523
+ op: "set";
2524
+ sales: {
2525
+ name: string;
2526
+ wip: string;
2527
+ price: string | number;
2528
+ stock: string | number;
2529
+ suspension: boolean;
2530
+ wip_hash: string;
2531
+ }[];
2532
+ } | {
2533
+ op: "remove";
2534
+ sales_name: string[];
2535
+ } | {
2536
+ op: "clear";
2537
+ } | undefined;
2538
+ repositories?: {
2539
+ op: "set" | "add";
2540
+ objects: string[];
2541
+ } | {
2542
+ op: "remove";
2543
+ objects: string[];
2544
+ } | {
2545
+ op: "clear";
2546
+ } | undefined;
2547
+ buy_guard?: string | null | undefined;
2548
+ customer_required?: string[] | undefined;
2549
+ arbitrations?: {
2550
+ op: "set" | "add";
2551
+ objects: string[];
2552
+ } | {
2553
+ op: "remove";
2554
+ objects: string[];
2555
+ } | {
2556
+ op: "clear";
2557
+ } | undefined;
2558
+ order_allocators?: {
2559
+ description: string;
2560
+ threshold: string | number;
2561
+ allocators: {
2562
+ guard: string;
2563
+ sharing: {
2564
+ who: {
2565
+ GuardIdentifier: number;
2566
+ } | {
2567
+ Entity: {
2568
+ name_or_address?: string | undefined;
2569
+ local_mark_first?: boolean | undefined;
2570
+ };
2571
+ } | {
2572
+ Signer: "signer";
2573
+ };
2574
+ sharing: string | number;
2575
+ mode: "Amount" | "Rate" | "Surplus";
2576
+ }[];
2577
+ max?: string | number | null | undefined;
2578
+ fix?: string | number | undefined;
2579
+ }[];
2580
+ } | null | undefined;
2581
+ pause?: boolean | undefined;
2582
+ publish?: boolean | undefined;
2583
+ order_new?: {
2584
+ buy: {
2585
+ items: {
2586
+ name: string;
2587
+ stock: string | number;
2588
+ wip_hash: string;
2589
+ }[];
2590
+ total_pay: {
2591
+ balance: string | number;
2592
+ } | {
2593
+ coin: string;
2594
+ };
2595
+ discount?: string | undefined;
2596
+ payment_remark?: string | undefined;
2597
+ payment_index?: number | undefined;
2598
+ };
2599
+ transfer?: {
2600
+ name_or_address?: string | undefined;
2601
+ local_mark_first?: boolean | undefined;
2602
+ } | undefined;
2603
+ agents?: {
2604
+ entities: {
2605
+ name_or_address?: string | undefined;
2606
+ local_mark_first?: boolean | undefined;
2607
+ }[];
2608
+ check_all_founded?: boolean | undefined;
2609
+ } | undefined;
2610
+ order_required_info?: string | undefined;
2611
+ namedNewOrder?: {
2612
+ name?: string | undefined;
2613
+ replaceExistName?: boolean | undefined;
2614
+ tags?: string[] | undefined;
2615
+ onChain?: boolean | undefined;
2616
+ } | undefined;
2617
+ namedNewAllocation?: {
2618
+ name?: string | undefined;
2619
+ replaceExistName?: boolean | undefined;
2620
+ tags?: string[] | undefined;
2621
+ onChain?: boolean | undefined;
2622
+ } | undefined;
2623
+ namedNewProgress?: {
2624
+ name?: string | undefined;
2625
+ replaceExistName?: boolean | undefined;
2626
+ tags?: string[] | undefined;
2627
+ onChain?: boolean | undefined;
2628
+ } | undefined;
2629
+ } | undefined;
2630
+ discount_destroy?: string[] | undefined;
2631
+ compensation_fund_add?: {
2632
+ balance: string | number;
2633
+ } | {
2634
+ coin: string;
2635
+ } | undefined;
2636
+ setting_locked_time_add?: number | undefined;
2637
+ compensation_fund_receive?: {
2638
+ received: {
2639
+ id: string;
2640
+ balance: string | number;
2641
+ payment: string;
2642
+ }[];
2643
+ balance: string | number;
2644
+ token_type: string;
2645
+ } | "recently" | undefined;
2646
+ }, {
2647
+ object: string | {
2648
+ name?: string | undefined;
2649
+ replaceExistName?: boolean | undefined;
2650
+ tags?: string[] | undefined;
2651
+ onChain?: boolean | undefined;
2652
+ type_parameter?: string | undefined;
2653
+ permission?: string | {
2654
+ name?: string | undefined;
2655
+ description?: string | undefined;
2656
+ replaceExistName?: boolean | undefined;
2657
+ tags?: string[] | undefined;
2658
+ onChain?: boolean | undefined;
2659
+ } | undefined;
2660
+ };
2661
+ description?: string | undefined;
2662
+ location?: string | undefined;
2663
+ owner_receive?: {
2664
+ received: {
2665
+ id: string;
2666
+ balance: string | number;
2667
+ payment: string;
2668
+ }[];
2669
+ balance: string | number;
2670
+ token_type: string;
2671
+ } | "recently" | {
2672
+ type: string;
2673
+ id: string;
2674
+ content_raw?: any;
2675
+ }[] | undefined;
2676
+ rewards?: {
2677
+ op: "set" | "add";
2678
+ objects: string[];
2679
+ } | {
2680
+ op: "remove";
2681
+ objects: string[];
2682
+ } | {
2683
+ op: "clear";
2684
+ } | undefined;
2685
+ um?: string | null | undefined;
2686
+ discount?: {
2687
+ name: string;
2688
+ recipient: {
2689
+ entities: {
2690
+ name_or_address?: string | undefined;
2691
+ local_mark_first?: boolean | undefined;
2692
+ }[];
2693
+ check_all_founded?: boolean | undefined;
2694
+ };
2695
+ discount_type: import("wowok").DiscountType;
2696
+ discount_value: string | number;
2697
+ count?: number | undefined;
2698
+ benchmark?: string | number | undefined;
2699
+ transferable?: boolean | undefined;
2700
+ time_ms_start?: number | undefined;
2701
+ time_ms_end?: number | undefined;
2702
+ } | undefined;
2703
+ machine?: string | null | undefined;
2704
+ sales?: {
2705
+ op: "add";
2706
+ sales: {
2707
+ name: string;
2708
+ wip: string;
2709
+ price: string | number;
2710
+ stock: string | number;
2711
+ suspension: boolean;
2712
+ wip_hash: string;
2713
+ }[];
2714
+ } | {
2715
+ op: "set";
2716
+ sales: {
2717
+ name: string;
2718
+ wip: string;
2719
+ price: string | number;
2720
+ stock: string | number;
2721
+ suspension: boolean;
2722
+ wip_hash: string;
2723
+ }[];
2724
+ } | {
2725
+ op: "remove";
2726
+ sales_name: string[];
2727
+ } | {
2728
+ op: "clear";
2729
+ } | undefined;
2730
+ repositories?: {
2731
+ op: "set" | "add";
2732
+ objects: string[];
2733
+ } | {
2734
+ op: "remove";
2735
+ objects: string[];
2736
+ } | {
2737
+ op: "clear";
2738
+ } | undefined;
2739
+ buy_guard?: string | null | undefined;
2740
+ customer_required?: string[] | undefined;
2741
+ arbitrations?: {
2742
+ op: "set" | "add";
2743
+ objects: string[];
2744
+ } | {
2745
+ op: "remove";
2746
+ objects: string[];
2747
+ } | {
2748
+ op: "clear";
2749
+ } | undefined;
2750
+ order_allocators?: {
2751
+ description: string;
2752
+ threshold: string | number;
2753
+ allocators: {
2754
+ guard: string;
2755
+ sharing: {
2756
+ who: {
2757
+ GuardIdentifier: number;
2758
+ } | {
2759
+ Entity: {
2760
+ name_or_address?: string | undefined;
2761
+ local_mark_first?: boolean | undefined;
2762
+ };
2763
+ } | {
2764
+ Signer: "signer";
2765
+ };
2766
+ sharing: string | number;
2767
+ mode: "Amount" | "Rate" | "Surplus";
2768
+ }[];
2769
+ max?: string | number | null | undefined;
2770
+ fix?: string | number | undefined;
2771
+ }[];
2772
+ } | null | undefined;
2773
+ pause?: boolean | undefined;
2774
+ publish?: boolean | undefined;
2775
+ order_new?: {
2776
+ buy: {
2777
+ items: {
2778
+ name: string;
2779
+ stock: string | number;
2780
+ wip_hash: string;
2781
+ }[];
2782
+ total_pay: {
2783
+ balance: string | number;
2784
+ } | {
2785
+ coin: string;
2786
+ };
2787
+ discount?: string | undefined;
2788
+ payment_remark?: string | undefined;
2789
+ payment_index?: number | undefined;
2790
+ };
2791
+ transfer?: {
2792
+ name_or_address?: string | undefined;
2793
+ local_mark_first?: boolean | undefined;
2794
+ } | undefined;
2795
+ agents?: {
2796
+ entities: {
2797
+ name_or_address?: string | undefined;
2798
+ local_mark_first?: boolean | undefined;
2799
+ }[];
2800
+ check_all_founded?: boolean | undefined;
2801
+ } | undefined;
2802
+ order_required_info?: string | undefined;
2803
+ namedNewOrder?: {
2804
+ name?: string | undefined;
2805
+ replaceExistName?: boolean | undefined;
2806
+ tags?: string[] | undefined;
2807
+ onChain?: boolean | undefined;
2808
+ } | undefined;
2809
+ namedNewAllocation?: {
2810
+ name?: string | undefined;
2811
+ replaceExistName?: boolean | undefined;
2812
+ tags?: string[] | undefined;
2813
+ onChain?: boolean | undefined;
2814
+ } | undefined;
2815
+ namedNewProgress?: {
2816
+ name?: string | undefined;
2817
+ replaceExistName?: boolean | undefined;
2818
+ tags?: string[] | undefined;
2819
+ onChain?: boolean | undefined;
2820
+ } | undefined;
2821
+ } | undefined;
2822
+ discount_destroy?: string[] | undefined;
2823
+ compensation_fund_add?: {
2824
+ balance: string | number;
2825
+ } | {
2826
+ coin: string;
2827
+ } | undefined;
2828
+ setting_locked_time_add?: number | undefined;
2829
+ compensation_fund_receive?: {
2830
+ received: {
2831
+ id: string;
2832
+ balance: string | number;
2833
+ payment: string;
2834
+ }[];
2835
+ balance: string | number;
2836
+ token_type: string;
2837
+ } | "recently" | undefined;
2838
+ }>;
2839
+ env: z.ZodOptional<z.ZodObject<{
2840
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
2841
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2842
+ no_cache: z.ZodOptional<z.ZodBoolean>;
2843
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
2844
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2845
+ }, "strict", z.ZodTypeAny, {
2846
+ account: string;
2847
+ no_cache?: boolean | undefined;
2848
+ network?: import("wowok").ENTRYPOINT | undefined;
2849
+ permission_guard?: string[] | undefined;
2850
+ referrer?: string | undefined;
2851
+ }, {
2852
+ no_cache?: boolean | undefined;
2853
+ network?: import("wowok").ENTRYPOINT | undefined;
2854
+ account?: string | undefined;
2855
+ permission_guard?: string[] | undefined;
2856
+ referrer?: string | undefined;
2857
+ }>>;
2858
+ submission: z.ZodOptional<z.ZodObject<{
2859
+ type: z.ZodLiteral<"submission">;
2860
+ guard: z.ZodArray<z.ZodObject<{
2861
+ object: z.ZodEffects<z.ZodString, string, string>;
2862
+ impack: z.ZodBoolean;
2863
+ }, "strict", z.ZodTypeAny, {
2864
+ object: string;
2865
+ impack: boolean;
2866
+ }, {
2867
+ object: string;
2868
+ impack: boolean;
2869
+ }>, "many">;
2870
+ submission: z.ZodArray<z.ZodObject<{
2871
+ guard: z.ZodEffects<z.ZodString, string, string>;
2872
+ submission: z.ZodArray<z.ZodObject<{
2873
+ identifier: z.ZodNumber;
2874
+ b_submission: z.ZodBoolean;
2875
+ 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">]>;
2876
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
2877
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2878
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
2879
+ }, "strict", z.ZodTypeAny, {
2880
+ name_or_address?: string | undefined;
2881
+ local_mark_first?: boolean | undefined;
2882
+ }, {
2883
+ name_or_address?: string | undefined;
2884
+ local_mark_first?: boolean | undefined;
2885
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
2886
+ entities: z.ZodArray<z.ZodObject<{
2887
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2888
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
2889
+ }, "strict", z.ZodTypeAny, {
2890
+ name_or_address?: string | undefined;
2891
+ local_mark_first?: boolean | undefined;
2892
+ }, {
2893
+ name_or_address?: string | undefined;
2894
+ local_mark_first?: boolean | undefined;
2895
+ }>, "many">;
2896
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
2897
+ }, "strict", z.ZodTypeAny, {
2898
+ entities: {
2899
+ name_or_address?: string | undefined;
2900
+ local_mark_first?: boolean | undefined;
2901
+ }[];
2902
+ check_all_founded?: boolean | undefined;
2903
+ }, {
2904
+ entities: {
2905
+ name_or_address?: string | undefined;
2906
+ local_mark_first?: boolean | undefined;
2907
+ }[];
2908
+ check_all_founded?: boolean | undefined;
2909
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
2910
+ name: z.ZodDefault<z.ZodString>;
2911
+ } & {
2912
+ 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]>>;
2913
+ }, "strict", z.ZodTypeAny, {
2914
+ identifier: number;
2915
+ b_submission: boolean;
2916
+ 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";
2917
+ name: string;
2918
+ value?: string | number | boolean | {
2919
+ name_or_address?: string | undefined;
2920
+ local_mark_first?: boolean | undefined;
2921
+ } | {
2922
+ entities: {
2923
+ name_or_address?: string | undefined;
2924
+ local_mark_first?: boolean | undefined;
2925
+ }[];
2926
+ check_all_founded?: boolean | undefined;
2927
+ } | string[] | boolean[] | number[] | number[][] | undefined;
2928
+ object_type?: import("wowok").ObjectType | undefined;
2929
+ }, {
2930
+ identifier: number;
2931
+ b_submission: boolean;
2932
+ 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";
2933
+ value?: string | number | boolean | {
2934
+ name_or_address?: string | undefined;
2935
+ local_mark_first?: boolean | undefined;
2936
+ } | {
2937
+ entities: {
2938
+ name_or_address?: string | undefined;
2939
+ local_mark_first?: boolean | undefined;
2940
+ }[];
2941
+ check_all_founded?: boolean | undefined;
2942
+ } | string[] | boolean[] | number[] | number[][] | undefined;
2943
+ name?: string | undefined;
2944
+ object_type?: import("wowok").ObjectType | undefined;
2945
+ }>, "many">;
2946
+ }, "strict", z.ZodTypeAny, {
2947
+ guard: string;
2948
+ submission: {
2949
+ identifier: number;
2950
+ b_submission: boolean;
2951
+ 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";
2952
+ name: string;
2953
+ value?: string | number | boolean | {
2954
+ name_or_address?: string | undefined;
2955
+ local_mark_first?: boolean | undefined;
2956
+ } | {
2957
+ entities: {
2958
+ name_or_address?: string | undefined;
2959
+ local_mark_first?: boolean | undefined;
2960
+ }[];
2961
+ check_all_founded?: boolean | undefined;
2962
+ } | string[] | boolean[] | number[] | number[][] | undefined;
2963
+ object_type?: import("wowok").ObjectType | undefined;
2964
+ }[];
2965
+ }, {
2966
+ guard: string;
2967
+ submission: {
2968
+ identifier: number;
2969
+ b_submission: boolean;
2970
+ 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";
2971
+ value?: string | number | boolean | {
2972
+ name_or_address?: string | undefined;
2973
+ local_mark_first?: boolean | undefined;
2974
+ } | {
2975
+ entities: {
2976
+ name_or_address?: string | undefined;
2977
+ local_mark_first?: boolean | undefined;
2978
+ }[];
2979
+ check_all_founded?: boolean | undefined;
2980
+ } | string[] | boolean[] | number[] | number[][] | undefined;
2981
+ name?: string | undefined;
2982
+ object_type?: import("wowok").ObjectType | undefined;
2983
+ }[];
2984
+ }>, "many">;
2985
+ }, "strict", z.ZodTypeAny, {
2986
+ type: "submission";
2987
+ guard: {
2988
+ object: string;
2989
+ impack: boolean;
2990
+ }[];
2991
+ submission: {
2992
+ guard: string;
2993
+ submission: {
2994
+ identifier: number;
2995
+ b_submission: boolean;
2996
+ 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";
2997
+ name: string;
2998
+ value?: string | number | boolean | {
2999
+ name_or_address?: string | undefined;
3000
+ local_mark_first?: boolean | undefined;
3001
+ } | {
3002
+ entities: {
3003
+ name_or_address?: string | undefined;
3004
+ local_mark_first?: boolean | undefined;
3005
+ }[];
3006
+ check_all_founded?: boolean | undefined;
3007
+ } | string[] | boolean[] | number[] | number[][] | undefined;
3008
+ object_type?: import("wowok").ObjectType | undefined;
3009
+ }[];
3010
+ }[];
3011
+ }, {
3012
+ type: "submission";
3013
+ guard: {
3014
+ object: string;
3015
+ impack: boolean;
3016
+ }[];
3017
+ submission: {
3018
+ guard: string;
3019
+ submission: {
3020
+ identifier: number;
3021
+ b_submission: boolean;
3022
+ 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";
3023
+ value?: string | number | boolean | {
3024
+ name_or_address?: string | undefined;
3025
+ local_mark_first?: boolean | undefined;
3026
+ } | {
3027
+ entities: {
3028
+ name_or_address?: string | undefined;
3029
+ local_mark_first?: boolean | undefined;
3030
+ }[];
3031
+ check_all_founded?: boolean | undefined;
3032
+ } | string[] | boolean[] | number[] | number[][] | undefined;
3033
+ name?: string | undefined;
3034
+ object_type?: import("wowok").ObjectType | undefined;
3035
+ }[];
3036
+ }[];
3037
+ }>>;
3038
+ }, "strict", z.ZodTypeAny, {
3039
+ data: {
3040
+ object: string | {
3041
+ type_parameter: string;
3042
+ name?: string | undefined;
3043
+ replaceExistName?: boolean | undefined;
3044
+ tags?: string[] | undefined;
3045
+ onChain?: boolean | undefined;
3046
+ permission?: string | {
3047
+ name?: string | undefined;
3048
+ description?: string | undefined;
3049
+ replaceExistName?: boolean | undefined;
3050
+ tags?: string[] | undefined;
3051
+ onChain?: boolean | undefined;
3052
+ } | undefined;
3053
+ };
3054
+ description?: string | undefined;
3055
+ location?: string | undefined;
3056
+ owner_receive?: {
3057
+ received: {
3058
+ id: string;
3059
+ balance: string | number;
3060
+ payment: string;
3061
+ }[];
3062
+ balance: string | number;
3063
+ token_type: string;
3064
+ } | "recently" | {
3065
+ type: string;
3066
+ id: string;
3067
+ content_raw?: any;
3068
+ }[] | undefined;
3069
+ rewards?: {
3070
+ op: "set" | "add";
3071
+ objects: string[];
3072
+ } | {
3073
+ op: "remove";
3074
+ objects: string[];
3075
+ } | {
3076
+ op: "clear";
3077
+ } | undefined;
3078
+ um?: string | null | undefined;
3079
+ discount?: {
3080
+ name: string;
3081
+ recipient: {
3082
+ entities: {
3083
+ name_or_address?: string | undefined;
3084
+ local_mark_first?: boolean | undefined;
3085
+ }[];
3086
+ check_all_founded?: boolean | undefined;
3087
+ };
3088
+ discount_type: import("wowok").DiscountType;
3089
+ discount_value: string | number;
3090
+ count?: number | undefined;
3091
+ benchmark?: string | number | undefined;
3092
+ transferable?: boolean | undefined;
3093
+ time_ms_start?: number | undefined;
3094
+ time_ms_end?: number | undefined;
3095
+ } | undefined;
3096
+ machine?: string | null | undefined;
3097
+ sales?: {
3098
+ op: "add";
3099
+ sales: {
3100
+ name: string;
3101
+ wip: string;
3102
+ price: string | number;
3103
+ stock: string | number;
3104
+ suspension: boolean;
3105
+ wip_hash: string;
3106
+ }[];
3107
+ } | {
3108
+ op: "set";
3109
+ sales: {
3110
+ name: string;
3111
+ wip: string;
3112
+ price: string | number;
3113
+ stock: string | number;
3114
+ suspension: boolean;
3115
+ wip_hash: string;
3116
+ }[];
3117
+ } | {
3118
+ op: "remove";
3119
+ sales_name: string[];
3120
+ } | {
3121
+ op: "clear";
3122
+ } | undefined;
3123
+ repositories?: {
3124
+ op: "set" | "add";
3125
+ objects: string[];
3126
+ } | {
3127
+ op: "remove";
3128
+ objects: string[];
3129
+ } | {
3130
+ op: "clear";
3131
+ } | undefined;
3132
+ buy_guard?: string | null | undefined;
3133
+ customer_required?: string[] | undefined;
3134
+ arbitrations?: {
3135
+ op: "set" | "add";
3136
+ objects: string[];
3137
+ } | {
3138
+ op: "remove";
3139
+ objects: string[];
3140
+ } | {
3141
+ op: "clear";
3142
+ } | undefined;
3143
+ order_allocators?: {
3144
+ description: string;
3145
+ threshold: string | number;
3146
+ allocators: {
3147
+ guard: string;
3148
+ sharing: {
3149
+ who: {
3150
+ GuardIdentifier: number;
3151
+ } | {
3152
+ Entity: {
3153
+ name_or_address?: string | undefined;
3154
+ local_mark_first?: boolean | undefined;
3155
+ };
3156
+ } | {
3157
+ Signer: "signer";
3158
+ };
3159
+ sharing: string | number;
3160
+ mode: "Amount" | "Rate" | "Surplus";
3161
+ }[];
3162
+ max?: string | number | null | undefined;
3163
+ fix?: string | number | undefined;
3164
+ }[];
3165
+ } | null | undefined;
3166
+ pause?: boolean | undefined;
3167
+ publish?: boolean | undefined;
3168
+ order_new?: {
3169
+ buy: {
3170
+ items: {
3171
+ name: string;
3172
+ stock: string | number;
3173
+ wip_hash: string;
3174
+ }[];
3175
+ total_pay: {
3176
+ balance: string | number;
3177
+ } | {
3178
+ coin: string;
3179
+ };
3180
+ discount?: string | undefined;
3181
+ payment_remark?: string | undefined;
3182
+ payment_index?: number | undefined;
3183
+ };
3184
+ transfer?: {
3185
+ name_or_address?: string | undefined;
3186
+ local_mark_first?: boolean | undefined;
3187
+ } | undefined;
3188
+ agents?: {
3189
+ entities: {
3190
+ name_or_address?: string | undefined;
3191
+ local_mark_first?: boolean | undefined;
3192
+ }[];
3193
+ check_all_founded?: boolean | undefined;
3194
+ } | undefined;
3195
+ order_required_info?: string | undefined;
3196
+ namedNewOrder?: {
3197
+ name?: string | undefined;
3198
+ replaceExistName?: boolean | undefined;
3199
+ tags?: string[] | undefined;
3200
+ onChain?: boolean | undefined;
3201
+ } | undefined;
3202
+ namedNewAllocation?: {
3203
+ name?: string | undefined;
3204
+ replaceExistName?: boolean | undefined;
3205
+ tags?: string[] | undefined;
3206
+ onChain?: boolean | undefined;
3207
+ } | undefined;
3208
+ namedNewProgress?: {
3209
+ name?: string | undefined;
3210
+ replaceExistName?: boolean | undefined;
3211
+ tags?: string[] | undefined;
3212
+ onChain?: boolean | undefined;
3213
+ } | undefined;
3214
+ } | undefined;
3215
+ discount_destroy?: string[] | undefined;
3216
+ compensation_fund_add?: {
3217
+ balance: string | number;
3218
+ } | {
3219
+ coin: string;
3220
+ } | undefined;
3221
+ setting_locked_time_add?: number | undefined;
3222
+ compensation_fund_receive?: {
3223
+ received: {
3224
+ id: string;
3225
+ balance: string | number;
3226
+ payment: string;
3227
+ }[];
3228
+ balance: string | number;
3229
+ token_type: string;
3230
+ } | "recently" | undefined;
3231
+ };
3232
+ submission?: {
3233
+ type: "submission";
3234
+ guard: {
3235
+ object: string;
3236
+ impack: boolean;
3237
+ }[];
3238
+ submission: {
3239
+ guard: string;
3240
+ submission: {
3241
+ identifier: number;
3242
+ b_submission: boolean;
3243
+ 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";
3244
+ name: string;
3245
+ value?: string | number | boolean | {
3246
+ name_or_address?: string | undefined;
3247
+ local_mark_first?: boolean | undefined;
3248
+ } | {
3249
+ entities: {
3250
+ name_or_address?: string | undefined;
3251
+ local_mark_first?: boolean | undefined;
3252
+ }[];
3253
+ check_all_founded?: boolean | undefined;
3254
+ } | string[] | boolean[] | number[] | number[][] | undefined;
3255
+ object_type?: import("wowok").ObjectType | undefined;
3256
+ }[];
3257
+ }[];
3258
+ } | undefined;
3259
+ env?: {
3260
+ account: string;
3261
+ no_cache?: boolean | undefined;
3262
+ network?: import("wowok").ENTRYPOINT | undefined;
3263
+ permission_guard?: string[] | undefined;
3264
+ referrer?: string | undefined;
3265
+ } | undefined;
3266
+ }, {
3267
+ data: {
3268
+ object: string | {
3269
+ name?: string | undefined;
3270
+ replaceExistName?: boolean | undefined;
3271
+ tags?: string[] | undefined;
3272
+ onChain?: boolean | undefined;
3273
+ type_parameter?: string | undefined;
3274
+ permission?: string | {
3275
+ name?: string | undefined;
3276
+ description?: string | undefined;
3277
+ replaceExistName?: boolean | undefined;
3278
+ tags?: string[] | undefined;
3279
+ onChain?: boolean | undefined;
3280
+ } | undefined;
3281
+ };
3282
+ description?: string | undefined;
3283
+ location?: string | undefined;
3284
+ owner_receive?: {
3285
+ received: {
3286
+ id: string;
3287
+ balance: string | number;
3288
+ payment: string;
3289
+ }[];
3290
+ balance: string | number;
3291
+ token_type: string;
3292
+ } | "recently" | {
3293
+ type: string;
3294
+ id: string;
3295
+ content_raw?: any;
3296
+ }[] | undefined;
3297
+ rewards?: {
3298
+ op: "set" | "add";
3299
+ objects: string[];
3300
+ } | {
3301
+ op: "remove";
3302
+ objects: string[];
3303
+ } | {
3304
+ op: "clear";
3305
+ } | undefined;
3306
+ um?: string | null | undefined;
3307
+ discount?: {
3308
+ name: string;
3309
+ recipient: {
3310
+ entities: {
3311
+ name_or_address?: string | undefined;
3312
+ local_mark_first?: boolean | undefined;
3313
+ }[];
3314
+ check_all_founded?: boolean | undefined;
3315
+ };
3316
+ discount_type: import("wowok").DiscountType;
3317
+ discount_value: string | number;
3318
+ count?: number | undefined;
3319
+ benchmark?: string | number | undefined;
3320
+ transferable?: boolean | undefined;
3321
+ time_ms_start?: number | undefined;
3322
+ time_ms_end?: number | undefined;
3323
+ } | undefined;
3324
+ machine?: string | null | undefined;
3325
+ sales?: {
3326
+ op: "add";
3327
+ sales: {
3328
+ name: string;
3329
+ wip: string;
3330
+ price: string | number;
3331
+ stock: string | number;
3332
+ suspension: boolean;
3333
+ wip_hash: string;
3334
+ }[];
3335
+ } | {
3336
+ op: "set";
3337
+ sales: {
3338
+ name: string;
3339
+ wip: string;
3340
+ price: string | number;
3341
+ stock: string | number;
3342
+ suspension: boolean;
3343
+ wip_hash: string;
3344
+ }[];
3345
+ } | {
3346
+ op: "remove";
3347
+ sales_name: string[];
3348
+ } | {
3349
+ op: "clear";
3350
+ } | undefined;
3351
+ repositories?: {
3352
+ op: "set" | "add";
3353
+ objects: string[];
3354
+ } | {
3355
+ op: "remove";
3356
+ objects: string[];
3357
+ } | {
3358
+ op: "clear";
3359
+ } | undefined;
3360
+ buy_guard?: string | null | undefined;
3361
+ customer_required?: string[] | undefined;
3362
+ arbitrations?: {
3363
+ op: "set" | "add";
3364
+ objects: string[];
3365
+ } | {
3366
+ op: "remove";
3367
+ objects: string[];
3368
+ } | {
3369
+ op: "clear";
3370
+ } | undefined;
3371
+ order_allocators?: {
3372
+ description: string;
3373
+ threshold: string | number;
3374
+ allocators: {
3375
+ guard: string;
3376
+ sharing: {
3377
+ who: {
3378
+ GuardIdentifier: number;
3379
+ } | {
3380
+ Entity: {
3381
+ name_or_address?: string | undefined;
3382
+ local_mark_first?: boolean | undefined;
3383
+ };
3384
+ } | {
3385
+ Signer: "signer";
3386
+ };
3387
+ sharing: string | number;
3388
+ mode: "Amount" | "Rate" | "Surplus";
3389
+ }[];
3390
+ max?: string | number | null | undefined;
3391
+ fix?: string | number | undefined;
3392
+ }[];
3393
+ } | null | undefined;
3394
+ pause?: boolean | undefined;
3395
+ publish?: boolean | undefined;
3396
+ order_new?: {
3397
+ buy: {
3398
+ items: {
3399
+ name: string;
3400
+ stock: string | number;
3401
+ wip_hash: string;
3402
+ }[];
3403
+ total_pay: {
3404
+ balance: string | number;
3405
+ } | {
3406
+ coin: string;
3407
+ };
3408
+ discount?: string | undefined;
3409
+ payment_remark?: string | undefined;
3410
+ payment_index?: number | undefined;
3411
+ };
3412
+ transfer?: {
3413
+ name_or_address?: string | undefined;
3414
+ local_mark_first?: boolean | undefined;
3415
+ } | undefined;
3416
+ agents?: {
3417
+ entities: {
3418
+ name_or_address?: string | undefined;
3419
+ local_mark_first?: boolean | undefined;
3420
+ }[];
3421
+ check_all_founded?: boolean | undefined;
3422
+ } | undefined;
3423
+ order_required_info?: string | undefined;
3424
+ namedNewOrder?: {
3425
+ name?: string | undefined;
3426
+ replaceExistName?: boolean | undefined;
3427
+ tags?: string[] | undefined;
3428
+ onChain?: boolean | undefined;
3429
+ } | undefined;
3430
+ namedNewAllocation?: {
3431
+ name?: string | undefined;
3432
+ replaceExistName?: boolean | undefined;
3433
+ tags?: string[] | undefined;
3434
+ onChain?: boolean | undefined;
3435
+ } | undefined;
3436
+ namedNewProgress?: {
3437
+ name?: string | undefined;
3438
+ replaceExistName?: boolean | undefined;
3439
+ tags?: string[] | undefined;
3440
+ onChain?: boolean | undefined;
3441
+ } | undefined;
3442
+ } | undefined;
3443
+ discount_destroy?: string[] | undefined;
3444
+ compensation_fund_add?: {
3445
+ balance: string | number;
3446
+ } | {
3447
+ coin: string;
3448
+ } | undefined;
3449
+ setting_locked_time_add?: number | undefined;
3450
+ compensation_fund_receive?: {
3451
+ received: {
3452
+ id: string;
3453
+ balance: string | number;
3454
+ payment: string;
3455
+ }[];
3456
+ balance: string | number;
3457
+ token_type: string;
3458
+ } | "recently" | undefined;
3459
+ };
3460
+ submission?: {
3461
+ type: "submission";
3462
+ guard: {
3463
+ object: string;
3464
+ impack: boolean;
3465
+ }[];
3466
+ submission: {
3467
+ guard: string;
3468
+ submission: {
3469
+ identifier: number;
3470
+ b_submission: boolean;
3471
+ 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";
3472
+ value?: string | number | boolean | {
3473
+ name_or_address?: string | undefined;
3474
+ local_mark_first?: boolean | undefined;
3475
+ } | {
3476
+ entities: {
3477
+ name_or_address?: string | undefined;
3478
+ local_mark_first?: boolean | undefined;
3479
+ }[];
3480
+ check_all_founded?: boolean | undefined;
3481
+ } | string[] | boolean[] | number[] | number[][] | undefined;
3482
+ name?: string | undefined;
3483
+ object_type?: import("wowok").ObjectType | undefined;
3484
+ }[];
3485
+ }[];
3486
+ } | undefined;
3487
+ env?: {
3488
+ no_cache?: boolean | undefined;
3489
+ network?: import("wowok").ENTRYPOINT | undefined;
3490
+ account?: string | undefined;
3491
+ permission_guard?: string[] | undefined;
3492
+ referrer?: string | undefined;
3493
+ } | undefined;
3494
+ }>;