anchor-sdk 0.1.41-internal.6 → 0.1.42-beta.0
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/AnchorApiClientV2.d.ts +6 -1
- package/dist/generated/Api.d.ts +620 -555
- package/dist/generated/Api.js +15 -0
- package/package.json +83 -85
- package/dist/AnchorApiClient.d.ts +0 -203
- package/dist/AnchorApiClient.js +0 -279
- package/dist/api/AnchorApiHttpClient.d.ts +0 -210
- package/dist/api/AnchorApiHttpClient.js +0 -411
- package/dist/api/types.d.ts +0 -764
- package/dist/api/types.js +0 -2
|
@@ -128,6 +128,7 @@ export declare class AnchorApiClientV2 {
|
|
|
128
128
|
getBadgeSeriesDetail(seriesId: string, params?: {
|
|
129
129
|
status?: string;
|
|
130
130
|
businessType?: string;
|
|
131
|
+
tokenIds?: string[];
|
|
131
132
|
}): Promise<WebResultBadgeSeriesDetailResponse>;
|
|
132
133
|
/**
|
|
133
134
|
* 获取徽章详情
|
|
@@ -150,7 +151,11 @@ export declare class AnchorApiClientV2 {
|
|
|
150
151
|
* @param data 徽章检查请求
|
|
151
152
|
* @returns 徽章检查响应
|
|
152
153
|
*/
|
|
153
|
-
checkUserClaimableBadges(data:
|
|
154
|
+
checkUserClaimableBadges(data: {
|
|
155
|
+
walletType?: "ALL" | "EVM" | "SOLANA";
|
|
156
|
+
groups?: string[];
|
|
157
|
+
[key: string]: any;
|
|
158
|
+
}): Promise<WebResultBadgeCheckResponse>;
|
|
154
159
|
/**
|
|
155
160
|
* 获取徽章领取签名
|
|
156
161
|
* @route POST /v2/badges/signatures
|