@bosonprotocol/agentic-commerce 1.0.0-alpha.85 → 1.0.0-alpha.87

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 (54) hide show
  1. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.d.ts +10 -1
  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 +29 -7
  4. package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.js.map +1 -1
  5. package/dist/boson/goat-sdk-plugin/parameters.d.ts +420 -397
  6. package/dist/boson/goat-sdk-plugin/parameters.d.ts.map +1 -1
  7. package/dist/boson/goat-sdk-plugin/parameters.js +7 -5
  8. package/dist/boson/goat-sdk-plugin/parameters.js.map +1 -1
  9. package/dist/boson/mcp-client/index.d.ts +3568 -725
  10. package/dist/boson/mcp-client/index.d.ts.map +1 -1
  11. package/dist/boson/mcp-client/index.js +9 -3
  12. package/dist/boson/mcp-client/index.js.map +1 -1
  13. package/dist/boson/mcp-server/external-tools/github.d.ts +304 -64
  14. package/dist/boson/mcp-server/external-tools/github.d.ts.map +1 -1
  15. package/dist/boson/mcp-server/filters/exchangeTokensFilter.d.ts +2 -0
  16. package/dist/boson/mcp-server/filters/exchangeTokensFilter.d.ts.map +1 -0
  17. package/dist/boson/mcp-server/filters/exchangeTokensFilter.js +5 -0
  18. package/dist/boson/mcp-server/filters/exchangeTokensFilter.js.map +1 -0
  19. package/dist/boson/mcp-server/handlers/offers.d.ts +2 -6
  20. package/dist/boson/mcp-server/handlers/offers.d.ts.map +1 -1
  21. package/dist/boson/mcp-server/handlers/offers.js +10 -114
  22. package/dist/boson/mcp-server/handlers/offers.js.map +1 -1
  23. package/dist/boson/mcp-server/handlers/tokens.d.ts +4 -0
  24. package/dist/boson/mcp-server/handlers/tokens.d.ts.map +1 -0
  25. package/dist/boson/mcp-server/handlers/tokens.js +22 -0
  26. package/dist/boson/mcp-server/handlers/tokens.js.map +1 -0
  27. package/dist/boson/mcp-server/index.d.ts.map +1 -1
  28. package/dist/boson/mcp-server/index.js +56 -11
  29. package/dist/boson/mcp-server/index.js.map +1 -1
  30. package/dist/boson/mcp-server/prompts/context.d.ts +2 -0
  31. package/dist/boson/mcp-server/prompts/context.d.ts.map +1 -0
  32. package/dist/boson/mcp-server/prompts/context.js +10 -0
  33. package/dist/boson/mcp-server/prompts/context.js.map +1 -0
  34. package/dist/boson/mcp-server/prompts/create-offer.d.ts +2 -0
  35. package/dist/boson/mcp-server/prompts/create-offer.d.ts.map +1 -0
  36. package/dist/boson/mcp-server/prompts/create-offer.js +14 -0
  37. package/dist/boson/mcp-server/prompts/create-offer.js.map +1 -0
  38. package/dist/boson/mcp-server/prompts/create-seller.d.ts +2 -0
  39. package/dist/boson/mcp-server/prompts/create-seller.d.ts.map +1 -0
  40. package/dist/boson/mcp-server/prompts/create-seller.js +13 -0
  41. package/dist/boson/mcp-server/prompts/create-seller.js.map +1 -0
  42. package/dist/boson/mcp-server/resourceParameterTypes.d.ts +2 -0
  43. package/dist/boson/mcp-server/resourceParameterTypes.d.ts.map +1 -1
  44. package/dist/boson/mcp-server/resourceParameterTypes.js +3 -1
  45. package/dist/boson/mcp-server/resourceParameterTypes.js.map +1 -1
  46. package/dist/boson/mcp-server/validation.d.ts +25 -9
  47. package/dist/boson/mcp-server/validation.d.ts.map +1 -1
  48. package/dist/boson/mcp-server/validation.js +22 -14
  49. package/dist/boson/mcp-server/validation.js.map +1 -1
  50. package/dist/common/mcp-client/index.d.ts +152 -32
  51. package/dist/common/mcp-client/index.d.ts.map +1 -1
  52. package/dist/common/mcp-client/index.js +8 -1
  53. package/dist/common/mcp-client/index.js.map +1 -1
  54. package/package.json +2 -2
@@ -1,74 +1,73 @@
1
1
  import { seller } from "@bosonprotocol/metadata";
2
- import { z } from "zod";
3
- declare const CreateOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
4
- exchangeTokenAddress: z.ZodOptional<z.ZodString>;
5
- price: z.ZodString;
6
- sellerDeposit: z.ZodString;
7
- agentId: z.ZodOptional<z.ZodString>;
8
- buyerCancellationPenalty: z.ZodString;
9
- quantityAvailable: z.ZodNumber;
10
- validFromDateInMS: z.ZodNumber;
11
- validUntilDateInMS: z.ZodNumber;
12
- voucherRedeemableFromDateInMS: z.ZodNumber;
13
- voucherRedeemableUntilDateInMS: z.ZodNumber;
14
- disputePeriodDurationInMS: z.ZodNumber;
15
- voucherValidDurationInMS: z.ZodNumber;
16
- resolutionPeriodDurationInMS: z.ZodNumber;
17
- disputeResolverId: z.ZodOptional<z.ZodString>;
18
- metadataUri: z.ZodString;
19
- metadataHash: z.ZodString;
20
- } & {
21
- configId: z.ZodEffects<z.ZodString, string, string>;
22
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
23
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
24
- exchangeTokenAddress: z.ZodOptional<z.ZodString>;
25
- price: z.ZodString;
26
- sellerDeposit: z.ZodString;
27
- agentId: z.ZodOptional<z.ZodString>;
28
- buyerCancellationPenalty: z.ZodString;
29
- quantityAvailable: z.ZodNumber;
30
- validFromDateInMS: z.ZodNumber;
31
- validUntilDateInMS: z.ZodNumber;
32
- voucherRedeemableFromDateInMS: z.ZodNumber;
33
- voucherRedeemableUntilDateInMS: z.ZodNumber;
34
- disputePeriodDurationInMS: z.ZodNumber;
35
- voucherValidDurationInMS: z.ZodNumber;
36
- resolutionPeriodDurationInMS: z.ZodNumber;
37
- disputeResolverId: z.ZodOptional<z.ZodString>;
38
- metadataUri: z.ZodString;
39
- metadataHash: z.ZodString;
40
- } & {
41
- configId: z.ZodEffects<z.ZodString, string, string>;
42
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
43
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
44
- exchangeTokenAddress: z.ZodOptional<z.ZodString>;
45
- price: z.ZodString;
46
- sellerDeposit: z.ZodString;
47
- agentId: z.ZodOptional<z.ZodString>;
48
- buyerCancellationPenalty: z.ZodString;
49
- quantityAvailable: z.ZodNumber;
50
- validFromDateInMS: z.ZodNumber;
51
- validUntilDateInMS: z.ZodNumber;
52
- voucherRedeemableFromDateInMS: z.ZodNumber;
53
- voucherRedeemableUntilDateInMS: z.ZodNumber;
54
- disputePeriodDurationInMS: z.ZodNumber;
55
- voucherValidDurationInMS: z.ZodNumber;
56
- resolutionPeriodDurationInMS: z.ZodNumber;
57
- disputeResolverId: z.ZodOptional<z.ZodString>;
58
- metadataUri: z.ZodString;
59
- metadataHash: z.ZodString;
60
- } & {
61
- configId: z.ZodEffects<z.ZodString, string, string>;
62
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
63
- }, z.ZodTypeAny, "passthrough">>>;
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;
19
+ } & {
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;
39
+ } & {
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;
59
+ } & {
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">>>;
64
63
  export declare class CreateOfferParameters extends CreateOfferParameters_base {
65
64
  }
66
- declare const VoidOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
67
- 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>;
68
67
  } & {
69
- configId: z.ZodEffects<z.ZodString, string, string>;
70
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
71
- }, "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, {
72
71
  offerId?: string | number | bigint;
73
72
  configId?: string;
74
73
  signerAddress?: string;
@@ -89,31 +88,31 @@ type CreateSellerNonMetadataFields = {
89
88
  authTokenType: number;
90
89
  };
91
90
  export type CreateSellerParametersType = CreateSellerNonMetadataFields & seller.SellerMetadata;
92
- declare const CreateSellerParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
93
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
94
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
95
- contractUri: z.ZodString;
96
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
97
- } & {
98
- configId: z.ZodEffects<z.ZodString, string, string>;
99
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
100
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
101
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
102
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
103
- contractUri: z.ZodString;
104
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
105
- } & {
106
- configId: z.ZodEffects<z.ZodString, string, string>;
107
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
108
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
109
- royaltyPercentage: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
110
- authTokenType: z.ZodEffects<z.ZodNumber, number, number>;
111
- contractUri: z.ZodString;
112
- authTokenId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
113
- } & {
114
- configId: z.ZodEffects<z.ZodString, string, string>;
115
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
116
- }, z.ZodTypeAny, "passthrough">>>;
91
+ declare const CreateSellerParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
92
+ 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>;
93
+ authTokenType: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
94
+ contractUri: import("zod").ZodString;
95
+ 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>;
96
+ } & {
97
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
98
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
99
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
100
+ 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>;
101
+ authTokenType: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
102
+ contractUri: import("zod").ZodString;
103
+ 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>;
104
+ } & {
105
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
106
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
107
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
108
+ 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>;
109
+ authTokenType: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
110
+ contractUri: import("zod").ZodString;
111
+ 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>;
112
+ } & {
113
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
114
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
115
+ }, import("zod").ZodTypeAny, "passthrough">>>;
117
116
  export declare class CreateSellerParameters extends CreateSellerParameters_base {
118
117
  contractUri: CreateSellerParametersType["contractUri"];
119
118
  royaltyPercentage: CreateSellerParametersType["royaltyPercentage"];
@@ -131,12 +130,12 @@ export declare class CreateSellerParameters extends CreateSellerParameters_base
131
130
  socialLinks: CreateSellerParametersType["socialLinks"];
132
131
  salesChannels: CreateSellerParametersType["salesChannels"];
133
132
  }
134
- declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
135
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
136
- list: z.ZodArray<z.ZodObject<{
137
- tokenAddress: z.ZodEffects<z.ZodString, string, string>;
138
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
139
- }, "strip", z.ZodTypeAny, {
133
+ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
134
+ 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>;
135
+ list: import("zod").ZodArray<import("zod").ZodObject<{
136
+ tokenAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
137
+ 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>;
138
+ }, "strip", import("zod").ZodTypeAny, {
140
139
  tokenAddress?: string;
141
140
  amount?: string | number | bigint;
142
141
  }, {
@@ -144,9 +143,9 @@ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParamet
144
143
  amount?: string | number | bigint;
145
144
  }>, "many">;
146
145
  } & {
147
- configId: z.ZodEffects<z.ZodString, string, string>;
148
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
149
- }, "strip", z.ZodTypeAny, {
146
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
147
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
148
+ }, "strip", import("zod").ZodTypeAny, {
150
149
  entityId?: string | number | bigint;
151
150
  configId?: string;
152
151
  signerAddress?: string;
@@ -165,14 +164,14 @@ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParamet
165
164
  }>>;
166
165
  export declare class WithdrawFundsParameters extends WithdrawFundsParameters_base {
167
166
  }
168
- declare const DepositFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
169
- entityId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
170
- tokenAddress: z.ZodEffects<z.ZodString, string, string>;
171
- amount: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
167
+ declare const DepositFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
168
+ 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>;
169
+ tokenAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
170
+ 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>;
172
171
  } & {
173
- configId: z.ZodEffects<z.ZodString, string, string>;
174
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
175
- }, "strip", z.ZodTypeAny, {
172
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
173
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
174
+ }, "strip", import("zod").ZodTypeAny, {
176
175
  tokenAddress?: string;
177
176
  entityId?: string | number | bigint;
178
177
  amount?: string | number | bigint;
@@ -187,13 +186,13 @@ declare const DepositFundsParameters_base: import("@goat-sdk/core").ToolParamete
187
186
  }>>;
188
187
  export declare class DepositFundsParameters extends DepositFundsParameters_base {
189
188
  }
190
- declare const CommitToOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
191
- offerId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
192
- buyer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
189
+ declare const CommitToOfferParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
190
+ 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>;
191
+ buyer: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
193
192
  } & {
194
- configId: z.ZodEffects<z.ZodString, string, string>;
195
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
196
- }, "strip", z.ZodTypeAny, {
193
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
194
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
195
+ }, "strip", import("zod").ZodTypeAny, {
197
196
  buyer?: string;
198
197
  offerId?: string | number | bigint;
199
198
  configId?: string;
@@ -206,12 +205,12 @@ declare const CommitToOfferParameters_base: import("@goat-sdk/core").ToolParamet
206
205
  }>>;
207
206
  export declare class CommitToOfferParameters extends CommitToOfferParameters_base {
208
207
  }
209
- declare const CancelVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
210
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
208
+ declare const CancelVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
209
+ 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>;
211
210
  } & {
212
- configId: z.ZodEffects<z.ZodString, string, string>;
213
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
214
- }, "strip", z.ZodTypeAny, {
211
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
212
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
213
+ }, "strip", import("zod").ZodTypeAny, {
215
214
  exchangeId?: string | number | bigint;
216
215
  configId?: string;
217
216
  signerAddress?: string;
@@ -222,12 +221,12 @@ declare const CancelVoucherParameters_base: import("@goat-sdk/core").ToolParamet
222
221
  }>>;
223
222
  export declare class CancelVoucherParameters extends CancelVoucherParameters_base {
224
223
  }
225
- declare const RedeemVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
226
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
224
+ declare const RedeemVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
225
+ 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>;
227
226
  } & {
228
- configId: z.ZodEffects<z.ZodString, string, string>;
229
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
230
- }, "strip", z.ZodTypeAny, {
227
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
228
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
229
+ }, "strip", import("zod").ZodTypeAny, {
231
230
  exchangeId?: string | number | bigint;
232
231
  configId?: string;
233
232
  signerAddress?: string;
@@ -238,12 +237,12 @@ declare const RedeemVoucherParameters_base: import("@goat-sdk/core").ToolParamet
238
237
  }>>;
239
238
  export declare class RedeemVoucherParameters extends RedeemVoucherParameters_base {
240
239
  }
241
- declare const RevokeVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
242
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
240
+ declare const RevokeVoucherParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
241
+ 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>;
243
242
  } & {
244
- configId: z.ZodEffects<z.ZodString, string, string>;
245
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
246
- }, "strip", z.ZodTypeAny, {
243
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
244
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
245
+ }, "strip", import("zod").ZodTypeAny, {
247
246
  exchangeId?: string | number | bigint;
248
247
  configId?: string;
249
248
  signerAddress?: string;
@@ -254,13 +253,13 @@ declare const RevokeVoucherParameters_base: import("@goat-sdk/core").ToolParamet
254
253
  }>>;
255
254
  export declare class RevokeVoucherParameters extends RevokeVoucherParameters_base {
256
255
  }
257
- declare const ExtendDisputeTimeoutParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
258
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
259
- newDisputeTimeout: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
256
+ declare const ExtendDisputeTimeoutParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
257
+ 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>;
258
+ 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>;
260
259
  } & {
261
- configId: z.ZodEffects<z.ZodString, string, string>;
262
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
263
- }, "strip", z.ZodTypeAny, {
260
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
261
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
262
+ }, "strip", import("zod").ZodTypeAny, {
264
263
  exchangeId?: string | number | bigint;
265
264
  newDisputeTimeout?: string | number | bigint;
266
265
  configId?: string;
@@ -273,12 +272,12 @@ declare const ExtendDisputeTimeoutParameters_base: import("@goat-sdk/core").Tool
273
272
  }>>;
274
273
  export declare class ExtendDisputeTimeoutParameters extends ExtendDisputeTimeoutParameters_base {
275
274
  }
276
- declare const ExpireDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
277
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
275
+ declare const ExpireDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
276
+ 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>;
278
277
  } & {
279
- configId: z.ZodEffects<z.ZodString, string, string>;
280
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
281
- }, "strip", z.ZodTypeAny, {
278
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
279
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
280
+ }, "strip", import("zod").ZodTypeAny, {
282
281
  exchangeId?: string | number | bigint;
283
282
  configId?: string;
284
283
  signerAddress?: string;
@@ -289,12 +288,12 @@ declare const ExpireDisputeParameters_base: import("@goat-sdk/core").ToolParamet
289
288
  }>>;
290
289
  export declare class ExpireDisputeParameters extends ExpireDisputeParameters_base {
291
290
  }
292
- declare const ExpireDisputeBatchParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
293
- exchangeIds: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
291
+ declare const ExpireDisputeBatchParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
292
+ 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">;
294
293
  } & {
295
- configId: z.ZodEffects<z.ZodString, string, string>;
296
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
297
- }, "strip", z.ZodTypeAny, {
294
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
295
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
296
+ }, "strip", import("zod").ZodTypeAny, {
298
297
  configId?: string;
299
298
  signerAddress?: string;
300
299
  exchangeIds?: (string | number | bigint)[];
@@ -305,16 +304,16 @@ declare const ExpireDisputeBatchParameters_base: import("@goat-sdk/core").ToolPa
305
304
  }>>;
306
305
  export declare class ExpireDisputeBatchParameters extends ExpireDisputeBatchParameters_base {
307
306
  }
308
- declare const ResolveDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
309
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
310
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
311
- sigR: z.ZodString;
312
- sigS: z.ZodString;
313
- sigV: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
307
+ declare const ResolveDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
308
+ 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>;
309
+ 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>;
310
+ sigR: import("zod").ZodString;
311
+ sigS: import("zod").ZodString;
312
+ 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>;
314
313
  } & {
315
- configId: z.ZodEffects<z.ZodString, string, string>;
316
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
317
- }, "strip", z.ZodTypeAny, {
314
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
315
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
316
+ }, "strip", import("zod").ZodTypeAny, {
318
317
  exchangeId?: string | number | bigint;
319
318
  sigR?: string;
320
319
  sigS?: string;
@@ -333,12 +332,12 @@ declare const ResolveDisputeParameters_base: import("@goat-sdk/core").ToolParame
333
332
  }>>;
334
333
  export declare class ResolveDisputeParameters extends ResolveDisputeParameters_base {
335
334
  }
336
- declare const RaiseDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
337
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
335
+ declare const RaiseDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
336
+ 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>;
338
337
  } & {
339
- configId: z.ZodEffects<z.ZodString, string, string>;
340
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
341
- }, "strip", z.ZodTypeAny, {
338
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
339
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
340
+ }, "strip", import("zod").ZodTypeAny, {
342
341
  exchangeId?: string | number | bigint;
343
342
  configId?: string;
344
343
  signerAddress?: string;
@@ -349,12 +348,12 @@ declare const RaiseDisputeParameters_base: import("@goat-sdk/core").ToolParamete
349
348
  }>>;
350
349
  export declare class RaiseDisputeParameters extends RaiseDisputeParameters_base {
351
350
  }
352
- declare const RetractDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
353
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
351
+ declare const RetractDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
352
+ 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>;
354
353
  } & {
355
- configId: z.ZodEffects<z.ZodString, string, string>;
356
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
357
- }, "strip", z.ZodTypeAny, {
354
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
355
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
356
+ }, "strip", import("zod").ZodTypeAny, {
358
357
  exchangeId?: string | number | bigint;
359
358
  configId?: string;
360
359
  signerAddress?: string;
@@ -365,12 +364,12 @@ declare const RetractDisputeParameters_base: import("@goat-sdk/core").ToolParame
365
364
  }>>;
366
365
  export declare class RetractDisputeParameters extends RetractDisputeParameters_base {
367
366
  }
368
- declare const EscalateDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
369
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
367
+ declare const EscalateDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
368
+ 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>;
370
369
  } & {
371
- configId: z.ZodEffects<z.ZodString, string, string>;
372
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
373
- }, "strip", z.ZodTypeAny, {
370
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
371
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
372
+ }, "strip", import("zod").ZodTypeAny, {
374
373
  exchangeId?: string | number | bigint;
375
374
  configId?: string;
376
375
  signerAddress?: string;
@@ -381,13 +380,13 @@ declare const EscalateDisputeParameters_base: import("@goat-sdk/core").ToolParam
381
380
  }>>;
382
381
  export declare class EscalateDisputeParameters extends EscalateDisputeParameters_base {
383
382
  }
384
- declare const DecideDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
385
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
386
- buyerPercent: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
383
+ declare const DecideDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
384
+ 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>;
385
+ buyerPercent: import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodBigInt]>, import("zod").ZodNumber]>, string | number | bigint, string | number | bigint>;
387
386
  } & {
388
- configId: z.ZodEffects<z.ZodString, string, string>;
389
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
390
- }, "strip", z.ZodTypeAny, {
387
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
388
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
389
+ }, "strip", import("zod").ZodTypeAny, {
391
390
  exchangeId?: string | number | bigint;
392
391
  buyerPercent?: string | number | bigint;
393
392
  configId?: string;
@@ -400,12 +399,12 @@ declare const DecideDisputeParameters_base: import("@goat-sdk/core").ToolParamet
400
399
  }>>;
401
400
  export declare class DecideDisputeParameters extends DecideDisputeParameters_base {
402
401
  }
403
- declare const RefuseEscalatedDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
404
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
402
+ declare const RefuseEscalatedDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
403
+ 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>;
405
404
  } & {
406
- configId: z.ZodEffects<z.ZodString, string, string>;
407
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
408
- }, "strip", z.ZodTypeAny, {
405
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
406
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
407
+ }, "strip", import("zod").ZodTypeAny, {
409
408
  exchangeId?: string | number | bigint;
410
409
  configId?: string;
411
410
  signerAddress?: string;
@@ -416,12 +415,12 @@ declare const RefuseEscalatedDisputeParameters_base: import("@goat-sdk/core").To
416
415
  }>>;
417
416
  export declare class RefuseEscalatedDisputeParameters extends RefuseEscalatedDisputeParameters_base {
418
417
  }
419
- declare const ExpireEscalatedDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
420
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
418
+ declare const ExpireEscalatedDisputeParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
419
+ 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>;
421
420
  } & {
422
- configId: z.ZodEffects<z.ZodString, string, string>;
423
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
424
- }, "strip", z.ZodTypeAny, {
421
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
422
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
423
+ }, "strip", import("zod").ZodTypeAny, {
425
424
  exchangeId?: string | number | bigint;
426
425
  configId?: string;
427
426
  signerAddress?: string;
@@ -432,13 +431,13 @@ declare const ExpireEscalatedDisputeParameters_base: import("@goat-sdk/core").To
432
431
  }>>;
433
432
  export declare class ExpireEscalatedDisputeParameters extends ExpireEscalatedDisputeParameters_base {
434
433
  }
435
- declare const CreateDisputeResolutionProposalParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
436
- exchangeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
437
- buyerPercentBasisPoints: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
434
+ declare const CreateDisputeResolutionProposalParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
435
+ 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>;
436
+ 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>;
438
437
  } & {
439
- configId: z.ZodEffects<z.ZodString, string, string>;
440
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
441
- }, "strip", z.ZodTypeAny, {
438
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
439
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
440
+ }, "strip", import("zod").ZodTypeAny, {
442
441
  exchangeId?: string | number | bigint;
443
442
  configId?: string;
444
443
  signerAddress?: string;
@@ -451,15 +450,15 @@ declare const CreateDisputeResolutionProposalParameters_base: import("@goat-sdk/
451
450
  }>>;
452
451
  export declare class CreateDisputeResolutionProposalParameters extends CreateDisputeResolutionProposalParameters_base {
453
452
  }
454
- declare const GetFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
455
- fundsSkip: z.ZodOptional<z.ZodNumber>;
456
- fundsFirst: z.ZodOptional<z.ZodNumber>;
457
- fundsOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
458
- fundsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
459
- fundsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
453
+ declare const GetFundsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
454
+ fundsSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
455
+ fundsFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
456
+ fundsOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
457
+ fundsOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
458
+ fundsFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
460
459
  } & {
461
- configId: z.ZodEffects<z.ZodString, string, string>;
462
- }, "strip", z.ZodTypeAny, {
460
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
461
+ }, "strip", import("zod").ZodTypeAny, {
463
462
  configId?: string;
464
463
  fundsFilter?: Record<string, unknown>;
465
464
  fundsSkip?: number;
@@ -476,21 +475,21 @@ declare const GetFundsParameters_base: import("@goat-sdk/core").ToolParametersSt
476
475
  }>>;
477
476
  export declare class GetFundsParameters extends GetFundsParameters_base {
478
477
  }
479
- declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
480
- offersSkip: z.ZodOptional<z.ZodNumber>;
481
- offersFirst: z.ZodOptional<z.ZodNumber>;
482
- offersOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
483
- offersOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
484
- offersFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
485
- includeExchanges: z.ZodOptional<z.ZodBoolean>;
486
- exchangesSkip: z.ZodOptional<z.ZodNumber>;
487
- exchangesFirst: z.ZodOptional<z.ZodNumber>;
488
- exchangesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
489
- exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
490
- exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
491
- } & {
492
- configId: z.ZodEffects<z.ZodString, string, string>;
493
- }, "strip", z.ZodTypeAny, {
478
+ declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
479
+ offersSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
480
+ offersFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
481
+ offersOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
482
+ offersOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
483
+ offersFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
484
+ includeExchanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
485
+ exchangesSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
486
+ exchangesFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
487
+ exchangesOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
488
+ exchangesOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
489
+ exchangesFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
490
+ } & {
491
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
492
+ }, "strip", import("zod").ZodTypeAny, {
494
493
  configId?: string;
495
494
  exchangesFilter?: Record<string, unknown>;
496
495
  offersFilter?: Record<string, unknown>;
@@ -519,15 +518,15 @@ declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersS
519
518
  }>>;
520
519
  export declare class GetOffersParameters extends GetOffersParameters_base {
521
520
  }
522
- declare const GetExchangesParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
523
- exchangesSkip: z.ZodOptional<z.ZodNumber>;
524
- exchangesFirst: z.ZodOptional<z.ZodNumber>;
525
- exchangesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
526
- exchangesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
527
- exchangesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
521
+ declare const GetExchangesParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
522
+ exchangesSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
523
+ exchangesFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
524
+ exchangesOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
525
+ exchangesOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
526
+ exchangesFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
528
527
  } & {
529
- configId: z.ZodEffects<z.ZodString, string, string>;
530
- }, "strip", z.ZodTypeAny, {
528
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
529
+ }, "strip", import("zod").ZodTypeAny, {
531
530
  configId?: string;
532
531
  exchangesFilter?: Record<string, unknown>;
533
532
  exchangesSkip?: number;
@@ -544,19 +543,19 @@ declare const GetExchangesParameters_base: import("@goat-sdk/core").ToolParamete
544
543
  }>>;
545
544
  export declare class GetExchangesParameters extends GetExchangesParameters_base {
546
545
  }
547
- declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
548
- sellersSkip: z.ZodOptional<z.ZodNumber>;
549
- sellersFirst: z.ZodOptional<z.ZodNumber>;
550
- sellersOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
551
- sellersOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
552
- sellersFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
553
- includeExchanges: z.ZodOptional<z.ZodBoolean>;
554
- includeOffers: z.ZodOptional<z.ZodBoolean>;
555
- includeFunds: z.ZodOptional<z.ZodBoolean>;
556
- includeLogs: z.ZodOptional<z.ZodBoolean>;
546
+ declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
547
+ sellersSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
548
+ sellersFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
549
+ sellersOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
550
+ sellersOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
551
+ sellersFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
552
+ includeExchanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
553
+ includeOffers: import("zod").ZodOptional<import("zod").ZodBoolean>;
554
+ includeFunds: import("zod").ZodOptional<import("zod").ZodBoolean>;
555
+ includeLogs: import("zod").ZodOptional<import("zod").ZodBoolean>;
557
556
  } & {
558
- configId: z.ZodEffects<z.ZodString, string, string>;
559
- }, "strip", z.ZodTypeAny, {
557
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
558
+ }, "strip", import("zod").ZodTypeAny, {
560
559
  configId?: string;
561
560
  sellersFilter?: Record<string, unknown>;
562
561
  sellersSkip?: number;
@@ -581,20 +580,20 @@ declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParameters
581
580
  }>>;
582
581
  export declare class GetSellersParameters extends GetSellersParameters_base {
583
582
  }
584
- declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
585
- address: z.ZodString;
586
- sellersSkip: z.ZodOptional<z.ZodNumber>;
587
- sellersFirst: z.ZodOptional<z.ZodNumber>;
588
- sellersOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
589
- sellersOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
590
- sellersFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
591
- includeExchanges: z.ZodOptional<z.ZodBoolean>;
592
- includeOffers: z.ZodOptional<z.ZodBoolean>;
593
- includeFunds: z.ZodOptional<z.ZodBoolean>;
594
- includeLogs: z.ZodOptional<z.ZodBoolean>;
595
- } & {
596
- configId: z.ZodEffects<z.ZodString, string, string>;
597
- }, "strip", z.ZodTypeAny, {
583
+ declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
584
+ address: import("zod").ZodString;
585
+ sellersSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
586
+ sellersFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
587
+ sellersOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
588
+ sellersOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
589
+ sellersFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
590
+ includeExchanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
591
+ includeOffers: import("zod").ZodOptional<import("zod").ZodBoolean>;
592
+ includeFunds: import("zod").ZodOptional<import("zod").ZodBoolean>;
593
+ includeLogs: import("zod").ZodOptional<import("zod").ZodBoolean>;
594
+ } & {
595
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
596
+ }, "strip", import("zod").ZodTypeAny, {
598
597
  address?: string;
599
598
  configId?: string;
600
599
  sellersFilter?: Record<string, unknown>;
@@ -621,15 +620,15 @@ declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolP
621
620
  }>>;
622
621
  export declare class GetSellersByAddressParameters extends GetSellersByAddressParameters_base {
623
622
  }
624
- declare const GetDisputesParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
625
- disputesSkip: z.ZodOptional<z.ZodNumber>;
626
- disputesFirst: z.ZodOptional<z.ZodNumber>;
627
- disputesOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
628
- disputesOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
629
- disputesFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
623
+ declare const GetDisputesParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
624
+ disputesSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
625
+ disputesFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
626
+ disputesOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
627
+ disputesOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
628
+ disputesFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
630
629
  } & {
631
- configId: z.ZodEffects<z.ZodString, string, string>;
632
- }, "strip", z.ZodTypeAny, {
630
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
631
+ }, "strip", import("zod").ZodTypeAny, {
633
632
  configId?: string;
634
633
  disputesFilter?: Record<string, unknown>;
635
634
  disputesSkip?: number;
@@ -646,12 +645,12 @@ declare const GetDisputesParameters_base: import("@goat-sdk/core").ToolParameter
646
645
  }>>;
647
646
  export declare class GetDisputesParameters extends GetDisputesParameters_base {
648
647
  }
649
- declare const GetDisputeByIdParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
650
- disputeId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
651
- queryVars: z.ZodOptional<z.ZodAny>;
648
+ declare const GetDisputeByIdParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
649
+ disputeId: 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
+ queryVars: import("zod").ZodOptional<import("zod").ZodAny>;
652
651
  } & {
653
- configId: z.ZodEffects<z.ZodString, string, string>;
654
- }, "strip", z.ZodTypeAny, {
652
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
653
+ }, "strip", import("zod").ZodTypeAny, {
655
654
  configId?: string;
656
655
  disputeId?: string | number | bigint;
657
656
  queryVars?: any;
@@ -662,15 +661,15 @@ declare const GetDisputeByIdParameters_base: import("@goat-sdk/core").ToolParame
662
661
  }>>;
663
662
  export declare class GetDisputeByIdParameters extends GetDisputeByIdParameters_base {
664
663
  }
665
- declare const GetDisputeResolversParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
666
- disputeResolversSkip: z.ZodOptional<z.ZodNumber>;
667
- disputeResolversFirst: z.ZodOptional<z.ZodNumber>;
668
- disputeResolversOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
669
- disputeResolversOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
670
- disputeResolversFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
664
+ declare const GetDisputeResolversParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
665
+ disputeResolversSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
666
+ disputeResolversFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
667
+ disputeResolversOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
668
+ disputeResolversOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
669
+ disputeResolversFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
671
670
  } & {
672
- configId: z.ZodEffects<z.ZodString, string, string>;
673
- }, "strip", z.ZodTypeAny, {
671
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
672
+ }, "strip", import("zod").ZodTypeAny, {
674
673
  configId?: string;
675
674
  disputeResolversFilter?: Record<string, unknown>;
676
675
  disputeResolversSkip?: number;
@@ -687,15 +686,15 @@ declare const GetDisputeResolversParameters_base: import("@goat-sdk/core").ToolP
687
686
  }>>;
688
687
  export declare class GetDisputeResolversParameters extends GetDisputeResolversParameters_base {
689
688
  }
690
- declare const GetAllProductsWithNotVoidedVariantsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
691
- productsSkip: z.ZodOptional<z.ZodNumber>;
692
- productsFirst: z.ZodOptional<z.ZodNumber>;
693
- productsOrderBy: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
694
- productsOrderDirection: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
695
- productsFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
689
+ declare const GetAllProductsWithNotVoidedVariantsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
690
+ productsSkip: import("zod").ZodOptional<import("zod").ZodNumber>;
691
+ productsFirst: import("zod").ZodOptional<import("zod").ZodNumber>;
692
+ productsOrderBy: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
693
+ productsOrderDirection: import("zod").ZodOptional<import("zod").ZodEnum<[string, ...string[]]>>;
694
+ productsFilter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
696
695
  } & {
697
- configId: z.ZodEffects<z.ZodString, string, string>;
698
- }, "strip", z.ZodTypeAny, {
696
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
697
+ }, "strip", import("zod").ZodTypeAny, {
699
698
  configId?: string;
700
699
  productsFilter?: Record<string, unknown>;
701
700
  productsSkip?: number;
@@ -712,39 +711,39 @@ declare const GetAllProductsWithNotVoidedVariantsParameters_base: import("@goat-
712
711
  }>>;
713
712
  export declare class GetAllProductsWithNotVoidedVariantsParameters extends GetAllProductsWithNotVoidedVariantsParameters_base {
714
713
  }
715
- declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
716
- template: z.ZodString;
717
- offerData: z.ZodObject<{
718
- price: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
719
- sellerDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
720
- agentId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
721
- buyerCancelPenalty: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
722
- quantityAvailable: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
723
- validFromDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
724
- validUntilDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
725
- voucherRedeemableFromDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
726
- voucherRedeemableUntilDateInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
727
- disputePeriodDurationInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
728
- voucherValidDurationInMS: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
729
- resolutionPeriodDurationInMS: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
730
- exchangeToken: z.ZodEffects<z.ZodString, string, string>;
731
- disputeResolverId: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
732
- metadataUri: z.ZodString;
733
- metadataHash: z.ZodString;
734
- collectionIndex: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
735
- feeLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>>;
736
- priceType: z.ZodOptional<z.ZodNumber>;
737
- royaltyInfo: z.ZodOptional<z.ZodArray<z.ZodObject<{
738
- recipients: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
739
- bps: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>, "many">;
740
- }, "strip", z.ZodTypeAny, {
714
+ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
715
+ template: import("zod").ZodString;
716
+ offerData: import("zod").ZodObject<{
717
+ 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>;
718
+ 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>;
719
+ 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>;
720
+ 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>;
721
+ 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>;
722
+ 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>;
723
+ 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>;
724
+ 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>;
725
+ 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>;
726
+ 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>;
727
+ 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>>;
728
+ 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>;
729
+ exchangeToken: import("zod").ZodEffects<import("zod").ZodString, string, string>;
730
+ 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>;
731
+ metadataUri: import("zod").ZodString;
732
+ metadataHash: import("zod").ZodString;
733
+ 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>;
734
+ 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>>;
735
+ priceType: import("zod").ZodOptional<import("zod").ZodNumber>;
736
+ royaltyInfo: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
737
+ recipients: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">;
738
+ 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">;
739
+ }, "strip", import("zod").ZodTypeAny, {
741
740
  recipients?: string[];
742
741
  bps?: (string | number | bigint)[];
743
742
  }, {
744
743
  recipients?: string[];
745
744
  bps?: (string | number | bigint)[];
746
745
  }>, "many">>;
747
- }, "strict", z.ZodTypeAny, {
746
+ }, "strict", import("zod").ZodTypeAny, {
748
747
  agentId?: string | number | bigint;
749
748
  disputeResolverId?: string | number | bigint;
750
749
  collectionIndex?: string | number | bigint;
@@ -793,14 +792,14 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
793
792
  resolutionPeriodDurationInMS?: string | number | bigint;
794
793
  feeLimit?: string | number | bigint;
795
794
  }>;
796
- offerMetadata: z.ZodObject<{
797
- sellerContactMethod: z.ZodString;
798
- disputeResolverContactMethod: z.ZodString;
799
- escalationDeposit: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
800
- escalationResponsePeriodInSec: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodBigInt]>, z.ZodNumber]>, string | number | bigint, string | number | bigint>;
801
- sellerTradingName: z.ZodString;
802
- returnPeriodInDays: z.ZodNumber;
803
- }, "strict", z.ZodTypeAny, {
795
+ offerMetadata: import("zod").ZodObject<{
796
+ sellerContactMethod: import("zod").ZodString;
797
+ disputeResolverContactMethod: import("zod").ZodString;
798
+ 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>;
799
+ 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>;
800
+ sellerTradingName: import("zod").ZodString;
801
+ returnPeriodInDays: import("zod").ZodNumber;
802
+ }, "strict", import("zod").ZodTypeAny, {
804
803
  sellerContactMethod?: string;
805
804
  disputeResolverContactMethod?: string;
806
805
  escalationDeposit?: string | number | bigint;
@@ -816,9 +815,9 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
816
815
  returnPeriodInDays?: number;
817
816
  }>;
818
817
  } & {
819
- configId: z.ZodEffects<z.ZodString, string, string>;
820
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
821
- }, "strip", z.ZodTypeAny, {
818
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
819
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
820
+ }, "strip", import("zod").ZodTypeAny, {
822
821
  configId?: string;
823
822
  signerAddress?: string;
824
823
  template?: string;
@@ -895,101 +894,125 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
895
894
  }>>;
896
895
  export declare class RenderContractualAgreementParameters extends RenderContractualAgreementParameters_base {
897
896
  }
898
- declare const StoreProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
899
- exchangePolicy: z.ZodObject<{
900
- sellerContactMethod: z.ZodString;
901
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
902
- sellerContactMethod: z.ZodString;
903
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
904
- sellerContactMethod: z.ZodString;
905
- }, z.ZodTypeAny, "passthrough">>;
906
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
907
- exchangePolicy: z.ZodObject<{
908
- sellerContactMethod: z.ZodString;
909
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
910
- sellerContactMethod: z.ZodString;
911
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
912
- sellerContactMethod: z.ZodString;
913
- }, z.ZodTypeAny, "passthrough">>;
914
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
915
- exchangePolicy: z.ZodObject<{
916
- sellerContactMethod: z.ZodString;
917
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
918
- sellerContactMethod: z.ZodString;
919
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
920
- sellerContactMethod: z.ZodString;
921
- }, z.ZodTypeAny, "passthrough">>;
922
- }, z.ZodTypeAny, "passthrough">>>;
897
+ declare const StoreProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
898
+ exchangePolicy: import("zod").ZodObject<{
899
+ sellerContactMethod: import("zod").ZodString;
900
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
901
+ sellerContactMethod: import("zod").ZodString;
902
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
903
+ sellerContactMethod: import("zod").ZodString;
904
+ }, import("zod").ZodTypeAny, "passthrough">>;
905
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
906
+ exchangePolicy: import("zod").ZodObject<{
907
+ sellerContactMethod: import("zod").ZodString;
908
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
909
+ sellerContactMethod: import("zod").ZodString;
910
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
911
+ sellerContactMethod: import("zod").ZodString;
912
+ }, import("zod").ZodTypeAny, "passthrough">>;
913
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
914
+ exchangePolicy: import("zod").ZodObject<{
915
+ sellerContactMethod: import("zod").ZodString;
916
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
917
+ sellerContactMethod: import("zod").ZodString;
918
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
919
+ sellerContactMethod: import("zod").ZodString;
920
+ }, import("zod").ZodTypeAny, "passthrough">>;
921
+ }, import("zod").ZodTypeAny, "passthrough">>>;
923
922
  export declare class StoreProductV1MetadataParameters extends StoreProductV1MetadataParameters_base {
924
923
  }
925
- declare const StoreBundleItemProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
926
- exchangePolicy: z.ZodObject<{
927
- sellerContactMethod: z.ZodString;
928
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
929
- sellerContactMethod: z.ZodString;
930
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
931
- sellerContactMethod: z.ZodString;
932
- }, z.ZodTypeAny, "passthrough">>;
933
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
934
- exchangePolicy: z.ZodObject<{
935
- sellerContactMethod: z.ZodString;
936
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
937
- sellerContactMethod: z.ZodString;
938
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
939
- sellerContactMethod: z.ZodString;
940
- }, z.ZodTypeAny, "passthrough">>;
941
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
942
- exchangePolicy: z.ZodObject<{
943
- sellerContactMethod: z.ZodString;
944
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
945
- sellerContactMethod: z.ZodString;
946
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
947
- sellerContactMethod: z.ZodString;
948
- }, z.ZodTypeAny, "passthrough">>;
949
- }, z.ZodTypeAny, "passthrough">>>;
924
+ declare const StoreBundleItemProductV1MetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
925
+ exchangePolicy: import("zod").ZodObject<{
926
+ sellerContactMethod: import("zod").ZodString;
927
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
928
+ sellerContactMethod: import("zod").ZodString;
929
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
930
+ sellerContactMethod: import("zod").ZodString;
931
+ }, import("zod").ZodTypeAny, "passthrough">>;
932
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
933
+ exchangePolicy: import("zod").ZodObject<{
934
+ sellerContactMethod: import("zod").ZodString;
935
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
936
+ sellerContactMethod: import("zod").ZodString;
937
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
938
+ sellerContactMethod: import("zod").ZodString;
939
+ }, import("zod").ZodTypeAny, "passthrough">>;
940
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
941
+ exchangePolicy: import("zod").ZodObject<{
942
+ sellerContactMethod: import("zod").ZodString;
943
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
944
+ sellerContactMethod: import("zod").ZodString;
945
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
946
+ sellerContactMethod: import("zod").ZodString;
947
+ }, import("zod").ZodTypeAny, "passthrough">>;
948
+ }, import("zod").ZodTypeAny, "passthrough">>>;
950
949
  export declare class StoreBundleItemProductV1MetadataParameters extends StoreBundleItemProductV1MetadataParameters_base {
951
950
  }
952
- declare const StoreBundleItemNftMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
953
- configId: z.ZodEffects<z.ZodString, string, string>;
954
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
955
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
956
- configId: z.ZodEffects<z.ZodString, string, string>;
957
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
958
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
959
- configId: z.ZodEffects<z.ZodString, string, string>;
960
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
961
- }, z.ZodTypeAny, "passthrough">>>;
951
+ declare const StoreBundleItemNftMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
952
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
953
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
954
+ type: import("zod").ZodEnum<["ITEM_NFT"]>;
955
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
956
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
957
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
958
+ type: import("zod").ZodEnum<["ITEM_NFT"]>;
959
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
960
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
961
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
962
+ type: import("zod").ZodEnum<["ITEM_NFT"]>;
963
+ }, import("zod").ZodTypeAny, "passthrough">>>;
962
964
  export declare class StoreBundleItemNftMetadataParameters extends StoreBundleItemNftMetadataParameters_base {
963
965
  }
964
- declare const StoreBundleMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
965
- configId: z.ZodEffects<z.ZodString, string, string>;
966
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
967
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
968
- configId: z.ZodEffects<z.ZodString, string, string>;
969
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
970
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
971
- configId: z.ZodEffects<z.ZodString, string, string>;
972
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
973
- }, z.ZodTypeAny, "passthrough">>>;
966
+ declare const StoreBundleMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
967
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
968
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
969
+ type: import("zod").ZodEnum<["BUNDLE"]>;
970
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
971
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
972
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
973
+ type: import("zod").ZodEnum<["BUNDLE"]>;
974
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
975
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
976
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
977
+ type: import("zod").ZodEnum<["BUNDLE"]>;
978
+ }, import("zod").ZodTypeAny, "passthrough">>>;
974
979
  export declare class StoreBundleMetadataParameters extends StoreBundleMetadataParameters_base {
975
980
  }
976
- declare const StoreCustomMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{
977
- configId: z.ZodEffects<z.ZodString, string, string>;
978
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
979
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
980
- configId: z.ZodEffects<z.ZodString, string, string>;
981
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
982
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
983
- configId: z.ZodEffects<z.ZodString, string, string>;
984
- signerAddress: z.ZodEffects<z.ZodString, string, string>;
985
- }, z.ZodTypeAny, "passthrough">>>;
981
+ declare const StoreCustomMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
982
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
983
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
984
+ type: import("zod").ZodEnum<["BASE"]>;
985
+ }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
986
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
987
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
988
+ type: import("zod").ZodEnum<["BASE"]>;
989
+ }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
990
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
991
+ signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
992
+ type: import("zod").ZodEnum<["BASE"]>;
993
+ }, import("zod").ZodTypeAny, "passthrough">>>;
986
994
  export declare class StoreCustomMetadataParameters extends StoreCustomMetadataParameters_base {
987
995
  }
988
- declare const GetConfigIdsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
996
+ declare const GetConfigIdsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>>;
989
997
  export declare class GetConfigIdsParameters extends GetConfigIdsParameters_base {
990
998
  }
991
- declare const GetRegisteredAgentsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
999
+ declare const GetRegisteredAgentsParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
1000
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1001
+ }, "strip", import("zod").ZodTypeAny, {
1002
+ configId?: string;
1003
+ }, {
1004
+ configId?: string;
1005
+ }>>;
992
1006
  export declare class GetRegisteredAgentsParameters extends GetRegisteredAgentsParameters_base {
993
1007
  }
1008
+ declare const GetTokensParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
1009
+ configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1010
+ }, "strip", import("zod").ZodTypeAny, {
1011
+ configId?: string;
1012
+ }, {
1013
+ configId?: string;
1014
+ }>>;
1015
+ export declare class GetTokensParameters extends GetTokensParameters_base {
1016
+ }
994
1017
  export {};
995
1018
  //# sourceMappingURL=parameters.d.ts.map