@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,95 +1,79 @@
1
1
  import { seller } from "@bosonprotocol/metadata";
2
- import { z } from "zod";
3
- declare const InitializeSdkParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
4
- configId: z.ZodOptional<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"]>>;
5
- infuraIpfsProjectId: z.ZodOptional<z.ZodString>;
6
- infuraIpfsProjectSecret: z.ZodOptional<z.ZodString>;
7
- }, "strip", z.ZodTypeAny, {
8
- 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
- infuraIpfsProjectId?: string;
10
- infuraIpfsProjectSecret?: string;
11
- }, {
12
- 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";
13
- infuraIpfsProjectId?: string;
14
- infuraIpfsProjectSecret?: string;
15
- }>>;
16
- export declare class InitializeSdkParameters extends InitializeSdkParameters_base {
17
- }
18
- declare const CreateOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
19
- exchangeTokenAddress: z.ZodOptional<z.ZodString>;
20
- price: z.ZodString;
21
- sellerDeposit: z.ZodString;
22
- agentId: z.ZodOptional<z.ZodString>;
23
- buyerCancellationPenalty: z.ZodString;
24
- quantityAvailable: z.ZodNumber;
25
- validFromDateInMS: z.ZodNumber;
26
- validUntilDateInMS: z.ZodNumber;
27
- voucherRedeemableFromDateInMS: z.ZodNumber;
28
- voucherRedeemableUntilDateInMS: z.ZodNumber;
29
- disputePeriodDurationInMS: z.ZodNumber;
30
- voucherValidDurationInMS: z.ZodNumber;
31
- resolutionPeriodDurationInMS: z.ZodNumber;
32
- disputeResolverId: z.ZodOptional<z.ZodString>;
33
- metadataUri: z.ZodString;
34
- metadataHash: z.ZodString;
2
+ declare const CreateOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
3
+ exchangeTokenAddress: import("zod").ZodOptional<import("zod").ZodString>;
4
+ price: import("zod").ZodString;
5
+ sellerDeposit: import("zod").ZodString;
6
+ agentId: import("zod").ZodOptional<import("zod").ZodString>;
7
+ buyerCancellationPenalty: import("zod").ZodString;
8
+ quantityAvailable: import("zod").ZodNumber;
9
+ validFromDateInMS: import("zod").ZodNumber;
10
+ validUntilDateInMS: import("zod").ZodNumber;
11
+ voucherRedeemableFromDateInMS: import("zod").ZodNumber;
12
+ voucherRedeemableUntilDateInMS: import("zod").ZodNumber;
13
+ disputePeriodDurationInMS: import("zod").ZodNumber;
14
+ voucherValidDurationInMS: import("zod").ZodNumber;
15
+ resolutionPeriodDurationInMS: import("zod").ZodNumber;
16
+ disputeResolverId: import("zod").ZodOptional<import("zod").ZodString>;
17
+ metadataUri: import("zod").ZodString;
18
+ metadataHash: import("zod").ZodString;
35
19
  } & {
36
- 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"]>;
37
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
38
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
39
- exchangeTokenAddress: z.ZodOptional<z.ZodString>;
40
- price: z.ZodString;
41
- sellerDeposit: z.ZodString;
42
- agentId: z.ZodOptional<z.ZodString>;
43
- buyerCancellationPenalty: z.ZodString;
44
- quantityAvailable: z.ZodNumber;
45
- validFromDateInMS: z.ZodNumber;
46
- validUntilDateInMS: z.ZodNumber;
47
- voucherRedeemableFromDateInMS: z.ZodNumber;
48
- voucherRedeemableUntilDateInMS: z.ZodNumber;
49
- disputePeriodDurationInMS: z.ZodNumber;
50
- voucherValidDurationInMS: z.ZodNumber;
51
- resolutionPeriodDurationInMS: z.ZodNumber;
52
- disputeResolverId: z.ZodOptional<z.ZodString>;
53
- metadataUri: z.ZodString;
54
- metadataHash: z.ZodString;
20
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
21
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
22
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
23
+ exchangeTokenAddress: import("zod").ZodOptional<import("zod").ZodString>;
24
+ price: import("zod").ZodString;
25
+ sellerDeposit: import("zod").ZodString;
26
+ agentId: import("zod").ZodOptional<import("zod").ZodString>;
27
+ buyerCancellationPenalty: import("zod").ZodString;
28
+ quantityAvailable: import("zod").ZodNumber;
29
+ validFromDateInMS: import("zod").ZodNumber;
30
+ validUntilDateInMS: import("zod").ZodNumber;
31
+ voucherRedeemableFromDateInMS: import("zod").ZodNumber;
32
+ voucherRedeemableUntilDateInMS: import("zod").ZodNumber;
33
+ disputePeriodDurationInMS: import("zod").ZodNumber;
34
+ voucherValidDurationInMS: import("zod").ZodNumber;
35
+ resolutionPeriodDurationInMS: import("zod").ZodNumber;
36
+ disputeResolverId: import("zod").ZodOptional<import("zod").ZodString>;
37
+ metadataUri: import("zod").ZodString;
38
+ metadataHash: import("zod").ZodString;
55
39
  } & {
56
- 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"]>;
57
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
58
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
59
- exchangeTokenAddress: z.ZodOptional<z.ZodString>;
60
- price: z.ZodString;
61
- sellerDeposit: z.ZodString;
62
- agentId: z.ZodOptional<z.ZodString>;
63
- buyerCancellationPenalty: z.ZodString;
64
- quantityAvailable: z.ZodNumber;
65
- validFromDateInMS: z.ZodNumber;
66
- validUntilDateInMS: z.ZodNumber;
67
- voucherRedeemableFromDateInMS: z.ZodNumber;
68
- voucherRedeemableUntilDateInMS: z.ZodNumber;
69
- disputePeriodDurationInMS: z.ZodNumber;
70
- voucherValidDurationInMS: z.ZodNumber;
71
- resolutionPeriodDurationInMS: z.ZodNumber;
72
- disputeResolverId: z.ZodOptional<z.ZodString>;
73
- metadataUri: z.ZodString;
74
- metadataHash: z.ZodString;
40
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
41
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
42
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
43
+ exchangeTokenAddress: import("zod").ZodOptional<import("zod").ZodString>;
44
+ price: import("zod").ZodString;
45
+ sellerDeposit: import("zod").ZodString;
46
+ agentId: import("zod").ZodOptional<import("zod").ZodString>;
47
+ buyerCancellationPenalty: import("zod").ZodString;
48
+ quantityAvailable: import("zod").ZodNumber;
49
+ validFromDateInMS: import("zod").ZodNumber;
50
+ validUntilDateInMS: import("zod").ZodNumber;
51
+ voucherRedeemableFromDateInMS: import("zod").ZodNumber;
52
+ voucherRedeemableUntilDateInMS: import("zod").ZodNumber;
53
+ disputePeriodDurationInMS: import("zod").ZodNumber;
54
+ voucherValidDurationInMS: import("zod").ZodNumber;
55
+ resolutionPeriodDurationInMS: import("zod").ZodNumber;
56
+ disputeResolverId: import("zod").ZodOptional<import("zod").ZodString>;
57
+ metadataUri: import("zod").ZodString;
58
+ metadataHash: import("zod").ZodString;
75
59
  } & {
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"]>;
77
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
78
- }, z.ZodTypeAny, "passthrough">>>;
60
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
61
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
62
+ }, import("zod").ZodTypeAny, "passthrough">>>;
79
63
  export declare class CreateOfferParameters extends CreateOfferParameters_base {
80
64
  }
81
- declare const VoidOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
82
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
65
+ declare const VoidOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
66
+ offerId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
83
67
  } & {
84
- 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"]>;
85
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
86
- }, "strip", z.ZodTypeAny, {
68
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
69
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
70
+ }, "strip", import("zod").ZodTypeAny, {
87
71
  offerId?: string | number | bigint;
88
- 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";
72
+ configId?: string;
89
73
  signerAddress?: string;
90
74
  }, {
91
75
  offerId?: string | number | bigint;
92
- 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";
76
+ configId?: string;
93
77
  signerAddress?: string;
94
78
  }>>;
95
79
  export declare class VoidOfferParameters extends VoidOfferParameters_base {
@@ -104,40 +88,40 @@ type CreateSellerNonMetadataFields = {
104
88
  authTokenType: number;
105
89
  };
106
90
  export type CreateSellerParametersType = CreateSellerNonMetadataFields & seller.SellerMetadata;
107
- declare const CreateSellerParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
108
- assistant: z.ZodEffects<z.ZodString, string, string>;
109
- admin: z.ZodEffects<z.ZodString, string, string>;
110
- treasury: z.ZodEffects<z.ZodString, string, string>;
111
- contractUri: z.ZodString;
112
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
113
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
114
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
91
+ declare const CreateSellerParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
92
+ assistant: import("zod").ZodEffects<import("zod").ZodString, string, string>;
93
+ admin: import("zod").ZodEffects<import("zod").ZodString, string, string>;
94
+ treasury: import("zod").ZodEffects<import("zod").ZodString, string, string>;
95
+ contractUri: import("zod").ZodString;
96
+ royaltyPercentage: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
97
+ authTokenId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
98
+ authTokenType: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
115
99
  } & {
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"]>;
117
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
118
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
119
- assistant: z.ZodEffects<z.ZodString, string, string>;
120
- admin: z.ZodEffects<z.ZodString, string, string>;
121
- treasury: z.ZodEffects<z.ZodString, string, string>;
122
- contractUri: z.ZodString;
123
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
124
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
125
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
100
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
101
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
102
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
103
+ assistant: import("zod").ZodEffects<import("zod").ZodString, string, string>;
104
+ admin: import("zod").ZodEffects<import("zod").ZodString, string, string>;
105
+ treasury: import("zod").ZodEffects<import("zod").ZodString, string, string>;
106
+ contractUri: import("zod").ZodString;
107
+ royaltyPercentage: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
108
+ authTokenId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
109
+ authTokenType: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
126
110
  } & {
127
- 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"]>;
128
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
129
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
130
- assistant: z.ZodEffects<z.ZodString, string, string>;
131
- admin: z.ZodEffects<z.ZodString, string, string>;
132
- treasury: z.ZodEffects<z.ZodString, string, string>;
133
- contractUri: z.ZodString;
134
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
135
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
136
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
111
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
112
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
113
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
114
+ assistant: import("zod").ZodEffects<import("zod").ZodString, string, string>;
115
+ admin: import("zod").ZodEffects<import("zod").ZodString, string, string>;
116
+ treasury: import("zod").ZodEffects<import("zod").ZodString, string, string>;
117
+ contractUri: import("zod").ZodString;
118
+ royaltyPercentage: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
119
+ authTokenId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
120
+ authTokenType: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
137
121
  } & {
138
- 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"]>;
139
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
140
- }, z.ZodTypeAny, "passthrough">>>;
122
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
123
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
124
+ }, import("zod").ZodTypeAny, "passthrough">>>;
141
125
  export declare class CreateSellerParameters extends CreateSellerParameters_base {
142
126
  assistant: CreateSellerParametersType["assistant"];
143
127
  admin: CreateSellerParametersType["admin"];
@@ -158,12 +142,12 @@ export declare class CreateSellerParameters extends CreateSellerParameters_base
158
142
  socialLinks: CreateSellerParametersType["socialLinks"];
159
143
  salesChannels: CreateSellerParametersType["salesChannels"];
160
144
  }
161
- declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
162
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
163
- list: z.ZodArray<z.ZodObject<{
164
- tokenAddress: z.ZodEffects<z.ZodString, string, string>;
165
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
166
- }, "strip", z.ZodTypeAny, {
145
+ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
146
+ entityId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
147
+ list: import("zod").ZodArray<import("zod").ZodObject<{
148
+ tokenAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
149
+ amount: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
150
+ }, "strip", import("zod").ZodTypeAny, {
167
151
  tokenAddress?: string;
168
152
  amount?: string | number | bigint;
169
153
  }, {
@@ -171,11 +155,11 @@ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParamet
171
155
  amount?: string | number | bigint;
172
156
  }>, "many">;
173
157
  } & {
174
- 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
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
176
- }, "strip", z.ZodTypeAny, {
158
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
159
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
160
+ }, "strip", import("zod").ZodTypeAny, {
177
161
  entityId?: string | number | bigint;
178
- 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";
162
+ configId?: string;
179
163
  signerAddress?: string;
180
164
  list?: {
181
165
  tokenAddress?: string;
@@ -183,7 +167,7 @@ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParamet
183
167
  }[];
184
168
  }, {
185
169
  entityId?: string | number | bigint;
186
- 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";
170
+ configId?: string;
187
171
  signerAddress?: string;
188
172
  list?: {
189
173
  tokenAddress?: string;
@@ -192,161 +176,161 @@ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParamet
192
176
  }>>;
193
177
  export declare class WithdrawFundsParameters extends WithdrawFundsParameters_base {
194
178
  }
195
- declare const DepositFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
196
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
197
- tokenAddress: z.ZodEffects<z.ZodString, string, string>;
198
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
179
+ declare const DepositFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
180
+ entityId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
181
+ tokenAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
182
+ amount: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
199
183
  } & {
200
- 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"]>;
201
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
202
- }, "strip", z.ZodTypeAny, {
184
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
185
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
186
+ }, "strip", import("zod").ZodTypeAny, {
203
187
  tokenAddress?: string;
204
188
  entityId?: string | number | bigint;
205
189
  amount?: string | number | bigint;
206
- 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";
190
+ configId?: string;
207
191
  signerAddress?: string;
208
192
  }, {
209
193
  tokenAddress?: string;
210
194
  entityId?: string | number | bigint;
211
195
  amount?: string | number | bigint;
212
- 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";
196
+ configId?: string;
213
197
  signerAddress?: string;
214
198
  }>>;
215
199
  export declare class DepositFundsParameters extends DepositFundsParameters_base {
216
200
  }
217
- declare const CommitToOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
218
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
219
- buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
201
+ declare const CommitToOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
202
+ offerId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
203
+ buyer: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
220
204
  } & {
221
- 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"]>;
222
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
223
- }, "strip", z.ZodTypeAny, {
205
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
206
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
207
+ }, "strip", import("zod").ZodTypeAny, {
224
208
  buyer?: string;
225
209
  offerId?: string | number | bigint;
226
- 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";
210
+ configId?: string;
227
211
  signerAddress?: string;
228
212
  }, {
229
213
  buyer?: string;
230
214
  offerId?: string | number | bigint;
231
- 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";
215
+ configId?: string;
232
216
  signerAddress?: string;
233
217
  }>>;
234
218
  export declare class CommitToOfferParameters extends CommitToOfferParameters_base {
235
219
  }
236
- declare const CancelVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
237
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
220
+ declare const CancelVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
221
+ exchangeId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
238
222
  } & {
239
- 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"]>;
240
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
241
- }, "strip", z.ZodTypeAny, {
223
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
224
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
225
+ }, "strip", import("zod").ZodTypeAny, {
242
226
  exchangeId?: string | number | bigint;
243
- 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";
227
+ configId?: string;
244
228
  signerAddress?: string;
245
229
  }, {
246
230
  exchangeId?: string | number | bigint;
247
- 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";
231
+ configId?: string;
248
232
  signerAddress?: string;
249
233
  }>>;
250
234
  export declare class CancelVoucherParameters extends CancelVoucherParameters_base {
251
235
  }
252
- declare const RedeemVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
253
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
236
+ declare const RedeemVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
237
+ exchangeId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
254
238
  } & {
255
- 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"]>;
256
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
257
- }, "strip", z.ZodTypeAny, {
239
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
240
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
241
+ }, "strip", import("zod").ZodTypeAny, {
258
242
  exchangeId?: string | number | bigint;
259
- 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";
243
+ configId?: string;
260
244
  signerAddress?: string;
261
245
  }, {
262
246
  exchangeId?: string | number | bigint;
263
- 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";
247
+ configId?: string;
264
248
  signerAddress?: string;
265
249
  }>>;
266
250
  export declare class RedeemVoucherParameters extends RedeemVoucherParameters_base {
267
251
  }
268
- declare const RevokeVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
269
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
252
+ declare const RevokeVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
253
+ exchangeId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
270
254
  } & {
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"]>;
272
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
273
- }, "strip", z.ZodTypeAny, {
255
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
256
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
257
+ }, "strip", import("zod").ZodTypeAny, {
274
258
  exchangeId?: string | number | bigint;
275
- 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";
259
+ configId?: string;
276
260
  signerAddress?: string;
277
261
  }, {
278
262
  exchangeId?: string | number | bigint;
279
- 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";
263
+ configId?: string;
280
264
  signerAddress?: string;
281
265
  }>>;
282
266
  export declare class RevokeVoucherParameters extends RevokeVoucherParameters_base {
283
267
  }
284
- declare const ExtendDisputeTimeoutParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
285
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
286
- newDisputeTimeout: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
268
+ declare const ExtendDisputeTimeoutParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
269
+ exchangeId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
270
+ newDisputeTimeout: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
287
271
  } & {
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"]>;
289
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
290
- }, "strip", z.ZodTypeAny, {
272
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
273
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
274
+ }, "strip", import("zod").ZodTypeAny, {
291
275
  exchangeId?: string | number | bigint;
292
276
  newDisputeTimeout?: string | number | bigint;
293
- 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";
277
+ configId?: string;
294
278
  signerAddress?: string;
295
279
  }, {
296
280
  exchangeId?: string | number | bigint;
297
281
  newDisputeTimeout?: string | number | bigint;
298
- 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";
282
+ configId?: string;
299
283
  signerAddress?: string;
300
284
  }>>;
301
285
  export declare class ExtendDisputeTimeoutParameters extends ExtendDisputeTimeoutParameters_base {
302
286
  }
303
- declare const ExpireDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
304
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
287
+ declare const ExpireDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
288
+ exchangeId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
305
289
  } & {
306
- 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"]>;
307
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
308
- }, "strip", z.ZodTypeAny, {
290
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
291
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
292
+ }, "strip", import("zod").ZodTypeAny, {
309
293
  exchangeId?: string | number | bigint;
310
- 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";
294
+ configId?: string;
311
295
  signerAddress?: string;
312
296
  }, {
313
297
  exchangeId?: string | number | bigint;
314
- 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";
298
+ configId?: string;
315
299
  signerAddress?: string;
316
300
  }>>;
317
301
  export declare class ExpireDisputeParameters extends ExpireDisputeParameters_base {
318
302
  }
319
- declare const ExpireDisputeBatchParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
320
- exchangeIds: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
303
+ declare const ExpireDisputeBatchParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
304
+ exchangeIds: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
321
305
  } & {
322
- 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"]>;
323
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
324
- }, "strip", z.ZodTypeAny, {
325
- 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";
306
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
307
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
308
+ }, "strip", import("zod").ZodTypeAny, {
309
+ configId?: string;
326
310
  signerAddress?: string;
327
311
  exchangeIds?: (string | number | bigint)[];
328
312
  }, {
329
- 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";
313
+ configId?: string;
330
314
  signerAddress?: string;
331
315
  exchangeIds?: (string | number | bigint)[];
332
316
  }>>;
333
317
  export declare class ExpireDisputeBatchParameters extends ExpireDisputeBatchParameters_base {
334
318
  }
335
- declare const ResolveDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
336
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
337
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
338
- sigR: z.ZodString;
339
- sigS: z.ZodString;
340
- sigV: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
319
+ declare const ResolveDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
320
+ exchangeId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
321
+ buyerPercentBasisPoints: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
322
+ sigR: import("zod").ZodString;
323
+ sigS: import("zod").ZodString;
324
+ sigV: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
341
325
  } & {
342
- 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"]>;
343
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
344
- }, "strip", z.ZodTypeAny, {
326
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
327
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
328
+ }, "strip", import("zod").ZodTypeAny, {
345
329
  exchangeId?: string | number | bigint;
346
330
  sigR?: string;
347
331
  sigS?: string;
348
332
  sigV?: string | number | bigint;
349
- 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";
333
+ configId?: string;
350
334
  signerAddress?: string;
351
335
  buyerPercentBasisPoints?: string | number | bigint;
352
336
  }, {
@@ -354,77 +338,76 @@ declare const ResolveDisputeParameters_base: import("@goat-sdk/core").ToolParame
354
338
  sigR?: string;
355
339
  sigS?: string;
356
340
  sigV?: string | number | bigint;
357
- 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";
341
+ configId?: string;
358
342
  signerAddress?: string;
359
343
  buyerPercentBasisPoints?: string | number | bigint;
360
344
  }>>;
361
345
  export declare class ResolveDisputeParameters extends ResolveDisputeParameters_base {
362
346
  }
363
- declare const CreateDisputeResolutionProposalParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
364
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
365
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
347
+ declare const CreateDisputeResolutionProposalParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
348
+ exchangeId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
349
+ buyerPercentBasisPoints: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
366
350
  } & {
367
- 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"]>;
368
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
369
- }, "strip", z.ZodTypeAny, {
351
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
352
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
353
+ }, "strip", import("zod").ZodTypeAny, {
370
354
  exchangeId?: string | number | bigint;
371
- 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;
372
356
  signerAddress?: string;
373
357
  buyerPercentBasisPoints?: string | number | bigint;
374
358
  }, {
375
359
  exchangeId?: string | number | bigint;
376
- 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";
360
+ configId?: string;
377
361
  signerAddress?: string;
378
362
  buyerPercentBasisPoints?: string | number | bigint;
379
363
  }>>;
380
364
  export declare class CreateDisputeResolutionProposalParameters extends CreateDisputeResolutionProposalParameters_base {
381
365
  }
382
- declare const GetFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
383
- fundsSkip: z.ZodOptional<z.ZodNumber>;
384
- fundsFirst: z.ZodOptional<z.ZodNumber>;
385
- fundsOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
386
- fundsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
387
- fundsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
366
+ declare const GetFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
367
+ fundsSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
368
+ fundsFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
369
+ fundsOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
370
+ fundsOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
371
+ fundsFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
388
372
  } & {
389
- 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"]>;
390
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
391
- }, "strip", z.ZodTypeAny, {
392
- 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";
393
- signerAddress?: string;
373
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
374
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
375
+ }, "strip", import("zod").ZodTypeAny, {
376
+ configId?: string;
394
377
  fundsFilter?: Record<string, unknown>;
395
378
  fundsSkip?: number;
396
379
  fundsFirst?: number;
397
380
  fundsOrderBy?: string;
398
381
  fundsOrderDirection?: string;
399
- }, {
400
- 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";
401
382
  signerAddress?: string;
383
+ }, {
384
+ configId?: string;
402
385
  fundsFilter?: Record<string, unknown>;
403
386
  fundsSkip?: number;
404
387
  fundsFirst?: number;
405
388
  fundsOrderBy?: string;
406
389
  fundsOrderDirection?: string;
390
+ signerAddress?: string;
407
391
  }>>;
408
392
  export declare class GetFundsParameters extends GetFundsParameters_base {
409
393
  }
410
- declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
411
- offersSkip: z.ZodOptional<z.ZodNumber>;
412
- offersFirst: z.ZodOptional<z.ZodNumber>;
413
- offersOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
414
- offersOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
415
- offersFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
416
- includeExchanges: z.ZodOptional<z.ZodBoolean>;
417
- exchangesSkip: z.ZodOptional<z.ZodNumber>;
418
- exchangesFirst: z.ZodOptional<z.ZodNumber>;
419
- exchangesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
420
- exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
421
- exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
394
+ declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
395
+ offersSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
396
+ offersFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
397
+ offersOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
398
+ offersOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
399
+ offersFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
400
+ includeExchanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
401
+ exchangesSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
402
+ exchangesFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
403
+ exchangesOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
404
+ exchangesOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
405
+ exchangesFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
422
406
  } & {
423
- 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"]>;
424
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
425
- }, "strip", z.ZodTypeAny, {
426
- 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";
427
- signerAddress?: string;
407
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
408
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
409
+ }, "strip", import("zod").ZodTypeAny, {
410
+ configId?: string;
428
411
  exchangesFilter?: Record<string, unknown>;
429
412
  offersFilter?: Record<string, unknown>;
430
413
  exchangesSkip?: number;
@@ -436,9 +419,9 @@ declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersS
436
419
  offersFirst?: number;
437
420
  offersOrderBy?: string;
438
421
  offersOrderDirection?: string;
439
- }, {
440
- 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";
441
422
  signerAddress?: string;
423
+ }, {
424
+ configId?: string;
442
425
  exchangesFilter?: Record<string, unknown>;
443
426
  offersFilter?: Record<string, unknown>;
444
427
  exchangesSkip?: number;
@@ -450,53 +433,53 @@ declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersS
450
433
  offersFirst?: number;
451
434
  offersOrderBy?: string;
452
435
  offersOrderDirection?: string;
436
+ signerAddress?: string;
453
437
  }>>;
454
438
  export declare class GetOffersParameters extends GetOffersParameters_base {
455
439
  }
456
- declare const GetExchangesParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
457
- exchangesSkip: z.ZodOptional<z.ZodNumber>;
458
- exchangesFirst: z.ZodOptional<z.ZodNumber>;
459
- exchangesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
460
- exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
461
- exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
440
+ declare const GetExchangesParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
441
+ exchangesSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
442
+ exchangesFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
443
+ exchangesOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
444
+ exchangesOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
445
+ exchangesFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
462
446
  } & {
463
- 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
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
465
- }, "strip", z.ZodTypeAny, {
466
- 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";
467
- signerAddress?: string;
447
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
448
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
449
+ }, "strip", import("zod").ZodTypeAny, {
450
+ configId?: string;
468
451
  exchangesFilter?: Record<string, unknown>;
469
452
  exchangesSkip?: number;
470
453
  exchangesFirst?: number;
471
454
  exchangesOrderBy?: string;
472
455
  exchangesOrderDirection?: string;
473
- }, {
474
- 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";
475
456
  signerAddress?: string;
457
+ }, {
458
+ configId?: string;
476
459
  exchangesFilter?: Record<string, unknown>;
477
460
  exchangesSkip?: number;
478
461
  exchangesFirst?: number;
479
462
  exchangesOrderBy?: string;
480
463
  exchangesOrderDirection?: string;
464
+ signerAddress?: string;
481
465
  }>>;
482
466
  export declare class GetExchangesParameters extends GetExchangesParameters_base {
483
467
  }
484
- declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
485
- sellersSkip: z.ZodOptional<z.ZodNumber>;
486
- sellersFirst: z.ZodOptional<z.ZodNumber>;
487
- sellersOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
488
- sellersOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
489
- sellersFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
490
- includeExchanges: z.ZodOptional<z.ZodBoolean>;
491
- includeOffers: z.ZodOptional<z.ZodBoolean>;
492
- includeFunds: z.ZodOptional<z.ZodBoolean>;
493
- includeLogs: z.ZodOptional<z.ZodBoolean>;
468
+ declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
469
+ sellersSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
470
+ sellersFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
471
+ sellersOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
472
+ sellersOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
473
+ sellersFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
474
+ includeExchanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
475
+ includeOffers: import("zod").ZodOptional<import("zod").ZodBoolean>;
476
+ includeFunds: import("zod").ZodOptional<import("zod").ZodBoolean>;
477
+ includeLogs: import("zod").ZodOptional<import("zod").ZodBoolean>;
494
478
  } & {
495
- 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"]>;
496
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
497
- }, "strip", z.ZodTypeAny, {
498
- 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";
499
- signerAddress?: string;
479
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
480
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
481
+ }, "strip", import("zod").ZodTypeAny, {
482
+ configId?: string;
500
483
  sellersFilter?: Record<string, unknown>;
501
484
  sellersSkip?: number;
502
485
  sellersFirst?: number;
@@ -506,9 +489,9 @@ declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParameters
506
489
  includeOffers?: boolean;
507
490
  includeFunds?: boolean;
508
491
  includeLogs?: boolean;
509
- }, {
510
- 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";
511
492
  signerAddress?: string;
493
+ }, {
494
+ configId?: string;
512
495
  sellersFilter?: Record<string, unknown>;
513
496
  sellersSkip?: number;
514
497
  sellersFirst?: number;
@@ -518,27 +501,27 @@ declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParameters
518
501
  includeOffers?: boolean;
519
502
  includeFunds?: boolean;
520
503
  includeLogs?: boolean;
504
+ signerAddress?: string;
521
505
  }>>;
522
506
  export declare class GetSellersParameters extends GetSellersParameters_base {
523
507
  }
524
- declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
525
- address: z.ZodString;
526
- sellersSkip: z.ZodOptional<z.ZodNumber>;
527
- sellersFirst: z.ZodOptional<z.ZodNumber>;
528
- sellersOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
529
- sellersOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
530
- sellersFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
531
- includeExchanges: z.ZodOptional<z.ZodBoolean>;
532
- includeOffers: z.ZodOptional<z.ZodBoolean>;
533
- includeFunds: z.ZodOptional<z.ZodBoolean>;
534
- includeLogs: z.ZodOptional<z.ZodBoolean>;
508
+ declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
509
+ address: import("zod").ZodString;
510
+ sellersSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
511
+ sellersFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
512
+ sellersOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
513
+ sellersOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
514
+ sellersFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
515
+ includeExchanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
516
+ includeOffers: import("zod").ZodOptional<import("zod").ZodBoolean>;
517
+ includeFunds: import("zod").ZodOptional<import("zod").ZodBoolean>;
518
+ includeLogs: import("zod").ZodOptional<import("zod").ZodBoolean>;
535
519
  } & {
536
- 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"]>;
537
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
538
- }, "strip", z.ZodTypeAny, {
520
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
521
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
522
+ }, "strip", import("zod").ZodTypeAny, {
539
523
  address?: string;
540
- 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";
541
- signerAddress?: string;
524
+ configId?: string;
542
525
  sellersFilter?: Record<string, unknown>;
543
526
  sellersSkip?: number;
544
527
  sellersFirst?: number;
@@ -548,10 +531,10 @@ declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolP
548
531
  includeOffers?: boolean;
549
532
  includeFunds?: boolean;
550
533
  includeLogs?: boolean;
534
+ signerAddress?: string;
551
535
  }, {
552
536
  address?: string;
553
- 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
- signerAddress?: string;
537
+ configId?: string;
555
538
  sellersFilter?: Record<string, unknown>;
556
539
  sellersSkip?: number;
557
540
  sellersFirst?: number;
@@ -561,126 +544,127 @@ declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolP
561
544
  includeOffers?: boolean;
562
545
  includeFunds?: boolean;
563
546
  includeLogs?: boolean;
547
+ signerAddress?: string;
564
548
  }>>;
565
549
  export declare class GetSellersByAddressParameters extends GetSellersByAddressParameters_base {
566
550
  }
567
- declare const GetDisputesParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
568
- disputesSkip: z.ZodOptional<z.ZodNumber>;
569
- disputesFirst: z.ZodOptional<z.ZodNumber>;
570
- disputesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
571
- disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
572
- disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
551
+ declare const GetDisputesParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
552
+ disputesSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
553
+ disputesFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
554
+ disputesOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
555
+ disputesOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
556
+ disputesFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
573
557
  } & {
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"]>;
575
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
576
- }, "strip", z.ZodTypeAny, {
577
- 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
- signerAddress?: string;
558
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
559
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
560
+ }, "strip", import("zod").ZodTypeAny, {
561
+ configId?: string;
579
562
  disputesFilter?: Record<string, unknown>;
580
563
  disputesSkip?: number;
581
564
  disputesFirst?: number;
582
565
  disputesOrderBy?: string;
583
566
  disputesOrderDirection?: string;
584
- }, {
585
- 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";
586
567
  signerAddress?: string;
568
+ }, {
569
+ configId?: string;
587
570
  disputesFilter?: Record<string, unknown>;
588
571
  disputesSkip?: number;
589
572
  disputesFirst?: number;
590
573
  disputesOrderBy?: string;
591
574
  disputesOrderDirection?: string;
575
+ signerAddress?: string;
592
576
  }>>;
593
577
  export declare class GetDisputesParameters extends GetDisputesParameters_base {
594
578
  }
595
- declare const GetDisputeResolversParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
596
- disputeResolversSkip: z.ZodOptional<z.ZodNumber>;
597
- disputeResolversFirst: z.ZodOptional<z.ZodNumber>;
598
- disputeResolversOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
599
- disputeResolversOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
600
- disputeResolversFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
579
+ declare const GetDisputeResolversParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
580
+ disputeResolversSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
581
+ disputeResolversFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
582
+ disputeResolversOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
583
+ disputeResolversOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
584
+ disputeResolversFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
601
585
  } & {
602
- 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"]>;
603
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
604
- }, "strip", z.ZodTypeAny, {
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
- signerAddress?: string;
586
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
587
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
588
+ }, "strip", import("zod").ZodTypeAny, {
589
+ configId?: string;
607
590
  disputeResolversFilter?: Record<string, unknown>;
608
591
  disputeResolversSkip?: number;
609
592
  disputeResolversFirst?: number;
610
593
  disputeResolversOrderBy?: string;
611
594
  disputeResolversOrderDirection?: string;
612
- }, {
613
- 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";
614
595
  signerAddress?: string;
596
+ }, {
597
+ configId?: string;
615
598
  disputeResolversFilter?: Record<string, unknown>;
616
599
  disputeResolversSkip?: number;
617
600
  disputeResolversFirst?: number;
618
601
  disputeResolversOrderBy?: string;
619
602
  disputeResolversOrderDirection?: string;
603
+ signerAddress?: string;
620
604
  }>>;
621
605
  export declare class GetDisputeResolversParameters extends GetDisputeResolversParameters_base {
622
606
  }
623
- declare const GetAllProductsWithNotVoidedVariantsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
624
- productsSkip: z.ZodOptional<z.ZodNumber>;
625
- productsFirst: z.ZodOptional<z.ZodNumber>;
626
- productsOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
627
- productsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
628
- productsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
607
+ declare const GetAllProductsWithNotVoidedVariantsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
608
+ productsSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
609
+ productsFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
610
+ productsOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
611
+ productsOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
612
+ productsFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
629
613
  } & {
630
- 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"]>;
631
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
632
- }, "strip", z.ZodTypeAny, {
633
- 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";
634
- signerAddress?: string;
614
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
615
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
616
+ }, "strip", import("zod").ZodTypeAny, {
617
+ configId?: string;
635
618
  productsFilter?: Record<string, unknown>;
636
619
  productsSkip?: number;
637
620
  productsFirst?: number;
638
621
  productsOrderBy?: string;
639
622
  productsOrderDirection?: string;
640
- }, {
641
- 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";
642
623
  signerAddress?: string;
624
+ }, {
625
+ configId?: string;
643
626
  productsFilter?: Record<string, unknown>;
644
627
  productsSkip?: number;
645
628
  productsFirst?: number;
646
629
  productsOrderBy?: string;
647
630
  productsOrderDirection?: string;
631
+ signerAddress?: string;
648
632
  }>>;
649
633
  export declare class GetAllProductsWithNotVoidedVariantsParameters extends GetAllProductsWithNotVoidedVariantsParameters_base {
650
634
  }
651
- declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
652
- template: z.ZodString;
653
- offerData: z.ZodObject<{
654
- price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
655
- sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
656
- agentId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
657
- buyerCancelPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
658
- quantityAvailable: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
659
- validFromDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
660
- validUntilDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
661
- voucherRedeemableFromDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
662
- voucherRedeemableUntilDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
663
- disputePeriodDurationInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
664
- voucherValidDurationInMS: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
665
- resolutionPeriodDurationInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
666
- exchangeToken: z.ZodEffects<z.ZodString, string, string>;
667
- disputeResolverId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
668
- metadataUri: z.ZodString;
669
- metadataHash: z.ZodString;
670
- collectionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
671
- feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
672
- priceType: z.ZodOptional<z.ZodNumber>;
673
- royaltyInfo: z.ZodOptional<z.ZodArray<z.ZodObject<{
674
- recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
675
- bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
676
- }, "strip", z.ZodTypeAny, {
635
+ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
636
+ template: import("zod").ZodString;
637
+ offerData: import("zod").ZodObject<{
638
+ price: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
639
+ sellerDeposit: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
640
+ agentId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
641
+ buyerCancelPenalty: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
642
+ quantityAvailable: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
643
+ validFromDateInMS: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
644
+ validUntilDateInMS: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
645
+ voucherRedeemableFromDateInMS: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
646
+ voucherRedeemableUntilDateInMS: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
647
+ disputePeriodDurationInMS: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
648
+ voucherValidDurationInMS: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>>;
649
+ resolutionPeriodDurationInMS: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
650
+ exchangeToken: import("zod").ZodEffects<import("zod").ZodString, string, string>;
651
+ disputeResolverId: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
652
+ metadataUri: import("zod").ZodString;
653
+ metadataHash: import("zod").ZodString;
654
+ collectionIndex: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
655
+ feeLimit: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>>;
656
+ priceType: import("zod").ZodOptional<import("zod").ZodNumber>;
657
+ royaltyInfo: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
658
+ recipients: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">;
659
+ bps: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
660
+ }, "strip", import("zod").ZodTypeAny, {
677
661
  recipients?: string[];
678
662
  bps?: (string | number | bigint)[];
679
663
  }, {
680
664
  recipients?: string[];
681
665
  bps?: (string | number | bigint)[];
682
666
  }>, "many">>;
683
- }, "strict", z.ZodTypeAny, {
667
+ }, "strict", import("zod").ZodTypeAny, {
684
668
  agentId?: string | number | bigint;
685
669
  disputeResolverId?: string | number | bigint;
686
670
  collectionIndex?: string | number | bigint;
@@ -729,14 +713,14 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
729
713
  resolutionPeriodDurationInMS?: string | number | bigint;
730
714
  feeLimit?: string | number | bigint;
731
715
  }>;
732
- offerMetadata: z.ZodObject<{
733
- sellerContactMethod: z.ZodString;
734
- disputeResolverContactMethod: z.ZodString;
735
- escalationDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
736
- escalationResponsePeriodInSec: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
737
- sellerTradingName: z.ZodString;
738
- returnPeriodInDays: z.ZodNumber;
739
- }, "strict", z.ZodTypeAny, {
716
+ offerMetadata: import("zod").ZodObject<{
717
+ sellerContactMethod: import("zod").ZodString;
718
+ disputeResolverContactMethod: import("zod").ZodString;
719
+ escalationDeposit: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
720
+ escalationResponsePeriodInSec: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
721
+ sellerTradingName: import("zod").ZodString;
722
+ returnPeriodInDays: import("zod").ZodNumber;
723
+ }, "strict", import("zod").ZodTypeAny, {
740
724
  sellerContactMethod?: string;
741
725
  disputeResolverContactMethod?: string;
742
726
  escalationDeposit?: string | number | bigint;
@@ -752,12 +736,12 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
752
736
  returnPeriodInDays?: number;
753
737
  }>;
754
738
  } & {
755
- 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"]>;
756
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
757
- }, "strip", z.ZodTypeAny, {
758
- 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";
759
- signerAddress?: string;
739
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
740
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
741
+ }, "strip", import("zod").ZodTypeAny, {
742
+ configId?: string;
760
743
  template?: string;
744
+ signerAddress?: string;
761
745
  offerData?: {
762
746
  agentId?: string | number | bigint;
763
747
  disputeResolverId?: string | number | bigint;
@@ -792,9 +776,9 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
792
776
  returnPeriodInDays?: number;
793
777
  };
794
778
  }, {
795
- 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";
796
- signerAddress?: string;
779
+ configId?: string;
797
780
  template?: string;
781
+ signerAddress?: string;
798
782
  offerData?: {
799
783
  agentId?: string | number | bigint;
800
784
  disputeResolverId?: string | number | bigint;
@@ -831,94 +815,94 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
831
815
  }>>;
832
816
  export declare class RenderContractualAgreementParameters extends RenderContractualAgreementParameters_base {
833
817
  }
834
- declare const StoreProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
835
- exchangePolicy: z.ZodObject<{
836
- sellerContactMethod: z.ZodString;
837
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
838
- sellerContactMethod: z.ZodString;
839
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
840
- sellerContactMethod: z.ZodString;
841
- }, z.ZodTypeAny, "passthrough">>;
842
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
843
- exchangePolicy: z.ZodObject<{
844
- sellerContactMethod: z.ZodString;
845
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
846
- sellerContactMethod: z.ZodString;
847
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
848
- sellerContactMethod: z.ZodString;
849
- }, z.ZodTypeAny, "passthrough">>;
850
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
851
- exchangePolicy: z.ZodObject<{
852
- sellerContactMethod: z.ZodString;
853
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
854
- sellerContactMethod: z.ZodString;
855
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
856
- sellerContactMethod: z.ZodString;
857
- }, z.ZodTypeAny, "passthrough">>;
858
- }, z.ZodTypeAny, "passthrough">>>;
818
+ declare const StoreProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
819
+ exchangePolicy: import("zod").ZodObject<{
820
+ sellerContactMethod: import("zod").ZodString;
821
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
822
+ sellerContactMethod: import("zod").ZodString;
823
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
824
+ sellerContactMethod: import("zod").ZodString;
825
+ }, import("zod").ZodTypeAny, "passthrough">>;
826
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
827
+ exchangePolicy: import("zod").ZodObject<{
828
+ sellerContactMethod: import("zod").ZodString;
829
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
830
+ sellerContactMethod: import("zod").ZodString;
831
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
832
+ sellerContactMethod: import("zod").ZodString;
833
+ }, import("zod").ZodTypeAny, "passthrough">>;
834
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
835
+ exchangePolicy: import("zod").ZodObject<{
836
+ sellerContactMethod: import("zod").ZodString;
837
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
838
+ sellerContactMethod: import("zod").ZodString;
839
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
840
+ sellerContactMethod: import("zod").ZodString;
841
+ }, import("zod").ZodTypeAny, "passthrough">>;
842
+ }, import("zod").ZodTypeAny, "passthrough">>>;
859
843
  export declare class StoreProductV1MetadataParameters extends StoreProductV1MetadataParameters_base {
860
844
  }
861
- declare const StoreBundleItemProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
862
- exchangePolicy: z.ZodObject<{
863
- sellerContactMethod: z.ZodString;
864
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
865
- sellerContactMethod: z.ZodString;
866
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
867
- sellerContactMethod: z.ZodString;
868
- }, z.ZodTypeAny, "passthrough">>;
869
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
870
- exchangePolicy: z.ZodObject<{
871
- sellerContactMethod: z.ZodString;
872
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
873
- sellerContactMethod: z.ZodString;
874
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
875
- sellerContactMethod: z.ZodString;
876
- }, z.ZodTypeAny, "passthrough">>;
877
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
878
- exchangePolicy: z.ZodObject<{
879
- sellerContactMethod: z.ZodString;
880
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
881
- sellerContactMethod: z.ZodString;
882
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
883
- sellerContactMethod: z.ZodString;
884
- }, z.ZodTypeAny, "passthrough">>;
885
- }, z.ZodTypeAny, "passthrough">>>;
845
+ declare const StoreBundleItemProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
846
+ exchangePolicy: import("zod").ZodObject<{
847
+ sellerContactMethod: import("zod").ZodString;
848
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
849
+ sellerContactMethod: import("zod").ZodString;
850
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
851
+ sellerContactMethod: import("zod").ZodString;
852
+ }, import("zod").ZodTypeAny, "passthrough">>;
853
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
854
+ exchangePolicy: import("zod").ZodObject<{
855
+ sellerContactMethod: import("zod").ZodString;
856
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
857
+ sellerContactMethod: import("zod").ZodString;
858
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
859
+ sellerContactMethod: import("zod").ZodString;
860
+ }, import("zod").ZodTypeAny, "passthrough">>;
861
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
862
+ exchangePolicy: import("zod").ZodObject<{
863
+ sellerContactMethod: import("zod").ZodString;
864
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
865
+ sellerContactMethod: import("zod").ZodString;
866
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
867
+ sellerContactMethod: import("zod").ZodString;
868
+ }, import("zod").ZodTypeAny, "passthrough">>;
869
+ }, import("zod").ZodTypeAny, "passthrough">>>;
886
870
  export declare class StoreBundleItemProductV1MetadataParameters extends StoreBundleItemProductV1MetadataParameters_base {
887
871
  }
888
- declare const StoreBundleItemNftMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
889
- 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"]>;
890
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
891
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
892
- 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"]>;
893
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
894
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
895
- 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"]>;
896
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
897
- }, z.ZodTypeAny, "passthrough">>>;
872
+ declare const StoreBundleItemNftMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
873
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
874
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
875
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
876
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
877
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
878
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
879
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
880
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
881
+ }, import("zod").ZodTypeAny, "passthrough">>>;
898
882
  export declare class StoreBundleItemNftMetadataParameters extends StoreBundleItemNftMetadataParameters_base {
899
883
  }
900
- declare const StoreBundleMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
901
- 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"]>;
902
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
903
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
904
- 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"]>;
905
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
906
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
907
- 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"]>;
908
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
909
- }, z.ZodTypeAny, "passthrough">>>;
884
+ declare const StoreBundleMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
885
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
886
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
887
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
888
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
889
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
890
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
891
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
892
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
893
+ }, import("zod").ZodTypeAny, "passthrough">>>;
910
894
  export declare class StoreBundleMetadataParameters extends StoreBundleMetadataParameters_base {
911
895
  }
912
- declare const StoreCustomMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
913
- 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"]>;
914
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
915
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
916
- 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"]>;
917
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
918
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
919
- 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"]>;
920
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
921
- }, z.ZodTypeAny, "passthrough">>>;
896
+ declare const StoreCustomMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
897
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
898
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
899
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
900
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
901
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
902
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
903
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
904
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
905
+ }, import("zod").ZodTypeAny, "passthrough">>>;
922
906
  export declare class StoreCustomMetadataParameters extends StoreCustomMetadataParameters_base {
923
907
  }
924
908
  export {};