@bosonprotocol/agentic-commerce 1.0.0-alpha.83 → 1.0.0-alpha.85
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.
- package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.d.ts +3 -3
- package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.d.ts.map +1 -1
- package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.js +14 -4
- package/dist/boson/goat-sdk-plugin/boson-protocol-plugin.service.js.map +1 -1
- package/dist/boson/goat-sdk-plugin/parameters.d.ts +401 -394
- package/dist/boson/goat-sdk-plugin/parameters.d.ts.map +1 -1
- package/dist/boson/goat-sdk-plugin/parameters.js +8 -1
- package/dist/boson/goat-sdk-plugin/parameters.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,73 +1,74 @@
|
|
|
1
1
|
import { seller } from "@bosonprotocol/metadata";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
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<
|
|
66
|
-
offerId:
|
|
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:
|
|
69
|
-
signerAddress:
|
|
70
|
-
}, "strip",
|
|
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<
|
|
92
|
-
royaltyPercentage:
|
|
93
|
-
authTokenType:
|
|
94
|
-
contractUri:
|
|
95
|
-
authTokenId:
|
|
96
|
-
} & {
|
|
97
|
-
configId:
|
|
98
|
-
signerAddress:
|
|
99
|
-
}, "passthrough",
|
|
100
|
-
royaltyPercentage:
|
|
101
|
-
authTokenType:
|
|
102
|
-
contractUri:
|
|
103
|
-
authTokenId:
|
|
104
|
-
} & {
|
|
105
|
-
configId:
|
|
106
|
-
signerAddress:
|
|
107
|
-
},
|
|
108
|
-
royaltyPercentage:
|
|
109
|
-
authTokenType:
|
|
110
|
-
contractUri:
|
|
111
|
-
authTokenId:
|
|
112
|
-
} & {
|
|
113
|
-
configId:
|
|
114
|
-
signerAddress:
|
|
115
|
-
},
|
|
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<
|
|
134
|
-
entityId:
|
|
135
|
-
list:
|
|
136
|
-
tokenAddress:
|
|
137
|
-
amount:
|
|
138
|
-
}, "strip",
|
|
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:
|
|
147
|
-
signerAddress:
|
|
148
|
-
}, "strip",
|
|
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<
|
|
168
|
-
entityId:
|
|
169
|
-
tokenAddress:
|
|
170
|
-
amount:
|
|
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:
|
|
173
|
-
signerAddress:
|
|
174
|
-
}, "strip",
|
|
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<
|
|
190
|
-
offerId:
|
|
191
|
-
buyer:
|
|
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:
|
|
194
|
-
signerAddress:
|
|
195
|
-
}, "strip",
|
|
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<
|
|
209
|
-
exchangeId:
|
|
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:
|
|
212
|
-
signerAddress:
|
|
213
|
-
}, "strip",
|
|
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<
|
|
225
|
-
exchangeId:
|
|
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:
|
|
228
|
-
signerAddress:
|
|
229
|
-
}, "strip",
|
|
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<
|
|
241
|
-
exchangeId:
|
|
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:
|
|
244
|
-
signerAddress:
|
|
245
|
-
}, "strip",
|
|
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<
|
|
257
|
-
exchangeId:
|
|
258
|
-
newDisputeTimeout:
|
|
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:
|
|
261
|
-
signerAddress:
|
|
262
|
-
}, "strip",
|
|
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<
|
|
276
|
-
exchangeId:
|
|
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:
|
|
279
|
-
signerAddress:
|
|
280
|
-
}, "strip",
|
|
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<
|
|
292
|
-
exchangeIds:
|
|
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:
|
|
295
|
-
signerAddress:
|
|
296
|
-
}, "strip",
|
|
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<
|
|
308
|
-
exchangeId:
|
|
309
|
-
buyerPercentBasisPoints:
|
|
310
|
-
sigR:
|
|
311
|
-
sigS:
|
|
312
|
-
sigV:
|
|
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:
|
|
315
|
-
signerAddress:
|
|
316
|
-
}, "strip",
|
|
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<
|
|
336
|
-
exchangeId:
|
|
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:
|
|
339
|
-
signerAddress:
|
|
340
|
-
}, "strip",
|
|
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<
|
|
352
|
-
exchangeId:
|
|
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:
|
|
355
|
-
signerAddress:
|
|
356
|
-
}, "strip",
|
|
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<
|
|
368
|
-
exchangeId:
|
|
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:
|
|
371
|
-
signerAddress:
|
|
372
|
-
}, "strip",
|
|
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<
|
|
384
|
-
exchangeId:
|
|
385
|
-
buyerPercent:
|
|
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:
|
|
388
|
-
signerAddress:
|
|
389
|
-
}, "strip",
|
|
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<
|
|
403
|
-
exchangeId:
|
|
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:
|
|
406
|
-
signerAddress:
|
|
407
|
-
}, "strip",
|
|
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<
|
|
419
|
-
exchangeId:
|
|
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:
|
|
422
|
-
signerAddress:
|
|
423
|
-
}, "strip",
|
|
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<
|
|
435
|
-
exchangeId:
|
|
436
|
-
buyerPercentBasisPoints:
|
|
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:
|
|
439
|
-
signerAddress:
|
|
440
|
-
}, "strip",
|
|
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<
|
|
454
|
-
fundsSkip:
|
|
455
|
-
fundsFirst:
|
|
456
|
-
fundsOrderBy:
|
|
457
|
-
fundsOrderDirection:
|
|
458
|
-
fundsFilter:
|
|
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:
|
|
461
|
-
}, "strip",
|
|
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<
|
|
479
|
-
offersSkip:
|
|
480
|
-
offersFirst:
|
|
481
|
-
offersOrderBy:
|
|
482
|
-
offersOrderDirection:
|
|
483
|
-
offersFilter:
|
|
484
|
-
includeExchanges:
|
|
485
|
-
exchangesSkip:
|
|
486
|
-
exchangesFirst:
|
|
487
|
-
exchangesOrderBy:
|
|
488
|
-
exchangesOrderDirection:
|
|
489
|
-
exchangesFilter:
|
|
490
|
-
} & {
|
|
491
|
-
configId:
|
|
492
|
-
}, "strip",
|
|
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<
|
|
522
|
-
exchangesSkip:
|
|
523
|
-
exchangesFirst:
|
|
524
|
-
exchangesOrderBy:
|
|
525
|
-
exchangesOrderDirection:
|
|
526
|
-
exchangesFilter:
|
|
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:
|
|
529
|
-
}, "strip",
|
|
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<
|
|
547
|
-
sellersSkip:
|
|
548
|
-
sellersFirst:
|
|
549
|
-
sellersOrderBy:
|
|
550
|
-
sellersOrderDirection:
|
|
551
|
-
sellersFilter:
|
|
552
|
-
includeExchanges:
|
|
553
|
-
includeOffers:
|
|
554
|
-
includeFunds:
|
|
555
|
-
includeLogs:
|
|
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:
|
|
558
|
-
}, "strip",
|
|
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<
|
|
584
|
-
address:
|
|
585
|
-
sellersSkip:
|
|
586
|
-
sellersFirst:
|
|
587
|
-
sellersOrderBy:
|
|
588
|
-
sellersOrderDirection:
|
|
589
|
-
sellersFilter:
|
|
590
|
-
includeExchanges:
|
|
591
|
-
includeOffers:
|
|
592
|
-
includeFunds:
|
|
593
|
-
includeLogs:
|
|
594
|
-
} & {
|
|
595
|
-
configId:
|
|
596
|
-
}, "strip",
|
|
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<
|
|
624
|
-
disputesSkip:
|
|
625
|
-
disputesFirst:
|
|
626
|
-
disputesOrderBy:
|
|
627
|
-
disputesOrderDirection:
|
|
628
|
-
disputesFilter:
|
|
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:
|
|
631
|
-
}, "strip",
|
|
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<
|
|
649
|
-
disputeId:
|
|
650
|
-
queryVars:
|
|
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:
|
|
653
|
-
}, "strip",
|
|
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<
|
|
665
|
-
disputeResolversSkip:
|
|
666
|
-
disputeResolversFirst:
|
|
667
|
-
disputeResolversOrderBy:
|
|
668
|
-
disputeResolversOrderDirection:
|
|
669
|
-
disputeResolversFilter:
|
|
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:
|
|
672
|
-
}, "strip",
|
|
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<
|
|
690
|
-
productsSkip:
|
|
691
|
-
productsFirst:
|
|
692
|
-
productsOrderBy:
|
|
693
|
-
productsOrderDirection:
|
|
694
|
-
productsFilter:
|
|
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:
|
|
697
|
-
}, "strip",
|
|
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<
|
|
715
|
-
template:
|
|
716
|
-
offerData:
|
|
717
|
-
price:
|
|
718
|
-
sellerDeposit:
|
|
719
|
-
agentId:
|
|
720
|
-
buyerCancelPenalty:
|
|
721
|
-
quantityAvailable:
|
|
722
|
-
validFromDateInMS:
|
|
723
|
-
validUntilDateInMS:
|
|
724
|
-
voucherRedeemableFromDateInMS:
|
|
725
|
-
voucherRedeemableUntilDateInMS:
|
|
726
|
-
disputePeriodDurationInMS:
|
|
727
|
-
voucherValidDurationInMS:
|
|
728
|
-
resolutionPeriodDurationInMS:
|
|
729
|
-
exchangeToken:
|
|
730
|
-
disputeResolverId:
|
|
731
|
-
metadataUri:
|
|
732
|
-
metadataHash:
|
|
733
|
-
collectionIndex:
|
|
734
|
-
feeLimit:
|
|
735
|
-
priceType:
|
|
736
|
-
royaltyInfo:
|
|
737
|
-
recipients:
|
|
738
|
-
bps:
|
|
739
|
-
}, "strip",
|
|
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",
|
|
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:
|
|
796
|
-
sellerContactMethod:
|
|
797
|
-
disputeResolverContactMethod:
|
|
798
|
-
escalationDeposit:
|
|
799
|
-
escalationResponsePeriodInSec:
|
|
800
|
-
sellerTradingName:
|
|
801
|
-
returnPeriodInDays:
|
|
802
|
-
}, "strict",
|
|
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:
|
|
819
|
-
signerAddress:
|
|
820
|
-
}, "strip",
|
|
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<
|
|
898
|
-
exchangePolicy:
|
|
899
|
-
sellerContactMethod:
|
|
900
|
-
}, "passthrough",
|
|
901
|
-
sellerContactMethod:
|
|
902
|
-
},
|
|
903
|
-
sellerContactMethod:
|
|
904
|
-
},
|
|
905
|
-
}, "passthrough",
|
|
906
|
-
exchangePolicy:
|
|
907
|
-
sellerContactMethod:
|
|
908
|
-
}, "passthrough",
|
|
909
|
-
sellerContactMethod:
|
|
910
|
-
},
|
|
911
|
-
sellerContactMethod:
|
|
912
|
-
},
|
|
913
|
-
},
|
|
914
|
-
exchangePolicy:
|
|
915
|
-
sellerContactMethod:
|
|
916
|
-
}, "passthrough",
|
|
917
|
-
sellerContactMethod:
|
|
918
|
-
},
|
|
919
|
-
sellerContactMethod:
|
|
920
|
-
},
|
|
921
|
-
},
|
|
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<
|
|
925
|
-
exchangePolicy:
|
|
926
|
-
sellerContactMethod:
|
|
927
|
-
}, "passthrough",
|
|
928
|
-
sellerContactMethod:
|
|
929
|
-
},
|
|
930
|
-
sellerContactMethod:
|
|
931
|
-
},
|
|
932
|
-
}, "passthrough",
|
|
933
|
-
exchangePolicy:
|
|
934
|
-
sellerContactMethod:
|
|
935
|
-
}, "passthrough",
|
|
936
|
-
sellerContactMethod:
|
|
937
|
-
},
|
|
938
|
-
sellerContactMethod:
|
|
939
|
-
},
|
|
940
|
-
},
|
|
941
|
-
exchangePolicy:
|
|
942
|
-
sellerContactMethod:
|
|
943
|
-
}, "passthrough",
|
|
944
|
-
sellerContactMethod:
|
|
945
|
-
},
|
|
946
|
-
sellerContactMethod:
|
|
947
|
-
},
|
|
948
|
-
},
|
|
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<
|
|
952
|
-
configId:
|
|
953
|
-
signerAddress:
|
|
954
|
-
}, "passthrough",
|
|
955
|
-
configId:
|
|
956
|
-
signerAddress:
|
|
957
|
-
},
|
|
958
|
-
configId:
|
|
959
|
-
signerAddress:
|
|
960
|
-
},
|
|
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<
|
|
964
|
-
configId:
|
|
965
|
-
signerAddress:
|
|
966
|
-
}, "passthrough",
|
|
967
|
-
configId:
|
|
968
|
-
signerAddress:
|
|
969
|
-
},
|
|
970
|
-
configId:
|
|
971
|
-
signerAddress:
|
|
972
|
-
},
|
|
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<
|
|
976
|
-
configId:
|
|
977
|
-
signerAddress:
|
|
978
|
-
}, "passthrough",
|
|
979
|
-
configId:
|
|
980
|
-
signerAddress:
|
|
981
|
-
},
|
|
982
|
-
configId:
|
|
983
|
-
signerAddress:
|
|
984
|
-
},
|
|
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.ZodOptional<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.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
|
|
992
|
+
export declare class GetRegisteredAgentsParameters extends GetRegisteredAgentsParameters_base {
|
|
993
|
+
}
|
|
987
994
|
export {};
|
|
988
995
|
//# sourceMappingURL=parameters.d.ts.map
|