@bosonprotocol/agentic-commerce 1.0.0-alpha.55 → 1.0.0-alpha.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.d.ts +1 -9
  2. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.d.ts.map +1 -1
  3. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.js +0 -35
  4. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.js.map +1 -1
  5. package/dist/boson/goat-sdk-plugin/index.d.ts +0 -1
  6. package/dist/boson/goat-sdk-plugin/index.d.ts.map +1 -1
  7. package/dist/boson/goat-sdk-plugin/index.js +1 -3
  8. package/dist/boson/goat-sdk-plugin/index.js.map +1 -1
  9. package/dist/boson/goat-sdk-plugin/parameters.d.ts +427 -443
  10. package/dist/boson/goat-sdk-plugin/parameters.d.ts.map +1 -1
  11. package/dist/boson/goat-sdk-plugin/parameters.js +1 -12
  12. package/dist/boson/goat-sdk-plugin/parameters.js.map +1 -1
  13. package/dist/boson/mcp-server/index.d.ts.map +1 -1
  14. package/dist/boson/mcp-server/index.js +1 -1
  15. package/dist/boson/mcp-server/index.js.map +1 -1
  16. package/dist/boson/mcp-server/validation.d.ts +116 -116
  17. package/dist/common/mcp-client/index.d.ts +0 -148
  18. package/dist/common/mcp-client/index.d.ts.map +1 -1
  19. package/dist/common/mcp-client/index.js +0 -6
  20. package/dist/common/mcp-client/index.js.map +1 -1
  21. package/dist/common/mcp-server/configValidation.d.ts +4 -2
  22. package/dist/common/mcp-server/configValidation.d.ts.map +1 -1
  23. package/dist/common/mcp-server/configValidation.js +36 -3
  24. package/dist/common/mcp-server/configValidation.js.map +1 -1
  25. package/dist/fermion/mcp-client/index.d.ts +148 -0
  26. package/dist/fermion/mcp-client/index.d.ts.map +1 -1
  27. package/dist/fermion/mcp-client/index.js +6 -0
  28. package/dist/fermion/mcp-client/index.js.map +1 -1
  29. package/dist/fermion/mcp-server/handlers/sdk.d.ts +1 -1
  30. package/package.json +1 -1
  31. package/dist/boson/mcp-server/handlers/sdk.d.ts +0 -19
  32. package/dist/boson/mcp-server/handlers/sdk.d.ts.map +0 -1
  33. package/dist/boson/mcp-server/handlers/sdk.js +0 -88
  34. package/dist/boson/mcp-server/handlers/sdk.js.map +0 -1
@@ -1,12 +1,12 @@
1
1
  import { z } from "zod";
2
2
  export declare const contextValidation: z.ZodObject<{
3
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
3
+ configId: z.ZodEffects<z.ZodString, string, string>;
4
4
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
5
5
  }, "strip", z.ZodTypeAny, {
6
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
6
+ configId?: string;
7
7
  signerAddress?: string;
8
8
  }, {
9
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
9
+ configId?: string;
10
10
  signerAddress?: string;
11
11
  }>;
12
12
  export declare const createOfferNonMetadataFields: z.ZodObject<{
@@ -73,7 +73,7 @@ export declare const createOfferValidation: z.ZodObject<{
73
73
  metadataUri: z.ZodString;
74
74
  metadataHash: z.ZodString;
75
75
  } & {
76
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
76
+ configId: z.ZodEffects<z.ZodString, string, string>;
77
77
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
78
78
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
79
79
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
@@ -93,7 +93,7 @@ export declare const createOfferValidation: z.ZodObject<{
93
93
  metadataUri: z.ZodString;
94
94
  metadataHash: z.ZodString;
95
95
  } & {
96
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
96
+ configId: z.ZodEffects<z.ZodString, string, string>;
97
97
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
98
98
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
99
99
  exchangeTokenAddress: z.ZodOptional<z.ZodString>;
@@ -113,17 +113,17 @@ export declare const createOfferValidation: z.ZodObject<{
113
113
  metadataUri: z.ZodString;
114
114
  metadataHash: z.ZodString;
115
115
  } & {
116
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
116
+ configId: z.ZodEffects<z.ZodString, string, string>;
117
117
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
118
118
  }, z.ZodTypeAny, "passthrough">>;
119
119
  export declare const storeProductV1MetadataValidation: z.ZodObject<{
120
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
120
+ configId: z.ZodEffects<z.ZodString, string, string>;
121
121
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
122
122
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
123
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
123
+ configId: z.ZodEffects<z.ZodString, string, string>;
124
124
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
125
125
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
126
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
126
+ configId: z.ZodEffects<z.ZodString, string, string>;
127
127
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
128
128
  }, z.ZodTypeAny, "passthrough">>;
129
129
  export declare const createOfferWithConditionValidation: z.ZodObject<{
@@ -172,7 +172,7 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
172
172
  metadataUri: z.ZodString;
173
173
  metadataHash: z.ZodString;
174
174
  } & {
175
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
175
+ configId: z.ZodEffects<z.ZodString, string, string>;
176
176
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
177
177
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
178
178
  condition: z.ZodObject<{
@@ -220,7 +220,7 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
220
220
  metadataUri: z.ZodString;
221
221
  metadataHash: z.ZodString;
222
222
  } & {
223
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
223
+ configId: z.ZodEffects<z.ZodString, string, string>;
224
224
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
225
225
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
226
226
  condition: z.ZodObject<{
@@ -268,27 +268,27 @@ export declare const createOfferWithConditionValidation: z.ZodObject<{
268
268
  metadataUri: z.ZodString;
269
269
  metadataHash: z.ZodString;
270
270
  } & {
271
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
271
+ configId: z.ZodEffects<z.ZodString, string, string>;
272
272
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
273
273
  }, z.ZodTypeAny, "passthrough">>;
274
274
  export declare const storeBundleMetadataValidation: z.ZodObject<{
275
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
275
+ configId: z.ZodEffects<z.ZodString, string, string>;
276
276
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
277
277
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
278
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
278
+ configId: z.ZodEffects<z.ZodString, string, string>;
279
279
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
280
280
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
281
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
281
+ configId: z.ZodEffects<z.ZodString, string, string>;
282
282
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
283
283
  }, z.ZodTypeAny, "passthrough">>;
284
284
  export declare const storeCustomMetadataValidation: z.ZodObject<{
285
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
285
+ configId: z.ZodEffects<z.ZodString, string, string>;
286
286
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
287
287
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
288
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
288
+ configId: z.ZodEffects<z.ZodString, string, string>;
289
289
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
290
290
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
291
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
291
+ configId: z.ZodEffects<z.ZodString, string, string>;
292
292
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
293
293
  }, z.ZodTypeAny, "passthrough">>;
294
294
  export declare const withdrawFundsValidationShape: {
@@ -317,11 +317,11 @@ export declare const withdrawFundsValidation: z.ZodObject<{
317
317
  amount?: string | number | bigint;
318
318
  }>, "many">;
319
319
  } & {
320
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
320
+ configId: z.ZodEffects<z.ZodString, string, string>;
321
321
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
322
322
  }, "strip", z.ZodTypeAny, {
323
323
  entityId?: string | number | bigint;
324
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
324
+ configId?: string;
325
325
  signerAddress?: string;
326
326
  list?: {
327
327
  tokenAddress?: string;
@@ -329,7 +329,7 @@ export declare const withdrawFundsValidation: z.ZodObject<{
329
329
  }[];
330
330
  }, {
331
331
  entityId?: string | number | bigint;
332
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
332
+ configId?: string;
333
333
  signerAddress?: string;
334
334
  list?: {
335
335
  tokenAddress?: string;
@@ -346,19 +346,19 @@ export declare const depositFundsValidation: z.ZodObject<{
346
346
  tokenAddress: z.ZodEffects<z.ZodString, string, string>;
347
347
  amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
348
348
  } & {
349
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
349
+ configId: z.ZodEffects<z.ZodString, string, string>;
350
350
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
351
351
  }, "strip", z.ZodTypeAny, {
352
352
  tokenAddress?: string;
353
353
  entityId?: string | number | bigint;
354
354
  amount?: string | number | bigint;
355
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
355
+ configId?: string;
356
356
  signerAddress?: string;
357
357
  }, {
358
358
  tokenAddress?: string;
359
359
  entityId?: string | number | bigint;
360
360
  amount?: string | number | bigint;
361
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
361
+ configId?: string;
362
362
  signerAddress?: string;
363
363
  }>;
364
364
  export declare const getFundsValidation: z.ZodObject<{
@@ -368,24 +368,24 @@ export declare const getFundsValidation: z.ZodObject<{
368
368
  fundsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
369
369
  fundsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
370
370
  } & {
371
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
371
+ configId: z.ZodEffects<z.ZodString, string, string>;
372
372
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
373
373
  }, "strip", z.ZodTypeAny, {
374
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
375
- signerAddress?: string;
374
+ configId?: string;
376
375
  fundsFilter?: Record<string, unknown>;
377
376
  fundsSkip?: number;
378
377
  fundsFirst?: number;
379
378
  fundsOrderBy?: string;
380
379
  fundsOrderDirection?: string;
381
- }, {
382
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
383
380
  signerAddress?: string;
381
+ }, {
382
+ configId?: string;
384
383
  fundsFilter?: Record<string, unknown>;
385
384
  fundsSkip?: number;
386
385
  fundsFirst?: number;
387
386
  fundsOrderBy?: string;
388
387
  fundsOrderDirection?: string;
388
+ signerAddress?: string;
389
389
  }>;
390
390
  export declare const getFundsValidationShape: {
391
391
  fundsSkip: z.ZodOptional<z.ZodNumber>;
@@ -394,7 +394,7 @@ export declare const getFundsValidationShape: {
394
394
  fundsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
395
395
  fundsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
396
396
  } & {
397
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
397
+ configId: z.ZodEffects<z.ZodString, string, string>;
398
398
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
399
399
  };
400
400
  export declare const getFundsResourceValidation: z.ZodObject<{
@@ -450,7 +450,7 @@ export declare const createSellerValidation: z.ZodObject<{
450
450
  authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
451
451
  authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
452
452
  } & {
453
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
453
+ configId: z.ZodEffects<z.ZodString, string, string>;
454
454
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
455
455
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
456
456
  assistant: z.ZodEffects<z.ZodString, string, string>;
@@ -461,7 +461,7 @@ export declare const createSellerValidation: z.ZodObject<{
461
461
  authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
462
462
  authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
463
463
  } & {
464
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
464
+ configId: z.ZodEffects<z.ZodString, string, string>;
465
465
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
466
466
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
467
467
  assistant: z.ZodEffects<z.ZodString, string, string>;
@@ -472,7 +472,7 @@ export declare const createSellerValidation: z.ZodObject<{
472
472
  authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
473
473
  authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
474
474
  } & {
475
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
475
+ configId: z.ZodEffects<z.ZodString, string, string>;
476
476
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
477
477
  }, z.ZodTypeAny, "passthrough">>;
478
478
  export declare const extendDisputeTimeoutValidationShape: {
@@ -483,17 +483,17 @@ export declare const extendDisputeTimeoutValidation: z.ZodObject<{
483
483
  exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
484
484
  newDisputeTimeout: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
485
485
  } & {
486
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
486
+ configId: z.ZodEffects<z.ZodString, string, string>;
487
487
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
488
488
  }, "strip", z.ZodTypeAny, {
489
489
  exchangeId?: string | number | bigint;
490
490
  newDisputeTimeout?: string | number | bigint;
491
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
491
+ configId?: string;
492
492
  signerAddress?: string;
493
493
  }, {
494
494
  exchangeId?: string | number | bigint;
495
495
  newDisputeTimeout?: string | number | bigint;
496
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
496
+ configId?: string;
497
497
  signerAddress?: string;
498
498
  }>;
499
499
  export declare const expireDisputeValidationShape: {
@@ -502,15 +502,15 @@ export declare const expireDisputeValidationShape: {
502
502
  export declare const expireDisputeValidation: z.ZodObject<{
503
503
  exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
504
504
  } & {
505
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
505
+ configId: z.ZodEffects<z.ZodString, string, string>;
506
506
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
507
507
  }, "strip", z.ZodTypeAny, {
508
508
  exchangeId?: string | number | bigint;
509
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
509
+ configId?: string;
510
510
  signerAddress?: string;
511
511
  }, {
512
512
  exchangeId?: string | number | bigint;
513
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
513
+ configId?: string;
514
514
  signerAddress?: string;
515
515
  }>;
516
516
  export declare const expireDisputeBatchValidationShape: {
@@ -519,14 +519,14 @@ export declare const expireDisputeBatchValidationShape: {
519
519
  export declare const expireDisputeBatchValidation: z.ZodObject<{
520
520
  exchangeIds: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
521
521
  } & {
522
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
522
+ configId: z.ZodEffects<z.ZodString, string, string>;
523
523
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
524
524
  }, "strip", z.ZodTypeAny, {
525
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
525
+ configId?: string;
526
526
  signerAddress?: string;
527
527
  exchangeIds?: (string | number | bigint)[];
528
528
  }, {
529
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
529
+ configId?: string;
530
530
  signerAddress?: string;
531
531
  exchangeIds?: (string | number | bigint)[];
532
532
  }>;
@@ -544,14 +544,14 @@ export declare const resolveDisputeValidation: z.ZodObject<{
544
544
  sigS: z.ZodString;
545
545
  sigV: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
546
546
  } & {
547
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
547
+ configId: z.ZodEffects<z.ZodString, string, string>;
548
548
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
549
549
  }, "strip", z.ZodTypeAny, {
550
550
  exchangeId?: string | number | bigint;
551
551
  sigR?: string;
552
552
  sigS?: string;
553
553
  sigV?: string | number | bigint;
554
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
554
+ configId?: string;
555
555
  signerAddress?: string;
556
556
  buyerPercentBasisPoints?: string | number | bigint;
557
557
  }, {
@@ -559,7 +559,7 @@ export declare const resolveDisputeValidation: z.ZodObject<{
559
559
  sigR?: string;
560
560
  sigS?: string;
561
561
  sigV?: string | number | bigint;
562
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
562
+ configId?: string;
563
563
  signerAddress?: string;
564
564
  buyerPercentBasisPoints?: string | number | bigint;
565
565
  }>;
@@ -571,16 +571,16 @@ export declare const createDisputeResolutionProposalValidation: z.ZodObject<{
571
571
  exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
572
572
  buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
573
573
  } & {
574
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
574
+ configId: z.ZodEffects<z.ZodString, string, string>;
575
575
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
576
576
  }, "strip", z.ZodTypeAny, {
577
577
  exchangeId?: string | number | bigint;
578
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
578
+ configId?: string;
579
579
  signerAddress?: string;
580
580
  buyerPercentBasisPoints?: string | number | bigint;
581
581
  }, {
582
582
  exchangeId?: string | number | bigint;
583
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
583
+ configId?: string;
584
584
  signerAddress?: string;
585
585
  buyerPercentBasisPoints?: string | number | bigint;
586
586
  }>;
@@ -591,24 +591,24 @@ export declare const getDisputesValidation: z.ZodObject<{
591
591
  disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
592
592
  disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
593
593
  } & {
594
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
594
+ configId: z.ZodEffects<z.ZodString, string, string>;
595
595
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
596
596
  }, "strip", z.ZodTypeAny, {
597
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
598
- signerAddress?: string;
597
+ configId?: string;
599
598
  disputesFilter?: Record<string, unknown>;
600
599
  disputesSkip?: number;
601
600
  disputesFirst?: number;
602
601
  disputesOrderBy?: string;
603
602
  disputesOrderDirection?: string;
604
- }, {
605
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
606
603
  signerAddress?: string;
604
+ }, {
605
+ configId?: string;
607
606
  disputesFilter?: Record<string, unknown>;
608
607
  disputesSkip?: number;
609
608
  disputesFirst?: number;
610
609
  disputesOrderBy?: string;
611
610
  disputesOrderDirection?: string;
611
+ signerAddress?: string;
612
612
  }>;
613
613
  export declare const getDisputesValidationShape: {
614
614
  disputesSkip: z.ZodOptional<z.ZodNumber>;
@@ -617,7 +617,7 @@ export declare const getDisputesValidationShape: {
617
617
  disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
618
618
  disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
619
619
  } & {
620
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
620
+ configId: z.ZodEffects<z.ZodString, string, string>;
621
621
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
622
622
  };
623
623
  export declare const getDisputesResourceValidation: z.ZodObject<{
@@ -645,15 +645,15 @@ export declare const revokeVoucherValidationShape: {
645
645
  export declare const revokeVoucherValidation: z.ZodObject<{
646
646
  exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
647
647
  } & {
648
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
648
+ configId: z.ZodEffects<z.ZodString, string, string>;
649
649
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
650
650
  }, "strip", z.ZodTypeAny, {
651
651
  exchangeId?: string | number | bigint;
652
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
652
+ configId?: string;
653
653
  signerAddress?: string;
654
654
  }, {
655
655
  exchangeId?: string | number | bigint;
656
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
656
+ configId?: string;
657
657
  signerAddress?: string;
658
658
  }>;
659
659
  export declare const commitToOfferValidationShape: {
@@ -664,17 +664,17 @@ export declare const commitToOfferValidation: z.ZodObject<{
664
664
  offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
665
665
  buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
666
666
  } & {
667
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
667
+ configId: z.ZodEffects<z.ZodString, string, string>;
668
668
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
669
669
  }, "strip", z.ZodTypeAny, {
670
670
  buyer?: string;
671
671
  offerId?: string | number | bigint;
672
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
672
+ configId?: string;
673
673
  signerAddress?: string;
674
674
  }, {
675
675
  buyer?: string;
676
676
  offerId?: string | number | bigint;
677
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
677
+ configId?: string;
678
678
  signerAddress?: string;
679
679
  }>;
680
680
  export declare const voidOfferValidationShape: {
@@ -683,15 +683,15 @@ export declare const voidOfferValidationShape: {
683
683
  export declare const voidOfferValidation: z.ZodObject<{
684
684
  offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
685
685
  } & {
686
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
686
+ configId: z.ZodEffects<z.ZodString, string, string>;
687
687
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
688
688
  }, "strip", z.ZodTypeAny, {
689
689
  offerId?: string | number | bigint;
690
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
690
+ configId?: string;
691
691
  signerAddress?: string;
692
692
  }, {
693
693
  offerId?: string | number | bigint;
694
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
694
+ configId?: string;
695
695
  signerAddress?: string;
696
696
  }>;
697
697
  export declare const cancelVoucherValidationShape: {
@@ -700,15 +700,15 @@ export declare const cancelVoucherValidationShape: {
700
700
  export declare const cancelVoucherValidation: z.ZodObject<{
701
701
  exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
702
702
  } & {
703
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
703
+ configId: z.ZodEffects<z.ZodString, string, string>;
704
704
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
705
705
  }, "strip", z.ZodTypeAny, {
706
706
  exchangeId?: string | number | bigint;
707
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
707
+ configId?: string;
708
708
  signerAddress?: string;
709
709
  }, {
710
710
  exchangeId?: string | number | bigint;
711
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
711
+ configId?: string;
712
712
  signerAddress?: string;
713
713
  }>;
714
714
  export declare const redeemVoucherValidationShape: {
@@ -717,15 +717,15 @@ export declare const redeemVoucherValidationShape: {
717
717
  export declare const redeemVoucherValidation: z.ZodObject<{
718
718
  exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
719
719
  } & {
720
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
720
+ configId: z.ZodEffects<z.ZodString, string, string>;
721
721
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
722
722
  }, "strip", z.ZodTypeAny, {
723
723
  exchangeId?: string | number | bigint;
724
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
724
+ configId?: string;
725
725
  signerAddress?: string;
726
726
  }, {
727
727
  exchangeId?: string | number | bigint;
728
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
728
+ configId?: string;
729
729
  signerAddress?: string;
730
730
  }>;
731
731
  export declare const getExchangesValidation: z.ZodObject<{
@@ -735,24 +735,24 @@ export declare const getExchangesValidation: z.ZodObject<{
735
735
  exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
736
736
  exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
737
737
  } & {
738
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
738
+ configId: z.ZodEffects<z.ZodString, string, string>;
739
739
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
740
740
  }, "strip", z.ZodTypeAny, {
741
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
742
- signerAddress?: string;
741
+ configId?: string;
743
742
  exchangesFilter?: Record<string, unknown>;
744
743
  exchangesSkip?: number;
745
744
  exchangesFirst?: number;
746
745
  exchangesOrderBy?: string;
747
746
  exchangesOrderDirection?: string;
748
- }, {
749
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
750
747
  signerAddress?: string;
748
+ }, {
749
+ configId?: string;
751
750
  exchangesFilter?: Record<string, unknown>;
752
751
  exchangesSkip?: number;
753
752
  exchangesFirst?: number;
754
753
  exchangesOrderBy?: string;
755
754
  exchangesOrderDirection?: string;
755
+ signerAddress?: string;
756
756
  }>;
757
757
  export declare const getExchangesValidationShape: {
758
758
  exchangesSkip: z.ZodOptional<z.ZodNumber>;
@@ -761,7 +761,7 @@ export declare const getExchangesValidationShape: {
761
761
  exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
762
762
  exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
763
763
  } & {
764
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
764
+ configId: z.ZodEffects<z.ZodString, string, string>;
765
765
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
766
766
  };
767
767
  export declare const getExchangesResourceValidation: z.ZodObject<{
@@ -794,11 +794,10 @@ export declare const getSellersValidation: z.ZodObject<{
794
794
  includeFunds: z.ZodOptional<z.ZodBoolean>;
795
795
  includeLogs: z.ZodOptional<z.ZodBoolean>;
796
796
  } & {
797
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
797
+ configId: z.ZodEffects<z.ZodString, string, string>;
798
798
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
799
799
  }, "strip", z.ZodTypeAny, {
800
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
801
- signerAddress?: string;
800
+ configId?: string;
802
801
  sellersFilter?: Record<string, unknown>;
803
802
  sellersSkip?: number;
804
803
  sellersFirst?: number;
@@ -808,9 +807,9 @@ export declare const getSellersValidation: z.ZodObject<{
808
807
  includeOffers?: boolean;
809
808
  includeFunds?: boolean;
810
809
  includeLogs?: boolean;
811
- }, {
812
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
813
810
  signerAddress?: string;
811
+ }, {
812
+ configId?: string;
814
813
  sellersFilter?: Record<string, unknown>;
815
814
  sellersSkip?: number;
816
815
  sellersFirst?: number;
@@ -820,6 +819,7 @@ export declare const getSellersValidation: z.ZodObject<{
820
819
  includeOffers?: boolean;
821
820
  includeFunds?: boolean;
822
821
  includeLogs?: boolean;
822
+ signerAddress?: string;
823
823
  }>;
824
824
  export declare const getSellersValidationShape: {
825
825
  sellersSkip: z.ZodOptional<z.ZodNumber>;
@@ -832,7 +832,7 @@ export declare const getSellersValidationShape: {
832
832
  includeFunds: z.ZodOptional<z.ZodBoolean>;
833
833
  includeLogs: z.ZodOptional<z.ZodBoolean>;
834
834
  } & {
835
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
835
+ configId: z.ZodEffects<z.ZodString, string, string>;
836
836
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
837
837
  };
838
838
  export declare const getSellersResourceValidation: z.ZodObject<{
@@ -878,12 +878,11 @@ export declare const getSellersByAddressValidation: z.ZodObject<{
878
878
  includeFunds: z.ZodOptional<z.ZodBoolean>;
879
879
  includeLogs: z.ZodOptional<z.ZodBoolean>;
880
880
  } & {
881
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
881
+ configId: z.ZodEffects<z.ZodString, string, string>;
882
882
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
883
883
  }, "strip", z.ZodTypeAny, {
884
884
  address?: string;
885
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
886
- signerAddress?: string;
885
+ configId?: string;
887
886
  sellersFilter?: Record<string, unknown>;
888
887
  sellersSkip?: number;
889
888
  sellersFirst?: number;
@@ -893,10 +892,10 @@ export declare const getSellersByAddressValidation: z.ZodObject<{
893
892
  includeOffers?: boolean;
894
893
  includeFunds?: boolean;
895
894
  includeLogs?: boolean;
895
+ signerAddress?: string;
896
896
  }, {
897
897
  address?: string;
898
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
899
- signerAddress?: string;
898
+ configId?: string;
900
899
  sellersFilter?: Record<string, unknown>;
901
900
  sellersSkip?: number;
902
901
  sellersFirst?: number;
@@ -906,6 +905,7 @@ export declare const getSellersByAddressValidation: z.ZodObject<{
906
905
  includeOffers?: boolean;
907
906
  includeFunds?: boolean;
908
907
  includeLogs?: boolean;
908
+ signerAddress?: string;
909
909
  }>;
910
910
  export declare const getSellersByAddressValidationShape: {
911
911
  address: z.ZodString;
@@ -919,7 +919,7 @@ export declare const getSellersByAddressValidationShape: {
919
919
  includeFunds: z.ZodOptional<z.ZodBoolean>;
920
920
  includeLogs: z.ZodOptional<z.ZodBoolean>;
921
921
  } & {
922
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
922
+ configId: z.ZodEffects<z.ZodString, string, string>;
923
923
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
924
924
  };
925
925
  export declare const getSellersByAddressResourceValidation: z.ZodObject<{
@@ -963,24 +963,24 @@ export declare const getDisputeResolversValidation: z.ZodObject<{
963
963
  disputeResolversOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
964
964
  disputeResolversFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
965
965
  } & {
966
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
966
+ configId: z.ZodEffects<z.ZodString, string, string>;
967
967
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
968
968
  }, "strip", z.ZodTypeAny, {
969
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
970
- signerAddress?: string;
969
+ configId?: string;
971
970
  disputeResolversFilter?: Record<string, unknown>;
972
971
  disputeResolversSkip?: number;
973
972
  disputeResolversFirst?: number;
974
973
  disputeResolversOrderBy?: string;
975
974
  disputeResolversOrderDirection?: string;
976
- }, {
977
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
978
975
  signerAddress?: string;
976
+ }, {
977
+ configId?: string;
979
978
  disputeResolversFilter?: Record<string, unknown>;
980
979
  disputeResolversSkip?: number;
981
980
  disputeResolversFirst?: number;
982
981
  disputeResolversOrderBy?: string;
983
982
  disputeResolversOrderDirection?: string;
983
+ signerAddress?: string;
984
984
  }>;
985
985
  export declare const getDisputeResolversValidationShape: {
986
986
  disputeResolversSkip: z.ZodOptional<z.ZodNumber>;
@@ -989,7 +989,7 @@ export declare const getDisputeResolversValidationShape: {
989
989
  disputeResolversOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
990
990
  disputeResolversFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
991
991
  } & {
992
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
992
+ configId: z.ZodEffects<z.ZodString, string, string>;
993
993
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
994
994
  };
995
995
  export declare const getDisputeResolversResourceValidation: z.ZodObject<{
@@ -1024,11 +1024,10 @@ export declare const getOffersValidation: z.ZodObject<{
1024
1024
  exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
1025
1025
  exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1026
1026
  } & {
1027
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1027
+ configId: z.ZodEffects<z.ZodString, string, string>;
1028
1028
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1029
1029
  }, "strip", z.ZodTypeAny, {
1030
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
1031
- signerAddress?: string;
1030
+ configId?: string;
1032
1031
  exchangesFilter?: Record<string, unknown>;
1033
1032
  offersFilter?: Record<string, unknown>;
1034
1033
  exchangesSkip?: number;
@@ -1040,9 +1039,9 @@ export declare const getOffersValidation: z.ZodObject<{
1040
1039
  offersFirst?: number;
1041
1040
  offersOrderBy?: string;
1042
1041
  offersOrderDirection?: string;
1043
- }, {
1044
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
1045
1042
  signerAddress?: string;
1043
+ }, {
1044
+ configId?: string;
1046
1045
  exchangesFilter?: Record<string, unknown>;
1047
1046
  offersFilter?: Record<string, unknown>;
1048
1047
  exchangesSkip?: number;
@@ -1054,6 +1053,7 @@ export declare const getOffersValidation: z.ZodObject<{
1054
1053
  offersFirst?: number;
1055
1054
  offersOrderBy?: string;
1056
1055
  offersOrderDirection?: string;
1056
+ signerAddress?: string;
1057
1057
  }>;
1058
1058
  export declare const getOffersValidationShape: {
1059
1059
  offersSkip: z.ZodOptional<z.ZodNumber>;
@@ -1068,7 +1068,7 @@ export declare const getOffersValidationShape: {
1068
1068
  exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
1069
1069
  exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1070
1070
  } & {
1071
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1071
+ configId: z.ZodEffects<z.ZodString, string, string>;
1072
1072
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1073
1073
  };
1074
1074
  export declare const getOffersResourceValidation: z.ZodObject<{
@@ -1115,24 +1115,24 @@ export declare const getAllProductsWithNotVoidedVariantsValidation: z.ZodObject<
1115
1115
  productsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
1116
1116
  productsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1117
1117
  } & {
1118
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1118
+ configId: z.ZodEffects<z.ZodString, string, string>;
1119
1119
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1120
1120
  }, "strip", z.ZodTypeAny, {
1121
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
1122
- signerAddress?: string;
1121
+ configId?: string;
1123
1122
  productsFilter?: Record<string, unknown>;
1124
1123
  productsSkip?: number;
1125
1124
  productsFirst?: number;
1126
1125
  productsOrderBy?: string;
1127
1126
  productsOrderDirection?: string;
1128
- }, {
1129
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
1130
1127
  signerAddress?: string;
1128
+ }, {
1129
+ configId?: string;
1131
1130
  productsFilter?: Record<string, unknown>;
1132
1131
  productsSkip?: number;
1133
1132
  productsFirst?: number;
1134
1133
  productsOrderBy?: string;
1135
1134
  productsOrderDirection?: string;
1135
+ signerAddress?: string;
1136
1136
  }>;
1137
1137
  export declare const getAllProductsWithNotVoidedVariantsValidationShape: {
1138
1138
  productsSkip: z.ZodOptional<z.ZodNumber>;
@@ -1141,7 +1141,7 @@ export declare const getAllProductsWithNotVoidedVariantsValidationShape: {
1141
1141
  productsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
1142
1142
  productsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1143
1143
  } & {
1144
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1144
+ configId: z.ZodEffects<z.ZodString, string, string>;
1145
1145
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1146
1146
  };
1147
1147
  export declare const getAllProductsWithNotVoidedVariantsResourceValidation: z.ZodObject<{
@@ -1267,12 +1267,12 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1267
1267
  returnPeriodInDays?: number;
1268
1268
  }>;
1269
1269
  } & {
1270
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1270
+ configId: z.ZodEffects<z.ZodString, string, string>;
1271
1271
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1272
1272
  }, "strip", z.ZodTypeAny, {
1273
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
1274
- signerAddress?: string;
1273
+ configId?: string;
1275
1274
  template?: string;
1275
+ signerAddress?: string;
1276
1276
  offerData?: {
1277
1277
  agentId?: string | number | bigint;
1278
1278
  disputeResolverId?: string | number | bigint;
@@ -1307,9 +1307,9 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1307
1307
  returnPeriodInDays?: number;
1308
1308
  };
1309
1309
  }, {
1310
- configId?: "local-31337-0" | "testing-80002-0" | "testing-84532-0" | "testing-11155111-0" | "testing-11155420-0" | "testing-421614-0" | "staging-80002-0" | "staging-84532-0" | "staging-11155111-0" | "staging-11155420-0" | "staging-421614-0" | "production-137-0" | "production-42161-0" | "production-8453-0" | "production-10-0" | "production-1-0";
1311
- signerAddress?: string;
1310
+ configId?: string;
1312
1311
  template?: string;
1312
+ signerAddress?: string;
1313
1313
  offerData?: {
1314
1314
  agentId?: string | number | bigint;
1315
1315
  disputeResolverId?: string | number | bigint;
@@ -1345,23 +1345,23 @@ export declare const renderContractualAgreementValidation: z.ZodObject<{
1345
1345
  };
1346
1346
  }>;
1347
1347
  export declare const storeBundleItemProductV1MetadataValidation: z.ZodObject<{
1348
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1348
+ configId: z.ZodEffects<z.ZodString, string, string>;
1349
1349
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1350
1350
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1351
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1351
+ configId: z.ZodEffects<z.ZodString, string, string>;
1352
1352
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1353
1353
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1354
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1354
+ configId: z.ZodEffects<z.ZodString, string, string>;
1355
1355
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1356
1356
  }, z.ZodTypeAny, "passthrough">>;
1357
1357
  export declare const storeBundleItemNftMetadataValidation: z.ZodObject<{
1358
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1358
+ configId: z.ZodEffects<z.ZodString, string, string>;
1359
1359
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1360
1360
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1361
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1361
+ configId: z.ZodEffects<z.ZodString, string, string>;
1362
1362
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1363
1363
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1364
- configId: z.ZodEnum<["local-31337-0", "testing-80002-0", "testing-84532-0", "testing-11155111-0", "testing-11155420-0", "testing-421614-0", "staging-80002-0", "staging-84532-0", "staging-11155111-0", "staging-11155420-0", "staging-421614-0", "production-137-0", "production-42161-0", "production-8453-0", "production-10-0", "production-1-0"]>;
1364
+ configId: z.ZodEffects<z.ZodString, string, string>;
1365
1365
  signerAddress: z.ZodEffects<z.ZodString, string, string>;
1366
1366
  }, z.ZodTypeAny, "passthrough">>;
1367
1367
  export { signedTransactionValidation, signedTransactionValidationZod, signTransactionValidation, signTransactionValidationZod, } from "../../common/mcp-server/transactionSigning.js";