wowok_agent 2.1.9 → 2.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,1252 @@
1
1
  import { z } from 'zod';
2
- export declare const GuardsSchema: any;
3
- export declare const DemandPresentSchema: any;
4
- export declare const FeedbackInfoSchema: any;
5
- export declare const CallDemand_DataSchema: any;
6
- export declare const CallDemand_InputSchema: any;
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
+ }, "strict", z.ZodTypeAny, {
295
+ type: string;
296
+ id: string;
297
+ }, {
298
+ type: string;
299
+ id: string;
300
+ }>, "many">, z.ZodObject<{
301
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
302
+ token_type: z.ZodEffects<z.ZodString, string, string>;
303
+ received: z.ZodArray<z.ZodObject<{
304
+ id: z.ZodString;
305
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
306
+ payment: z.ZodString;
307
+ }, "strict", z.ZodTypeAny, {
308
+ id: string;
309
+ balance: string | number;
310
+ payment: string;
311
+ }, {
312
+ id: string;
313
+ balance: string | number;
314
+ payment: string;
315
+ }>, "many">;
316
+ }, "strict", z.ZodTypeAny, {
317
+ received: {
318
+ id: string;
319
+ balance: string | number;
320
+ payment: string;
321
+ }[];
322
+ balance: string | number;
323
+ token_type: string;
324
+ }, {
325
+ received: {
326
+ id: string;
327
+ balance: string | number;
328
+ payment: string;
329
+ }[];
330
+ balance: string | number;
331
+ token_type: string;
332
+ }>, z.ZodLiteral<"recently">]>>;
333
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
334
+ }, "strict", z.ZodTypeAny, {
335
+ object: string | {
336
+ name?: string | undefined;
337
+ replaceExistName?: boolean | undefined;
338
+ tags?: string[] | undefined;
339
+ onChain?: boolean | undefined;
340
+ permission?: string | {
341
+ name?: string | undefined;
342
+ description?: string | undefined;
343
+ replaceExistName?: boolean | undefined;
344
+ tags?: string[] | undefined;
345
+ onChain?: boolean | undefined;
346
+ } | undefined;
347
+ };
348
+ description?: string | undefined;
349
+ location?: string | undefined;
350
+ owner_receive?: {
351
+ received: {
352
+ id: string;
353
+ balance: string | number;
354
+ payment: string;
355
+ }[];
356
+ balance: string | number;
357
+ token_type: string;
358
+ } | "recently" | {
359
+ type: string;
360
+ id: string;
361
+ }[] | undefined;
362
+ rewards?: {
363
+ op: "set" | "add";
364
+ objects: string[];
365
+ } | {
366
+ op: "remove";
367
+ objects: string[];
368
+ } | {
369
+ op: "clear";
370
+ } | undefined;
371
+ guards?: {
372
+ op: "add";
373
+ guard: {
374
+ guard: string;
375
+ service_identifier?: number | null | undefined;
376
+ }[];
377
+ } | {
378
+ op: "set";
379
+ guard: {
380
+ guard: string;
381
+ service_identifier?: number | null | undefined;
382
+ }[];
383
+ } | {
384
+ op: "remove";
385
+ guard: string[];
386
+ } | {
387
+ op: "clear";
388
+ } | undefined;
389
+ um?: string | null | undefined;
390
+ feedback?: {
391
+ who: {
392
+ name_or_address?: string | undefined;
393
+ local_mark_first?: boolean | undefined;
394
+ };
395
+ feedback?: string | undefined;
396
+ acceptance_score?: number | undefined;
397
+ }[] | undefined;
398
+ present?: {
399
+ recommend: string;
400
+ service?: string | undefined;
401
+ by_guard?: string | undefined;
402
+ } | undefined;
403
+ }, {
404
+ object: string | {
405
+ name?: string | undefined;
406
+ replaceExistName?: boolean | undefined;
407
+ tags?: string[] | undefined;
408
+ onChain?: boolean | undefined;
409
+ permission?: string | {
410
+ name?: string | undefined;
411
+ description?: string | undefined;
412
+ replaceExistName?: boolean | undefined;
413
+ tags?: string[] | undefined;
414
+ onChain?: boolean | undefined;
415
+ } | undefined;
416
+ };
417
+ description?: string | undefined;
418
+ location?: string | undefined;
419
+ owner_receive?: {
420
+ received: {
421
+ id: string;
422
+ balance: string | number;
423
+ payment: string;
424
+ }[];
425
+ balance: string | number;
426
+ token_type: string;
427
+ } | "recently" | {
428
+ type: string;
429
+ id: string;
430
+ }[] | undefined;
431
+ rewards?: {
432
+ op: "set" | "add";
433
+ objects: string[];
434
+ } | {
435
+ op: "remove";
436
+ objects: string[];
437
+ } | {
438
+ op: "clear";
439
+ } | undefined;
440
+ guards?: {
441
+ op: "add";
442
+ guard: {
443
+ guard: string;
444
+ service_identifier?: number | null | undefined;
445
+ }[];
446
+ } | {
447
+ op: "set";
448
+ guard: {
449
+ guard: string;
450
+ service_identifier?: number | null | undefined;
451
+ }[];
452
+ } | {
453
+ op: "remove";
454
+ guard: string[];
455
+ } | {
456
+ op: "clear";
457
+ } | undefined;
458
+ um?: string | null | undefined;
459
+ feedback?: {
460
+ who: {
461
+ name_or_address?: string | undefined;
462
+ local_mark_first?: boolean | undefined;
463
+ };
464
+ feedback?: string | undefined;
465
+ acceptance_score?: number | undefined;
466
+ }[] | undefined;
467
+ present?: {
468
+ recommend: string;
469
+ service?: string | undefined;
470
+ by_guard?: string | undefined;
471
+ } | undefined;
472
+ }>;
473
+ export declare const CallDemand_InputSchema: z.ZodObject<{
474
+ data: z.ZodObject<{
475
+ object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
476
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
477
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
478
+ onChain: z.ZodOptional<z.ZodBoolean>;
479
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
480
+ } & {
481
+ permission: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
482
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
483
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
484
+ onChain: z.ZodOptional<z.ZodBoolean>;
485
+ replaceExistName: z.ZodOptional<z.ZodBoolean>;
486
+ } & {
487
+ description: z.ZodOptional<z.ZodString>;
488
+ }, "strict", z.ZodTypeAny, {
489
+ name?: string | undefined;
490
+ description?: string | undefined;
491
+ replaceExistName?: boolean | undefined;
492
+ tags?: string[] | undefined;
493
+ onChain?: boolean | undefined;
494
+ }, {
495
+ name?: string | undefined;
496
+ description?: string | undefined;
497
+ replaceExistName?: boolean | undefined;
498
+ tags?: string[] | undefined;
499
+ onChain?: boolean | undefined;
500
+ }>]>>;
501
+ }, "strict", z.ZodTypeAny, {
502
+ name?: string | undefined;
503
+ replaceExistName?: boolean | undefined;
504
+ tags?: string[] | undefined;
505
+ onChain?: boolean | undefined;
506
+ permission?: string | {
507
+ name?: string | undefined;
508
+ description?: string | undefined;
509
+ replaceExistName?: boolean | undefined;
510
+ tags?: string[] | undefined;
511
+ onChain?: boolean | undefined;
512
+ } | undefined;
513
+ }, {
514
+ name?: string | undefined;
515
+ replaceExistName?: boolean | undefined;
516
+ tags?: string[] | undefined;
517
+ onChain?: boolean | undefined;
518
+ permission?: string | {
519
+ name?: string | undefined;
520
+ description?: string | undefined;
521
+ replaceExistName?: boolean | undefined;
522
+ tags?: string[] | undefined;
523
+ onChain?: boolean | undefined;
524
+ } | undefined;
525
+ }>]>;
526
+ present: z.ZodOptional<z.ZodObject<{
527
+ recommend: z.ZodEffects<z.ZodString, string, string>;
528
+ by_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
529
+ service: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
530
+ }, "strict", z.ZodTypeAny, {
531
+ recommend: string;
532
+ service?: string | undefined;
533
+ by_guard?: string | undefined;
534
+ }, {
535
+ recommend: string;
536
+ service?: string | undefined;
537
+ by_guard?: string | undefined;
538
+ }>>;
539
+ description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
540
+ location: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
541
+ rewards: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
542
+ op: z.ZodUnion<[z.ZodLiteral<"add">, z.ZodLiteral<"set">]>;
543
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
544
+ }, "strict", z.ZodTypeAny, {
545
+ op: "set" | "add";
546
+ objects: string[];
547
+ }, {
548
+ op: "set" | "add";
549
+ objects: string[];
550
+ }>, z.ZodObject<{
551
+ op: z.ZodLiteral<"remove">;
552
+ objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
553
+ }, "strict", z.ZodTypeAny, {
554
+ op: "remove";
555
+ objects: string[];
556
+ }, {
557
+ op: "remove";
558
+ objects: string[];
559
+ }>, z.ZodObject<{
560
+ op: z.ZodLiteral<"clear">;
561
+ }, "strict", z.ZodTypeAny, {
562
+ op: "clear";
563
+ }, {
564
+ op: "clear";
565
+ }>]>>;
566
+ feedback: z.ZodOptional<z.ZodArray<z.ZodObject<{
567
+ who: z.ZodObject<{
568
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
569
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
570
+ }, "strict", z.ZodTypeAny, {
571
+ name_or_address?: string | undefined;
572
+ local_mark_first?: boolean | undefined;
573
+ }, {
574
+ name_or_address?: string | undefined;
575
+ local_mark_first?: boolean | undefined;
576
+ }>;
577
+ acceptance_score: z.ZodOptional<z.ZodNumber>;
578
+ feedback: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
579
+ }, "strict", z.ZodTypeAny, {
580
+ who: {
581
+ name_or_address?: string | undefined;
582
+ local_mark_first?: boolean | undefined;
583
+ };
584
+ feedback?: string | undefined;
585
+ acceptance_score?: number | undefined;
586
+ }, {
587
+ who: {
588
+ name_or_address?: string | undefined;
589
+ local_mark_first?: boolean | undefined;
590
+ };
591
+ feedback?: string | undefined;
592
+ acceptance_score?: number | undefined;
593
+ }>, "many">>;
594
+ guards: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
595
+ op: z.ZodLiteral<"add">;
596
+ guard: z.ZodArray<z.ZodObject<{
597
+ guard: z.ZodString;
598
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
599
+ }, "strip", z.ZodTypeAny, {
600
+ guard: string;
601
+ service_identifier?: number | null | undefined;
602
+ }, {
603
+ guard: string;
604
+ service_identifier?: number | null | undefined;
605
+ }>, "many">;
606
+ }, "strict", z.ZodTypeAny, {
607
+ op: "add";
608
+ guard: {
609
+ guard: string;
610
+ service_identifier?: number | null | undefined;
611
+ }[];
612
+ }, {
613
+ op: "add";
614
+ guard: {
615
+ guard: string;
616
+ service_identifier?: number | null | undefined;
617
+ }[];
618
+ }>, z.ZodObject<{
619
+ op: z.ZodLiteral<"set">;
620
+ guard: z.ZodArray<z.ZodObject<{
621
+ guard: z.ZodString;
622
+ service_identifier: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
623
+ }, "strip", z.ZodTypeAny, {
624
+ guard: string;
625
+ service_identifier?: number | null | undefined;
626
+ }, {
627
+ guard: string;
628
+ service_identifier?: number | null | undefined;
629
+ }>, "many">;
630
+ }, "strict", z.ZodTypeAny, {
631
+ op: "set";
632
+ guard: {
633
+ guard: string;
634
+ service_identifier?: number | null | undefined;
635
+ }[];
636
+ }, {
637
+ op: "set";
638
+ guard: {
639
+ guard: string;
640
+ service_identifier?: number | null | undefined;
641
+ }[];
642
+ }>, z.ZodObject<{
643
+ op: z.ZodLiteral<"remove">;
644
+ guard: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
645
+ }, "strict", z.ZodTypeAny, {
646
+ op: "remove";
647
+ guard: string[];
648
+ }, {
649
+ op: "remove";
650
+ guard: string[];
651
+ }>, z.ZodObject<{
652
+ op: z.ZodLiteral<"clear">;
653
+ }, "strict", z.ZodTypeAny, {
654
+ op: "clear";
655
+ }, {
656
+ op: "clear";
657
+ }>]>>;
658
+ owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
659
+ id: z.ZodString;
660
+ type: z.ZodString;
661
+ }, "strict", z.ZodTypeAny, {
662
+ type: string;
663
+ id: string;
664
+ }, {
665
+ type: string;
666
+ id: string;
667
+ }>, "many">, z.ZodObject<{
668
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
669
+ token_type: z.ZodEffects<z.ZodString, string, string>;
670
+ received: z.ZodArray<z.ZodObject<{
671
+ id: z.ZodString;
672
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
673
+ payment: z.ZodString;
674
+ }, "strict", z.ZodTypeAny, {
675
+ id: string;
676
+ balance: string | number;
677
+ payment: string;
678
+ }, {
679
+ id: string;
680
+ balance: string | number;
681
+ payment: string;
682
+ }>, "many">;
683
+ }, "strict", z.ZodTypeAny, {
684
+ received: {
685
+ id: string;
686
+ balance: string | number;
687
+ payment: string;
688
+ }[];
689
+ balance: string | number;
690
+ token_type: string;
691
+ }, {
692
+ received: {
693
+ id: string;
694
+ balance: string | number;
695
+ payment: string;
696
+ }[];
697
+ balance: string | number;
698
+ token_type: string;
699
+ }>, z.ZodLiteral<"recently">]>>;
700
+ um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
701
+ }, "strict", z.ZodTypeAny, {
702
+ object: string | {
703
+ name?: string | undefined;
704
+ replaceExistName?: boolean | undefined;
705
+ tags?: string[] | undefined;
706
+ onChain?: boolean | undefined;
707
+ permission?: string | {
708
+ name?: string | undefined;
709
+ description?: string | undefined;
710
+ replaceExistName?: boolean | undefined;
711
+ tags?: string[] | undefined;
712
+ onChain?: boolean | undefined;
713
+ } | undefined;
714
+ };
715
+ description?: string | undefined;
716
+ location?: string | undefined;
717
+ owner_receive?: {
718
+ received: {
719
+ id: string;
720
+ balance: string | number;
721
+ payment: string;
722
+ }[];
723
+ balance: string | number;
724
+ token_type: string;
725
+ } | "recently" | {
726
+ type: string;
727
+ id: string;
728
+ }[] | undefined;
729
+ rewards?: {
730
+ op: "set" | "add";
731
+ objects: string[];
732
+ } | {
733
+ op: "remove";
734
+ objects: string[];
735
+ } | {
736
+ op: "clear";
737
+ } | undefined;
738
+ guards?: {
739
+ op: "add";
740
+ guard: {
741
+ guard: string;
742
+ service_identifier?: number | null | undefined;
743
+ }[];
744
+ } | {
745
+ op: "set";
746
+ guard: {
747
+ guard: string;
748
+ service_identifier?: number | null | undefined;
749
+ }[];
750
+ } | {
751
+ op: "remove";
752
+ guard: string[];
753
+ } | {
754
+ op: "clear";
755
+ } | undefined;
756
+ um?: string | null | undefined;
757
+ feedback?: {
758
+ who: {
759
+ name_or_address?: string | undefined;
760
+ local_mark_first?: boolean | undefined;
761
+ };
762
+ feedback?: string | undefined;
763
+ acceptance_score?: number | undefined;
764
+ }[] | undefined;
765
+ present?: {
766
+ recommend: string;
767
+ service?: string | undefined;
768
+ by_guard?: string | undefined;
769
+ } | undefined;
770
+ }, {
771
+ object: string | {
772
+ name?: string | undefined;
773
+ replaceExistName?: boolean | undefined;
774
+ tags?: string[] | undefined;
775
+ onChain?: boolean | undefined;
776
+ permission?: string | {
777
+ name?: string | undefined;
778
+ description?: string | undefined;
779
+ replaceExistName?: boolean | undefined;
780
+ tags?: string[] | undefined;
781
+ onChain?: boolean | undefined;
782
+ } | undefined;
783
+ };
784
+ description?: string | undefined;
785
+ location?: string | undefined;
786
+ owner_receive?: {
787
+ received: {
788
+ id: string;
789
+ balance: string | number;
790
+ payment: string;
791
+ }[];
792
+ balance: string | number;
793
+ token_type: string;
794
+ } | "recently" | {
795
+ type: string;
796
+ id: string;
797
+ }[] | undefined;
798
+ rewards?: {
799
+ op: "set" | "add";
800
+ objects: string[];
801
+ } | {
802
+ op: "remove";
803
+ objects: string[];
804
+ } | {
805
+ op: "clear";
806
+ } | undefined;
807
+ guards?: {
808
+ op: "add";
809
+ guard: {
810
+ guard: string;
811
+ service_identifier?: number | null | undefined;
812
+ }[];
813
+ } | {
814
+ op: "set";
815
+ guard: {
816
+ guard: string;
817
+ service_identifier?: number | null | undefined;
818
+ }[];
819
+ } | {
820
+ op: "remove";
821
+ guard: string[];
822
+ } | {
823
+ op: "clear";
824
+ } | undefined;
825
+ um?: string | null | undefined;
826
+ feedback?: {
827
+ who: {
828
+ name_or_address?: string | undefined;
829
+ local_mark_first?: boolean | undefined;
830
+ };
831
+ feedback?: string | undefined;
832
+ acceptance_score?: number | undefined;
833
+ }[] | undefined;
834
+ present?: {
835
+ recommend: string;
836
+ service?: string | undefined;
837
+ by_guard?: string | undefined;
838
+ } | undefined;
839
+ }>;
840
+ env: z.ZodOptional<z.ZodObject<{
841
+ account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
842
+ permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
843
+ no_cache: z.ZodOptional<z.ZodBoolean>;
844
+ network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
845
+ referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
846
+ }, "strict", z.ZodTypeAny, {
847
+ account: string;
848
+ no_cache?: boolean | undefined;
849
+ network?: import("wowok").ENTRYPOINT | undefined;
850
+ permission_guard?: string[] | undefined;
851
+ referrer?: string | undefined;
852
+ }, {
853
+ no_cache?: boolean | undefined;
854
+ network?: import("wowok").ENTRYPOINT | undefined;
855
+ account?: string | undefined;
856
+ permission_guard?: string[] | undefined;
857
+ referrer?: string | undefined;
858
+ }>>;
859
+ submission: z.ZodOptional<z.ZodObject<{
860
+ type: z.ZodLiteral<"submission">;
861
+ guard: z.ZodArray<z.ZodObject<{
862
+ object: z.ZodEffects<z.ZodString, string, string>;
863
+ impack: z.ZodBoolean;
864
+ }, "strict", z.ZodTypeAny, {
865
+ object: string;
866
+ impack: boolean;
867
+ }, {
868
+ object: string;
869
+ impack: boolean;
870
+ }>, "many">;
871
+ submission: z.ZodArray<z.ZodObject<{
872
+ guard: z.ZodEffects<z.ZodString, string, string>;
873
+ submission: z.ZodArray<z.ZodObject<{
874
+ identifier: z.ZodNumber;
875
+ b_submission: z.ZodBoolean;
876
+ 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">]>;
877
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
878
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
879
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
880
+ }, "strict", z.ZodTypeAny, {
881
+ name_or_address?: string | undefined;
882
+ local_mark_first?: boolean | undefined;
883
+ }, {
884
+ name_or_address?: string | undefined;
885
+ local_mark_first?: boolean | undefined;
886
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
887
+ entities: z.ZodArray<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
+ }>, "many">;
897
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
898
+ }, "strict", z.ZodTypeAny, {
899
+ entities: {
900
+ name_or_address?: string | undefined;
901
+ local_mark_first?: boolean | undefined;
902
+ }[];
903
+ check_all_founded?: boolean | undefined;
904
+ }, {
905
+ entities: {
906
+ name_or_address?: string | undefined;
907
+ local_mark_first?: boolean | undefined;
908
+ }[];
909
+ check_all_founded?: boolean | undefined;
910
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
911
+ name: z.ZodDefault<z.ZodString>;
912
+ } & {
913
+ 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]>>;
914
+ }, "strict", z.ZodTypeAny, {
915
+ identifier: number;
916
+ b_submission: boolean;
917
+ 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";
918
+ name: string;
919
+ value?: string | number | boolean | {
920
+ name_or_address?: string | undefined;
921
+ local_mark_first?: boolean | undefined;
922
+ } | {
923
+ entities: {
924
+ name_or_address?: string | undefined;
925
+ local_mark_first?: boolean | undefined;
926
+ }[];
927
+ check_all_founded?: boolean | undefined;
928
+ } | boolean[] | string[] | number[] | number[][] | undefined;
929
+ object_type?: import("wowok").ObjectType | undefined;
930
+ }, {
931
+ identifier: number;
932
+ b_submission: boolean;
933
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
934
+ value?: string | number | boolean | {
935
+ name_or_address?: string | undefined;
936
+ local_mark_first?: boolean | undefined;
937
+ } | {
938
+ entities: {
939
+ name_or_address?: string | undefined;
940
+ local_mark_first?: boolean | undefined;
941
+ }[];
942
+ check_all_founded?: boolean | undefined;
943
+ } | boolean[] | string[] | number[] | number[][] | undefined;
944
+ name?: string | undefined;
945
+ object_type?: import("wowok").ObjectType | undefined;
946
+ }>, "many">;
947
+ }, "strict", z.ZodTypeAny, {
948
+ guard: string;
949
+ submission: {
950
+ identifier: number;
951
+ b_submission: boolean;
952
+ 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";
953
+ name: string;
954
+ value?: string | number | boolean | {
955
+ name_or_address?: string | undefined;
956
+ local_mark_first?: boolean | undefined;
957
+ } | {
958
+ entities: {
959
+ name_or_address?: string | undefined;
960
+ local_mark_first?: boolean | undefined;
961
+ }[];
962
+ check_all_founded?: boolean | undefined;
963
+ } | boolean[] | string[] | number[] | number[][] | undefined;
964
+ object_type?: import("wowok").ObjectType | undefined;
965
+ }[];
966
+ }, {
967
+ guard: string;
968
+ submission: {
969
+ identifier: number;
970
+ b_submission: boolean;
971
+ 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";
972
+ value?: string | number | boolean | {
973
+ name_or_address?: string | undefined;
974
+ local_mark_first?: boolean | undefined;
975
+ } | {
976
+ entities: {
977
+ name_or_address?: string | undefined;
978
+ local_mark_first?: boolean | undefined;
979
+ }[];
980
+ check_all_founded?: boolean | undefined;
981
+ } | boolean[] | string[] | number[] | number[][] | undefined;
982
+ name?: string | undefined;
983
+ object_type?: import("wowok").ObjectType | undefined;
984
+ }[];
985
+ }>, "many">;
986
+ }, "strict", z.ZodTypeAny, {
987
+ type: "submission";
988
+ guard: {
989
+ object: string;
990
+ impack: boolean;
991
+ }[];
992
+ submission: {
993
+ guard: string;
994
+ submission: {
995
+ identifier: number;
996
+ b_submission: boolean;
997
+ 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";
998
+ name: string;
999
+ value?: string | number | boolean | {
1000
+ name_or_address?: string | undefined;
1001
+ local_mark_first?: boolean | undefined;
1002
+ } | {
1003
+ entities: {
1004
+ name_or_address?: string | undefined;
1005
+ local_mark_first?: boolean | undefined;
1006
+ }[];
1007
+ check_all_founded?: boolean | undefined;
1008
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1009
+ object_type?: import("wowok").ObjectType | undefined;
1010
+ }[];
1011
+ }[];
1012
+ }, {
1013
+ type: "submission";
1014
+ guard: {
1015
+ object: string;
1016
+ impack: boolean;
1017
+ }[];
1018
+ submission: {
1019
+ guard: string;
1020
+ submission: {
1021
+ identifier: number;
1022
+ b_submission: boolean;
1023
+ 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";
1024
+ value?: string | number | boolean | {
1025
+ name_or_address?: string | undefined;
1026
+ local_mark_first?: boolean | undefined;
1027
+ } | {
1028
+ entities: {
1029
+ name_or_address?: string | undefined;
1030
+ local_mark_first?: boolean | undefined;
1031
+ }[];
1032
+ check_all_founded?: boolean | undefined;
1033
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1034
+ name?: string | undefined;
1035
+ object_type?: import("wowok").ObjectType | undefined;
1036
+ }[];
1037
+ }[];
1038
+ }>>;
1039
+ }, "strict", z.ZodTypeAny, {
1040
+ data: {
1041
+ object: string | {
1042
+ name?: string | undefined;
1043
+ replaceExistName?: boolean | undefined;
1044
+ tags?: string[] | undefined;
1045
+ onChain?: boolean | undefined;
1046
+ permission?: string | {
1047
+ name?: string | undefined;
1048
+ description?: string | undefined;
1049
+ replaceExistName?: boolean | undefined;
1050
+ tags?: string[] | undefined;
1051
+ onChain?: boolean | undefined;
1052
+ } | undefined;
1053
+ };
1054
+ description?: string | undefined;
1055
+ location?: string | undefined;
1056
+ owner_receive?: {
1057
+ received: {
1058
+ id: string;
1059
+ balance: string | number;
1060
+ payment: string;
1061
+ }[];
1062
+ balance: string | number;
1063
+ token_type: string;
1064
+ } | "recently" | {
1065
+ type: string;
1066
+ id: string;
1067
+ }[] | undefined;
1068
+ rewards?: {
1069
+ op: "set" | "add";
1070
+ objects: string[];
1071
+ } | {
1072
+ op: "remove";
1073
+ objects: string[];
1074
+ } | {
1075
+ op: "clear";
1076
+ } | undefined;
1077
+ guards?: {
1078
+ op: "add";
1079
+ guard: {
1080
+ guard: string;
1081
+ service_identifier?: number | null | undefined;
1082
+ }[];
1083
+ } | {
1084
+ op: "set";
1085
+ guard: {
1086
+ guard: string;
1087
+ service_identifier?: number | null | undefined;
1088
+ }[];
1089
+ } | {
1090
+ op: "remove";
1091
+ guard: string[];
1092
+ } | {
1093
+ op: "clear";
1094
+ } | undefined;
1095
+ um?: string | null | undefined;
1096
+ feedback?: {
1097
+ who: {
1098
+ name_or_address?: string | undefined;
1099
+ local_mark_first?: boolean | undefined;
1100
+ };
1101
+ feedback?: string | undefined;
1102
+ acceptance_score?: number | undefined;
1103
+ }[] | undefined;
1104
+ present?: {
1105
+ recommend: string;
1106
+ service?: string | undefined;
1107
+ by_guard?: string | undefined;
1108
+ } | undefined;
1109
+ };
1110
+ submission?: {
1111
+ type: "submission";
1112
+ guard: {
1113
+ object: string;
1114
+ impack: boolean;
1115
+ }[];
1116
+ submission: {
1117
+ guard: string;
1118
+ submission: {
1119
+ identifier: number;
1120
+ b_submission: boolean;
1121
+ 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";
1122
+ name: string;
1123
+ value?: string | number | boolean | {
1124
+ name_or_address?: string | undefined;
1125
+ local_mark_first?: boolean | undefined;
1126
+ } | {
1127
+ entities: {
1128
+ name_or_address?: string | undefined;
1129
+ local_mark_first?: boolean | undefined;
1130
+ }[];
1131
+ check_all_founded?: boolean | undefined;
1132
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1133
+ object_type?: import("wowok").ObjectType | undefined;
1134
+ }[];
1135
+ }[];
1136
+ } | undefined;
1137
+ env?: {
1138
+ account: string;
1139
+ no_cache?: boolean | undefined;
1140
+ network?: import("wowok").ENTRYPOINT | undefined;
1141
+ permission_guard?: string[] | undefined;
1142
+ referrer?: string | undefined;
1143
+ } | undefined;
1144
+ }, {
1145
+ data: {
1146
+ object: string | {
1147
+ name?: string | undefined;
1148
+ replaceExistName?: boolean | undefined;
1149
+ tags?: string[] | undefined;
1150
+ onChain?: boolean | undefined;
1151
+ permission?: string | {
1152
+ name?: string | undefined;
1153
+ description?: string | undefined;
1154
+ replaceExistName?: boolean | undefined;
1155
+ tags?: string[] | undefined;
1156
+ onChain?: boolean | undefined;
1157
+ } | undefined;
1158
+ };
1159
+ description?: string | undefined;
1160
+ location?: string | undefined;
1161
+ owner_receive?: {
1162
+ received: {
1163
+ id: string;
1164
+ balance: string | number;
1165
+ payment: string;
1166
+ }[];
1167
+ balance: string | number;
1168
+ token_type: string;
1169
+ } | "recently" | {
1170
+ type: string;
1171
+ id: string;
1172
+ }[] | undefined;
1173
+ rewards?: {
1174
+ op: "set" | "add";
1175
+ objects: string[];
1176
+ } | {
1177
+ op: "remove";
1178
+ objects: string[];
1179
+ } | {
1180
+ op: "clear";
1181
+ } | undefined;
1182
+ guards?: {
1183
+ op: "add";
1184
+ guard: {
1185
+ guard: string;
1186
+ service_identifier?: number | null | undefined;
1187
+ }[];
1188
+ } | {
1189
+ op: "set";
1190
+ guard: {
1191
+ guard: string;
1192
+ service_identifier?: number | null | undefined;
1193
+ }[];
1194
+ } | {
1195
+ op: "remove";
1196
+ guard: string[];
1197
+ } | {
1198
+ op: "clear";
1199
+ } | undefined;
1200
+ um?: string | null | undefined;
1201
+ feedback?: {
1202
+ who: {
1203
+ name_or_address?: string | undefined;
1204
+ local_mark_first?: boolean | undefined;
1205
+ };
1206
+ feedback?: string | undefined;
1207
+ acceptance_score?: number | undefined;
1208
+ }[] | undefined;
1209
+ present?: {
1210
+ recommend: string;
1211
+ service?: string | undefined;
1212
+ by_guard?: string | undefined;
1213
+ } | undefined;
1214
+ };
1215
+ submission?: {
1216
+ type: "submission";
1217
+ guard: {
1218
+ object: string;
1219
+ impack: boolean;
1220
+ }[];
1221
+ submission: {
1222
+ guard: string;
1223
+ submission: {
1224
+ identifier: number;
1225
+ b_submission: boolean;
1226
+ 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";
1227
+ value?: string | number | boolean | {
1228
+ name_or_address?: string | undefined;
1229
+ local_mark_first?: boolean | undefined;
1230
+ } | {
1231
+ entities: {
1232
+ name_or_address?: string | undefined;
1233
+ local_mark_first?: boolean | undefined;
1234
+ }[];
1235
+ check_all_founded?: boolean | undefined;
1236
+ } | boolean[] | string[] | number[] | number[][] | undefined;
1237
+ name?: string | undefined;
1238
+ object_type?: import("wowok").ObjectType | undefined;
1239
+ }[];
1240
+ }[];
1241
+ } | undefined;
1242
+ env?: {
1243
+ no_cache?: boolean | undefined;
1244
+ network?: import("wowok").ENTRYPOINT | undefined;
1245
+ account?: string | undefined;
1246
+ permission_guard?: string[] | undefined;
1247
+ referrer?: string | undefined;
1248
+ } | undefined;
1249
+ }>;
7
1250
  export type CallDemand_Data = z.infer<typeof CallDemand_DataSchema>;
8
1251
  export type Guards = z.infer<typeof GuardsSchema>;
9
1252
  export type DemandPresent = z.infer<typeof DemandPresentSchema>;