anchor-sdk 0.1.43-beta.5 → 0.1.43-beta.6
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 +4 -1
- package/dist/generated/Api.d.ts +16 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +4 -4
- package/dist/react/index.js +2 -2
- package/dist/react/index.js.map +4 -4
- package/package.json +1 -1
|
@@ -182,7 +182,10 @@ export declare class AnchorApiClientV2 {
|
|
|
182
182
|
* @summary Get badge detail by category
|
|
183
183
|
* @request GET:/v2/badges/categories/{category}
|
|
184
184
|
*/
|
|
185
|
-
categoriesDetail(category: string
|
|
185
|
+
categoriesDetail(category: string, query?: {
|
|
186
|
+
/** series identifier */
|
|
187
|
+
series?: string;
|
|
188
|
+
}): Promise<WebResultBadgeCategoryDetailResponse>;
|
|
186
189
|
/**
|
|
187
190
|
* 获取徽章详情
|
|
188
191
|
* @route GET /v2/badges/categories
|
package/dist/generated/Api.d.ts
CHANGED
|
@@ -2048,6 +2048,18 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
2048
2048
|
* @request DELETE:/s1/teams/remove/{captainUserId}/{userId}
|
|
2049
2049
|
*/
|
|
2050
2050
|
removeTeamMember: (captainUserId: string, userId: string, params?: RequestParams) => Promise<HttpResponse<WebResultRemoveMemberResponse, any>>;
|
|
2051
|
+
/**
|
|
2052
|
+
* @description 队长更新团队类型
|
|
2053
|
+
*
|
|
2054
|
+
* @tags AnchorS2S
|
|
2055
|
+
* @name UpdateTeamType
|
|
2056
|
+
* @summary Update team type
|
|
2057
|
+
* @request POST:/s1/teams/update/type/{captainUserId}
|
|
2058
|
+
*/
|
|
2059
|
+
updateTeamType: (captainUserId: string, query: {
|
|
2060
|
+
/** Target team type to update to */
|
|
2061
|
+
targetType: string;
|
|
2062
|
+
}, params?: RequestParams) => Promise<HttpResponse<WebResultTeamDetailResponse, any>>;
|
|
2051
2063
|
/**
|
|
2052
2064
|
* @description 批量查询多个钱包地址的代币余额,透传调用RemoteInsightTokenService.GetTokenBalances
|
|
2053
2065
|
*
|
|
@@ -2322,7 +2334,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
2322
2334
|
* @summary Get badge detail by category
|
|
2323
2335
|
* @request GET:/v2/badges/categories/{category}
|
|
2324
2336
|
*/
|
|
2325
|
-
categoriesDetail: (category: string,
|
|
2337
|
+
categoriesDetail: (category: string, query?: {
|
|
2338
|
+
/** series identifier */
|
|
2339
|
+
series?: string;
|
|
2340
|
+
}, params?: RequestParams) => Promise<HttpResponse<WebResultBadgeCategoryDetailResponse, WebResultBadgeCategoryDetailResponse>>;
|
|
2326
2341
|
/**
|
|
2327
2342
|
* @description Get badges that the user can claim
|
|
2328
2343
|
*
|