@bosonprotocol/agentic-commerce 1.0.0-alpha.92 → 1.0.0-alpha.94

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 (33) hide show
  1. package/README.md +2 -2
  2. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.d.ts +67 -1
  3. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.d.ts.map +1 -1
  4. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.js +162 -0
  5. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.js.map +1 -1
  6. package/dist/boson/goat-sdk-plugin/parameters.d.ts +2536 -114
  7. package/dist/boson/goat-sdk-plugin/parameters.d.ts.map +1 -1
  8. package/dist/boson/goat-sdk-plugin/parameters.js +20 -1
  9. package/dist/boson/goat-sdk-plugin/parameters.js.map +1 -1
  10. package/dist/boson/mcp-client/index.d.ts +1219 -1
  11. package/dist/boson/mcp-client/index.d.ts.map +1 -1
  12. package/dist/boson/mcp-client/index.js +36 -0
  13. package/dist/boson/mcp-client/index.js.map +1 -1
  14. package/dist/boson/mcp-server/handlers/accounts.d.ts +2 -1
  15. package/dist/boson/mcp-server/handlers/accounts.d.ts.map +1 -1
  16. package/dist/boson/mcp-server/handlers/accounts.js +25 -0
  17. package/dist/boson/mcp-server/handlers/accounts.js.map +1 -1
  18. package/dist/boson/mcp-server/handlers/offers.d.ts +6 -1
  19. package/dist/boson/mcp-server/handlers/offers.d.ts.map +1 -1
  20. package/dist/boson/mcp-server/handlers/offers.js +371 -4
  21. package/dist/boson/mcp-server/handlers/offers.js.map +1 -1
  22. package/dist/boson/mcp-server/index.d.ts.map +1 -1
  23. package/dist/boson/mcp-server/index.js +16 -2
  24. package/dist/boson/mcp-server/index.js.map +1 -1
  25. package/dist/boson/mcp-server/validation.d.ts +2697 -164
  26. package/dist/boson/mcp-server/validation.d.ts.map +1 -1
  27. package/dist/boson/mcp-server/validation.js +198 -45
  28. package/dist/boson/mcp-server/validation.js.map +1 -1
  29. package/dist/common/mcp-server/validationUtils.d.ts +1 -0
  30. package/dist/common/mcp-server/validationUtils.d.ts.map +1 -1
  31. package/dist/common/mcp-server/validationUtils.js +8 -1
  32. package/dist/common/mcp-server/validationUtils.js.map +1 -1
  33. package/package.json +12 -7
@@ -9,12 +9,34 @@ export declare const contextValidation: z.ZodObject<{
9
9
  configId?: string;
10
10
  signerAddress?: string;
11
11
  }>;
12
+ export declare const royaltyInfoValidation: z.ZodEffects<z.ZodEffects<z.ZodObject<{
13
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
14
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
15
+ }, "strip", z.ZodTypeAny, {
16
+ recipients?: string[];
17
+ bps?: (string | number | bigint)[];
18
+ }, {
19
+ recipients?: string[];
20
+ bps?: (string | number | bigint)[];
21
+ }>, {
22
+ recipients?: string[];
23
+ bps?: (string | number | bigint)[];
24
+ }, {
25
+ recipients?: string[];
26
+ bps?: (string | number | bigint)[];
27
+ }>, {
28
+ recipients?: string[];
29
+ bps?: (string | number | bigint)[];
30
+ }, {
31
+ recipients?: string[];
32
+ bps?: (string | number | bigint)[];
33
+ }>;
12
34
  export declare const createOfferNonMetadataFields: z.ZodObject<{
13
35
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
14
- price: z.ZodString;
15
- sellerDeposit: z.ZodString;
16
- agentId: z.ZodOptional<z.ZodString>;
17
- buyerCancellationPenalty: z.ZodString;
36
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
37
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
38
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
39
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
18
40
  quantityAvailable: z.ZodNumber;
19
41
  validFromDateInMS: z.ZodNumber;
20
42
  validUntilDateInMS: z.ZodNumber;
@@ -24,12 +46,47 @@ export declare const createOfferNonMetadataFields: z.ZodObject<{
24
46
  voucherValidDurationInMS: z.ZodNumber;
25
47
  resolutionPeriodDurationInMS: z.ZodNumber;
26
48
  disputeResolverId: z.ZodOptional<z.ZodString>;
49
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
50
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
51
+ priceType: z.ZodOptional<z.ZodNumber>;
52
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
53
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
54
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
55
+ }, "strip", z.ZodTypeAny, {
56
+ recipients?: string[];
57
+ bps?: (string | number | bigint)[];
58
+ }, {
59
+ recipients?: string[];
60
+ bps?: (string | number | bigint)[];
61
+ }>, {
62
+ recipients?: string[];
63
+ bps?: (string | number | bigint)[];
64
+ }, {
65
+ recipients?: string[];
66
+ bps?: (string | number | bigint)[];
67
+ }>, {
68
+ recipients?: string[];
69
+ bps?: (string | number | bigint)[];
70
+ }, {
71
+ recipients?: string[];
72
+ bps?: (string | number | bigint)[];
73
+ }>>;
74
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
75
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
27
76
  }, "strip", z.ZodTypeAny, {
28
- agentId?: string;
29
77
  disputeResolverId?: string;
30
- price?: string;
31
- sellerDeposit?: string;
78
+ agentId?: string | number | bigint;
79
+ collectionIndex?: string | number | bigint;
80
+ royaltyInfo?: {
81
+ recipients?: string[];
82
+ bps?: (string | number | bigint)[];
83
+ };
84
+ price?: string | number | bigint;
85
+ sellerDeposit?: string | number | bigint;
32
86
  quantityAvailable?: number;
87
+ priceType?: number;
88
+ creator?: "BUYER" | "SELLER";
89
+ feeLimit?: string | number | bigint;
33
90
  validFromDateInMS?: number;
34
91
  validUntilDateInMS?: number;
35
92
  voucherRedeemableUntilDateInMS?: number;
@@ -38,13 +95,22 @@ export declare const createOfferNonMetadataFields: z.ZodObject<{
38
95
  disputePeriodDurationInMS?: number;
39
96
  resolutionPeriodDurationInMS?: number;
40
97
  exchangeTokenAddress?: string;
41
- buyerCancellationPenalty?: string;
98
+ buyerCancellationPenalty?: string | number | bigint;
99
+ drMutualizerAddress?: string;
42
100
  }, {
43
- agentId?: string;
44
101
  disputeResolverId?: string;
45
- price?: string;
46
- sellerDeposit?: string;
102
+ agentId?: string | number | bigint;
103
+ collectionIndex?: string | number | bigint;
104
+ royaltyInfo?: {
105
+ recipients?: string[];
106
+ bps?: (string | number | bigint)[];
107
+ };
108
+ price?: string | number | bigint;
109
+ sellerDeposit?: string | number | bigint;
47
110
  quantityAvailable?: number;
111
+ priceType?: number;
112
+ creator?: "BUYER" | "SELLER";
113
+ feeLimit?: string | number | bigint;
48
114
  validFromDateInMS?: number;
49
115
  validUntilDateInMS?: number;
50
116
  voucherRedeemableUntilDateInMS?: number;
@@ -53,14 +119,321 @@ export declare const createOfferNonMetadataFields: z.ZodObject<{
53
119
  disputePeriodDurationInMS?: number;
54
120
  resolutionPeriodDurationInMS?: number;
55
121
  exchangeTokenAddress?: string;
56
- buyerCancellationPenalty?: string;
122
+ buyerCancellationPenalty?: string | number | bigint;
123
+ drMutualizerAddress?: string;
124
+ }>;
125
+ export declare const createOfferValidation: z.ZodEffects<z.ZodObject<{
126
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
127
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
128
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
129
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
130
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
131
+ quantityAvailable: z.ZodNumber;
132
+ validFromDateInMS: z.ZodNumber;
133
+ validUntilDateInMS: z.ZodNumber;
134
+ voucherRedeemableFromDateInMS: z.ZodNumber;
135
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
136
+ disputePeriodDurationInMS: z.ZodNumber;
137
+ voucherValidDurationInMS: z.ZodNumber;
138
+ resolutionPeriodDurationInMS: z.ZodNumber;
139
+ disputeResolverId: z.ZodOptional<z.ZodString>;
140
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
141
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
142
+ priceType: z.ZodOptional<z.ZodNumber>;
143
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
144
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
145
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
146
+ }, "strip", z.ZodTypeAny, {
147
+ recipients?: string[];
148
+ bps?: (string | number | bigint)[];
149
+ }, {
150
+ recipients?: string[];
151
+ bps?: (string | number | bigint)[];
152
+ }>, {
153
+ recipients?: string[];
154
+ bps?: (string | number | bigint)[];
155
+ }, {
156
+ recipients?: string[];
157
+ bps?: (string | number | bigint)[];
158
+ }>, {
159
+ recipients?: string[];
160
+ bps?: (string | number | bigint)[];
161
+ }, {
162
+ recipients?: string[];
163
+ bps?: (string | number | bigint)[];
164
+ }>>;
165
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
166
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
167
+ metadataUri: z.ZodString;
168
+ metadataHash: z.ZodString;
169
+ } & {
170
+ configId: z.ZodEffects<z.ZodString, string, string>;
171
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
172
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
173
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
174
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
175
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
176
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
177
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
178
+ quantityAvailable: z.ZodNumber;
179
+ validFromDateInMS: z.ZodNumber;
180
+ validUntilDateInMS: z.ZodNumber;
181
+ voucherRedeemableFromDateInMS: z.ZodNumber;
182
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
183
+ disputePeriodDurationInMS: z.ZodNumber;
184
+ voucherValidDurationInMS: z.ZodNumber;
185
+ resolutionPeriodDurationInMS: z.ZodNumber;
186
+ disputeResolverId: z.ZodOptional<z.ZodString>;
187
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
188
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
189
+ priceType: z.ZodOptional<z.ZodNumber>;
190
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
191
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
192
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
193
+ }, "strip", z.ZodTypeAny, {
194
+ recipients?: string[];
195
+ bps?: (string | number | bigint)[];
196
+ }, {
197
+ recipients?: string[];
198
+ bps?: (string | number | bigint)[];
199
+ }>, {
200
+ recipients?: string[];
201
+ bps?: (string | number | bigint)[];
202
+ }, {
203
+ recipients?: string[];
204
+ bps?: (string | number | bigint)[];
205
+ }>, {
206
+ recipients?: string[];
207
+ bps?: (string | number | bigint)[];
208
+ }, {
209
+ recipients?: string[];
210
+ bps?: (string | number | bigint)[];
211
+ }>>;
212
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
213
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
214
+ metadataUri: z.ZodString;
215
+ metadataHash: z.ZodString;
216
+ } & {
217
+ configId: z.ZodEffects<z.ZodString, string, string>;
218
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
219
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
220
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
221
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
222
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
223
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
224
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
225
+ quantityAvailable: z.ZodNumber;
226
+ validFromDateInMS: z.ZodNumber;
227
+ validUntilDateInMS: z.ZodNumber;
228
+ voucherRedeemableFromDateInMS: z.ZodNumber;
229
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
230
+ disputePeriodDurationInMS: z.ZodNumber;
231
+ voucherValidDurationInMS: z.ZodNumber;
232
+ resolutionPeriodDurationInMS: z.ZodNumber;
233
+ disputeResolverId: z.ZodOptional<z.ZodString>;
234
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
235
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
236
+ priceType: z.ZodOptional<z.ZodNumber>;
237
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
238
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
239
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
240
+ }, "strip", z.ZodTypeAny, {
241
+ recipients?: string[];
242
+ bps?: (string | number | bigint)[];
243
+ }, {
244
+ recipients?: string[];
245
+ bps?: (string | number | bigint)[];
246
+ }>, {
247
+ recipients?: string[];
248
+ bps?: (string | number | bigint)[];
249
+ }, {
250
+ recipients?: string[];
251
+ bps?: (string | number | bigint)[];
252
+ }>, {
253
+ recipients?: string[];
254
+ bps?: (string | number | bigint)[];
255
+ }, {
256
+ recipients?: string[];
257
+ bps?: (string | number | bigint)[];
258
+ }>>;
259
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
260
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
261
+ metadataUri: z.ZodString;
262
+ metadataHash: z.ZodString;
263
+ } & {
264
+ configId: z.ZodEffects<z.ZodString, string, string>;
265
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
266
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
267
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
268
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
269
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
270
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
271
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
272
+ quantityAvailable: z.ZodNumber;
273
+ validFromDateInMS: z.ZodNumber;
274
+ validUntilDateInMS: z.ZodNumber;
275
+ voucherRedeemableFromDateInMS: z.ZodNumber;
276
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
277
+ disputePeriodDurationInMS: z.ZodNumber;
278
+ voucherValidDurationInMS: z.ZodNumber;
279
+ resolutionPeriodDurationInMS: z.ZodNumber;
280
+ disputeResolverId: z.ZodOptional<z.ZodString>;
281
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
282
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
283
+ priceType: z.ZodOptional<z.ZodNumber>;
284
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
285
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
286
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
287
+ }, "strip", z.ZodTypeAny, {
288
+ recipients?: string[];
289
+ bps?: (string | number | bigint)[];
290
+ }, {
291
+ recipients?: string[];
292
+ bps?: (string | number | bigint)[];
293
+ }>, {
294
+ recipients?: string[];
295
+ bps?: (string | number | bigint)[];
296
+ }, {
297
+ recipients?: string[];
298
+ bps?: (string | number | bigint)[];
299
+ }>, {
300
+ recipients?: string[];
301
+ bps?: (string | number | bigint)[];
302
+ }, {
303
+ recipients?: string[];
304
+ bps?: (string | number | bigint)[];
305
+ }>>;
306
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
307
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
308
+ metadataUri: z.ZodString;
309
+ metadataHash: z.ZodString;
310
+ } & {
311
+ configId: z.ZodEffects<z.ZodString, string, string>;
312
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
313
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
314
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
315
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
316
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
317
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
318
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
319
+ quantityAvailable: z.ZodNumber;
320
+ validFromDateInMS: z.ZodNumber;
321
+ validUntilDateInMS: z.ZodNumber;
322
+ voucherRedeemableFromDateInMS: z.ZodNumber;
323
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
324
+ disputePeriodDurationInMS: z.ZodNumber;
325
+ voucherValidDurationInMS: z.ZodNumber;
326
+ resolutionPeriodDurationInMS: z.ZodNumber;
327
+ disputeResolverId: z.ZodOptional<z.ZodString>;
328
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
329
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
330
+ priceType: z.ZodOptional<z.ZodNumber>;
331
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
332
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
333
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
334
+ }, "strip", z.ZodTypeAny, {
335
+ recipients?: string[];
336
+ bps?: (string | number | bigint)[];
337
+ }, {
338
+ recipients?: string[];
339
+ bps?: (string | number | bigint)[];
340
+ }>, {
341
+ recipients?: string[];
342
+ bps?: (string | number | bigint)[];
343
+ }, {
344
+ recipients?: string[];
345
+ bps?: (string | number | bigint)[];
346
+ }>, {
347
+ recipients?: string[];
348
+ bps?: (string | number | bigint)[];
349
+ }, {
350
+ recipients?: string[];
351
+ bps?: (string | number | bigint)[];
352
+ }>>;
353
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
354
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
355
+ metadataUri: z.ZodString;
356
+ metadataHash: z.ZodString;
357
+ } & {
358
+ configId: z.ZodEffects<z.ZodString, string, string>;
359
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
360
+ }, z.ZodTypeAny, "passthrough">>;
361
+ export declare const storeProductV1MetadataValidation: z.ZodObject<{
362
+ configId: z.ZodEffects<z.ZodString, string, string>;
363
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
364
+ type: z.ZodEnum<["PRODUCT_V1"]>;
365
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
366
+ configId: z.ZodEffects<z.ZodString, string, string>;
367
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
368
+ type: z.ZodEnum<["PRODUCT_V1"]>;
369
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
370
+ configId: z.ZodEffects<z.ZodString, string, string>;
371
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
372
+ type: z.ZodEnum<["PRODUCT_V1"]>;
373
+ }, z.ZodTypeAny, "passthrough">>;
374
+ export declare const conditionValidation: z.ZodObject<{
375
+ method: z.ZodEffects<z.ZodNumber, number, number>;
376
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
377
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
378
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
379
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
380
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
381
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
382
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
383
+ }, "strip", z.ZodTypeAny, {
384
+ tokenAddress?: string;
385
+ tokenType?: number;
386
+ maxCommits?: string | number | bigint;
387
+ method?: number;
388
+ minTokenId?: string | number | bigint;
389
+ threshold?: string | number | bigint;
390
+ maxTokenId?: string | number | bigint;
391
+ gatingType?: number;
392
+ }, {
393
+ tokenAddress?: string;
394
+ tokenType?: number;
395
+ maxCommits?: string | number | bigint;
396
+ method?: number;
397
+ minTokenId?: string | number | bigint;
398
+ threshold?: string | number | bigint;
399
+ maxTokenId?: string | number | bigint;
400
+ gatingType?: number;
57
401
  }>;
58
- export declare const createOfferValidation: z.ZodObject<{
402
+ export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObject<{
403
+ condition: z.ZodObject<{
404
+ method: z.ZodEffects<z.ZodNumber, number, number>;
405
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
406
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
407
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
408
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
409
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
410
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
411
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
412
+ }, "strip", z.ZodTypeAny, {
413
+ tokenAddress?: string;
414
+ tokenType?: number;
415
+ maxCommits?: string | number | bigint;
416
+ method?: number;
417
+ minTokenId?: string | number | bigint;
418
+ threshold?: string | number | bigint;
419
+ maxTokenId?: string | number | bigint;
420
+ gatingType?: number;
421
+ }, {
422
+ tokenAddress?: string;
423
+ tokenType?: number;
424
+ maxCommits?: string | number | bigint;
425
+ method?: number;
426
+ minTokenId?: string | number | bigint;
427
+ threshold?: string | number | bigint;
428
+ maxTokenId?: string | number | bigint;
429
+ gatingType?: number;
430
+ }>;
431
+ } & {
59
432
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
60
- price: z.ZodString;
61
- sellerDeposit: z.ZodString;
62
- agentId: z.ZodOptional<z.ZodString>;
63
- buyerCancellationPenalty: z.ZodString;
433
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
434
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
435
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
436
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
64
437
  quantityAvailable: z.ZodNumber;
65
438
  validFromDateInMS: z.ZodNumber;
66
439
  validUntilDateInMS: z.ZodNumber;
@@ -70,17 +443,73 @@ export declare const createOfferValidation: z.ZodObject<{
70
443
  voucherValidDurationInMS: z.ZodNumber;
71
444
  resolutionPeriodDurationInMS: z.ZodNumber;
72
445
  disputeResolverId: z.ZodOptional<z.ZodString>;
446
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
447
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
448
+ priceType: z.ZodOptional<z.ZodNumber>;
449
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
450
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
451
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
452
+ }, "strip", z.ZodTypeAny, {
453
+ recipients?: string[];
454
+ bps?: (string | number | bigint)[];
455
+ }, {
456
+ recipients?: string[];
457
+ bps?: (string | number | bigint)[];
458
+ }>, {
459
+ recipients?: string[];
460
+ bps?: (string | number | bigint)[];
461
+ }, {
462
+ recipients?: string[];
463
+ bps?: (string | number | bigint)[];
464
+ }>, {
465
+ recipients?: string[];
466
+ bps?: (string | number | bigint)[];
467
+ }, {
468
+ recipients?: string[];
469
+ bps?: (string | number | bigint)[];
470
+ }>>;
471
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
472
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
73
473
  metadataUri: z.ZodString;
74
474
  metadataHash: z.ZodString;
75
475
  } & {
76
476
  configId: z.ZodEffects<z.ZodString, string, string>;
77
477
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
78
478
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
479
+ condition: z.ZodObject<{
480
+ method: z.ZodEffects<z.ZodNumber, number, number>;
481
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
482
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
483
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
484
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
485
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
486
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
487
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
488
+ }, "strip", z.ZodTypeAny, {
489
+ tokenAddress?: string;
490
+ tokenType?: number;
491
+ maxCommits?: string | number | bigint;
492
+ method?: number;
493
+ minTokenId?: string | number | bigint;
494
+ threshold?: string | number | bigint;
495
+ maxTokenId?: string | number | bigint;
496
+ gatingType?: number;
497
+ }, {
498
+ tokenAddress?: string;
499
+ tokenType?: number;
500
+ maxCommits?: string | number | bigint;
501
+ method?: number;
502
+ minTokenId?: string | number | bigint;
503
+ threshold?: string | number | bigint;
504
+ maxTokenId?: string | number | bigint;
505
+ gatingType?: number;
506
+ }>;
507
+ } & {
79
508
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
80
- price: z.ZodString;
81
- sellerDeposit: z.ZodString;
82
- agentId: z.ZodOptional<z.ZodString>;
83
- buyerCancellationPenalty: z.ZodString;
509
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
510
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
511
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
512
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
84
513
  quantityAvailable: z.ZodNumber;
85
514
  validFromDateInMS: z.ZodNumber;
86
515
  validUntilDateInMS: z.ZodNumber;
@@ -90,17 +519,73 @@ export declare const createOfferValidation: z.ZodObject<{
90
519
  voucherValidDurationInMS: z.ZodNumber;
91
520
  resolutionPeriodDurationInMS: z.ZodNumber;
92
521
  disputeResolverId: z.ZodOptional<z.ZodString>;
522
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
523
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
524
+ priceType: z.ZodOptional<z.ZodNumber>;
525
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
526
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
527
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
528
+ }, "strip", z.ZodTypeAny, {
529
+ recipients?: string[];
530
+ bps?: (string | number | bigint)[];
531
+ }, {
532
+ recipients?: string[];
533
+ bps?: (string | number | bigint)[];
534
+ }>, {
535
+ recipients?: string[];
536
+ bps?: (string | number | bigint)[];
537
+ }, {
538
+ recipients?: string[];
539
+ bps?: (string | number | bigint)[];
540
+ }>, {
541
+ recipients?: string[];
542
+ bps?: (string | number | bigint)[];
543
+ }, {
544
+ recipients?: string[];
545
+ bps?: (string | number | bigint)[];
546
+ }>>;
547
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
548
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
93
549
  metadataUri: z.ZodString;
94
550
  metadataHash: z.ZodString;
95
551
  } & {
96
552
  configId: z.ZodEffects<z.ZodString, string, string>;
97
553
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
98
554
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
555
+ condition: z.ZodObject<{
556
+ method: z.ZodEffects<z.ZodNumber, number, number>;
557
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
558
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
559
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
560
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
561
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
562
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
563
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
564
+ }, "strip", z.ZodTypeAny, {
565
+ tokenAddress?: string;
566
+ tokenType?: number;
567
+ maxCommits?: string | number | bigint;
568
+ method?: number;
569
+ minTokenId?: string | number | bigint;
570
+ threshold?: string | number | bigint;
571
+ maxTokenId?: string | number | bigint;
572
+ gatingType?: number;
573
+ }, {
574
+ tokenAddress?: string;
575
+ tokenType?: number;
576
+ maxCommits?: string | number | bigint;
577
+ method?: number;
578
+ minTokenId?: string | number | bigint;
579
+ threshold?: string | number | bigint;
580
+ maxTokenId?: string | number | bigint;
581
+ gatingType?: number;
582
+ }>;
583
+ } & {
99
584
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
100
- price: z.ZodString;
101
- sellerDeposit: z.ZodString;
102
- agentId: z.ZodOptional<z.ZodString>;
103
- buyerCancellationPenalty: z.ZodString;
585
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
586
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
587
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
588
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
104
589
  quantityAvailable: z.ZodNumber;
105
590
  validFromDateInMS: z.ZodNumber;
106
591
  validUntilDateInMS: z.ZodNumber;
@@ -110,27 +595,1464 @@ export declare const createOfferValidation: z.ZodObject<{
110
595
  voucherValidDurationInMS: z.ZodNumber;
111
596
  resolutionPeriodDurationInMS: z.ZodNumber;
112
597
  disputeResolverId: z.ZodOptional<z.ZodString>;
598
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
599
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
600
+ priceType: z.ZodOptional<z.ZodNumber>;
601
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
602
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
603
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
604
+ }, "strip", z.ZodTypeAny, {
605
+ recipients?: string[];
606
+ bps?: (string | number | bigint)[];
607
+ }, {
608
+ recipients?: string[];
609
+ bps?: (string | number | bigint)[];
610
+ }>, {
611
+ recipients?: string[];
612
+ bps?: (string | number | bigint)[];
613
+ }, {
614
+ recipients?: string[];
615
+ bps?: (string | number | bigint)[];
616
+ }>, {
617
+ recipients?: string[];
618
+ bps?: (string | number | bigint)[];
619
+ }, {
620
+ recipients?: string[];
621
+ bps?: (string | number | bigint)[];
622
+ }>>;
623
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
624
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
625
+ metadataUri: z.ZodString;
626
+ metadataHash: z.ZodString;
627
+ } & {
628
+ configId: z.ZodEffects<z.ZodString, string, string>;
629
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
630
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
631
+ condition: z.ZodObject<{
632
+ method: z.ZodEffects<z.ZodNumber, number, number>;
633
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
634
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
635
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
636
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
637
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
638
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
639
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
640
+ }, "strip", z.ZodTypeAny, {
641
+ tokenAddress?: string;
642
+ tokenType?: number;
643
+ maxCommits?: string | number | bigint;
644
+ method?: number;
645
+ minTokenId?: string | number | bigint;
646
+ threshold?: string | number | bigint;
647
+ maxTokenId?: string | number | bigint;
648
+ gatingType?: number;
649
+ }, {
650
+ tokenAddress?: string;
651
+ tokenType?: number;
652
+ maxCommits?: string | number | bigint;
653
+ method?: number;
654
+ minTokenId?: string | number | bigint;
655
+ threshold?: string | number | bigint;
656
+ maxTokenId?: string | number | bigint;
657
+ gatingType?: number;
658
+ }>;
659
+ } & {
660
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
661
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
662
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
663
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
664
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
665
+ quantityAvailable: z.ZodNumber;
666
+ validFromDateInMS: z.ZodNumber;
667
+ validUntilDateInMS: z.ZodNumber;
668
+ voucherRedeemableFromDateInMS: z.ZodNumber;
669
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
670
+ disputePeriodDurationInMS: z.ZodNumber;
671
+ voucherValidDurationInMS: z.ZodNumber;
672
+ resolutionPeriodDurationInMS: z.ZodNumber;
673
+ disputeResolverId: z.ZodOptional<z.ZodString>;
674
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
675
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
676
+ priceType: z.ZodOptional<z.ZodNumber>;
677
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
678
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
679
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
680
+ }, "strip", z.ZodTypeAny, {
681
+ recipients?: string[];
682
+ bps?: (string | number | bigint)[];
683
+ }, {
684
+ recipients?: string[];
685
+ bps?: (string | number | bigint)[];
686
+ }>, {
687
+ recipients?: string[];
688
+ bps?: (string | number | bigint)[];
689
+ }, {
690
+ recipients?: string[];
691
+ bps?: (string | number | bigint)[];
692
+ }>, {
693
+ recipients?: string[];
694
+ bps?: (string | number | bigint)[];
695
+ }, {
696
+ recipients?: string[];
697
+ bps?: (string | number | bigint)[];
698
+ }>>;
699
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
700
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
701
+ metadataUri: z.ZodString;
702
+ metadataHash: z.ZodString;
703
+ } & {
704
+ configId: z.ZodEffects<z.ZodString, string, string>;
705
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
706
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
707
+ condition: z.ZodObject<{
708
+ method: z.ZodEffects<z.ZodNumber, number, number>;
709
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
710
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
711
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
712
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
713
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
714
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
715
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
716
+ }, "strip", z.ZodTypeAny, {
717
+ tokenAddress?: string;
718
+ tokenType?: number;
719
+ maxCommits?: string | number | bigint;
720
+ method?: number;
721
+ minTokenId?: string | number | bigint;
722
+ threshold?: string | number | bigint;
723
+ maxTokenId?: string | number | bigint;
724
+ gatingType?: number;
725
+ }, {
726
+ tokenAddress?: string;
727
+ tokenType?: number;
728
+ maxCommits?: string | number | bigint;
729
+ method?: number;
730
+ minTokenId?: string | number | bigint;
731
+ threshold?: string | number | bigint;
732
+ maxTokenId?: string | number | bigint;
733
+ gatingType?: number;
734
+ }>;
735
+ } & {
736
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
737
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
738
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
739
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
740
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
741
+ quantityAvailable: z.ZodNumber;
742
+ validFromDateInMS: z.ZodNumber;
743
+ validUntilDateInMS: z.ZodNumber;
744
+ voucherRedeemableFromDateInMS: z.ZodNumber;
745
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
746
+ disputePeriodDurationInMS: z.ZodNumber;
747
+ voucherValidDurationInMS: z.ZodNumber;
748
+ resolutionPeriodDurationInMS: z.ZodNumber;
749
+ disputeResolverId: z.ZodOptional<z.ZodString>;
750
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
751
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
752
+ priceType: z.ZodOptional<z.ZodNumber>;
753
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
754
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
755
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
756
+ }, "strip", z.ZodTypeAny, {
757
+ recipients?: string[];
758
+ bps?: (string | number | bigint)[];
759
+ }, {
760
+ recipients?: string[];
761
+ bps?: (string | number | bigint)[];
762
+ }>, {
763
+ recipients?: string[];
764
+ bps?: (string | number | bigint)[];
765
+ }, {
766
+ recipients?: string[];
767
+ bps?: (string | number | bigint)[];
768
+ }>, {
769
+ recipients?: string[];
770
+ bps?: (string | number | bigint)[];
771
+ }, {
772
+ recipients?: string[];
773
+ bps?: (string | number | bigint)[];
774
+ }>>;
775
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
776
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
777
+ metadataUri: z.ZodString;
778
+ metadataHash: z.ZodString;
779
+ } & {
780
+ configId: z.ZodEffects<z.ZodString, string, string>;
781
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
782
+ }, z.ZodTypeAny, "passthrough">>;
783
+ export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
784
+ condition: z.ZodOptional<z.ZodObject<{
785
+ method: z.ZodEffects<z.ZodNumber, number, number>;
786
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
787
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
788
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
789
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
790
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
791
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
792
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
793
+ }, "strip", z.ZodTypeAny, {
794
+ tokenAddress?: string;
795
+ tokenType?: number;
796
+ maxCommits?: string | number | bigint;
797
+ method?: number;
798
+ minTokenId?: string | number | bigint;
799
+ threshold?: string | number | bigint;
800
+ maxTokenId?: string | number | bigint;
801
+ gatingType?: number;
802
+ }, {
803
+ tokenAddress?: string;
804
+ tokenType?: number;
805
+ maxCommits?: string | number | bigint;
806
+ method?: number;
807
+ minTokenId?: string | number | bigint;
808
+ threshold?: string | number | bigint;
809
+ maxTokenId?: string | number | bigint;
810
+ gatingType?: number;
811
+ }>>;
812
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
813
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
814
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
815
+ } & {
816
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
817
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
818
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
819
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
820
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
821
+ quantityAvailable: z.ZodNumber;
822
+ validFromDateInMS: z.ZodNumber;
823
+ validUntilDateInMS: z.ZodNumber;
824
+ voucherRedeemableFromDateInMS: z.ZodNumber;
825
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
826
+ disputePeriodDurationInMS: z.ZodNumber;
827
+ voucherValidDurationInMS: z.ZodNumber;
828
+ resolutionPeriodDurationInMS: z.ZodNumber;
829
+ disputeResolverId: z.ZodOptional<z.ZodString>;
830
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
831
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
832
+ priceType: z.ZodOptional<z.ZodNumber>;
833
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
834
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
835
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
836
+ }, "strip", z.ZodTypeAny, {
837
+ recipients?: string[];
838
+ bps?: (string | number | bigint)[];
839
+ }, {
840
+ recipients?: string[];
841
+ bps?: (string | number | bigint)[];
842
+ }>, {
843
+ recipients?: string[];
844
+ bps?: (string | number | bigint)[];
845
+ }, {
846
+ recipients?: string[];
847
+ bps?: (string | number | bigint)[];
848
+ }>, {
849
+ recipients?: string[];
850
+ bps?: (string | number | bigint)[];
851
+ }, {
852
+ recipients?: string[];
853
+ bps?: (string | number | bigint)[];
854
+ }>>;
855
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
856
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
857
+ metadataUri: z.ZodString;
858
+ metadataHash: z.ZodString;
859
+ } & {
860
+ configId: z.ZodEffects<z.ZodString, string, string>;
861
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
862
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
863
+ condition: z.ZodOptional<z.ZodObject<{
864
+ method: z.ZodEffects<z.ZodNumber, number, number>;
865
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
866
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
867
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
868
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
869
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
870
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
871
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
872
+ }, "strip", z.ZodTypeAny, {
873
+ tokenAddress?: string;
874
+ tokenType?: number;
875
+ maxCommits?: string | number | bigint;
876
+ method?: number;
877
+ minTokenId?: string | number | bigint;
878
+ threshold?: string | number | bigint;
879
+ maxTokenId?: string | number | bigint;
880
+ gatingType?: number;
881
+ }, {
882
+ tokenAddress?: string;
883
+ tokenType?: number;
884
+ maxCommits?: string | number | bigint;
885
+ method?: number;
886
+ minTokenId?: string | number | bigint;
887
+ threshold?: string | number | bigint;
888
+ maxTokenId?: string | number | bigint;
889
+ gatingType?: number;
890
+ }>>;
891
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
892
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
893
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
894
+ } & {
895
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
896
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
897
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
898
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
899
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
900
+ quantityAvailable: z.ZodNumber;
901
+ validFromDateInMS: z.ZodNumber;
902
+ validUntilDateInMS: z.ZodNumber;
903
+ voucherRedeemableFromDateInMS: z.ZodNumber;
904
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
905
+ disputePeriodDurationInMS: z.ZodNumber;
906
+ voucherValidDurationInMS: z.ZodNumber;
907
+ resolutionPeriodDurationInMS: z.ZodNumber;
908
+ disputeResolverId: z.ZodOptional<z.ZodString>;
909
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
910
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
911
+ priceType: z.ZodOptional<z.ZodNumber>;
912
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
913
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
914
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
915
+ }, "strip", z.ZodTypeAny, {
916
+ recipients?: string[];
917
+ bps?: (string | number | bigint)[];
918
+ }, {
919
+ recipients?: string[];
920
+ bps?: (string | number | bigint)[];
921
+ }>, {
922
+ recipients?: string[];
923
+ bps?: (string | number | bigint)[];
924
+ }, {
925
+ recipients?: string[];
926
+ bps?: (string | number | bigint)[];
927
+ }>, {
928
+ recipients?: string[];
929
+ bps?: (string | number | bigint)[];
930
+ }, {
931
+ recipients?: string[];
932
+ bps?: (string | number | bigint)[];
933
+ }>>;
934
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
935
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
936
+ metadataUri: z.ZodString;
937
+ metadataHash: z.ZodString;
938
+ } & {
939
+ configId: z.ZodEffects<z.ZodString, string, string>;
940
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
941
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
942
+ condition: z.ZodOptional<z.ZodObject<{
943
+ method: z.ZodEffects<z.ZodNumber, number, number>;
944
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
945
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
946
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
947
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
948
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
949
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
950
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
951
+ }, "strip", z.ZodTypeAny, {
952
+ tokenAddress?: string;
953
+ tokenType?: number;
954
+ maxCommits?: string | number | bigint;
955
+ method?: number;
956
+ minTokenId?: string | number | bigint;
957
+ threshold?: string | number | bigint;
958
+ maxTokenId?: string | number | bigint;
959
+ gatingType?: number;
960
+ }, {
961
+ tokenAddress?: string;
962
+ tokenType?: number;
963
+ maxCommits?: string | number | bigint;
964
+ method?: number;
965
+ minTokenId?: string | number | bigint;
966
+ threshold?: string | number | bigint;
967
+ maxTokenId?: string | number | bigint;
968
+ gatingType?: number;
969
+ }>>;
970
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
971
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
972
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
973
+ } & {
974
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
975
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
976
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
977
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
978
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
979
+ quantityAvailable: z.ZodNumber;
980
+ validFromDateInMS: z.ZodNumber;
981
+ validUntilDateInMS: z.ZodNumber;
982
+ voucherRedeemableFromDateInMS: z.ZodNumber;
983
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
984
+ disputePeriodDurationInMS: z.ZodNumber;
985
+ voucherValidDurationInMS: z.ZodNumber;
986
+ resolutionPeriodDurationInMS: z.ZodNumber;
987
+ disputeResolverId: z.ZodOptional<z.ZodString>;
988
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
989
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
990
+ priceType: z.ZodOptional<z.ZodNumber>;
991
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
992
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
993
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
994
+ }, "strip", z.ZodTypeAny, {
995
+ recipients?: string[];
996
+ bps?: (string | number | bigint)[];
997
+ }, {
998
+ recipients?: string[];
999
+ bps?: (string | number | bigint)[];
1000
+ }>, {
1001
+ recipients?: string[];
1002
+ bps?: (string | number | bigint)[];
1003
+ }, {
1004
+ recipients?: string[];
1005
+ bps?: (string | number | bigint)[];
1006
+ }>, {
1007
+ recipients?: string[];
1008
+ bps?: (string | number | bigint)[];
1009
+ }, {
1010
+ recipients?: string[];
1011
+ bps?: (string | number | bigint)[];
1012
+ }>>;
1013
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1014
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1015
+ metadataUri: z.ZodString;
1016
+ metadataHash: z.ZodString;
1017
+ } & {
1018
+ configId: z.ZodEffects<z.ZodString, string, string>;
1019
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
1020
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1021
+ condition: z.ZodOptional<z.ZodObject<{
1022
+ method: z.ZodEffects<z.ZodNumber, number, number>;
1023
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1024
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
1025
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
1026
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1027
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1028
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1029
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1030
+ }, "strip", z.ZodTypeAny, {
1031
+ tokenAddress?: string;
1032
+ tokenType?: number;
1033
+ maxCommits?: string | number | bigint;
1034
+ method?: number;
1035
+ minTokenId?: string | number | bigint;
1036
+ threshold?: string | number | bigint;
1037
+ maxTokenId?: string | number | bigint;
1038
+ gatingType?: number;
1039
+ }, {
1040
+ tokenAddress?: string;
1041
+ tokenType?: number;
1042
+ maxCommits?: string | number | bigint;
1043
+ method?: number;
1044
+ minTokenId?: string | number | bigint;
1045
+ threshold?: string | number | bigint;
1046
+ maxTokenId?: string | number | bigint;
1047
+ gatingType?: number;
1048
+ }>>;
1049
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
1050
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1051
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1052
+ } & {
1053
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
1054
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1055
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1056
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1057
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1058
+ quantityAvailable: z.ZodNumber;
1059
+ validFromDateInMS: z.ZodNumber;
1060
+ validUntilDateInMS: z.ZodNumber;
1061
+ voucherRedeemableFromDateInMS: z.ZodNumber;
1062
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
1063
+ disputePeriodDurationInMS: z.ZodNumber;
1064
+ voucherValidDurationInMS: z.ZodNumber;
1065
+ resolutionPeriodDurationInMS: z.ZodNumber;
1066
+ disputeResolverId: z.ZodOptional<z.ZodString>;
1067
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1068
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1069
+ priceType: z.ZodOptional<z.ZodNumber>;
1070
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1071
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1072
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1073
+ }, "strip", z.ZodTypeAny, {
1074
+ recipients?: string[];
1075
+ bps?: (string | number | bigint)[];
1076
+ }, {
1077
+ recipients?: string[];
1078
+ bps?: (string | number | bigint)[];
1079
+ }>, {
1080
+ recipients?: string[];
1081
+ bps?: (string | number | bigint)[];
1082
+ }, {
1083
+ recipients?: string[];
1084
+ bps?: (string | number | bigint)[];
1085
+ }>, {
1086
+ recipients?: string[];
1087
+ bps?: (string | number | bigint)[];
1088
+ }, {
1089
+ recipients?: string[];
1090
+ bps?: (string | number | bigint)[];
1091
+ }>>;
1092
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1093
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1094
+ metadataUri: z.ZodString;
1095
+ metadataHash: z.ZodString;
1096
+ } & {
1097
+ configId: z.ZodEffects<z.ZodString, string, string>;
1098
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
1099
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1100
+ condition: z.ZodOptional<z.ZodObject<{
1101
+ method: z.ZodEffects<z.ZodNumber, number, number>;
1102
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1103
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
1104
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
1105
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1106
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1107
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1108
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1109
+ }, "strip", z.ZodTypeAny, {
1110
+ tokenAddress?: string;
1111
+ tokenType?: number;
1112
+ maxCommits?: string | number | bigint;
1113
+ method?: number;
1114
+ minTokenId?: string | number | bigint;
1115
+ threshold?: string | number | bigint;
1116
+ maxTokenId?: string | number | bigint;
1117
+ gatingType?: number;
1118
+ }, {
1119
+ tokenAddress?: string;
1120
+ tokenType?: number;
1121
+ maxCommits?: string | number | bigint;
1122
+ method?: number;
1123
+ minTokenId?: string | number | bigint;
1124
+ threshold?: string | number | bigint;
1125
+ maxTokenId?: string | number | bigint;
1126
+ gatingType?: number;
1127
+ }>>;
1128
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
1129
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1130
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1131
+ } & {
1132
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
1133
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1134
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1135
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1136
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1137
+ quantityAvailable: z.ZodNumber;
1138
+ validFromDateInMS: z.ZodNumber;
1139
+ validUntilDateInMS: z.ZodNumber;
1140
+ voucherRedeemableFromDateInMS: z.ZodNumber;
1141
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
1142
+ disputePeriodDurationInMS: z.ZodNumber;
1143
+ voucherValidDurationInMS: z.ZodNumber;
1144
+ resolutionPeriodDurationInMS: z.ZodNumber;
1145
+ disputeResolverId: z.ZodOptional<z.ZodString>;
1146
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1147
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1148
+ priceType: z.ZodOptional<z.ZodNumber>;
1149
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1150
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1151
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1152
+ }, "strip", z.ZodTypeAny, {
1153
+ recipients?: string[];
1154
+ bps?: (string | number | bigint)[];
1155
+ }, {
1156
+ recipients?: string[];
1157
+ bps?: (string | number | bigint)[];
1158
+ }>, {
1159
+ recipients?: string[];
1160
+ bps?: (string | number | bigint)[];
1161
+ }, {
1162
+ recipients?: string[];
1163
+ bps?: (string | number | bigint)[];
1164
+ }>, {
1165
+ recipients?: string[];
1166
+ bps?: (string | number | bigint)[];
1167
+ }, {
1168
+ recipients?: string[];
1169
+ bps?: (string | number | bigint)[];
1170
+ }>>;
1171
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1172
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1173
+ metadataUri: z.ZodString;
1174
+ metadataHash: z.ZodString;
1175
+ } & {
1176
+ configId: z.ZodEffects<z.ZodString, string, string>;
1177
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
1178
+ }, z.ZodTypeAny, "passthrough">>;
1179
+ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1180
+ fullOffers: z.ZodArray<z.ZodEffects<z.ZodObject<{
1181
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
1182
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1183
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1184
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1185
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1186
+ quantityAvailable: z.ZodNumber;
1187
+ validFromDateInMS: z.ZodNumber;
1188
+ validUntilDateInMS: z.ZodNumber;
1189
+ voucherRedeemableFromDateInMS: z.ZodNumber;
1190
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
1191
+ disputePeriodDurationInMS: z.ZodNumber;
1192
+ voucherValidDurationInMS: z.ZodNumber;
1193
+ resolutionPeriodDurationInMS: z.ZodNumber;
1194
+ disputeResolverId: z.ZodOptional<z.ZodString>;
1195
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1196
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1197
+ priceType: z.ZodOptional<z.ZodNumber>;
1198
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1199
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1200
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1201
+ }, "strip", z.ZodTypeAny, {
1202
+ recipients?: string[];
1203
+ bps?: (string | number | bigint)[];
1204
+ }, {
1205
+ recipients?: string[];
1206
+ bps?: (string | number | bigint)[];
1207
+ }>, {
1208
+ recipients?: string[];
1209
+ bps?: (string | number | bigint)[];
1210
+ }, {
1211
+ recipients?: string[];
1212
+ bps?: (string | number | bigint)[];
1213
+ }>, {
1214
+ recipients?: string[];
1215
+ bps?: (string | number | bigint)[];
1216
+ }, {
1217
+ recipients?: string[];
1218
+ bps?: (string | number | bigint)[];
1219
+ }>>;
1220
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1221
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1222
+ metadataUri: z.ZodString;
1223
+ metadataHash: z.ZodString;
1224
+ condition: z.ZodOptional<z.ZodObject<{
1225
+ method: z.ZodEffects<z.ZodNumber, number, number>;
1226
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1227
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
1228
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
1229
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1230
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1231
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1232
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1233
+ }, "strip", z.ZodTypeAny, {
1234
+ tokenAddress?: string;
1235
+ tokenType?: number;
1236
+ maxCommits?: string | number | bigint;
1237
+ method?: number;
1238
+ minTokenId?: string | number | bigint;
1239
+ threshold?: string | number | bigint;
1240
+ maxTokenId?: string | number | bigint;
1241
+ gatingType?: number;
1242
+ }, {
1243
+ tokenAddress?: string;
1244
+ tokenType?: number;
1245
+ maxCommits?: string | number | bigint;
1246
+ method?: number;
1247
+ minTokenId?: string | number | bigint;
1248
+ threshold?: string | number | bigint;
1249
+ maxTokenId?: string | number | bigint;
1250
+ gatingType?: number;
1251
+ }>>;
1252
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
1253
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1254
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1255
+ }, "strip", z.ZodTypeAny, {
1256
+ sellerId?: string | number | bigint;
1257
+ disputeResolverId?: string;
1258
+ agentId?: string | number | bigint;
1259
+ buyerId?: string | number | bigint;
1260
+ collectionIndex?: string | number | bigint;
1261
+ metadataUri?: string;
1262
+ royaltyInfo?: {
1263
+ recipients?: string[];
1264
+ bps?: (string | number | bigint)[];
1265
+ };
1266
+ price?: string | number | bigint;
1267
+ sellerDeposit?: string | number | bigint;
1268
+ quantityAvailable?: number;
1269
+ priceType?: number;
1270
+ creator?: "BUYER" | "SELLER";
1271
+ metadataHash?: string;
1272
+ condition?: {
1273
+ tokenAddress?: string;
1274
+ tokenType?: number;
1275
+ maxCommits?: string | number | bigint;
1276
+ method?: number;
1277
+ minTokenId?: string | number | bigint;
1278
+ threshold?: string | number | bigint;
1279
+ maxTokenId?: string | number | bigint;
1280
+ gatingType?: number;
1281
+ };
1282
+ feeLimit?: string | number | bigint;
1283
+ useDepositedFunds?: boolean;
1284
+ validFromDateInMS?: number;
1285
+ validUntilDateInMS?: number;
1286
+ voucherRedeemableUntilDateInMS?: number;
1287
+ voucherRedeemableFromDateInMS?: number;
1288
+ voucherValidDurationInMS?: number;
1289
+ disputePeriodDurationInMS?: number;
1290
+ resolutionPeriodDurationInMS?: number;
1291
+ exchangeTokenAddress?: string;
1292
+ buyerCancellationPenalty?: string | number | bigint;
1293
+ drMutualizerAddress?: string;
1294
+ }, {
1295
+ sellerId?: string | number | bigint;
1296
+ disputeResolverId?: string;
1297
+ agentId?: string | number | bigint;
1298
+ buyerId?: string | number | bigint;
1299
+ collectionIndex?: string | number | bigint;
1300
+ metadataUri?: string;
1301
+ royaltyInfo?: {
1302
+ recipients?: string[];
1303
+ bps?: (string | number | bigint)[];
1304
+ };
1305
+ price?: string | number | bigint;
1306
+ sellerDeposit?: string | number | bigint;
1307
+ quantityAvailable?: number;
1308
+ priceType?: number;
1309
+ creator?: "BUYER" | "SELLER";
1310
+ metadataHash?: string;
1311
+ condition?: {
1312
+ tokenAddress?: string;
1313
+ tokenType?: number;
1314
+ maxCommits?: string | number | bigint;
1315
+ method?: number;
1316
+ minTokenId?: string | number | bigint;
1317
+ threshold?: string | number | bigint;
1318
+ maxTokenId?: string | number | bigint;
1319
+ gatingType?: number;
1320
+ };
1321
+ feeLimit?: string | number | bigint;
1322
+ useDepositedFunds?: boolean;
1323
+ validFromDateInMS?: number;
1324
+ validUntilDateInMS?: number;
1325
+ voucherRedeemableUntilDateInMS?: number;
1326
+ voucherRedeemableFromDateInMS?: number;
1327
+ voucherValidDurationInMS?: number;
1328
+ disputePeriodDurationInMS?: number;
1329
+ resolutionPeriodDurationInMS?: number;
1330
+ exchangeTokenAddress?: string;
1331
+ buyerCancellationPenalty?: string | number | bigint;
1332
+ drMutualizerAddress?: string;
1333
+ }>, {
1334
+ sellerId?: string | number | bigint;
1335
+ disputeResolverId?: string;
1336
+ agentId?: string | number | bigint;
1337
+ buyerId?: string | number | bigint;
1338
+ collectionIndex?: string | number | bigint;
1339
+ metadataUri?: string;
1340
+ royaltyInfo?: {
1341
+ recipients?: string[];
1342
+ bps?: (string | number | bigint)[];
1343
+ };
1344
+ price?: string | number | bigint;
1345
+ sellerDeposit?: string | number | bigint;
1346
+ quantityAvailable?: number;
1347
+ priceType?: number;
1348
+ creator?: "BUYER" | "SELLER";
1349
+ metadataHash?: string;
1350
+ condition?: {
1351
+ tokenAddress?: string;
1352
+ tokenType?: number;
1353
+ maxCommits?: string | number | bigint;
1354
+ method?: number;
1355
+ minTokenId?: string | number | bigint;
1356
+ threshold?: string | number | bigint;
1357
+ maxTokenId?: string | number | bigint;
1358
+ gatingType?: number;
1359
+ };
1360
+ feeLimit?: string | number | bigint;
1361
+ useDepositedFunds?: boolean;
1362
+ validFromDateInMS?: number;
1363
+ validUntilDateInMS?: number;
1364
+ voucherRedeemableUntilDateInMS?: number;
1365
+ voucherRedeemableFromDateInMS?: number;
1366
+ voucherValidDurationInMS?: number;
1367
+ disputePeriodDurationInMS?: number;
1368
+ resolutionPeriodDurationInMS?: number;
1369
+ exchangeTokenAddress?: string;
1370
+ buyerCancellationPenalty?: string | number | bigint;
1371
+ drMutualizerAddress?: string;
1372
+ }, {
1373
+ sellerId?: string | number | bigint;
1374
+ disputeResolverId?: string;
1375
+ agentId?: string | number | bigint;
1376
+ buyerId?: string | number | bigint;
1377
+ collectionIndex?: string | number | bigint;
1378
+ metadataUri?: string;
1379
+ royaltyInfo?: {
1380
+ recipients?: string[];
1381
+ bps?: (string | number | bigint)[];
1382
+ };
1383
+ price?: string | number | bigint;
1384
+ sellerDeposit?: string | number | bigint;
1385
+ quantityAvailable?: number;
1386
+ priceType?: number;
1387
+ creator?: "BUYER" | "SELLER";
1388
+ metadataHash?: string;
1389
+ condition?: {
1390
+ tokenAddress?: string;
1391
+ tokenType?: number;
1392
+ maxCommits?: string | number | bigint;
1393
+ method?: number;
1394
+ minTokenId?: string | number | bigint;
1395
+ threshold?: string | number | bigint;
1396
+ maxTokenId?: string | number | bigint;
1397
+ gatingType?: number;
1398
+ };
1399
+ feeLimit?: string | number | bigint;
1400
+ useDepositedFunds?: boolean;
1401
+ validFromDateInMS?: number;
1402
+ validUntilDateInMS?: number;
1403
+ voucherRedeemableUntilDateInMS?: number;
1404
+ voucherRedeemableFromDateInMS?: number;
1405
+ voucherValidDurationInMS?: number;
1406
+ disputePeriodDurationInMS?: number;
1407
+ resolutionPeriodDurationInMS?: number;
1408
+ exchangeTokenAddress?: string;
1409
+ buyerCancellationPenalty?: string | number | bigint;
1410
+ drMutualizerAddress?: string;
1411
+ }>, "atleastone">;
1412
+ } & {
1413
+ configId: z.ZodEffects<z.ZodString, string, string>;
1414
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
1415
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1416
+ fullOffers: z.ZodArray<z.ZodEffects<z.ZodObject<{
1417
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
1418
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1419
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1420
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1421
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1422
+ quantityAvailable: z.ZodNumber;
1423
+ validFromDateInMS: z.ZodNumber;
1424
+ validUntilDateInMS: z.ZodNumber;
1425
+ voucherRedeemableFromDateInMS: z.ZodNumber;
1426
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
1427
+ disputePeriodDurationInMS: z.ZodNumber;
1428
+ voucherValidDurationInMS: z.ZodNumber;
1429
+ resolutionPeriodDurationInMS: z.ZodNumber;
1430
+ disputeResolverId: z.ZodOptional<z.ZodString>;
1431
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1432
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1433
+ priceType: z.ZodOptional<z.ZodNumber>;
1434
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1435
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1436
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1437
+ }, "strip", z.ZodTypeAny, {
1438
+ recipients?: string[];
1439
+ bps?: (string | number | bigint)[];
1440
+ }, {
1441
+ recipients?: string[];
1442
+ bps?: (string | number | bigint)[];
1443
+ }>, {
1444
+ recipients?: string[];
1445
+ bps?: (string | number | bigint)[];
1446
+ }, {
1447
+ recipients?: string[];
1448
+ bps?: (string | number | bigint)[];
1449
+ }>, {
1450
+ recipients?: string[];
1451
+ bps?: (string | number | bigint)[];
1452
+ }, {
1453
+ recipients?: string[];
1454
+ bps?: (string | number | bigint)[];
1455
+ }>>;
1456
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1457
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1458
+ metadataUri: z.ZodString;
1459
+ metadataHash: z.ZodString;
1460
+ condition: z.ZodOptional<z.ZodObject<{
1461
+ method: z.ZodEffects<z.ZodNumber, number, number>;
1462
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1463
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
1464
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
1465
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1466
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1467
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1468
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1469
+ }, "strip", z.ZodTypeAny, {
1470
+ tokenAddress?: string;
1471
+ tokenType?: number;
1472
+ maxCommits?: string | number | bigint;
1473
+ method?: number;
1474
+ minTokenId?: string | number | bigint;
1475
+ threshold?: string | number | bigint;
1476
+ maxTokenId?: string | number | bigint;
1477
+ gatingType?: number;
1478
+ }, {
1479
+ tokenAddress?: string;
1480
+ tokenType?: number;
1481
+ maxCommits?: string | number | bigint;
1482
+ method?: number;
1483
+ minTokenId?: string | number | bigint;
1484
+ threshold?: string | number | bigint;
1485
+ maxTokenId?: string | number | bigint;
1486
+ gatingType?: number;
1487
+ }>>;
1488
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
1489
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1490
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1491
+ }, "strip", z.ZodTypeAny, {
1492
+ sellerId?: string | number | bigint;
1493
+ disputeResolverId?: string;
1494
+ agentId?: string | number | bigint;
1495
+ buyerId?: string | number | bigint;
1496
+ collectionIndex?: string | number | bigint;
1497
+ metadataUri?: string;
1498
+ royaltyInfo?: {
1499
+ recipients?: string[];
1500
+ bps?: (string | number | bigint)[];
1501
+ };
1502
+ price?: string | number | bigint;
1503
+ sellerDeposit?: string | number | bigint;
1504
+ quantityAvailable?: number;
1505
+ priceType?: number;
1506
+ creator?: "BUYER" | "SELLER";
1507
+ metadataHash?: string;
1508
+ condition?: {
1509
+ tokenAddress?: string;
1510
+ tokenType?: number;
1511
+ maxCommits?: string | number | bigint;
1512
+ method?: number;
1513
+ minTokenId?: string | number | bigint;
1514
+ threshold?: string | number | bigint;
1515
+ maxTokenId?: string | number | bigint;
1516
+ gatingType?: number;
1517
+ };
1518
+ feeLimit?: string | number | bigint;
1519
+ useDepositedFunds?: boolean;
1520
+ validFromDateInMS?: number;
1521
+ validUntilDateInMS?: number;
1522
+ voucherRedeemableUntilDateInMS?: number;
1523
+ voucherRedeemableFromDateInMS?: number;
1524
+ voucherValidDurationInMS?: number;
1525
+ disputePeriodDurationInMS?: number;
1526
+ resolutionPeriodDurationInMS?: number;
1527
+ exchangeTokenAddress?: string;
1528
+ buyerCancellationPenalty?: string | number | bigint;
1529
+ drMutualizerAddress?: string;
1530
+ }, {
1531
+ sellerId?: string | number | bigint;
1532
+ disputeResolverId?: string;
1533
+ agentId?: string | number | bigint;
1534
+ buyerId?: string | number | bigint;
1535
+ collectionIndex?: string | number | bigint;
1536
+ metadataUri?: string;
1537
+ royaltyInfo?: {
1538
+ recipients?: string[];
1539
+ bps?: (string | number | bigint)[];
1540
+ };
1541
+ price?: string | number | bigint;
1542
+ sellerDeposit?: string | number | bigint;
1543
+ quantityAvailable?: number;
1544
+ priceType?: number;
1545
+ creator?: "BUYER" | "SELLER";
1546
+ metadataHash?: string;
1547
+ condition?: {
1548
+ tokenAddress?: string;
1549
+ tokenType?: number;
1550
+ maxCommits?: string | number | bigint;
1551
+ method?: number;
1552
+ minTokenId?: string | number | bigint;
1553
+ threshold?: string | number | bigint;
1554
+ maxTokenId?: string | number | bigint;
1555
+ gatingType?: number;
1556
+ };
1557
+ feeLimit?: string | number | bigint;
1558
+ useDepositedFunds?: boolean;
1559
+ validFromDateInMS?: number;
1560
+ validUntilDateInMS?: number;
1561
+ voucherRedeemableUntilDateInMS?: number;
1562
+ voucherRedeemableFromDateInMS?: number;
1563
+ voucherValidDurationInMS?: number;
1564
+ disputePeriodDurationInMS?: number;
1565
+ resolutionPeriodDurationInMS?: number;
1566
+ exchangeTokenAddress?: string;
1567
+ buyerCancellationPenalty?: string | number | bigint;
1568
+ drMutualizerAddress?: string;
1569
+ }>, {
1570
+ sellerId?: string | number | bigint;
1571
+ disputeResolverId?: string;
1572
+ agentId?: string | number | bigint;
1573
+ buyerId?: string | number | bigint;
1574
+ collectionIndex?: string | number | bigint;
1575
+ metadataUri?: string;
1576
+ royaltyInfo?: {
1577
+ recipients?: string[];
1578
+ bps?: (string | number | bigint)[];
1579
+ };
1580
+ price?: string | number | bigint;
1581
+ sellerDeposit?: string | number | bigint;
1582
+ quantityAvailable?: number;
1583
+ priceType?: number;
1584
+ creator?: "BUYER" | "SELLER";
1585
+ metadataHash?: string;
1586
+ condition?: {
1587
+ tokenAddress?: string;
1588
+ tokenType?: number;
1589
+ maxCommits?: string | number | bigint;
1590
+ method?: number;
1591
+ minTokenId?: string | number | bigint;
1592
+ threshold?: string | number | bigint;
1593
+ maxTokenId?: string | number | bigint;
1594
+ gatingType?: number;
1595
+ };
1596
+ feeLimit?: string | number | bigint;
1597
+ useDepositedFunds?: boolean;
1598
+ validFromDateInMS?: number;
1599
+ validUntilDateInMS?: number;
1600
+ voucherRedeemableUntilDateInMS?: number;
1601
+ voucherRedeemableFromDateInMS?: number;
1602
+ voucherValidDurationInMS?: number;
1603
+ disputePeriodDurationInMS?: number;
1604
+ resolutionPeriodDurationInMS?: number;
1605
+ exchangeTokenAddress?: string;
1606
+ buyerCancellationPenalty?: string | number | bigint;
1607
+ drMutualizerAddress?: string;
1608
+ }, {
1609
+ sellerId?: string | number | bigint;
1610
+ disputeResolverId?: string;
1611
+ agentId?: string | number | bigint;
1612
+ buyerId?: string | number | bigint;
1613
+ collectionIndex?: string | number | bigint;
1614
+ metadataUri?: string;
1615
+ royaltyInfo?: {
1616
+ recipients?: string[];
1617
+ bps?: (string | number | bigint)[];
1618
+ };
1619
+ price?: string | number | bigint;
1620
+ sellerDeposit?: string | number | bigint;
1621
+ quantityAvailable?: number;
1622
+ priceType?: number;
1623
+ creator?: "BUYER" | "SELLER";
1624
+ metadataHash?: string;
1625
+ condition?: {
1626
+ tokenAddress?: string;
1627
+ tokenType?: number;
1628
+ maxCommits?: string | number | bigint;
1629
+ method?: number;
1630
+ minTokenId?: string | number | bigint;
1631
+ threshold?: string | number | bigint;
1632
+ maxTokenId?: string | number | bigint;
1633
+ gatingType?: number;
1634
+ };
1635
+ feeLimit?: string | number | bigint;
1636
+ useDepositedFunds?: boolean;
1637
+ validFromDateInMS?: number;
1638
+ validUntilDateInMS?: number;
1639
+ voucherRedeemableUntilDateInMS?: number;
1640
+ voucherRedeemableFromDateInMS?: number;
1641
+ voucherValidDurationInMS?: number;
1642
+ disputePeriodDurationInMS?: number;
1643
+ resolutionPeriodDurationInMS?: number;
1644
+ exchangeTokenAddress?: string;
1645
+ buyerCancellationPenalty?: string | number | bigint;
1646
+ drMutualizerAddress?: string;
1647
+ }>, "atleastone">;
1648
+ } & {
1649
+ configId: z.ZodEffects<z.ZodString, string, string>;
1650
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
1651
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1652
+ fullOffers: z.ZodArray<z.ZodEffects<z.ZodObject<{
1653
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
1654
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1655
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1656
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1657
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1658
+ quantityAvailable: z.ZodNumber;
1659
+ validFromDateInMS: z.ZodNumber;
1660
+ validUntilDateInMS: z.ZodNumber;
1661
+ voucherRedeemableFromDateInMS: z.ZodNumber;
1662
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
1663
+ disputePeriodDurationInMS: z.ZodNumber;
1664
+ voucherValidDurationInMS: z.ZodNumber;
1665
+ resolutionPeriodDurationInMS: z.ZodNumber;
1666
+ disputeResolverId: z.ZodOptional<z.ZodString>;
1667
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1668
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1669
+ priceType: z.ZodOptional<z.ZodNumber>;
1670
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1671
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1672
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1673
+ }, "strip", z.ZodTypeAny, {
1674
+ recipients?: string[];
1675
+ bps?: (string | number | bigint)[];
1676
+ }, {
1677
+ recipients?: string[];
1678
+ bps?: (string | number | bigint)[];
1679
+ }>, {
1680
+ recipients?: string[];
1681
+ bps?: (string | number | bigint)[];
1682
+ }, {
1683
+ recipients?: string[];
1684
+ bps?: (string | number | bigint)[];
1685
+ }>, {
1686
+ recipients?: string[];
1687
+ bps?: (string | number | bigint)[];
1688
+ }, {
1689
+ recipients?: string[];
1690
+ bps?: (string | number | bigint)[];
1691
+ }>>;
1692
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1693
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1694
+ metadataUri: z.ZodString;
1695
+ metadataHash: z.ZodString;
1696
+ condition: z.ZodOptional<z.ZodObject<{
1697
+ method: z.ZodEffects<z.ZodNumber, number, number>;
1698
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1699
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
1700
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
1701
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1702
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1703
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1704
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1705
+ }, "strip", z.ZodTypeAny, {
1706
+ tokenAddress?: string;
1707
+ tokenType?: number;
1708
+ maxCommits?: string | number | bigint;
1709
+ method?: number;
1710
+ minTokenId?: string | number | bigint;
1711
+ threshold?: string | number | bigint;
1712
+ maxTokenId?: string | number | bigint;
1713
+ gatingType?: number;
1714
+ }, {
1715
+ tokenAddress?: string;
1716
+ tokenType?: number;
1717
+ maxCommits?: string | number | bigint;
1718
+ method?: number;
1719
+ minTokenId?: string | number | bigint;
1720
+ threshold?: string | number | bigint;
1721
+ maxTokenId?: string | number | bigint;
1722
+ gatingType?: number;
1723
+ }>>;
1724
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
1725
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1726
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1727
+ }, "strip", z.ZodTypeAny, {
1728
+ sellerId?: string | number | bigint;
1729
+ disputeResolverId?: string;
1730
+ agentId?: string | number | bigint;
1731
+ buyerId?: string | number | bigint;
1732
+ collectionIndex?: string | number | bigint;
1733
+ metadataUri?: string;
1734
+ royaltyInfo?: {
1735
+ recipients?: string[];
1736
+ bps?: (string | number | bigint)[];
1737
+ };
1738
+ price?: string | number | bigint;
1739
+ sellerDeposit?: string | number | bigint;
1740
+ quantityAvailable?: number;
1741
+ priceType?: number;
1742
+ creator?: "BUYER" | "SELLER";
1743
+ metadataHash?: string;
1744
+ condition?: {
1745
+ tokenAddress?: string;
1746
+ tokenType?: number;
1747
+ maxCommits?: string | number | bigint;
1748
+ method?: number;
1749
+ minTokenId?: string | number | bigint;
1750
+ threshold?: string | number | bigint;
1751
+ maxTokenId?: string | number | bigint;
1752
+ gatingType?: number;
1753
+ };
1754
+ feeLimit?: string | number | bigint;
1755
+ useDepositedFunds?: boolean;
1756
+ validFromDateInMS?: number;
1757
+ validUntilDateInMS?: number;
1758
+ voucherRedeemableUntilDateInMS?: number;
1759
+ voucherRedeemableFromDateInMS?: number;
1760
+ voucherValidDurationInMS?: number;
1761
+ disputePeriodDurationInMS?: number;
1762
+ resolutionPeriodDurationInMS?: number;
1763
+ exchangeTokenAddress?: string;
1764
+ buyerCancellationPenalty?: string | number | bigint;
1765
+ drMutualizerAddress?: string;
1766
+ }, {
1767
+ sellerId?: string | number | bigint;
1768
+ disputeResolverId?: string;
1769
+ agentId?: string | number | bigint;
1770
+ buyerId?: string | number | bigint;
1771
+ collectionIndex?: string | number | bigint;
1772
+ metadataUri?: string;
1773
+ royaltyInfo?: {
1774
+ recipients?: string[];
1775
+ bps?: (string | number | bigint)[];
1776
+ };
1777
+ price?: string | number | bigint;
1778
+ sellerDeposit?: string | number | bigint;
1779
+ quantityAvailable?: number;
1780
+ priceType?: number;
1781
+ creator?: "BUYER" | "SELLER";
1782
+ metadataHash?: string;
1783
+ condition?: {
1784
+ tokenAddress?: string;
1785
+ tokenType?: number;
1786
+ maxCommits?: string | number | bigint;
1787
+ method?: number;
1788
+ minTokenId?: string | number | bigint;
1789
+ threshold?: string | number | bigint;
1790
+ maxTokenId?: string | number | bigint;
1791
+ gatingType?: number;
1792
+ };
1793
+ feeLimit?: string | number | bigint;
1794
+ useDepositedFunds?: boolean;
1795
+ validFromDateInMS?: number;
1796
+ validUntilDateInMS?: number;
1797
+ voucherRedeemableUntilDateInMS?: number;
1798
+ voucherRedeemableFromDateInMS?: number;
1799
+ voucherValidDurationInMS?: number;
1800
+ disputePeriodDurationInMS?: number;
1801
+ resolutionPeriodDurationInMS?: number;
1802
+ exchangeTokenAddress?: string;
1803
+ buyerCancellationPenalty?: string | number | bigint;
1804
+ drMutualizerAddress?: string;
1805
+ }>, {
1806
+ sellerId?: string | number | bigint;
1807
+ disputeResolverId?: string;
1808
+ agentId?: string | number | bigint;
1809
+ buyerId?: string | number | bigint;
1810
+ collectionIndex?: string | number | bigint;
1811
+ metadataUri?: string;
1812
+ royaltyInfo?: {
1813
+ recipients?: string[];
1814
+ bps?: (string | number | bigint)[];
1815
+ };
1816
+ price?: string | number | bigint;
1817
+ sellerDeposit?: string | number | bigint;
1818
+ quantityAvailable?: number;
1819
+ priceType?: number;
1820
+ creator?: "BUYER" | "SELLER";
1821
+ metadataHash?: string;
1822
+ condition?: {
1823
+ tokenAddress?: string;
1824
+ tokenType?: number;
1825
+ maxCommits?: string | number | bigint;
1826
+ method?: number;
1827
+ minTokenId?: string | number | bigint;
1828
+ threshold?: string | number | bigint;
1829
+ maxTokenId?: string | number | bigint;
1830
+ gatingType?: number;
1831
+ };
1832
+ feeLimit?: string | number | bigint;
1833
+ useDepositedFunds?: boolean;
1834
+ validFromDateInMS?: number;
1835
+ validUntilDateInMS?: number;
1836
+ voucherRedeemableUntilDateInMS?: number;
1837
+ voucherRedeemableFromDateInMS?: number;
1838
+ voucherValidDurationInMS?: number;
1839
+ disputePeriodDurationInMS?: number;
1840
+ resolutionPeriodDurationInMS?: number;
1841
+ exchangeTokenAddress?: string;
1842
+ buyerCancellationPenalty?: string | number | bigint;
1843
+ drMutualizerAddress?: string;
1844
+ }, {
1845
+ sellerId?: string | number | bigint;
1846
+ disputeResolverId?: string;
1847
+ agentId?: string | number | bigint;
1848
+ buyerId?: string | number | bigint;
1849
+ collectionIndex?: string | number | bigint;
1850
+ metadataUri?: string;
1851
+ royaltyInfo?: {
1852
+ recipients?: string[];
1853
+ bps?: (string | number | bigint)[];
1854
+ };
1855
+ price?: string | number | bigint;
1856
+ sellerDeposit?: string | number | bigint;
1857
+ quantityAvailable?: number;
1858
+ priceType?: number;
1859
+ creator?: "BUYER" | "SELLER";
1860
+ metadataHash?: string;
1861
+ condition?: {
1862
+ tokenAddress?: string;
1863
+ tokenType?: number;
1864
+ maxCommits?: string | number | bigint;
1865
+ method?: number;
1866
+ minTokenId?: string | number | bigint;
1867
+ threshold?: string | number | bigint;
1868
+ maxTokenId?: string | number | bigint;
1869
+ gatingType?: number;
1870
+ };
1871
+ feeLimit?: string | number | bigint;
1872
+ useDepositedFunds?: boolean;
1873
+ validFromDateInMS?: number;
1874
+ validUntilDateInMS?: number;
1875
+ voucherRedeemableUntilDateInMS?: number;
1876
+ voucherRedeemableFromDateInMS?: number;
1877
+ voucherValidDurationInMS?: number;
1878
+ disputePeriodDurationInMS?: number;
1879
+ resolutionPeriodDurationInMS?: number;
1880
+ exchangeTokenAddress?: string;
1881
+ buyerCancellationPenalty?: string | number | bigint;
1882
+ drMutualizerAddress?: string;
1883
+ }>, "atleastone">;
1884
+ } & {
1885
+ configId: z.ZodEffects<z.ZodString, string, string>;
1886
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
1887
+ }, z.ZodTypeAny, "passthrough">>;
1888
+ export declare const fullOfferUnsignedValidation: z.ZodEffects<z.ZodObject<{
1889
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
1890
+ committer: z.ZodEffects<z.ZodString, string, string>;
1891
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1892
+ } & {
1893
+ condition: z.ZodOptional<z.ZodObject<{
1894
+ method: z.ZodEffects<z.ZodNumber, number, number>;
1895
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1896
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
1897
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
1898
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1899
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1900
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1901
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1902
+ }, "strip", z.ZodTypeAny, {
1903
+ tokenAddress?: string;
1904
+ tokenType?: number;
1905
+ maxCommits?: string | number | bigint;
1906
+ method?: number;
1907
+ minTokenId?: string | number | bigint;
1908
+ threshold?: string | number | bigint;
1909
+ maxTokenId?: string | number | bigint;
1910
+ gatingType?: number;
1911
+ }, {
1912
+ tokenAddress?: string;
1913
+ tokenType?: number;
1914
+ maxCommits?: string | number | bigint;
1915
+ method?: number;
1916
+ minTokenId?: string | number | bigint;
1917
+ threshold?: string | number | bigint;
1918
+ maxTokenId?: string | number | bigint;
1919
+ gatingType?: number;
1920
+ }>>;
1921
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
1922
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1923
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1924
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
1925
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1926
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1927
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1928
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1929
+ quantityAvailable: z.ZodNumber;
1930
+ validFromDateInMS: z.ZodNumber;
1931
+ validUntilDateInMS: z.ZodNumber;
1932
+ voucherRedeemableFromDateInMS: z.ZodNumber;
1933
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
1934
+ disputePeriodDurationInMS: z.ZodNumber;
1935
+ voucherValidDurationInMS: z.ZodNumber;
1936
+ resolutionPeriodDurationInMS: z.ZodNumber;
1937
+ disputeResolverId: z.ZodOptional<z.ZodString>;
1938
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1939
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1940
+ priceType: z.ZodOptional<z.ZodNumber>;
1941
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1942
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1943
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1944
+ }, "strip", z.ZodTypeAny, {
1945
+ recipients?: string[];
1946
+ bps?: (string | number | bigint)[];
1947
+ }, {
1948
+ recipients?: string[];
1949
+ bps?: (string | number | bigint)[];
1950
+ }>, {
1951
+ recipients?: string[];
1952
+ bps?: (string | number | bigint)[];
1953
+ }, {
1954
+ recipients?: string[];
1955
+ bps?: (string | number | bigint)[];
1956
+ }>, {
1957
+ recipients?: string[];
1958
+ bps?: (string | number | bigint)[];
1959
+ }, {
1960
+ recipients?: string[];
1961
+ bps?: (string | number | bigint)[];
1962
+ }>>;
1963
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1964
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1965
+ metadataUri: z.ZodString;
1966
+ metadataHash: z.ZodString;
1967
+ configId: z.ZodEffects<z.ZodString, string, string>;
1968
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
1969
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1970
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
1971
+ committer: z.ZodEffects<z.ZodString, string, string>;
1972
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1973
+ } & {
1974
+ condition: z.ZodOptional<z.ZodObject<{
1975
+ method: z.ZodEffects<z.ZodNumber, number, number>;
1976
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1977
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
1978
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
1979
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1980
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1981
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1982
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1983
+ }, "strip", z.ZodTypeAny, {
1984
+ tokenAddress?: string;
1985
+ tokenType?: number;
1986
+ maxCommits?: string | number | bigint;
1987
+ method?: number;
1988
+ minTokenId?: string | number | bigint;
1989
+ threshold?: string | number | bigint;
1990
+ maxTokenId?: string | number | bigint;
1991
+ gatingType?: number;
1992
+ }, {
1993
+ tokenAddress?: string;
1994
+ tokenType?: number;
1995
+ maxCommits?: string | number | bigint;
1996
+ method?: number;
1997
+ minTokenId?: string | number | bigint;
1998
+ threshold?: string | number | bigint;
1999
+ maxTokenId?: string | number | bigint;
2000
+ gatingType?: number;
2001
+ }>>;
2002
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
2003
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2004
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2005
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
2006
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2007
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2008
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2009
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2010
+ quantityAvailable: z.ZodNumber;
2011
+ validFromDateInMS: z.ZodNumber;
2012
+ validUntilDateInMS: z.ZodNumber;
2013
+ voucherRedeemableFromDateInMS: z.ZodNumber;
2014
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
2015
+ disputePeriodDurationInMS: z.ZodNumber;
2016
+ voucherValidDurationInMS: z.ZodNumber;
2017
+ resolutionPeriodDurationInMS: z.ZodNumber;
2018
+ disputeResolverId: z.ZodOptional<z.ZodString>;
2019
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2020
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2021
+ priceType: z.ZodOptional<z.ZodNumber>;
2022
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2023
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2024
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
2025
+ }, "strip", z.ZodTypeAny, {
2026
+ recipients?: string[];
2027
+ bps?: (string | number | bigint)[];
2028
+ }, {
2029
+ recipients?: string[];
2030
+ bps?: (string | number | bigint)[];
2031
+ }>, {
2032
+ recipients?: string[];
2033
+ bps?: (string | number | bigint)[];
2034
+ }, {
2035
+ recipients?: string[];
2036
+ bps?: (string | number | bigint)[];
2037
+ }>, {
2038
+ recipients?: string[];
2039
+ bps?: (string | number | bigint)[];
2040
+ }, {
2041
+ recipients?: string[];
2042
+ bps?: (string | number | bigint)[];
2043
+ }>>;
2044
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
2045
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
113
2046
  metadataUri: z.ZodString;
114
2047
  metadataHash: z.ZodString;
115
- } & {
116
- configId: z.ZodEffects<z.ZodString, string, string>;
117
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
118
- }, z.ZodTypeAny, "passthrough">>;
119
- export declare const storeProductV1MetadataValidation: z.ZodObject<{
120
2048
  configId: z.ZodEffects<z.ZodString, string, string>;
121
2049
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
122
- type: z.ZodEnum<["PRODUCT_V1"]>;
123
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
124
- configId: z.ZodEffects<z.ZodString, string, string>;
125
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
126
- type: z.ZodEnum<["PRODUCT_V1"]>;
127
2050
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
128
- configId: z.ZodEffects<z.ZodString, string, string>;
129
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
130
- type: z.ZodEnum<["PRODUCT_V1"]>;
131
- }, z.ZodTypeAny, "passthrough">>;
132
- export declare const createOfferWithConditionValidation: z.ZodObject<{
133
- condition: z.ZodObject<{
2051
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
2052
+ committer: z.ZodEffects<z.ZodString, string, string>;
2053
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2054
+ } & {
2055
+ condition: z.ZodOptional<z.ZodObject<{
134
2056
  method: z.ZodEffects<z.ZodNumber, number, number>;
135
2057
  tokenType: z.ZodEffects<z.ZodNumber, number, number>;
136
2058
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
@@ -157,12 +2079,15 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
157
2079
  threshold?: string | number | bigint;
158
2080
  maxTokenId?: string | number | bigint;
159
2081
  gatingType?: number;
160
- }>;
2082
+ }>>;
2083
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
2084
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2085
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
161
2086
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
162
- price: z.ZodString;
163
- sellerDeposit: z.ZodString;
164
- agentId: z.ZodOptional<z.ZodString>;
165
- buyerCancellationPenalty: z.ZodString;
2087
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2088
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2089
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2090
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
166
2091
  quantityAvailable: z.ZodNumber;
167
2092
  validFromDateInMS: z.ZodNumber;
168
2093
  validUntilDateInMS: z.ZodNumber;
@@ -172,13 +2097,43 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
172
2097
  voucherValidDurationInMS: z.ZodNumber;
173
2098
  resolutionPeriodDurationInMS: z.ZodNumber;
174
2099
  disputeResolverId: z.ZodOptional<z.ZodString>;
2100
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2101
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2102
+ priceType: z.ZodOptional<z.ZodNumber>;
2103
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2104
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2105
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
2106
+ }, "strip", z.ZodTypeAny, {
2107
+ recipients?: string[];
2108
+ bps?: (string | number | bigint)[];
2109
+ }, {
2110
+ recipients?: string[];
2111
+ bps?: (string | number | bigint)[];
2112
+ }>, {
2113
+ recipients?: string[];
2114
+ bps?: (string | number | bigint)[];
2115
+ }, {
2116
+ recipients?: string[];
2117
+ bps?: (string | number | bigint)[];
2118
+ }>, {
2119
+ recipients?: string[];
2120
+ bps?: (string | number | bigint)[];
2121
+ }, {
2122
+ recipients?: string[];
2123
+ bps?: (string | number | bigint)[];
2124
+ }>>;
2125
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
2126
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
175
2127
  metadataUri: z.ZodString;
176
2128
  metadataHash: z.ZodString;
177
- } & {
178
2129
  configId: z.ZodEffects<z.ZodString, string, string>;
179
2130
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
180
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
181
- condition: z.ZodObject<{
2131
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
2132
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
2133
+ committer: z.ZodEffects<z.ZodString, string, string>;
2134
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2135
+ } & {
2136
+ condition: z.ZodOptional<z.ZodObject<{
182
2137
  method: z.ZodEffects<z.ZodNumber, number, number>;
183
2138
  tokenType: z.ZodEffects<z.ZodNumber, number, number>;
184
2139
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
@@ -205,12 +2160,15 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
205
2160
  threshold?: string | number | bigint;
206
2161
  maxTokenId?: string | number | bigint;
207
2162
  gatingType?: number;
208
- }>;
2163
+ }>>;
2164
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
2165
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2166
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
209
2167
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
210
- price: z.ZodString;
211
- sellerDeposit: z.ZodString;
212
- agentId: z.ZodOptional<z.ZodString>;
213
- buyerCancellationPenalty: z.ZodString;
2168
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2169
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2170
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2171
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
214
2172
  quantityAvailable: z.ZodNumber;
215
2173
  validFromDateInMS: z.ZodNumber;
216
2174
  validUntilDateInMS: z.ZodNumber;
@@ -220,13 +2178,43 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
220
2178
  voucherValidDurationInMS: z.ZodNumber;
221
2179
  resolutionPeriodDurationInMS: z.ZodNumber;
222
2180
  disputeResolverId: z.ZodOptional<z.ZodString>;
2181
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2182
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2183
+ priceType: z.ZodOptional<z.ZodNumber>;
2184
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2185
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2186
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
2187
+ }, "strip", z.ZodTypeAny, {
2188
+ recipients?: string[];
2189
+ bps?: (string | number | bigint)[];
2190
+ }, {
2191
+ recipients?: string[];
2192
+ bps?: (string | number | bigint)[];
2193
+ }>, {
2194
+ recipients?: string[];
2195
+ bps?: (string | number | bigint)[];
2196
+ }, {
2197
+ recipients?: string[];
2198
+ bps?: (string | number | bigint)[];
2199
+ }>, {
2200
+ recipients?: string[];
2201
+ bps?: (string | number | bigint)[];
2202
+ }, {
2203
+ recipients?: string[];
2204
+ bps?: (string | number | bigint)[];
2205
+ }>>;
2206
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
2207
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
223
2208
  metadataUri: z.ZodString;
224
2209
  metadataHash: z.ZodString;
225
- } & {
226
2210
  configId: z.ZodEffects<z.ZodString, string, string>;
227
2211
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
228
2212
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
229
- condition: z.ZodObject<{
2213
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
2214
+ committer: z.ZodEffects<z.ZodString, string, string>;
2215
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2216
+ } & {
2217
+ condition: z.ZodOptional<z.ZodObject<{
230
2218
  method: z.ZodEffects<z.ZodNumber, number, number>;
231
2219
  tokenType: z.ZodEffects<z.ZodNumber, number, number>;
232
2220
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
@@ -253,12 +2241,15 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
253
2241
  threshold?: string | number | bigint;
254
2242
  maxTokenId?: string | number | bigint;
255
2243
  gatingType?: number;
256
- }>;
2244
+ }>>;
2245
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
2246
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2247
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
257
2248
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
258
- price: z.ZodString;
259
- sellerDeposit: z.ZodString;
260
- agentId: z.ZodOptional<z.ZodString>;
261
- buyerCancellationPenalty: z.ZodString;
2249
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2250
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2251
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2252
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
262
2253
  quantityAvailable: z.ZodNumber;
263
2254
  validFromDateInMS: z.ZodNumber;
264
2255
  validUntilDateInMS: z.ZodNumber;
@@ -268,9 +2259,45 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
268
2259
  voucherValidDurationInMS: z.ZodNumber;
269
2260
  resolutionPeriodDurationInMS: z.ZodNumber;
270
2261
  disputeResolverId: z.ZodOptional<z.ZodString>;
2262
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2263
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2264
+ priceType: z.ZodOptional<z.ZodNumber>;
2265
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2266
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2267
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
2268
+ }, "strip", z.ZodTypeAny, {
2269
+ recipients?: string[];
2270
+ bps?: (string | number | bigint)[];
2271
+ }, {
2272
+ recipients?: string[];
2273
+ bps?: (string | number | bigint)[];
2274
+ }>, {
2275
+ recipients?: string[];
2276
+ bps?: (string | number | bigint)[];
2277
+ }, {
2278
+ recipients?: string[];
2279
+ bps?: (string | number | bigint)[];
2280
+ }>, {
2281
+ recipients?: string[];
2282
+ bps?: (string | number | bigint)[];
2283
+ }, {
2284
+ recipients?: string[];
2285
+ bps?: (string | number | bigint)[];
2286
+ }>>;
2287
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
2288
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
271
2289
  metadataUri: z.ZodString;
272
2290
  metadataHash: z.ZodString;
273
- } & {
2291
+ configId: z.ZodEffects<z.ZodString, string, string>;
2292
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
2293
+ }, z.ZodTypeAny, "passthrough">>;
2294
+ export declare const createBuyerValidation: z.ZodObject<{
2295
+ configId: z.ZodEffects<z.ZodString, string, string>;
2296
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
2297
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2298
+ configId: z.ZodEffects<z.ZodString, string, string>;
2299
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
2300
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
274
2301
  configId: z.ZodEffects<z.ZodString, string, string>;
275
2302
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
276
2303
  }, z.ZodTypeAny, "passthrough">>;
@@ -359,14 +2386,14 @@ export declare const depositFundsValidation: z.ZodObject<{
359
2386
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
360
2387
  }, "strip", z.ZodTypeAny, {
361
2388
  tokenAddress?: string;
362
- entityId?: string | number | bigint;
363
2389
  amount?: string | number | bigint;
2390
+ entityId?: string | number | bigint;
364
2391
  configId?: string;
365
2392
  signerAddress?: string;
366
2393
  }, {
367
2394
  tokenAddress?: string;
368
- entityId?: string | number | bigint;
369
2395
  amount?: string | number | bigint;
2396
+ entityId?: string | number | bigint;
370
2397
  configId?: string;
371
2398
  signerAddress?: string;
372
2399
  }>;
@@ -840,88 +2867,581 @@ export declare const getDisputesValidation: z.ZodObject<{
840
2867
  disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
841
2868
  disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
842
2869
  } & {
843
- configId: z.ZodEffects<z.ZodString, string, string>;
844
- }, "strip", z.ZodTypeAny, {
845
- configId?: string;
846
- disputesFilter?: Record<string, unknown>;
847
- disputesSkip?: number;
848
- disputesFirst?: number;
849
- disputesOrderBy?: string;
850
- disputesOrderDirection?: string;
851
- }, {
852
- configId?: string;
853
- disputesFilter?: Record<string, unknown>;
854
- disputesSkip?: number;
855
- disputesFirst?: number;
856
- disputesOrderBy?: string;
857
- disputesOrderDirection?: string;
858
- }>;
859
- export declare const getDisputesValidationShape: {
860
- disputesSkip: z.ZodOptional<z.ZodNumber>;
861
- disputesFirst: z.ZodOptional<z.ZodNumber>;
862
- disputesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
863
- disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
864
- disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2870
+ configId: z.ZodEffects<z.ZodString, string, string>;
2871
+ }, "strip", z.ZodTypeAny, {
2872
+ configId?: string;
2873
+ disputesFilter?: Record<string, unknown>;
2874
+ disputesSkip?: number;
2875
+ disputesFirst?: number;
2876
+ disputesOrderBy?: string;
2877
+ disputesOrderDirection?: string;
2878
+ }, {
2879
+ configId?: string;
2880
+ disputesFilter?: Record<string, unknown>;
2881
+ disputesSkip?: number;
2882
+ disputesFirst?: number;
2883
+ disputesOrderBy?: string;
2884
+ disputesOrderDirection?: string;
2885
+ }>;
2886
+ export declare const getDisputesValidationShape: {
2887
+ disputesSkip: z.ZodOptional<z.ZodNumber>;
2888
+ disputesFirst: z.ZodOptional<z.ZodNumber>;
2889
+ disputesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
2890
+ disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
2891
+ disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2892
+ } & {
2893
+ configId: z.ZodEffects<z.ZodString, string, string>;
2894
+ };
2895
+ export declare const getDisputesResourceValidation: z.ZodObject<{
2896
+ disputesSkip: z.ZodOptional<z.ZodNumber>;
2897
+ disputesFirst: z.ZodOptional<z.ZodNumber>;
2898
+ disputesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
2899
+ disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
2900
+ disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2901
+ }, "strip", z.ZodTypeAny, {
2902
+ disputesFilter?: Record<string, unknown>;
2903
+ disputesSkip?: number;
2904
+ disputesFirst?: number;
2905
+ disputesOrderBy?: string;
2906
+ disputesOrderDirection?: string;
2907
+ }, {
2908
+ disputesFilter?: Record<string, unknown>;
2909
+ disputesSkip?: number;
2910
+ disputesFirst?: number;
2911
+ disputesOrderBy?: string;
2912
+ disputesOrderDirection?: string;
2913
+ }>;
2914
+ export declare const revokeVoucherValidationShape: {
2915
+ exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2916
+ };
2917
+ export declare const revokeVoucherValidation: z.ZodObject<{
2918
+ exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2919
+ } & {
2920
+ configId: z.ZodEffects<z.ZodString, string, string>;
2921
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
2922
+ }, "strip", z.ZodTypeAny, {
2923
+ exchangeId?: string | number | bigint;
2924
+ configId?: string;
2925
+ signerAddress?: string;
2926
+ }, {
2927
+ exchangeId?: string | number | bigint;
2928
+ configId?: string;
2929
+ signerAddress?: string;
2930
+ }>;
2931
+ export declare const commitToOfferValidationShape: {
2932
+ offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2933
+ buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2934
+ };
2935
+ export declare const commitToOfferValidation: z.ZodObject<{
2936
+ offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2937
+ buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2938
+ } & {
2939
+ configId: z.ZodEffects<z.ZodString, string, string>;
2940
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
2941
+ }, "strip", z.ZodTypeAny, {
2942
+ buyer?: string;
2943
+ offerId?: string | number | bigint;
2944
+ configId?: string;
2945
+ signerAddress?: string;
2946
+ }, {
2947
+ buyer?: string;
2948
+ offerId?: string | number | bigint;
2949
+ configId?: string;
2950
+ signerAddress?: string;
2951
+ }>;
2952
+ export declare const commitToBuyerOfferValidationShape: {
2953
+ offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2954
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2955
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2956
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2957
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
2958
+ }, "strip", z.ZodTypeAny, {
2959
+ recipients?: string[];
2960
+ bps?: (string | number | bigint)[];
2961
+ }, {
2962
+ recipients?: string[];
2963
+ bps?: (string | number | bigint)[];
2964
+ }>, {
2965
+ recipients?: string[];
2966
+ bps?: (string | number | bigint)[];
2967
+ }, {
2968
+ recipients?: string[];
2969
+ bps?: (string | number | bigint)[];
2970
+ }>, {
2971
+ recipients?: string[];
2972
+ bps?: (string | number | bigint)[];
2973
+ }, {
2974
+ recipients?: string[];
2975
+ bps?: (string | number | bigint)[];
2976
+ }>>;
2977
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2978
+ };
2979
+ export declare const commitToBuyerOfferValidation: z.ZodObject<{
2980
+ offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2981
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2982
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2983
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
2984
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
2985
+ }, "strip", z.ZodTypeAny, {
2986
+ recipients?: string[];
2987
+ bps?: (string | number | bigint)[];
2988
+ }, {
2989
+ recipients?: string[];
2990
+ bps?: (string | number | bigint)[];
2991
+ }>, {
2992
+ recipients?: string[];
2993
+ bps?: (string | number | bigint)[];
2994
+ }, {
2995
+ recipients?: string[];
2996
+ bps?: (string | number | bigint)[];
2997
+ }>, {
2998
+ recipients?: string[];
2999
+ bps?: (string | number | bigint)[];
3000
+ }, {
3001
+ recipients?: string[];
3002
+ bps?: (string | number | bigint)[];
3003
+ }>>;
3004
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3005
+ } & {
3006
+ configId: z.ZodEffects<z.ZodString, string, string>;
3007
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
3008
+ }, "strip", z.ZodTypeAny, {
3009
+ collectionIndex?: string | number | bigint;
3010
+ offerId?: string | number | bigint;
3011
+ royaltyInfo?: {
3012
+ recipients?: string[];
3013
+ bps?: (string | number | bigint)[];
3014
+ };
3015
+ configId?: string;
3016
+ signerAddress?: string;
3017
+ drMutualizerAddress?: string;
3018
+ }, {
3019
+ collectionIndex?: string | number | bigint;
3020
+ offerId?: string | number | bigint;
3021
+ royaltyInfo?: {
3022
+ recipients?: string[];
3023
+ bps?: (string | number | bigint)[];
3024
+ };
3025
+ configId?: string;
3026
+ signerAddress?: string;
3027
+ drMutualizerAddress?: string;
3028
+ }>;
3029
+ export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
3030
+ signature: z.ZodEffects<z.ZodString, string, string>;
3031
+ } & {
3032
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
3033
+ committer: z.ZodEffects<z.ZodString, string, string>;
3034
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3035
+ } & {
3036
+ condition: z.ZodOptional<z.ZodObject<{
3037
+ method: z.ZodEffects<z.ZodNumber, number, number>;
3038
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
3039
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
3040
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
3041
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3042
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3043
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3044
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3045
+ }, "strip", z.ZodTypeAny, {
3046
+ tokenAddress?: string;
3047
+ tokenType?: number;
3048
+ maxCommits?: string | number | bigint;
3049
+ method?: number;
3050
+ minTokenId?: string | number | bigint;
3051
+ threshold?: string | number | bigint;
3052
+ maxTokenId?: string | number | bigint;
3053
+ gatingType?: number;
3054
+ }, {
3055
+ tokenAddress?: string;
3056
+ tokenType?: number;
3057
+ maxCommits?: string | number | bigint;
3058
+ method?: number;
3059
+ minTokenId?: string | number | bigint;
3060
+ threshold?: string | number | bigint;
3061
+ maxTokenId?: string | number | bigint;
3062
+ gatingType?: number;
3063
+ }>>;
3064
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
3065
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3066
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3067
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
3068
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3069
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3070
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3071
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3072
+ quantityAvailable: z.ZodNumber;
3073
+ validFromDateInMS: z.ZodNumber;
3074
+ validUntilDateInMS: z.ZodNumber;
3075
+ voucherRedeemableFromDateInMS: z.ZodNumber;
3076
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
3077
+ disputePeriodDurationInMS: z.ZodNumber;
3078
+ voucherValidDurationInMS: z.ZodNumber;
3079
+ resolutionPeriodDurationInMS: z.ZodNumber;
3080
+ disputeResolverId: z.ZodOptional<z.ZodString>;
3081
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3082
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3083
+ priceType: z.ZodOptional<z.ZodNumber>;
3084
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
3085
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
3086
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
3087
+ }, "strip", z.ZodTypeAny, {
3088
+ recipients?: string[];
3089
+ bps?: (string | number | bigint)[];
3090
+ }, {
3091
+ recipients?: string[];
3092
+ bps?: (string | number | bigint)[];
3093
+ }>, {
3094
+ recipients?: string[];
3095
+ bps?: (string | number | bigint)[];
3096
+ }, {
3097
+ recipients?: string[];
3098
+ bps?: (string | number | bigint)[];
3099
+ }>, {
3100
+ recipients?: string[];
3101
+ bps?: (string | number | bigint)[];
3102
+ }, {
3103
+ recipients?: string[];
3104
+ bps?: (string | number | bigint)[];
3105
+ }>>;
3106
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3107
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3108
+ metadataUri: z.ZodString;
3109
+ metadataHash: z.ZodString;
3110
+ configId: z.ZodEffects<z.ZodString, string, string>;
3111
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
3112
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3113
+ signature: z.ZodEffects<z.ZodString, string, string>;
3114
+ } & {
3115
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
3116
+ committer: z.ZodEffects<z.ZodString, string, string>;
3117
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3118
+ } & {
3119
+ condition: z.ZodOptional<z.ZodObject<{
3120
+ method: z.ZodEffects<z.ZodNumber, number, number>;
3121
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
3122
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
3123
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
3124
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3125
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3126
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3127
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3128
+ }, "strip", z.ZodTypeAny, {
3129
+ tokenAddress?: string;
3130
+ tokenType?: number;
3131
+ maxCommits?: string | number | bigint;
3132
+ method?: number;
3133
+ minTokenId?: string | number | bigint;
3134
+ threshold?: string | number | bigint;
3135
+ maxTokenId?: string | number | bigint;
3136
+ gatingType?: number;
3137
+ }, {
3138
+ tokenAddress?: string;
3139
+ tokenType?: number;
3140
+ maxCommits?: string | number | bigint;
3141
+ method?: number;
3142
+ minTokenId?: string | number | bigint;
3143
+ threshold?: string | number | bigint;
3144
+ maxTokenId?: string | number | bigint;
3145
+ gatingType?: number;
3146
+ }>>;
3147
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
3148
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3149
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3150
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
3151
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3152
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3153
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3154
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3155
+ quantityAvailable: z.ZodNumber;
3156
+ validFromDateInMS: z.ZodNumber;
3157
+ validUntilDateInMS: z.ZodNumber;
3158
+ voucherRedeemableFromDateInMS: z.ZodNumber;
3159
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
3160
+ disputePeriodDurationInMS: z.ZodNumber;
3161
+ voucherValidDurationInMS: z.ZodNumber;
3162
+ resolutionPeriodDurationInMS: z.ZodNumber;
3163
+ disputeResolverId: z.ZodOptional<z.ZodString>;
3164
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3165
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3166
+ priceType: z.ZodOptional<z.ZodNumber>;
3167
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
3168
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
3169
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
3170
+ }, "strip", z.ZodTypeAny, {
3171
+ recipients?: string[];
3172
+ bps?: (string | number | bigint)[];
3173
+ }, {
3174
+ recipients?: string[];
3175
+ bps?: (string | number | bigint)[];
3176
+ }>, {
3177
+ recipients?: string[];
3178
+ bps?: (string | number | bigint)[];
3179
+ }, {
3180
+ recipients?: string[];
3181
+ bps?: (string | number | bigint)[];
3182
+ }>, {
3183
+ recipients?: string[];
3184
+ bps?: (string | number | bigint)[];
3185
+ }, {
3186
+ recipients?: string[];
3187
+ bps?: (string | number | bigint)[];
3188
+ }>>;
3189
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3190
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3191
+ metadataUri: z.ZodString;
3192
+ metadataHash: z.ZodString;
3193
+ configId: z.ZodEffects<z.ZodString, string, string>;
3194
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
3195
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3196
+ signature: z.ZodEffects<z.ZodString, string, string>;
3197
+ } & {
3198
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
3199
+ committer: z.ZodEffects<z.ZodString, string, string>;
3200
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
865
3201
  } & {
3202
+ condition: z.ZodOptional<z.ZodObject<{
3203
+ method: z.ZodEffects<z.ZodNumber, number, number>;
3204
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
3205
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
3206
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
3207
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3208
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3209
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3210
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3211
+ }, "strip", z.ZodTypeAny, {
3212
+ tokenAddress?: string;
3213
+ tokenType?: number;
3214
+ maxCommits?: string | number | bigint;
3215
+ method?: number;
3216
+ minTokenId?: string | number | bigint;
3217
+ threshold?: string | number | bigint;
3218
+ maxTokenId?: string | number | bigint;
3219
+ gatingType?: number;
3220
+ }, {
3221
+ tokenAddress?: string;
3222
+ tokenType?: number;
3223
+ maxCommits?: string | number | bigint;
3224
+ method?: number;
3225
+ minTokenId?: string | number | bigint;
3226
+ threshold?: string | number | bigint;
3227
+ maxTokenId?: string | number | bigint;
3228
+ gatingType?: number;
3229
+ }>>;
3230
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
3231
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3232
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3233
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
3234
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3235
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3236
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3237
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3238
+ quantityAvailable: z.ZodNumber;
3239
+ validFromDateInMS: z.ZodNumber;
3240
+ validUntilDateInMS: z.ZodNumber;
3241
+ voucherRedeemableFromDateInMS: z.ZodNumber;
3242
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
3243
+ disputePeriodDurationInMS: z.ZodNumber;
3244
+ voucherValidDurationInMS: z.ZodNumber;
3245
+ resolutionPeriodDurationInMS: z.ZodNumber;
3246
+ disputeResolverId: z.ZodOptional<z.ZodString>;
3247
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3248
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3249
+ priceType: z.ZodOptional<z.ZodNumber>;
3250
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
3251
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
3252
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
3253
+ }, "strip", z.ZodTypeAny, {
3254
+ recipients?: string[];
3255
+ bps?: (string | number | bigint)[];
3256
+ }, {
3257
+ recipients?: string[];
3258
+ bps?: (string | number | bigint)[];
3259
+ }>, {
3260
+ recipients?: string[];
3261
+ bps?: (string | number | bigint)[];
3262
+ }, {
3263
+ recipients?: string[];
3264
+ bps?: (string | number | bigint)[];
3265
+ }>, {
3266
+ recipients?: string[];
3267
+ bps?: (string | number | bigint)[];
3268
+ }, {
3269
+ recipients?: string[];
3270
+ bps?: (string | number | bigint)[];
3271
+ }>>;
3272
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3273
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3274
+ metadataUri: z.ZodString;
3275
+ metadataHash: z.ZodString;
866
3276
  configId: z.ZodEffects<z.ZodString, string, string>;
867
- };
868
- export declare const getDisputesResourceValidation: z.ZodObject<{
869
- disputesSkip: z.ZodOptional<z.ZodNumber>;
870
- disputesFirst: z.ZodOptional<z.ZodNumber>;
871
- disputesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
872
- disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
873
- disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
874
- }, "strip", z.ZodTypeAny, {
875
- disputesFilter?: Record<string, unknown>;
876
- disputesSkip?: number;
877
- disputesFirst?: number;
878
- disputesOrderBy?: string;
879
- disputesOrderDirection?: string;
880
- }, {
881
- disputesFilter?: Record<string, unknown>;
882
- disputesSkip?: number;
883
- disputesFirst?: number;
884
- disputesOrderBy?: string;
885
- disputesOrderDirection?: string;
886
- }>;
887
- export declare const revokeVoucherValidationShape: {
888
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
889
- };
890
- export declare const revokeVoucherValidation: z.ZodObject<{
891
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3277
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
3278
+ }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
3279
+ signature: z.ZodEffects<z.ZodString, string, string>;
3280
+ } & {
3281
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
3282
+ committer: z.ZodEffects<z.ZodString, string, string>;
3283
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
892
3284
  } & {
3285
+ condition: z.ZodOptional<z.ZodObject<{
3286
+ method: z.ZodEffects<z.ZodNumber, number, number>;
3287
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
3288
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
3289
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
3290
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3291
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3292
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3293
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3294
+ }, "strip", z.ZodTypeAny, {
3295
+ tokenAddress?: string;
3296
+ tokenType?: number;
3297
+ maxCommits?: string | number | bigint;
3298
+ method?: number;
3299
+ minTokenId?: string | number | bigint;
3300
+ threshold?: string | number | bigint;
3301
+ maxTokenId?: string | number | bigint;
3302
+ gatingType?: number;
3303
+ }, {
3304
+ tokenAddress?: string;
3305
+ tokenType?: number;
3306
+ maxCommits?: string | number | bigint;
3307
+ method?: number;
3308
+ minTokenId?: string | number | bigint;
3309
+ threshold?: string | number | bigint;
3310
+ maxTokenId?: string | number | bigint;
3311
+ gatingType?: number;
3312
+ }>>;
3313
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
3314
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3315
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3316
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
3317
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3318
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3319
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3320
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3321
+ quantityAvailable: z.ZodNumber;
3322
+ validFromDateInMS: z.ZodNumber;
3323
+ validUntilDateInMS: z.ZodNumber;
3324
+ voucherRedeemableFromDateInMS: z.ZodNumber;
3325
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
3326
+ disputePeriodDurationInMS: z.ZodNumber;
3327
+ voucherValidDurationInMS: z.ZodNumber;
3328
+ resolutionPeriodDurationInMS: z.ZodNumber;
3329
+ disputeResolverId: z.ZodOptional<z.ZodString>;
3330
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3331
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3332
+ priceType: z.ZodOptional<z.ZodNumber>;
3333
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
3334
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
3335
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
3336
+ }, "strip", z.ZodTypeAny, {
3337
+ recipients?: string[];
3338
+ bps?: (string | number | bigint)[];
3339
+ }, {
3340
+ recipients?: string[];
3341
+ bps?: (string | number | bigint)[];
3342
+ }>, {
3343
+ recipients?: string[];
3344
+ bps?: (string | number | bigint)[];
3345
+ }, {
3346
+ recipients?: string[];
3347
+ bps?: (string | number | bigint)[];
3348
+ }>, {
3349
+ recipients?: string[];
3350
+ bps?: (string | number | bigint)[];
3351
+ }, {
3352
+ recipients?: string[];
3353
+ bps?: (string | number | bigint)[];
3354
+ }>>;
3355
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3356
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3357
+ metadataUri: z.ZodString;
3358
+ metadataHash: z.ZodString;
893
3359
  configId: z.ZodEffects<z.ZodString, string, string>;
894
3360
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
895
- }, "strip", z.ZodTypeAny, {
896
- exchangeId?: string | number | bigint;
897
- configId?: string;
898
- signerAddress?: string;
899
- }, {
900
- exchangeId?: string | number | bigint;
901
- configId?: string;
902
- signerAddress?: string;
903
- }>;
904
- export declare const commitToOfferValidationShape: {
905
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
906
- buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
907
- };
908
- export declare const commitToOfferValidation: z.ZodObject<{
909
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
910
- buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3361
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3362
+ signature: z.ZodEffects<z.ZodString, string, string>;
3363
+ } & {
3364
+ offerCreator: z.ZodEffects<z.ZodString, string, string>;
3365
+ committer: z.ZodEffects<z.ZodString, string, string>;
3366
+ conditionalTokenId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
911
3367
  } & {
3368
+ condition: z.ZodOptional<z.ZodObject<{
3369
+ method: z.ZodEffects<z.ZodNumber, number, number>;
3370
+ tokenType: z.ZodEffects<z.ZodNumber, number, number>;
3371
+ tokenAddress: z.ZodEffects<z.ZodString, string, string>;
3372
+ gatingType: z.ZodEffects<z.ZodNumber, number, number>;
3373
+ minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3374
+ maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3375
+ threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3376
+ maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3377
+ }, "strip", z.ZodTypeAny, {
3378
+ tokenAddress?: string;
3379
+ tokenType?: number;
3380
+ maxCommits?: string | number | bigint;
3381
+ method?: number;
3382
+ minTokenId?: string | number | bigint;
3383
+ threshold?: string | number | bigint;
3384
+ maxTokenId?: string | number | bigint;
3385
+ gatingType?: number;
3386
+ }, {
3387
+ tokenAddress?: string;
3388
+ tokenType?: number;
3389
+ maxCommits?: string | number | bigint;
3390
+ method?: number;
3391
+ minTokenId?: string | number | bigint;
3392
+ threshold?: string | number | bigint;
3393
+ maxTokenId?: string | number | bigint;
3394
+ gatingType?: number;
3395
+ }>>;
3396
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
3397
+ sellerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3398
+ buyerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3399
+ exchangeTokenAddress: z.ZodOptional<z.ZodString>;
3400
+ price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3401
+ sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3402
+ agentId: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3403
+ buyerCancellationPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3404
+ quantityAvailable: z.ZodNumber;
3405
+ validFromDateInMS: z.ZodNumber;
3406
+ validUntilDateInMS: z.ZodNumber;
3407
+ voucherRedeemableFromDateInMS: z.ZodNumber;
3408
+ voucherRedeemableUntilDateInMS: z.ZodNumber;
3409
+ disputePeriodDurationInMS: z.ZodNumber;
3410
+ voucherValidDurationInMS: z.ZodNumber;
3411
+ resolutionPeriodDurationInMS: z.ZodNumber;
3412
+ disputeResolverId: z.ZodOptional<z.ZodString>;
3413
+ collectionIndex: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3414
+ feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3415
+ priceType: z.ZodOptional<z.ZodNumber>;
3416
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
3417
+ recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
3418
+ bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
3419
+ }, "strip", z.ZodTypeAny, {
3420
+ recipients?: string[];
3421
+ bps?: (string | number | bigint)[];
3422
+ }, {
3423
+ recipients?: string[];
3424
+ bps?: (string | number | bigint)[];
3425
+ }>, {
3426
+ recipients?: string[];
3427
+ bps?: (string | number | bigint)[];
3428
+ }, {
3429
+ recipients?: string[];
3430
+ bps?: (string | number | bigint)[];
3431
+ }>, {
3432
+ recipients?: string[];
3433
+ bps?: (string | number | bigint)[];
3434
+ }, {
3435
+ recipients?: string[];
3436
+ bps?: (string | number | bigint)[];
3437
+ }>>;
3438
+ creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3439
+ drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3440
+ metadataUri: z.ZodString;
3441
+ metadataHash: z.ZodString;
912
3442
  configId: z.ZodEffects<z.ZodString, string, string>;
913
3443
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
914
- }, "strip", z.ZodTypeAny, {
915
- buyer?: string;
916
- offerId?: string | number | bigint;
917
- configId?: string;
918
- signerAddress?: string;
919
- }, {
920
- buyer?: string;
921
- offerId?: string | number | bigint;
922
- configId?: string;
923
- signerAddress?: string;
924
- }>;
3444
+ }, z.ZodTypeAny, "passthrough">>;
925
3445
  export declare const voidOfferValidationShape: {
926
3446
  offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
927
3447
  };
@@ -1464,7 +3984,7 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1464
3984
  collectionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1465
3985
  feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
1466
3986
  priceType: z.ZodOptional<z.ZodNumber>;
1467
- royaltyInfo: z.ZodOptional<z.ZodArray<z.ZodObject<{
3987
+ royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1468
3988
  recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
1469
3989
  bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1470
3990
  }, "strip", z.ZodTypeAny, {
@@ -1473,23 +3993,36 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1473
3993
  }, {
1474
3994
  recipients?: string[];
1475
3995
  bps?: (string | number | bigint)[];
1476
- }>, "many">>;
3996
+ }>, {
3997
+ recipients?: string[];
3998
+ bps?: (string | number | bigint)[];
3999
+ }, {
4000
+ recipients?: string[];
4001
+ bps?: (string | number | bigint)[];
4002
+ }>, {
4003
+ recipients?: string[];
4004
+ bps?: (string | number | bigint)[];
4005
+ }, {
4006
+ recipients?: string[];
4007
+ bps?: (string | number | bigint)[];
4008
+ }>>;
1477
4009
  }, "strict", z.ZodTypeAny, {
1478
- agentId?: string | number | bigint;
1479
4010
  disputeResolverId?: string | number | bigint;
4011
+ agentId?: string | number | bigint;
1480
4012
  collectionIndex?: string | number | bigint;
1481
4013
  metadataUri?: string;
1482
4014
  exchangeToken?: string;
4015
+ royaltyInfo?: {
4016
+ recipients?: string[];
4017
+ bps?: (string | number | bigint)[];
4018
+ };
1483
4019
  price?: string | number | bigint;
1484
4020
  sellerDeposit?: string | number | bigint;
1485
4021
  buyerCancelPenalty?: string | number | bigint;
1486
4022
  quantityAvailable?: string | number | bigint;
1487
4023
  priceType?: number;
1488
4024
  metadataHash?: string;
1489
- royaltyInfo?: {
1490
- recipients?: string[];
1491
- bps?: (string | number | bigint)[];
1492
- }[];
4025
+ feeLimit?: string | number | bigint;
1493
4026
  validFromDateInMS?: string | number | bigint;
1494
4027
  validUntilDateInMS?: string | number | bigint;
1495
4028
  voucherRedeemableUntilDateInMS?: string | number | bigint;
@@ -1497,23 +4030,23 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1497
4030
  voucherValidDurationInMS?: string | number | bigint;
1498
4031
  disputePeriodDurationInMS?: string | number | bigint;
1499
4032
  resolutionPeriodDurationInMS?: string | number | bigint;
1500
- feeLimit?: string | number | bigint;
1501
4033
  }, {
1502
- agentId?: string | number | bigint;
1503
4034
  disputeResolverId?: string | number | bigint;
4035
+ agentId?: string | number | bigint;
1504
4036
  collectionIndex?: string | number | bigint;
1505
4037
  metadataUri?: string;
1506
4038
  exchangeToken?: string;
4039
+ royaltyInfo?: {
4040
+ recipients?: string[];
4041
+ bps?: (string | number | bigint)[];
4042
+ };
1507
4043
  price?: string | number | bigint;
1508
4044
  sellerDeposit?: string | number | bigint;
1509
4045
  buyerCancelPenalty?: string | number | bigint;
1510
4046
  quantityAvailable?: string | number | bigint;
1511
4047
  priceType?: number;
1512
4048
  metadataHash?: string;
1513
- royaltyInfo?: {
1514
- recipients?: string[];
1515
- bps?: (string | number | bigint)[];
1516
- }[];
4049
+ feeLimit?: string | number | bigint;
1517
4050
  validFromDateInMS?: string | number | bigint;
1518
4051
  validUntilDateInMS?: string | number | bigint;
1519
4052
  voucherRedeemableUntilDateInMS?: string | number | bigint;
@@ -1521,7 +4054,6 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1521
4054
  voucherValidDurationInMS?: string | number | bigint;
1522
4055
  disputePeriodDurationInMS?: string | number | bigint;
1523
4056
  resolutionPeriodDurationInMS?: string | number | bigint;
1524
- feeLimit?: string | number | bigint;
1525
4057
  }>;
1526
4058
  offerMetadata: z.ZodObject<{
1527
4059
  sellerContactMethod: z.ZodString;
@@ -1553,21 +4085,22 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1553
4085
  signerAddress?: string;
1554
4086
  template?: string;
1555
4087
  offerData?: {
1556
- agentId?: string | number | bigint;
1557
4088
  disputeResolverId?: string | number | bigint;
4089
+ agentId?: string | number | bigint;
1558
4090
  collectionIndex?: string | number | bigint;
1559
4091
  metadataUri?: string;
1560
4092
  exchangeToken?: string;
4093
+ royaltyInfo?: {
4094
+ recipients?: string[];
4095
+ bps?: (string | number | bigint)[];
4096
+ };
1561
4097
  price?: string | number | bigint;
1562
4098
  sellerDeposit?: string | number | bigint;
1563
4099
  buyerCancelPenalty?: string | number | bigint;
1564
4100
  quantityAvailable?: string | number | bigint;
1565
4101
  priceType?: number;
1566
4102
  metadataHash?: string;
1567
- royaltyInfo?: {
1568
- recipients?: string[];
1569
- bps?: (string | number | bigint)[];
1570
- }[];
4103
+ feeLimit?: string | number | bigint;
1571
4104
  validFromDateInMS?: string | number | bigint;
1572
4105
  validUntilDateInMS?: string | number | bigint;
1573
4106
  voucherRedeemableUntilDateInMS?: string | number | bigint;
@@ -1575,7 +4108,6 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1575
4108
  voucherValidDurationInMS?: string | number | bigint;
1576
4109
  disputePeriodDurationInMS?: string | number | bigint;
1577
4110
  resolutionPeriodDurationInMS?: string | number | bigint;
1578
- feeLimit?: string | number | bigint;
1579
4111
  };
1580
4112
  offerMetadata?: {
1581
4113
  sellerContactMethod?: string;
@@ -1590,21 +4122,22 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1590
4122
  signerAddress?: string;
1591
4123
  template?: string;
1592
4124
  offerData?: {
1593
- agentId?: string | number | bigint;
1594
4125
  disputeResolverId?: string | number | bigint;
4126
+ agentId?: string | number | bigint;
1595
4127
  collectionIndex?: string | number | bigint;
1596
4128
  metadataUri?: string;
1597
4129
  exchangeToken?: string;
4130
+ royaltyInfo?: {
4131
+ recipients?: string[];
4132
+ bps?: (string | number | bigint)[];
4133
+ };
1598
4134
  price?: string | number | bigint;
1599
4135
  sellerDeposit?: string | number | bigint;
1600
4136
  buyerCancelPenalty?: string | number | bigint;
1601
4137
  quantityAvailable?: string | number | bigint;
1602
4138
  priceType?: number;
1603
4139
  metadataHash?: string;
1604
- royaltyInfo?: {
1605
- recipients?: string[];
1606
- bps?: (string | number | bigint)[];
1607
- }[];
4140
+ feeLimit?: string | number | bigint;
1608
4141
  validFromDateInMS?: string | number | bigint;
1609
4142
  validUntilDateInMS?: string | number | bigint;
1610
4143
  voucherRedeemableUntilDateInMS?: string | number | bigint;
@@ -1612,7 +4145,6 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1612
4145
  voucherValidDurationInMS?: string | number | bigint;
1613
4146
  disputePeriodDurationInMS?: string | number | bigint;
1614
4147
  resolutionPeriodDurationInMS?: string | number | bigint;
1615
- feeLimit?: string | number | bigint;
1616
4148
  };
1617
4149
  offerMetadata?: {
1618
4150
  sellerContactMethod?: string;
@@ -1650,4 +4182,5 @@ export declare const storeBundleItemNftMetadataValidation: z.ZodObject<{
1650
4182
  type: z.ZodEnum<["ITEM_NFT"]>;
1651
4183
  }, z.ZodTypeAny, "passthrough">>;
1652
4184
  export { signedTransactionValidation, signedTransactionValidationZod, signTransactionValidation, signTransactionValidationZod, } from "../../common/mcp-server/transactionSigning.js";
4185
+ export { ecdsaSignatureString } from "../../common/mcp-server/validationUtils.js";
1653
4186
  //# sourceMappingURL=validation.d.ts.map