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