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

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.
@@ -9,34 +9,22 @@ 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<{
12
+ export declare const royaltyInfoValidation: z.ZodObject<{
13
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">;
14
+ bps: z.ZodArray<z.ZodString, "many">;
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  recipients?: string[];
17
- bps?: (string | number | bigint)[];
17
+ bps?: string[];
18
18
  }, {
19
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)[];
20
+ bps?: string[];
33
21
  }>;
34
22
  export declare const createOfferNonMetadataFields: z.ZodObject<{
35
23
  exchangeTokenAddress: z.ZodOptional<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>;
24
+ price: z.ZodString;
25
+ sellerDeposit: z.ZodString;
26
+ agentId: z.ZodOptional<z.ZodString>;
27
+ buyerCancellationPenalty: z.ZodString;
40
28
  quantityAvailable: z.ZodNumber;
41
29
  validFromDateInMS: z.ZodNumber;
42
30
  validUntilDateInMS: z.ZodNumber;
@@ -46,47 +34,35 @@ export declare const createOfferNonMetadataFields: z.ZodObject<{
46
34
  voucherValidDurationInMS: z.ZodNumber;
47
35
  resolutionPeriodDurationInMS: z.ZodNumber;
48
36
  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>>;
37
+ collectionIndex: z.ZodOptional<z.ZodString>;
38
+ feeLimit: z.ZodOptional<z.ZodString>;
51
39
  priceType: z.ZodOptional<z.ZodNumber>;
52
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
40
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
53
41
  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">;
42
+ bps: z.ZodArray<z.ZodString, "many">;
55
43
  }, "strip", z.ZodTypeAny, {
56
44
  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)[];
45
+ bps?: string[];
70
46
  }, {
71
47
  recipients?: string[];
72
- bps?: (string | number | bigint)[];
48
+ bps?: string[];
73
49
  }>>;
74
50
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
75
51
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
76
52
  }, "strip", z.ZodTypeAny, {
77
53
  disputeResolverId?: string;
78
- agentId?: string | number | bigint;
79
- collectionIndex?: string | number | bigint;
54
+ agentId?: string;
55
+ collectionIndex?: string;
80
56
  royaltyInfo?: {
81
57
  recipients?: string[];
82
- bps?: (string | number | bigint)[];
58
+ bps?: string[];
83
59
  };
84
- price?: string | number | bigint;
85
- sellerDeposit?: string | number | bigint;
60
+ price?: string;
61
+ sellerDeposit?: string;
86
62
  quantityAvailable?: number;
87
63
  priceType?: number;
88
64
  creator?: "BUYER" | "SELLER";
89
- feeLimit?: string | number | bigint;
65
+ feeLimit?: string;
90
66
  validFromDateInMS?: number;
91
67
  validUntilDateInMS?: number;
92
68
  voucherRedeemableUntilDateInMS?: number;
@@ -95,22 +71,22 @@ export declare const createOfferNonMetadataFields: z.ZodObject<{
95
71
  disputePeriodDurationInMS?: number;
96
72
  resolutionPeriodDurationInMS?: number;
97
73
  exchangeTokenAddress?: string;
98
- buyerCancellationPenalty?: string | number | bigint;
74
+ buyerCancellationPenalty?: string;
99
75
  drMutualizerAddress?: string;
100
76
  }, {
101
77
  disputeResolverId?: string;
102
- agentId?: string | number | bigint;
103
- collectionIndex?: string | number | bigint;
78
+ agentId?: string;
79
+ collectionIndex?: string;
104
80
  royaltyInfo?: {
105
81
  recipients?: string[];
106
- bps?: (string | number | bigint)[];
82
+ bps?: string[];
107
83
  };
108
- price?: string | number | bigint;
109
- sellerDeposit?: string | number | bigint;
84
+ price?: string;
85
+ sellerDeposit?: string;
110
86
  quantityAvailable?: number;
111
87
  priceType?: number;
112
88
  creator?: "BUYER" | "SELLER";
113
- feeLimit?: string | number | bigint;
89
+ feeLimit?: string;
114
90
  validFromDateInMS?: number;
115
91
  validUntilDateInMS?: number;
116
92
  voucherRedeemableUntilDateInMS?: number;
@@ -119,15 +95,15 @@ export declare const createOfferNonMetadataFields: z.ZodObject<{
119
95
  disputePeriodDurationInMS?: number;
120
96
  resolutionPeriodDurationInMS?: number;
121
97
  exchangeTokenAddress?: string;
122
- buyerCancellationPenalty?: string | number | bigint;
98
+ buyerCancellationPenalty?: string;
123
99
  drMutualizerAddress?: string;
124
100
  }>;
125
- export declare const createOfferValidation: z.ZodEffects<z.ZodObject<{
101
+ export declare const createOfferValidation: z.ZodObject<{
126
102
  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>;
103
+ price: z.ZodString;
104
+ sellerDeposit: z.ZodString;
105
+ agentId: z.ZodOptional<z.ZodString>;
106
+ buyerCancellationPenalty: z.ZodString;
131
107
  quantityAvailable: z.ZodNumber;
132
108
  validFromDateInMS: z.ZodNumber;
133
109
  validUntilDateInMS: z.ZodNumber;
@@ -137,30 +113,18 @@ export declare const createOfferValidation: z.ZodEffects<z.ZodObject<{
137
113
  voucherValidDurationInMS: z.ZodNumber;
138
114
  resolutionPeriodDurationInMS: z.ZodNumber;
139
115
  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>>;
116
+ collectionIndex: z.ZodOptional<z.ZodString>;
117
+ feeLimit: z.ZodOptional<z.ZodString>;
142
118
  priceType: z.ZodOptional<z.ZodNumber>;
143
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
119
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
144
120
  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">;
121
+ bps: z.ZodArray<z.ZodString, "many">;
146
122
  }, "strip", z.ZodTypeAny, {
147
123
  recipients?: string[];
148
- bps?: (string | number | bigint)[];
124
+ bps?: string[];
149
125
  }, {
150
126
  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)[];
127
+ bps?: string[];
164
128
  }>>;
165
129
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
166
130
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -171,104 +135,10 @@ export declare const createOfferValidation: z.ZodEffects<z.ZodObject<{
171
135
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
172
136
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
173
137
  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>;
138
+ price: z.ZodString;
139
+ sellerDeposit: z.ZodString;
140
+ agentId: z.ZodOptional<z.ZodString>;
141
+ buyerCancellationPenalty: z.ZodString;
272
142
  quantityAvailable: z.ZodNumber;
273
143
  validFromDateInMS: z.ZodNumber;
274
144
  validUntilDateInMS: z.ZodNumber;
@@ -278,30 +148,18 @@ export declare const createOfferValidation: z.ZodEffects<z.ZodObject<{
278
148
  voucherValidDurationInMS: z.ZodNumber;
279
149
  resolutionPeriodDurationInMS: z.ZodNumber;
280
150
  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>>;
151
+ collectionIndex: z.ZodOptional<z.ZodString>;
152
+ feeLimit: z.ZodOptional<z.ZodString>;
283
153
  priceType: z.ZodOptional<z.ZodNumber>;
284
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
154
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
285
155
  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">;
156
+ bps: z.ZodArray<z.ZodString, "many">;
287
157
  }, "strip", z.ZodTypeAny, {
288
158
  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)[];
159
+ bps?: string[];
302
160
  }, {
303
161
  recipients?: string[];
304
- bps?: (string | number | bigint)[];
162
+ bps?: string[];
305
163
  }>>;
306
164
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
307
165
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -312,10 +170,10 @@ export declare const createOfferValidation: z.ZodEffects<z.ZodObject<{
312
170
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
313
171
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
314
172
  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>;
173
+ price: z.ZodString;
174
+ sellerDeposit: z.ZodString;
175
+ agentId: z.ZodOptional<z.ZodString>;
176
+ buyerCancellationPenalty: z.ZodString;
319
177
  quantityAvailable: z.ZodNumber;
320
178
  validFromDateInMS: z.ZodNumber;
321
179
  validUntilDateInMS: z.ZodNumber;
@@ -325,30 +183,18 @@ export declare const createOfferValidation: z.ZodEffects<z.ZodObject<{
325
183
  voucherValidDurationInMS: z.ZodNumber;
326
184
  resolutionPeriodDurationInMS: z.ZodNumber;
327
185
  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>>;
186
+ collectionIndex: z.ZodOptional<z.ZodString>;
187
+ feeLimit: z.ZodOptional<z.ZodString>;
330
188
  priceType: z.ZodOptional<z.ZodNumber>;
331
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
189
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
332
190
  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">;
191
+ bps: z.ZodArray<z.ZodString, "many">;
334
192
  }, "strip", z.ZodTypeAny, {
335
193
  recipients?: string[];
336
- bps?: (string | number | bigint)[];
194
+ bps?: string[];
337
195
  }, {
338
196
  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)[];
197
+ bps?: string[];
352
198
  }>>;
353
199
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
354
200
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -372,68 +218,68 @@ export declare const storeProductV1MetadataValidation: z.ZodObject<{
372
218
  type: z.ZodEnum<["PRODUCT_V1"]>;
373
219
  }, z.ZodTypeAny, "passthrough">>;
374
220
  export declare const conditionValidation: z.ZodObject<{
375
- method: z.ZodEffects<z.ZodNumber, number, number>;
376
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
221
+ method: z.ZodNumber;
222
+ tokenType: z.ZodNumber;
377
223
  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>;
224
+ gatingType: z.ZodNumber;
225
+ minTokenId: z.ZodString;
226
+ maxTokenId: z.ZodString;
227
+ threshold: z.ZodString;
228
+ maxCommits: z.ZodString;
383
229
  }, "strip", z.ZodTypeAny, {
384
230
  tokenAddress?: string;
385
231
  tokenType?: number;
386
- maxCommits?: string | number | bigint;
232
+ maxCommits?: string;
387
233
  method?: number;
388
- minTokenId?: string | number | bigint;
389
- threshold?: string | number | bigint;
390
- maxTokenId?: string | number | bigint;
234
+ minTokenId?: string;
235
+ threshold?: string;
236
+ maxTokenId?: string;
391
237
  gatingType?: number;
392
238
  }, {
393
239
  tokenAddress?: string;
394
240
  tokenType?: number;
395
- maxCommits?: string | number | bigint;
241
+ maxCommits?: string;
396
242
  method?: number;
397
- minTokenId?: string | number | bigint;
398
- threshold?: string | number | bigint;
399
- maxTokenId?: string | number | bigint;
243
+ minTokenId?: string;
244
+ threshold?: string;
245
+ maxTokenId?: string;
400
246
  gatingType?: number;
401
247
  }>;
402
- export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObject<{
248
+ export declare const createOfferWithConditionValidation: z.ZodObject<{
403
249
  condition: z.ZodObject<{
404
- method: z.ZodEffects<z.ZodNumber, number, number>;
405
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
250
+ method: z.ZodNumber;
251
+ tokenType: z.ZodNumber;
406
252
  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>;
253
+ gatingType: z.ZodNumber;
254
+ minTokenId: z.ZodString;
255
+ maxTokenId: z.ZodString;
256
+ threshold: z.ZodString;
257
+ maxCommits: z.ZodString;
412
258
  }, "strip", z.ZodTypeAny, {
413
259
  tokenAddress?: string;
414
260
  tokenType?: number;
415
- maxCommits?: string | number | bigint;
261
+ maxCommits?: string;
416
262
  method?: number;
417
- minTokenId?: string | number | bigint;
418
- threshold?: string | number | bigint;
419
- maxTokenId?: string | number | bigint;
263
+ minTokenId?: string;
264
+ threshold?: string;
265
+ maxTokenId?: string;
420
266
  gatingType?: number;
421
267
  }, {
422
268
  tokenAddress?: string;
423
269
  tokenType?: number;
424
- maxCommits?: string | number | bigint;
270
+ maxCommits?: string;
425
271
  method?: number;
426
- minTokenId?: string | number | bigint;
427
- threshold?: string | number | bigint;
428
- maxTokenId?: string | number | bigint;
272
+ minTokenId?: string;
273
+ threshold?: string;
274
+ maxTokenId?: string;
429
275
  gatingType?: number;
430
276
  }>;
431
277
  } & {
432
278
  exchangeTokenAddress: z.ZodOptional<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>;
279
+ price: z.ZodString;
280
+ sellerDeposit: z.ZodString;
281
+ agentId: z.ZodOptional<z.ZodString>;
282
+ buyerCancellationPenalty: z.ZodString;
437
283
  quantityAvailable: z.ZodNumber;
438
284
  validFromDateInMS: z.ZodNumber;
439
285
  validUntilDateInMS: z.ZodNumber;
@@ -443,30 +289,18 @@ export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObjec
443
289
  voucherValidDurationInMS: z.ZodNumber;
444
290
  resolutionPeriodDurationInMS: z.ZodNumber;
445
291
  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>>;
292
+ collectionIndex: z.ZodOptional<z.ZodString>;
293
+ feeLimit: z.ZodOptional<z.ZodString>;
448
294
  priceType: z.ZodOptional<z.ZodNumber>;
449
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
295
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
450
296
  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">;
297
+ bps: z.ZodArray<z.ZodString, "many">;
452
298
  }, "strip", z.ZodTypeAny, {
453
299
  recipients?: string[];
454
- bps?: (string | number | bigint)[];
300
+ bps?: string[];
455
301
  }, {
456
302
  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)[];
303
+ bps?: string[];
470
304
  }>>;
471
305
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
472
306
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -477,39 +311,39 @@ export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObjec
477
311
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
478
312
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
479
313
  condition: z.ZodObject<{
480
- method: z.ZodEffects<z.ZodNumber, number, number>;
481
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
314
+ method: z.ZodNumber;
315
+ tokenType: z.ZodNumber;
482
316
  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>;
317
+ gatingType: z.ZodNumber;
318
+ minTokenId: z.ZodString;
319
+ maxTokenId: z.ZodString;
320
+ threshold: z.ZodString;
321
+ maxCommits: z.ZodString;
488
322
  }, "strip", z.ZodTypeAny, {
489
323
  tokenAddress?: string;
490
324
  tokenType?: number;
491
- maxCommits?: string | number | bigint;
325
+ maxCommits?: string;
492
326
  method?: number;
493
- minTokenId?: string | number | bigint;
494
- threshold?: string | number | bigint;
495
- maxTokenId?: string | number | bigint;
327
+ minTokenId?: string;
328
+ threshold?: string;
329
+ maxTokenId?: string;
496
330
  gatingType?: number;
497
331
  }, {
498
332
  tokenAddress?: string;
499
333
  tokenType?: number;
500
- maxCommits?: string | number | bigint;
334
+ maxCommits?: string;
501
335
  method?: number;
502
- minTokenId?: string | number | bigint;
503
- threshold?: string | number | bigint;
504
- maxTokenId?: string | number | bigint;
336
+ minTokenId?: string;
337
+ threshold?: string;
338
+ maxTokenId?: string;
505
339
  gatingType?: number;
506
340
  }>;
507
341
  } & {
508
342
  exchangeTokenAddress: z.ZodOptional<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>;
343
+ price: z.ZodString;
344
+ sellerDeposit: z.ZodString;
345
+ agentId: z.ZodOptional<z.ZodString>;
346
+ buyerCancellationPenalty: z.ZodString;
513
347
  quantityAvailable: z.ZodNumber;
514
348
  validFromDateInMS: z.ZodNumber;
515
349
  validUntilDateInMS: z.ZodNumber;
@@ -519,30 +353,18 @@ export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObjec
519
353
  voucherValidDurationInMS: z.ZodNumber;
520
354
  resolutionPeriodDurationInMS: z.ZodNumber;
521
355
  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>>;
356
+ collectionIndex: z.ZodOptional<z.ZodString>;
357
+ feeLimit: z.ZodOptional<z.ZodString>;
524
358
  priceType: z.ZodOptional<z.ZodNumber>;
525
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
359
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
526
360
  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">;
361
+ bps: z.ZodArray<z.ZodString, "many">;
528
362
  }, "strip", z.ZodTypeAny, {
529
363
  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)[];
364
+ bps?: string[];
537
365
  }, {
538
366
  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)[];
367
+ bps?: string[];
546
368
  }>>;
547
369
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
548
370
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -553,39 +375,39 @@ export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObjec
553
375
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
554
376
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
555
377
  condition: z.ZodObject<{
556
- method: z.ZodEffects<z.ZodNumber, number, number>;
557
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
378
+ method: z.ZodNumber;
379
+ tokenType: z.ZodNumber;
558
380
  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>;
381
+ gatingType: z.ZodNumber;
382
+ minTokenId: z.ZodString;
383
+ maxTokenId: z.ZodString;
384
+ threshold: z.ZodString;
385
+ maxCommits: z.ZodString;
564
386
  }, "strip", z.ZodTypeAny, {
565
387
  tokenAddress?: string;
566
388
  tokenType?: number;
567
- maxCommits?: string | number | bigint;
389
+ maxCommits?: string;
568
390
  method?: number;
569
- minTokenId?: string | number | bigint;
570
- threshold?: string | number | bigint;
571
- maxTokenId?: string | number | bigint;
391
+ minTokenId?: string;
392
+ threshold?: string;
393
+ maxTokenId?: string;
572
394
  gatingType?: number;
573
395
  }, {
574
396
  tokenAddress?: string;
575
397
  tokenType?: number;
576
- maxCommits?: string | number | bigint;
398
+ maxCommits?: string;
577
399
  method?: number;
578
- minTokenId?: string | number | bigint;
579
- threshold?: string | number | bigint;
580
- maxTokenId?: string | number | bigint;
400
+ minTokenId?: string;
401
+ threshold?: string;
402
+ maxTokenId?: string;
581
403
  gatingType?: number;
582
404
  }>;
583
405
  } & {
584
406
  exchangeTokenAddress: z.ZodOptional<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>;
407
+ price: z.ZodString;
408
+ sellerDeposit: z.ZodString;
409
+ agentId: z.ZodOptional<z.ZodString>;
410
+ buyerCancellationPenalty: z.ZodString;
589
411
  quantityAvailable: z.ZodNumber;
590
412
  validFromDateInMS: z.ZodNumber;
591
413
  validUntilDateInMS: z.ZodNumber;
@@ -595,182 +417,18 @@ export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObjec
595
417
  voucherValidDurationInMS: z.ZodNumber;
596
418
  resolutionPeriodDurationInMS: z.ZodNumber;
597
419
  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>>;
420
+ collectionIndex: z.ZodOptional<z.ZodString>;
421
+ feeLimit: z.ZodOptional<z.ZodString>;
600
422
  priceType: z.ZodOptional<z.ZodNumber>;
601
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
423
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
602
424
  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">;
425
+ bps: z.ZodArray<z.ZodString, "many">;
604
426
  }, "strip", z.ZodTypeAny, {
605
427
  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)[];
428
+ bps?: string[];
619
429
  }, {
620
430
  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)[];
431
+ bps?: string[];
774
432
  }>>;
775
433
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
776
434
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -780,44 +438,44 @@ export declare const createOfferWithConditionValidation: z.ZodEffects<z.ZodObjec
780
438
  configId: z.ZodEffects<z.ZodString, string, string>;
781
439
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
782
440
  }, z.ZodTypeAny, "passthrough">>;
783
- export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
441
+ export declare const voidNonListedOfferValidation: z.ZodObject<{
784
442
  condition: z.ZodOptional<z.ZodObject<{
785
- method: z.ZodEffects<z.ZodNumber, number, number>;
786
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
443
+ method: z.ZodNumber;
444
+ tokenType: z.ZodNumber;
787
445
  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>;
446
+ gatingType: z.ZodNumber;
447
+ minTokenId: z.ZodString;
448
+ maxTokenId: z.ZodString;
449
+ threshold: z.ZodString;
450
+ maxCommits: z.ZodString;
793
451
  }, "strip", z.ZodTypeAny, {
794
452
  tokenAddress?: string;
795
453
  tokenType?: number;
796
- maxCommits?: string | number | bigint;
454
+ maxCommits?: string;
797
455
  method?: number;
798
- minTokenId?: string | number | bigint;
799
- threshold?: string | number | bigint;
800
- maxTokenId?: string | number | bigint;
456
+ minTokenId?: string;
457
+ threshold?: string;
458
+ maxTokenId?: string;
801
459
  gatingType?: number;
802
460
  }, {
803
461
  tokenAddress?: string;
804
462
  tokenType?: number;
805
- maxCommits?: string | number | bigint;
463
+ maxCommits?: string;
806
464
  method?: number;
807
- minTokenId?: string | number | bigint;
808
- threshold?: string | number | bigint;
809
- maxTokenId?: string | number | bigint;
465
+ minTokenId?: string;
466
+ threshold?: string;
467
+ maxTokenId?: string;
810
468
  gatingType?: number;
811
469
  }>>;
812
470
  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>;
471
+ sellerId: z.ZodString;
472
+ buyerId: z.ZodString;
815
473
  } & {
816
474
  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>;
475
+ price: z.ZodString;
476
+ sellerDeposit: z.ZodString;
477
+ agentId: z.ZodOptional<z.ZodString>;
478
+ buyerCancellationPenalty: z.ZodString;
821
479
  quantityAvailable: z.ZodNumber;
822
480
  validFromDateInMS: z.ZodNumber;
823
481
  validUntilDateInMS: z.ZodNumber;
@@ -827,30 +485,18 @@ export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
827
485
  voucherValidDurationInMS: z.ZodNumber;
828
486
  resolutionPeriodDurationInMS: z.ZodNumber;
829
487
  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>>;
488
+ collectionIndex: z.ZodOptional<z.ZodString>;
489
+ feeLimit: z.ZodOptional<z.ZodString>;
832
490
  priceType: z.ZodOptional<z.ZodNumber>;
833
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
491
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
834
492
  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">;
493
+ bps: z.ZodArray<z.ZodString, "many">;
836
494
  }, "strip", z.ZodTypeAny, {
837
495
  recipients?: string[];
838
- bps?: (string | number | bigint)[];
496
+ bps?: string[];
839
497
  }, {
840
498
  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)[];
499
+ bps?: string[];
854
500
  }>>;
855
501
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
856
502
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -861,121 +507,42 @@ export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
861
507
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
862
508
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
863
509
  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>;
510
+ method: z.ZodNumber;
511
+ tokenType: z.ZodNumber;
945
512
  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>;
513
+ gatingType: z.ZodNumber;
514
+ minTokenId: z.ZodString;
515
+ maxTokenId: z.ZodString;
516
+ threshold: z.ZodString;
517
+ maxCommits: z.ZodString;
951
518
  }, "strip", z.ZodTypeAny, {
952
519
  tokenAddress?: string;
953
520
  tokenType?: number;
954
- maxCommits?: string | number | bigint;
521
+ maxCommits?: string;
955
522
  method?: number;
956
- minTokenId?: string | number | bigint;
957
- threshold?: string | number | bigint;
958
- maxTokenId?: string | number | bigint;
523
+ minTokenId?: string;
524
+ threshold?: string;
525
+ maxTokenId?: string;
959
526
  gatingType?: number;
960
527
  }, {
961
528
  tokenAddress?: string;
962
529
  tokenType?: number;
963
- maxCommits?: string | number | bigint;
530
+ maxCommits?: string;
964
531
  method?: number;
965
- minTokenId?: string | number | bigint;
966
- threshold?: string | number | bigint;
967
- maxTokenId?: string | number | bigint;
532
+ minTokenId?: string;
533
+ threshold?: string;
534
+ maxTokenId?: string;
968
535
  gatingType?: number;
969
536
  }>>;
970
537
  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>;
538
+ sellerId: z.ZodString;
539
+ buyerId: z.ZodString;
973
540
  } & {
974
541
  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>;
542
+ price: z.ZodString;
543
+ sellerDeposit: z.ZodString;
544
+ agentId: z.ZodOptional<z.ZodString>;
545
+ buyerCancellationPenalty: z.ZodString;
979
546
  quantityAvailable: z.ZodNumber;
980
547
  validFromDateInMS: z.ZodNumber;
981
548
  validUntilDateInMS: z.ZodNumber;
@@ -985,109 +552,18 @@ export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
985
552
  voucherValidDurationInMS: z.ZodNumber;
986
553
  resolutionPeriodDurationInMS: z.ZodNumber;
987
554
  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>>;
555
+ collectionIndex: z.ZodOptional<z.ZodString>;
556
+ feeLimit: z.ZodOptional<z.ZodString>;
990
557
  priceType: z.ZodOptional<z.ZodNumber>;
991
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
558
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
992
559
  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">;
560
+ bps: z.ZodArray<z.ZodString, "many">;
994
561
  }, "strip", z.ZodTypeAny, {
995
562
  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)[];
563
+ bps?: string[];
1009
564
  }, {
1010
565
  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)[];
566
+ bps?: string[];
1091
567
  }>>;
1092
568
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1093
569
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -1098,42 +574,42 @@ export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
1098
574
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1099
575
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1100
576
  condition: z.ZodOptional<z.ZodObject<{
1101
- method: z.ZodEffects<z.ZodNumber, number, number>;
1102
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
577
+ method: z.ZodNumber;
578
+ tokenType: z.ZodNumber;
1103
579
  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>;
580
+ gatingType: z.ZodNumber;
581
+ minTokenId: z.ZodString;
582
+ maxTokenId: z.ZodString;
583
+ threshold: z.ZodString;
584
+ maxCommits: z.ZodString;
1109
585
  }, "strip", z.ZodTypeAny, {
1110
586
  tokenAddress?: string;
1111
587
  tokenType?: number;
1112
- maxCommits?: string | number | bigint;
588
+ maxCommits?: string;
1113
589
  method?: number;
1114
- minTokenId?: string | number | bigint;
1115
- threshold?: string | number | bigint;
1116
- maxTokenId?: string | number | bigint;
590
+ minTokenId?: string;
591
+ threshold?: string;
592
+ maxTokenId?: string;
1117
593
  gatingType?: number;
1118
594
  }, {
1119
595
  tokenAddress?: string;
1120
596
  tokenType?: number;
1121
- maxCommits?: string | number | bigint;
597
+ maxCommits?: string;
1122
598
  method?: number;
1123
- minTokenId?: string | number | bigint;
1124
- threshold?: string | number | bigint;
1125
- maxTokenId?: string | number | bigint;
599
+ minTokenId?: string;
600
+ threshold?: string;
601
+ maxTokenId?: string;
1126
602
  gatingType?: number;
1127
603
  }>>;
1128
604
  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>;
605
+ sellerId: z.ZodString;
606
+ buyerId: z.ZodString;
1131
607
  } & {
1132
608
  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>;
609
+ price: z.ZodString;
610
+ sellerDeposit: z.ZodString;
611
+ agentId: z.ZodOptional<z.ZodString>;
612
+ buyerCancellationPenalty: z.ZodString;
1137
613
  quantityAvailable: z.ZodNumber;
1138
614
  validFromDateInMS: z.ZodNumber;
1139
615
  validUntilDateInMS: z.ZodNumber;
@@ -1143,30 +619,18 @@ export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
1143
619
  voucherValidDurationInMS: z.ZodNumber;
1144
620
  resolutionPeriodDurationInMS: z.ZodNumber;
1145
621
  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>>;
622
+ collectionIndex: z.ZodOptional<z.ZodString>;
623
+ feeLimit: z.ZodOptional<z.ZodString>;
1148
624
  priceType: z.ZodOptional<z.ZodNumber>;
1149
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
625
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
1150
626
  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">;
627
+ bps: z.ZodArray<z.ZodString, "many">;
1152
628
  }, "strip", z.ZodTypeAny, {
1153
629
  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)[];
630
+ bps?: string[];
1161
631
  }, {
1162
632
  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)[];
633
+ bps?: string[];
1170
634
  }>>;
1171
635
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1172
636
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -1177,12 +641,12 @@ export declare const voidNonListedOfferValidation: z.ZodEffects<z.ZodObject<{
1177
641
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1178
642
  }, z.ZodTypeAny, "passthrough">>;
1179
643
  export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1180
- fullOffers: z.ZodArray<z.ZodEffects<z.ZodObject<{
644
+ fullOffers: z.ZodArray<z.ZodObject<{
1181
645
  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>;
646
+ price: z.ZodString;
647
+ sellerDeposit: z.ZodString;
648
+ agentId: z.ZodOptional<z.ZodString>;
649
+ buyerCancellationPenalty: z.ZodString;
1186
650
  quantityAvailable: z.ZodNumber;
1187
651
  validFromDateInMS: z.ZodNumber;
1188
652
  validUntilDateInMS: z.ZodNumber;
@@ -1192,79 +656,67 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1192
656
  voucherValidDurationInMS: z.ZodNumber;
1193
657
  resolutionPeriodDurationInMS: z.ZodNumber;
1194
658
  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>>;
659
+ collectionIndex: z.ZodOptional<z.ZodString>;
660
+ feeLimit: z.ZodOptional<z.ZodString>;
1197
661
  priceType: z.ZodOptional<z.ZodNumber>;
1198
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
662
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
1199
663
  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">;
664
+ bps: z.ZodArray<z.ZodString, "many">;
1201
665
  }, "strip", z.ZodTypeAny, {
1202
666
  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)[];
667
+ bps?: string[];
1216
668
  }, {
1217
669
  recipients?: string[];
1218
- bps?: (string | number | bigint)[];
670
+ bps?: string[];
1219
671
  }>>;
1220
672
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1221
673
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1222
674
  metadataUri: z.ZodString;
1223
675
  metadataHash: z.ZodString;
1224
676
  condition: z.ZodOptional<z.ZodObject<{
1225
- method: z.ZodEffects<z.ZodNumber, number, number>;
1226
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
677
+ method: z.ZodNumber;
678
+ tokenType: z.ZodNumber;
1227
679
  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>;
680
+ gatingType: z.ZodNumber;
681
+ minTokenId: z.ZodString;
682
+ maxTokenId: z.ZodString;
683
+ threshold: z.ZodString;
684
+ maxCommits: z.ZodString;
1233
685
  }, "strip", z.ZodTypeAny, {
1234
686
  tokenAddress?: string;
1235
687
  tokenType?: number;
1236
- maxCommits?: string | number | bigint;
688
+ maxCommits?: string;
1237
689
  method?: number;
1238
- minTokenId?: string | number | bigint;
1239
- threshold?: string | number | bigint;
1240
- maxTokenId?: string | number | bigint;
690
+ minTokenId?: string;
691
+ threshold?: string;
692
+ maxTokenId?: string;
1241
693
  gatingType?: number;
1242
694
  }, {
1243
695
  tokenAddress?: string;
1244
696
  tokenType?: number;
1245
- maxCommits?: string | number | bigint;
697
+ maxCommits?: string;
1246
698
  method?: number;
1247
- minTokenId?: string | number | bigint;
1248
- threshold?: string | number | bigint;
1249
- maxTokenId?: string | number | bigint;
699
+ minTokenId?: string;
700
+ threshold?: string;
701
+ maxTokenId?: string;
1250
702
  gatingType?: number;
1251
703
  }>>;
1252
704
  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>;
705
+ sellerId: z.ZodString;
706
+ buyerId: z.ZodString;
1255
707
  }, "strip", z.ZodTypeAny, {
1256
- sellerId?: string | number | bigint;
708
+ sellerId?: string;
1257
709
  disputeResolverId?: string;
1258
- agentId?: string | number | bigint;
1259
- buyerId?: string | number | bigint;
1260
- collectionIndex?: string | number | bigint;
710
+ agentId?: string;
711
+ buyerId?: string;
712
+ collectionIndex?: string;
1261
713
  metadataUri?: string;
1262
714
  royaltyInfo?: {
1263
715
  recipients?: string[];
1264
- bps?: (string | number | bigint)[];
716
+ bps?: string[];
1265
717
  };
1266
- price?: string | number | bigint;
1267
- sellerDeposit?: string | number | bigint;
718
+ price?: string;
719
+ sellerDeposit?: string;
1268
720
  quantityAvailable?: number;
1269
721
  priceType?: number;
1270
722
  creator?: "BUYER" | "SELLER";
@@ -1272,14 +724,14 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1272
724
  condition?: {
1273
725
  tokenAddress?: string;
1274
726
  tokenType?: number;
1275
- maxCommits?: string | number | bigint;
727
+ maxCommits?: string;
1276
728
  method?: number;
1277
- minTokenId?: string | number | bigint;
1278
- threshold?: string | number | bigint;
1279
- maxTokenId?: string | number | bigint;
729
+ minTokenId?: string;
730
+ threshold?: string;
731
+ maxTokenId?: string;
1280
732
  gatingType?: number;
1281
733
  };
1282
- feeLimit?: string | number | bigint;
734
+ feeLimit?: string;
1283
735
  useDepositedFunds?: boolean;
1284
736
  validFromDateInMS?: number;
1285
737
  validUntilDateInMS?: number;
@@ -1289,21 +741,21 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1289
741
  disputePeriodDurationInMS?: number;
1290
742
  resolutionPeriodDurationInMS?: number;
1291
743
  exchangeTokenAddress?: string;
1292
- buyerCancellationPenalty?: string | number | bigint;
744
+ buyerCancellationPenalty?: string;
1293
745
  drMutualizerAddress?: string;
1294
746
  }, {
1295
- sellerId?: string | number | bigint;
747
+ sellerId?: string;
1296
748
  disputeResolverId?: string;
1297
- agentId?: string | number | bigint;
1298
- buyerId?: string | number | bigint;
1299
- collectionIndex?: string | number | bigint;
749
+ agentId?: string;
750
+ buyerId?: string;
751
+ collectionIndex?: string;
1300
752
  metadataUri?: string;
1301
753
  royaltyInfo?: {
1302
754
  recipients?: string[];
1303
- bps?: (string | number | bigint)[];
755
+ bps?: string[];
1304
756
  };
1305
- price?: string | number | bigint;
1306
- sellerDeposit?: string | number | bigint;
757
+ price?: string;
758
+ sellerDeposit?: string;
1307
759
  quantityAvailable?: number;
1308
760
  priceType?: number;
1309
761
  creator?: "BUYER" | "SELLER";
@@ -1311,14 +763,14 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1311
763
  condition?: {
1312
764
  tokenAddress?: string;
1313
765
  tokenType?: number;
1314
- maxCommits?: string | number | bigint;
766
+ maxCommits?: string;
1315
767
  method?: number;
1316
- minTokenId?: string | number | bigint;
1317
- threshold?: string | number | bigint;
1318
- maxTokenId?: string | number | bigint;
768
+ minTokenId?: string;
769
+ threshold?: string;
770
+ maxTokenId?: string;
1319
771
  gatingType?: number;
1320
772
  };
1321
- feeLimit?: string | number | bigint;
773
+ feeLimit?: string;
1322
774
  useDepositedFunds?: boolean;
1323
775
  validFromDateInMS?: number;
1324
776
  validUntilDateInMS?: number;
@@ -1328,97 +780,19 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1328
780
  disputePeriodDurationInMS?: number;
1329
781
  resolutionPeriodDurationInMS?: number;
1330
782
  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;
783
+ buyerCancellationPenalty?: string;
1410
784
  drMutualizerAddress?: string;
1411
785
  }>, "atleastone">;
1412
786
  } & {
1413
787
  configId: z.ZodEffects<z.ZodString, string, string>;
1414
788
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1415
789
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1416
- fullOffers: z.ZodArray<z.ZodEffects<z.ZodObject<{
790
+ fullOffers: z.ZodArray<z.ZodObject<{
1417
791
  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>;
792
+ price: z.ZodString;
793
+ sellerDeposit: z.ZodString;
794
+ agentId: z.ZodOptional<z.ZodString>;
795
+ buyerCancellationPenalty: z.ZodString;
1422
796
  quantityAvailable: z.ZodNumber;
1423
797
  validFromDateInMS: z.ZodNumber;
1424
798
  validUntilDateInMS: z.ZodNumber;
@@ -1428,79 +802,67 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1428
802
  voucherValidDurationInMS: z.ZodNumber;
1429
803
  resolutionPeriodDurationInMS: z.ZodNumber;
1430
804
  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>>;
805
+ collectionIndex: z.ZodOptional<z.ZodString>;
806
+ feeLimit: z.ZodOptional<z.ZodString>;
1433
807
  priceType: z.ZodOptional<z.ZodNumber>;
1434
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
808
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
1435
809
  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">;
810
+ bps: z.ZodArray<z.ZodString, "many">;
1437
811
  }, "strip", z.ZodTypeAny, {
1438
812
  recipients?: string[];
1439
- bps?: (string | number | bigint)[];
813
+ bps?: string[];
1440
814
  }, {
1441
815
  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)[];
816
+ bps?: string[];
1455
817
  }>>;
1456
818
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1457
819
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1458
820
  metadataUri: z.ZodString;
1459
821
  metadataHash: z.ZodString;
1460
822
  condition: z.ZodOptional<z.ZodObject<{
1461
- method: z.ZodEffects<z.ZodNumber, number, number>;
1462
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
823
+ method: z.ZodNumber;
824
+ tokenType: z.ZodNumber;
1463
825
  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>;
826
+ gatingType: z.ZodNumber;
827
+ minTokenId: z.ZodString;
828
+ maxTokenId: z.ZodString;
829
+ threshold: z.ZodString;
830
+ maxCommits: z.ZodString;
1469
831
  }, "strip", z.ZodTypeAny, {
1470
832
  tokenAddress?: string;
1471
833
  tokenType?: number;
1472
- maxCommits?: string | number | bigint;
834
+ maxCommits?: string;
1473
835
  method?: number;
1474
- minTokenId?: string | number | bigint;
1475
- threshold?: string | number | bigint;
1476
- maxTokenId?: string | number | bigint;
836
+ minTokenId?: string;
837
+ threshold?: string;
838
+ maxTokenId?: string;
1477
839
  gatingType?: number;
1478
840
  }, {
1479
841
  tokenAddress?: string;
1480
842
  tokenType?: number;
1481
- maxCommits?: string | number | bigint;
843
+ maxCommits?: string;
1482
844
  method?: number;
1483
- minTokenId?: string | number | bigint;
1484
- threshold?: string | number | bigint;
1485
- maxTokenId?: string | number | bigint;
845
+ minTokenId?: string;
846
+ threshold?: string;
847
+ maxTokenId?: string;
1486
848
  gatingType?: number;
1487
849
  }>>;
1488
850
  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>;
851
+ sellerId: z.ZodString;
852
+ buyerId: z.ZodString;
1491
853
  }, "strip", z.ZodTypeAny, {
1492
- sellerId?: string | number | bigint;
854
+ sellerId?: string;
1493
855
  disputeResolverId?: string;
1494
- agentId?: string | number | bigint;
1495
- buyerId?: string | number | bigint;
1496
- collectionIndex?: string | number | bigint;
856
+ agentId?: string;
857
+ buyerId?: string;
858
+ collectionIndex?: string;
1497
859
  metadataUri?: string;
1498
860
  royaltyInfo?: {
1499
861
  recipients?: string[];
1500
- bps?: (string | number | bigint)[];
862
+ bps?: string[];
1501
863
  };
1502
- price?: string | number | bigint;
1503
- sellerDeposit?: string | number | bigint;
864
+ price?: string;
865
+ sellerDeposit?: string;
1504
866
  quantityAvailable?: number;
1505
867
  priceType?: number;
1506
868
  creator?: "BUYER" | "SELLER";
@@ -1508,14 +870,14 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1508
870
  condition?: {
1509
871
  tokenAddress?: string;
1510
872
  tokenType?: number;
1511
- maxCommits?: string | number | bigint;
873
+ maxCommits?: string;
1512
874
  method?: number;
1513
- minTokenId?: string | number | bigint;
1514
- threshold?: string | number | bigint;
1515
- maxTokenId?: string | number | bigint;
875
+ minTokenId?: string;
876
+ threshold?: string;
877
+ maxTokenId?: string;
1516
878
  gatingType?: number;
1517
879
  };
1518
- feeLimit?: string | number | bigint;
880
+ feeLimit?: string;
1519
881
  useDepositedFunds?: boolean;
1520
882
  validFromDateInMS?: number;
1521
883
  validUntilDateInMS?: number;
@@ -1525,21 +887,21 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1525
887
  disputePeriodDurationInMS?: number;
1526
888
  resolutionPeriodDurationInMS?: number;
1527
889
  exchangeTokenAddress?: string;
1528
- buyerCancellationPenalty?: string | number | bigint;
890
+ buyerCancellationPenalty?: string;
1529
891
  drMutualizerAddress?: string;
1530
892
  }, {
1531
- sellerId?: string | number | bigint;
893
+ sellerId?: string;
1532
894
  disputeResolverId?: string;
1533
- agentId?: string | number | bigint;
1534
- buyerId?: string | number | bigint;
1535
- collectionIndex?: string | number | bigint;
895
+ agentId?: string;
896
+ buyerId?: string;
897
+ collectionIndex?: string;
1536
898
  metadataUri?: string;
1537
899
  royaltyInfo?: {
1538
900
  recipients?: string[];
1539
- bps?: (string | number | bigint)[];
901
+ bps?: string[];
1540
902
  };
1541
- price?: string | number | bigint;
1542
- sellerDeposit?: string | number | bigint;
903
+ price?: string;
904
+ sellerDeposit?: string;
1543
905
  quantityAvailable?: number;
1544
906
  priceType?: number;
1545
907
  creator?: "BUYER" | "SELLER";
@@ -1547,14 +909,14 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1547
909
  condition?: {
1548
910
  tokenAddress?: string;
1549
911
  tokenType?: number;
1550
- maxCommits?: string | number | bigint;
912
+ maxCommits?: string;
1551
913
  method?: number;
1552
- minTokenId?: string | number | bigint;
1553
- threshold?: string | number | bigint;
1554
- maxTokenId?: string | number | bigint;
914
+ minTokenId?: string;
915
+ threshold?: string;
916
+ maxTokenId?: string;
1555
917
  gatingType?: number;
1556
918
  };
1557
- feeLimit?: string | number | bigint;
919
+ feeLimit?: string;
1558
920
  useDepositedFunds?: boolean;
1559
921
  validFromDateInMS?: number;
1560
922
  validUntilDateInMS?: number;
@@ -1564,97 +926,19 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1564
926
  disputePeriodDurationInMS?: number;
1565
927
  resolutionPeriodDurationInMS?: number;
1566
928
  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;
929
+ buyerCancellationPenalty?: string;
1646
930
  drMutualizerAddress?: string;
1647
931
  }>, "atleastone">;
1648
932
  } & {
1649
933
  configId: z.ZodEffects<z.ZodString, string, string>;
1650
934
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1651
935
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1652
- fullOffers: z.ZodArray<z.ZodEffects<z.ZodObject<{
936
+ fullOffers: z.ZodArray<z.ZodObject<{
1653
937
  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>;
938
+ price: z.ZodString;
939
+ sellerDeposit: z.ZodString;
940
+ agentId: z.ZodOptional<z.ZodString>;
941
+ buyerCancellationPenalty: z.ZodString;
1658
942
  quantityAvailable: z.ZodNumber;
1659
943
  validFromDateInMS: z.ZodNumber;
1660
944
  validUntilDateInMS: z.ZodNumber;
@@ -1664,157 +948,67 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1664
948
  voucherValidDurationInMS: z.ZodNumber;
1665
949
  resolutionPeriodDurationInMS: z.ZodNumber;
1666
950
  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>>;
951
+ collectionIndex: z.ZodOptional<z.ZodString>;
952
+ feeLimit: z.ZodOptional<z.ZodString>;
1669
953
  priceType: z.ZodOptional<z.ZodNumber>;
1670
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
954
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
1671
955
  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">;
956
+ bps: z.ZodArray<z.ZodString, "many">;
1673
957
  }, "strip", z.ZodTypeAny, {
1674
958
  recipients?: string[];
1675
- bps?: (string | number | bigint)[];
959
+ bps?: string[];
1676
960
  }, {
1677
961
  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)[];
962
+ bps?: string[];
1691
963
  }>>;
1692
964
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1693
965
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1694
966
  metadataUri: z.ZodString;
1695
967
  metadataHash: z.ZodString;
1696
968
  condition: z.ZodOptional<z.ZodObject<{
1697
- method: z.ZodEffects<z.ZodNumber, number, number>;
1698
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
969
+ method: z.ZodNumber;
970
+ tokenType: z.ZodNumber;
1699
971
  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>;
972
+ gatingType: z.ZodNumber;
973
+ minTokenId: z.ZodString;
974
+ maxTokenId: z.ZodString;
975
+ threshold: z.ZodString;
976
+ maxCommits: z.ZodString;
1705
977
  }, "strip", z.ZodTypeAny, {
1706
978
  tokenAddress?: string;
1707
979
  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;
980
+ maxCommits?: string;
1787
981
  method?: number;
1788
- minTokenId?: string | number | bigint;
1789
- threshold?: string | number | bigint;
1790
- maxTokenId?: string | number | bigint;
982
+ minTokenId?: string;
983
+ threshold?: string;
984
+ maxTokenId?: string;
1791
985
  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;
986
+ }, {
987
+ tokenAddress?: string;
988
+ tokenType?: number;
989
+ maxCommits?: string;
990
+ method?: number;
991
+ minTokenId?: string;
992
+ threshold?: string;
993
+ maxTokenId?: string;
994
+ gatingType?: number;
995
+ }>>;
996
+ useDepositedFunds: z.ZodOptional<z.ZodBoolean>;
997
+ sellerId: z.ZodString;
998
+ buyerId: z.ZodString;
999
+ }, "strip", z.ZodTypeAny, {
1000
+ sellerId?: string;
1807
1001
  disputeResolverId?: string;
1808
- agentId?: string | number | bigint;
1809
- buyerId?: string | number | bigint;
1810
- collectionIndex?: string | number | bigint;
1002
+ agentId?: string;
1003
+ buyerId?: string;
1004
+ collectionIndex?: string;
1811
1005
  metadataUri?: string;
1812
1006
  royaltyInfo?: {
1813
1007
  recipients?: string[];
1814
- bps?: (string | number | bigint)[];
1008
+ bps?: string[];
1815
1009
  };
1816
- price?: string | number | bigint;
1817
- sellerDeposit?: string | number | bigint;
1010
+ price?: string;
1011
+ sellerDeposit?: string;
1818
1012
  quantityAvailable?: number;
1819
1013
  priceType?: number;
1820
1014
  creator?: "BUYER" | "SELLER";
@@ -1822,14 +1016,14 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1822
1016
  condition?: {
1823
1017
  tokenAddress?: string;
1824
1018
  tokenType?: number;
1825
- maxCommits?: string | number | bigint;
1019
+ maxCommits?: string;
1826
1020
  method?: number;
1827
- minTokenId?: string | number | bigint;
1828
- threshold?: string | number | bigint;
1829
- maxTokenId?: string | number | bigint;
1021
+ minTokenId?: string;
1022
+ threshold?: string;
1023
+ maxTokenId?: string;
1830
1024
  gatingType?: number;
1831
1025
  };
1832
- feeLimit?: string | number | bigint;
1026
+ feeLimit?: string;
1833
1027
  useDepositedFunds?: boolean;
1834
1028
  validFromDateInMS?: number;
1835
1029
  validUntilDateInMS?: number;
@@ -1839,21 +1033,21 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1839
1033
  disputePeriodDurationInMS?: number;
1840
1034
  resolutionPeriodDurationInMS?: number;
1841
1035
  exchangeTokenAddress?: string;
1842
- buyerCancellationPenalty?: string | number | bigint;
1036
+ buyerCancellationPenalty?: string;
1843
1037
  drMutualizerAddress?: string;
1844
1038
  }, {
1845
- sellerId?: string | number | bigint;
1039
+ sellerId?: string;
1846
1040
  disputeResolverId?: string;
1847
- agentId?: string | number | bigint;
1848
- buyerId?: string | number | bigint;
1849
- collectionIndex?: string | number | bigint;
1041
+ agentId?: string;
1042
+ buyerId?: string;
1043
+ collectionIndex?: string;
1850
1044
  metadataUri?: string;
1851
1045
  royaltyInfo?: {
1852
1046
  recipients?: string[];
1853
- bps?: (string | number | bigint)[];
1047
+ bps?: string[];
1854
1048
  };
1855
- price?: string | number | bigint;
1856
- sellerDeposit?: string | number | bigint;
1049
+ price?: string;
1050
+ sellerDeposit?: string;
1857
1051
  quantityAvailable?: number;
1858
1052
  priceType?: number;
1859
1053
  creator?: "BUYER" | "SELLER";
@@ -1861,14 +1055,14 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1861
1055
  condition?: {
1862
1056
  tokenAddress?: string;
1863
1057
  tokenType?: number;
1864
- maxCommits?: string | number | bigint;
1058
+ maxCommits?: string;
1865
1059
  method?: number;
1866
- minTokenId?: string | number | bigint;
1867
- threshold?: string | number | bigint;
1868
- maxTokenId?: string | number | bigint;
1060
+ minTokenId?: string;
1061
+ threshold?: string;
1062
+ maxTokenId?: string;
1869
1063
  gatingType?: number;
1870
1064
  };
1871
- feeLimit?: string | number | bigint;
1065
+ feeLimit?: string;
1872
1066
  useDepositedFunds?: boolean;
1873
1067
  validFromDateInMS?: number;
1874
1068
  validUntilDateInMS?: number;
@@ -1878,54 +1072,54 @@ export declare const voidNonListedOfferBatchValidation: z.ZodObject<{
1878
1072
  disputePeriodDurationInMS?: number;
1879
1073
  resolutionPeriodDurationInMS?: number;
1880
1074
  exchangeTokenAddress?: string;
1881
- buyerCancellationPenalty?: string | number | bigint;
1075
+ buyerCancellationPenalty?: string;
1882
1076
  drMutualizerAddress?: string;
1883
1077
  }>, "atleastone">;
1884
1078
  } & {
1885
1079
  configId: z.ZodEffects<z.ZodString, string, string>;
1886
1080
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1887
1081
  }, z.ZodTypeAny, "passthrough">>;
1888
- export declare const fullOfferUnsignedValidation: z.ZodEffects<z.ZodObject<{
1082
+ export declare const fullOfferUnsignedValidation: z.ZodObject<{
1889
1083
  offerCreator: z.ZodEffects<z.ZodString, string, string>;
1890
1084
  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>>;
1085
+ conditionalTokenId: z.ZodOptional<z.ZodString>;
1892
1086
  } & {
1893
1087
  condition: z.ZodOptional<z.ZodObject<{
1894
- method: z.ZodEffects<z.ZodNumber, number, number>;
1895
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1088
+ method: z.ZodNumber;
1089
+ tokenType: z.ZodNumber;
1896
1090
  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>;
1091
+ gatingType: z.ZodNumber;
1092
+ minTokenId: z.ZodString;
1093
+ maxTokenId: z.ZodString;
1094
+ threshold: z.ZodString;
1095
+ maxCommits: z.ZodString;
1902
1096
  }, "strip", z.ZodTypeAny, {
1903
1097
  tokenAddress?: string;
1904
1098
  tokenType?: number;
1905
- maxCommits?: string | number | bigint;
1099
+ maxCommits?: string;
1906
1100
  method?: number;
1907
- minTokenId?: string | number | bigint;
1908
- threshold?: string | number | bigint;
1909
- maxTokenId?: string | number | bigint;
1101
+ minTokenId?: string;
1102
+ threshold?: string;
1103
+ maxTokenId?: string;
1910
1104
  gatingType?: number;
1911
1105
  }, {
1912
1106
  tokenAddress?: string;
1913
1107
  tokenType?: number;
1914
- maxCommits?: string | number | bigint;
1108
+ maxCommits?: string;
1915
1109
  method?: number;
1916
- minTokenId?: string | number | bigint;
1917
- threshold?: string | number | bigint;
1918
- maxTokenId?: string | number | bigint;
1110
+ minTokenId?: string;
1111
+ threshold?: string;
1112
+ maxTokenId?: string;
1919
1113
  gatingType?: number;
1920
1114
  }>>;
1921
1115
  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>;
1116
+ sellerId: z.ZodString;
1117
+ buyerId: z.ZodString;
1924
1118
  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>;
1119
+ price: z.ZodString;
1120
+ sellerDeposit: z.ZodString;
1121
+ agentId: z.ZodOptional<z.ZodString>;
1122
+ buyerCancellationPenalty: z.ZodString;
1929
1123
  quantityAvailable: z.ZodNumber;
1930
1124
  validFromDateInMS: z.ZodNumber;
1931
1125
  validUntilDateInMS: z.ZodNumber;
@@ -1935,30 +1129,18 @@ export declare const fullOfferUnsignedValidation: z.ZodEffects<z.ZodObject<{
1935
1129
  voucherValidDurationInMS: z.ZodNumber;
1936
1130
  resolutionPeriodDurationInMS: z.ZodNumber;
1937
1131
  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>>;
1132
+ collectionIndex: z.ZodOptional<z.ZodString>;
1133
+ feeLimit: z.ZodOptional<z.ZodString>;
1940
1134
  priceType: z.ZodOptional<z.ZodNumber>;
1941
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1135
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
1942
1136
  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">;
1137
+ bps: z.ZodArray<z.ZodString, "many">;
1944
1138
  }, "strip", z.ZodTypeAny, {
1945
1139
  recipients?: string[];
1946
- bps?: (string | number | bigint)[];
1140
+ bps?: string[];
1947
1141
  }, {
1948
1142
  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)[];
1143
+ bps?: string[];
1962
1144
  }>>;
1963
1145
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
1964
1146
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -1969,206 +1151,44 @@ export declare const fullOfferUnsignedValidation: z.ZodEffects<z.ZodObject<{
1969
1151
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1970
1152
  offerCreator: z.ZodEffects<z.ZodString, string, string>;
1971
1153
  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>>;
2046
- metadataUri: z.ZodString;
2047
- metadataHash: z.ZodString;
2048
- configId: z.ZodEffects<z.ZodString, string, string>;
2049
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
2050
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
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<{
2056
- method: z.ZodEffects<z.ZodNumber, number, number>;
2057
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
2058
- tokenAddress: z.ZodEffects<z.ZodString, string, string>;
2059
- gatingType: z.ZodEffects<z.ZodNumber, number, number>;
2060
- minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2061
- maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2062
- threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2063
- maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2064
- }, "strip", z.ZodTypeAny, {
2065
- tokenAddress?: string;
2066
- tokenType?: number;
2067
- maxCommits?: string | number | bigint;
2068
- method?: number;
2069
- minTokenId?: string | number | bigint;
2070
- threshold?: string | number | bigint;
2071
- maxTokenId?: string | number | bigint;
2072
- gatingType?: number;
2073
- }, {
2074
- tokenAddress?: string;
2075
- tokenType?: number;
2076
- maxCommits?: string | number | bigint;
2077
- method?: number;
2078
- minTokenId?: string | number | bigint;
2079
- threshold?: string | number | bigint;
2080
- maxTokenId?: string | number | bigint;
2081
- gatingType?: number;
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>;
2086
- exchangeTokenAddress: z.ZodOptional<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>;
2091
- quantityAvailable: z.ZodNumber;
2092
- validFromDateInMS: z.ZodNumber;
2093
- validUntilDateInMS: z.ZodNumber;
2094
- voucherRedeemableFromDateInMS: z.ZodNumber;
2095
- voucherRedeemableUntilDateInMS: z.ZodNumber;
2096
- disputePeriodDurationInMS: z.ZodNumber;
2097
- voucherValidDurationInMS: z.ZodNumber;
2098
- resolutionPeriodDurationInMS: z.ZodNumber;
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>>;
2127
- metadataUri: z.ZodString;
2128
- metadataHash: z.ZodString;
2129
- configId: z.ZodEffects<z.ZodString, string, string>;
2130
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
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>>;
1154
+ conditionalTokenId: z.ZodOptional<z.ZodString>;
2135
1155
  } & {
2136
1156
  condition: z.ZodOptional<z.ZodObject<{
2137
- method: z.ZodEffects<z.ZodNumber, number, number>;
2138
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1157
+ method: z.ZodNumber;
1158
+ tokenType: z.ZodNumber;
2139
1159
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
2140
- gatingType: z.ZodEffects<z.ZodNumber, number, number>;
2141
- minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2142
- maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2143
- threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2144
- maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1160
+ gatingType: z.ZodNumber;
1161
+ minTokenId: z.ZodString;
1162
+ maxTokenId: z.ZodString;
1163
+ threshold: z.ZodString;
1164
+ maxCommits: z.ZodString;
2145
1165
  }, "strip", z.ZodTypeAny, {
2146
1166
  tokenAddress?: string;
2147
1167
  tokenType?: number;
2148
- maxCommits?: string | number | bigint;
1168
+ maxCommits?: string;
2149
1169
  method?: number;
2150
- minTokenId?: string | number | bigint;
2151
- threshold?: string | number | bigint;
2152
- maxTokenId?: string | number | bigint;
1170
+ minTokenId?: string;
1171
+ threshold?: string;
1172
+ maxTokenId?: string;
2153
1173
  gatingType?: number;
2154
1174
  }, {
2155
1175
  tokenAddress?: string;
2156
1176
  tokenType?: number;
2157
- maxCommits?: string | number | bigint;
1177
+ maxCommits?: string;
2158
1178
  method?: number;
2159
- minTokenId?: string | number | bigint;
2160
- threshold?: string | number | bigint;
2161
- maxTokenId?: string | number | bigint;
1179
+ minTokenId?: string;
1180
+ threshold?: string;
1181
+ maxTokenId?: string;
2162
1182
  gatingType?: number;
2163
1183
  }>>;
2164
1184
  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>;
1185
+ sellerId: z.ZodString;
1186
+ buyerId: z.ZodString;
2167
1187
  exchangeTokenAddress: z.ZodOptional<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>;
1188
+ price: z.ZodString;
1189
+ sellerDeposit: z.ZodString;
1190
+ agentId: z.ZodOptional<z.ZodString>;
1191
+ buyerCancellationPenalty: z.ZodString;
2172
1192
  quantityAvailable: z.ZodNumber;
2173
1193
  validFromDateInMS: z.ZodNumber;
2174
1194
  validUntilDateInMS: z.ZodNumber;
@@ -2178,30 +1198,18 @@ export declare const fullOfferUnsignedValidation: z.ZodEffects<z.ZodObject<{
2178
1198
  voucherValidDurationInMS: z.ZodNumber;
2179
1199
  resolutionPeriodDurationInMS: z.ZodNumber;
2180
1200
  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>>;
1201
+ collectionIndex: z.ZodOptional<z.ZodString>;
1202
+ feeLimit: z.ZodOptional<z.ZodString>;
2183
1203
  priceType: z.ZodOptional<z.ZodNumber>;
2184
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1204
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
2185
1205
  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">;
1206
+ bps: z.ZodArray<z.ZodString, "many">;
2187
1207
  }, "strip", z.ZodTypeAny, {
2188
1208
  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)[];
1209
+ bps?: string[];
2202
1210
  }, {
2203
1211
  recipients?: string[];
2204
- bps?: (string | number | bigint)[];
1212
+ bps?: string[];
2205
1213
  }>>;
2206
1214
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
2207
1215
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -2212,44 +1220,44 @@ export declare const fullOfferUnsignedValidation: z.ZodEffects<z.ZodObject<{
2212
1220
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2213
1221
  offerCreator: z.ZodEffects<z.ZodString, string, string>;
2214
1222
  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>>;
1223
+ conditionalTokenId: z.ZodOptional<z.ZodString>;
2216
1224
  } & {
2217
1225
  condition: z.ZodOptional<z.ZodObject<{
2218
- method: z.ZodEffects<z.ZodNumber, number, number>;
2219
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
1226
+ method: z.ZodNumber;
1227
+ tokenType: z.ZodNumber;
2220
1228
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
2221
- gatingType: z.ZodEffects<z.ZodNumber, number, number>;
2222
- minTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2223
- maxTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2224
- threshold: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2225
- maxCommits: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1229
+ gatingType: z.ZodNumber;
1230
+ minTokenId: z.ZodString;
1231
+ maxTokenId: z.ZodString;
1232
+ threshold: z.ZodString;
1233
+ maxCommits: z.ZodString;
2226
1234
  }, "strip", z.ZodTypeAny, {
2227
1235
  tokenAddress?: string;
2228
1236
  tokenType?: number;
2229
- maxCommits?: string | number | bigint;
1237
+ maxCommits?: string;
2230
1238
  method?: number;
2231
- minTokenId?: string | number | bigint;
2232
- threshold?: string | number | bigint;
2233
- maxTokenId?: string | number | bigint;
1239
+ minTokenId?: string;
1240
+ threshold?: string;
1241
+ maxTokenId?: string;
2234
1242
  gatingType?: number;
2235
1243
  }, {
2236
1244
  tokenAddress?: string;
2237
1245
  tokenType?: number;
2238
- maxCommits?: string | number | bigint;
1246
+ maxCommits?: string;
2239
1247
  method?: number;
2240
- minTokenId?: string | number | bigint;
2241
- threshold?: string | number | bigint;
2242
- maxTokenId?: string | number | bigint;
1248
+ minTokenId?: string;
1249
+ threshold?: string;
1250
+ maxTokenId?: string;
2243
1251
  gatingType?: number;
2244
1252
  }>>;
2245
1253
  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>;
1254
+ sellerId: z.ZodString;
1255
+ buyerId: z.ZodString;
2248
1256
  exchangeTokenAddress: z.ZodOptional<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>;
1257
+ price: z.ZodString;
1258
+ sellerDeposit: z.ZodString;
1259
+ agentId: z.ZodOptional<z.ZodString>;
1260
+ buyerCancellationPenalty: z.ZodString;
2253
1261
  quantityAvailable: z.ZodNumber;
2254
1262
  validFromDateInMS: z.ZodNumber;
2255
1263
  validUntilDateInMS: z.ZodNumber;
@@ -2259,30 +1267,18 @@ export declare const fullOfferUnsignedValidation: z.ZodEffects<z.ZodObject<{
2259
1267
  voucherValidDurationInMS: z.ZodNumber;
2260
1268
  resolutionPeriodDurationInMS: z.ZodNumber;
2261
1269
  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>>;
1270
+ collectionIndex: z.ZodOptional<z.ZodString>;
1271
+ feeLimit: z.ZodOptional<z.ZodString>;
2264
1272
  priceType: z.ZodOptional<z.ZodNumber>;
2265
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1273
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
2266
1274
  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">;
1275
+ bps: z.ZodArray<z.ZodString, "many">;
2268
1276
  }, "strip", z.ZodTypeAny, {
2269
1277
  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)[];
1278
+ bps?: string[];
2277
1279
  }, {
2278
1280
  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)[];
1281
+ bps?: string[];
2286
1282
  }>>;
2287
1283
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
2288
1284
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -2328,72 +1324,72 @@ export declare const storeBaseMetadataValidation: z.ZodObject<{
2328
1324
  type: z.ZodEnum<["BASE"]>;
2329
1325
  }, z.ZodTypeAny, "passthrough">>;
2330
1326
  export declare const withdrawFundsValidationShape: {
2331
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1327
+ entityId: z.ZodString;
2332
1328
  list: z.ZodArray<z.ZodObject<{
2333
1329
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
2334
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1330
+ amount: z.ZodString;
2335
1331
  }, "strip", z.ZodTypeAny, {
2336
1332
  tokenAddress?: string;
2337
- amount?: string | number | bigint;
1333
+ amount?: string;
2338
1334
  }, {
2339
1335
  tokenAddress?: string;
2340
- amount?: string | number | bigint;
1336
+ amount?: string;
2341
1337
  }>, "many">;
2342
1338
  };
2343
1339
  export declare const withdrawFundsValidation: z.ZodObject<{
2344
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1340
+ entityId: z.ZodString;
2345
1341
  list: z.ZodArray<z.ZodObject<{
2346
1342
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
2347
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1343
+ amount: z.ZodString;
2348
1344
  }, "strip", z.ZodTypeAny, {
2349
1345
  tokenAddress?: string;
2350
- amount?: string | number | bigint;
1346
+ amount?: string;
2351
1347
  }, {
2352
1348
  tokenAddress?: string;
2353
- amount?: string | number | bigint;
1349
+ amount?: string;
2354
1350
  }>, "many">;
2355
1351
  } & {
2356
1352
  configId: z.ZodEffects<z.ZodString, string, string>;
2357
1353
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2358
1354
  }, "strip", z.ZodTypeAny, {
2359
- entityId?: string | number | bigint;
1355
+ entityId?: string;
2360
1356
  configId?: string;
2361
1357
  signerAddress?: string;
2362
1358
  list?: {
2363
1359
  tokenAddress?: string;
2364
- amount?: string | number | bigint;
1360
+ amount?: string;
2365
1361
  }[];
2366
1362
  }, {
2367
- entityId?: string | number | bigint;
1363
+ entityId?: string;
2368
1364
  configId?: string;
2369
1365
  signerAddress?: string;
2370
1366
  list?: {
2371
1367
  tokenAddress?: string;
2372
- amount?: string | number | bigint;
1368
+ amount?: string;
2373
1369
  }[];
2374
1370
  }>;
2375
1371
  export declare const depositFundsValidationShape: {
2376
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1372
+ entityId: z.ZodString;
2377
1373
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
2378
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1374
+ amount: z.ZodString;
2379
1375
  };
2380
1376
  export declare const depositFundsValidation: z.ZodObject<{
2381
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1377
+ entityId: z.ZodString;
2382
1378
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
2383
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1379
+ amount: z.ZodString;
2384
1380
  } & {
2385
1381
  configId: z.ZodEffects<z.ZodString, string, string>;
2386
1382
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2387
1383
  }, "strip", z.ZodTypeAny, {
2388
1384
  tokenAddress?: string;
2389
- amount?: string | number | bigint;
2390
- entityId?: string | number | bigint;
1385
+ amount?: string;
1386
+ entityId?: string;
2391
1387
  configId?: string;
2392
1388
  signerAddress?: string;
2393
1389
  }, {
2394
1390
  tokenAddress?: string;
2395
- amount?: string | number | bigint;
2396
- entityId?: string | number | bigint;
1391
+ amount?: string;
1392
+ entityId?: string;
2397
1393
  configId?: string;
2398
1394
  signerAddress?: string;
2399
1395
  }>;
@@ -2453,59 +1449,59 @@ export declare const createSellerNonMetadataFields: z.ZodObject<{
2453
1449
  admin: z.ZodEffects<z.ZodString, string, string>;
2454
1450
  treasury: z.ZodEffects<z.ZodString, string, string>;
2455
1451
  contractUri: z.ZodString;
2456
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2457
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2458
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1452
+ royaltyPercentage: z.ZodString;
1453
+ authTokenId: z.ZodString;
1454
+ authTokenType: z.ZodNumber;
2459
1455
  }, "strip", z.ZodTypeAny, {
2460
1456
  assistant?: string;
2461
1457
  admin?: string;
2462
1458
  treasury?: string;
2463
- royaltyPercentage?: string | number | bigint;
1459
+ royaltyPercentage?: string;
2464
1460
  authTokenType?: number;
2465
1461
  contractUri?: string;
2466
- authTokenId?: string | number | bigint;
1462
+ authTokenId?: string;
2467
1463
  }, {
2468
1464
  assistant?: string;
2469
1465
  admin?: string;
2470
1466
  treasury?: string;
2471
- royaltyPercentage?: string | number | bigint;
1467
+ royaltyPercentage?: string;
2472
1468
  authTokenType?: number;
2473
1469
  contractUri?: string;
2474
- authTokenId?: string | number | bigint;
1470
+ authTokenId?: string;
2475
1471
  }>;
2476
1472
  export declare const updateSellerNonMetadataFields: z.ZodObject<{
2477
- id: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1473
+ id: z.ZodString;
2478
1474
  } & Omit<{
2479
1475
  assistant: z.ZodEffects<z.ZodString, string, string>;
2480
1476
  admin: z.ZodEffects<z.ZodString, string, string>;
2481
1477
  treasury: z.ZodEffects<z.ZodString, string, string>;
2482
1478
  contractUri: z.ZodString;
2483
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2484
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2485
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1479
+ royaltyPercentage: z.ZodString;
1480
+ authTokenId: z.ZodString;
1481
+ authTokenType: z.ZodNumber;
2486
1482
  }, "royaltyPercentage" | "contractUri">, "strip", z.ZodTypeAny, {
2487
- id?: string | number | bigint;
1483
+ id?: string;
2488
1484
  assistant?: string;
2489
1485
  admin?: string;
2490
1486
  treasury?: string;
2491
1487
  authTokenType?: number;
2492
- authTokenId?: string | number | bigint;
1488
+ authTokenId?: string;
2493
1489
  }, {
2494
- id?: string | number | bigint;
1490
+ id?: string;
2495
1491
  assistant?: string;
2496
1492
  admin?: string;
2497
1493
  treasury?: string;
2498
1494
  authTokenType?: number;
2499
- authTokenId?: string | number | bigint;
1495
+ authTokenId?: string;
2500
1496
  }>;
2501
1497
  export declare const createSellerValidation: z.ZodObject<{
2502
1498
  assistant: z.ZodEffects<z.ZodString, string, string>;
2503
1499
  admin: z.ZodEffects<z.ZodString, string, string>;
2504
1500
  treasury: z.ZodEffects<z.ZodString, string, string>;
2505
1501
  contractUri: z.ZodString;
2506
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2507
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2508
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1502
+ royaltyPercentage: z.ZodString;
1503
+ authTokenId: z.ZodString;
1504
+ authTokenType: z.ZodNumber;
2509
1505
  } & {
2510
1506
  configId: z.ZodEffects<z.ZodString, string, string>;
2511
1507
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
@@ -2514,9 +1510,9 @@ export declare const createSellerValidation: z.ZodObject<{
2514
1510
  admin: z.ZodEffects<z.ZodString, string, string>;
2515
1511
  treasury: z.ZodEffects<z.ZodString, string, string>;
2516
1512
  contractUri: z.ZodString;
2517
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2518
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2519
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1513
+ royaltyPercentage: z.ZodString;
1514
+ authTokenId: z.ZodString;
1515
+ authTokenType: z.ZodNumber;
2520
1516
  } & {
2521
1517
  configId: z.ZodEffects<z.ZodString, string, string>;
2522
1518
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
@@ -2525,340 +1521,340 @@ export declare const createSellerValidation: z.ZodObject<{
2525
1521
  admin: z.ZodEffects<z.ZodString, string, string>;
2526
1522
  treasury: z.ZodEffects<z.ZodString, string, string>;
2527
1523
  contractUri: z.ZodString;
2528
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2529
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2530
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1524
+ royaltyPercentage: z.ZodString;
1525
+ authTokenId: z.ZodString;
1526
+ authTokenType: z.ZodNumber;
2531
1527
  } & {
2532
1528
  configId: z.ZodEffects<z.ZodString, string, string>;
2533
1529
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2534
1530
  }, z.ZodTypeAny, "passthrough">>;
2535
1531
  export declare const updateSellerValidation: z.ZodObject<{
2536
- id: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1532
+ id: z.ZodString;
2537
1533
  assistant: z.ZodEffects<z.ZodString, string, string>;
2538
1534
  admin: z.ZodEffects<z.ZodString, string, string>;
2539
1535
  treasury: z.ZodEffects<z.ZodString, string, string>;
2540
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
2541
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1536
+ authTokenType: z.ZodNumber;
1537
+ authTokenId: z.ZodString;
2542
1538
  } & {
2543
1539
  configId: z.ZodEffects<z.ZodString, string, string>;
2544
1540
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2545
1541
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2546
- id: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1542
+ id: z.ZodString;
2547
1543
  assistant: z.ZodEffects<z.ZodString, string, string>;
2548
1544
  admin: z.ZodEffects<z.ZodString, string, string>;
2549
1545
  treasury: z.ZodEffects<z.ZodString, string, string>;
2550
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
2551
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1546
+ authTokenType: z.ZodNumber;
1547
+ authTokenId: z.ZodString;
2552
1548
  } & {
2553
1549
  configId: z.ZodEffects<z.ZodString, string, string>;
2554
1550
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2555
1551
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2556
- id: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1552
+ id: z.ZodString;
2557
1553
  assistant: z.ZodEffects<z.ZodString, string, string>;
2558
1554
  admin: z.ZodEffects<z.ZodString, string, string>;
2559
1555
  treasury: z.ZodEffects<z.ZodString, string, string>;
2560
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
2561
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1556
+ authTokenType: z.ZodNumber;
1557
+ authTokenId: z.ZodString;
2562
1558
  } & {
2563
1559
  configId: z.ZodEffects<z.ZodString, string, string>;
2564
1560
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2565
1561
  }, z.ZodTypeAny, "passthrough">>;
2566
1562
  export declare const createSellerValidationSimple: z.ZodObject<{
2567
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2568
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1563
+ royaltyPercentage: z.ZodString;
1564
+ authTokenType: z.ZodNumber;
2569
1565
  contractUri: z.ZodString;
2570
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1566
+ authTokenId: z.ZodString;
2571
1567
  } & {
2572
1568
  configId: z.ZodEffects<z.ZodString, string, string>;
2573
1569
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2574
1570
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2575
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2576
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1571
+ royaltyPercentage: z.ZodString;
1572
+ authTokenType: z.ZodNumber;
2577
1573
  contractUri: z.ZodString;
2578
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1574
+ authTokenId: z.ZodString;
2579
1575
  } & {
2580
1576
  configId: z.ZodEffects<z.ZodString, string, string>;
2581
1577
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2582
1578
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2583
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2584
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
1579
+ royaltyPercentage: z.ZodString;
1580
+ authTokenType: z.ZodNumber;
2585
1581
  contractUri: z.ZodString;
2586
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1582
+ authTokenId: z.ZodString;
2587
1583
  } & {
2588
1584
  configId: z.ZodEffects<z.ZodString, string, string>;
2589
1585
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2590
1586
  }, z.ZodTypeAny, "passthrough">>;
2591
1587
  export declare const updateSellerValidationSimple: z.ZodObject<{
2592
- id: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2593
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
2594
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1588
+ id: z.ZodString;
1589
+ authTokenType: z.ZodNumber;
1590
+ authTokenId: z.ZodString;
2595
1591
  } & {
2596
1592
  configId: z.ZodEffects<z.ZodString, string, string>;
2597
1593
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2598
1594
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2599
- id: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2600
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
2601
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1595
+ id: z.ZodString;
1596
+ authTokenType: z.ZodNumber;
1597
+ authTokenId: z.ZodString;
2602
1598
  } & {
2603
1599
  configId: z.ZodEffects<z.ZodString, string, string>;
2604
1600
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2605
1601
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2606
- id: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2607
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
2608
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1602
+ id: z.ZodString;
1603
+ authTokenType: z.ZodNumber;
1604
+ authTokenId: z.ZodString;
2609
1605
  } & {
2610
1606
  configId: z.ZodEffects<z.ZodString, string, string>;
2611
1607
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2612
1608
  }, z.ZodTypeAny, "passthrough">>;
2613
1609
  export declare const extendDisputeTimeoutValidationShape: {
2614
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2615
- newDisputeTimeout: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1610
+ exchangeId: z.ZodString;
1611
+ newDisputeTimeout: z.ZodString;
2616
1612
  };
2617
1613
  export declare const extendDisputeTimeoutValidation: z.ZodObject<{
2618
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2619
- newDisputeTimeout: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1614
+ exchangeId: z.ZodString;
1615
+ newDisputeTimeout: z.ZodString;
2620
1616
  } & {
2621
1617
  configId: z.ZodEffects<z.ZodString, string, string>;
2622
1618
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2623
1619
  }, "strip", z.ZodTypeAny, {
2624
- exchangeId?: string | number | bigint;
2625
- newDisputeTimeout?: string | number | bigint;
1620
+ exchangeId?: string;
1621
+ newDisputeTimeout?: string;
2626
1622
  configId?: string;
2627
1623
  signerAddress?: string;
2628
1624
  }, {
2629
- exchangeId?: string | number | bigint;
2630
- newDisputeTimeout?: string | number | bigint;
1625
+ exchangeId?: string;
1626
+ newDisputeTimeout?: string;
2631
1627
  configId?: string;
2632
1628
  signerAddress?: string;
2633
1629
  }>;
2634
1630
  export declare const expireDisputeValidationShape: {
2635
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1631
+ exchangeId: z.ZodString;
2636
1632
  };
2637
1633
  export declare const expireDisputeValidation: z.ZodObject<{
2638
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1634
+ exchangeId: z.ZodString;
2639
1635
  } & {
2640
1636
  configId: z.ZodEffects<z.ZodString, string, string>;
2641
1637
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2642
1638
  }, "strip", z.ZodTypeAny, {
2643
- exchangeId?: string | number | bigint;
1639
+ exchangeId?: string;
2644
1640
  configId?: string;
2645
1641
  signerAddress?: string;
2646
1642
  }, {
2647
- exchangeId?: string | number | bigint;
1643
+ exchangeId?: string;
2648
1644
  configId?: string;
2649
1645
  signerAddress?: string;
2650
1646
  }>;
2651
1647
  export declare const expireDisputeBatchValidationShape: {
2652
- exchangeIds: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1648
+ exchangeIds: z.ZodArray<z.ZodString, "many">;
2653
1649
  };
2654
1650
  export declare const expireDisputeBatchValidation: z.ZodObject<{
2655
- exchangeIds: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
1651
+ exchangeIds: z.ZodArray<z.ZodString, "many">;
2656
1652
  } & {
2657
1653
  configId: z.ZodEffects<z.ZodString, string, string>;
2658
1654
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2659
1655
  }, "strip", z.ZodTypeAny, {
2660
1656
  configId?: string;
2661
1657
  signerAddress?: string;
2662
- exchangeIds?: (string | number | bigint)[];
1658
+ exchangeIds?: string[];
2663
1659
  }, {
2664
1660
  configId?: string;
2665
1661
  signerAddress?: string;
2666
- exchangeIds?: (string | number | bigint)[];
1662
+ exchangeIds?: string[];
2667
1663
  }>;
2668
1664
  export declare const raiseDisputeValidationShape: {
2669
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1665
+ exchangeId: z.ZodString;
2670
1666
  };
2671
1667
  export declare const raiseDisputeValidation: z.ZodObject<{
2672
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1668
+ exchangeId: z.ZodString;
2673
1669
  } & {
2674
1670
  configId: z.ZodEffects<z.ZodString, string, string>;
2675
1671
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2676
1672
  }, "strip", z.ZodTypeAny, {
2677
- exchangeId?: string | number | bigint;
1673
+ exchangeId?: string;
2678
1674
  configId?: string;
2679
1675
  signerAddress?: string;
2680
1676
  }, {
2681
- exchangeId?: string | number | bigint;
1677
+ exchangeId?: string;
2682
1678
  configId?: string;
2683
1679
  signerAddress?: string;
2684
1680
  }>;
2685
1681
  export declare const retractDisputeValidationShape: {
2686
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1682
+ exchangeId: z.ZodString;
2687
1683
  };
2688
1684
  export declare const retractDisputeValidation: z.ZodObject<{
2689
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1685
+ exchangeId: z.ZodString;
2690
1686
  } & {
2691
1687
  configId: z.ZodEffects<z.ZodString, string, string>;
2692
1688
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2693
1689
  }, "strip", z.ZodTypeAny, {
2694
- exchangeId?: string | number | bigint;
1690
+ exchangeId?: string;
2695
1691
  configId?: string;
2696
1692
  signerAddress?: string;
2697
1693
  }, {
2698
- exchangeId?: string | number | bigint;
1694
+ exchangeId?: string;
2699
1695
  configId?: string;
2700
1696
  signerAddress?: string;
2701
1697
  }>;
2702
1698
  export declare const escalateDisputeValidationShape: {
2703
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1699
+ exchangeId: z.ZodString;
2704
1700
  };
2705
1701
  export declare const escalateDisputeValidation: z.ZodObject<{
2706
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1702
+ exchangeId: z.ZodString;
2707
1703
  } & {
2708
1704
  configId: z.ZodEffects<z.ZodString, string, string>;
2709
1705
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2710
1706
  }, "strip", z.ZodTypeAny, {
2711
- exchangeId?: string | number | bigint;
1707
+ exchangeId?: string;
2712
1708
  configId?: string;
2713
1709
  signerAddress?: string;
2714
1710
  }, {
2715
- exchangeId?: string | number | bigint;
1711
+ exchangeId?: string;
2716
1712
  configId?: string;
2717
1713
  signerAddress?: string;
2718
1714
  }>;
2719
1715
  export declare const decideDisputeValidationShape: {
2720
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2721
- buyerPercent: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1716
+ exchangeId: z.ZodString;
1717
+ buyerPercent: z.ZodString;
2722
1718
  };
2723
1719
  export declare const decideDisputeValidation: z.ZodObject<{
2724
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2725
- buyerPercent: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1720
+ exchangeId: z.ZodString;
1721
+ buyerPercent: z.ZodString;
2726
1722
  } & {
2727
1723
  configId: z.ZodEffects<z.ZodString, string, string>;
2728
1724
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2729
1725
  }, "strip", z.ZodTypeAny, {
2730
- exchangeId?: string | number | bigint;
2731
- buyerPercent?: string | number | bigint;
1726
+ exchangeId?: string;
1727
+ buyerPercent?: string;
2732
1728
  configId?: string;
2733
1729
  signerAddress?: string;
2734
1730
  }, {
2735
- exchangeId?: string | number | bigint;
2736
- buyerPercent?: string | number | bigint;
1731
+ exchangeId?: string;
1732
+ buyerPercent?: string;
2737
1733
  configId?: string;
2738
1734
  signerAddress?: string;
2739
1735
  }>;
2740
1736
  export declare const refuseEscalatedDisputeValidationShape: {
2741
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1737
+ exchangeId: z.ZodString;
2742
1738
  };
2743
1739
  export declare const refuseEscalatedDisputeValidation: z.ZodObject<{
2744
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1740
+ exchangeId: z.ZodString;
2745
1741
  } & {
2746
1742
  configId: z.ZodEffects<z.ZodString, string, string>;
2747
1743
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2748
1744
  }, "strip", z.ZodTypeAny, {
2749
- exchangeId?: string | number | bigint;
1745
+ exchangeId?: string;
2750
1746
  configId?: string;
2751
1747
  signerAddress?: string;
2752
1748
  }, {
2753
- exchangeId?: string | number | bigint;
1749
+ exchangeId?: string;
2754
1750
  configId?: string;
2755
1751
  signerAddress?: string;
2756
1752
  }>;
2757
1753
  export declare const expireEscalatedDisputeValidationShape: {
2758
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1754
+ exchangeId: z.ZodString;
2759
1755
  };
2760
1756
  export declare const expireEscalatedDisputeValidation: z.ZodObject<{
2761
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1757
+ exchangeId: z.ZodString;
2762
1758
  } & {
2763
1759
  configId: z.ZodEffects<z.ZodString, string, string>;
2764
1760
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2765
1761
  }, "strip", z.ZodTypeAny, {
2766
- exchangeId?: string | number | bigint;
1762
+ exchangeId?: string;
2767
1763
  configId?: string;
2768
1764
  signerAddress?: string;
2769
1765
  }, {
2770
- exchangeId?: string | number | bigint;
1766
+ exchangeId?: string;
2771
1767
  configId?: string;
2772
1768
  signerAddress?: string;
2773
1769
  }>;
2774
1770
  export declare const getDisputeByIdValidationShape: {
2775
- disputeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1771
+ disputeId: z.ZodString;
2776
1772
  queryVars: z.ZodOptional<z.ZodAny>;
2777
1773
  };
2778
1774
  export declare const getDisputeByIdValidation: z.ZodObject<{
2779
- disputeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1775
+ disputeId: z.ZodString;
2780
1776
  queryVars: z.ZodOptional<z.ZodAny>;
2781
1777
  } & {
2782
1778
  configId: z.ZodEffects<z.ZodString, string, string>;
2783
1779
  }, "strip", z.ZodTypeAny, {
2784
1780
  configId?: string;
2785
- disputeId?: string | number | bigint;
1781
+ disputeId?: string;
2786
1782
  queryVars?: any;
2787
1783
  }, {
2788
1784
  configId?: string;
2789
- disputeId?: string | number | bigint;
1785
+ disputeId?: string;
2790
1786
  queryVars?: any;
2791
1787
  }>;
2792
1788
  export declare const completeExchangeValidationShape: {
2793
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1789
+ exchangeId: z.ZodString;
2794
1790
  };
2795
1791
  export declare const completeExchangeValidation: z.ZodObject<{
2796
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1792
+ exchangeId: z.ZodString;
2797
1793
  } & {
2798
1794
  configId: z.ZodEffects<z.ZodString, string, string>;
2799
1795
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2800
1796
  }, "strip", z.ZodTypeAny, {
2801
- exchangeId?: string | number | bigint;
1797
+ exchangeId?: string;
2802
1798
  configId?: string;
2803
1799
  signerAddress?: string;
2804
1800
  }, {
2805
- exchangeId?: string | number | bigint;
1801
+ exchangeId?: string;
2806
1802
  configId?: string;
2807
1803
  signerAddress?: string;
2808
1804
  }>;
2809
1805
  export declare const resolveDisputeValidationShape: {
2810
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2811
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1806
+ exchangeId: z.ZodString;
1807
+ buyerPercentBasisPoints: z.ZodString;
2812
1808
  sigR: z.ZodString;
2813
1809
  sigS: z.ZodString;
2814
- sigV: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1810
+ sigV: z.ZodString;
2815
1811
  };
2816
1812
  export declare const resolveDisputeValidation: z.ZodObject<{
2817
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2818
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1813
+ exchangeId: z.ZodString;
1814
+ buyerPercentBasisPoints: z.ZodString;
2819
1815
  sigR: z.ZodString;
2820
1816
  sigS: z.ZodString;
2821
- sigV: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1817
+ sigV: z.ZodString;
2822
1818
  } & {
2823
1819
  configId: z.ZodEffects<z.ZodString, string, string>;
2824
1820
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2825
1821
  }, "strip", z.ZodTypeAny, {
2826
- exchangeId?: string | number | bigint;
1822
+ exchangeId?: string;
2827
1823
  sigR?: string;
2828
1824
  sigS?: string;
2829
- sigV?: string | number | bigint;
1825
+ sigV?: string;
2830
1826
  configId?: string;
2831
1827
  signerAddress?: string;
2832
- buyerPercentBasisPoints?: string | number | bigint;
1828
+ buyerPercentBasisPoints?: string;
2833
1829
  }, {
2834
- exchangeId?: string | number | bigint;
1830
+ exchangeId?: string;
2835
1831
  sigR?: string;
2836
1832
  sigS?: string;
2837
- sigV?: string | number | bigint;
1833
+ sigV?: string;
2838
1834
  configId?: string;
2839
1835
  signerAddress?: string;
2840
- buyerPercentBasisPoints?: string | number | bigint;
1836
+ buyerPercentBasisPoints?: string;
2841
1837
  }>;
2842
1838
  export declare const createDisputeResolutionProposalValidationShape: {
2843
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2844
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1839
+ exchangeId: z.ZodString;
1840
+ buyerPercentBasisPoints: z.ZodString;
2845
1841
  };
2846
1842
  export declare const createDisputeResolutionProposalValidation: z.ZodObject<{
2847
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2848
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1843
+ exchangeId: z.ZodString;
1844
+ buyerPercentBasisPoints: z.ZodString;
2849
1845
  } & {
2850
1846
  configId: z.ZodEffects<z.ZodString, string, string>;
2851
1847
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2852
1848
  }, "strip", z.ZodTypeAny, {
2853
- exchangeId?: string | number | bigint;
1849
+ exchangeId?: string;
2854
1850
  configId?: string;
2855
1851
  signerAddress?: string;
2856
- buyerPercentBasisPoints?: string | number | bigint;
1852
+ buyerPercentBasisPoints?: string;
2857
1853
  }, {
2858
- exchangeId?: string | number | bigint;
1854
+ exchangeId?: string;
2859
1855
  configId?: string;
2860
1856
  signerAddress?: string;
2861
- buyerPercentBasisPoints?: string | number | bigint;
1857
+ buyerPercentBasisPoints?: string;
2862
1858
  }>;
2863
1859
  export declare const getDisputesValidation: z.ZodObject<{
2864
1860
  disputesSkip: z.ZodOptional<z.ZodNumber>;
@@ -2912,163 +1908,139 @@ export declare const getDisputesResourceValidation: z.ZodObject<{
2912
1908
  disputesOrderDirection?: string;
2913
1909
  }>;
2914
1910
  export declare const revokeVoucherValidationShape: {
2915
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1911
+ exchangeId: z.ZodString;
2916
1912
  };
2917
1913
  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>;
1914
+ exchangeId: z.ZodString;
2919
1915
  } & {
2920
1916
  configId: z.ZodEffects<z.ZodString, string, string>;
2921
1917
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2922
1918
  }, "strip", z.ZodTypeAny, {
2923
- exchangeId?: string | number | bigint;
1919
+ exchangeId?: string;
2924
1920
  configId?: string;
2925
1921
  signerAddress?: string;
2926
1922
  }, {
2927
- exchangeId?: string | number | bigint;
1923
+ exchangeId?: string;
2928
1924
  configId?: string;
2929
1925
  signerAddress?: string;
2930
1926
  }>;
2931
1927
  export declare const commitToOfferValidationShape: {
2932
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
1928
+ offerId: z.ZodString;
2933
1929
  buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2934
1930
  };
2935
1931
  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>;
1932
+ offerId: z.ZodString;
2937
1933
  buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2938
1934
  } & {
2939
1935
  configId: z.ZodEffects<z.ZodString, string, string>;
2940
1936
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
2941
1937
  }, "strip", z.ZodTypeAny, {
2942
1938
  buyer?: string;
2943
- offerId?: string | number | bigint;
1939
+ offerId?: string;
2944
1940
  configId?: string;
2945
1941
  signerAddress?: string;
2946
1942
  }, {
2947
1943
  buyer?: string;
2948
- offerId?: string | number | bigint;
1944
+ offerId?: string;
2949
1945
  configId?: string;
2950
1946
  signerAddress?: string;
2951
1947
  }>;
2952
1948
  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<{
1949
+ offerId: z.ZodString;
1950
+ collectionIndex: z.ZodOptional<z.ZodString>;
1951
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
2956
1952
  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">;
1953
+ bps: z.ZodArray<z.ZodString, "many">;
2958
1954
  }, "strip", z.ZodTypeAny, {
2959
1955
  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)[];
1956
+ bps?: string[];
2973
1957
  }, {
2974
1958
  recipients?: string[];
2975
- bps?: (string | number | bigint)[];
1959
+ bps?: string[];
2976
1960
  }>>;
2977
1961
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2978
1962
  };
2979
1963
  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<{
1964
+ offerId: z.ZodString;
1965
+ collectionIndex: z.ZodOptional<z.ZodString>;
1966
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
2983
1967
  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">;
1968
+ bps: z.ZodArray<z.ZodString, "many">;
2985
1969
  }, "strip", z.ZodTypeAny, {
2986
1970
  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)[];
1971
+ bps?: string[];
2994
1972
  }, {
2995
1973
  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)[];
1974
+ bps?: string[];
3003
1975
  }>>;
3004
1976
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3005
1977
  } & {
3006
1978
  configId: z.ZodEffects<z.ZodString, string, string>;
3007
1979
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
3008
1980
  }, "strip", z.ZodTypeAny, {
3009
- collectionIndex?: string | number | bigint;
3010
- offerId?: string | number | bigint;
1981
+ collectionIndex?: string;
1982
+ offerId?: string;
3011
1983
  royaltyInfo?: {
3012
1984
  recipients?: string[];
3013
- bps?: (string | number | bigint)[];
1985
+ bps?: string[];
3014
1986
  };
3015
1987
  configId?: string;
3016
1988
  signerAddress?: string;
3017
1989
  drMutualizerAddress?: string;
3018
1990
  }, {
3019
- collectionIndex?: string | number | bigint;
3020
- offerId?: string | number | bigint;
1991
+ collectionIndex?: string;
1992
+ offerId?: string;
3021
1993
  royaltyInfo?: {
3022
1994
  recipients?: string[];
3023
- bps?: (string | number | bigint)[];
1995
+ bps?: string[];
3024
1996
  };
3025
1997
  configId?: string;
3026
1998
  signerAddress?: string;
3027
1999
  drMutualizerAddress?: string;
3028
2000
  }>;
3029
- export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
2001
+ export declare const createOfferAndCommitValidation: z.ZodObject<{
3030
2002
  signature: z.ZodEffects<z.ZodString, string, string>;
3031
2003
  } & {
3032
2004
  offerCreator: z.ZodEffects<z.ZodString, string, string>;
3033
2005
  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>>;
2006
+ conditionalTokenId: z.ZodOptional<z.ZodString>;
3035
2007
  } & {
3036
2008
  condition: z.ZodOptional<z.ZodObject<{
3037
- method: z.ZodEffects<z.ZodNumber, number, number>;
3038
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
2009
+ method: z.ZodNumber;
2010
+ tokenType: z.ZodNumber;
3039
2011
  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>;
2012
+ gatingType: z.ZodNumber;
2013
+ minTokenId: z.ZodString;
2014
+ maxTokenId: z.ZodString;
2015
+ threshold: z.ZodString;
2016
+ maxCommits: z.ZodString;
3045
2017
  }, "strip", z.ZodTypeAny, {
3046
2018
  tokenAddress?: string;
3047
2019
  tokenType?: number;
3048
- maxCommits?: string | number | bigint;
2020
+ maxCommits?: string;
3049
2021
  method?: number;
3050
- minTokenId?: string | number | bigint;
3051
- threshold?: string | number | bigint;
3052
- maxTokenId?: string | number | bigint;
2022
+ minTokenId?: string;
2023
+ threshold?: string;
2024
+ maxTokenId?: string;
3053
2025
  gatingType?: number;
3054
2026
  }, {
3055
2027
  tokenAddress?: string;
3056
2028
  tokenType?: number;
3057
- maxCommits?: string | number | bigint;
2029
+ maxCommits?: string;
3058
2030
  method?: number;
3059
- minTokenId?: string | number | bigint;
3060
- threshold?: string | number | bigint;
3061
- maxTokenId?: string | number | bigint;
2031
+ minTokenId?: string;
2032
+ threshold?: string;
2033
+ maxTokenId?: string;
3062
2034
  gatingType?: number;
3063
2035
  }>>;
3064
2036
  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>;
2037
+ sellerId: z.ZodString;
2038
+ buyerId: z.ZodString;
3067
2039
  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>;
2040
+ price: z.ZodString;
2041
+ sellerDeposit: z.ZodString;
2042
+ agentId: z.ZodOptional<z.ZodString>;
2043
+ buyerCancellationPenalty: z.ZodString;
3072
2044
  quantityAvailable: z.ZodNumber;
3073
2045
  validFromDateInMS: z.ZodNumber;
3074
2046
  validUntilDateInMS: z.ZodNumber;
@@ -3078,30 +2050,18 @@ export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
3078
2050
  voucherValidDurationInMS: z.ZodNumber;
3079
2051
  resolutionPeriodDurationInMS: z.ZodNumber;
3080
2052
  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>>;
2053
+ collectionIndex: z.ZodOptional<z.ZodString>;
2054
+ feeLimit: z.ZodOptional<z.ZodString>;
3083
2055
  priceType: z.ZodOptional<z.ZodNumber>;
3084
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2056
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
3085
2057
  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">;
2058
+ bps: z.ZodArray<z.ZodString, "many">;
3087
2059
  }, "strip", z.ZodTypeAny, {
3088
2060
  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)[];
2061
+ bps?: string[];
3102
2062
  }, {
3103
2063
  recipients?: string[];
3104
- bps?: (string | number | bigint)[];
2064
+ bps?: string[];
3105
2065
  }>>;
3106
2066
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3107
2067
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -3114,210 +2074,44 @@ export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
3114
2074
  } & {
3115
2075
  offerCreator: z.ZodEffects<z.ZodString, string, string>;
3116
2076
  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>>;
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;
3276
- configId: z.ZodEffects<z.ZodString, string, string>;
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>>;
2077
+ conditionalTokenId: z.ZodOptional<z.ZodString>;
3284
2078
  } & {
3285
2079
  condition: z.ZodOptional<z.ZodObject<{
3286
- method: z.ZodEffects<z.ZodNumber, number, number>;
3287
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
2080
+ method: z.ZodNumber;
2081
+ tokenType: z.ZodNumber;
3288
2082
  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>;
2083
+ gatingType: z.ZodNumber;
2084
+ minTokenId: z.ZodString;
2085
+ maxTokenId: z.ZodString;
2086
+ threshold: z.ZodString;
2087
+ maxCommits: z.ZodString;
3294
2088
  }, "strip", z.ZodTypeAny, {
3295
2089
  tokenAddress?: string;
3296
2090
  tokenType?: number;
3297
- maxCommits?: string | number | bigint;
2091
+ maxCommits?: string;
3298
2092
  method?: number;
3299
- minTokenId?: string | number | bigint;
3300
- threshold?: string | number | bigint;
3301
- maxTokenId?: string | number | bigint;
2093
+ minTokenId?: string;
2094
+ threshold?: string;
2095
+ maxTokenId?: string;
3302
2096
  gatingType?: number;
3303
2097
  }, {
3304
2098
  tokenAddress?: string;
3305
2099
  tokenType?: number;
3306
- maxCommits?: string | number | bigint;
2100
+ maxCommits?: string;
3307
2101
  method?: number;
3308
- minTokenId?: string | number | bigint;
3309
- threshold?: string | number | bigint;
3310
- maxTokenId?: string | number | bigint;
2102
+ minTokenId?: string;
2103
+ threshold?: string;
2104
+ maxTokenId?: string;
3311
2105
  gatingType?: number;
3312
2106
  }>>;
3313
2107
  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>;
2108
+ sellerId: z.ZodString;
2109
+ buyerId: z.ZodString;
3316
2110
  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>;
2111
+ price: z.ZodString;
2112
+ sellerDeposit: z.ZodString;
2113
+ agentId: z.ZodOptional<z.ZodString>;
2114
+ buyerCancellationPenalty: z.ZodString;
3321
2115
  quantityAvailable: z.ZodNumber;
3322
2116
  validFromDateInMS: z.ZodNumber;
3323
2117
  validUntilDateInMS: z.ZodNumber;
@@ -3327,30 +2121,18 @@ export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
3327
2121
  voucherValidDurationInMS: z.ZodNumber;
3328
2122
  resolutionPeriodDurationInMS: z.ZodNumber;
3329
2123
  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>>;
2124
+ collectionIndex: z.ZodOptional<z.ZodString>;
2125
+ feeLimit: z.ZodOptional<z.ZodString>;
3332
2126
  priceType: z.ZodOptional<z.ZodNumber>;
3333
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2127
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
3334
2128
  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">;
2129
+ bps: z.ZodArray<z.ZodString, "many">;
3336
2130
  }, "strip", z.ZodTypeAny, {
3337
2131
  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)[];
2132
+ bps?: string[];
3351
2133
  }, {
3352
2134
  recipients?: string[];
3353
- bps?: (string | number | bigint)[];
2135
+ bps?: string[];
3354
2136
  }>>;
3355
2137
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3356
2138
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -3363,44 +2145,44 @@ export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
3363
2145
  } & {
3364
2146
  offerCreator: z.ZodEffects<z.ZodString, string, string>;
3365
2147
  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>>;
2148
+ conditionalTokenId: z.ZodOptional<z.ZodString>;
3367
2149
  } & {
3368
2150
  condition: z.ZodOptional<z.ZodObject<{
3369
- method: z.ZodEffects<z.ZodNumber, number, number>;
3370
- tokenType: z.ZodEffects<z.ZodNumber, number, number>;
2151
+ method: z.ZodNumber;
2152
+ tokenType: z.ZodNumber;
3371
2153
  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>;
2154
+ gatingType: z.ZodNumber;
2155
+ minTokenId: z.ZodString;
2156
+ maxTokenId: z.ZodString;
2157
+ threshold: z.ZodString;
2158
+ maxCommits: z.ZodString;
3377
2159
  }, "strip", z.ZodTypeAny, {
3378
2160
  tokenAddress?: string;
3379
2161
  tokenType?: number;
3380
- maxCommits?: string | number | bigint;
2162
+ maxCommits?: string;
3381
2163
  method?: number;
3382
- minTokenId?: string | number | bigint;
3383
- threshold?: string | number | bigint;
3384
- maxTokenId?: string | number | bigint;
2164
+ minTokenId?: string;
2165
+ threshold?: string;
2166
+ maxTokenId?: string;
3385
2167
  gatingType?: number;
3386
2168
  }, {
3387
2169
  tokenAddress?: string;
3388
2170
  tokenType?: number;
3389
- maxCommits?: string | number | bigint;
2171
+ maxCommits?: string;
3390
2172
  method?: number;
3391
- minTokenId?: string | number | bigint;
3392
- threshold?: string | number | bigint;
3393
- maxTokenId?: string | number | bigint;
2173
+ minTokenId?: string;
2174
+ threshold?: string;
2175
+ maxTokenId?: string;
3394
2176
  gatingType?: number;
3395
2177
  }>>;
3396
2178
  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>;
2179
+ sellerId: z.ZodString;
2180
+ buyerId: z.ZodString;
3399
2181
  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>;
2182
+ price: z.ZodString;
2183
+ sellerDeposit: z.ZodString;
2184
+ agentId: z.ZodOptional<z.ZodString>;
2185
+ buyerCancellationPenalty: z.ZodString;
3404
2186
  quantityAvailable: z.ZodNumber;
3405
2187
  validFromDateInMS: z.ZodNumber;
3406
2188
  validUntilDateInMS: z.ZodNumber;
@@ -3410,30 +2192,18 @@ export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
3410
2192
  voucherValidDurationInMS: z.ZodNumber;
3411
2193
  resolutionPeriodDurationInMS: z.ZodNumber;
3412
2194
  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>>;
2195
+ collectionIndex: z.ZodOptional<z.ZodString>;
2196
+ feeLimit: z.ZodOptional<z.ZodString>;
3415
2197
  priceType: z.ZodOptional<z.ZodNumber>;
3416
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2198
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
3417
2199
  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">;
2200
+ bps: z.ZodArray<z.ZodString, "many">;
3419
2201
  }, "strip", z.ZodTypeAny, {
3420
2202
  recipients?: string[];
3421
- bps?: (string | number | bigint)[];
2203
+ bps?: string[];
3422
2204
  }, {
3423
2205
  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)[];
2206
+ bps?: string[];
3437
2207
  }>>;
3438
2208
  creator: z.ZodOptional<z.ZodEnum<["SELLER", "BUYER"]>>;
3439
2209
  drMutualizerAddress: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -3443,53 +2213,53 @@ export declare const createOfferAndCommitValidation: z.ZodEffects<z.ZodObject<{
3443
2213
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
3444
2214
  }, z.ZodTypeAny, "passthrough">>;
3445
2215
  export declare const voidOfferValidationShape: {
3446
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2216
+ offerId: z.ZodString;
3447
2217
  };
3448
2218
  export declare const voidOfferValidation: z.ZodObject<{
3449
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2219
+ offerId: z.ZodString;
3450
2220
  } & {
3451
2221
  configId: z.ZodEffects<z.ZodString, string, string>;
3452
2222
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
3453
2223
  }, "strip", z.ZodTypeAny, {
3454
- offerId?: string | number | bigint;
2224
+ offerId?: string;
3455
2225
  configId?: string;
3456
2226
  signerAddress?: string;
3457
2227
  }, {
3458
- offerId?: string | number | bigint;
2228
+ offerId?: string;
3459
2229
  configId?: string;
3460
2230
  signerAddress?: string;
3461
2231
  }>;
3462
2232
  export declare const cancelVoucherValidationShape: {
3463
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2233
+ exchangeId: z.ZodString;
3464
2234
  };
3465
2235
  export declare const cancelVoucherValidation: z.ZodObject<{
3466
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2236
+ exchangeId: z.ZodString;
3467
2237
  } & {
3468
2238
  configId: z.ZodEffects<z.ZodString, string, string>;
3469
2239
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
3470
2240
  }, "strip", z.ZodTypeAny, {
3471
- exchangeId?: string | number | bigint;
2241
+ exchangeId?: string;
3472
2242
  configId?: string;
3473
2243
  signerAddress?: string;
3474
2244
  }, {
3475
- exchangeId?: string | number | bigint;
2245
+ exchangeId?: string;
3476
2246
  configId?: string;
3477
2247
  signerAddress?: string;
3478
2248
  }>;
3479
2249
  export declare const redeemVoucherValidationShape: {
3480
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2250
+ exchangeId: z.ZodString;
3481
2251
  };
3482
2252
  export declare const redeemVoucherValidation: z.ZodObject<{
3483
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2253
+ exchangeId: z.ZodString;
3484
2254
  } & {
3485
2255
  configId: z.ZodEffects<z.ZodString, string, string>;
3486
2256
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
3487
2257
  }, "strip", z.ZodTypeAny, {
3488
- exchangeId?: string | number | bigint;
2258
+ exchangeId?: string;
3489
2259
  configId?: string;
3490
2260
  signerAddress?: string;
3491
2261
  }, {
3492
- exchangeId?: string | number | bigint;
2262
+ exchangeId?: string;
3493
2263
  configId?: string;
3494
2264
  signerAddress?: string;
3495
2265
  }>;
@@ -3965,115 +2735,103 @@ export declare const getTokensValidation: z.ZodObject<{
3965
2735
  export declare const renderContractualAgreementValidation: z.ZodObject<{
3966
2736
  template: z.ZodString;
3967
2737
  offerData: z.ZodObject<{
3968
- price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3969
- sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3970
- agentId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3971
- buyerCancelPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3972
- quantityAvailable: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3973
- validFromDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3974
- validUntilDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3975
- voucherRedeemableFromDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3976
- voucherRedeemableUntilDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3977
- disputePeriodDurationInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3978
- voucherValidDurationInMS: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
3979
- resolutionPeriodDurationInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2738
+ price: z.ZodString;
2739
+ sellerDeposit: z.ZodString;
2740
+ agentId: z.ZodString;
2741
+ buyerCancelPenalty: z.ZodString;
2742
+ quantityAvailable: z.ZodString;
2743
+ validFromDateInMS: z.ZodString;
2744
+ validUntilDateInMS: z.ZodString;
2745
+ voucherRedeemableFromDateInMS: z.ZodString;
2746
+ voucherRedeemableUntilDateInMS: z.ZodString;
2747
+ disputePeriodDurationInMS: z.ZodString;
2748
+ voucherValidDurationInMS: z.ZodOptional<z.ZodString>;
2749
+ resolutionPeriodDurationInMS: z.ZodString;
3980
2750
  exchangeToken: z.ZodEffects<z.ZodString, string, string>;
3981
- disputeResolverId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2751
+ disputeResolverId: z.ZodString;
3982
2752
  metadataUri: z.ZodString;
3983
2753
  metadataHash: z.ZodString;
3984
- collectionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
3985
- feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
2754
+ collectionIndex: z.ZodString;
2755
+ feeLimit: z.ZodOptional<z.ZodString>;
3986
2756
  priceType: z.ZodOptional<z.ZodNumber>;
3987
- royaltyInfo: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
2757
+ royaltyInfo: z.ZodOptional<z.ZodObject<{
3988
2758
  recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
3989
- bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
2759
+ bps: z.ZodArray<z.ZodString, "many">;
3990
2760
  }, "strip", z.ZodTypeAny, {
3991
2761
  recipients?: string[];
3992
- bps?: (string | number | bigint)[];
3993
- }, {
3994
- recipients?: string[];
3995
- bps?: (string | number | bigint)[];
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)[];
2762
+ bps?: string[];
4005
2763
  }, {
4006
2764
  recipients?: string[];
4007
- bps?: (string | number | bigint)[];
2765
+ bps?: string[];
4008
2766
  }>>;
4009
2767
  }, "strict", z.ZodTypeAny, {
4010
- disputeResolverId?: string | number | bigint;
4011
- agentId?: string | number | bigint;
4012
- collectionIndex?: string | number | bigint;
2768
+ disputeResolverId?: string;
2769
+ agentId?: string;
2770
+ collectionIndex?: string;
4013
2771
  metadataUri?: string;
4014
2772
  exchangeToken?: string;
4015
2773
  royaltyInfo?: {
4016
2774
  recipients?: string[];
4017
- bps?: (string | number | bigint)[];
2775
+ bps?: string[];
4018
2776
  };
4019
- price?: string | number | bigint;
4020
- sellerDeposit?: string | number | bigint;
4021
- buyerCancelPenalty?: string | number | bigint;
4022
- quantityAvailable?: string | number | bigint;
2777
+ price?: string;
2778
+ sellerDeposit?: string;
2779
+ buyerCancelPenalty?: string;
2780
+ quantityAvailable?: string;
4023
2781
  priceType?: number;
4024
2782
  metadataHash?: string;
4025
- feeLimit?: string | number | bigint;
4026
- validFromDateInMS?: string | number | bigint;
4027
- validUntilDateInMS?: string | number | bigint;
4028
- voucherRedeemableUntilDateInMS?: string | number | bigint;
4029
- voucherRedeemableFromDateInMS?: string | number | bigint;
4030
- voucherValidDurationInMS?: string | number | bigint;
4031
- disputePeriodDurationInMS?: string | number | bigint;
4032
- resolutionPeriodDurationInMS?: string | number | bigint;
2783
+ feeLimit?: string;
2784
+ validFromDateInMS?: string;
2785
+ validUntilDateInMS?: string;
2786
+ voucherRedeemableUntilDateInMS?: string;
2787
+ voucherRedeemableFromDateInMS?: string;
2788
+ voucherValidDurationInMS?: string;
2789
+ disputePeriodDurationInMS?: string;
2790
+ resolutionPeriodDurationInMS?: string;
4033
2791
  }, {
4034
- disputeResolverId?: string | number | bigint;
4035
- agentId?: string | number | bigint;
4036
- collectionIndex?: string | number | bigint;
2792
+ disputeResolverId?: string;
2793
+ agentId?: string;
2794
+ collectionIndex?: string;
4037
2795
  metadataUri?: string;
4038
2796
  exchangeToken?: string;
4039
2797
  royaltyInfo?: {
4040
2798
  recipients?: string[];
4041
- bps?: (string | number | bigint)[];
2799
+ bps?: string[];
4042
2800
  };
4043
- price?: string | number | bigint;
4044
- sellerDeposit?: string | number | bigint;
4045
- buyerCancelPenalty?: string | number | bigint;
4046
- quantityAvailable?: string | number | bigint;
2801
+ price?: string;
2802
+ sellerDeposit?: string;
2803
+ buyerCancelPenalty?: string;
2804
+ quantityAvailable?: string;
4047
2805
  priceType?: number;
4048
2806
  metadataHash?: string;
4049
- feeLimit?: string | number | bigint;
4050
- validFromDateInMS?: string | number | bigint;
4051
- validUntilDateInMS?: string | number | bigint;
4052
- voucherRedeemableUntilDateInMS?: string | number | bigint;
4053
- voucherRedeemableFromDateInMS?: string | number | bigint;
4054
- voucherValidDurationInMS?: string | number | bigint;
4055
- disputePeriodDurationInMS?: string | number | bigint;
4056
- resolutionPeriodDurationInMS?: string | number | bigint;
2807
+ feeLimit?: string;
2808
+ validFromDateInMS?: string;
2809
+ validUntilDateInMS?: string;
2810
+ voucherRedeemableUntilDateInMS?: string;
2811
+ voucherRedeemableFromDateInMS?: string;
2812
+ voucherValidDurationInMS?: string;
2813
+ disputePeriodDurationInMS?: string;
2814
+ resolutionPeriodDurationInMS?: string;
4057
2815
  }>;
4058
2816
  offerMetadata: z.ZodObject<{
4059
2817
  sellerContactMethod: z.ZodString;
4060
2818
  disputeResolverContactMethod: z.ZodString;
4061
- escalationDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
4062
- escalationResponsePeriodInSec: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
2819
+ escalationDeposit: z.ZodString;
2820
+ escalationResponsePeriodInSec: z.ZodString;
4063
2821
  sellerTradingName: z.ZodString;
4064
2822
  returnPeriodInDays: z.ZodNumber;
4065
2823
  }, "strict", z.ZodTypeAny, {
4066
2824
  sellerContactMethod?: string;
4067
2825
  disputeResolverContactMethod?: string;
4068
- escalationDeposit?: string | number | bigint;
4069
- escalationResponsePeriodInSec?: string | number | bigint;
2826
+ escalationDeposit?: string;
2827
+ escalationResponsePeriodInSec?: string;
4070
2828
  sellerTradingName?: string;
4071
2829
  returnPeriodInDays?: number;
4072
2830
  }, {
4073
2831
  sellerContactMethod?: string;
4074
2832
  disputeResolverContactMethod?: string;
4075
- escalationDeposit?: string | number | bigint;
4076
- escalationResponsePeriodInSec?: string | number | bigint;
2833
+ escalationDeposit?: string;
2834
+ escalationResponsePeriodInSec?: string;
4077
2835
  sellerTradingName?: string;
4078
2836
  returnPeriodInDays?: number;
4079
2837
  }>;
@@ -4085,35 +2843,35 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
4085
2843
  signerAddress?: string;
4086
2844
  template?: string;
4087
2845
  offerData?: {
4088
- disputeResolverId?: string | number | bigint;
4089
- agentId?: string | number | bigint;
4090
- collectionIndex?: string | number | bigint;
2846
+ disputeResolverId?: string;
2847
+ agentId?: string;
2848
+ collectionIndex?: string;
4091
2849
  metadataUri?: string;
4092
2850
  exchangeToken?: string;
4093
2851
  royaltyInfo?: {
4094
2852
  recipients?: string[];
4095
- bps?: (string | number | bigint)[];
2853
+ bps?: string[];
4096
2854
  };
4097
- price?: string | number | bigint;
4098
- sellerDeposit?: string | number | bigint;
4099
- buyerCancelPenalty?: string | number | bigint;
4100
- quantityAvailable?: string | number | bigint;
2855
+ price?: string;
2856
+ sellerDeposit?: string;
2857
+ buyerCancelPenalty?: string;
2858
+ quantityAvailable?: string;
4101
2859
  priceType?: number;
4102
2860
  metadataHash?: string;
4103
- feeLimit?: string | number | bigint;
4104
- validFromDateInMS?: string | number | bigint;
4105
- validUntilDateInMS?: string | number | bigint;
4106
- voucherRedeemableUntilDateInMS?: string | number | bigint;
4107
- voucherRedeemableFromDateInMS?: string | number | bigint;
4108
- voucherValidDurationInMS?: string | number | bigint;
4109
- disputePeriodDurationInMS?: string | number | bigint;
4110
- resolutionPeriodDurationInMS?: string | number | bigint;
2861
+ feeLimit?: string;
2862
+ validFromDateInMS?: string;
2863
+ validUntilDateInMS?: string;
2864
+ voucherRedeemableUntilDateInMS?: string;
2865
+ voucherRedeemableFromDateInMS?: string;
2866
+ voucherValidDurationInMS?: string;
2867
+ disputePeriodDurationInMS?: string;
2868
+ resolutionPeriodDurationInMS?: string;
4111
2869
  };
4112
2870
  offerMetadata?: {
4113
2871
  sellerContactMethod?: string;
4114
2872
  disputeResolverContactMethod?: string;
4115
- escalationDeposit?: string | number | bigint;
4116
- escalationResponsePeriodInSec?: string | number | bigint;
2873
+ escalationDeposit?: string;
2874
+ escalationResponsePeriodInSec?: string;
4117
2875
  sellerTradingName?: string;
4118
2876
  returnPeriodInDays?: number;
4119
2877
  };
@@ -4122,35 +2880,35 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
4122
2880
  signerAddress?: string;
4123
2881
  template?: string;
4124
2882
  offerData?: {
4125
- disputeResolverId?: string | number | bigint;
4126
- agentId?: string | number | bigint;
4127
- collectionIndex?: string | number | bigint;
2883
+ disputeResolverId?: string;
2884
+ agentId?: string;
2885
+ collectionIndex?: string;
4128
2886
  metadataUri?: string;
4129
2887
  exchangeToken?: string;
4130
2888
  royaltyInfo?: {
4131
2889
  recipients?: string[];
4132
- bps?: (string | number | bigint)[];
2890
+ bps?: string[];
4133
2891
  };
4134
- price?: string | number | bigint;
4135
- sellerDeposit?: string | number | bigint;
4136
- buyerCancelPenalty?: string | number | bigint;
4137
- quantityAvailable?: string | number | bigint;
2892
+ price?: string;
2893
+ sellerDeposit?: string;
2894
+ buyerCancelPenalty?: string;
2895
+ quantityAvailable?: string;
4138
2896
  priceType?: number;
4139
2897
  metadataHash?: string;
4140
- feeLimit?: string | number | bigint;
4141
- validFromDateInMS?: string | number | bigint;
4142
- validUntilDateInMS?: string | number | bigint;
4143
- voucherRedeemableUntilDateInMS?: string | number | bigint;
4144
- voucherRedeemableFromDateInMS?: string | number | bigint;
4145
- voucherValidDurationInMS?: string | number | bigint;
4146
- disputePeriodDurationInMS?: string | number | bigint;
4147
- resolutionPeriodDurationInMS?: string | number | bigint;
2898
+ feeLimit?: string;
2899
+ validFromDateInMS?: string;
2900
+ validUntilDateInMS?: string;
2901
+ voucherRedeemableUntilDateInMS?: string;
2902
+ voucherRedeemableFromDateInMS?: string;
2903
+ voucherValidDurationInMS?: string;
2904
+ disputePeriodDurationInMS?: string;
2905
+ resolutionPeriodDurationInMS?: string;
4148
2906
  };
4149
2907
  offerMetadata?: {
4150
2908
  sellerContactMethod?: string;
4151
2909
  disputeResolverContactMethod?: string;
4152
- escalationDeposit?: string | number | bigint;
4153
- escalationResponsePeriodInSec?: string | number | bigint;
2910
+ escalationDeposit?: string;
2911
+ escalationResponsePeriodInSec?: string;
4154
2912
  sellerTradingName?: string;
4155
2913
  returnPeriodInDays?: number;
4156
2914
  };