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