@book000/pixivts 0.1.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/index.d.ts +39 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +225 -0
- package/dist/index.js.map +1 -0
- package/dist/options.d.ts +68 -0
- package/dist/options.d.ts.map +1 -0
- package/dist/options.js +3 -0
- package/dist/options.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/endpoints/illust/bookmark/add.d.ts +2 -0
- package/dist/types/endpoints/illust/bookmark/add.d.ts.map +1 -0
- package/dist/types/endpoints/illust/bookmark/add.js +3 -0
- package/dist/types/endpoints/illust/bookmark/add.js.map +1 -0
- package/dist/types/endpoints/illust/detail.d.ts +5 -0
- package/dist/types/endpoints/illust/detail.d.ts.map +1 -0
- package/dist/types/endpoints/illust/detail.js +3 -0
- package/dist/types/endpoints/illust/detail.js.map +1 -0
- package/dist/types/endpoints/illust/recommended.d.ts +9 -0
- package/dist/types/endpoints/illust/recommended.d.ts.map +1 -0
- package/dist/types/endpoints/illust/recommended.js +3 -0
- package/dist/types/endpoints/illust/recommended.js.map +1 -0
- package/dist/types/endpoints/novel/detail.d.ts +5 -0
- package/dist/types/endpoints/novel/detail.d.ts.map +1 -0
- package/dist/types/endpoints/novel/detail.js +3 -0
- package/dist/types/endpoints/novel/detail.js.map +1 -0
- package/dist/types/endpoints/novel/recommended.d.ts +8 -0
- package/dist/types/endpoints/novel/recommended.d.ts.map +1 -0
- package/dist/types/endpoints/novel/recommended.js +3 -0
- package/dist/types/endpoints/novel/recommended.js.map +1 -0
- package/dist/types/endpoints/novel/series.d.ts +3 -0
- package/dist/types/endpoints/novel/series.d.ts.map +1 -0
- package/dist/types/endpoints/novel/series.js +3 -0
- package/dist/types/endpoints/novel/series.js.map +1 -0
- package/dist/types/endpoints/search/illust.d.ts +7 -0
- package/dist/types/endpoints/search/illust.d.ts.map +1 -0
- package/dist/types/endpoints/search/illust.js +3 -0
- package/dist/types/endpoints/search/illust.js.map +1 -0
- package/dist/types/endpoints/search/novel.d.ts +5 -0
- package/dist/types/endpoints/search/novel.d.ts.map +1 -0
- package/dist/types/endpoints/search/novel.js +3 -0
- package/dist/types/endpoints/search/novel.js.map +1 -0
- package/dist/types/endpoints/user/detail.d.ts +8 -0
- package/dist/types/endpoints/user/detail.d.ts.map +1 -0
- package/dist/types/endpoints/user/detail.js +3 -0
- package/dist/types/endpoints/user/detail.js.map +1 -0
- package/dist/types/pixiv-common.d.ts +27 -0
- package/dist/types/pixiv-common.d.ts.map +1 -0
- package/dist/types/pixiv-common.js +3 -0
- package/dist/types/pixiv-common.js.map +1 -0
- package/dist/types/pixiv-illust.d.ts +37 -0
- package/dist/types/pixiv-illust.d.ts.map +1 -0
- package/dist/types/pixiv-illust.js +3 -0
- package/dist/types/pixiv-illust.js.map +1 -0
- package/dist/types/pixiv-novel-series.d.ts +23 -0
- package/dist/types/pixiv-novel-series.d.ts.map +1 -0
- package/dist/types/pixiv-novel-series.js +3 -0
- package/dist/types/pixiv-novel-series.js.map +1 -0
- package/dist/types/pixiv-novel.d.ts +26 -0
- package/dist/types/pixiv-novel.d.ts.map +1 -0
- package/dist/types/pixiv-novel.js +3 -0
- package/dist/types/pixiv-novel.js.map +1 -0
- package/dist/types/pixiv-user.d.ts +54 -0
- package/dist/types/pixiv-user.d.ts.map +1 -0
- package/dist/types/pixiv-user.js +3 -0
- package/dist/types/pixiv-user.js.map +1 -0
- package/package.json +55 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { AxiosInstance, AxiosResponse } from 'axios';
|
|
3
|
+
import { ReadStream } from 'node:fs';
|
|
4
|
+
import qs from 'qs';
|
|
5
|
+
import { GetIllustDetailOptions, SearchIllustOptions, RecommendedIllustOptions, IllustBookmarkAddOptions, GetNovelDetailOptions, SearchNovelOptions, RecommendedNovelOptions, GetNovelSeriesOptions, GetUserDetailOptions } from './options';
|
|
6
|
+
import { IllustBookmarkAddApiResponse } from './types/endpoints/illust/bookmark/add';
|
|
7
|
+
import { GetIllustDetailApiResponse } from './types/endpoints/illust/detail';
|
|
8
|
+
import { RecommendedIllustApiResponse } from './types/endpoints/illust/recommended';
|
|
9
|
+
import { GetNovelDetailApiResponse } from './types/endpoints/novel/detail';
|
|
10
|
+
import { RecommendedNovelApiResponse } from './types/endpoints/novel/recommended';
|
|
11
|
+
import { SearchIllustApiResponse } from './types/endpoints/search/illust';
|
|
12
|
+
import { SearchNovelApiResponse } from './types/endpoints/search/novel';
|
|
13
|
+
import { GetUserDetailApiResponse } from './types/endpoints/user/detail';
|
|
14
|
+
export default class Pixiv {
|
|
15
|
+
private static clientId;
|
|
16
|
+
private static clientSecret;
|
|
17
|
+
private static hashSecret;
|
|
18
|
+
private hosts;
|
|
19
|
+
readonly userId: string;
|
|
20
|
+
readonly accessToken: string;
|
|
21
|
+
readonly refreshToken: string;
|
|
22
|
+
readonly axios: AxiosInstance;
|
|
23
|
+
private constructor();
|
|
24
|
+
static of(refreshToken: string): Promise<Pixiv>;
|
|
25
|
+
static getAxiosImageStream(url: string): Promise<AxiosResponse<ReadStream, any>>;
|
|
26
|
+
getIllustDetail(options: GetIllustDetailOptions): Promise<AxiosResponse<GetIllustDetailApiResponse, any>>;
|
|
27
|
+
searchIllust(options: SearchIllustOptions): Promise<AxiosResponse<SearchIllustApiResponse, any>>;
|
|
28
|
+
recommendedIllust(options: RecommendedIllustOptions): Promise<AxiosResponse<RecommendedIllustApiResponse, any>>;
|
|
29
|
+
illustBookmarkAdd(options: IllustBookmarkAddOptions): Promise<AxiosResponse<IllustBookmarkAddApiResponse, any>>;
|
|
30
|
+
getNovelDetail(options: GetNovelDetailOptions): Promise<AxiosResponse<GetNovelDetailApiResponse, any>>;
|
|
31
|
+
searchNovel(options: SearchNovelOptions): Promise<AxiosResponse<SearchNovelApiResponse, any>>;
|
|
32
|
+
recommendedNovel(options?: RecommendedNovelOptions): Promise<AxiosResponse<RecommendedNovelApiResponse, any>>;
|
|
33
|
+
getNovelSeries(options: GetNovelSeriesOptions): Promise<AxiosResponse<import("./types/pixiv-novel-series").PixivNovelSeriesItem, any>>;
|
|
34
|
+
getUserDetail(options: GetUserDetailOptions): Promise<AxiosResponse<GetUserDetailApiResponse, any>>;
|
|
35
|
+
static parseQueryString(url: string): qs.ParsedQs;
|
|
36
|
+
private static hash;
|
|
37
|
+
private request;
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAc,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AACpC,OAAO,EAAE,MAAM,IAAI,CAAA;AACnB,OAAO,EACL,sBAAsB,EACtB,mBAAmB,EACnB,wBAAwB,EACxB,wBAAwB,EACxB,qBAAqB,EACrB,kBAAkB,EAClB,uBAAuB,EACvB,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,4BAA4B,EAAE,MAAM,uCAAuC,CAAA;AACpF,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAA;AAC5E,OAAO,EAAE,4BAA4B,EAAE,MAAM,sCAAsC,CAAA;AACnF,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAA;AAC1E,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAA;AAEjF,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAA;AACzE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAA;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAA;AAYxE,MAAM,CAAC,OAAO,OAAO,KAAK;IACxB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAiC;IACxD,OAAO,CAAC,MAAM,CAAC,YAAY,CAA6C;IACxE,OAAO,CAAC,MAAM,CAAC,UAAU,CAC2C;IAEpE,OAAO,CAAC,KAAK,CAA8B;IAE3C,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAC5B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAA;IAS7B,OAAO;WA4Ba,EAAE,CAAC,YAAY,EAAE,MAAM;WA2CvB,mBAAmB,CAAC,GAAG,EAAE,MAAM;IAiBtC,eAAe,CAAC,OAAO,EAAE,sBAAsB;IAkB/C,YAAY,CAAC,OAAO,EAAE,mBAAmB;IAyBzC,iBAAiB,CAAC,OAAO,EAAE,wBAAwB;IA8BnD,iBAAiB,CAAC,OAAO,EAAE,wBAAwB;IAoBnD,cAAc,CAAC,OAAO,EAAE,qBAAqB;IAkB7C,WAAW,CAAC,OAAO,EAAE,kBAAkB;IA2BvC,gBAAgB,CAAC,OAAO,GAAE,uBAA4B;IA2BtD,cAAc,CAAC,OAAO,EAAE,qBAAqB;IAoB7C,aAAa,CAAC,OAAO,EAAE,oBAAoB;WAmB1C,gBAAgB,CAAC,GAAG,EAAE,MAAM;IAe1C,OAAO,CAAC,MAAM,CAAC,IAAI;IAWnB,OAAO,CAAC,OAAO;CAahB"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const node_crypto_1 = __importDefault(require("node:crypto"));
|
|
7
|
+
const axios_1 = __importDefault(require("axios"));
|
|
8
|
+
const qs_1 = __importDefault(require("qs"));
|
|
9
|
+
class Pixiv {
|
|
10
|
+
constructor(userId, accessToken, refreshToken) {
|
|
11
|
+
this.hosts = 'https://app-api.pixiv.net';
|
|
12
|
+
this.userId = userId;
|
|
13
|
+
this.accessToken = accessToken;
|
|
14
|
+
this.refreshToken = refreshToken;
|
|
15
|
+
this.axios = axios_1.default.create({
|
|
16
|
+
baseURL: this.hosts,
|
|
17
|
+
headers: {
|
|
18
|
+
Host: 'app-api.pixiv.net',
|
|
19
|
+
'App-OS': 'ios',
|
|
20
|
+
'App-OS-Version': '14.6',
|
|
21
|
+
'User-Agent': 'PixivIOSApp/7.13.3 (iOS 14.6; iPhone13,2)',
|
|
22
|
+
Authorization: `Bearer ${this.accessToken}`,
|
|
23
|
+
},
|
|
24
|
+
validateStatus: () => true,
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
static async of(refreshToken) {
|
|
28
|
+
const localTime = new Date().toISOString().replace(/Z$/, '+00:00');
|
|
29
|
+
const headers = {
|
|
30
|
+
'x-client-time': localTime,
|
|
31
|
+
'x-client-hash': this.hash(localTime),
|
|
32
|
+
'app-os': 'ios',
|
|
33
|
+
'app-os-version': '14.6',
|
|
34
|
+
'user-agent': 'PixivIOSApp/7.13.3 (iOS 14.6; iPhone13,2)',
|
|
35
|
+
header: 'application/x-www-form-urlencoded',
|
|
36
|
+
};
|
|
37
|
+
const authUrl = 'https://oauth.secure.pixiv.net/auth/token';
|
|
38
|
+
const data = qs_1.default.stringify({
|
|
39
|
+
client_id: this.clientId,
|
|
40
|
+
client_secret: this.clientSecret,
|
|
41
|
+
get_secure_url: 1,
|
|
42
|
+
grant_type: 'refresh_token',
|
|
43
|
+
refresh_token: refreshToken,
|
|
44
|
+
});
|
|
45
|
+
const response = await axios_1.default.post(authUrl, data, {
|
|
46
|
+
headers,
|
|
47
|
+
validateStatus: () => true,
|
|
48
|
+
});
|
|
49
|
+
if (response.status !== 200) {
|
|
50
|
+
throw new Error('Failed to refresh token');
|
|
51
|
+
}
|
|
52
|
+
const options = {
|
|
53
|
+
userId: response.data.user.id,
|
|
54
|
+
accessToken: response.data.response.access_token,
|
|
55
|
+
refreshToken: response.data.response.refresh_token,
|
|
56
|
+
};
|
|
57
|
+
return new Pixiv(options.userId, options.accessToken, options.refreshToken);
|
|
58
|
+
}
|
|
59
|
+
static async getAxiosImageStream(url) {
|
|
60
|
+
return axios_1.default.get(url, {
|
|
61
|
+
headers: {
|
|
62
|
+
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36',
|
|
63
|
+
Referer: 'https://www.pixiv.net/',
|
|
64
|
+
},
|
|
65
|
+
responseType: 'stream',
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
async getIllustDetail(options) {
|
|
69
|
+
const parameters = {
|
|
70
|
+
illust_id: options.illustId,
|
|
71
|
+
};
|
|
72
|
+
return this.request({
|
|
73
|
+
method: 'GET',
|
|
74
|
+
path: '/v1/illust/detail',
|
|
75
|
+
params: parameters,
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
async searchIllust(options) {
|
|
79
|
+
const parameters = {
|
|
80
|
+
word: options.word,
|
|
81
|
+
searchTarget: options.searchTarget || 'partial_match_for_tags',
|
|
82
|
+
sort: options.sort || 'date_desc',
|
|
83
|
+
duration: options.duration,
|
|
84
|
+
startDate: options.startDate,
|
|
85
|
+
endDate: options.endDate,
|
|
86
|
+
filter: options.filter || 'for_ios',
|
|
87
|
+
offset: options.offset,
|
|
88
|
+
};
|
|
89
|
+
return this.request({
|
|
90
|
+
method: 'GET',
|
|
91
|
+
path: '/v1/search/illust',
|
|
92
|
+
params: parameters,
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
async recommendedIllust(options) {
|
|
96
|
+
const parameters = {
|
|
97
|
+
content_type: options.contentType,
|
|
98
|
+
include_ranking_label: options.includeRankingLabel || true,
|
|
99
|
+
filter: options.filter || 'for_ios',
|
|
100
|
+
max_bookmark_id_for_recommend: options.maxBookmarkIdForRecommend || undefined,
|
|
101
|
+
min_bookmark_id_for_recent_illust: options.minBookmarkIdForRecentIllust || undefined,
|
|
102
|
+
offset: options.offset || undefined,
|
|
103
|
+
include_ranking_illusts: options.includeRankingIllusts || undefined,
|
|
104
|
+
bookmark_illust_ids: options.bookmarkIllustIds
|
|
105
|
+
? options.bookmarkIllustIds.join(',')
|
|
106
|
+
: undefined,
|
|
107
|
+
include_privacy_policy: options.includePrivacyPolicy || undefined,
|
|
108
|
+
};
|
|
109
|
+
return this.request({
|
|
110
|
+
method: 'GET',
|
|
111
|
+
path: '/v1/illust/recommended',
|
|
112
|
+
params: parameters,
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
async illustBookmarkAdd(options) {
|
|
116
|
+
const data = {
|
|
117
|
+
illust_id: options.illustId,
|
|
118
|
+
restrict: options.restrict || 'public',
|
|
119
|
+
'tags[]': (options.tags || []).join(' '),
|
|
120
|
+
};
|
|
121
|
+
return this.request({
|
|
122
|
+
method: 'POST',
|
|
123
|
+
path: '/v2/illust/bookmark/add',
|
|
124
|
+
data,
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
async getNovelDetail(options) {
|
|
128
|
+
const parameters = {
|
|
129
|
+
novel_id: options.novelId,
|
|
130
|
+
};
|
|
131
|
+
return this.request({
|
|
132
|
+
method: 'GET',
|
|
133
|
+
path: '/v2/novel/detail',
|
|
134
|
+
params: parameters,
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
async searchNovel(options) {
|
|
138
|
+
const parameters = {
|
|
139
|
+
word: options.word,
|
|
140
|
+
searchTarget: options.searchTarget || 'partial_match_for_tags',
|
|
141
|
+
sort: options.sort || 'date_desc',
|
|
142
|
+
merge_plain_keyword_results: options.mergePlainKeywordResults || true,
|
|
143
|
+
include_translated_tag_results: options.includeTranslatedTagResults || true,
|
|
144
|
+
startDate: options.startDate,
|
|
145
|
+
endDate: options.endDate,
|
|
146
|
+
filter: options.filter || 'for_ios',
|
|
147
|
+
offset: options.offset,
|
|
148
|
+
};
|
|
149
|
+
return this.request({
|
|
150
|
+
method: 'GET',
|
|
151
|
+
path: '/v1/search/novel',
|
|
152
|
+
params: parameters,
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
async recommendedNovel(options = {}) {
|
|
156
|
+
const parameters = {
|
|
157
|
+
include_ranking_label: options.includeRankingLabel || true,
|
|
158
|
+
filter: options.filter || 'for_ios',
|
|
159
|
+
offset: options.offset || undefined,
|
|
160
|
+
include_ranking_novels: options.includeRankingNovels || undefined,
|
|
161
|
+
already_recommended: options.alreadyRecommended
|
|
162
|
+
? options.alreadyRecommended.join(',')
|
|
163
|
+
: undefined,
|
|
164
|
+
max_bookmark_id_for_recommend: options.maxBookmarkIdForRecommend || undefined,
|
|
165
|
+
include_privacy_policy: options.includePrivacyPolicy || undefined,
|
|
166
|
+
};
|
|
167
|
+
return this.request({
|
|
168
|
+
method: 'GET',
|
|
169
|
+
path: '/v1/novel/recommended',
|
|
170
|
+
params: parameters,
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
async getNovelSeries(options) {
|
|
174
|
+
const parameters = {
|
|
175
|
+
series_id: options.seriesId,
|
|
176
|
+
filter: options.filter || 'for_ios',
|
|
177
|
+
last_order: options.lastOrder || undefined,
|
|
178
|
+
};
|
|
179
|
+
return this.request({
|
|
180
|
+
method: 'GET',
|
|
181
|
+
path: '/v2/novel/series',
|
|
182
|
+
params: parameters,
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
async getUserDetail(options) {
|
|
186
|
+
const parameters = {
|
|
187
|
+
user_id: options.userId,
|
|
188
|
+
filter: options.filter || 'for_ios',
|
|
189
|
+
};
|
|
190
|
+
return this.request({
|
|
191
|
+
method: 'GET',
|
|
192
|
+
path: '/v1/user/detail',
|
|
193
|
+
params: parameters,
|
|
194
|
+
});
|
|
195
|
+
}
|
|
196
|
+
static parseQueryString(url) {
|
|
197
|
+
let query = url;
|
|
198
|
+
if (url.includes('?')) {
|
|
199
|
+
query = url.split('?')[1];
|
|
200
|
+
}
|
|
201
|
+
return qs_1.default.parse(query);
|
|
202
|
+
}
|
|
203
|
+
static hash(string_) {
|
|
204
|
+
const hash = node_crypto_1.default.createHash('md5');
|
|
205
|
+
return hash.update(string_ + this.hashSecret).digest('hex');
|
|
206
|
+
}
|
|
207
|
+
request(options) {
|
|
208
|
+
if (options.method === 'GET') {
|
|
209
|
+
return this.axios.get(options.path, { params: options.params });
|
|
210
|
+
}
|
|
211
|
+
if (options.method === 'POST') {
|
|
212
|
+
return this.axios.post(options.path, qs_1.default.stringify(options.data), {
|
|
213
|
+
headers: {
|
|
214
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
215
|
+
},
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
throw new Error('Invalid method');
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
Pixiv.clientId = 'MOBrBDS8blbauoSck0ZfDbtuzpyT';
|
|
222
|
+
Pixiv.clientSecret = 'lsACyCD94FhDUtGTXi3QzcFE2uU1hqtDaKeqrdwj';
|
|
223
|
+
Pixiv.hashSecret = '28c1fdd170a5204386cb1313c7077b34f83e4aaf4aa829ce78c231e05b0bae2c';
|
|
224
|
+
exports.default = Pixiv;
|
|
225
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export type SearchTargets = 'partial_match_for_tags' | 'exact_match_for_tags' | 'title_and_caption' | 'keyword';
|
|
2
|
+
export type SearchSorts = 'date_desc' | 'date_asc' | 'popular_desc';
|
|
3
|
+
export type SearchIllustDurations = 'within_last_day' | 'within_last_week' | 'within_last_month';
|
|
4
|
+
export type Filters = 'for_ios' | 'for_android';
|
|
5
|
+
export type ContentType = 'illust' | 'manga';
|
|
6
|
+
export type BookmarkRestrict = 'public' | 'private';
|
|
7
|
+
export interface SearchIllustOptions {
|
|
8
|
+
word: string;
|
|
9
|
+
searchTarget?: SearchTargets;
|
|
10
|
+
sort?: SearchSorts;
|
|
11
|
+
duration?: SearchIllustDurations;
|
|
12
|
+
startDate?: string;
|
|
13
|
+
endDate?: string;
|
|
14
|
+
filter?: Filters;
|
|
15
|
+
offset?: number;
|
|
16
|
+
}
|
|
17
|
+
export interface GetIllustDetailOptions {
|
|
18
|
+
illustId: number;
|
|
19
|
+
}
|
|
20
|
+
export interface RecommendedIllustOptions {
|
|
21
|
+
contentType: ContentType;
|
|
22
|
+
includeRankingLabel?: boolean;
|
|
23
|
+
filter?: Filters;
|
|
24
|
+
maxBookmarkIdForRecommend?: number;
|
|
25
|
+
minBookmarkIdForRecentIllust?: number;
|
|
26
|
+
offset?: number;
|
|
27
|
+
includeRankingIllusts?: boolean;
|
|
28
|
+
bookmarkIllustIds?: number[];
|
|
29
|
+
includePrivacyPolicy?: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface IllustBookmarkAddOptions {
|
|
32
|
+
illustId: number;
|
|
33
|
+
restrict?: BookmarkRestrict;
|
|
34
|
+
tags?: string[];
|
|
35
|
+
}
|
|
36
|
+
export interface GetNovelDetailOptions {
|
|
37
|
+
novelId: number;
|
|
38
|
+
}
|
|
39
|
+
export interface SearchNovelOptions {
|
|
40
|
+
word: string;
|
|
41
|
+
searchTarget?: SearchTargets;
|
|
42
|
+
sort?: SearchSorts;
|
|
43
|
+
mergePlainKeywordResults?: boolean;
|
|
44
|
+
includeTranslatedTagResults?: boolean;
|
|
45
|
+
startDate?: string;
|
|
46
|
+
endDate?: string;
|
|
47
|
+
filter?: Filters;
|
|
48
|
+
offset?: number;
|
|
49
|
+
}
|
|
50
|
+
export interface RecommendedNovelOptions {
|
|
51
|
+
includeRankingLabel?: boolean;
|
|
52
|
+
filter?: Filters;
|
|
53
|
+
offset?: number;
|
|
54
|
+
includeRankingNovels?: boolean;
|
|
55
|
+
alreadyRecommended?: number[];
|
|
56
|
+
maxBookmarkIdForRecommend?: number;
|
|
57
|
+
includePrivacyPolicy?: boolean;
|
|
58
|
+
}
|
|
59
|
+
export interface GetNovelSeriesOptions {
|
|
60
|
+
seriesId: number;
|
|
61
|
+
filter?: Filters;
|
|
62
|
+
lastOrder?: string;
|
|
63
|
+
}
|
|
64
|
+
export interface GetUserDetailOptions {
|
|
65
|
+
userId: number;
|
|
66
|
+
filter?: Filters;
|
|
67
|
+
}
|
|
68
|
+
//# sourceMappingURL=options.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../src/options.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,aAAa,GACrB,wBAAwB,GACxB,sBAAsB,GACtB,mBAAmB,GACnB,SAAS,CAAA;AAEb,MAAM,MAAM,WAAW,GAAG,WAAW,GAAG,UAAU,GAAG,cAAc,CAAA;AAEnE,MAAM,MAAM,qBAAqB,GAC7B,iBAAiB,GACjB,kBAAkB,GAClB,mBAAmB,CAAA;AAEvB,MAAM,MAAM,OAAO,GAAG,SAAS,GAAG,aAAa,CAAA;AAE/C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,OAAO,CAAA;AAE5C,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,SAAS,CAAA;AAKnD,MAAM,WAAW,mBAAmB;IAIlC,IAAI,EAAE,MAAM,CAAA;IAKZ,YAAY,CAAC,EAAE,aAAa,CAAA;IAK5B,IAAI,CAAC,EAAE,WAAW,CAAA;IAKlB,QAAQ,CAAC,EAAE,qBAAqB,CAAA;IAKhC,SAAS,CAAC,EAAE,MAAM,CAAA;IAKlB,OAAO,CAAC,EAAE,MAAM,CAAA;IAKhB,MAAM,CAAC,EAAE,OAAO,CAAA;IAKhB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAKD,MAAM,WAAW,sBAAsB;IAIrC,QAAQ,EAAE,MAAM,CAAA;CACjB;AAKD,MAAM,WAAW,wBAAwB;IAIvC,WAAW,EAAE,WAAW,CAAA;IAKxB,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAK7B,MAAM,CAAC,EAAE,OAAO,CAAA;IAKhB,yBAAyB,CAAC,EAAE,MAAM,CAAA;IAKlC,4BAA4B,CAAC,EAAE,MAAM,CAAA;IAKrC,MAAM,CAAC,EAAE,MAAM,CAAA;IAKf,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAK/B,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;IAK5B,oBAAoB,CAAC,EAAE,OAAO,CAAA;CAM/B;AAKD,MAAM,WAAW,wBAAwB;IAIvC,QAAQ,EAAE,MAAM,CAAA;IAKhB,QAAQ,CAAC,EAAE,gBAAgB,CAAA;IAK3B,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;CAChB;AAKD,MAAM,WAAW,qBAAqB;IAIpC,OAAO,EAAE,MAAM,CAAA;CAChB;AAKD,MAAM,WAAW,kBAAkB;IAIjC,IAAI,EAAE,MAAM,CAAA;IAKZ,YAAY,CAAC,EAAE,aAAa,CAAA;IAK5B,IAAI,CAAC,EAAE,WAAW,CAAA;IAKlB,wBAAwB,CAAC,EAAE,OAAO,CAAA;IAKlC,2BAA2B,CAAC,EAAE,OAAO,CAAA;IAKrC,SAAS,CAAC,EAAE,MAAM,CAAA;IAKlB,OAAO,CAAC,EAAE,MAAM,CAAA;IAKhB,MAAM,CAAC,EAAE,OAAO,CAAA;IAKhB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAKD,MAAM,WAAW,uBAAuB;IAItC,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAK7B,MAAM,CAAC,EAAE,OAAO,CAAA;IAKhB,MAAM,CAAC,EAAE,MAAM,CAAA;IAKf,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAK9B,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAK7B,yBAAyB,CAAC,EAAE,MAAM,CAAA;IAKlC,oBAAoB,CAAC,EAAE,OAAO,CAAA;CAC/B;AAKD,MAAM,WAAW,qBAAqB;IAIpC,QAAQ,EAAE,MAAM,CAAA;IAKhB,MAAM,CAAC,EAAE,OAAO,CAAA;IAKhB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAKD,MAAM,WAAW,oBAAoB;IAInC,MAAM,EAAE,MAAM,CAAA;IAKd,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB"}
|
package/dist/options.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"options.js","sourceRoot":"","sources":["../src/options.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../node_modules/@types/qs/index.d.ts","../src/options.ts","../src/types/endpoints/illust/bookmark/add.ts","../src/types/pixiv-common.ts","../src/types/pixiv-illust.ts","../src/types/endpoints/illust/detail.ts","../src/types/endpoints/illust/recommended.ts","../src/types/pixiv-novel.ts","../src/types/endpoints/novel/detail.ts","../src/types/endpoints/novel/recommended.ts","../src/types/pixiv-novel-series.ts","../src/types/endpoints/novel/series.ts","../src/types/endpoints/search/illust.ts","../src/types/endpoints/search/novel.ts","../src/types/pixiv-user.ts","../src/types/endpoints/user/detail.ts","../src/index.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/strip-bom/index.d.ts","../node_modules/@types/strip-json-comments/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec",{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"e2840fa96bb2beea35f37fb721ed0588d74428ce7d85ed7815861f3979965fcc","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"65986a67c435976e19c4f7a28f372c6bb0adff686931cb05665c92f5b6e66998","signature":"0d29896d241c24ca1cd861e9cc0ce4cc638f3b1fba9300cfbe7f9c2adc2b786c"},{"version":"bc0d3d41c0136d7c0ef59a385ef3f709b4530c3dd14d3b83ad8007837db92239","signature":"a0e4ab832c6c7023a4bc124741780396b80ea742580592a013f3ef1ea1a35393"},{"version":"94ccbb87b7e795ab299e0ad022e1495afadca5e527bcc0659018df431512ee6e","signature":"947991a65ef0d862aa8b9577504c8eb426c2d6e1cda28b7aa22ab1d8922e43c7"},{"version":"038be4dcbf19a6bf4a8051fc576b31ab7ae77096ac78a3d79044328cfa20ceee","signature":"b2627a76201d304a37f25b834aad98ef72657d86c563a8d002afcd3e4802b439"},{"version":"1b1e868a115ba9ea7d78fd778dd98aa3d5d9e1cc68c3b177ac62d15b31c4e1a5","signature":"c524a2d12549251ddf843c6214db4461f7281769820470a75050033e39df8db6"},{"version":"24b3c16330da874b730c0630e2a86a4c9f12a0ba877456d79d7dd0a135eb41ad","signature":"aa728562fe27dba7c5cad163a782ab0736654556d9f7c76c76aab2536a204ea6"},{"version":"7795e106505b8316424f3fde4d2935fc47671229ea8ac1b30b40bb5f4991f799","signature":"477a56c667a9109b697f70491ff8018db2aa02380c0322e4a56f217514539bd2"},{"version":"a5b27eda148c6a7bff5eef0c41298cfe01e9deb245bce6013f0e1d6232a3dafd","signature":"658e8d98bbd3f559f9647b3107499549a7c74331764b52091bc6d4326b6084ec"},{"version":"5b6ad69850436f579bf2d8b5327900a8c16a3410c0be47bd1e36f2de87aeb3b1","signature":"c46d267b696f8e962c54fdc92db69bb89fc2d08369bfda997752d023b8eb7c48"},{"version":"09784e19a1887cacf7e9ca22eda092c987724c27ec8a8d025d374cc05d039250","signature":"b0f56eb4c70e55292f8c797c06833f79d33a2f894801faabad8f687f9bb18fb3"},{"version":"fcb79f0e3cfd69596683e005db5d396884fa88703a39ab13cfd6ce97e4ded556","signature":"96208c39a1eacc47550a18db3b8d56d6f0a699c3272393ceb75216ef652bd6e1"},{"version":"dd3fd80440506012216d30720945c1d9aa4d013f3c0be3f0633761a290fe8f41","signature":"9a33600f14a7e04deba49d7b7d3fabdbf8af7b336e60ea16b764156d44cc39c8"},{"version":"3d5ab7d347586e937a8c6bc71da8886dc6b2e94af539211606734392ac536989","signature":"0cd863da5acbbfd9a492c49e83a588c3ed08131502518ec9ad2cd7d969905ec9"},{"version":"ce632cd7361b7c9d022afc17d814a9e87d759729d2c243eee2c9f49bb667cb3d","signature":"576717d2233cf3337397650b55c856ad295cb5aa7da9be473409f8b91a16445a"},{"version":"1b0327cb78d3adcef54a83f1fc910421ac7614f6330c13031c30895ad6c196c8","signature":"fd97f7c6a3b03aac4eeeaa4582c067e84f45e6c427afa9e3ec17611fabcea389"},{"version":"d6ca3c8d6a7530164f960174185f7bd456286da8a1e7bd9c060b9ea97870304b","signature":"82948166d2365b67b19fe187c0f3eed0a7b564a272469c3c8424c8a6b55c9e56"},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","4006c872e38a2c4e09c593bc0cdd32b7b4f5c4843910bea0def631c483fff6c5","ab6aa3a65d473871ee093e3b7b71ed0f9c69e07d1d4295f45c9efd91a771241d"],"root":[[62,77]],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"target":7},"fileIdsList":[[126],[80,126],[83,126],[84,89,117,126],[85,96,97,104,114,125,126],[85,86,96,104,126],[87,126],[88,89,97,105,126],[89,114,122,126],[90,92,96,104,126],[91,126],[92,93,126],[96,126],[94,96,126],[96,97,98,114,125,126],[96,97,98,111,114,117,126],[126,130],[92,99,104,114,125,126],[96,97,99,100,104,114,122,125,126],[99,101,114,122,125,126],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[96,102,126],[103,125,126],[92,96,104,114,126],[105,126],[106,126],[83,107,126],[108,124,126,130],[109,126],[110,126],[96,111,112,126],[111,113,126,128],[84,96,114,115,116,117,126],[84,114,116,126],[114,115,126],[117,126],[118,126],[96,120,121,126],[120,121,126],[89,104,114,122,126],[123,126],[104,124,126],[84,99,110,125,126],[89,126],[114,126,127],[126,128],[126,129],[84,89,96,98,107,114,125,126,128,130],[114,126,131],[126,135,174],[126,135,159,174],[126,174],[126,135],[126,135,160,174],[126,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[126,160,174],[60,61,62,63,66,67,69,70,72,73,74,76,89,97,126],[65,126],[68,126],[71,126],[75,126],[64,126],[64,68,126],[60,61,62,63,66,67,69,70,71,73,74,76,97],[65],[68],[71],[75],[64],[64,68]],"referencedMap":[[78,1],[79,1],[80,2],[81,2],[83,3],[84,4],[85,5],[86,6],[87,7],[88,8],[89,9],[90,10],[91,11],[92,12],[93,12],[95,13],[94,14],[96,13],[97,15],[98,16],[82,17],[132,1],[99,18],[100,19],[101,20],[133,21],[102,22],[103,23],[104,24],[105,25],[106,26],[107,27],[108,28],[109,29],[110,30],[111,31],[112,31],[113,32],[114,33],[116,34],[115,35],[117,36],[118,37],[119,1],[120,38],[121,39],[122,40],[123,41],[124,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[134,1],[61,1],[159,50],[160,51],[135,52],[138,52],[157,50],[158,50],[148,50],[147,53],[145,50],[140,50],[153,50],[151,50],[155,50],[139,50],[152,50],[156,50],[141,50],[142,50],[154,50],[136,50],[143,50],[144,50],[146,50],[150,50],[161,54],[149,50],[137,50],[174,55],[173,1],[168,54],[170,56],[169,54],[162,54],[163,54],[165,54],[167,54],[171,56],[172,56],[164,56],[166,56],[175,1],[176,1],[60,1],[58,1],[59,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[55,1],[53,1],[54,1],[56,1],[10,1],[1,1],[11,1],[57,1],[77,57],[62,1],[63,1],[66,58],[67,58],[69,59],[70,59],[72,60],[73,58],[74,59],[76,61],[64,1],[65,62],[71,63],[68,62],[75,62]],"exportedModulesMap":[[78,1],[79,1],[80,2],[81,2],[83,3],[84,4],[85,5],[86,6],[87,7],[88,8],[89,9],[90,10],[91,11],[92,12],[93,12],[95,13],[94,14],[96,13],[97,15],[98,16],[82,17],[132,1],[99,18],[100,19],[101,20],[133,21],[102,22],[103,23],[104,24],[105,25],[106,26],[107,27],[108,28],[109,29],[110,30],[111,31],[112,31],[113,32],[114,33],[116,34],[115,35],[117,36],[118,37],[119,1],[120,38],[121,39],[122,40],[123,41],[124,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[134,1],[61,1],[159,50],[160,51],[135,52],[138,52],[157,50],[158,50],[148,50],[147,53],[145,50],[140,50],[153,50],[151,50],[155,50],[139,50],[152,50],[156,50],[141,50],[142,50],[154,50],[136,50],[143,50],[144,50],[146,50],[150,50],[161,54],[149,50],[137,50],[174,55],[173,1],[168,54],[170,56],[169,54],[162,54],[163,54],[165,54],[167,54],[171,56],[172,56],[164,56],[166,56],[175,1],[176,1],[60,1],[58,1],[59,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[55,1],[53,1],[54,1],[56,1],[10,1],[1,1],[11,1],[57,1],[77,64],[66,65],[67,65],[69,66],[70,66],[72,67],[73,65],[74,66],[76,68],[65,69],[71,70],[68,69],[75,69]],"semanticDiagnosticsPerFile":[78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,134,61,159,160,135,138,157,158,148,147,145,140,153,151,155,139,152,156,141,142,154,136,143,144,146,150,161,149,137,174,173,168,170,169,162,163,165,167,171,172,164,166,175,176,60,58,59,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,56,10,1,11,57,77,62,63,66,67,69,70,72,73,74,76,64,65,71,68,75]},"version":"5.0.4"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../node_modules/@types/qs/index.d.ts","../src/options.ts","../src/types/endpoints/illust/bookmark/add.ts","../src/types/pixiv-common.ts","../src/types/pixiv-illust.ts","../src/types/endpoints/illust/detail.ts","../src/types/endpoints/illust/recommended.ts","../src/types/pixiv-novel.ts","../src/types/endpoints/novel/detail.ts","../src/types/endpoints/novel/recommended.ts","../src/types/pixiv-novel-series.ts","../src/types/endpoints/novel/series.ts","../src/types/endpoints/search/illust.ts","../src/types/endpoints/search/novel.ts","../src/types/pixiv-user.ts","../src/types/endpoints/user/detail.ts","../src/index.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/strip-bom/index.d.ts","../node_modules/@types/strip-json-comments/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec",{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"e2840fa96bb2beea35f37fb721ed0588d74428ce7d85ed7815861f3979965fcc","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"65986a67c435976e19c4f7a28f372c6bb0adff686931cb05665c92f5b6e66998","signature":"0d29896d241c24ca1cd861e9cc0ce4cc638f3b1fba9300cfbe7f9c2adc2b786c"},{"version":"bc0d3d41c0136d7c0ef59a385ef3f709b4530c3dd14d3b83ad8007837db92239","signature":"a0e4ab832c6c7023a4bc124741780396b80ea742580592a013f3ef1ea1a35393"},{"version":"94ccbb87b7e795ab299e0ad022e1495afadca5e527bcc0659018df431512ee6e","signature":"947991a65ef0d862aa8b9577504c8eb426c2d6e1cda28b7aa22ab1d8922e43c7"},{"version":"038be4dcbf19a6bf4a8051fc576b31ab7ae77096ac78a3d79044328cfa20ceee","signature":"b2627a76201d304a37f25b834aad98ef72657d86c563a8d002afcd3e4802b439"},{"version":"1b1e868a115ba9ea7d78fd778dd98aa3d5d9e1cc68c3b177ac62d15b31c4e1a5","signature":"c524a2d12549251ddf843c6214db4461f7281769820470a75050033e39df8db6"},{"version":"24b3c16330da874b730c0630e2a86a4c9f12a0ba877456d79d7dd0a135eb41ad","signature":"aa728562fe27dba7c5cad163a782ab0736654556d9f7c76c76aab2536a204ea6"},{"version":"7795e106505b8316424f3fde4d2935fc47671229ea8ac1b30b40bb5f4991f799","signature":"477a56c667a9109b697f70491ff8018db2aa02380c0322e4a56f217514539bd2"},{"version":"a5b27eda148c6a7bff5eef0c41298cfe01e9deb245bce6013f0e1d6232a3dafd","signature":"658e8d98bbd3f559f9647b3107499549a7c74331764b52091bc6d4326b6084ec"},{"version":"5b6ad69850436f579bf2d8b5327900a8c16a3410c0be47bd1e36f2de87aeb3b1","signature":"c46d267b696f8e962c54fdc92db69bb89fc2d08369bfda997752d023b8eb7c48"},{"version":"09784e19a1887cacf7e9ca22eda092c987724c27ec8a8d025d374cc05d039250","signature":"b0f56eb4c70e55292f8c797c06833f79d33a2f894801faabad8f687f9bb18fb3"},{"version":"fcb79f0e3cfd69596683e005db5d396884fa88703a39ab13cfd6ce97e4ded556","signature":"96208c39a1eacc47550a18db3b8d56d6f0a699c3272393ceb75216ef652bd6e1"},{"version":"dd3fd80440506012216d30720945c1d9aa4d013f3c0be3f0633761a290fe8f41","signature":"9a33600f14a7e04deba49d7b7d3fabdbf8af7b336e60ea16b764156d44cc39c8"},{"version":"3d5ab7d347586e937a8c6bc71da8886dc6b2e94af539211606734392ac536989","signature":"0cd863da5acbbfd9a492c49e83a588c3ed08131502518ec9ad2cd7d969905ec9"},{"version":"ce632cd7361b7c9d022afc17d814a9e87d759729d2c243eee2c9f49bb667cb3d","signature":"576717d2233cf3337397650b55c856ad295cb5aa7da9be473409f8b91a16445a"},{"version":"1b0327cb78d3adcef54a83f1fc910421ac7614f6330c13031c30895ad6c196c8","signature":"fd97f7c6a3b03aac4eeeaa4582c067e84f45e6c427afa9e3ec17611fabcea389"},{"version":"d6ca3c8d6a7530164f960174185f7bd456286da8a1e7bd9c060b9ea97870304b","signature":"82948166d2365b67b19fe187c0f3eed0a7b564a272469c3c8424c8a6b55c9e56"},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","4006c872e38a2c4e09c593bc0cdd32b7b4f5c4843910bea0def631c483fff6c5","ab6aa3a65d473871ee093e3b7b71ed0f9c69e07d1d4295f45c9efd91a771241d"],"root":[[62,77]],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"target":7},"fileIdsList":[[126],[80,126],[83,126],[84,89,117,126],[85,96,97,104,114,125,126],[85,86,96,104,126],[87,126],[88,89,97,105,126],[89,114,122,126],[90,92,96,104,126],[91,126],[92,93,126],[96,126],[94,96,126],[96,97,98,114,125,126],[96,97,98,111,114,117,126],[126,130],[92,99,104,114,125,126],[96,97,99,100,104,114,122,125,126],[99,101,114,122,125,126],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[96,102,126],[103,125,126],[92,96,104,114,126],[105,126],[106,126],[83,107,126],[108,124,126,130],[109,126],[110,126],[96,111,112,126],[111,113,126,128],[84,96,114,115,116,117,126],[84,114,116,126],[114,115,126],[117,126],[118,126],[96,120,121,126],[120,121,126],[89,104,114,122,126],[123,126],[104,124,126],[84,99,110,125,126],[89,126],[114,126,127],[126,128],[126,129],[84,89,96,98,107,114,125,126,128,130],[114,126,131],[126,135,174],[126,135,159,174],[126,174],[126,135],[126,135,160,174],[126,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[126,160,174],[60,61,62,63,66,67,69,70,72,73,74,76,89,97,126],[65,126],[68,126],[71,126],[75,126],[64,126],[64,68,126],[60,61,62,63,66,67,69,70,71,73,74,76,97],[65],[68],[71],[75],[64],[64,68]],"referencedMap":[[78,1],[79,1],[80,2],[81,2],[83,3],[84,4],[85,5],[86,6],[87,7],[88,8],[89,9],[90,10],[91,11],[92,12],[93,12],[95,13],[94,14],[96,13],[97,15],[98,16],[82,17],[132,1],[99,18],[100,19],[101,20],[133,21],[102,22],[103,23],[104,24],[105,25],[106,26],[107,27],[108,28],[109,29],[110,30],[111,31],[112,31],[113,32],[114,33],[116,34],[115,35],[117,36],[118,37],[119,1],[120,38],[121,39],[122,40],[123,41],[124,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[134,1],[61,1],[159,50],[160,51],[135,52],[138,52],[157,50],[158,50],[148,50],[147,53],[145,50],[140,50],[153,50],[151,50],[155,50],[139,50],[152,50],[156,50],[141,50],[142,50],[154,50],[136,50],[143,50],[144,50],[146,50],[150,50],[161,54],[149,50],[137,50],[174,55],[173,1],[168,54],[170,56],[169,54],[162,54],[163,54],[165,54],[167,54],[171,56],[172,56],[164,56],[166,56],[175,1],[176,1],[60,1],[58,1],[59,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[55,1],[53,1],[54,1],[56,1],[10,1],[1,1],[11,1],[57,1],[77,57],[62,1],[63,1],[66,58],[67,58],[69,59],[70,59],[72,60],[73,58],[74,59],[76,61],[64,1],[65,62],[71,63],[68,62],[75,62]],"exportedModulesMap":[[78,1],[79,1],[80,2],[81,2],[83,3],[84,4],[85,5],[86,6],[87,7],[88,8],[89,9],[90,10],[91,11],[92,12],[93,12],[95,13],[94,14],[96,13],[97,15],[98,16],[82,17],[132,1],[99,18],[100,19],[101,20],[133,21],[102,22],[103,23],[104,24],[105,25],[106,26],[107,27],[108,28],[109,29],[110,30],[111,31],[112,31],[113,32],[114,33],[116,34],[115,35],[117,36],[118,37],[119,1],[120,38],[121,39],[122,40],[123,41],[124,42],[125,43],[126,44],[127,45],[128,46],[129,47],[130,48],[131,49],[134,1],[61,1],[159,50],[160,51],[135,52],[138,52],[157,50],[158,50],[148,50],[147,53],[145,50],[140,50],[153,50],[151,50],[155,50],[139,50],[152,50],[156,50],[141,50],[142,50],[154,50],[136,50],[143,50],[144,50],[146,50],[150,50],[161,54],[149,50],[137,50],[174,55],[173,1],[168,54],[170,56],[169,54],[162,54],[163,54],[165,54],[167,54],[171,56],[172,56],[164,56],[166,56],[175,1],[176,1],[60,1],[58,1],[59,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[55,1],[53,1],[54,1],[56,1],[10,1],[1,1],[11,1],[57,1],[77,64],[66,65],[67,65],[69,66],[70,66],[72,67],[73,65],[74,66],[76,68],[65,69],[71,70],[68,69],[75,69]],"semanticDiagnosticsPerFile":[78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,134,61,159,160,135,138,157,158,148,147,145,140,153,151,155,139,152,156,141,142,154,136,143,144,146,150,161,149,137,174,173,168,170,169,162,163,165,167,171,172,164,166,175,176,60,58,59,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,56,10,1,11,57,77,62,63,66,67,69,70,72,73,74,76,64,65,71,68,75]},"version":"5.0.4"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.d.ts","sourceRoot":"","sources":["../../../../../src/types/endpoints/illust/bookmark/add.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,4BAA4B,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add.js","sourceRoot":"","sources":["../../../../../src/types/endpoints/illust/bookmark/add.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detail.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/illust/detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAIpD,MAAM,WAAW,0BAA0B;IACzC,MAAM,EAAE,eAAe,CAAA;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detail.js","sourceRoot":"","sources":["../../../../src/types/endpoints/illust/detail.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PixivIllustItem } from '../../pixiv-illust';
|
|
2
|
+
export interface RecommendedIllustApiResponse {
|
|
3
|
+
illusts: PixivIllustItem[];
|
|
4
|
+
ranking_illusts: unknown[];
|
|
5
|
+
contest_exists: boolean;
|
|
6
|
+
privacy_policy: unknown;
|
|
7
|
+
next_url: string;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=recommended.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recommended.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/illust/recommended.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAKpD,MAAM,WAAW,4BAA4B;IAC3C,OAAO,EAAE,eAAe,EAAE,CAAA;IAC1B,eAAe,EAAE,OAAO,EAAE,CAAA;IAC1B,cAAc,EAAE,OAAO,CAAA;IACvB,cAAc,EAAE,OAAO,CAAA;IACvB,QAAQ,EAAE,MAAM,CAAA;CACjB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recommended.js","sourceRoot":"","sources":["../../../../src/types/endpoints/illust/recommended.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detail.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/novel/detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAKlD,MAAM,WAAW,yBAAyB;IACxC,KAAK,EAAE,cAAc,CAAA;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detail.js","sourceRoot":"","sources":["../../../../src/types/endpoints/novel/detail.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recommended.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/novel/recommended.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAKlD,MAAM,WAAW,2BAA2B;IAC1C,MAAM,EAAE,cAAc,EAAE,CAAA;IACxB,cAAc,EAAE,OAAO,EAAE,CAAA;IACzB,cAAc,EAAE,OAAO,CAAA;IACvB,QAAQ,EAAE,MAAM,CAAA;CACjB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recommended.js","sourceRoot":"","sources":["../../../../src/types/endpoints/novel/recommended.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"series.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/novel/series.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;AAK/D,MAAM,MAAM,yBAAyB,GAAG,oBAAoB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"series.js","sourceRoot":"","sources":["../../../../src/types/endpoints/novel/series.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"illust.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/search/illust.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAKpD,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,eAAe,EAAE,CAAA;IAC1B,QAAQ,EAAE,MAAM,CAAA;IAChB,iBAAiB,EAAE,MAAM,CAAA;CAC1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"illust.js","sourceRoot":"","sources":["../../../../src/types/endpoints/search/illust.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"novel.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/search/novel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAKlD,MAAM,WAAW,sBAAsB;IACrC,MAAM,EAAE,cAAc,EAAE,CAAA;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"novel.js","sourceRoot":"","sources":["../../../../src/types/endpoints/search/novel.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PixivUserItem, PixivUserProfile, PixivUserProfilePublicity, PixivUserProfileWorkspace } from '../../pixiv-user';
|
|
2
|
+
export interface GetUserDetailApiResponse {
|
|
3
|
+
user: PixivUserItem;
|
|
4
|
+
profile: PixivUserProfile;
|
|
5
|
+
profile_publicity: PixivUserProfilePublicity;
|
|
6
|
+
workspace: PixivUserProfileWorkspace;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=detail.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detail.d.ts","sourceRoot":"","sources":["../../../../src/types/endpoints/user/detail.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,yBAAyB,EACzB,yBAAyB,EAC1B,MAAM,kBAAkB,CAAA;AAKzB,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,aAAa,CAAA;IACnB,OAAO,EAAE,gBAAgB,CAAA;IACzB,iBAAiB,EAAE,yBAAyB,CAAA;IAC5C,SAAS,EAAE,yBAAyB,CAAA;CACrC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"detail.js","sourceRoot":"","sources":["../../../../src/types/endpoints/user/detail.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface ImageUrls {
|
|
2
|
+
square_medium: string;
|
|
3
|
+
medium: string;
|
|
4
|
+
large: string;
|
|
5
|
+
original?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface ProfileImageUrls {
|
|
8
|
+
medium: string;
|
|
9
|
+
}
|
|
10
|
+
export interface PixivUser {
|
|
11
|
+
id: number;
|
|
12
|
+
name: string;
|
|
13
|
+
account: string;
|
|
14
|
+
profile_image_urls: ProfileImageUrls;
|
|
15
|
+
is_followed: boolean;
|
|
16
|
+
is_access_blocking_user: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface Tag {
|
|
19
|
+
name: string;
|
|
20
|
+
translated_name: null | string;
|
|
21
|
+
added_by_uploaded_user?: boolean;
|
|
22
|
+
}
|
|
23
|
+
export interface Series {
|
|
24
|
+
id: number;
|
|
25
|
+
title: string;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=pixiv-common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-common.d.ts","sourceRoot":"","sources":["../../src/types/pixiv-common.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,SAAS;IAExB,aAAa,EAAE,MAAM,CAAA;IAErB,MAAM,EAAE,MAAM,CAAA;IAEd,KAAK,EAAE,MAAM,CAAA;IAMb,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAKD,MAAM,WAAW,gBAAgB;IAE/B,MAAM,EAAE,MAAM,CAAA;CACf;AAKD,MAAM,WAAW,SAAS;IAExB,EAAE,EAAE,MAAM,CAAA;IAGV,IAAI,EAAE,MAAM,CAAA;IAGZ,OAAO,EAAE,MAAM,CAAA;IAGf,kBAAkB,EAAE,gBAAgB,CAAA;IAGpC,WAAW,EAAE,OAAO,CAAA;IAGpB,uBAAuB,EAAE,OAAO,CAAA;CACjC;AAKD,MAAM,WAAW,GAAG;IAElB,IAAI,EAAE,MAAM,CAAA;IAGZ,eAAe,EAAE,IAAI,GAAG,MAAM,CAAA;IAG9B,sBAAsB,CAAC,EAAE,OAAO,CAAA;CACjC;AAKD,MAAM,WAAW,MAAM;IAErB,EAAE,EAAE,MAAM,CAAA;IAGV,KAAK,EAAE,MAAM,CAAA;CACd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-common.js","sourceRoot":"","sources":["../../src/types/pixiv-common.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ImageUrls, PixivUser, Tag, Series } from './pixiv-common';
|
|
2
|
+
export interface MetaSinglePage {
|
|
3
|
+
original_image_url: string;
|
|
4
|
+
}
|
|
5
|
+
export interface MetaPages {
|
|
6
|
+
image_urls: Required<ImageUrls>;
|
|
7
|
+
}
|
|
8
|
+
export interface PixivIllustItem {
|
|
9
|
+
id: number;
|
|
10
|
+
title: string;
|
|
11
|
+
type: string;
|
|
12
|
+
image_urls: ImageUrls;
|
|
13
|
+
caption: string;
|
|
14
|
+
restrict: number;
|
|
15
|
+
user: PixivUser;
|
|
16
|
+
tags: Tag[];
|
|
17
|
+
tools: string[];
|
|
18
|
+
create_date: string;
|
|
19
|
+
page_count: number;
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
22
|
+
sanity_level: number;
|
|
23
|
+
x_restrict: number;
|
|
24
|
+
series: Series | null;
|
|
25
|
+
meta_single_page: MetaSinglePage | unknown[];
|
|
26
|
+
meta_pages: MetaPages[];
|
|
27
|
+
total_view: number;
|
|
28
|
+
total_bookmarks: number;
|
|
29
|
+
is_bookmarked: boolean;
|
|
30
|
+
visible: boolean;
|
|
31
|
+
is_muted: boolean;
|
|
32
|
+
total_comments: number;
|
|
33
|
+
illust_ai_type: number;
|
|
34
|
+
illust_book_style: number;
|
|
35
|
+
comment_access_control: number;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=pixiv-illust.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-illust.d.ts","sourceRoot":"","sources":["../../src/types/pixiv-illust.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAGlE,MAAM,WAAW,cAAc;IAE7B,kBAAkB,EAAE,MAAM,CAAA;CAC3B;AAGD,MAAM,WAAW,SAAS;IAExB,UAAU,EAAE,QAAQ,CAAC,SAAS,CAAC,CAAA;CAChC;AAKD,MAAM,WAAW,eAAe;IAM9B,EAAE,EAAE,MAAM,CAAA;IAKV,KAAK,EAAE,MAAM,CAAA;IAQb,IAAI,EAAE,MAAM,CAAA;IAQZ,UAAU,EAAE,SAAS,CAAA;IAKrB,OAAO,EAAE,MAAM,CAAA;IAOf,QAAQ,EAAE,MAAM,CAAA;IAKhB,IAAI,EAAE,SAAS,CAAA;IAKf,IAAI,EAAE,GAAG,EAAE,CAAA;IAOX,KAAK,EAAE,MAAM,EAAE,CAAA;IAOf,WAAW,EAAE,MAAM,CAAA;IAKnB,UAAU,EAAE,MAAM,CAAA;IAGlB,KAAK,EAAE,MAAM,CAAA;IAGb,MAAM,EAAE,MAAM,CAAA;IAOd,YAAY,EAAE,MAAM,CAAA;IAOpB,UAAU,EAAE,MAAM,CAAA;IAOlB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAA;IAQrB,gBAAgB,EAAE,cAAc,GAAG,OAAO,EAAE,CAAA;IAQ5C,UAAU,EAAE,SAAS,EAAE,CAAA;IAKvB,UAAU,EAAE,MAAM,CAAA;IAKlB,eAAe,EAAE,MAAM,CAAA;IAKvB,aAAa,EAAE,OAAO,CAAA;IAKtB,OAAO,EAAE,OAAO,CAAA;IAKhB,QAAQ,EAAE,OAAO,CAAA;IAKjB,cAAc,EAAE,MAAM,CAAA;IActB,cAAc,EAAE,MAAM,CAAA;IAKtB,iBAAiB,EAAE,MAAM,CAAA;IAKzB,sBAAsB,EAAE,MAAM,CAAA;CAC/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-illust.js","sourceRoot":"","sources":["../../src/types/pixiv-illust.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { PixivUser } from './pixiv-common';
|
|
2
|
+
import { PixivNovelItem } from './pixiv-novel';
|
|
3
|
+
export interface NovelSeriesDetail {
|
|
4
|
+
id: number;
|
|
5
|
+
title: string;
|
|
6
|
+
caption: string;
|
|
7
|
+
is_original: boolean;
|
|
8
|
+
is_concluded: boolean;
|
|
9
|
+
content_count: number;
|
|
10
|
+
total_character_count: number;
|
|
11
|
+
user: PixivUser;
|
|
12
|
+
display_text: string;
|
|
13
|
+
novel_ai_type: number;
|
|
14
|
+
watchlist_added: boolean;
|
|
15
|
+
}
|
|
16
|
+
export interface PixivNovelSeriesItem {
|
|
17
|
+
novel_series_detail: NovelSeriesDetail;
|
|
18
|
+
novel_series_first_novel: PixivNovelItem;
|
|
19
|
+
novel_series_latest_novel: PixivNovelItem;
|
|
20
|
+
novels: PixivNovelItem[];
|
|
21
|
+
next_url: string | null;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=pixiv-novel-series.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-novel-series.d.ts","sourceRoot":"","sources":["../../src/types/pixiv-novel-series.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAK9C,MAAM,WAAW,iBAAiB;IAIhC,EAAE,EAAE,MAAM,CAAA;IAKV,KAAK,EAAE,MAAM,CAAA;IAKb,OAAO,EAAE,MAAM,CAAA;IAKf,WAAW,EAAE,OAAO,CAAA;IAKpB,YAAY,EAAE,OAAO,CAAA;IAKrB,aAAa,EAAE,MAAM,CAAA;IAKrB,qBAAqB,EAAE,MAAM,CAAA;IAK7B,IAAI,EAAE,SAAS,CAAA;IAKf,YAAY,EAAE,MAAM,CAAA;IAKpB,aAAa,EAAE,MAAM,CAAA;IAKrB,eAAe,EAAE,OAAO,CAAA;CACzB;AAKD,MAAM,WAAW,oBAAoB;IAInC,mBAAmB,EAAE,iBAAiB,CAAA;IAKtC,wBAAwB,EAAE,cAAc,CAAA;IAKxC,yBAAyB,EAAE,cAAc,CAAA;IAKzC,MAAM,EAAE,cAAc,EAAE,CAAA;IAKxB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-novel-series.js","sourceRoot":"","sources":["../../src/types/pixiv-novel-series.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ImageUrls, Tag, PixivUser, Series } from './pixiv-common';
|
|
2
|
+
export interface PixivNovelItem {
|
|
3
|
+
id: number;
|
|
4
|
+
title: string;
|
|
5
|
+
caption: string;
|
|
6
|
+
restrict: number;
|
|
7
|
+
x_restrict: number;
|
|
8
|
+
is_original: boolean;
|
|
9
|
+
image_urls: ImageUrls;
|
|
10
|
+
create_date: string;
|
|
11
|
+
tags: Tag[];
|
|
12
|
+
page_count: number;
|
|
13
|
+
text_length: number;
|
|
14
|
+
user: PixivUser;
|
|
15
|
+
series: Series | unknown[];
|
|
16
|
+
is_bookmarked: boolean;
|
|
17
|
+
total_bookmarks: number;
|
|
18
|
+
total_view: number;
|
|
19
|
+
visible: boolean;
|
|
20
|
+
total_comments: number;
|
|
21
|
+
is_muted: boolean;
|
|
22
|
+
is_mypixiv_only: boolean;
|
|
23
|
+
is_x_restricted: boolean;
|
|
24
|
+
novel_ai_type: number;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=pixiv-novel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-novel.d.ts","sourceRoot":"","sources":["../../src/types/pixiv-novel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAKlE,MAAM,WAAW,cAAc;IAM7B,EAAE,EAAE,MAAM,CAAA;IAKV,KAAK,EAAE,MAAM,CAAA;IAKb,OAAO,EAAE,MAAM,CAAA;IAOf,QAAQ,EAAE,MAAM,CAAA;IAOhB,UAAU,EAAE,MAAM,CAAA;IAKlB,WAAW,EAAE,OAAO,CAAA;IAOpB,UAAU,EAAE,SAAS,CAAA;IAOrB,WAAW,EAAE,MAAM,CAAA;IAKnB,IAAI,EAAE,GAAG,EAAE,CAAA;IAKX,UAAU,EAAE,MAAM,CAAA;IAKlB,WAAW,EAAE,MAAM,CAAA;IAKnB,IAAI,EAAE,SAAS,CAAA;IAOf,MAAM,EAAE,MAAM,GAAG,OAAO,EAAE,CAAA;IAK1B,aAAa,EAAE,OAAO,CAAA;IAKtB,eAAe,EAAE,MAAM,CAAA;IAKvB,UAAU,EAAE,MAAM,CAAA;IAKlB,OAAO,EAAE,OAAO,CAAA;IAKhB,cAAc,EAAE,MAAM,CAAA;IAKtB,QAAQ,EAAE,OAAO,CAAA;IAKjB,eAAe,EAAE,OAAO,CAAA;IAKxB,eAAe,EAAE,OAAO,CAAA;IAcxB,aAAa,EAAE,MAAM,CAAA;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-novel.js","sourceRoot":"","sources":["../../src/types/pixiv-novel.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { PixivUser } from './pixiv-common';
|
|
2
|
+
export type PixivUserItem = PixivUser & {
|
|
3
|
+
comment: string;
|
|
4
|
+
};
|
|
5
|
+
export interface PixivUserProfile {
|
|
6
|
+
webpage: string;
|
|
7
|
+
gender: string;
|
|
8
|
+
birth: string;
|
|
9
|
+
birth_day: string;
|
|
10
|
+
birth_year: number;
|
|
11
|
+
region: string;
|
|
12
|
+
address_id: number;
|
|
13
|
+
country_code: string;
|
|
14
|
+
job: string;
|
|
15
|
+
job_id: number;
|
|
16
|
+
total_follow_users: number;
|
|
17
|
+
total_mypixiv_users: number;
|
|
18
|
+
total_illusts: number;
|
|
19
|
+
total_manga: number;
|
|
20
|
+
total_novels: number;
|
|
21
|
+
total_illust_bookmarks_public: number;
|
|
22
|
+
total_illust_series: number;
|
|
23
|
+
total_novel_series: number;
|
|
24
|
+
background_image_url?: any;
|
|
25
|
+
twitter_account: string;
|
|
26
|
+
twitter_url: string;
|
|
27
|
+
pawoo_url: string;
|
|
28
|
+
is_premium: boolean;
|
|
29
|
+
is_using_custom_profile_image: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface PixivUserProfilePublicity {
|
|
32
|
+
gender: string;
|
|
33
|
+
region: string;
|
|
34
|
+
birth_day: string;
|
|
35
|
+
birth_year: string;
|
|
36
|
+
job: string;
|
|
37
|
+
pawoo: boolean;
|
|
38
|
+
}
|
|
39
|
+
export interface PixivUserProfileWorkspace {
|
|
40
|
+
pc: string;
|
|
41
|
+
monitor: string;
|
|
42
|
+
tool: string;
|
|
43
|
+
scanner: string;
|
|
44
|
+
tablet: string;
|
|
45
|
+
mouse: string;
|
|
46
|
+
printer: string;
|
|
47
|
+
desktop: string;
|
|
48
|
+
music: string;
|
|
49
|
+
desk: string;
|
|
50
|
+
chair: string;
|
|
51
|
+
comment: string;
|
|
52
|
+
workspace_image_url?: any;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=pixiv-user.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-user.d.ts","sourceRoot":"","sources":["../../src/types/pixiv-user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAK1C,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG;IAMtC,OAAO,EAAE,MAAM,CAAA;CAChB,CAAA;AAKD,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,MAAM,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;IAClB,YAAY,EAAE,MAAM,CAAA;IACpB,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,MAAM,CAAA;IACd,kBAAkB,EAAE,MAAM,CAAA;IAC1B,mBAAmB,EAAE,MAAM,CAAA;IAC3B,aAAa,EAAE,MAAM,CAAA;IACrB,WAAW,EAAE,MAAM,CAAA;IACnB,YAAY,EAAE,MAAM,CAAA;IACpB,6BAA6B,EAAE,MAAM,CAAA;IACrC,mBAAmB,EAAE,MAAM,CAAA;IAC3B,kBAAkB,EAAE,MAAM,CAAA;IAC1B,oBAAoB,CAAC,EAAE,GAAG,CAAA;IAC1B,eAAe,EAAE,MAAM,CAAA;IACvB,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,OAAO,CAAA;IACnB,6BAA6B,EAAE,OAAO,CAAA;CACvC;AAED,MAAM,WAAW,yBAAyB;IACxC,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,OAAO,CAAA;CACf;AAED,MAAM,WAAW,yBAAyB;IACxC,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,mBAAmB,CAAC,EAAE,GAAG,CAAA;CAC1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pixiv-user.js","sourceRoot":"","sources":["../../src/types/pixiv-user.ts"],"names":[],"mappings":""}
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@book000/pixivts",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Pixiv Unofficial API Library for TypeScript",
|
|
5
|
+
"homepage": "https://www.npmjs.com/package/@book000/pixivts",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/book000/pixivts/issues"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "Tomachi <tomachi@tomacheese.com>",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"main": "dist/index.js",
|
|
15
|
+
"types": "dist/index.d.ts",
|
|
16
|
+
"repository": "git@github.com:book000/node-utils.git",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "run-s clean compile",
|
|
19
|
+
"clean": "rimraf dist output",
|
|
20
|
+
"compile": "tsc -p tsconfig.build.json",
|
|
21
|
+
"dev": "ts-node-dev --poll -r tsconfig-paths/register ./src/main.ts",
|
|
22
|
+
"fix": "run-s fix:prettier fix:eslint",
|
|
23
|
+
"fix:eslint": "eslint . --ext ts,tsx --fix",
|
|
24
|
+
"fix:prettier": "prettier --write src",
|
|
25
|
+
"lint": "run-p -c lint:prettier lint:eslint lint:tsc",
|
|
26
|
+
"lint:eslint": "eslint . --ext ts,tsx",
|
|
27
|
+
"lint:prettier": "prettier --check src",
|
|
28
|
+
"lint:tsc": "tsc",
|
|
29
|
+
"prepare": "run-s build",
|
|
30
|
+
"prepublishOnly": "run-s lint",
|
|
31
|
+
"start": "ts-node -r tsconfig-paths/register ./src/main.ts"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"axios": "1.3.5",
|
|
35
|
+
"qs": "6.11.1"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "18.15.11",
|
|
39
|
+
"@types/qs": "6.9.7",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "5.58.0",
|
|
41
|
+
"@typescript-eslint/parser": "5.58.0",
|
|
42
|
+
"eslint": "8.38.0",
|
|
43
|
+
"eslint-config-prettier": "8.8.0",
|
|
44
|
+
"eslint-config-standard": "17.0.0",
|
|
45
|
+
"eslint-plugin-import": "2.27.5",
|
|
46
|
+
"eslint-plugin-n": "15.7.0",
|
|
47
|
+
"eslint-plugin-promise": "6.1.1",
|
|
48
|
+
"eslint-plugin-unicorn": "46.0.0",
|
|
49
|
+
"prettier": "2.8.7",
|
|
50
|
+
"ts-node": "10.9.1",
|
|
51
|
+
"ts-node-dev": "2.0.0",
|
|
52
|
+
"typescript": "5.0.4",
|
|
53
|
+
"yarn-run-all": "3.1.1"
|
|
54
|
+
}
|
|
55
|
+
}
|