@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,1265 @@
1
+ import { z } from 'zod';
2
+ export declare const GuardsSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
3
+ op: z.ZodLiteral<"add">;
4
+ guard: z.ZodArray<z.ZodObject<{
5
+ guard: z.ZodString;
6
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ guard: string;
9
+ service_identifier?: number | null | undefined;
10
+ }, {
11
+ guard: string;
12
+ service_identifier?: number | null | undefined;
13
+ }>, "many">;
14
+ }, "strict", z.ZodTypeAny, {
15
+ op: "add";
16
+ guard: {
17
+ guard: string;
18
+ service_identifier?: number | null | undefined;
19
+ }[];
20
+ }, {
21
+ op: "add";
22
+ guard: {
23
+ guard: string;
24
+ service_identifier?: number | null | undefined;
25
+ }[];
26
+ }>, z.ZodObject<{
27
+ op: z.ZodLiteral<"set">;
28
+ guard: z.ZodArray<z.ZodObject<{
29
+ guard: z.ZodString;
30
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ guard: string;
33
+ service_identifier?: number | null | undefined;
34
+ }, {
35
+ guard: string;
36
+ service_identifier?: number | null | undefined;
37
+ }>, "many">;
38
+ }, "strict", z.ZodTypeAny, {
39
+ op: "set";
40
+ guard: {
41
+ guard: string;
42
+ service_identifier?: number | null | undefined;
43
+ }[];
44
+ }, {
45
+ op: "set";
46
+ guard: {
47
+ guard: string;
48
+ service_identifier?: number | null | undefined;
49
+ }[];
50
+ }>, z.ZodObject<{
51
+ op: z.ZodLiteral<"remove">;
52
+ guard: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
53
+ }, "strict", z.ZodTypeAny, {
54
+ op: "remove";
55
+ guard: string[];
56
+ }, {
57
+ op: "remove";
58
+ guard: string[];
59
+ }>, z.ZodObject<{
60
+ op: z.ZodLiteral<"clear">;
61
+ }, "strict", z.ZodTypeAny, {
62
+ op: "clear";
63
+ }, {
64
+ op: "clear";
65
+ }>]>;
66
+ export declare const DemandPresentSchema: z.ZodObject<{
67
+ recommend: z.ZodEffects<z.ZodString, string, string>;
68
+ by_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
69
+ service: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
70
+ }, "strict", z.ZodTypeAny, {
71
+ recommend: string;
72
+ service?: string | undefined;
73
+ by_guard?: string | undefined;
74
+ }, {
75
+ recommend: string;
76
+ service?: string | undefined;
77
+ by_guard?: string | undefined;
78
+ }>;
79
+ export declare const FeedbackInfoSchema: z.ZodObject<{
80
+ who: z.ZodObject<{
81
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
82
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
83
+ }, "strict", z.ZodTypeAny, {
84
+ name_or_address?: string | undefined;
85
+ local_mark_first?: boolean | undefined;
86
+ }, {
87
+ name_or_address?: string | undefined;
88
+ local_mark_first?: boolean | undefined;
89
+ }>;
90
+ acceptance_score: z.ZodOptional<z.ZodNumber>;
91
+ feedback: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
92
+ }, "strict", z.ZodTypeAny, {
93
+ who: {
94
+ name_or_address?: string | undefined;
95
+ local_mark_first?: boolean | undefined;
96
+ };
97
+ feedback?: string | undefined;
98
+ acceptance_score?: number | undefined;
99
+ }, {
100
+ who: {
101
+ name_or_address?: string | undefined;
102
+ local_mark_first?: boolean | undefined;
103
+ };
104
+ feedback?: string | undefined;
105
+ acceptance_score?: number | undefined;
106
+ }>;
107
+ export declare const CallDemand_DataSchema: z.ZodObject<{
108
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
109
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
110
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
111
+ onChain: z.ZodOptional<z.ZodBoolean>;
112
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
113
+ } & {
114
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
115
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
116
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
117
+ onChain: z.ZodOptional<z.ZodBoolean>;
118
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
119
+ } & {
120
+ description: z.ZodOptional<z.ZodString>;
121
+ }, "strict", z.ZodTypeAny, {
122
+ name?: string | undefined;
123
+ description?: string | undefined;
124
+ replaceExistName?: boolean | undefined;
125
+ tags?: string[] | undefined;
126
+ onChain?: boolean | undefined;
127
+ }, {
128
+ name?: string | undefined;
129
+ description?: string | undefined;
130
+ replaceExistName?: boolean | undefined;
131
+ tags?: string[] | undefined;
132
+ onChain?: boolean | undefined;
133
+ }>]>>;
134
+ }, "strict", z.ZodTypeAny, {
135
+ name?: string | undefined;
136
+ replaceExistName?: boolean | undefined;
137
+ tags?: string[] | undefined;
138
+ onChain?: boolean | undefined;
139
+ permission?: string | {
140
+ name?: string | undefined;
141
+ description?: string | undefined;
142
+ replaceExistName?: boolean | undefined;
143
+ tags?: string[] | undefined;
144
+ onChain?: boolean | undefined;
145
+ } | undefined;
146
+ }, {
147
+ name?: string | undefined;
148
+ replaceExistName?: boolean | undefined;
149
+ tags?: string[] | undefined;
150
+ onChain?: boolean | undefined;
151
+ permission?: string | {
152
+ name?: string | undefined;
153
+ description?: string | undefined;
154
+ replaceExistName?: boolean | undefined;
155
+ tags?: string[] | undefined;
156
+ onChain?: boolean | undefined;
157
+ } | undefined;
158
+ }>]>;
159
+ present: z.ZodOptional<z.ZodObject<{
160
+ recommend: z.ZodEffects<z.ZodString, string, string>;
161
+ by_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
162
+ service: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
163
+ }, "strict", z.ZodTypeAny, {
164
+ recommend: string;
165
+ service?: string | undefined;
166
+ by_guard?: string | undefined;
167
+ }, {
168
+ recommend: string;
169
+ service?: string | undefined;
170
+ by_guard?: string | undefined;
171
+ }>>;
172
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
173
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
174
+ rewards: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
175
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
176
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
177
+ }, "strict", z.ZodTypeAny, {
178
+ op: "set" | "add";
179
+ objects: string[];
180
+ }, {
181
+ op: "set" | "add";
182
+ objects: string[];
183
+ }>, z.ZodObject<{
184
+ op: z.ZodLiteral<"remove">;
185
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
186
+ }, "strict", z.ZodTypeAny, {
187
+ op: "remove";
188
+ objects: string[];
189
+ }, {
190
+ op: "remove";
191
+ objects: string[];
192
+ }>, z.ZodObject<{
193
+ op: z.ZodLiteral<"clear">;
194
+ }, "strict", z.ZodTypeAny, {
195
+ op: "clear";
196
+ }, {
197
+ op: "clear";
198
+ }>]>>;
199
+ feedback: z.ZodOptional<z.ZodArray<z.ZodObject<{
200
+ who: z.ZodObject<{
201
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
202
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
203
+ }, "strict", z.ZodTypeAny, {
204
+ name_or_address?: string | undefined;
205
+ local_mark_first?: boolean | undefined;
206
+ }, {
207
+ name_or_address?: string | undefined;
208
+ local_mark_first?: boolean | undefined;
209
+ }>;
210
+ acceptance_score: z.ZodOptional<z.ZodNumber>;
211
+ feedback: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
212
+ }, "strict", z.ZodTypeAny, {
213
+ who: {
214
+ name_or_address?: string | undefined;
215
+ local_mark_first?: boolean | undefined;
216
+ };
217
+ feedback?: string | undefined;
218
+ acceptance_score?: number | undefined;
219
+ }, {
220
+ who: {
221
+ name_or_address?: string | undefined;
222
+ local_mark_first?: boolean | undefined;
223
+ };
224
+ feedback?: string | undefined;
225
+ acceptance_score?: number | undefined;
226
+ }>, "many">>;
227
+ guards: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
228
+ op: z.ZodLiteral<"add">;
229
+ guard: z.ZodArray<z.ZodObject<{
230
+ guard: z.ZodString;
231
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
232
+ }, "strip", z.ZodTypeAny, {
233
+ guard: string;
234
+ service_identifier?: number | null | undefined;
235
+ }, {
236
+ guard: string;
237
+ service_identifier?: number | null | undefined;
238
+ }>, "many">;
239
+ }, "strict", z.ZodTypeAny, {
240
+ op: "add";
241
+ guard: {
242
+ guard: string;
243
+ service_identifier?: number | null | undefined;
244
+ }[];
245
+ }, {
246
+ op: "add";
247
+ guard: {
248
+ guard: string;
249
+ service_identifier?: number | null | undefined;
250
+ }[];
251
+ }>, z.ZodObject<{
252
+ op: z.ZodLiteral<"set">;
253
+ guard: z.ZodArray<z.ZodObject<{
254
+ guard: z.ZodString;
255
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
256
+ }, "strip", z.ZodTypeAny, {
257
+ guard: string;
258
+ service_identifier?: number | null | undefined;
259
+ }, {
260
+ guard: string;
261
+ service_identifier?: number | null | undefined;
262
+ }>, "many">;
263
+ }, "strict", z.ZodTypeAny, {
264
+ op: "set";
265
+ guard: {
266
+ guard: string;
267
+ service_identifier?: number | null | undefined;
268
+ }[];
269
+ }, {
270
+ op: "set";
271
+ guard: {
272
+ guard: string;
273
+ service_identifier?: number | null | undefined;
274
+ }[];
275
+ }>, z.ZodObject<{
276
+ op: z.ZodLiteral<"remove">;
277
+ guard: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
278
+ }, "strict", z.ZodTypeAny, {
279
+ op: "remove";
280
+ guard: string[];
281
+ }, {
282
+ op: "remove";
283
+ guard: string[];
284
+ }>, z.ZodObject<{
285
+ op: z.ZodLiteral<"clear">;
286
+ }, "strict", z.ZodTypeAny, {
287
+ op: "clear";
288
+ }, {
289
+ op: "clear";
290
+ }>]>>;
291
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
292
+ id: z.ZodString;
293
+ type: z.ZodString;
294
+ content_raw: z.ZodOptional<z.ZodAny>;
295
+ }, "strict", z.ZodTypeAny, {
296
+ type: string;
297
+ id: string;
298
+ content_raw?: any;
299
+ }, {
300
+ type: string;
301
+ id: string;
302
+ content_raw?: any;
303
+ }>, "many">, z.ZodObject<{
304
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
305
+ token_type: z.ZodEffects<z.ZodString, string, string>;
306
+ received: z.ZodArray<z.ZodObject<{
307
+ id: z.ZodString;
308
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
309
+ payment: z.ZodString;
310
+ }, "strict", z.ZodTypeAny, {
311
+ id: string;
312
+ balance: string | number;
313
+ payment: string;
314
+ }, {
315
+ id: string;
316
+ balance: string | number;
317
+ payment: string;
318
+ }>, "many">;
319
+ }, "strict", z.ZodTypeAny, {
320
+ received: {
321
+ id: string;
322
+ balance: string | number;
323
+ payment: string;
324
+ }[];
325
+ balance: string | number;
326
+ token_type: string;
327
+ }, {
328
+ received: {
329
+ id: string;
330
+ balance: string | number;
331
+ payment: string;
332
+ }[];
333
+ balance: string | number;
334
+ token_type: string;
335
+ }>, z.ZodLiteral<"recently">]>>;
336
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
337
+ }, "strict", z.ZodTypeAny, {
338
+ object: string | {
339
+ name?: string | undefined;
340
+ replaceExistName?: boolean | undefined;
341
+ tags?: string[] | undefined;
342
+ onChain?: boolean | undefined;
343
+ permission?: string | {
344
+ name?: string | undefined;
345
+ description?: string | undefined;
346
+ replaceExistName?: boolean | undefined;
347
+ tags?: string[] | undefined;
348
+ onChain?: boolean | undefined;
349
+ } | undefined;
350
+ };
351
+ description?: string | undefined;
352
+ location?: string | undefined;
353
+ owner_receive?: {
354
+ received: {
355
+ id: string;
356
+ balance: string | number;
357
+ payment: string;
358
+ }[];
359
+ balance: string | number;
360
+ token_type: string;
361
+ } | "recently" | {
362
+ type: string;
363
+ id: string;
364
+ content_raw?: any;
365
+ }[] | undefined;
366
+ rewards?: {
367
+ op: "set" | "add";
368
+ objects: string[];
369
+ } | {
370
+ op: "remove";
371
+ objects: string[];
372
+ } | {
373
+ op: "clear";
374
+ } | undefined;
375
+ guards?: {
376
+ op: "add";
377
+ guard: {
378
+ guard: string;
379
+ service_identifier?: number | null | undefined;
380
+ }[];
381
+ } | {
382
+ op: "set";
383
+ guard: {
384
+ guard: string;
385
+ service_identifier?: number | null | undefined;
386
+ }[];
387
+ } | {
388
+ op: "remove";
389
+ guard: string[];
390
+ } | {
391
+ op: "clear";
392
+ } | undefined;
393
+ um?: string | null | undefined;
394
+ feedback?: {
395
+ who: {
396
+ name_or_address?: string | undefined;
397
+ local_mark_first?: boolean | undefined;
398
+ };
399
+ feedback?: string | undefined;
400
+ acceptance_score?: number | undefined;
401
+ }[] | undefined;
402
+ present?: {
403
+ recommend: string;
404
+ service?: string | undefined;
405
+ by_guard?: string | undefined;
406
+ } | undefined;
407
+ }, {
408
+ object: string | {
409
+ name?: string | undefined;
410
+ replaceExistName?: boolean | undefined;
411
+ tags?: string[] | undefined;
412
+ onChain?: boolean | undefined;
413
+ permission?: string | {
414
+ name?: string | undefined;
415
+ description?: string | undefined;
416
+ replaceExistName?: boolean | undefined;
417
+ tags?: string[] | undefined;
418
+ onChain?: boolean | undefined;
419
+ } | undefined;
420
+ };
421
+ description?: string | undefined;
422
+ location?: string | undefined;
423
+ owner_receive?: {
424
+ received: {
425
+ id: string;
426
+ balance: string | number;
427
+ payment: string;
428
+ }[];
429
+ balance: string | number;
430
+ token_type: string;
431
+ } | "recently" | {
432
+ type: string;
433
+ id: string;
434
+ content_raw?: any;
435
+ }[] | undefined;
436
+ rewards?: {
437
+ op: "set" | "add";
438
+ objects: string[];
439
+ } | {
440
+ op: "remove";
441
+ objects: string[];
442
+ } | {
443
+ op: "clear";
444
+ } | undefined;
445
+ guards?: {
446
+ op: "add";
447
+ guard: {
448
+ guard: string;
449
+ service_identifier?: number | null | undefined;
450
+ }[];
451
+ } | {
452
+ op: "set";
453
+ guard: {
454
+ guard: string;
455
+ service_identifier?: number | null | undefined;
456
+ }[];
457
+ } | {
458
+ op: "remove";
459
+ guard: string[];
460
+ } | {
461
+ op: "clear";
462
+ } | undefined;
463
+ um?: string | null | undefined;
464
+ feedback?: {
465
+ who: {
466
+ name_or_address?: string | undefined;
467
+ local_mark_first?: boolean | undefined;
468
+ };
469
+ feedback?: string | undefined;
470
+ acceptance_score?: number | undefined;
471
+ }[] | undefined;
472
+ present?: {
473
+ recommend: string;
474
+ service?: string | undefined;
475
+ by_guard?: string | undefined;
476
+ } | undefined;
477
+ }>;
478
+ export declare const CallDemand_InputSchema: z.ZodObject<{
479
+ data: z.ZodObject<{
480
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
481
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
482
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
483
+ onChain: z.ZodOptional<z.ZodBoolean>;
484
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
485
+ } & {
486
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
487
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
488
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
489
+ onChain: z.ZodOptional<z.ZodBoolean>;
490
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
491
+ } & {
492
+ description: z.ZodOptional<z.ZodString>;
493
+ }, "strict", z.ZodTypeAny, {
494
+ name?: string | undefined;
495
+ description?: string | undefined;
496
+ replaceExistName?: boolean | undefined;
497
+ tags?: string[] | undefined;
498
+ onChain?: boolean | undefined;
499
+ }, {
500
+ name?: string | undefined;
501
+ description?: string | undefined;
502
+ replaceExistName?: boolean | undefined;
503
+ tags?: string[] | undefined;
504
+ onChain?: boolean | undefined;
505
+ }>]>>;
506
+ }, "strict", z.ZodTypeAny, {
507
+ name?: string | undefined;
508
+ replaceExistName?: boolean | undefined;
509
+ tags?: string[] | undefined;
510
+ onChain?: boolean | undefined;
511
+ permission?: string | {
512
+ name?: string | undefined;
513
+ description?: string | undefined;
514
+ replaceExistName?: boolean | undefined;
515
+ tags?: string[] | undefined;
516
+ onChain?: boolean | undefined;
517
+ } | undefined;
518
+ }, {
519
+ name?: string | undefined;
520
+ replaceExistName?: boolean | undefined;
521
+ tags?: string[] | undefined;
522
+ onChain?: boolean | undefined;
523
+ permission?: string | {
524
+ name?: string | undefined;
525
+ description?: string | undefined;
526
+ replaceExistName?: boolean | undefined;
527
+ tags?: string[] | undefined;
528
+ onChain?: boolean | undefined;
529
+ } | undefined;
530
+ }>]>;
531
+ present: z.ZodOptional<z.ZodObject<{
532
+ recommend: z.ZodEffects<z.ZodString, string, string>;
533
+ by_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
534
+ service: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
535
+ }, "strict", z.ZodTypeAny, {
536
+ recommend: string;
537
+ service?: string | undefined;
538
+ by_guard?: string | undefined;
539
+ }, {
540
+ recommend: string;
541
+ service?: string | undefined;
542
+ by_guard?: string | undefined;
543
+ }>>;
544
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
545
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
546
+ rewards: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
547
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
548
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
549
+ }, "strict", z.ZodTypeAny, {
550
+ op: "set" | "add";
551
+ objects: string[];
552
+ }, {
553
+ op: "set" | "add";
554
+ objects: string[];
555
+ }>, z.ZodObject<{
556
+ op: z.ZodLiteral<"remove">;
557
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
558
+ }, "strict", z.ZodTypeAny, {
559
+ op: "remove";
560
+ objects: string[];
561
+ }, {
562
+ op: "remove";
563
+ objects: string[];
564
+ }>, z.ZodObject<{
565
+ op: z.ZodLiteral<"clear">;
566
+ }, "strict", z.ZodTypeAny, {
567
+ op: "clear";
568
+ }, {
569
+ op: "clear";
570
+ }>]>>;
571
+ feedback: z.ZodOptional<z.ZodArray<z.ZodObject<{
572
+ who: z.ZodObject<{
573
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
574
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
575
+ }, "strict", z.ZodTypeAny, {
576
+ name_or_address?: string | undefined;
577
+ local_mark_first?: boolean | undefined;
578
+ }, {
579
+ name_or_address?: string | undefined;
580
+ local_mark_first?: boolean | undefined;
581
+ }>;
582
+ acceptance_score: z.ZodOptional<z.ZodNumber>;
583
+ feedback: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
584
+ }, "strict", z.ZodTypeAny, {
585
+ who: {
586
+ name_or_address?: string | undefined;
587
+ local_mark_first?: boolean | undefined;
588
+ };
589
+ feedback?: string | undefined;
590
+ acceptance_score?: number | undefined;
591
+ }, {
592
+ who: {
593
+ name_or_address?: string | undefined;
594
+ local_mark_first?: boolean | undefined;
595
+ };
596
+ feedback?: string | undefined;
597
+ acceptance_score?: number | undefined;
598
+ }>, "many">>;
599
+ guards: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
600
+ op: z.ZodLiteral<"add">;
601
+ guard: z.ZodArray<z.ZodObject<{
602
+ guard: z.ZodString;
603
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
604
+ }, "strip", z.ZodTypeAny, {
605
+ guard: string;
606
+ service_identifier?: number | null | undefined;
607
+ }, {
608
+ guard: string;
609
+ service_identifier?: number | null | undefined;
610
+ }>, "many">;
611
+ }, "strict", z.ZodTypeAny, {
612
+ op: "add";
613
+ guard: {
614
+ guard: string;
615
+ service_identifier?: number | null | undefined;
616
+ }[];
617
+ }, {
618
+ op: "add";
619
+ guard: {
620
+ guard: string;
621
+ service_identifier?: number | null | undefined;
622
+ }[];
623
+ }>, z.ZodObject<{
624
+ op: z.ZodLiteral<"set">;
625
+ guard: z.ZodArray<z.ZodObject<{
626
+ guard: z.ZodString;
627
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
628
+ }, "strip", z.ZodTypeAny, {
629
+ guard: string;
630
+ service_identifier?: number | null | undefined;
631
+ }, {
632
+ guard: string;
633
+ service_identifier?: number | null | undefined;
634
+ }>, "many">;
635
+ }, "strict", z.ZodTypeAny, {
636
+ op: "set";
637
+ guard: {
638
+ guard: string;
639
+ service_identifier?: number | null | undefined;
640
+ }[];
641
+ }, {
642
+ op: "set";
643
+ guard: {
644
+ guard: string;
645
+ service_identifier?: number | null | undefined;
646
+ }[];
647
+ }>, z.ZodObject<{
648
+ op: z.ZodLiteral<"remove">;
649
+ guard: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
650
+ }, "strict", z.ZodTypeAny, {
651
+ op: "remove";
652
+ guard: string[];
653
+ }, {
654
+ op: "remove";
655
+ guard: string[];
656
+ }>, z.ZodObject<{
657
+ op: z.ZodLiteral<"clear">;
658
+ }, "strict", z.ZodTypeAny, {
659
+ op: "clear";
660
+ }, {
661
+ op: "clear";
662
+ }>]>>;
663
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
664
+ id: z.ZodString;
665
+ type: z.ZodString;
666
+ content_raw: z.ZodOptional<z.ZodAny>;
667
+ }, "strict", z.ZodTypeAny, {
668
+ type: string;
669
+ id: string;
670
+ content_raw?: any;
671
+ }, {
672
+ type: string;
673
+ id: string;
674
+ content_raw?: any;
675
+ }>, "many">, z.ZodObject<{
676
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
677
+ token_type: z.ZodEffects<z.ZodString, string, string>;
678
+ received: z.ZodArray<z.ZodObject<{
679
+ id: z.ZodString;
680
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
681
+ payment: z.ZodString;
682
+ }, "strict", z.ZodTypeAny, {
683
+ id: string;
684
+ balance: string | number;
685
+ payment: string;
686
+ }, {
687
+ id: string;
688
+ balance: string | number;
689
+ payment: string;
690
+ }>, "many">;
691
+ }, "strict", z.ZodTypeAny, {
692
+ received: {
693
+ id: string;
694
+ balance: string | number;
695
+ payment: string;
696
+ }[];
697
+ balance: string | number;
698
+ token_type: string;
699
+ }, {
700
+ received: {
701
+ id: string;
702
+ balance: string | number;
703
+ payment: string;
704
+ }[];
705
+ balance: string | number;
706
+ token_type: string;
707
+ }>, z.ZodLiteral<"recently">]>>;
708
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
709
+ }, "strict", z.ZodTypeAny, {
710
+ object: string | {
711
+ name?: string | undefined;
712
+ replaceExistName?: boolean | undefined;
713
+ tags?: string[] | undefined;
714
+ onChain?: boolean | undefined;
715
+ permission?: string | {
716
+ name?: string | undefined;
717
+ description?: string | undefined;
718
+ replaceExistName?: boolean | undefined;
719
+ tags?: string[] | undefined;
720
+ onChain?: boolean | undefined;
721
+ } | undefined;
722
+ };
723
+ description?: string | undefined;
724
+ location?: string | undefined;
725
+ owner_receive?: {
726
+ received: {
727
+ id: string;
728
+ balance: string | number;
729
+ payment: string;
730
+ }[];
731
+ balance: string | number;
732
+ token_type: string;
733
+ } | "recently" | {
734
+ type: string;
735
+ id: string;
736
+ content_raw?: any;
737
+ }[] | undefined;
738
+ rewards?: {
739
+ op: "set" | "add";
740
+ objects: string[];
741
+ } | {
742
+ op: "remove";
743
+ objects: string[];
744
+ } | {
745
+ op: "clear";
746
+ } | undefined;
747
+ guards?: {
748
+ op: "add";
749
+ guard: {
750
+ guard: string;
751
+ service_identifier?: number | null | undefined;
752
+ }[];
753
+ } | {
754
+ op: "set";
755
+ guard: {
756
+ guard: string;
757
+ service_identifier?: number | null | undefined;
758
+ }[];
759
+ } | {
760
+ op: "remove";
761
+ guard: string[];
762
+ } | {
763
+ op: "clear";
764
+ } | undefined;
765
+ um?: string | null | undefined;
766
+ feedback?: {
767
+ who: {
768
+ name_or_address?: string | undefined;
769
+ local_mark_first?: boolean | undefined;
770
+ };
771
+ feedback?: string | undefined;
772
+ acceptance_score?: number | undefined;
773
+ }[] | undefined;
774
+ present?: {
775
+ recommend: string;
776
+ service?: string | undefined;
777
+ by_guard?: string | undefined;
778
+ } | undefined;
779
+ }, {
780
+ object: string | {
781
+ name?: string | undefined;
782
+ replaceExistName?: boolean | undefined;
783
+ tags?: string[] | undefined;
784
+ onChain?: boolean | undefined;
785
+ permission?: string | {
786
+ name?: string | undefined;
787
+ description?: string | undefined;
788
+ replaceExistName?: boolean | undefined;
789
+ tags?: string[] | undefined;
790
+ onChain?: boolean | undefined;
791
+ } | undefined;
792
+ };
793
+ description?: string | undefined;
794
+ location?: string | undefined;
795
+ owner_receive?: {
796
+ received: {
797
+ id: string;
798
+ balance: string | number;
799
+ payment: string;
800
+ }[];
801
+ balance: string | number;
802
+ token_type: string;
803
+ } | "recently" | {
804
+ type: string;
805
+ id: string;
806
+ content_raw?: any;
807
+ }[] | undefined;
808
+ rewards?: {
809
+ op: "set" | "add";
810
+ objects: string[];
811
+ } | {
812
+ op: "remove";
813
+ objects: string[];
814
+ } | {
815
+ op: "clear";
816
+ } | undefined;
817
+ guards?: {
818
+ op: "add";
819
+ guard: {
820
+ guard: string;
821
+ service_identifier?: number | null | undefined;
822
+ }[];
823
+ } | {
824
+ op: "set";
825
+ guard: {
826
+ guard: string;
827
+ service_identifier?: number | null | undefined;
828
+ }[];
829
+ } | {
830
+ op: "remove";
831
+ guard: string[];
832
+ } | {
833
+ op: "clear";
834
+ } | undefined;
835
+ um?: string | null | undefined;
836
+ feedback?: {
837
+ who: {
838
+ name_or_address?: string | undefined;
839
+ local_mark_first?: boolean | undefined;
840
+ };
841
+ feedback?: string | undefined;
842
+ acceptance_score?: number | undefined;
843
+ }[] | undefined;
844
+ present?: {
845
+ recommend: string;
846
+ service?: string | undefined;
847
+ by_guard?: string | undefined;
848
+ } | undefined;
849
+ }>;
850
+ env: z.ZodOptional<z.ZodObject<{
851
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
852
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
853
+ no_cache: z.ZodOptional<z.ZodBoolean>;
854
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
855
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
856
+ }, "strict", z.ZodTypeAny, {
857
+ account: string;
858
+ no_cache?: boolean | undefined;
859
+ network?: import("wowok").ENTRYPOINT | undefined;
860
+ permission_guard?: string[] | undefined;
861
+ referrer?: string | undefined;
862
+ }, {
863
+ no_cache?: boolean | undefined;
864
+ network?: import("wowok").ENTRYPOINT | undefined;
865
+ account?: string | undefined;
866
+ permission_guard?: string[] | undefined;
867
+ referrer?: string | undefined;
868
+ }>>;
869
+ submission: z.ZodOptional<z.ZodObject<{
870
+ type: z.ZodLiteral<"submission">;
871
+ guard: z.ZodArray<z.ZodObject<{
872
+ object: z.ZodEffects<z.ZodString, string, string>;
873
+ impack: z.ZodBoolean;
874
+ }, "strict", z.ZodTypeAny, {
875
+ object: string;
876
+ impack: boolean;
877
+ }, {
878
+ object: string;
879
+ impack: boolean;
880
+ }>, "many">;
881
+ submission: z.ZodArray<z.ZodObject<{
882
+ guard: z.ZodEffects<z.ZodString, string, string>;
883
+ submission: z.ZodArray<z.ZodObject<{
884
+ identifier: z.ZodNumber;
885
+ b_submission: z.ZodBoolean;
886
+ 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">]>;
887
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
888
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
889
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
890
+ }, "strict", z.ZodTypeAny, {
891
+ name_or_address?: string | undefined;
892
+ local_mark_first?: boolean | undefined;
893
+ }, {
894
+ name_or_address?: string | undefined;
895
+ local_mark_first?: boolean | undefined;
896
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
897
+ entities: z.ZodArray<z.ZodObject<{
898
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
899
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
900
+ }, "strict", z.ZodTypeAny, {
901
+ name_or_address?: string | undefined;
902
+ local_mark_first?: boolean | undefined;
903
+ }, {
904
+ name_or_address?: string | undefined;
905
+ local_mark_first?: boolean | undefined;
906
+ }>, "many">;
907
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
908
+ }, "strict", z.ZodTypeAny, {
909
+ entities: {
910
+ name_or_address?: string | undefined;
911
+ local_mark_first?: boolean | undefined;
912
+ }[];
913
+ check_all_founded?: boolean | undefined;
914
+ }, {
915
+ entities: {
916
+ name_or_address?: string | undefined;
917
+ local_mark_first?: boolean | undefined;
918
+ }[];
919
+ check_all_founded?: boolean | undefined;
920
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
921
+ name: z.ZodDefault<z.ZodString>;
922
+ } & {
923
+ 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]>>;
924
+ }, "strict", z.ZodTypeAny, {
925
+ identifier: number;
926
+ b_submission: boolean;
927
+ 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";
928
+ name: string;
929
+ value?: string | number | boolean | {
930
+ name_or_address?: string | undefined;
931
+ local_mark_first?: boolean | undefined;
932
+ } | {
933
+ entities: {
934
+ name_or_address?: string | undefined;
935
+ local_mark_first?: boolean | undefined;
936
+ }[];
937
+ check_all_founded?: boolean | undefined;
938
+ } | string[] | boolean[] | number[] | number[][] | undefined;
939
+ object_type?: import("wowok").ObjectType | undefined;
940
+ }, {
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
+ }>, "many">;
957
+ }, "strict", z.ZodTypeAny, {
958
+ guard: string;
959
+ submission: {
960
+ identifier: number;
961
+ b_submission: boolean;
962
+ 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";
963
+ name: string;
964
+ value?: string | number | boolean | {
965
+ name_or_address?: string | undefined;
966
+ local_mark_first?: boolean | undefined;
967
+ } | {
968
+ entities: {
969
+ name_or_address?: string | undefined;
970
+ local_mark_first?: boolean | undefined;
971
+ }[];
972
+ check_all_founded?: boolean | undefined;
973
+ } | string[] | boolean[] | number[] | number[][] | undefined;
974
+ object_type?: import("wowok").ObjectType | undefined;
975
+ }[];
976
+ }, {
977
+ guard: string;
978
+ submission: {
979
+ identifier: number;
980
+ b_submission: boolean;
981
+ 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";
982
+ value?: string | number | boolean | {
983
+ name_or_address?: string | undefined;
984
+ local_mark_first?: boolean | undefined;
985
+ } | {
986
+ entities: {
987
+ name_or_address?: string | undefined;
988
+ local_mark_first?: boolean | undefined;
989
+ }[];
990
+ check_all_founded?: boolean | undefined;
991
+ } | string[] | boolean[] | number[] | number[][] | undefined;
992
+ name?: string | undefined;
993
+ object_type?: import("wowok").ObjectType | undefined;
994
+ }[];
995
+ }>, "many">;
996
+ }, "strict", z.ZodTypeAny, {
997
+ type: "submission";
998
+ guard: {
999
+ object: string;
1000
+ impack: boolean;
1001
+ }[];
1002
+ submission: {
1003
+ guard: string;
1004
+ submission: {
1005
+ identifier: number;
1006
+ b_submission: boolean;
1007
+ 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";
1008
+ name: string;
1009
+ value?: string | number | boolean | {
1010
+ name_or_address?: string | undefined;
1011
+ local_mark_first?: boolean | undefined;
1012
+ } | {
1013
+ entities: {
1014
+ name_or_address?: string | undefined;
1015
+ local_mark_first?: boolean | undefined;
1016
+ }[];
1017
+ check_all_founded?: boolean | undefined;
1018
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1019
+ object_type?: import("wowok").ObjectType | undefined;
1020
+ }[];
1021
+ }[];
1022
+ }, {
1023
+ type: "submission";
1024
+ guard: {
1025
+ object: string;
1026
+ impack: boolean;
1027
+ }[];
1028
+ submission: {
1029
+ guard: string;
1030
+ submission: {
1031
+ identifier: number;
1032
+ b_submission: boolean;
1033
+ 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";
1034
+ value?: string | number | boolean | {
1035
+ name_or_address?: string | undefined;
1036
+ local_mark_first?: boolean | undefined;
1037
+ } | {
1038
+ entities: {
1039
+ name_or_address?: string | undefined;
1040
+ local_mark_first?: boolean | undefined;
1041
+ }[];
1042
+ check_all_founded?: boolean | undefined;
1043
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1044
+ name?: string | undefined;
1045
+ object_type?: import("wowok").ObjectType | undefined;
1046
+ }[];
1047
+ }[];
1048
+ }>>;
1049
+ }, "strict", z.ZodTypeAny, {
1050
+ data: {
1051
+ object: string | {
1052
+ name?: string | undefined;
1053
+ replaceExistName?: boolean | undefined;
1054
+ tags?: string[] | undefined;
1055
+ onChain?: boolean | undefined;
1056
+ permission?: string | {
1057
+ name?: string | undefined;
1058
+ description?: string | undefined;
1059
+ replaceExistName?: boolean | undefined;
1060
+ tags?: string[] | undefined;
1061
+ onChain?: boolean | undefined;
1062
+ } | undefined;
1063
+ };
1064
+ description?: string | undefined;
1065
+ location?: string | undefined;
1066
+ owner_receive?: {
1067
+ received: {
1068
+ id: string;
1069
+ balance: string | number;
1070
+ payment: string;
1071
+ }[];
1072
+ balance: string | number;
1073
+ token_type: string;
1074
+ } | "recently" | {
1075
+ type: string;
1076
+ id: string;
1077
+ content_raw?: any;
1078
+ }[] | undefined;
1079
+ rewards?: {
1080
+ op: "set" | "add";
1081
+ objects: string[];
1082
+ } | {
1083
+ op: "remove";
1084
+ objects: string[];
1085
+ } | {
1086
+ op: "clear";
1087
+ } | undefined;
1088
+ guards?: {
1089
+ op: "add";
1090
+ guard: {
1091
+ guard: string;
1092
+ service_identifier?: number | null | undefined;
1093
+ }[];
1094
+ } | {
1095
+ op: "set";
1096
+ guard: {
1097
+ guard: string;
1098
+ service_identifier?: number | null | undefined;
1099
+ }[];
1100
+ } | {
1101
+ op: "remove";
1102
+ guard: string[];
1103
+ } | {
1104
+ op: "clear";
1105
+ } | undefined;
1106
+ um?: string | null | undefined;
1107
+ feedback?: {
1108
+ who: {
1109
+ name_or_address?: string | undefined;
1110
+ local_mark_first?: boolean | undefined;
1111
+ };
1112
+ feedback?: string | undefined;
1113
+ acceptance_score?: number | undefined;
1114
+ }[] | undefined;
1115
+ present?: {
1116
+ recommend: string;
1117
+ service?: string | undefined;
1118
+ by_guard?: string | undefined;
1119
+ } | undefined;
1120
+ };
1121
+ submission?: {
1122
+ type: "submission";
1123
+ guard: {
1124
+ object: string;
1125
+ impack: boolean;
1126
+ }[];
1127
+ submission: {
1128
+ guard: string;
1129
+ submission: {
1130
+ identifier: number;
1131
+ b_submission: boolean;
1132
+ 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";
1133
+ name: string;
1134
+ value?: string | number | boolean | {
1135
+ name_or_address?: string | undefined;
1136
+ local_mark_first?: boolean | undefined;
1137
+ } | {
1138
+ entities: {
1139
+ name_or_address?: string | undefined;
1140
+ local_mark_first?: boolean | undefined;
1141
+ }[];
1142
+ check_all_founded?: boolean | undefined;
1143
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1144
+ object_type?: import("wowok").ObjectType | undefined;
1145
+ }[];
1146
+ }[];
1147
+ } | undefined;
1148
+ env?: {
1149
+ account: string;
1150
+ no_cache?: boolean | undefined;
1151
+ network?: import("wowok").ENTRYPOINT | undefined;
1152
+ permission_guard?: string[] | undefined;
1153
+ referrer?: string | undefined;
1154
+ } | undefined;
1155
+ }, {
1156
+ data: {
1157
+ object: string | {
1158
+ name?: string | undefined;
1159
+ replaceExistName?: boolean | undefined;
1160
+ tags?: string[] | undefined;
1161
+ onChain?: boolean | undefined;
1162
+ permission?: string | {
1163
+ name?: string | undefined;
1164
+ description?: string | undefined;
1165
+ replaceExistName?: boolean | undefined;
1166
+ tags?: string[] | undefined;
1167
+ onChain?: boolean | undefined;
1168
+ } | undefined;
1169
+ };
1170
+ description?: string | undefined;
1171
+ location?: string | undefined;
1172
+ owner_receive?: {
1173
+ received: {
1174
+ id: string;
1175
+ balance: string | number;
1176
+ payment: string;
1177
+ }[];
1178
+ balance: string | number;
1179
+ token_type: string;
1180
+ } | "recently" | {
1181
+ type: string;
1182
+ id: string;
1183
+ content_raw?: any;
1184
+ }[] | undefined;
1185
+ rewards?: {
1186
+ op: "set" | "add";
1187
+ objects: string[];
1188
+ } | {
1189
+ op: "remove";
1190
+ objects: string[];
1191
+ } | {
1192
+ op: "clear";
1193
+ } | undefined;
1194
+ guards?: {
1195
+ op: "add";
1196
+ guard: {
1197
+ guard: string;
1198
+ service_identifier?: number | null | undefined;
1199
+ }[];
1200
+ } | {
1201
+ op: "set";
1202
+ guard: {
1203
+ guard: string;
1204
+ service_identifier?: number | null | undefined;
1205
+ }[];
1206
+ } | {
1207
+ op: "remove";
1208
+ guard: string[];
1209
+ } | {
1210
+ op: "clear";
1211
+ } | undefined;
1212
+ um?: string | null | undefined;
1213
+ feedback?: {
1214
+ who: {
1215
+ name_or_address?: string | undefined;
1216
+ local_mark_first?: boolean | undefined;
1217
+ };
1218
+ feedback?: string | undefined;
1219
+ acceptance_score?: number | undefined;
1220
+ }[] | undefined;
1221
+ present?: {
1222
+ recommend: string;
1223
+ service?: string | undefined;
1224
+ by_guard?: string | undefined;
1225
+ } | undefined;
1226
+ };
1227
+ submission?: {
1228
+ type: "submission";
1229
+ guard: {
1230
+ object: string;
1231
+ impack: boolean;
1232
+ }[];
1233
+ submission: {
1234
+ guard: string;
1235
+ submission: {
1236
+ identifier: number;
1237
+ b_submission: boolean;
1238
+ 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";
1239
+ value?: string | number | boolean | {
1240
+ name_or_address?: string | undefined;
1241
+ local_mark_first?: boolean | undefined;
1242
+ } | {
1243
+ entities: {
1244
+ name_or_address?: string | undefined;
1245
+ local_mark_first?: boolean | undefined;
1246
+ }[];
1247
+ check_all_founded?: boolean | undefined;
1248
+ } | string[] | boolean[] | number[] | number[][] | undefined;
1249
+ name?: string | undefined;
1250
+ object_type?: import("wowok").ObjectType | undefined;
1251
+ }[];
1252
+ }[];
1253
+ } | undefined;
1254
+ env?: {
1255
+ no_cache?: boolean | undefined;
1256
+ network?: import("wowok").ENTRYPOINT | undefined;
1257
+ account?: string | undefined;
1258
+ permission_guard?: string[] | undefined;
1259
+ referrer?: string | undefined;
1260
+ } | undefined;
1261
+ }>;
1262
+ export type CallDemand_Data = z.infer<typeof CallDemand_DataSchema>;
1263
+ export type Guards = z.infer<typeof GuardsSchema>;
1264
+ export type DemandPresent = z.infer<typeof DemandPresentSchema>;
1265
+ export type FeedbackInfo = z.infer<typeof FeedbackInfoSchema>;