@book000/pixivts 0.41.51 → 0.41.53
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/pixiv.d.ts +23 -23
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/pixiv.d.ts
CHANGED
|
@@ -67,152 +67,152 @@ export default class Pixiv {
|
|
|
67
67
|
/**
|
|
68
68
|
* 画像のaxiosストリームを取得する。
|
|
69
69
|
*/
|
|
70
|
-
static getAxiosImageStream(url: string): Promise<AxiosResponse<ReadStream, any>>;
|
|
70
|
+
static getAxiosImageStream(url: string): Promise<AxiosResponse<ReadStream, any, {}>>;
|
|
71
71
|
/**
|
|
72
72
|
* イラストの詳細情報を取得する。
|
|
73
73
|
*
|
|
74
74
|
* @param options オプション
|
|
75
75
|
* @returns レスポンス
|
|
76
76
|
*/
|
|
77
|
-
illustDetail(options: IllustDetailOptions): Promise<AxiosResponse<GetV1IllustDetailResponse, any>>;
|
|
77
|
+
illustDetail(options: IllustDetailOptions): Promise<AxiosResponse<GetV1IllustDetailResponse, any, {}>>;
|
|
78
78
|
/**
|
|
79
79
|
* イラストの関連イラストを取得する。
|
|
80
80
|
*
|
|
81
81
|
* @param options オプション
|
|
82
82
|
* @returns レスポンス
|
|
83
83
|
*/
|
|
84
|
-
illustRelated(options: IllustRelatedOptions): Promise<AxiosResponse<GetV2IllustRelatedResponse, any>>;
|
|
84
|
+
illustRelated(options: IllustRelatedOptions): Promise<AxiosResponse<GetV2IllustRelatedResponse, any, {}>>;
|
|
85
85
|
/**
|
|
86
86
|
* イラストを検索する。
|
|
87
87
|
*
|
|
88
88
|
* @param options オプション
|
|
89
89
|
* @returns レスポンス
|
|
90
90
|
*/
|
|
91
|
-
searchIllust(options: SearchIllustOptions): Promise<AxiosResponse<GetV1SearchIllustResponse, any>>;
|
|
91
|
+
searchIllust(options: SearchIllustOptions): Promise<AxiosResponse<GetV1SearchIllustResponse, any, {}>>;
|
|
92
92
|
/**
|
|
93
93
|
* イラストランキングを取得する。
|
|
94
94
|
*
|
|
95
95
|
* @param options オプション
|
|
96
96
|
* @returns レスポンス
|
|
97
97
|
*/
|
|
98
|
-
illustRanking(options?: IllustRankingOptions): Promise<AxiosResponse<GetV1IllustRankingResponse, any>>;
|
|
98
|
+
illustRanking(options?: IllustRankingOptions): Promise<AxiosResponse<GetV1IllustRankingResponse, any, {}>>;
|
|
99
99
|
/**
|
|
100
100
|
* おすすめイラストを取得する。
|
|
101
101
|
*
|
|
102
102
|
* @param options オプション
|
|
103
103
|
* @returns レスポンス
|
|
104
104
|
*/
|
|
105
|
-
illustRecommended(options?: RecommendedIllustOptions): Promise<AxiosResponse<GetV1IllustRecommendedResponse, any>>;
|
|
105
|
+
illustRecommended(options?: RecommendedIllustOptions): Promise<AxiosResponse<GetV1IllustRecommendedResponse, any, {}>>;
|
|
106
106
|
/**
|
|
107
107
|
* イラストシリーズの詳細情報を取得する。
|
|
108
108
|
*
|
|
109
109
|
* @param options オプション
|
|
110
110
|
* @returns レスポンス
|
|
111
111
|
*/
|
|
112
|
-
illustSeries(options: IllustSeriesOptions): Promise<AxiosResponse<GetV1IllustSeriesResponse, any>>;
|
|
112
|
+
illustSeries(options: IllustSeriesOptions): Promise<AxiosResponse<GetV1IllustSeriesResponse, any, {}>>;
|
|
113
113
|
/**
|
|
114
114
|
* イラストをブックマークする。
|
|
115
115
|
*
|
|
116
116
|
* @param options オプション
|
|
117
117
|
* @returns レスポンス
|
|
118
118
|
*/
|
|
119
|
-
illustBookmarkAdd(options: IllustBookmarkAddOptions): Promise<AxiosResponse<PostV2IllustBookmarkAddResponse, any>>;
|
|
119
|
+
illustBookmarkAdd(options: IllustBookmarkAddOptions): Promise<AxiosResponse<PostV2IllustBookmarkAddResponse, any, {}>>;
|
|
120
120
|
/**
|
|
121
121
|
* イラストのブックマークを削除する。
|
|
122
122
|
*
|
|
123
123
|
* @param options オプション
|
|
124
124
|
* @returns レスポンス
|
|
125
125
|
*/
|
|
126
|
-
illustBookmarkDelete(options: IllustBookmarkDeleteOptions): Promise<AxiosResponse<PostV1IllustBookmarkDeleteResponse, any>>;
|
|
127
|
-
mangaRecommended(options?: MangaRecommendedOptions): Promise<AxiosResponse<GetV1MangaRecommendedResponse, any>>;
|
|
126
|
+
illustBookmarkDelete(options: IllustBookmarkDeleteOptions): Promise<AxiosResponse<PostV1IllustBookmarkDeleteResponse, any, {}>>;
|
|
127
|
+
mangaRecommended(options?: MangaRecommendedOptions): Promise<AxiosResponse<GetV1MangaRecommendedResponse, any, {}>>;
|
|
128
128
|
/**
|
|
129
129
|
* うごイラの詳細情報を取得する。
|
|
130
130
|
*
|
|
131
131
|
* @param options オプション
|
|
132
132
|
* @returns レスポンス
|
|
133
133
|
*/
|
|
134
|
-
ugoiraMetadata(options: UgoiraDetailOptions): Promise<AxiosResponse<GetV1IllustUgoiraMetadataResponse, any>>;
|
|
134
|
+
ugoiraMetadata(options: UgoiraDetailOptions): Promise<AxiosResponse<GetV1IllustUgoiraMetadataResponse, any, {}>>;
|
|
135
135
|
/**
|
|
136
136
|
* 小説の詳細情報を取得する。
|
|
137
137
|
*
|
|
138
138
|
* @param options オプション
|
|
139
139
|
* @returns レスポンス
|
|
140
140
|
*/
|
|
141
|
-
novelDetail(options: NovelDetailOptions): Promise<AxiosResponse<GetV2NovelDetailResponse, any>>;
|
|
141
|
+
novelDetail(options: NovelDetailOptions): Promise<AxiosResponse<GetV2NovelDetailResponse, any, {}>>;
|
|
142
142
|
/**
|
|
143
143
|
* 小説の本文を取得する。
|
|
144
144
|
*
|
|
145
145
|
* @param options オプション
|
|
146
146
|
* @returns レスポンス
|
|
147
147
|
*/
|
|
148
|
-
novelText(options: NovelTextOptions): Promise<AxiosResponse<string, any>>;
|
|
148
|
+
novelText(options: NovelTextOptions): Promise<AxiosResponse<string, any, {}>>;
|
|
149
149
|
/**
|
|
150
150
|
* 小説の関連小説を取得する。
|
|
151
151
|
*
|
|
152
152
|
* @param options オプション
|
|
153
153
|
* @returns レスポンス
|
|
154
154
|
*/
|
|
155
|
-
novelRelated(options: NovelRelatedOptions): Promise<AxiosResponse<GetV1NovelRelatedResponse, any>>;
|
|
155
|
+
novelRelated(options: NovelRelatedOptions): Promise<AxiosResponse<GetV1NovelRelatedResponse, any, {}>>;
|
|
156
156
|
/**
|
|
157
157
|
* 小説を検索する。
|
|
158
158
|
*
|
|
159
159
|
* @param options オプション
|
|
160
160
|
* @returns レスポンス
|
|
161
161
|
*/
|
|
162
|
-
searchNovel(options: SearchNovelOptions): Promise<AxiosResponse<GetV1SearchNovelResponse, any>>;
|
|
162
|
+
searchNovel(options: SearchNovelOptions): Promise<AxiosResponse<GetV1SearchNovelResponse, any, {}>>;
|
|
163
163
|
/**
|
|
164
164
|
* 小説ランキングを取得する。
|
|
165
165
|
*/
|
|
166
|
-
novelRanking(options?: NovelRankingOptions): Promise<AxiosResponse<GetV1NovelRankingResponse, any>>;
|
|
166
|
+
novelRanking(options?: NovelRankingOptions): Promise<AxiosResponse<GetV1NovelRankingResponse, any, {}>>;
|
|
167
167
|
/**
|
|
168
168
|
* おすすめ小説を取得する。
|
|
169
169
|
*
|
|
170
170
|
* @param options オプション
|
|
171
171
|
* @returns レスポンス
|
|
172
172
|
*/
|
|
173
|
-
novelRecommended(options?: RecommendedNovelOptions): Promise<AxiosResponse<GetV1NovelRecommendedResponse, any>>;
|
|
173
|
+
novelRecommended(options?: RecommendedNovelOptions): Promise<AxiosResponse<GetV1NovelRecommendedResponse, any, {}>>;
|
|
174
174
|
/**
|
|
175
175
|
* 小説シリーズの詳細情報を取得する。
|
|
176
176
|
*
|
|
177
177
|
* @param options オプション
|
|
178
178
|
* @returns レスポンス
|
|
179
179
|
*/
|
|
180
|
-
novelSeries(options: NovelSeriesOptions): Promise<AxiosResponse<GetV2NovelSeriesResponse, any>>;
|
|
180
|
+
novelSeries(options: NovelSeriesOptions): Promise<AxiosResponse<GetV2NovelSeriesResponse, any, {}>>;
|
|
181
181
|
/**
|
|
182
182
|
* 小説をブックマークする。
|
|
183
183
|
*
|
|
184
184
|
* @param options オプション
|
|
185
185
|
* @returns レスポンス
|
|
186
186
|
*/
|
|
187
|
-
novelBookmarkAdd(options: NovelBookmarkAddOptions): Promise<AxiosResponse<PostV2NovelBookmarkAddResponse, any>>;
|
|
187
|
+
novelBookmarkAdd(options: NovelBookmarkAddOptions): Promise<AxiosResponse<PostV2NovelBookmarkAddResponse, any, {}>>;
|
|
188
188
|
/**
|
|
189
189
|
* 小説のブックマークを削除する。
|
|
190
190
|
*
|
|
191
191
|
* @param options オプション
|
|
192
192
|
* @returns レスポンス
|
|
193
193
|
*/
|
|
194
|
-
novelBookmarkDelete(options: NovelBookmarkDeleteOptions): Promise<AxiosResponse<PostV1NovelBookmarkDeleteResponse, any>>;
|
|
194
|
+
novelBookmarkDelete(options: NovelBookmarkDeleteOptions): Promise<AxiosResponse<PostV1NovelBookmarkDeleteResponse, any, {}>>;
|
|
195
195
|
/**
|
|
196
196
|
* ユーザの詳細情報を取得する。
|
|
197
197
|
*
|
|
198
198
|
* @param options オプション
|
|
199
199
|
* @returns レスポンス
|
|
200
200
|
*/
|
|
201
|
-
userDetail(options: UserDetailOptions): Promise<AxiosResponse<GetV1UserDetailResponse, any>>;
|
|
201
|
+
userDetail(options: UserDetailOptions): Promise<AxiosResponse<GetV1UserDetailResponse, any, {}>>;
|
|
202
202
|
/**
|
|
203
203
|
* ユーザのイラストブックマークを取得する。
|
|
204
204
|
*
|
|
205
205
|
* @param options オプション
|
|
206
206
|
* @returns レスポンス
|
|
207
207
|
*/
|
|
208
|
-
userBookmarksIllust(options: UserBookmarksIllustOptions): Promise<AxiosResponse<GetV1UserBookmarksIllustResponse, any>>;
|
|
208
|
+
userBookmarksIllust(options: UserBookmarksIllustOptions): Promise<AxiosResponse<GetV1UserBookmarksIllustResponse, any, {}>>;
|
|
209
209
|
/**
|
|
210
210
|
* ユーザの小説ブックマークを取得する。
|
|
211
211
|
*
|
|
212
212
|
* @param options オプション
|
|
213
213
|
* @returns レスポンス
|
|
214
214
|
*/
|
|
215
|
-
userBookmarksNovel(options: UserBookmarksNovelOptions): Promise<AxiosResponse<GetV1UserBookmarksNovelResponse, any>>;
|
|
215
|
+
userBookmarksNovel(options: UserBookmarksNovelOptions): Promise<AxiosResponse<GetV1UserBookmarksNovelResponse, any, {}>>;
|
|
216
216
|
/**
|
|
217
217
|
* 接続を閉じる。
|
|
218
218
|
*/
|