@bosonprotocol/agentic-commerce 1.0.0-alpha.84 → 1.0.0-alpha.86

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.
@@ -1,73 +1,74 @@
1
1
  import { seller } from "@bosonprotocol/metadata";
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">>>;
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">>>;
63
64
  export declare class CreateOfferParameters extends CreateOfferParameters_base {
64
65
  }
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>;
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>;
67
68
  } & {
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, {
69
+ configId: z.ZodEffects<z.ZodString, string, string>;
70
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
71
+ }, "strip", z.ZodTypeAny, {
71
72
  offerId?: string | number | bigint;
72
73
  configId?: string;
73
74
  signerAddress?: string;
@@ -88,31 +89,31 @@ type CreateSellerNonMetadataFields = {
88
89
  authTokenType: number;
89
90
  };
90
91
  export type CreateSellerParametersType = CreateSellerNonMetadataFields & seller.SellerMetadata;
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">>>;
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">>>;
116
117
  export declare class CreateSellerParameters extends CreateSellerParameters_base {
117
118
  contractUri: CreateSellerParametersType["contractUri"];
118
119
  royaltyPercentage: CreateSellerParametersType["royaltyPercentage"];
@@ -130,12 +131,12 @@ export declare class CreateSellerParameters extends CreateSellerParameters_base
130
131
  socialLinks: CreateSellerParametersType["socialLinks"];
131
132
  salesChannels: CreateSellerParametersType["salesChannels"];
132
133
  }
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, {
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, {
139
140
  tokenAddress?: string;
140
141
  amount?: string | number | bigint;
141
142
  }, {
@@ -143,9 +144,9 @@ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParamet
143
144
  amount?: string | number | bigint;
144
145
  }>, "many">;
145
146
  } & {
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, {
147
+ configId: z.ZodEffects<z.ZodString, string, string>;
148
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
149
+ }, "strip", z.ZodTypeAny, {
149
150
  entityId?: string | number | bigint;
150
151
  configId?: string;
151
152
  signerAddress?: string;
@@ -164,14 +165,14 @@ declare const WithdrawFundsParameters_base: import("@goat-sdk/core").ToolParamet
164
165
  }>>;
165
166
  export declare class WithdrawFundsParameters extends WithdrawFundsParameters_base {
166
167
  }
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>;
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>;
171
172
  } & {
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, {
173
+ configId: z.ZodEffects<z.ZodString, string, string>;
174
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
175
+ }, "strip", z.ZodTypeAny, {
175
176
  tokenAddress?: string;
176
177
  entityId?: string | number | bigint;
177
178
  amount?: string | number | bigint;
@@ -186,13 +187,13 @@ declare const DepositFundsParameters_base: import("@goat-sdk/core").ToolParamete
186
187
  }>>;
187
188
  export declare class DepositFundsParameters extends DepositFundsParameters_base {
188
189
  }
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>>;
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>>;
192
193
  } & {
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, {
194
+ configId: z.ZodEffects<z.ZodString, string, string>;
195
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
196
+ }, "strip", z.ZodTypeAny, {
196
197
  buyer?: string;
197
198
  offerId?: string | number | bigint;
198
199
  configId?: string;
@@ -205,12 +206,12 @@ declare const CommitToOfferParameters_base: import("@goat-sdk/core").ToolParamet
205
206
  }>>;
206
207
  export declare class CommitToOfferParameters extends CommitToOfferParameters_base {
207
208
  }
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>;
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>;
210
211
  } & {
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, {
212
+ configId: z.ZodEffects<z.ZodString, string, string>;
213
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
214
+ }, "strip", z.ZodTypeAny, {
214
215
  exchangeId?: string | number | bigint;
215
216
  configId?: string;
216
217
  signerAddress?: string;
@@ -221,12 +222,12 @@ declare const CancelVoucherParameters_base: import("@goat-sdk/core").ToolParamet
221
222
  }>>;
222
223
  export declare class CancelVoucherParameters extends CancelVoucherParameters_base {
223
224
  }
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>;
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>;
226
227
  } & {
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, {
228
+ configId: z.ZodEffects<z.ZodString, string, string>;
229
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
230
+ }, "strip", z.ZodTypeAny, {
230
231
  exchangeId?: string | number | bigint;
231
232
  configId?: string;
232
233
  signerAddress?: string;
@@ -237,12 +238,12 @@ declare const RedeemVoucherParameters_base: import("@goat-sdk/core").ToolParamet
237
238
  }>>;
238
239
  export declare class RedeemVoucherParameters extends RedeemVoucherParameters_base {
239
240
  }
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>;
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>;
242
243
  } & {
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, {
244
+ configId: z.ZodEffects<z.ZodString, string, string>;
245
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
246
+ }, "strip", z.ZodTypeAny, {
246
247
  exchangeId?: string | number | bigint;
247
248
  configId?: string;
248
249
  signerAddress?: string;
@@ -253,13 +254,13 @@ declare const RevokeVoucherParameters_base: import("@goat-sdk/core").ToolParamet
253
254
  }>>;
254
255
  export declare class RevokeVoucherParameters extends RevokeVoucherParameters_base {
255
256
  }
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>;
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>;
259
260
  } & {
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, {
261
+ configId: z.ZodEffects<z.ZodString, string, string>;
262
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
263
+ }, "strip", z.ZodTypeAny, {
263
264
  exchangeId?: string | number | bigint;
264
265
  newDisputeTimeout?: string | number | bigint;
265
266
  configId?: string;
@@ -272,12 +273,12 @@ declare const ExtendDisputeTimeoutParameters_base: import("@goat-sdk/core").Tool
272
273
  }>>;
273
274
  export declare class ExtendDisputeTimeoutParameters extends ExtendDisputeTimeoutParameters_base {
274
275
  }
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>;
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>;
277
278
  } & {
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, {
279
+ configId: z.ZodEffects<z.ZodString, string, string>;
280
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
281
+ }, "strip", z.ZodTypeAny, {
281
282
  exchangeId?: string | number | bigint;
282
283
  configId?: string;
283
284
  signerAddress?: string;
@@ -288,12 +289,12 @@ declare const ExpireDisputeParameters_base: import("@goat-sdk/core").ToolParamet
288
289
  }>>;
289
290
  export declare class ExpireDisputeParameters extends ExpireDisputeParameters_base {
290
291
  }
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">;
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">;
293
294
  } & {
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, {
295
+ configId: z.ZodEffects<z.ZodString, string, string>;
296
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
297
+ }, "strip", z.ZodTypeAny, {
297
298
  configId?: string;
298
299
  signerAddress?: string;
299
300
  exchangeIds?: (string | number | bigint)[];
@@ -304,16 +305,16 @@ declare const ExpireDisputeBatchParameters_base: import("@goat-sdk/core").ToolPa
304
305
  }>>;
305
306
  export declare class ExpireDisputeBatchParameters extends ExpireDisputeBatchParameters_base {
306
307
  }
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>;
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>;
313
314
  } & {
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, {
315
+ configId: z.ZodEffects<z.ZodString, string, string>;
316
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
317
+ }, "strip", z.ZodTypeAny, {
317
318
  exchangeId?: string | number | bigint;
318
319
  sigR?: string;
319
320
  sigS?: string;
@@ -332,12 +333,12 @@ declare const ResolveDisputeParameters_base: import("@goat-sdk/core").ToolParame
332
333
  }>>;
333
334
  export declare class ResolveDisputeParameters extends ResolveDisputeParameters_base {
334
335
  }
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>;
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>;
337
338
  } & {
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, {
339
+ configId: z.ZodEffects<z.ZodString, string, string>;
340
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
341
+ }, "strip", z.ZodTypeAny, {
341
342
  exchangeId?: string | number | bigint;
342
343
  configId?: string;
343
344
  signerAddress?: string;
@@ -348,12 +349,12 @@ declare const RaiseDisputeParameters_base: import("@goat-sdk/core").ToolParamete
348
349
  }>>;
349
350
  export declare class RaiseDisputeParameters extends RaiseDisputeParameters_base {
350
351
  }
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>;
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>;
353
354
  } & {
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, {
355
+ configId: z.ZodEffects<z.ZodString, string, string>;
356
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
357
+ }, "strip", z.ZodTypeAny, {
357
358
  exchangeId?: string | number | bigint;
358
359
  configId?: string;
359
360
  signerAddress?: string;
@@ -364,12 +365,12 @@ declare const RetractDisputeParameters_base: import("@goat-sdk/core").ToolParame
364
365
  }>>;
365
366
  export declare class RetractDisputeParameters extends RetractDisputeParameters_base {
366
367
  }
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>;
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>;
369
370
  } & {
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, {
371
+ configId: z.ZodEffects<z.ZodString, string, string>;
372
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
373
+ }, "strip", z.ZodTypeAny, {
373
374
  exchangeId?: string | number | bigint;
374
375
  configId?: string;
375
376
  signerAddress?: string;
@@ -380,13 +381,13 @@ declare const EscalateDisputeParameters_base: import("@goat-sdk/core").ToolParam
380
381
  }>>;
381
382
  export declare class EscalateDisputeParameters extends EscalateDisputeParameters_base {
382
383
  }
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>;
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>;
386
387
  } & {
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, {
388
+ configId: z.ZodEffects<z.ZodString, string, string>;
389
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
390
+ }, "strip", z.ZodTypeAny, {
390
391
  exchangeId?: string | number | bigint;
391
392
  buyerPercent?: string | number | bigint;
392
393
  configId?: string;
@@ -399,12 +400,12 @@ declare const DecideDisputeParameters_base: import("@goat-sdk/core").ToolParamet
399
400
  }>>;
400
401
  export declare class DecideDisputeParameters extends DecideDisputeParameters_base {
401
402
  }
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>;
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>;
404
405
  } & {
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, {
406
+ configId: z.ZodEffects<z.ZodString, string, string>;
407
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
408
+ }, "strip", z.ZodTypeAny, {
408
409
  exchangeId?: string | number | bigint;
409
410
  configId?: string;
410
411
  signerAddress?: string;
@@ -415,12 +416,12 @@ declare const RefuseEscalatedDisputeParameters_base: import("@goat-sdk/core").To
415
416
  }>>;
416
417
  export declare class RefuseEscalatedDisputeParameters extends RefuseEscalatedDisputeParameters_base {
417
418
  }
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>;
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>;
420
421
  } & {
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, {
422
+ configId: z.ZodEffects<z.ZodString, string, string>;
423
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
424
+ }, "strip", z.ZodTypeAny, {
424
425
  exchangeId?: string | number | bigint;
425
426
  configId?: string;
426
427
  signerAddress?: string;
@@ -431,13 +432,13 @@ declare const ExpireEscalatedDisputeParameters_base: import("@goat-sdk/core").To
431
432
  }>>;
432
433
  export declare class ExpireEscalatedDisputeParameters extends ExpireEscalatedDisputeParameters_base {
433
434
  }
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>;
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>;
437
438
  } & {
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, {
439
+ configId: z.ZodEffects<z.ZodString, string, string>;
440
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
441
+ }, "strip", z.ZodTypeAny, {
441
442
  exchangeId?: string | number | bigint;
442
443
  configId?: string;
443
444
  signerAddress?: string;
@@ -450,15 +451,15 @@ declare const CreateDisputeResolutionProposalParameters_base: import("@goat-sdk/
450
451
  }>>;
451
452
  export declare class CreateDisputeResolutionProposalParameters extends CreateDisputeResolutionProposalParameters_base {
452
453
  }
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>>;
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>>;
459
460
  } & {
460
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
461
- }, "strip", import("zod").ZodTypeAny, {
461
+ configId: z.ZodEffects<z.ZodString, string, string>;
462
+ }, "strip", z.ZodTypeAny, {
462
463
  configId?: string;
463
464
  fundsFilter?: Record<string, unknown>;
464
465
  fundsSkip?: number;
@@ -475,21 +476,21 @@ declare const GetFundsParameters_base: import("@goat-sdk/core").ToolParametersSt
475
476
  }>>;
476
477
  export declare class GetFundsParameters extends GetFundsParameters_base {
477
478
  }
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, {
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, {
493
494
  configId?: string;
494
495
  exchangesFilter?: Record<string, unknown>;
495
496
  offersFilter?: Record<string, unknown>;
@@ -518,15 +519,15 @@ declare const GetOffersParameters_base: import("@goat-sdk/core").ToolParametersS
518
519
  }>>;
519
520
  export declare class GetOffersParameters extends GetOffersParameters_base {
520
521
  }
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>>;
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>>;
527
528
  } & {
528
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
529
- }, "strip", import("zod").ZodTypeAny, {
529
+ configId: z.ZodEffects<z.ZodString, string, string>;
530
+ }, "strip", z.ZodTypeAny, {
530
531
  configId?: string;
531
532
  exchangesFilter?: Record<string, unknown>;
532
533
  exchangesSkip?: number;
@@ -543,19 +544,19 @@ declare const GetExchangesParameters_base: import("@goat-sdk/core").ToolParamete
543
544
  }>>;
544
545
  export declare class GetExchangesParameters extends GetExchangesParameters_base {
545
546
  }
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>;
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>;
556
557
  } & {
557
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
558
- }, "strip", import("zod").ZodTypeAny, {
558
+ configId: z.ZodEffects<z.ZodString, string, string>;
559
+ }, "strip", z.ZodTypeAny, {
559
560
  configId?: string;
560
561
  sellersFilter?: Record<string, unknown>;
561
562
  sellersSkip?: number;
@@ -580,20 +581,20 @@ declare const GetSellersParameters_base: import("@goat-sdk/core").ToolParameters
580
581
  }>>;
581
582
  export declare class GetSellersParameters extends GetSellersParameters_base {
582
583
  }
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, {
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, {
597
598
  address?: string;
598
599
  configId?: string;
599
600
  sellersFilter?: Record<string, unknown>;
@@ -620,15 +621,15 @@ declare const GetSellersByAddressParameters_base: import("@goat-sdk/core").ToolP
620
621
  }>>;
621
622
  export declare class GetSellersByAddressParameters extends GetSellersByAddressParameters_base {
622
623
  }
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>>;
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>>;
629
630
  } & {
630
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
631
- }, "strip", import("zod").ZodTypeAny, {
631
+ configId: z.ZodEffects<z.ZodString, string, string>;
632
+ }, "strip", z.ZodTypeAny, {
632
633
  configId?: string;
633
634
  disputesFilter?: Record<string, unknown>;
634
635
  disputesSkip?: number;
@@ -645,12 +646,12 @@ declare const GetDisputesParameters_base: import("@goat-sdk/core").ToolParameter
645
646
  }>>;
646
647
  export declare class GetDisputesParameters extends GetDisputesParameters_base {
647
648
  }
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>;
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>;
651
652
  } & {
652
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
653
- }, "strip", import("zod").ZodTypeAny, {
653
+ configId: z.ZodEffects<z.ZodString, string, string>;
654
+ }, "strip", z.ZodTypeAny, {
654
655
  configId?: string;
655
656
  disputeId?: string | number | bigint;
656
657
  queryVars?: any;
@@ -661,15 +662,15 @@ declare const GetDisputeByIdParameters_base: import("@goat-sdk/core").ToolParame
661
662
  }>>;
662
663
  export declare class GetDisputeByIdParameters extends GetDisputeByIdParameters_base {
663
664
  }
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>>;
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>>;
670
671
  } & {
671
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
672
- }, "strip", import("zod").ZodTypeAny, {
672
+ configId: z.ZodEffects<z.ZodString, string, string>;
673
+ }, "strip", z.ZodTypeAny, {
673
674
  configId?: string;
674
675
  disputeResolversFilter?: Record<string, unknown>;
675
676
  disputeResolversSkip?: number;
@@ -686,15 +687,15 @@ declare const GetDisputeResolversParameters_base: import("@goat-sdk/core").ToolP
686
687
  }>>;
687
688
  export declare class GetDisputeResolversParameters extends GetDisputeResolversParameters_base {
688
689
  }
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>>;
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>>;
695
696
  } & {
696
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
697
- }, "strip", import("zod").ZodTypeAny, {
697
+ configId: z.ZodEffects<z.ZodString, string, string>;
698
+ }, "strip", z.ZodTypeAny, {
698
699
  configId?: string;
699
700
  productsFilter?: Record<string, unknown>;
700
701
  productsSkip?: number;
@@ -711,39 +712,39 @@ declare const GetAllProductsWithNotVoidedVariantsParameters_base: import("@goat-
711
712
  }>>;
712
713
  export declare class GetAllProductsWithNotVoidedVariantsParameters extends GetAllProductsWithNotVoidedVariantsParameters_base {
713
714
  }
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, {
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, {
740
741
  recipients?: string[];
741
742
  bps?: (string | number | bigint)[];
742
743
  }, {
743
744
  recipients?: string[];
744
745
  bps?: (string | number | bigint)[];
745
746
  }>, "many">>;
746
- }, "strict", import("zod").ZodTypeAny, {
747
+ }, "strict", z.ZodTypeAny, {
747
748
  agentId?: string | number | bigint;
748
749
  disputeResolverId?: string | number | bigint;
749
750
  collectionIndex?: string | number | bigint;
@@ -792,14 +793,14 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
792
793
  resolutionPeriodDurationInMS?: string | number | bigint;
793
794
  feeLimit?: string | number | bigint;
794
795
  }>;
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, {
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, {
803
804
  sellerContactMethod?: string;
804
805
  disputeResolverContactMethod?: string;
805
806
  escalationDeposit?: string | number | bigint;
@@ -815,9 +816,9 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
815
816
  returnPeriodInDays?: number;
816
817
  }>;
817
818
  } & {
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, {
819
+ configId: z.ZodEffects<z.ZodString, string, string>;
820
+ signerAddress: z.ZodEffects<z.ZodString, string, string>;
821
+ }, "strip", z.ZodTypeAny, {
821
822
  configId?: string;
822
823
  signerAddress?: string;
823
824
  template?: string;
@@ -894,95 +895,101 @@ declare const RenderContractualAgreementParameters_base: import("@goat-sdk/core"
894
895
  }>>;
895
896
  export declare class RenderContractualAgreementParameters extends RenderContractualAgreementParameters_base {
896
897
  }
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">>>;
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">>>;
922
923
  export declare class StoreProductV1MetadataParameters extends StoreProductV1MetadataParameters_base {
923
924
  }
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">>>;
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">>>;
949
950
  export declare class StoreBundleItemProductV1MetadataParameters extends StoreBundleItemProductV1MetadataParameters_base {
950
951
  }
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
- }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
955
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
956
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
957
- }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
958
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
959
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
960
- }, import("zod").ZodTypeAny, "passthrough">>>;
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">>>;
961
962
  export declare class StoreBundleItemNftMetadataParameters extends StoreBundleItemNftMetadataParameters_base {
962
963
  }
963
- declare const StoreBundleMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
964
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
965
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
966
- }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
967
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
968
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
969
- }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
970
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
971
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
972
- }, import("zod").ZodTypeAny, "passthrough">>>;
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">>>;
973
974
  export declare class StoreBundleMetadataParameters extends StoreBundleMetadataParameters_base {
974
975
  }
975
- declare const StoreCustomMetadataParameters_base: import("@goat-sdk/core").ToolParametersStatic<import("zod").ZodObject<{
976
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
977
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
978
- }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
979
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
980
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
981
- }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
982
- configId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
983
- signerAddress: import("zod").ZodEffects<import("zod").ZodString, string, string>;
984
- }, import("zod").ZodTypeAny, "passthrough">>>;
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">>>;
985
986
  export declare class StoreCustomMetadataParameters extends StoreCustomMetadataParameters_base {
986
987
  }
988
+ declare const GetConfigIdsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
989
+ export declare class GetConfigIdsParameters extends GetConfigIdsParameters_base {
990
+ }
991
+ declare const GetRegisteredAgentsParameters_base: import("@goat-sdk/core").ToolParametersStatic<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
992
+ export declare class GetRegisteredAgentsParameters extends GetRegisteredAgentsParameters_base {
993
+ }
987
994
  export {};
988
995
  //# sourceMappingURL=parameters.d.ts.map