Skip to content

Commit c90a985

Browse files
committed
Add missing file
1 parent c9b3e57 commit c90a985

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

sdk/typescript/inversify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@irohalab/bgm-sdk-inversify",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "An SDK for bgm.tv API",
55
"keywords": [],
66
"author": "IrohaLab",
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**
2+
* Bangumi API
3+
* 你可以在 <https://api.bgm.tv/v0/oauth/> 生成一个 Access Token ## 建议客户端开发者指定一个带有 APP 名称和版本的 User Agent,而非使用 HTTP 请求库默认的 UA 各种请求库的默认 UA 在未来可能会被禁用。
4+
*
5+
* The version of the OpenAPI document: 2022-04-23
6+
*
7+
*
8+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9+
* https://openapi-generator.tech
10+
* Do not edit the class manually.
11+
*/
12+
import { SubjectType } from './subjectType';
13+
14+
15+
export interface SubjectLegacy {
16+
/**
17+
* 条目 ID
18+
*/
19+
id?: number;
20+
/**
21+
* 条目地址
22+
*/
23+
url?: string;
24+
type?: SubjectType;
25+
/**
26+
* 条目名称
27+
*/
28+
name?: string;
29+
}

0 commit comments

Comments
 (0)