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