@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,843 @@
1
+ import { z } from "zod";
2
+ import { ValueType as WowValueType, ObjectType as WowObjectType, ENTRYPOINT } from "wowok";
3
+ export declare const DescriptionSchema: z.ZodEffects<z.ZodString, string, string>;
4
+ export declare const LongNameSchema: z.ZodEffects<z.ZodString, string, string>;
5
+ export declare const WowAddressSchema: z.ZodEffects<z.ZodString, string, string>;
6
+ export declare const TokenTypeSchema: z.ZodEffects<z.ZodString, string, string>;
7
+ export declare const TokenTypeWithDefaultSchema: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
8
+ export declare const NameSchema: z.ZodEffects<z.ZodString, string, string>;
9
+ export declare const NotEmptyNameSchema: z.ZodEffects<z.ZodString, string, string>;
10
+ export declare const NameOrAddressSchema: z.ZodEffects<z.ZodString, string, string>;
11
+ export declare const AccountOrMark_AddressSchema: z.ZodObject<{
12
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
14
+ }, "strict", z.ZodTypeAny, {
15
+ name_or_address?: string | undefined;
16
+ local_mark_first?: boolean | undefined;
17
+ }, {
18
+ name_or_address?: string | undefined;
19
+ local_mark_first?: boolean | undefined;
20
+ }>;
21
+ export declare const ManyAccountOrMark_AddressSchema: z.ZodObject<{
22
+ entities: z.ZodArray<z.ZodObject<{
23
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
24
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
25
+ }, "strict", z.ZodTypeAny, {
26
+ name_or_address?: string | undefined;
27
+ local_mark_first?: boolean | undefined;
28
+ }, {
29
+ name_or_address?: string | undefined;
30
+ local_mark_first?: boolean | undefined;
31
+ }>, "many">;
32
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
33
+ }, "strict", z.ZodTypeAny, {
34
+ entities: {
35
+ name_or_address?: string | undefined;
36
+ local_mark_first?: boolean | undefined;
37
+ }[];
38
+ check_all_founded?: boolean | undefined;
39
+ }, {
40
+ entities: {
41
+ name_or_address?: string | undefined;
42
+ local_mark_first?: boolean | undefined;
43
+ }[];
44
+ check_all_founded?: boolean | undefined;
45
+ }>;
46
+ export declare const AccountOrMark_AddressAISchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
47
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
48
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
49
+ }, "strict", z.ZodTypeAny, {
50
+ name_or_address?: string | undefined;
51
+ local_mark_first?: boolean | undefined;
52
+ }, {
53
+ name_or_address?: string | undefined;
54
+ local_mark_first?: boolean | undefined;
55
+ }>]>;
56
+ export declare const ManyAccountOrMark_AddressAISchema: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
57
+ entities: z.ZodArray<z.ZodObject<{
58
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
59
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
60
+ }, "strict", z.ZodTypeAny, {
61
+ name_or_address?: string | undefined;
62
+ local_mark_first?: boolean | undefined;
63
+ }, {
64
+ name_or_address?: string | undefined;
65
+ local_mark_first?: boolean | undefined;
66
+ }>, "many">;
67
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
68
+ }, "strict", z.ZodTypeAny, {
69
+ entities: {
70
+ name_or_address?: string | undefined;
71
+ local_mark_first?: boolean | undefined;
72
+ }[];
73
+ check_all_founded?: boolean | undefined;
74
+ }, {
75
+ entities: {
76
+ name_or_address?: string | undefined;
77
+ local_mark_first?: boolean | undefined;
78
+ }[];
79
+ check_all_founded?: boolean | undefined;
80
+ }>]>;
81
+ export declare const ObjectOwnerSchema: z.ZodUnion<[z.ZodObject<{
82
+ AddressOwner: z.ZodString;
83
+ }, "strict", z.ZodTypeAny, {
84
+ AddressOwner: string;
85
+ }, {
86
+ AddressOwner: string;
87
+ }>, z.ZodObject<{
88
+ ObjectOwner: z.ZodString;
89
+ }, "strict", z.ZodTypeAny, {
90
+ ObjectOwner: string;
91
+ }, {
92
+ ObjectOwner: string;
93
+ }>, z.ZodObject<{
94
+ Shared: z.ZodObject<{
95
+ initial_shared_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
96
+ }, "strict", z.ZodTypeAny, {
97
+ initial_shared_version: string | number;
98
+ }, {
99
+ initial_shared_version: string | number;
100
+ }>;
101
+ }, "strict", z.ZodTypeAny, {
102
+ Shared: {
103
+ initial_shared_version: string | number;
104
+ };
105
+ }, {
106
+ Shared: {
107
+ initial_shared_version: string | number;
108
+ };
109
+ }>, z.ZodLiteral<"Immutable">, z.ZodObject<{
110
+ ConsensusAddressOwner: z.ZodObject<{
111
+ owner: z.ZodString;
112
+ start_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
113
+ }, "strict", z.ZodTypeAny, {
114
+ owner: string;
115
+ start_version: string | number;
116
+ }, {
117
+ owner: string;
118
+ start_version: string | number;
119
+ }>;
120
+ }, "strict", z.ZodTypeAny, {
121
+ ConsensusAddressOwner: {
122
+ owner: string;
123
+ start_version: string | number;
124
+ };
125
+ }, {
126
+ ConsensusAddressOwner: {
127
+ owner: string;
128
+ start_version: string | number;
129
+ };
130
+ }>]>;
131
+ export declare const ValueTypeUserSchema: z.ZodUnion<[z.ZodLiteral<WowValueType.Bool>, z.ZodLiteral<WowValueType.Address>, z.ZodLiteral<WowValueType.String>, z.ZodLiteral<WowValueType.U8>, z.ZodLiteral<WowValueType.U16>, z.ZodLiteral<WowValueType.U32>, z.ZodLiteral<WowValueType.U64>, z.ZodLiteral<WowValueType.U128>, z.ZodLiteral<WowValueType.U256>, z.ZodLiteral<WowValueType.VecBool>, z.ZodLiteral<WowValueType.VecAddress>, z.ZodLiteral<WowValueType.VecString>, z.ZodLiteral<WowValueType.VecU8>, z.ZodLiteral<WowValueType.VecU16>, z.ZodLiteral<WowValueType.VecU32>, z.ZodLiteral<WowValueType.VecU64>, z.ZodLiteral<WowValueType.VecU128>, z.ZodLiteral<WowValueType.VecU256>, z.ZodLiteral<WowValueType.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">]>;
132
+ export declare const ValueTypeSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<WowValueType.Bool>, z.ZodLiteral<WowValueType.Address>, z.ZodLiteral<WowValueType.String>, z.ZodLiteral<WowValueType.U8>, z.ZodLiteral<WowValueType.U16>, z.ZodLiteral<WowValueType.U32>, z.ZodLiteral<WowValueType.U64>, z.ZodLiteral<WowValueType.U128>, z.ZodLiteral<WowValueType.U256>, z.ZodLiteral<WowValueType.VecBool>, z.ZodLiteral<WowValueType.VecAddress>, z.ZodLiteral<WowValueType.VecString>, z.ZodLiteral<WowValueType.VecU8>, z.ZodLiteral<WowValueType.VecU16>, z.ZodLiteral<WowValueType.VecU32>, z.ZodLiteral<WowValueType.VecU64>, z.ZodLiteral<WowValueType.VecU128>, z.ZodLiteral<WowValueType.VecU256>, z.ZodLiteral<WowValueType.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">]>, z.ZodLiteral<WowValueType.Value>]>, z.ZodLiteral<"Value">]>;
133
+ export declare const ObjectTypeSchema: z.ZodEnum<[WowObjectType.Permission, WowObjectType.Repository, WowObjectType.Arb, WowObjectType.Arbitration, WowObjectType.Service, WowObjectType.Machine, WowObjectType.Order, WowObjectType.Progress, WowObjectType.Payment, WowObjectType.Treasury, WowObjectType.Guard, WowObjectType.Demand, WowObjectType.Passport, WowObjectType.Allocation, WowObjectType.Resource, WowObjectType.Reward, WowObjectType.Discount, WowObjectType.EntityRegistrar, WowObjectType.EntityLinker, WowObjectType.Proof, WowObjectType.WReceivedObject, WowObjectType.Contact, WowObjectType.TableItem_ProgressHistory, WowObjectType.TableItem_PermissionPerm, WowObjectType.TableItem_DemandPresenter, WowObjectType.TableItem_MachineNode, WowObjectType.TableItem_TreasuryHistory, WowObjectType.TableItem_RepositoryData, WowObjectType.TableItem_RewardRecord, WowObjectType.TableItem_EntityLinker, WowObjectType.TableItem_AddressMark, WowObjectType.TableItem_EntityRegistrar]>;
134
+ export declare const BalanceTypeSchema: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
135
+ export declare const QueryIdSchema: z.ZodNumber;
136
+ export declare const CacheExpireTypeSchema: z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>;
137
+ export declare const ValueContainerSchema: z.ZodType<any>;
138
+ export declare const SupportedValueUserSchema: z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
139
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
140
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
141
+ }, "strict", z.ZodTypeAny, {
142
+ name_or_address?: string | undefined;
143
+ local_mark_first?: boolean | undefined;
144
+ }, {
145
+ name_or_address?: string | undefined;
146
+ local_mark_first?: boolean | undefined;
147
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
148
+ entities: z.ZodArray<z.ZodObject<{
149
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
150
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
151
+ }, "strict", z.ZodTypeAny, {
152
+ name_or_address?: string | undefined;
153
+ local_mark_first?: boolean | undefined;
154
+ }, {
155
+ name_or_address?: string | undefined;
156
+ local_mark_first?: boolean | undefined;
157
+ }>, "many">;
158
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
159
+ }, "strict", z.ZodTypeAny, {
160
+ entities: {
161
+ name_or_address?: string | undefined;
162
+ local_mark_first?: boolean | undefined;
163
+ }[];
164
+ check_all_founded?: boolean | undefined;
165
+ }, {
166
+ entities: {
167
+ name_or_address?: string | undefined;
168
+ local_mark_first?: boolean | undefined;
169
+ }[];
170
+ check_all_founded?: boolean | undefined;
171
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>;
172
+ export declare const SupportedValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
173
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
174
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
175
+ }, "strict", z.ZodTypeAny, {
176
+ name_or_address?: string | undefined;
177
+ local_mark_first?: boolean | undefined;
178
+ }, {
179
+ name_or_address?: string | undefined;
180
+ local_mark_first?: boolean | undefined;
181
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
182
+ entities: z.ZodArray<z.ZodObject<{
183
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
184
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
185
+ }, "strict", z.ZodTypeAny, {
186
+ name_or_address?: string | undefined;
187
+ local_mark_first?: boolean | undefined;
188
+ }, {
189
+ name_or_address?: string | undefined;
190
+ local_mark_first?: boolean | undefined;
191
+ }>, "many">;
192
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
193
+ }, "strict", z.ZodTypeAny, {
194
+ entities: {
195
+ name_or_address?: string | undefined;
196
+ local_mark_first?: boolean | undefined;
197
+ }[];
198
+ check_all_founded?: boolean | undefined;
199
+ }, {
200
+ entities: {
201
+ name_or_address?: string | undefined;
202
+ local_mark_first?: boolean | undefined;
203
+ }[];
204
+ check_all_founded?: boolean | undefined;
205
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>, z.ZodType<any, z.ZodTypeDef, any>]>;
206
+ export declare const GuardIdentifierSchema: z.ZodNumber;
207
+ export declare const GuardTableItemBaseSchema: z.ZodObject<{
208
+ identifier: z.ZodNumber;
209
+ b_submission: z.ZodBoolean;
210
+ value_type: z.ZodUnion<[z.ZodLiteral<WowValueType.Bool>, z.ZodLiteral<WowValueType.Address>, z.ZodLiteral<WowValueType.String>, z.ZodLiteral<WowValueType.U8>, z.ZodLiteral<WowValueType.U16>, z.ZodLiteral<WowValueType.U32>, z.ZodLiteral<WowValueType.U64>, z.ZodLiteral<WowValueType.U128>, z.ZodLiteral<WowValueType.U256>, z.ZodLiteral<WowValueType.VecBool>, z.ZodLiteral<WowValueType.VecAddress>, z.ZodLiteral<WowValueType.VecString>, z.ZodLiteral<WowValueType.VecU8>, z.ZodLiteral<WowValueType.VecU16>, z.ZodLiteral<WowValueType.VecU32>, z.ZodLiteral<WowValueType.VecU64>, z.ZodLiteral<WowValueType.VecU128>, z.ZodLiteral<WowValueType.VecU256>, z.ZodLiteral<WowValueType.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">]>;
211
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
212
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
213
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
214
+ }, "strict", z.ZodTypeAny, {
215
+ name_or_address?: string | undefined;
216
+ local_mark_first?: boolean | undefined;
217
+ }, {
218
+ name_or_address?: string | undefined;
219
+ local_mark_first?: boolean | undefined;
220
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
221
+ entities: z.ZodArray<z.ZodObject<{
222
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
223
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
224
+ }, "strict", z.ZodTypeAny, {
225
+ name_or_address?: string | undefined;
226
+ local_mark_first?: boolean | undefined;
227
+ }, {
228
+ name_or_address?: string | undefined;
229
+ local_mark_first?: boolean | undefined;
230
+ }>, "many">;
231
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
232
+ }, "strict", z.ZodTypeAny, {
233
+ entities: {
234
+ name_or_address?: string | undefined;
235
+ local_mark_first?: boolean | undefined;
236
+ }[];
237
+ check_all_founded?: boolean | undefined;
238
+ }, {
239
+ entities: {
240
+ name_or_address?: string | undefined;
241
+ local_mark_first?: boolean | undefined;
242
+ }[];
243
+ check_all_founded?: boolean | undefined;
244
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
245
+ name: z.ZodDefault<z.ZodString>;
246
+ }, "strict", z.ZodTypeAny, {
247
+ identifier: number;
248
+ b_submission: boolean;
249
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | WowValueType.Bool | WowValueType.Address | WowValueType.String | WowValueType.U8 | WowValueType.U16 | WowValueType.U32 | WowValueType.U64 | WowValueType.U128 | WowValueType.U256 | WowValueType.VecBool | WowValueType.VecAddress | WowValueType.VecString | WowValueType.VecU8 | WowValueType.VecU16 | WowValueType.VecU32 | WowValueType.VecU64 | WowValueType.VecU128 | WowValueType.VecU256 | WowValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
250
+ name: string;
251
+ value?: string | number | boolean | {
252
+ name_or_address?: string | undefined;
253
+ local_mark_first?: boolean | undefined;
254
+ } | {
255
+ entities: {
256
+ name_or_address?: string | undefined;
257
+ local_mark_first?: boolean | undefined;
258
+ }[];
259
+ check_all_founded?: boolean | undefined;
260
+ } | string[] | boolean[] | number[] | number[][] | undefined;
261
+ }, {
262
+ identifier: number;
263
+ b_submission: boolean;
264
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | WowValueType.Bool | WowValueType.Address | WowValueType.String | WowValueType.U8 | WowValueType.U16 | WowValueType.U32 | WowValueType.U64 | WowValueType.U128 | WowValueType.U256 | WowValueType.VecBool | WowValueType.VecAddress | WowValueType.VecString | WowValueType.VecU8 | WowValueType.VecU16 | WowValueType.VecU32 | WowValueType.VecU64 | WowValueType.VecU128 | WowValueType.VecU256 | WowValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
265
+ value?: string | number | boolean | {
266
+ name_or_address?: string | undefined;
267
+ local_mark_first?: boolean | undefined;
268
+ } | {
269
+ entities: {
270
+ name_or_address?: string | undefined;
271
+ local_mark_first?: boolean | undefined;
272
+ }[];
273
+ check_all_founded?: boolean | undefined;
274
+ } | string[] | boolean[] | number[] | number[][] | undefined;
275
+ name?: string | undefined;
276
+ }>;
277
+ export declare const GuardTableItemSchema: z.ZodObject<{
278
+ identifier: z.ZodNumber;
279
+ b_submission: z.ZodBoolean;
280
+ value_type: z.ZodUnion<[z.ZodLiteral<WowValueType.Bool>, z.ZodLiteral<WowValueType.Address>, z.ZodLiteral<WowValueType.String>, z.ZodLiteral<WowValueType.U8>, z.ZodLiteral<WowValueType.U16>, z.ZodLiteral<WowValueType.U32>, z.ZodLiteral<WowValueType.U64>, z.ZodLiteral<WowValueType.U128>, z.ZodLiteral<WowValueType.U256>, z.ZodLiteral<WowValueType.VecBool>, z.ZodLiteral<WowValueType.VecAddress>, z.ZodLiteral<WowValueType.VecString>, z.ZodLiteral<WowValueType.VecU8>, z.ZodLiteral<WowValueType.VecU16>, z.ZodLiteral<WowValueType.VecU32>, z.ZodLiteral<WowValueType.VecU64>, z.ZodLiteral<WowValueType.VecU128>, z.ZodLiteral<WowValueType.VecU256>, z.ZodLiteral<WowValueType.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">]>;
281
+ value: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
282
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
283
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
284
+ }, "strict", z.ZodTypeAny, {
285
+ name_or_address?: string | undefined;
286
+ local_mark_first?: boolean | undefined;
287
+ }, {
288
+ name_or_address?: string | undefined;
289
+ local_mark_first?: boolean | undefined;
290
+ }>, z.ZodString]>, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodBoolean, "many">, z.ZodUnion<[z.ZodObject<{
291
+ entities: z.ZodArray<z.ZodObject<{
292
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
293
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
294
+ }, "strict", z.ZodTypeAny, {
295
+ name_or_address?: string | undefined;
296
+ local_mark_first?: boolean | undefined;
297
+ }, {
298
+ name_or_address?: string | undefined;
299
+ local_mark_first?: boolean | undefined;
300
+ }>, "many">;
301
+ check_all_founded: z.ZodOptional<z.ZodBoolean>;
302
+ }, "strict", z.ZodTypeAny, {
303
+ entities: {
304
+ name_or_address?: string | undefined;
305
+ local_mark_first?: boolean | undefined;
306
+ }[];
307
+ check_all_founded?: boolean | undefined;
308
+ }, {
309
+ entities: {
310
+ name_or_address?: string | undefined;
311
+ local_mark_first?: boolean | undefined;
312
+ }[];
313
+ check_all_founded?: boolean | undefined;
314
+ }>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>>;
315
+ name: z.ZodDefault<z.ZodString>;
316
+ } & {
317
+ object_type: z.ZodOptional<z.ZodEnum<[WowObjectType.Permission, WowObjectType.Repository, WowObjectType.Arb, WowObjectType.Arbitration, WowObjectType.Service, WowObjectType.Machine, WowObjectType.Order, WowObjectType.Progress, WowObjectType.Payment, WowObjectType.Treasury, WowObjectType.Guard, WowObjectType.Demand, WowObjectType.Passport, WowObjectType.Allocation, WowObjectType.Resource, WowObjectType.Reward, WowObjectType.Discount, WowObjectType.EntityRegistrar, WowObjectType.EntityLinker, WowObjectType.Proof, WowObjectType.WReceivedObject, WowObjectType.Contact, WowObjectType.TableItem_ProgressHistory, WowObjectType.TableItem_PermissionPerm, WowObjectType.TableItem_DemandPresenter, WowObjectType.TableItem_MachineNode, WowObjectType.TableItem_TreasuryHistory, WowObjectType.TableItem_RepositoryData, WowObjectType.TableItem_RewardRecord, WowObjectType.TableItem_EntityLinker, WowObjectType.TableItem_AddressMark, WowObjectType.TableItem_EntityRegistrar]>>;
318
+ }, "strict", z.ZodTypeAny, {
319
+ identifier: number;
320
+ b_submission: boolean;
321
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | WowValueType.Bool | WowValueType.Address | WowValueType.String | WowValueType.U8 | WowValueType.U16 | WowValueType.U32 | WowValueType.U64 | WowValueType.U128 | WowValueType.U256 | WowValueType.VecBool | WowValueType.VecAddress | WowValueType.VecString | WowValueType.VecU8 | WowValueType.VecU16 | WowValueType.VecU32 | WowValueType.VecU64 | WowValueType.VecU128 | WowValueType.VecU256 | WowValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
322
+ name: string;
323
+ value?: string | number | boolean | {
324
+ name_or_address?: string | undefined;
325
+ local_mark_first?: boolean | undefined;
326
+ } | {
327
+ entities: {
328
+ name_or_address?: string | undefined;
329
+ local_mark_first?: boolean | undefined;
330
+ }[];
331
+ check_all_founded?: boolean | undefined;
332
+ } | string[] | boolean[] | number[] | number[][] | undefined;
333
+ object_type?: WowObjectType | undefined;
334
+ }, {
335
+ identifier: number;
336
+ b_submission: boolean;
337
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | WowValueType.Bool | WowValueType.Address | WowValueType.String | WowValueType.U8 | WowValueType.U16 | WowValueType.U32 | WowValueType.U64 | WowValueType.U128 | WowValueType.U256 | WowValueType.VecBool | WowValueType.VecAddress | WowValueType.VecString | WowValueType.VecU8 | WowValueType.VecU16 | WowValueType.VecU32 | WowValueType.VecU64 | WowValueType.VecU128 | WowValueType.VecU256 | WowValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
338
+ value?: string | number | boolean | {
339
+ name_or_address?: string | undefined;
340
+ local_mark_first?: boolean | undefined;
341
+ } | {
342
+ entities: {
343
+ name_or_address?: string | undefined;
344
+ local_mark_first?: boolean | undefined;
345
+ }[];
346
+ check_all_founded?: boolean | undefined;
347
+ } | string[] | boolean[] | number[] | number[][] | undefined;
348
+ name?: string | undefined;
349
+ object_type?: WowObjectType | undefined;
350
+ }>;
351
+ export declare const EntrypointSchema: z.ZodEnum<[ENTRYPOINT.Localnet, ENTRYPOINT.Testnet]>;
352
+ export declare const FaucetNetworkSchema: z.ZodEnum<[ENTRYPOINT.Localnet, ENTRYPOINT.Testnet]>;
353
+ export declare const ObjectBaseSchema: z.ZodObject<{
354
+ object: z.ZodString;
355
+ type: z.ZodOptional<z.ZodEnum<[WowObjectType.Permission, WowObjectType.Repository, WowObjectType.Arb, WowObjectType.Arbitration, WowObjectType.Service, WowObjectType.Machine, WowObjectType.Order, WowObjectType.Progress, WowObjectType.Payment, WowObjectType.Treasury, WowObjectType.Guard, WowObjectType.Demand, WowObjectType.Passport, WowObjectType.Allocation, WowObjectType.Resource, WowObjectType.Reward, WowObjectType.Discount, WowObjectType.EntityRegistrar, WowObjectType.EntityLinker, WowObjectType.Proof, WowObjectType.WReceivedObject, WowObjectType.Contact, WowObjectType.TableItem_ProgressHistory, WowObjectType.TableItem_PermissionPerm, WowObjectType.TableItem_DemandPresenter, WowObjectType.TableItem_MachineNode, WowObjectType.TableItem_TreasuryHistory, WowObjectType.TableItem_RepositoryData, WowObjectType.TableItem_RewardRecord, WowObjectType.TableItem_EntityLinker, WowObjectType.TableItem_AddressMark, WowObjectType.TableItem_EntityRegistrar]>>;
356
+ type_raw: z.ZodOptional<z.ZodString>;
357
+ owner: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
358
+ AddressOwner: z.ZodString;
359
+ }, "strict", z.ZodTypeAny, {
360
+ AddressOwner: string;
361
+ }, {
362
+ AddressOwner: string;
363
+ }>, z.ZodObject<{
364
+ ObjectOwner: z.ZodString;
365
+ }, "strict", z.ZodTypeAny, {
366
+ ObjectOwner: string;
367
+ }, {
368
+ ObjectOwner: string;
369
+ }>, z.ZodObject<{
370
+ Shared: z.ZodObject<{
371
+ initial_shared_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
372
+ }, "strict", z.ZodTypeAny, {
373
+ initial_shared_version: string | number;
374
+ }, {
375
+ initial_shared_version: string | number;
376
+ }>;
377
+ }, "strict", z.ZodTypeAny, {
378
+ Shared: {
379
+ initial_shared_version: string | number;
380
+ };
381
+ }, {
382
+ Shared: {
383
+ initial_shared_version: string | number;
384
+ };
385
+ }>, z.ZodLiteral<"Immutable">, z.ZodObject<{
386
+ ConsensusAddressOwner: z.ZodObject<{
387
+ owner: z.ZodString;
388
+ start_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
389
+ }, "strict", z.ZodTypeAny, {
390
+ owner: string;
391
+ start_version: string | number;
392
+ }, {
393
+ owner: string;
394
+ start_version: string | number;
395
+ }>;
396
+ }, "strict", z.ZodTypeAny, {
397
+ ConsensusAddressOwner: {
398
+ owner: string;
399
+ start_version: string | number;
400
+ };
401
+ }, {
402
+ ConsensusAddressOwner: {
403
+ owner: string;
404
+ start_version: string | number;
405
+ };
406
+ }>]>, z.ZodNull]>>;
407
+ version: z.ZodOptional<z.ZodString>;
408
+ previousTransaction: z.ZodOptional<z.ZodString>;
409
+ cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
410
+ query_name: z.ZodOptional<z.ZodString>;
411
+ content_raw: z.ZodOptional<z.ZodAny>;
412
+ _guard_node_comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
413
+ type: z.ZodString;
414
+ description: z.ZodString;
415
+ }, "strip", z.ZodTypeAny, {
416
+ type: string;
417
+ description: string;
418
+ }, {
419
+ type: string;
420
+ description: string;
421
+ }>, "many">>;
422
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
423
+ object: z.ZodString;
424
+ type: z.ZodOptional<z.ZodEnum<[WowObjectType.Permission, WowObjectType.Repository, WowObjectType.Arb, WowObjectType.Arbitration, WowObjectType.Service, WowObjectType.Machine, WowObjectType.Order, WowObjectType.Progress, WowObjectType.Payment, WowObjectType.Treasury, WowObjectType.Guard, WowObjectType.Demand, WowObjectType.Passport, WowObjectType.Allocation, WowObjectType.Resource, WowObjectType.Reward, WowObjectType.Discount, WowObjectType.EntityRegistrar, WowObjectType.EntityLinker, WowObjectType.Proof, WowObjectType.WReceivedObject, WowObjectType.Contact, WowObjectType.TableItem_ProgressHistory, WowObjectType.TableItem_PermissionPerm, WowObjectType.TableItem_DemandPresenter, WowObjectType.TableItem_MachineNode, WowObjectType.TableItem_TreasuryHistory, WowObjectType.TableItem_RepositoryData, WowObjectType.TableItem_RewardRecord, WowObjectType.TableItem_EntityLinker, WowObjectType.TableItem_AddressMark, WowObjectType.TableItem_EntityRegistrar]>>;
425
+ type_raw: z.ZodOptional<z.ZodString>;
426
+ owner: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
427
+ AddressOwner: z.ZodString;
428
+ }, "strict", z.ZodTypeAny, {
429
+ AddressOwner: string;
430
+ }, {
431
+ AddressOwner: string;
432
+ }>, z.ZodObject<{
433
+ ObjectOwner: z.ZodString;
434
+ }, "strict", z.ZodTypeAny, {
435
+ ObjectOwner: string;
436
+ }, {
437
+ ObjectOwner: string;
438
+ }>, z.ZodObject<{
439
+ Shared: z.ZodObject<{
440
+ initial_shared_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
441
+ }, "strict", z.ZodTypeAny, {
442
+ initial_shared_version: string | number;
443
+ }, {
444
+ initial_shared_version: string | number;
445
+ }>;
446
+ }, "strict", z.ZodTypeAny, {
447
+ Shared: {
448
+ initial_shared_version: string | number;
449
+ };
450
+ }, {
451
+ Shared: {
452
+ initial_shared_version: string | number;
453
+ };
454
+ }>, z.ZodLiteral<"Immutable">, z.ZodObject<{
455
+ ConsensusAddressOwner: z.ZodObject<{
456
+ owner: z.ZodString;
457
+ start_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
458
+ }, "strict", z.ZodTypeAny, {
459
+ owner: string;
460
+ start_version: string | number;
461
+ }, {
462
+ owner: string;
463
+ start_version: string | number;
464
+ }>;
465
+ }, "strict", z.ZodTypeAny, {
466
+ ConsensusAddressOwner: {
467
+ owner: string;
468
+ start_version: string | number;
469
+ };
470
+ }, {
471
+ ConsensusAddressOwner: {
472
+ owner: string;
473
+ start_version: string | number;
474
+ };
475
+ }>]>, z.ZodNull]>>;
476
+ version: z.ZodOptional<z.ZodString>;
477
+ previousTransaction: z.ZodOptional<z.ZodString>;
478
+ cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
479
+ query_name: z.ZodOptional<z.ZodString>;
480
+ content_raw: z.ZodOptional<z.ZodAny>;
481
+ _guard_node_comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
482
+ type: z.ZodString;
483
+ description: z.ZodString;
484
+ }, "strip", z.ZodTypeAny, {
485
+ type: string;
486
+ description: string;
487
+ }, {
488
+ type: string;
489
+ description: string;
490
+ }>, "many">>;
491
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
492
+ object: z.ZodString;
493
+ type: z.ZodOptional<z.ZodEnum<[WowObjectType.Permission, WowObjectType.Repository, WowObjectType.Arb, WowObjectType.Arbitration, WowObjectType.Service, WowObjectType.Machine, WowObjectType.Order, WowObjectType.Progress, WowObjectType.Payment, WowObjectType.Treasury, WowObjectType.Guard, WowObjectType.Demand, WowObjectType.Passport, WowObjectType.Allocation, WowObjectType.Resource, WowObjectType.Reward, WowObjectType.Discount, WowObjectType.EntityRegistrar, WowObjectType.EntityLinker, WowObjectType.Proof, WowObjectType.WReceivedObject, WowObjectType.Contact, WowObjectType.TableItem_ProgressHistory, WowObjectType.TableItem_PermissionPerm, WowObjectType.TableItem_DemandPresenter, WowObjectType.TableItem_MachineNode, WowObjectType.TableItem_TreasuryHistory, WowObjectType.TableItem_RepositoryData, WowObjectType.TableItem_RewardRecord, WowObjectType.TableItem_EntityLinker, WowObjectType.TableItem_AddressMark, WowObjectType.TableItem_EntityRegistrar]>>;
494
+ type_raw: z.ZodOptional<z.ZodString>;
495
+ owner: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
496
+ AddressOwner: z.ZodString;
497
+ }, "strict", z.ZodTypeAny, {
498
+ AddressOwner: string;
499
+ }, {
500
+ AddressOwner: string;
501
+ }>, z.ZodObject<{
502
+ ObjectOwner: z.ZodString;
503
+ }, "strict", z.ZodTypeAny, {
504
+ ObjectOwner: string;
505
+ }, {
506
+ ObjectOwner: string;
507
+ }>, z.ZodObject<{
508
+ Shared: z.ZodObject<{
509
+ initial_shared_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
510
+ }, "strict", z.ZodTypeAny, {
511
+ initial_shared_version: string | number;
512
+ }, {
513
+ initial_shared_version: string | number;
514
+ }>;
515
+ }, "strict", z.ZodTypeAny, {
516
+ Shared: {
517
+ initial_shared_version: string | number;
518
+ };
519
+ }, {
520
+ Shared: {
521
+ initial_shared_version: string | number;
522
+ };
523
+ }>, z.ZodLiteral<"Immutable">, z.ZodObject<{
524
+ ConsensusAddressOwner: z.ZodObject<{
525
+ owner: z.ZodString;
526
+ start_version: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
527
+ }, "strict", z.ZodTypeAny, {
528
+ owner: string;
529
+ start_version: string | number;
530
+ }, {
531
+ owner: string;
532
+ start_version: string | number;
533
+ }>;
534
+ }, "strict", z.ZodTypeAny, {
535
+ ConsensusAddressOwner: {
536
+ owner: string;
537
+ start_version: string | number;
538
+ };
539
+ }, {
540
+ ConsensusAddressOwner: {
541
+ owner: string;
542
+ start_version: string | number;
543
+ };
544
+ }>]>, z.ZodNull]>>;
545
+ version: z.ZodOptional<z.ZodString>;
546
+ previousTransaction: z.ZodOptional<z.ZodString>;
547
+ cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
548
+ query_name: z.ZodOptional<z.ZodString>;
549
+ content_raw: z.ZodOptional<z.ZodAny>;
550
+ _guard_node_comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
551
+ type: z.ZodString;
552
+ description: z.ZodString;
553
+ }, "strip", z.ZodTypeAny, {
554
+ type: string;
555
+ description: string;
556
+ }, {
557
+ type: string;
558
+ description: string;
559
+ }>, "many">>;
560
+ }, z.ZodTypeAny, "passthrough">>;
561
+ export declare const QueryEnvSchema: z.ZodObject<{
562
+ no_cache: z.ZodOptional<z.ZodBoolean>;
563
+ network: z.ZodOptional<z.ZodEnum<[ENTRYPOINT.Localnet, ENTRYPOINT.Testnet]>>;
564
+ }, "strict", z.ZodTypeAny, {
565
+ no_cache?: boolean | undefined;
566
+ network?: ENTRYPOINT | undefined;
567
+ }, {
568
+ no_cache?: boolean | undefined;
569
+ network?: ENTRYPOINT | undefined;
570
+ }>;
571
+ export declare const QueryReceivedSchema: z.ZodObject<{
572
+ no_cache: z.ZodOptional<z.ZodBoolean>;
573
+ network: z.ZodOptional<z.ZodEnum<[ENTRYPOINT.Localnet, ENTRYPOINT.Testnet]>>;
574
+ } & {
575
+ name_or_address: z.ZodUnion<[z.ZodString, z.ZodObject<{
576
+ name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
577
+ local_mark_first: z.ZodOptional<z.ZodBoolean>;
578
+ }, "strict", z.ZodTypeAny, {
579
+ name_or_address?: string | undefined;
580
+ local_mark_first?: boolean | undefined;
581
+ }, {
582
+ name_or_address?: string | undefined;
583
+ local_mark_first?: boolean | undefined;
584
+ }>]>;
585
+ all_type: z.ZodOptional<z.ZodBoolean>;
586
+ cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
587
+ limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
588
+ }, "strict", z.ZodTypeAny, {
589
+ name_or_address: string | {
590
+ name_or_address?: string | undefined;
591
+ local_mark_first?: boolean | undefined;
592
+ };
593
+ no_cache?: boolean | undefined;
594
+ network?: ENTRYPOINT | undefined;
595
+ all_type?: boolean | undefined;
596
+ cursor?: string | null | undefined;
597
+ limit?: number | null | undefined;
598
+ }, {
599
+ name_or_address: string | {
600
+ name_or_address?: string | undefined;
601
+ local_mark_first?: boolean | undefined;
602
+ };
603
+ no_cache?: boolean | undefined;
604
+ network?: ENTRYPOINT | undefined;
605
+ all_type?: boolean | undefined;
606
+ cursor?: string | null | undefined;
607
+ limit?: number | null | undefined;
608
+ }>;
609
+ export declare const ReceivedBalanceObjectSchema: z.ZodObject<{
610
+ id: z.ZodString;
611
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
612
+ payment: z.ZodString;
613
+ }, "strict", z.ZodTypeAny, {
614
+ id: string;
615
+ balance: string | number;
616
+ payment: string;
617
+ }, {
618
+ id: string;
619
+ balance: string | number;
620
+ payment: string;
621
+ }>;
622
+ export declare const CoinWrapperTokenTypeSchema: z.ZodEffects<z.ZodString, string, string>;
623
+ export declare const ReceivedBalanceSchema: z.ZodObject<{
624
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
625
+ token_type: z.ZodEffects<z.ZodString, string, string>;
626
+ received: z.ZodArray<z.ZodObject<{
627
+ id: z.ZodString;
628
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
629
+ payment: z.ZodString;
630
+ }, "strict", z.ZodTypeAny, {
631
+ id: string;
632
+ balance: string | number;
633
+ payment: string;
634
+ }, {
635
+ id: string;
636
+ balance: string | number;
637
+ payment: string;
638
+ }>, "many">;
639
+ }, "strict", z.ZodTypeAny, {
640
+ received: {
641
+ id: string;
642
+ balance: string | number;
643
+ payment: string;
644
+ }[];
645
+ balance: string | number;
646
+ token_type: string;
647
+ }, {
648
+ received: {
649
+ id: string;
650
+ balance: string | number;
651
+ payment: string;
652
+ }[];
653
+ balance: string | number;
654
+ token_type: string;
655
+ }>;
656
+ export declare const ReceivedBalanceOrRecentlySchema: z.ZodUnion<[z.ZodObject<{
657
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
658
+ token_type: z.ZodEffects<z.ZodString, string, string>;
659
+ received: z.ZodArray<z.ZodObject<{
660
+ id: z.ZodString;
661
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
662
+ payment: z.ZodString;
663
+ }, "strict", z.ZodTypeAny, {
664
+ id: string;
665
+ balance: string | number;
666
+ payment: string;
667
+ }, {
668
+ id: string;
669
+ balance: string | number;
670
+ payment: string;
671
+ }>, "many">;
672
+ }, "strict", z.ZodTypeAny, {
673
+ received: {
674
+ id: string;
675
+ balance: string | number;
676
+ payment: string;
677
+ }[];
678
+ balance: string | number;
679
+ token_type: string;
680
+ }, {
681
+ received: {
682
+ id: string;
683
+ balance: string | number;
684
+ payment: string;
685
+ }[];
686
+ balance: string | number;
687
+ token_type: string;
688
+ }>, z.ZodLiteral<"recently">]>;
689
+ export declare const ReceivedNormalSchema: z.ZodObject<{
690
+ id: z.ZodString;
691
+ type: z.ZodString;
692
+ content_raw: z.ZodOptional<z.ZodAny>;
693
+ }, "strict", z.ZodTypeAny, {
694
+ type: string;
695
+ id: string;
696
+ content_raw?: any;
697
+ }, {
698
+ type: string;
699
+ id: string;
700
+ content_raw?: any;
701
+ }>;
702
+ export declare const ReceivedObjectsOrRecentlySchema: z.ZodUnion<[z.ZodArray<z.ZodObject<{
703
+ id: z.ZodString;
704
+ type: z.ZodString;
705
+ content_raw: z.ZodOptional<z.ZodAny>;
706
+ }, "strict", z.ZodTypeAny, {
707
+ type: string;
708
+ id: string;
709
+ content_raw?: any;
710
+ }, {
711
+ type: string;
712
+ id: string;
713
+ content_raw?: any;
714
+ }>, "many">, z.ZodObject<{
715
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
716
+ token_type: z.ZodEffects<z.ZodString, string, string>;
717
+ received: z.ZodArray<z.ZodObject<{
718
+ id: z.ZodString;
719
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
720
+ payment: z.ZodString;
721
+ }, "strict", z.ZodTypeAny, {
722
+ id: string;
723
+ balance: string | number;
724
+ payment: string;
725
+ }, {
726
+ id: string;
727
+ balance: string | number;
728
+ payment: string;
729
+ }>, "many">;
730
+ }, "strict", z.ZodTypeAny, {
731
+ received: {
732
+ id: string;
733
+ balance: string | number;
734
+ payment: string;
735
+ }[];
736
+ balance: string | number;
737
+ token_type: string;
738
+ }, {
739
+ received: {
740
+ id: string;
741
+ balance: string | number;
742
+ payment: string;
743
+ }[];
744
+ balance: string | number;
745
+ token_type: string;
746
+ }>, z.ZodLiteral<"recently">]>;
747
+ export declare const QueryReceivedResultSchema: z.ZodObject<{
748
+ result: z.ZodUnion<[z.ZodObject<{
749
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
750
+ token_type: z.ZodEffects<z.ZodString, string, string>;
751
+ received: z.ZodArray<z.ZodObject<{
752
+ id: z.ZodString;
753
+ balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
754
+ payment: z.ZodString;
755
+ }, "strict", z.ZodTypeAny, {
756
+ id: string;
757
+ balance: string | number;
758
+ payment: string;
759
+ }, {
760
+ id: string;
761
+ balance: string | number;
762
+ payment: string;
763
+ }>, "many">;
764
+ }, "strict", z.ZodTypeAny, {
765
+ received: {
766
+ id: string;
767
+ balance: string | number;
768
+ payment: string;
769
+ }[];
770
+ balance: string | number;
771
+ token_type: string;
772
+ }, {
773
+ received: {
774
+ id: string;
775
+ balance: string | number;
776
+ payment: string;
777
+ }[];
778
+ balance: string | number;
779
+ token_type: string;
780
+ }>, z.ZodArray<z.ZodObject<{
781
+ id: z.ZodString;
782
+ type: z.ZodString;
783
+ content_raw: z.ZodOptional<z.ZodAny>;
784
+ }, "strict", z.ZodTypeAny, {
785
+ type: string;
786
+ id: string;
787
+ content_raw?: any;
788
+ }, {
789
+ type: string;
790
+ id: string;
791
+ content_raw?: any;
792
+ }>, "many">]>;
793
+ }, "strict", z.ZodTypeAny, {
794
+ result: {
795
+ received: {
796
+ id: string;
797
+ balance: string | number;
798
+ payment: string;
799
+ }[];
800
+ balance: string | number;
801
+ token_type: string;
802
+ } | {
803
+ type: string;
804
+ id: string;
805
+ content_raw?: any;
806
+ }[];
807
+ }, {
808
+ result: {
809
+ received: {
810
+ id: string;
811
+ balance: string | number;
812
+ payment: string;
813
+ }[];
814
+ balance: string | number;
815
+ token_type: string;
816
+ } | {
817
+ type: string;
818
+ id: string;
819
+ content_raw?: any;
820
+ }[];
821
+ }>;
822
+ export type WowAddress = z.infer<typeof WowAddressSchema>;
823
+ export type TokenType = z.infer<typeof TokenTypeSchema>;
824
+ export type Name = z.infer<typeof NameSchema>;
825
+ export type NameOrAddress = z.infer<typeof NameOrAddressSchema>;
826
+ export type AccountOrMark_Address = z.infer<typeof AccountOrMark_AddressSchema>;
827
+ export type ManyAccountOrMark_Address = z.infer<typeof ManyAccountOrMark_AddressSchema>;
828
+ export type ObjectOwner = z.infer<typeof ObjectOwnerSchema>;
829
+ export type ValueType = z.infer<typeof ValueTypeSchema>;
830
+ export type ObjectType = z.infer<typeof ObjectTypeSchema>;
831
+ export type BalanceType = z.infer<typeof BalanceTypeSchema>;
832
+ export type QueryId = z.infer<typeof QueryIdSchema>;
833
+ export type CacheExpireType = z.infer<typeof CacheExpireTypeSchema>;
834
+ export type SupportedValue = z.infer<typeof SupportedValueSchema>;
835
+ export type GuardIdentifier = z.infer<typeof GuardIdentifierSchema>;
836
+ export type GuardTableItem = z.infer<typeof GuardTableItemSchema>;
837
+ export type Entrypoint = z.infer<typeof EntrypointSchema>;
838
+ export type ObjectBase = z.infer<typeof ObjectBaseSchema>;
839
+ export type QueryEnv = z.infer<typeof QueryEnvSchema>;
840
+ export type QueryReceived = z.infer<typeof QueryReceivedSchema>;
841
+ export type ReceivedBalance = z.infer<typeof ReceivedBalanceSchema>;
842
+ export type ReceivedNormal = z.infer<typeof ReceivedNormalSchema>;
843
+ export type QueryReceivedResult = z.infer<typeof QueryReceivedResultSchema>;