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