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