tsarr 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/clients/lidarr.d.ts +373 -0
- package/dist/clients/lidarr.d.ts.map +1 -0
- package/dist/clients/prowlarr.d.ts +143 -0
- package/dist/clients/prowlarr.d.ts.map +1 -0
- package/dist/clients/radarr.d.ts +1007 -0
- package/dist/clients/radarr.d.ts.map +1 -0
- package/dist/clients/readarr.d.ts +173 -0
- package/dist/clients/readarr.d.ts.map +1 -0
- package/dist/clients/sonarr.d.ts +181 -0
- package/dist/clients/sonarr.d.ts.map +1 -0
- package/dist/core/client.d.ts +17 -0
- package/dist/core/client.d.ts.map +1 -0
- package/dist/core/errors.d.ts +19 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/index.d.ts +5 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/response.d.ts +13 -0
- package/dist/core/response.d.ts.map +1 -0
- package/dist/core/types.d.ts +12 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/generated/lidarr/index.d.ts +4 -0
- package/dist/generated/lidarr/index.d.ts.map +1 -0
- package/dist/generated/lidarr/schemas.gen.d.ts +4584 -0
- package/dist/generated/lidarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/lidarr/services.gen.d.ts +242 -0
- package/dist/generated/lidarr/services.gen.d.ts.map +1 -0
- package/dist/generated/lidarr/types.gen.d.ts +2618 -0
- package/dist/generated/lidarr/types.gen.d.ts.map +1 -0
- package/dist/generated/prowlarr/index.d.ts +4 -0
- package/dist/generated/prowlarr/index.d.ts.map +1 -0
- package/dist/generated/prowlarr/schemas.gen.d.ts +2151 -0
- package/dist/generated/prowlarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/prowlarr/services.gen.d.ts +135 -0
- package/dist/generated/prowlarr/services.gen.d.ts.map +1 -0
- package/dist/generated/prowlarr/types.gen.d.ts +1339 -0
- package/dist/generated/prowlarr/types.gen.d.ts.map +1 -0
- package/dist/generated/radarr/index.d.ts +4 -0
- package/dist/generated/radarr/index.d.ts.map +1 -0
- package/dist/generated/radarr/schemas.gen.d.ts +4402 -0
- package/dist/generated/radarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/radarr/services.gen.d.ts +250 -0
- package/dist/generated/radarr/services.gen.d.ts.map +1 -0
- package/dist/generated/radarr/types.gen.d.ts +2547 -0
- package/dist/generated/radarr/types.gen.d.ts.map +1 -0
- package/dist/generated/readarr/index.d.ts +4 -0
- package/dist/generated/readarr/index.d.ts.map +1 -0
- package/dist/generated/readarr/schemas.gen.d.ts +5250 -0
- package/dist/generated/readarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/readarr/services.gen.d.ts +240 -0
- package/dist/generated/readarr/services.gen.d.ts.map +1 -0
- package/dist/generated/readarr/types.gen.d.ts +2770 -0
- package/dist/generated/readarr/types.gen.d.ts.map +1 -0
- package/dist/generated/sonarr/index.d.ts +4 -0
- package/dist/generated/sonarr/index.d.ts.map +1 -0
- package/dist/generated/sonarr/schemas.gen.d.ts +612 -0
- package/dist/generated/sonarr/schemas.gen.d.ts.map +1 -0
- package/dist/generated/sonarr/services.gen.d.ts +27 -0
- package/dist/generated/sonarr/services.gen.d.ts.map +1 -0
- package/dist/generated/sonarr/types.gen.d.ts +282 -0
- package/dist/generated/sonarr/types.gen.d.ts.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/radarr/index.d.ts +2 -0
- package/dist/radarr/index.d.ts.map +1 -0
- package/dist/sonarr/index.d.ts +2 -0
- package/dist/sonarr/index.d.ts.map +1 -0
- package/dist/tsarr-1.1.2.tgz +0 -0
- package/package.json +2 -2
- package/dist/tsarr-1.1.1.tgz +0 -0
|
@@ -0,0 +1,2547 @@
|
|
|
1
|
+
export type AddMovieMethod = 'manual' | 'list' | 'collection';
|
|
2
|
+
export type AddMovieOptions = {
|
|
3
|
+
ignoreEpisodesWithFiles?: boolean;
|
|
4
|
+
ignoreEpisodesWithoutFiles?: boolean;
|
|
5
|
+
monitor?: MonitorTypes;
|
|
6
|
+
searchForMovie?: boolean;
|
|
7
|
+
addMethod?: AddMovieMethod;
|
|
8
|
+
};
|
|
9
|
+
export type AlternativeTitleResource = {
|
|
10
|
+
id?: number;
|
|
11
|
+
sourceType?: SourceType;
|
|
12
|
+
movieMetadataId?: number;
|
|
13
|
+
title?: (string) | null;
|
|
14
|
+
cleanTitle?: (string) | null;
|
|
15
|
+
};
|
|
16
|
+
export type ApiInfoResource = {
|
|
17
|
+
current?: (string) | null;
|
|
18
|
+
deprecated?: Array<(string)> | null;
|
|
19
|
+
};
|
|
20
|
+
export type ApplyTags = 'add' | 'remove' | 'replace';
|
|
21
|
+
export type AuthenticationRequiredType = 'enabled' | 'disabledForLocalAddresses';
|
|
22
|
+
export type AuthenticationType = 'none' | 'basic' | 'forms' | 'external';
|
|
23
|
+
export type AutoTaggingResource = {
|
|
24
|
+
id?: number;
|
|
25
|
+
name?: (string) | null;
|
|
26
|
+
removeTagsAutomatically?: boolean;
|
|
27
|
+
tags?: Array<(number)> | null;
|
|
28
|
+
specifications?: Array<AutoTaggingSpecificationSchema> | null;
|
|
29
|
+
};
|
|
30
|
+
export type AutoTaggingSpecificationSchema = {
|
|
31
|
+
id?: number;
|
|
32
|
+
name?: (string) | null;
|
|
33
|
+
implementation?: (string) | null;
|
|
34
|
+
implementationName?: (string) | null;
|
|
35
|
+
negate?: boolean;
|
|
36
|
+
required?: boolean;
|
|
37
|
+
fields?: Array<Field> | null;
|
|
38
|
+
};
|
|
39
|
+
export type BackupResource = {
|
|
40
|
+
id?: number;
|
|
41
|
+
name?: (string) | null;
|
|
42
|
+
path?: (string) | null;
|
|
43
|
+
type?: BackupType;
|
|
44
|
+
size?: number;
|
|
45
|
+
time?: string;
|
|
46
|
+
};
|
|
47
|
+
export type BackupType = 'scheduled' | 'manual' | 'update';
|
|
48
|
+
export type BlocklistBulkResource = {
|
|
49
|
+
ids?: Array<(number)> | null;
|
|
50
|
+
};
|
|
51
|
+
export type BlocklistResource = {
|
|
52
|
+
id?: number;
|
|
53
|
+
movieId?: number;
|
|
54
|
+
sourceTitle?: (string) | null;
|
|
55
|
+
languages?: Array<Language> | null;
|
|
56
|
+
quality?: QualityModel;
|
|
57
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
58
|
+
date?: string;
|
|
59
|
+
protocol?: DownloadProtocol;
|
|
60
|
+
indexer?: (string) | null;
|
|
61
|
+
message?: (string) | null;
|
|
62
|
+
movie?: MovieResource;
|
|
63
|
+
};
|
|
64
|
+
export type BlocklistResourcePagingResource = {
|
|
65
|
+
page?: number;
|
|
66
|
+
pageSize?: number;
|
|
67
|
+
sortKey?: (string) | null;
|
|
68
|
+
sortDirection?: SortDirection;
|
|
69
|
+
totalRecords?: number;
|
|
70
|
+
records?: Array<BlocklistResource> | null;
|
|
71
|
+
};
|
|
72
|
+
export type CalendarReleaseType = 'cinemaRelease' | 'digitalRelease' | 'physicalRelease';
|
|
73
|
+
export type CertificateValidationType = 'enabled' | 'disabledForLocalAddresses' | 'disabled';
|
|
74
|
+
export type CollectionMovieResource = {
|
|
75
|
+
tmdbId?: number;
|
|
76
|
+
imdbId?: (string) | null;
|
|
77
|
+
title?: (string) | null;
|
|
78
|
+
cleanTitle?: (string) | null;
|
|
79
|
+
sortTitle?: (string) | null;
|
|
80
|
+
status?: MovieStatusType;
|
|
81
|
+
overview?: (string) | null;
|
|
82
|
+
runtime?: number;
|
|
83
|
+
images?: Array<MediaCover> | null;
|
|
84
|
+
year?: number;
|
|
85
|
+
ratings?: Ratings;
|
|
86
|
+
genres?: Array<(string)> | null;
|
|
87
|
+
folder?: (string) | null;
|
|
88
|
+
isExisting?: boolean;
|
|
89
|
+
isExcluded?: boolean;
|
|
90
|
+
};
|
|
91
|
+
export type CollectionResource = {
|
|
92
|
+
id?: number;
|
|
93
|
+
title?: (string) | null;
|
|
94
|
+
sortTitle?: (string) | null;
|
|
95
|
+
tmdbId?: number;
|
|
96
|
+
images?: Array<MediaCover> | null;
|
|
97
|
+
overview?: (string) | null;
|
|
98
|
+
monitored?: boolean;
|
|
99
|
+
rootFolderPath?: (string) | null;
|
|
100
|
+
qualityProfileId?: number;
|
|
101
|
+
searchOnAdd?: boolean;
|
|
102
|
+
minimumAvailability?: MovieStatusType;
|
|
103
|
+
movies?: Array<CollectionMovieResource> | null;
|
|
104
|
+
missingMovies?: number;
|
|
105
|
+
tags?: Array<(number)> | null;
|
|
106
|
+
};
|
|
107
|
+
export type CollectionUpdateResource = {
|
|
108
|
+
collectionIds?: Array<(number)> | null;
|
|
109
|
+
monitored?: (boolean) | null;
|
|
110
|
+
monitorMovies?: (boolean) | null;
|
|
111
|
+
searchOnAdd?: (boolean) | null;
|
|
112
|
+
qualityProfileId?: (number) | null;
|
|
113
|
+
rootFolderPath?: (string) | null;
|
|
114
|
+
minimumAvailability?: MovieStatusType;
|
|
115
|
+
};
|
|
116
|
+
export type ColonReplacementFormat = 'delete' | 'dash' | 'spaceDash' | 'spaceDashSpace' | 'smart';
|
|
117
|
+
export type Command = {
|
|
118
|
+
sendUpdatesToClient?: boolean;
|
|
119
|
+
readonly updateScheduledTask?: boolean;
|
|
120
|
+
readonly completionMessage?: (string) | null;
|
|
121
|
+
readonly requiresDiskAccess?: boolean;
|
|
122
|
+
readonly isExclusive?: boolean;
|
|
123
|
+
readonly isTypeExclusive?: boolean;
|
|
124
|
+
readonly isLongRunning?: boolean;
|
|
125
|
+
readonly name?: (string) | null;
|
|
126
|
+
lastExecutionTime?: (string) | null;
|
|
127
|
+
lastStartTime?: (string) | null;
|
|
128
|
+
trigger?: CommandTrigger;
|
|
129
|
+
suppressMessages?: boolean;
|
|
130
|
+
clientUserAgent?: (string) | null;
|
|
131
|
+
};
|
|
132
|
+
export type CommandPriority = 'normal' | 'high' | 'low';
|
|
133
|
+
export type CommandResource = {
|
|
134
|
+
id?: number;
|
|
135
|
+
name?: (string) | null;
|
|
136
|
+
commandName?: (string) | null;
|
|
137
|
+
message?: (string) | null;
|
|
138
|
+
body?: Command;
|
|
139
|
+
priority?: CommandPriority;
|
|
140
|
+
status?: CommandStatus;
|
|
141
|
+
result?: CommandResult;
|
|
142
|
+
queued?: string;
|
|
143
|
+
started?: (string) | null;
|
|
144
|
+
ended?: (string) | null;
|
|
145
|
+
duration?: (string) | null;
|
|
146
|
+
exception?: (string) | null;
|
|
147
|
+
trigger?: CommandTrigger;
|
|
148
|
+
clientUserAgent?: (string) | null;
|
|
149
|
+
stateChangeTime?: (string) | null;
|
|
150
|
+
sendUpdatesToClient?: boolean;
|
|
151
|
+
updateScheduledTask?: boolean;
|
|
152
|
+
lastExecutionTime?: (string) | null;
|
|
153
|
+
};
|
|
154
|
+
export type CommandResult = 'unknown' | 'successful' | 'unsuccessful';
|
|
155
|
+
export type CommandStatus = 'queued' | 'started' | 'completed' | 'failed' | 'aborted' | 'cancelled' | 'orphaned';
|
|
156
|
+
export type CommandTrigger = 'unspecified' | 'manual' | 'scheduled';
|
|
157
|
+
export type CreditResource = {
|
|
158
|
+
id?: number;
|
|
159
|
+
personName?: (string) | null;
|
|
160
|
+
creditTmdbId?: (string) | null;
|
|
161
|
+
personTmdbId?: number;
|
|
162
|
+
movieMetadataId?: number;
|
|
163
|
+
images?: Array<MediaCover> | null;
|
|
164
|
+
department?: (string) | null;
|
|
165
|
+
job?: (string) | null;
|
|
166
|
+
character?: (string) | null;
|
|
167
|
+
order?: number;
|
|
168
|
+
type?: CreditType;
|
|
169
|
+
};
|
|
170
|
+
export type CreditType = 'cast' | 'crew';
|
|
171
|
+
export type CustomFilterResource = {
|
|
172
|
+
id?: number;
|
|
173
|
+
type?: (string) | null;
|
|
174
|
+
label?: (string) | null;
|
|
175
|
+
filters?: Array<{
|
|
176
|
+
[key: string]: unknown;
|
|
177
|
+
}> | null;
|
|
178
|
+
};
|
|
179
|
+
export type CustomFormatBulkResource = {
|
|
180
|
+
ids?: Array<(number)> | null;
|
|
181
|
+
includeCustomFormatWhenRenaming?: (boolean) | null;
|
|
182
|
+
};
|
|
183
|
+
export type CustomFormatResource = {
|
|
184
|
+
id?: number;
|
|
185
|
+
name?: (string) | null;
|
|
186
|
+
includeCustomFormatWhenRenaming?: (boolean) | null;
|
|
187
|
+
specifications?: Array<CustomFormatSpecificationSchema> | null;
|
|
188
|
+
};
|
|
189
|
+
export type CustomFormatSpecificationSchema = {
|
|
190
|
+
id?: number;
|
|
191
|
+
name?: (string) | null;
|
|
192
|
+
implementation?: (string) | null;
|
|
193
|
+
implementationName?: (string) | null;
|
|
194
|
+
infoLink?: (string) | null;
|
|
195
|
+
negate?: boolean;
|
|
196
|
+
required?: boolean;
|
|
197
|
+
fields?: Array<Field> | null;
|
|
198
|
+
presets?: Array<CustomFormatSpecificationSchema> | null;
|
|
199
|
+
};
|
|
200
|
+
export type DatabaseType = 'sqLite' | 'postgreSQL';
|
|
201
|
+
export type DelayProfileResource = {
|
|
202
|
+
id?: number;
|
|
203
|
+
enableUsenet?: boolean;
|
|
204
|
+
enableTorrent?: boolean;
|
|
205
|
+
preferredProtocol?: DownloadProtocol;
|
|
206
|
+
usenetDelay?: number;
|
|
207
|
+
torrentDelay?: number;
|
|
208
|
+
bypassIfHighestQuality?: boolean;
|
|
209
|
+
bypassIfAboveCustomFormatScore?: boolean;
|
|
210
|
+
minimumCustomFormatScore?: number;
|
|
211
|
+
order?: number;
|
|
212
|
+
tags?: Array<(number)> | null;
|
|
213
|
+
};
|
|
214
|
+
export type DiskSpaceResource = {
|
|
215
|
+
id?: number;
|
|
216
|
+
path?: (string) | null;
|
|
217
|
+
label?: (string) | null;
|
|
218
|
+
freeSpace?: number;
|
|
219
|
+
totalSpace?: number;
|
|
220
|
+
};
|
|
221
|
+
export type DownloadClientBulkResource = {
|
|
222
|
+
ids?: Array<(number)> | null;
|
|
223
|
+
tags?: Array<(number)> | null;
|
|
224
|
+
applyTags?: ApplyTags;
|
|
225
|
+
enable?: (boolean) | null;
|
|
226
|
+
priority?: (number) | null;
|
|
227
|
+
removeCompletedDownloads?: (boolean) | null;
|
|
228
|
+
removeFailedDownloads?: (boolean) | null;
|
|
229
|
+
};
|
|
230
|
+
export type DownloadClientConfigResource = {
|
|
231
|
+
id?: number;
|
|
232
|
+
downloadClientWorkingFolders?: (string) | null;
|
|
233
|
+
enableCompletedDownloadHandling?: boolean;
|
|
234
|
+
checkForFinishedDownloadInterval?: number;
|
|
235
|
+
autoRedownloadFailed?: boolean;
|
|
236
|
+
autoRedownloadFailedFromInteractiveSearch?: boolean;
|
|
237
|
+
};
|
|
238
|
+
export type DownloadClientResource = {
|
|
239
|
+
id?: number;
|
|
240
|
+
name?: (string) | null;
|
|
241
|
+
fields?: Array<Field> | null;
|
|
242
|
+
implementationName?: (string) | null;
|
|
243
|
+
implementation?: (string) | null;
|
|
244
|
+
configContract?: (string) | null;
|
|
245
|
+
infoLink?: (string) | null;
|
|
246
|
+
message?: ProviderMessage;
|
|
247
|
+
tags?: Array<(number)> | null;
|
|
248
|
+
presets?: Array<DownloadClientResource> | null;
|
|
249
|
+
enable?: boolean;
|
|
250
|
+
protocol?: DownloadProtocol;
|
|
251
|
+
priority?: number;
|
|
252
|
+
removeCompletedDownloads?: boolean;
|
|
253
|
+
removeFailedDownloads?: boolean;
|
|
254
|
+
};
|
|
255
|
+
export type DownloadProtocol = 'unknown' | 'usenet' | 'torrent';
|
|
256
|
+
export type ExtraFileResource = {
|
|
257
|
+
id?: number;
|
|
258
|
+
movieId?: number;
|
|
259
|
+
movieFileId?: (number) | null;
|
|
260
|
+
relativePath?: (string) | null;
|
|
261
|
+
extension?: (string) | null;
|
|
262
|
+
languageTags?: Array<(string)> | null;
|
|
263
|
+
title?: (string) | null;
|
|
264
|
+
type?: ExtraFileType;
|
|
265
|
+
};
|
|
266
|
+
export type ExtraFileType = 'subtitle' | 'metadata' | 'other';
|
|
267
|
+
export type Field = {
|
|
268
|
+
order?: number;
|
|
269
|
+
name?: (string) | null;
|
|
270
|
+
label?: (string) | null;
|
|
271
|
+
unit?: (string) | null;
|
|
272
|
+
helpText?: (string) | null;
|
|
273
|
+
helpTextWarning?: (string) | null;
|
|
274
|
+
helpLink?: (string) | null;
|
|
275
|
+
value?: unknown;
|
|
276
|
+
type?: (string) | null;
|
|
277
|
+
advanced?: boolean;
|
|
278
|
+
selectOptions?: Array<SelectOption> | null;
|
|
279
|
+
selectOptionsProviderAction?: (string) | null;
|
|
280
|
+
section?: (string) | null;
|
|
281
|
+
hidden?: (string) | null;
|
|
282
|
+
privacy?: PrivacyLevel;
|
|
283
|
+
placeholder?: (string) | null;
|
|
284
|
+
isFloat?: boolean;
|
|
285
|
+
};
|
|
286
|
+
export type FileDateType = 'none' | 'cinemas' | 'release';
|
|
287
|
+
export type HealthCheckResult = 'ok' | 'notice' | 'warning' | 'error';
|
|
288
|
+
export type HealthResource = {
|
|
289
|
+
id?: number;
|
|
290
|
+
source?: (string) | null;
|
|
291
|
+
type?: HealthCheckResult;
|
|
292
|
+
message?: (string) | null;
|
|
293
|
+
wikiUrl?: (string) | null;
|
|
294
|
+
};
|
|
295
|
+
export type HistoryResource = {
|
|
296
|
+
id?: number;
|
|
297
|
+
movieId?: number;
|
|
298
|
+
sourceTitle?: (string) | null;
|
|
299
|
+
languages?: Array<Language> | null;
|
|
300
|
+
quality?: QualityModel;
|
|
301
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
302
|
+
customFormatScore?: number;
|
|
303
|
+
qualityCutoffNotMet?: boolean;
|
|
304
|
+
date?: string;
|
|
305
|
+
downloadId?: (string) | null;
|
|
306
|
+
eventType?: MovieHistoryEventType;
|
|
307
|
+
data?: {
|
|
308
|
+
[key: string]: ((string) | null);
|
|
309
|
+
} | null;
|
|
310
|
+
movie?: MovieResource;
|
|
311
|
+
};
|
|
312
|
+
export type HistoryResourcePagingResource = {
|
|
313
|
+
page?: number;
|
|
314
|
+
pageSize?: number;
|
|
315
|
+
sortKey?: (string) | null;
|
|
316
|
+
sortDirection?: SortDirection;
|
|
317
|
+
totalRecords?: number;
|
|
318
|
+
records?: Array<HistoryResource> | null;
|
|
319
|
+
};
|
|
320
|
+
export type HostConfigResource = {
|
|
321
|
+
id?: number;
|
|
322
|
+
bindAddress?: (string) | null;
|
|
323
|
+
port?: number;
|
|
324
|
+
sslPort?: number;
|
|
325
|
+
enableSsl?: boolean;
|
|
326
|
+
launchBrowser?: boolean;
|
|
327
|
+
authenticationMethod?: AuthenticationType;
|
|
328
|
+
authenticationRequired?: AuthenticationRequiredType;
|
|
329
|
+
analyticsEnabled?: boolean;
|
|
330
|
+
username?: (string) | null;
|
|
331
|
+
password?: (string) | null;
|
|
332
|
+
passwordConfirmation?: (string) | null;
|
|
333
|
+
logLevel?: (string) | null;
|
|
334
|
+
logSizeLimit?: number;
|
|
335
|
+
consoleLogLevel?: (string) | null;
|
|
336
|
+
branch?: (string) | null;
|
|
337
|
+
apiKey?: (string) | null;
|
|
338
|
+
sslCertPath?: (string) | null;
|
|
339
|
+
sslCertPassword?: (string) | null;
|
|
340
|
+
urlBase?: (string) | null;
|
|
341
|
+
instanceName?: (string) | null;
|
|
342
|
+
applicationUrl?: (string) | null;
|
|
343
|
+
updateAutomatically?: boolean;
|
|
344
|
+
updateMechanism?: UpdateMechanism;
|
|
345
|
+
updateScriptPath?: (string) | null;
|
|
346
|
+
proxyEnabled?: boolean;
|
|
347
|
+
proxyType?: ProxyType;
|
|
348
|
+
proxyHostname?: (string) | null;
|
|
349
|
+
proxyPort?: number;
|
|
350
|
+
proxyUsername?: (string) | null;
|
|
351
|
+
proxyPassword?: (string) | null;
|
|
352
|
+
proxyBypassFilter?: (string) | null;
|
|
353
|
+
proxyBypassLocalAddresses?: boolean;
|
|
354
|
+
certificateValidation?: CertificateValidationType;
|
|
355
|
+
backupFolder?: (string) | null;
|
|
356
|
+
backupInterval?: number;
|
|
357
|
+
backupRetention?: number;
|
|
358
|
+
trustCgnatIpAddresses?: boolean;
|
|
359
|
+
};
|
|
360
|
+
export type ImportListBulkResource = {
|
|
361
|
+
ids?: Array<(number)> | null;
|
|
362
|
+
tags?: Array<(number)> | null;
|
|
363
|
+
applyTags?: ApplyTags;
|
|
364
|
+
enabled?: (boolean) | null;
|
|
365
|
+
enableAuto?: (boolean) | null;
|
|
366
|
+
rootFolderPath?: (string) | null;
|
|
367
|
+
qualityProfileId?: (number) | null;
|
|
368
|
+
minimumAvailability?: MovieStatusType;
|
|
369
|
+
};
|
|
370
|
+
export type ImportListConfigResource = {
|
|
371
|
+
id?: number;
|
|
372
|
+
listSyncLevel?: (string) | null;
|
|
373
|
+
};
|
|
374
|
+
export type ImportListExclusionBulkResource = {
|
|
375
|
+
ids?: Array<(number)> | null;
|
|
376
|
+
};
|
|
377
|
+
export type ImportListExclusionResource = {
|
|
378
|
+
id?: number;
|
|
379
|
+
name?: (string) | null;
|
|
380
|
+
fields?: Array<Field> | null;
|
|
381
|
+
implementationName?: (string) | null;
|
|
382
|
+
implementation?: (string) | null;
|
|
383
|
+
configContract?: (string) | null;
|
|
384
|
+
infoLink?: (string) | null;
|
|
385
|
+
message?: ProviderMessage;
|
|
386
|
+
tags?: Array<(number)> | null;
|
|
387
|
+
presets?: Array<ImportListExclusionResource> | null;
|
|
388
|
+
tmdbId?: number;
|
|
389
|
+
movieTitle?: (string) | null;
|
|
390
|
+
movieYear?: number;
|
|
391
|
+
};
|
|
392
|
+
export type ImportListExclusionResourcePagingResource = {
|
|
393
|
+
page?: number;
|
|
394
|
+
pageSize?: number;
|
|
395
|
+
sortKey?: (string) | null;
|
|
396
|
+
sortDirection?: SortDirection;
|
|
397
|
+
totalRecords?: number;
|
|
398
|
+
records?: Array<ImportListExclusionResource> | null;
|
|
399
|
+
};
|
|
400
|
+
export type ImportListResource = {
|
|
401
|
+
id?: number;
|
|
402
|
+
name?: (string) | null;
|
|
403
|
+
fields?: Array<Field> | null;
|
|
404
|
+
implementationName?: (string) | null;
|
|
405
|
+
implementation?: (string) | null;
|
|
406
|
+
configContract?: (string) | null;
|
|
407
|
+
infoLink?: (string) | null;
|
|
408
|
+
message?: ProviderMessage;
|
|
409
|
+
tags?: Array<(number)> | null;
|
|
410
|
+
presets?: Array<ImportListResource> | null;
|
|
411
|
+
enabled?: boolean;
|
|
412
|
+
enableAuto?: boolean;
|
|
413
|
+
monitor?: MonitorTypes;
|
|
414
|
+
rootFolderPath?: (string) | null;
|
|
415
|
+
qualityProfileId?: number;
|
|
416
|
+
searchOnAdd?: boolean;
|
|
417
|
+
minimumAvailability?: MovieStatusType;
|
|
418
|
+
listType?: ImportListType;
|
|
419
|
+
listOrder?: number;
|
|
420
|
+
minRefreshInterval?: string;
|
|
421
|
+
};
|
|
422
|
+
export type ImportListType = 'program' | 'tmdb' | 'trakt' | 'plex' | 'simkl' | 'other' | 'advanced';
|
|
423
|
+
export type ImportRejectionResource = {
|
|
424
|
+
reason?: (string) | null;
|
|
425
|
+
type?: RejectionType;
|
|
426
|
+
};
|
|
427
|
+
export type IndexerBulkResource = {
|
|
428
|
+
ids?: Array<(number)> | null;
|
|
429
|
+
tags?: Array<(number)> | null;
|
|
430
|
+
applyTags?: ApplyTags;
|
|
431
|
+
enableRss?: (boolean) | null;
|
|
432
|
+
enableAutomaticSearch?: (boolean) | null;
|
|
433
|
+
enableInteractiveSearch?: (boolean) | null;
|
|
434
|
+
priority?: (number) | null;
|
|
435
|
+
};
|
|
436
|
+
export type IndexerConfigResource = {
|
|
437
|
+
id?: number;
|
|
438
|
+
minimumAge?: number;
|
|
439
|
+
maximumSize?: number;
|
|
440
|
+
retention?: number;
|
|
441
|
+
rssSyncInterval?: number;
|
|
442
|
+
preferIndexerFlags?: boolean;
|
|
443
|
+
availabilityDelay?: number;
|
|
444
|
+
allowHardcodedSubs?: boolean;
|
|
445
|
+
whitelistedHardcodedSubs?: (string) | null;
|
|
446
|
+
};
|
|
447
|
+
export type IndexerFlagResource = {
|
|
448
|
+
id?: number;
|
|
449
|
+
name?: (string) | null;
|
|
450
|
+
readonly nameLower?: (string) | null;
|
|
451
|
+
};
|
|
452
|
+
export type IndexerResource = {
|
|
453
|
+
id?: number;
|
|
454
|
+
name?: (string) | null;
|
|
455
|
+
fields?: Array<Field> | null;
|
|
456
|
+
implementationName?: (string) | null;
|
|
457
|
+
implementation?: (string) | null;
|
|
458
|
+
configContract?: (string) | null;
|
|
459
|
+
infoLink?: (string) | null;
|
|
460
|
+
message?: ProviderMessage;
|
|
461
|
+
tags?: Array<(number)> | null;
|
|
462
|
+
presets?: Array<IndexerResource> | null;
|
|
463
|
+
enableRss?: boolean;
|
|
464
|
+
enableAutomaticSearch?: boolean;
|
|
465
|
+
enableInteractiveSearch?: boolean;
|
|
466
|
+
supportsRss?: boolean;
|
|
467
|
+
supportsSearch?: boolean;
|
|
468
|
+
protocol?: DownloadProtocol;
|
|
469
|
+
priority?: number;
|
|
470
|
+
downloadClientId?: number;
|
|
471
|
+
};
|
|
472
|
+
export type Language = {
|
|
473
|
+
id?: number;
|
|
474
|
+
name?: (string) | null;
|
|
475
|
+
};
|
|
476
|
+
export type LanguageResource = {
|
|
477
|
+
id?: number;
|
|
478
|
+
name?: (string) | null;
|
|
479
|
+
readonly nameLower?: (string) | null;
|
|
480
|
+
};
|
|
481
|
+
export type LocalizationLanguageResource = {
|
|
482
|
+
identifier?: (string) | null;
|
|
483
|
+
};
|
|
484
|
+
export type LogFileResource = {
|
|
485
|
+
id?: number;
|
|
486
|
+
filename?: (string) | null;
|
|
487
|
+
lastWriteTime?: string;
|
|
488
|
+
contentsUrl?: (string) | null;
|
|
489
|
+
downloadUrl?: (string) | null;
|
|
490
|
+
};
|
|
491
|
+
export type LogResource = {
|
|
492
|
+
id?: number;
|
|
493
|
+
time?: string;
|
|
494
|
+
exception?: (string) | null;
|
|
495
|
+
exceptionType?: (string) | null;
|
|
496
|
+
level?: (string) | null;
|
|
497
|
+
logger?: (string) | null;
|
|
498
|
+
message?: (string) | null;
|
|
499
|
+
method?: (string) | null;
|
|
500
|
+
};
|
|
501
|
+
export type LogResourcePagingResource = {
|
|
502
|
+
page?: number;
|
|
503
|
+
pageSize?: number;
|
|
504
|
+
sortKey?: (string) | null;
|
|
505
|
+
sortDirection?: SortDirection;
|
|
506
|
+
totalRecords?: number;
|
|
507
|
+
records?: Array<LogResource> | null;
|
|
508
|
+
};
|
|
509
|
+
export type ManualImportReprocessResource = {
|
|
510
|
+
id?: number;
|
|
511
|
+
path?: (string) | null;
|
|
512
|
+
movieId?: number;
|
|
513
|
+
movie?: MovieResource;
|
|
514
|
+
quality?: QualityModel;
|
|
515
|
+
languages?: Array<Language> | null;
|
|
516
|
+
releaseGroup?: (string) | null;
|
|
517
|
+
downloadId?: (string) | null;
|
|
518
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
519
|
+
customFormatScore?: number;
|
|
520
|
+
indexerFlags?: number;
|
|
521
|
+
rejections?: Array<ImportRejectionResource> | null;
|
|
522
|
+
};
|
|
523
|
+
export type ManualImportResource = {
|
|
524
|
+
id?: number;
|
|
525
|
+
path?: (string) | null;
|
|
526
|
+
relativePath?: (string) | null;
|
|
527
|
+
folderName?: (string) | null;
|
|
528
|
+
name?: (string) | null;
|
|
529
|
+
size?: number;
|
|
530
|
+
movie?: MovieResource;
|
|
531
|
+
movieFileId?: (number) | null;
|
|
532
|
+
releaseGroup?: (string) | null;
|
|
533
|
+
quality?: QualityModel;
|
|
534
|
+
languages?: Array<Language> | null;
|
|
535
|
+
qualityWeight?: number;
|
|
536
|
+
downloadId?: (string) | null;
|
|
537
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
538
|
+
customFormatScore?: number;
|
|
539
|
+
indexerFlags?: number;
|
|
540
|
+
rejections?: Array<ImportRejectionResource> | null;
|
|
541
|
+
};
|
|
542
|
+
export type MediaCover = {
|
|
543
|
+
coverType?: MediaCoverTypes;
|
|
544
|
+
url?: (string) | null;
|
|
545
|
+
remoteUrl?: (string) | null;
|
|
546
|
+
};
|
|
547
|
+
export type MediaCoverTypes = 'unknown' | 'poster' | 'banner' | 'fanart' | 'screenshot' | 'headshot' | 'clearlogo';
|
|
548
|
+
export type MediaInfoResource = {
|
|
549
|
+
id?: number;
|
|
550
|
+
audioBitrate?: number;
|
|
551
|
+
audioChannels?: number;
|
|
552
|
+
audioCodec?: (string) | null;
|
|
553
|
+
audioLanguages?: (string) | null;
|
|
554
|
+
audioStreamCount?: number;
|
|
555
|
+
videoBitDepth?: number;
|
|
556
|
+
videoBitrate?: number;
|
|
557
|
+
videoCodec?: (string) | null;
|
|
558
|
+
videoFps?: number;
|
|
559
|
+
videoDynamicRange?: (string) | null;
|
|
560
|
+
videoDynamicRangeType?: (string) | null;
|
|
561
|
+
resolution?: (string) | null;
|
|
562
|
+
runTime?: (string) | null;
|
|
563
|
+
scanType?: (string) | null;
|
|
564
|
+
subtitles?: (string) | null;
|
|
565
|
+
};
|
|
566
|
+
export type MediaManagementConfigResource = {
|
|
567
|
+
id?: number;
|
|
568
|
+
autoUnmonitorPreviouslyDownloadedMovies?: boolean;
|
|
569
|
+
recycleBin?: (string) | null;
|
|
570
|
+
recycleBinCleanupDays?: number;
|
|
571
|
+
downloadPropersAndRepacks?: ProperDownloadTypes;
|
|
572
|
+
createEmptyMovieFolders?: boolean;
|
|
573
|
+
deleteEmptyFolders?: boolean;
|
|
574
|
+
fileDate?: FileDateType;
|
|
575
|
+
rescanAfterRefresh?: RescanAfterRefreshType;
|
|
576
|
+
autoRenameFolders?: boolean;
|
|
577
|
+
pathsDefaultStatic?: boolean;
|
|
578
|
+
setPermissionsLinux?: boolean;
|
|
579
|
+
chmodFolder?: (string) | null;
|
|
580
|
+
chownGroup?: (string) | null;
|
|
581
|
+
skipFreeSpaceCheckWhenImporting?: boolean;
|
|
582
|
+
minimumFreeSpaceWhenImporting?: number;
|
|
583
|
+
copyUsingHardlinks?: boolean;
|
|
584
|
+
useScriptImport?: boolean;
|
|
585
|
+
scriptImportPath?: (string) | null;
|
|
586
|
+
importExtraFiles?: boolean;
|
|
587
|
+
extraFileExtensions?: (string) | null;
|
|
588
|
+
enableMediaInfo?: boolean;
|
|
589
|
+
};
|
|
590
|
+
export type MetadataConfigResource = {
|
|
591
|
+
id?: number;
|
|
592
|
+
certificationCountry?: TMDbCountryCode;
|
|
593
|
+
};
|
|
594
|
+
export type MetadataResource = {
|
|
595
|
+
id?: number;
|
|
596
|
+
name?: (string) | null;
|
|
597
|
+
fields?: Array<Field> | null;
|
|
598
|
+
implementationName?: (string) | null;
|
|
599
|
+
implementation?: (string) | null;
|
|
600
|
+
configContract?: (string) | null;
|
|
601
|
+
infoLink?: (string) | null;
|
|
602
|
+
message?: ProviderMessage;
|
|
603
|
+
tags?: Array<(number)> | null;
|
|
604
|
+
presets?: Array<MetadataResource> | null;
|
|
605
|
+
enable?: boolean;
|
|
606
|
+
};
|
|
607
|
+
export type Modifier = 'none' | 'regional' | 'screener' | 'rawhd' | 'brdisk' | 'remux';
|
|
608
|
+
export type MonitorTypes = 'movieOnly' | 'movieAndCollection' | 'none';
|
|
609
|
+
export type MovieCollectionResource = {
|
|
610
|
+
title?: (string) | null;
|
|
611
|
+
tmdbId?: number;
|
|
612
|
+
};
|
|
613
|
+
export type MovieEditorResource = {
|
|
614
|
+
movieIds?: Array<(number)> | null;
|
|
615
|
+
monitored?: (boolean) | null;
|
|
616
|
+
qualityProfileId?: (number) | null;
|
|
617
|
+
minimumAvailability?: MovieStatusType;
|
|
618
|
+
rootFolderPath?: (string) | null;
|
|
619
|
+
tags?: Array<(number)> | null;
|
|
620
|
+
applyTags?: ApplyTags;
|
|
621
|
+
moveFiles?: boolean;
|
|
622
|
+
deleteFiles?: boolean;
|
|
623
|
+
addImportExclusion?: boolean;
|
|
624
|
+
};
|
|
625
|
+
export type MovieFileListResource = {
|
|
626
|
+
movieFileIds?: Array<(number)> | null;
|
|
627
|
+
languages?: Array<Language> | null;
|
|
628
|
+
quality?: QualityModel;
|
|
629
|
+
edition?: (string) | null;
|
|
630
|
+
releaseGroup?: (string) | null;
|
|
631
|
+
sceneName?: (string) | null;
|
|
632
|
+
indexerFlags?: (number) | null;
|
|
633
|
+
};
|
|
634
|
+
export type MovieFileResource = {
|
|
635
|
+
id?: number;
|
|
636
|
+
movieId?: number;
|
|
637
|
+
relativePath?: (string) | null;
|
|
638
|
+
path?: (string) | null;
|
|
639
|
+
size?: number;
|
|
640
|
+
dateAdded?: string;
|
|
641
|
+
sceneName?: (string) | null;
|
|
642
|
+
releaseGroup?: (string) | null;
|
|
643
|
+
edition?: (string) | null;
|
|
644
|
+
languages?: Array<Language> | null;
|
|
645
|
+
quality?: QualityModel;
|
|
646
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
647
|
+
customFormatScore?: (number) | null;
|
|
648
|
+
indexerFlags?: (number) | null;
|
|
649
|
+
mediaInfo?: MediaInfoResource;
|
|
650
|
+
originalFilePath?: (string) | null;
|
|
651
|
+
qualityCutoffNotMet?: boolean;
|
|
652
|
+
};
|
|
653
|
+
export type MovieHistoryEventType = 'unknown' | 'grabbed' | 'downloadFolderImported' | 'downloadFailed' | 'movieFileDeleted' | 'movieFolderImported' | 'movieFileRenamed' | 'downloadIgnored';
|
|
654
|
+
export type MovieResource = {
|
|
655
|
+
id?: number;
|
|
656
|
+
title?: (string) | null;
|
|
657
|
+
originalTitle?: (string) | null;
|
|
658
|
+
originalLanguage?: Language;
|
|
659
|
+
alternateTitles?: Array<AlternativeTitleResource> | null;
|
|
660
|
+
secondaryYear?: (number) | null;
|
|
661
|
+
secondaryYearSourceId?: number;
|
|
662
|
+
sortTitle?: (string) | null;
|
|
663
|
+
sizeOnDisk?: (number) | null;
|
|
664
|
+
status?: MovieStatusType;
|
|
665
|
+
overview?: (string) | null;
|
|
666
|
+
inCinemas?: (string) | null;
|
|
667
|
+
physicalRelease?: (string) | null;
|
|
668
|
+
digitalRelease?: (string) | null;
|
|
669
|
+
releaseDate?: (string) | null;
|
|
670
|
+
physicalReleaseNote?: (string) | null;
|
|
671
|
+
images?: Array<MediaCover> | null;
|
|
672
|
+
website?: (string) | null;
|
|
673
|
+
remotePoster?: (string) | null;
|
|
674
|
+
year?: number;
|
|
675
|
+
youTubeTrailerId?: (string) | null;
|
|
676
|
+
studio?: (string) | null;
|
|
677
|
+
path?: (string) | null;
|
|
678
|
+
qualityProfileId?: number;
|
|
679
|
+
hasFile?: (boolean) | null;
|
|
680
|
+
movieFileId?: number;
|
|
681
|
+
monitored?: boolean;
|
|
682
|
+
minimumAvailability?: MovieStatusType;
|
|
683
|
+
isAvailable?: boolean;
|
|
684
|
+
folderName?: (string) | null;
|
|
685
|
+
runtime?: number;
|
|
686
|
+
cleanTitle?: (string) | null;
|
|
687
|
+
imdbId?: (string) | null;
|
|
688
|
+
tmdbId?: number;
|
|
689
|
+
titleSlug?: (string) | null;
|
|
690
|
+
rootFolderPath?: (string) | null;
|
|
691
|
+
folder?: (string) | null;
|
|
692
|
+
certification?: (string) | null;
|
|
693
|
+
genres?: Array<(string)> | null;
|
|
694
|
+
keywords?: Array<(string)> | null;
|
|
695
|
+
tags?: Array<(number)> | null;
|
|
696
|
+
added?: string;
|
|
697
|
+
addOptions?: AddMovieOptions;
|
|
698
|
+
ratings?: Ratings;
|
|
699
|
+
movieFile?: MovieFileResource;
|
|
700
|
+
collection?: MovieCollectionResource;
|
|
701
|
+
popularity?: number;
|
|
702
|
+
lastSearchTime?: (string) | null;
|
|
703
|
+
statistics?: MovieStatisticsResource;
|
|
704
|
+
};
|
|
705
|
+
export type MovieResourcePagingResource = {
|
|
706
|
+
page?: number;
|
|
707
|
+
pageSize?: number;
|
|
708
|
+
sortKey?: (string) | null;
|
|
709
|
+
sortDirection?: SortDirection;
|
|
710
|
+
totalRecords?: number;
|
|
711
|
+
records?: Array<MovieResource> | null;
|
|
712
|
+
};
|
|
713
|
+
export type MovieRuntimeFormatType = 'hoursMinutes' | 'minutes';
|
|
714
|
+
export type MovieStatisticsResource = {
|
|
715
|
+
movieFileCount?: number;
|
|
716
|
+
sizeOnDisk?: number;
|
|
717
|
+
releaseGroups?: Array<(string)> | null;
|
|
718
|
+
};
|
|
719
|
+
export type MovieStatusType = 'tba' | 'announced' | 'inCinemas' | 'released' | 'deleted';
|
|
720
|
+
export type NamingConfigResource = {
|
|
721
|
+
id?: number;
|
|
722
|
+
renameMovies?: boolean;
|
|
723
|
+
replaceIllegalCharacters?: boolean;
|
|
724
|
+
colonReplacementFormat?: ColonReplacementFormat;
|
|
725
|
+
standardMovieFormat?: (string) | null;
|
|
726
|
+
movieFolderFormat?: (string) | null;
|
|
727
|
+
};
|
|
728
|
+
export type NotificationResource = {
|
|
729
|
+
id?: number;
|
|
730
|
+
name?: (string) | null;
|
|
731
|
+
fields?: Array<Field> | null;
|
|
732
|
+
implementationName?: (string) | null;
|
|
733
|
+
implementation?: (string) | null;
|
|
734
|
+
configContract?: (string) | null;
|
|
735
|
+
infoLink?: (string) | null;
|
|
736
|
+
message?: ProviderMessage;
|
|
737
|
+
tags?: Array<(number)> | null;
|
|
738
|
+
presets?: Array<NotificationResource> | null;
|
|
739
|
+
link?: (string) | null;
|
|
740
|
+
onGrab?: boolean;
|
|
741
|
+
onDownload?: boolean;
|
|
742
|
+
onUpgrade?: boolean;
|
|
743
|
+
onRename?: boolean;
|
|
744
|
+
onMovieAdded?: boolean;
|
|
745
|
+
onMovieDelete?: boolean;
|
|
746
|
+
onMovieFileDelete?: boolean;
|
|
747
|
+
onMovieFileDeleteForUpgrade?: boolean;
|
|
748
|
+
onHealthIssue?: boolean;
|
|
749
|
+
includeHealthWarnings?: boolean;
|
|
750
|
+
onHealthRestored?: boolean;
|
|
751
|
+
onApplicationUpdate?: boolean;
|
|
752
|
+
onManualInteractionRequired?: boolean;
|
|
753
|
+
supportsOnGrab?: boolean;
|
|
754
|
+
supportsOnDownload?: boolean;
|
|
755
|
+
supportsOnUpgrade?: boolean;
|
|
756
|
+
supportsOnRename?: boolean;
|
|
757
|
+
supportsOnMovieAdded?: boolean;
|
|
758
|
+
supportsOnMovieDelete?: boolean;
|
|
759
|
+
supportsOnMovieFileDelete?: boolean;
|
|
760
|
+
supportsOnMovieFileDeleteForUpgrade?: boolean;
|
|
761
|
+
supportsOnHealthIssue?: boolean;
|
|
762
|
+
supportsOnHealthRestored?: boolean;
|
|
763
|
+
supportsOnApplicationUpdate?: boolean;
|
|
764
|
+
supportsOnManualInteractionRequired?: boolean;
|
|
765
|
+
testCommand?: (string) | null;
|
|
766
|
+
};
|
|
767
|
+
export type ParsedMovieInfo = {
|
|
768
|
+
movieTitles?: Array<(string)> | null;
|
|
769
|
+
originalTitle?: (string) | null;
|
|
770
|
+
releaseTitle?: (string) | null;
|
|
771
|
+
simpleReleaseTitle?: (string) | null;
|
|
772
|
+
quality?: QualityModel;
|
|
773
|
+
languages?: Array<Language> | null;
|
|
774
|
+
releaseGroup?: (string) | null;
|
|
775
|
+
releaseHash?: (string) | null;
|
|
776
|
+
edition?: (string) | null;
|
|
777
|
+
year?: number;
|
|
778
|
+
imdbId?: (string) | null;
|
|
779
|
+
tmdbId?: number;
|
|
780
|
+
hardcodedSubs?: (string) | null;
|
|
781
|
+
readonly movieTitle?: (string) | null;
|
|
782
|
+
readonly primaryMovieTitle?: (string) | null;
|
|
783
|
+
};
|
|
784
|
+
export type ParseResource = {
|
|
785
|
+
id?: number;
|
|
786
|
+
title?: (string) | null;
|
|
787
|
+
parsedMovieInfo?: ParsedMovieInfo;
|
|
788
|
+
movie?: MovieResource;
|
|
789
|
+
languages?: Array<Language> | null;
|
|
790
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
791
|
+
customFormatScore?: number;
|
|
792
|
+
};
|
|
793
|
+
export type PingResource = {
|
|
794
|
+
status?: (string) | null;
|
|
795
|
+
};
|
|
796
|
+
export type PrivacyLevel = 'normal' | 'password' | 'apiKey' | 'userName';
|
|
797
|
+
export type ProfileFormatItemResource = {
|
|
798
|
+
id?: number;
|
|
799
|
+
format?: number;
|
|
800
|
+
name?: (string) | null;
|
|
801
|
+
score?: number;
|
|
802
|
+
};
|
|
803
|
+
export type ProperDownloadTypes = 'preferAndUpgrade' | 'doNotUpgrade' | 'doNotPrefer';
|
|
804
|
+
export type ProviderMessage = {
|
|
805
|
+
message?: (string) | null;
|
|
806
|
+
type?: ProviderMessageType;
|
|
807
|
+
};
|
|
808
|
+
export type ProviderMessageType = 'info' | 'warning' | 'error';
|
|
809
|
+
export type ProxyType = 'http' | 'socks4' | 'socks5';
|
|
810
|
+
export type Quality = {
|
|
811
|
+
id?: number;
|
|
812
|
+
name?: (string) | null;
|
|
813
|
+
source?: QualitySource;
|
|
814
|
+
resolution?: number;
|
|
815
|
+
modifier?: Modifier;
|
|
816
|
+
};
|
|
817
|
+
export type QualityDefinitionLimitsResource = {
|
|
818
|
+
min?: number;
|
|
819
|
+
max?: number;
|
|
820
|
+
};
|
|
821
|
+
export type QualityDefinitionResource = {
|
|
822
|
+
id?: number;
|
|
823
|
+
quality?: Quality;
|
|
824
|
+
title?: (string) | null;
|
|
825
|
+
weight?: number;
|
|
826
|
+
minSize?: (number) | null;
|
|
827
|
+
maxSize?: (number) | null;
|
|
828
|
+
preferredSize?: (number) | null;
|
|
829
|
+
};
|
|
830
|
+
export type QualityModel = {
|
|
831
|
+
quality?: Quality;
|
|
832
|
+
revision?: Revision;
|
|
833
|
+
};
|
|
834
|
+
export type QualityProfileQualityItemResource = {
|
|
835
|
+
id?: number;
|
|
836
|
+
name?: (string) | null;
|
|
837
|
+
quality?: Quality;
|
|
838
|
+
items?: Array<QualityProfileQualityItemResource> | null;
|
|
839
|
+
allowed?: boolean;
|
|
840
|
+
};
|
|
841
|
+
export type QualityProfileResource = {
|
|
842
|
+
id?: number;
|
|
843
|
+
name?: (string) | null;
|
|
844
|
+
upgradeAllowed?: boolean;
|
|
845
|
+
cutoff?: number;
|
|
846
|
+
items?: Array<QualityProfileQualityItemResource> | null;
|
|
847
|
+
minFormatScore?: number;
|
|
848
|
+
cutoffFormatScore?: number;
|
|
849
|
+
minUpgradeFormatScore?: number;
|
|
850
|
+
formatItems?: Array<ProfileFormatItemResource> | null;
|
|
851
|
+
language?: Language;
|
|
852
|
+
};
|
|
853
|
+
export type QualitySource = 'unknown' | 'cam' | 'telesync' | 'telecine' | 'workprint' | 'dvd' | 'tv' | 'webdl' | 'webrip' | 'bluray';
|
|
854
|
+
export type QueueBulkResource = {
|
|
855
|
+
ids?: Array<(number)> | null;
|
|
856
|
+
};
|
|
857
|
+
export type QueueResource = {
|
|
858
|
+
id?: number;
|
|
859
|
+
movieId?: (number) | null;
|
|
860
|
+
movie?: MovieResource;
|
|
861
|
+
languages?: Array<Language> | null;
|
|
862
|
+
quality?: QualityModel;
|
|
863
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
864
|
+
customFormatScore?: number;
|
|
865
|
+
size?: number;
|
|
866
|
+
title?: (string) | null;
|
|
867
|
+
estimatedCompletionTime?: (string) | null;
|
|
868
|
+
added?: (string) | null;
|
|
869
|
+
status?: QueueStatus;
|
|
870
|
+
trackedDownloadStatus?: TrackedDownloadStatus;
|
|
871
|
+
trackedDownloadState?: TrackedDownloadState;
|
|
872
|
+
statusMessages?: Array<TrackedDownloadStatusMessage> | null;
|
|
873
|
+
errorMessage?: (string) | null;
|
|
874
|
+
downloadId?: (string) | null;
|
|
875
|
+
protocol?: DownloadProtocol;
|
|
876
|
+
downloadClient?: (string) | null;
|
|
877
|
+
downloadClientHasPostImportCategory?: boolean;
|
|
878
|
+
indexer?: (string) | null;
|
|
879
|
+
outputPath?: (string) | null;
|
|
880
|
+
/**
|
|
881
|
+
* @deprecated
|
|
882
|
+
*/
|
|
883
|
+
sizeleft?: number;
|
|
884
|
+
/**
|
|
885
|
+
* @deprecated
|
|
886
|
+
*/
|
|
887
|
+
timeleft?: (string) | null;
|
|
888
|
+
};
|
|
889
|
+
export type QueueResourcePagingResource = {
|
|
890
|
+
page?: number;
|
|
891
|
+
pageSize?: number;
|
|
892
|
+
sortKey?: (string) | null;
|
|
893
|
+
sortDirection?: SortDirection;
|
|
894
|
+
totalRecords?: number;
|
|
895
|
+
records?: Array<QueueResource> | null;
|
|
896
|
+
};
|
|
897
|
+
export type QueueStatus = 'unknown' | 'queued' | 'paused' | 'downloading' | 'completed' | 'failed' | 'warning' | 'delay' | 'downloadClientUnavailable' | 'fallback';
|
|
898
|
+
export type QueueStatusResource = {
|
|
899
|
+
id?: number;
|
|
900
|
+
totalCount?: number;
|
|
901
|
+
count?: number;
|
|
902
|
+
unknownCount?: number;
|
|
903
|
+
errors?: boolean;
|
|
904
|
+
warnings?: boolean;
|
|
905
|
+
unknownErrors?: boolean;
|
|
906
|
+
unknownWarnings?: boolean;
|
|
907
|
+
};
|
|
908
|
+
export type RatingChild = {
|
|
909
|
+
votes?: number;
|
|
910
|
+
value?: number;
|
|
911
|
+
type?: RatingType;
|
|
912
|
+
};
|
|
913
|
+
export type Ratings = {
|
|
914
|
+
imdb?: RatingChild;
|
|
915
|
+
tmdb?: RatingChild;
|
|
916
|
+
metacritic?: RatingChild;
|
|
917
|
+
rottenTomatoes?: RatingChild;
|
|
918
|
+
trakt?: RatingChild;
|
|
919
|
+
};
|
|
920
|
+
export type RatingType = 'user' | 'critic';
|
|
921
|
+
export type RejectionType = 'permanent' | 'temporary';
|
|
922
|
+
export type ReleaseProfileResource = {
|
|
923
|
+
id?: number;
|
|
924
|
+
name?: (string) | null;
|
|
925
|
+
enabled?: boolean;
|
|
926
|
+
required?: unknown;
|
|
927
|
+
ignored?: unknown;
|
|
928
|
+
indexerId?: number;
|
|
929
|
+
tags?: Array<(number)> | null;
|
|
930
|
+
};
|
|
931
|
+
export type ReleaseResource = {
|
|
932
|
+
id?: number;
|
|
933
|
+
guid?: (string) | null;
|
|
934
|
+
quality?: QualityModel;
|
|
935
|
+
customFormats?: Array<CustomFormatResource> | null;
|
|
936
|
+
customFormatScore?: number;
|
|
937
|
+
qualityWeight?: number;
|
|
938
|
+
age?: number;
|
|
939
|
+
ageHours?: number;
|
|
940
|
+
ageMinutes?: number;
|
|
941
|
+
size?: number;
|
|
942
|
+
indexerId?: number;
|
|
943
|
+
indexer?: (string) | null;
|
|
944
|
+
releaseGroup?: (string) | null;
|
|
945
|
+
subGroup?: (string) | null;
|
|
946
|
+
releaseHash?: (string) | null;
|
|
947
|
+
title?: (string) | null;
|
|
948
|
+
sceneSource?: boolean;
|
|
949
|
+
movieTitles?: Array<(string)> | null;
|
|
950
|
+
languages?: Array<Language> | null;
|
|
951
|
+
mappedMovieId?: (number) | null;
|
|
952
|
+
approved?: boolean;
|
|
953
|
+
temporarilyRejected?: boolean;
|
|
954
|
+
rejected?: boolean;
|
|
955
|
+
tmdbId?: number;
|
|
956
|
+
imdbId?: number;
|
|
957
|
+
rejections?: Array<(string)> | null;
|
|
958
|
+
publishDate?: string;
|
|
959
|
+
commentUrl?: (string) | null;
|
|
960
|
+
downloadUrl?: (string) | null;
|
|
961
|
+
infoUrl?: (string) | null;
|
|
962
|
+
movieRequested?: boolean;
|
|
963
|
+
downloadAllowed?: boolean;
|
|
964
|
+
releaseWeight?: number;
|
|
965
|
+
edition?: (string) | null;
|
|
966
|
+
magnetUrl?: (string) | null;
|
|
967
|
+
infoHash?: (string) | null;
|
|
968
|
+
seeders?: (number) | null;
|
|
969
|
+
leechers?: (number) | null;
|
|
970
|
+
protocol?: DownloadProtocol;
|
|
971
|
+
indexerFlags?: unknown;
|
|
972
|
+
movieId?: (number) | null;
|
|
973
|
+
downloadClientId?: (number) | null;
|
|
974
|
+
downloadClient?: (string) | null;
|
|
975
|
+
shouldOverride?: (boolean) | null;
|
|
976
|
+
};
|
|
977
|
+
export type RemotePathMappingResource = {
|
|
978
|
+
id?: number;
|
|
979
|
+
host?: (string) | null;
|
|
980
|
+
remotePath?: (string) | null;
|
|
981
|
+
localPath?: (string) | null;
|
|
982
|
+
};
|
|
983
|
+
export type RenameMovieResource = {
|
|
984
|
+
id?: number;
|
|
985
|
+
movieId?: number;
|
|
986
|
+
movieFileId?: number;
|
|
987
|
+
existingPath?: (string) | null;
|
|
988
|
+
newPath?: (string) | null;
|
|
989
|
+
};
|
|
990
|
+
export type RescanAfterRefreshType = 'always' | 'afterManual' | 'never';
|
|
991
|
+
export type Revision = {
|
|
992
|
+
version?: number;
|
|
993
|
+
real?: number;
|
|
994
|
+
isRepack?: boolean;
|
|
995
|
+
};
|
|
996
|
+
export type RootFolderResource = {
|
|
997
|
+
id?: number;
|
|
998
|
+
path?: (string) | null;
|
|
999
|
+
accessible?: boolean;
|
|
1000
|
+
freeSpace?: (number) | null;
|
|
1001
|
+
unmappedFolders?: Array<UnmappedFolder> | null;
|
|
1002
|
+
};
|
|
1003
|
+
export type RuntimeMode = 'console' | 'service' | 'tray';
|
|
1004
|
+
export type SelectOption = {
|
|
1005
|
+
value?: number;
|
|
1006
|
+
name?: (string) | null;
|
|
1007
|
+
order?: number;
|
|
1008
|
+
hint?: (string) | null;
|
|
1009
|
+
dividerAfter?: boolean;
|
|
1010
|
+
};
|
|
1011
|
+
export type SortDirection = 'default' | 'ascending' | 'descending';
|
|
1012
|
+
export type SourceType = 'tmdb' | 'mappings' | 'user' | 'indexer';
|
|
1013
|
+
export type SystemResource = {
|
|
1014
|
+
appName?: (string) | null;
|
|
1015
|
+
instanceName?: (string) | null;
|
|
1016
|
+
version?: (string) | null;
|
|
1017
|
+
buildTime?: string;
|
|
1018
|
+
isDebug?: boolean;
|
|
1019
|
+
isProduction?: boolean;
|
|
1020
|
+
isAdmin?: boolean;
|
|
1021
|
+
isUserInteractive?: boolean;
|
|
1022
|
+
startupPath?: (string) | null;
|
|
1023
|
+
appData?: (string) | null;
|
|
1024
|
+
osName?: (string) | null;
|
|
1025
|
+
osVersion?: (string) | null;
|
|
1026
|
+
isNetCore?: boolean;
|
|
1027
|
+
isLinux?: boolean;
|
|
1028
|
+
isOsx?: boolean;
|
|
1029
|
+
isWindows?: boolean;
|
|
1030
|
+
isDocker?: boolean;
|
|
1031
|
+
mode?: RuntimeMode;
|
|
1032
|
+
branch?: (string) | null;
|
|
1033
|
+
databaseType?: DatabaseType;
|
|
1034
|
+
databaseVersion?: (string) | null;
|
|
1035
|
+
authentication?: AuthenticationType;
|
|
1036
|
+
migrationVersion?: number;
|
|
1037
|
+
urlBase?: (string) | null;
|
|
1038
|
+
runtimeVersion?: (string) | null;
|
|
1039
|
+
runtimeName?: (string) | null;
|
|
1040
|
+
startTime?: string;
|
|
1041
|
+
packageVersion?: (string) | null;
|
|
1042
|
+
packageAuthor?: (string) | null;
|
|
1043
|
+
packageUpdateMechanism?: UpdateMechanism;
|
|
1044
|
+
packageUpdateMechanismMessage?: (string) | null;
|
|
1045
|
+
};
|
|
1046
|
+
export type TagDetailsResource = {
|
|
1047
|
+
id?: number;
|
|
1048
|
+
label?: (string) | null;
|
|
1049
|
+
delayProfileIds?: Array<(number)> | null;
|
|
1050
|
+
importListIds?: Array<(number)> | null;
|
|
1051
|
+
notificationIds?: Array<(number)> | null;
|
|
1052
|
+
releaseProfileIds?: Array<(number)> | null;
|
|
1053
|
+
indexerIds?: Array<(number)> | null;
|
|
1054
|
+
downloadClientIds?: Array<(number)> | null;
|
|
1055
|
+
autoTagIds?: Array<(number)> | null;
|
|
1056
|
+
movieIds?: Array<(number)> | null;
|
|
1057
|
+
};
|
|
1058
|
+
export type TagResource = {
|
|
1059
|
+
id?: number;
|
|
1060
|
+
label?: (string) | null;
|
|
1061
|
+
};
|
|
1062
|
+
export type TaskResource = {
|
|
1063
|
+
id?: number;
|
|
1064
|
+
name?: (string) | null;
|
|
1065
|
+
taskName?: (string) | null;
|
|
1066
|
+
interval?: number;
|
|
1067
|
+
lastExecution?: string;
|
|
1068
|
+
lastStartTime?: string;
|
|
1069
|
+
nextExecution?: string;
|
|
1070
|
+
readonly lastDuration?: string;
|
|
1071
|
+
};
|
|
1072
|
+
export type TMDbCountryCode = 'au' | 'br' | 'ca' | 'fr' | 'de' | 'gb' | 'in' | 'ie' | 'it' | 'nz' | 'ro' | 'es' | 'us';
|
|
1073
|
+
export type TrackedDownloadState = 'downloading' | 'importBlocked' | 'importPending' | 'importing' | 'imported' | 'failedPending' | 'failed' | 'ignored';
|
|
1074
|
+
export type TrackedDownloadStatus = 'ok' | 'warning' | 'error';
|
|
1075
|
+
export type TrackedDownloadStatusMessage = {
|
|
1076
|
+
title?: (string) | null;
|
|
1077
|
+
messages?: Array<(string)> | null;
|
|
1078
|
+
};
|
|
1079
|
+
export type UiConfigResource = {
|
|
1080
|
+
id?: number;
|
|
1081
|
+
firstDayOfWeek?: number;
|
|
1082
|
+
calendarWeekColumnHeader?: (string) | null;
|
|
1083
|
+
movieRuntimeFormat?: MovieRuntimeFormatType;
|
|
1084
|
+
shortDateFormat?: (string) | null;
|
|
1085
|
+
longDateFormat?: (string) | null;
|
|
1086
|
+
timeFormat?: (string) | null;
|
|
1087
|
+
showRelativeDates?: boolean;
|
|
1088
|
+
enableColorImpairedMode?: boolean;
|
|
1089
|
+
movieInfoLanguage?: number;
|
|
1090
|
+
uiLanguage?: number;
|
|
1091
|
+
theme?: (string) | null;
|
|
1092
|
+
};
|
|
1093
|
+
export type UnmappedFolder = {
|
|
1094
|
+
name?: (string) | null;
|
|
1095
|
+
path?: (string) | null;
|
|
1096
|
+
relativePath?: (string) | null;
|
|
1097
|
+
};
|
|
1098
|
+
export type UpdateChanges = {
|
|
1099
|
+
new?: Array<(string)> | null;
|
|
1100
|
+
fixed?: Array<(string)> | null;
|
|
1101
|
+
};
|
|
1102
|
+
export type UpdateMechanism = 'builtIn' | 'script' | 'external' | 'apt' | 'docker';
|
|
1103
|
+
export type UpdateResource = {
|
|
1104
|
+
id?: number;
|
|
1105
|
+
version?: (string) | null;
|
|
1106
|
+
branch?: (string) | null;
|
|
1107
|
+
releaseDate?: string;
|
|
1108
|
+
fileName?: (string) | null;
|
|
1109
|
+
url?: (string) | null;
|
|
1110
|
+
installed?: boolean;
|
|
1111
|
+
installedOn?: (string) | null;
|
|
1112
|
+
installable?: boolean;
|
|
1113
|
+
latest?: boolean;
|
|
1114
|
+
changes?: UpdateChanges;
|
|
1115
|
+
hash?: (string) | null;
|
|
1116
|
+
};
|
|
1117
|
+
export type GetApiV3AlttitleData = {
|
|
1118
|
+
query?: {
|
|
1119
|
+
movieId?: number;
|
|
1120
|
+
movieMetadataId?: number;
|
|
1121
|
+
};
|
|
1122
|
+
};
|
|
1123
|
+
export type GetApiV3AlttitleResponse = (Array<AlternativeTitleResource>);
|
|
1124
|
+
export type GetApiV3AlttitleError = unknown;
|
|
1125
|
+
export type GetApiV3AlttitleByIdData = {
|
|
1126
|
+
path: {
|
|
1127
|
+
id: number;
|
|
1128
|
+
};
|
|
1129
|
+
};
|
|
1130
|
+
export type GetApiV3AlttitleByIdResponse = (AlternativeTitleResource);
|
|
1131
|
+
export type GetApiV3AlttitleByIdError = unknown;
|
|
1132
|
+
export type GetApiResponse = (ApiInfoResource);
|
|
1133
|
+
export type GetApiError = unknown;
|
|
1134
|
+
export type PostLoginData = {
|
|
1135
|
+
body?: {
|
|
1136
|
+
username?: string;
|
|
1137
|
+
password?: string;
|
|
1138
|
+
rememberMe?: string;
|
|
1139
|
+
};
|
|
1140
|
+
query?: {
|
|
1141
|
+
returnUrl?: string;
|
|
1142
|
+
};
|
|
1143
|
+
};
|
|
1144
|
+
export type PostLoginResponse = (unknown);
|
|
1145
|
+
export type PostLoginError = unknown;
|
|
1146
|
+
export type GetLoginResponse = (unknown);
|
|
1147
|
+
export type GetLoginError = unknown;
|
|
1148
|
+
export type GetLogoutResponse = (unknown);
|
|
1149
|
+
export type GetLogoutError = unknown;
|
|
1150
|
+
export type PostApiV3AutotaggingData = {
|
|
1151
|
+
body?: AutoTaggingResource;
|
|
1152
|
+
};
|
|
1153
|
+
export type PostApiV3AutotaggingResponse = (AutoTaggingResource);
|
|
1154
|
+
export type PostApiV3AutotaggingError = unknown;
|
|
1155
|
+
export type GetApiV3AutotaggingResponse = (Array<AutoTaggingResource>);
|
|
1156
|
+
export type GetApiV3AutotaggingError = unknown;
|
|
1157
|
+
export type PutApiV3AutotaggingByIdData = {
|
|
1158
|
+
body?: AutoTaggingResource;
|
|
1159
|
+
path: {
|
|
1160
|
+
id: string;
|
|
1161
|
+
};
|
|
1162
|
+
};
|
|
1163
|
+
export type PutApiV3AutotaggingByIdResponse = (AutoTaggingResource);
|
|
1164
|
+
export type PutApiV3AutotaggingByIdError = unknown;
|
|
1165
|
+
export type DeleteApiV3AutotaggingByIdData = {
|
|
1166
|
+
path: {
|
|
1167
|
+
id: number;
|
|
1168
|
+
};
|
|
1169
|
+
};
|
|
1170
|
+
export type DeleteApiV3AutotaggingByIdResponse = (unknown);
|
|
1171
|
+
export type DeleteApiV3AutotaggingByIdError = unknown;
|
|
1172
|
+
export type GetApiV3AutotaggingByIdData = {
|
|
1173
|
+
path: {
|
|
1174
|
+
id: number;
|
|
1175
|
+
};
|
|
1176
|
+
};
|
|
1177
|
+
export type GetApiV3AutotaggingByIdResponse = (AutoTaggingResource);
|
|
1178
|
+
export type GetApiV3AutotaggingByIdError = unknown;
|
|
1179
|
+
export type GetApiV3AutotaggingSchemaResponse = (unknown);
|
|
1180
|
+
export type GetApiV3AutotaggingSchemaError = unknown;
|
|
1181
|
+
export type GetApiV3SystemBackupResponse = (Array<BackupResource>);
|
|
1182
|
+
export type GetApiV3SystemBackupError = unknown;
|
|
1183
|
+
export type DeleteApiV3SystemBackupByIdData = {
|
|
1184
|
+
path: {
|
|
1185
|
+
id: number;
|
|
1186
|
+
};
|
|
1187
|
+
};
|
|
1188
|
+
export type DeleteApiV3SystemBackupByIdResponse = (unknown);
|
|
1189
|
+
export type DeleteApiV3SystemBackupByIdError = unknown;
|
|
1190
|
+
export type PostApiV3SystemBackupRestoreByIdData = {
|
|
1191
|
+
path: {
|
|
1192
|
+
id: number;
|
|
1193
|
+
};
|
|
1194
|
+
};
|
|
1195
|
+
export type PostApiV3SystemBackupRestoreByIdResponse = (unknown);
|
|
1196
|
+
export type PostApiV3SystemBackupRestoreByIdError = unknown;
|
|
1197
|
+
export type PostApiV3SystemBackupRestoreUploadResponse = (unknown);
|
|
1198
|
+
export type PostApiV3SystemBackupRestoreUploadError = unknown;
|
|
1199
|
+
export type GetApiV3BlocklistData = {
|
|
1200
|
+
query?: {
|
|
1201
|
+
movieIds?: Array<(number)>;
|
|
1202
|
+
page?: number;
|
|
1203
|
+
pageSize?: number;
|
|
1204
|
+
protocols?: Array<DownloadProtocol>;
|
|
1205
|
+
sortDirection?: SortDirection;
|
|
1206
|
+
sortKey?: string;
|
|
1207
|
+
};
|
|
1208
|
+
};
|
|
1209
|
+
export type GetApiV3BlocklistResponse = (BlocklistResourcePagingResource);
|
|
1210
|
+
export type GetApiV3BlocklistError = unknown;
|
|
1211
|
+
export type GetApiV3BlocklistMovieData = {
|
|
1212
|
+
query?: {
|
|
1213
|
+
movieId?: number;
|
|
1214
|
+
};
|
|
1215
|
+
};
|
|
1216
|
+
export type GetApiV3BlocklistMovieResponse = (Array<BlocklistResource>);
|
|
1217
|
+
export type GetApiV3BlocklistMovieError = unknown;
|
|
1218
|
+
export type DeleteApiV3BlocklistByIdData = {
|
|
1219
|
+
path: {
|
|
1220
|
+
id: number;
|
|
1221
|
+
};
|
|
1222
|
+
};
|
|
1223
|
+
export type DeleteApiV3BlocklistByIdResponse = (unknown);
|
|
1224
|
+
export type DeleteApiV3BlocklistByIdError = unknown;
|
|
1225
|
+
export type DeleteApiV3BlocklistBulkData = {
|
|
1226
|
+
body?: BlocklistBulkResource;
|
|
1227
|
+
};
|
|
1228
|
+
export type DeleteApiV3BlocklistBulkResponse = (unknown);
|
|
1229
|
+
export type DeleteApiV3BlocklistBulkError = unknown;
|
|
1230
|
+
export type GetApiV3CalendarData = {
|
|
1231
|
+
query?: {
|
|
1232
|
+
end?: string;
|
|
1233
|
+
start?: string;
|
|
1234
|
+
tags?: string;
|
|
1235
|
+
unmonitored?: boolean;
|
|
1236
|
+
};
|
|
1237
|
+
};
|
|
1238
|
+
export type GetApiV3CalendarResponse = (Array<MovieResource>);
|
|
1239
|
+
export type GetApiV3CalendarError = unknown;
|
|
1240
|
+
export type GetFeedV3CalendarRadarrIcsData = {
|
|
1241
|
+
query?: {
|
|
1242
|
+
futureDays?: number;
|
|
1243
|
+
pastDays?: number;
|
|
1244
|
+
releaseTypes?: Array<CalendarReleaseType>;
|
|
1245
|
+
tags?: string;
|
|
1246
|
+
unmonitored?: boolean;
|
|
1247
|
+
};
|
|
1248
|
+
};
|
|
1249
|
+
export type GetFeedV3CalendarRadarrIcsResponse = (unknown);
|
|
1250
|
+
export type GetFeedV3CalendarRadarrIcsError = unknown;
|
|
1251
|
+
export type GetApiV3CollectionData = {
|
|
1252
|
+
query?: {
|
|
1253
|
+
tmdbId?: number;
|
|
1254
|
+
};
|
|
1255
|
+
};
|
|
1256
|
+
export type GetApiV3CollectionResponse = (Array<CollectionResource>);
|
|
1257
|
+
export type GetApiV3CollectionError = unknown;
|
|
1258
|
+
export type PutApiV3CollectionData = {
|
|
1259
|
+
body?: CollectionUpdateResource;
|
|
1260
|
+
};
|
|
1261
|
+
export type PutApiV3CollectionResponse = (unknown);
|
|
1262
|
+
export type PutApiV3CollectionError = unknown;
|
|
1263
|
+
export type PutApiV3CollectionByIdData = {
|
|
1264
|
+
body?: CollectionResource;
|
|
1265
|
+
path: {
|
|
1266
|
+
id: string;
|
|
1267
|
+
};
|
|
1268
|
+
};
|
|
1269
|
+
export type PutApiV3CollectionByIdResponse = (CollectionResource);
|
|
1270
|
+
export type PutApiV3CollectionByIdError = unknown;
|
|
1271
|
+
export type GetApiV3CollectionByIdData = {
|
|
1272
|
+
path: {
|
|
1273
|
+
id: number;
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1276
|
+
export type GetApiV3CollectionByIdResponse = (CollectionResource);
|
|
1277
|
+
export type GetApiV3CollectionByIdError = unknown;
|
|
1278
|
+
export type PostApiV3CommandData = {
|
|
1279
|
+
body?: CommandResource;
|
|
1280
|
+
};
|
|
1281
|
+
export type PostApiV3CommandResponse = (CommandResource);
|
|
1282
|
+
export type PostApiV3CommandError = unknown;
|
|
1283
|
+
export type GetApiV3CommandResponse = (Array<CommandResource>);
|
|
1284
|
+
export type GetApiV3CommandError = unknown;
|
|
1285
|
+
export type DeleteApiV3CommandByIdData = {
|
|
1286
|
+
path: {
|
|
1287
|
+
id: number;
|
|
1288
|
+
};
|
|
1289
|
+
};
|
|
1290
|
+
export type DeleteApiV3CommandByIdResponse = (unknown);
|
|
1291
|
+
export type DeleteApiV3CommandByIdError = unknown;
|
|
1292
|
+
export type GetApiV3CommandByIdData = {
|
|
1293
|
+
path: {
|
|
1294
|
+
id: number;
|
|
1295
|
+
};
|
|
1296
|
+
};
|
|
1297
|
+
export type GetApiV3CommandByIdResponse = (CommandResource);
|
|
1298
|
+
export type GetApiV3CommandByIdError = unknown;
|
|
1299
|
+
export type GetApiV3CreditData = {
|
|
1300
|
+
query?: {
|
|
1301
|
+
movieId?: number;
|
|
1302
|
+
movieMetadataId?: number;
|
|
1303
|
+
};
|
|
1304
|
+
};
|
|
1305
|
+
export type GetApiV3CreditResponse = (unknown);
|
|
1306
|
+
export type GetApiV3CreditError = unknown;
|
|
1307
|
+
export type GetApiV3CreditByIdData = {
|
|
1308
|
+
path: {
|
|
1309
|
+
id: number;
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
export type GetApiV3CreditByIdResponse = (CreditResource);
|
|
1313
|
+
export type GetApiV3CreditByIdError = unknown;
|
|
1314
|
+
export type GetApiV3CustomfilterResponse = (Array<CustomFilterResource>);
|
|
1315
|
+
export type GetApiV3CustomfilterError = unknown;
|
|
1316
|
+
export type PostApiV3CustomfilterData = {
|
|
1317
|
+
body?: CustomFilterResource;
|
|
1318
|
+
};
|
|
1319
|
+
export type PostApiV3CustomfilterResponse = (CustomFilterResource);
|
|
1320
|
+
export type PostApiV3CustomfilterError = unknown;
|
|
1321
|
+
export type PutApiV3CustomfilterByIdData = {
|
|
1322
|
+
body?: CustomFilterResource;
|
|
1323
|
+
path: {
|
|
1324
|
+
id: string;
|
|
1325
|
+
};
|
|
1326
|
+
};
|
|
1327
|
+
export type PutApiV3CustomfilterByIdResponse = (CustomFilterResource);
|
|
1328
|
+
export type PutApiV3CustomfilterByIdError = unknown;
|
|
1329
|
+
export type DeleteApiV3CustomfilterByIdData = {
|
|
1330
|
+
path: {
|
|
1331
|
+
id: number;
|
|
1332
|
+
};
|
|
1333
|
+
};
|
|
1334
|
+
export type DeleteApiV3CustomfilterByIdResponse = (unknown);
|
|
1335
|
+
export type DeleteApiV3CustomfilterByIdError = unknown;
|
|
1336
|
+
export type GetApiV3CustomfilterByIdData = {
|
|
1337
|
+
path: {
|
|
1338
|
+
id: number;
|
|
1339
|
+
};
|
|
1340
|
+
};
|
|
1341
|
+
export type GetApiV3CustomfilterByIdResponse = (CustomFilterResource);
|
|
1342
|
+
export type GetApiV3CustomfilterByIdError = unknown;
|
|
1343
|
+
export type GetApiV3CustomformatResponse = (Array<CustomFormatResource>);
|
|
1344
|
+
export type GetApiV3CustomformatError = unknown;
|
|
1345
|
+
export type PostApiV3CustomformatData = {
|
|
1346
|
+
body?: CustomFormatResource;
|
|
1347
|
+
};
|
|
1348
|
+
export type PostApiV3CustomformatResponse = (CustomFormatResource);
|
|
1349
|
+
export type PostApiV3CustomformatError = unknown;
|
|
1350
|
+
export type PutApiV3CustomformatByIdData = {
|
|
1351
|
+
body?: CustomFormatResource;
|
|
1352
|
+
path: {
|
|
1353
|
+
id: string;
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1356
|
+
export type PutApiV3CustomformatByIdResponse = (CustomFormatResource);
|
|
1357
|
+
export type PutApiV3CustomformatByIdError = unknown;
|
|
1358
|
+
export type DeleteApiV3CustomformatByIdData = {
|
|
1359
|
+
path: {
|
|
1360
|
+
id: number;
|
|
1361
|
+
};
|
|
1362
|
+
};
|
|
1363
|
+
export type DeleteApiV3CustomformatByIdResponse = (unknown);
|
|
1364
|
+
export type DeleteApiV3CustomformatByIdError = unknown;
|
|
1365
|
+
export type GetApiV3CustomformatByIdData = {
|
|
1366
|
+
path: {
|
|
1367
|
+
id: number;
|
|
1368
|
+
};
|
|
1369
|
+
};
|
|
1370
|
+
export type GetApiV3CustomformatByIdResponse = (CustomFormatResource);
|
|
1371
|
+
export type GetApiV3CustomformatByIdError = unknown;
|
|
1372
|
+
export type PutApiV3CustomformatBulkData = {
|
|
1373
|
+
body?: CustomFormatBulkResource;
|
|
1374
|
+
};
|
|
1375
|
+
export type PutApiV3CustomformatBulkResponse = (CustomFormatResource);
|
|
1376
|
+
export type PutApiV3CustomformatBulkError = unknown;
|
|
1377
|
+
export type DeleteApiV3CustomformatBulkData = {
|
|
1378
|
+
body?: CustomFormatBulkResource;
|
|
1379
|
+
};
|
|
1380
|
+
export type DeleteApiV3CustomformatBulkResponse = (unknown);
|
|
1381
|
+
export type DeleteApiV3CustomformatBulkError = unknown;
|
|
1382
|
+
export type GetApiV3CustomformatSchemaResponse = (unknown);
|
|
1383
|
+
export type GetApiV3CustomformatSchemaError = unknown;
|
|
1384
|
+
export type GetApiV3WantedCutoffData = {
|
|
1385
|
+
query?: {
|
|
1386
|
+
monitored?: boolean;
|
|
1387
|
+
page?: number;
|
|
1388
|
+
pageSize?: number;
|
|
1389
|
+
sortDirection?: SortDirection;
|
|
1390
|
+
sortKey?: string;
|
|
1391
|
+
};
|
|
1392
|
+
};
|
|
1393
|
+
export type GetApiV3WantedCutoffResponse = (MovieResourcePagingResource);
|
|
1394
|
+
export type GetApiV3WantedCutoffError = unknown;
|
|
1395
|
+
export type PostApiV3DelayprofileData = {
|
|
1396
|
+
body?: DelayProfileResource;
|
|
1397
|
+
};
|
|
1398
|
+
export type PostApiV3DelayprofileResponse = (DelayProfileResource);
|
|
1399
|
+
export type PostApiV3DelayprofileError = unknown;
|
|
1400
|
+
export type GetApiV3DelayprofileResponse = (Array<DelayProfileResource>);
|
|
1401
|
+
export type GetApiV3DelayprofileError = unknown;
|
|
1402
|
+
export type DeleteApiV3DelayprofileByIdData = {
|
|
1403
|
+
path: {
|
|
1404
|
+
id: number;
|
|
1405
|
+
};
|
|
1406
|
+
};
|
|
1407
|
+
export type DeleteApiV3DelayprofileByIdResponse = (unknown);
|
|
1408
|
+
export type DeleteApiV3DelayprofileByIdError = unknown;
|
|
1409
|
+
export type PutApiV3DelayprofileByIdData = {
|
|
1410
|
+
body?: DelayProfileResource;
|
|
1411
|
+
path: {
|
|
1412
|
+
id: string;
|
|
1413
|
+
};
|
|
1414
|
+
};
|
|
1415
|
+
export type PutApiV3DelayprofileByIdResponse = (DelayProfileResource);
|
|
1416
|
+
export type PutApiV3DelayprofileByIdError = unknown;
|
|
1417
|
+
export type GetApiV3DelayprofileByIdData = {
|
|
1418
|
+
path: {
|
|
1419
|
+
id: number;
|
|
1420
|
+
};
|
|
1421
|
+
};
|
|
1422
|
+
export type GetApiV3DelayprofileByIdResponse = (DelayProfileResource);
|
|
1423
|
+
export type GetApiV3DelayprofileByIdError = unknown;
|
|
1424
|
+
export type PutApiV3DelayprofileReorderByIdData = {
|
|
1425
|
+
path: {
|
|
1426
|
+
id: number;
|
|
1427
|
+
};
|
|
1428
|
+
query?: {
|
|
1429
|
+
after?: number;
|
|
1430
|
+
};
|
|
1431
|
+
};
|
|
1432
|
+
export type PutApiV3DelayprofileReorderByIdResponse = (Array<DelayProfileResource>);
|
|
1433
|
+
export type PutApiV3DelayprofileReorderByIdError = unknown;
|
|
1434
|
+
export type GetApiV3DiskspaceResponse = (Array<DiskSpaceResource>);
|
|
1435
|
+
export type GetApiV3DiskspaceError = unknown;
|
|
1436
|
+
export type GetApiV3DownloadclientResponse = (Array<DownloadClientResource>);
|
|
1437
|
+
export type GetApiV3DownloadclientError = unknown;
|
|
1438
|
+
export type PostApiV3DownloadclientData = {
|
|
1439
|
+
body?: DownloadClientResource;
|
|
1440
|
+
query?: {
|
|
1441
|
+
forceSave?: boolean;
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
export type PostApiV3DownloadclientResponse = (DownloadClientResource);
|
|
1445
|
+
export type PostApiV3DownloadclientError = unknown;
|
|
1446
|
+
export type PutApiV3DownloadclientByIdData = {
|
|
1447
|
+
body?: DownloadClientResource;
|
|
1448
|
+
path: {
|
|
1449
|
+
id: number;
|
|
1450
|
+
};
|
|
1451
|
+
query?: {
|
|
1452
|
+
forceSave?: boolean;
|
|
1453
|
+
};
|
|
1454
|
+
};
|
|
1455
|
+
export type PutApiV3DownloadclientByIdResponse = (DownloadClientResource);
|
|
1456
|
+
export type PutApiV3DownloadclientByIdError = unknown;
|
|
1457
|
+
export type DeleteApiV3DownloadclientByIdData = {
|
|
1458
|
+
path: {
|
|
1459
|
+
id: number;
|
|
1460
|
+
};
|
|
1461
|
+
};
|
|
1462
|
+
export type DeleteApiV3DownloadclientByIdResponse = (unknown);
|
|
1463
|
+
export type DeleteApiV3DownloadclientByIdError = unknown;
|
|
1464
|
+
export type GetApiV3DownloadclientByIdData = {
|
|
1465
|
+
path: {
|
|
1466
|
+
id: number;
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
export type GetApiV3DownloadclientByIdResponse = (DownloadClientResource);
|
|
1470
|
+
export type GetApiV3DownloadclientByIdError = unknown;
|
|
1471
|
+
export type PutApiV3DownloadclientBulkData = {
|
|
1472
|
+
body?: DownloadClientBulkResource;
|
|
1473
|
+
};
|
|
1474
|
+
export type PutApiV3DownloadclientBulkResponse = (DownloadClientResource);
|
|
1475
|
+
export type PutApiV3DownloadclientBulkError = unknown;
|
|
1476
|
+
export type DeleteApiV3DownloadclientBulkData = {
|
|
1477
|
+
body?: DownloadClientBulkResource;
|
|
1478
|
+
};
|
|
1479
|
+
export type DeleteApiV3DownloadclientBulkResponse = (unknown);
|
|
1480
|
+
export type DeleteApiV3DownloadclientBulkError = unknown;
|
|
1481
|
+
export type GetApiV3DownloadclientSchemaResponse = (Array<DownloadClientResource>);
|
|
1482
|
+
export type GetApiV3DownloadclientSchemaError = unknown;
|
|
1483
|
+
export type PostApiV3DownloadclientTestData = {
|
|
1484
|
+
body?: DownloadClientResource;
|
|
1485
|
+
query?: {
|
|
1486
|
+
forceTest?: boolean;
|
|
1487
|
+
};
|
|
1488
|
+
};
|
|
1489
|
+
export type PostApiV3DownloadclientTestResponse = (unknown);
|
|
1490
|
+
export type PostApiV3DownloadclientTestError = unknown;
|
|
1491
|
+
export type PostApiV3DownloadclientTestallResponse = (unknown);
|
|
1492
|
+
export type PostApiV3DownloadclientTestallError = unknown;
|
|
1493
|
+
export type PostApiV3DownloadclientActionByNameData = {
|
|
1494
|
+
body?: DownloadClientResource;
|
|
1495
|
+
path: {
|
|
1496
|
+
name: string;
|
|
1497
|
+
};
|
|
1498
|
+
};
|
|
1499
|
+
export type PostApiV3DownloadclientActionByNameResponse = (unknown);
|
|
1500
|
+
export type PostApiV3DownloadclientActionByNameError = unknown;
|
|
1501
|
+
export type GetApiV3ConfigDownloadclientResponse = (DownloadClientConfigResource);
|
|
1502
|
+
export type GetApiV3ConfigDownloadclientError = unknown;
|
|
1503
|
+
export type PutApiV3ConfigDownloadclientByIdData = {
|
|
1504
|
+
body?: DownloadClientConfigResource;
|
|
1505
|
+
path: {
|
|
1506
|
+
id: string;
|
|
1507
|
+
};
|
|
1508
|
+
};
|
|
1509
|
+
export type PutApiV3ConfigDownloadclientByIdResponse = (DownloadClientConfigResource);
|
|
1510
|
+
export type PutApiV3ConfigDownloadclientByIdError = unknown;
|
|
1511
|
+
export type GetApiV3ConfigDownloadclientByIdData = {
|
|
1512
|
+
path: {
|
|
1513
|
+
id: number;
|
|
1514
|
+
};
|
|
1515
|
+
};
|
|
1516
|
+
export type GetApiV3ConfigDownloadclientByIdResponse = (DownloadClientConfigResource);
|
|
1517
|
+
export type GetApiV3ConfigDownloadclientByIdError = unknown;
|
|
1518
|
+
export type GetApiV3ExtrafileData = {
|
|
1519
|
+
query?: {
|
|
1520
|
+
movieId?: number;
|
|
1521
|
+
};
|
|
1522
|
+
};
|
|
1523
|
+
export type GetApiV3ExtrafileResponse = (Array<ExtraFileResource>);
|
|
1524
|
+
export type GetApiV3ExtrafileError = unknown;
|
|
1525
|
+
export type GetApiV3FilesystemData = {
|
|
1526
|
+
query?: {
|
|
1527
|
+
allowFoldersWithoutTrailingSlashes?: boolean;
|
|
1528
|
+
includeFiles?: boolean;
|
|
1529
|
+
path?: string;
|
|
1530
|
+
};
|
|
1531
|
+
};
|
|
1532
|
+
export type GetApiV3FilesystemResponse = (unknown);
|
|
1533
|
+
export type GetApiV3FilesystemError = unknown;
|
|
1534
|
+
export type GetApiV3FilesystemTypeData = {
|
|
1535
|
+
query?: {
|
|
1536
|
+
path?: string;
|
|
1537
|
+
};
|
|
1538
|
+
};
|
|
1539
|
+
export type GetApiV3FilesystemTypeResponse = (unknown);
|
|
1540
|
+
export type GetApiV3FilesystemTypeError = unknown;
|
|
1541
|
+
export type GetApiV3FilesystemMediafilesData = {
|
|
1542
|
+
query?: {
|
|
1543
|
+
path?: string;
|
|
1544
|
+
};
|
|
1545
|
+
};
|
|
1546
|
+
export type GetApiV3FilesystemMediafilesResponse = (unknown);
|
|
1547
|
+
export type GetApiV3FilesystemMediafilesError = unknown;
|
|
1548
|
+
export type GetApiV3HealthResponse = (Array<HealthResource>);
|
|
1549
|
+
export type GetApiV3HealthError = unknown;
|
|
1550
|
+
export type GetApiV3HistoryData = {
|
|
1551
|
+
query?: {
|
|
1552
|
+
downloadId?: string;
|
|
1553
|
+
eventType?: Array<(number)>;
|
|
1554
|
+
includeMovie?: boolean;
|
|
1555
|
+
languages?: Array<(number)>;
|
|
1556
|
+
movieIds?: Array<(number)>;
|
|
1557
|
+
page?: number;
|
|
1558
|
+
pageSize?: number;
|
|
1559
|
+
quality?: Array<(number)>;
|
|
1560
|
+
sortDirection?: SortDirection;
|
|
1561
|
+
sortKey?: string;
|
|
1562
|
+
};
|
|
1563
|
+
};
|
|
1564
|
+
export type GetApiV3HistoryResponse = (HistoryResourcePagingResource);
|
|
1565
|
+
export type GetApiV3HistoryError = unknown;
|
|
1566
|
+
export type GetApiV3HistorySinceData = {
|
|
1567
|
+
query?: {
|
|
1568
|
+
date?: string;
|
|
1569
|
+
eventType?: MovieHistoryEventType;
|
|
1570
|
+
includeMovie?: boolean;
|
|
1571
|
+
};
|
|
1572
|
+
};
|
|
1573
|
+
export type GetApiV3HistorySinceResponse = (Array<HistoryResource>);
|
|
1574
|
+
export type GetApiV3HistorySinceError = unknown;
|
|
1575
|
+
export type GetApiV3HistoryMovieData = {
|
|
1576
|
+
query?: {
|
|
1577
|
+
eventType?: MovieHistoryEventType;
|
|
1578
|
+
includeMovie?: boolean;
|
|
1579
|
+
movieId?: number;
|
|
1580
|
+
};
|
|
1581
|
+
};
|
|
1582
|
+
export type GetApiV3HistoryMovieResponse = (Array<HistoryResource>);
|
|
1583
|
+
export type GetApiV3HistoryMovieError = unknown;
|
|
1584
|
+
export type PostApiV3HistoryFailedByIdData = {
|
|
1585
|
+
path: {
|
|
1586
|
+
id: number;
|
|
1587
|
+
};
|
|
1588
|
+
};
|
|
1589
|
+
export type PostApiV3HistoryFailedByIdResponse = (unknown);
|
|
1590
|
+
export type PostApiV3HistoryFailedByIdError = unknown;
|
|
1591
|
+
export type GetApiV3ConfigHostResponse = (HostConfigResource);
|
|
1592
|
+
export type GetApiV3ConfigHostError = unknown;
|
|
1593
|
+
export type PutApiV3ConfigHostByIdData = {
|
|
1594
|
+
body?: HostConfigResource;
|
|
1595
|
+
path: {
|
|
1596
|
+
id: string;
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1599
|
+
export type PutApiV3ConfigHostByIdResponse = (HostConfigResource);
|
|
1600
|
+
export type PutApiV3ConfigHostByIdError = unknown;
|
|
1601
|
+
export type GetApiV3ConfigHostByIdData = {
|
|
1602
|
+
path: {
|
|
1603
|
+
id: number;
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
export type GetApiV3ConfigHostByIdResponse = (HostConfigResource);
|
|
1607
|
+
export type GetApiV3ConfigHostByIdError = unknown;
|
|
1608
|
+
export type GetApiV3ImportlistResponse = (Array<ImportListResource>);
|
|
1609
|
+
export type GetApiV3ImportlistError = unknown;
|
|
1610
|
+
export type PostApiV3ImportlistData = {
|
|
1611
|
+
body?: ImportListResource;
|
|
1612
|
+
query?: {
|
|
1613
|
+
forceSave?: boolean;
|
|
1614
|
+
};
|
|
1615
|
+
};
|
|
1616
|
+
export type PostApiV3ImportlistResponse = (ImportListResource);
|
|
1617
|
+
export type PostApiV3ImportlistError = unknown;
|
|
1618
|
+
export type PutApiV3ImportlistByIdData = {
|
|
1619
|
+
body?: ImportListResource;
|
|
1620
|
+
path: {
|
|
1621
|
+
id: number;
|
|
1622
|
+
};
|
|
1623
|
+
query?: {
|
|
1624
|
+
forceSave?: boolean;
|
|
1625
|
+
};
|
|
1626
|
+
};
|
|
1627
|
+
export type PutApiV3ImportlistByIdResponse = (ImportListResource);
|
|
1628
|
+
export type PutApiV3ImportlistByIdError = unknown;
|
|
1629
|
+
export type DeleteApiV3ImportlistByIdData = {
|
|
1630
|
+
path: {
|
|
1631
|
+
id: number;
|
|
1632
|
+
};
|
|
1633
|
+
};
|
|
1634
|
+
export type DeleteApiV3ImportlistByIdResponse = (unknown);
|
|
1635
|
+
export type DeleteApiV3ImportlistByIdError = unknown;
|
|
1636
|
+
export type GetApiV3ImportlistByIdData = {
|
|
1637
|
+
path: {
|
|
1638
|
+
id: number;
|
|
1639
|
+
};
|
|
1640
|
+
};
|
|
1641
|
+
export type GetApiV3ImportlistByIdResponse = (ImportListResource);
|
|
1642
|
+
export type GetApiV3ImportlistByIdError = unknown;
|
|
1643
|
+
export type PutApiV3ImportlistBulkData = {
|
|
1644
|
+
body?: ImportListBulkResource;
|
|
1645
|
+
};
|
|
1646
|
+
export type PutApiV3ImportlistBulkResponse = (ImportListResource);
|
|
1647
|
+
export type PutApiV3ImportlistBulkError = unknown;
|
|
1648
|
+
export type DeleteApiV3ImportlistBulkData = {
|
|
1649
|
+
body?: ImportListBulkResource;
|
|
1650
|
+
};
|
|
1651
|
+
export type DeleteApiV3ImportlistBulkResponse = (unknown);
|
|
1652
|
+
export type DeleteApiV3ImportlistBulkError = unknown;
|
|
1653
|
+
export type GetApiV3ImportlistSchemaResponse = (Array<ImportListResource>);
|
|
1654
|
+
export type GetApiV3ImportlistSchemaError = unknown;
|
|
1655
|
+
export type PostApiV3ImportlistTestData = {
|
|
1656
|
+
body?: ImportListResource;
|
|
1657
|
+
query?: {
|
|
1658
|
+
forceTest?: boolean;
|
|
1659
|
+
};
|
|
1660
|
+
};
|
|
1661
|
+
export type PostApiV3ImportlistTestResponse = (unknown);
|
|
1662
|
+
export type PostApiV3ImportlistTestError = unknown;
|
|
1663
|
+
export type PostApiV3ImportlistTestallResponse = (unknown);
|
|
1664
|
+
export type PostApiV3ImportlistTestallError = unknown;
|
|
1665
|
+
export type PostApiV3ImportlistActionByNameData = {
|
|
1666
|
+
body?: ImportListResource;
|
|
1667
|
+
path: {
|
|
1668
|
+
name: string;
|
|
1669
|
+
};
|
|
1670
|
+
};
|
|
1671
|
+
export type PostApiV3ImportlistActionByNameResponse = (unknown);
|
|
1672
|
+
export type PostApiV3ImportlistActionByNameError = unknown;
|
|
1673
|
+
export type GetApiV3ConfigImportlistResponse = (ImportListConfigResource);
|
|
1674
|
+
export type GetApiV3ConfigImportlistError = unknown;
|
|
1675
|
+
export type PutApiV3ConfigImportlistByIdData = {
|
|
1676
|
+
body?: ImportListConfigResource;
|
|
1677
|
+
path: {
|
|
1678
|
+
id: string;
|
|
1679
|
+
};
|
|
1680
|
+
};
|
|
1681
|
+
export type PutApiV3ConfigImportlistByIdResponse = (ImportListConfigResource);
|
|
1682
|
+
export type PutApiV3ConfigImportlistByIdError = unknown;
|
|
1683
|
+
export type GetApiV3ConfigImportlistByIdData = {
|
|
1684
|
+
path: {
|
|
1685
|
+
id: number;
|
|
1686
|
+
};
|
|
1687
|
+
};
|
|
1688
|
+
export type GetApiV3ConfigImportlistByIdResponse = (ImportListConfigResource);
|
|
1689
|
+
export type GetApiV3ConfigImportlistByIdError = unknown;
|
|
1690
|
+
export type GetApiV3ExclusionsResponse = (Array<ImportListExclusionResource>);
|
|
1691
|
+
export type GetApiV3ExclusionsError = unknown;
|
|
1692
|
+
export type PostApiV3ExclusionsData = {
|
|
1693
|
+
body?: ImportListExclusionResource;
|
|
1694
|
+
};
|
|
1695
|
+
export type PostApiV3ExclusionsResponse = (ImportListExclusionResource);
|
|
1696
|
+
export type PostApiV3ExclusionsError = unknown;
|
|
1697
|
+
export type GetApiV3ExclusionsPagedData = {
|
|
1698
|
+
query?: {
|
|
1699
|
+
page?: number;
|
|
1700
|
+
pageSize?: number;
|
|
1701
|
+
sortDirection?: SortDirection;
|
|
1702
|
+
sortKey?: string;
|
|
1703
|
+
};
|
|
1704
|
+
};
|
|
1705
|
+
export type GetApiV3ExclusionsPagedResponse = (ImportListExclusionResourcePagingResource);
|
|
1706
|
+
export type GetApiV3ExclusionsPagedError = unknown;
|
|
1707
|
+
export type PutApiV3ExclusionsByIdData = {
|
|
1708
|
+
body?: ImportListExclusionResource;
|
|
1709
|
+
path: {
|
|
1710
|
+
id: string;
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
export type PutApiV3ExclusionsByIdResponse = (ImportListExclusionResource);
|
|
1714
|
+
export type PutApiV3ExclusionsByIdError = unknown;
|
|
1715
|
+
export type DeleteApiV3ExclusionsByIdData = {
|
|
1716
|
+
path: {
|
|
1717
|
+
id: number;
|
|
1718
|
+
};
|
|
1719
|
+
};
|
|
1720
|
+
export type DeleteApiV3ExclusionsByIdResponse = (unknown);
|
|
1721
|
+
export type DeleteApiV3ExclusionsByIdError = unknown;
|
|
1722
|
+
export type GetApiV3ExclusionsByIdData = {
|
|
1723
|
+
path: {
|
|
1724
|
+
id: number;
|
|
1725
|
+
};
|
|
1726
|
+
};
|
|
1727
|
+
export type GetApiV3ExclusionsByIdResponse = (ImportListExclusionResource);
|
|
1728
|
+
export type GetApiV3ExclusionsByIdError = unknown;
|
|
1729
|
+
export type PostApiV3ExclusionsBulkData = {
|
|
1730
|
+
body?: Array<ImportListExclusionResource>;
|
|
1731
|
+
};
|
|
1732
|
+
export type PostApiV3ExclusionsBulkResponse = (unknown);
|
|
1733
|
+
export type PostApiV3ExclusionsBulkError = unknown;
|
|
1734
|
+
export type DeleteApiV3ExclusionsBulkData = {
|
|
1735
|
+
body?: ImportListExclusionBulkResource;
|
|
1736
|
+
};
|
|
1737
|
+
export type DeleteApiV3ExclusionsBulkResponse = (unknown);
|
|
1738
|
+
export type DeleteApiV3ExclusionsBulkError = unknown;
|
|
1739
|
+
export type GetApiV3ImportlistMovieData = {
|
|
1740
|
+
query?: {
|
|
1741
|
+
includePopular?: boolean;
|
|
1742
|
+
includeRecommendations?: boolean;
|
|
1743
|
+
includeTrending?: boolean;
|
|
1744
|
+
};
|
|
1745
|
+
};
|
|
1746
|
+
export type GetApiV3ImportlistMovieResponse = (unknown);
|
|
1747
|
+
export type GetApiV3ImportlistMovieError = unknown;
|
|
1748
|
+
export type PostApiV3ImportlistMovieData = {
|
|
1749
|
+
body?: Array<MovieResource>;
|
|
1750
|
+
};
|
|
1751
|
+
export type PostApiV3ImportlistMovieResponse = (unknown);
|
|
1752
|
+
export type PostApiV3ImportlistMovieError = unknown;
|
|
1753
|
+
export type GetApiV3IndexerResponse = (Array<IndexerResource>);
|
|
1754
|
+
export type GetApiV3IndexerError = unknown;
|
|
1755
|
+
export type PostApiV3IndexerData = {
|
|
1756
|
+
body?: IndexerResource;
|
|
1757
|
+
query?: {
|
|
1758
|
+
forceSave?: boolean;
|
|
1759
|
+
};
|
|
1760
|
+
};
|
|
1761
|
+
export type PostApiV3IndexerResponse = (IndexerResource);
|
|
1762
|
+
export type PostApiV3IndexerError = unknown;
|
|
1763
|
+
export type PutApiV3IndexerByIdData = {
|
|
1764
|
+
body?: IndexerResource;
|
|
1765
|
+
path: {
|
|
1766
|
+
id: number;
|
|
1767
|
+
};
|
|
1768
|
+
query?: {
|
|
1769
|
+
forceSave?: boolean;
|
|
1770
|
+
};
|
|
1771
|
+
};
|
|
1772
|
+
export type PutApiV3IndexerByIdResponse = (IndexerResource);
|
|
1773
|
+
export type PutApiV3IndexerByIdError = unknown;
|
|
1774
|
+
export type DeleteApiV3IndexerByIdData = {
|
|
1775
|
+
path: {
|
|
1776
|
+
id: number;
|
|
1777
|
+
};
|
|
1778
|
+
};
|
|
1779
|
+
export type DeleteApiV3IndexerByIdResponse = (unknown);
|
|
1780
|
+
export type DeleteApiV3IndexerByIdError = unknown;
|
|
1781
|
+
export type GetApiV3IndexerByIdData = {
|
|
1782
|
+
path: {
|
|
1783
|
+
id: number;
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1786
|
+
export type GetApiV3IndexerByIdResponse = (IndexerResource);
|
|
1787
|
+
export type GetApiV3IndexerByIdError = unknown;
|
|
1788
|
+
export type PutApiV3IndexerBulkData = {
|
|
1789
|
+
body?: IndexerBulkResource;
|
|
1790
|
+
};
|
|
1791
|
+
export type PutApiV3IndexerBulkResponse = (IndexerResource);
|
|
1792
|
+
export type PutApiV3IndexerBulkError = unknown;
|
|
1793
|
+
export type DeleteApiV3IndexerBulkData = {
|
|
1794
|
+
body?: IndexerBulkResource;
|
|
1795
|
+
};
|
|
1796
|
+
export type DeleteApiV3IndexerBulkResponse = (unknown);
|
|
1797
|
+
export type DeleteApiV3IndexerBulkError = unknown;
|
|
1798
|
+
export type GetApiV3IndexerSchemaResponse = (Array<IndexerResource>);
|
|
1799
|
+
export type GetApiV3IndexerSchemaError = unknown;
|
|
1800
|
+
export type PostApiV3IndexerTestData = {
|
|
1801
|
+
body?: IndexerResource;
|
|
1802
|
+
query?: {
|
|
1803
|
+
forceTest?: boolean;
|
|
1804
|
+
};
|
|
1805
|
+
};
|
|
1806
|
+
export type PostApiV3IndexerTestResponse = (unknown);
|
|
1807
|
+
export type PostApiV3IndexerTestError = unknown;
|
|
1808
|
+
export type PostApiV3IndexerTestallResponse = (unknown);
|
|
1809
|
+
export type PostApiV3IndexerTestallError = unknown;
|
|
1810
|
+
export type PostApiV3IndexerActionByNameData = {
|
|
1811
|
+
body?: IndexerResource;
|
|
1812
|
+
path: {
|
|
1813
|
+
name: string;
|
|
1814
|
+
};
|
|
1815
|
+
};
|
|
1816
|
+
export type PostApiV3IndexerActionByNameResponse = (unknown);
|
|
1817
|
+
export type PostApiV3IndexerActionByNameError = unknown;
|
|
1818
|
+
export type GetApiV3ConfigIndexerResponse = (IndexerConfigResource);
|
|
1819
|
+
export type GetApiV3ConfigIndexerError = unknown;
|
|
1820
|
+
export type PutApiV3ConfigIndexerByIdData = {
|
|
1821
|
+
body?: IndexerConfigResource;
|
|
1822
|
+
path: {
|
|
1823
|
+
id: string;
|
|
1824
|
+
};
|
|
1825
|
+
};
|
|
1826
|
+
export type PutApiV3ConfigIndexerByIdResponse = (IndexerConfigResource);
|
|
1827
|
+
export type PutApiV3ConfigIndexerByIdError = unknown;
|
|
1828
|
+
export type GetApiV3ConfigIndexerByIdData = {
|
|
1829
|
+
path: {
|
|
1830
|
+
id: number;
|
|
1831
|
+
};
|
|
1832
|
+
};
|
|
1833
|
+
export type GetApiV3ConfigIndexerByIdResponse = (IndexerConfigResource);
|
|
1834
|
+
export type GetApiV3ConfigIndexerByIdError = unknown;
|
|
1835
|
+
export type GetApiV3IndexerflagResponse = (Array<IndexerFlagResource>);
|
|
1836
|
+
export type GetApiV3IndexerflagError = unknown;
|
|
1837
|
+
export type GetApiV3LanguageResponse = (Array<LanguageResource>);
|
|
1838
|
+
export type GetApiV3LanguageError = unknown;
|
|
1839
|
+
export type GetApiV3LanguageByIdData = {
|
|
1840
|
+
path: {
|
|
1841
|
+
id: number;
|
|
1842
|
+
};
|
|
1843
|
+
};
|
|
1844
|
+
export type GetApiV3LanguageByIdResponse = (LanguageResource);
|
|
1845
|
+
export type GetApiV3LanguageByIdError = unknown;
|
|
1846
|
+
export type GetApiV3LocalizationResponse = (string);
|
|
1847
|
+
export type GetApiV3LocalizationError = unknown;
|
|
1848
|
+
export type GetApiV3LocalizationLanguageResponse = (LocalizationLanguageResource);
|
|
1849
|
+
export type GetApiV3LocalizationLanguageError = unknown;
|
|
1850
|
+
export type GetApiV3LogData = {
|
|
1851
|
+
query?: {
|
|
1852
|
+
level?: string;
|
|
1853
|
+
page?: number;
|
|
1854
|
+
pageSize?: number;
|
|
1855
|
+
sortDirection?: SortDirection;
|
|
1856
|
+
sortKey?: string;
|
|
1857
|
+
};
|
|
1858
|
+
};
|
|
1859
|
+
export type GetApiV3LogResponse = (LogResourcePagingResource);
|
|
1860
|
+
export type GetApiV3LogError = unknown;
|
|
1861
|
+
export type GetApiV3LogFileResponse = (Array<LogFileResource>);
|
|
1862
|
+
export type GetApiV3LogFileError = unknown;
|
|
1863
|
+
export type GetApiV3LogFileByFilenameData = {
|
|
1864
|
+
path: {
|
|
1865
|
+
filename: string;
|
|
1866
|
+
};
|
|
1867
|
+
};
|
|
1868
|
+
export type GetApiV3LogFileByFilenameResponse = (unknown);
|
|
1869
|
+
export type GetApiV3LogFileByFilenameError = unknown;
|
|
1870
|
+
export type GetApiV3ManualimportData = {
|
|
1871
|
+
query?: {
|
|
1872
|
+
downloadId?: string;
|
|
1873
|
+
filterExistingFiles?: boolean;
|
|
1874
|
+
folder?: string;
|
|
1875
|
+
movieId?: number;
|
|
1876
|
+
};
|
|
1877
|
+
};
|
|
1878
|
+
export type GetApiV3ManualimportResponse = (Array<ManualImportResource>);
|
|
1879
|
+
export type GetApiV3ManualimportError = unknown;
|
|
1880
|
+
export type PostApiV3ManualimportData = {
|
|
1881
|
+
body?: Array<ManualImportReprocessResource>;
|
|
1882
|
+
};
|
|
1883
|
+
export type PostApiV3ManualimportResponse = (unknown);
|
|
1884
|
+
export type PostApiV3ManualimportError = unknown;
|
|
1885
|
+
export type GetApiV3MediacoverByMovieIdByFilenameData = {
|
|
1886
|
+
path: {
|
|
1887
|
+
filename: string;
|
|
1888
|
+
movieId: number;
|
|
1889
|
+
};
|
|
1890
|
+
};
|
|
1891
|
+
export type GetApiV3MediacoverByMovieIdByFilenameResponse = (unknown);
|
|
1892
|
+
export type GetApiV3MediacoverByMovieIdByFilenameError = unknown;
|
|
1893
|
+
export type GetApiV3ConfigMediamanagementResponse = (MediaManagementConfigResource);
|
|
1894
|
+
export type GetApiV3ConfigMediamanagementError = unknown;
|
|
1895
|
+
export type PutApiV3ConfigMediamanagementByIdData = {
|
|
1896
|
+
body?: MediaManagementConfigResource;
|
|
1897
|
+
path: {
|
|
1898
|
+
id: string;
|
|
1899
|
+
};
|
|
1900
|
+
};
|
|
1901
|
+
export type PutApiV3ConfigMediamanagementByIdResponse = (MediaManagementConfigResource);
|
|
1902
|
+
export type PutApiV3ConfigMediamanagementByIdError = unknown;
|
|
1903
|
+
export type GetApiV3ConfigMediamanagementByIdData = {
|
|
1904
|
+
path: {
|
|
1905
|
+
id: number;
|
|
1906
|
+
};
|
|
1907
|
+
};
|
|
1908
|
+
export type GetApiV3ConfigMediamanagementByIdResponse = (MediaManagementConfigResource);
|
|
1909
|
+
export type GetApiV3ConfigMediamanagementByIdError = unknown;
|
|
1910
|
+
export type GetApiV3MetadataResponse = (Array<MetadataResource>);
|
|
1911
|
+
export type GetApiV3MetadataError = unknown;
|
|
1912
|
+
export type PostApiV3MetadataData = {
|
|
1913
|
+
body?: MetadataResource;
|
|
1914
|
+
query?: {
|
|
1915
|
+
forceSave?: boolean;
|
|
1916
|
+
};
|
|
1917
|
+
};
|
|
1918
|
+
export type PostApiV3MetadataResponse = (MetadataResource);
|
|
1919
|
+
export type PostApiV3MetadataError = unknown;
|
|
1920
|
+
export type PutApiV3MetadataByIdData = {
|
|
1921
|
+
body?: MetadataResource;
|
|
1922
|
+
path: {
|
|
1923
|
+
id: number;
|
|
1924
|
+
};
|
|
1925
|
+
query?: {
|
|
1926
|
+
forceSave?: boolean;
|
|
1927
|
+
};
|
|
1928
|
+
};
|
|
1929
|
+
export type PutApiV3MetadataByIdResponse = (MetadataResource);
|
|
1930
|
+
export type PutApiV3MetadataByIdError = unknown;
|
|
1931
|
+
export type DeleteApiV3MetadataByIdData = {
|
|
1932
|
+
path: {
|
|
1933
|
+
id: number;
|
|
1934
|
+
};
|
|
1935
|
+
};
|
|
1936
|
+
export type DeleteApiV3MetadataByIdResponse = (unknown);
|
|
1937
|
+
export type DeleteApiV3MetadataByIdError = unknown;
|
|
1938
|
+
export type GetApiV3MetadataByIdData = {
|
|
1939
|
+
path: {
|
|
1940
|
+
id: number;
|
|
1941
|
+
};
|
|
1942
|
+
};
|
|
1943
|
+
export type GetApiV3MetadataByIdResponse = (MetadataResource);
|
|
1944
|
+
export type GetApiV3MetadataByIdError = unknown;
|
|
1945
|
+
export type GetApiV3MetadataSchemaResponse = (Array<MetadataResource>);
|
|
1946
|
+
export type GetApiV3MetadataSchemaError = unknown;
|
|
1947
|
+
export type PostApiV3MetadataTestData = {
|
|
1948
|
+
body?: MetadataResource;
|
|
1949
|
+
query?: {
|
|
1950
|
+
forceTest?: boolean;
|
|
1951
|
+
};
|
|
1952
|
+
};
|
|
1953
|
+
export type PostApiV3MetadataTestResponse = (unknown);
|
|
1954
|
+
export type PostApiV3MetadataTestError = unknown;
|
|
1955
|
+
export type PostApiV3MetadataTestallResponse = (unknown);
|
|
1956
|
+
export type PostApiV3MetadataTestallError = unknown;
|
|
1957
|
+
export type PostApiV3MetadataActionByNameData = {
|
|
1958
|
+
body?: MetadataResource;
|
|
1959
|
+
path: {
|
|
1960
|
+
name: string;
|
|
1961
|
+
};
|
|
1962
|
+
};
|
|
1963
|
+
export type PostApiV3MetadataActionByNameResponse = (unknown);
|
|
1964
|
+
export type PostApiV3MetadataActionByNameError = unknown;
|
|
1965
|
+
export type GetApiV3ConfigMetadataResponse = (MetadataConfigResource);
|
|
1966
|
+
export type GetApiV3ConfigMetadataError = unknown;
|
|
1967
|
+
export type PutApiV3ConfigMetadataByIdData = {
|
|
1968
|
+
body?: MetadataConfigResource;
|
|
1969
|
+
path: {
|
|
1970
|
+
id: string;
|
|
1971
|
+
};
|
|
1972
|
+
};
|
|
1973
|
+
export type PutApiV3ConfigMetadataByIdResponse = (MetadataConfigResource);
|
|
1974
|
+
export type PutApiV3ConfigMetadataByIdError = unknown;
|
|
1975
|
+
export type GetApiV3ConfigMetadataByIdData = {
|
|
1976
|
+
path: {
|
|
1977
|
+
id: number;
|
|
1978
|
+
};
|
|
1979
|
+
};
|
|
1980
|
+
export type GetApiV3ConfigMetadataByIdResponse = (MetadataConfigResource);
|
|
1981
|
+
export type GetApiV3ConfigMetadataByIdError = unknown;
|
|
1982
|
+
export type GetApiV3WantedMissingData = {
|
|
1983
|
+
query?: {
|
|
1984
|
+
monitored?: boolean;
|
|
1985
|
+
page?: number;
|
|
1986
|
+
pageSize?: number;
|
|
1987
|
+
sortDirection?: SortDirection;
|
|
1988
|
+
sortKey?: string;
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
export type GetApiV3WantedMissingResponse = (MovieResourcePagingResource);
|
|
1992
|
+
export type GetApiV3WantedMissingError = unknown;
|
|
1993
|
+
export type GetApiV3MovieData = {
|
|
1994
|
+
query?: {
|
|
1995
|
+
excludeLocalCovers?: boolean;
|
|
1996
|
+
languageId?: number;
|
|
1997
|
+
tmdbId?: number;
|
|
1998
|
+
};
|
|
1999
|
+
};
|
|
2000
|
+
export type GetApiV3MovieResponse = (Array<MovieResource>);
|
|
2001
|
+
export type GetApiV3MovieError = unknown;
|
|
2002
|
+
export type PostApiV3MovieData = {
|
|
2003
|
+
body?: MovieResource;
|
|
2004
|
+
};
|
|
2005
|
+
export type PostApiV3MovieResponse = (MovieResource);
|
|
2006
|
+
export type PostApiV3MovieError = unknown;
|
|
2007
|
+
export type PutApiV3MovieByIdData = {
|
|
2008
|
+
body?: MovieResource;
|
|
2009
|
+
path: {
|
|
2010
|
+
id: string;
|
|
2011
|
+
};
|
|
2012
|
+
query?: {
|
|
2013
|
+
moveFiles?: boolean;
|
|
2014
|
+
};
|
|
2015
|
+
};
|
|
2016
|
+
export type PutApiV3MovieByIdResponse = (MovieResource);
|
|
2017
|
+
export type PutApiV3MovieByIdError = unknown;
|
|
2018
|
+
export type DeleteApiV3MovieByIdData = {
|
|
2019
|
+
path: {
|
|
2020
|
+
id: number;
|
|
2021
|
+
};
|
|
2022
|
+
query?: {
|
|
2023
|
+
addImportExclusion?: boolean;
|
|
2024
|
+
deleteFiles?: boolean;
|
|
2025
|
+
};
|
|
2026
|
+
};
|
|
2027
|
+
export type DeleteApiV3MovieByIdResponse = (unknown);
|
|
2028
|
+
export type DeleteApiV3MovieByIdError = unknown;
|
|
2029
|
+
export type GetApiV3MovieByIdData = {
|
|
2030
|
+
path: {
|
|
2031
|
+
id: number;
|
|
2032
|
+
};
|
|
2033
|
+
};
|
|
2034
|
+
export type GetApiV3MovieByIdResponse = (MovieResource);
|
|
2035
|
+
export type GetApiV3MovieByIdError = unknown;
|
|
2036
|
+
export type PutApiV3MovieEditorData = {
|
|
2037
|
+
body?: MovieEditorResource;
|
|
2038
|
+
};
|
|
2039
|
+
export type PutApiV3MovieEditorResponse = (unknown);
|
|
2040
|
+
export type PutApiV3MovieEditorError = unknown;
|
|
2041
|
+
export type DeleteApiV3MovieEditorData = {
|
|
2042
|
+
body?: MovieEditorResource;
|
|
2043
|
+
};
|
|
2044
|
+
export type DeleteApiV3MovieEditorResponse = (unknown);
|
|
2045
|
+
export type DeleteApiV3MovieEditorError = unknown;
|
|
2046
|
+
export type GetApiV3MoviefileData = {
|
|
2047
|
+
query?: {
|
|
2048
|
+
movieFileIds?: Array<(number)>;
|
|
2049
|
+
movieId?: Array<(number)>;
|
|
2050
|
+
};
|
|
2051
|
+
};
|
|
2052
|
+
export type GetApiV3MoviefileResponse = (Array<MovieFileResource>);
|
|
2053
|
+
export type GetApiV3MoviefileError = unknown;
|
|
2054
|
+
export type PutApiV3MoviefileByIdData = {
|
|
2055
|
+
body?: MovieFileResource;
|
|
2056
|
+
path: {
|
|
2057
|
+
id: string;
|
|
2058
|
+
};
|
|
2059
|
+
};
|
|
2060
|
+
export type PutApiV3MoviefileByIdResponse = (MovieFileResource);
|
|
2061
|
+
export type PutApiV3MoviefileByIdError = unknown;
|
|
2062
|
+
export type DeleteApiV3MoviefileByIdData = {
|
|
2063
|
+
path: {
|
|
2064
|
+
id: number;
|
|
2065
|
+
};
|
|
2066
|
+
};
|
|
2067
|
+
export type DeleteApiV3MoviefileByIdResponse = (unknown);
|
|
2068
|
+
export type DeleteApiV3MoviefileByIdError = unknown;
|
|
2069
|
+
export type GetApiV3MoviefileByIdData = {
|
|
2070
|
+
path: {
|
|
2071
|
+
id: number;
|
|
2072
|
+
};
|
|
2073
|
+
};
|
|
2074
|
+
export type GetApiV3MoviefileByIdResponse = (MovieFileResource);
|
|
2075
|
+
export type GetApiV3MoviefileByIdError = unknown;
|
|
2076
|
+
export type PutApiV3MoviefileEditorData = {
|
|
2077
|
+
body?: MovieFileListResource;
|
|
2078
|
+
};
|
|
2079
|
+
export type PutApiV3MoviefileEditorResponse = (unknown);
|
|
2080
|
+
export type PutApiV3MoviefileEditorError = unknown;
|
|
2081
|
+
export type DeleteApiV3MoviefileBulkData = {
|
|
2082
|
+
body?: MovieFileListResource;
|
|
2083
|
+
};
|
|
2084
|
+
export type DeleteApiV3MoviefileBulkResponse = (unknown);
|
|
2085
|
+
export type DeleteApiV3MoviefileBulkError = unknown;
|
|
2086
|
+
export type PutApiV3MoviefileBulkData = {
|
|
2087
|
+
body?: Array<MovieFileResource>;
|
|
2088
|
+
};
|
|
2089
|
+
export type PutApiV3MoviefileBulkResponse = (unknown);
|
|
2090
|
+
export type PutApiV3MoviefileBulkError = unknown;
|
|
2091
|
+
export type GetApiV3MovieByIdFolderData = {
|
|
2092
|
+
path: {
|
|
2093
|
+
id: number;
|
|
2094
|
+
};
|
|
2095
|
+
};
|
|
2096
|
+
export type GetApiV3MovieByIdFolderResponse = (unknown);
|
|
2097
|
+
export type GetApiV3MovieByIdFolderError = unknown;
|
|
2098
|
+
export type PostApiV3MovieImportData = {
|
|
2099
|
+
body?: Array<MovieResource>;
|
|
2100
|
+
};
|
|
2101
|
+
export type PostApiV3MovieImportResponse = (Array<MovieResource>);
|
|
2102
|
+
export type PostApiV3MovieImportError = unknown;
|
|
2103
|
+
export type GetApiV3MovieLookupTmdbData = {
|
|
2104
|
+
query?: {
|
|
2105
|
+
tmdbId?: number;
|
|
2106
|
+
};
|
|
2107
|
+
};
|
|
2108
|
+
export type GetApiV3MovieLookupTmdbResponse = (MovieResource);
|
|
2109
|
+
export type GetApiV3MovieLookupTmdbError = unknown;
|
|
2110
|
+
export type GetApiV3MovieLookupImdbData = {
|
|
2111
|
+
query?: {
|
|
2112
|
+
imdbId?: string;
|
|
2113
|
+
};
|
|
2114
|
+
};
|
|
2115
|
+
export type GetApiV3MovieLookupImdbResponse = (MovieResource);
|
|
2116
|
+
export type GetApiV3MovieLookupImdbError = unknown;
|
|
2117
|
+
export type GetApiV3MovieLookupData = {
|
|
2118
|
+
query?: {
|
|
2119
|
+
term?: string;
|
|
2120
|
+
};
|
|
2121
|
+
};
|
|
2122
|
+
export type GetApiV3MovieLookupResponse = (Array<MovieResource>);
|
|
2123
|
+
export type GetApiV3MovieLookupError = unknown;
|
|
2124
|
+
export type GetApiV3ConfigNamingResponse = (NamingConfigResource);
|
|
2125
|
+
export type GetApiV3ConfigNamingError = unknown;
|
|
2126
|
+
export type PutApiV3ConfigNamingByIdData = {
|
|
2127
|
+
body?: NamingConfigResource;
|
|
2128
|
+
path: {
|
|
2129
|
+
id: string;
|
|
2130
|
+
};
|
|
2131
|
+
};
|
|
2132
|
+
export type PutApiV3ConfigNamingByIdResponse = (NamingConfigResource);
|
|
2133
|
+
export type PutApiV3ConfigNamingByIdError = unknown;
|
|
2134
|
+
export type GetApiV3ConfigNamingByIdData = {
|
|
2135
|
+
path: {
|
|
2136
|
+
id: number;
|
|
2137
|
+
};
|
|
2138
|
+
};
|
|
2139
|
+
export type GetApiV3ConfigNamingByIdResponse = (NamingConfigResource);
|
|
2140
|
+
export type GetApiV3ConfigNamingByIdError = unknown;
|
|
2141
|
+
export type GetApiV3ConfigNamingExamplesData = {
|
|
2142
|
+
query?: {
|
|
2143
|
+
colonReplacementFormat?: ColonReplacementFormat;
|
|
2144
|
+
id?: number;
|
|
2145
|
+
movieFolderFormat?: string;
|
|
2146
|
+
renameMovies?: boolean;
|
|
2147
|
+
replaceIllegalCharacters?: boolean;
|
|
2148
|
+
resourceName?: string;
|
|
2149
|
+
standardMovieFormat?: string;
|
|
2150
|
+
};
|
|
2151
|
+
};
|
|
2152
|
+
export type GetApiV3ConfigNamingExamplesResponse = (unknown);
|
|
2153
|
+
export type GetApiV3ConfigNamingExamplesError = unknown;
|
|
2154
|
+
export type GetApiV3NotificationResponse = (Array<NotificationResource>);
|
|
2155
|
+
export type GetApiV3NotificationError = unknown;
|
|
2156
|
+
export type PostApiV3NotificationData = {
|
|
2157
|
+
body?: NotificationResource;
|
|
2158
|
+
query?: {
|
|
2159
|
+
forceSave?: boolean;
|
|
2160
|
+
};
|
|
2161
|
+
};
|
|
2162
|
+
export type PostApiV3NotificationResponse = (NotificationResource);
|
|
2163
|
+
export type PostApiV3NotificationError = unknown;
|
|
2164
|
+
export type PutApiV3NotificationByIdData = {
|
|
2165
|
+
body?: NotificationResource;
|
|
2166
|
+
path: {
|
|
2167
|
+
id: number;
|
|
2168
|
+
};
|
|
2169
|
+
query?: {
|
|
2170
|
+
forceSave?: boolean;
|
|
2171
|
+
};
|
|
2172
|
+
};
|
|
2173
|
+
export type PutApiV3NotificationByIdResponse = (NotificationResource);
|
|
2174
|
+
export type PutApiV3NotificationByIdError = unknown;
|
|
2175
|
+
export type DeleteApiV3NotificationByIdData = {
|
|
2176
|
+
path: {
|
|
2177
|
+
id: number;
|
|
2178
|
+
};
|
|
2179
|
+
};
|
|
2180
|
+
export type DeleteApiV3NotificationByIdResponse = (unknown);
|
|
2181
|
+
export type DeleteApiV3NotificationByIdError = unknown;
|
|
2182
|
+
export type GetApiV3NotificationByIdData = {
|
|
2183
|
+
path: {
|
|
2184
|
+
id: number;
|
|
2185
|
+
};
|
|
2186
|
+
};
|
|
2187
|
+
export type GetApiV3NotificationByIdResponse = (NotificationResource);
|
|
2188
|
+
export type GetApiV3NotificationByIdError = unknown;
|
|
2189
|
+
export type GetApiV3NotificationSchemaResponse = (Array<NotificationResource>);
|
|
2190
|
+
export type GetApiV3NotificationSchemaError = unknown;
|
|
2191
|
+
export type PostApiV3NotificationTestData = {
|
|
2192
|
+
body?: NotificationResource;
|
|
2193
|
+
query?: {
|
|
2194
|
+
forceTest?: boolean;
|
|
2195
|
+
};
|
|
2196
|
+
};
|
|
2197
|
+
export type PostApiV3NotificationTestResponse = (unknown);
|
|
2198
|
+
export type PostApiV3NotificationTestError = unknown;
|
|
2199
|
+
export type PostApiV3NotificationTestallResponse = (unknown);
|
|
2200
|
+
export type PostApiV3NotificationTestallError = unknown;
|
|
2201
|
+
export type PostApiV3NotificationActionByNameData = {
|
|
2202
|
+
body?: NotificationResource;
|
|
2203
|
+
path: {
|
|
2204
|
+
name: string;
|
|
2205
|
+
};
|
|
2206
|
+
};
|
|
2207
|
+
export type PostApiV3NotificationActionByNameResponse = (unknown);
|
|
2208
|
+
export type PostApiV3NotificationActionByNameError = unknown;
|
|
2209
|
+
export type GetApiV3ParseData = {
|
|
2210
|
+
query?: {
|
|
2211
|
+
title?: string;
|
|
2212
|
+
};
|
|
2213
|
+
};
|
|
2214
|
+
export type GetApiV3ParseResponse = (ParseResource);
|
|
2215
|
+
export type GetApiV3ParseError = unknown;
|
|
2216
|
+
export type GetPingResponse = (PingResource);
|
|
2217
|
+
export type GetPingError = unknown;
|
|
2218
|
+
export type HeadPingResponse = (PingResource);
|
|
2219
|
+
export type HeadPingError = unknown;
|
|
2220
|
+
export type PutApiV3QualitydefinitionByIdData = {
|
|
2221
|
+
body?: QualityDefinitionResource;
|
|
2222
|
+
path: {
|
|
2223
|
+
id: string;
|
|
2224
|
+
};
|
|
2225
|
+
};
|
|
2226
|
+
export type PutApiV3QualitydefinitionByIdResponse = (QualityDefinitionResource);
|
|
2227
|
+
export type PutApiV3QualitydefinitionByIdError = unknown;
|
|
2228
|
+
export type GetApiV3QualitydefinitionByIdData = {
|
|
2229
|
+
path: {
|
|
2230
|
+
id: number;
|
|
2231
|
+
};
|
|
2232
|
+
};
|
|
2233
|
+
export type GetApiV3QualitydefinitionByIdResponse = (QualityDefinitionResource);
|
|
2234
|
+
export type GetApiV3QualitydefinitionByIdError = unknown;
|
|
2235
|
+
export type GetApiV3QualitydefinitionResponse = (Array<QualityDefinitionResource>);
|
|
2236
|
+
export type GetApiV3QualitydefinitionError = unknown;
|
|
2237
|
+
export type PutApiV3QualitydefinitionUpdateData = {
|
|
2238
|
+
body?: Array<QualityDefinitionResource>;
|
|
2239
|
+
};
|
|
2240
|
+
export type PutApiV3QualitydefinitionUpdateResponse = (unknown);
|
|
2241
|
+
export type PutApiV3QualitydefinitionUpdateError = unknown;
|
|
2242
|
+
export type GetApiV3QualitydefinitionLimitsResponse = (QualityDefinitionLimitsResource);
|
|
2243
|
+
export type GetApiV3QualitydefinitionLimitsError = unknown;
|
|
2244
|
+
export type PostApiV3QualityprofileData = {
|
|
2245
|
+
body?: QualityProfileResource;
|
|
2246
|
+
};
|
|
2247
|
+
export type PostApiV3QualityprofileResponse = (QualityProfileResource);
|
|
2248
|
+
export type PostApiV3QualityprofileError = unknown;
|
|
2249
|
+
export type GetApiV3QualityprofileResponse = (Array<QualityProfileResource>);
|
|
2250
|
+
export type GetApiV3QualityprofileError = unknown;
|
|
2251
|
+
export type DeleteApiV3QualityprofileByIdData = {
|
|
2252
|
+
path: {
|
|
2253
|
+
id: number;
|
|
2254
|
+
};
|
|
2255
|
+
};
|
|
2256
|
+
export type DeleteApiV3QualityprofileByIdResponse = (unknown);
|
|
2257
|
+
export type DeleteApiV3QualityprofileByIdError = unknown;
|
|
2258
|
+
export type PutApiV3QualityprofileByIdData = {
|
|
2259
|
+
body?: QualityProfileResource;
|
|
2260
|
+
path: {
|
|
2261
|
+
id: string;
|
|
2262
|
+
};
|
|
2263
|
+
};
|
|
2264
|
+
export type PutApiV3QualityprofileByIdResponse = (QualityProfileResource);
|
|
2265
|
+
export type PutApiV3QualityprofileByIdError = unknown;
|
|
2266
|
+
export type GetApiV3QualityprofileByIdData = {
|
|
2267
|
+
path: {
|
|
2268
|
+
id: number;
|
|
2269
|
+
};
|
|
2270
|
+
};
|
|
2271
|
+
export type GetApiV3QualityprofileByIdResponse = (QualityProfileResource);
|
|
2272
|
+
export type GetApiV3QualityprofileByIdError = unknown;
|
|
2273
|
+
export type GetApiV3QualityprofileSchemaResponse = (QualityProfileResource);
|
|
2274
|
+
export type GetApiV3QualityprofileSchemaError = unknown;
|
|
2275
|
+
export type DeleteApiV3QueueByIdData = {
|
|
2276
|
+
path: {
|
|
2277
|
+
id: number;
|
|
2278
|
+
};
|
|
2279
|
+
query?: {
|
|
2280
|
+
blocklist?: boolean;
|
|
2281
|
+
changeCategory?: boolean;
|
|
2282
|
+
removeFromClient?: boolean;
|
|
2283
|
+
skipRedownload?: boolean;
|
|
2284
|
+
};
|
|
2285
|
+
};
|
|
2286
|
+
export type DeleteApiV3QueueByIdResponse = (unknown);
|
|
2287
|
+
export type DeleteApiV3QueueByIdError = unknown;
|
|
2288
|
+
export type DeleteApiV3QueueBulkData = {
|
|
2289
|
+
body?: QueueBulkResource;
|
|
2290
|
+
query?: {
|
|
2291
|
+
blocklist?: boolean;
|
|
2292
|
+
changeCategory?: boolean;
|
|
2293
|
+
removeFromClient?: boolean;
|
|
2294
|
+
skipRedownload?: boolean;
|
|
2295
|
+
};
|
|
2296
|
+
};
|
|
2297
|
+
export type DeleteApiV3QueueBulkResponse = (unknown);
|
|
2298
|
+
export type DeleteApiV3QueueBulkError = unknown;
|
|
2299
|
+
export type GetApiV3QueueData = {
|
|
2300
|
+
query?: {
|
|
2301
|
+
includeMovie?: boolean;
|
|
2302
|
+
includeUnknownMovieItems?: boolean;
|
|
2303
|
+
languages?: Array<(number)>;
|
|
2304
|
+
movieIds?: Array<(number)>;
|
|
2305
|
+
page?: number;
|
|
2306
|
+
pageSize?: number;
|
|
2307
|
+
protocol?: DownloadProtocol;
|
|
2308
|
+
quality?: Array<(number)>;
|
|
2309
|
+
sortDirection?: SortDirection;
|
|
2310
|
+
sortKey?: string;
|
|
2311
|
+
status?: Array<QueueStatus>;
|
|
2312
|
+
};
|
|
2313
|
+
};
|
|
2314
|
+
export type GetApiV3QueueResponse = (QueueResourcePagingResource);
|
|
2315
|
+
export type GetApiV3QueueError = unknown;
|
|
2316
|
+
export type PostApiV3QueueGrabByIdData = {
|
|
2317
|
+
path: {
|
|
2318
|
+
id: number;
|
|
2319
|
+
};
|
|
2320
|
+
};
|
|
2321
|
+
export type PostApiV3QueueGrabByIdResponse = (unknown);
|
|
2322
|
+
export type PostApiV3QueueGrabByIdError = unknown;
|
|
2323
|
+
export type PostApiV3QueueGrabBulkData = {
|
|
2324
|
+
body?: QueueBulkResource;
|
|
2325
|
+
};
|
|
2326
|
+
export type PostApiV3QueueGrabBulkResponse = (unknown);
|
|
2327
|
+
export type PostApiV3QueueGrabBulkError = unknown;
|
|
2328
|
+
export type GetApiV3QueueDetailsData = {
|
|
2329
|
+
query?: {
|
|
2330
|
+
includeMovie?: boolean;
|
|
2331
|
+
movieId?: number;
|
|
2332
|
+
};
|
|
2333
|
+
};
|
|
2334
|
+
export type GetApiV3QueueDetailsResponse = (Array<QueueResource>);
|
|
2335
|
+
export type GetApiV3QueueDetailsError = unknown;
|
|
2336
|
+
export type GetApiV3QueueStatusResponse = (QueueStatusResource);
|
|
2337
|
+
export type GetApiV3QueueStatusError = unknown;
|
|
2338
|
+
export type PostApiV3ReleaseData = {
|
|
2339
|
+
body?: ReleaseResource;
|
|
2340
|
+
};
|
|
2341
|
+
export type PostApiV3ReleaseResponse = (unknown);
|
|
2342
|
+
export type PostApiV3ReleaseError = unknown;
|
|
2343
|
+
export type GetApiV3ReleaseData = {
|
|
2344
|
+
query?: {
|
|
2345
|
+
movieId?: number;
|
|
2346
|
+
};
|
|
2347
|
+
};
|
|
2348
|
+
export type GetApiV3ReleaseResponse = (Array<ReleaseResource>);
|
|
2349
|
+
export type GetApiV3ReleaseError = unknown;
|
|
2350
|
+
export type PostApiV3ReleaseprofileData = {
|
|
2351
|
+
body?: ReleaseProfileResource;
|
|
2352
|
+
};
|
|
2353
|
+
export type PostApiV3ReleaseprofileResponse = (ReleaseProfileResource);
|
|
2354
|
+
export type PostApiV3ReleaseprofileError = unknown;
|
|
2355
|
+
export type GetApiV3ReleaseprofileResponse = (Array<ReleaseProfileResource>);
|
|
2356
|
+
export type GetApiV3ReleaseprofileError = unknown;
|
|
2357
|
+
export type DeleteApiV3ReleaseprofileByIdData = {
|
|
2358
|
+
path: {
|
|
2359
|
+
id: number;
|
|
2360
|
+
};
|
|
2361
|
+
};
|
|
2362
|
+
export type DeleteApiV3ReleaseprofileByIdResponse = (unknown);
|
|
2363
|
+
export type DeleteApiV3ReleaseprofileByIdError = unknown;
|
|
2364
|
+
export type PutApiV3ReleaseprofileByIdData = {
|
|
2365
|
+
body?: ReleaseProfileResource;
|
|
2366
|
+
path: {
|
|
2367
|
+
id: string;
|
|
2368
|
+
};
|
|
2369
|
+
};
|
|
2370
|
+
export type PutApiV3ReleaseprofileByIdResponse = (ReleaseProfileResource);
|
|
2371
|
+
export type PutApiV3ReleaseprofileByIdError = unknown;
|
|
2372
|
+
export type GetApiV3ReleaseprofileByIdData = {
|
|
2373
|
+
path: {
|
|
2374
|
+
id: number;
|
|
2375
|
+
};
|
|
2376
|
+
};
|
|
2377
|
+
export type GetApiV3ReleaseprofileByIdResponse = (ReleaseProfileResource);
|
|
2378
|
+
export type GetApiV3ReleaseprofileByIdError = unknown;
|
|
2379
|
+
export type PostApiV3ReleasePushData = {
|
|
2380
|
+
body?: ReleaseResource;
|
|
2381
|
+
};
|
|
2382
|
+
export type PostApiV3ReleasePushResponse = (Array<ReleaseResource>);
|
|
2383
|
+
export type PostApiV3ReleasePushError = unknown;
|
|
2384
|
+
export type PostApiV3RemotepathmappingData = {
|
|
2385
|
+
body?: RemotePathMappingResource;
|
|
2386
|
+
};
|
|
2387
|
+
export type PostApiV3RemotepathmappingResponse = (RemotePathMappingResource);
|
|
2388
|
+
export type PostApiV3RemotepathmappingError = unknown;
|
|
2389
|
+
export type GetApiV3RemotepathmappingResponse = (Array<RemotePathMappingResource>);
|
|
2390
|
+
export type GetApiV3RemotepathmappingError = unknown;
|
|
2391
|
+
export type DeleteApiV3RemotepathmappingByIdData = {
|
|
2392
|
+
path: {
|
|
2393
|
+
id: number;
|
|
2394
|
+
};
|
|
2395
|
+
};
|
|
2396
|
+
export type DeleteApiV3RemotepathmappingByIdResponse = (unknown);
|
|
2397
|
+
export type DeleteApiV3RemotepathmappingByIdError = unknown;
|
|
2398
|
+
export type PutApiV3RemotepathmappingByIdData = {
|
|
2399
|
+
body?: RemotePathMappingResource;
|
|
2400
|
+
path: {
|
|
2401
|
+
id: string;
|
|
2402
|
+
};
|
|
2403
|
+
};
|
|
2404
|
+
export type PutApiV3RemotepathmappingByIdResponse = (RemotePathMappingResource);
|
|
2405
|
+
export type PutApiV3RemotepathmappingByIdError = unknown;
|
|
2406
|
+
export type GetApiV3RemotepathmappingByIdData = {
|
|
2407
|
+
path: {
|
|
2408
|
+
id: number;
|
|
2409
|
+
};
|
|
2410
|
+
};
|
|
2411
|
+
export type GetApiV3RemotepathmappingByIdResponse = (RemotePathMappingResource);
|
|
2412
|
+
export type GetApiV3RemotepathmappingByIdError = unknown;
|
|
2413
|
+
export type GetApiV3RenameData = {
|
|
2414
|
+
query?: {
|
|
2415
|
+
movieId?: Array<(number)>;
|
|
2416
|
+
};
|
|
2417
|
+
};
|
|
2418
|
+
export type GetApiV3RenameResponse = (Array<RenameMovieResource>);
|
|
2419
|
+
export type GetApiV3RenameError = unknown;
|
|
2420
|
+
export type PostApiV3RootfolderData = {
|
|
2421
|
+
body?: RootFolderResource;
|
|
2422
|
+
};
|
|
2423
|
+
export type PostApiV3RootfolderResponse = (RootFolderResource);
|
|
2424
|
+
export type PostApiV3RootfolderError = unknown;
|
|
2425
|
+
export type GetApiV3RootfolderResponse = (Array<RootFolderResource>);
|
|
2426
|
+
export type GetApiV3RootfolderError = unknown;
|
|
2427
|
+
export type DeleteApiV3RootfolderByIdData = {
|
|
2428
|
+
path: {
|
|
2429
|
+
id: number;
|
|
2430
|
+
};
|
|
2431
|
+
};
|
|
2432
|
+
export type DeleteApiV3RootfolderByIdResponse = (unknown);
|
|
2433
|
+
export type DeleteApiV3RootfolderByIdError = unknown;
|
|
2434
|
+
export type GetApiV3RootfolderByIdData = {
|
|
2435
|
+
path: {
|
|
2436
|
+
id: number;
|
|
2437
|
+
};
|
|
2438
|
+
};
|
|
2439
|
+
export type GetApiV3RootfolderByIdResponse = (RootFolderResource);
|
|
2440
|
+
export type GetApiV3RootfolderByIdError = unknown;
|
|
2441
|
+
export type GetContentByPathData = {
|
|
2442
|
+
path: {
|
|
2443
|
+
path: string;
|
|
2444
|
+
};
|
|
2445
|
+
};
|
|
2446
|
+
export type GetContentByPathResponse = (unknown);
|
|
2447
|
+
export type GetContentByPathError = unknown;
|
|
2448
|
+
export type GetData = {
|
|
2449
|
+
path: {
|
|
2450
|
+
path: string;
|
|
2451
|
+
};
|
|
2452
|
+
};
|
|
2453
|
+
export type GetResponse = (unknown);
|
|
2454
|
+
export type GetError = unknown;
|
|
2455
|
+
export type GetByPathData = {
|
|
2456
|
+
path: {
|
|
2457
|
+
path: string;
|
|
2458
|
+
};
|
|
2459
|
+
};
|
|
2460
|
+
export type GetByPathResponse = (unknown);
|
|
2461
|
+
export type GetByPathError = unknown;
|
|
2462
|
+
export type GetApiV3SystemStatusResponse = (SystemResource);
|
|
2463
|
+
export type GetApiV3SystemStatusError = unknown;
|
|
2464
|
+
export type GetApiV3SystemRoutesResponse = (unknown);
|
|
2465
|
+
export type GetApiV3SystemRoutesError = unknown;
|
|
2466
|
+
export type GetApiV3SystemRoutesDuplicateResponse = (unknown);
|
|
2467
|
+
export type GetApiV3SystemRoutesDuplicateError = unknown;
|
|
2468
|
+
export type PostApiV3SystemShutdownResponse = (unknown);
|
|
2469
|
+
export type PostApiV3SystemShutdownError = unknown;
|
|
2470
|
+
export type PostApiV3SystemRestartResponse = (unknown);
|
|
2471
|
+
export type PostApiV3SystemRestartError = unknown;
|
|
2472
|
+
export type GetApiV3TagResponse = (Array<TagResource>);
|
|
2473
|
+
export type GetApiV3TagError = unknown;
|
|
2474
|
+
export type PostApiV3TagData = {
|
|
2475
|
+
body?: TagResource;
|
|
2476
|
+
};
|
|
2477
|
+
export type PostApiV3TagResponse = (TagResource);
|
|
2478
|
+
export type PostApiV3TagError = unknown;
|
|
2479
|
+
export type PutApiV3TagByIdData = {
|
|
2480
|
+
body?: TagResource;
|
|
2481
|
+
path: {
|
|
2482
|
+
id: string;
|
|
2483
|
+
};
|
|
2484
|
+
};
|
|
2485
|
+
export type PutApiV3TagByIdResponse = (TagResource);
|
|
2486
|
+
export type PutApiV3TagByIdError = unknown;
|
|
2487
|
+
export type DeleteApiV3TagByIdData = {
|
|
2488
|
+
path: {
|
|
2489
|
+
id: number;
|
|
2490
|
+
};
|
|
2491
|
+
};
|
|
2492
|
+
export type DeleteApiV3TagByIdResponse = (unknown);
|
|
2493
|
+
export type DeleteApiV3TagByIdError = unknown;
|
|
2494
|
+
export type GetApiV3TagByIdData = {
|
|
2495
|
+
path: {
|
|
2496
|
+
id: number;
|
|
2497
|
+
};
|
|
2498
|
+
};
|
|
2499
|
+
export type GetApiV3TagByIdResponse = (TagResource);
|
|
2500
|
+
export type GetApiV3TagByIdError = unknown;
|
|
2501
|
+
export type GetApiV3TagDetailResponse = (Array<TagDetailsResource>);
|
|
2502
|
+
export type GetApiV3TagDetailError = unknown;
|
|
2503
|
+
export type GetApiV3TagDetailByIdData = {
|
|
2504
|
+
path: {
|
|
2505
|
+
id: number;
|
|
2506
|
+
};
|
|
2507
|
+
};
|
|
2508
|
+
export type GetApiV3TagDetailByIdResponse = (TagDetailsResource);
|
|
2509
|
+
export type GetApiV3TagDetailByIdError = unknown;
|
|
2510
|
+
export type GetApiV3SystemTaskResponse = (Array<TaskResource>);
|
|
2511
|
+
export type GetApiV3SystemTaskError = unknown;
|
|
2512
|
+
export type GetApiV3SystemTaskByIdData = {
|
|
2513
|
+
path: {
|
|
2514
|
+
id: number;
|
|
2515
|
+
};
|
|
2516
|
+
};
|
|
2517
|
+
export type GetApiV3SystemTaskByIdResponse = (TaskResource);
|
|
2518
|
+
export type GetApiV3SystemTaskByIdError = unknown;
|
|
2519
|
+
export type PutApiV3ConfigUiByIdData = {
|
|
2520
|
+
body?: UiConfigResource;
|
|
2521
|
+
path: {
|
|
2522
|
+
id: string;
|
|
2523
|
+
};
|
|
2524
|
+
};
|
|
2525
|
+
export type PutApiV3ConfigUiByIdResponse = (UiConfigResource);
|
|
2526
|
+
export type PutApiV3ConfigUiByIdError = unknown;
|
|
2527
|
+
export type GetApiV3ConfigUiByIdData = {
|
|
2528
|
+
path: {
|
|
2529
|
+
id: number;
|
|
2530
|
+
};
|
|
2531
|
+
};
|
|
2532
|
+
export type GetApiV3ConfigUiByIdResponse = (UiConfigResource);
|
|
2533
|
+
export type GetApiV3ConfigUiByIdError = unknown;
|
|
2534
|
+
export type GetApiV3ConfigUiResponse = (UiConfigResource);
|
|
2535
|
+
export type GetApiV3ConfigUiError = unknown;
|
|
2536
|
+
export type GetApiV3UpdateResponse = (Array<UpdateResource>);
|
|
2537
|
+
export type GetApiV3UpdateError = unknown;
|
|
2538
|
+
export type GetApiV3LogFileUpdateResponse = (Array<LogFileResource>);
|
|
2539
|
+
export type GetApiV3LogFileUpdateError = unknown;
|
|
2540
|
+
export type GetApiV3LogFileUpdateByFilenameData = {
|
|
2541
|
+
path: {
|
|
2542
|
+
filename: string;
|
|
2543
|
+
};
|
|
2544
|
+
};
|
|
2545
|
+
export type GetApiV3LogFileUpdateByFilenameResponse = (unknown);
|
|
2546
|
+
export type GetApiV3LogFileUpdateByFilenameError = unknown;
|
|
2547
|
+
//# sourceMappingURL=types.gen.d.ts.map
|