tsarr 1.3.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -6
- package/dist/clients/lidarr.d.ts +872 -1
- package/dist/clients/lidarr.d.ts.map +1 -1
- package/dist/clients/lidarr.js +1496 -72
- package/dist/clients/prowlarr.d.ts +560 -1
- package/dist/clients/prowlarr.d.ts.map +1 -1
- package/dist/clients/prowlarr.js +929 -21
- package/dist/clients/radarr.d.ts +391 -1
- package/dist/clients/radarr.d.ts.map +1 -1
- package/dist/clients/radarr.js +624 -0
- package/dist/clients/readarr.d.ts +1093 -1
- package/dist/clients/readarr.d.ts.map +1 -1
- package/dist/clients/readarr.js +1806 -19
- package/dist/clients/sonarr.d.ts +1059 -6
- package/dist/clients/sonarr.d.ts.map +1 -1
- package/dist/clients/sonarr.js +1732 -34
- package/dist/generated/sonarr/sdk.gen.d.ts +245 -13
- package/dist/generated/sonarr/sdk.gen.d.ts.map +1 -1
- package/dist/generated/sonarr/types.gen.d.ts +4251 -115
- package/dist/generated/sonarr/types.gen.d.ts.map +1 -1
- package/dist/index.js +16 -16
- package/dist/tsarr-1.5.0.tgz +0 -0
- package/package.json +1 -1
- package/dist/tsarr-1.3.0.tgz +0 -0
|
@@ -12,18 +12,500 @@ export type AlternateTitleResource = {
|
|
|
12
12
|
sceneOrigin?: string | null;
|
|
13
13
|
comment?: string | null;
|
|
14
14
|
};
|
|
15
|
+
export type ApplyTags = 'add' | 'remove' | 'replace';
|
|
16
|
+
export type AuthenticationRequiredType = 'enabled' | 'disabledForLocalAddresses';
|
|
17
|
+
export type AuthenticationType = 'none' | 'basic' | 'forms' | 'external';
|
|
18
|
+
export type AutoTaggingResource = {
|
|
19
|
+
id?: number;
|
|
20
|
+
name?: string | null;
|
|
21
|
+
removeTagsAutomatically?: boolean;
|
|
22
|
+
tags?: Array<number> | null;
|
|
23
|
+
specifications?: Array<AutoTaggingSpecificationSchema> | null;
|
|
24
|
+
};
|
|
25
|
+
export type AutoTaggingSpecificationSchema = {
|
|
26
|
+
id?: number;
|
|
27
|
+
name?: string | null;
|
|
28
|
+
implementation?: string | null;
|
|
29
|
+
implementationName?: string | null;
|
|
30
|
+
negate?: boolean;
|
|
31
|
+
required?: boolean;
|
|
32
|
+
fields?: Array<Field> | null;
|
|
33
|
+
};
|
|
34
|
+
export type BackupResource = {
|
|
35
|
+
id?: number;
|
|
36
|
+
name?: string | null;
|
|
37
|
+
path?: string | null;
|
|
38
|
+
type?: BackupType;
|
|
39
|
+
size?: number;
|
|
40
|
+
time?: string;
|
|
41
|
+
};
|
|
42
|
+
export type BackupType = 'scheduled' | 'manual' | 'update';
|
|
43
|
+
export type BlocklistBulkResource = {
|
|
44
|
+
ids?: Array<number> | null;
|
|
45
|
+
};
|
|
46
|
+
export type BlocklistResource = {
|
|
47
|
+
id?: number;
|
|
48
|
+
seriesId?: number;
|
|
49
|
+
episodeIds?: Array<number> | null;
|
|
50
|
+
sourceTitle?: string | null;
|
|
51
|
+
languages?: Array<Language> | null;
|
|
52
|
+
quality?: QualityModel;
|
|
53
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
54
|
+
date?: string;
|
|
55
|
+
protocol?: DownloadProtocol;
|
|
56
|
+
indexer?: string | null;
|
|
57
|
+
message?: string | null;
|
|
58
|
+
series?: SeriesResource;
|
|
59
|
+
};
|
|
60
|
+
export type BlocklistResourcePagingResource = {
|
|
61
|
+
page?: number;
|
|
62
|
+
pageSize?: number;
|
|
63
|
+
sortKey?: string | null;
|
|
64
|
+
sortDirection?: SortDirection;
|
|
65
|
+
totalRecords?: number;
|
|
66
|
+
records?: Array<BlocklistResource> | null;
|
|
67
|
+
};
|
|
68
|
+
export type CertificateValidationType = 'enabled' | 'disabledForLocalAddresses' | 'disabled';
|
|
69
|
+
export type Command = {
|
|
70
|
+
sendUpdatesToClient?: boolean;
|
|
71
|
+
readonly updateScheduledTask?: boolean;
|
|
72
|
+
readonly completionMessage?: string | null;
|
|
73
|
+
readonly requiresDiskAccess?: boolean;
|
|
74
|
+
readonly isExclusive?: boolean;
|
|
75
|
+
readonly isLongRunning?: boolean;
|
|
76
|
+
readonly name?: string | null;
|
|
77
|
+
lastExecutionTime?: string | null;
|
|
78
|
+
lastStartTime?: string | null;
|
|
79
|
+
trigger?: CommandTrigger;
|
|
80
|
+
suppressMessages?: boolean;
|
|
81
|
+
clientUserAgent?: string | null;
|
|
82
|
+
};
|
|
83
|
+
export type CommandPriority = 'normal' | 'high' | 'low';
|
|
84
|
+
export type CommandResource = {
|
|
85
|
+
id?: number;
|
|
86
|
+
name?: string | null;
|
|
87
|
+
commandName?: string | null;
|
|
88
|
+
message?: string | null;
|
|
89
|
+
body?: Command;
|
|
90
|
+
priority?: CommandPriority;
|
|
91
|
+
status?: CommandStatus;
|
|
92
|
+
result?: CommandResult;
|
|
93
|
+
queued?: string;
|
|
94
|
+
started?: string | null;
|
|
95
|
+
ended?: string | null;
|
|
96
|
+
duration?: string | null;
|
|
97
|
+
exception?: string | null;
|
|
98
|
+
trigger?: CommandTrigger;
|
|
99
|
+
clientUserAgent?: string | null;
|
|
100
|
+
stateChangeTime?: string | null;
|
|
101
|
+
sendUpdatesToClient?: boolean;
|
|
102
|
+
updateScheduledTask?: boolean;
|
|
103
|
+
lastExecutionTime?: string | null;
|
|
104
|
+
};
|
|
105
|
+
export type CommandResult = 'unknown' | 'successful' | 'unsuccessful';
|
|
106
|
+
export type CommandStatus = 'queued' | 'started' | 'completed' | 'failed' | 'aborted' | 'cancelled' | 'orphaned';
|
|
107
|
+
export type CommandTrigger = 'unspecified' | 'manual' | 'scheduled';
|
|
108
|
+
export type CustomFilterResource = {
|
|
109
|
+
id?: number;
|
|
110
|
+
type?: string | null;
|
|
111
|
+
label?: string | null;
|
|
112
|
+
filters?: Array<{
|
|
113
|
+
[key: string]: unknown;
|
|
114
|
+
}> | null;
|
|
115
|
+
};
|
|
116
|
+
export type CustomFormatBulkResource = {
|
|
117
|
+
ids?: Array<number> | null;
|
|
118
|
+
includeCustomFormatWhenRenaming?: boolean | null;
|
|
119
|
+
};
|
|
120
|
+
export type CustomFormatResource = {
|
|
121
|
+
id?: number;
|
|
122
|
+
name?: string | null;
|
|
123
|
+
includeCustomFormatWhenRenaming?: boolean | null;
|
|
124
|
+
specifications?: Array<CustomFormatSpecificationSchema> | null;
|
|
125
|
+
};
|
|
126
|
+
export type CustomFormatSpecificationSchema = {
|
|
127
|
+
id?: number;
|
|
128
|
+
name?: string | null;
|
|
129
|
+
implementation?: string | null;
|
|
130
|
+
implementationName?: string | null;
|
|
131
|
+
infoLink?: string | null;
|
|
132
|
+
negate?: boolean;
|
|
133
|
+
required?: boolean;
|
|
134
|
+
fields?: Array<Field> | null;
|
|
135
|
+
presets?: Array<CustomFormatSpecificationSchema> | null;
|
|
136
|
+
};
|
|
137
|
+
export type DatabaseType = 'sqLite' | 'postgreSQL';
|
|
138
|
+
export type DelayProfileResource = {
|
|
139
|
+
id?: number;
|
|
140
|
+
enableUsenet?: boolean;
|
|
141
|
+
enableTorrent?: boolean;
|
|
142
|
+
preferredProtocol?: DownloadProtocol;
|
|
143
|
+
usenetDelay?: number;
|
|
144
|
+
torrentDelay?: number;
|
|
145
|
+
bypassIfHighestQuality?: boolean;
|
|
146
|
+
bypassIfAboveCustomFormatScore?: boolean;
|
|
147
|
+
minimumCustomFormatScore?: number;
|
|
148
|
+
order?: number;
|
|
149
|
+
tags?: Array<number> | null;
|
|
150
|
+
};
|
|
151
|
+
export type DiskSpaceResource = {
|
|
152
|
+
id?: number;
|
|
153
|
+
path?: string | null;
|
|
154
|
+
label?: string | null;
|
|
155
|
+
freeSpace?: number;
|
|
156
|
+
totalSpace?: number;
|
|
157
|
+
};
|
|
158
|
+
export type DownloadClientBulkResource = {
|
|
159
|
+
ids?: Array<number> | null;
|
|
160
|
+
tags?: Array<number> | null;
|
|
161
|
+
applyTags?: ApplyTags;
|
|
162
|
+
enable?: boolean | null;
|
|
163
|
+
priority?: number | null;
|
|
164
|
+
removeCompletedDownloads?: boolean | null;
|
|
165
|
+
removeFailedDownloads?: boolean | null;
|
|
166
|
+
};
|
|
167
|
+
export type DownloadClientConfigResource = {
|
|
168
|
+
id?: number;
|
|
169
|
+
downloadClientWorkingFolders?: string | null;
|
|
170
|
+
enableCompletedDownloadHandling?: boolean;
|
|
171
|
+
autoRedownloadFailed?: boolean;
|
|
172
|
+
autoRedownloadFailedFromInteractiveSearch?: boolean;
|
|
173
|
+
};
|
|
174
|
+
export type DownloadClientResource = {
|
|
175
|
+
id?: number;
|
|
176
|
+
name?: string | null;
|
|
177
|
+
fields?: Array<Field> | null;
|
|
178
|
+
implementationName?: string | null;
|
|
179
|
+
implementation?: string | null;
|
|
180
|
+
configContract?: string | null;
|
|
181
|
+
infoLink?: string | null;
|
|
182
|
+
message?: ProviderMessage;
|
|
183
|
+
tags?: Array<number> | null;
|
|
184
|
+
presets?: Array<DownloadClientResource> | null;
|
|
185
|
+
enable?: boolean;
|
|
186
|
+
protocol?: DownloadProtocol;
|
|
187
|
+
priority?: number;
|
|
188
|
+
removeCompletedDownloads?: boolean;
|
|
189
|
+
removeFailedDownloads?: boolean;
|
|
190
|
+
};
|
|
191
|
+
export type DownloadProtocol = 'unknown' | 'usenet' | 'torrent';
|
|
192
|
+
export type EpisodeFileListResource = {
|
|
193
|
+
episodeFileIds?: Array<number> | null;
|
|
194
|
+
languages?: Array<Language> | null;
|
|
195
|
+
quality?: QualityModel;
|
|
196
|
+
sceneName?: string | null;
|
|
197
|
+
releaseGroup?: string | null;
|
|
198
|
+
};
|
|
199
|
+
export type EpisodeFileResource = {
|
|
200
|
+
id?: number;
|
|
201
|
+
seriesId?: number;
|
|
202
|
+
seasonNumber?: number;
|
|
203
|
+
relativePath?: string | null;
|
|
204
|
+
path?: string | null;
|
|
205
|
+
size?: number;
|
|
206
|
+
dateAdded?: string;
|
|
207
|
+
sceneName?: string | null;
|
|
208
|
+
releaseGroup?: string | null;
|
|
209
|
+
languages?: Array<Language> | null;
|
|
210
|
+
quality?: QualityModel;
|
|
211
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
212
|
+
customFormatScore?: number;
|
|
213
|
+
indexerFlags?: number | null;
|
|
214
|
+
releaseType?: ReleaseType;
|
|
215
|
+
mediaInfo?: MediaInfoResource;
|
|
216
|
+
qualityCutoffNotMet?: boolean;
|
|
217
|
+
};
|
|
218
|
+
export type EpisodeHistoryEventType = 'unknown' | 'grabbed' | 'seriesFolderImported' | 'downloadFolderImported' | 'downloadFailed' | 'episodeFileDeleted' | 'episodeFileRenamed' | 'downloadIgnored';
|
|
219
|
+
export type EpisodeResource = {
|
|
220
|
+
id?: number;
|
|
221
|
+
seriesId?: number;
|
|
222
|
+
tvdbId?: number;
|
|
223
|
+
episodeFileId?: number;
|
|
224
|
+
seasonNumber?: number;
|
|
225
|
+
episodeNumber?: number;
|
|
226
|
+
title?: string | null;
|
|
227
|
+
airDate?: string | null;
|
|
228
|
+
airDateUtc?: string | null;
|
|
229
|
+
lastSearchTime?: string | null;
|
|
230
|
+
runtime?: number;
|
|
231
|
+
finaleType?: string | null;
|
|
232
|
+
overview?: string | null;
|
|
233
|
+
episodeFile?: EpisodeFileResource;
|
|
234
|
+
hasFile?: boolean;
|
|
235
|
+
monitored?: boolean;
|
|
236
|
+
absoluteEpisodeNumber?: number | null;
|
|
237
|
+
sceneAbsoluteEpisodeNumber?: number | null;
|
|
238
|
+
sceneEpisodeNumber?: number | null;
|
|
239
|
+
sceneSeasonNumber?: number | null;
|
|
240
|
+
unverifiedSceneNumbering?: boolean;
|
|
241
|
+
endTime?: string | null;
|
|
242
|
+
grabDate?: string | null;
|
|
243
|
+
series?: SeriesResource;
|
|
244
|
+
images?: Array<MediaCover> | null;
|
|
245
|
+
};
|
|
246
|
+
export type EpisodeResourcePagingResource = {
|
|
247
|
+
page?: number;
|
|
248
|
+
pageSize?: number;
|
|
249
|
+
sortKey?: string | null;
|
|
250
|
+
sortDirection?: SortDirection;
|
|
251
|
+
totalRecords?: number;
|
|
252
|
+
records?: Array<EpisodeResource> | null;
|
|
253
|
+
};
|
|
254
|
+
export type EpisodeTitleRequiredType = 'always' | 'bulkSeasonReleases' | 'never';
|
|
255
|
+
export type EpisodesMonitoredResource = {
|
|
256
|
+
episodeIds?: Array<number> | null;
|
|
257
|
+
monitored?: boolean;
|
|
258
|
+
};
|
|
259
|
+
export type Field = {
|
|
260
|
+
order?: number;
|
|
261
|
+
name?: string | null;
|
|
262
|
+
label?: string | null;
|
|
263
|
+
unit?: string | null;
|
|
264
|
+
helpText?: string | null;
|
|
265
|
+
helpTextWarning?: string | null;
|
|
266
|
+
helpLink?: string | null;
|
|
267
|
+
value?: unknown;
|
|
268
|
+
type?: string | null;
|
|
269
|
+
advanced?: boolean;
|
|
270
|
+
selectOptions?: Array<SelectOption> | null;
|
|
271
|
+
selectOptionsProviderAction?: string | null;
|
|
272
|
+
section?: string | null;
|
|
273
|
+
hidden?: string | null;
|
|
274
|
+
privacy?: PrivacyLevel;
|
|
275
|
+
placeholder?: string | null;
|
|
276
|
+
isFloat?: boolean;
|
|
277
|
+
};
|
|
278
|
+
export type FileDateType = 'none' | 'localAirDate' | 'utcAirDate';
|
|
279
|
+
export type HealthCheckResult = 'ok' | 'notice' | 'warning' | 'error';
|
|
280
|
+
export type HealthResource = {
|
|
281
|
+
id?: number;
|
|
282
|
+
source?: string | null;
|
|
283
|
+
type?: HealthCheckResult;
|
|
284
|
+
message?: string | null;
|
|
285
|
+
wikiUrl?: HttpUri;
|
|
286
|
+
};
|
|
287
|
+
export type HistoryResource = {
|
|
288
|
+
id?: number;
|
|
289
|
+
episodeId?: number;
|
|
290
|
+
seriesId?: number;
|
|
291
|
+
sourceTitle?: string | null;
|
|
292
|
+
languages?: Array<Language> | null;
|
|
293
|
+
quality?: QualityModel;
|
|
294
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
295
|
+
customFormatScore?: number;
|
|
296
|
+
qualityCutoffNotMet?: boolean;
|
|
297
|
+
date?: string;
|
|
298
|
+
downloadId?: string | null;
|
|
299
|
+
eventType?: EpisodeHistoryEventType;
|
|
300
|
+
data?: {
|
|
301
|
+
[key: string]: string | null;
|
|
302
|
+
} | null;
|
|
303
|
+
episode?: EpisodeResource;
|
|
304
|
+
series?: SeriesResource;
|
|
305
|
+
};
|
|
306
|
+
export type HistoryResourcePagingResource = {
|
|
307
|
+
page?: number;
|
|
308
|
+
pageSize?: number;
|
|
309
|
+
sortKey?: string | null;
|
|
310
|
+
sortDirection?: SortDirection;
|
|
311
|
+
totalRecords?: number;
|
|
312
|
+
records?: Array<HistoryResource> | null;
|
|
313
|
+
};
|
|
314
|
+
export type HostConfigResource = {
|
|
315
|
+
id?: number;
|
|
316
|
+
bindAddress?: string | null;
|
|
317
|
+
port?: number;
|
|
318
|
+
sslPort?: number;
|
|
319
|
+
enableSsl?: boolean;
|
|
320
|
+
launchBrowser?: boolean;
|
|
321
|
+
authenticationMethod?: AuthenticationType;
|
|
322
|
+
authenticationRequired?: AuthenticationRequiredType;
|
|
323
|
+
analyticsEnabled?: boolean;
|
|
324
|
+
username?: string | null;
|
|
325
|
+
password?: string | null;
|
|
326
|
+
passwordConfirmation?: string | null;
|
|
327
|
+
logLevel?: string | null;
|
|
328
|
+
logSizeLimit?: number;
|
|
329
|
+
consoleLogLevel?: string | null;
|
|
330
|
+
branch?: string | null;
|
|
331
|
+
apiKey?: string | null;
|
|
332
|
+
sslCertPath?: string | null;
|
|
333
|
+
sslCertPassword?: string | null;
|
|
334
|
+
urlBase?: string | null;
|
|
335
|
+
instanceName?: string | null;
|
|
336
|
+
applicationUrl?: string | null;
|
|
337
|
+
updateAutomatically?: boolean;
|
|
338
|
+
updateMechanism?: UpdateMechanism;
|
|
339
|
+
updateScriptPath?: string | null;
|
|
340
|
+
proxyEnabled?: boolean;
|
|
341
|
+
proxyType?: ProxyType;
|
|
342
|
+
proxyHostname?: string | null;
|
|
343
|
+
proxyPort?: number;
|
|
344
|
+
proxyUsername?: string | null;
|
|
345
|
+
proxyPassword?: string | null;
|
|
346
|
+
proxyBypassFilter?: string | null;
|
|
347
|
+
proxyBypassLocalAddresses?: boolean;
|
|
348
|
+
certificateValidation?: CertificateValidationType;
|
|
349
|
+
backupFolder?: string | null;
|
|
350
|
+
backupInterval?: number;
|
|
351
|
+
backupRetention?: number;
|
|
352
|
+
trustCgnatIpAddresses?: boolean;
|
|
353
|
+
};
|
|
354
|
+
export type HttpUri = {
|
|
355
|
+
readonly fullUri?: string | null;
|
|
356
|
+
readonly scheme?: string | null;
|
|
357
|
+
readonly host?: string | null;
|
|
358
|
+
readonly port?: number | null;
|
|
359
|
+
readonly path?: string | null;
|
|
360
|
+
readonly query?: string | null;
|
|
361
|
+
readonly fragment?: string | null;
|
|
362
|
+
};
|
|
363
|
+
export type ImportListBulkResource = {
|
|
364
|
+
ids?: Array<number> | null;
|
|
365
|
+
tags?: Array<number> | null;
|
|
366
|
+
applyTags?: ApplyTags;
|
|
367
|
+
enableAutomaticAdd?: boolean | null;
|
|
368
|
+
rootFolderPath?: string | null;
|
|
369
|
+
qualityProfileId?: number | null;
|
|
370
|
+
};
|
|
371
|
+
export type ImportListConfigResource = {
|
|
372
|
+
id?: number;
|
|
373
|
+
listSyncLevel?: ListSyncLevelType;
|
|
374
|
+
listSyncTag?: number;
|
|
375
|
+
};
|
|
376
|
+
export type ImportListExclusionBulkResource = {
|
|
377
|
+
ids?: Array<number> | null;
|
|
378
|
+
};
|
|
379
|
+
export type ImportListExclusionResource = {
|
|
380
|
+
id?: number;
|
|
381
|
+
tvdbId?: number;
|
|
382
|
+
title?: string | null;
|
|
383
|
+
};
|
|
384
|
+
export type ImportListExclusionResourcePagingResource = {
|
|
385
|
+
page?: number;
|
|
386
|
+
pageSize?: number;
|
|
387
|
+
sortKey?: string | null;
|
|
388
|
+
sortDirection?: SortDirection;
|
|
389
|
+
totalRecords?: number;
|
|
390
|
+
records?: Array<ImportListExclusionResource> | null;
|
|
391
|
+
};
|
|
392
|
+
export type ImportListResource = {
|
|
393
|
+
id?: number;
|
|
394
|
+
name?: string | null;
|
|
395
|
+
fields?: Array<Field> | null;
|
|
396
|
+
implementationName?: string | null;
|
|
397
|
+
implementation?: string | null;
|
|
398
|
+
configContract?: string | null;
|
|
399
|
+
infoLink?: string | null;
|
|
400
|
+
message?: ProviderMessage;
|
|
401
|
+
tags?: Array<number> | null;
|
|
402
|
+
presets?: Array<ImportListResource> | null;
|
|
403
|
+
enableAutomaticAdd?: boolean;
|
|
404
|
+
searchForMissingEpisodes?: boolean;
|
|
405
|
+
shouldMonitor?: MonitorTypes;
|
|
406
|
+
monitorNewItems?: NewItemMonitorTypes;
|
|
407
|
+
rootFolderPath?: string | null;
|
|
408
|
+
qualityProfileId?: number;
|
|
409
|
+
seriesType?: SeriesTypes;
|
|
410
|
+
seasonFolder?: boolean;
|
|
411
|
+
listType?: ImportListType;
|
|
412
|
+
listOrder?: number;
|
|
413
|
+
minRefreshInterval?: string;
|
|
414
|
+
};
|
|
415
|
+
export type ImportListType = 'program' | 'plex' | 'trakt' | 'simkl' | 'other' | 'advanced';
|
|
416
|
+
export type ImportRejectionResource = {
|
|
417
|
+
reason?: string | null;
|
|
418
|
+
type?: RejectionType;
|
|
419
|
+
};
|
|
420
|
+
export type IndexerBulkResource = {
|
|
421
|
+
ids?: Array<number> | null;
|
|
422
|
+
tags?: Array<number> | null;
|
|
423
|
+
applyTags?: ApplyTags;
|
|
424
|
+
enableRss?: boolean | null;
|
|
425
|
+
enableAutomaticSearch?: boolean | null;
|
|
426
|
+
enableInteractiveSearch?: boolean | null;
|
|
427
|
+
priority?: number | null;
|
|
428
|
+
};
|
|
429
|
+
export type IndexerConfigResource = {
|
|
430
|
+
id?: number;
|
|
431
|
+
minimumAge?: number;
|
|
432
|
+
retention?: number;
|
|
433
|
+
maximumSize?: number;
|
|
434
|
+
rssSyncInterval?: number;
|
|
435
|
+
};
|
|
436
|
+
export type IndexerFlagResource = {
|
|
437
|
+
id?: number;
|
|
438
|
+
name?: string | null;
|
|
439
|
+
readonly nameLower?: string | null;
|
|
440
|
+
};
|
|
441
|
+
export type IndexerResource = {
|
|
442
|
+
id?: number;
|
|
443
|
+
name?: string | null;
|
|
444
|
+
fields?: Array<Field> | null;
|
|
445
|
+
implementationName?: string | null;
|
|
446
|
+
implementation?: string | null;
|
|
447
|
+
configContract?: string | null;
|
|
448
|
+
infoLink?: string | null;
|
|
449
|
+
message?: ProviderMessage;
|
|
450
|
+
tags?: Array<number> | null;
|
|
451
|
+
presets?: Array<IndexerResource> | null;
|
|
452
|
+
enableRss?: boolean;
|
|
453
|
+
enableAutomaticSearch?: boolean;
|
|
454
|
+
enableInteractiveSearch?: boolean;
|
|
455
|
+
supportsRss?: boolean;
|
|
456
|
+
supportsSearch?: boolean;
|
|
457
|
+
protocol?: DownloadProtocol;
|
|
458
|
+
priority?: number;
|
|
459
|
+
seasonSearchMaximumSingleEpisodeAge?: number;
|
|
460
|
+
downloadClientId?: number;
|
|
461
|
+
};
|
|
15
462
|
export type Language = {
|
|
16
463
|
id?: number;
|
|
17
464
|
name?: string | null;
|
|
18
465
|
};
|
|
466
|
+
export type LanguageProfileItemResource = {
|
|
467
|
+
id?: number;
|
|
468
|
+
language?: Language;
|
|
469
|
+
allowed?: boolean;
|
|
470
|
+
};
|
|
471
|
+
export type LanguageProfileResource = {
|
|
472
|
+
id?: number;
|
|
473
|
+
name?: string | null;
|
|
474
|
+
upgradeAllowed?: boolean;
|
|
475
|
+
cutoff?: Language;
|
|
476
|
+
languages?: Array<LanguageProfileItemResource> | null;
|
|
477
|
+
};
|
|
478
|
+
export type LanguageResource = {
|
|
479
|
+
id?: number;
|
|
480
|
+
name?: string | null;
|
|
481
|
+
readonly nameLower?: string | null;
|
|
482
|
+
};
|
|
483
|
+
export type ListSyncLevelType = 'disabled' | 'logOnly' | 'keepAndUnmonitor' | 'keepAndTag';
|
|
484
|
+
export type LocalizationLanguageResource = {
|
|
485
|
+
identifier?: string | null;
|
|
486
|
+
};
|
|
487
|
+
export type LocalizationResource = {
|
|
488
|
+
id?: number;
|
|
489
|
+
strings?: {
|
|
490
|
+
[key: string]: string | null;
|
|
491
|
+
} | null;
|
|
492
|
+
};
|
|
493
|
+
export type LogFileResource = {
|
|
494
|
+
id?: number;
|
|
495
|
+
filename?: string | null;
|
|
496
|
+
lastWriteTime?: string;
|
|
497
|
+
contentsUrl?: string | null;
|
|
498
|
+
downloadUrl?: string | null;
|
|
499
|
+
};
|
|
19
500
|
export type LogResource = {
|
|
20
501
|
id?: number;
|
|
21
502
|
time?: string;
|
|
22
503
|
exception?: string | null;
|
|
23
504
|
exceptionType?: string | null;
|
|
24
|
-
level
|
|
25
|
-
logger
|
|
26
|
-
message
|
|
505
|
+
level?: string | null;
|
|
506
|
+
logger?: string | null;
|
|
507
|
+
message?: string | null;
|
|
508
|
+
method?: string | null;
|
|
27
509
|
};
|
|
28
510
|
export type LogResourcePagingResource = {
|
|
29
511
|
page?: number;
|
|
@@ -33,21 +515,446 @@ export type LogResourcePagingResource = {
|
|
|
33
515
|
totalRecords?: number;
|
|
34
516
|
records?: Array<LogResource> | null;
|
|
35
517
|
};
|
|
518
|
+
export type ManualImportReprocessResource = {
|
|
519
|
+
id?: number;
|
|
520
|
+
path?: string | null;
|
|
521
|
+
seriesId?: number;
|
|
522
|
+
seasonNumber?: number | null;
|
|
523
|
+
episodes?: Array<EpisodeResource> | null;
|
|
524
|
+
episodeIds?: Array<number> | null;
|
|
525
|
+
quality?: QualityModel;
|
|
526
|
+
languages?: Array<Language> | null;
|
|
527
|
+
releaseGroup?: string | null;
|
|
528
|
+
downloadId?: string | null;
|
|
529
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
530
|
+
customFormatScore?: number;
|
|
531
|
+
indexerFlags?: number;
|
|
532
|
+
releaseType?: ReleaseType;
|
|
533
|
+
rejections?: Array<ImportRejectionResource> | null;
|
|
534
|
+
};
|
|
535
|
+
export type ManualImportResource = {
|
|
536
|
+
id?: number;
|
|
537
|
+
path?: string | null;
|
|
538
|
+
relativePath?: string | null;
|
|
539
|
+
folderName?: string | null;
|
|
540
|
+
name?: string | null;
|
|
541
|
+
size?: number;
|
|
542
|
+
series?: SeriesResource;
|
|
543
|
+
seasonNumber?: number | null;
|
|
544
|
+
episodes?: Array<EpisodeResource> | null;
|
|
545
|
+
episodeFileId?: number | null;
|
|
546
|
+
releaseGroup?: string | null;
|
|
547
|
+
quality?: QualityModel;
|
|
548
|
+
languages?: Array<Language> | null;
|
|
549
|
+
qualityWeight?: number;
|
|
550
|
+
downloadId?: string | null;
|
|
551
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
552
|
+
customFormatScore?: number;
|
|
553
|
+
indexerFlags?: number;
|
|
554
|
+
releaseType?: ReleaseType;
|
|
555
|
+
rejections?: Array<ImportRejectionResource> | null;
|
|
556
|
+
};
|
|
36
557
|
export type MediaCover = {
|
|
37
558
|
coverType?: MediaCoverTypes;
|
|
38
559
|
url?: string | null;
|
|
39
560
|
remoteUrl?: string | null;
|
|
40
561
|
};
|
|
41
562
|
export type MediaCoverTypes = 'unknown' | 'poster' | 'banner' | 'fanart' | 'screenshot' | 'headshot' | 'clearlogo';
|
|
563
|
+
export type MediaInfoResource = {
|
|
564
|
+
id?: number;
|
|
565
|
+
audioBitrate?: number;
|
|
566
|
+
audioChannels?: number;
|
|
567
|
+
audioCodec?: string | null;
|
|
568
|
+
audioLanguages?: string | null;
|
|
569
|
+
audioStreamCount?: number;
|
|
570
|
+
videoBitDepth?: number;
|
|
571
|
+
videoBitrate?: number;
|
|
572
|
+
videoCodec?: string | null;
|
|
573
|
+
videoFps?: number;
|
|
574
|
+
videoDynamicRange?: string | null;
|
|
575
|
+
videoDynamicRangeType?: string | null;
|
|
576
|
+
resolution?: string | null;
|
|
577
|
+
runTime?: string | null;
|
|
578
|
+
scanType?: string | null;
|
|
579
|
+
subtitles?: string | null;
|
|
580
|
+
};
|
|
581
|
+
export type MediaManagementConfigResource = {
|
|
582
|
+
id?: number;
|
|
583
|
+
autoUnmonitorPreviouslyDownloadedEpisodes?: boolean;
|
|
584
|
+
recycleBin?: string | null;
|
|
585
|
+
recycleBinCleanupDays?: number;
|
|
586
|
+
downloadPropersAndRepacks?: ProperDownloadTypes;
|
|
587
|
+
createEmptySeriesFolders?: boolean;
|
|
588
|
+
deleteEmptyFolders?: boolean;
|
|
589
|
+
fileDate?: FileDateType;
|
|
590
|
+
rescanAfterRefresh?: RescanAfterRefreshType;
|
|
591
|
+
setPermissionsLinux?: boolean;
|
|
592
|
+
chmodFolder?: string | null;
|
|
593
|
+
chownGroup?: string | null;
|
|
594
|
+
episodeTitleRequired?: EpisodeTitleRequiredType;
|
|
595
|
+
skipFreeSpaceCheckWhenImporting?: boolean;
|
|
596
|
+
minimumFreeSpaceWhenImporting?: number;
|
|
597
|
+
copyUsingHardlinks?: boolean;
|
|
598
|
+
useScriptImport?: boolean;
|
|
599
|
+
scriptImportPath?: string | null;
|
|
600
|
+
importExtraFiles?: boolean;
|
|
601
|
+
extraFileExtensions?: string | null;
|
|
602
|
+
enableMediaInfo?: boolean;
|
|
603
|
+
};
|
|
604
|
+
export type MetadataResource = {
|
|
605
|
+
id?: number;
|
|
606
|
+
name?: string | null;
|
|
607
|
+
fields?: Array<Field> | null;
|
|
608
|
+
implementationName?: string | null;
|
|
609
|
+
implementation?: string | null;
|
|
610
|
+
configContract?: string | null;
|
|
611
|
+
infoLink?: string | null;
|
|
612
|
+
message?: ProviderMessage;
|
|
613
|
+
tags?: Array<number> | null;
|
|
614
|
+
presets?: Array<MetadataResource> | null;
|
|
615
|
+
enable?: boolean;
|
|
616
|
+
};
|
|
42
617
|
export type MonitorTypes = 'unknown' | 'all' | 'future' | 'missing' | 'existing' | 'firstSeason' | 'lastSeason' | 'latestSeason' | 'pilot' | 'recent' | 'monitorSpecials' | 'unmonitorSpecials' | 'none' | 'skip';
|
|
618
|
+
export type MonitoringOptions = {
|
|
619
|
+
ignoreEpisodesWithFiles?: boolean;
|
|
620
|
+
ignoreEpisodesWithoutFiles?: boolean;
|
|
621
|
+
monitor?: MonitorTypes;
|
|
622
|
+
};
|
|
623
|
+
export type NamingConfigResource = {
|
|
624
|
+
id?: number;
|
|
625
|
+
renameEpisodes?: boolean;
|
|
626
|
+
replaceIllegalCharacters?: boolean;
|
|
627
|
+
colonReplacementFormat?: number;
|
|
628
|
+
customColonReplacementFormat?: string | null;
|
|
629
|
+
multiEpisodeStyle?: number;
|
|
630
|
+
standardEpisodeFormat?: string | null;
|
|
631
|
+
dailyEpisodeFormat?: string | null;
|
|
632
|
+
animeEpisodeFormat?: string | null;
|
|
633
|
+
seriesFolderFormat?: string | null;
|
|
634
|
+
seasonFolderFormat?: string | null;
|
|
635
|
+
specialsFolderFormat?: string | null;
|
|
636
|
+
};
|
|
43
637
|
export type NewItemMonitorTypes = 'all' | 'none';
|
|
638
|
+
export type NotificationResource = {
|
|
639
|
+
id?: number;
|
|
640
|
+
name?: string | null;
|
|
641
|
+
fields?: Array<Field> | null;
|
|
642
|
+
implementationName?: string | null;
|
|
643
|
+
implementation?: string | null;
|
|
644
|
+
configContract?: string | null;
|
|
645
|
+
infoLink?: string | null;
|
|
646
|
+
message?: ProviderMessage;
|
|
647
|
+
tags?: Array<number> | null;
|
|
648
|
+
presets?: Array<NotificationResource> | null;
|
|
649
|
+
link?: string | null;
|
|
650
|
+
onGrab?: boolean;
|
|
651
|
+
onDownload?: boolean;
|
|
652
|
+
onUpgrade?: boolean;
|
|
653
|
+
onImportComplete?: boolean;
|
|
654
|
+
onRename?: boolean;
|
|
655
|
+
onSeriesAdd?: boolean;
|
|
656
|
+
onSeriesDelete?: boolean;
|
|
657
|
+
onEpisodeFileDelete?: boolean;
|
|
658
|
+
onEpisodeFileDeleteForUpgrade?: boolean;
|
|
659
|
+
onHealthIssue?: boolean;
|
|
660
|
+
includeHealthWarnings?: boolean;
|
|
661
|
+
onHealthRestored?: boolean;
|
|
662
|
+
onApplicationUpdate?: boolean;
|
|
663
|
+
onManualInteractionRequired?: boolean;
|
|
664
|
+
supportsOnGrab?: boolean;
|
|
665
|
+
supportsOnDownload?: boolean;
|
|
666
|
+
supportsOnUpgrade?: boolean;
|
|
667
|
+
supportsOnImportComplete?: boolean;
|
|
668
|
+
supportsOnRename?: boolean;
|
|
669
|
+
supportsOnSeriesAdd?: boolean;
|
|
670
|
+
supportsOnSeriesDelete?: boolean;
|
|
671
|
+
supportsOnEpisodeFileDelete?: boolean;
|
|
672
|
+
supportsOnEpisodeFileDeleteForUpgrade?: boolean;
|
|
673
|
+
supportsOnHealthIssue?: boolean;
|
|
674
|
+
supportsOnHealthRestored?: boolean;
|
|
675
|
+
supportsOnApplicationUpdate?: boolean;
|
|
676
|
+
supportsOnManualInteractionRequired?: boolean;
|
|
677
|
+
testCommand?: string | null;
|
|
678
|
+
};
|
|
679
|
+
export type ParseResource = {
|
|
680
|
+
id?: number;
|
|
681
|
+
title?: string | null;
|
|
682
|
+
parsedEpisodeInfo?: ParsedEpisodeInfo;
|
|
683
|
+
series?: SeriesResource;
|
|
684
|
+
episodes?: Array<EpisodeResource> | null;
|
|
685
|
+
languages?: Array<Language> | null;
|
|
686
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
687
|
+
customFormatScore?: number;
|
|
688
|
+
};
|
|
689
|
+
export type ParsedEpisodeInfo = {
|
|
690
|
+
releaseTitle?: string | null;
|
|
691
|
+
seriesTitle?: string | null;
|
|
692
|
+
seriesTitleInfo?: SeriesTitleInfo;
|
|
693
|
+
quality?: QualityModel;
|
|
694
|
+
seasonNumber?: number;
|
|
695
|
+
episodeNumbers?: Array<number> | null;
|
|
696
|
+
absoluteEpisodeNumbers?: Array<number> | null;
|
|
697
|
+
specialAbsoluteEpisodeNumbers?: Array<number> | null;
|
|
698
|
+
airDate?: string | null;
|
|
699
|
+
languages?: Array<Language> | null;
|
|
700
|
+
fullSeason?: boolean;
|
|
701
|
+
isPartialSeason?: boolean;
|
|
702
|
+
isMultiSeason?: boolean;
|
|
703
|
+
isSeasonExtra?: boolean;
|
|
704
|
+
isSplitEpisode?: boolean;
|
|
705
|
+
isMiniSeries?: boolean;
|
|
706
|
+
special?: boolean;
|
|
707
|
+
releaseGroup?: string | null;
|
|
708
|
+
releaseHash?: string | null;
|
|
709
|
+
seasonPart?: number;
|
|
710
|
+
releaseTokens?: string | null;
|
|
711
|
+
dailyPart?: number | null;
|
|
712
|
+
readonly isDaily?: boolean;
|
|
713
|
+
readonly isAbsoluteNumbering?: boolean;
|
|
714
|
+
readonly isPossibleSpecialEpisode?: boolean;
|
|
715
|
+
readonly isPossibleSceneSeasonSpecial?: boolean;
|
|
716
|
+
releaseType?: ReleaseType;
|
|
717
|
+
};
|
|
44
718
|
export type PingResource = {
|
|
45
719
|
status?: string | null;
|
|
46
720
|
};
|
|
721
|
+
export type PrivacyLevel = 'normal' | 'password' | 'apiKey' | 'userName';
|
|
722
|
+
export type ProfileFormatItemResource = {
|
|
723
|
+
id?: number;
|
|
724
|
+
format?: number;
|
|
725
|
+
name?: string | null;
|
|
726
|
+
score?: number;
|
|
727
|
+
};
|
|
728
|
+
export type ProperDownloadTypes = 'preferAndUpgrade' | 'doNotUpgrade' | 'doNotPrefer';
|
|
729
|
+
export type ProviderMessage = {
|
|
730
|
+
message?: string | null;
|
|
731
|
+
type?: ProviderMessageType;
|
|
732
|
+
};
|
|
733
|
+
export type ProviderMessageType = 'info' | 'warning' | 'error';
|
|
734
|
+
export type ProxyType = 'http' | 'socks4' | 'socks5';
|
|
735
|
+
export type Quality = {
|
|
736
|
+
id?: number;
|
|
737
|
+
name?: string | null;
|
|
738
|
+
source?: QualitySource;
|
|
739
|
+
resolution?: number;
|
|
740
|
+
};
|
|
741
|
+
export type QualityDefinitionLimitsResource = {
|
|
742
|
+
min?: number;
|
|
743
|
+
max?: number;
|
|
744
|
+
};
|
|
745
|
+
export type QualityDefinitionResource = {
|
|
746
|
+
id?: number;
|
|
747
|
+
quality?: Quality;
|
|
748
|
+
title?: string | null;
|
|
749
|
+
weight?: number;
|
|
750
|
+
minSize?: number | null;
|
|
751
|
+
maxSize?: number | null;
|
|
752
|
+
preferredSize?: number | null;
|
|
753
|
+
};
|
|
754
|
+
export type QualityModel = {
|
|
755
|
+
quality?: Quality;
|
|
756
|
+
revision?: Revision;
|
|
757
|
+
};
|
|
758
|
+
export type QualityProfileQualityItemResource = {
|
|
759
|
+
id?: number;
|
|
760
|
+
name?: string | null;
|
|
761
|
+
quality?: Quality;
|
|
762
|
+
items?: Array<QualityProfileQualityItemResource> | null;
|
|
763
|
+
allowed?: boolean;
|
|
764
|
+
};
|
|
765
|
+
export type QualityProfileResource = {
|
|
766
|
+
id?: number;
|
|
767
|
+
name?: string | null;
|
|
768
|
+
upgradeAllowed?: boolean;
|
|
769
|
+
cutoff?: number;
|
|
770
|
+
items?: Array<QualityProfileQualityItemResource> | null;
|
|
771
|
+
minFormatScore?: number;
|
|
772
|
+
cutoffFormatScore?: number;
|
|
773
|
+
minUpgradeFormatScore?: number;
|
|
774
|
+
formatItems?: Array<ProfileFormatItemResource> | null;
|
|
775
|
+
};
|
|
776
|
+
export type QualitySource = 'unknown' | 'television' | 'televisionRaw' | 'web' | 'webRip' | 'dvd' | 'bluray' | 'blurayRaw';
|
|
777
|
+
export type QueueBulkResource = {
|
|
778
|
+
ids?: Array<number> | null;
|
|
779
|
+
};
|
|
780
|
+
export type QueueResource = {
|
|
781
|
+
id?: number;
|
|
782
|
+
seriesId?: number | null;
|
|
783
|
+
episodeId?: number | null;
|
|
784
|
+
seasonNumber?: number | null;
|
|
785
|
+
series?: SeriesResource;
|
|
786
|
+
episode?: EpisodeResource;
|
|
787
|
+
languages?: Array<Language> | null;
|
|
788
|
+
quality?: QualityModel;
|
|
789
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
790
|
+
customFormatScore?: number;
|
|
791
|
+
size?: number;
|
|
792
|
+
title?: string | null;
|
|
793
|
+
estimatedCompletionTime?: string | null;
|
|
794
|
+
added?: string | null;
|
|
795
|
+
status?: QueueStatus;
|
|
796
|
+
trackedDownloadStatus?: TrackedDownloadStatus;
|
|
797
|
+
trackedDownloadState?: TrackedDownloadState;
|
|
798
|
+
statusMessages?: Array<TrackedDownloadStatusMessage> | null;
|
|
799
|
+
errorMessage?: string | null;
|
|
800
|
+
downloadId?: string | null;
|
|
801
|
+
protocol?: DownloadProtocol;
|
|
802
|
+
downloadClient?: string | null;
|
|
803
|
+
downloadClientHasPostImportCategory?: boolean;
|
|
804
|
+
indexer?: string | null;
|
|
805
|
+
outputPath?: string | null;
|
|
806
|
+
episodeHasFile?: boolean;
|
|
807
|
+
/**
|
|
808
|
+
* @deprecated
|
|
809
|
+
*/
|
|
810
|
+
sizeleft?: number;
|
|
811
|
+
/**
|
|
812
|
+
* @deprecated
|
|
813
|
+
*/
|
|
814
|
+
timeleft?: string | null;
|
|
815
|
+
};
|
|
816
|
+
export type QueueResourcePagingResource = {
|
|
817
|
+
page?: number;
|
|
818
|
+
pageSize?: number;
|
|
819
|
+
sortKey?: string | null;
|
|
820
|
+
sortDirection?: SortDirection;
|
|
821
|
+
totalRecords?: number;
|
|
822
|
+
records?: Array<QueueResource> | null;
|
|
823
|
+
};
|
|
824
|
+
export type QueueStatus = 'unknown' | 'queued' | 'paused' | 'downloading' | 'completed' | 'failed' | 'warning' | 'delay' | 'downloadClientUnavailable' | 'fallback';
|
|
825
|
+
export type QueueStatusResource = {
|
|
826
|
+
id?: number;
|
|
827
|
+
totalCount?: number;
|
|
828
|
+
count?: number;
|
|
829
|
+
unknownCount?: number;
|
|
830
|
+
errors?: boolean;
|
|
831
|
+
warnings?: boolean;
|
|
832
|
+
unknownErrors?: boolean;
|
|
833
|
+
unknownWarnings?: boolean;
|
|
834
|
+
};
|
|
47
835
|
export type Ratings = {
|
|
48
836
|
votes?: number;
|
|
49
837
|
value?: number;
|
|
50
838
|
};
|
|
839
|
+
export type RejectionType = 'permanent' | 'temporary';
|
|
840
|
+
export type ReleaseEpisodeResource = {
|
|
841
|
+
id?: number;
|
|
842
|
+
seasonNumber?: number;
|
|
843
|
+
episodeNumber?: number;
|
|
844
|
+
absoluteEpisodeNumber?: number | null;
|
|
845
|
+
title?: string | null;
|
|
846
|
+
};
|
|
847
|
+
export type ReleaseProfileResource = {
|
|
848
|
+
id?: number;
|
|
849
|
+
name?: string | null;
|
|
850
|
+
enabled?: boolean;
|
|
851
|
+
required?: unknown;
|
|
852
|
+
ignored?: unknown;
|
|
853
|
+
indexerId?: number;
|
|
854
|
+
tags?: Array<number> | null;
|
|
855
|
+
};
|
|
856
|
+
export type ReleaseResource = {
|
|
857
|
+
id?: number;
|
|
858
|
+
guid?: string | null;
|
|
859
|
+
quality?: QualityModel;
|
|
860
|
+
qualityWeight?: number;
|
|
861
|
+
age?: number;
|
|
862
|
+
ageHours?: number;
|
|
863
|
+
ageMinutes?: number;
|
|
864
|
+
size?: number;
|
|
865
|
+
indexerId?: number;
|
|
866
|
+
indexer?: string | null;
|
|
867
|
+
releaseGroup?: string | null;
|
|
868
|
+
subGroup?: string | null;
|
|
869
|
+
releaseHash?: string | null;
|
|
870
|
+
title?: string | null;
|
|
871
|
+
fullSeason?: boolean;
|
|
872
|
+
sceneSource?: boolean;
|
|
873
|
+
seasonNumber?: number;
|
|
874
|
+
languages?: Array<Language> | null;
|
|
875
|
+
languageWeight?: number;
|
|
876
|
+
airDate?: string | null;
|
|
877
|
+
seriesTitle?: string | null;
|
|
878
|
+
episodeNumbers?: Array<number> | null;
|
|
879
|
+
absoluteEpisodeNumbers?: Array<number> | null;
|
|
880
|
+
mappedSeasonNumber?: number | null;
|
|
881
|
+
mappedEpisodeNumbers?: Array<number> | null;
|
|
882
|
+
mappedAbsoluteEpisodeNumbers?: Array<number> | null;
|
|
883
|
+
mappedSeriesId?: number | null;
|
|
884
|
+
mappedEpisodeInfo?: Array<ReleaseEpisodeResource> | null;
|
|
885
|
+
approved?: boolean;
|
|
886
|
+
temporarilyRejected?: boolean;
|
|
887
|
+
rejected?: boolean;
|
|
888
|
+
tvdbId?: number;
|
|
889
|
+
tvRageId?: number;
|
|
890
|
+
imdbId?: string | null;
|
|
891
|
+
rejections?: Array<string> | null;
|
|
892
|
+
publishDate?: string;
|
|
893
|
+
commentUrl?: string | null;
|
|
894
|
+
downloadUrl?: string | null;
|
|
895
|
+
infoUrl?: string | null;
|
|
896
|
+
episodeRequested?: boolean;
|
|
897
|
+
downloadAllowed?: boolean;
|
|
898
|
+
releaseWeight?: number;
|
|
899
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
900
|
+
customFormatScore?: number;
|
|
901
|
+
sceneMapping?: AlternateTitleResource;
|
|
902
|
+
magnetUrl?: string | null;
|
|
903
|
+
infoHash?: string | null;
|
|
904
|
+
seeders?: number | null;
|
|
905
|
+
leechers?: number | null;
|
|
906
|
+
protocol?: DownloadProtocol;
|
|
907
|
+
indexerFlags?: number;
|
|
908
|
+
isDaily?: boolean;
|
|
909
|
+
isAbsoluteNumbering?: boolean;
|
|
910
|
+
isPossibleSpecialEpisode?: boolean;
|
|
911
|
+
special?: boolean;
|
|
912
|
+
seriesId?: number | null;
|
|
913
|
+
episodeId?: number | null;
|
|
914
|
+
episodeIds?: Array<number> | null;
|
|
915
|
+
downloadClientId?: number | null;
|
|
916
|
+
downloadClient?: string | null;
|
|
917
|
+
shouldOverride?: boolean | null;
|
|
918
|
+
};
|
|
919
|
+
export type ReleaseType = 'unknown' | 'singleEpisode' | 'multiEpisode' | 'seasonPack';
|
|
920
|
+
export type RemotePathMappingResource = {
|
|
921
|
+
id?: number;
|
|
922
|
+
host?: string | null;
|
|
923
|
+
remotePath?: string | null;
|
|
924
|
+
localPath?: string | null;
|
|
925
|
+
};
|
|
926
|
+
export type RenameEpisodeResource = {
|
|
927
|
+
id?: number;
|
|
928
|
+
seriesId?: number;
|
|
929
|
+
seasonNumber?: number;
|
|
930
|
+
episodeNumbers?: Array<number> | null;
|
|
931
|
+
episodeFileId?: number;
|
|
932
|
+
existingPath?: string | null;
|
|
933
|
+
newPath?: string | null;
|
|
934
|
+
};
|
|
935
|
+
export type RescanAfterRefreshType = 'always' | 'afterManual' | 'never';
|
|
936
|
+
export type Revision = {
|
|
937
|
+
version?: number;
|
|
938
|
+
real?: number;
|
|
939
|
+
isRepack?: boolean;
|
|
940
|
+
};
|
|
941
|
+
export type RootFolderResource = {
|
|
942
|
+
id?: number;
|
|
943
|
+
path?: string | null;
|
|
944
|
+
accessible?: boolean;
|
|
945
|
+
freeSpace?: number | null;
|
|
946
|
+
unmappedFolders?: Array<UnmappedFolder> | null;
|
|
947
|
+
};
|
|
948
|
+
export type RuntimeMode = 'console' | 'service' | 'tray';
|
|
949
|
+
export type SeasonPassResource = {
|
|
950
|
+
series?: Array<SeasonPassSeriesResource> | null;
|
|
951
|
+
monitoringOptions?: MonitoringOptions;
|
|
952
|
+
};
|
|
953
|
+
export type SeasonPassSeriesResource = {
|
|
954
|
+
id?: number;
|
|
955
|
+
monitored?: boolean | null;
|
|
956
|
+
seasons?: Array<SeasonResource> | null;
|
|
957
|
+
};
|
|
51
958
|
export type SeasonResource = {
|
|
52
959
|
seasonNumber?: number;
|
|
53
960
|
monitored?: boolean;
|
|
@@ -64,6 +971,26 @@ export type SeasonStatisticsResource = {
|
|
|
64
971
|
releaseGroups?: Array<string> | null;
|
|
65
972
|
readonly percentOfEpisodes?: number;
|
|
66
973
|
};
|
|
974
|
+
export type SelectOption = {
|
|
975
|
+
value?: number;
|
|
976
|
+
name?: string | null;
|
|
977
|
+
order?: number;
|
|
978
|
+
hint?: string | null;
|
|
979
|
+
};
|
|
980
|
+
export type SeriesEditorResource = {
|
|
981
|
+
seriesIds?: Array<number> | null;
|
|
982
|
+
monitored?: boolean | null;
|
|
983
|
+
monitorNewItems?: NewItemMonitorTypes;
|
|
984
|
+
qualityProfileId?: number | null;
|
|
985
|
+
seriesType?: SeriesTypes;
|
|
986
|
+
seasonFolder?: boolean | null;
|
|
987
|
+
rootFolderPath?: string | null;
|
|
988
|
+
tags?: Array<number> | null;
|
|
989
|
+
applyTags?: ApplyTags;
|
|
990
|
+
moveFiles?: boolean;
|
|
991
|
+
deleteFiles?: boolean;
|
|
992
|
+
addImportListExclusion?: boolean;
|
|
993
|
+
};
|
|
67
994
|
export type SeriesResource = {
|
|
68
995
|
id?: number;
|
|
69
996
|
title?: string | null;
|
|
@@ -93,8 +1020,6 @@ export type SeriesResource = {
|
|
|
93
1020
|
tvRageId?: number;
|
|
94
1021
|
tvMazeId?: number;
|
|
95
1022
|
tmdbId?: number;
|
|
96
|
-
malIds?: Array<number> | null;
|
|
97
|
-
aniListIds?: Array<number> | null;
|
|
98
1023
|
firstAired?: string | null;
|
|
99
1024
|
lastAired?: string | null;
|
|
100
1025
|
seriesType?: SeriesTypes;
|
|
@@ -111,6 +1036,10 @@ export type SeriesResource = {
|
|
|
111
1036
|
ratings?: Ratings;
|
|
112
1037
|
statistics?: SeriesStatisticsResource;
|
|
113
1038
|
episodesChanged?: boolean | null;
|
|
1039
|
+
/**
|
|
1040
|
+
* @deprecated
|
|
1041
|
+
*/
|
|
1042
|
+
readonly languageProfileId?: number;
|
|
114
1043
|
};
|
|
115
1044
|
export type SeriesStatisticsResource = {
|
|
116
1045
|
seasonCount?: number;
|
|
@@ -122,33 +1051,162 @@ export type SeriesStatisticsResource = {
|
|
|
122
1051
|
readonly percentOfEpisodes?: number;
|
|
123
1052
|
};
|
|
124
1053
|
export type SeriesStatusType = 'continuing' | 'ended' | 'upcoming' | 'deleted';
|
|
1054
|
+
export type SeriesTitleInfo = {
|
|
1055
|
+
title?: string | null;
|
|
1056
|
+
titleWithoutYear?: string | null;
|
|
1057
|
+
year?: number;
|
|
1058
|
+
allTitles?: Array<string> | null;
|
|
1059
|
+
};
|
|
125
1060
|
export type SeriesTypes = 'standard' | 'daily' | 'anime';
|
|
126
1061
|
export type SortDirection = 'default' | 'ascending' | 'descending';
|
|
127
|
-
export type
|
|
128
|
-
|
|
129
|
-
|
|
1062
|
+
export type SystemResource = {
|
|
1063
|
+
appName?: string | null;
|
|
1064
|
+
instanceName?: string | null;
|
|
1065
|
+
version?: string | null;
|
|
1066
|
+
buildTime?: string;
|
|
1067
|
+
isDebug?: boolean;
|
|
1068
|
+
isProduction?: boolean;
|
|
1069
|
+
isAdmin?: boolean;
|
|
1070
|
+
isUserInteractive?: boolean;
|
|
1071
|
+
startupPath?: string | null;
|
|
1072
|
+
appData?: string | null;
|
|
1073
|
+
osName?: string | null;
|
|
1074
|
+
osVersion?: string | null;
|
|
1075
|
+
isNetCore?: boolean;
|
|
1076
|
+
isLinux?: boolean;
|
|
1077
|
+
isOsx?: boolean;
|
|
1078
|
+
isWindows?: boolean;
|
|
1079
|
+
isDocker?: boolean;
|
|
1080
|
+
mode?: RuntimeMode;
|
|
1081
|
+
branch?: string | null;
|
|
1082
|
+
authentication?: AuthenticationType;
|
|
1083
|
+
sqliteVersion?: string | null;
|
|
1084
|
+
migrationVersion?: number;
|
|
1085
|
+
urlBase?: string | null;
|
|
1086
|
+
runtimeVersion?: string | null;
|
|
1087
|
+
runtimeName?: string | null;
|
|
1088
|
+
startTime?: string;
|
|
1089
|
+
packageVersion?: string | null;
|
|
1090
|
+
packageAuthor?: string | null;
|
|
1091
|
+
packageUpdateMechanism?: UpdateMechanism;
|
|
1092
|
+
packageUpdateMechanismMessage?: string | null;
|
|
1093
|
+
databaseVersion?: string | null;
|
|
1094
|
+
databaseType?: DatabaseType;
|
|
130
1095
|
};
|
|
131
|
-
export type
|
|
132
|
-
export type UpdateResource = {
|
|
1096
|
+
export type TagDetailsResource = {
|
|
133
1097
|
id?: number;
|
|
134
|
-
|
|
135
|
-
|
|
1098
|
+
label?: string | null;
|
|
1099
|
+
delayProfileIds?: Array<number> | null;
|
|
1100
|
+
importListIds?: Array<number> | null;
|
|
1101
|
+
notificationIds?: Array<number> | null;
|
|
1102
|
+
restrictionIds?: Array<number> | null;
|
|
1103
|
+
indexerIds?: Array<number> | null;
|
|
1104
|
+
downloadClientIds?: Array<number> | null;
|
|
1105
|
+
autoTagIds?: Array<number> | null;
|
|
1106
|
+
seriesIds?: Array<number> | null;
|
|
1107
|
+
};
|
|
1108
|
+
export type TagResource = {
|
|
1109
|
+
id?: number;
|
|
1110
|
+
label?: string | null;
|
|
1111
|
+
};
|
|
1112
|
+
export type TaskResource = {
|
|
1113
|
+
id?: number;
|
|
1114
|
+
name?: string | null;
|
|
1115
|
+
taskName?: string | null;
|
|
1116
|
+
interval?: number;
|
|
1117
|
+
lastExecution?: string;
|
|
1118
|
+
lastStartTime?: string;
|
|
1119
|
+
nextExecution?: string;
|
|
1120
|
+
readonly lastDuration?: string;
|
|
1121
|
+
};
|
|
1122
|
+
export type TrackedDownloadState = 'downloading' | 'importBlocked' | 'importPending' | 'importing' | 'imported' | 'failedPending' | 'failed' | 'ignored';
|
|
1123
|
+
export type TrackedDownloadStatus = 'ok' | 'warning' | 'error';
|
|
1124
|
+
export type TrackedDownloadStatusMessage = {
|
|
1125
|
+
title?: string | null;
|
|
1126
|
+
messages?: Array<string> | null;
|
|
1127
|
+
};
|
|
1128
|
+
export type UiConfigResource = {
|
|
1129
|
+
id?: number;
|
|
1130
|
+
firstDayOfWeek?: number;
|
|
1131
|
+
calendarWeekColumnHeader?: string | null;
|
|
1132
|
+
shortDateFormat?: string | null;
|
|
1133
|
+
longDateFormat?: string | null;
|
|
1134
|
+
timeFormat?: string | null;
|
|
1135
|
+
showRelativeDates?: boolean;
|
|
1136
|
+
enableColorImpairedMode?: boolean;
|
|
1137
|
+
theme?: string | null;
|
|
1138
|
+
uiLanguage?: number;
|
|
1139
|
+
};
|
|
1140
|
+
export type UnmappedFolder = {
|
|
1141
|
+
name?: string | null;
|
|
1142
|
+
path?: string | null;
|
|
1143
|
+
relativePath?: string | null;
|
|
1144
|
+
};
|
|
1145
|
+
export type UpdateChanges = {
|
|
1146
|
+
new?: Array<string> | null;
|
|
1147
|
+
fixed?: Array<string> | null;
|
|
1148
|
+
};
|
|
1149
|
+
export type UpdateMechanism = 'builtIn' | 'script' | 'external' | 'apt' | 'docker';
|
|
1150
|
+
export type UpdateResource = {
|
|
1151
|
+
id?: number;
|
|
1152
|
+
version?: string | null;
|
|
1153
|
+
branch?: string | null;
|
|
136
1154
|
releaseDate?: string;
|
|
137
|
-
fileName
|
|
138
|
-
url
|
|
1155
|
+
fileName?: string | null;
|
|
1156
|
+
url?: string | null;
|
|
139
1157
|
installed?: boolean;
|
|
140
1158
|
installedOn?: string | null;
|
|
141
1159
|
installable?: boolean;
|
|
142
1160
|
latest?: boolean;
|
|
143
|
-
changes
|
|
144
|
-
hash
|
|
1161
|
+
changes?: UpdateChanges;
|
|
1162
|
+
hash?: string | null;
|
|
145
1163
|
};
|
|
146
|
-
export type
|
|
1164
|
+
export type CommandWritable = {
|
|
1165
|
+
sendUpdatesToClient?: boolean;
|
|
1166
|
+
lastExecutionTime?: string | null;
|
|
1167
|
+
lastStartTime?: string | null;
|
|
1168
|
+
trigger?: CommandTrigger;
|
|
1169
|
+
suppressMessages?: boolean;
|
|
1170
|
+
clientUserAgent?: string | null;
|
|
1171
|
+
};
|
|
1172
|
+
export type HealthResourceWritable = {
|
|
147
1173
|
id?: number;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
1174
|
+
source?: string | null;
|
|
1175
|
+
type?: HealthCheckResult;
|
|
1176
|
+
message?: string | null;
|
|
1177
|
+
};
|
|
1178
|
+
export type IndexerFlagResourceWritable = {
|
|
1179
|
+
id?: number;
|
|
1180
|
+
name?: string | null;
|
|
1181
|
+
};
|
|
1182
|
+
export type LanguageResourceWritable = {
|
|
1183
|
+
id?: number;
|
|
1184
|
+
name?: string | null;
|
|
1185
|
+
};
|
|
1186
|
+
export type ParsedEpisodeInfoWritable = {
|
|
1187
|
+
releaseTitle?: string | null;
|
|
1188
|
+
seriesTitle?: string | null;
|
|
1189
|
+
seriesTitleInfo?: SeriesTitleInfo;
|
|
1190
|
+
quality?: QualityModel;
|
|
1191
|
+
seasonNumber?: number;
|
|
1192
|
+
episodeNumbers?: Array<number> | null;
|
|
1193
|
+
absoluteEpisodeNumbers?: Array<number> | null;
|
|
1194
|
+
specialAbsoluteEpisodeNumbers?: Array<number> | null;
|
|
1195
|
+
airDate?: string | null;
|
|
1196
|
+
languages?: Array<Language> | null;
|
|
1197
|
+
fullSeason?: boolean;
|
|
1198
|
+
isPartialSeason?: boolean;
|
|
1199
|
+
isMultiSeason?: boolean;
|
|
1200
|
+
isSeasonExtra?: boolean;
|
|
1201
|
+
isSplitEpisode?: boolean;
|
|
1202
|
+
isMiniSeries?: boolean;
|
|
1203
|
+
special?: boolean;
|
|
1204
|
+
releaseGroup?: string | null;
|
|
1205
|
+
releaseHash?: string | null;
|
|
1206
|
+
seasonPart?: number;
|
|
1207
|
+
releaseTokens?: string | null;
|
|
1208
|
+
dailyPart?: number | null;
|
|
1209
|
+
releaseType?: ReleaseType;
|
|
152
1210
|
};
|
|
153
1211
|
export type SeasonStatisticsResourceWritable = {
|
|
154
1212
|
nextAiring?: string | null;
|
|
@@ -187,8 +1245,6 @@ export type SeriesResourceWritable = {
|
|
|
187
1245
|
tvRageId?: number;
|
|
188
1246
|
tvMazeId?: number;
|
|
189
1247
|
tmdbId?: number;
|
|
190
|
-
malIds?: Array<number> | null;
|
|
191
|
-
aniListIds?: Array<number> | null;
|
|
192
1248
|
firstAired?: string | null;
|
|
193
1249
|
lastAired?: string | null;
|
|
194
1250
|
seriesType?: SeriesTypes;
|
|
@@ -214,135 +1270,2963 @@ export type SeriesStatisticsResourceWritable = {
|
|
|
214
1270
|
sizeOnDisk?: number;
|
|
215
1271
|
releaseGroups?: Array<string> | null;
|
|
216
1272
|
};
|
|
217
|
-
export type
|
|
1273
|
+
export type TaskResourceWritable = {
|
|
1274
|
+
id?: number;
|
|
1275
|
+
name?: string | null;
|
|
1276
|
+
taskName?: string | null;
|
|
1277
|
+
interval?: number;
|
|
1278
|
+
lastExecution?: string;
|
|
1279
|
+
lastStartTime?: string;
|
|
1280
|
+
nextExecution?: string;
|
|
1281
|
+
};
|
|
1282
|
+
export type GetApiData = {
|
|
1283
|
+
body?: never;
|
|
1284
|
+
path?: never;
|
|
1285
|
+
query?: never;
|
|
1286
|
+
url: '/api';
|
|
1287
|
+
};
|
|
1288
|
+
export type GetApiResponses = {
|
|
1289
|
+
/**
|
|
1290
|
+
* OK
|
|
1291
|
+
*/
|
|
1292
|
+
200: unknown;
|
|
1293
|
+
};
|
|
1294
|
+
export type GetLoginData = {
|
|
1295
|
+
body?: never;
|
|
1296
|
+
path?: never;
|
|
1297
|
+
query?: never;
|
|
1298
|
+
url: '/login';
|
|
1299
|
+
};
|
|
1300
|
+
export type GetLoginResponses = {
|
|
1301
|
+
/**
|
|
1302
|
+
* OK
|
|
1303
|
+
*/
|
|
1304
|
+
200: unknown;
|
|
1305
|
+
};
|
|
1306
|
+
export type PostLoginData = {
|
|
1307
|
+
body?: {
|
|
1308
|
+
username?: string;
|
|
1309
|
+
password?: string;
|
|
1310
|
+
rememberMe?: string;
|
|
1311
|
+
};
|
|
1312
|
+
path?: never;
|
|
1313
|
+
query?: {
|
|
1314
|
+
returnUrl?: string;
|
|
1315
|
+
};
|
|
1316
|
+
url: '/login';
|
|
1317
|
+
};
|
|
1318
|
+
export type PostLoginResponses = {
|
|
1319
|
+
/**
|
|
1320
|
+
* OK
|
|
1321
|
+
*/
|
|
1322
|
+
200: unknown;
|
|
1323
|
+
};
|
|
1324
|
+
export type GetLogoutData = {
|
|
1325
|
+
body?: never;
|
|
1326
|
+
path?: never;
|
|
1327
|
+
query?: never;
|
|
1328
|
+
url: '/logout';
|
|
1329
|
+
};
|
|
1330
|
+
export type GetLogoutResponses = {
|
|
1331
|
+
/**
|
|
1332
|
+
* OK
|
|
1333
|
+
*/
|
|
1334
|
+
200: unknown;
|
|
1335
|
+
};
|
|
1336
|
+
export type GetApiV3AutotaggingData = {
|
|
1337
|
+
body?: never;
|
|
1338
|
+
path?: never;
|
|
1339
|
+
query?: never;
|
|
1340
|
+
url: '/api/v3/autotagging';
|
|
1341
|
+
};
|
|
1342
|
+
export type GetApiV3AutotaggingResponses = {
|
|
1343
|
+
/**
|
|
1344
|
+
* OK
|
|
1345
|
+
*/
|
|
1346
|
+
200: Array<AutoTaggingResource>;
|
|
1347
|
+
};
|
|
1348
|
+
export type GetApiV3AutotaggingResponse = GetApiV3AutotaggingResponses[keyof GetApiV3AutotaggingResponses];
|
|
1349
|
+
export type PostApiV3AutotaggingData = {
|
|
1350
|
+
body?: AutoTaggingResource;
|
|
1351
|
+
path?: never;
|
|
1352
|
+
query?: never;
|
|
1353
|
+
url: '/api/v3/autotagging';
|
|
1354
|
+
};
|
|
1355
|
+
export type PostApiV3AutotaggingResponses = {
|
|
1356
|
+
/**
|
|
1357
|
+
* OK
|
|
1358
|
+
*/
|
|
1359
|
+
200: AutoTaggingResource;
|
|
1360
|
+
};
|
|
1361
|
+
export type PostApiV3AutotaggingResponse = PostApiV3AutotaggingResponses[keyof PostApiV3AutotaggingResponses];
|
|
1362
|
+
export type DeleteApiV3AutotaggingByIdData = {
|
|
1363
|
+
body?: never;
|
|
1364
|
+
path: {
|
|
1365
|
+
id: number;
|
|
1366
|
+
};
|
|
1367
|
+
query?: never;
|
|
1368
|
+
url: '/api/v3/autotagging/{id}';
|
|
1369
|
+
};
|
|
1370
|
+
export type DeleteApiV3AutotaggingByIdResponses = {
|
|
1371
|
+
/**
|
|
1372
|
+
* OK
|
|
1373
|
+
*/
|
|
1374
|
+
200: unknown;
|
|
1375
|
+
};
|
|
1376
|
+
export type GetApiV3AutotaggingByIdData = {
|
|
1377
|
+
body?: never;
|
|
1378
|
+
path: {
|
|
1379
|
+
id: number;
|
|
1380
|
+
};
|
|
1381
|
+
query?: never;
|
|
1382
|
+
url: '/api/v3/autotagging/{id}';
|
|
1383
|
+
};
|
|
1384
|
+
export type GetApiV3AutotaggingByIdResponses = {
|
|
1385
|
+
/**
|
|
1386
|
+
* OK
|
|
1387
|
+
*/
|
|
1388
|
+
200: AutoTaggingResource;
|
|
1389
|
+
};
|
|
1390
|
+
export type GetApiV3AutotaggingByIdResponse = GetApiV3AutotaggingByIdResponses[keyof GetApiV3AutotaggingByIdResponses];
|
|
1391
|
+
export type PutApiV3AutotaggingByIdData = {
|
|
1392
|
+
body?: AutoTaggingResource;
|
|
1393
|
+
path: {
|
|
1394
|
+
id: string;
|
|
1395
|
+
};
|
|
1396
|
+
query?: never;
|
|
1397
|
+
url: '/api/v3/autotagging/{id}';
|
|
1398
|
+
};
|
|
1399
|
+
export type PutApiV3AutotaggingByIdResponses = {
|
|
1400
|
+
/**
|
|
1401
|
+
* OK
|
|
1402
|
+
*/
|
|
1403
|
+
200: AutoTaggingResource;
|
|
1404
|
+
};
|
|
1405
|
+
export type PutApiV3AutotaggingByIdResponse = PutApiV3AutotaggingByIdResponses[keyof PutApiV3AutotaggingByIdResponses];
|
|
1406
|
+
export type GetApiV3AutotaggingSchemaData = {
|
|
1407
|
+
body?: never;
|
|
1408
|
+
path?: never;
|
|
1409
|
+
query?: never;
|
|
1410
|
+
url: '/api/v3/autotagging/schema';
|
|
1411
|
+
};
|
|
1412
|
+
export type GetApiV3AutotaggingSchemaResponses = {
|
|
1413
|
+
/**
|
|
1414
|
+
* OK
|
|
1415
|
+
*/
|
|
1416
|
+
200: unknown;
|
|
1417
|
+
};
|
|
1418
|
+
export type GetApiV3SystemBackupData = {
|
|
1419
|
+
body?: never;
|
|
1420
|
+
path?: never;
|
|
1421
|
+
query?: never;
|
|
1422
|
+
url: '/api/v3/system/backup';
|
|
1423
|
+
};
|
|
1424
|
+
export type GetApiV3SystemBackupResponses = {
|
|
1425
|
+
/**
|
|
1426
|
+
* OK
|
|
1427
|
+
*/
|
|
1428
|
+
200: Array<BackupResource>;
|
|
1429
|
+
};
|
|
1430
|
+
export type GetApiV3SystemBackupResponse = GetApiV3SystemBackupResponses[keyof GetApiV3SystemBackupResponses];
|
|
1431
|
+
export type DeleteApiV3SystemBackupByIdData = {
|
|
1432
|
+
body?: never;
|
|
1433
|
+
path: {
|
|
1434
|
+
id: number;
|
|
1435
|
+
};
|
|
1436
|
+
query?: never;
|
|
1437
|
+
url: '/api/v3/system/backup/{id}';
|
|
1438
|
+
};
|
|
1439
|
+
export type DeleteApiV3SystemBackupByIdResponses = {
|
|
1440
|
+
/**
|
|
1441
|
+
* OK
|
|
1442
|
+
*/
|
|
1443
|
+
200: unknown;
|
|
1444
|
+
};
|
|
1445
|
+
export type PostApiV3SystemBackupRestoreByIdData = {
|
|
1446
|
+
body?: never;
|
|
1447
|
+
path: {
|
|
1448
|
+
id: number;
|
|
1449
|
+
};
|
|
1450
|
+
query?: never;
|
|
1451
|
+
url: '/api/v3/system/backup/restore/{id}';
|
|
1452
|
+
};
|
|
1453
|
+
export type PostApiV3SystemBackupRestoreByIdResponses = {
|
|
1454
|
+
/**
|
|
1455
|
+
* OK
|
|
1456
|
+
*/
|
|
1457
|
+
200: unknown;
|
|
1458
|
+
};
|
|
1459
|
+
export type PostApiV3SystemBackupRestoreUploadData = {
|
|
1460
|
+
body?: never;
|
|
1461
|
+
path?: never;
|
|
1462
|
+
query?: never;
|
|
1463
|
+
url: '/api/v3/system/backup/restore/upload';
|
|
1464
|
+
};
|
|
1465
|
+
export type PostApiV3SystemBackupRestoreUploadResponses = {
|
|
1466
|
+
/**
|
|
1467
|
+
* OK
|
|
1468
|
+
*/
|
|
1469
|
+
200: unknown;
|
|
1470
|
+
};
|
|
1471
|
+
export type GetApiV3BlocklistData = {
|
|
1472
|
+
body?: never;
|
|
1473
|
+
path?: never;
|
|
1474
|
+
query?: {
|
|
1475
|
+
page?: number;
|
|
1476
|
+
pageSize?: number;
|
|
1477
|
+
sortKey?: string;
|
|
1478
|
+
sortDirection?: SortDirection;
|
|
1479
|
+
seriesIds?: Array<number>;
|
|
1480
|
+
protocols?: Array<DownloadProtocol>;
|
|
1481
|
+
};
|
|
1482
|
+
url: '/api/v3/blocklist';
|
|
1483
|
+
};
|
|
1484
|
+
export type GetApiV3BlocklistResponses = {
|
|
1485
|
+
/**
|
|
1486
|
+
* OK
|
|
1487
|
+
*/
|
|
1488
|
+
200: BlocklistResourcePagingResource;
|
|
1489
|
+
};
|
|
1490
|
+
export type GetApiV3BlocklistResponse = GetApiV3BlocklistResponses[keyof GetApiV3BlocklistResponses];
|
|
1491
|
+
export type DeleteApiV3BlocklistByIdData = {
|
|
1492
|
+
body?: never;
|
|
1493
|
+
path: {
|
|
1494
|
+
id: number;
|
|
1495
|
+
};
|
|
1496
|
+
query?: never;
|
|
1497
|
+
url: '/api/v3/blocklist/{id}';
|
|
1498
|
+
};
|
|
1499
|
+
export type DeleteApiV3BlocklistByIdResponses = {
|
|
1500
|
+
/**
|
|
1501
|
+
* OK
|
|
1502
|
+
*/
|
|
1503
|
+
200: unknown;
|
|
1504
|
+
};
|
|
1505
|
+
export type DeleteApiV3BlocklistBulkData = {
|
|
1506
|
+
body?: BlocklistBulkResource;
|
|
1507
|
+
path?: never;
|
|
1508
|
+
query?: never;
|
|
1509
|
+
url: '/api/v3/blocklist/bulk';
|
|
1510
|
+
};
|
|
1511
|
+
export type DeleteApiV3BlocklistBulkResponses = {
|
|
1512
|
+
/**
|
|
1513
|
+
* OK
|
|
1514
|
+
*/
|
|
1515
|
+
200: unknown;
|
|
1516
|
+
};
|
|
1517
|
+
export type GetApiV3CalendarData = {
|
|
1518
|
+
body?: never;
|
|
1519
|
+
path?: never;
|
|
1520
|
+
query?: {
|
|
1521
|
+
start?: string;
|
|
1522
|
+
end?: string;
|
|
1523
|
+
unmonitored?: boolean;
|
|
1524
|
+
includeSeries?: boolean;
|
|
1525
|
+
includeEpisodeFile?: boolean;
|
|
1526
|
+
includeEpisodeImages?: boolean;
|
|
1527
|
+
tags?: string;
|
|
1528
|
+
};
|
|
1529
|
+
url: '/api/v3/calendar';
|
|
1530
|
+
};
|
|
1531
|
+
export type GetApiV3CalendarResponses = {
|
|
1532
|
+
/**
|
|
1533
|
+
* OK
|
|
1534
|
+
*/
|
|
1535
|
+
200: Array<EpisodeResource>;
|
|
1536
|
+
};
|
|
1537
|
+
export type GetApiV3CalendarResponse = GetApiV3CalendarResponses[keyof GetApiV3CalendarResponses];
|
|
1538
|
+
export type GetApiV3CalendarByIdData = {
|
|
1539
|
+
body?: never;
|
|
1540
|
+
path: {
|
|
1541
|
+
id: number;
|
|
1542
|
+
};
|
|
1543
|
+
query?: never;
|
|
1544
|
+
url: '/api/v3/calendar/{id}';
|
|
1545
|
+
};
|
|
1546
|
+
export type GetApiV3CalendarByIdResponses = {
|
|
1547
|
+
/**
|
|
1548
|
+
* OK
|
|
1549
|
+
*/
|
|
1550
|
+
200: EpisodeResource;
|
|
1551
|
+
};
|
|
1552
|
+
export type GetApiV3CalendarByIdResponse = GetApiV3CalendarByIdResponses[keyof GetApiV3CalendarByIdResponses];
|
|
1553
|
+
export type GetFeedV3CalendarSonarrIcsData = {
|
|
1554
|
+
body?: never;
|
|
1555
|
+
path?: never;
|
|
1556
|
+
query?: {
|
|
1557
|
+
pastDays?: number;
|
|
1558
|
+
futureDays?: number;
|
|
1559
|
+
tags?: string;
|
|
1560
|
+
unmonitored?: boolean;
|
|
1561
|
+
premieresOnly?: boolean;
|
|
1562
|
+
asAllDay?: boolean;
|
|
1563
|
+
};
|
|
1564
|
+
url: '/feed/v3/calendar/sonarr.ics';
|
|
1565
|
+
};
|
|
1566
|
+
export type GetFeedV3CalendarSonarrIcsResponses = {
|
|
1567
|
+
/**
|
|
1568
|
+
* OK
|
|
1569
|
+
*/
|
|
1570
|
+
200: unknown;
|
|
1571
|
+
};
|
|
1572
|
+
export type GetApiV3CommandData = {
|
|
1573
|
+
body?: never;
|
|
1574
|
+
path?: never;
|
|
1575
|
+
query?: never;
|
|
1576
|
+
url: '/api/v3/command';
|
|
1577
|
+
};
|
|
1578
|
+
export type GetApiV3CommandResponses = {
|
|
1579
|
+
/**
|
|
1580
|
+
* OK
|
|
1581
|
+
*/
|
|
1582
|
+
200: Array<CommandResource>;
|
|
1583
|
+
};
|
|
1584
|
+
export type GetApiV3CommandResponse = GetApiV3CommandResponses[keyof GetApiV3CommandResponses];
|
|
1585
|
+
export type PostApiV3CommandData = {
|
|
1586
|
+
body?: CommandResource;
|
|
1587
|
+
path?: never;
|
|
1588
|
+
query?: never;
|
|
1589
|
+
url: '/api/v3/command';
|
|
1590
|
+
};
|
|
1591
|
+
export type PostApiV3CommandResponses = {
|
|
1592
|
+
/**
|
|
1593
|
+
* OK
|
|
1594
|
+
*/
|
|
1595
|
+
200: CommandResource;
|
|
1596
|
+
};
|
|
1597
|
+
export type PostApiV3CommandResponse = PostApiV3CommandResponses[keyof PostApiV3CommandResponses];
|
|
1598
|
+
export type DeleteApiV3CommandByIdData = {
|
|
1599
|
+
body?: never;
|
|
1600
|
+
path: {
|
|
1601
|
+
id: number;
|
|
1602
|
+
};
|
|
1603
|
+
query?: never;
|
|
1604
|
+
url: '/api/v3/command/{id}';
|
|
1605
|
+
};
|
|
1606
|
+
export type DeleteApiV3CommandByIdResponses = {
|
|
1607
|
+
/**
|
|
1608
|
+
* OK
|
|
1609
|
+
*/
|
|
1610
|
+
200: unknown;
|
|
1611
|
+
};
|
|
1612
|
+
export type GetApiV3CommandByIdData = {
|
|
1613
|
+
body?: never;
|
|
1614
|
+
path: {
|
|
1615
|
+
id: number;
|
|
1616
|
+
};
|
|
1617
|
+
query?: never;
|
|
1618
|
+
url: '/api/v3/command/{id}';
|
|
1619
|
+
};
|
|
1620
|
+
export type GetApiV3CommandByIdResponses = {
|
|
1621
|
+
/**
|
|
1622
|
+
* OK
|
|
1623
|
+
*/
|
|
1624
|
+
200: CommandResource;
|
|
1625
|
+
};
|
|
1626
|
+
export type GetApiV3CommandByIdResponse = GetApiV3CommandByIdResponses[keyof GetApiV3CommandByIdResponses];
|
|
1627
|
+
export type GetApiV3CustomfilterData = {
|
|
1628
|
+
body?: never;
|
|
1629
|
+
path?: never;
|
|
1630
|
+
query?: never;
|
|
1631
|
+
url: '/api/v3/customfilter';
|
|
1632
|
+
};
|
|
1633
|
+
export type GetApiV3CustomfilterResponses = {
|
|
1634
|
+
/**
|
|
1635
|
+
* OK
|
|
1636
|
+
*/
|
|
1637
|
+
200: Array<CustomFilterResource>;
|
|
1638
|
+
};
|
|
1639
|
+
export type GetApiV3CustomfilterResponse = GetApiV3CustomfilterResponses[keyof GetApiV3CustomfilterResponses];
|
|
1640
|
+
export type PostApiV3CustomfilterData = {
|
|
1641
|
+
body?: CustomFilterResource;
|
|
1642
|
+
path?: never;
|
|
1643
|
+
query?: never;
|
|
1644
|
+
url: '/api/v3/customfilter';
|
|
1645
|
+
};
|
|
1646
|
+
export type PostApiV3CustomfilterResponses = {
|
|
1647
|
+
/**
|
|
1648
|
+
* OK
|
|
1649
|
+
*/
|
|
1650
|
+
200: CustomFilterResource;
|
|
1651
|
+
};
|
|
1652
|
+
export type PostApiV3CustomfilterResponse = PostApiV3CustomfilterResponses[keyof PostApiV3CustomfilterResponses];
|
|
1653
|
+
export type DeleteApiV3CustomfilterByIdData = {
|
|
1654
|
+
body?: never;
|
|
1655
|
+
path: {
|
|
1656
|
+
id: number;
|
|
1657
|
+
};
|
|
1658
|
+
query?: never;
|
|
1659
|
+
url: '/api/v3/customfilter/{id}';
|
|
1660
|
+
};
|
|
1661
|
+
export type DeleteApiV3CustomfilterByIdResponses = {
|
|
1662
|
+
/**
|
|
1663
|
+
* OK
|
|
1664
|
+
*/
|
|
1665
|
+
200: unknown;
|
|
1666
|
+
};
|
|
1667
|
+
export type GetApiV3CustomfilterByIdData = {
|
|
1668
|
+
body?: never;
|
|
1669
|
+
path: {
|
|
1670
|
+
id: number;
|
|
1671
|
+
};
|
|
1672
|
+
query?: never;
|
|
1673
|
+
url: '/api/v3/customfilter/{id}';
|
|
1674
|
+
};
|
|
1675
|
+
export type GetApiV3CustomfilterByIdResponses = {
|
|
1676
|
+
/**
|
|
1677
|
+
* OK
|
|
1678
|
+
*/
|
|
1679
|
+
200: CustomFilterResource;
|
|
1680
|
+
};
|
|
1681
|
+
export type GetApiV3CustomfilterByIdResponse = GetApiV3CustomfilterByIdResponses[keyof GetApiV3CustomfilterByIdResponses];
|
|
1682
|
+
export type PutApiV3CustomfilterByIdData = {
|
|
1683
|
+
body?: CustomFilterResource;
|
|
1684
|
+
path: {
|
|
1685
|
+
id: string;
|
|
1686
|
+
};
|
|
1687
|
+
query?: never;
|
|
1688
|
+
url: '/api/v3/customfilter/{id}';
|
|
1689
|
+
};
|
|
1690
|
+
export type PutApiV3CustomfilterByIdResponses = {
|
|
1691
|
+
/**
|
|
1692
|
+
* OK
|
|
1693
|
+
*/
|
|
1694
|
+
200: CustomFilterResource;
|
|
1695
|
+
};
|
|
1696
|
+
export type PutApiV3CustomfilterByIdResponse = PutApiV3CustomfilterByIdResponses[keyof PutApiV3CustomfilterByIdResponses];
|
|
1697
|
+
export type GetApiV3CustomformatData = {
|
|
1698
|
+
body?: never;
|
|
1699
|
+
path?: never;
|
|
1700
|
+
query?: never;
|
|
1701
|
+
url: '/api/v3/customformat';
|
|
1702
|
+
};
|
|
1703
|
+
export type GetApiV3CustomformatResponses = {
|
|
1704
|
+
/**
|
|
1705
|
+
* OK
|
|
1706
|
+
*/
|
|
1707
|
+
200: Array<CustomFormatResource>;
|
|
1708
|
+
};
|
|
1709
|
+
export type GetApiV3CustomformatResponse = GetApiV3CustomformatResponses[keyof GetApiV3CustomformatResponses];
|
|
1710
|
+
export type PostApiV3CustomformatData = {
|
|
1711
|
+
body?: CustomFormatResource;
|
|
1712
|
+
path?: never;
|
|
1713
|
+
query?: never;
|
|
1714
|
+
url: '/api/v3/customformat';
|
|
1715
|
+
};
|
|
1716
|
+
export type PostApiV3CustomformatResponses = {
|
|
1717
|
+
/**
|
|
1718
|
+
* OK
|
|
1719
|
+
*/
|
|
1720
|
+
200: CustomFormatResource;
|
|
1721
|
+
};
|
|
1722
|
+
export type PostApiV3CustomformatResponse = PostApiV3CustomformatResponses[keyof PostApiV3CustomformatResponses];
|
|
1723
|
+
export type DeleteApiV3CustomformatByIdData = {
|
|
1724
|
+
body?: never;
|
|
1725
|
+
path: {
|
|
1726
|
+
id: number;
|
|
1727
|
+
};
|
|
1728
|
+
query?: never;
|
|
1729
|
+
url: '/api/v3/customformat/{id}';
|
|
1730
|
+
};
|
|
1731
|
+
export type DeleteApiV3CustomformatByIdResponses = {
|
|
1732
|
+
/**
|
|
1733
|
+
* OK
|
|
1734
|
+
*/
|
|
1735
|
+
200: unknown;
|
|
1736
|
+
};
|
|
1737
|
+
export type GetApiV3CustomformatByIdData = {
|
|
1738
|
+
body?: never;
|
|
1739
|
+
path: {
|
|
1740
|
+
id: number;
|
|
1741
|
+
};
|
|
1742
|
+
query?: never;
|
|
1743
|
+
url: '/api/v3/customformat/{id}';
|
|
1744
|
+
};
|
|
1745
|
+
export type GetApiV3CustomformatByIdResponses = {
|
|
1746
|
+
/**
|
|
1747
|
+
* OK
|
|
1748
|
+
*/
|
|
1749
|
+
200: CustomFormatResource;
|
|
1750
|
+
};
|
|
1751
|
+
export type GetApiV3CustomformatByIdResponse = GetApiV3CustomformatByIdResponses[keyof GetApiV3CustomformatByIdResponses];
|
|
1752
|
+
export type PutApiV3CustomformatByIdData = {
|
|
1753
|
+
body?: CustomFormatResource;
|
|
1754
|
+
path: {
|
|
1755
|
+
id: string;
|
|
1756
|
+
};
|
|
1757
|
+
query?: never;
|
|
1758
|
+
url: '/api/v3/customformat/{id}';
|
|
1759
|
+
};
|
|
1760
|
+
export type PutApiV3CustomformatByIdResponses = {
|
|
1761
|
+
/**
|
|
1762
|
+
* OK
|
|
1763
|
+
*/
|
|
1764
|
+
200: CustomFormatResource;
|
|
1765
|
+
};
|
|
1766
|
+
export type PutApiV3CustomformatByIdResponse = PutApiV3CustomformatByIdResponses[keyof PutApiV3CustomformatByIdResponses];
|
|
1767
|
+
export type DeleteApiV3CustomformatBulkData = {
|
|
1768
|
+
body?: CustomFormatBulkResource;
|
|
1769
|
+
path?: never;
|
|
1770
|
+
query?: never;
|
|
1771
|
+
url: '/api/v3/customformat/bulk';
|
|
1772
|
+
};
|
|
1773
|
+
export type DeleteApiV3CustomformatBulkResponses = {
|
|
1774
|
+
/**
|
|
1775
|
+
* OK
|
|
1776
|
+
*/
|
|
1777
|
+
200: unknown;
|
|
1778
|
+
};
|
|
1779
|
+
export type PutApiV3CustomformatBulkData = {
|
|
1780
|
+
body?: CustomFormatBulkResource;
|
|
1781
|
+
path?: never;
|
|
1782
|
+
query?: never;
|
|
1783
|
+
url: '/api/v3/customformat/bulk';
|
|
1784
|
+
};
|
|
1785
|
+
export type PutApiV3CustomformatBulkResponses = {
|
|
1786
|
+
/**
|
|
1787
|
+
* OK
|
|
1788
|
+
*/
|
|
1789
|
+
200: CustomFormatResource;
|
|
1790
|
+
};
|
|
1791
|
+
export type PutApiV3CustomformatBulkResponse = PutApiV3CustomformatBulkResponses[keyof PutApiV3CustomformatBulkResponses];
|
|
1792
|
+
export type GetApiV3CustomformatSchemaData = {
|
|
1793
|
+
body?: never;
|
|
1794
|
+
path?: never;
|
|
1795
|
+
query?: never;
|
|
1796
|
+
url: '/api/v3/customformat/schema';
|
|
1797
|
+
};
|
|
1798
|
+
export type GetApiV3CustomformatSchemaResponses = {
|
|
1799
|
+
/**
|
|
1800
|
+
* OK
|
|
1801
|
+
*/
|
|
1802
|
+
200: unknown;
|
|
1803
|
+
};
|
|
1804
|
+
export type GetApiV3WantedCutoffData = {
|
|
1805
|
+
body?: never;
|
|
1806
|
+
path?: never;
|
|
1807
|
+
query?: {
|
|
1808
|
+
page?: number;
|
|
1809
|
+
pageSize?: number;
|
|
1810
|
+
sortKey?: string;
|
|
1811
|
+
sortDirection?: SortDirection;
|
|
1812
|
+
includeSeries?: boolean;
|
|
1813
|
+
includeEpisodeFile?: boolean;
|
|
1814
|
+
includeImages?: boolean;
|
|
1815
|
+
monitored?: boolean;
|
|
1816
|
+
};
|
|
1817
|
+
url: '/api/v3/wanted/cutoff';
|
|
1818
|
+
};
|
|
1819
|
+
export type GetApiV3WantedCutoffResponses = {
|
|
1820
|
+
/**
|
|
1821
|
+
* OK
|
|
1822
|
+
*/
|
|
1823
|
+
200: EpisodeResourcePagingResource;
|
|
1824
|
+
};
|
|
1825
|
+
export type GetApiV3WantedCutoffResponse = GetApiV3WantedCutoffResponses[keyof GetApiV3WantedCutoffResponses];
|
|
1826
|
+
export type GetApiV3WantedCutoffByIdData = {
|
|
1827
|
+
body?: never;
|
|
1828
|
+
path: {
|
|
1829
|
+
id: number;
|
|
1830
|
+
};
|
|
1831
|
+
query?: never;
|
|
1832
|
+
url: '/api/v3/wanted/cutoff/{id}';
|
|
1833
|
+
};
|
|
1834
|
+
export type GetApiV3WantedCutoffByIdResponses = {
|
|
1835
|
+
/**
|
|
1836
|
+
* OK
|
|
1837
|
+
*/
|
|
1838
|
+
200: EpisodeResource;
|
|
1839
|
+
};
|
|
1840
|
+
export type GetApiV3WantedCutoffByIdResponse = GetApiV3WantedCutoffByIdResponses[keyof GetApiV3WantedCutoffByIdResponses];
|
|
1841
|
+
export type GetApiV3DelayprofileData = {
|
|
1842
|
+
body?: never;
|
|
1843
|
+
path?: never;
|
|
1844
|
+
query?: never;
|
|
1845
|
+
url: '/api/v3/delayprofile';
|
|
1846
|
+
};
|
|
1847
|
+
export type GetApiV3DelayprofileResponses = {
|
|
1848
|
+
/**
|
|
1849
|
+
* OK
|
|
1850
|
+
*/
|
|
1851
|
+
200: Array<DelayProfileResource>;
|
|
1852
|
+
};
|
|
1853
|
+
export type GetApiV3DelayprofileResponse = GetApiV3DelayprofileResponses[keyof GetApiV3DelayprofileResponses];
|
|
1854
|
+
export type PostApiV3DelayprofileData = {
|
|
1855
|
+
body?: DelayProfileResource;
|
|
1856
|
+
path?: never;
|
|
1857
|
+
query?: never;
|
|
1858
|
+
url: '/api/v3/delayprofile';
|
|
1859
|
+
};
|
|
1860
|
+
export type PostApiV3DelayprofileResponses = {
|
|
1861
|
+
/**
|
|
1862
|
+
* OK
|
|
1863
|
+
*/
|
|
1864
|
+
200: DelayProfileResource;
|
|
1865
|
+
};
|
|
1866
|
+
export type PostApiV3DelayprofileResponse = PostApiV3DelayprofileResponses[keyof PostApiV3DelayprofileResponses];
|
|
1867
|
+
export type DeleteApiV3DelayprofileByIdData = {
|
|
1868
|
+
body?: never;
|
|
1869
|
+
path: {
|
|
1870
|
+
id: number;
|
|
1871
|
+
};
|
|
1872
|
+
query?: never;
|
|
1873
|
+
url: '/api/v3/delayprofile/{id}';
|
|
1874
|
+
};
|
|
1875
|
+
export type DeleteApiV3DelayprofileByIdResponses = {
|
|
1876
|
+
/**
|
|
1877
|
+
* OK
|
|
1878
|
+
*/
|
|
1879
|
+
200: unknown;
|
|
1880
|
+
};
|
|
1881
|
+
export type GetApiV3DelayprofileByIdData = {
|
|
1882
|
+
body?: never;
|
|
1883
|
+
path: {
|
|
1884
|
+
id: number;
|
|
1885
|
+
};
|
|
1886
|
+
query?: never;
|
|
1887
|
+
url: '/api/v3/delayprofile/{id}';
|
|
1888
|
+
};
|
|
1889
|
+
export type GetApiV3DelayprofileByIdResponses = {
|
|
1890
|
+
/**
|
|
1891
|
+
* OK
|
|
1892
|
+
*/
|
|
1893
|
+
200: DelayProfileResource;
|
|
1894
|
+
};
|
|
1895
|
+
export type GetApiV3DelayprofileByIdResponse = GetApiV3DelayprofileByIdResponses[keyof GetApiV3DelayprofileByIdResponses];
|
|
1896
|
+
export type PutApiV3DelayprofileByIdData = {
|
|
1897
|
+
body?: DelayProfileResource;
|
|
1898
|
+
path: {
|
|
1899
|
+
id: string;
|
|
1900
|
+
};
|
|
1901
|
+
query?: never;
|
|
1902
|
+
url: '/api/v3/delayprofile/{id}';
|
|
1903
|
+
};
|
|
1904
|
+
export type PutApiV3DelayprofileByIdResponses = {
|
|
1905
|
+
/**
|
|
1906
|
+
* OK
|
|
1907
|
+
*/
|
|
1908
|
+
200: DelayProfileResource;
|
|
1909
|
+
};
|
|
1910
|
+
export type PutApiV3DelayprofileByIdResponse = PutApiV3DelayprofileByIdResponses[keyof PutApiV3DelayprofileByIdResponses];
|
|
1911
|
+
export type PutApiV3DelayprofileReorderByIdData = {
|
|
1912
|
+
body?: never;
|
|
1913
|
+
path: {
|
|
1914
|
+
id: number;
|
|
1915
|
+
};
|
|
1916
|
+
query?: {
|
|
1917
|
+
after?: number;
|
|
1918
|
+
};
|
|
1919
|
+
url: '/api/v3/delayprofile/reorder/{id}';
|
|
1920
|
+
};
|
|
1921
|
+
export type PutApiV3DelayprofileReorderByIdResponses = {
|
|
1922
|
+
/**
|
|
1923
|
+
* OK
|
|
1924
|
+
*/
|
|
1925
|
+
200: Array<DelayProfileResource>;
|
|
1926
|
+
};
|
|
1927
|
+
export type PutApiV3DelayprofileReorderByIdResponse = PutApiV3DelayprofileReorderByIdResponses[keyof PutApiV3DelayprofileReorderByIdResponses];
|
|
1928
|
+
export type GetApiV3DiskspaceData = {
|
|
1929
|
+
body?: never;
|
|
1930
|
+
path?: never;
|
|
1931
|
+
query?: never;
|
|
1932
|
+
url: '/api/v3/diskspace';
|
|
1933
|
+
};
|
|
1934
|
+
export type GetApiV3DiskspaceResponses = {
|
|
1935
|
+
/**
|
|
1936
|
+
* OK
|
|
1937
|
+
*/
|
|
1938
|
+
200: Array<DiskSpaceResource>;
|
|
1939
|
+
};
|
|
1940
|
+
export type GetApiV3DiskspaceResponse = GetApiV3DiskspaceResponses[keyof GetApiV3DiskspaceResponses];
|
|
1941
|
+
export type GetApiV3DownloadclientData = {
|
|
1942
|
+
body?: never;
|
|
1943
|
+
path?: never;
|
|
1944
|
+
query?: never;
|
|
1945
|
+
url: '/api/v3/downloadclient';
|
|
1946
|
+
};
|
|
1947
|
+
export type GetApiV3DownloadclientResponses = {
|
|
1948
|
+
/**
|
|
1949
|
+
* OK
|
|
1950
|
+
*/
|
|
1951
|
+
200: Array<DownloadClientResource>;
|
|
1952
|
+
};
|
|
1953
|
+
export type GetApiV3DownloadclientResponse = GetApiV3DownloadclientResponses[keyof GetApiV3DownloadclientResponses];
|
|
1954
|
+
export type PostApiV3DownloadclientData = {
|
|
1955
|
+
body?: DownloadClientResource;
|
|
1956
|
+
path?: never;
|
|
1957
|
+
query?: {
|
|
1958
|
+
forceSave?: boolean;
|
|
1959
|
+
};
|
|
1960
|
+
url: '/api/v3/downloadclient';
|
|
1961
|
+
};
|
|
1962
|
+
export type PostApiV3DownloadclientResponses = {
|
|
1963
|
+
/**
|
|
1964
|
+
* OK
|
|
1965
|
+
*/
|
|
1966
|
+
200: DownloadClientResource;
|
|
1967
|
+
};
|
|
1968
|
+
export type PostApiV3DownloadclientResponse = PostApiV3DownloadclientResponses[keyof PostApiV3DownloadclientResponses];
|
|
1969
|
+
export type DeleteApiV3DownloadclientByIdData = {
|
|
1970
|
+
body?: never;
|
|
1971
|
+
path: {
|
|
1972
|
+
id: number;
|
|
1973
|
+
};
|
|
1974
|
+
query?: never;
|
|
1975
|
+
url: '/api/v3/downloadclient/{id}';
|
|
1976
|
+
};
|
|
1977
|
+
export type DeleteApiV3DownloadclientByIdResponses = {
|
|
1978
|
+
/**
|
|
1979
|
+
* OK
|
|
1980
|
+
*/
|
|
1981
|
+
200: unknown;
|
|
1982
|
+
};
|
|
1983
|
+
export type GetApiV3DownloadclientByIdData = {
|
|
1984
|
+
body?: never;
|
|
1985
|
+
path: {
|
|
1986
|
+
id: number;
|
|
1987
|
+
};
|
|
1988
|
+
query?: never;
|
|
1989
|
+
url: '/api/v3/downloadclient/{id}';
|
|
1990
|
+
};
|
|
1991
|
+
export type GetApiV3DownloadclientByIdResponses = {
|
|
1992
|
+
/**
|
|
1993
|
+
* OK
|
|
1994
|
+
*/
|
|
1995
|
+
200: DownloadClientResource;
|
|
1996
|
+
};
|
|
1997
|
+
export type GetApiV3DownloadclientByIdResponse = GetApiV3DownloadclientByIdResponses[keyof GetApiV3DownloadclientByIdResponses];
|
|
1998
|
+
export type PutApiV3DownloadclientByIdData = {
|
|
1999
|
+
body?: DownloadClientResource;
|
|
2000
|
+
path: {
|
|
2001
|
+
id: number;
|
|
2002
|
+
};
|
|
2003
|
+
query?: {
|
|
2004
|
+
forceSave?: boolean;
|
|
2005
|
+
};
|
|
2006
|
+
url: '/api/v3/downloadclient/{id}';
|
|
2007
|
+
};
|
|
2008
|
+
export type PutApiV3DownloadclientByIdResponses = {
|
|
2009
|
+
/**
|
|
2010
|
+
* OK
|
|
2011
|
+
*/
|
|
2012
|
+
200: DownloadClientResource;
|
|
2013
|
+
};
|
|
2014
|
+
export type PutApiV3DownloadclientByIdResponse = PutApiV3DownloadclientByIdResponses[keyof PutApiV3DownloadclientByIdResponses];
|
|
2015
|
+
export type DeleteApiV3DownloadclientBulkData = {
|
|
2016
|
+
body?: DownloadClientBulkResource;
|
|
2017
|
+
path?: never;
|
|
2018
|
+
query?: never;
|
|
2019
|
+
url: '/api/v3/downloadclient/bulk';
|
|
2020
|
+
};
|
|
2021
|
+
export type DeleteApiV3DownloadclientBulkResponses = {
|
|
2022
|
+
/**
|
|
2023
|
+
* OK
|
|
2024
|
+
*/
|
|
2025
|
+
200: unknown;
|
|
2026
|
+
};
|
|
2027
|
+
export type PutApiV3DownloadclientBulkData = {
|
|
2028
|
+
body?: DownloadClientBulkResource;
|
|
2029
|
+
path?: never;
|
|
2030
|
+
query?: never;
|
|
2031
|
+
url: '/api/v3/downloadclient/bulk';
|
|
2032
|
+
};
|
|
2033
|
+
export type PutApiV3DownloadclientBulkResponses = {
|
|
2034
|
+
/**
|
|
2035
|
+
* OK
|
|
2036
|
+
*/
|
|
2037
|
+
200: DownloadClientResource;
|
|
2038
|
+
};
|
|
2039
|
+
export type PutApiV3DownloadclientBulkResponse = PutApiV3DownloadclientBulkResponses[keyof PutApiV3DownloadclientBulkResponses];
|
|
2040
|
+
export type GetApiV3DownloadclientSchemaData = {
|
|
2041
|
+
body?: never;
|
|
2042
|
+
path?: never;
|
|
2043
|
+
query?: never;
|
|
2044
|
+
url: '/api/v3/downloadclient/schema';
|
|
2045
|
+
};
|
|
2046
|
+
export type GetApiV3DownloadclientSchemaResponses = {
|
|
2047
|
+
/**
|
|
2048
|
+
* OK
|
|
2049
|
+
*/
|
|
2050
|
+
200: Array<DownloadClientResource>;
|
|
2051
|
+
};
|
|
2052
|
+
export type GetApiV3DownloadclientSchemaResponse = GetApiV3DownloadclientSchemaResponses[keyof GetApiV3DownloadclientSchemaResponses];
|
|
2053
|
+
export type PostApiV3DownloadclientTestData = {
|
|
2054
|
+
body?: DownloadClientResource;
|
|
2055
|
+
path?: never;
|
|
2056
|
+
query?: {
|
|
2057
|
+
forceTest?: boolean;
|
|
2058
|
+
};
|
|
2059
|
+
url: '/api/v3/downloadclient/test';
|
|
2060
|
+
};
|
|
2061
|
+
export type PostApiV3DownloadclientTestResponses = {
|
|
2062
|
+
/**
|
|
2063
|
+
* OK
|
|
2064
|
+
*/
|
|
2065
|
+
200: unknown;
|
|
2066
|
+
};
|
|
2067
|
+
export type PostApiV3DownloadclientTestallData = {
|
|
2068
|
+
body?: never;
|
|
2069
|
+
path?: never;
|
|
2070
|
+
query?: never;
|
|
2071
|
+
url: '/api/v3/downloadclient/testall';
|
|
2072
|
+
};
|
|
2073
|
+
export type PostApiV3DownloadclientTestallResponses = {
|
|
2074
|
+
/**
|
|
2075
|
+
* OK
|
|
2076
|
+
*/
|
|
2077
|
+
200: unknown;
|
|
2078
|
+
};
|
|
2079
|
+
export type PostApiV3DownloadclientActionByNameData = {
|
|
2080
|
+
body?: DownloadClientResource;
|
|
2081
|
+
path: {
|
|
2082
|
+
name: string;
|
|
2083
|
+
};
|
|
2084
|
+
query?: never;
|
|
2085
|
+
url: '/api/v3/downloadclient/action/{name}';
|
|
2086
|
+
};
|
|
2087
|
+
export type PostApiV3DownloadclientActionByNameResponses = {
|
|
2088
|
+
/**
|
|
2089
|
+
* OK
|
|
2090
|
+
*/
|
|
2091
|
+
200: unknown;
|
|
2092
|
+
};
|
|
2093
|
+
export type GetApiV3ConfigDownloadclientData = {
|
|
2094
|
+
body?: never;
|
|
2095
|
+
path?: never;
|
|
2096
|
+
query?: never;
|
|
2097
|
+
url: '/api/v3/config/downloadclient';
|
|
2098
|
+
};
|
|
2099
|
+
export type GetApiV3ConfigDownloadclientResponses = {
|
|
2100
|
+
/**
|
|
2101
|
+
* OK
|
|
2102
|
+
*/
|
|
2103
|
+
200: DownloadClientConfigResource;
|
|
2104
|
+
};
|
|
2105
|
+
export type GetApiV3ConfigDownloadclientResponse = GetApiV3ConfigDownloadclientResponses[keyof GetApiV3ConfigDownloadclientResponses];
|
|
2106
|
+
export type GetApiV3ConfigDownloadclientByIdData = {
|
|
2107
|
+
body?: never;
|
|
2108
|
+
path: {
|
|
2109
|
+
id: number;
|
|
2110
|
+
};
|
|
2111
|
+
query?: never;
|
|
2112
|
+
url: '/api/v3/config/downloadclient/{id}';
|
|
2113
|
+
};
|
|
2114
|
+
export type GetApiV3ConfigDownloadclientByIdResponses = {
|
|
2115
|
+
/**
|
|
2116
|
+
* OK
|
|
2117
|
+
*/
|
|
2118
|
+
200: DownloadClientConfigResource;
|
|
2119
|
+
};
|
|
2120
|
+
export type GetApiV3ConfigDownloadclientByIdResponse = GetApiV3ConfigDownloadclientByIdResponses[keyof GetApiV3ConfigDownloadclientByIdResponses];
|
|
2121
|
+
export type PutApiV3ConfigDownloadclientByIdData = {
|
|
2122
|
+
body?: DownloadClientConfigResource;
|
|
2123
|
+
path: {
|
|
2124
|
+
id: string;
|
|
2125
|
+
};
|
|
2126
|
+
query?: never;
|
|
2127
|
+
url: '/api/v3/config/downloadclient/{id}';
|
|
2128
|
+
};
|
|
2129
|
+
export type PutApiV3ConfigDownloadclientByIdResponses = {
|
|
2130
|
+
/**
|
|
2131
|
+
* OK
|
|
2132
|
+
*/
|
|
2133
|
+
200: DownloadClientConfigResource;
|
|
2134
|
+
};
|
|
2135
|
+
export type PutApiV3ConfigDownloadclientByIdResponse = PutApiV3ConfigDownloadclientByIdResponses[keyof PutApiV3ConfigDownloadclientByIdResponses];
|
|
2136
|
+
export type GetApiV3EpisodeData = {
|
|
2137
|
+
body?: never;
|
|
2138
|
+
path?: never;
|
|
2139
|
+
query?: {
|
|
2140
|
+
seriesId?: number;
|
|
2141
|
+
seasonNumber?: number;
|
|
2142
|
+
episodeIds?: Array<number>;
|
|
2143
|
+
episodeFileId?: number;
|
|
2144
|
+
includeSeries?: boolean;
|
|
2145
|
+
includeEpisodeFile?: boolean;
|
|
2146
|
+
includeImages?: boolean;
|
|
2147
|
+
};
|
|
2148
|
+
url: '/api/v3/episode';
|
|
2149
|
+
};
|
|
2150
|
+
export type GetApiV3EpisodeResponses = {
|
|
2151
|
+
/**
|
|
2152
|
+
* OK
|
|
2153
|
+
*/
|
|
2154
|
+
200: Array<EpisodeResource>;
|
|
2155
|
+
};
|
|
2156
|
+
export type GetApiV3EpisodeResponse = GetApiV3EpisodeResponses[keyof GetApiV3EpisodeResponses];
|
|
2157
|
+
export type GetApiV3EpisodeByIdData = {
|
|
2158
|
+
body?: never;
|
|
2159
|
+
path: {
|
|
2160
|
+
id: number;
|
|
2161
|
+
};
|
|
2162
|
+
query?: never;
|
|
2163
|
+
url: '/api/v3/episode/{id}';
|
|
2164
|
+
};
|
|
2165
|
+
export type GetApiV3EpisodeByIdResponses = {
|
|
2166
|
+
/**
|
|
2167
|
+
* OK
|
|
2168
|
+
*/
|
|
2169
|
+
200: EpisodeResource;
|
|
2170
|
+
};
|
|
2171
|
+
export type GetApiV3EpisodeByIdResponse = GetApiV3EpisodeByIdResponses[keyof GetApiV3EpisodeByIdResponses];
|
|
2172
|
+
export type PutApiV3EpisodeByIdData = {
|
|
2173
|
+
body?: EpisodeResource;
|
|
2174
|
+
path: {
|
|
2175
|
+
id: number;
|
|
2176
|
+
};
|
|
2177
|
+
query?: never;
|
|
2178
|
+
url: '/api/v3/episode/{id}';
|
|
2179
|
+
};
|
|
2180
|
+
export type PutApiV3EpisodeByIdResponses = {
|
|
2181
|
+
/**
|
|
2182
|
+
* OK
|
|
2183
|
+
*/
|
|
2184
|
+
200: EpisodeResource;
|
|
2185
|
+
};
|
|
2186
|
+
export type PutApiV3EpisodeByIdResponse = PutApiV3EpisodeByIdResponses[keyof PutApiV3EpisodeByIdResponses];
|
|
2187
|
+
export type PutApiV3EpisodeMonitorData = {
|
|
2188
|
+
body?: EpisodesMonitoredResource;
|
|
2189
|
+
path?: never;
|
|
2190
|
+
query?: {
|
|
2191
|
+
includeImages?: boolean;
|
|
2192
|
+
};
|
|
2193
|
+
url: '/api/v3/episode/monitor';
|
|
2194
|
+
};
|
|
2195
|
+
export type PutApiV3EpisodeMonitorResponses = {
|
|
2196
|
+
/**
|
|
2197
|
+
* OK
|
|
2198
|
+
*/
|
|
2199
|
+
200: unknown;
|
|
2200
|
+
};
|
|
2201
|
+
export type GetApiV3EpisodefileData = {
|
|
2202
|
+
body?: never;
|
|
2203
|
+
path?: never;
|
|
2204
|
+
query?: {
|
|
2205
|
+
seriesId?: number;
|
|
2206
|
+
episodeFileIds?: Array<number>;
|
|
2207
|
+
};
|
|
2208
|
+
url: '/api/v3/episodefile';
|
|
2209
|
+
};
|
|
2210
|
+
export type GetApiV3EpisodefileResponses = {
|
|
2211
|
+
/**
|
|
2212
|
+
* OK
|
|
2213
|
+
*/
|
|
2214
|
+
200: Array<EpisodeFileResource>;
|
|
2215
|
+
};
|
|
2216
|
+
export type GetApiV3EpisodefileResponse = GetApiV3EpisodefileResponses[keyof GetApiV3EpisodefileResponses];
|
|
2217
|
+
export type DeleteApiV3EpisodefileByIdData = {
|
|
2218
|
+
body?: never;
|
|
2219
|
+
path: {
|
|
2220
|
+
id: number;
|
|
2221
|
+
};
|
|
2222
|
+
query?: never;
|
|
2223
|
+
url: '/api/v3/episodefile/{id}';
|
|
2224
|
+
};
|
|
2225
|
+
export type DeleteApiV3EpisodefileByIdResponses = {
|
|
2226
|
+
/**
|
|
2227
|
+
* OK
|
|
2228
|
+
*/
|
|
2229
|
+
200: unknown;
|
|
2230
|
+
};
|
|
2231
|
+
export type GetApiV3EpisodefileByIdData = {
|
|
2232
|
+
body?: never;
|
|
2233
|
+
path: {
|
|
2234
|
+
id: number;
|
|
2235
|
+
};
|
|
2236
|
+
query?: never;
|
|
2237
|
+
url: '/api/v3/episodefile/{id}';
|
|
2238
|
+
};
|
|
2239
|
+
export type GetApiV3EpisodefileByIdResponses = {
|
|
2240
|
+
/**
|
|
2241
|
+
* OK
|
|
2242
|
+
*/
|
|
2243
|
+
200: EpisodeFileResource;
|
|
2244
|
+
};
|
|
2245
|
+
export type GetApiV3EpisodefileByIdResponse = GetApiV3EpisodefileByIdResponses[keyof GetApiV3EpisodefileByIdResponses];
|
|
2246
|
+
export type PutApiV3EpisodefileByIdData = {
|
|
2247
|
+
body?: EpisodeFileResource;
|
|
2248
|
+
path: {
|
|
2249
|
+
id: string;
|
|
2250
|
+
};
|
|
2251
|
+
query?: never;
|
|
2252
|
+
url: '/api/v3/episodefile/{id}';
|
|
2253
|
+
};
|
|
2254
|
+
export type PutApiV3EpisodefileByIdResponses = {
|
|
2255
|
+
/**
|
|
2256
|
+
* OK
|
|
2257
|
+
*/
|
|
2258
|
+
200: EpisodeFileResource;
|
|
2259
|
+
};
|
|
2260
|
+
export type PutApiV3EpisodefileByIdResponse = PutApiV3EpisodefileByIdResponses[keyof PutApiV3EpisodefileByIdResponses];
|
|
2261
|
+
export type PutApiV3EpisodefileEditorData = {
|
|
2262
|
+
body?: EpisodeFileListResource;
|
|
2263
|
+
path?: never;
|
|
2264
|
+
query?: never;
|
|
2265
|
+
url: '/api/v3/episodefile/editor';
|
|
2266
|
+
};
|
|
2267
|
+
export type PutApiV3EpisodefileEditorResponses = {
|
|
2268
|
+
/**
|
|
2269
|
+
* OK
|
|
2270
|
+
*/
|
|
2271
|
+
200: unknown;
|
|
2272
|
+
};
|
|
2273
|
+
export type DeleteApiV3EpisodefileBulkData = {
|
|
2274
|
+
body?: EpisodeFileListResource;
|
|
2275
|
+
path?: never;
|
|
2276
|
+
query?: never;
|
|
2277
|
+
url: '/api/v3/episodefile/bulk';
|
|
2278
|
+
};
|
|
2279
|
+
export type DeleteApiV3EpisodefileBulkResponses = {
|
|
2280
|
+
/**
|
|
2281
|
+
* OK
|
|
2282
|
+
*/
|
|
2283
|
+
200: unknown;
|
|
2284
|
+
};
|
|
2285
|
+
export type PutApiV3EpisodefileBulkData = {
|
|
2286
|
+
body?: Array<EpisodeFileResource>;
|
|
2287
|
+
path?: never;
|
|
2288
|
+
query?: never;
|
|
2289
|
+
url: '/api/v3/episodefile/bulk';
|
|
2290
|
+
};
|
|
2291
|
+
export type PutApiV3EpisodefileBulkResponses = {
|
|
2292
|
+
/**
|
|
2293
|
+
* OK
|
|
2294
|
+
*/
|
|
2295
|
+
200: unknown;
|
|
2296
|
+
};
|
|
2297
|
+
export type GetApiV3FilesystemData = {
|
|
2298
|
+
body?: never;
|
|
2299
|
+
path?: never;
|
|
2300
|
+
query?: {
|
|
2301
|
+
path?: string;
|
|
2302
|
+
includeFiles?: boolean;
|
|
2303
|
+
allowFoldersWithoutTrailingSlashes?: boolean;
|
|
2304
|
+
};
|
|
2305
|
+
url: '/api/v3/filesystem';
|
|
2306
|
+
};
|
|
2307
|
+
export type GetApiV3FilesystemResponses = {
|
|
2308
|
+
/**
|
|
2309
|
+
* OK
|
|
2310
|
+
*/
|
|
2311
|
+
200: unknown;
|
|
2312
|
+
};
|
|
2313
|
+
export type GetApiV3FilesystemTypeData = {
|
|
2314
|
+
body?: never;
|
|
2315
|
+
path?: never;
|
|
2316
|
+
query?: {
|
|
2317
|
+
path?: string;
|
|
2318
|
+
};
|
|
2319
|
+
url: '/api/v3/filesystem/type';
|
|
2320
|
+
};
|
|
2321
|
+
export type GetApiV3FilesystemTypeResponses = {
|
|
2322
|
+
/**
|
|
2323
|
+
* OK
|
|
2324
|
+
*/
|
|
2325
|
+
200: unknown;
|
|
2326
|
+
};
|
|
2327
|
+
export type GetApiV3FilesystemMediafilesData = {
|
|
2328
|
+
body?: never;
|
|
2329
|
+
path?: never;
|
|
2330
|
+
query?: {
|
|
2331
|
+
path?: string;
|
|
2332
|
+
};
|
|
2333
|
+
url: '/api/v3/filesystem/mediafiles';
|
|
2334
|
+
};
|
|
2335
|
+
export type GetApiV3FilesystemMediafilesResponses = {
|
|
2336
|
+
/**
|
|
2337
|
+
* OK
|
|
2338
|
+
*/
|
|
2339
|
+
200: unknown;
|
|
2340
|
+
};
|
|
2341
|
+
export type GetApiV3HealthData = {
|
|
2342
|
+
body?: never;
|
|
2343
|
+
path?: never;
|
|
2344
|
+
query?: never;
|
|
2345
|
+
url: '/api/v3/health';
|
|
2346
|
+
};
|
|
2347
|
+
export type GetApiV3HealthResponses = {
|
|
2348
|
+
/**
|
|
2349
|
+
* OK
|
|
2350
|
+
*/
|
|
2351
|
+
200: Array<HealthResource>;
|
|
2352
|
+
};
|
|
2353
|
+
export type GetApiV3HealthResponse = GetApiV3HealthResponses[keyof GetApiV3HealthResponses];
|
|
2354
|
+
export type GetApiV3HistoryData = {
|
|
2355
|
+
body?: never;
|
|
2356
|
+
path?: never;
|
|
2357
|
+
query?: {
|
|
2358
|
+
page?: number;
|
|
2359
|
+
pageSize?: number;
|
|
2360
|
+
sortKey?: string;
|
|
2361
|
+
sortDirection?: SortDirection;
|
|
2362
|
+
includeSeries?: boolean;
|
|
2363
|
+
includeEpisode?: boolean;
|
|
2364
|
+
eventType?: Array<number>;
|
|
2365
|
+
episodeId?: number;
|
|
2366
|
+
downloadId?: string;
|
|
2367
|
+
seriesIds?: Array<number>;
|
|
2368
|
+
languages?: Array<number>;
|
|
2369
|
+
quality?: Array<number>;
|
|
2370
|
+
};
|
|
2371
|
+
url: '/api/v3/history';
|
|
2372
|
+
};
|
|
2373
|
+
export type GetApiV3HistoryResponses = {
|
|
2374
|
+
/**
|
|
2375
|
+
* OK
|
|
2376
|
+
*/
|
|
2377
|
+
200: HistoryResourcePagingResource;
|
|
2378
|
+
};
|
|
2379
|
+
export type GetApiV3HistoryResponse = GetApiV3HistoryResponses[keyof GetApiV3HistoryResponses];
|
|
2380
|
+
export type GetApiV3HistorySinceData = {
|
|
2381
|
+
body?: never;
|
|
2382
|
+
path?: never;
|
|
2383
|
+
query?: {
|
|
2384
|
+
date?: string;
|
|
2385
|
+
eventType?: EpisodeHistoryEventType;
|
|
2386
|
+
includeSeries?: boolean;
|
|
2387
|
+
includeEpisode?: boolean;
|
|
2388
|
+
};
|
|
2389
|
+
url: '/api/v3/history/since';
|
|
2390
|
+
};
|
|
2391
|
+
export type GetApiV3HistorySinceResponses = {
|
|
2392
|
+
/**
|
|
2393
|
+
* OK
|
|
2394
|
+
*/
|
|
2395
|
+
200: Array<HistoryResource>;
|
|
2396
|
+
};
|
|
2397
|
+
export type GetApiV3HistorySinceResponse = GetApiV3HistorySinceResponses[keyof GetApiV3HistorySinceResponses];
|
|
2398
|
+
export type GetApiV3HistorySeriesData = {
|
|
2399
|
+
body?: never;
|
|
2400
|
+
path?: never;
|
|
2401
|
+
query?: {
|
|
2402
|
+
seriesId?: number;
|
|
2403
|
+
seasonNumber?: number;
|
|
2404
|
+
eventType?: EpisodeHistoryEventType;
|
|
2405
|
+
includeSeries?: boolean;
|
|
2406
|
+
includeEpisode?: boolean;
|
|
2407
|
+
};
|
|
2408
|
+
url: '/api/v3/history/series';
|
|
2409
|
+
};
|
|
2410
|
+
export type GetApiV3HistorySeriesResponses = {
|
|
2411
|
+
/**
|
|
2412
|
+
* OK
|
|
2413
|
+
*/
|
|
2414
|
+
200: Array<HistoryResource>;
|
|
2415
|
+
};
|
|
2416
|
+
export type GetApiV3HistorySeriesResponse = GetApiV3HistorySeriesResponses[keyof GetApiV3HistorySeriesResponses];
|
|
2417
|
+
export type PostApiV3HistoryFailedByIdData = {
|
|
2418
|
+
body?: never;
|
|
2419
|
+
path: {
|
|
2420
|
+
id: number;
|
|
2421
|
+
};
|
|
2422
|
+
query?: never;
|
|
2423
|
+
url: '/api/v3/history/failed/{id}';
|
|
2424
|
+
};
|
|
2425
|
+
export type PostApiV3HistoryFailedByIdResponses = {
|
|
2426
|
+
/**
|
|
2427
|
+
* OK
|
|
2428
|
+
*/
|
|
2429
|
+
200: unknown;
|
|
2430
|
+
};
|
|
2431
|
+
export type GetApiV3ConfigHostData = {
|
|
2432
|
+
body?: never;
|
|
2433
|
+
path?: never;
|
|
2434
|
+
query?: never;
|
|
2435
|
+
url: '/api/v3/config/host';
|
|
2436
|
+
};
|
|
2437
|
+
export type GetApiV3ConfigHostResponses = {
|
|
2438
|
+
/**
|
|
2439
|
+
* OK
|
|
2440
|
+
*/
|
|
2441
|
+
200: HostConfigResource;
|
|
2442
|
+
};
|
|
2443
|
+
export type GetApiV3ConfigHostResponse = GetApiV3ConfigHostResponses[keyof GetApiV3ConfigHostResponses];
|
|
2444
|
+
export type GetApiV3ConfigHostByIdData = {
|
|
2445
|
+
body?: never;
|
|
2446
|
+
path: {
|
|
2447
|
+
id: number;
|
|
2448
|
+
};
|
|
2449
|
+
query?: never;
|
|
2450
|
+
url: '/api/v3/config/host/{id}';
|
|
2451
|
+
};
|
|
2452
|
+
export type GetApiV3ConfigHostByIdResponses = {
|
|
2453
|
+
/**
|
|
2454
|
+
* OK
|
|
2455
|
+
*/
|
|
2456
|
+
200: HostConfigResource;
|
|
2457
|
+
};
|
|
2458
|
+
export type GetApiV3ConfigHostByIdResponse = GetApiV3ConfigHostByIdResponses[keyof GetApiV3ConfigHostByIdResponses];
|
|
2459
|
+
export type PutApiV3ConfigHostByIdData = {
|
|
2460
|
+
body?: HostConfigResource;
|
|
2461
|
+
path: {
|
|
2462
|
+
id: string;
|
|
2463
|
+
};
|
|
2464
|
+
query?: never;
|
|
2465
|
+
url: '/api/v3/config/host/{id}';
|
|
2466
|
+
};
|
|
2467
|
+
export type PutApiV3ConfigHostByIdResponses = {
|
|
2468
|
+
/**
|
|
2469
|
+
* OK
|
|
2470
|
+
*/
|
|
2471
|
+
200: HostConfigResource;
|
|
2472
|
+
};
|
|
2473
|
+
export type PutApiV3ConfigHostByIdResponse = PutApiV3ConfigHostByIdResponses[keyof PutApiV3ConfigHostByIdResponses];
|
|
2474
|
+
export type GetApiV3ImportlistData = {
|
|
2475
|
+
body?: never;
|
|
2476
|
+
path?: never;
|
|
2477
|
+
query?: never;
|
|
2478
|
+
url: '/api/v3/importlist';
|
|
2479
|
+
};
|
|
2480
|
+
export type GetApiV3ImportlistResponses = {
|
|
2481
|
+
/**
|
|
2482
|
+
* OK
|
|
2483
|
+
*/
|
|
2484
|
+
200: Array<ImportListResource>;
|
|
2485
|
+
};
|
|
2486
|
+
export type GetApiV3ImportlistResponse = GetApiV3ImportlistResponses[keyof GetApiV3ImportlistResponses];
|
|
2487
|
+
export type PostApiV3ImportlistData = {
|
|
2488
|
+
body?: ImportListResource;
|
|
2489
|
+
path?: never;
|
|
2490
|
+
query?: {
|
|
2491
|
+
forceSave?: boolean;
|
|
2492
|
+
};
|
|
2493
|
+
url: '/api/v3/importlist';
|
|
2494
|
+
};
|
|
2495
|
+
export type PostApiV3ImportlistResponses = {
|
|
2496
|
+
/**
|
|
2497
|
+
* OK
|
|
2498
|
+
*/
|
|
2499
|
+
200: ImportListResource;
|
|
2500
|
+
};
|
|
2501
|
+
export type PostApiV3ImportlistResponse = PostApiV3ImportlistResponses[keyof PostApiV3ImportlistResponses];
|
|
2502
|
+
export type DeleteApiV3ImportlistByIdData = {
|
|
2503
|
+
body?: never;
|
|
2504
|
+
path: {
|
|
2505
|
+
id: number;
|
|
2506
|
+
};
|
|
2507
|
+
query?: never;
|
|
2508
|
+
url: '/api/v3/importlist/{id}';
|
|
2509
|
+
};
|
|
2510
|
+
export type DeleteApiV3ImportlistByIdResponses = {
|
|
2511
|
+
/**
|
|
2512
|
+
* OK
|
|
2513
|
+
*/
|
|
2514
|
+
200: unknown;
|
|
2515
|
+
};
|
|
2516
|
+
export type GetApiV3ImportlistByIdData = {
|
|
2517
|
+
body?: never;
|
|
2518
|
+
path: {
|
|
2519
|
+
id: number;
|
|
2520
|
+
};
|
|
2521
|
+
query?: never;
|
|
2522
|
+
url: '/api/v3/importlist/{id}';
|
|
2523
|
+
};
|
|
2524
|
+
export type GetApiV3ImportlistByIdResponses = {
|
|
2525
|
+
/**
|
|
2526
|
+
* OK
|
|
2527
|
+
*/
|
|
2528
|
+
200: ImportListResource;
|
|
2529
|
+
};
|
|
2530
|
+
export type GetApiV3ImportlistByIdResponse = GetApiV3ImportlistByIdResponses[keyof GetApiV3ImportlistByIdResponses];
|
|
2531
|
+
export type PutApiV3ImportlistByIdData = {
|
|
2532
|
+
body?: ImportListResource;
|
|
2533
|
+
path: {
|
|
2534
|
+
id: number;
|
|
2535
|
+
};
|
|
2536
|
+
query?: {
|
|
2537
|
+
forceSave?: boolean;
|
|
2538
|
+
};
|
|
2539
|
+
url: '/api/v3/importlist/{id}';
|
|
2540
|
+
};
|
|
2541
|
+
export type PutApiV3ImportlistByIdResponses = {
|
|
2542
|
+
/**
|
|
2543
|
+
* OK
|
|
2544
|
+
*/
|
|
2545
|
+
200: ImportListResource;
|
|
2546
|
+
};
|
|
2547
|
+
export type PutApiV3ImportlistByIdResponse = PutApiV3ImportlistByIdResponses[keyof PutApiV3ImportlistByIdResponses];
|
|
2548
|
+
export type DeleteApiV3ImportlistBulkData = {
|
|
2549
|
+
body?: ImportListBulkResource;
|
|
2550
|
+
path?: never;
|
|
2551
|
+
query?: never;
|
|
2552
|
+
url: '/api/v3/importlist/bulk';
|
|
2553
|
+
};
|
|
2554
|
+
export type DeleteApiV3ImportlistBulkResponses = {
|
|
2555
|
+
/**
|
|
2556
|
+
* OK
|
|
2557
|
+
*/
|
|
2558
|
+
200: unknown;
|
|
2559
|
+
};
|
|
2560
|
+
export type PutApiV3ImportlistBulkData = {
|
|
2561
|
+
body?: ImportListBulkResource;
|
|
2562
|
+
path?: never;
|
|
2563
|
+
query?: never;
|
|
2564
|
+
url: '/api/v3/importlist/bulk';
|
|
2565
|
+
};
|
|
2566
|
+
export type PutApiV3ImportlistBulkResponses = {
|
|
2567
|
+
/**
|
|
2568
|
+
* OK
|
|
2569
|
+
*/
|
|
2570
|
+
200: ImportListResource;
|
|
2571
|
+
};
|
|
2572
|
+
export type PutApiV3ImportlistBulkResponse = PutApiV3ImportlistBulkResponses[keyof PutApiV3ImportlistBulkResponses];
|
|
2573
|
+
export type GetApiV3ImportlistSchemaData = {
|
|
2574
|
+
body?: never;
|
|
2575
|
+
path?: never;
|
|
2576
|
+
query?: never;
|
|
2577
|
+
url: '/api/v3/importlist/schema';
|
|
2578
|
+
};
|
|
2579
|
+
export type GetApiV3ImportlistSchemaResponses = {
|
|
2580
|
+
/**
|
|
2581
|
+
* OK
|
|
2582
|
+
*/
|
|
2583
|
+
200: Array<ImportListResource>;
|
|
2584
|
+
};
|
|
2585
|
+
export type GetApiV3ImportlistSchemaResponse = GetApiV3ImportlistSchemaResponses[keyof GetApiV3ImportlistSchemaResponses];
|
|
2586
|
+
export type PostApiV3ImportlistTestData = {
|
|
2587
|
+
body?: ImportListResource;
|
|
2588
|
+
path?: never;
|
|
2589
|
+
query?: {
|
|
2590
|
+
forceTest?: boolean;
|
|
2591
|
+
};
|
|
2592
|
+
url: '/api/v3/importlist/test';
|
|
2593
|
+
};
|
|
2594
|
+
export type PostApiV3ImportlistTestResponses = {
|
|
2595
|
+
/**
|
|
2596
|
+
* OK
|
|
2597
|
+
*/
|
|
2598
|
+
200: unknown;
|
|
2599
|
+
};
|
|
2600
|
+
export type PostApiV3ImportlistTestallData = {
|
|
2601
|
+
body?: never;
|
|
2602
|
+
path?: never;
|
|
2603
|
+
query?: never;
|
|
2604
|
+
url: '/api/v3/importlist/testall';
|
|
2605
|
+
};
|
|
2606
|
+
export type PostApiV3ImportlistTestallResponses = {
|
|
2607
|
+
/**
|
|
2608
|
+
* OK
|
|
2609
|
+
*/
|
|
2610
|
+
200: unknown;
|
|
2611
|
+
};
|
|
2612
|
+
export type PostApiV3ImportlistActionByNameData = {
|
|
2613
|
+
body?: ImportListResource;
|
|
2614
|
+
path: {
|
|
2615
|
+
name: string;
|
|
2616
|
+
};
|
|
2617
|
+
query?: never;
|
|
2618
|
+
url: '/api/v3/importlist/action/{name}';
|
|
2619
|
+
};
|
|
2620
|
+
export type PostApiV3ImportlistActionByNameResponses = {
|
|
2621
|
+
/**
|
|
2622
|
+
* OK
|
|
2623
|
+
*/
|
|
2624
|
+
200: unknown;
|
|
2625
|
+
};
|
|
2626
|
+
export type GetApiV3ConfigImportlistData = {
|
|
2627
|
+
body?: never;
|
|
2628
|
+
path?: never;
|
|
2629
|
+
query?: never;
|
|
2630
|
+
url: '/api/v3/config/importlist';
|
|
2631
|
+
};
|
|
2632
|
+
export type GetApiV3ConfigImportlistResponses = {
|
|
2633
|
+
/**
|
|
2634
|
+
* OK
|
|
2635
|
+
*/
|
|
2636
|
+
200: ImportListConfigResource;
|
|
2637
|
+
};
|
|
2638
|
+
export type GetApiV3ConfigImportlistResponse = GetApiV3ConfigImportlistResponses[keyof GetApiV3ConfigImportlistResponses];
|
|
2639
|
+
export type GetApiV3ConfigImportlistByIdData = {
|
|
2640
|
+
body?: never;
|
|
2641
|
+
path: {
|
|
2642
|
+
id: number;
|
|
2643
|
+
};
|
|
2644
|
+
query?: never;
|
|
2645
|
+
url: '/api/v3/config/importlist/{id}';
|
|
2646
|
+
};
|
|
2647
|
+
export type GetApiV3ConfigImportlistByIdResponses = {
|
|
2648
|
+
/**
|
|
2649
|
+
* OK
|
|
2650
|
+
*/
|
|
2651
|
+
200: ImportListConfigResource;
|
|
2652
|
+
};
|
|
2653
|
+
export type GetApiV3ConfigImportlistByIdResponse = GetApiV3ConfigImportlistByIdResponses[keyof GetApiV3ConfigImportlistByIdResponses];
|
|
2654
|
+
export type PutApiV3ConfigImportlistByIdData = {
|
|
2655
|
+
body?: ImportListConfigResource;
|
|
2656
|
+
path: {
|
|
2657
|
+
id: string;
|
|
2658
|
+
};
|
|
2659
|
+
query?: never;
|
|
2660
|
+
url: '/api/v3/config/importlist/{id}';
|
|
2661
|
+
};
|
|
2662
|
+
export type PutApiV3ConfigImportlistByIdResponses = {
|
|
2663
|
+
/**
|
|
2664
|
+
* OK
|
|
2665
|
+
*/
|
|
2666
|
+
200: ImportListConfigResource;
|
|
2667
|
+
};
|
|
2668
|
+
export type PutApiV3ConfigImportlistByIdResponse = PutApiV3ConfigImportlistByIdResponses[keyof PutApiV3ConfigImportlistByIdResponses];
|
|
2669
|
+
export type GetApiV3ImportlistexclusionData = {
|
|
2670
|
+
body?: never;
|
|
2671
|
+
path?: never;
|
|
2672
|
+
query?: never;
|
|
2673
|
+
url: '/api/v3/importlistexclusion';
|
|
2674
|
+
};
|
|
2675
|
+
export type GetApiV3ImportlistexclusionResponses = {
|
|
2676
|
+
/**
|
|
2677
|
+
* OK
|
|
2678
|
+
*/
|
|
2679
|
+
200: Array<ImportListExclusionResource>;
|
|
2680
|
+
};
|
|
2681
|
+
export type GetApiV3ImportlistexclusionResponse = GetApiV3ImportlistexclusionResponses[keyof GetApiV3ImportlistexclusionResponses];
|
|
2682
|
+
export type PostApiV3ImportlistexclusionData = {
|
|
2683
|
+
body?: ImportListExclusionResource;
|
|
2684
|
+
path?: never;
|
|
2685
|
+
query?: never;
|
|
2686
|
+
url: '/api/v3/importlistexclusion';
|
|
2687
|
+
};
|
|
2688
|
+
export type PostApiV3ImportlistexclusionResponses = {
|
|
2689
|
+
/**
|
|
2690
|
+
* OK
|
|
2691
|
+
*/
|
|
2692
|
+
200: ImportListExclusionResource;
|
|
2693
|
+
};
|
|
2694
|
+
export type PostApiV3ImportlistexclusionResponse = PostApiV3ImportlistexclusionResponses[keyof PostApiV3ImportlistexclusionResponses];
|
|
2695
|
+
export type GetApiV3ImportlistexclusionPagedData = {
|
|
2696
|
+
body?: never;
|
|
2697
|
+
path?: never;
|
|
2698
|
+
query?: {
|
|
2699
|
+
page?: number;
|
|
2700
|
+
pageSize?: number;
|
|
2701
|
+
sortKey?: string;
|
|
2702
|
+
sortDirection?: SortDirection;
|
|
2703
|
+
};
|
|
2704
|
+
url: '/api/v3/importlistexclusion/paged';
|
|
2705
|
+
};
|
|
2706
|
+
export type GetApiV3ImportlistexclusionPagedResponses = {
|
|
2707
|
+
/**
|
|
2708
|
+
* OK
|
|
2709
|
+
*/
|
|
2710
|
+
200: ImportListExclusionResourcePagingResource;
|
|
2711
|
+
};
|
|
2712
|
+
export type GetApiV3ImportlistexclusionPagedResponse = GetApiV3ImportlistexclusionPagedResponses[keyof GetApiV3ImportlistexclusionPagedResponses];
|
|
2713
|
+
export type DeleteApiV3ImportlistexclusionByIdData = {
|
|
2714
|
+
body?: never;
|
|
2715
|
+
path: {
|
|
2716
|
+
id: number;
|
|
2717
|
+
};
|
|
2718
|
+
query?: never;
|
|
2719
|
+
url: '/api/v3/importlistexclusion/{id}';
|
|
2720
|
+
};
|
|
2721
|
+
export type DeleteApiV3ImportlistexclusionByIdResponses = {
|
|
2722
|
+
/**
|
|
2723
|
+
* OK
|
|
2724
|
+
*/
|
|
2725
|
+
200: unknown;
|
|
2726
|
+
};
|
|
2727
|
+
export type GetApiV3ImportlistexclusionByIdData = {
|
|
2728
|
+
body?: never;
|
|
2729
|
+
path: {
|
|
2730
|
+
id: number;
|
|
2731
|
+
};
|
|
2732
|
+
query?: never;
|
|
2733
|
+
url: '/api/v3/importlistexclusion/{id}';
|
|
2734
|
+
};
|
|
2735
|
+
export type GetApiV3ImportlistexclusionByIdResponses = {
|
|
2736
|
+
/**
|
|
2737
|
+
* OK
|
|
2738
|
+
*/
|
|
2739
|
+
200: ImportListExclusionResource;
|
|
2740
|
+
};
|
|
2741
|
+
export type GetApiV3ImportlistexclusionByIdResponse = GetApiV3ImportlistexclusionByIdResponses[keyof GetApiV3ImportlistexclusionByIdResponses];
|
|
2742
|
+
export type PutApiV3ImportlistexclusionByIdData = {
|
|
2743
|
+
body?: ImportListExclusionResource;
|
|
2744
|
+
path: {
|
|
2745
|
+
id: string;
|
|
2746
|
+
};
|
|
2747
|
+
query?: never;
|
|
2748
|
+
url: '/api/v3/importlistexclusion/{id}';
|
|
2749
|
+
};
|
|
2750
|
+
export type PutApiV3ImportlistexclusionByIdResponses = {
|
|
2751
|
+
/**
|
|
2752
|
+
* OK
|
|
2753
|
+
*/
|
|
2754
|
+
200: ImportListExclusionResource;
|
|
2755
|
+
};
|
|
2756
|
+
export type PutApiV3ImportlistexclusionByIdResponse = PutApiV3ImportlistexclusionByIdResponses[keyof PutApiV3ImportlistexclusionByIdResponses];
|
|
2757
|
+
export type DeleteApiV3ImportlistexclusionBulkData = {
|
|
2758
|
+
body?: ImportListExclusionBulkResource;
|
|
2759
|
+
path?: never;
|
|
2760
|
+
query?: never;
|
|
2761
|
+
url: '/api/v3/importlistexclusion/bulk';
|
|
2762
|
+
};
|
|
2763
|
+
export type DeleteApiV3ImportlistexclusionBulkResponses = {
|
|
2764
|
+
/**
|
|
2765
|
+
* OK
|
|
2766
|
+
*/
|
|
2767
|
+
200: unknown;
|
|
2768
|
+
};
|
|
2769
|
+
export type GetApiV3IndexerData = {
|
|
2770
|
+
body?: never;
|
|
2771
|
+
path?: never;
|
|
2772
|
+
query?: never;
|
|
2773
|
+
url: '/api/v3/indexer';
|
|
2774
|
+
};
|
|
2775
|
+
export type GetApiV3IndexerResponses = {
|
|
2776
|
+
/**
|
|
2777
|
+
* OK
|
|
2778
|
+
*/
|
|
2779
|
+
200: Array<IndexerResource>;
|
|
2780
|
+
};
|
|
2781
|
+
export type GetApiV3IndexerResponse = GetApiV3IndexerResponses[keyof GetApiV3IndexerResponses];
|
|
2782
|
+
export type PostApiV3IndexerData = {
|
|
2783
|
+
body?: IndexerResource;
|
|
2784
|
+
path?: never;
|
|
2785
|
+
query?: {
|
|
2786
|
+
forceSave?: boolean;
|
|
2787
|
+
};
|
|
2788
|
+
url: '/api/v3/indexer';
|
|
2789
|
+
};
|
|
2790
|
+
export type PostApiV3IndexerResponses = {
|
|
2791
|
+
/**
|
|
2792
|
+
* OK
|
|
2793
|
+
*/
|
|
2794
|
+
200: IndexerResource;
|
|
2795
|
+
};
|
|
2796
|
+
export type PostApiV3IndexerResponse = PostApiV3IndexerResponses[keyof PostApiV3IndexerResponses];
|
|
2797
|
+
export type DeleteApiV3IndexerByIdData = {
|
|
2798
|
+
body?: never;
|
|
2799
|
+
path: {
|
|
2800
|
+
id: number;
|
|
2801
|
+
};
|
|
2802
|
+
query?: never;
|
|
2803
|
+
url: '/api/v3/indexer/{id}';
|
|
2804
|
+
};
|
|
2805
|
+
export type DeleteApiV3IndexerByIdResponses = {
|
|
2806
|
+
/**
|
|
2807
|
+
* OK
|
|
2808
|
+
*/
|
|
2809
|
+
200: unknown;
|
|
2810
|
+
};
|
|
2811
|
+
export type GetApiV3IndexerByIdData = {
|
|
2812
|
+
body?: never;
|
|
2813
|
+
path: {
|
|
2814
|
+
id: number;
|
|
2815
|
+
};
|
|
2816
|
+
query?: never;
|
|
2817
|
+
url: '/api/v3/indexer/{id}';
|
|
2818
|
+
};
|
|
2819
|
+
export type GetApiV3IndexerByIdResponses = {
|
|
2820
|
+
/**
|
|
2821
|
+
* OK
|
|
2822
|
+
*/
|
|
2823
|
+
200: IndexerResource;
|
|
2824
|
+
};
|
|
2825
|
+
export type GetApiV3IndexerByIdResponse = GetApiV3IndexerByIdResponses[keyof GetApiV3IndexerByIdResponses];
|
|
2826
|
+
export type PutApiV3IndexerByIdData = {
|
|
2827
|
+
body?: IndexerResource;
|
|
2828
|
+
path: {
|
|
2829
|
+
id: number;
|
|
2830
|
+
};
|
|
2831
|
+
query?: {
|
|
2832
|
+
forceSave?: boolean;
|
|
2833
|
+
};
|
|
2834
|
+
url: '/api/v3/indexer/{id}';
|
|
2835
|
+
};
|
|
2836
|
+
export type PutApiV3IndexerByIdResponses = {
|
|
2837
|
+
/**
|
|
2838
|
+
* OK
|
|
2839
|
+
*/
|
|
2840
|
+
200: IndexerResource;
|
|
2841
|
+
};
|
|
2842
|
+
export type PutApiV3IndexerByIdResponse = PutApiV3IndexerByIdResponses[keyof PutApiV3IndexerByIdResponses];
|
|
2843
|
+
export type DeleteApiV3IndexerBulkData = {
|
|
2844
|
+
body?: IndexerBulkResource;
|
|
2845
|
+
path?: never;
|
|
2846
|
+
query?: never;
|
|
2847
|
+
url: '/api/v3/indexer/bulk';
|
|
2848
|
+
};
|
|
2849
|
+
export type DeleteApiV3IndexerBulkResponses = {
|
|
2850
|
+
/**
|
|
2851
|
+
* OK
|
|
2852
|
+
*/
|
|
2853
|
+
200: unknown;
|
|
2854
|
+
};
|
|
2855
|
+
export type PutApiV3IndexerBulkData = {
|
|
2856
|
+
body?: IndexerBulkResource;
|
|
2857
|
+
path?: never;
|
|
2858
|
+
query?: never;
|
|
2859
|
+
url: '/api/v3/indexer/bulk';
|
|
2860
|
+
};
|
|
2861
|
+
export type PutApiV3IndexerBulkResponses = {
|
|
2862
|
+
/**
|
|
2863
|
+
* OK
|
|
2864
|
+
*/
|
|
2865
|
+
200: IndexerResource;
|
|
2866
|
+
};
|
|
2867
|
+
export type PutApiV3IndexerBulkResponse = PutApiV3IndexerBulkResponses[keyof PutApiV3IndexerBulkResponses];
|
|
2868
|
+
export type GetApiV3IndexerSchemaData = {
|
|
2869
|
+
body?: never;
|
|
2870
|
+
path?: never;
|
|
2871
|
+
query?: never;
|
|
2872
|
+
url: '/api/v3/indexer/schema';
|
|
2873
|
+
};
|
|
2874
|
+
export type GetApiV3IndexerSchemaResponses = {
|
|
2875
|
+
/**
|
|
2876
|
+
* OK
|
|
2877
|
+
*/
|
|
2878
|
+
200: Array<IndexerResource>;
|
|
2879
|
+
};
|
|
2880
|
+
export type GetApiV3IndexerSchemaResponse = GetApiV3IndexerSchemaResponses[keyof GetApiV3IndexerSchemaResponses];
|
|
2881
|
+
export type PostApiV3IndexerTestData = {
|
|
2882
|
+
body?: IndexerResource;
|
|
2883
|
+
path?: never;
|
|
2884
|
+
query?: {
|
|
2885
|
+
forceTest?: boolean;
|
|
2886
|
+
};
|
|
2887
|
+
url: '/api/v3/indexer/test';
|
|
2888
|
+
};
|
|
2889
|
+
export type PostApiV3IndexerTestResponses = {
|
|
2890
|
+
/**
|
|
2891
|
+
* OK
|
|
2892
|
+
*/
|
|
2893
|
+
200: unknown;
|
|
2894
|
+
};
|
|
2895
|
+
export type PostApiV3IndexerTestallData = {
|
|
2896
|
+
body?: never;
|
|
2897
|
+
path?: never;
|
|
2898
|
+
query?: never;
|
|
2899
|
+
url: '/api/v3/indexer/testall';
|
|
2900
|
+
};
|
|
2901
|
+
export type PostApiV3IndexerTestallResponses = {
|
|
2902
|
+
/**
|
|
2903
|
+
* OK
|
|
2904
|
+
*/
|
|
2905
|
+
200: unknown;
|
|
2906
|
+
};
|
|
2907
|
+
export type PostApiV3IndexerActionByNameData = {
|
|
2908
|
+
body?: IndexerResource;
|
|
2909
|
+
path: {
|
|
2910
|
+
name: string;
|
|
2911
|
+
};
|
|
2912
|
+
query?: never;
|
|
2913
|
+
url: '/api/v3/indexer/action/{name}';
|
|
2914
|
+
};
|
|
2915
|
+
export type PostApiV3IndexerActionByNameResponses = {
|
|
2916
|
+
/**
|
|
2917
|
+
* OK
|
|
2918
|
+
*/
|
|
2919
|
+
200: unknown;
|
|
2920
|
+
};
|
|
2921
|
+
export type GetApiV3ConfigIndexerData = {
|
|
2922
|
+
body?: never;
|
|
2923
|
+
path?: never;
|
|
2924
|
+
query?: never;
|
|
2925
|
+
url: '/api/v3/config/indexer';
|
|
2926
|
+
};
|
|
2927
|
+
export type GetApiV3ConfigIndexerResponses = {
|
|
2928
|
+
/**
|
|
2929
|
+
* OK
|
|
2930
|
+
*/
|
|
2931
|
+
200: IndexerConfigResource;
|
|
2932
|
+
};
|
|
2933
|
+
export type GetApiV3ConfigIndexerResponse = GetApiV3ConfigIndexerResponses[keyof GetApiV3ConfigIndexerResponses];
|
|
2934
|
+
export type GetApiV3ConfigIndexerByIdData = {
|
|
2935
|
+
body?: never;
|
|
2936
|
+
path: {
|
|
2937
|
+
id: number;
|
|
2938
|
+
};
|
|
2939
|
+
query?: never;
|
|
2940
|
+
url: '/api/v3/config/indexer/{id}';
|
|
2941
|
+
};
|
|
2942
|
+
export type GetApiV3ConfigIndexerByIdResponses = {
|
|
2943
|
+
/**
|
|
2944
|
+
* OK
|
|
2945
|
+
*/
|
|
2946
|
+
200: IndexerConfigResource;
|
|
2947
|
+
};
|
|
2948
|
+
export type GetApiV3ConfigIndexerByIdResponse = GetApiV3ConfigIndexerByIdResponses[keyof GetApiV3ConfigIndexerByIdResponses];
|
|
2949
|
+
export type PutApiV3ConfigIndexerByIdData = {
|
|
2950
|
+
body?: IndexerConfigResource;
|
|
2951
|
+
path: {
|
|
2952
|
+
id: string;
|
|
2953
|
+
};
|
|
2954
|
+
query?: never;
|
|
2955
|
+
url: '/api/v3/config/indexer/{id}';
|
|
2956
|
+
};
|
|
2957
|
+
export type PutApiV3ConfigIndexerByIdResponses = {
|
|
2958
|
+
/**
|
|
2959
|
+
* OK
|
|
2960
|
+
*/
|
|
2961
|
+
200: IndexerConfigResource;
|
|
2962
|
+
};
|
|
2963
|
+
export type PutApiV3ConfigIndexerByIdResponse = PutApiV3ConfigIndexerByIdResponses[keyof PutApiV3ConfigIndexerByIdResponses];
|
|
2964
|
+
export type GetApiV3IndexerflagData = {
|
|
2965
|
+
body?: never;
|
|
2966
|
+
path?: never;
|
|
2967
|
+
query?: never;
|
|
2968
|
+
url: '/api/v3/indexerflag';
|
|
2969
|
+
};
|
|
2970
|
+
export type GetApiV3IndexerflagResponses = {
|
|
2971
|
+
/**
|
|
2972
|
+
* OK
|
|
2973
|
+
*/
|
|
2974
|
+
200: Array<IndexerFlagResource>;
|
|
2975
|
+
};
|
|
2976
|
+
export type GetApiV3IndexerflagResponse = GetApiV3IndexerflagResponses[keyof GetApiV3IndexerflagResponses];
|
|
2977
|
+
export type GetApiV3LanguageData = {
|
|
2978
|
+
body?: never;
|
|
2979
|
+
path?: never;
|
|
2980
|
+
query?: never;
|
|
2981
|
+
url: '/api/v3/language';
|
|
2982
|
+
};
|
|
2983
|
+
export type GetApiV3LanguageResponses = {
|
|
2984
|
+
/**
|
|
2985
|
+
* OK
|
|
2986
|
+
*/
|
|
2987
|
+
200: Array<LanguageResource>;
|
|
2988
|
+
};
|
|
2989
|
+
export type GetApiV3LanguageResponse = GetApiV3LanguageResponses[keyof GetApiV3LanguageResponses];
|
|
2990
|
+
export type GetApiV3LanguageByIdData = {
|
|
2991
|
+
body?: never;
|
|
2992
|
+
path: {
|
|
2993
|
+
id: number;
|
|
2994
|
+
};
|
|
2995
|
+
query?: never;
|
|
2996
|
+
url: '/api/v3/language/{id}';
|
|
2997
|
+
};
|
|
2998
|
+
export type GetApiV3LanguageByIdResponses = {
|
|
2999
|
+
/**
|
|
3000
|
+
* OK
|
|
3001
|
+
*/
|
|
3002
|
+
200: LanguageResource;
|
|
3003
|
+
};
|
|
3004
|
+
export type GetApiV3LanguageByIdResponse = GetApiV3LanguageByIdResponses[keyof GetApiV3LanguageByIdResponses];
|
|
3005
|
+
export type GetApiV3LanguageprofileData = {
|
|
3006
|
+
body?: never;
|
|
3007
|
+
path?: never;
|
|
3008
|
+
query?: never;
|
|
3009
|
+
url: '/api/v3/languageprofile';
|
|
3010
|
+
};
|
|
3011
|
+
export type GetApiV3LanguageprofileResponses = {
|
|
3012
|
+
/**
|
|
3013
|
+
* OK
|
|
3014
|
+
*/
|
|
3015
|
+
200: Array<LanguageProfileResource>;
|
|
3016
|
+
};
|
|
3017
|
+
export type GetApiV3LanguageprofileResponse = GetApiV3LanguageprofileResponses[keyof GetApiV3LanguageprofileResponses];
|
|
3018
|
+
export type PostApiV3LanguageprofileData = {
|
|
3019
|
+
body?: LanguageProfileResource;
|
|
3020
|
+
path?: never;
|
|
3021
|
+
query?: never;
|
|
3022
|
+
url: '/api/v3/languageprofile';
|
|
3023
|
+
};
|
|
3024
|
+
export type PostApiV3LanguageprofileResponses = {
|
|
3025
|
+
/**
|
|
3026
|
+
* OK
|
|
3027
|
+
*/
|
|
3028
|
+
200: LanguageProfileResource;
|
|
3029
|
+
};
|
|
3030
|
+
export type PostApiV3LanguageprofileResponse = PostApiV3LanguageprofileResponses[keyof PostApiV3LanguageprofileResponses];
|
|
3031
|
+
export type DeleteApiV3LanguageprofileByIdData = {
|
|
3032
|
+
body?: never;
|
|
3033
|
+
path: {
|
|
3034
|
+
id: number;
|
|
3035
|
+
};
|
|
3036
|
+
query?: never;
|
|
3037
|
+
url: '/api/v3/languageprofile/{id}';
|
|
3038
|
+
};
|
|
3039
|
+
export type DeleteApiV3LanguageprofileByIdResponses = {
|
|
3040
|
+
/**
|
|
3041
|
+
* OK
|
|
3042
|
+
*/
|
|
3043
|
+
200: unknown;
|
|
3044
|
+
};
|
|
3045
|
+
export type GetApiV3LanguageprofileByIdData = {
|
|
3046
|
+
body?: never;
|
|
3047
|
+
path: {
|
|
3048
|
+
id: number;
|
|
3049
|
+
};
|
|
3050
|
+
query?: never;
|
|
3051
|
+
url: '/api/v3/languageprofile/{id}';
|
|
3052
|
+
};
|
|
3053
|
+
export type GetApiV3LanguageprofileByIdResponses = {
|
|
3054
|
+
/**
|
|
3055
|
+
* OK
|
|
3056
|
+
*/
|
|
3057
|
+
200: LanguageProfileResource;
|
|
3058
|
+
};
|
|
3059
|
+
export type GetApiV3LanguageprofileByIdResponse = GetApiV3LanguageprofileByIdResponses[keyof GetApiV3LanguageprofileByIdResponses];
|
|
3060
|
+
export type PutApiV3LanguageprofileByIdData = {
|
|
3061
|
+
body?: LanguageProfileResource;
|
|
3062
|
+
path: {
|
|
3063
|
+
id: string;
|
|
3064
|
+
};
|
|
3065
|
+
query?: never;
|
|
3066
|
+
url: '/api/v3/languageprofile/{id}';
|
|
3067
|
+
};
|
|
3068
|
+
export type PutApiV3LanguageprofileByIdResponses = {
|
|
3069
|
+
/**
|
|
3070
|
+
* OK
|
|
3071
|
+
*/
|
|
3072
|
+
200: LanguageProfileResource;
|
|
3073
|
+
};
|
|
3074
|
+
export type PutApiV3LanguageprofileByIdResponse = PutApiV3LanguageprofileByIdResponses[keyof PutApiV3LanguageprofileByIdResponses];
|
|
3075
|
+
export type GetApiV3LanguageprofileSchemaData = {
|
|
3076
|
+
body?: never;
|
|
3077
|
+
path?: never;
|
|
3078
|
+
query?: never;
|
|
3079
|
+
url: '/api/v3/languageprofile/schema';
|
|
3080
|
+
};
|
|
3081
|
+
export type GetApiV3LanguageprofileSchemaResponses = {
|
|
3082
|
+
/**
|
|
3083
|
+
* OK
|
|
3084
|
+
*/
|
|
3085
|
+
200: LanguageProfileResource;
|
|
3086
|
+
};
|
|
3087
|
+
export type GetApiV3LanguageprofileSchemaResponse = GetApiV3LanguageprofileSchemaResponses[keyof GetApiV3LanguageprofileSchemaResponses];
|
|
3088
|
+
export type GetApiV3LocalizationData = {
|
|
3089
|
+
body?: never;
|
|
3090
|
+
path?: never;
|
|
3091
|
+
query?: never;
|
|
3092
|
+
url: '/api/v3/localization';
|
|
3093
|
+
};
|
|
3094
|
+
export type GetApiV3LocalizationResponses = {
|
|
3095
|
+
/**
|
|
3096
|
+
* OK
|
|
3097
|
+
*/
|
|
3098
|
+
200: LocalizationResource;
|
|
3099
|
+
};
|
|
3100
|
+
export type GetApiV3LocalizationResponse = GetApiV3LocalizationResponses[keyof GetApiV3LocalizationResponses];
|
|
3101
|
+
export type GetApiV3LocalizationLanguageData = {
|
|
3102
|
+
body?: never;
|
|
3103
|
+
path?: never;
|
|
3104
|
+
query?: never;
|
|
3105
|
+
url: '/api/v3/localization/language';
|
|
3106
|
+
};
|
|
3107
|
+
export type GetApiV3LocalizationLanguageResponses = {
|
|
3108
|
+
/**
|
|
3109
|
+
* OK
|
|
3110
|
+
*/
|
|
3111
|
+
200: LocalizationLanguageResource;
|
|
3112
|
+
};
|
|
3113
|
+
export type GetApiV3LocalizationLanguageResponse = GetApiV3LocalizationLanguageResponses[keyof GetApiV3LocalizationLanguageResponses];
|
|
3114
|
+
export type GetApiV3LocalizationByIdData = {
|
|
3115
|
+
body?: never;
|
|
3116
|
+
path: {
|
|
3117
|
+
id: number;
|
|
3118
|
+
};
|
|
3119
|
+
query?: never;
|
|
3120
|
+
url: '/api/v3/localization/{id}';
|
|
3121
|
+
};
|
|
3122
|
+
export type GetApiV3LocalizationByIdResponses = {
|
|
3123
|
+
/**
|
|
3124
|
+
* OK
|
|
3125
|
+
*/
|
|
3126
|
+
200: LocalizationResource;
|
|
3127
|
+
};
|
|
3128
|
+
export type GetApiV3LocalizationByIdResponse = GetApiV3LocalizationByIdResponses[keyof GetApiV3LocalizationByIdResponses];
|
|
3129
|
+
export type GetApiV3LogData = {
|
|
3130
|
+
body?: never;
|
|
3131
|
+
path?: never;
|
|
3132
|
+
query?: {
|
|
3133
|
+
page?: number;
|
|
3134
|
+
pageSize?: number;
|
|
3135
|
+
sortKey?: string;
|
|
3136
|
+
sortDirection?: SortDirection;
|
|
3137
|
+
level?: string;
|
|
3138
|
+
};
|
|
3139
|
+
url: '/api/v3/log';
|
|
3140
|
+
};
|
|
3141
|
+
export type GetApiV3LogResponses = {
|
|
3142
|
+
/**
|
|
3143
|
+
* OK
|
|
3144
|
+
*/
|
|
3145
|
+
200: LogResourcePagingResource;
|
|
3146
|
+
};
|
|
3147
|
+
export type GetApiV3LogResponse = GetApiV3LogResponses[keyof GetApiV3LogResponses];
|
|
3148
|
+
export type GetApiV3LogFileData = {
|
|
3149
|
+
body?: never;
|
|
3150
|
+
path?: never;
|
|
3151
|
+
query?: never;
|
|
3152
|
+
url: '/api/v3/log/file';
|
|
3153
|
+
};
|
|
3154
|
+
export type GetApiV3LogFileResponses = {
|
|
3155
|
+
/**
|
|
3156
|
+
* OK
|
|
3157
|
+
*/
|
|
3158
|
+
200: Array<LogFileResource>;
|
|
3159
|
+
};
|
|
3160
|
+
export type GetApiV3LogFileResponse = GetApiV3LogFileResponses[keyof GetApiV3LogFileResponses];
|
|
3161
|
+
export type GetApiV3LogFileByFilenameData = {
|
|
3162
|
+
body?: never;
|
|
3163
|
+
path: {
|
|
3164
|
+
filename: string;
|
|
3165
|
+
};
|
|
3166
|
+
query?: never;
|
|
3167
|
+
url: '/api/v3/log/file/{filename}';
|
|
3168
|
+
};
|
|
3169
|
+
export type GetApiV3LogFileByFilenameResponses = {
|
|
3170
|
+
/**
|
|
3171
|
+
* OK
|
|
3172
|
+
*/
|
|
3173
|
+
200: unknown;
|
|
3174
|
+
};
|
|
3175
|
+
export type GetApiV3ManualimportData = {
|
|
3176
|
+
body?: never;
|
|
3177
|
+
path?: never;
|
|
3178
|
+
query?: {
|
|
3179
|
+
folder?: string;
|
|
3180
|
+
downloadId?: string;
|
|
3181
|
+
seriesId?: number;
|
|
3182
|
+
seasonNumber?: number;
|
|
3183
|
+
filterExistingFiles?: boolean;
|
|
3184
|
+
};
|
|
3185
|
+
url: '/api/v3/manualimport';
|
|
3186
|
+
};
|
|
3187
|
+
export type GetApiV3ManualimportResponses = {
|
|
3188
|
+
/**
|
|
3189
|
+
* OK
|
|
3190
|
+
*/
|
|
3191
|
+
200: Array<ManualImportResource>;
|
|
3192
|
+
};
|
|
3193
|
+
export type GetApiV3ManualimportResponse = GetApiV3ManualimportResponses[keyof GetApiV3ManualimportResponses];
|
|
3194
|
+
export type PostApiV3ManualimportData = {
|
|
3195
|
+
body?: Array<ManualImportReprocessResource>;
|
|
3196
|
+
path?: never;
|
|
3197
|
+
query?: never;
|
|
3198
|
+
url: '/api/v3/manualimport';
|
|
3199
|
+
};
|
|
3200
|
+
export type PostApiV3ManualimportResponses = {
|
|
3201
|
+
/**
|
|
3202
|
+
* OK
|
|
3203
|
+
*/
|
|
3204
|
+
200: unknown;
|
|
3205
|
+
};
|
|
3206
|
+
export type GetApiV3MediacoverBySeriesIdByFilenameData = {
|
|
3207
|
+
body?: never;
|
|
3208
|
+
path: {
|
|
3209
|
+
seriesId: number;
|
|
3210
|
+
filename: string;
|
|
3211
|
+
};
|
|
3212
|
+
query?: never;
|
|
3213
|
+
url: '/api/v3/mediacover/{seriesId}/{filename}';
|
|
3214
|
+
};
|
|
3215
|
+
export type GetApiV3MediacoverBySeriesIdByFilenameResponses = {
|
|
3216
|
+
/**
|
|
3217
|
+
* OK
|
|
3218
|
+
*/
|
|
3219
|
+
200: unknown;
|
|
3220
|
+
};
|
|
3221
|
+
export type GetApiV3ConfigMediamanagementData = {
|
|
3222
|
+
body?: never;
|
|
3223
|
+
path?: never;
|
|
3224
|
+
query?: never;
|
|
3225
|
+
url: '/api/v3/config/mediamanagement';
|
|
3226
|
+
};
|
|
3227
|
+
export type GetApiV3ConfigMediamanagementResponses = {
|
|
3228
|
+
/**
|
|
3229
|
+
* OK
|
|
3230
|
+
*/
|
|
3231
|
+
200: MediaManagementConfigResource;
|
|
3232
|
+
};
|
|
3233
|
+
export type GetApiV3ConfigMediamanagementResponse = GetApiV3ConfigMediamanagementResponses[keyof GetApiV3ConfigMediamanagementResponses];
|
|
3234
|
+
export type GetApiV3ConfigMediamanagementByIdData = {
|
|
3235
|
+
body?: never;
|
|
3236
|
+
path: {
|
|
3237
|
+
id: number;
|
|
3238
|
+
};
|
|
3239
|
+
query?: never;
|
|
3240
|
+
url: '/api/v3/config/mediamanagement/{id}';
|
|
3241
|
+
};
|
|
3242
|
+
export type GetApiV3ConfigMediamanagementByIdResponses = {
|
|
3243
|
+
/**
|
|
3244
|
+
* OK
|
|
3245
|
+
*/
|
|
3246
|
+
200: MediaManagementConfigResource;
|
|
3247
|
+
};
|
|
3248
|
+
export type GetApiV3ConfigMediamanagementByIdResponse = GetApiV3ConfigMediamanagementByIdResponses[keyof GetApiV3ConfigMediamanagementByIdResponses];
|
|
3249
|
+
export type PutApiV3ConfigMediamanagementByIdData = {
|
|
3250
|
+
body?: MediaManagementConfigResource;
|
|
3251
|
+
path: {
|
|
3252
|
+
id: string;
|
|
3253
|
+
};
|
|
3254
|
+
query?: never;
|
|
3255
|
+
url: '/api/v3/config/mediamanagement/{id}';
|
|
3256
|
+
};
|
|
3257
|
+
export type PutApiV3ConfigMediamanagementByIdResponses = {
|
|
3258
|
+
/**
|
|
3259
|
+
* OK
|
|
3260
|
+
*/
|
|
3261
|
+
200: MediaManagementConfigResource;
|
|
3262
|
+
};
|
|
3263
|
+
export type PutApiV3ConfigMediamanagementByIdResponse = PutApiV3ConfigMediamanagementByIdResponses[keyof PutApiV3ConfigMediamanagementByIdResponses];
|
|
3264
|
+
export type GetApiV3MetadataData = {
|
|
3265
|
+
body?: never;
|
|
3266
|
+
path?: never;
|
|
3267
|
+
query?: never;
|
|
3268
|
+
url: '/api/v3/metadata';
|
|
3269
|
+
};
|
|
3270
|
+
export type GetApiV3MetadataResponses = {
|
|
3271
|
+
/**
|
|
3272
|
+
* OK
|
|
3273
|
+
*/
|
|
3274
|
+
200: Array<MetadataResource>;
|
|
3275
|
+
};
|
|
3276
|
+
export type GetApiV3MetadataResponse = GetApiV3MetadataResponses[keyof GetApiV3MetadataResponses];
|
|
3277
|
+
export type PostApiV3MetadataData = {
|
|
3278
|
+
body?: MetadataResource;
|
|
3279
|
+
path?: never;
|
|
3280
|
+
query?: {
|
|
3281
|
+
forceSave?: boolean;
|
|
3282
|
+
};
|
|
3283
|
+
url: '/api/v3/metadata';
|
|
3284
|
+
};
|
|
3285
|
+
export type PostApiV3MetadataResponses = {
|
|
3286
|
+
/**
|
|
3287
|
+
* OK
|
|
3288
|
+
*/
|
|
3289
|
+
200: MetadataResource;
|
|
3290
|
+
};
|
|
3291
|
+
export type PostApiV3MetadataResponse = PostApiV3MetadataResponses[keyof PostApiV3MetadataResponses];
|
|
3292
|
+
export type DeleteApiV3MetadataByIdData = {
|
|
3293
|
+
body?: never;
|
|
3294
|
+
path: {
|
|
3295
|
+
id: number;
|
|
3296
|
+
};
|
|
3297
|
+
query?: never;
|
|
3298
|
+
url: '/api/v3/metadata/{id}';
|
|
3299
|
+
};
|
|
3300
|
+
export type DeleteApiV3MetadataByIdResponses = {
|
|
3301
|
+
/**
|
|
3302
|
+
* OK
|
|
3303
|
+
*/
|
|
3304
|
+
200: unknown;
|
|
3305
|
+
};
|
|
3306
|
+
export type GetApiV3MetadataByIdData = {
|
|
3307
|
+
body?: never;
|
|
3308
|
+
path: {
|
|
3309
|
+
id: number;
|
|
3310
|
+
};
|
|
3311
|
+
query?: never;
|
|
3312
|
+
url: '/api/v3/metadata/{id}';
|
|
3313
|
+
};
|
|
3314
|
+
export type GetApiV3MetadataByIdResponses = {
|
|
3315
|
+
/**
|
|
3316
|
+
* OK
|
|
3317
|
+
*/
|
|
3318
|
+
200: MetadataResource;
|
|
3319
|
+
};
|
|
3320
|
+
export type GetApiV3MetadataByIdResponse = GetApiV3MetadataByIdResponses[keyof GetApiV3MetadataByIdResponses];
|
|
3321
|
+
export type PutApiV3MetadataByIdData = {
|
|
3322
|
+
body?: MetadataResource;
|
|
3323
|
+
path: {
|
|
3324
|
+
id: number;
|
|
3325
|
+
};
|
|
3326
|
+
query?: {
|
|
3327
|
+
forceSave?: boolean;
|
|
3328
|
+
};
|
|
3329
|
+
url: '/api/v3/metadata/{id}';
|
|
3330
|
+
};
|
|
3331
|
+
export type PutApiV3MetadataByIdResponses = {
|
|
3332
|
+
/**
|
|
3333
|
+
* OK
|
|
3334
|
+
*/
|
|
3335
|
+
200: MetadataResource;
|
|
3336
|
+
};
|
|
3337
|
+
export type PutApiV3MetadataByIdResponse = PutApiV3MetadataByIdResponses[keyof PutApiV3MetadataByIdResponses];
|
|
3338
|
+
export type GetApiV3MetadataSchemaData = {
|
|
3339
|
+
body?: never;
|
|
3340
|
+
path?: never;
|
|
3341
|
+
query?: never;
|
|
3342
|
+
url: '/api/v3/metadata/schema';
|
|
3343
|
+
};
|
|
3344
|
+
export type GetApiV3MetadataSchemaResponses = {
|
|
3345
|
+
/**
|
|
3346
|
+
* OK
|
|
3347
|
+
*/
|
|
3348
|
+
200: Array<MetadataResource>;
|
|
3349
|
+
};
|
|
3350
|
+
export type GetApiV3MetadataSchemaResponse = GetApiV3MetadataSchemaResponses[keyof GetApiV3MetadataSchemaResponses];
|
|
3351
|
+
export type PostApiV3MetadataTestData = {
|
|
3352
|
+
body?: MetadataResource;
|
|
3353
|
+
path?: never;
|
|
3354
|
+
query?: {
|
|
3355
|
+
forceTest?: boolean;
|
|
3356
|
+
};
|
|
3357
|
+
url: '/api/v3/metadata/test';
|
|
3358
|
+
};
|
|
3359
|
+
export type PostApiV3MetadataTestResponses = {
|
|
3360
|
+
/**
|
|
3361
|
+
* OK
|
|
3362
|
+
*/
|
|
3363
|
+
200: unknown;
|
|
3364
|
+
};
|
|
3365
|
+
export type PostApiV3MetadataTestallData = {
|
|
3366
|
+
body?: never;
|
|
3367
|
+
path?: never;
|
|
3368
|
+
query?: never;
|
|
3369
|
+
url: '/api/v3/metadata/testall';
|
|
3370
|
+
};
|
|
3371
|
+
export type PostApiV3MetadataTestallResponses = {
|
|
3372
|
+
/**
|
|
3373
|
+
* OK
|
|
3374
|
+
*/
|
|
3375
|
+
200: unknown;
|
|
3376
|
+
};
|
|
3377
|
+
export type PostApiV3MetadataActionByNameData = {
|
|
3378
|
+
body?: MetadataResource;
|
|
3379
|
+
path: {
|
|
3380
|
+
name: string;
|
|
3381
|
+
};
|
|
3382
|
+
query?: never;
|
|
3383
|
+
url: '/api/v3/metadata/action/{name}';
|
|
3384
|
+
};
|
|
3385
|
+
export type PostApiV3MetadataActionByNameResponses = {
|
|
3386
|
+
/**
|
|
3387
|
+
* OK
|
|
3388
|
+
*/
|
|
3389
|
+
200: unknown;
|
|
3390
|
+
};
|
|
3391
|
+
export type GetApiV3WantedMissingData = {
|
|
3392
|
+
body?: never;
|
|
3393
|
+
path?: never;
|
|
3394
|
+
query?: {
|
|
3395
|
+
page?: number;
|
|
3396
|
+
pageSize?: number;
|
|
3397
|
+
sortKey?: string;
|
|
3398
|
+
sortDirection?: SortDirection;
|
|
3399
|
+
includeSeries?: boolean;
|
|
3400
|
+
includeImages?: boolean;
|
|
3401
|
+
monitored?: boolean;
|
|
3402
|
+
};
|
|
3403
|
+
url: '/api/v3/wanted/missing';
|
|
3404
|
+
};
|
|
3405
|
+
export type GetApiV3WantedMissingResponses = {
|
|
3406
|
+
/**
|
|
3407
|
+
* OK
|
|
3408
|
+
*/
|
|
3409
|
+
200: EpisodeResourcePagingResource;
|
|
3410
|
+
};
|
|
3411
|
+
export type GetApiV3WantedMissingResponse = GetApiV3WantedMissingResponses[keyof GetApiV3WantedMissingResponses];
|
|
3412
|
+
export type GetApiV3WantedMissingByIdData = {
|
|
3413
|
+
body?: never;
|
|
3414
|
+
path: {
|
|
3415
|
+
id: number;
|
|
3416
|
+
};
|
|
3417
|
+
query?: never;
|
|
3418
|
+
url: '/api/v3/wanted/missing/{id}';
|
|
3419
|
+
};
|
|
3420
|
+
export type GetApiV3WantedMissingByIdResponses = {
|
|
3421
|
+
/**
|
|
3422
|
+
* OK
|
|
3423
|
+
*/
|
|
3424
|
+
200: EpisodeResource;
|
|
3425
|
+
};
|
|
3426
|
+
export type GetApiV3WantedMissingByIdResponse = GetApiV3WantedMissingByIdResponses[keyof GetApiV3WantedMissingByIdResponses];
|
|
3427
|
+
export type GetApiV3ConfigNamingData = {
|
|
3428
|
+
body?: never;
|
|
3429
|
+
path?: never;
|
|
3430
|
+
query?: never;
|
|
3431
|
+
url: '/api/v3/config/naming';
|
|
3432
|
+
};
|
|
3433
|
+
export type GetApiV3ConfigNamingResponses = {
|
|
3434
|
+
/**
|
|
3435
|
+
* OK
|
|
3436
|
+
*/
|
|
3437
|
+
200: NamingConfigResource;
|
|
3438
|
+
};
|
|
3439
|
+
export type GetApiV3ConfigNamingResponse = GetApiV3ConfigNamingResponses[keyof GetApiV3ConfigNamingResponses];
|
|
3440
|
+
export type GetApiV3ConfigNamingByIdData = {
|
|
3441
|
+
body?: never;
|
|
3442
|
+
path: {
|
|
3443
|
+
id: number;
|
|
3444
|
+
};
|
|
3445
|
+
query?: never;
|
|
3446
|
+
url: '/api/v3/config/naming/{id}';
|
|
3447
|
+
};
|
|
3448
|
+
export type GetApiV3ConfigNamingByIdResponses = {
|
|
3449
|
+
/**
|
|
3450
|
+
* OK
|
|
3451
|
+
*/
|
|
3452
|
+
200: NamingConfigResource;
|
|
3453
|
+
};
|
|
3454
|
+
export type GetApiV3ConfigNamingByIdResponse = GetApiV3ConfigNamingByIdResponses[keyof GetApiV3ConfigNamingByIdResponses];
|
|
3455
|
+
export type PutApiV3ConfigNamingByIdData = {
|
|
3456
|
+
body?: NamingConfigResource;
|
|
3457
|
+
path: {
|
|
3458
|
+
id: string;
|
|
3459
|
+
};
|
|
3460
|
+
query?: never;
|
|
3461
|
+
url: '/api/v3/config/naming/{id}';
|
|
3462
|
+
};
|
|
3463
|
+
export type PutApiV3ConfigNamingByIdResponses = {
|
|
3464
|
+
/**
|
|
3465
|
+
* OK
|
|
3466
|
+
*/
|
|
3467
|
+
200: NamingConfigResource;
|
|
3468
|
+
};
|
|
3469
|
+
export type PutApiV3ConfigNamingByIdResponse = PutApiV3ConfigNamingByIdResponses[keyof PutApiV3ConfigNamingByIdResponses];
|
|
3470
|
+
export type GetApiV3ConfigNamingExamplesData = {
|
|
3471
|
+
body?: never;
|
|
3472
|
+
path?: never;
|
|
3473
|
+
query?: {
|
|
3474
|
+
renameEpisodes?: boolean;
|
|
3475
|
+
replaceIllegalCharacters?: boolean;
|
|
3476
|
+
colonReplacementFormat?: number;
|
|
3477
|
+
customColonReplacementFormat?: string;
|
|
3478
|
+
multiEpisodeStyle?: number;
|
|
3479
|
+
standardEpisodeFormat?: string;
|
|
3480
|
+
dailyEpisodeFormat?: string;
|
|
3481
|
+
animeEpisodeFormat?: string;
|
|
3482
|
+
seriesFolderFormat?: string;
|
|
3483
|
+
seasonFolderFormat?: string;
|
|
3484
|
+
specialsFolderFormat?: string;
|
|
3485
|
+
id?: number;
|
|
3486
|
+
resourceName?: string;
|
|
3487
|
+
};
|
|
3488
|
+
url: '/api/v3/config/naming/examples';
|
|
3489
|
+
};
|
|
3490
|
+
export type GetApiV3ConfigNamingExamplesResponses = {
|
|
3491
|
+
/**
|
|
3492
|
+
* OK
|
|
3493
|
+
*/
|
|
3494
|
+
200: unknown;
|
|
3495
|
+
};
|
|
3496
|
+
export type GetApiV3NotificationData = {
|
|
3497
|
+
body?: never;
|
|
3498
|
+
path?: never;
|
|
3499
|
+
query?: never;
|
|
3500
|
+
url: '/api/v3/notification';
|
|
3501
|
+
};
|
|
3502
|
+
export type GetApiV3NotificationResponses = {
|
|
3503
|
+
/**
|
|
3504
|
+
* OK
|
|
3505
|
+
*/
|
|
3506
|
+
200: Array<NotificationResource>;
|
|
3507
|
+
};
|
|
3508
|
+
export type GetApiV3NotificationResponse = GetApiV3NotificationResponses[keyof GetApiV3NotificationResponses];
|
|
3509
|
+
export type PostApiV3NotificationData = {
|
|
3510
|
+
body?: NotificationResource;
|
|
3511
|
+
path?: never;
|
|
3512
|
+
query?: {
|
|
3513
|
+
forceSave?: boolean;
|
|
3514
|
+
};
|
|
3515
|
+
url: '/api/v3/notification';
|
|
3516
|
+
};
|
|
3517
|
+
export type PostApiV3NotificationResponses = {
|
|
3518
|
+
/**
|
|
3519
|
+
* OK
|
|
3520
|
+
*/
|
|
3521
|
+
200: NotificationResource;
|
|
3522
|
+
};
|
|
3523
|
+
export type PostApiV3NotificationResponse = PostApiV3NotificationResponses[keyof PostApiV3NotificationResponses];
|
|
3524
|
+
export type DeleteApiV3NotificationByIdData = {
|
|
3525
|
+
body?: never;
|
|
3526
|
+
path: {
|
|
3527
|
+
id: number;
|
|
3528
|
+
};
|
|
3529
|
+
query?: never;
|
|
3530
|
+
url: '/api/v3/notification/{id}';
|
|
3531
|
+
};
|
|
3532
|
+
export type DeleteApiV3NotificationByIdResponses = {
|
|
3533
|
+
/**
|
|
3534
|
+
* OK
|
|
3535
|
+
*/
|
|
3536
|
+
200: unknown;
|
|
3537
|
+
};
|
|
3538
|
+
export type GetApiV3NotificationByIdData = {
|
|
3539
|
+
body?: never;
|
|
3540
|
+
path: {
|
|
3541
|
+
id: number;
|
|
3542
|
+
};
|
|
3543
|
+
query?: never;
|
|
3544
|
+
url: '/api/v3/notification/{id}';
|
|
3545
|
+
};
|
|
3546
|
+
export type GetApiV3NotificationByIdResponses = {
|
|
3547
|
+
/**
|
|
3548
|
+
* OK
|
|
3549
|
+
*/
|
|
3550
|
+
200: NotificationResource;
|
|
3551
|
+
};
|
|
3552
|
+
export type GetApiV3NotificationByIdResponse = GetApiV3NotificationByIdResponses[keyof GetApiV3NotificationByIdResponses];
|
|
3553
|
+
export type PutApiV3NotificationByIdData = {
|
|
3554
|
+
body?: NotificationResource;
|
|
3555
|
+
path: {
|
|
3556
|
+
id: number;
|
|
3557
|
+
};
|
|
3558
|
+
query?: {
|
|
3559
|
+
forceSave?: boolean;
|
|
3560
|
+
};
|
|
3561
|
+
url: '/api/v3/notification/{id}';
|
|
3562
|
+
};
|
|
3563
|
+
export type PutApiV3NotificationByIdResponses = {
|
|
3564
|
+
/**
|
|
3565
|
+
* OK
|
|
3566
|
+
*/
|
|
3567
|
+
200: NotificationResource;
|
|
3568
|
+
};
|
|
3569
|
+
export type PutApiV3NotificationByIdResponse = PutApiV3NotificationByIdResponses[keyof PutApiV3NotificationByIdResponses];
|
|
3570
|
+
export type GetApiV3NotificationSchemaData = {
|
|
3571
|
+
body?: never;
|
|
3572
|
+
path?: never;
|
|
3573
|
+
query?: never;
|
|
3574
|
+
url: '/api/v3/notification/schema';
|
|
3575
|
+
};
|
|
3576
|
+
export type GetApiV3NotificationSchemaResponses = {
|
|
3577
|
+
/**
|
|
3578
|
+
* OK
|
|
3579
|
+
*/
|
|
3580
|
+
200: Array<NotificationResource>;
|
|
3581
|
+
};
|
|
3582
|
+
export type GetApiV3NotificationSchemaResponse = GetApiV3NotificationSchemaResponses[keyof GetApiV3NotificationSchemaResponses];
|
|
3583
|
+
export type PostApiV3NotificationTestData = {
|
|
3584
|
+
body?: NotificationResource;
|
|
3585
|
+
path?: never;
|
|
3586
|
+
query?: {
|
|
3587
|
+
forceTest?: boolean;
|
|
3588
|
+
};
|
|
3589
|
+
url: '/api/v3/notification/test';
|
|
3590
|
+
};
|
|
3591
|
+
export type PostApiV3NotificationTestResponses = {
|
|
3592
|
+
/**
|
|
3593
|
+
* OK
|
|
3594
|
+
*/
|
|
3595
|
+
200: unknown;
|
|
3596
|
+
};
|
|
3597
|
+
export type PostApiV3NotificationTestallData = {
|
|
3598
|
+
body?: never;
|
|
3599
|
+
path?: never;
|
|
3600
|
+
query?: never;
|
|
3601
|
+
url: '/api/v3/notification/testall';
|
|
3602
|
+
};
|
|
3603
|
+
export type PostApiV3NotificationTestallResponses = {
|
|
3604
|
+
/**
|
|
3605
|
+
* OK
|
|
3606
|
+
*/
|
|
3607
|
+
200: unknown;
|
|
3608
|
+
};
|
|
3609
|
+
export type PostApiV3NotificationActionByNameData = {
|
|
3610
|
+
body?: NotificationResource;
|
|
3611
|
+
path: {
|
|
3612
|
+
name: string;
|
|
3613
|
+
};
|
|
3614
|
+
query?: never;
|
|
3615
|
+
url: '/api/v3/notification/action/{name}';
|
|
3616
|
+
};
|
|
3617
|
+
export type PostApiV3NotificationActionByNameResponses = {
|
|
3618
|
+
/**
|
|
3619
|
+
* OK
|
|
3620
|
+
*/
|
|
3621
|
+
200: unknown;
|
|
3622
|
+
};
|
|
3623
|
+
export type GetApiV3ParseData = {
|
|
3624
|
+
body?: never;
|
|
3625
|
+
path?: never;
|
|
3626
|
+
query?: {
|
|
3627
|
+
title?: string;
|
|
3628
|
+
path?: string;
|
|
3629
|
+
};
|
|
3630
|
+
url: '/api/v3/parse';
|
|
3631
|
+
};
|
|
3632
|
+
export type GetApiV3ParseResponses = {
|
|
3633
|
+
/**
|
|
3634
|
+
* OK
|
|
3635
|
+
*/
|
|
3636
|
+
200: ParseResource;
|
|
3637
|
+
};
|
|
3638
|
+
export type GetApiV3ParseResponse = GetApiV3ParseResponses[keyof GetApiV3ParseResponses];
|
|
3639
|
+
export type GetPingData = {
|
|
3640
|
+
body?: never;
|
|
3641
|
+
path?: never;
|
|
3642
|
+
query?: never;
|
|
3643
|
+
url: '/ping';
|
|
3644
|
+
};
|
|
3645
|
+
export type GetPingResponses = {
|
|
3646
|
+
/**
|
|
3647
|
+
* OK
|
|
3648
|
+
*/
|
|
3649
|
+
200: PingResource;
|
|
3650
|
+
};
|
|
3651
|
+
export type GetPingResponse = GetPingResponses[keyof GetPingResponses];
|
|
3652
|
+
export type HeadPingData = {
|
|
3653
|
+
body?: never;
|
|
3654
|
+
path?: never;
|
|
3655
|
+
query?: never;
|
|
3656
|
+
url: '/ping';
|
|
3657
|
+
};
|
|
3658
|
+
export type HeadPingResponses = {
|
|
3659
|
+
/**
|
|
3660
|
+
* OK
|
|
3661
|
+
*/
|
|
3662
|
+
200: PingResource;
|
|
3663
|
+
};
|
|
3664
|
+
export type HeadPingResponse = HeadPingResponses[keyof HeadPingResponses];
|
|
3665
|
+
export type GetApiV3QualitydefinitionByIdData = {
|
|
3666
|
+
body?: never;
|
|
3667
|
+
path: {
|
|
3668
|
+
id: number;
|
|
3669
|
+
};
|
|
3670
|
+
query?: never;
|
|
3671
|
+
url: '/api/v3/qualitydefinition/{id}';
|
|
3672
|
+
};
|
|
3673
|
+
export type GetApiV3QualitydefinitionByIdResponses = {
|
|
3674
|
+
/**
|
|
3675
|
+
* OK
|
|
3676
|
+
*/
|
|
3677
|
+
200: QualityDefinitionResource;
|
|
3678
|
+
};
|
|
3679
|
+
export type GetApiV3QualitydefinitionByIdResponse = GetApiV3QualitydefinitionByIdResponses[keyof GetApiV3QualitydefinitionByIdResponses];
|
|
3680
|
+
export type PutApiV3QualitydefinitionByIdData = {
|
|
3681
|
+
body?: QualityDefinitionResource;
|
|
3682
|
+
path: {
|
|
3683
|
+
id: string;
|
|
3684
|
+
};
|
|
3685
|
+
query?: never;
|
|
3686
|
+
url: '/api/v3/qualitydefinition/{id}';
|
|
3687
|
+
};
|
|
3688
|
+
export type PutApiV3QualitydefinitionByIdResponses = {
|
|
3689
|
+
/**
|
|
3690
|
+
* OK
|
|
3691
|
+
*/
|
|
3692
|
+
200: QualityDefinitionResource;
|
|
3693
|
+
};
|
|
3694
|
+
export type PutApiV3QualitydefinitionByIdResponse = PutApiV3QualitydefinitionByIdResponses[keyof PutApiV3QualitydefinitionByIdResponses];
|
|
3695
|
+
export type GetApiV3QualitydefinitionData = {
|
|
3696
|
+
body?: never;
|
|
3697
|
+
path?: never;
|
|
3698
|
+
query?: never;
|
|
3699
|
+
url: '/api/v3/qualitydefinition';
|
|
3700
|
+
};
|
|
3701
|
+
export type GetApiV3QualitydefinitionResponses = {
|
|
3702
|
+
/**
|
|
3703
|
+
* OK
|
|
3704
|
+
*/
|
|
3705
|
+
200: Array<QualityDefinitionResource>;
|
|
3706
|
+
};
|
|
3707
|
+
export type GetApiV3QualitydefinitionResponse = GetApiV3QualitydefinitionResponses[keyof GetApiV3QualitydefinitionResponses];
|
|
3708
|
+
export type PutApiV3QualitydefinitionUpdateData = {
|
|
3709
|
+
body?: Array<QualityDefinitionResource>;
|
|
3710
|
+
path?: never;
|
|
3711
|
+
query?: never;
|
|
3712
|
+
url: '/api/v3/qualitydefinition/update';
|
|
3713
|
+
};
|
|
3714
|
+
export type PutApiV3QualitydefinitionUpdateResponses = {
|
|
3715
|
+
/**
|
|
3716
|
+
* OK
|
|
3717
|
+
*/
|
|
3718
|
+
200: unknown;
|
|
3719
|
+
};
|
|
3720
|
+
export type GetApiV3QualitydefinitionLimitsData = {
|
|
3721
|
+
body?: never;
|
|
3722
|
+
path?: never;
|
|
3723
|
+
query?: never;
|
|
3724
|
+
url: '/api/v3/qualitydefinition/limits';
|
|
3725
|
+
};
|
|
3726
|
+
export type GetApiV3QualitydefinitionLimitsResponses = {
|
|
3727
|
+
/**
|
|
3728
|
+
* OK
|
|
3729
|
+
*/
|
|
3730
|
+
200: QualityDefinitionLimitsResource;
|
|
3731
|
+
};
|
|
3732
|
+
export type GetApiV3QualitydefinitionLimitsResponse = GetApiV3QualitydefinitionLimitsResponses[keyof GetApiV3QualitydefinitionLimitsResponses];
|
|
3733
|
+
export type GetApiV3QualityprofileData = {
|
|
3734
|
+
body?: never;
|
|
3735
|
+
path?: never;
|
|
3736
|
+
query?: never;
|
|
3737
|
+
url: '/api/v3/qualityprofile';
|
|
3738
|
+
};
|
|
3739
|
+
export type GetApiV3QualityprofileResponses = {
|
|
3740
|
+
/**
|
|
3741
|
+
* OK
|
|
3742
|
+
*/
|
|
3743
|
+
200: Array<QualityProfileResource>;
|
|
3744
|
+
};
|
|
3745
|
+
export type GetApiV3QualityprofileResponse = GetApiV3QualityprofileResponses[keyof GetApiV3QualityprofileResponses];
|
|
3746
|
+
export type PostApiV3QualityprofileData = {
|
|
3747
|
+
body?: QualityProfileResource;
|
|
3748
|
+
path?: never;
|
|
3749
|
+
query?: never;
|
|
3750
|
+
url: '/api/v3/qualityprofile';
|
|
3751
|
+
};
|
|
3752
|
+
export type PostApiV3QualityprofileResponses = {
|
|
3753
|
+
/**
|
|
3754
|
+
* OK
|
|
3755
|
+
*/
|
|
3756
|
+
200: QualityProfileResource;
|
|
3757
|
+
};
|
|
3758
|
+
export type PostApiV3QualityprofileResponse = PostApiV3QualityprofileResponses[keyof PostApiV3QualityprofileResponses];
|
|
3759
|
+
export type DeleteApiV3QualityprofileByIdData = {
|
|
3760
|
+
body?: never;
|
|
3761
|
+
path: {
|
|
3762
|
+
id: number;
|
|
3763
|
+
};
|
|
3764
|
+
query?: never;
|
|
3765
|
+
url: '/api/v3/qualityprofile/{id}';
|
|
3766
|
+
};
|
|
3767
|
+
export type DeleteApiV3QualityprofileByIdResponses = {
|
|
3768
|
+
/**
|
|
3769
|
+
* OK
|
|
3770
|
+
*/
|
|
3771
|
+
200: unknown;
|
|
3772
|
+
};
|
|
3773
|
+
export type GetApiV3QualityprofileByIdData = {
|
|
3774
|
+
body?: never;
|
|
3775
|
+
path: {
|
|
3776
|
+
id: number;
|
|
3777
|
+
};
|
|
3778
|
+
query?: never;
|
|
3779
|
+
url: '/api/v3/qualityprofile/{id}';
|
|
3780
|
+
};
|
|
3781
|
+
export type GetApiV3QualityprofileByIdResponses = {
|
|
3782
|
+
/**
|
|
3783
|
+
* OK
|
|
3784
|
+
*/
|
|
3785
|
+
200: QualityProfileResource;
|
|
3786
|
+
};
|
|
3787
|
+
export type GetApiV3QualityprofileByIdResponse = GetApiV3QualityprofileByIdResponses[keyof GetApiV3QualityprofileByIdResponses];
|
|
3788
|
+
export type PutApiV3QualityprofileByIdData = {
|
|
3789
|
+
body?: QualityProfileResource;
|
|
3790
|
+
path: {
|
|
3791
|
+
id: string;
|
|
3792
|
+
};
|
|
3793
|
+
query?: never;
|
|
3794
|
+
url: '/api/v3/qualityprofile/{id}';
|
|
3795
|
+
};
|
|
3796
|
+
export type PutApiV3QualityprofileByIdResponses = {
|
|
3797
|
+
/**
|
|
3798
|
+
* OK
|
|
3799
|
+
*/
|
|
3800
|
+
200: QualityProfileResource;
|
|
3801
|
+
};
|
|
3802
|
+
export type PutApiV3QualityprofileByIdResponse = PutApiV3QualityprofileByIdResponses[keyof PutApiV3QualityprofileByIdResponses];
|
|
3803
|
+
export type GetApiV3QualityprofileSchemaData = {
|
|
3804
|
+
body?: never;
|
|
3805
|
+
path?: never;
|
|
3806
|
+
query?: never;
|
|
3807
|
+
url: '/api/v3/qualityprofile/schema';
|
|
3808
|
+
};
|
|
3809
|
+
export type GetApiV3QualityprofileSchemaResponses = {
|
|
3810
|
+
/**
|
|
3811
|
+
* OK
|
|
3812
|
+
*/
|
|
3813
|
+
200: QualityProfileResource;
|
|
3814
|
+
};
|
|
3815
|
+
export type GetApiV3QualityprofileSchemaResponse = GetApiV3QualityprofileSchemaResponses[keyof GetApiV3QualityprofileSchemaResponses];
|
|
3816
|
+
export type DeleteApiV3QueueByIdData = {
|
|
3817
|
+
body?: never;
|
|
3818
|
+
path: {
|
|
3819
|
+
id: number;
|
|
3820
|
+
};
|
|
3821
|
+
query?: {
|
|
3822
|
+
removeFromClient?: boolean;
|
|
3823
|
+
blocklist?: boolean;
|
|
3824
|
+
skipRedownload?: boolean;
|
|
3825
|
+
changeCategory?: boolean;
|
|
3826
|
+
};
|
|
3827
|
+
url: '/api/v3/queue/{id}';
|
|
3828
|
+
};
|
|
3829
|
+
export type DeleteApiV3QueueByIdResponses = {
|
|
3830
|
+
/**
|
|
3831
|
+
* OK
|
|
3832
|
+
*/
|
|
3833
|
+
200: unknown;
|
|
3834
|
+
};
|
|
3835
|
+
export type DeleteApiV3QueueBulkData = {
|
|
3836
|
+
body?: QueueBulkResource;
|
|
3837
|
+
path?: never;
|
|
3838
|
+
query?: {
|
|
3839
|
+
removeFromClient?: boolean;
|
|
3840
|
+
blocklist?: boolean;
|
|
3841
|
+
skipRedownload?: boolean;
|
|
3842
|
+
changeCategory?: boolean;
|
|
3843
|
+
};
|
|
3844
|
+
url: '/api/v3/queue/bulk';
|
|
3845
|
+
};
|
|
3846
|
+
export type DeleteApiV3QueueBulkResponses = {
|
|
3847
|
+
/**
|
|
3848
|
+
* OK
|
|
3849
|
+
*/
|
|
3850
|
+
200: unknown;
|
|
3851
|
+
};
|
|
3852
|
+
export type GetApiV3QueueData = {
|
|
3853
|
+
body?: never;
|
|
3854
|
+
path?: never;
|
|
3855
|
+
query?: {
|
|
3856
|
+
page?: number;
|
|
3857
|
+
pageSize?: number;
|
|
3858
|
+
sortKey?: string;
|
|
3859
|
+
sortDirection?: SortDirection;
|
|
3860
|
+
includeUnknownSeriesItems?: boolean;
|
|
3861
|
+
includeSeries?: boolean;
|
|
3862
|
+
includeEpisode?: boolean;
|
|
3863
|
+
seriesIds?: Array<number>;
|
|
3864
|
+
protocol?: DownloadProtocol;
|
|
3865
|
+
languages?: Array<number>;
|
|
3866
|
+
quality?: Array<number>;
|
|
3867
|
+
status?: Array<QueueStatus>;
|
|
3868
|
+
};
|
|
3869
|
+
url: '/api/v3/queue';
|
|
3870
|
+
};
|
|
3871
|
+
export type GetApiV3QueueResponses = {
|
|
3872
|
+
/**
|
|
3873
|
+
* OK
|
|
3874
|
+
*/
|
|
3875
|
+
200: QueueResourcePagingResource;
|
|
3876
|
+
};
|
|
3877
|
+
export type GetApiV3QueueResponse = GetApiV3QueueResponses[keyof GetApiV3QueueResponses];
|
|
3878
|
+
export type PostApiV3QueueGrabByIdData = {
|
|
3879
|
+
body?: never;
|
|
3880
|
+
path: {
|
|
3881
|
+
id: number;
|
|
3882
|
+
};
|
|
3883
|
+
query?: never;
|
|
3884
|
+
url: '/api/v3/queue/grab/{id}';
|
|
3885
|
+
};
|
|
3886
|
+
export type PostApiV3QueueGrabByIdResponses = {
|
|
3887
|
+
/**
|
|
3888
|
+
* OK
|
|
3889
|
+
*/
|
|
3890
|
+
200: unknown;
|
|
3891
|
+
};
|
|
3892
|
+
export type PostApiV3QueueGrabBulkData = {
|
|
3893
|
+
body?: QueueBulkResource;
|
|
3894
|
+
path?: never;
|
|
3895
|
+
query?: never;
|
|
3896
|
+
url: '/api/v3/queue/grab/bulk';
|
|
3897
|
+
};
|
|
3898
|
+
export type PostApiV3QueueGrabBulkResponses = {
|
|
3899
|
+
/**
|
|
3900
|
+
* OK
|
|
3901
|
+
*/
|
|
3902
|
+
200: unknown;
|
|
3903
|
+
};
|
|
3904
|
+
export type GetApiV3QueueDetailsData = {
|
|
3905
|
+
body?: never;
|
|
3906
|
+
path?: never;
|
|
3907
|
+
query?: {
|
|
3908
|
+
seriesId?: number;
|
|
3909
|
+
episodeIds?: Array<number>;
|
|
3910
|
+
includeSeries?: boolean;
|
|
3911
|
+
includeEpisode?: boolean;
|
|
3912
|
+
};
|
|
3913
|
+
url: '/api/v3/queue/details';
|
|
3914
|
+
};
|
|
3915
|
+
export type GetApiV3QueueDetailsResponses = {
|
|
3916
|
+
/**
|
|
3917
|
+
* OK
|
|
3918
|
+
*/
|
|
3919
|
+
200: Array<QueueResource>;
|
|
3920
|
+
};
|
|
3921
|
+
export type GetApiV3QueueDetailsResponse = GetApiV3QueueDetailsResponses[keyof GetApiV3QueueDetailsResponses];
|
|
3922
|
+
export type GetApiV3QueueStatusData = {
|
|
3923
|
+
body?: never;
|
|
3924
|
+
path?: never;
|
|
3925
|
+
query?: never;
|
|
3926
|
+
url: '/api/v3/queue/status';
|
|
3927
|
+
};
|
|
3928
|
+
export type GetApiV3QueueStatusResponses = {
|
|
3929
|
+
/**
|
|
3930
|
+
* OK
|
|
3931
|
+
*/
|
|
3932
|
+
200: QueueStatusResource;
|
|
3933
|
+
};
|
|
3934
|
+
export type GetApiV3QueueStatusResponse = GetApiV3QueueStatusResponses[keyof GetApiV3QueueStatusResponses];
|
|
3935
|
+
export type GetApiV3ReleaseData = {
|
|
3936
|
+
body?: never;
|
|
3937
|
+
path?: never;
|
|
3938
|
+
query?: {
|
|
3939
|
+
seriesId?: number;
|
|
3940
|
+
episodeId?: number;
|
|
3941
|
+
seasonNumber?: number;
|
|
3942
|
+
};
|
|
3943
|
+
url: '/api/v3/release';
|
|
3944
|
+
};
|
|
3945
|
+
export type GetApiV3ReleaseResponses = {
|
|
3946
|
+
/**
|
|
3947
|
+
* OK
|
|
3948
|
+
*/
|
|
3949
|
+
200: Array<ReleaseResource>;
|
|
3950
|
+
};
|
|
3951
|
+
export type GetApiV3ReleaseResponse = GetApiV3ReleaseResponses[keyof GetApiV3ReleaseResponses];
|
|
3952
|
+
export type PostApiV3ReleaseData = {
|
|
3953
|
+
body?: ReleaseResource;
|
|
3954
|
+
path?: never;
|
|
3955
|
+
query?: never;
|
|
3956
|
+
url: '/api/v3/release';
|
|
3957
|
+
};
|
|
3958
|
+
export type PostApiV3ReleaseResponses = {
|
|
3959
|
+
/**
|
|
3960
|
+
* OK
|
|
3961
|
+
*/
|
|
3962
|
+
200: unknown;
|
|
3963
|
+
};
|
|
3964
|
+
export type GetApiV3ReleaseprofileData = {
|
|
3965
|
+
body?: never;
|
|
3966
|
+
path?: never;
|
|
3967
|
+
query?: never;
|
|
3968
|
+
url: '/api/v3/releaseprofile';
|
|
3969
|
+
};
|
|
3970
|
+
export type GetApiV3ReleaseprofileResponses = {
|
|
3971
|
+
/**
|
|
3972
|
+
* OK
|
|
3973
|
+
*/
|
|
3974
|
+
200: Array<ReleaseProfileResource>;
|
|
3975
|
+
};
|
|
3976
|
+
export type GetApiV3ReleaseprofileResponse = GetApiV3ReleaseprofileResponses[keyof GetApiV3ReleaseprofileResponses];
|
|
3977
|
+
export type PostApiV3ReleaseprofileData = {
|
|
3978
|
+
body?: ReleaseProfileResource;
|
|
3979
|
+
path?: never;
|
|
3980
|
+
query?: never;
|
|
3981
|
+
url: '/api/v3/releaseprofile';
|
|
3982
|
+
};
|
|
3983
|
+
export type PostApiV3ReleaseprofileResponses = {
|
|
3984
|
+
/**
|
|
3985
|
+
* OK
|
|
3986
|
+
*/
|
|
3987
|
+
200: ReleaseProfileResource;
|
|
3988
|
+
};
|
|
3989
|
+
export type PostApiV3ReleaseprofileResponse = PostApiV3ReleaseprofileResponses[keyof PostApiV3ReleaseprofileResponses];
|
|
3990
|
+
export type DeleteApiV3ReleaseprofileByIdData = {
|
|
3991
|
+
body?: never;
|
|
3992
|
+
path: {
|
|
3993
|
+
id: number;
|
|
3994
|
+
};
|
|
3995
|
+
query?: never;
|
|
3996
|
+
url: '/api/v3/releaseprofile/{id}';
|
|
3997
|
+
};
|
|
3998
|
+
export type DeleteApiV3ReleaseprofileByIdResponses = {
|
|
3999
|
+
/**
|
|
4000
|
+
* OK
|
|
4001
|
+
*/
|
|
4002
|
+
200: unknown;
|
|
4003
|
+
};
|
|
4004
|
+
export type GetApiV3ReleaseprofileByIdData = {
|
|
4005
|
+
body?: never;
|
|
4006
|
+
path: {
|
|
4007
|
+
id: number;
|
|
4008
|
+
};
|
|
4009
|
+
query?: never;
|
|
4010
|
+
url: '/api/v3/releaseprofile/{id}';
|
|
4011
|
+
};
|
|
4012
|
+
export type GetApiV3ReleaseprofileByIdResponses = {
|
|
4013
|
+
/**
|
|
4014
|
+
* OK
|
|
4015
|
+
*/
|
|
4016
|
+
200: ReleaseProfileResource;
|
|
4017
|
+
};
|
|
4018
|
+
export type GetApiV3ReleaseprofileByIdResponse = GetApiV3ReleaseprofileByIdResponses[keyof GetApiV3ReleaseprofileByIdResponses];
|
|
4019
|
+
export type PutApiV3ReleaseprofileByIdData = {
|
|
4020
|
+
body?: ReleaseProfileResource;
|
|
4021
|
+
path: {
|
|
4022
|
+
id: string;
|
|
4023
|
+
};
|
|
4024
|
+
query?: never;
|
|
4025
|
+
url: '/api/v3/releaseprofile/{id}';
|
|
4026
|
+
};
|
|
4027
|
+
export type PutApiV3ReleaseprofileByIdResponses = {
|
|
4028
|
+
/**
|
|
4029
|
+
* OK
|
|
4030
|
+
*/
|
|
4031
|
+
200: ReleaseProfileResource;
|
|
4032
|
+
};
|
|
4033
|
+
export type PutApiV3ReleaseprofileByIdResponse = PutApiV3ReleaseprofileByIdResponses[keyof PutApiV3ReleaseprofileByIdResponses];
|
|
4034
|
+
export type PostApiV3ReleasePushData = {
|
|
4035
|
+
body?: ReleaseResource;
|
|
4036
|
+
path?: never;
|
|
4037
|
+
query?: never;
|
|
4038
|
+
url: '/api/v3/release/push';
|
|
4039
|
+
};
|
|
4040
|
+
export type PostApiV3ReleasePushResponses = {
|
|
4041
|
+
/**
|
|
4042
|
+
* OK
|
|
4043
|
+
*/
|
|
4044
|
+
200: Array<ReleaseResource>;
|
|
4045
|
+
};
|
|
4046
|
+
export type PostApiV3ReleasePushResponse = PostApiV3ReleasePushResponses[keyof PostApiV3ReleasePushResponses];
|
|
4047
|
+
export type GetApiV3RemotepathmappingData = {
|
|
218
4048
|
body?: never;
|
|
219
4049
|
path?: never;
|
|
220
4050
|
query?: never;
|
|
221
|
-
url: '/api';
|
|
4051
|
+
url: '/api/v3/remotepathmapping';
|
|
222
4052
|
};
|
|
223
|
-
export type
|
|
4053
|
+
export type GetApiV3RemotepathmappingResponses = {
|
|
224
4054
|
/**
|
|
225
4055
|
* OK
|
|
226
4056
|
*/
|
|
227
|
-
200:
|
|
4057
|
+
200: Array<RemotePathMappingResource>;
|
|
228
4058
|
};
|
|
229
|
-
export type
|
|
230
|
-
|
|
4059
|
+
export type GetApiV3RemotepathmappingResponse = GetApiV3RemotepathmappingResponses[keyof GetApiV3RemotepathmappingResponses];
|
|
4060
|
+
export type PostApiV3RemotepathmappingData = {
|
|
4061
|
+
body?: RemotePathMappingResource;
|
|
231
4062
|
path?: never;
|
|
232
4063
|
query?: never;
|
|
233
|
-
url: '/
|
|
4064
|
+
url: '/api/v3/remotepathmapping';
|
|
234
4065
|
};
|
|
235
|
-
export type
|
|
4066
|
+
export type PostApiV3RemotepathmappingResponses = {
|
|
236
4067
|
/**
|
|
237
4068
|
* OK
|
|
238
4069
|
*/
|
|
239
|
-
200:
|
|
4070
|
+
200: RemotePathMappingResource;
|
|
240
4071
|
};
|
|
241
|
-
export type
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
};
|
|
247
|
-
path?: never;
|
|
248
|
-
query?: {
|
|
249
|
-
returnUrl?: string;
|
|
4072
|
+
export type PostApiV3RemotepathmappingResponse = PostApiV3RemotepathmappingResponses[keyof PostApiV3RemotepathmappingResponses];
|
|
4073
|
+
export type DeleteApiV3RemotepathmappingByIdData = {
|
|
4074
|
+
body?: never;
|
|
4075
|
+
path: {
|
|
4076
|
+
id: number;
|
|
250
4077
|
};
|
|
251
|
-
|
|
4078
|
+
query?: never;
|
|
4079
|
+
url: '/api/v3/remotepathmapping/{id}';
|
|
252
4080
|
};
|
|
253
|
-
export type
|
|
4081
|
+
export type DeleteApiV3RemotepathmappingByIdResponses = {
|
|
254
4082
|
/**
|
|
255
4083
|
* OK
|
|
256
4084
|
*/
|
|
257
4085
|
200: unknown;
|
|
258
4086
|
};
|
|
259
|
-
export type
|
|
4087
|
+
export type GetApiV3RemotepathmappingByIdData = {
|
|
260
4088
|
body?: never;
|
|
261
|
-
path
|
|
4089
|
+
path: {
|
|
4090
|
+
id: number;
|
|
4091
|
+
};
|
|
262
4092
|
query?: never;
|
|
263
|
-
url: '/
|
|
4093
|
+
url: '/api/v3/remotepathmapping/{id}';
|
|
264
4094
|
};
|
|
265
|
-
export type
|
|
4095
|
+
export type GetApiV3RemotepathmappingByIdResponses = {
|
|
266
4096
|
/**
|
|
267
4097
|
* OK
|
|
268
4098
|
*/
|
|
269
|
-
200:
|
|
4099
|
+
200: RemotePathMappingResource;
|
|
270
4100
|
};
|
|
271
|
-
export type
|
|
4101
|
+
export type GetApiV3RemotepathmappingByIdResponse = GetApiV3RemotepathmappingByIdResponses[keyof GetApiV3RemotepathmappingByIdResponses];
|
|
4102
|
+
export type PutApiV3RemotepathmappingByIdData = {
|
|
4103
|
+
body?: RemotePathMappingResource;
|
|
4104
|
+
path: {
|
|
4105
|
+
id: string;
|
|
4106
|
+
};
|
|
4107
|
+
query?: never;
|
|
4108
|
+
url: '/api/v3/remotepathmapping/{id}';
|
|
4109
|
+
};
|
|
4110
|
+
export type PutApiV3RemotepathmappingByIdResponses = {
|
|
4111
|
+
/**
|
|
4112
|
+
* OK
|
|
4113
|
+
*/
|
|
4114
|
+
200: RemotePathMappingResource;
|
|
4115
|
+
};
|
|
4116
|
+
export type PutApiV3RemotepathmappingByIdResponse = PutApiV3RemotepathmappingByIdResponses[keyof PutApiV3RemotepathmappingByIdResponses];
|
|
4117
|
+
export type GetApiV3RenameData = {
|
|
272
4118
|
body?: never;
|
|
273
4119
|
path?: never;
|
|
274
4120
|
query?: {
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
sortKey?: string;
|
|
278
|
-
sortDirection?: SortDirection;
|
|
279
|
-
level?: string;
|
|
4121
|
+
seriesId?: number;
|
|
4122
|
+
seasonNumber?: number;
|
|
280
4123
|
};
|
|
281
|
-
url: '/api/
|
|
4124
|
+
url: '/api/v3/rename';
|
|
282
4125
|
};
|
|
283
|
-
export type
|
|
4126
|
+
export type GetApiV3RenameResponses = {
|
|
284
4127
|
/**
|
|
285
4128
|
* OK
|
|
286
4129
|
*/
|
|
287
|
-
200:
|
|
4130
|
+
200: Array<RenameEpisodeResource>;
|
|
288
4131
|
};
|
|
289
|
-
export type
|
|
290
|
-
export type
|
|
4132
|
+
export type GetApiV3RenameResponse = GetApiV3RenameResponses[keyof GetApiV3RenameResponses];
|
|
4133
|
+
export type GetApiV3RootfolderData = {
|
|
291
4134
|
body?: never;
|
|
292
4135
|
path?: never;
|
|
293
4136
|
query?: never;
|
|
294
|
-
url: '/
|
|
4137
|
+
url: '/api/v3/rootfolder';
|
|
295
4138
|
};
|
|
296
|
-
export type
|
|
4139
|
+
export type GetApiV3RootfolderResponses = {
|
|
297
4140
|
/**
|
|
298
4141
|
* OK
|
|
299
4142
|
*/
|
|
300
|
-
200:
|
|
4143
|
+
200: Array<RootFolderResource>;
|
|
301
4144
|
};
|
|
302
|
-
export type
|
|
303
|
-
export type
|
|
4145
|
+
export type GetApiV3RootfolderResponse = GetApiV3RootfolderResponses[keyof GetApiV3RootfolderResponses];
|
|
4146
|
+
export type PostApiV3RootfolderData = {
|
|
4147
|
+
body?: RootFolderResource;
|
|
4148
|
+
path?: never;
|
|
4149
|
+
query?: never;
|
|
4150
|
+
url: '/api/v3/rootfolder';
|
|
4151
|
+
};
|
|
4152
|
+
export type PostApiV3RootfolderResponses = {
|
|
4153
|
+
/**
|
|
4154
|
+
* OK
|
|
4155
|
+
*/
|
|
4156
|
+
200: RootFolderResource;
|
|
4157
|
+
};
|
|
4158
|
+
export type PostApiV3RootfolderResponse = PostApiV3RootfolderResponses[keyof PostApiV3RootfolderResponses];
|
|
4159
|
+
export type DeleteApiV3RootfolderByIdData = {
|
|
4160
|
+
body?: never;
|
|
4161
|
+
path: {
|
|
4162
|
+
id: number;
|
|
4163
|
+
};
|
|
4164
|
+
query?: never;
|
|
4165
|
+
url: '/api/v3/rootfolder/{id}';
|
|
4166
|
+
};
|
|
4167
|
+
export type DeleteApiV3RootfolderByIdResponses = {
|
|
4168
|
+
/**
|
|
4169
|
+
* OK
|
|
4170
|
+
*/
|
|
4171
|
+
200: unknown;
|
|
4172
|
+
};
|
|
4173
|
+
export type GetApiV3RootfolderByIdData = {
|
|
304
4174
|
body?: never;
|
|
4175
|
+
path: {
|
|
4176
|
+
id: number;
|
|
4177
|
+
};
|
|
4178
|
+
query?: never;
|
|
4179
|
+
url: '/api/v3/rootfolder/{id}';
|
|
4180
|
+
};
|
|
4181
|
+
export type GetApiV3RootfolderByIdResponses = {
|
|
4182
|
+
/**
|
|
4183
|
+
* OK
|
|
4184
|
+
*/
|
|
4185
|
+
200: RootFolderResource;
|
|
4186
|
+
};
|
|
4187
|
+
export type GetApiV3RootfolderByIdResponse = GetApiV3RootfolderByIdResponses[keyof GetApiV3RootfolderByIdResponses];
|
|
4188
|
+
export type PostApiV3SeasonpassData = {
|
|
4189
|
+
body?: SeasonPassResource;
|
|
305
4190
|
path?: never;
|
|
306
4191
|
query?: never;
|
|
307
|
-
url: '/
|
|
4192
|
+
url: '/api/v3/seasonpass';
|
|
308
4193
|
};
|
|
309
|
-
export type
|
|
4194
|
+
export type PostApiV3SeasonpassResponses = {
|
|
310
4195
|
/**
|
|
311
4196
|
* OK
|
|
312
4197
|
*/
|
|
313
|
-
200:
|
|
4198
|
+
200: unknown;
|
|
314
4199
|
};
|
|
315
|
-
export type
|
|
316
|
-
export type GetApiV5SeriesData = {
|
|
4200
|
+
export type GetApiV3SeriesData = {
|
|
317
4201
|
body?: never;
|
|
318
4202
|
path?: never;
|
|
319
4203
|
query?: {
|
|
320
4204
|
tvdbId?: number;
|
|
321
4205
|
includeSeasonImages?: boolean;
|
|
322
4206
|
};
|
|
323
|
-
url: '/api/
|
|
4207
|
+
url: '/api/v3/series';
|
|
324
4208
|
};
|
|
325
|
-
export type
|
|
4209
|
+
export type GetApiV3SeriesResponses = {
|
|
326
4210
|
/**
|
|
327
4211
|
* OK
|
|
328
4212
|
*/
|
|
329
4213
|
200: Array<SeriesResource>;
|
|
330
4214
|
};
|
|
331
|
-
export type
|
|
332
|
-
export type
|
|
4215
|
+
export type GetApiV3SeriesResponse = GetApiV3SeriesResponses[keyof GetApiV3SeriesResponses];
|
|
4216
|
+
export type PostApiV3SeriesData = {
|
|
333
4217
|
body?: SeriesResourceWritable;
|
|
334
4218
|
path?: never;
|
|
335
4219
|
query?: never;
|
|
336
|
-
url: '/api/
|
|
4220
|
+
url: '/api/v3/series';
|
|
337
4221
|
};
|
|
338
|
-
export type
|
|
4222
|
+
export type PostApiV3SeriesResponses = {
|
|
339
4223
|
/**
|
|
340
4224
|
* OK
|
|
341
4225
|
*/
|
|
342
4226
|
200: SeriesResource;
|
|
343
4227
|
};
|
|
344
|
-
export type
|
|
345
|
-
export type
|
|
4228
|
+
export type PostApiV3SeriesResponse = PostApiV3SeriesResponses[keyof PostApiV3SeriesResponses];
|
|
4229
|
+
export type DeleteApiV3SeriesByIdData = {
|
|
346
4230
|
body?: never;
|
|
347
4231
|
path: {
|
|
348
4232
|
id: number;
|
|
@@ -351,15 +4235,15 @@ export type DeleteApiV5SeriesByIdData = {
|
|
|
351
4235
|
deleteFiles?: boolean;
|
|
352
4236
|
addImportListExclusion?: boolean;
|
|
353
4237
|
};
|
|
354
|
-
url: '/api/
|
|
4238
|
+
url: '/api/v3/series/{id}';
|
|
355
4239
|
};
|
|
356
|
-
export type
|
|
4240
|
+
export type DeleteApiV3SeriesByIdResponses = {
|
|
357
4241
|
/**
|
|
358
4242
|
* OK
|
|
359
4243
|
*/
|
|
360
4244
|
200: unknown;
|
|
361
4245
|
};
|
|
362
|
-
export type
|
|
4246
|
+
export type GetApiV3SeriesByIdData = {
|
|
363
4247
|
body?: never;
|
|
364
4248
|
path: {
|
|
365
4249
|
id: number;
|
|
@@ -367,16 +4251,16 @@ export type GetApiV5SeriesByIdData = {
|
|
|
367
4251
|
query?: {
|
|
368
4252
|
includeSeasonImages?: boolean;
|
|
369
4253
|
};
|
|
370
|
-
url: '/api/
|
|
4254
|
+
url: '/api/v3/series/{id}';
|
|
371
4255
|
};
|
|
372
|
-
export type
|
|
4256
|
+
export type GetApiV3SeriesByIdResponses = {
|
|
373
4257
|
/**
|
|
374
4258
|
* OK
|
|
375
4259
|
*/
|
|
376
4260
|
200: SeriesResource;
|
|
377
4261
|
};
|
|
378
|
-
export type
|
|
379
|
-
export type
|
|
4262
|
+
export type GetApiV3SeriesByIdResponse = GetApiV3SeriesByIdResponses[keyof GetApiV3SeriesByIdResponses];
|
|
4263
|
+
export type PutApiV3SeriesByIdData = {
|
|
380
4264
|
body?: SeriesResourceWritable;
|
|
381
4265
|
path: {
|
|
382
4266
|
id: string;
|
|
@@ -384,44 +4268,80 @@ export type PutApiV5SeriesByIdData = {
|
|
|
384
4268
|
query?: {
|
|
385
4269
|
moveFiles?: boolean;
|
|
386
4270
|
};
|
|
387
|
-
url: '/api/
|
|
4271
|
+
url: '/api/v3/series/{id}';
|
|
388
4272
|
};
|
|
389
|
-
export type
|
|
4273
|
+
export type PutApiV3SeriesByIdResponses = {
|
|
390
4274
|
/**
|
|
391
4275
|
* OK
|
|
392
4276
|
*/
|
|
393
4277
|
200: SeriesResource;
|
|
394
4278
|
};
|
|
395
|
-
export type
|
|
396
|
-
export type
|
|
4279
|
+
export type PutApiV3SeriesByIdResponse = PutApiV3SeriesByIdResponses[keyof PutApiV3SeriesByIdResponses];
|
|
4280
|
+
export type DeleteApiV3SeriesEditorData = {
|
|
4281
|
+
body?: SeriesEditorResource;
|
|
4282
|
+
path?: never;
|
|
4283
|
+
query?: never;
|
|
4284
|
+
url: '/api/v3/series/editor';
|
|
4285
|
+
};
|
|
4286
|
+
export type DeleteApiV3SeriesEditorResponses = {
|
|
4287
|
+
/**
|
|
4288
|
+
* OK
|
|
4289
|
+
*/
|
|
4290
|
+
200: unknown;
|
|
4291
|
+
};
|
|
4292
|
+
export type PutApiV3SeriesEditorData = {
|
|
4293
|
+
body?: SeriesEditorResource;
|
|
4294
|
+
path?: never;
|
|
4295
|
+
query?: never;
|
|
4296
|
+
url: '/api/v3/series/editor';
|
|
4297
|
+
};
|
|
4298
|
+
export type PutApiV3SeriesEditorResponses = {
|
|
4299
|
+
/**
|
|
4300
|
+
* OK
|
|
4301
|
+
*/
|
|
4302
|
+
200: unknown;
|
|
4303
|
+
};
|
|
4304
|
+
export type GetApiV3SeriesByIdFolderData = {
|
|
397
4305
|
body?: never;
|
|
398
4306
|
path: {
|
|
399
4307
|
id: number;
|
|
400
4308
|
};
|
|
401
4309
|
query?: never;
|
|
402
|
-
url: '/api/
|
|
4310
|
+
url: '/api/v3/series/{id}/folder';
|
|
4311
|
+
};
|
|
4312
|
+
export type GetApiV3SeriesByIdFolderResponses = {
|
|
4313
|
+
/**
|
|
4314
|
+
* OK
|
|
4315
|
+
*/
|
|
4316
|
+
200: unknown;
|
|
4317
|
+
};
|
|
4318
|
+
export type PostApiV3SeriesImportData = {
|
|
4319
|
+
body?: Array<SeriesResourceWritable>;
|
|
4320
|
+
path?: never;
|
|
4321
|
+
query?: never;
|
|
4322
|
+
url: '/api/v3/series/import';
|
|
403
4323
|
};
|
|
404
|
-
export type
|
|
4324
|
+
export type PostApiV3SeriesImportResponses = {
|
|
405
4325
|
/**
|
|
406
4326
|
* OK
|
|
407
4327
|
*/
|
|
408
4328
|
200: unknown;
|
|
409
4329
|
};
|
|
410
|
-
export type
|
|
4330
|
+
export type GetApiV3SeriesLookupData = {
|
|
411
4331
|
body?: never;
|
|
412
4332
|
path?: never;
|
|
413
4333
|
query?: {
|
|
414
4334
|
term?: string;
|
|
415
4335
|
};
|
|
416
|
-
url: '/api/
|
|
4336
|
+
url: '/api/v3/series/lookup';
|
|
417
4337
|
};
|
|
418
|
-
export type
|
|
4338
|
+
export type GetApiV3SeriesLookupResponses = {
|
|
419
4339
|
/**
|
|
420
4340
|
* OK
|
|
421
4341
|
*/
|
|
422
4342
|
200: Array<SeriesResource>;
|
|
423
4343
|
};
|
|
424
|
-
export type
|
|
4344
|
+
export type GetApiV3SeriesLookupResponse = GetApiV3SeriesLookupResponses[keyof GetApiV3SeriesLookupResponses];
|
|
425
4345
|
export type GetContentByPathData = {
|
|
426
4346
|
body?: never;
|
|
427
4347
|
path: {
|
|
@@ -464,60 +4384,276 @@ export type GetByPathResponses = {
|
|
|
464
4384
|
*/
|
|
465
4385
|
200: unknown;
|
|
466
4386
|
};
|
|
467
|
-
export type
|
|
4387
|
+
export type GetApiV3SystemStatusData = {
|
|
468
4388
|
body?: never;
|
|
469
4389
|
path?: never;
|
|
470
4390
|
query?: never;
|
|
471
|
-
url: '/api/
|
|
4391
|
+
url: '/api/v3/system/status';
|
|
472
4392
|
};
|
|
473
|
-
export type
|
|
4393
|
+
export type GetApiV3SystemStatusResponses = {
|
|
474
4394
|
/**
|
|
475
4395
|
* OK
|
|
476
4396
|
*/
|
|
477
|
-
200:
|
|
4397
|
+
200: SystemResource;
|
|
4398
|
+
};
|
|
4399
|
+
export type GetApiV3SystemStatusResponse = GetApiV3SystemStatusResponses[keyof GetApiV3SystemStatusResponses];
|
|
4400
|
+
export type GetApiV3SystemRoutesData = {
|
|
4401
|
+
body?: never;
|
|
4402
|
+
path?: never;
|
|
4403
|
+
query?: never;
|
|
4404
|
+
url: '/api/v3/system/routes';
|
|
4405
|
+
};
|
|
4406
|
+
export type GetApiV3SystemRoutesResponses = {
|
|
4407
|
+
/**
|
|
4408
|
+
* OK
|
|
4409
|
+
*/
|
|
4410
|
+
200: unknown;
|
|
4411
|
+
};
|
|
4412
|
+
export type GetApiV3SystemRoutesDuplicateData = {
|
|
4413
|
+
body?: never;
|
|
4414
|
+
path?: never;
|
|
4415
|
+
query?: never;
|
|
4416
|
+
url: '/api/v3/system/routes/duplicate';
|
|
4417
|
+
};
|
|
4418
|
+
export type GetApiV3SystemRoutesDuplicateResponses = {
|
|
4419
|
+
/**
|
|
4420
|
+
* OK
|
|
4421
|
+
*/
|
|
4422
|
+
200: unknown;
|
|
478
4423
|
};
|
|
479
|
-
export type
|
|
480
|
-
export type GetApiV5SettingsUpdateData = {
|
|
4424
|
+
export type PostApiV3SystemShutdownData = {
|
|
481
4425
|
body?: never;
|
|
482
4426
|
path?: never;
|
|
483
4427
|
query?: never;
|
|
484
|
-
url: '/api/
|
|
4428
|
+
url: '/api/v3/system/shutdown';
|
|
485
4429
|
};
|
|
486
|
-
export type
|
|
4430
|
+
export type PostApiV3SystemShutdownResponses = {
|
|
487
4431
|
/**
|
|
488
4432
|
* OK
|
|
489
4433
|
*/
|
|
490
|
-
200:
|
|
4434
|
+
200: unknown;
|
|
4435
|
+
};
|
|
4436
|
+
export type PostApiV3SystemRestartData = {
|
|
4437
|
+
body?: never;
|
|
4438
|
+
path?: never;
|
|
4439
|
+
query?: never;
|
|
4440
|
+
url: '/api/v3/system/restart';
|
|
4441
|
+
};
|
|
4442
|
+
export type PostApiV3SystemRestartResponses = {
|
|
4443
|
+
/**
|
|
4444
|
+
* OK
|
|
4445
|
+
*/
|
|
4446
|
+
200: unknown;
|
|
4447
|
+
};
|
|
4448
|
+
export type GetApiV3TagData = {
|
|
4449
|
+
body?: never;
|
|
4450
|
+
path?: never;
|
|
4451
|
+
query?: never;
|
|
4452
|
+
url: '/api/v3/tag';
|
|
4453
|
+
};
|
|
4454
|
+
export type GetApiV3TagResponses = {
|
|
4455
|
+
/**
|
|
4456
|
+
* OK
|
|
4457
|
+
*/
|
|
4458
|
+
200: Array<TagResource>;
|
|
4459
|
+
};
|
|
4460
|
+
export type GetApiV3TagResponse = GetApiV3TagResponses[keyof GetApiV3TagResponses];
|
|
4461
|
+
export type PostApiV3TagData = {
|
|
4462
|
+
body?: TagResource;
|
|
4463
|
+
path?: never;
|
|
4464
|
+
query?: never;
|
|
4465
|
+
url: '/api/v3/tag';
|
|
4466
|
+
};
|
|
4467
|
+
export type PostApiV3TagResponses = {
|
|
4468
|
+
/**
|
|
4469
|
+
* OK
|
|
4470
|
+
*/
|
|
4471
|
+
200: TagResource;
|
|
4472
|
+
};
|
|
4473
|
+
export type PostApiV3TagResponse = PostApiV3TagResponses[keyof PostApiV3TagResponses];
|
|
4474
|
+
export type DeleteApiV3TagByIdData = {
|
|
4475
|
+
body?: never;
|
|
4476
|
+
path: {
|
|
4477
|
+
id: number;
|
|
4478
|
+
};
|
|
4479
|
+
query?: never;
|
|
4480
|
+
url: '/api/v3/tag/{id}';
|
|
4481
|
+
};
|
|
4482
|
+
export type DeleteApiV3TagByIdResponses = {
|
|
4483
|
+
/**
|
|
4484
|
+
* OK
|
|
4485
|
+
*/
|
|
4486
|
+
200: unknown;
|
|
4487
|
+
};
|
|
4488
|
+
export type GetApiV3TagByIdData = {
|
|
4489
|
+
body?: never;
|
|
4490
|
+
path: {
|
|
4491
|
+
id: number;
|
|
4492
|
+
};
|
|
4493
|
+
query?: never;
|
|
4494
|
+
url: '/api/v3/tag/{id}';
|
|
4495
|
+
};
|
|
4496
|
+
export type GetApiV3TagByIdResponses = {
|
|
4497
|
+
/**
|
|
4498
|
+
* OK
|
|
4499
|
+
*/
|
|
4500
|
+
200: TagResource;
|
|
4501
|
+
};
|
|
4502
|
+
export type GetApiV3TagByIdResponse = GetApiV3TagByIdResponses[keyof GetApiV3TagByIdResponses];
|
|
4503
|
+
export type PutApiV3TagByIdData = {
|
|
4504
|
+
body?: TagResource;
|
|
4505
|
+
path: {
|
|
4506
|
+
id: string;
|
|
4507
|
+
};
|
|
4508
|
+
query?: never;
|
|
4509
|
+
url: '/api/v3/tag/{id}';
|
|
4510
|
+
};
|
|
4511
|
+
export type PutApiV3TagByIdResponses = {
|
|
4512
|
+
/**
|
|
4513
|
+
* OK
|
|
4514
|
+
*/
|
|
4515
|
+
200: TagResource;
|
|
4516
|
+
};
|
|
4517
|
+
export type PutApiV3TagByIdResponse = PutApiV3TagByIdResponses[keyof PutApiV3TagByIdResponses];
|
|
4518
|
+
export type GetApiV3TagDetailData = {
|
|
4519
|
+
body?: never;
|
|
4520
|
+
path?: never;
|
|
4521
|
+
query?: never;
|
|
4522
|
+
url: '/api/v3/tag/detail';
|
|
4523
|
+
};
|
|
4524
|
+
export type GetApiV3TagDetailResponses = {
|
|
4525
|
+
/**
|
|
4526
|
+
* OK
|
|
4527
|
+
*/
|
|
4528
|
+
200: Array<TagDetailsResource>;
|
|
4529
|
+
};
|
|
4530
|
+
export type GetApiV3TagDetailResponse = GetApiV3TagDetailResponses[keyof GetApiV3TagDetailResponses];
|
|
4531
|
+
export type GetApiV3TagDetailByIdData = {
|
|
4532
|
+
body?: never;
|
|
4533
|
+
path: {
|
|
4534
|
+
id: number;
|
|
4535
|
+
};
|
|
4536
|
+
query?: never;
|
|
4537
|
+
url: '/api/v3/tag/detail/{id}';
|
|
4538
|
+
};
|
|
4539
|
+
export type GetApiV3TagDetailByIdResponses = {
|
|
4540
|
+
/**
|
|
4541
|
+
* OK
|
|
4542
|
+
*/
|
|
4543
|
+
200: TagDetailsResource;
|
|
491
4544
|
};
|
|
492
|
-
export type
|
|
493
|
-
export type
|
|
494
|
-
body?:
|
|
4545
|
+
export type GetApiV3TagDetailByIdResponse = GetApiV3TagDetailByIdResponses[keyof GetApiV3TagDetailByIdResponses];
|
|
4546
|
+
export type GetApiV3SystemTaskData = {
|
|
4547
|
+
body?: never;
|
|
495
4548
|
path?: never;
|
|
496
4549
|
query?: never;
|
|
497
|
-
url: '/api/
|
|
4550
|
+
url: '/api/v3/system/task';
|
|
4551
|
+
};
|
|
4552
|
+
export type GetApiV3SystemTaskResponses = {
|
|
4553
|
+
/**
|
|
4554
|
+
* OK
|
|
4555
|
+
*/
|
|
4556
|
+
200: Array<TaskResource>;
|
|
4557
|
+
};
|
|
4558
|
+
export type GetApiV3SystemTaskResponse = GetApiV3SystemTaskResponses[keyof GetApiV3SystemTaskResponses];
|
|
4559
|
+
export type GetApiV3SystemTaskByIdData = {
|
|
4560
|
+
body?: never;
|
|
4561
|
+
path: {
|
|
4562
|
+
id: number;
|
|
4563
|
+
};
|
|
4564
|
+
query?: never;
|
|
4565
|
+
url: '/api/v3/system/task/{id}';
|
|
498
4566
|
};
|
|
499
|
-
export type
|
|
4567
|
+
export type GetApiV3SystemTaskByIdResponses = {
|
|
500
4568
|
/**
|
|
501
4569
|
* OK
|
|
502
4570
|
*/
|
|
503
|
-
200:
|
|
4571
|
+
200: TaskResource;
|
|
504
4572
|
};
|
|
505
|
-
export type
|
|
506
|
-
export type
|
|
4573
|
+
export type GetApiV3SystemTaskByIdResponse = GetApiV3SystemTaskByIdResponses[keyof GetApiV3SystemTaskByIdResponses];
|
|
4574
|
+
export type GetApiV3ConfigUiByIdData = {
|
|
507
4575
|
body?: never;
|
|
508
4576
|
path: {
|
|
509
4577
|
id: number;
|
|
510
4578
|
};
|
|
511
4579
|
query?: never;
|
|
512
|
-
url: '/api/
|
|
4580
|
+
url: '/api/v3/config/ui/{id}';
|
|
4581
|
+
};
|
|
4582
|
+
export type GetApiV3ConfigUiByIdResponses = {
|
|
4583
|
+
/**
|
|
4584
|
+
* OK
|
|
4585
|
+
*/
|
|
4586
|
+
200: UiConfigResource;
|
|
4587
|
+
};
|
|
4588
|
+
export type GetApiV3ConfigUiByIdResponse = GetApiV3ConfigUiByIdResponses[keyof GetApiV3ConfigUiByIdResponses];
|
|
4589
|
+
export type PutApiV3ConfigUiByIdData = {
|
|
4590
|
+
body?: UiConfigResource;
|
|
4591
|
+
path: {
|
|
4592
|
+
id: string;
|
|
4593
|
+
};
|
|
4594
|
+
query?: never;
|
|
4595
|
+
url: '/api/v3/config/ui/{id}';
|
|
4596
|
+
};
|
|
4597
|
+
export type PutApiV3ConfigUiByIdResponses = {
|
|
4598
|
+
/**
|
|
4599
|
+
* OK
|
|
4600
|
+
*/
|
|
4601
|
+
200: UiConfigResource;
|
|
4602
|
+
};
|
|
4603
|
+
export type PutApiV3ConfigUiByIdResponse = PutApiV3ConfigUiByIdResponses[keyof PutApiV3ConfigUiByIdResponses];
|
|
4604
|
+
export type GetApiV3ConfigUiData = {
|
|
4605
|
+
body?: never;
|
|
4606
|
+
path?: never;
|
|
4607
|
+
query?: never;
|
|
4608
|
+
url: '/api/v3/config/ui';
|
|
4609
|
+
};
|
|
4610
|
+
export type GetApiV3ConfigUiResponses = {
|
|
4611
|
+
/**
|
|
4612
|
+
* OK
|
|
4613
|
+
*/
|
|
4614
|
+
200: UiConfigResource;
|
|
4615
|
+
};
|
|
4616
|
+
export type GetApiV3ConfigUiResponse = GetApiV3ConfigUiResponses[keyof GetApiV3ConfigUiResponses];
|
|
4617
|
+
export type GetApiV3UpdateData = {
|
|
4618
|
+
body?: never;
|
|
4619
|
+
path?: never;
|
|
4620
|
+
query?: never;
|
|
4621
|
+
url: '/api/v3/update';
|
|
4622
|
+
};
|
|
4623
|
+
export type GetApiV3UpdateResponses = {
|
|
4624
|
+
/**
|
|
4625
|
+
* OK
|
|
4626
|
+
*/
|
|
4627
|
+
200: Array<UpdateResource>;
|
|
4628
|
+
};
|
|
4629
|
+
export type GetApiV3UpdateResponse = GetApiV3UpdateResponses[keyof GetApiV3UpdateResponses];
|
|
4630
|
+
export type GetApiV3LogFileUpdateData = {
|
|
4631
|
+
body?: never;
|
|
4632
|
+
path?: never;
|
|
4633
|
+
query?: never;
|
|
4634
|
+
url: '/api/v3/log/file/update';
|
|
4635
|
+
};
|
|
4636
|
+
export type GetApiV3LogFileUpdateResponses = {
|
|
4637
|
+
/**
|
|
4638
|
+
* OK
|
|
4639
|
+
*/
|
|
4640
|
+
200: Array<LogFileResource>;
|
|
4641
|
+
};
|
|
4642
|
+
export type GetApiV3LogFileUpdateResponse = GetApiV3LogFileUpdateResponses[keyof GetApiV3LogFileUpdateResponses];
|
|
4643
|
+
export type GetApiV3LogFileUpdateByFilenameData = {
|
|
4644
|
+
body?: never;
|
|
4645
|
+
path: {
|
|
4646
|
+
filename: string;
|
|
4647
|
+
};
|
|
4648
|
+
query?: never;
|
|
4649
|
+
url: '/api/v3/log/file/update/{filename}';
|
|
513
4650
|
};
|
|
514
|
-
export type
|
|
4651
|
+
export type GetApiV3LogFileUpdateByFilenameResponses = {
|
|
515
4652
|
/**
|
|
516
4653
|
* OK
|
|
517
4654
|
*/
|
|
518
|
-
200:
|
|
4655
|
+
200: unknown;
|
|
519
4656
|
};
|
|
520
|
-
export type GetApiV5SettingsUpdateByIdResponse = GetApiV5SettingsUpdateByIdResponses[keyof GetApiV5SettingsUpdateByIdResponses];
|
|
521
4657
|
export type ClientOptions = {
|
|
522
4658
|
baseUrl: '{protocol}://{hostpath}' | (string & {});
|
|
523
4659
|
};
|