tsarr 1.1.1 → 1.1.2
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/clients/lidarr.d.ts +373 -0
- package/dist/clients/lidarr.d.ts.map +1 -0
- package/dist/clients/prowlarr.d.ts +143 -0
- package/dist/clients/prowlarr.d.ts.map +1 -0
- package/dist/clients/radarr.d.ts +1007 -0
- package/dist/clients/radarr.d.ts.map +1 -0
- package/dist/clients/readarr.d.ts +173 -0
- package/dist/clients/readarr.d.ts.map +1 -0
- package/dist/clients/sonarr.d.ts +181 -0
- package/dist/clients/sonarr.d.ts.map +1 -0
- package/dist/core/client.d.ts +17 -0
- package/dist/core/client.d.ts.map +1 -0
- package/dist/core/errors.d.ts +19 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/index.d.ts +5 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/response.d.ts +13 -0
- package/dist/core/response.d.ts.map +1 -0
- package/dist/core/types.d.ts +12 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/generated/lidarr/index.d.ts +4 -0
- package/dist/generated/lidarr/index.d.ts.map +1 -0
- package/dist/generated/lidarr/schemas.gen.d.ts +4584 -0
- package/dist/generated/lidarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/lidarr/services.gen.d.ts +242 -0
- package/dist/generated/lidarr/services.gen.d.ts.map +1 -0
- package/dist/generated/lidarr/types.gen.d.ts +2618 -0
- package/dist/generated/lidarr/types.gen.d.ts.map +1 -0
- package/dist/generated/prowlarr/index.d.ts +4 -0
- package/dist/generated/prowlarr/index.d.ts.map +1 -0
- package/dist/generated/prowlarr/schemas.gen.d.ts +2151 -0
- package/dist/generated/prowlarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/prowlarr/services.gen.d.ts +135 -0
- package/dist/generated/prowlarr/services.gen.d.ts.map +1 -0
- package/dist/generated/prowlarr/types.gen.d.ts +1339 -0
- package/dist/generated/prowlarr/types.gen.d.ts.map +1 -0
- package/dist/generated/radarr/index.d.ts +4 -0
- package/dist/generated/radarr/index.d.ts.map +1 -0
- package/dist/generated/radarr/schemas.gen.d.ts +4402 -0
- package/dist/generated/radarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/radarr/services.gen.d.ts +250 -0
- package/dist/generated/radarr/services.gen.d.ts.map +1 -0
- package/dist/generated/radarr/types.gen.d.ts +2547 -0
- package/dist/generated/radarr/types.gen.d.ts.map +1 -0
- package/dist/generated/readarr/index.d.ts +4 -0
- package/dist/generated/readarr/index.d.ts.map +1 -0
- package/dist/generated/readarr/schemas.gen.d.ts +5250 -0
- package/dist/generated/readarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/readarr/services.gen.d.ts +240 -0
- package/dist/generated/readarr/services.gen.d.ts.map +1 -0
- package/dist/generated/readarr/types.gen.d.ts +2770 -0
- package/dist/generated/readarr/types.gen.d.ts.map +1 -0
- package/dist/generated/sonarr/index.d.ts +4 -0
- package/dist/generated/sonarr/index.d.ts.map +1 -0
- package/dist/generated/sonarr/schemas.gen.d.ts +612 -0
- package/dist/generated/sonarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/sonarr/services.gen.d.ts +27 -0
- package/dist/generated/sonarr/services.gen.d.ts.map +1 -0
- package/dist/generated/sonarr/types.gen.d.ts +282 -0
- package/dist/generated/sonarr/types.gen.d.ts.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/radarr/index.d.ts +2 -0
- package/dist/radarr/index.d.ts.map +1 -0
- package/dist/sonarr/index.d.ts +2 -0
- package/dist/sonarr/index.d.ts.map +1 -0
- package/dist/tsarr-1.1.2.tgz +0 -0
- package/package.json +2 -2
- package/dist/tsarr-1.1.1.tgz +0 -0
|
@@ -0,0 +1,2770 @@
|
|
|
1
|
+
export type AddAuthorOptions = {
|
|
2
|
+
monitor?: MonitorTypes;
|
|
3
|
+
booksToMonitor?: Array<(string)> | null;
|
|
4
|
+
monitored?: boolean;
|
|
5
|
+
searchForMissingBooks?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export type AddBookOptions = {
|
|
8
|
+
addType?: BookAddType;
|
|
9
|
+
searchForNewBook?: boolean;
|
|
10
|
+
};
|
|
11
|
+
export type AllowFingerprinting = 'never' | 'newFiles' | 'allFiles';
|
|
12
|
+
export type ApiInfoResource = {
|
|
13
|
+
current?: (string) | null;
|
|
14
|
+
deprecated?: Array<(string)> | null;
|
|
15
|
+
};
|
|
16
|
+
export type ApplyTags = 'add' | 'remove' | 'replace';
|
|
17
|
+
export type AuthenticationRequiredType = 'enabled' | 'disabledForLocalAddresses';
|
|
18
|
+
export type AuthenticationType = 'none' | 'basic' | 'forms' | 'external';
|
|
19
|
+
export type Author = {
|
|
20
|
+
id?: number;
|
|
21
|
+
authorMetadataId?: number;
|
|
22
|
+
cleanName?: (string) | null;
|
|
23
|
+
monitored?: boolean;
|
|
24
|
+
monitorNewItems?: NewItemMonitorTypes;
|
|
25
|
+
lastInfoSync?: (string) | null;
|
|
26
|
+
path?: (string) | null;
|
|
27
|
+
rootFolderPath?: (string) | null;
|
|
28
|
+
added?: string;
|
|
29
|
+
qualityProfileId?: number;
|
|
30
|
+
metadataProfileId?: number;
|
|
31
|
+
tags?: Array<(number)> | null;
|
|
32
|
+
addOptions?: AddAuthorOptions;
|
|
33
|
+
metadata?: AuthorMetadataLazyLoaded;
|
|
34
|
+
qualityProfile?: QualityProfileLazyLoaded;
|
|
35
|
+
metadataProfile?: MetadataProfileLazyLoaded;
|
|
36
|
+
books?: BookListLazyLoaded;
|
|
37
|
+
series?: SeriesListLazyLoaded;
|
|
38
|
+
name?: (string) | null;
|
|
39
|
+
foreignAuthorId?: (string) | null;
|
|
40
|
+
};
|
|
41
|
+
export type AuthorEditorResource = {
|
|
42
|
+
authorIds?: Array<(number)> | null;
|
|
43
|
+
monitored?: (boolean) | null;
|
|
44
|
+
monitorNewItems?: NewItemMonitorTypes;
|
|
45
|
+
qualityProfileId?: (number) | null;
|
|
46
|
+
metadataProfileId?: (number) | null;
|
|
47
|
+
rootFolderPath?: (string) | null;
|
|
48
|
+
tags?: Array<(number)> | null;
|
|
49
|
+
applyTags?: ApplyTags;
|
|
50
|
+
moveFiles?: boolean;
|
|
51
|
+
deleteFiles?: boolean;
|
|
52
|
+
};
|
|
53
|
+
export type AuthorLazyLoaded = {
|
|
54
|
+
value?: Author;
|
|
55
|
+
readonly isLoaded?: boolean;
|
|
56
|
+
};
|
|
57
|
+
export type AuthorMetadata = {
|
|
58
|
+
id?: number;
|
|
59
|
+
foreignAuthorId?: (string) | null;
|
|
60
|
+
titleSlug?: (string) | null;
|
|
61
|
+
name?: (string) | null;
|
|
62
|
+
sortName?: (string) | null;
|
|
63
|
+
nameLastFirst?: (string) | null;
|
|
64
|
+
sortNameLastFirst?: (string) | null;
|
|
65
|
+
aliases?: Array<(string)> | null;
|
|
66
|
+
overview?: (string) | null;
|
|
67
|
+
disambiguation?: (string) | null;
|
|
68
|
+
gender?: (string) | null;
|
|
69
|
+
hometown?: (string) | null;
|
|
70
|
+
born?: (string) | null;
|
|
71
|
+
died?: (string) | null;
|
|
72
|
+
status?: AuthorStatusType;
|
|
73
|
+
images?: Array<MediaCover> | null;
|
|
74
|
+
links?: Array<Links> | null;
|
|
75
|
+
genres?: Array<(string)> | null;
|
|
76
|
+
ratings?: Ratings;
|
|
77
|
+
};
|
|
78
|
+
export type AuthorMetadataLazyLoaded = {
|
|
79
|
+
value?: AuthorMetadata;
|
|
80
|
+
readonly isLoaded?: boolean;
|
|
81
|
+
};
|
|
82
|
+
export type AuthorResource = {
|
|
83
|
+
id?: number;
|
|
84
|
+
authorMetadataId?: number;
|
|
85
|
+
status?: AuthorStatusType;
|
|
86
|
+
readonly ended?: boolean;
|
|
87
|
+
authorName?: (string) | null;
|
|
88
|
+
authorNameLastFirst?: (string) | null;
|
|
89
|
+
foreignAuthorId?: (string) | null;
|
|
90
|
+
titleSlug?: (string) | null;
|
|
91
|
+
overview?: (string) | null;
|
|
92
|
+
disambiguation?: (string) | null;
|
|
93
|
+
links?: Array<Links> | null;
|
|
94
|
+
nextBook?: Book;
|
|
95
|
+
lastBook?: Book;
|
|
96
|
+
images?: Array<MediaCover> | null;
|
|
97
|
+
remotePoster?: (string) | null;
|
|
98
|
+
path?: (string) | null;
|
|
99
|
+
qualityProfileId?: number;
|
|
100
|
+
metadataProfileId?: number;
|
|
101
|
+
monitored?: boolean;
|
|
102
|
+
monitorNewItems?: NewItemMonitorTypes;
|
|
103
|
+
rootFolderPath?: (string) | null;
|
|
104
|
+
folder?: (string) | null;
|
|
105
|
+
genres?: Array<(string)> | null;
|
|
106
|
+
cleanName?: (string) | null;
|
|
107
|
+
sortName?: (string) | null;
|
|
108
|
+
sortNameLastFirst?: (string) | null;
|
|
109
|
+
tags?: Array<(number)> | null;
|
|
110
|
+
added?: string;
|
|
111
|
+
addOptions?: AddAuthorOptions;
|
|
112
|
+
ratings?: Ratings;
|
|
113
|
+
statistics?: AuthorStatisticsResource;
|
|
114
|
+
};
|
|
115
|
+
export type AuthorStatisticsResource = {
|
|
116
|
+
bookFileCount?: number;
|
|
117
|
+
bookCount?: number;
|
|
118
|
+
availableBookCount?: number;
|
|
119
|
+
totalBookCount?: number;
|
|
120
|
+
sizeOnDisk?: number;
|
|
121
|
+
readonly percentOfBooks?: number;
|
|
122
|
+
};
|
|
123
|
+
export type AuthorStatusType = 'continuing' | 'ended';
|
|
124
|
+
export type AuthorTitleInfo = {
|
|
125
|
+
title?: (string) | null;
|
|
126
|
+
titleWithoutYear?: (string) | null;
|
|
127
|
+
year?: number;
|
|
128
|
+
};
|
|
129
|
+
export type BackupResource = {
|
|
130
|
+
id?: number;
|
|
131
|
+
name?: (string) | null;
|
|
132
|
+
path?: (string) | null;
|
|
133
|
+
type?: BackupType;
|
|
134
|
+
size?: number;
|
|
135
|
+
time?: string;
|
|
136
|
+
};
|
|
137
|
+
export type BackupType = 'scheduled' | 'manual' | 'update';
|
|
138
|
+
export type BlocklistBulkResource = {
|
|
139
|
+
ids?: Array<(number)> | null;
|
|
140
|
+
};
|
|
141
|
+
export type BlocklistResource = {
|
|
142
|
+
id?: number;
|
|
143
|
+
authorId?: number;
|
|
144
|
+
bookIds?: Array<(number)> | null;
|
|
145
|
+
sourceTitle?: (string) | null;
|
|
146
|
+
quality?: QualityModel;
|
|
147
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
148
|
+
date?: string;
|
|
149
|
+
protocol?: DownloadProtocol;
|
|
150
|
+
indexer?: (string) | null;
|
|
151
|
+
message?: (string) | null;
|
|
152
|
+
author?: AuthorResource;
|
|
153
|
+
};
|
|
154
|
+
export type BlocklistResourcePagingResource = {
|
|
155
|
+
page?: number;
|
|
156
|
+
pageSize?: number;
|
|
157
|
+
sortKey?: (string) | null;
|
|
158
|
+
sortDirection?: SortDirection;
|
|
159
|
+
totalRecords?: number;
|
|
160
|
+
records?: Array<BlocklistResource> | null;
|
|
161
|
+
};
|
|
162
|
+
export type Book = {
|
|
163
|
+
id?: number;
|
|
164
|
+
authorMetadataId?: number;
|
|
165
|
+
foreignBookId?: (string) | null;
|
|
166
|
+
foreignEditionId?: (string) | null;
|
|
167
|
+
titleSlug?: (string) | null;
|
|
168
|
+
title?: (string) | null;
|
|
169
|
+
releaseDate?: (string) | null;
|
|
170
|
+
links?: Array<Links> | null;
|
|
171
|
+
genres?: Array<(string)> | null;
|
|
172
|
+
relatedBooks?: Array<(number)> | null;
|
|
173
|
+
ratings?: Ratings;
|
|
174
|
+
lastSearchTime?: (string) | null;
|
|
175
|
+
cleanTitle?: (string) | null;
|
|
176
|
+
monitored?: boolean;
|
|
177
|
+
anyEditionOk?: boolean;
|
|
178
|
+
lastInfoSync?: (string) | null;
|
|
179
|
+
added?: string;
|
|
180
|
+
addOptions?: AddBookOptions;
|
|
181
|
+
authorMetadata?: AuthorMetadataLazyLoaded;
|
|
182
|
+
author?: AuthorLazyLoaded;
|
|
183
|
+
editions?: EditionListLazyLoaded;
|
|
184
|
+
bookFiles?: BookFileListLazyLoaded;
|
|
185
|
+
seriesLinks?: SeriesBookLinkListLazyLoaded;
|
|
186
|
+
};
|
|
187
|
+
export type BookAddType = 'automatic' | 'manual';
|
|
188
|
+
export type BookEditorResource = {
|
|
189
|
+
bookIds?: Array<(number)> | null;
|
|
190
|
+
monitored?: (boolean) | null;
|
|
191
|
+
deleteFiles?: (boolean) | null;
|
|
192
|
+
addImportListExclusion?: (boolean) | null;
|
|
193
|
+
};
|
|
194
|
+
export type BookFile = {
|
|
195
|
+
id?: number;
|
|
196
|
+
path?: (string) | null;
|
|
197
|
+
size?: number;
|
|
198
|
+
modified?: string;
|
|
199
|
+
dateAdded?: string;
|
|
200
|
+
originalFilePath?: (string) | null;
|
|
201
|
+
sceneName?: (string) | null;
|
|
202
|
+
releaseGroup?: (string) | null;
|
|
203
|
+
quality?: QualityModel;
|
|
204
|
+
indexerFlags?: IndexerFlags;
|
|
205
|
+
mediaInfo?: MediaInfoModel;
|
|
206
|
+
editionId?: number;
|
|
207
|
+
calibreId?: number;
|
|
208
|
+
part?: number;
|
|
209
|
+
author?: AuthorLazyLoaded;
|
|
210
|
+
edition?: EditionLazyLoaded;
|
|
211
|
+
partCount?: number;
|
|
212
|
+
};
|
|
213
|
+
export type BookFileListLazyLoaded = {
|
|
214
|
+
readonly value?: Array<BookFile> | null;
|
|
215
|
+
readonly isLoaded?: boolean;
|
|
216
|
+
};
|
|
217
|
+
export type BookFileListResource = {
|
|
218
|
+
bookFileIds?: Array<(number)> | null;
|
|
219
|
+
quality?: QualityModel;
|
|
220
|
+
};
|
|
221
|
+
export type BookFileResource = {
|
|
222
|
+
id?: number;
|
|
223
|
+
authorId?: number;
|
|
224
|
+
bookId?: number;
|
|
225
|
+
path?: (string) | null;
|
|
226
|
+
size?: number;
|
|
227
|
+
dateAdded?: string;
|
|
228
|
+
quality?: QualityModel;
|
|
229
|
+
qualityWeight?: number;
|
|
230
|
+
indexerFlags?: (number) | null;
|
|
231
|
+
mediaInfo?: MediaInfoResource;
|
|
232
|
+
qualityCutoffNotMet?: boolean;
|
|
233
|
+
audioTags?: ParsedTrackInfo;
|
|
234
|
+
};
|
|
235
|
+
export type BookLazyLoaded = {
|
|
236
|
+
value?: Book;
|
|
237
|
+
readonly isLoaded?: boolean;
|
|
238
|
+
};
|
|
239
|
+
export type BookListLazyLoaded = {
|
|
240
|
+
readonly value?: Array<Book> | null;
|
|
241
|
+
readonly isLoaded?: boolean;
|
|
242
|
+
};
|
|
243
|
+
export type BookResource = {
|
|
244
|
+
id?: number;
|
|
245
|
+
title?: (string) | null;
|
|
246
|
+
authorTitle?: (string) | null;
|
|
247
|
+
seriesTitle?: (string) | null;
|
|
248
|
+
disambiguation?: (string) | null;
|
|
249
|
+
overview?: (string) | null;
|
|
250
|
+
authorId?: number;
|
|
251
|
+
foreignBookId?: (string) | null;
|
|
252
|
+
foreignEditionId?: (string) | null;
|
|
253
|
+
titleSlug?: (string) | null;
|
|
254
|
+
monitored?: boolean;
|
|
255
|
+
anyEditionOk?: boolean;
|
|
256
|
+
ratings?: Ratings;
|
|
257
|
+
releaseDate?: (string) | null;
|
|
258
|
+
pageCount?: number;
|
|
259
|
+
genres?: Array<(string)> | null;
|
|
260
|
+
author?: AuthorResource;
|
|
261
|
+
images?: Array<MediaCover> | null;
|
|
262
|
+
links?: Array<Links> | null;
|
|
263
|
+
statistics?: BookStatisticsResource;
|
|
264
|
+
added?: (string) | null;
|
|
265
|
+
addOptions?: AddBookOptions;
|
|
266
|
+
remoteCover?: (string) | null;
|
|
267
|
+
lastSearchTime?: (string) | null;
|
|
268
|
+
editions?: Array<EditionResource> | null;
|
|
269
|
+
};
|
|
270
|
+
export type BookResourcePagingResource = {
|
|
271
|
+
page?: number;
|
|
272
|
+
pageSize?: number;
|
|
273
|
+
sortKey?: (string) | null;
|
|
274
|
+
sortDirection?: SortDirection;
|
|
275
|
+
totalRecords?: number;
|
|
276
|
+
records?: Array<BookResource> | null;
|
|
277
|
+
};
|
|
278
|
+
export type BookshelfAuthorResource = {
|
|
279
|
+
id?: number;
|
|
280
|
+
monitored?: (boolean) | null;
|
|
281
|
+
books?: Array<BookResource> | null;
|
|
282
|
+
};
|
|
283
|
+
export type BookshelfResource = {
|
|
284
|
+
authors?: Array<BookshelfAuthorResource> | null;
|
|
285
|
+
monitoringOptions?: MonitoringOptions;
|
|
286
|
+
monitorNewItems?: NewItemMonitorTypes;
|
|
287
|
+
};
|
|
288
|
+
export type BooksMonitoredResource = {
|
|
289
|
+
bookIds?: Array<(number)> | null;
|
|
290
|
+
monitored?: boolean;
|
|
291
|
+
};
|
|
292
|
+
export type BookStatisticsResource = {
|
|
293
|
+
bookFileCount?: number;
|
|
294
|
+
bookCount?: number;
|
|
295
|
+
totalBookCount?: number;
|
|
296
|
+
sizeOnDisk?: number;
|
|
297
|
+
readonly percentOfBooks?: number;
|
|
298
|
+
};
|
|
299
|
+
export type CertificateValidationType = 'enabled' | 'disabledForLocalAddresses' | 'disabled';
|
|
300
|
+
export type Command = {
|
|
301
|
+
sendUpdatesToClient?: boolean;
|
|
302
|
+
readonly updateScheduledTask?: boolean;
|
|
303
|
+
readonly completionMessage?: (string) | null;
|
|
304
|
+
readonly requiresDiskAccess?: boolean;
|
|
305
|
+
readonly isExclusive?: boolean;
|
|
306
|
+
readonly isTypeExclusive?: boolean;
|
|
307
|
+
readonly isLongRunning?: boolean;
|
|
308
|
+
readonly name?: (string) | null;
|
|
309
|
+
lastExecutionTime?: (string) | null;
|
|
310
|
+
lastStartTime?: (string) | null;
|
|
311
|
+
trigger?: CommandTrigger;
|
|
312
|
+
suppressMessages?: boolean;
|
|
313
|
+
clientUserAgent?: (string) | null;
|
|
314
|
+
};
|
|
315
|
+
export type CommandPriority = 'normal' | 'high' | 'low';
|
|
316
|
+
export type CommandResource = {
|
|
317
|
+
id?: number;
|
|
318
|
+
name?: (string) | null;
|
|
319
|
+
commandName?: (string) | null;
|
|
320
|
+
message?: (string) | null;
|
|
321
|
+
body?: Command;
|
|
322
|
+
priority?: CommandPriority;
|
|
323
|
+
status?: CommandStatus;
|
|
324
|
+
result?: CommandResult;
|
|
325
|
+
queued?: string;
|
|
326
|
+
started?: (string) | null;
|
|
327
|
+
ended?: (string) | null;
|
|
328
|
+
duration?: (string) | null;
|
|
329
|
+
exception?: (string) | null;
|
|
330
|
+
trigger?: CommandTrigger;
|
|
331
|
+
clientUserAgent?: (string) | null;
|
|
332
|
+
stateChangeTime?: (string) | null;
|
|
333
|
+
sendUpdatesToClient?: boolean;
|
|
334
|
+
updateScheduledTask?: boolean;
|
|
335
|
+
lastExecutionTime?: (string) | null;
|
|
336
|
+
};
|
|
337
|
+
export type CommandResult = 'unknown' | 'successful' | 'unsuccessful';
|
|
338
|
+
export type CommandStatus = 'queued' | 'started' | 'completed' | 'failed' | 'aborted' | 'cancelled' | 'orphaned';
|
|
339
|
+
export type CommandTrigger = 'unspecified' | 'manual' | 'scheduled';
|
|
340
|
+
export type CustomFilterResource = {
|
|
341
|
+
id?: number;
|
|
342
|
+
type?: (string) | null;
|
|
343
|
+
label?: (string) | null;
|
|
344
|
+
filters?: Array<{
|
|
345
|
+
[key: string]: unknown;
|
|
346
|
+
}> | null;
|
|
347
|
+
};
|
|
348
|
+
export type CustomFormat = {
|
|
349
|
+
id?: number;
|
|
350
|
+
name?: (string) | null;
|
|
351
|
+
includeCustomFormatWhenRenaming?: boolean;
|
|
352
|
+
specifications?: Array<ICustomFormatSpecification> | null;
|
|
353
|
+
};
|
|
354
|
+
export type CustomFormatResource = {
|
|
355
|
+
id?: number;
|
|
356
|
+
name?: (string) | null;
|
|
357
|
+
includeCustomFormatWhenRenaming?: (boolean) | null;
|
|
358
|
+
specifications?: Array<CustomFormatSpecificationSchema> | null;
|
|
359
|
+
};
|
|
360
|
+
export type CustomFormatSpecificationSchema = {
|
|
361
|
+
id?: number;
|
|
362
|
+
name?: (string) | null;
|
|
363
|
+
implementation?: (string) | null;
|
|
364
|
+
implementationName?: (string) | null;
|
|
365
|
+
infoLink?: (string) | null;
|
|
366
|
+
negate?: boolean;
|
|
367
|
+
required?: boolean;
|
|
368
|
+
fields?: Array<Field> | null;
|
|
369
|
+
presets?: Array<CustomFormatSpecificationSchema> | null;
|
|
370
|
+
};
|
|
371
|
+
export type DatabaseType = 'sqLite' | 'postgreSQL';
|
|
372
|
+
export type DelayProfileResource = {
|
|
373
|
+
id?: number;
|
|
374
|
+
enableUsenet?: boolean;
|
|
375
|
+
enableTorrent?: boolean;
|
|
376
|
+
preferredProtocol?: DownloadProtocol;
|
|
377
|
+
usenetDelay?: number;
|
|
378
|
+
torrentDelay?: number;
|
|
379
|
+
bypassIfHighestQuality?: boolean;
|
|
380
|
+
bypassIfAboveCustomFormatScore?: boolean;
|
|
381
|
+
minimumCustomFormatScore?: number;
|
|
382
|
+
order?: number;
|
|
383
|
+
tags?: Array<(number)> | null;
|
|
384
|
+
};
|
|
385
|
+
export type DevelopmentConfigResource = {
|
|
386
|
+
id?: number;
|
|
387
|
+
metadataSource?: (string) | null;
|
|
388
|
+
consoleLogLevel?: (string) | null;
|
|
389
|
+
logSql?: boolean;
|
|
390
|
+
logRotate?: number;
|
|
391
|
+
filterSentryEvents?: boolean;
|
|
392
|
+
};
|
|
393
|
+
export type DiskSpaceResource = {
|
|
394
|
+
id?: number;
|
|
395
|
+
path?: (string) | null;
|
|
396
|
+
label?: (string) | null;
|
|
397
|
+
freeSpace?: number;
|
|
398
|
+
totalSpace?: number;
|
|
399
|
+
};
|
|
400
|
+
export type DownloadClientBulkResource = {
|
|
401
|
+
ids?: Array<(number)> | null;
|
|
402
|
+
tags?: Array<(number)> | null;
|
|
403
|
+
applyTags?: ApplyTags;
|
|
404
|
+
enable?: (boolean) | null;
|
|
405
|
+
priority?: (number) | null;
|
|
406
|
+
removeCompletedDownloads?: (boolean) | null;
|
|
407
|
+
removeFailedDownloads?: (boolean) | null;
|
|
408
|
+
};
|
|
409
|
+
export type DownloadClientConfigResource = {
|
|
410
|
+
id?: number;
|
|
411
|
+
downloadClientWorkingFolders?: (string) | null;
|
|
412
|
+
enableCompletedDownloadHandling?: boolean;
|
|
413
|
+
autoRedownloadFailed?: boolean;
|
|
414
|
+
autoRedownloadFailedFromInteractiveSearch?: boolean;
|
|
415
|
+
};
|
|
416
|
+
export type DownloadClientResource = {
|
|
417
|
+
id?: number;
|
|
418
|
+
name?: (string) | null;
|
|
419
|
+
fields?: Array<Field> | null;
|
|
420
|
+
implementationName?: (string) | null;
|
|
421
|
+
implementation?: (string) | null;
|
|
422
|
+
configContract?: (string) | null;
|
|
423
|
+
infoLink?: (string) | null;
|
|
424
|
+
message?: ProviderMessage;
|
|
425
|
+
tags?: Array<(number)> | null;
|
|
426
|
+
presets?: Array<DownloadClientResource> | null;
|
|
427
|
+
enable?: boolean;
|
|
428
|
+
protocol?: DownloadProtocol;
|
|
429
|
+
priority?: number;
|
|
430
|
+
removeCompletedDownloads?: boolean;
|
|
431
|
+
removeFailedDownloads?: boolean;
|
|
432
|
+
};
|
|
433
|
+
export type DownloadProtocol = 'unknown' | 'usenet' | 'torrent';
|
|
434
|
+
export type Edition = {
|
|
435
|
+
id?: number;
|
|
436
|
+
bookId?: number;
|
|
437
|
+
foreignEditionId?: (string) | null;
|
|
438
|
+
titleSlug?: (string) | null;
|
|
439
|
+
isbn13?: (string) | null;
|
|
440
|
+
asin?: (string) | null;
|
|
441
|
+
title?: (string) | null;
|
|
442
|
+
language?: (string) | null;
|
|
443
|
+
overview?: (string) | null;
|
|
444
|
+
format?: (string) | null;
|
|
445
|
+
isEbook?: boolean;
|
|
446
|
+
disambiguation?: (string) | null;
|
|
447
|
+
publisher?: (string) | null;
|
|
448
|
+
pageCount?: number;
|
|
449
|
+
releaseDate?: (string) | null;
|
|
450
|
+
images?: Array<MediaCover> | null;
|
|
451
|
+
links?: Array<Links> | null;
|
|
452
|
+
ratings?: Ratings;
|
|
453
|
+
monitored?: boolean;
|
|
454
|
+
manualAdd?: boolean;
|
|
455
|
+
book?: BookLazyLoaded;
|
|
456
|
+
bookFiles?: BookFileListLazyLoaded;
|
|
457
|
+
};
|
|
458
|
+
export type EditionLazyLoaded = {
|
|
459
|
+
value?: Edition;
|
|
460
|
+
readonly isLoaded?: boolean;
|
|
461
|
+
};
|
|
462
|
+
export type EditionListLazyLoaded = {
|
|
463
|
+
readonly value?: Array<Edition> | null;
|
|
464
|
+
readonly isLoaded?: boolean;
|
|
465
|
+
};
|
|
466
|
+
export type EditionResource = {
|
|
467
|
+
id?: number;
|
|
468
|
+
bookId?: number;
|
|
469
|
+
foreignEditionId?: (string) | null;
|
|
470
|
+
titleSlug?: (string) | null;
|
|
471
|
+
isbn13?: (string) | null;
|
|
472
|
+
asin?: (string) | null;
|
|
473
|
+
title?: (string) | null;
|
|
474
|
+
language?: (string) | null;
|
|
475
|
+
overview?: (string) | null;
|
|
476
|
+
format?: (string) | null;
|
|
477
|
+
isEbook?: boolean;
|
|
478
|
+
disambiguation?: (string) | null;
|
|
479
|
+
publisher?: (string) | null;
|
|
480
|
+
pageCount?: number;
|
|
481
|
+
releaseDate?: (string) | null;
|
|
482
|
+
images?: Array<MediaCover> | null;
|
|
483
|
+
links?: Array<Links> | null;
|
|
484
|
+
ratings?: Ratings;
|
|
485
|
+
monitored?: boolean;
|
|
486
|
+
manualAdd?: boolean;
|
|
487
|
+
remoteCover?: (string) | null;
|
|
488
|
+
};
|
|
489
|
+
export type EntityHistoryEventType = 'unknown' | 'grabbed' | 'bookFileImported' | 'downloadFailed' | 'bookFileDeleted' | 'bookFileRenamed' | 'bookImportIncomplete' | 'downloadImported' | 'bookFileRetagged' | 'downloadIgnored';
|
|
490
|
+
export type Field = {
|
|
491
|
+
order?: number;
|
|
492
|
+
name?: (string) | null;
|
|
493
|
+
label?: (string) | null;
|
|
494
|
+
unit?: (string) | null;
|
|
495
|
+
helpText?: (string) | null;
|
|
496
|
+
helpTextWarning?: (string) | null;
|
|
497
|
+
helpLink?: (string) | null;
|
|
498
|
+
value?: unknown;
|
|
499
|
+
type?: (string) | null;
|
|
500
|
+
advanced?: boolean;
|
|
501
|
+
selectOptions?: Array<SelectOption> | null;
|
|
502
|
+
selectOptionsProviderAction?: (string) | null;
|
|
503
|
+
section?: (string) | null;
|
|
504
|
+
hidden?: (string) | null;
|
|
505
|
+
placeholder?: (string) | null;
|
|
506
|
+
isFloat?: boolean;
|
|
507
|
+
};
|
|
508
|
+
export type FileDateType = 'none' | 'bookReleaseDate';
|
|
509
|
+
export type HealthCheckResult = 'ok' | 'notice' | 'warning' | 'error';
|
|
510
|
+
export type HealthResource = {
|
|
511
|
+
id?: number;
|
|
512
|
+
source?: (string) | null;
|
|
513
|
+
type?: HealthCheckResult;
|
|
514
|
+
message?: (string) | null;
|
|
515
|
+
wikiUrl?: (string) | null;
|
|
516
|
+
};
|
|
517
|
+
export type HistoryResource = {
|
|
518
|
+
id?: number;
|
|
519
|
+
bookId?: number;
|
|
520
|
+
authorId?: number;
|
|
521
|
+
sourceTitle?: (string) | null;
|
|
522
|
+
quality?: QualityModel;
|
|
523
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
524
|
+
customFormatScore?: number;
|
|
525
|
+
qualityCutoffNotMet?: boolean;
|
|
526
|
+
date?: string;
|
|
527
|
+
downloadId?: (string) | null;
|
|
528
|
+
eventType?: EntityHistoryEventType;
|
|
529
|
+
data?: {
|
|
530
|
+
[key: string]: ((string) | null);
|
|
531
|
+
} | null;
|
|
532
|
+
book?: BookResource;
|
|
533
|
+
author?: AuthorResource;
|
|
534
|
+
};
|
|
535
|
+
export type HistoryResourcePagingResource = {
|
|
536
|
+
page?: number;
|
|
537
|
+
pageSize?: number;
|
|
538
|
+
sortKey?: (string) | null;
|
|
539
|
+
sortDirection?: SortDirection;
|
|
540
|
+
totalRecords?: number;
|
|
541
|
+
records?: Array<HistoryResource> | null;
|
|
542
|
+
};
|
|
543
|
+
export type HostConfigResource = {
|
|
544
|
+
id?: number;
|
|
545
|
+
bindAddress?: (string) | null;
|
|
546
|
+
port?: number;
|
|
547
|
+
sslPort?: number;
|
|
548
|
+
enableSsl?: boolean;
|
|
549
|
+
launchBrowser?: boolean;
|
|
550
|
+
authenticationMethod?: AuthenticationType;
|
|
551
|
+
authenticationRequired?: AuthenticationRequiredType;
|
|
552
|
+
analyticsEnabled?: boolean;
|
|
553
|
+
username?: (string) | null;
|
|
554
|
+
password?: (string) | null;
|
|
555
|
+
passwordConfirmation?: (string) | null;
|
|
556
|
+
logLevel?: (string) | null;
|
|
557
|
+
consoleLogLevel?: (string) | null;
|
|
558
|
+
branch?: (string) | null;
|
|
559
|
+
apiKey?: (string) | null;
|
|
560
|
+
sslCertPath?: (string) | null;
|
|
561
|
+
sslCertPassword?: (string) | null;
|
|
562
|
+
urlBase?: (string) | null;
|
|
563
|
+
instanceName?: (string) | null;
|
|
564
|
+
applicationUrl?: (string) | null;
|
|
565
|
+
updateAutomatically?: boolean;
|
|
566
|
+
updateMechanism?: UpdateMechanism;
|
|
567
|
+
updateScriptPath?: (string) | null;
|
|
568
|
+
proxyEnabled?: boolean;
|
|
569
|
+
proxyType?: ProxyType;
|
|
570
|
+
proxyHostname?: (string) | null;
|
|
571
|
+
proxyPort?: number;
|
|
572
|
+
proxyUsername?: (string) | null;
|
|
573
|
+
proxyPassword?: (string) | null;
|
|
574
|
+
proxyBypassFilter?: (string) | null;
|
|
575
|
+
proxyBypassLocalAddresses?: boolean;
|
|
576
|
+
certificateValidation?: CertificateValidationType;
|
|
577
|
+
backupFolder?: (string) | null;
|
|
578
|
+
backupInterval?: number;
|
|
579
|
+
backupRetention?: number;
|
|
580
|
+
trustCgnatIpAddresses?: boolean;
|
|
581
|
+
};
|
|
582
|
+
export type ICustomFormatSpecification = {
|
|
583
|
+
readonly order?: number;
|
|
584
|
+
readonly infoLink?: (string) | null;
|
|
585
|
+
readonly implementationName?: (string) | null;
|
|
586
|
+
name?: (string) | null;
|
|
587
|
+
negate?: boolean;
|
|
588
|
+
required?: boolean;
|
|
589
|
+
};
|
|
590
|
+
export type ImportListBulkResource = {
|
|
591
|
+
ids?: Array<(number)> | null;
|
|
592
|
+
tags?: Array<(number)> | null;
|
|
593
|
+
applyTags?: ApplyTags;
|
|
594
|
+
enableAutomaticAdd?: (boolean) | null;
|
|
595
|
+
rootFolderPath?: (string) | null;
|
|
596
|
+
qualityProfileId?: (number) | null;
|
|
597
|
+
metadataProfileId?: (number) | null;
|
|
598
|
+
};
|
|
599
|
+
export type ImportListExclusionResource = {
|
|
600
|
+
id?: number;
|
|
601
|
+
foreignId?: (string) | null;
|
|
602
|
+
authorName?: (string) | null;
|
|
603
|
+
};
|
|
604
|
+
export type ImportListMonitorType = 'none' | 'specificBook' | 'entireAuthor';
|
|
605
|
+
export type ImportListResource = {
|
|
606
|
+
id?: number;
|
|
607
|
+
name?: (string) | null;
|
|
608
|
+
fields?: Array<Field> | null;
|
|
609
|
+
implementationName?: (string) | null;
|
|
610
|
+
implementation?: (string) | null;
|
|
611
|
+
configContract?: (string) | null;
|
|
612
|
+
infoLink?: (string) | null;
|
|
613
|
+
message?: ProviderMessage;
|
|
614
|
+
tags?: Array<(number)> | null;
|
|
615
|
+
presets?: Array<ImportListResource> | null;
|
|
616
|
+
enableAutomaticAdd?: boolean;
|
|
617
|
+
shouldMonitor?: ImportListMonitorType;
|
|
618
|
+
shouldMonitorExisting?: boolean;
|
|
619
|
+
shouldSearch?: boolean;
|
|
620
|
+
rootFolderPath?: (string) | null;
|
|
621
|
+
monitorNewItems?: NewItemMonitorTypes;
|
|
622
|
+
qualityProfileId?: number;
|
|
623
|
+
metadataProfileId?: number;
|
|
624
|
+
listType?: ImportListType;
|
|
625
|
+
listOrder?: number;
|
|
626
|
+
minRefreshInterval?: string;
|
|
627
|
+
};
|
|
628
|
+
export type ImportListType = 'program' | 'goodreads' | 'other';
|
|
629
|
+
export type IndexerBulkResource = {
|
|
630
|
+
ids?: Array<(number)> | null;
|
|
631
|
+
tags?: Array<(number)> | null;
|
|
632
|
+
applyTags?: ApplyTags;
|
|
633
|
+
enableRss?: (boolean) | null;
|
|
634
|
+
enableAutomaticSearch?: (boolean) | null;
|
|
635
|
+
enableInteractiveSearch?: (boolean) | null;
|
|
636
|
+
priority?: (number) | null;
|
|
637
|
+
};
|
|
638
|
+
export type IndexerConfigResource = {
|
|
639
|
+
id?: number;
|
|
640
|
+
minimumAge?: number;
|
|
641
|
+
maximumSize?: number;
|
|
642
|
+
retention?: number;
|
|
643
|
+
rssSyncInterval?: number;
|
|
644
|
+
};
|
|
645
|
+
export type IndexerFlagResource = {
|
|
646
|
+
id?: number;
|
|
647
|
+
name?: (string) | null;
|
|
648
|
+
readonly nameLower?: (string) | null;
|
|
649
|
+
};
|
|
650
|
+
export type IndexerFlags = 'freeleech' | 'halfleech' | 'doubleUpload' | 'internal' | 'scene' | 'freeleech75' | 'freeleech25';
|
|
651
|
+
export type IndexerResource = {
|
|
652
|
+
id?: number;
|
|
653
|
+
name?: (string) | null;
|
|
654
|
+
fields?: Array<Field> | null;
|
|
655
|
+
implementationName?: (string) | null;
|
|
656
|
+
implementation?: (string) | null;
|
|
657
|
+
configContract?: (string) | null;
|
|
658
|
+
infoLink?: (string) | null;
|
|
659
|
+
message?: ProviderMessage;
|
|
660
|
+
tags?: Array<(number)> | null;
|
|
661
|
+
presets?: Array<IndexerResource> | null;
|
|
662
|
+
enableRss?: boolean;
|
|
663
|
+
enableAutomaticSearch?: boolean;
|
|
664
|
+
enableInteractiveSearch?: boolean;
|
|
665
|
+
supportsRss?: boolean;
|
|
666
|
+
supportsSearch?: boolean;
|
|
667
|
+
protocol?: DownloadProtocol;
|
|
668
|
+
priority?: number;
|
|
669
|
+
downloadClientId?: number;
|
|
670
|
+
};
|
|
671
|
+
export type IsoCountry = {
|
|
672
|
+
twoLetterCode?: (string) | null;
|
|
673
|
+
name?: (string) | null;
|
|
674
|
+
};
|
|
675
|
+
export type LanguageResource = {
|
|
676
|
+
id?: number;
|
|
677
|
+
name?: (string) | null;
|
|
678
|
+
readonly nameLower?: (string) | null;
|
|
679
|
+
};
|
|
680
|
+
export type Links = {
|
|
681
|
+
url?: (string) | null;
|
|
682
|
+
name?: (string) | null;
|
|
683
|
+
};
|
|
684
|
+
export type LogFileResource = {
|
|
685
|
+
id?: number;
|
|
686
|
+
filename?: (string) | null;
|
|
687
|
+
lastWriteTime?: string;
|
|
688
|
+
contentsUrl?: (string) | null;
|
|
689
|
+
downloadUrl?: (string) | null;
|
|
690
|
+
};
|
|
691
|
+
export type LogResource = {
|
|
692
|
+
id?: number;
|
|
693
|
+
time?: string;
|
|
694
|
+
exception?: (string) | null;
|
|
695
|
+
exceptionType?: (string) | null;
|
|
696
|
+
level?: (string) | null;
|
|
697
|
+
logger?: (string) | null;
|
|
698
|
+
message?: (string) | null;
|
|
699
|
+
method?: (string) | null;
|
|
700
|
+
};
|
|
701
|
+
export type LogResourcePagingResource = {
|
|
702
|
+
page?: number;
|
|
703
|
+
pageSize?: number;
|
|
704
|
+
sortKey?: (string) | null;
|
|
705
|
+
sortDirection?: SortDirection;
|
|
706
|
+
totalRecords?: number;
|
|
707
|
+
records?: Array<LogResource> | null;
|
|
708
|
+
};
|
|
709
|
+
export type ManualImportResource = {
|
|
710
|
+
id?: number;
|
|
711
|
+
path?: (string) | null;
|
|
712
|
+
name?: (string) | null;
|
|
713
|
+
size?: number;
|
|
714
|
+
author?: AuthorResource;
|
|
715
|
+
book?: BookResource;
|
|
716
|
+
foreignEditionId?: (string) | null;
|
|
717
|
+
quality?: QualityModel;
|
|
718
|
+
releaseGroup?: (string) | null;
|
|
719
|
+
qualityWeight?: number;
|
|
720
|
+
downloadId?: (string) | null;
|
|
721
|
+
indexerFlags?: number;
|
|
722
|
+
rejections?: Array<Rejection> | null;
|
|
723
|
+
audioTags?: ParsedTrackInfo;
|
|
724
|
+
additionalFile?: boolean;
|
|
725
|
+
replaceExistingFiles?: boolean;
|
|
726
|
+
disableReleaseSwitching?: boolean;
|
|
727
|
+
};
|
|
728
|
+
export type ManualImportUpdateResource = {
|
|
729
|
+
id?: number;
|
|
730
|
+
path?: (string) | null;
|
|
731
|
+
name?: (string) | null;
|
|
732
|
+
authorId?: (number) | null;
|
|
733
|
+
bookId?: (number) | null;
|
|
734
|
+
foreignEditionId?: (string) | null;
|
|
735
|
+
quality?: QualityModel;
|
|
736
|
+
releaseGroup?: (string) | null;
|
|
737
|
+
indexerFlags?: number;
|
|
738
|
+
downloadId?: (string) | null;
|
|
739
|
+
additionalFile?: boolean;
|
|
740
|
+
replaceExistingFiles?: boolean;
|
|
741
|
+
disableReleaseSwitching?: boolean;
|
|
742
|
+
rejections?: Array<Rejection> | null;
|
|
743
|
+
};
|
|
744
|
+
export type MediaCover = {
|
|
745
|
+
url?: (string) | null;
|
|
746
|
+
coverType?: MediaCoverTypes;
|
|
747
|
+
readonly extension?: (string) | null;
|
|
748
|
+
remoteUrl?: (string) | null;
|
|
749
|
+
};
|
|
750
|
+
export type MediaCoverTypes = 'unknown' | 'poster' | 'banner' | 'fanart' | 'screenshot' | 'headshot' | 'cover' | 'disc' | 'logo' | 'clearlogo';
|
|
751
|
+
export type MediaInfoModel = {
|
|
752
|
+
audioFormat?: (string) | null;
|
|
753
|
+
audioBitrate?: number;
|
|
754
|
+
audioChannels?: number;
|
|
755
|
+
audioBits?: number;
|
|
756
|
+
audioSampleRate?: number;
|
|
757
|
+
};
|
|
758
|
+
export type MediaInfoResource = {
|
|
759
|
+
id?: number;
|
|
760
|
+
audioChannels?: number;
|
|
761
|
+
audioBitRate?: (string) | null;
|
|
762
|
+
audioCodec?: (string) | null;
|
|
763
|
+
audioBits?: (string) | null;
|
|
764
|
+
audioSampleRate?: (string) | null;
|
|
765
|
+
};
|
|
766
|
+
export type MediaManagementConfigResource = {
|
|
767
|
+
id?: number;
|
|
768
|
+
autoUnmonitorPreviouslyDownloadedBooks?: boolean;
|
|
769
|
+
recycleBin?: (string) | null;
|
|
770
|
+
recycleBinCleanupDays?: number;
|
|
771
|
+
downloadPropersAndRepacks?: ProperDownloadTypes;
|
|
772
|
+
createEmptyAuthorFolders?: boolean;
|
|
773
|
+
deleteEmptyFolders?: boolean;
|
|
774
|
+
fileDate?: FileDateType;
|
|
775
|
+
watchLibraryForChanges?: boolean;
|
|
776
|
+
rescanAfterRefresh?: RescanAfterRefreshType;
|
|
777
|
+
allowFingerprinting?: AllowFingerprinting;
|
|
778
|
+
setPermissionsLinux?: boolean;
|
|
779
|
+
chmodFolder?: (string) | null;
|
|
780
|
+
chownGroup?: (string) | null;
|
|
781
|
+
skipFreeSpaceCheckWhenImporting?: boolean;
|
|
782
|
+
minimumFreeSpaceWhenImporting?: number;
|
|
783
|
+
copyUsingHardlinks?: boolean;
|
|
784
|
+
importExtraFiles?: boolean;
|
|
785
|
+
extraFileExtensions?: (string) | null;
|
|
786
|
+
};
|
|
787
|
+
export type MetadataProfile = {
|
|
788
|
+
id?: number;
|
|
789
|
+
name?: (string) | null;
|
|
790
|
+
minPopularity?: number;
|
|
791
|
+
skipMissingDate?: boolean;
|
|
792
|
+
skipMissingIsbn?: boolean;
|
|
793
|
+
skipPartsAndSets?: boolean;
|
|
794
|
+
skipSeriesSecondary?: boolean;
|
|
795
|
+
allowedLanguages?: (string) | null;
|
|
796
|
+
minPages?: number;
|
|
797
|
+
ignored?: Array<(string)> | null;
|
|
798
|
+
};
|
|
799
|
+
export type MetadataProfileLazyLoaded = {
|
|
800
|
+
value?: MetadataProfile;
|
|
801
|
+
readonly isLoaded?: boolean;
|
|
802
|
+
};
|
|
803
|
+
export type MetadataProfileResource = {
|
|
804
|
+
id?: number;
|
|
805
|
+
name?: (string) | null;
|
|
806
|
+
minPopularity?: number;
|
|
807
|
+
skipMissingDate?: boolean;
|
|
808
|
+
skipMissingIsbn?: boolean;
|
|
809
|
+
skipPartsAndSets?: boolean;
|
|
810
|
+
skipSeriesSecondary?: boolean;
|
|
811
|
+
allowedLanguages?: (string) | null;
|
|
812
|
+
minPages?: number;
|
|
813
|
+
ignored?: Array<(string)> | null;
|
|
814
|
+
};
|
|
815
|
+
export type MetadataProviderConfigResource = {
|
|
816
|
+
id?: number;
|
|
817
|
+
writeAudioTags?: WriteAudioTagsType;
|
|
818
|
+
scrubAudioTags?: boolean;
|
|
819
|
+
writeBookTags?: WriteBookTagsType;
|
|
820
|
+
updateCovers?: boolean;
|
|
821
|
+
embedMetadata?: boolean;
|
|
822
|
+
};
|
|
823
|
+
export type MetadataResource = {
|
|
824
|
+
id?: number;
|
|
825
|
+
name?: (string) | null;
|
|
826
|
+
fields?: Array<Field> | null;
|
|
827
|
+
implementationName?: (string) | null;
|
|
828
|
+
implementation?: (string) | null;
|
|
829
|
+
configContract?: (string) | null;
|
|
830
|
+
infoLink?: (string) | null;
|
|
831
|
+
message?: ProviderMessage;
|
|
832
|
+
tags?: Array<(number)> | null;
|
|
833
|
+
presets?: Array<MetadataResource> | null;
|
|
834
|
+
enable?: boolean;
|
|
835
|
+
};
|
|
836
|
+
export type MonitoringOptions = {
|
|
837
|
+
monitor?: MonitorTypes;
|
|
838
|
+
booksToMonitor?: Array<(string)> | null;
|
|
839
|
+
monitored?: boolean;
|
|
840
|
+
};
|
|
841
|
+
export type MonitorTypes = 'all' | 'future' | 'missing' | 'existing' | 'latest' | 'first' | 'none' | 'unknown';
|
|
842
|
+
export type NamingConfigResource = {
|
|
843
|
+
id?: number;
|
|
844
|
+
renameBooks?: boolean;
|
|
845
|
+
replaceIllegalCharacters?: boolean;
|
|
846
|
+
colonReplacementFormat?: number;
|
|
847
|
+
standardBookFormat?: (string) | null;
|
|
848
|
+
authorFolderFormat?: (string) | null;
|
|
849
|
+
includeAuthorName?: boolean;
|
|
850
|
+
includeBookTitle?: boolean;
|
|
851
|
+
includeQuality?: boolean;
|
|
852
|
+
replaceSpaces?: boolean;
|
|
853
|
+
separator?: (string) | null;
|
|
854
|
+
numberStyle?: (string) | null;
|
|
855
|
+
};
|
|
856
|
+
export type NewItemMonitorTypes = 'all' | 'none' | 'new';
|
|
857
|
+
export type NotificationResource = {
|
|
858
|
+
id?: number;
|
|
859
|
+
name?: (string) | null;
|
|
860
|
+
fields?: Array<Field> | null;
|
|
861
|
+
implementationName?: (string) | null;
|
|
862
|
+
implementation?: (string) | null;
|
|
863
|
+
configContract?: (string) | null;
|
|
864
|
+
infoLink?: (string) | null;
|
|
865
|
+
message?: ProviderMessage;
|
|
866
|
+
tags?: Array<(number)> | null;
|
|
867
|
+
presets?: Array<NotificationResource> | null;
|
|
868
|
+
link?: (string) | null;
|
|
869
|
+
onGrab?: boolean;
|
|
870
|
+
onReleaseImport?: boolean;
|
|
871
|
+
onUpgrade?: boolean;
|
|
872
|
+
onRename?: boolean;
|
|
873
|
+
onAuthorAdded?: boolean;
|
|
874
|
+
onAuthorDelete?: boolean;
|
|
875
|
+
onBookDelete?: boolean;
|
|
876
|
+
onBookFileDelete?: boolean;
|
|
877
|
+
onBookFileDeleteForUpgrade?: boolean;
|
|
878
|
+
onHealthIssue?: boolean;
|
|
879
|
+
onDownloadFailure?: boolean;
|
|
880
|
+
onImportFailure?: boolean;
|
|
881
|
+
onBookRetag?: boolean;
|
|
882
|
+
onApplicationUpdate?: boolean;
|
|
883
|
+
supportsOnGrab?: boolean;
|
|
884
|
+
supportsOnReleaseImport?: boolean;
|
|
885
|
+
supportsOnUpgrade?: boolean;
|
|
886
|
+
supportsOnRename?: boolean;
|
|
887
|
+
supportsOnAuthorAdded?: boolean;
|
|
888
|
+
supportsOnAuthorDelete?: boolean;
|
|
889
|
+
supportsOnBookDelete?: boolean;
|
|
890
|
+
supportsOnBookFileDelete?: boolean;
|
|
891
|
+
supportsOnBookFileDeleteForUpgrade?: boolean;
|
|
892
|
+
supportsOnHealthIssue?: boolean;
|
|
893
|
+
includeHealthWarnings?: boolean;
|
|
894
|
+
supportsOnDownloadFailure?: boolean;
|
|
895
|
+
supportsOnImportFailure?: boolean;
|
|
896
|
+
supportsOnBookRetag?: boolean;
|
|
897
|
+
supportsOnApplicationUpdate?: boolean;
|
|
898
|
+
testCommand?: (string) | null;
|
|
899
|
+
};
|
|
900
|
+
export type ParsedBookInfo = {
|
|
901
|
+
bookTitle?: (string) | null;
|
|
902
|
+
authorName?: (string) | null;
|
|
903
|
+
authorTitleInfo?: AuthorTitleInfo;
|
|
904
|
+
quality?: QualityModel;
|
|
905
|
+
releaseDate?: (string) | null;
|
|
906
|
+
discography?: boolean;
|
|
907
|
+
discographyStart?: number;
|
|
908
|
+
discographyEnd?: number;
|
|
909
|
+
releaseGroup?: (string) | null;
|
|
910
|
+
releaseHash?: (string) | null;
|
|
911
|
+
releaseVersion?: (string) | null;
|
|
912
|
+
releaseTitle?: (string) | null;
|
|
913
|
+
};
|
|
914
|
+
export type ParsedTrackInfo = {
|
|
915
|
+
title?: (string) | null;
|
|
916
|
+
cleanTitle?: (string) | null;
|
|
917
|
+
authors?: Array<(string)> | null;
|
|
918
|
+
readonly authorTitle?: (string) | null;
|
|
919
|
+
bookTitle?: (string) | null;
|
|
920
|
+
seriesTitle?: (string) | null;
|
|
921
|
+
seriesIndex?: (string) | null;
|
|
922
|
+
isbn?: (string) | null;
|
|
923
|
+
asin?: (string) | null;
|
|
924
|
+
goodreadsId?: (string) | null;
|
|
925
|
+
authorMBId?: (string) | null;
|
|
926
|
+
bookMBId?: (string) | null;
|
|
927
|
+
releaseMBId?: (string) | null;
|
|
928
|
+
recordingMBId?: (string) | null;
|
|
929
|
+
trackMBId?: (string) | null;
|
|
930
|
+
discNumber?: number;
|
|
931
|
+
discCount?: number;
|
|
932
|
+
country?: IsoCountry;
|
|
933
|
+
year?: number;
|
|
934
|
+
publisher?: (string) | null;
|
|
935
|
+
label?: (string) | null;
|
|
936
|
+
source?: (string) | null;
|
|
937
|
+
catalogNumber?: (string) | null;
|
|
938
|
+
disambiguation?: (string) | null;
|
|
939
|
+
duration?: string;
|
|
940
|
+
quality?: QualityModel;
|
|
941
|
+
mediaInfo?: MediaInfoModel;
|
|
942
|
+
trackNumbers?: Array<(number)> | null;
|
|
943
|
+
language?: (string) | null;
|
|
944
|
+
releaseGroup?: (string) | null;
|
|
945
|
+
releaseHash?: (string) | null;
|
|
946
|
+
};
|
|
947
|
+
export type ParseResource = {
|
|
948
|
+
id?: number;
|
|
949
|
+
title?: (string) | null;
|
|
950
|
+
parsedBookInfo?: ParsedBookInfo;
|
|
951
|
+
author?: AuthorResource;
|
|
952
|
+
books?: Array<BookResource> | null;
|
|
953
|
+
};
|
|
954
|
+
export type PingResource = {
|
|
955
|
+
status?: (string) | null;
|
|
956
|
+
};
|
|
957
|
+
export type ProfileFormatItem = {
|
|
958
|
+
format?: CustomFormat;
|
|
959
|
+
score?: number;
|
|
960
|
+
};
|
|
961
|
+
export type ProfileFormatItemResource = {
|
|
962
|
+
id?: number;
|
|
963
|
+
format?: number;
|
|
964
|
+
name?: (string) | null;
|
|
965
|
+
score?: number;
|
|
966
|
+
};
|
|
967
|
+
export type ProperDownloadTypes = 'preferAndUpgrade' | 'doNotUpgrade' | 'doNotPrefer';
|
|
968
|
+
export type ProviderMessage = {
|
|
969
|
+
message?: (string) | null;
|
|
970
|
+
type?: ProviderMessageType;
|
|
971
|
+
};
|
|
972
|
+
export type ProviderMessageType = 'info' | 'warning' | 'error';
|
|
973
|
+
export type ProxyType = 'http' | 'socks4' | 'socks5';
|
|
974
|
+
export type Quality = {
|
|
975
|
+
id?: number;
|
|
976
|
+
name?: (string) | null;
|
|
977
|
+
};
|
|
978
|
+
export type QualityDefinitionResource = {
|
|
979
|
+
id?: number;
|
|
980
|
+
quality?: Quality;
|
|
981
|
+
title?: (string) | null;
|
|
982
|
+
weight?: number;
|
|
983
|
+
minSize?: (number) | null;
|
|
984
|
+
maxSize?: (number) | null;
|
|
985
|
+
};
|
|
986
|
+
export type QualityModel = {
|
|
987
|
+
quality?: Quality;
|
|
988
|
+
revision?: Revision;
|
|
989
|
+
};
|
|
990
|
+
export type QualityProfile = {
|
|
991
|
+
id?: number;
|
|
992
|
+
name?: (string) | null;
|
|
993
|
+
upgradeAllowed?: boolean;
|
|
994
|
+
cutoff?: number;
|
|
995
|
+
minFormatScore?: number;
|
|
996
|
+
cutoffFormatScore?: number;
|
|
997
|
+
formatItems?: Array<ProfileFormatItem> | null;
|
|
998
|
+
items?: Array<QualityProfileQualityItem> | null;
|
|
999
|
+
};
|
|
1000
|
+
export type QualityProfileLazyLoaded = {
|
|
1001
|
+
value?: QualityProfile;
|
|
1002
|
+
readonly isLoaded?: boolean;
|
|
1003
|
+
};
|
|
1004
|
+
export type QualityProfileQualityItem = {
|
|
1005
|
+
id?: number;
|
|
1006
|
+
name?: (string) | null;
|
|
1007
|
+
quality?: Quality;
|
|
1008
|
+
items?: Array<QualityProfileQualityItem> | null;
|
|
1009
|
+
allowed?: boolean;
|
|
1010
|
+
};
|
|
1011
|
+
export type QualityProfileQualityItemResource = {
|
|
1012
|
+
id?: number;
|
|
1013
|
+
name?: (string) | null;
|
|
1014
|
+
quality?: Quality;
|
|
1015
|
+
items?: Array<QualityProfileQualityItemResource> | null;
|
|
1016
|
+
allowed?: boolean;
|
|
1017
|
+
};
|
|
1018
|
+
export type QualityProfileResource = {
|
|
1019
|
+
id?: number;
|
|
1020
|
+
name?: (string) | null;
|
|
1021
|
+
upgradeAllowed?: boolean;
|
|
1022
|
+
cutoff?: number;
|
|
1023
|
+
items?: Array<QualityProfileQualityItemResource> | null;
|
|
1024
|
+
minFormatScore?: number;
|
|
1025
|
+
cutoffFormatScore?: number;
|
|
1026
|
+
formatItems?: Array<ProfileFormatItemResource> | null;
|
|
1027
|
+
};
|
|
1028
|
+
export type QueueBulkResource = {
|
|
1029
|
+
ids?: Array<(number)> | null;
|
|
1030
|
+
};
|
|
1031
|
+
export type QueueResource = {
|
|
1032
|
+
id?: number;
|
|
1033
|
+
authorId?: (number) | null;
|
|
1034
|
+
bookId?: (number) | null;
|
|
1035
|
+
author?: AuthorResource;
|
|
1036
|
+
book?: BookResource;
|
|
1037
|
+
quality?: QualityModel;
|
|
1038
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
1039
|
+
customFormatScore?: number;
|
|
1040
|
+
size?: number;
|
|
1041
|
+
title?: (string) | null;
|
|
1042
|
+
sizeleft?: number;
|
|
1043
|
+
timeleft?: (string) | null;
|
|
1044
|
+
estimatedCompletionTime?: (string) | null;
|
|
1045
|
+
status?: (string) | null;
|
|
1046
|
+
trackedDownloadStatus?: TrackedDownloadStatus;
|
|
1047
|
+
trackedDownloadState?: TrackedDownloadState;
|
|
1048
|
+
statusMessages?: Array<TrackedDownloadStatusMessage> | null;
|
|
1049
|
+
errorMessage?: (string) | null;
|
|
1050
|
+
downloadId?: (string) | null;
|
|
1051
|
+
protocol?: DownloadProtocol;
|
|
1052
|
+
downloadClient?: (string) | null;
|
|
1053
|
+
downloadClientHasPostImportCategory?: boolean;
|
|
1054
|
+
indexer?: (string) | null;
|
|
1055
|
+
outputPath?: (string) | null;
|
|
1056
|
+
downloadForced?: boolean;
|
|
1057
|
+
};
|
|
1058
|
+
export type QueueResourcePagingResource = {
|
|
1059
|
+
page?: number;
|
|
1060
|
+
pageSize?: number;
|
|
1061
|
+
sortKey?: (string) | null;
|
|
1062
|
+
sortDirection?: SortDirection;
|
|
1063
|
+
totalRecords?: number;
|
|
1064
|
+
records?: Array<QueueResource> | null;
|
|
1065
|
+
};
|
|
1066
|
+
export type QueueStatusResource = {
|
|
1067
|
+
id?: number;
|
|
1068
|
+
totalCount?: number;
|
|
1069
|
+
count?: number;
|
|
1070
|
+
unknownCount?: number;
|
|
1071
|
+
errors?: boolean;
|
|
1072
|
+
warnings?: boolean;
|
|
1073
|
+
unknownErrors?: boolean;
|
|
1074
|
+
unknownWarnings?: boolean;
|
|
1075
|
+
};
|
|
1076
|
+
export type Ratings = {
|
|
1077
|
+
votes?: number;
|
|
1078
|
+
value?: number;
|
|
1079
|
+
readonly popularity?: number;
|
|
1080
|
+
};
|
|
1081
|
+
export type Rejection = {
|
|
1082
|
+
reason?: (string) | null;
|
|
1083
|
+
type?: RejectionType;
|
|
1084
|
+
};
|
|
1085
|
+
export type RejectionType = 'permanent' | 'temporary';
|
|
1086
|
+
export type ReleaseProfileResource = {
|
|
1087
|
+
id?: number;
|
|
1088
|
+
enabled?: boolean;
|
|
1089
|
+
required?: Array<(string)> | null;
|
|
1090
|
+
ignored?: Array<(string)> | null;
|
|
1091
|
+
indexerId?: number;
|
|
1092
|
+
tags?: Array<(number)> | null;
|
|
1093
|
+
};
|
|
1094
|
+
export type ReleaseResource = {
|
|
1095
|
+
id?: number;
|
|
1096
|
+
guid?: (string) | null;
|
|
1097
|
+
quality?: QualityModel;
|
|
1098
|
+
qualityWeight?: number;
|
|
1099
|
+
age?: number;
|
|
1100
|
+
ageHours?: number;
|
|
1101
|
+
ageMinutes?: number;
|
|
1102
|
+
size?: number;
|
|
1103
|
+
indexerId?: number;
|
|
1104
|
+
indexer?: (string) | null;
|
|
1105
|
+
releaseGroup?: (string) | null;
|
|
1106
|
+
subGroup?: (string) | null;
|
|
1107
|
+
releaseHash?: (string) | null;
|
|
1108
|
+
title?: (string) | null;
|
|
1109
|
+
discography?: boolean;
|
|
1110
|
+
sceneSource?: boolean;
|
|
1111
|
+
airDate?: (string) | null;
|
|
1112
|
+
authorName?: (string) | null;
|
|
1113
|
+
bookTitle?: (string) | null;
|
|
1114
|
+
approved?: boolean;
|
|
1115
|
+
temporarilyRejected?: boolean;
|
|
1116
|
+
rejected?: boolean;
|
|
1117
|
+
rejections?: Array<(string)> | null;
|
|
1118
|
+
publishDate?: string;
|
|
1119
|
+
commentUrl?: (string) | null;
|
|
1120
|
+
downloadUrl?: (string) | null;
|
|
1121
|
+
infoUrl?: (string) | null;
|
|
1122
|
+
downloadAllowed?: boolean;
|
|
1123
|
+
releaseWeight?: number;
|
|
1124
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
1125
|
+
customFormatScore?: number;
|
|
1126
|
+
magnetUrl?: (string) | null;
|
|
1127
|
+
infoHash?: (string) | null;
|
|
1128
|
+
seeders?: (number) | null;
|
|
1129
|
+
leechers?: (number) | null;
|
|
1130
|
+
protocol?: DownloadProtocol;
|
|
1131
|
+
indexerFlags?: number;
|
|
1132
|
+
authorId?: (number) | null;
|
|
1133
|
+
bookId?: (number) | null;
|
|
1134
|
+
downloadClientId?: (number) | null;
|
|
1135
|
+
downloadClient?: (string) | null;
|
|
1136
|
+
};
|
|
1137
|
+
export type RemotePathMappingResource = {
|
|
1138
|
+
id?: number;
|
|
1139
|
+
host?: (string) | null;
|
|
1140
|
+
remotePath?: (string) | null;
|
|
1141
|
+
localPath?: (string) | null;
|
|
1142
|
+
};
|
|
1143
|
+
export type RenameBookResource = {
|
|
1144
|
+
id?: number;
|
|
1145
|
+
authorId?: number;
|
|
1146
|
+
bookId?: number;
|
|
1147
|
+
bookFileId?: number;
|
|
1148
|
+
existingPath?: (string) | null;
|
|
1149
|
+
newPath?: (string) | null;
|
|
1150
|
+
};
|
|
1151
|
+
export type RescanAfterRefreshType = 'always' | 'afterManual' | 'never';
|
|
1152
|
+
export type RetagBookResource = {
|
|
1153
|
+
id?: number;
|
|
1154
|
+
authorId?: number;
|
|
1155
|
+
bookId?: number;
|
|
1156
|
+
trackNumbers?: Array<(number)> | null;
|
|
1157
|
+
bookFileId?: number;
|
|
1158
|
+
path?: (string) | null;
|
|
1159
|
+
changes?: Array<TagDifference> | null;
|
|
1160
|
+
};
|
|
1161
|
+
export type Revision = {
|
|
1162
|
+
version?: number;
|
|
1163
|
+
real?: number;
|
|
1164
|
+
isRepack?: boolean;
|
|
1165
|
+
};
|
|
1166
|
+
export type RootFolderResource = {
|
|
1167
|
+
id?: number;
|
|
1168
|
+
name?: (string) | null;
|
|
1169
|
+
path?: (string) | null;
|
|
1170
|
+
defaultMetadataProfileId?: number;
|
|
1171
|
+
defaultQualityProfileId?: number;
|
|
1172
|
+
defaultMonitorOption?: MonitorTypes;
|
|
1173
|
+
defaultNewItemMonitorOption?: NewItemMonitorTypes;
|
|
1174
|
+
defaultTags?: Array<(number)> | null;
|
|
1175
|
+
isCalibreLibrary?: boolean;
|
|
1176
|
+
host?: (string) | null;
|
|
1177
|
+
port?: number;
|
|
1178
|
+
urlBase?: (string) | null;
|
|
1179
|
+
username?: (string) | null;
|
|
1180
|
+
password?: (string) | null;
|
|
1181
|
+
library?: (string) | null;
|
|
1182
|
+
outputFormat?: (string) | null;
|
|
1183
|
+
outputProfile?: (string) | null;
|
|
1184
|
+
useSsl?: boolean;
|
|
1185
|
+
accessible?: boolean;
|
|
1186
|
+
freeSpace?: (number) | null;
|
|
1187
|
+
totalSpace?: (number) | null;
|
|
1188
|
+
};
|
|
1189
|
+
export type RuntimeMode = 'console' | 'service' | 'tray';
|
|
1190
|
+
export type SelectOption = {
|
|
1191
|
+
value?: number;
|
|
1192
|
+
name?: (string) | null;
|
|
1193
|
+
order?: number;
|
|
1194
|
+
hint?: (string) | null;
|
|
1195
|
+
};
|
|
1196
|
+
export type Series = {
|
|
1197
|
+
id?: number;
|
|
1198
|
+
foreignSeriesId?: (string) | null;
|
|
1199
|
+
title?: (string) | null;
|
|
1200
|
+
description?: (string) | null;
|
|
1201
|
+
numbered?: boolean;
|
|
1202
|
+
workCount?: number;
|
|
1203
|
+
primaryWorkCount?: number;
|
|
1204
|
+
linkItems?: SeriesBookLinkListLazyLoaded;
|
|
1205
|
+
books?: BookListLazyLoaded;
|
|
1206
|
+
foreignAuthorId?: (string) | null;
|
|
1207
|
+
};
|
|
1208
|
+
export type SeriesBookLink = {
|
|
1209
|
+
id?: number;
|
|
1210
|
+
position?: (string) | null;
|
|
1211
|
+
seriesPosition?: number;
|
|
1212
|
+
seriesId?: number;
|
|
1213
|
+
bookId?: number;
|
|
1214
|
+
isPrimary?: boolean;
|
|
1215
|
+
series?: SeriesLazyLoaded;
|
|
1216
|
+
book?: BookLazyLoaded;
|
|
1217
|
+
};
|
|
1218
|
+
export type SeriesBookLinkListLazyLoaded = {
|
|
1219
|
+
readonly value?: Array<SeriesBookLink> | null;
|
|
1220
|
+
readonly isLoaded?: boolean;
|
|
1221
|
+
};
|
|
1222
|
+
export type SeriesBookLinkResource = {
|
|
1223
|
+
id?: number;
|
|
1224
|
+
position?: (string) | null;
|
|
1225
|
+
seriesPosition?: number;
|
|
1226
|
+
seriesId?: number;
|
|
1227
|
+
bookId?: number;
|
|
1228
|
+
};
|
|
1229
|
+
export type SeriesLazyLoaded = {
|
|
1230
|
+
value?: Series;
|
|
1231
|
+
readonly isLoaded?: boolean;
|
|
1232
|
+
};
|
|
1233
|
+
export type SeriesListLazyLoaded = {
|
|
1234
|
+
readonly value?: Array<Series> | null;
|
|
1235
|
+
readonly isLoaded?: boolean;
|
|
1236
|
+
};
|
|
1237
|
+
export type SeriesResource = {
|
|
1238
|
+
id?: number;
|
|
1239
|
+
title?: (string) | null;
|
|
1240
|
+
description?: (string) | null;
|
|
1241
|
+
links?: Array<SeriesBookLinkResource> | null;
|
|
1242
|
+
};
|
|
1243
|
+
export type SortDirection = 'default' | 'ascending' | 'descending';
|
|
1244
|
+
export type SystemResource = {
|
|
1245
|
+
appName?: (string) | null;
|
|
1246
|
+
instanceName?: (string) | null;
|
|
1247
|
+
version?: (string) | null;
|
|
1248
|
+
buildTime?: string;
|
|
1249
|
+
isDebug?: boolean;
|
|
1250
|
+
isProduction?: boolean;
|
|
1251
|
+
isAdmin?: boolean;
|
|
1252
|
+
isUserInteractive?: boolean;
|
|
1253
|
+
startupPath?: (string) | null;
|
|
1254
|
+
appData?: (string) | null;
|
|
1255
|
+
osName?: (string) | null;
|
|
1256
|
+
osVersion?: (string) | null;
|
|
1257
|
+
isNetCore?: boolean;
|
|
1258
|
+
isLinux?: boolean;
|
|
1259
|
+
isOsx?: boolean;
|
|
1260
|
+
isWindows?: boolean;
|
|
1261
|
+
isDocker?: boolean;
|
|
1262
|
+
mode?: RuntimeMode;
|
|
1263
|
+
branch?: (string) | null;
|
|
1264
|
+
databaseType?: DatabaseType;
|
|
1265
|
+
databaseVersion?: (string) | null;
|
|
1266
|
+
authentication?: AuthenticationType;
|
|
1267
|
+
migrationVersion?: number;
|
|
1268
|
+
urlBase?: (string) | null;
|
|
1269
|
+
runtimeVersion?: (string) | null;
|
|
1270
|
+
runtimeName?: (string) | null;
|
|
1271
|
+
startTime?: string;
|
|
1272
|
+
packageVersion?: (string) | null;
|
|
1273
|
+
packageAuthor?: (string) | null;
|
|
1274
|
+
packageUpdateMechanism?: UpdateMechanism;
|
|
1275
|
+
packageUpdateMechanismMessage?: (string) | null;
|
|
1276
|
+
};
|
|
1277
|
+
export type TagDetailsResource = {
|
|
1278
|
+
id?: number;
|
|
1279
|
+
label?: (string) | null;
|
|
1280
|
+
delayProfileIds?: Array<(number)> | null;
|
|
1281
|
+
importListIds?: Array<(number)> | null;
|
|
1282
|
+
notificationIds?: Array<(number)> | null;
|
|
1283
|
+
restrictionIds?: Array<(number)> | null;
|
|
1284
|
+
indexerIds?: Array<(number)> | null;
|
|
1285
|
+
downloadClientIds?: Array<(number)> | null;
|
|
1286
|
+
authorIds?: Array<(number)> | null;
|
|
1287
|
+
};
|
|
1288
|
+
export type TagDifference = {
|
|
1289
|
+
field?: (string) | null;
|
|
1290
|
+
oldValue?: (string) | null;
|
|
1291
|
+
newValue?: (string) | null;
|
|
1292
|
+
};
|
|
1293
|
+
export type TagResource = {
|
|
1294
|
+
id?: number;
|
|
1295
|
+
label?: (string) | null;
|
|
1296
|
+
};
|
|
1297
|
+
export type TaskResource = {
|
|
1298
|
+
id?: number;
|
|
1299
|
+
name?: (string) | null;
|
|
1300
|
+
taskName?: (string) | null;
|
|
1301
|
+
interval?: number;
|
|
1302
|
+
lastExecution?: string;
|
|
1303
|
+
lastStartTime?: string;
|
|
1304
|
+
nextExecution?: string;
|
|
1305
|
+
readonly lastDuration?: string;
|
|
1306
|
+
};
|
|
1307
|
+
export type TrackedDownloadState = 'downloading' | 'downloadFailed' | 'downloadFailedPending' | 'importPending' | 'importing' | 'importFailed' | 'imported' | 'ignored';
|
|
1308
|
+
export type TrackedDownloadStatus = 'ok' | 'warning' | 'error';
|
|
1309
|
+
export type TrackedDownloadStatusMessage = {
|
|
1310
|
+
title?: (string) | null;
|
|
1311
|
+
messages?: Array<(string)> | null;
|
|
1312
|
+
};
|
|
1313
|
+
export type UiConfigResource = {
|
|
1314
|
+
id?: number;
|
|
1315
|
+
firstDayOfWeek?: number;
|
|
1316
|
+
calendarWeekColumnHeader?: (string) | null;
|
|
1317
|
+
shortDateFormat?: (string) | null;
|
|
1318
|
+
longDateFormat?: (string) | null;
|
|
1319
|
+
timeFormat?: (string) | null;
|
|
1320
|
+
showRelativeDates?: boolean;
|
|
1321
|
+
enableColorImpairedMode?: boolean;
|
|
1322
|
+
uiLanguage?: number;
|
|
1323
|
+
theme?: (string) | null;
|
|
1324
|
+
};
|
|
1325
|
+
export type UpdateChanges = {
|
|
1326
|
+
new?: Array<(string)> | null;
|
|
1327
|
+
fixed?: Array<(string)> | null;
|
|
1328
|
+
};
|
|
1329
|
+
export type UpdateMechanism = 'builtIn' | 'script' | 'external' | 'apt' | 'docker';
|
|
1330
|
+
export type UpdateResource = {
|
|
1331
|
+
id?: number;
|
|
1332
|
+
version?: (string) | null;
|
|
1333
|
+
branch?: (string) | null;
|
|
1334
|
+
releaseDate?: string;
|
|
1335
|
+
fileName?: (string) | null;
|
|
1336
|
+
url?: (string) | null;
|
|
1337
|
+
installed?: boolean;
|
|
1338
|
+
installedOn?: (string) | null;
|
|
1339
|
+
installable?: boolean;
|
|
1340
|
+
latest?: boolean;
|
|
1341
|
+
changes?: UpdateChanges;
|
|
1342
|
+
hash?: (string) | null;
|
|
1343
|
+
};
|
|
1344
|
+
export type WriteAudioTagsType = 'no' | 'newFiles' | 'allFiles' | 'sync';
|
|
1345
|
+
export type WriteBookTagsType = 'newFiles' | 'allFiles' | 'sync';
|
|
1346
|
+
export type GetApiResponse = (ApiInfoResource);
|
|
1347
|
+
export type GetApiError = unknown;
|
|
1348
|
+
export type PostLoginData = {
|
|
1349
|
+
body?: {
|
|
1350
|
+
username?: string;
|
|
1351
|
+
password?: string;
|
|
1352
|
+
rememberMe?: string;
|
|
1353
|
+
};
|
|
1354
|
+
query?: {
|
|
1355
|
+
returnUrl?: string;
|
|
1356
|
+
};
|
|
1357
|
+
};
|
|
1358
|
+
export type PostLoginResponse = (unknown);
|
|
1359
|
+
export type PostLoginError = unknown;
|
|
1360
|
+
export type GetLoginResponse = (unknown);
|
|
1361
|
+
export type GetLoginError = unknown;
|
|
1362
|
+
export type GetLogoutResponse = (unknown);
|
|
1363
|
+
export type GetLogoutError = unknown;
|
|
1364
|
+
export type GetApiV1AuthorResponse = (Array<AuthorResource>);
|
|
1365
|
+
export type GetApiV1AuthorError = unknown;
|
|
1366
|
+
export type PostApiV1AuthorData = {
|
|
1367
|
+
body?: AuthorResource;
|
|
1368
|
+
};
|
|
1369
|
+
export type PostApiV1AuthorResponse = (AuthorResource);
|
|
1370
|
+
export type PostApiV1AuthorError = unknown;
|
|
1371
|
+
export type PutApiV1AuthorByIdData = {
|
|
1372
|
+
body?: AuthorResource;
|
|
1373
|
+
path: {
|
|
1374
|
+
id: string;
|
|
1375
|
+
};
|
|
1376
|
+
query?: {
|
|
1377
|
+
moveFiles?: boolean;
|
|
1378
|
+
};
|
|
1379
|
+
};
|
|
1380
|
+
export type PutApiV1AuthorByIdResponse = (AuthorResource);
|
|
1381
|
+
export type PutApiV1AuthorByIdError = unknown;
|
|
1382
|
+
export type DeleteApiV1AuthorByIdData = {
|
|
1383
|
+
path: {
|
|
1384
|
+
id: number;
|
|
1385
|
+
};
|
|
1386
|
+
query?: {
|
|
1387
|
+
addImportListExclusion?: boolean;
|
|
1388
|
+
deleteFiles?: boolean;
|
|
1389
|
+
};
|
|
1390
|
+
};
|
|
1391
|
+
export type DeleteApiV1AuthorByIdResponse = (unknown);
|
|
1392
|
+
export type DeleteApiV1AuthorByIdError = unknown;
|
|
1393
|
+
export type GetApiV1AuthorByIdData = {
|
|
1394
|
+
path: {
|
|
1395
|
+
id: number;
|
|
1396
|
+
};
|
|
1397
|
+
};
|
|
1398
|
+
export type GetApiV1AuthorByIdResponse = (AuthorResource);
|
|
1399
|
+
export type GetApiV1AuthorByIdError = unknown;
|
|
1400
|
+
export type PutApiV1AuthorEditorData = {
|
|
1401
|
+
body?: AuthorEditorResource;
|
|
1402
|
+
};
|
|
1403
|
+
export type PutApiV1AuthorEditorResponse = (unknown);
|
|
1404
|
+
export type PutApiV1AuthorEditorError = unknown;
|
|
1405
|
+
export type DeleteApiV1AuthorEditorData = {
|
|
1406
|
+
body?: AuthorEditorResource;
|
|
1407
|
+
};
|
|
1408
|
+
export type DeleteApiV1AuthorEditorResponse = (unknown);
|
|
1409
|
+
export type DeleteApiV1AuthorEditorError = unknown;
|
|
1410
|
+
export type GetApiV1AuthorLookupData = {
|
|
1411
|
+
query?: {
|
|
1412
|
+
term?: string;
|
|
1413
|
+
};
|
|
1414
|
+
};
|
|
1415
|
+
export type GetApiV1AuthorLookupResponse = (unknown);
|
|
1416
|
+
export type GetApiV1AuthorLookupError = unknown;
|
|
1417
|
+
export type GetApiV1SystemBackupResponse = (Array<BackupResource>);
|
|
1418
|
+
export type GetApiV1SystemBackupError = unknown;
|
|
1419
|
+
export type DeleteApiV1SystemBackupByIdData = {
|
|
1420
|
+
path: {
|
|
1421
|
+
id: number;
|
|
1422
|
+
};
|
|
1423
|
+
};
|
|
1424
|
+
export type DeleteApiV1SystemBackupByIdResponse = (unknown);
|
|
1425
|
+
export type DeleteApiV1SystemBackupByIdError = unknown;
|
|
1426
|
+
export type PostApiV1SystemBackupRestoreByIdData = {
|
|
1427
|
+
path: {
|
|
1428
|
+
id: number;
|
|
1429
|
+
};
|
|
1430
|
+
};
|
|
1431
|
+
export type PostApiV1SystemBackupRestoreByIdResponse = (unknown);
|
|
1432
|
+
export type PostApiV1SystemBackupRestoreByIdError = unknown;
|
|
1433
|
+
export type PostApiV1SystemBackupRestoreUploadResponse = (unknown);
|
|
1434
|
+
export type PostApiV1SystemBackupRestoreUploadError = unknown;
|
|
1435
|
+
export type GetApiV1BlocklistData = {
|
|
1436
|
+
query?: {
|
|
1437
|
+
page?: number;
|
|
1438
|
+
pageSize?: number;
|
|
1439
|
+
sortDirection?: SortDirection;
|
|
1440
|
+
sortKey?: string;
|
|
1441
|
+
};
|
|
1442
|
+
};
|
|
1443
|
+
export type GetApiV1BlocklistResponse = (BlocklistResourcePagingResource);
|
|
1444
|
+
export type GetApiV1BlocklistError = unknown;
|
|
1445
|
+
export type DeleteApiV1BlocklistByIdData = {
|
|
1446
|
+
path: {
|
|
1447
|
+
id: number;
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
export type DeleteApiV1BlocklistByIdResponse = (unknown);
|
|
1451
|
+
export type DeleteApiV1BlocklistByIdError = unknown;
|
|
1452
|
+
export type DeleteApiV1BlocklistBulkData = {
|
|
1453
|
+
body?: BlocklistBulkResource;
|
|
1454
|
+
};
|
|
1455
|
+
export type DeleteApiV1BlocklistBulkResponse = (unknown);
|
|
1456
|
+
export type DeleteApiV1BlocklistBulkError = unknown;
|
|
1457
|
+
export type GetApiV1BookData = {
|
|
1458
|
+
query?: {
|
|
1459
|
+
authorId?: number;
|
|
1460
|
+
bookIds?: Array<(number)>;
|
|
1461
|
+
includeAllAuthorBooks?: boolean;
|
|
1462
|
+
titleSlug?: string;
|
|
1463
|
+
};
|
|
1464
|
+
};
|
|
1465
|
+
export type GetApiV1BookResponse = (Array<BookResource>);
|
|
1466
|
+
export type GetApiV1BookError = unknown;
|
|
1467
|
+
export type PostApiV1BookData = {
|
|
1468
|
+
body?: BookResource;
|
|
1469
|
+
};
|
|
1470
|
+
export type PostApiV1BookResponse = (BookResource);
|
|
1471
|
+
export type PostApiV1BookError = unknown;
|
|
1472
|
+
export type GetApiV1BookByIdOverviewData = {
|
|
1473
|
+
path: {
|
|
1474
|
+
id: number;
|
|
1475
|
+
};
|
|
1476
|
+
};
|
|
1477
|
+
export type GetApiV1BookByIdOverviewResponse = (unknown);
|
|
1478
|
+
export type GetApiV1BookByIdOverviewError = unknown;
|
|
1479
|
+
export type PutApiV1BookByIdData = {
|
|
1480
|
+
body?: BookResource;
|
|
1481
|
+
path: {
|
|
1482
|
+
id: string;
|
|
1483
|
+
};
|
|
1484
|
+
};
|
|
1485
|
+
export type PutApiV1BookByIdResponse = (BookResource);
|
|
1486
|
+
export type PutApiV1BookByIdError = unknown;
|
|
1487
|
+
export type DeleteApiV1BookByIdData = {
|
|
1488
|
+
path: {
|
|
1489
|
+
id: number;
|
|
1490
|
+
};
|
|
1491
|
+
query?: {
|
|
1492
|
+
addImportListExclusion?: boolean;
|
|
1493
|
+
deleteFiles?: boolean;
|
|
1494
|
+
};
|
|
1495
|
+
};
|
|
1496
|
+
export type DeleteApiV1BookByIdResponse = (unknown);
|
|
1497
|
+
export type DeleteApiV1BookByIdError = unknown;
|
|
1498
|
+
export type GetApiV1BookByIdData = {
|
|
1499
|
+
path: {
|
|
1500
|
+
id: number;
|
|
1501
|
+
};
|
|
1502
|
+
};
|
|
1503
|
+
export type GetApiV1BookByIdResponse = (BookResource);
|
|
1504
|
+
export type GetApiV1BookByIdError = unknown;
|
|
1505
|
+
export type PutApiV1BookMonitorData = {
|
|
1506
|
+
body?: BooksMonitoredResource;
|
|
1507
|
+
};
|
|
1508
|
+
export type PutApiV1BookMonitorResponse = (unknown);
|
|
1509
|
+
export type PutApiV1BookMonitorError = unknown;
|
|
1510
|
+
export type PutApiV1BookEditorData = {
|
|
1511
|
+
body?: BookEditorResource;
|
|
1512
|
+
};
|
|
1513
|
+
export type PutApiV1BookEditorResponse = (unknown);
|
|
1514
|
+
export type PutApiV1BookEditorError = unknown;
|
|
1515
|
+
export type DeleteApiV1BookEditorData = {
|
|
1516
|
+
body?: BookEditorResource;
|
|
1517
|
+
};
|
|
1518
|
+
export type DeleteApiV1BookEditorResponse = (unknown);
|
|
1519
|
+
export type DeleteApiV1BookEditorError = unknown;
|
|
1520
|
+
export type GetApiV1BookfileData = {
|
|
1521
|
+
query?: {
|
|
1522
|
+
authorId?: number;
|
|
1523
|
+
bookFileIds?: Array<(number)>;
|
|
1524
|
+
bookId?: Array<(number)>;
|
|
1525
|
+
unmapped?: boolean;
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
export type GetApiV1BookfileResponse = (Array<BookFileResource>);
|
|
1529
|
+
export type GetApiV1BookfileError = unknown;
|
|
1530
|
+
export type PutApiV1BookfileByIdData = {
|
|
1531
|
+
body?: BookFileResource;
|
|
1532
|
+
path: {
|
|
1533
|
+
id: string;
|
|
1534
|
+
};
|
|
1535
|
+
};
|
|
1536
|
+
export type PutApiV1BookfileByIdResponse = (BookFileResource);
|
|
1537
|
+
export type PutApiV1BookfileByIdError = unknown;
|
|
1538
|
+
export type DeleteApiV1BookfileByIdData = {
|
|
1539
|
+
path: {
|
|
1540
|
+
id: number;
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1543
|
+
export type DeleteApiV1BookfileByIdResponse = (unknown);
|
|
1544
|
+
export type DeleteApiV1BookfileByIdError = unknown;
|
|
1545
|
+
export type GetApiV1BookfileByIdData = {
|
|
1546
|
+
path: {
|
|
1547
|
+
id: number;
|
|
1548
|
+
};
|
|
1549
|
+
};
|
|
1550
|
+
export type GetApiV1BookfileByIdResponse = (BookFileResource);
|
|
1551
|
+
export type GetApiV1BookfileByIdError = unknown;
|
|
1552
|
+
export type PutApiV1BookfileEditorData = {
|
|
1553
|
+
body?: BookFileListResource;
|
|
1554
|
+
};
|
|
1555
|
+
export type PutApiV1BookfileEditorResponse = (unknown);
|
|
1556
|
+
export type PutApiV1BookfileEditorError = unknown;
|
|
1557
|
+
export type DeleteApiV1BookfileBulkData = {
|
|
1558
|
+
body?: BookFileListResource;
|
|
1559
|
+
};
|
|
1560
|
+
export type DeleteApiV1BookfileBulkResponse = (unknown);
|
|
1561
|
+
export type DeleteApiV1BookfileBulkError = unknown;
|
|
1562
|
+
export type GetApiV1BookLookupData = {
|
|
1563
|
+
query?: {
|
|
1564
|
+
term?: string;
|
|
1565
|
+
};
|
|
1566
|
+
};
|
|
1567
|
+
export type GetApiV1BookLookupResponse = (unknown);
|
|
1568
|
+
export type GetApiV1BookLookupError = unknown;
|
|
1569
|
+
export type PostApiV1BookshelfData = {
|
|
1570
|
+
body?: BookshelfResource;
|
|
1571
|
+
};
|
|
1572
|
+
export type PostApiV1BookshelfResponse = (unknown);
|
|
1573
|
+
export type PostApiV1BookshelfError = unknown;
|
|
1574
|
+
export type GetApiV1CalendarData = {
|
|
1575
|
+
query?: {
|
|
1576
|
+
end?: string;
|
|
1577
|
+
includeAuthor?: boolean;
|
|
1578
|
+
start?: string;
|
|
1579
|
+
unmonitored?: boolean;
|
|
1580
|
+
};
|
|
1581
|
+
};
|
|
1582
|
+
export type GetApiV1CalendarResponse = (Array<BookResource>);
|
|
1583
|
+
export type GetApiV1CalendarError = unknown;
|
|
1584
|
+
export type GetApiV1CalendarByIdData = {
|
|
1585
|
+
path: {
|
|
1586
|
+
id: number;
|
|
1587
|
+
};
|
|
1588
|
+
};
|
|
1589
|
+
export type GetApiV1CalendarByIdResponse = (BookResource);
|
|
1590
|
+
export type GetApiV1CalendarByIdError = unknown;
|
|
1591
|
+
export type GetFeedV1CalendarReadarrIcsData = {
|
|
1592
|
+
query?: {
|
|
1593
|
+
futureDays?: number;
|
|
1594
|
+
pastDays?: number;
|
|
1595
|
+
tagList?: string;
|
|
1596
|
+
unmonitored?: boolean;
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1599
|
+
export type GetFeedV1CalendarReadarrIcsResponse = (unknown);
|
|
1600
|
+
export type GetFeedV1CalendarReadarrIcsError = unknown;
|
|
1601
|
+
export type PostApiV1CommandData = {
|
|
1602
|
+
body?: CommandResource;
|
|
1603
|
+
};
|
|
1604
|
+
export type PostApiV1CommandResponse = (CommandResource);
|
|
1605
|
+
export type PostApiV1CommandError = unknown;
|
|
1606
|
+
export type GetApiV1CommandResponse = (Array<CommandResource>);
|
|
1607
|
+
export type GetApiV1CommandError = unknown;
|
|
1608
|
+
export type DeleteApiV1CommandByIdData = {
|
|
1609
|
+
path: {
|
|
1610
|
+
id: number;
|
|
1611
|
+
};
|
|
1612
|
+
};
|
|
1613
|
+
export type DeleteApiV1CommandByIdResponse = (unknown);
|
|
1614
|
+
export type DeleteApiV1CommandByIdError = unknown;
|
|
1615
|
+
export type GetApiV1CommandByIdData = {
|
|
1616
|
+
path: {
|
|
1617
|
+
id: number;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
export type GetApiV1CommandByIdResponse = (CommandResource);
|
|
1621
|
+
export type GetApiV1CommandByIdError = unknown;
|
|
1622
|
+
export type GetApiV1CustomfilterResponse = (Array<CustomFilterResource>);
|
|
1623
|
+
export type GetApiV1CustomfilterError = unknown;
|
|
1624
|
+
export type PostApiV1CustomfilterData = {
|
|
1625
|
+
body?: CustomFilterResource;
|
|
1626
|
+
};
|
|
1627
|
+
export type PostApiV1CustomfilterResponse = (CustomFilterResource);
|
|
1628
|
+
export type PostApiV1CustomfilterError = unknown;
|
|
1629
|
+
export type PutApiV1CustomfilterByIdData = {
|
|
1630
|
+
body?: CustomFilterResource;
|
|
1631
|
+
path: {
|
|
1632
|
+
id: string;
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
export type PutApiV1CustomfilterByIdResponse = (CustomFilterResource);
|
|
1636
|
+
export type PutApiV1CustomfilterByIdError = unknown;
|
|
1637
|
+
export type DeleteApiV1CustomfilterByIdData = {
|
|
1638
|
+
path: {
|
|
1639
|
+
id: number;
|
|
1640
|
+
};
|
|
1641
|
+
};
|
|
1642
|
+
export type DeleteApiV1CustomfilterByIdResponse = (unknown);
|
|
1643
|
+
export type DeleteApiV1CustomfilterByIdError = unknown;
|
|
1644
|
+
export type GetApiV1CustomfilterByIdData = {
|
|
1645
|
+
path: {
|
|
1646
|
+
id: number;
|
|
1647
|
+
};
|
|
1648
|
+
};
|
|
1649
|
+
export type GetApiV1CustomfilterByIdResponse = (CustomFilterResource);
|
|
1650
|
+
export type GetApiV1CustomfilterByIdError = unknown;
|
|
1651
|
+
export type PostApiV1CustomformatData = {
|
|
1652
|
+
body?: CustomFormatResource;
|
|
1653
|
+
};
|
|
1654
|
+
export type PostApiV1CustomformatResponse = (CustomFormatResource);
|
|
1655
|
+
export type PostApiV1CustomformatError = unknown;
|
|
1656
|
+
export type GetApiV1CustomformatResponse = (Array<CustomFormatResource>);
|
|
1657
|
+
export type GetApiV1CustomformatError = unknown;
|
|
1658
|
+
export type PutApiV1CustomformatByIdData = {
|
|
1659
|
+
body?: CustomFormatResource;
|
|
1660
|
+
path: {
|
|
1661
|
+
id: string;
|
|
1662
|
+
};
|
|
1663
|
+
};
|
|
1664
|
+
export type PutApiV1CustomformatByIdResponse = (CustomFormatResource);
|
|
1665
|
+
export type PutApiV1CustomformatByIdError = unknown;
|
|
1666
|
+
export type DeleteApiV1CustomformatByIdData = {
|
|
1667
|
+
path: {
|
|
1668
|
+
id: number;
|
|
1669
|
+
};
|
|
1670
|
+
};
|
|
1671
|
+
export type DeleteApiV1CustomformatByIdResponse = (unknown);
|
|
1672
|
+
export type DeleteApiV1CustomformatByIdError = unknown;
|
|
1673
|
+
export type GetApiV1CustomformatByIdData = {
|
|
1674
|
+
path: {
|
|
1675
|
+
id: number;
|
|
1676
|
+
};
|
|
1677
|
+
};
|
|
1678
|
+
export type GetApiV1CustomformatByIdResponse = (CustomFormatResource);
|
|
1679
|
+
export type GetApiV1CustomformatByIdError = unknown;
|
|
1680
|
+
export type GetApiV1CustomformatSchemaResponse = (unknown);
|
|
1681
|
+
export type GetApiV1CustomformatSchemaError = unknown;
|
|
1682
|
+
export type GetApiV1WantedCutoffData = {
|
|
1683
|
+
query?: {
|
|
1684
|
+
includeAuthor?: boolean;
|
|
1685
|
+
monitored?: boolean;
|
|
1686
|
+
page?: number;
|
|
1687
|
+
pageSize?: number;
|
|
1688
|
+
sortDirection?: SortDirection;
|
|
1689
|
+
sortKey?: string;
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1692
|
+
export type GetApiV1WantedCutoffResponse = (BookResourcePagingResource);
|
|
1693
|
+
export type GetApiV1WantedCutoffError = unknown;
|
|
1694
|
+
export type GetApiV1WantedCutoffByIdData = {
|
|
1695
|
+
path: {
|
|
1696
|
+
id: number;
|
|
1697
|
+
};
|
|
1698
|
+
};
|
|
1699
|
+
export type GetApiV1WantedCutoffByIdResponse = (BookResource);
|
|
1700
|
+
export type GetApiV1WantedCutoffByIdError = unknown;
|
|
1701
|
+
export type PostApiV1DelayprofileData = {
|
|
1702
|
+
body?: DelayProfileResource;
|
|
1703
|
+
};
|
|
1704
|
+
export type PostApiV1DelayprofileResponse = (DelayProfileResource);
|
|
1705
|
+
export type PostApiV1DelayprofileError = unknown;
|
|
1706
|
+
export type GetApiV1DelayprofileResponse = (Array<DelayProfileResource>);
|
|
1707
|
+
export type GetApiV1DelayprofileError = unknown;
|
|
1708
|
+
export type DeleteApiV1DelayprofileByIdData = {
|
|
1709
|
+
path: {
|
|
1710
|
+
id: number;
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
export type DeleteApiV1DelayprofileByIdResponse = (unknown);
|
|
1714
|
+
export type DeleteApiV1DelayprofileByIdError = unknown;
|
|
1715
|
+
export type PutApiV1DelayprofileByIdData = {
|
|
1716
|
+
body?: DelayProfileResource;
|
|
1717
|
+
path: {
|
|
1718
|
+
id: string;
|
|
1719
|
+
};
|
|
1720
|
+
};
|
|
1721
|
+
export type PutApiV1DelayprofileByIdResponse = (DelayProfileResource);
|
|
1722
|
+
export type PutApiV1DelayprofileByIdError = unknown;
|
|
1723
|
+
export type GetApiV1DelayprofileByIdData = {
|
|
1724
|
+
path: {
|
|
1725
|
+
id: number;
|
|
1726
|
+
};
|
|
1727
|
+
};
|
|
1728
|
+
export type GetApiV1DelayprofileByIdResponse = (DelayProfileResource);
|
|
1729
|
+
export type GetApiV1DelayprofileByIdError = unknown;
|
|
1730
|
+
export type PutApiV1DelayprofileReorderByIdData = {
|
|
1731
|
+
path: {
|
|
1732
|
+
id: number;
|
|
1733
|
+
};
|
|
1734
|
+
query?: {
|
|
1735
|
+
afterId?: number;
|
|
1736
|
+
};
|
|
1737
|
+
};
|
|
1738
|
+
export type PutApiV1DelayprofileReorderByIdResponse = (unknown);
|
|
1739
|
+
export type PutApiV1DelayprofileReorderByIdError = unknown;
|
|
1740
|
+
export type GetApiV1ConfigDevelopmentResponse = (DevelopmentConfigResource);
|
|
1741
|
+
export type GetApiV1ConfigDevelopmentError = unknown;
|
|
1742
|
+
export type PutApiV1ConfigDevelopmentByIdData = {
|
|
1743
|
+
body?: DevelopmentConfigResource;
|
|
1744
|
+
path: {
|
|
1745
|
+
id: string;
|
|
1746
|
+
};
|
|
1747
|
+
};
|
|
1748
|
+
export type PutApiV1ConfigDevelopmentByIdResponse = (DevelopmentConfigResource);
|
|
1749
|
+
export type PutApiV1ConfigDevelopmentByIdError = unknown;
|
|
1750
|
+
export type GetApiV1ConfigDevelopmentByIdData = {
|
|
1751
|
+
path: {
|
|
1752
|
+
id: number;
|
|
1753
|
+
};
|
|
1754
|
+
};
|
|
1755
|
+
export type GetApiV1ConfigDevelopmentByIdResponse = (DevelopmentConfigResource);
|
|
1756
|
+
export type GetApiV1ConfigDevelopmentByIdError = unknown;
|
|
1757
|
+
export type GetApiV1DiskspaceResponse = (Array<DiskSpaceResource>);
|
|
1758
|
+
export type GetApiV1DiskspaceError = unknown;
|
|
1759
|
+
export type GetApiV1DownloadclientResponse = (Array<DownloadClientResource>);
|
|
1760
|
+
export type GetApiV1DownloadclientError = unknown;
|
|
1761
|
+
export type PostApiV1DownloadclientData = {
|
|
1762
|
+
body?: DownloadClientResource;
|
|
1763
|
+
query?: {
|
|
1764
|
+
forceSave?: boolean;
|
|
1765
|
+
};
|
|
1766
|
+
};
|
|
1767
|
+
export type PostApiV1DownloadclientResponse = (DownloadClientResource);
|
|
1768
|
+
export type PostApiV1DownloadclientError = unknown;
|
|
1769
|
+
export type PutApiV1DownloadclientByIdData = {
|
|
1770
|
+
body?: DownloadClientResource;
|
|
1771
|
+
path: {
|
|
1772
|
+
id: string;
|
|
1773
|
+
};
|
|
1774
|
+
query?: {
|
|
1775
|
+
forceSave?: boolean;
|
|
1776
|
+
};
|
|
1777
|
+
};
|
|
1778
|
+
export type PutApiV1DownloadclientByIdResponse = (DownloadClientResource);
|
|
1779
|
+
export type PutApiV1DownloadclientByIdError = unknown;
|
|
1780
|
+
export type DeleteApiV1DownloadclientByIdData = {
|
|
1781
|
+
path: {
|
|
1782
|
+
id: number;
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
export type DeleteApiV1DownloadclientByIdResponse = (unknown);
|
|
1786
|
+
export type DeleteApiV1DownloadclientByIdError = unknown;
|
|
1787
|
+
export type GetApiV1DownloadclientByIdData = {
|
|
1788
|
+
path: {
|
|
1789
|
+
id: number;
|
|
1790
|
+
};
|
|
1791
|
+
};
|
|
1792
|
+
export type GetApiV1DownloadclientByIdResponse = (DownloadClientResource);
|
|
1793
|
+
export type GetApiV1DownloadclientByIdError = unknown;
|
|
1794
|
+
export type PutApiV1DownloadclientBulkData = {
|
|
1795
|
+
body?: DownloadClientBulkResource;
|
|
1796
|
+
};
|
|
1797
|
+
export type PutApiV1DownloadclientBulkResponse = (DownloadClientResource);
|
|
1798
|
+
export type PutApiV1DownloadclientBulkError = unknown;
|
|
1799
|
+
export type DeleteApiV1DownloadclientBulkData = {
|
|
1800
|
+
body?: DownloadClientBulkResource;
|
|
1801
|
+
};
|
|
1802
|
+
export type DeleteApiV1DownloadclientBulkResponse = (unknown);
|
|
1803
|
+
export type DeleteApiV1DownloadclientBulkError = unknown;
|
|
1804
|
+
export type GetApiV1DownloadclientSchemaResponse = (Array<DownloadClientResource>);
|
|
1805
|
+
export type GetApiV1DownloadclientSchemaError = unknown;
|
|
1806
|
+
export type PostApiV1DownloadclientTestData = {
|
|
1807
|
+
body?: DownloadClientResource;
|
|
1808
|
+
query?: {
|
|
1809
|
+
forceTest?: boolean;
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
export type PostApiV1DownloadclientTestResponse = (unknown);
|
|
1813
|
+
export type PostApiV1DownloadclientTestError = unknown;
|
|
1814
|
+
export type PostApiV1DownloadclientTestallResponse = (unknown);
|
|
1815
|
+
export type PostApiV1DownloadclientTestallError = unknown;
|
|
1816
|
+
export type PostApiV1DownloadclientActionByNameData = {
|
|
1817
|
+
body?: DownloadClientResource;
|
|
1818
|
+
path: {
|
|
1819
|
+
name: string;
|
|
1820
|
+
};
|
|
1821
|
+
};
|
|
1822
|
+
export type PostApiV1DownloadclientActionByNameResponse = (unknown);
|
|
1823
|
+
export type PostApiV1DownloadclientActionByNameError = unknown;
|
|
1824
|
+
export type GetApiV1ConfigDownloadclientResponse = (DownloadClientConfigResource);
|
|
1825
|
+
export type GetApiV1ConfigDownloadclientError = unknown;
|
|
1826
|
+
export type PutApiV1ConfigDownloadclientByIdData = {
|
|
1827
|
+
body?: DownloadClientConfigResource;
|
|
1828
|
+
path: {
|
|
1829
|
+
id: string;
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
export type PutApiV1ConfigDownloadclientByIdResponse = (DownloadClientConfigResource);
|
|
1833
|
+
export type PutApiV1ConfigDownloadclientByIdError = unknown;
|
|
1834
|
+
export type GetApiV1ConfigDownloadclientByIdData = {
|
|
1835
|
+
path: {
|
|
1836
|
+
id: number;
|
|
1837
|
+
};
|
|
1838
|
+
};
|
|
1839
|
+
export type GetApiV1ConfigDownloadclientByIdResponse = (DownloadClientConfigResource);
|
|
1840
|
+
export type GetApiV1ConfigDownloadclientByIdError = unknown;
|
|
1841
|
+
export type GetApiV1EditionData = {
|
|
1842
|
+
query?: {
|
|
1843
|
+
bookId?: Array<(number)>;
|
|
1844
|
+
};
|
|
1845
|
+
};
|
|
1846
|
+
export type GetApiV1EditionResponse = (Array<EditionResource>);
|
|
1847
|
+
export type GetApiV1EditionError = unknown;
|
|
1848
|
+
export type GetApiV1FilesystemData = {
|
|
1849
|
+
query?: {
|
|
1850
|
+
allowFoldersWithoutTrailingSlashes?: boolean;
|
|
1851
|
+
includeFiles?: boolean;
|
|
1852
|
+
path?: string;
|
|
1853
|
+
};
|
|
1854
|
+
};
|
|
1855
|
+
export type GetApiV1FilesystemResponse = (unknown);
|
|
1856
|
+
export type GetApiV1FilesystemError = unknown;
|
|
1857
|
+
export type GetApiV1FilesystemTypeData = {
|
|
1858
|
+
query?: {
|
|
1859
|
+
path?: string;
|
|
1860
|
+
};
|
|
1861
|
+
};
|
|
1862
|
+
export type GetApiV1FilesystemTypeResponse = (unknown);
|
|
1863
|
+
export type GetApiV1FilesystemTypeError = unknown;
|
|
1864
|
+
export type GetApiV1FilesystemMediafilesData = {
|
|
1865
|
+
query?: {
|
|
1866
|
+
path?: string;
|
|
1867
|
+
};
|
|
1868
|
+
};
|
|
1869
|
+
export type GetApiV1FilesystemMediafilesResponse = (unknown);
|
|
1870
|
+
export type GetApiV1FilesystemMediafilesError = unknown;
|
|
1871
|
+
export type GetApiV1HealthResponse = (Array<HealthResource>);
|
|
1872
|
+
export type GetApiV1HealthError = unknown;
|
|
1873
|
+
export type GetApiV1HistoryData = {
|
|
1874
|
+
query?: {
|
|
1875
|
+
bookId?: number;
|
|
1876
|
+
downloadId?: string;
|
|
1877
|
+
eventType?: Array<(number)>;
|
|
1878
|
+
includeAuthor?: boolean;
|
|
1879
|
+
includeBook?: boolean;
|
|
1880
|
+
page?: number;
|
|
1881
|
+
pageSize?: number;
|
|
1882
|
+
sortDirection?: SortDirection;
|
|
1883
|
+
sortKey?: string;
|
|
1884
|
+
};
|
|
1885
|
+
};
|
|
1886
|
+
export type GetApiV1HistoryResponse = (HistoryResourcePagingResource);
|
|
1887
|
+
export type GetApiV1HistoryError = unknown;
|
|
1888
|
+
export type GetApiV1HistorySinceData = {
|
|
1889
|
+
query?: {
|
|
1890
|
+
date?: string;
|
|
1891
|
+
eventType?: EntityHistoryEventType;
|
|
1892
|
+
includeAuthor?: boolean;
|
|
1893
|
+
includeBook?: boolean;
|
|
1894
|
+
};
|
|
1895
|
+
};
|
|
1896
|
+
export type GetApiV1HistorySinceResponse = (Array<HistoryResource>);
|
|
1897
|
+
export type GetApiV1HistorySinceError = unknown;
|
|
1898
|
+
export type GetApiV1HistoryAuthorData = {
|
|
1899
|
+
query?: {
|
|
1900
|
+
authorId?: number;
|
|
1901
|
+
bookId?: number;
|
|
1902
|
+
eventType?: EntityHistoryEventType;
|
|
1903
|
+
includeAuthor?: boolean;
|
|
1904
|
+
includeBook?: boolean;
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1907
|
+
export type GetApiV1HistoryAuthorResponse = (Array<HistoryResource>);
|
|
1908
|
+
export type GetApiV1HistoryAuthorError = unknown;
|
|
1909
|
+
export type PostApiV1HistoryFailedByIdData = {
|
|
1910
|
+
path: {
|
|
1911
|
+
id: number;
|
|
1912
|
+
};
|
|
1913
|
+
};
|
|
1914
|
+
export type PostApiV1HistoryFailedByIdResponse = (unknown);
|
|
1915
|
+
export type PostApiV1HistoryFailedByIdError = unknown;
|
|
1916
|
+
export type GetApiV1ConfigHostResponse = (HostConfigResource);
|
|
1917
|
+
export type GetApiV1ConfigHostError = unknown;
|
|
1918
|
+
export type PutApiV1ConfigHostByIdData = {
|
|
1919
|
+
body?: HostConfigResource;
|
|
1920
|
+
path: {
|
|
1921
|
+
id: string;
|
|
1922
|
+
};
|
|
1923
|
+
};
|
|
1924
|
+
export type PutApiV1ConfigHostByIdResponse = (HostConfigResource);
|
|
1925
|
+
export type PutApiV1ConfigHostByIdError = unknown;
|
|
1926
|
+
export type GetApiV1ConfigHostByIdData = {
|
|
1927
|
+
path: {
|
|
1928
|
+
id: number;
|
|
1929
|
+
};
|
|
1930
|
+
};
|
|
1931
|
+
export type GetApiV1ConfigHostByIdResponse = (HostConfigResource);
|
|
1932
|
+
export type GetApiV1ConfigHostByIdError = unknown;
|
|
1933
|
+
export type GetApiV1ImportlistResponse = (Array<ImportListResource>);
|
|
1934
|
+
export type GetApiV1ImportlistError = unknown;
|
|
1935
|
+
export type PostApiV1ImportlistData = {
|
|
1936
|
+
body?: ImportListResource;
|
|
1937
|
+
query?: {
|
|
1938
|
+
forceSave?: boolean;
|
|
1939
|
+
};
|
|
1940
|
+
};
|
|
1941
|
+
export type PostApiV1ImportlistResponse = (ImportListResource);
|
|
1942
|
+
export type PostApiV1ImportlistError = unknown;
|
|
1943
|
+
export type PutApiV1ImportlistByIdData = {
|
|
1944
|
+
body?: ImportListResource;
|
|
1945
|
+
path: {
|
|
1946
|
+
id: string;
|
|
1947
|
+
};
|
|
1948
|
+
query?: {
|
|
1949
|
+
forceSave?: boolean;
|
|
1950
|
+
};
|
|
1951
|
+
};
|
|
1952
|
+
export type PutApiV1ImportlistByIdResponse = (ImportListResource);
|
|
1953
|
+
export type PutApiV1ImportlistByIdError = unknown;
|
|
1954
|
+
export type DeleteApiV1ImportlistByIdData = {
|
|
1955
|
+
path: {
|
|
1956
|
+
id: number;
|
|
1957
|
+
};
|
|
1958
|
+
};
|
|
1959
|
+
export type DeleteApiV1ImportlistByIdResponse = (unknown);
|
|
1960
|
+
export type DeleteApiV1ImportlistByIdError = unknown;
|
|
1961
|
+
export type GetApiV1ImportlistByIdData = {
|
|
1962
|
+
path: {
|
|
1963
|
+
id: number;
|
|
1964
|
+
};
|
|
1965
|
+
};
|
|
1966
|
+
export type GetApiV1ImportlistByIdResponse = (ImportListResource);
|
|
1967
|
+
export type GetApiV1ImportlistByIdError = unknown;
|
|
1968
|
+
export type PutApiV1ImportlistBulkData = {
|
|
1969
|
+
body?: ImportListBulkResource;
|
|
1970
|
+
};
|
|
1971
|
+
export type PutApiV1ImportlistBulkResponse = (ImportListResource);
|
|
1972
|
+
export type PutApiV1ImportlistBulkError = unknown;
|
|
1973
|
+
export type DeleteApiV1ImportlistBulkData = {
|
|
1974
|
+
body?: ImportListBulkResource;
|
|
1975
|
+
};
|
|
1976
|
+
export type DeleteApiV1ImportlistBulkResponse = (unknown);
|
|
1977
|
+
export type DeleteApiV1ImportlistBulkError = unknown;
|
|
1978
|
+
export type GetApiV1ImportlistSchemaResponse = (Array<ImportListResource>);
|
|
1979
|
+
export type GetApiV1ImportlistSchemaError = unknown;
|
|
1980
|
+
export type PostApiV1ImportlistTestData = {
|
|
1981
|
+
body?: ImportListResource;
|
|
1982
|
+
query?: {
|
|
1983
|
+
forceTest?: boolean;
|
|
1984
|
+
};
|
|
1985
|
+
};
|
|
1986
|
+
export type PostApiV1ImportlistTestResponse = (unknown);
|
|
1987
|
+
export type PostApiV1ImportlistTestError = unknown;
|
|
1988
|
+
export type PostApiV1ImportlistTestallResponse = (unknown);
|
|
1989
|
+
export type PostApiV1ImportlistTestallError = unknown;
|
|
1990
|
+
export type PostApiV1ImportlistActionByNameData = {
|
|
1991
|
+
body?: ImportListResource;
|
|
1992
|
+
path: {
|
|
1993
|
+
name: string;
|
|
1994
|
+
};
|
|
1995
|
+
};
|
|
1996
|
+
export type PostApiV1ImportlistActionByNameResponse = (unknown);
|
|
1997
|
+
export type PostApiV1ImportlistActionByNameError = unknown;
|
|
1998
|
+
export type GetApiV1ImportlistexclusionResponse = (Array<ImportListExclusionResource>);
|
|
1999
|
+
export type GetApiV1ImportlistexclusionError = unknown;
|
|
2000
|
+
export type PostApiV1ImportlistexclusionData = {
|
|
2001
|
+
body?: ImportListExclusionResource;
|
|
2002
|
+
};
|
|
2003
|
+
export type PostApiV1ImportlistexclusionResponse = (ImportListExclusionResource);
|
|
2004
|
+
export type PostApiV1ImportlistexclusionError = unknown;
|
|
2005
|
+
export type PutApiV1ImportlistexclusionByIdData = {
|
|
2006
|
+
body?: ImportListExclusionResource;
|
|
2007
|
+
path: {
|
|
2008
|
+
id: string;
|
|
2009
|
+
};
|
|
2010
|
+
};
|
|
2011
|
+
export type PutApiV1ImportlistexclusionByIdResponse = (ImportListExclusionResource);
|
|
2012
|
+
export type PutApiV1ImportlistexclusionByIdError = unknown;
|
|
2013
|
+
export type DeleteApiV1ImportlistexclusionByIdData = {
|
|
2014
|
+
path: {
|
|
2015
|
+
id: number;
|
|
2016
|
+
};
|
|
2017
|
+
};
|
|
2018
|
+
export type DeleteApiV1ImportlistexclusionByIdResponse = (unknown);
|
|
2019
|
+
export type DeleteApiV1ImportlistexclusionByIdError = unknown;
|
|
2020
|
+
export type GetApiV1ImportlistexclusionByIdData = {
|
|
2021
|
+
path: {
|
|
2022
|
+
id: number;
|
|
2023
|
+
};
|
|
2024
|
+
};
|
|
2025
|
+
export type GetApiV1ImportlistexclusionByIdResponse = (ImportListExclusionResource);
|
|
2026
|
+
export type GetApiV1ImportlistexclusionByIdError = unknown;
|
|
2027
|
+
export type GetApiV1IndexerResponse = (Array<IndexerResource>);
|
|
2028
|
+
export type GetApiV1IndexerError = unknown;
|
|
2029
|
+
export type PostApiV1IndexerData = {
|
|
2030
|
+
body?: IndexerResource;
|
|
2031
|
+
query?: {
|
|
2032
|
+
forceSave?: boolean;
|
|
2033
|
+
};
|
|
2034
|
+
};
|
|
2035
|
+
export type PostApiV1IndexerResponse = (IndexerResource);
|
|
2036
|
+
export type PostApiV1IndexerError = unknown;
|
|
2037
|
+
export type PutApiV1IndexerByIdData = {
|
|
2038
|
+
body?: IndexerResource;
|
|
2039
|
+
path: {
|
|
2040
|
+
id: string;
|
|
2041
|
+
};
|
|
2042
|
+
query?: {
|
|
2043
|
+
forceSave?: boolean;
|
|
2044
|
+
};
|
|
2045
|
+
};
|
|
2046
|
+
export type PutApiV1IndexerByIdResponse = (IndexerResource);
|
|
2047
|
+
export type PutApiV1IndexerByIdError = unknown;
|
|
2048
|
+
export type DeleteApiV1IndexerByIdData = {
|
|
2049
|
+
path: {
|
|
2050
|
+
id: number;
|
|
2051
|
+
};
|
|
2052
|
+
};
|
|
2053
|
+
export type DeleteApiV1IndexerByIdResponse = (unknown);
|
|
2054
|
+
export type DeleteApiV1IndexerByIdError = unknown;
|
|
2055
|
+
export type GetApiV1IndexerByIdData = {
|
|
2056
|
+
path: {
|
|
2057
|
+
id: number;
|
|
2058
|
+
};
|
|
2059
|
+
};
|
|
2060
|
+
export type GetApiV1IndexerByIdResponse = (IndexerResource);
|
|
2061
|
+
export type GetApiV1IndexerByIdError = unknown;
|
|
2062
|
+
export type PutApiV1IndexerBulkData = {
|
|
2063
|
+
body?: IndexerBulkResource;
|
|
2064
|
+
};
|
|
2065
|
+
export type PutApiV1IndexerBulkResponse = (IndexerResource);
|
|
2066
|
+
export type PutApiV1IndexerBulkError = unknown;
|
|
2067
|
+
export type DeleteApiV1IndexerBulkData = {
|
|
2068
|
+
body?: IndexerBulkResource;
|
|
2069
|
+
};
|
|
2070
|
+
export type DeleteApiV1IndexerBulkResponse = (unknown);
|
|
2071
|
+
export type DeleteApiV1IndexerBulkError = unknown;
|
|
2072
|
+
export type GetApiV1IndexerSchemaResponse = (Array<IndexerResource>);
|
|
2073
|
+
export type GetApiV1IndexerSchemaError = unknown;
|
|
2074
|
+
export type PostApiV1IndexerTestData = {
|
|
2075
|
+
body?: IndexerResource;
|
|
2076
|
+
query?: {
|
|
2077
|
+
forceTest?: boolean;
|
|
2078
|
+
};
|
|
2079
|
+
};
|
|
2080
|
+
export type PostApiV1IndexerTestResponse = (unknown);
|
|
2081
|
+
export type PostApiV1IndexerTestError = unknown;
|
|
2082
|
+
export type PostApiV1IndexerTestallResponse = (unknown);
|
|
2083
|
+
export type PostApiV1IndexerTestallError = unknown;
|
|
2084
|
+
export type PostApiV1IndexerActionByNameData = {
|
|
2085
|
+
body?: IndexerResource;
|
|
2086
|
+
path: {
|
|
2087
|
+
name: string;
|
|
2088
|
+
};
|
|
2089
|
+
};
|
|
2090
|
+
export type PostApiV1IndexerActionByNameResponse = (unknown);
|
|
2091
|
+
export type PostApiV1IndexerActionByNameError = unknown;
|
|
2092
|
+
export type GetApiV1ConfigIndexerResponse = (IndexerConfigResource);
|
|
2093
|
+
export type GetApiV1ConfigIndexerError = unknown;
|
|
2094
|
+
export type PutApiV1ConfigIndexerByIdData = {
|
|
2095
|
+
body?: IndexerConfigResource;
|
|
2096
|
+
path: {
|
|
2097
|
+
id: string;
|
|
2098
|
+
};
|
|
2099
|
+
};
|
|
2100
|
+
export type PutApiV1ConfigIndexerByIdResponse = (IndexerConfigResource);
|
|
2101
|
+
export type PutApiV1ConfigIndexerByIdError = unknown;
|
|
2102
|
+
export type GetApiV1ConfigIndexerByIdData = {
|
|
2103
|
+
path: {
|
|
2104
|
+
id: number;
|
|
2105
|
+
};
|
|
2106
|
+
};
|
|
2107
|
+
export type GetApiV1ConfigIndexerByIdResponse = (IndexerConfigResource);
|
|
2108
|
+
export type GetApiV1ConfigIndexerByIdError = unknown;
|
|
2109
|
+
export type GetApiV1IndexerflagResponse = (Array<IndexerFlagResource>);
|
|
2110
|
+
export type GetApiV1IndexerflagError = unknown;
|
|
2111
|
+
export type GetApiV1LanguageResponse = (Array<LanguageResource>);
|
|
2112
|
+
export type GetApiV1LanguageError = unknown;
|
|
2113
|
+
export type GetApiV1LanguageByIdData = {
|
|
2114
|
+
path: {
|
|
2115
|
+
id: number;
|
|
2116
|
+
};
|
|
2117
|
+
};
|
|
2118
|
+
export type GetApiV1LanguageByIdResponse = (LanguageResource);
|
|
2119
|
+
export type GetApiV1LanguageByIdError = unknown;
|
|
2120
|
+
export type GetApiV1LocalizationResponse = (string);
|
|
2121
|
+
export type GetApiV1LocalizationError = unknown;
|
|
2122
|
+
export type GetApiV1LogData = {
|
|
2123
|
+
query?: {
|
|
2124
|
+
level?: string;
|
|
2125
|
+
page?: number;
|
|
2126
|
+
pageSize?: number;
|
|
2127
|
+
sortDirection?: SortDirection;
|
|
2128
|
+
sortKey?: string;
|
|
2129
|
+
};
|
|
2130
|
+
};
|
|
2131
|
+
export type GetApiV1LogResponse = (LogResourcePagingResource);
|
|
2132
|
+
export type GetApiV1LogError = unknown;
|
|
2133
|
+
export type GetApiV1LogFileResponse = (Array<LogFileResource>);
|
|
2134
|
+
export type GetApiV1LogFileError = unknown;
|
|
2135
|
+
export type GetApiV1LogFileByFilenameData = {
|
|
2136
|
+
path: {
|
|
2137
|
+
filename: string;
|
|
2138
|
+
};
|
|
2139
|
+
};
|
|
2140
|
+
export type GetApiV1LogFileByFilenameResponse = (unknown);
|
|
2141
|
+
export type GetApiV1LogFileByFilenameError = unknown;
|
|
2142
|
+
export type PostApiV1ManualimportData = {
|
|
2143
|
+
body?: Array<ManualImportUpdateResource>;
|
|
2144
|
+
};
|
|
2145
|
+
export type PostApiV1ManualimportResponse = (unknown);
|
|
2146
|
+
export type PostApiV1ManualimportError = unknown;
|
|
2147
|
+
export type GetApiV1ManualimportData = {
|
|
2148
|
+
query?: {
|
|
2149
|
+
authorId?: number;
|
|
2150
|
+
downloadId?: string;
|
|
2151
|
+
filterExistingFiles?: boolean;
|
|
2152
|
+
folder?: string;
|
|
2153
|
+
replaceExistingFiles?: boolean;
|
|
2154
|
+
};
|
|
2155
|
+
};
|
|
2156
|
+
export type GetApiV1ManualimportResponse = (Array<ManualImportResource>);
|
|
2157
|
+
export type GetApiV1ManualimportError = unknown;
|
|
2158
|
+
export type GetApiV1MediacoverAuthorByAuthorIdByFilenameData = {
|
|
2159
|
+
path: {
|
|
2160
|
+
authorId: number;
|
|
2161
|
+
filename: string;
|
|
2162
|
+
};
|
|
2163
|
+
};
|
|
2164
|
+
export type GetApiV1MediacoverAuthorByAuthorIdByFilenameResponse = (unknown);
|
|
2165
|
+
export type GetApiV1MediacoverAuthorByAuthorIdByFilenameError = unknown;
|
|
2166
|
+
export type GetApiV1MediacoverBookByBookIdByFilenameData = {
|
|
2167
|
+
path: {
|
|
2168
|
+
bookId: number;
|
|
2169
|
+
filename: string;
|
|
2170
|
+
};
|
|
2171
|
+
};
|
|
2172
|
+
export type GetApiV1MediacoverBookByBookIdByFilenameResponse = (unknown);
|
|
2173
|
+
export type GetApiV1MediacoverBookByBookIdByFilenameError = unknown;
|
|
2174
|
+
export type GetApiV1ConfigMediamanagementResponse = (MediaManagementConfigResource);
|
|
2175
|
+
export type GetApiV1ConfigMediamanagementError = unknown;
|
|
2176
|
+
export type PutApiV1ConfigMediamanagementByIdData = {
|
|
2177
|
+
body?: MediaManagementConfigResource;
|
|
2178
|
+
path: {
|
|
2179
|
+
id: string;
|
|
2180
|
+
};
|
|
2181
|
+
};
|
|
2182
|
+
export type PutApiV1ConfigMediamanagementByIdResponse = (MediaManagementConfigResource);
|
|
2183
|
+
export type PutApiV1ConfigMediamanagementByIdError = unknown;
|
|
2184
|
+
export type GetApiV1ConfigMediamanagementByIdData = {
|
|
2185
|
+
path: {
|
|
2186
|
+
id: number;
|
|
2187
|
+
};
|
|
2188
|
+
};
|
|
2189
|
+
export type GetApiV1ConfigMediamanagementByIdResponse = (MediaManagementConfigResource);
|
|
2190
|
+
export type GetApiV1ConfigMediamanagementByIdError = unknown;
|
|
2191
|
+
export type GetApiV1MetadataResponse = (Array<MetadataResource>);
|
|
2192
|
+
export type GetApiV1MetadataError = unknown;
|
|
2193
|
+
export type PostApiV1MetadataData = {
|
|
2194
|
+
body?: MetadataResource;
|
|
2195
|
+
query?: {
|
|
2196
|
+
forceSave?: boolean;
|
|
2197
|
+
};
|
|
2198
|
+
};
|
|
2199
|
+
export type PostApiV1MetadataResponse = (MetadataResource);
|
|
2200
|
+
export type PostApiV1MetadataError = unknown;
|
|
2201
|
+
export type PutApiV1MetadataByIdData = {
|
|
2202
|
+
body?: MetadataResource;
|
|
2203
|
+
path: {
|
|
2204
|
+
id: string;
|
|
2205
|
+
};
|
|
2206
|
+
query?: {
|
|
2207
|
+
forceSave?: boolean;
|
|
2208
|
+
};
|
|
2209
|
+
};
|
|
2210
|
+
export type PutApiV1MetadataByIdResponse = (MetadataResource);
|
|
2211
|
+
export type PutApiV1MetadataByIdError = unknown;
|
|
2212
|
+
export type DeleteApiV1MetadataByIdData = {
|
|
2213
|
+
path: {
|
|
2214
|
+
id: number;
|
|
2215
|
+
};
|
|
2216
|
+
};
|
|
2217
|
+
export type DeleteApiV1MetadataByIdResponse = (unknown);
|
|
2218
|
+
export type DeleteApiV1MetadataByIdError = unknown;
|
|
2219
|
+
export type GetApiV1MetadataByIdData = {
|
|
2220
|
+
path: {
|
|
2221
|
+
id: number;
|
|
2222
|
+
};
|
|
2223
|
+
};
|
|
2224
|
+
export type GetApiV1MetadataByIdResponse = (MetadataResource);
|
|
2225
|
+
export type GetApiV1MetadataByIdError = unknown;
|
|
2226
|
+
export type GetApiV1MetadataSchemaResponse = (Array<MetadataResource>);
|
|
2227
|
+
export type GetApiV1MetadataSchemaError = unknown;
|
|
2228
|
+
export type PostApiV1MetadataTestData = {
|
|
2229
|
+
body?: MetadataResource;
|
|
2230
|
+
query?: {
|
|
2231
|
+
forceTest?: boolean;
|
|
2232
|
+
};
|
|
2233
|
+
};
|
|
2234
|
+
export type PostApiV1MetadataTestResponse = (unknown);
|
|
2235
|
+
export type PostApiV1MetadataTestError = unknown;
|
|
2236
|
+
export type PostApiV1MetadataTestallResponse = (unknown);
|
|
2237
|
+
export type PostApiV1MetadataTestallError = unknown;
|
|
2238
|
+
export type PostApiV1MetadataActionByNameData = {
|
|
2239
|
+
body?: MetadataResource;
|
|
2240
|
+
path: {
|
|
2241
|
+
name: string;
|
|
2242
|
+
};
|
|
2243
|
+
};
|
|
2244
|
+
export type PostApiV1MetadataActionByNameResponse = (unknown);
|
|
2245
|
+
export type PostApiV1MetadataActionByNameError = unknown;
|
|
2246
|
+
export type PostApiV1MetadataprofileData = {
|
|
2247
|
+
body?: MetadataProfileResource;
|
|
2248
|
+
};
|
|
2249
|
+
export type PostApiV1MetadataprofileResponse = (MetadataProfileResource);
|
|
2250
|
+
export type PostApiV1MetadataprofileError = unknown;
|
|
2251
|
+
export type GetApiV1MetadataprofileResponse = (Array<MetadataProfileResource>);
|
|
2252
|
+
export type GetApiV1MetadataprofileError = unknown;
|
|
2253
|
+
export type DeleteApiV1MetadataprofileByIdData = {
|
|
2254
|
+
path: {
|
|
2255
|
+
id: number;
|
|
2256
|
+
};
|
|
2257
|
+
};
|
|
2258
|
+
export type DeleteApiV1MetadataprofileByIdResponse = (unknown);
|
|
2259
|
+
export type DeleteApiV1MetadataprofileByIdError = unknown;
|
|
2260
|
+
export type PutApiV1MetadataprofileByIdData = {
|
|
2261
|
+
body?: MetadataProfileResource;
|
|
2262
|
+
path: {
|
|
2263
|
+
id: string;
|
|
2264
|
+
};
|
|
2265
|
+
};
|
|
2266
|
+
export type PutApiV1MetadataprofileByIdResponse = (MetadataProfileResource);
|
|
2267
|
+
export type PutApiV1MetadataprofileByIdError = unknown;
|
|
2268
|
+
export type GetApiV1MetadataprofileByIdData = {
|
|
2269
|
+
path: {
|
|
2270
|
+
id: number;
|
|
2271
|
+
};
|
|
2272
|
+
};
|
|
2273
|
+
export type GetApiV1MetadataprofileByIdResponse = (MetadataProfileResource);
|
|
2274
|
+
export type GetApiV1MetadataprofileByIdError = unknown;
|
|
2275
|
+
export type GetApiV1MetadataprofileSchemaResponse = (MetadataProfileResource);
|
|
2276
|
+
export type GetApiV1MetadataprofileSchemaError = unknown;
|
|
2277
|
+
export type GetApiV1ConfigMetadataproviderResponse = (MetadataProviderConfigResource);
|
|
2278
|
+
export type GetApiV1ConfigMetadataproviderError = unknown;
|
|
2279
|
+
export type PutApiV1ConfigMetadataproviderByIdData = {
|
|
2280
|
+
body?: MetadataProviderConfigResource;
|
|
2281
|
+
path: {
|
|
2282
|
+
id: string;
|
|
2283
|
+
};
|
|
2284
|
+
};
|
|
2285
|
+
export type PutApiV1ConfigMetadataproviderByIdResponse = (MetadataProviderConfigResource);
|
|
2286
|
+
export type PutApiV1ConfigMetadataproviderByIdError = unknown;
|
|
2287
|
+
export type GetApiV1ConfigMetadataproviderByIdData = {
|
|
2288
|
+
path: {
|
|
2289
|
+
id: number;
|
|
2290
|
+
};
|
|
2291
|
+
};
|
|
2292
|
+
export type GetApiV1ConfigMetadataproviderByIdResponse = (MetadataProviderConfigResource);
|
|
2293
|
+
export type GetApiV1ConfigMetadataproviderByIdError = unknown;
|
|
2294
|
+
export type GetApiV1WantedMissingData = {
|
|
2295
|
+
query?: {
|
|
2296
|
+
includeAuthor?: boolean;
|
|
2297
|
+
monitored?: boolean;
|
|
2298
|
+
page?: number;
|
|
2299
|
+
pageSize?: number;
|
|
2300
|
+
sortDirection?: SortDirection;
|
|
2301
|
+
sortKey?: string;
|
|
2302
|
+
};
|
|
2303
|
+
};
|
|
2304
|
+
export type GetApiV1WantedMissingResponse = (BookResourcePagingResource);
|
|
2305
|
+
export type GetApiV1WantedMissingError = unknown;
|
|
2306
|
+
export type GetApiV1WantedMissingByIdData = {
|
|
2307
|
+
path: {
|
|
2308
|
+
id: number;
|
|
2309
|
+
};
|
|
2310
|
+
};
|
|
2311
|
+
export type GetApiV1WantedMissingByIdResponse = (BookResource);
|
|
2312
|
+
export type GetApiV1WantedMissingByIdError = unknown;
|
|
2313
|
+
export type GetApiV1ConfigNamingResponse = (NamingConfigResource);
|
|
2314
|
+
export type GetApiV1ConfigNamingError = unknown;
|
|
2315
|
+
export type PutApiV1ConfigNamingByIdData = {
|
|
2316
|
+
body?: NamingConfigResource;
|
|
2317
|
+
path: {
|
|
2318
|
+
id: string;
|
|
2319
|
+
};
|
|
2320
|
+
};
|
|
2321
|
+
export type PutApiV1ConfigNamingByIdResponse = (NamingConfigResource);
|
|
2322
|
+
export type PutApiV1ConfigNamingByIdError = unknown;
|
|
2323
|
+
export type GetApiV1ConfigNamingByIdData = {
|
|
2324
|
+
path: {
|
|
2325
|
+
id: number;
|
|
2326
|
+
};
|
|
2327
|
+
};
|
|
2328
|
+
export type GetApiV1ConfigNamingByIdResponse = (NamingConfigResource);
|
|
2329
|
+
export type GetApiV1ConfigNamingByIdError = unknown;
|
|
2330
|
+
export type GetApiV1ConfigNamingExamplesData = {
|
|
2331
|
+
query?: {
|
|
2332
|
+
authorFolderFormat?: string;
|
|
2333
|
+
colonReplacementFormat?: number;
|
|
2334
|
+
id?: number;
|
|
2335
|
+
includeAuthorName?: boolean;
|
|
2336
|
+
includeBookTitle?: boolean;
|
|
2337
|
+
includeQuality?: boolean;
|
|
2338
|
+
numberStyle?: string;
|
|
2339
|
+
renameBooks?: boolean;
|
|
2340
|
+
replaceIllegalCharacters?: boolean;
|
|
2341
|
+
replaceSpaces?: boolean;
|
|
2342
|
+
resourceName?: string;
|
|
2343
|
+
separator?: string;
|
|
2344
|
+
standardBookFormat?: string;
|
|
2345
|
+
};
|
|
2346
|
+
};
|
|
2347
|
+
export type GetApiV1ConfigNamingExamplesResponse = (unknown);
|
|
2348
|
+
export type GetApiV1ConfigNamingExamplesError = unknown;
|
|
2349
|
+
export type GetApiV1NotificationResponse = (Array<NotificationResource>);
|
|
2350
|
+
export type GetApiV1NotificationError = unknown;
|
|
2351
|
+
export type PostApiV1NotificationData = {
|
|
2352
|
+
body?: NotificationResource;
|
|
2353
|
+
query?: {
|
|
2354
|
+
forceSave?: boolean;
|
|
2355
|
+
};
|
|
2356
|
+
};
|
|
2357
|
+
export type PostApiV1NotificationResponse = (NotificationResource);
|
|
2358
|
+
export type PostApiV1NotificationError = unknown;
|
|
2359
|
+
export type PutApiV1NotificationByIdData = {
|
|
2360
|
+
body?: NotificationResource;
|
|
2361
|
+
path: {
|
|
2362
|
+
id: string;
|
|
2363
|
+
};
|
|
2364
|
+
query?: {
|
|
2365
|
+
forceSave?: boolean;
|
|
2366
|
+
};
|
|
2367
|
+
};
|
|
2368
|
+
export type PutApiV1NotificationByIdResponse = (NotificationResource);
|
|
2369
|
+
export type PutApiV1NotificationByIdError = unknown;
|
|
2370
|
+
export type DeleteApiV1NotificationByIdData = {
|
|
2371
|
+
path: {
|
|
2372
|
+
id: number;
|
|
2373
|
+
};
|
|
2374
|
+
};
|
|
2375
|
+
export type DeleteApiV1NotificationByIdResponse = (unknown);
|
|
2376
|
+
export type DeleteApiV1NotificationByIdError = unknown;
|
|
2377
|
+
export type GetApiV1NotificationByIdData = {
|
|
2378
|
+
path: {
|
|
2379
|
+
id: number;
|
|
2380
|
+
};
|
|
2381
|
+
};
|
|
2382
|
+
export type GetApiV1NotificationByIdResponse = (NotificationResource);
|
|
2383
|
+
export type GetApiV1NotificationByIdError = unknown;
|
|
2384
|
+
export type GetApiV1NotificationSchemaResponse = (Array<NotificationResource>);
|
|
2385
|
+
export type GetApiV1NotificationSchemaError = unknown;
|
|
2386
|
+
export type PostApiV1NotificationTestData = {
|
|
2387
|
+
body?: NotificationResource;
|
|
2388
|
+
query?: {
|
|
2389
|
+
forceTest?: boolean;
|
|
2390
|
+
};
|
|
2391
|
+
};
|
|
2392
|
+
export type PostApiV1NotificationTestResponse = (unknown);
|
|
2393
|
+
export type PostApiV1NotificationTestError = unknown;
|
|
2394
|
+
export type PostApiV1NotificationTestallResponse = (unknown);
|
|
2395
|
+
export type PostApiV1NotificationTestallError = unknown;
|
|
2396
|
+
export type PostApiV1NotificationActionByNameData = {
|
|
2397
|
+
body?: NotificationResource;
|
|
2398
|
+
path: {
|
|
2399
|
+
name: string;
|
|
2400
|
+
};
|
|
2401
|
+
};
|
|
2402
|
+
export type PostApiV1NotificationActionByNameResponse = (unknown);
|
|
2403
|
+
export type PostApiV1NotificationActionByNameError = unknown;
|
|
2404
|
+
export type GetApiV1ParseData = {
|
|
2405
|
+
query?: {
|
|
2406
|
+
title?: string;
|
|
2407
|
+
};
|
|
2408
|
+
};
|
|
2409
|
+
export type GetApiV1ParseResponse = (ParseResource);
|
|
2410
|
+
export type GetApiV1ParseError = unknown;
|
|
2411
|
+
export type GetPingResponse = (PingResource);
|
|
2412
|
+
export type GetPingError = unknown;
|
|
2413
|
+
export type HeadPingResponse = (PingResource);
|
|
2414
|
+
export type HeadPingError = unknown;
|
|
2415
|
+
export type PutApiV1QualitydefinitionByIdData = {
|
|
2416
|
+
body?: QualityDefinitionResource;
|
|
2417
|
+
path: {
|
|
2418
|
+
id: string;
|
|
2419
|
+
};
|
|
2420
|
+
};
|
|
2421
|
+
export type PutApiV1QualitydefinitionByIdResponse = (QualityDefinitionResource);
|
|
2422
|
+
export type PutApiV1QualitydefinitionByIdError = unknown;
|
|
2423
|
+
export type GetApiV1QualitydefinitionByIdData = {
|
|
2424
|
+
path: {
|
|
2425
|
+
id: number;
|
|
2426
|
+
};
|
|
2427
|
+
};
|
|
2428
|
+
export type GetApiV1QualitydefinitionByIdResponse = (QualityDefinitionResource);
|
|
2429
|
+
export type GetApiV1QualitydefinitionByIdError = unknown;
|
|
2430
|
+
export type GetApiV1QualitydefinitionResponse = (Array<QualityDefinitionResource>);
|
|
2431
|
+
export type GetApiV1QualitydefinitionError = unknown;
|
|
2432
|
+
export type PutApiV1QualitydefinitionUpdateData = {
|
|
2433
|
+
body?: Array<QualityDefinitionResource>;
|
|
2434
|
+
};
|
|
2435
|
+
export type PutApiV1QualitydefinitionUpdateResponse = (unknown);
|
|
2436
|
+
export type PutApiV1QualitydefinitionUpdateError = unknown;
|
|
2437
|
+
export type PostApiV1QualityprofileData = {
|
|
2438
|
+
body?: QualityProfileResource;
|
|
2439
|
+
};
|
|
2440
|
+
export type PostApiV1QualityprofileResponse = (QualityProfileResource);
|
|
2441
|
+
export type PostApiV1QualityprofileError = unknown;
|
|
2442
|
+
export type GetApiV1QualityprofileResponse = (Array<QualityProfileResource>);
|
|
2443
|
+
export type GetApiV1QualityprofileError = unknown;
|
|
2444
|
+
export type DeleteApiV1QualityprofileByIdData = {
|
|
2445
|
+
path: {
|
|
2446
|
+
id: number;
|
|
2447
|
+
};
|
|
2448
|
+
};
|
|
2449
|
+
export type DeleteApiV1QualityprofileByIdResponse = (unknown);
|
|
2450
|
+
export type DeleteApiV1QualityprofileByIdError = unknown;
|
|
2451
|
+
export type PutApiV1QualityprofileByIdData = {
|
|
2452
|
+
body?: QualityProfileResource;
|
|
2453
|
+
path: {
|
|
2454
|
+
id: string;
|
|
2455
|
+
};
|
|
2456
|
+
};
|
|
2457
|
+
export type PutApiV1QualityprofileByIdResponse = (QualityProfileResource);
|
|
2458
|
+
export type PutApiV1QualityprofileByIdError = unknown;
|
|
2459
|
+
export type GetApiV1QualityprofileByIdData = {
|
|
2460
|
+
path: {
|
|
2461
|
+
id: number;
|
|
2462
|
+
};
|
|
2463
|
+
};
|
|
2464
|
+
export type GetApiV1QualityprofileByIdResponse = (QualityProfileResource);
|
|
2465
|
+
export type GetApiV1QualityprofileByIdError = unknown;
|
|
2466
|
+
export type GetApiV1QualityprofileSchemaResponse = (QualityProfileResource);
|
|
2467
|
+
export type GetApiV1QualityprofileSchemaError = unknown;
|
|
2468
|
+
export type DeleteApiV1QueueByIdData = {
|
|
2469
|
+
path: {
|
|
2470
|
+
id: number;
|
|
2471
|
+
};
|
|
2472
|
+
query?: {
|
|
2473
|
+
blocklist?: boolean;
|
|
2474
|
+
changeCategory?: boolean;
|
|
2475
|
+
removeFromClient?: boolean;
|
|
2476
|
+
skipRedownload?: boolean;
|
|
2477
|
+
};
|
|
2478
|
+
};
|
|
2479
|
+
export type DeleteApiV1QueueByIdResponse = (unknown);
|
|
2480
|
+
export type DeleteApiV1QueueByIdError = unknown;
|
|
2481
|
+
export type DeleteApiV1QueueBulkData = {
|
|
2482
|
+
body?: QueueBulkResource;
|
|
2483
|
+
query?: {
|
|
2484
|
+
blocklist?: boolean;
|
|
2485
|
+
changeCategory?: boolean;
|
|
2486
|
+
removeFromClient?: boolean;
|
|
2487
|
+
skipRedownload?: boolean;
|
|
2488
|
+
};
|
|
2489
|
+
};
|
|
2490
|
+
export type DeleteApiV1QueueBulkResponse = (unknown);
|
|
2491
|
+
export type DeleteApiV1QueueBulkError = unknown;
|
|
2492
|
+
export type GetApiV1QueueData = {
|
|
2493
|
+
query?: {
|
|
2494
|
+
includeAuthor?: boolean;
|
|
2495
|
+
includeBook?: boolean;
|
|
2496
|
+
includeUnknownAuthorItems?: boolean;
|
|
2497
|
+
page?: number;
|
|
2498
|
+
pageSize?: number;
|
|
2499
|
+
sortDirection?: SortDirection;
|
|
2500
|
+
sortKey?: string;
|
|
2501
|
+
};
|
|
2502
|
+
};
|
|
2503
|
+
export type GetApiV1QueueResponse = (QueueResourcePagingResource);
|
|
2504
|
+
export type GetApiV1QueueError = unknown;
|
|
2505
|
+
export type PostApiV1QueueGrabByIdData = {
|
|
2506
|
+
path: {
|
|
2507
|
+
id: number;
|
|
2508
|
+
};
|
|
2509
|
+
};
|
|
2510
|
+
export type PostApiV1QueueGrabByIdResponse = (unknown);
|
|
2511
|
+
export type PostApiV1QueueGrabByIdError = unknown;
|
|
2512
|
+
export type PostApiV1QueueGrabBulkData = {
|
|
2513
|
+
body?: QueueBulkResource;
|
|
2514
|
+
};
|
|
2515
|
+
export type PostApiV1QueueGrabBulkResponse = (unknown);
|
|
2516
|
+
export type PostApiV1QueueGrabBulkError = unknown;
|
|
2517
|
+
export type GetApiV1QueueDetailsData = {
|
|
2518
|
+
query?: {
|
|
2519
|
+
authorId?: number;
|
|
2520
|
+
bookIds?: Array<(number)>;
|
|
2521
|
+
includeAuthor?: boolean;
|
|
2522
|
+
includeBook?: boolean;
|
|
2523
|
+
};
|
|
2524
|
+
};
|
|
2525
|
+
export type GetApiV1QueueDetailsResponse = (Array<QueueResource>);
|
|
2526
|
+
export type GetApiV1QueueDetailsError = unknown;
|
|
2527
|
+
export type GetApiV1QueueStatusResponse = (QueueStatusResource);
|
|
2528
|
+
export type GetApiV1QueueStatusError = unknown;
|
|
2529
|
+
export type PostApiV1ReleaseData = {
|
|
2530
|
+
body?: ReleaseResource;
|
|
2531
|
+
};
|
|
2532
|
+
export type PostApiV1ReleaseResponse = (ReleaseResource);
|
|
2533
|
+
export type PostApiV1ReleaseError = unknown;
|
|
2534
|
+
export type GetApiV1ReleaseData = {
|
|
2535
|
+
query?: {
|
|
2536
|
+
authorId?: number;
|
|
2537
|
+
bookId?: number;
|
|
2538
|
+
};
|
|
2539
|
+
};
|
|
2540
|
+
export type GetApiV1ReleaseResponse = (Array<ReleaseResource>);
|
|
2541
|
+
export type GetApiV1ReleaseError = unknown;
|
|
2542
|
+
export type GetApiV1ReleaseprofileResponse = (Array<ReleaseProfileResource>);
|
|
2543
|
+
export type GetApiV1ReleaseprofileError = unknown;
|
|
2544
|
+
export type PostApiV1ReleaseprofileData = {
|
|
2545
|
+
body?: ReleaseProfileResource;
|
|
2546
|
+
};
|
|
2547
|
+
export type PostApiV1ReleaseprofileResponse = (ReleaseProfileResource);
|
|
2548
|
+
export type PostApiV1ReleaseprofileError = unknown;
|
|
2549
|
+
export type PutApiV1ReleaseprofileByIdData = {
|
|
2550
|
+
body?: ReleaseProfileResource;
|
|
2551
|
+
path: {
|
|
2552
|
+
id: string;
|
|
2553
|
+
};
|
|
2554
|
+
};
|
|
2555
|
+
export type PutApiV1ReleaseprofileByIdResponse = (ReleaseProfileResource);
|
|
2556
|
+
export type PutApiV1ReleaseprofileByIdError = unknown;
|
|
2557
|
+
export type DeleteApiV1ReleaseprofileByIdData = {
|
|
2558
|
+
path: {
|
|
2559
|
+
id: number;
|
|
2560
|
+
};
|
|
2561
|
+
};
|
|
2562
|
+
export type DeleteApiV1ReleaseprofileByIdResponse = (unknown);
|
|
2563
|
+
export type DeleteApiV1ReleaseprofileByIdError = unknown;
|
|
2564
|
+
export type GetApiV1ReleaseprofileByIdData = {
|
|
2565
|
+
path: {
|
|
2566
|
+
id: number;
|
|
2567
|
+
};
|
|
2568
|
+
};
|
|
2569
|
+
export type GetApiV1ReleaseprofileByIdResponse = (ReleaseProfileResource);
|
|
2570
|
+
export type GetApiV1ReleaseprofileByIdError = unknown;
|
|
2571
|
+
export type PostApiV1ReleasePushData = {
|
|
2572
|
+
body?: ReleaseResource;
|
|
2573
|
+
};
|
|
2574
|
+
export type PostApiV1ReleasePushResponse = (ReleaseResource);
|
|
2575
|
+
export type PostApiV1ReleasePushError = unknown;
|
|
2576
|
+
export type PostApiV1RemotepathmappingData = {
|
|
2577
|
+
body?: RemotePathMappingResource;
|
|
2578
|
+
};
|
|
2579
|
+
export type PostApiV1RemotepathmappingResponse = (RemotePathMappingResource);
|
|
2580
|
+
export type PostApiV1RemotepathmappingError = unknown;
|
|
2581
|
+
export type GetApiV1RemotepathmappingResponse = (Array<RemotePathMappingResource>);
|
|
2582
|
+
export type GetApiV1RemotepathmappingError = unknown;
|
|
2583
|
+
export type DeleteApiV1RemotepathmappingByIdData = {
|
|
2584
|
+
path: {
|
|
2585
|
+
id: number;
|
|
2586
|
+
};
|
|
2587
|
+
};
|
|
2588
|
+
export type DeleteApiV1RemotepathmappingByIdResponse = (unknown);
|
|
2589
|
+
export type DeleteApiV1RemotepathmappingByIdError = unknown;
|
|
2590
|
+
export type PutApiV1RemotepathmappingByIdData = {
|
|
2591
|
+
body?: RemotePathMappingResource;
|
|
2592
|
+
path: {
|
|
2593
|
+
id: string;
|
|
2594
|
+
};
|
|
2595
|
+
};
|
|
2596
|
+
export type PutApiV1RemotepathmappingByIdResponse = (RemotePathMappingResource);
|
|
2597
|
+
export type PutApiV1RemotepathmappingByIdError = unknown;
|
|
2598
|
+
export type GetApiV1RemotepathmappingByIdData = {
|
|
2599
|
+
path: {
|
|
2600
|
+
id: number;
|
|
2601
|
+
};
|
|
2602
|
+
};
|
|
2603
|
+
export type GetApiV1RemotepathmappingByIdResponse = (RemotePathMappingResource);
|
|
2604
|
+
export type GetApiV1RemotepathmappingByIdError = unknown;
|
|
2605
|
+
export type GetApiV1RenameData = {
|
|
2606
|
+
query?: {
|
|
2607
|
+
authorId?: number;
|
|
2608
|
+
bookId?: number;
|
|
2609
|
+
};
|
|
2610
|
+
};
|
|
2611
|
+
export type GetApiV1RenameResponse = (Array<RenameBookResource>);
|
|
2612
|
+
export type GetApiV1RenameError = unknown;
|
|
2613
|
+
export type GetApiV1RetagData = {
|
|
2614
|
+
query?: {
|
|
2615
|
+
authorId?: number;
|
|
2616
|
+
bookId?: number;
|
|
2617
|
+
};
|
|
2618
|
+
};
|
|
2619
|
+
export type GetApiV1RetagResponse = (Array<RetagBookResource>);
|
|
2620
|
+
export type GetApiV1RetagError = unknown;
|
|
2621
|
+
export type PostApiV1RootfolderData = {
|
|
2622
|
+
body?: RootFolderResource;
|
|
2623
|
+
};
|
|
2624
|
+
export type PostApiV1RootfolderResponse = (RootFolderResource);
|
|
2625
|
+
export type PostApiV1RootfolderError = unknown;
|
|
2626
|
+
export type GetApiV1RootfolderResponse = (Array<RootFolderResource>);
|
|
2627
|
+
export type GetApiV1RootfolderError = unknown;
|
|
2628
|
+
export type PutApiV1RootfolderByIdData = {
|
|
2629
|
+
body?: RootFolderResource;
|
|
2630
|
+
path: {
|
|
2631
|
+
id: string;
|
|
2632
|
+
};
|
|
2633
|
+
};
|
|
2634
|
+
export type PutApiV1RootfolderByIdResponse = (RootFolderResource);
|
|
2635
|
+
export type PutApiV1RootfolderByIdError = unknown;
|
|
2636
|
+
export type DeleteApiV1RootfolderByIdData = {
|
|
2637
|
+
path: {
|
|
2638
|
+
id: number;
|
|
2639
|
+
};
|
|
2640
|
+
};
|
|
2641
|
+
export type DeleteApiV1RootfolderByIdResponse = (unknown);
|
|
2642
|
+
export type DeleteApiV1RootfolderByIdError = unknown;
|
|
2643
|
+
export type GetApiV1RootfolderByIdData = {
|
|
2644
|
+
path: {
|
|
2645
|
+
id: number;
|
|
2646
|
+
};
|
|
2647
|
+
};
|
|
2648
|
+
export type GetApiV1RootfolderByIdResponse = (RootFolderResource);
|
|
2649
|
+
export type GetApiV1RootfolderByIdError = unknown;
|
|
2650
|
+
export type GetApiV1SearchData = {
|
|
2651
|
+
query?: {
|
|
2652
|
+
term?: string;
|
|
2653
|
+
};
|
|
2654
|
+
};
|
|
2655
|
+
export type GetApiV1SearchResponse = (unknown);
|
|
2656
|
+
export type GetApiV1SearchError = unknown;
|
|
2657
|
+
export type GetApiV1SeriesData = {
|
|
2658
|
+
query?: {
|
|
2659
|
+
authorId?: number;
|
|
2660
|
+
};
|
|
2661
|
+
};
|
|
2662
|
+
export type GetApiV1SeriesResponse = (Array<SeriesResource>);
|
|
2663
|
+
export type GetApiV1SeriesError = unknown;
|
|
2664
|
+
export type GetContentByPathData = {
|
|
2665
|
+
path: {
|
|
2666
|
+
path: string;
|
|
2667
|
+
};
|
|
2668
|
+
};
|
|
2669
|
+
export type GetContentByPathResponse = (unknown);
|
|
2670
|
+
export type GetContentByPathError = unknown;
|
|
2671
|
+
export type GetData = {
|
|
2672
|
+
path: {
|
|
2673
|
+
path: string;
|
|
2674
|
+
};
|
|
2675
|
+
};
|
|
2676
|
+
export type GetResponse = (unknown);
|
|
2677
|
+
export type GetError = unknown;
|
|
2678
|
+
export type GetByPathData = {
|
|
2679
|
+
path: {
|
|
2680
|
+
path: string;
|
|
2681
|
+
};
|
|
2682
|
+
};
|
|
2683
|
+
export type GetByPathResponse = (unknown);
|
|
2684
|
+
export type GetByPathError = unknown;
|
|
2685
|
+
export type GetApiV1SystemStatusResponse = (SystemResource);
|
|
2686
|
+
export type GetApiV1SystemStatusError = unknown;
|
|
2687
|
+
export type GetApiV1SystemRoutesResponse = (unknown);
|
|
2688
|
+
export type GetApiV1SystemRoutesError = unknown;
|
|
2689
|
+
export type GetApiV1SystemRoutesDuplicateResponse = (unknown);
|
|
2690
|
+
export type GetApiV1SystemRoutesDuplicateError = unknown;
|
|
2691
|
+
export type PostApiV1SystemShutdownResponse = (unknown);
|
|
2692
|
+
export type PostApiV1SystemShutdownError = unknown;
|
|
2693
|
+
export type PostApiV1SystemRestartResponse = (unknown);
|
|
2694
|
+
export type PostApiV1SystemRestartError = unknown;
|
|
2695
|
+
export type GetApiV1TagResponse = (Array<TagResource>);
|
|
2696
|
+
export type GetApiV1TagError = unknown;
|
|
2697
|
+
export type PostApiV1TagData = {
|
|
2698
|
+
body?: TagResource;
|
|
2699
|
+
};
|
|
2700
|
+
export type PostApiV1TagResponse = (TagResource);
|
|
2701
|
+
export type PostApiV1TagError = unknown;
|
|
2702
|
+
export type PutApiV1TagByIdData = {
|
|
2703
|
+
body?: TagResource;
|
|
2704
|
+
path: {
|
|
2705
|
+
id: string;
|
|
2706
|
+
};
|
|
2707
|
+
};
|
|
2708
|
+
export type PutApiV1TagByIdResponse = (TagResource);
|
|
2709
|
+
export type PutApiV1TagByIdError = unknown;
|
|
2710
|
+
export type DeleteApiV1TagByIdData = {
|
|
2711
|
+
path: {
|
|
2712
|
+
id: number;
|
|
2713
|
+
};
|
|
2714
|
+
};
|
|
2715
|
+
export type DeleteApiV1TagByIdResponse = (unknown);
|
|
2716
|
+
export type DeleteApiV1TagByIdError = unknown;
|
|
2717
|
+
export type GetApiV1TagByIdData = {
|
|
2718
|
+
path: {
|
|
2719
|
+
id: number;
|
|
2720
|
+
};
|
|
2721
|
+
};
|
|
2722
|
+
export type GetApiV1TagByIdResponse = (TagResource);
|
|
2723
|
+
export type GetApiV1TagByIdError = unknown;
|
|
2724
|
+
export type GetApiV1TagDetailResponse = (Array<TagDetailsResource>);
|
|
2725
|
+
export type GetApiV1TagDetailError = unknown;
|
|
2726
|
+
export type GetApiV1TagDetailByIdData = {
|
|
2727
|
+
path: {
|
|
2728
|
+
id: number;
|
|
2729
|
+
};
|
|
2730
|
+
};
|
|
2731
|
+
export type GetApiV1TagDetailByIdResponse = (TagDetailsResource);
|
|
2732
|
+
export type GetApiV1TagDetailByIdError = unknown;
|
|
2733
|
+
export type GetApiV1SystemTaskResponse = (Array<TaskResource>);
|
|
2734
|
+
export type GetApiV1SystemTaskError = unknown;
|
|
2735
|
+
export type GetApiV1SystemTaskByIdData = {
|
|
2736
|
+
path: {
|
|
2737
|
+
id: number;
|
|
2738
|
+
};
|
|
2739
|
+
};
|
|
2740
|
+
export type GetApiV1SystemTaskByIdResponse = (TaskResource);
|
|
2741
|
+
export type GetApiV1SystemTaskByIdError = unknown;
|
|
2742
|
+
export type PutApiV1ConfigUiByIdData = {
|
|
2743
|
+
body?: UiConfigResource;
|
|
2744
|
+
path: {
|
|
2745
|
+
id: string;
|
|
2746
|
+
};
|
|
2747
|
+
};
|
|
2748
|
+
export type PutApiV1ConfigUiByIdResponse = (UiConfigResource);
|
|
2749
|
+
export type PutApiV1ConfigUiByIdError = unknown;
|
|
2750
|
+
export type GetApiV1ConfigUiByIdData = {
|
|
2751
|
+
path: {
|
|
2752
|
+
id: number;
|
|
2753
|
+
};
|
|
2754
|
+
};
|
|
2755
|
+
export type GetApiV1ConfigUiByIdResponse = (UiConfigResource);
|
|
2756
|
+
export type GetApiV1ConfigUiByIdError = unknown;
|
|
2757
|
+
export type GetApiV1ConfigUiResponse = (UiConfigResource);
|
|
2758
|
+
export type GetApiV1ConfigUiError = unknown;
|
|
2759
|
+
export type GetApiV1UpdateResponse = (Array<UpdateResource>);
|
|
2760
|
+
export type GetApiV1UpdateError = unknown;
|
|
2761
|
+
export type GetApiV1LogFileUpdateResponse = (Array<LogFileResource>);
|
|
2762
|
+
export type GetApiV1LogFileUpdateError = unknown;
|
|
2763
|
+
export type GetApiV1LogFileUpdateByFilenameData = {
|
|
2764
|
+
path: {
|
|
2765
|
+
filename: string;
|
|
2766
|
+
};
|
|
2767
|
+
};
|
|
2768
|
+
export type GetApiV1LogFileUpdateByFilenameResponse = (unknown);
|
|
2769
|
+
export type GetApiV1LogFileUpdateByFilenameError = unknown;
|
|
2770
|
+
//# sourceMappingURL=types.gen.d.ts.map
|