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,4402 @@
|
|
|
1
|
+
export declare const AddMovieMethodSchema: {
|
|
2
|
+
readonly enum: readonly ["manual", "list", "collection"];
|
|
3
|
+
readonly type: "string";
|
|
4
|
+
};
|
|
5
|
+
export declare const AddMovieOptionsSchema: {
|
|
6
|
+
readonly type: "object";
|
|
7
|
+
readonly properties: {
|
|
8
|
+
readonly ignoreEpisodesWithFiles: {
|
|
9
|
+
readonly type: "boolean";
|
|
10
|
+
};
|
|
11
|
+
readonly ignoreEpisodesWithoutFiles: {
|
|
12
|
+
readonly type: "boolean";
|
|
13
|
+
};
|
|
14
|
+
readonly monitor: {
|
|
15
|
+
readonly $ref: "#/components/schemas/MonitorTypes";
|
|
16
|
+
};
|
|
17
|
+
readonly searchForMovie: {
|
|
18
|
+
readonly type: "boolean";
|
|
19
|
+
};
|
|
20
|
+
readonly addMethod: {
|
|
21
|
+
readonly $ref: "#/components/schemas/AddMovieMethod";
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
readonly additionalProperties: false;
|
|
25
|
+
};
|
|
26
|
+
export declare const AlternativeTitleResourceSchema: {
|
|
27
|
+
readonly type: "object";
|
|
28
|
+
readonly properties: {
|
|
29
|
+
readonly id: {
|
|
30
|
+
readonly type: "integer";
|
|
31
|
+
readonly format: "int32";
|
|
32
|
+
};
|
|
33
|
+
readonly sourceType: {
|
|
34
|
+
readonly $ref: "#/components/schemas/SourceType";
|
|
35
|
+
};
|
|
36
|
+
readonly movieMetadataId: {
|
|
37
|
+
readonly type: "integer";
|
|
38
|
+
readonly format: "int32";
|
|
39
|
+
};
|
|
40
|
+
readonly title: {
|
|
41
|
+
readonly type: "string";
|
|
42
|
+
readonly nullable: true;
|
|
43
|
+
};
|
|
44
|
+
readonly cleanTitle: {
|
|
45
|
+
readonly type: "string";
|
|
46
|
+
readonly nullable: true;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
readonly additionalProperties: false;
|
|
50
|
+
};
|
|
51
|
+
export declare const ApiInfoResourceSchema: {
|
|
52
|
+
readonly type: "object";
|
|
53
|
+
readonly properties: {
|
|
54
|
+
readonly current: {
|
|
55
|
+
readonly type: "string";
|
|
56
|
+
readonly nullable: true;
|
|
57
|
+
};
|
|
58
|
+
readonly deprecated: {
|
|
59
|
+
readonly type: "array";
|
|
60
|
+
readonly items: {
|
|
61
|
+
readonly type: "string";
|
|
62
|
+
};
|
|
63
|
+
readonly nullable: true;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
readonly additionalProperties: false;
|
|
67
|
+
};
|
|
68
|
+
export declare const ApplyTagsSchema: {
|
|
69
|
+
readonly enum: readonly ["add", "remove", "replace"];
|
|
70
|
+
readonly type: "string";
|
|
71
|
+
};
|
|
72
|
+
export declare const AuthenticationRequiredTypeSchema: {
|
|
73
|
+
readonly enum: readonly ["enabled", "disabledForLocalAddresses"];
|
|
74
|
+
readonly type: "string";
|
|
75
|
+
};
|
|
76
|
+
export declare const AuthenticationTypeSchema: {
|
|
77
|
+
readonly enum: readonly ["none", "basic", "forms", "external"];
|
|
78
|
+
readonly type: "string";
|
|
79
|
+
};
|
|
80
|
+
export declare const AutoTaggingResourceSchema: {
|
|
81
|
+
readonly type: "object";
|
|
82
|
+
readonly properties: {
|
|
83
|
+
readonly id: {
|
|
84
|
+
readonly type: "integer";
|
|
85
|
+
readonly format: "int32";
|
|
86
|
+
};
|
|
87
|
+
readonly name: {
|
|
88
|
+
readonly type: "string";
|
|
89
|
+
readonly nullable: true;
|
|
90
|
+
};
|
|
91
|
+
readonly removeTagsAutomatically: {
|
|
92
|
+
readonly type: "boolean";
|
|
93
|
+
};
|
|
94
|
+
readonly tags: {
|
|
95
|
+
readonly uniqueItems: true;
|
|
96
|
+
readonly type: "array";
|
|
97
|
+
readonly items: {
|
|
98
|
+
readonly type: "integer";
|
|
99
|
+
readonly format: "int32";
|
|
100
|
+
};
|
|
101
|
+
readonly nullable: true;
|
|
102
|
+
};
|
|
103
|
+
readonly specifications: {
|
|
104
|
+
readonly type: "array";
|
|
105
|
+
readonly items: {
|
|
106
|
+
readonly $ref: "#/components/schemas/AutoTaggingSpecificationSchema";
|
|
107
|
+
};
|
|
108
|
+
readonly nullable: true;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
readonly additionalProperties: false;
|
|
112
|
+
};
|
|
113
|
+
export declare const AutoTaggingSpecificationSchemaSchema: {
|
|
114
|
+
readonly type: "object";
|
|
115
|
+
readonly properties: {
|
|
116
|
+
readonly id: {
|
|
117
|
+
readonly type: "integer";
|
|
118
|
+
readonly format: "int32";
|
|
119
|
+
};
|
|
120
|
+
readonly name: {
|
|
121
|
+
readonly type: "string";
|
|
122
|
+
readonly nullable: true;
|
|
123
|
+
};
|
|
124
|
+
readonly implementation: {
|
|
125
|
+
readonly type: "string";
|
|
126
|
+
readonly nullable: true;
|
|
127
|
+
};
|
|
128
|
+
readonly implementationName: {
|
|
129
|
+
readonly type: "string";
|
|
130
|
+
readonly nullable: true;
|
|
131
|
+
};
|
|
132
|
+
readonly negate: {
|
|
133
|
+
readonly type: "boolean";
|
|
134
|
+
};
|
|
135
|
+
readonly required: {
|
|
136
|
+
readonly type: "boolean";
|
|
137
|
+
};
|
|
138
|
+
readonly fields: {
|
|
139
|
+
readonly type: "array";
|
|
140
|
+
readonly items: {
|
|
141
|
+
readonly $ref: "#/components/schemas/Field";
|
|
142
|
+
};
|
|
143
|
+
readonly nullable: true;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
readonly additionalProperties: false;
|
|
147
|
+
};
|
|
148
|
+
export declare const BackupResourceSchema: {
|
|
149
|
+
readonly type: "object";
|
|
150
|
+
readonly properties: {
|
|
151
|
+
readonly id: {
|
|
152
|
+
readonly type: "integer";
|
|
153
|
+
readonly format: "int32";
|
|
154
|
+
};
|
|
155
|
+
readonly name: {
|
|
156
|
+
readonly type: "string";
|
|
157
|
+
readonly nullable: true;
|
|
158
|
+
};
|
|
159
|
+
readonly path: {
|
|
160
|
+
readonly type: "string";
|
|
161
|
+
readonly nullable: true;
|
|
162
|
+
};
|
|
163
|
+
readonly type: {
|
|
164
|
+
readonly $ref: "#/components/schemas/BackupType";
|
|
165
|
+
};
|
|
166
|
+
readonly size: {
|
|
167
|
+
readonly type: "integer";
|
|
168
|
+
readonly format: "int64";
|
|
169
|
+
};
|
|
170
|
+
readonly time: {
|
|
171
|
+
readonly type: "string";
|
|
172
|
+
readonly format: "date-time";
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
readonly additionalProperties: false;
|
|
176
|
+
};
|
|
177
|
+
export declare const BackupTypeSchema: {
|
|
178
|
+
readonly enum: readonly ["scheduled", "manual", "update"];
|
|
179
|
+
readonly type: "string";
|
|
180
|
+
};
|
|
181
|
+
export declare const BlocklistBulkResourceSchema: {
|
|
182
|
+
readonly type: "object";
|
|
183
|
+
readonly properties: {
|
|
184
|
+
readonly ids: {
|
|
185
|
+
readonly type: "array";
|
|
186
|
+
readonly items: {
|
|
187
|
+
readonly type: "integer";
|
|
188
|
+
readonly format: "int32";
|
|
189
|
+
};
|
|
190
|
+
readonly nullable: true;
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
readonly additionalProperties: false;
|
|
194
|
+
};
|
|
195
|
+
export declare const BlocklistResourceSchema: {
|
|
196
|
+
readonly type: "object";
|
|
197
|
+
readonly properties: {
|
|
198
|
+
readonly id: {
|
|
199
|
+
readonly type: "integer";
|
|
200
|
+
readonly format: "int32";
|
|
201
|
+
};
|
|
202
|
+
readonly movieId: {
|
|
203
|
+
readonly type: "integer";
|
|
204
|
+
readonly format: "int32";
|
|
205
|
+
};
|
|
206
|
+
readonly sourceTitle: {
|
|
207
|
+
readonly type: "string";
|
|
208
|
+
readonly nullable: true;
|
|
209
|
+
};
|
|
210
|
+
readonly languages: {
|
|
211
|
+
readonly type: "array";
|
|
212
|
+
readonly items: {
|
|
213
|
+
readonly $ref: "#/components/schemas/Language";
|
|
214
|
+
};
|
|
215
|
+
readonly nullable: true;
|
|
216
|
+
};
|
|
217
|
+
readonly quality: {
|
|
218
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
219
|
+
};
|
|
220
|
+
readonly customFormats: {
|
|
221
|
+
readonly type: "array";
|
|
222
|
+
readonly items: {
|
|
223
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
224
|
+
};
|
|
225
|
+
readonly nullable: true;
|
|
226
|
+
};
|
|
227
|
+
readonly date: {
|
|
228
|
+
readonly type: "string";
|
|
229
|
+
readonly format: "date-time";
|
|
230
|
+
};
|
|
231
|
+
readonly protocol: {
|
|
232
|
+
readonly $ref: "#/components/schemas/DownloadProtocol";
|
|
233
|
+
};
|
|
234
|
+
readonly indexer: {
|
|
235
|
+
readonly type: "string";
|
|
236
|
+
readonly nullable: true;
|
|
237
|
+
};
|
|
238
|
+
readonly message: {
|
|
239
|
+
readonly type: "string";
|
|
240
|
+
readonly nullable: true;
|
|
241
|
+
};
|
|
242
|
+
readonly movie: {
|
|
243
|
+
readonly $ref: "#/components/schemas/MovieResource";
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
readonly additionalProperties: false;
|
|
247
|
+
};
|
|
248
|
+
export declare const BlocklistResourcePagingResourceSchema: {
|
|
249
|
+
readonly type: "object";
|
|
250
|
+
readonly properties: {
|
|
251
|
+
readonly page: {
|
|
252
|
+
readonly type: "integer";
|
|
253
|
+
readonly format: "int32";
|
|
254
|
+
};
|
|
255
|
+
readonly pageSize: {
|
|
256
|
+
readonly type: "integer";
|
|
257
|
+
readonly format: "int32";
|
|
258
|
+
};
|
|
259
|
+
readonly sortKey: {
|
|
260
|
+
readonly type: "string";
|
|
261
|
+
readonly nullable: true;
|
|
262
|
+
};
|
|
263
|
+
readonly sortDirection: {
|
|
264
|
+
readonly $ref: "#/components/schemas/SortDirection";
|
|
265
|
+
};
|
|
266
|
+
readonly totalRecords: {
|
|
267
|
+
readonly type: "integer";
|
|
268
|
+
readonly format: "int32";
|
|
269
|
+
};
|
|
270
|
+
readonly records: {
|
|
271
|
+
readonly type: "array";
|
|
272
|
+
readonly items: {
|
|
273
|
+
readonly $ref: "#/components/schemas/BlocklistResource";
|
|
274
|
+
};
|
|
275
|
+
readonly nullable: true;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
readonly additionalProperties: false;
|
|
279
|
+
};
|
|
280
|
+
export declare const CalendarReleaseTypeSchema: {
|
|
281
|
+
readonly enum: readonly ["cinemaRelease", "digitalRelease", "physicalRelease"];
|
|
282
|
+
readonly type: "string";
|
|
283
|
+
};
|
|
284
|
+
export declare const CertificateValidationTypeSchema: {
|
|
285
|
+
readonly enum: readonly ["enabled", "disabledForLocalAddresses", "disabled"];
|
|
286
|
+
readonly type: "string";
|
|
287
|
+
};
|
|
288
|
+
export declare const CollectionMovieResourceSchema: {
|
|
289
|
+
readonly type: "object";
|
|
290
|
+
readonly properties: {
|
|
291
|
+
readonly tmdbId: {
|
|
292
|
+
readonly type: "integer";
|
|
293
|
+
readonly format: "int32";
|
|
294
|
+
};
|
|
295
|
+
readonly imdbId: {
|
|
296
|
+
readonly type: "string";
|
|
297
|
+
readonly nullable: true;
|
|
298
|
+
};
|
|
299
|
+
readonly title: {
|
|
300
|
+
readonly type: "string";
|
|
301
|
+
readonly nullable: true;
|
|
302
|
+
};
|
|
303
|
+
readonly cleanTitle: {
|
|
304
|
+
readonly type: "string";
|
|
305
|
+
readonly nullable: true;
|
|
306
|
+
};
|
|
307
|
+
readonly sortTitle: {
|
|
308
|
+
readonly type: "string";
|
|
309
|
+
readonly nullable: true;
|
|
310
|
+
};
|
|
311
|
+
readonly status: {
|
|
312
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
313
|
+
};
|
|
314
|
+
readonly overview: {
|
|
315
|
+
readonly type: "string";
|
|
316
|
+
readonly nullable: true;
|
|
317
|
+
};
|
|
318
|
+
readonly runtime: {
|
|
319
|
+
readonly type: "integer";
|
|
320
|
+
readonly format: "int32";
|
|
321
|
+
};
|
|
322
|
+
readonly images: {
|
|
323
|
+
readonly type: "array";
|
|
324
|
+
readonly items: {
|
|
325
|
+
readonly $ref: "#/components/schemas/MediaCover";
|
|
326
|
+
};
|
|
327
|
+
readonly nullable: true;
|
|
328
|
+
};
|
|
329
|
+
readonly year: {
|
|
330
|
+
readonly type: "integer";
|
|
331
|
+
readonly format: "int32";
|
|
332
|
+
};
|
|
333
|
+
readonly ratings: {
|
|
334
|
+
readonly $ref: "#/components/schemas/Ratings";
|
|
335
|
+
};
|
|
336
|
+
readonly genres: {
|
|
337
|
+
readonly type: "array";
|
|
338
|
+
readonly items: {
|
|
339
|
+
readonly type: "string";
|
|
340
|
+
};
|
|
341
|
+
readonly nullable: true;
|
|
342
|
+
};
|
|
343
|
+
readonly folder: {
|
|
344
|
+
readonly type: "string";
|
|
345
|
+
readonly nullable: true;
|
|
346
|
+
};
|
|
347
|
+
readonly isExisting: {
|
|
348
|
+
readonly type: "boolean";
|
|
349
|
+
};
|
|
350
|
+
readonly isExcluded: {
|
|
351
|
+
readonly type: "boolean";
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
readonly additionalProperties: false;
|
|
355
|
+
};
|
|
356
|
+
export declare const CollectionResourceSchema: {
|
|
357
|
+
readonly type: "object";
|
|
358
|
+
readonly properties: {
|
|
359
|
+
readonly id: {
|
|
360
|
+
readonly type: "integer";
|
|
361
|
+
readonly format: "int32";
|
|
362
|
+
};
|
|
363
|
+
readonly title: {
|
|
364
|
+
readonly type: "string";
|
|
365
|
+
readonly nullable: true;
|
|
366
|
+
};
|
|
367
|
+
readonly sortTitle: {
|
|
368
|
+
readonly type: "string";
|
|
369
|
+
readonly nullable: true;
|
|
370
|
+
};
|
|
371
|
+
readonly tmdbId: {
|
|
372
|
+
readonly type: "integer";
|
|
373
|
+
readonly format: "int32";
|
|
374
|
+
};
|
|
375
|
+
readonly images: {
|
|
376
|
+
readonly type: "array";
|
|
377
|
+
readonly items: {
|
|
378
|
+
readonly $ref: "#/components/schemas/MediaCover";
|
|
379
|
+
};
|
|
380
|
+
readonly nullable: true;
|
|
381
|
+
};
|
|
382
|
+
readonly overview: {
|
|
383
|
+
readonly type: "string";
|
|
384
|
+
readonly nullable: true;
|
|
385
|
+
};
|
|
386
|
+
readonly monitored: {
|
|
387
|
+
readonly type: "boolean";
|
|
388
|
+
};
|
|
389
|
+
readonly rootFolderPath: {
|
|
390
|
+
readonly type: "string";
|
|
391
|
+
readonly nullable: true;
|
|
392
|
+
};
|
|
393
|
+
readonly qualityProfileId: {
|
|
394
|
+
readonly type: "integer";
|
|
395
|
+
readonly format: "int32";
|
|
396
|
+
};
|
|
397
|
+
readonly searchOnAdd: {
|
|
398
|
+
readonly type: "boolean";
|
|
399
|
+
};
|
|
400
|
+
readonly minimumAvailability: {
|
|
401
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
402
|
+
};
|
|
403
|
+
readonly movies: {
|
|
404
|
+
readonly type: "array";
|
|
405
|
+
readonly items: {
|
|
406
|
+
readonly $ref: "#/components/schemas/CollectionMovieResource";
|
|
407
|
+
};
|
|
408
|
+
readonly nullable: true;
|
|
409
|
+
};
|
|
410
|
+
readonly missingMovies: {
|
|
411
|
+
readonly type: "integer";
|
|
412
|
+
readonly format: "int32";
|
|
413
|
+
};
|
|
414
|
+
readonly tags: {
|
|
415
|
+
readonly uniqueItems: true;
|
|
416
|
+
readonly type: "array";
|
|
417
|
+
readonly items: {
|
|
418
|
+
readonly type: "integer";
|
|
419
|
+
readonly format: "int32";
|
|
420
|
+
};
|
|
421
|
+
readonly nullable: true;
|
|
422
|
+
};
|
|
423
|
+
};
|
|
424
|
+
readonly additionalProperties: false;
|
|
425
|
+
};
|
|
426
|
+
export declare const CollectionUpdateResourceSchema: {
|
|
427
|
+
readonly type: "object";
|
|
428
|
+
readonly properties: {
|
|
429
|
+
readonly collectionIds: {
|
|
430
|
+
readonly type: "array";
|
|
431
|
+
readonly items: {
|
|
432
|
+
readonly type: "integer";
|
|
433
|
+
readonly format: "int32";
|
|
434
|
+
};
|
|
435
|
+
readonly nullable: true;
|
|
436
|
+
};
|
|
437
|
+
readonly monitored: {
|
|
438
|
+
readonly type: "boolean";
|
|
439
|
+
readonly nullable: true;
|
|
440
|
+
};
|
|
441
|
+
readonly monitorMovies: {
|
|
442
|
+
readonly type: "boolean";
|
|
443
|
+
readonly nullable: true;
|
|
444
|
+
};
|
|
445
|
+
readonly searchOnAdd: {
|
|
446
|
+
readonly type: "boolean";
|
|
447
|
+
readonly nullable: true;
|
|
448
|
+
};
|
|
449
|
+
readonly qualityProfileId: {
|
|
450
|
+
readonly type: "integer";
|
|
451
|
+
readonly format: "int32";
|
|
452
|
+
readonly nullable: true;
|
|
453
|
+
};
|
|
454
|
+
readonly rootFolderPath: {
|
|
455
|
+
readonly type: "string";
|
|
456
|
+
readonly nullable: true;
|
|
457
|
+
};
|
|
458
|
+
readonly minimumAvailability: {
|
|
459
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
readonly additionalProperties: false;
|
|
463
|
+
};
|
|
464
|
+
export declare const ColonReplacementFormatSchema: {
|
|
465
|
+
readonly enum: readonly ["delete", "dash", "spaceDash", "spaceDashSpace", "smart"];
|
|
466
|
+
readonly type: "string";
|
|
467
|
+
};
|
|
468
|
+
export declare const CommandSchema: {
|
|
469
|
+
readonly type: "object";
|
|
470
|
+
readonly properties: {
|
|
471
|
+
readonly sendUpdatesToClient: {
|
|
472
|
+
readonly type: "boolean";
|
|
473
|
+
};
|
|
474
|
+
readonly updateScheduledTask: {
|
|
475
|
+
readonly type: "boolean";
|
|
476
|
+
readonly readOnly: true;
|
|
477
|
+
};
|
|
478
|
+
readonly completionMessage: {
|
|
479
|
+
readonly type: "string";
|
|
480
|
+
readonly nullable: true;
|
|
481
|
+
readonly readOnly: true;
|
|
482
|
+
};
|
|
483
|
+
readonly requiresDiskAccess: {
|
|
484
|
+
readonly type: "boolean";
|
|
485
|
+
readonly readOnly: true;
|
|
486
|
+
};
|
|
487
|
+
readonly isExclusive: {
|
|
488
|
+
readonly type: "boolean";
|
|
489
|
+
readonly readOnly: true;
|
|
490
|
+
};
|
|
491
|
+
readonly isTypeExclusive: {
|
|
492
|
+
readonly type: "boolean";
|
|
493
|
+
readonly readOnly: true;
|
|
494
|
+
};
|
|
495
|
+
readonly isLongRunning: {
|
|
496
|
+
readonly type: "boolean";
|
|
497
|
+
readonly readOnly: true;
|
|
498
|
+
};
|
|
499
|
+
readonly name: {
|
|
500
|
+
readonly type: "string";
|
|
501
|
+
readonly nullable: true;
|
|
502
|
+
readonly readOnly: true;
|
|
503
|
+
};
|
|
504
|
+
readonly lastExecutionTime: {
|
|
505
|
+
readonly type: "string";
|
|
506
|
+
readonly format: "date-time";
|
|
507
|
+
readonly nullable: true;
|
|
508
|
+
};
|
|
509
|
+
readonly lastStartTime: {
|
|
510
|
+
readonly type: "string";
|
|
511
|
+
readonly format: "date-time";
|
|
512
|
+
readonly nullable: true;
|
|
513
|
+
};
|
|
514
|
+
readonly trigger: {
|
|
515
|
+
readonly $ref: "#/components/schemas/CommandTrigger";
|
|
516
|
+
};
|
|
517
|
+
readonly suppressMessages: {
|
|
518
|
+
readonly type: "boolean";
|
|
519
|
+
};
|
|
520
|
+
readonly clientUserAgent: {
|
|
521
|
+
readonly type: "string";
|
|
522
|
+
readonly nullable: true;
|
|
523
|
+
};
|
|
524
|
+
};
|
|
525
|
+
readonly additionalProperties: false;
|
|
526
|
+
};
|
|
527
|
+
export declare const CommandPrioritySchema: {
|
|
528
|
+
readonly enum: readonly ["normal", "high", "low"];
|
|
529
|
+
readonly type: "string";
|
|
530
|
+
};
|
|
531
|
+
export declare const CommandResourceSchema: {
|
|
532
|
+
readonly type: "object";
|
|
533
|
+
readonly properties: {
|
|
534
|
+
readonly id: {
|
|
535
|
+
readonly type: "integer";
|
|
536
|
+
readonly format: "int32";
|
|
537
|
+
};
|
|
538
|
+
readonly name: {
|
|
539
|
+
readonly type: "string";
|
|
540
|
+
readonly nullable: true;
|
|
541
|
+
};
|
|
542
|
+
readonly commandName: {
|
|
543
|
+
readonly type: "string";
|
|
544
|
+
readonly nullable: true;
|
|
545
|
+
};
|
|
546
|
+
readonly message: {
|
|
547
|
+
readonly type: "string";
|
|
548
|
+
readonly nullable: true;
|
|
549
|
+
};
|
|
550
|
+
readonly body: {
|
|
551
|
+
readonly $ref: "#/components/schemas/Command";
|
|
552
|
+
};
|
|
553
|
+
readonly priority: {
|
|
554
|
+
readonly $ref: "#/components/schemas/CommandPriority";
|
|
555
|
+
};
|
|
556
|
+
readonly status: {
|
|
557
|
+
readonly $ref: "#/components/schemas/CommandStatus";
|
|
558
|
+
};
|
|
559
|
+
readonly result: {
|
|
560
|
+
readonly $ref: "#/components/schemas/CommandResult";
|
|
561
|
+
};
|
|
562
|
+
readonly queued: {
|
|
563
|
+
readonly type: "string";
|
|
564
|
+
readonly format: "date-time";
|
|
565
|
+
};
|
|
566
|
+
readonly started: {
|
|
567
|
+
readonly type: "string";
|
|
568
|
+
readonly format: "date-time";
|
|
569
|
+
readonly nullable: true;
|
|
570
|
+
};
|
|
571
|
+
readonly ended: {
|
|
572
|
+
readonly type: "string";
|
|
573
|
+
readonly format: "date-time";
|
|
574
|
+
readonly nullable: true;
|
|
575
|
+
};
|
|
576
|
+
readonly duration: {
|
|
577
|
+
readonly type: "string";
|
|
578
|
+
readonly format: "date-span";
|
|
579
|
+
readonly nullable: true;
|
|
580
|
+
};
|
|
581
|
+
readonly exception: {
|
|
582
|
+
readonly type: "string";
|
|
583
|
+
readonly nullable: true;
|
|
584
|
+
};
|
|
585
|
+
readonly trigger: {
|
|
586
|
+
readonly $ref: "#/components/schemas/CommandTrigger";
|
|
587
|
+
};
|
|
588
|
+
readonly clientUserAgent: {
|
|
589
|
+
readonly type: "string";
|
|
590
|
+
readonly nullable: true;
|
|
591
|
+
};
|
|
592
|
+
readonly stateChangeTime: {
|
|
593
|
+
readonly type: "string";
|
|
594
|
+
readonly format: "date-time";
|
|
595
|
+
readonly nullable: true;
|
|
596
|
+
};
|
|
597
|
+
readonly sendUpdatesToClient: {
|
|
598
|
+
readonly type: "boolean";
|
|
599
|
+
};
|
|
600
|
+
readonly updateScheduledTask: {
|
|
601
|
+
readonly type: "boolean";
|
|
602
|
+
};
|
|
603
|
+
readonly lastExecutionTime: {
|
|
604
|
+
readonly type: "string";
|
|
605
|
+
readonly format: "date-time";
|
|
606
|
+
readonly nullable: true;
|
|
607
|
+
};
|
|
608
|
+
};
|
|
609
|
+
readonly additionalProperties: false;
|
|
610
|
+
};
|
|
611
|
+
export declare const CommandResultSchema: {
|
|
612
|
+
readonly enum: readonly ["unknown", "successful", "unsuccessful"];
|
|
613
|
+
readonly type: "string";
|
|
614
|
+
};
|
|
615
|
+
export declare const CommandStatusSchema: {
|
|
616
|
+
readonly enum: readonly ["queued", "started", "completed", "failed", "aborted", "cancelled", "orphaned"];
|
|
617
|
+
readonly type: "string";
|
|
618
|
+
};
|
|
619
|
+
export declare const CommandTriggerSchema: {
|
|
620
|
+
readonly enum: readonly ["unspecified", "manual", "scheduled"];
|
|
621
|
+
readonly type: "string";
|
|
622
|
+
};
|
|
623
|
+
export declare const CreditResourceSchema: {
|
|
624
|
+
readonly type: "object";
|
|
625
|
+
readonly properties: {
|
|
626
|
+
readonly id: {
|
|
627
|
+
readonly type: "integer";
|
|
628
|
+
readonly format: "int32";
|
|
629
|
+
};
|
|
630
|
+
readonly personName: {
|
|
631
|
+
readonly type: "string";
|
|
632
|
+
readonly nullable: true;
|
|
633
|
+
};
|
|
634
|
+
readonly creditTmdbId: {
|
|
635
|
+
readonly type: "string";
|
|
636
|
+
readonly nullable: true;
|
|
637
|
+
};
|
|
638
|
+
readonly personTmdbId: {
|
|
639
|
+
readonly type: "integer";
|
|
640
|
+
readonly format: "int32";
|
|
641
|
+
};
|
|
642
|
+
readonly movieMetadataId: {
|
|
643
|
+
readonly type: "integer";
|
|
644
|
+
readonly format: "int32";
|
|
645
|
+
};
|
|
646
|
+
readonly images: {
|
|
647
|
+
readonly type: "array";
|
|
648
|
+
readonly items: {
|
|
649
|
+
readonly $ref: "#/components/schemas/MediaCover";
|
|
650
|
+
};
|
|
651
|
+
readonly nullable: true;
|
|
652
|
+
};
|
|
653
|
+
readonly department: {
|
|
654
|
+
readonly type: "string";
|
|
655
|
+
readonly nullable: true;
|
|
656
|
+
};
|
|
657
|
+
readonly job: {
|
|
658
|
+
readonly type: "string";
|
|
659
|
+
readonly nullable: true;
|
|
660
|
+
};
|
|
661
|
+
readonly character: {
|
|
662
|
+
readonly type: "string";
|
|
663
|
+
readonly nullable: true;
|
|
664
|
+
};
|
|
665
|
+
readonly order: {
|
|
666
|
+
readonly type: "integer";
|
|
667
|
+
readonly format: "int32";
|
|
668
|
+
};
|
|
669
|
+
readonly type: {
|
|
670
|
+
readonly $ref: "#/components/schemas/CreditType";
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
readonly additionalProperties: false;
|
|
674
|
+
};
|
|
675
|
+
export declare const CreditTypeSchema: {
|
|
676
|
+
readonly enum: readonly ["cast", "crew"];
|
|
677
|
+
readonly type: "string";
|
|
678
|
+
};
|
|
679
|
+
export declare const CustomFilterResourceSchema: {
|
|
680
|
+
readonly type: "object";
|
|
681
|
+
readonly properties: {
|
|
682
|
+
readonly id: {
|
|
683
|
+
readonly type: "integer";
|
|
684
|
+
readonly format: "int32";
|
|
685
|
+
};
|
|
686
|
+
readonly type: {
|
|
687
|
+
readonly type: "string";
|
|
688
|
+
readonly nullable: true;
|
|
689
|
+
};
|
|
690
|
+
readonly label: {
|
|
691
|
+
readonly type: "string";
|
|
692
|
+
readonly nullable: true;
|
|
693
|
+
};
|
|
694
|
+
readonly filters: {
|
|
695
|
+
readonly type: "array";
|
|
696
|
+
readonly items: {
|
|
697
|
+
readonly type: "object";
|
|
698
|
+
readonly additionalProperties: {};
|
|
699
|
+
};
|
|
700
|
+
readonly nullable: true;
|
|
701
|
+
};
|
|
702
|
+
};
|
|
703
|
+
readonly additionalProperties: false;
|
|
704
|
+
};
|
|
705
|
+
export declare const CustomFormatBulkResourceSchema: {
|
|
706
|
+
readonly type: "object";
|
|
707
|
+
readonly properties: {
|
|
708
|
+
readonly ids: {
|
|
709
|
+
readonly uniqueItems: true;
|
|
710
|
+
readonly type: "array";
|
|
711
|
+
readonly items: {
|
|
712
|
+
readonly type: "integer";
|
|
713
|
+
readonly format: "int32";
|
|
714
|
+
};
|
|
715
|
+
readonly nullable: true;
|
|
716
|
+
};
|
|
717
|
+
readonly includeCustomFormatWhenRenaming: {
|
|
718
|
+
readonly type: "boolean";
|
|
719
|
+
readonly nullable: true;
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
readonly additionalProperties: false;
|
|
723
|
+
};
|
|
724
|
+
export declare const CustomFormatResourceSchema: {
|
|
725
|
+
readonly type: "object";
|
|
726
|
+
readonly properties: {
|
|
727
|
+
readonly id: {
|
|
728
|
+
readonly type: "integer";
|
|
729
|
+
readonly format: "int32";
|
|
730
|
+
};
|
|
731
|
+
readonly name: {
|
|
732
|
+
readonly type: "string";
|
|
733
|
+
readonly nullable: true;
|
|
734
|
+
};
|
|
735
|
+
readonly includeCustomFormatWhenRenaming: {
|
|
736
|
+
readonly type: "boolean";
|
|
737
|
+
readonly nullable: true;
|
|
738
|
+
};
|
|
739
|
+
readonly specifications: {
|
|
740
|
+
readonly type: "array";
|
|
741
|
+
readonly items: {
|
|
742
|
+
readonly $ref: "#/components/schemas/CustomFormatSpecificationSchema";
|
|
743
|
+
};
|
|
744
|
+
readonly nullable: true;
|
|
745
|
+
};
|
|
746
|
+
};
|
|
747
|
+
readonly additionalProperties: false;
|
|
748
|
+
};
|
|
749
|
+
export declare const CustomFormatSpecificationSchemaSchema: {
|
|
750
|
+
readonly type: "object";
|
|
751
|
+
readonly properties: {
|
|
752
|
+
readonly id: {
|
|
753
|
+
readonly type: "integer";
|
|
754
|
+
readonly format: "int32";
|
|
755
|
+
};
|
|
756
|
+
readonly name: {
|
|
757
|
+
readonly type: "string";
|
|
758
|
+
readonly nullable: true;
|
|
759
|
+
};
|
|
760
|
+
readonly implementation: {
|
|
761
|
+
readonly type: "string";
|
|
762
|
+
readonly nullable: true;
|
|
763
|
+
};
|
|
764
|
+
readonly implementationName: {
|
|
765
|
+
readonly type: "string";
|
|
766
|
+
readonly nullable: true;
|
|
767
|
+
};
|
|
768
|
+
readonly infoLink: {
|
|
769
|
+
readonly type: "string";
|
|
770
|
+
readonly nullable: true;
|
|
771
|
+
};
|
|
772
|
+
readonly negate: {
|
|
773
|
+
readonly type: "boolean";
|
|
774
|
+
};
|
|
775
|
+
readonly required: {
|
|
776
|
+
readonly type: "boolean";
|
|
777
|
+
};
|
|
778
|
+
readonly fields: {
|
|
779
|
+
readonly type: "array";
|
|
780
|
+
readonly items: {
|
|
781
|
+
readonly $ref: "#/components/schemas/Field";
|
|
782
|
+
};
|
|
783
|
+
readonly nullable: true;
|
|
784
|
+
};
|
|
785
|
+
readonly presets: {
|
|
786
|
+
readonly type: "array";
|
|
787
|
+
readonly items: {
|
|
788
|
+
readonly $ref: "#/components/schemas/CustomFormatSpecificationSchema";
|
|
789
|
+
};
|
|
790
|
+
readonly nullable: true;
|
|
791
|
+
};
|
|
792
|
+
};
|
|
793
|
+
readonly additionalProperties: false;
|
|
794
|
+
};
|
|
795
|
+
export declare const DatabaseTypeSchema: {
|
|
796
|
+
readonly enum: readonly ["sqLite", "postgreSQL"];
|
|
797
|
+
readonly type: "string";
|
|
798
|
+
};
|
|
799
|
+
export declare const DelayProfileResourceSchema: {
|
|
800
|
+
readonly type: "object";
|
|
801
|
+
readonly properties: {
|
|
802
|
+
readonly id: {
|
|
803
|
+
readonly type: "integer";
|
|
804
|
+
readonly format: "int32";
|
|
805
|
+
};
|
|
806
|
+
readonly enableUsenet: {
|
|
807
|
+
readonly type: "boolean";
|
|
808
|
+
};
|
|
809
|
+
readonly enableTorrent: {
|
|
810
|
+
readonly type: "boolean";
|
|
811
|
+
};
|
|
812
|
+
readonly preferredProtocol: {
|
|
813
|
+
readonly $ref: "#/components/schemas/DownloadProtocol";
|
|
814
|
+
};
|
|
815
|
+
readonly usenetDelay: {
|
|
816
|
+
readonly type: "integer";
|
|
817
|
+
readonly format: "int32";
|
|
818
|
+
};
|
|
819
|
+
readonly torrentDelay: {
|
|
820
|
+
readonly type: "integer";
|
|
821
|
+
readonly format: "int32";
|
|
822
|
+
};
|
|
823
|
+
readonly bypassIfHighestQuality: {
|
|
824
|
+
readonly type: "boolean";
|
|
825
|
+
};
|
|
826
|
+
readonly bypassIfAboveCustomFormatScore: {
|
|
827
|
+
readonly type: "boolean";
|
|
828
|
+
};
|
|
829
|
+
readonly minimumCustomFormatScore: {
|
|
830
|
+
readonly type: "integer";
|
|
831
|
+
readonly format: "int32";
|
|
832
|
+
};
|
|
833
|
+
readonly order: {
|
|
834
|
+
readonly type: "integer";
|
|
835
|
+
readonly format: "int32";
|
|
836
|
+
};
|
|
837
|
+
readonly tags: {
|
|
838
|
+
readonly uniqueItems: true;
|
|
839
|
+
readonly type: "array";
|
|
840
|
+
readonly items: {
|
|
841
|
+
readonly type: "integer";
|
|
842
|
+
readonly format: "int32";
|
|
843
|
+
};
|
|
844
|
+
readonly nullable: true;
|
|
845
|
+
};
|
|
846
|
+
};
|
|
847
|
+
readonly additionalProperties: false;
|
|
848
|
+
};
|
|
849
|
+
export declare const DiskSpaceResourceSchema: {
|
|
850
|
+
readonly type: "object";
|
|
851
|
+
readonly properties: {
|
|
852
|
+
readonly id: {
|
|
853
|
+
readonly type: "integer";
|
|
854
|
+
readonly format: "int32";
|
|
855
|
+
};
|
|
856
|
+
readonly path: {
|
|
857
|
+
readonly type: "string";
|
|
858
|
+
readonly nullable: true;
|
|
859
|
+
};
|
|
860
|
+
readonly label: {
|
|
861
|
+
readonly type: "string";
|
|
862
|
+
readonly nullable: true;
|
|
863
|
+
};
|
|
864
|
+
readonly freeSpace: {
|
|
865
|
+
readonly type: "integer";
|
|
866
|
+
readonly format: "int64";
|
|
867
|
+
};
|
|
868
|
+
readonly totalSpace: {
|
|
869
|
+
readonly type: "integer";
|
|
870
|
+
readonly format: "int64";
|
|
871
|
+
};
|
|
872
|
+
};
|
|
873
|
+
readonly additionalProperties: false;
|
|
874
|
+
};
|
|
875
|
+
export declare const DownloadClientBulkResourceSchema: {
|
|
876
|
+
readonly type: "object";
|
|
877
|
+
readonly properties: {
|
|
878
|
+
readonly ids: {
|
|
879
|
+
readonly type: "array";
|
|
880
|
+
readonly items: {
|
|
881
|
+
readonly type: "integer";
|
|
882
|
+
readonly format: "int32";
|
|
883
|
+
};
|
|
884
|
+
readonly nullable: true;
|
|
885
|
+
};
|
|
886
|
+
readonly tags: {
|
|
887
|
+
readonly type: "array";
|
|
888
|
+
readonly items: {
|
|
889
|
+
readonly type: "integer";
|
|
890
|
+
readonly format: "int32";
|
|
891
|
+
};
|
|
892
|
+
readonly nullable: true;
|
|
893
|
+
};
|
|
894
|
+
readonly applyTags: {
|
|
895
|
+
readonly $ref: "#/components/schemas/ApplyTags";
|
|
896
|
+
};
|
|
897
|
+
readonly enable: {
|
|
898
|
+
readonly type: "boolean";
|
|
899
|
+
readonly nullable: true;
|
|
900
|
+
};
|
|
901
|
+
readonly priority: {
|
|
902
|
+
readonly type: "integer";
|
|
903
|
+
readonly format: "int32";
|
|
904
|
+
readonly nullable: true;
|
|
905
|
+
};
|
|
906
|
+
readonly removeCompletedDownloads: {
|
|
907
|
+
readonly type: "boolean";
|
|
908
|
+
readonly nullable: true;
|
|
909
|
+
};
|
|
910
|
+
readonly removeFailedDownloads: {
|
|
911
|
+
readonly type: "boolean";
|
|
912
|
+
readonly nullable: true;
|
|
913
|
+
};
|
|
914
|
+
};
|
|
915
|
+
readonly additionalProperties: false;
|
|
916
|
+
};
|
|
917
|
+
export declare const DownloadClientConfigResourceSchema: {
|
|
918
|
+
readonly type: "object";
|
|
919
|
+
readonly properties: {
|
|
920
|
+
readonly id: {
|
|
921
|
+
readonly type: "integer";
|
|
922
|
+
readonly format: "int32";
|
|
923
|
+
};
|
|
924
|
+
readonly downloadClientWorkingFolders: {
|
|
925
|
+
readonly type: "string";
|
|
926
|
+
readonly nullable: true;
|
|
927
|
+
};
|
|
928
|
+
readonly enableCompletedDownloadHandling: {
|
|
929
|
+
readonly type: "boolean";
|
|
930
|
+
};
|
|
931
|
+
readonly checkForFinishedDownloadInterval: {
|
|
932
|
+
readonly type: "integer";
|
|
933
|
+
readonly format: "int32";
|
|
934
|
+
};
|
|
935
|
+
readonly autoRedownloadFailed: {
|
|
936
|
+
readonly type: "boolean";
|
|
937
|
+
};
|
|
938
|
+
readonly autoRedownloadFailedFromInteractiveSearch: {
|
|
939
|
+
readonly type: "boolean";
|
|
940
|
+
};
|
|
941
|
+
};
|
|
942
|
+
readonly additionalProperties: false;
|
|
943
|
+
};
|
|
944
|
+
export declare const DownloadClientResourceSchema: {
|
|
945
|
+
readonly type: "object";
|
|
946
|
+
readonly properties: {
|
|
947
|
+
readonly id: {
|
|
948
|
+
readonly type: "integer";
|
|
949
|
+
readonly format: "int32";
|
|
950
|
+
};
|
|
951
|
+
readonly name: {
|
|
952
|
+
readonly type: "string";
|
|
953
|
+
readonly nullable: true;
|
|
954
|
+
};
|
|
955
|
+
readonly fields: {
|
|
956
|
+
readonly type: "array";
|
|
957
|
+
readonly items: {
|
|
958
|
+
readonly $ref: "#/components/schemas/Field";
|
|
959
|
+
};
|
|
960
|
+
readonly nullable: true;
|
|
961
|
+
};
|
|
962
|
+
readonly implementationName: {
|
|
963
|
+
readonly type: "string";
|
|
964
|
+
readonly nullable: true;
|
|
965
|
+
};
|
|
966
|
+
readonly implementation: {
|
|
967
|
+
readonly type: "string";
|
|
968
|
+
readonly nullable: true;
|
|
969
|
+
};
|
|
970
|
+
readonly configContract: {
|
|
971
|
+
readonly type: "string";
|
|
972
|
+
readonly nullable: true;
|
|
973
|
+
};
|
|
974
|
+
readonly infoLink: {
|
|
975
|
+
readonly type: "string";
|
|
976
|
+
readonly nullable: true;
|
|
977
|
+
};
|
|
978
|
+
readonly message: {
|
|
979
|
+
readonly $ref: "#/components/schemas/ProviderMessage";
|
|
980
|
+
};
|
|
981
|
+
readonly tags: {
|
|
982
|
+
readonly uniqueItems: true;
|
|
983
|
+
readonly type: "array";
|
|
984
|
+
readonly items: {
|
|
985
|
+
readonly type: "integer";
|
|
986
|
+
readonly format: "int32";
|
|
987
|
+
};
|
|
988
|
+
readonly nullable: true;
|
|
989
|
+
};
|
|
990
|
+
readonly presets: {
|
|
991
|
+
readonly type: "array";
|
|
992
|
+
readonly items: {
|
|
993
|
+
readonly $ref: "#/components/schemas/DownloadClientResource";
|
|
994
|
+
};
|
|
995
|
+
readonly nullable: true;
|
|
996
|
+
};
|
|
997
|
+
readonly enable: {
|
|
998
|
+
readonly type: "boolean";
|
|
999
|
+
};
|
|
1000
|
+
readonly protocol: {
|
|
1001
|
+
readonly $ref: "#/components/schemas/DownloadProtocol";
|
|
1002
|
+
};
|
|
1003
|
+
readonly priority: {
|
|
1004
|
+
readonly type: "integer";
|
|
1005
|
+
readonly format: "int32";
|
|
1006
|
+
};
|
|
1007
|
+
readonly removeCompletedDownloads: {
|
|
1008
|
+
readonly type: "boolean";
|
|
1009
|
+
};
|
|
1010
|
+
readonly removeFailedDownloads: {
|
|
1011
|
+
readonly type: "boolean";
|
|
1012
|
+
};
|
|
1013
|
+
};
|
|
1014
|
+
readonly additionalProperties: false;
|
|
1015
|
+
};
|
|
1016
|
+
export declare const DownloadProtocolSchema: {
|
|
1017
|
+
readonly enum: readonly ["unknown", "usenet", "torrent"];
|
|
1018
|
+
readonly type: "string";
|
|
1019
|
+
};
|
|
1020
|
+
export declare const ExtraFileResourceSchema: {
|
|
1021
|
+
readonly type: "object";
|
|
1022
|
+
readonly properties: {
|
|
1023
|
+
readonly id: {
|
|
1024
|
+
readonly type: "integer";
|
|
1025
|
+
readonly format: "int32";
|
|
1026
|
+
};
|
|
1027
|
+
readonly movieId: {
|
|
1028
|
+
readonly type: "integer";
|
|
1029
|
+
readonly format: "int32";
|
|
1030
|
+
};
|
|
1031
|
+
readonly movieFileId: {
|
|
1032
|
+
readonly type: "integer";
|
|
1033
|
+
readonly format: "int32";
|
|
1034
|
+
readonly nullable: true;
|
|
1035
|
+
};
|
|
1036
|
+
readonly relativePath: {
|
|
1037
|
+
readonly type: "string";
|
|
1038
|
+
readonly nullable: true;
|
|
1039
|
+
};
|
|
1040
|
+
readonly extension: {
|
|
1041
|
+
readonly type: "string";
|
|
1042
|
+
readonly nullable: true;
|
|
1043
|
+
};
|
|
1044
|
+
readonly languageTags: {
|
|
1045
|
+
readonly type: "array";
|
|
1046
|
+
readonly items: {
|
|
1047
|
+
readonly type: "string";
|
|
1048
|
+
};
|
|
1049
|
+
readonly nullable: true;
|
|
1050
|
+
};
|
|
1051
|
+
readonly title: {
|
|
1052
|
+
readonly type: "string";
|
|
1053
|
+
readonly nullable: true;
|
|
1054
|
+
};
|
|
1055
|
+
readonly type: {
|
|
1056
|
+
readonly $ref: "#/components/schemas/ExtraFileType";
|
|
1057
|
+
};
|
|
1058
|
+
};
|
|
1059
|
+
readonly additionalProperties: false;
|
|
1060
|
+
};
|
|
1061
|
+
export declare const ExtraFileTypeSchema: {
|
|
1062
|
+
readonly enum: readonly ["subtitle", "metadata", "other"];
|
|
1063
|
+
readonly type: "string";
|
|
1064
|
+
};
|
|
1065
|
+
export declare const FieldSchema: {
|
|
1066
|
+
readonly type: "object";
|
|
1067
|
+
readonly properties: {
|
|
1068
|
+
readonly order: {
|
|
1069
|
+
readonly type: "integer";
|
|
1070
|
+
readonly format: "int32";
|
|
1071
|
+
};
|
|
1072
|
+
readonly name: {
|
|
1073
|
+
readonly type: "string";
|
|
1074
|
+
readonly nullable: true;
|
|
1075
|
+
};
|
|
1076
|
+
readonly label: {
|
|
1077
|
+
readonly type: "string";
|
|
1078
|
+
readonly nullable: true;
|
|
1079
|
+
};
|
|
1080
|
+
readonly unit: {
|
|
1081
|
+
readonly type: "string";
|
|
1082
|
+
readonly nullable: true;
|
|
1083
|
+
};
|
|
1084
|
+
readonly helpText: {
|
|
1085
|
+
readonly type: "string";
|
|
1086
|
+
readonly nullable: true;
|
|
1087
|
+
};
|
|
1088
|
+
readonly helpTextWarning: {
|
|
1089
|
+
readonly type: "string";
|
|
1090
|
+
readonly nullable: true;
|
|
1091
|
+
};
|
|
1092
|
+
readonly helpLink: {
|
|
1093
|
+
readonly type: "string";
|
|
1094
|
+
readonly nullable: true;
|
|
1095
|
+
};
|
|
1096
|
+
readonly value: {
|
|
1097
|
+
readonly nullable: true;
|
|
1098
|
+
};
|
|
1099
|
+
readonly type: {
|
|
1100
|
+
readonly type: "string";
|
|
1101
|
+
readonly nullable: true;
|
|
1102
|
+
};
|
|
1103
|
+
readonly advanced: {
|
|
1104
|
+
readonly type: "boolean";
|
|
1105
|
+
};
|
|
1106
|
+
readonly selectOptions: {
|
|
1107
|
+
readonly type: "array";
|
|
1108
|
+
readonly items: {
|
|
1109
|
+
readonly $ref: "#/components/schemas/SelectOption";
|
|
1110
|
+
};
|
|
1111
|
+
readonly nullable: true;
|
|
1112
|
+
};
|
|
1113
|
+
readonly selectOptionsProviderAction: {
|
|
1114
|
+
readonly type: "string";
|
|
1115
|
+
readonly nullable: true;
|
|
1116
|
+
};
|
|
1117
|
+
readonly section: {
|
|
1118
|
+
readonly type: "string";
|
|
1119
|
+
readonly nullable: true;
|
|
1120
|
+
};
|
|
1121
|
+
readonly hidden: {
|
|
1122
|
+
readonly type: "string";
|
|
1123
|
+
readonly nullable: true;
|
|
1124
|
+
};
|
|
1125
|
+
readonly privacy: {
|
|
1126
|
+
readonly $ref: "#/components/schemas/PrivacyLevel";
|
|
1127
|
+
};
|
|
1128
|
+
readonly placeholder: {
|
|
1129
|
+
readonly type: "string";
|
|
1130
|
+
readonly nullable: true;
|
|
1131
|
+
};
|
|
1132
|
+
readonly isFloat: {
|
|
1133
|
+
readonly type: "boolean";
|
|
1134
|
+
};
|
|
1135
|
+
};
|
|
1136
|
+
readonly additionalProperties: false;
|
|
1137
|
+
};
|
|
1138
|
+
export declare const FileDateTypeSchema: {
|
|
1139
|
+
readonly enum: readonly ["none", "cinemas", "release"];
|
|
1140
|
+
readonly type: "string";
|
|
1141
|
+
};
|
|
1142
|
+
export declare const HealthCheckResultSchema: {
|
|
1143
|
+
readonly enum: readonly ["ok", "notice", "warning", "error"];
|
|
1144
|
+
readonly type: "string";
|
|
1145
|
+
};
|
|
1146
|
+
export declare const HealthResourceSchema: {
|
|
1147
|
+
readonly type: "object";
|
|
1148
|
+
readonly properties: {
|
|
1149
|
+
readonly id: {
|
|
1150
|
+
readonly type: "integer";
|
|
1151
|
+
readonly format: "int32";
|
|
1152
|
+
};
|
|
1153
|
+
readonly source: {
|
|
1154
|
+
readonly type: "string";
|
|
1155
|
+
readonly nullable: true;
|
|
1156
|
+
};
|
|
1157
|
+
readonly type: {
|
|
1158
|
+
readonly $ref: "#/components/schemas/HealthCheckResult";
|
|
1159
|
+
};
|
|
1160
|
+
readonly message: {
|
|
1161
|
+
readonly type: "string";
|
|
1162
|
+
readonly nullable: true;
|
|
1163
|
+
};
|
|
1164
|
+
readonly wikiUrl: {
|
|
1165
|
+
readonly type: "string";
|
|
1166
|
+
readonly nullable: true;
|
|
1167
|
+
};
|
|
1168
|
+
};
|
|
1169
|
+
readonly additionalProperties: false;
|
|
1170
|
+
};
|
|
1171
|
+
export declare const HistoryResourceSchema: {
|
|
1172
|
+
readonly type: "object";
|
|
1173
|
+
readonly properties: {
|
|
1174
|
+
readonly id: {
|
|
1175
|
+
readonly type: "integer";
|
|
1176
|
+
readonly format: "int32";
|
|
1177
|
+
};
|
|
1178
|
+
readonly movieId: {
|
|
1179
|
+
readonly type: "integer";
|
|
1180
|
+
readonly format: "int32";
|
|
1181
|
+
};
|
|
1182
|
+
readonly sourceTitle: {
|
|
1183
|
+
readonly type: "string";
|
|
1184
|
+
readonly nullable: true;
|
|
1185
|
+
};
|
|
1186
|
+
readonly languages: {
|
|
1187
|
+
readonly type: "array";
|
|
1188
|
+
readonly items: {
|
|
1189
|
+
readonly $ref: "#/components/schemas/Language";
|
|
1190
|
+
};
|
|
1191
|
+
readonly nullable: true;
|
|
1192
|
+
};
|
|
1193
|
+
readonly quality: {
|
|
1194
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
1195
|
+
};
|
|
1196
|
+
readonly customFormats: {
|
|
1197
|
+
readonly type: "array";
|
|
1198
|
+
readonly items: {
|
|
1199
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
1200
|
+
};
|
|
1201
|
+
readonly nullable: true;
|
|
1202
|
+
};
|
|
1203
|
+
readonly customFormatScore: {
|
|
1204
|
+
readonly type: "integer";
|
|
1205
|
+
readonly format: "int32";
|
|
1206
|
+
};
|
|
1207
|
+
readonly qualityCutoffNotMet: {
|
|
1208
|
+
readonly type: "boolean";
|
|
1209
|
+
};
|
|
1210
|
+
readonly date: {
|
|
1211
|
+
readonly type: "string";
|
|
1212
|
+
readonly format: "date-time";
|
|
1213
|
+
};
|
|
1214
|
+
readonly downloadId: {
|
|
1215
|
+
readonly type: "string";
|
|
1216
|
+
readonly nullable: true;
|
|
1217
|
+
};
|
|
1218
|
+
readonly eventType: {
|
|
1219
|
+
readonly $ref: "#/components/schemas/MovieHistoryEventType";
|
|
1220
|
+
};
|
|
1221
|
+
readonly data: {
|
|
1222
|
+
readonly type: "object";
|
|
1223
|
+
readonly additionalProperties: {
|
|
1224
|
+
readonly type: "string";
|
|
1225
|
+
readonly nullable: true;
|
|
1226
|
+
};
|
|
1227
|
+
readonly nullable: true;
|
|
1228
|
+
};
|
|
1229
|
+
readonly movie: {
|
|
1230
|
+
readonly $ref: "#/components/schemas/MovieResource";
|
|
1231
|
+
};
|
|
1232
|
+
};
|
|
1233
|
+
readonly additionalProperties: false;
|
|
1234
|
+
};
|
|
1235
|
+
export declare const HistoryResourcePagingResourceSchema: {
|
|
1236
|
+
readonly type: "object";
|
|
1237
|
+
readonly properties: {
|
|
1238
|
+
readonly page: {
|
|
1239
|
+
readonly type: "integer";
|
|
1240
|
+
readonly format: "int32";
|
|
1241
|
+
};
|
|
1242
|
+
readonly pageSize: {
|
|
1243
|
+
readonly type: "integer";
|
|
1244
|
+
readonly format: "int32";
|
|
1245
|
+
};
|
|
1246
|
+
readonly sortKey: {
|
|
1247
|
+
readonly type: "string";
|
|
1248
|
+
readonly nullable: true;
|
|
1249
|
+
};
|
|
1250
|
+
readonly sortDirection: {
|
|
1251
|
+
readonly $ref: "#/components/schemas/SortDirection";
|
|
1252
|
+
};
|
|
1253
|
+
readonly totalRecords: {
|
|
1254
|
+
readonly type: "integer";
|
|
1255
|
+
readonly format: "int32";
|
|
1256
|
+
};
|
|
1257
|
+
readonly records: {
|
|
1258
|
+
readonly type: "array";
|
|
1259
|
+
readonly items: {
|
|
1260
|
+
readonly $ref: "#/components/schemas/HistoryResource";
|
|
1261
|
+
};
|
|
1262
|
+
readonly nullable: true;
|
|
1263
|
+
};
|
|
1264
|
+
};
|
|
1265
|
+
readonly additionalProperties: false;
|
|
1266
|
+
};
|
|
1267
|
+
export declare const HostConfigResourceSchema: {
|
|
1268
|
+
readonly type: "object";
|
|
1269
|
+
readonly properties: {
|
|
1270
|
+
readonly id: {
|
|
1271
|
+
readonly type: "integer";
|
|
1272
|
+
readonly format: "int32";
|
|
1273
|
+
};
|
|
1274
|
+
readonly bindAddress: {
|
|
1275
|
+
readonly type: "string";
|
|
1276
|
+
readonly nullable: true;
|
|
1277
|
+
};
|
|
1278
|
+
readonly port: {
|
|
1279
|
+
readonly type: "integer";
|
|
1280
|
+
readonly format: "int32";
|
|
1281
|
+
};
|
|
1282
|
+
readonly sslPort: {
|
|
1283
|
+
readonly type: "integer";
|
|
1284
|
+
readonly format: "int32";
|
|
1285
|
+
};
|
|
1286
|
+
readonly enableSsl: {
|
|
1287
|
+
readonly type: "boolean";
|
|
1288
|
+
};
|
|
1289
|
+
readonly launchBrowser: {
|
|
1290
|
+
readonly type: "boolean";
|
|
1291
|
+
};
|
|
1292
|
+
readonly authenticationMethod: {
|
|
1293
|
+
readonly $ref: "#/components/schemas/AuthenticationType";
|
|
1294
|
+
};
|
|
1295
|
+
readonly authenticationRequired: {
|
|
1296
|
+
readonly $ref: "#/components/schemas/AuthenticationRequiredType";
|
|
1297
|
+
};
|
|
1298
|
+
readonly analyticsEnabled: {
|
|
1299
|
+
readonly type: "boolean";
|
|
1300
|
+
};
|
|
1301
|
+
readonly username: {
|
|
1302
|
+
readonly type: "string";
|
|
1303
|
+
readonly nullable: true;
|
|
1304
|
+
};
|
|
1305
|
+
readonly password: {
|
|
1306
|
+
readonly type: "string";
|
|
1307
|
+
readonly nullable: true;
|
|
1308
|
+
};
|
|
1309
|
+
readonly passwordConfirmation: {
|
|
1310
|
+
readonly type: "string";
|
|
1311
|
+
readonly nullable: true;
|
|
1312
|
+
};
|
|
1313
|
+
readonly logLevel: {
|
|
1314
|
+
readonly type: "string";
|
|
1315
|
+
readonly nullable: true;
|
|
1316
|
+
};
|
|
1317
|
+
readonly logSizeLimit: {
|
|
1318
|
+
readonly type: "integer";
|
|
1319
|
+
readonly format: "int32";
|
|
1320
|
+
};
|
|
1321
|
+
readonly consoleLogLevel: {
|
|
1322
|
+
readonly type: "string";
|
|
1323
|
+
readonly nullable: true;
|
|
1324
|
+
};
|
|
1325
|
+
readonly branch: {
|
|
1326
|
+
readonly type: "string";
|
|
1327
|
+
readonly nullable: true;
|
|
1328
|
+
};
|
|
1329
|
+
readonly apiKey: {
|
|
1330
|
+
readonly type: "string";
|
|
1331
|
+
readonly nullable: true;
|
|
1332
|
+
};
|
|
1333
|
+
readonly sslCertPath: {
|
|
1334
|
+
readonly type: "string";
|
|
1335
|
+
readonly nullable: true;
|
|
1336
|
+
};
|
|
1337
|
+
readonly sslCertPassword: {
|
|
1338
|
+
readonly type: "string";
|
|
1339
|
+
readonly nullable: true;
|
|
1340
|
+
};
|
|
1341
|
+
readonly urlBase: {
|
|
1342
|
+
readonly type: "string";
|
|
1343
|
+
readonly nullable: true;
|
|
1344
|
+
};
|
|
1345
|
+
readonly instanceName: {
|
|
1346
|
+
readonly type: "string";
|
|
1347
|
+
readonly nullable: true;
|
|
1348
|
+
};
|
|
1349
|
+
readonly applicationUrl: {
|
|
1350
|
+
readonly type: "string";
|
|
1351
|
+
readonly nullable: true;
|
|
1352
|
+
};
|
|
1353
|
+
readonly updateAutomatically: {
|
|
1354
|
+
readonly type: "boolean";
|
|
1355
|
+
};
|
|
1356
|
+
readonly updateMechanism: {
|
|
1357
|
+
readonly $ref: "#/components/schemas/UpdateMechanism";
|
|
1358
|
+
};
|
|
1359
|
+
readonly updateScriptPath: {
|
|
1360
|
+
readonly type: "string";
|
|
1361
|
+
readonly nullable: true;
|
|
1362
|
+
};
|
|
1363
|
+
readonly proxyEnabled: {
|
|
1364
|
+
readonly type: "boolean";
|
|
1365
|
+
};
|
|
1366
|
+
readonly proxyType: {
|
|
1367
|
+
readonly $ref: "#/components/schemas/ProxyType";
|
|
1368
|
+
};
|
|
1369
|
+
readonly proxyHostname: {
|
|
1370
|
+
readonly type: "string";
|
|
1371
|
+
readonly nullable: true;
|
|
1372
|
+
};
|
|
1373
|
+
readonly proxyPort: {
|
|
1374
|
+
readonly type: "integer";
|
|
1375
|
+
readonly format: "int32";
|
|
1376
|
+
};
|
|
1377
|
+
readonly proxyUsername: {
|
|
1378
|
+
readonly type: "string";
|
|
1379
|
+
readonly nullable: true;
|
|
1380
|
+
};
|
|
1381
|
+
readonly proxyPassword: {
|
|
1382
|
+
readonly type: "string";
|
|
1383
|
+
readonly nullable: true;
|
|
1384
|
+
};
|
|
1385
|
+
readonly proxyBypassFilter: {
|
|
1386
|
+
readonly type: "string";
|
|
1387
|
+
readonly nullable: true;
|
|
1388
|
+
};
|
|
1389
|
+
readonly proxyBypassLocalAddresses: {
|
|
1390
|
+
readonly type: "boolean";
|
|
1391
|
+
};
|
|
1392
|
+
readonly certificateValidation: {
|
|
1393
|
+
readonly $ref: "#/components/schemas/CertificateValidationType";
|
|
1394
|
+
};
|
|
1395
|
+
readonly backupFolder: {
|
|
1396
|
+
readonly type: "string";
|
|
1397
|
+
readonly nullable: true;
|
|
1398
|
+
};
|
|
1399
|
+
readonly backupInterval: {
|
|
1400
|
+
readonly type: "integer";
|
|
1401
|
+
readonly format: "int32";
|
|
1402
|
+
};
|
|
1403
|
+
readonly backupRetention: {
|
|
1404
|
+
readonly type: "integer";
|
|
1405
|
+
readonly format: "int32";
|
|
1406
|
+
};
|
|
1407
|
+
readonly trustCgnatIpAddresses: {
|
|
1408
|
+
readonly type: "boolean";
|
|
1409
|
+
};
|
|
1410
|
+
};
|
|
1411
|
+
readonly additionalProperties: false;
|
|
1412
|
+
};
|
|
1413
|
+
export declare const ImportListBulkResourceSchema: {
|
|
1414
|
+
readonly type: "object";
|
|
1415
|
+
readonly properties: {
|
|
1416
|
+
readonly ids: {
|
|
1417
|
+
readonly type: "array";
|
|
1418
|
+
readonly items: {
|
|
1419
|
+
readonly type: "integer";
|
|
1420
|
+
readonly format: "int32";
|
|
1421
|
+
};
|
|
1422
|
+
readonly nullable: true;
|
|
1423
|
+
};
|
|
1424
|
+
readonly tags: {
|
|
1425
|
+
readonly type: "array";
|
|
1426
|
+
readonly items: {
|
|
1427
|
+
readonly type: "integer";
|
|
1428
|
+
readonly format: "int32";
|
|
1429
|
+
};
|
|
1430
|
+
readonly nullable: true;
|
|
1431
|
+
};
|
|
1432
|
+
readonly applyTags: {
|
|
1433
|
+
readonly $ref: "#/components/schemas/ApplyTags";
|
|
1434
|
+
};
|
|
1435
|
+
readonly enabled: {
|
|
1436
|
+
readonly type: "boolean";
|
|
1437
|
+
readonly nullable: true;
|
|
1438
|
+
};
|
|
1439
|
+
readonly enableAuto: {
|
|
1440
|
+
readonly type: "boolean";
|
|
1441
|
+
readonly nullable: true;
|
|
1442
|
+
};
|
|
1443
|
+
readonly rootFolderPath: {
|
|
1444
|
+
readonly type: "string";
|
|
1445
|
+
readonly nullable: true;
|
|
1446
|
+
};
|
|
1447
|
+
readonly qualityProfileId: {
|
|
1448
|
+
readonly type: "integer";
|
|
1449
|
+
readonly format: "int32";
|
|
1450
|
+
readonly nullable: true;
|
|
1451
|
+
};
|
|
1452
|
+
readonly minimumAvailability: {
|
|
1453
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
1454
|
+
};
|
|
1455
|
+
};
|
|
1456
|
+
readonly additionalProperties: false;
|
|
1457
|
+
};
|
|
1458
|
+
export declare const ImportListConfigResourceSchema: {
|
|
1459
|
+
readonly type: "object";
|
|
1460
|
+
readonly properties: {
|
|
1461
|
+
readonly id: {
|
|
1462
|
+
readonly type: "integer";
|
|
1463
|
+
readonly format: "int32";
|
|
1464
|
+
};
|
|
1465
|
+
readonly listSyncLevel: {
|
|
1466
|
+
readonly type: "string";
|
|
1467
|
+
readonly nullable: true;
|
|
1468
|
+
};
|
|
1469
|
+
};
|
|
1470
|
+
readonly additionalProperties: false;
|
|
1471
|
+
};
|
|
1472
|
+
export declare const ImportListExclusionBulkResourceSchema: {
|
|
1473
|
+
readonly type: "object";
|
|
1474
|
+
readonly properties: {
|
|
1475
|
+
readonly ids: {
|
|
1476
|
+
readonly uniqueItems: true;
|
|
1477
|
+
readonly type: "array";
|
|
1478
|
+
readonly items: {
|
|
1479
|
+
readonly type: "integer";
|
|
1480
|
+
readonly format: "int32";
|
|
1481
|
+
};
|
|
1482
|
+
readonly nullable: true;
|
|
1483
|
+
};
|
|
1484
|
+
};
|
|
1485
|
+
readonly additionalProperties: false;
|
|
1486
|
+
};
|
|
1487
|
+
export declare const ImportListExclusionResourceSchema: {
|
|
1488
|
+
readonly type: "object";
|
|
1489
|
+
readonly properties: {
|
|
1490
|
+
readonly id: {
|
|
1491
|
+
readonly type: "integer";
|
|
1492
|
+
readonly format: "int32";
|
|
1493
|
+
};
|
|
1494
|
+
readonly name: {
|
|
1495
|
+
readonly type: "string";
|
|
1496
|
+
readonly nullable: true;
|
|
1497
|
+
};
|
|
1498
|
+
readonly fields: {
|
|
1499
|
+
readonly type: "array";
|
|
1500
|
+
readonly items: {
|
|
1501
|
+
readonly $ref: "#/components/schemas/Field";
|
|
1502
|
+
};
|
|
1503
|
+
readonly nullable: true;
|
|
1504
|
+
};
|
|
1505
|
+
readonly implementationName: {
|
|
1506
|
+
readonly type: "string";
|
|
1507
|
+
readonly nullable: true;
|
|
1508
|
+
};
|
|
1509
|
+
readonly implementation: {
|
|
1510
|
+
readonly type: "string";
|
|
1511
|
+
readonly nullable: true;
|
|
1512
|
+
};
|
|
1513
|
+
readonly configContract: {
|
|
1514
|
+
readonly type: "string";
|
|
1515
|
+
readonly nullable: true;
|
|
1516
|
+
};
|
|
1517
|
+
readonly infoLink: {
|
|
1518
|
+
readonly type: "string";
|
|
1519
|
+
readonly nullable: true;
|
|
1520
|
+
};
|
|
1521
|
+
readonly message: {
|
|
1522
|
+
readonly $ref: "#/components/schemas/ProviderMessage";
|
|
1523
|
+
};
|
|
1524
|
+
readonly tags: {
|
|
1525
|
+
readonly uniqueItems: true;
|
|
1526
|
+
readonly type: "array";
|
|
1527
|
+
readonly items: {
|
|
1528
|
+
readonly type: "integer";
|
|
1529
|
+
readonly format: "int32";
|
|
1530
|
+
};
|
|
1531
|
+
readonly nullable: true;
|
|
1532
|
+
};
|
|
1533
|
+
readonly presets: {
|
|
1534
|
+
readonly type: "array";
|
|
1535
|
+
readonly items: {
|
|
1536
|
+
readonly $ref: "#/components/schemas/ImportListExclusionResource";
|
|
1537
|
+
};
|
|
1538
|
+
readonly nullable: true;
|
|
1539
|
+
};
|
|
1540
|
+
readonly tmdbId: {
|
|
1541
|
+
readonly type: "integer";
|
|
1542
|
+
readonly format: "int32";
|
|
1543
|
+
};
|
|
1544
|
+
readonly movieTitle: {
|
|
1545
|
+
readonly type: "string";
|
|
1546
|
+
readonly nullable: true;
|
|
1547
|
+
};
|
|
1548
|
+
readonly movieYear: {
|
|
1549
|
+
readonly type: "integer";
|
|
1550
|
+
readonly format: "int32";
|
|
1551
|
+
};
|
|
1552
|
+
};
|
|
1553
|
+
readonly additionalProperties: false;
|
|
1554
|
+
};
|
|
1555
|
+
export declare const ImportListExclusionResourcePagingResourceSchema: {
|
|
1556
|
+
readonly type: "object";
|
|
1557
|
+
readonly properties: {
|
|
1558
|
+
readonly page: {
|
|
1559
|
+
readonly type: "integer";
|
|
1560
|
+
readonly format: "int32";
|
|
1561
|
+
};
|
|
1562
|
+
readonly pageSize: {
|
|
1563
|
+
readonly type: "integer";
|
|
1564
|
+
readonly format: "int32";
|
|
1565
|
+
};
|
|
1566
|
+
readonly sortKey: {
|
|
1567
|
+
readonly type: "string";
|
|
1568
|
+
readonly nullable: true;
|
|
1569
|
+
};
|
|
1570
|
+
readonly sortDirection: {
|
|
1571
|
+
readonly $ref: "#/components/schemas/SortDirection";
|
|
1572
|
+
};
|
|
1573
|
+
readonly totalRecords: {
|
|
1574
|
+
readonly type: "integer";
|
|
1575
|
+
readonly format: "int32";
|
|
1576
|
+
};
|
|
1577
|
+
readonly records: {
|
|
1578
|
+
readonly type: "array";
|
|
1579
|
+
readonly items: {
|
|
1580
|
+
readonly $ref: "#/components/schemas/ImportListExclusionResource";
|
|
1581
|
+
};
|
|
1582
|
+
readonly nullable: true;
|
|
1583
|
+
};
|
|
1584
|
+
};
|
|
1585
|
+
readonly additionalProperties: false;
|
|
1586
|
+
};
|
|
1587
|
+
export declare const ImportListResourceSchema: {
|
|
1588
|
+
readonly type: "object";
|
|
1589
|
+
readonly properties: {
|
|
1590
|
+
readonly id: {
|
|
1591
|
+
readonly type: "integer";
|
|
1592
|
+
readonly format: "int32";
|
|
1593
|
+
};
|
|
1594
|
+
readonly name: {
|
|
1595
|
+
readonly type: "string";
|
|
1596
|
+
readonly nullable: true;
|
|
1597
|
+
};
|
|
1598
|
+
readonly fields: {
|
|
1599
|
+
readonly type: "array";
|
|
1600
|
+
readonly items: {
|
|
1601
|
+
readonly $ref: "#/components/schemas/Field";
|
|
1602
|
+
};
|
|
1603
|
+
readonly nullable: true;
|
|
1604
|
+
};
|
|
1605
|
+
readonly implementationName: {
|
|
1606
|
+
readonly type: "string";
|
|
1607
|
+
readonly nullable: true;
|
|
1608
|
+
};
|
|
1609
|
+
readonly implementation: {
|
|
1610
|
+
readonly type: "string";
|
|
1611
|
+
readonly nullable: true;
|
|
1612
|
+
};
|
|
1613
|
+
readonly configContract: {
|
|
1614
|
+
readonly type: "string";
|
|
1615
|
+
readonly nullable: true;
|
|
1616
|
+
};
|
|
1617
|
+
readonly infoLink: {
|
|
1618
|
+
readonly type: "string";
|
|
1619
|
+
readonly nullable: true;
|
|
1620
|
+
};
|
|
1621
|
+
readonly message: {
|
|
1622
|
+
readonly $ref: "#/components/schemas/ProviderMessage";
|
|
1623
|
+
};
|
|
1624
|
+
readonly tags: {
|
|
1625
|
+
readonly uniqueItems: true;
|
|
1626
|
+
readonly type: "array";
|
|
1627
|
+
readonly items: {
|
|
1628
|
+
readonly type: "integer";
|
|
1629
|
+
readonly format: "int32";
|
|
1630
|
+
};
|
|
1631
|
+
readonly nullable: true;
|
|
1632
|
+
};
|
|
1633
|
+
readonly presets: {
|
|
1634
|
+
readonly type: "array";
|
|
1635
|
+
readonly items: {
|
|
1636
|
+
readonly $ref: "#/components/schemas/ImportListResource";
|
|
1637
|
+
};
|
|
1638
|
+
readonly nullable: true;
|
|
1639
|
+
};
|
|
1640
|
+
readonly enabled: {
|
|
1641
|
+
readonly type: "boolean";
|
|
1642
|
+
};
|
|
1643
|
+
readonly enableAuto: {
|
|
1644
|
+
readonly type: "boolean";
|
|
1645
|
+
};
|
|
1646
|
+
readonly monitor: {
|
|
1647
|
+
readonly $ref: "#/components/schemas/MonitorTypes";
|
|
1648
|
+
};
|
|
1649
|
+
readonly rootFolderPath: {
|
|
1650
|
+
readonly type: "string";
|
|
1651
|
+
readonly nullable: true;
|
|
1652
|
+
};
|
|
1653
|
+
readonly qualityProfileId: {
|
|
1654
|
+
readonly type: "integer";
|
|
1655
|
+
readonly format: "int32";
|
|
1656
|
+
};
|
|
1657
|
+
readonly searchOnAdd: {
|
|
1658
|
+
readonly type: "boolean";
|
|
1659
|
+
};
|
|
1660
|
+
readonly minimumAvailability: {
|
|
1661
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
1662
|
+
};
|
|
1663
|
+
readonly listType: {
|
|
1664
|
+
readonly $ref: "#/components/schemas/ImportListType";
|
|
1665
|
+
};
|
|
1666
|
+
readonly listOrder: {
|
|
1667
|
+
readonly type: "integer";
|
|
1668
|
+
readonly format: "int32";
|
|
1669
|
+
};
|
|
1670
|
+
readonly minRefreshInterval: {
|
|
1671
|
+
readonly type: "string";
|
|
1672
|
+
readonly format: "date-span";
|
|
1673
|
+
};
|
|
1674
|
+
};
|
|
1675
|
+
readonly additionalProperties: false;
|
|
1676
|
+
};
|
|
1677
|
+
export declare const ImportListTypeSchema: {
|
|
1678
|
+
readonly enum: readonly ["program", "tmdb", "trakt", "plex", "simkl", "other", "advanced"];
|
|
1679
|
+
readonly type: "string";
|
|
1680
|
+
};
|
|
1681
|
+
export declare const ImportRejectionResourceSchema: {
|
|
1682
|
+
readonly type: "object";
|
|
1683
|
+
readonly properties: {
|
|
1684
|
+
readonly reason: {
|
|
1685
|
+
readonly type: "string";
|
|
1686
|
+
readonly nullable: true;
|
|
1687
|
+
};
|
|
1688
|
+
readonly type: {
|
|
1689
|
+
readonly $ref: "#/components/schemas/RejectionType";
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1692
|
+
readonly additionalProperties: false;
|
|
1693
|
+
};
|
|
1694
|
+
export declare const IndexerBulkResourceSchema: {
|
|
1695
|
+
readonly type: "object";
|
|
1696
|
+
readonly properties: {
|
|
1697
|
+
readonly ids: {
|
|
1698
|
+
readonly type: "array";
|
|
1699
|
+
readonly items: {
|
|
1700
|
+
readonly type: "integer";
|
|
1701
|
+
readonly format: "int32";
|
|
1702
|
+
};
|
|
1703
|
+
readonly nullable: true;
|
|
1704
|
+
};
|
|
1705
|
+
readonly tags: {
|
|
1706
|
+
readonly type: "array";
|
|
1707
|
+
readonly items: {
|
|
1708
|
+
readonly type: "integer";
|
|
1709
|
+
readonly format: "int32";
|
|
1710
|
+
};
|
|
1711
|
+
readonly nullable: true;
|
|
1712
|
+
};
|
|
1713
|
+
readonly applyTags: {
|
|
1714
|
+
readonly $ref: "#/components/schemas/ApplyTags";
|
|
1715
|
+
};
|
|
1716
|
+
readonly enableRss: {
|
|
1717
|
+
readonly type: "boolean";
|
|
1718
|
+
readonly nullable: true;
|
|
1719
|
+
};
|
|
1720
|
+
readonly enableAutomaticSearch: {
|
|
1721
|
+
readonly type: "boolean";
|
|
1722
|
+
readonly nullable: true;
|
|
1723
|
+
};
|
|
1724
|
+
readonly enableInteractiveSearch: {
|
|
1725
|
+
readonly type: "boolean";
|
|
1726
|
+
readonly nullable: true;
|
|
1727
|
+
};
|
|
1728
|
+
readonly priority: {
|
|
1729
|
+
readonly type: "integer";
|
|
1730
|
+
readonly format: "int32";
|
|
1731
|
+
readonly nullable: true;
|
|
1732
|
+
};
|
|
1733
|
+
};
|
|
1734
|
+
readonly additionalProperties: false;
|
|
1735
|
+
};
|
|
1736
|
+
export declare const IndexerConfigResourceSchema: {
|
|
1737
|
+
readonly type: "object";
|
|
1738
|
+
readonly properties: {
|
|
1739
|
+
readonly id: {
|
|
1740
|
+
readonly type: "integer";
|
|
1741
|
+
readonly format: "int32";
|
|
1742
|
+
};
|
|
1743
|
+
readonly minimumAge: {
|
|
1744
|
+
readonly type: "integer";
|
|
1745
|
+
readonly format: "int32";
|
|
1746
|
+
};
|
|
1747
|
+
readonly maximumSize: {
|
|
1748
|
+
readonly type: "integer";
|
|
1749
|
+
readonly format: "int32";
|
|
1750
|
+
};
|
|
1751
|
+
readonly retention: {
|
|
1752
|
+
readonly type: "integer";
|
|
1753
|
+
readonly format: "int32";
|
|
1754
|
+
};
|
|
1755
|
+
readonly rssSyncInterval: {
|
|
1756
|
+
readonly type: "integer";
|
|
1757
|
+
readonly format: "int32";
|
|
1758
|
+
};
|
|
1759
|
+
readonly preferIndexerFlags: {
|
|
1760
|
+
readonly type: "boolean";
|
|
1761
|
+
};
|
|
1762
|
+
readonly availabilityDelay: {
|
|
1763
|
+
readonly type: "integer";
|
|
1764
|
+
readonly format: "int32";
|
|
1765
|
+
};
|
|
1766
|
+
readonly allowHardcodedSubs: {
|
|
1767
|
+
readonly type: "boolean";
|
|
1768
|
+
};
|
|
1769
|
+
readonly whitelistedHardcodedSubs: {
|
|
1770
|
+
readonly type: "string";
|
|
1771
|
+
readonly nullable: true;
|
|
1772
|
+
};
|
|
1773
|
+
};
|
|
1774
|
+
readonly additionalProperties: false;
|
|
1775
|
+
};
|
|
1776
|
+
export declare const IndexerFlagResourceSchema: {
|
|
1777
|
+
readonly type: "object";
|
|
1778
|
+
readonly properties: {
|
|
1779
|
+
readonly id: {
|
|
1780
|
+
readonly type: "integer";
|
|
1781
|
+
readonly format: "int32";
|
|
1782
|
+
};
|
|
1783
|
+
readonly name: {
|
|
1784
|
+
readonly type: "string";
|
|
1785
|
+
readonly nullable: true;
|
|
1786
|
+
};
|
|
1787
|
+
readonly nameLower: {
|
|
1788
|
+
readonly type: "string";
|
|
1789
|
+
readonly nullable: true;
|
|
1790
|
+
readonly readOnly: true;
|
|
1791
|
+
};
|
|
1792
|
+
};
|
|
1793
|
+
readonly additionalProperties: false;
|
|
1794
|
+
};
|
|
1795
|
+
export declare const IndexerResourceSchema: {
|
|
1796
|
+
readonly type: "object";
|
|
1797
|
+
readonly properties: {
|
|
1798
|
+
readonly id: {
|
|
1799
|
+
readonly type: "integer";
|
|
1800
|
+
readonly format: "int32";
|
|
1801
|
+
};
|
|
1802
|
+
readonly name: {
|
|
1803
|
+
readonly type: "string";
|
|
1804
|
+
readonly nullable: true;
|
|
1805
|
+
};
|
|
1806
|
+
readonly fields: {
|
|
1807
|
+
readonly type: "array";
|
|
1808
|
+
readonly items: {
|
|
1809
|
+
readonly $ref: "#/components/schemas/Field";
|
|
1810
|
+
};
|
|
1811
|
+
readonly nullable: true;
|
|
1812
|
+
};
|
|
1813
|
+
readonly implementationName: {
|
|
1814
|
+
readonly type: "string";
|
|
1815
|
+
readonly nullable: true;
|
|
1816
|
+
};
|
|
1817
|
+
readonly implementation: {
|
|
1818
|
+
readonly type: "string";
|
|
1819
|
+
readonly nullable: true;
|
|
1820
|
+
};
|
|
1821
|
+
readonly configContract: {
|
|
1822
|
+
readonly type: "string";
|
|
1823
|
+
readonly nullable: true;
|
|
1824
|
+
};
|
|
1825
|
+
readonly infoLink: {
|
|
1826
|
+
readonly type: "string";
|
|
1827
|
+
readonly nullable: true;
|
|
1828
|
+
};
|
|
1829
|
+
readonly message: {
|
|
1830
|
+
readonly $ref: "#/components/schemas/ProviderMessage";
|
|
1831
|
+
};
|
|
1832
|
+
readonly tags: {
|
|
1833
|
+
readonly uniqueItems: true;
|
|
1834
|
+
readonly type: "array";
|
|
1835
|
+
readonly items: {
|
|
1836
|
+
readonly type: "integer";
|
|
1837
|
+
readonly format: "int32";
|
|
1838
|
+
};
|
|
1839
|
+
readonly nullable: true;
|
|
1840
|
+
};
|
|
1841
|
+
readonly presets: {
|
|
1842
|
+
readonly type: "array";
|
|
1843
|
+
readonly items: {
|
|
1844
|
+
readonly $ref: "#/components/schemas/IndexerResource";
|
|
1845
|
+
};
|
|
1846
|
+
readonly nullable: true;
|
|
1847
|
+
};
|
|
1848
|
+
readonly enableRss: {
|
|
1849
|
+
readonly type: "boolean";
|
|
1850
|
+
};
|
|
1851
|
+
readonly enableAutomaticSearch: {
|
|
1852
|
+
readonly type: "boolean";
|
|
1853
|
+
};
|
|
1854
|
+
readonly enableInteractiveSearch: {
|
|
1855
|
+
readonly type: "boolean";
|
|
1856
|
+
};
|
|
1857
|
+
readonly supportsRss: {
|
|
1858
|
+
readonly type: "boolean";
|
|
1859
|
+
};
|
|
1860
|
+
readonly supportsSearch: {
|
|
1861
|
+
readonly type: "boolean";
|
|
1862
|
+
};
|
|
1863
|
+
readonly protocol: {
|
|
1864
|
+
readonly $ref: "#/components/schemas/DownloadProtocol";
|
|
1865
|
+
};
|
|
1866
|
+
readonly priority: {
|
|
1867
|
+
readonly type: "integer";
|
|
1868
|
+
readonly format: "int32";
|
|
1869
|
+
};
|
|
1870
|
+
readonly downloadClientId: {
|
|
1871
|
+
readonly type: "integer";
|
|
1872
|
+
readonly format: "int32";
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
readonly additionalProperties: false;
|
|
1876
|
+
};
|
|
1877
|
+
export declare const LanguageSchema: {
|
|
1878
|
+
readonly type: "object";
|
|
1879
|
+
readonly properties: {
|
|
1880
|
+
readonly id: {
|
|
1881
|
+
readonly type: "integer";
|
|
1882
|
+
readonly format: "int32";
|
|
1883
|
+
};
|
|
1884
|
+
readonly name: {
|
|
1885
|
+
readonly type: "string";
|
|
1886
|
+
readonly nullable: true;
|
|
1887
|
+
};
|
|
1888
|
+
};
|
|
1889
|
+
readonly additionalProperties: false;
|
|
1890
|
+
};
|
|
1891
|
+
export declare const LanguageResourceSchema: {
|
|
1892
|
+
readonly type: "object";
|
|
1893
|
+
readonly properties: {
|
|
1894
|
+
readonly id: {
|
|
1895
|
+
readonly type: "integer";
|
|
1896
|
+
readonly format: "int32";
|
|
1897
|
+
};
|
|
1898
|
+
readonly name: {
|
|
1899
|
+
readonly type: "string";
|
|
1900
|
+
readonly nullable: true;
|
|
1901
|
+
};
|
|
1902
|
+
readonly nameLower: {
|
|
1903
|
+
readonly type: "string";
|
|
1904
|
+
readonly nullable: true;
|
|
1905
|
+
readonly readOnly: true;
|
|
1906
|
+
};
|
|
1907
|
+
};
|
|
1908
|
+
readonly additionalProperties: false;
|
|
1909
|
+
};
|
|
1910
|
+
export declare const LocalizationLanguageResourceSchema: {
|
|
1911
|
+
readonly type: "object";
|
|
1912
|
+
readonly properties: {
|
|
1913
|
+
readonly identifier: {
|
|
1914
|
+
readonly type: "string";
|
|
1915
|
+
readonly nullable: true;
|
|
1916
|
+
};
|
|
1917
|
+
};
|
|
1918
|
+
readonly additionalProperties: false;
|
|
1919
|
+
};
|
|
1920
|
+
export declare const LogFileResourceSchema: {
|
|
1921
|
+
readonly type: "object";
|
|
1922
|
+
readonly properties: {
|
|
1923
|
+
readonly id: {
|
|
1924
|
+
readonly type: "integer";
|
|
1925
|
+
readonly format: "int32";
|
|
1926
|
+
};
|
|
1927
|
+
readonly filename: {
|
|
1928
|
+
readonly type: "string";
|
|
1929
|
+
readonly nullable: true;
|
|
1930
|
+
};
|
|
1931
|
+
readonly lastWriteTime: {
|
|
1932
|
+
readonly type: "string";
|
|
1933
|
+
readonly format: "date-time";
|
|
1934
|
+
};
|
|
1935
|
+
readonly contentsUrl: {
|
|
1936
|
+
readonly type: "string";
|
|
1937
|
+
readonly nullable: true;
|
|
1938
|
+
};
|
|
1939
|
+
readonly downloadUrl: {
|
|
1940
|
+
readonly type: "string";
|
|
1941
|
+
readonly nullable: true;
|
|
1942
|
+
};
|
|
1943
|
+
};
|
|
1944
|
+
readonly additionalProperties: false;
|
|
1945
|
+
};
|
|
1946
|
+
export declare const LogResourceSchema: {
|
|
1947
|
+
readonly type: "object";
|
|
1948
|
+
readonly properties: {
|
|
1949
|
+
readonly id: {
|
|
1950
|
+
readonly type: "integer";
|
|
1951
|
+
readonly format: "int32";
|
|
1952
|
+
};
|
|
1953
|
+
readonly time: {
|
|
1954
|
+
readonly type: "string";
|
|
1955
|
+
readonly format: "date-time";
|
|
1956
|
+
};
|
|
1957
|
+
readonly exception: {
|
|
1958
|
+
readonly type: "string";
|
|
1959
|
+
readonly nullable: true;
|
|
1960
|
+
};
|
|
1961
|
+
readonly exceptionType: {
|
|
1962
|
+
readonly type: "string";
|
|
1963
|
+
readonly nullable: true;
|
|
1964
|
+
};
|
|
1965
|
+
readonly level: {
|
|
1966
|
+
readonly type: "string";
|
|
1967
|
+
readonly nullable: true;
|
|
1968
|
+
};
|
|
1969
|
+
readonly logger: {
|
|
1970
|
+
readonly type: "string";
|
|
1971
|
+
readonly nullable: true;
|
|
1972
|
+
};
|
|
1973
|
+
readonly message: {
|
|
1974
|
+
readonly type: "string";
|
|
1975
|
+
readonly nullable: true;
|
|
1976
|
+
};
|
|
1977
|
+
readonly method: {
|
|
1978
|
+
readonly type: "string";
|
|
1979
|
+
readonly nullable: true;
|
|
1980
|
+
};
|
|
1981
|
+
};
|
|
1982
|
+
readonly additionalProperties: false;
|
|
1983
|
+
};
|
|
1984
|
+
export declare const LogResourcePagingResourceSchema: {
|
|
1985
|
+
readonly type: "object";
|
|
1986
|
+
readonly properties: {
|
|
1987
|
+
readonly page: {
|
|
1988
|
+
readonly type: "integer";
|
|
1989
|
+
readonly format: "int32";
|
|
1990
|
+
};
|
|
1991
|
+
readonly pageSize: {
|
|
1992
|
+
readonly type: "integer";
|
|
1993
|
+
readonly format: "int32";
|
|
1994
|
+
};
|
|
1995
|
+
readonly sortKey: {
|
|
1996
|
+
readonly type: "string";
|
|
1997
|
+
readonly nullable: true;
|
|
1998
|
+
};
|
|
1999
|
+
readonly sortDirection: {
|
|
2000
|
+
readonly $ref: "#/components/schemas/SortDirection";
|
|
2001
|
+
};
|
|
2002
|
+
readonly totalRecords: {
|
|
2003
|
+
readonly type: "integer";
|
|
2004
|
+
readonly format: "int32";
|
|
2005
|
+
};
|
|
2006
|
+
readonly records: {
|
|
2007
|
+
readonly type: "array";
|
|
2008
|
+
readonly items: {
|
|
2009
|
+
readonly $ref: "#/components/schemas/LogResource";
|
|
2010
|
+
};
|
|
2011
|
+
readonly nullable: true;
|
|
2012
|
+
};
|
|
2013
|
+
};
|
|
2014
|
+
readonly additionalProperties: false;
|
|
2015
|
+
};
|
|
2016
|
+
export declare const ManualImportReprocessResourceSchema: {
|
|
2017
|
+
readonly type: "object";
|
|
2018
|
+
readonly properties: {
|
|
2019
|
+
readonly id: {
|
|
2020
|
+
readonly type: "integer";
|
|
2021
|
+
readonly format: "int32";
|
|
2022
|
+
};
|
|
2023
|
+
readonly path: {
|
|
2024
|
+
readonly type: "string";
|
|
2025
|
+
readonly nullable: true;
|
|
2026
|
+
};
|
|
2027
|
+
readonly movieId: {
|
|
2028
|
+
readonly type: "integer";
|
|
2029
|
+
readonly format: "int32";
|
|
2030
|
+
};
|
|
2031
|
+
readonly movie: {
|
|
2032
|
+
readonly $ref: "#/components/schemas/MovieResource";
|
|
2033
|
+
};
|
|
2034
|
+
readonly quality: {
|
|
2035
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
2036
|
+
};
|
|
2037
|
+
readonly languages: {
|
|
2038
|
+
readonly type: "array";
|
|
2039
|
+
readonly items: {
|
|
2040
|
+
readonly $ref: "#/components/schemas/Language";
|
|
2041
|
+
};
|
|
2042
|
+
readonly nullable: true;
|
|
2043
|
+
};
|
|
2044
|
+
readonly releaseGroup: {
|
|
2045
|
+
readonly type: "string";
|
|
2046
|
+
readonly nullable: true;
|
|
2047
|
+
};
|
|
2048
|
+
readonly downloadId: {
|
|
2049
|
+
readonly type: "string";
|
|
2050
|
+
readonly nullable: true;
|
|
2051
|
+
};
|
|
2052
|
+
readonly customFormats: {
|
|
2053
|
+
readonly type: "array";
|
|
2054
|
+
readonly items: {
|
|
2055
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
2056
|
+
};
|
|
2057
|
+
readonly nullable: true;
|
|
2058
|
+
};
|
|
2059
|
+
readonly customFormatScore: {
|
|
2060
|
+
readonly type: "integer";
|
|
2061
|
+
readonly format: "int32";
|
|
2062
|
+
};
|
|
2063
|
+
readonly indexerFlags: {
|
|
2064
|
+
readonly type: "integer";
|
|
2065
|
+
readonly format: "int32";
|
|
2066
|
+
};
|
|
2067
|
+
readonly rejections: {
|
|
2068
|
+
readonly type: "array";
|
|
2069
|
+
readonly items: {
|
|
2070
|
+
readonly $ref: "#/components/schemas/ImportRejectionResource";
|
|
2071
|
+
};
|
|
2072
|
+
readonly nullable: true;
|
|
2073
|
+
};
|
|
2074
|
+
};
|
|
2075
|
+
readonly additionalProperties: false;
|
|
2076
|
+
};
|
|
2077
|
+
export declare const ManualImportResourceSchema: {
|
|
2078
|
+
readonly type: "object";
|
|
2079
|
+
readonly properties: {
|
|
2080
|
+
readonly id: {
|
|
2081
|
+
readonly type: "integer";
|
|
2082
|
+
readonly format: "int32";
|
|
2083
|
+
};
|
|
2084
|
+
readonly path: {
|
|
2085
|
+
readonly type: "string";
|
|
2086
|
+
readonly nullable: true;
|
|
2087
|
+
};
|
|
2088
|
+
readonly relativePath: {
|
|
2089
|
+
readonly type: "string";
|
|
2090
|
+
readonly nullable: true;
|
|
2091
|
+
};
|
|
2092
|
+
readonly folderName: {
|
|
2093
|
+
readonly type: "string";
|
|
2094
|
+
readonly nullable: true;
|
|
2095
|
+
};
|
|
2096
|
+
readonly name: {
|
|
2097
|
+
readonly type: "string";
|
|
2098
|
+
readonly nullable: true;
|
|
2099
|
+
};
|
|
2100
|
+
readonly size: {
|
|
2101
|
+
readonly type: "integer";
|
|
2102
|
+
readonly format: "int64";
|
|
2103
|
+
};
|
|
2104
|
+
readonly movie: {
|
|
2105
|
+
readonly $ref: "#/components/schemas/MovieResource";
|
|
2106
|
+
};
|
|
2107
|
+
readonly movieFileId: {
|
|
2108
|
+
readonly type: "integer";
|
|
2109
|
+
readonly format: "int32";
|
|
2110
|
+
readonly nullable: true;
|
|
2111
|
+
};
|
|
2112
|
+
readonly releaseGroup: {
|
|
2113
|
+
readonly type: "string";
|
|
2114
|
+
readonly nullable: true;
|
|
2115
|
+
};
|
|
2116
|
+
readonly quality: {
|
|
2117
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
2118
|
+
};
|
|
2119
|
+
readonly languages: {
|
|
2120
|
+
readonly type: "array";
|
|
2121
|
+
readonly items: {
|
|
2122
|
+
readonly $ref: "#/components/schemas/Language";
|
|
2123
|
+
};
|
|
2124
|
+
readonly nullable: true;
|
|
2125
|
+
};
|
|
2126
|
+
readonly qualityWeight: {
|
|
2127
|
+
readonly type: "integer";
|
|
2128
|
+
readonly format: "int32";
|
|
2129
|
+
};
|
|
2130
|
+
readonly downloadId: {
|
|
2131
|
+
readonly type: "string";
|
|
2132
|
+
readonly nullable: true;
|
|
2133
|
+
};
|
|
2134
|
+
readonly customFormats: {
|
|
2135
|
+
readonly type: "array";
|
|
2136
|
+
readonly items: {
|
|
2137
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
2138
|
+
};
|
|
2139
|
+
readonly nullable: true;
|
|
2140
|
+
};
|
|
2141
|
+
readonly customFormatScore: {
|
|
2142
|
+
readonly type: "integer";
|
|
2143
|
+
readonly format: "int32";
|
|
2144
|
+
};
|
|
2145
|
+
readonly indexerFlags: {
|
|
2146
|
+
readonly type: "integer";
|
|
2147
|
+
readonly format: "int32";
|
|
2148
|
+
};
|
|
2149
|
+
readonly rejections: {
|
|
2150
|
+
readonly type: "array";
|
|
2151
|
+
readonly items: {
|
|
2152
|
+
readonly $ref: "#/components/schemas/ImportRejectionResource";
|
|
2153
|
+
};
|
|
2154
|
+
readonly nullable: true;
|
|
2155
|
+
};
|
|
2156
|
+
};
|
|
2157
|
+
readonly additionalProperties: false;
|
|
2158
|
+
};
|
|
2159
|
+
export declare const MediaCoverSchema: {
|
|
2160
|
+
readonly type: "object";
|
|
2161
|
+
readonly properties: {
|
|
2162
|
+
readonly coverType: {
|
|
2163
|
+
readonly $ref: "#/components/schemas/MediaCoverTypes";
|
|
2164
|
+
};
|
|
2165
|
+
readonly url: {
|
|
2166
|
+
readonly type: "string";
|
|
2167
|
+
readonly nullable: true;
|
|
2168
|
+
};
|
|
2169
|
+
readonly remoteUrl: {
|
|
2170
|
+
readonly type: "string";
|
|
2171
|
+
readonly nullable: true;
|
|
2172
|
+
};
|
|
2173
|
+
};
|
|
2174
|
+
readonly additionalProperties: false;
|
|
2175
|
+
};
|
|
2176
|
+
export declare const MediaCoverTypesSchema: {
|
|
2177
|
+
readonly enum: readonly ["unknown", "poster", "banner", "fanart", "screenshot", "headshot", "clearlogo"];
|
|
2178
|
+
readonly type: "string";
|
|
2179
|
+
};
|
|
2180
|
+
export declare const MediaInfoResourceSchema: {
|
|
2181
|
+
readonly type: "object";
|
|
2182
|
+
readonly properties: {
|
|
2183
|
+
readonly id: {
|
|
2184
|
+
readonly type: "integer";
|
|
2185
|
+
readonly format: "int32";
|
|
2186
|
+
};
|
|
2187
|
+
readonly audioBitrate: {
|
|
2188
|
+
readonly type: "integer";
|
|
2189
|
+
readonly format: "int64";
|
|
2190
|
+
};
|
|
2191
|
+
readonly audioChannels: {
|
|
2192
|
+
readonly type: "number";
|
|
2193
|
+
readonly format: "double";
|
|
2194
|
+
};
|
|
2195
|
+
readonly audioCodec: {
|
|
2196
|
+
readonly type: "string";
|
|
2197
|
+
readonly nullable: true;
|
|
2198
|
+
};
|
|
2199
|
+
readonly audioLanguages: {
|
|
2200
|
+
readonly type: "string";
|
|
2201
|
+
readonly nullable: true;
|
|
2202
|
+
};
|
|
2203
|
+
readonly audioStreamCount: {
|
|
2204
|
+
readonly type: "integer";
|
|
2205
|
+
readonly format: "int32";
|
|
2206
|
+
};
|
|
2207
|
+
readonly videoBitDepth: {
|
|
2208
|
+
readonly type: "integer";
|
|
2209
|
+
readonly format: "int32";
|
|
2210
|
+
};
|
|
2211
|
+
readonly videoBitrate: {
|
|
2212
|
+
readonly type: "integer";
|
|
2213
|
+
readonly format: "int64";
|
|
2214
|
+
};
|
|
2215
|
+
readonly videoCodec: {
|
|
2216
|
+
readonly type: "string";
|
|
2217
|
+
readonly nullable: true;
|
|
2218
|
+
};
|
|
2219
|
+
readonly videoFps: {
|
|
2220
|
+
readonly type: "number";
|
|
2221
|
+
readonly format: "double";
|
|
2222
|
+
};
|
|
2223
|
+
readonly videoDynamicRange: {
|
|
2224
|
+
readonly type: "string";
|
|
2225
|
+
readonly nullable: true;
|
|
2226
|
+
};
|
|
2227
|
+
readonly videoDynamicRangeType: {
|
|
2228
|
+
readonly type: "string";
|
|
2229
|
+
readonly nullable: true;
|
|
2230
|
+
};
|
|
2231
|
+
readonly resolution: {
|
|
2232
|
+
readonly type: "string";
|
|
2233
|
+
readonly nullable: true;
|
|
2234
|
+
};
|
|
2235
|
+
readonly runTime: {
|
|
2236
|
+
readonly type: "string";
|
|
2237
|
+
readonly nullable: true;
|
|
2238
|
+
};
|
|
2239
|
+
readonly scanType: {
|
|
2240
|
+
readonly type: "string";
|
|
2241
|
+
readonly nullable: true;
|
|
2242
|
+
};
|
|
2243
|
+
readonly subtitles: {
|
|
2244
|
+
readonly type: "string";
|
|
2245
|
+
readonly nullable: true;
|
|
2246
|
+
};
|
|
2247
|
+
};
|
|
2248
|
+
readonly additionalProperties: false;
|
|
2249
|
+
};
|
|
2250
|
+
export declare const MediaManagementConfigResourceSchema: {
|
|
2251
|
+
readonly type: "object";
|
|
2252
|
+
readonly properties: {
|
|
2253
|
+
readonly id: {
|
|
2254
|
+
readonly type: "integer";
|
|
2255
|
+
readonly format: "int32";
|
|
2256
|
+
};
|
|
2257
|
+
readonly autoUnmonitorPreviouslyDownloadedMovies: {
|
|
2258
|
+
readonly type: "boolean";
|
|
2259
|
+
};
|
|
2260
|
+
readonly recycleBin: {
|
|
2261
|
+
readonly type: "string";
|
|
2262
|
+
readonly nullable: true;
|
|
2263
|
+
};
|
|
2264
|
+
readonly recycleBinCleanupDays: {
|
|
2265
|
+
readonly type: "integer";
|
|
2266
|
+
readonly format: "int32";
|
|
2267
|
+
};
|
|
2268
|
+
readonly downloadPropersAndRepacks: {
|
|
2269
|
+
readonly $ref: "#/components/schemas/ProperDownloadTypes";
|
|
2270
|
+
};
|
|
2271
|
+
readonly createEmptyMovieFolders: {
|
|
2272
|
+
readonly type: "boolean";
|
|
2273
|
+
};
|
|
2274
|
+
readonly deleteEmptyFolders: {
|
|
2275
|
+
readonly type: "boolean";
|
|
2276
|
+
};
|
|
2277
|
+
readonly fileDate: {
|
|
2278
|
+
readonly $ref: "#/components/schemas/FileDateType";
|
|
2279
|
+
};
|
|
2280
|
+
readonly rescanAfterRefresh: {
|
|
2281
|
+
readonly $ref: "#/components/schemas/RescanAfterRefreshType";
|
|
2282
|
+
};
|
|
2283
|
+
readonly autoRenameFolders: {
|
|
2284
|
+
readonly type: "boolean";
|
|
2285
|
+
};
|
|
2286
|
+
readonly pathsDefaultStatic: {
|
|
2287
|
+
readonly type: "boolean";
|
|
2288
|
+
};
|
|
2289
|
+
readonly setPermissionsLinux: {
|
|
2290
|
+
readonly type: "boolean";
|
|
2291
|
+
};
|
|
2292
|
+
readonly chmodFolder: {
|
|
2293
|
+
readonly type: "string";
|
|
2294
|
+
readonly nullable: true;
|
|
2295
|
+
};
|
|
2296
|
+
readonly chownGroup: {
|
|
2297
|
+
readonly type: "string";
|
|
2298
|
+
readonly nullable: true;
|
|
2299
|
+
};
|
|
2300
|
+
readonly skipFreeSpaceCheckWhenImporting: {
|
|
2301
|
+
readonly type: "boolean";
|
|
2302
|
+
};
|
|
2303
|
+
readonly minimumFreeSpaceWhenImporting: {
|
|
2304
|
+
readonly type: "integer";
|
|
2305
|
+
readonly format: "int32";
|
|
2306
|
+
};
|
|
2307
|
+
readonly copyUsingHardlinks: {
|
|
2308
|
+
readonly type: "boolean";
|
|
2309
|
+
};
|
|
2310
|
+
readonly useScriptImport: {
|
|
2311
|
+
readonly type: "boolean";
|
|
2312
|
+
};
|
|
2313
|
+
readonly scriptImportPath: {
|
|
2314
|
+
readonly type: "string";
|
|
2315
|
+
readonly nullable: true;
|
|
2316
|
+
};
|
|
2317
|
+
readonly importExtraFiles: {
|
|
2318
|
+
readonly type: "boolean";
|
|
2319
|
+
};
|
|
2320
|
+
readonly extraFileExtensions: {
|
|
2321
|
+
readonly type: "string";
|
|
2322
|
+
readonly nullable: true;
|
|
2323
|
+
};
|
|
2324
|
+
readonly enableMediaInfo: {
|
|
2325
|
+
readonly type: "boolean";
|
|
2326
|
+
};
|
|
2327
|
+
};
|
|
2328
|
+
readonly additionalProperties: false;
|
|
2329
|
+
};
|
|
2330
|
+
export declare const MetadataConfigResourceSchema: {
|
|
2331
|
+
readonly type: "object";
|
|
2332
|
+
readonly properties: {
|
|
2333
|
+
readonly id: {
|
|
2334
|
+
readonly type: "integer";
|
|
2335
|
+
readonly format: "int32";
|
|
2336
|
+
};
|
|
2337
|
+
readonly certificationCountry: {
|
|
2338
|
+
readonly $ref: "#/components/schemas/TMDbCountryCode";
|
|
2339
|
+
};
|
|
2340
|
+
};
|
|
2341
|
+
readonly additionalProperties: false;
|
|
2342
|
+
};
|
|
2343
|
+
export declare const MetadataResourceSchema: {
|
|
2344
|
+
readonly type: "object";
|
|
2345
|
+
readonly properties: {
|
|
2346
|
+
readonly id: {
|
|
2347
|
+
readonly type: "integer";
|
|
2348
|
+
readonly format: "int32";
|
|
2349
|
+
};
|
|
2350
|
+
readonly name: {
|
|
2351
|
+
readonly type: "string";
|
|
2352
|
+
readonly nullable: true;
|
|
2353
|
+
};
|
|
2354
|
+
readonly fields: {
|
|
2355
|
+
readonly type: "array";
|
|
2356
|
+
readonly items: {
|
|
2357
|
+
readonly $ref: "#/components/schemas/Field";
|
|
2358
|
+
};
|
|
2359
|
+
readonly nullable: true;
|
|
2360
|
+
};
|
|
2361
|
+
readonly implementationName: {
|
|
2362
|
+
readonly type: "string";
|
|
2363
|
+
readonly nullable: true;
|
|
2364
|
+
};
|
|
2365
|
+
readonly implementation: {
|
|
2366
|
+
readonly type: "string";
|
|
2367
|
+
readonly nullable: true;
|
|
2368
|
+
};
|
|
2369
|
+
readonly configContract: {
|
|
2370
|
+
readonly type: "string";
|
|
2371
|
+
readonly nullable: true;
|
|
2372
|
+
};
|
|
2373
|
+
readonly infoLink: {
|
|
2374
|
+
readonly type: "string";
|
|
2375
|
+
readonly nullable: true;
|
|
2376
|
+
};
|
|
2377
|
+
readonly message: {
|
|
2378
|
+
readonly $ref: "#/components/schemas/ProviderMessage";
|
|
2379
|
+
};
|
|
2380
|
+
readonly tags: {
|
|
2381
|
+
readonly uniqueItems: true;
|
|
2382
|
+
readonly type: "array";
|
|
2383
|
+
readonly items: {
|
|
2384
|
+
readonly type: "integer";
|
|
2385
|
+
readonly format: "int32";
|
|
2386
|
+
};
|
|
2387
|
+
readonly nullable: true;
|
|
2388
|
+
};
|
|
2389
|
+
readonly presets: {
|
|
2390
|
+
readonly type: "array";
|
|
2391
|
+
readonly items: {
|
|
2392
|
+
readonly $ref: "#/components/schemas/MetadataResource";
|
|
2393
|
+
};
|
|
2394
|
+
readonly nullable: true;
|
|
2395
|
+
};
|
|
2396
|
+
readonly enable: {
|
|
2397
|
+
readonly type: "boolean";
|
|
2398
|
+
};
|
|
2399
|
+
};
|
|
2400
|
+
readonly additionalProperties: false;
|
|
2401
|
+
};
|
|
2402
|
+
export declare const ModifierSchema: {
|
|
2403
|
+
readonly enum: readonly ["none", "regional", "screener", "rawhd", "brdisk", "remux"];
|
|
2404
|
+
readonly type: "string";
|
|
2405
|
+
};
|
|
2406
|
+
export declare const MonitorTypesSchema: {
|
|
2407
|
+
readonly enum: readonly ["movieOnly", "movieAndCollection", "none"];
|
|
2408
|
+
readonly type: "string";
|
|
2409
|
+
};
|
|
2410
|
+
export declare const MovieCollectionResourceSchema: {
|
|
2411
|
+
readonly type: "object";
|
|
2412
|
+
readonly properties: {
|
|
2413
|
+
readonly title: {
|
|
2414
|
+
readonly type: "string";
|
|
2415
|
+
readonly nullable: true;
|
|
2416
|
+
};
|
|
2417
|
+
readonly tmdbId: {
|
|
2418
|
+
readonly type: "integer";
|
|
2419
|
+
readonly format: "int32";
|
|
2420
|
+
};
|
|
2421
|
+
};
|
|
2422
|
+
readonly additionalProperties: false;
|
|
2423
|
+
};
|
|
2424
|
+
export declare const MovieEditorResourceSchema: {
|
|
2425
|
+
readonly type: "object";
|
|
2426
|
+
readonly properties: {
|
|
2427
|
+
readonly movieIds: {
|
|
2428
|
+
readonly type: "array";
|
|
2429
|
+
readonly items: {
|
|
2430
|
+
readonly type: "integer";
|
|
2431
|
+
readonly format: "int32";
|
|
2432
|
+
};
|
|
2433
|
+
readonly nullable: true;
|
|
2434
|
+
};
|
|
2435
|
+
readonly monitored: {
|
|
2436
|
+
readonly type: "boolean";
|
|
2437
|
+
readonly nullable: true;
|
|
2438
|
+
};
|
|
2439
|
+
readonly qualityProfileId: {
|
|
2440
|
+
readonly type: "integer";
|
|
2441
|
+
readonly format: "int32";
|
|
2442
|
+
readonly nullable: true;
|
|
2443
|
+
};
|
|
2444
|
+
readonly minimumAvailability: {
|
|
2445
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
2446
|
+
};
|
|
2447
|
+
readonly rootFolderPath: {
|
|
2448
|
+
readonly type: "string";
|
|
2449
|
+
readonly nullable: true;
|
|
2450
|
+
};
|
|
2451
|
+
readonly tags: {
|
|
2452
|
+
readonly type: "array";
|
|
2453
|
+
readonly items: {
|
|
2454
|
+
readonly type: "integer";
|
|
2455
|
+
readonly format: "int32";
|
|
2456
|
+
};
|
|
2457
|
+
readonly nullable: true;
|
|
2458
|
+
};
|
|
2459
|
+
readonly applyTags: {
|
|
2460
|
+
readonly $ref: "#/components/schemas/ApplyTags";
|
|
2461
|
+
};
|
|
2462
|
+
readonly moveFiles: {
|
|
2463
|
+
readonly type: "boolean";
|
|
2464
|
+
};
|
|
2465
|
+
readonly deleteFiles: {
|
|
2466
|
+
readonly type: "boolean";
|
|
2467
|
+
};
|
|
2468
|
+
readonly addImportExclusion: {
|
|
2469
|
+
readonly type: "boolean";
|
|
2470
|
+
};
|
|
2471
|
+
};
|
|
2472
|
+
readonly additionalProperties: false;
|
|
2473
|
+
};
|
|
2474
|
+
export declare const MovieFileListResourceSchema: {
|
|
2475
|
+
readonly type: "object";
|
|
2476
|
+
readonly properties: {
|
|
2477
|
+
readonly movieFileIds: {
|
|
2478
|
+
readonly type: "array";
|
|
2479
|
+
readonly items: {
|
|
2480
|
+
readonly type: "integer";
|
|
2481
|
+
readonly format: "int32";
|
|
2482
|
+
};
|
|
2483
|
+
readonly nullable: true;
|
|
2484
|
+
};
|
|
2485
|
+
readonly languages: {
|
|
2486
|
+
readonly type: "array";
|
|
2487
|
+
readonly items: {
|
|
2488
|
+
readonly $ref: "#/components/schemas/Language";
|
|
2489
|
+
};
|
|
2490
|
+
readonly nullable: true;
|
|
2491
|
+
};
|
|
2492
|
+
readonly quality: {
|
|
2493
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
2494
|
+
};
|
|
2495
|
+
readonly edition: {
|
|
2496
|
+
readonly type: "string";
|
|
2497
|
+
readonly nullable: true;
|
|
2498
|
+
};
|
|
2499
|
+
readonly releaseGroup: {
|
|
2500
|
+
readonly type: "string";
|
|
2501
|
+
readonly nullable: true;
|
|
2502
|
+
};
|
|
2503
|
+
readonly sceneName: {
|
|
2504
|
+
readonly type: "string";
|
|
2505
|
+
readonly nullable: true;
|
|
2506
|
+
};
|
|
2507
|
+
readonly indexerFlags: {
|
|
2508
|
+
readonly type: "integer";
|
|
2509
|
+
readonly format: "int32";
|
|
2510
|
+
readonly nullable: true;
|
|
2511
|
+
};
|
|
2512
|
+
};
|
|
2513
|
+
readonly additionalProperties: false;
|
|
2514
|
+
};
|
|
2515
|
+
export declare const MovieFileResourceSchema: {
|
|
2516
|
+
readonly type: "object";
|
|
2517
|
+
readonly properties: {
|
|
2518
|
+
readonly id: {
|
|
2519
|
+
readonly type: "integer";
|
|
2520
|
+
readonly format: "int32";
|
|
2521
|
+
};
|
|
2522
|
+
readonly movieId: {
|
|
2523
|
+
readonly type: "integer";
|
|
2524
|
+
readonly format: "int32";
|
|
2525
|
+
};
|
|
2526
|
+
readonly relativePath: {
|
|
2527
|
+
readonly type: "string";
|
|
2528
|
+
readonly nullable: true;
|
|
2529
|
+
};
|
|
2530
|
+
readonly path: {
|
|
2531
|
+
readonly type: "string";
|
|
2532
|
+
readonly nullable: true;
|
|
2533
|
+
};
|
|
2534
|
+
readonly size: {
|
|
2535
|
+
readonly type: "integer";
|
|
2536
|
+
readonly format: "int64";
|
|
2537
|
+
};
|
|
2538
|
+
readonly dateAdded: {
|
|
2539
|
+
readonly type: "string";
|
|
2540
|
+
readonly format: "date-time";
|
|
2541
|
+
};
|
|
2542
|
+
readonly sceneName: {
|
|
2543
|
+
readonly type: "string";
|
|
2544
|
+
readonly nullable: true;
|
|
2545
|
+
};
|
|
2546
|
+
readonly releaseGroup: {
|
|
2547
|
+
readonly type: "string";
|
|
2548
|
+
readonly nullable: true;
|
|
2549
|
+
};
|
|
2550
|
+
readonly edition: {
|
|
2551
|
+
readonly type: "string";
|
|
2552
|
+
readonly nullable: true;
|
|
2553
|
+
};
|
|
2554
|
+
readonly languages: {
|
|
2555
|
+
readonly type: "array";
|
|
2556
|
+
readonly items: {
|
|
2557
|
+
readonly $ref: "#/components/schemas/Language";
|
|
2558
|
+
};
|
|
2559
|
+
readonly nullable: true;
|
|
2560
|
+
};
|
|
2561
|
+
readonly quality: {
|
|
2562
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
2563
|
+
};
|
|
2564
|
+
readonly customFormats: {
|
|
2565
|
+
readonly type: "array";
|
|
2566
|
+
readonly items: {
|
|
2567
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
2568
|
+
};
|
|
2569
|
+
readonly nullable: true;
|
|
2570
|
+
};
|
|
2571
|
+
readonly customFormatScore: {
|
|
2572
|
+
readonly type: "integer";
|
|
2573
|
+
readonly format: "int32";
|
|
2574
|
+
readonly nullable: true;
|
|
2575
|
+
};
|
|
2576
|
+
readonly indexerFlags: {
|
|
2577
|
+
readonly type: "integer";
|
|
2578
|
+
readonly format: "int32";
|
|
2579
|
+
readonly nullable: true;
|
|
2580
|
+
};
|
|
2581
|
+
readonly mediaInfo: {
|
|
2582
|
+
readonly $ref: "#/components/schemas/MediaInfoResource";
|
|
2583
|
+
};
|
|
2584
|
+
readonly originalFilePath: {
|
|
2585
|
+
readonly type: "string";
|
|
2586
|
+
readonly nullable: true;
|
|
2587
|
+
};
|
|
2588
|
+
readonly qualityCutoffNotMet: {
|
|
2589
|
+
readonly type: "boolean";
|
|
2590
|
+
};
|
|
2591
|
+
};
|
|
2592
|
+
readonly additionalProperties: false;
|
|
2593
|
+
};
|
|
2594
|
+
export declare const MovieHistoryEventTypeSchema: {
|
|
2595
|
+
readonly enum: readonly ["unknown", "grabbed", "downloadFolderImported", "downloadFailed", "movieFileDeleted", "movieFolderImported", "movieFileRenamed", "downloadIgnored"];
|
|
2596
|
+
readonly type: "string";
|
|
2597
|
+
};
|
|
2598
|
+
export declare const MovieResourceSchema: {
|
|
2599
|
+
readonly type: "object";
|
|
2600
|
+
readonly properties: {
|
|
2601
|
+
readonly id: {
|
|
2602
|
+
readonly type: "integer";
|
|
2603
|
+
readonly format: "int32";
|
|
2604
|
+
};
|
|
2605
|
+
readonly title: {
|
|
2606
|
+
readonly type: "string";
|
|
2607
|
+
readonly nullable: true;
|
|
2608
|
+
};
|
|
2609
|
+
readonly originalTitle: {
|
|
2610
|
+
readonly type: "string";
|
|
2611
|
+
readonly nullable: true;
|
|
2612
|
+
};
|
|
2613
|
+
readonly originalLanguage: {
|
|
2614
|
+
readonly $ref: "#/components/schemas/Language";
|
|
2615
|
+
};
|
|
2616
|
+
readonly alternateTitles: {
|
|
2617
|
+
readonly type: "array";
|
|
2618
|
+
readonly items: {
|
|
2619
|
+
readonly $ref: "#/components/schemas/AlternativeTitleResource";
|
|
2620
|
+
};
|
|
2621
|
+
readonly nullable: true;
|
|
2622
|
+
};
|
|
2623
|
+
readonly secondaryYear: {
|
|
2624
|
+
readonly type: "integer";
|
|
2625
|
+
readonly format: "int32";
|
|
2626
|
+
readonly nullable: true;
|
|
2627
|
+
};
|
|
2628
|
+
readonly secondaryYearSourceId: {
|
|
2629
|
+
readonly type: "integer";
|
|
2630
|
+
readonly format: "int32";
|
|
2631
|
+
};
|
|
2632
|
+
readonly sortTitle: {
|
|
2633
|
+
readonly type: "string";
|
|
2634
|
+
readonly nullable: true;
|
|
2635
|
+
};
|
|
2636
|
+
readonly sizeOnDisk: {
|
|
2637
|
+
readonly type: "integer";
|
|
2638
|
+
readonly format: "int64";
|
|
2639
|
+
readonly nullable: true;
|
|
2640
|
+
};
|
|
2641
|
+
readonly status: {
|
|
2642
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
2643
|
+
};
|
|
2644
|
+
readonly overview: {
|
|
2645
|
+
readonly type: "string";
|
|
2646
|
+
readonly nullable: true;
|
|
2647
|
+
};
|
|
2648
|
+
readonly inCinemas: {
|
|
2649
|
+
readonly type: "string";
|
|
2650
|
+
readonly format: "date-time";
|
|
2651
|
+
readonly nullable: true;
|
|
2652
|
+
};
|
|
2653
|
+
readonly physicalRelease: {
|
|
2654
|
+
readonly type: "string";
|
|
2655
|
+
readonly format: "date-time";
|
|
2656
|
+
readonly nullable: true;
|
|
2657
|
+
};
|
|
2658
|
+
readonly digitalRelease: {
|
|
2659
|
+
readonly type: "string";
|
|
2660
|
+
readonly format: "date-time";
|
|
2661
|
+
readonly nullable: true;
|
|
2662
|
+
};
|
|
2663
|
+
readonly releaseDate: {
|
|
2664
|
+
readonly type: "string";
|
|
2665
|
+
readonly format: "date-time";
|
|
2666
|
+
readonly nullable: true;
|
|
2667
|
+
};
|
|
2668
|
+
readonly physicalReleaseNote: {
|
|
2669
|
+
readonly type: "string";
|
|
2670
|
+
readonly nullable: true;
|
|
2671
|
+
};
|
|
2672
|
+
readonly images: {
|
|
2673
|
+
readonly type: "array";
|
|
2674
|
+
readonly items: {
|
|
2675
|
+
readonly $ref: "#/components/schemas/MediaCover";
|
|
2676
|
+
};
|
|
2677
|
+
readonly nullable: true;
|
|
2678
|
+
};
|
|
2679
|
+
readonly website: {
|
|
2680
|
+
readonly type: "string";
|
|
2681
|
+
readonly nullable: true;
|
|
2682
|
+
};
|
|
2683
|
+
readonly remotePoster: {
|
|
2684
|
+
readonly type: "string";
|
|
2685
|
+
readonly nullable: true;
|
|
2686
|
+
};
|
|
2687
|
+
readonly year: {
|
|
2688
|
+
readonly type: "integer";
|
|
2689
|
+
readonly format: "int32";
|
|
2690
|
+
};
|
|
2691
|
+
readonly youTubeTrailerId: {
|
|
2692
|
+
readonly type: "string";
|
|
2693
|
+
readonly nullable: true;
|
|
2694
|
+
};
|
|
2695
|
+
readonly studio: {
|
|
2696
|
+
readonly type: "string";
|
|
2697
|
+
readonly nullable: true;
|
|
2698
|
+
};
|
|
2699
|
+
readonly path: {
|
|
2700
|
+
readonly type: "string";
|
|
2701
|
+
readonly nullable: true;
|
|
2702
|
+
};
|
|
2703
|
+
readonly qualityProfileId: {
|
|
2704
|
+
readonly type: "integer";
|
|
2705
|
+
readonly format: "int32";
|
|
2706
|
+
};
|
|
2707
|
+
readonly hasFile: {
|
|
2708
|
+
readonly type: "boolean";
|
|
2709
|
+
readonly nullable: true;
|
|
2710
|
+
};
|
|
2711
|
+
readonly movieFileId: {
|
|
2712
|
+
readonly type: "integer";
|
|
2713
|
+
readonly format: "int32";
|
|
2714
|
+
};
|
|
2715
|
+
readonly monitored: {
|
|
2716
|
+
readonly type: "boolean";
|
|
2717
|
+
};
|
|
2718
|
+
readonly minimumAvailability: {
|
|
2719
|
+
readonly $ref: "#/components/schemas/MovieStatusType";
|
|
2720
|
+
};
|
|
2721
|
+
readonly isAvailable: {
|
|
2722
|
+
readonly type: "boolean";
|
|
2723
|
+
};
|
|
2724
|
+
readonly folderName: {
|
|
2725
|
+
readonly type: "string";
|
|
2726
|
+
readonly nullable: true;
|
|
2727
|
+
};
|
|
2728
|
+
readonly runtime: {
|
|
2729
|
+
readonly type: "integer";
|
|
2730
|
+
readonly format: "int32";
|
|
2731
|
+
};
|
|
2732
|
+
readonly cleanTitle: {
|
|
2733
|
+
readonly type: "string";
|
|
2734
|
+
readonly nullable: true;
|
|
2735
|
+
};
|
|
2736
|
+
readonly imdbId: {
|
|
2737
|
+
readonly type: "string";
|
|
2738
|
+
readonly nullable: true;
|
|
2739
|
+
};
|
|
2740
|
+
readonly tmdbId: {
|
|
2741
|
+
readonly type: "integer";
|
|
2742
|
+
readonly format: "int32";
|
|
2743
|
+
};
|
|
2744
|
+
readonly titleSlug: {
|
|
2745
|
+
readonly type: "string";
|
|
2746
|
+
readonly nullable: true;
|
|
2747
|
+
};
|
|
2748
|
+
readonly rootFolderPath: {
|
|
2749
|
+
readonly type: "string";
|
|
2750
|
+
readonly nullable: true;
|
|
2751
|
+
};
|
|
2752
|
+
readonly folder: {
|
|
2753
|
+
readonly type: "string";
|
|
2754
|
+
readonly nullable: true;
|
|
2755
|
+
};
|
|
2756
|
+
readonly certification: {
|
|
2757
|
+
readonly type: "string";
|
|
2758
|
+
readonly nullable: true;
|
|
2759
|
+
};
|
|
2760
|
+
readonly genres: {
|
|
2761
|
+
readonly type: "array";
|
|
2762
|
+
readonly items: {
|
|
2763
|
+
readonly type: "string";
|
|
2764
|
+
};
|
|
2765
|
+
readonly nullable: true;
|
|
2766
|
+
};
|
|
2767
|
+
readonly keywords: {
|
|
2768
|
+
readonly type: "array";
|
|
2769
|
+
readonly items: {
|
|
2770
|
+
readonly type: "string";
|
|
2771
|
+
};
|
|
2772
|
+
readonly nullable: true;
|
|
2773
|
+
};
|
|
2774
|
+
readonly tags: {
|
|
2775
|
+
readonly uniqueItems: true;
|
|
2776
|
+
readonly type: "array";
|
|
2777
|
+
readonly items: {
|
|
2778
|
+
readonly type: "integer";
|
|
2779
|
+
readonly format: "int32";
|
|
2780
|
+
};
|
|
2781
|
+
readonly nullable: true;
|
|
2782
|
+
};
|
|
2783
|
+
readonly added: {
|
|
2784
|
+
readonly type: "string";
|
|
2785
|
+
readonly format: "date-time";
|
|
2786
|
+
};
|
|
2787
|
+
readonly addOptions: {
|
|
2788
|
+
readonly $ref: "#/components/schemas/AddMovieOptions";
|
|
2789
|
+
};
|
|
2790
|
+
readonly ratings: {
|
|
2791
|
+
readonly $ref: "#/components/schemas/Ratings";
|
|
2792
|
+
};
|
|
2793
|
+
readonly movieFile: {
|
|
2794
|
+
readonly $ref: "#/components/schemas/MovieFileResource";
|
|
2795
|
+
};
|
|
2796
|
+
readonly collection: {
|
|
2797
|
+
readonly $ref: "#/components/schemas/MovieCollectionResource";
|
|
2798
|
+
};
|
|
2799
|
+
readonly popularity: {
|
|
2800
|
+
readonly type: "number";
|
|
2801
|
+
readonly format: "float";
|
|
2802
|
+
};
|
|
2803
|
+
readonly lastSearchTime: {
|
|
2804
|
+
readonly type: "string";
|
|
2805
|
+
readonly format: "date-time";
|
|
2806
|
+
readonly nullable: true;
|
|
2807
|
+
};
|
|
2808
|
+
readonly statistics: {
|
|
2809
|
+
readonly $ref: "#/components/schemas/MovieStatisticsResource";
|
|
2810
|
+
};
|
|
2811
|
+
};
|
|
2812
|
+
readonly additionalProperties: false;
|
|
2813
|
+
};
|
|
2814
|
+
export declare const MovieResourcePagingResourceSchema: {
|
|
2815
|
+
readonly type: "object";
|
|
2816
|
+
readonly properties: {
|
|
2817
|
+
readonly page: {
|
|
2818
|
+
readonly type: "integer";
|
|
2819
|
+
readonly format: "int32";
|
|
2820
|
+
};
|
|
2821
|
+
readonly pageSize: {
|
|
2822
|
+
readonly type: "integer";
|
|
2823
|
+
readonly format: "int32";
|
|
2824
|
+
};
|
|
2825
|
+
readonly sortKey: {
|
|
2826
|
+
readonly type: "string";
|
|
2827
|
+
readonly nullable: true;
|
|
2828
|
+
};
|
|
2829
|
+
readonly sortDirection: {
|
|
2830
|
+
readonly $ref: "#/components/schemas/SortDirection";
|
|
2831
|
+
};
|
|
2832
|
+
readonly totalRecords: {
|
|
2833
|
+
readonly type: "integer";
|
|
2834
|
+
readonly format: "int32";
|
|
2835
|
+
};
|
|
2836
|
+
readonly records: {
|
|
2837
|
+
readonly type: "array";
|
|
2838
|
+
readonly items: {
|
|
2839
|
+
readonly $ref: "#/components/schemas/MovieResource";
|
|
2840
|
+
};
|
|
2841
|
+
readonly nullable: true;
|
|
2842
|
+
};
|
|
2843
|
+
};
|
|
2844
|
+
readonly additionalProperties: false;
|
|
2845
|
+
};
|
|
2846
|
+
export declare const MovieRuntimeFormatTypeSchema: {
|
|
2847
|
+
readonly enum: readonly ["hoursMinutes", "minutes"];
|
|
2848
|
+
readonly type: "string";
|
|
2849
|
+
};
|
|
2850
|
+
export declare const MovieStatisticsResourceSchema: {
|
|
2851
|
+
readonly type: "object";
|
|
2852
|
+
readonly properties: {
|
|
2853
|
+
readonly movieFileCount: {
|
|
2854
|
+
readonly type: "integer";
|
|
2855
|
+
readonly format: "int32";
|
|
2856
|
+
};
|
|
2857
|
+
readonly sizeOnDisk: {
|
|
2858
|
+
readonly type: "integer";
|
|
2859
|
+
readonly format: "int64";
|
|
2860
|
+
};
|
|
2861
|
+
readonly releaseGroups: {
|
|
2862
|
+
readonly type: "array";
|
|
2863
|
+
readonly items: {
|
|
2864
|
+
readonly type: "string";
|
|
2865
|
+
};
|
|
2866
|
+
readonly nullable: true;
|
|
2867
|
+
};
|
|
2868
|
+
};
|
|
2869
|
+
readonly additionalProperties: false;
|
|
2870
|
+
};
|
|
2871
|
+
export declare const MovieStatusTypeSchema: {
|
|
2872
|
+
readonly enum: readonly ["tba", "announced", "inCinemas", "released", "deleted"];
|
|
2873
|
+
readonly type: "string";
|
|
2874
|
+
};
|
|
2875
|
+
export declare const NamingConfigResourceSchema: {
|
|
2876
|
+
readonly type: "object";
|
|
2877
|
+
readonly properties: {
|
|
2878
|
+
readonly id: {
|
|
2879
|
+
readonly type: "integer";
|
|
2880
|
+
readonly format: "int32";
|
|
2881
|
+
};
|
|
2882
|
+
readonly renameMovies: {
|
|
2883
|
+
readonly type: "boolean";
|
|
2884
|
+
};
|
|
2885
|
+
readonly replaceIllegalCharacters: {
|
|
2886
|
+
readonly type: "boolean";
|
|
2887
|
+
};
|
|
2888
|
+
readonly colonReplacementFormat: {
|
|
2889
|
+
readonly $ref: "#/components/schemas/ColonReplacementFormat";
|
|
2890
|
+
};
|
|
2891
|
+
readonly standardMovieFormat: {
|
|
2892
|
+
readonly type: "string";
|
|
2893
|
+
readonly nullable: true;
|
|
2894
|
+
};
|
|
2895
|
+
readonly movieFolderFormat: {
|
|
2896
|
+
readonly type: "string";
|
|
2897
|
+
readonly nullable: true;
|
|
2898
|
+
};
|
|
2899
|
+
};
|
|
2900
|
+
readonly additionalProperties: false;
|
|
2901
|
+
};
|
|
2902
|
+
export declare const NotificationResourceSchema: {
|
|
2903
|
+
readonly type: "object";
|
|
2904
|
+
readonly properties: {
|
|
2905
|
+
readonly id: {
|
|
2906
|
+
readonly type: "integer";
|
|
2907
|
+
readonly format: "int32";
|
|
2908
|
+
};
|
|
2909
|
+
readonly name: {
|
|
2910
|
+
readonly type: "string";
|
|
2911
|
+
readonly nullable: true;
|
|
2912
|
+
};
|
|
2913
|
+
readonly fields: {
|
|
2914
|
+
readonly type: "array";
|
|
2915
|
+
readonly items: {
|
|
2916
|
+
readonly $ref: "#/components/schemas/Field";
|
|
2917
|
+
};
|
|
2918
|
+
readonly nullable: true;
|
|
2919
|
+
};
|
|
2920
|
+
readonly implementationName: {
|
|
2921
|
+
readonly type: "string";
|
|
2922
|
+
readonly nullable: true;
|
|
2923
|
+
};
|
|
2924
|
+
readonly implementation: {
|
|
2925
|
+
readonly type: "string";
|
|
2926
|
+
readonly nullable: true;
|
|
2927
|
+
};
|
|
2928
|
+
readonly configContract: {
|
|
2929
|
+
readonly type: "string";
|
|
2930
|
+
readonly nullable: true;
|
|
2931
|
+
};
|
|
2932
|
+
readonly infoLink: {
|
|
2933
|
+
readonly type: "string";
|
|
2934
|
+
readonly nullable: true;
|
|
2935
|
+
};
|
|
2936
|
+
readonly message: {
|
|
2937
|
+
readonly $ref: "#/components/schemas/ProviderMessage";
|
|
2938
|
+
};
|
|
2939
|
+
readonly tags: {
|
|
2940
|
+
readonly uniqueItems: true;
|
|
2941
|
+
readonly type: "array";
|
|
2942
|
+
readonly items: {
|
|
2943
|
+
readonly type: "integer";
|
|
2944
|
+
readonly format: "int32";
|
|
2945
|
+
};
|
|
2946
|
+
readonly nullable: true;
|
|
2947
|
+
};
|
|
2948
|
+
readonly presets: {
|
|
2949
|
+
readonly type: "array";
|
|
2950
|
+
readonly items: {
|
|
2951
|
+
readonly $ref: "#/components/schemas/NotificationResource";
|
|
2952
|
+
};
|
|
2953
|
+
readonly nullable: true;
|
|
2954
|
+
};
|
|
2955
|
+
readonly link: {
|
|
2956
|
+
readonly type: "string";
|
|
2957
|
+
readonly nullable: true;
|
|
2958
|
+
};
|
|
2959
|
+
readonly onGrab: {
|
|
2960
|
+
readonly type: "boolean";
|
|
2961
|
+
};
|
|
2962
|
+
readonly onDownload: {
|
|
2963
|
+
readonly type: "boolean";
|
|
2964
|
+
};
|
|
2965
|
+
readonly onUpgrade: {
|
|
2966
|
+
readonly type: "boolean";
|
|
2967
|
+
};
|
|
2968
|
+
readonly onRename: {
|
|
2969
|
+
readonly type: "boolean";
|
|
2970
|
+
};
|
|
2971
|
+
readonly onMovieAdded: {
|
|
2972
|
+
readonly type: "boolean";
|
|
2973
|
+
};
|
|
2974
|
+
readonly onMovieDelete: {
|
|
2975
|
+
readonly type: "boolean";
|
|
2976
|
+
};
|
|
2977
|
+
readonly onMovieFileDelete: {
|
|
2978
|
+
readonly type: "boolean";
|
|
2979
|
+
};
|
|
2980
|
+
readonly onMovieFileDeleteForUpgrade: {
|
|
2981
|
+
readonly type: "boolean";
|
|
2982
|
+
};
|
|
2983
|
+
readonly onHealthIssue: {
|
|
2984
|
+
readonly type: "boolean";
|
|
2985
|
+
};
|
|
2986
|
+
readonly includeHealthWarnings: {
|
|
2987
|
+
readonly type: "boolean";
|
|
2988
|
+
};
|
|
2989
|
+
readonly onHealthRestored: {
|
|
2990
|
+
readonly type: "boolean";
|
|
2991
|
+
};
|
|
2992
|
+
readonly onApplicationUpdate: {
|
|
2993
|
+
readonly type: "boolean";
|
|
2994
|
+
};
|
|
2995
|
+
readonly onManualInteractionRequired: {
|
|
2996
|
+
readonly type: "boolean";
|
|
2997
|
+
};
|
|
2998
|
+
readonly supportsOnGrab: {
|
|
2999
|
+
readonly type: "boolean";
|
|
3000
|
+
};
|
|
3001
|
+
readonly supportsOnDownload: {
|
|
3002
|
+
readonly type: "boolean";
|
|
3003
|
+
};
|
|
3004
|
+
readonly supportsOnUpgrade: {
|
|
3005
|
+
readonly type: "boolean";
|
|
3006
|
+
};
|
|
3007
|
+
readonly supportsOnRename: {
|
|
3008
|
+
readonly type: "boolean";
|
|
3009
|
+
};
|
|
3010
|
+
readonly supportsOnMovieAdded: {
|
|
3011
|
+
readonly type: "boolean";
|
|
3012
|
+
};
|
|
3013
|
+
readonly supportsOnMovieDelete: {
|
|
3014
|
+
readonly type: "boolean";
|
|
3015
|
+
};
|
|
3016
|
+
readonly supportsOnMovieFileDelete: {
|
|
3017
|
+
readonly type: "boolean";
|
|
3018
|
+
};
|
|
3019
|
+
readonly supportsOnMovieFileDeleteForUpgrade: {
|
|
3020
|
+
readonly type: "boolean";
|
|
3021
|
+
};
|
|
3022
|
+
readonly supportsOnHealthIssue: {
|
|
3023
|
+
readonly type: "boolean";
|
|
3024
|
+
};
|
|
3025
|
+
readonly supportsOnHealthRestored: {
|
|
3026
|
+
readonly type: "boolean";
|
|
3027
|
+
};
|
|
3028
|
+
readonly supportsOnApplicationUpdate: {
|
|
3029
|
+
readonly type: "boolean";
|
|
3030
|
+
};
|
|
3031
|
+
readonly supportsOnManualInteractionRequired: {
|
|
3032
|
+
readonly type: "boolean";
|
|
3033
|
+
};
|
|
3034
|
+
readonly testCommand: {
|
|
3035
|
+
readonly type: "string";
|
|
3036
|
+
readonly nullable: true;
|
|
3037
|
+
};
|
|
3038
|
+
};
|
|
3039
|
+
readonly additionalProperties: false;
|
|
3040
|
+
};
|
|
3041
|
+
export declare const ParseResourceSchema: {
|
|
3042
|
+
readonly type: "object";
|
|
3043
|
+
readonly properties: {
|
|
3044
|
+
readonly id: {
|
|
3045
|
+
readonly type: "integer";
|
|
3046
|
+
readonly format: "int32";
|
|
3047
|
+
};
|
|
3048
|
+
readonly title: {
|
|
3049
|
+
readonly type: "string";
|
|
3050
|
+
readonly nullable: true;
|
|
3051
|
+
};
|
|
3052
|
+
readonly parsedMovieInfo: {
|
|
3053
|
+
readonly $ref: "#/components/schemas/ParsedMovieInfo";
|
|
3054
|
+
};
|
|
3055
|
+
readonly movie: {
|
|
3056
|
+
readonly $ref: "#/components/schemas/MovieResource";
|
|
3057
|
+
};
|
|
3058
|
+
readonly languages: {
|
|
3059
|
+
readonly type: "array";
|
|
3060
|
+
readonly items: {
|
|
3061
|
+
readonly $ref: "#/components/schemas/Language";
|
|
3062
|
+
};
|
|
3063
|
+
readonly nullable: true;
|
|
3064
|
+
};
|
|
3065
|
+
readonly customFormats: {
|
|
3066
|
+
readonly type: "array";
|
|
3067
|
+
readonly items: {
|
|
3068
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
3069
|
+
};
|
|
3070
|
+
readonly nullable: true;
|
|
3071
|
+
};
|
|
3072
|
+
readonly customFormatScore: {
|
|
3073
|
+
readonly type: "integer";
|
|
3074
|
+
readonly format: "int32";
|
|
3075
|
+
};
|
|
3076
|
+
};
|
|
3077
|
+
readonly additionalProperties: false;
|
|
3078
|
+
};
|
|
3079
|
+
export declare const ParsedMovieInfoSchema: {
|
|
3080
|
+
readonly type: "object";
|
|
3081
|
+
readonly properties: {
|
|
3082
|
+
readonly movieTitles: {
|
|
3083
|
+
readonly type: "array";
|
|
3084
|
+
readonly items: {
|
|
3085
|
+
readonly type: "string";
|
|
3086
|
+
};
|
|
3087
|
+
readonly nullable: true;
|
|
3088
|
+
};
|
|
3089
|
+
readonly originalTitle: {
|
|
3090
|
+
readonly type: "string";
|
|
3091
|
+
readonly nullable: true;
|
|
3092
|
+
};
|
|
3093
|
+
readonly releaseTitle: {
|
|
3094
|
+
readonly type: "string";
|
|
3095
|
+
readonly nullable: true;
|
|
3096
|
+
};
|
|
3097
|
+
readonly simpleReleaseTitle: {
|
|
3098
|
+
readonly type: "string";
|
|
3099
|
+
readonly nullable: true;
|
|
3100
|
+
};
|
|
3101
|
+
readonly quality: {
|
|
3102
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
3103
|
+
};
|
|
3104
|
+
readonly languages: {
|
|
3105
|
+
readonly type: "array";
|
|
3106
|
+
readonly items: {
|
|
3107
|
+
readonly $ref: "#/components/schemas/Language";
|
|
3108
|
+
};
|
|
3109
|
+
readonly nullable: true;
|
|
3110
|
+
};
|
|
3111
|
+
readonly releaseGroup: {
|
|
3112
|
+
readonly type: "string";
|
|
3113
|
+
readonly nullable: true;
|
|
3114
|
+
};
|
|
3115
|
+
readonly releaseHash: {
|
|
3116
|
+
readonly type: "string";
|
|
3117
|
+
readonly nullable: true;
|
|
3118
|
+
};
|
|
3119
|
+
readonly edition: {
|
|
3120
|
+
readonly type: "string";
|
|
3121
|
+
readonly nullable: true;
|
|
3122
|
+
};
|
|
3123
|
+
readonly year: {
|
|
3124
|
+
readonly type: "integer";
|
|
3125
|
+
readonly format: "int32";
|
|
3126
|
+
};
|
|
3127
|
+
readonly imdbId: {
|
|
3128
|
+
readonly type: "string";
|
|
3129
|
+
readonly nullable: true;
|
|
3130
|
+
};
|
|
3131
|
+
readonly tmdbId: {
|
|
3132
|
+
readonly type: "integer";
|
|
3133
|
+
readonly format: "int32";
|
|
3134
|
+
};
|
|
3135
|
+
readonly hardcodedSubs: {
|
|
3136
|
+
readonly type: "string";
|
|
3137
|
+
readonly nullable: true;
|
|
3138
|
+
};
|
|
3139
|
+
readonly movieTitle: {
|
|
3140
|
+
readonly type: "string";
|
|
3141
|
+
readonly nullable: true;
|
|
3142
|
+
readonly readOnly: true;
|
|
3143
|
+
};
|
|
3144
|
+
readonly primaryMovieTitle: {
|
|
3145
|
+
readonly type: "string";
|
|
3146
|
+
readonly nullable: true;
|
|
3147
|
+
readonly readOnly: true;
|
|
3148
|
+
};
|
|
3149
|
+
};
|
|
3150
|
+
readonly additionalProperties: false;
|
|
3151
|
+
};
|
|
3152
|
+
export declare const PingResourceSchema: {
|
|
3153
|
+
readonly type: "object";
|
|
3154
|
+
readonly properties: {
|
|
3155
|
+
readonly status: {
|
|
3156
|
+
readonly type: "string";
|
|
3157
|
+
readonly nullable: true;
|
|
3158
|
+
};
|
|
3159
|
+
};
|
|
3160
|
+
readonly additionalProperties: false;
|
|
3161
|
+
};
|
|
3162
|
+
export declare const PrivacyLevelSchema: {
|
|
3163
|
+
readonly enum: readonly ["normal", "password", "apiKey", "userName"];
|
|
3164
|
+
readonly type: "string";
|
|
3165
|
+
};
|
|
3166
|
+
export declare const ProfileFormatItemResourceSchema: {
|
|
3167
|
+
readonly type: "object";
|
|
3168
|
+
readonly properties: {
|
|
3169
|
+
readonly id: {
|
|
3170
|
+
readonly type: "integer";
|
|
3171
|
+
readonly format: "int32";
|
|
3172
|
+
};
|
|
3173
|
+
readonly format: {
|
|
3174
|
+
readonly type: "integer";
|
|
3175
|
+
readonly format: "int32";
|
|
3176
|
+
};
|
|
3177
|
+
readonly name: {
|
|
3178
|
+
readonly type: "string";
|
|
3179
|
+
readonly nullable: true;
|
|
3180
|
+
};
|
|
3181
|
+
readonly score: {
|
|
3182
|
+
readonly type: "integer";
|
|
3183
|
+
readonly format: "int32";
|
|
3184
|
+
};
|
|
3185
|
+
};
|
|
3186
|
+
readonly additionalProperties: false;
|
|
3187
|
+
};
|
|
3188
|
+
export declare const ProperDownloadTypesSchema: {
|
|
3189
|
+
readonly enum: readonly ["preferAndUpgrade", "doNotUpgrade", "doNotPrefer"];
|
|
3190
|
+
readonly type: "string";
|
|
3191
|
+
};
|
|
3192
|
+
export declare const ProviderMessageSchema: {
|
|
3193
|
+
readonly type: "object";
|
|
3194
|
+
readonly properties: {
|
|
3195
|
+
readonly message: {
|
|
3196
|
+
readonly type: "string";
|
|
3197
|
+
readonly nullable: true;
|
|
3198
|
+
};
|
|
3199
|
+
readonly type: {
|
|
3200
|
+
readonly $ref: "#/components/schemas/ProviderMessageType";
|
|
3201
|
+
};
|
|
3202
|
+
};
|
|
3203
|
+
readonly additionalProperties: false;
|
|
3204
|
+
};
|
|
3205
|
+
export declare const ProviderMessageTypeSchema: {
|
|
3206
|
+
readonly enum: readonly ["info", "warning", "error"];
|
|
3207
|
+
readonly type: "string";
|
|
3208
|
+
};
|
|
3209
|
+
export declare const ProxyTypeSchema: {
|
|
3210
|
+
readonly enum: readonly ["http", "socks4", "socks5"];
|
|
3211
|
+
readonly type: "string";
|
|
3212
|
+
};
|
|
3213
|
+
export declare const QualitySchema: {
|
|
3214
|
+
readonly type: "object";
|
|
3215
|
+
readonly properties: {
|
|
3216
|
+
readonly id: {
|
|
3217
|
+
readonly type: "integer";
|
|
3218
|
+
readonly format: "int32";
|
|
3219
|
+
};
|
|
3220
|
+
readonly name: {
|
|
3221
|
+
readonly type: "string";
|
|
3222
|
+
readonly nullable: true;
|
|
3223
|
+
};
|
|
3224
|
+
readonly source: {
|
|
3225
|
+
readonly $ref: "#/components/schemas/QualitySource";
|
|
3226
|
+
};
|
|
3227
|
+
readonly resolution: {
|
|
3228
|
+
readonly type: "integer";
|
|
3229
|
+
readonly format: "int32";
|
|
3230
|
+
};
|
|
3231
|
+
readonly modifier: {
|
|
3232
|
+
readonly $ref: "#/components/schemas/Modifier";
|
|
3233
|
+
};
|
|
3234
|
+
};
|
|
3235
|
+
readonly additionalProperties: false;
|
|
3236
|
+
};
|
|
3237
|
+
export declare const QualityDefinitionLimitsResourceSchema: {
|
|
3238
|
+
readonly type: "object";
|
|
3239
|
+
readonly properties: {
|
|
3240
|
+
readonly min: {
|
|
3241
|
+
readonly type: "integer";
|
|
3242
|
+
readonly format: "int32";
|
|
3243
|
+
};
|
|
3244
|
+
readonly max: {
|
|
3245
|
+
readonly type: "integer";
|
|
3246
|
+
readonly format: "int32";
|
|
3247
|
+
};
|
|
3248
|
+
};
|
|
3249
|
+
readonly additionalProperties: false;
|
|
3250
|
+
};
|
|
3251
|
+
export declare const QualityDefinitionResourceSchema: {
|
|
3252
|
+
readonly type: "object";
|
|
3253
|
+
readonly properties: {
|
|
3254
|
+
readonly id: {
|
|
3255
|
+
readonly type: "integer";
|
|
3256
|
+
readonly format: "int32";
|
|
3257
|
+
};
|
|
3258
|
+
readonly quality: {
|
|
3259
|
+
readonly $ref: "#/components/schemas/Quality";
|
|
3260
|
+
};
|
|
3261
|
+
readonly title: {
|
|
3262
|
+
readonly type: "string";
|
|
3263
|
+
readonly nullable: true;
|
|
3264
|
+
};
|
|
3265
|
+
readonly weight: {
|
|
3266
|
+
readonly type: "integer";
|
|
3267
|
+
readonly format: "int32";
|
|
3268
|
+
};
|
|
3269
|
+
readonly minSize: {
|
|
3270
|
+
readonly type: "number";
|
|
3271
|
+
readonly format: "double";
|
|
3272
|
+
readonly nullable: true;
|
|
3273
|
+
};
|
|
3274
|
+
readonly maxSize: {
|
|
3275
|
+
readonly type: "number";
|
|
3276
|
+
readonly format: "double";
|
|
3277
|
+
readonly nullable: true;
|
|
3278
|
+
};
|
|
3279
|
+
readonly preferredSize: {
|
|
3280
|
+
readonly type: "number";
|
|
3281
|
+
readonly format: "double";
|
|
3282
|
+
readonly nullable: true;
|
|
3283
|
+
};
|
|
3284
|
+
};
|
|
3285
|
+
readonly additionalProperties: false;
|
|
3286
|
+
};
|
|
3287
|
+
export declare const QualityModelSchema: {
|
|
3288
|
+
readonly type: "object";
|
|
3289
|
+
readonly properties: {
|
|
3290
|
+
readonly quality: {
|
|
3291
|
+
readonly $ref: "#/components/schemas/Quality";
|
|
3292
|
+
};
|
|
3293
|
+
readonly revision: {
|
|
3294
|
+
readonly $ref: "#/components/schemas/Revision";
|
|
3295
|
+
};
|
|
3296
|
+
};
|
|
3297
|
+
readonly additionalProperties: false;
|
|
3298
|
+
};
|
|
3299
|
+
export declare const QualityProfileQualityItemResourceSchema: {
|
|
3300
|
+
readonly type: "object";
|
|
3301
|
+
readonly properties: {
|
|
3302
|
+
readonly id: {
|
|
3303
|
+
readonly type: "integer";
|
|
3304
|
+
readonly format: "int32";
|
|
3305
|
+
};
|
|
3306
|
+
readonly name: {
|
|
3307
|
+
readonly type: "string";
|
|
3308
|
+
readonly nullable: true;
|
|
3309
|
+
};
|
|
3310
|
+
readonly quality: {
|
|
3311
|
+
readonly $ref: "#/components/schemas/Quality";
|
|
3312
|
+
};
|
|
3313
|
+
readonly items: {
|
|
3314
|
+
readonly type: "array";
|
|
3315
|
+
readonly items: {
|
|
3316
|
+
readonly $ref: "#/components/schemas/QualityProfileQualityItemResource";
|
|
3317
|
+
};
|
|
3318
|
+
readonly nullable: true;
|
|
3319
|
+
};
|
|
3320
|
+
readonly allowed: {
|
|
3321
|
+
readonly type: "boolean";
|
|
3322
|
+
};
|
|
3323
|
+
};
|
|
3324
|
+
readonly additionalProperties: false;
|
|
3325
|
+
};
|
|
3326
|
+
export declare const QualityProfileResourceSchema: {
|
|
3327
|
+
readonly type: "object";
|
|
3328
|
+
readonly properties: {
|
|
3329
|
+
readonly id: {
|
|
3330
|
+
readonly type: "integer";
|
|
3331
|
+
readonly format: "int32";
|
|
3332
|
+
};
|
|
3333
|
+
readonly name: {
|
|
3334
|
+
readonly type: "string";
|
|
3335
|
+
readonly nullable: true;
|
|
3336
|
+
};
|
|
3337
|
+
readonly upgradeAllowed: {
|
|
3338
|
+
readonly type: "boolean";
|
|
3339
|
+
};
|
|
3340
|
+
readonly cutoff: {
|
|
3341
|
+
readonly type: "integer";
|
|
3342
|
+
readonly format: "int32";
|
|
3343
|
+
};
|
|
3344
|
+
readonly items: {
|
|
3345
|
+
readonly type: "array";
|
|
3346
|
+
readonly items: {
|
|
3347
|
+
readonly $ref: "#/components/schemas/QualityProfileQualityItemResource";
|
|
3348
|
+
};
|
|
3349
|
+
readonly nullable: true;
|
|
3350
|
+
};
|
|
3351
|
+
readonly minFormatScore: {
|
|
3352
|
+
readonly type: "integer";
|
|
3353
|
+
readonly format: "int32";
|
|
3354
|
+
};
|
|
3355
|
+
readonly cutoffFormatScore: {
|
|
3356
|
+
readonly type: "integer";
|
|
3357
|
+
readonly format: "int32";
|
|
3358
|
+
};
|
|
3359
|
+
readonly minUpgradeFormatScore: {
|
|
3360
|
+
readonly type: "integer";
|
|
3361
|
+
readonly format: "int32";
|
|
3362
|
+
};
|
|
3363
|
+
readonly formatItems: {
|
|
3364
|
+
readonly type: "array";
|
|
3365
|
+
readonly items: {
|
|
3366
|
+
readonly $ref: "#/components/schemas/ProfileFormatItemResource";
|
|
3367
|
+
};
|
|
3368
|
+
readonly nullable: true;
|
|
3369
|
+
};
|
|
3370
|
+
readonly language: {
|
|
3371
|
+
readonly $ref: "#/components/schemas/Language";
|
|
3372
|
+
};
|
|
3373
|
+
};
|
|
3374
|
+
readonly additionalProperties: false;
|
|
3375
|
+
};
|
|
3376
|
+
export declare const QualitySourceSchema: {
|
|
3377
|
+
readonly enum: readonly ["unknown", "cam", "telesync", "telecine", "workprint", "dvd", "tv", "webdl", "webrip", "bluray"];
|
|
3378
|
+
readonly type: "string";
|
|
3379
|
+
};
|
|
3380
|
+
export declare const QueueBulkResourceSchema: {
|
|
3381
|
+
readonly type: "object";
|
|
3382
|
+
readonly properties: {
|
|
3383
|
+
readonly ids: {
|
|
3384
|
+
readonly type: "array";
|
|
3385
|
+
readonly items: {
|
|
3386
|
+
readonly type: "integer";
|
|
3387
|
+
readonly format: "int32";
|
|
3388
|
+
};
|
|
3389
|
+
readonly nullable: true;
|
|
3390
|
+
};
|
|
3391
|
+
};
|
|
3392
|
+
readonly additionalProperties: false;
|
|
3393
|
+
};
|
|
3394
|
+
export declare const QueueResourceSchema: {
|
|
3395
|
+
readonly type: "object";
|
|
3396
|
+
readonly properties: {
|
|
3397
|
+
readonly id: {
|
|
3398
|
+
readonly type: "integer";
|
|
3399
|
+
readonly format: "int32";
|
|
3400
|
+
};
|
|
3401
|
+
readonly movieId: {
|
|
3402
|
+
readonly type: "integer";
|
|
3403
|
+
readonly format: "int32";
|
|
3404
|
+
readonly nullable: true;
|
|
3405
|
+
};
|
|
3406
|
+
readonly movie: {
|
|
3407
|
+
readonly $ref: "#/components/schemas/MovieResource";
|
|
3408
|
+
};
|
|
3409
|
+
readonly languages: {
|
|
3410
|
+
readonly type: "array";
|
|
3411
|
+
readonly items: {
|
|
3412
|
+
readonly $ref: "#/components/schemas/Language";
|
|
3413
|
+
};
|
|
3414
|
+
readonly nullable: true;
|
|
3415
|
+
};
|
|
3416
|
+
readonly quality: {
|
|
3417
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
3418
|
+
};
|
|
3419
|
+
readonly customFormats: {
|
|
3420
|
+
readonly type: "array";
|
|
3421
|
+
readonly items: {
|
|
3422
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
3423
|
+
};
|
|
3424
|
+
readonly nullable: true;
|
|
3425
|
+
};
|
|
3426
|
+
readonly customFormatScore: {
|
|
3427
|
+
readonly type: "integer";
|
|
3428
|
+
readonly format: "int32";
|
|
3429
|
+
};
|
|
3430
|
+
readonly size: {
|
|
3431
|
+
readonly type: "number";
|
|
3432
|
+
readonly format: "double";
|
|
3433
|
+
};
|
|
3434
|
+
readonly title: {
|
|
3435
|
+
readonly type: "string";
|
|
3436
|
+
readonly nullable: true;
|
|
3437
|
+
};
|
|
3438
|
+
readonly estimatedCompletionTime: {
|
|
3439
|
+
readonly type: "string";
|
|
3440
|
+
readonly format: "date-time";
|
|
3441
|
+
readonly nullable: true;
|
|
3442
|
+
};
|
|
3443
|
+
readonly added: {
|
|
3444
|
+
readonly type: "string";
|
|
3445
|
+
readonly format: "date-time";
|
|
3446
|
+
readonly nullable: true;
|
|
3447
|
+
};
|
|
3448
|
+
readonly status: {
|
|
3449
|
+
readonly $ref: "#/components/schemas/QueueStatus";
|
|
3450
|
+
};
|
|
3451
|
+
readonly trackedDownloadStatus: {
|
|
3452
|
+
readonly $ref: "#/components/schemas/TrackedDownloadStatus";
|
|
3453
|
+
};
|
|
3454
|
+
readonly trackedDownloadState: {
|
|
3455
|
+
readonly $ref: "#/components/schemas/TrackedDownloadState";
|
|
3456
|
+
};
|
|
3457
|
+
readonly statusMessages: {
|
|
3458
|
+
readonly type: "array";
|
|
3459
|
+
readonly items: {
|
|
3460
|
+
readonly $ref: "#/components/schemas/TrackedDownloadStatusMessage";
|
|
3461
|
+
};
|
|
3462
|
+
readonly nullable: true;
|
|
3463
|
+
};
|
|
3464
|
+
readonly errorMessage: {
|
|
3465
|
+
readonly type: "string";
|
|
3466
|
+
readonly nullable: true;
|
|
3467
|
+
};
|
|
3468
|
+
readonly downloadId: {
|
|
3469
|
+
readonly type: "string";
|
|
3470
|
+
readonly nullable: true;
|
|
3471
|
+
};
|
|
3472
|
+
readonly protocol: {
|
|
3473
|
+
readonly $ref: "#/components/schemas/DownloadProtocol";
|
|
3474
|
+
};
|
|
3475
|
+
readonly downloadClient: {
|
|
3476
|
+
readonly type: "string";
|
|
3477
|
+
readonly nullable: true;
|
|
3478
|
+
};
|
|
3479
|
+
readonly downloadClientHasPostImportCategory: {
|
|
3480
|
+
readonly type: "boolean";
|
|
3481
|
+
};
|
|
3482
|
+
readonly indexer: {
|
|
3483
|
+
readonly type: "string";
|
|
3484
|
+
readonly nullable: true;
|
|
3485
|
+
};
|
|
3486
|
+
readonly outputPath: {
|
|
3487
|
+
readonly type: "string";
|
|
3488
|
+
readonly nullable: true;
|
|
3489
|
+
};
|
|
3490
|
+
readonly sizeleft: {
|
|
3491
|
+
readonly type: "number";
|
|
3492
|
+
readonly format: "double";
|
|
3493
|
+
readonly deprecated: true;
|
|
3494
|
+
};
|
|
3495
|
+
readonly timeleft: {
|
|
3496
|
+
readonly type: "string";
|
|
3497
|
+
readonly format: "date-span";
|
|
3498
|
+
readonly nullable: true;
|
|
3499
|
+
readonly deprecated: true;
|
|
3500
|
+
};
|
|
3501
|
+
};
|
|
3502
|
+
readonly additionalProperties: false;
|
|
3503
|
+
};
|
|
3504
|
+
export declare const QueueResourcePagingResourceSchema: {
|
|
3505
|
+
readonly type: "object";
|
|
3506
|
+
readonly properties: {
|
|
3507
|
+
readonly page: {
|
|
3508
|
+
readonly type: "integer";
|
|
3509
|
+
readonly format: "int32";
|
|
3510
|
+
};
|
|
3511
|
+
readonly pageSize: {
|
|
3512
|
+
readonly type: "integer";
|
|
3513
|
+
readonly format: "int32";
|
|
3514
|
+
};
|
|
3515
|
+
readonly sortKey: {
|
|
3516
|
+
readonly type: "string";
|
|
3517
|
+
readonly nullable: true;
|
|
3518
|
+
};
|
|
3519
|
+
readonly sortDirection: {
|
|
3520
|
+
readonly $ref: "#/components/schemas/SortDirection";
|
|
3521
|
+
};
|
|
3522
|
+
readonly totalRecords: {
|
|
3523
|
+
readonly type: "integer";
|
|
3524
|
+
readonly format: "int32";
|
|
3525
|
+
};
|
|
3526
|
+
readonly records: {
|
|
3527
|
+
readonly type: "array";
|
|
3528
|
+
readonly items: {
|
|
3529
|
+
readonly $ref: "#/components/schemas/QueueResource";
|
|
3530
|
+
};
|
|
3531
|
+
readonly nullable: true;
|
|
3532
|
+
};
|
|
3533
|
+
};
|
|
3534
|
+
readonly additionalProperties: false;
|
|
3535
|
+
};
|
|
3536
|
+
export declare const QueueStatusSchema: {
|
|
3537
|
+
readonly enum: readonly ["unknown", "queued", "paused", "downloading", "completed", "failed", "warning", "delay", "downloadClientUnavailable", "fallback"];
|
|
3538
|
+
readonly type: "string";
|
|
3539
|
+
};
|
|
3540
|
+
export declare const QueueStatusResourceSchema: {
|
|
3541
|
+
readonly type: "object";
|
|
3542
|
+
readonly properties: {
|
|
3543
|
+
readonly id: {
|
|
3544
|
+
readonly type: "integer";
|
|
3545
|
+
readonly format: "int32";
|
|
3546
|
+
};
|
|
3547
|
+
readonly totalCount: {
|
|
3548
|
+
readonly type: "integer";
|
|
3549
|
+
readonly format: "int32";
|
|
3550
|
+
};
|
|
3551
|
+
readonly count: {
|
|
3552
|
+
readonly type: "integer";
|
|
3553
|
+
readonly format: "int32";
|
|
3554
|
+
};
|
|
3555
|
+
readonly unknownCount: {
|
|
3556
|
+
readonly type: "integer";
|
|
3557
|
+
readonly format: "int32";
|
|
3558
|
+
};
|
|
3559
|
+
readonly errors: {
|
|
3560
|
+
readonly type: "boolean";
|
|
3561
|
+
};
|
|
3562
|
+
readonly warnings: {
|
|
3563
|
+
readonly type: "boolean";
|
|
3564
|
+
};
|
|
3565
|
+
readonly unknownErrors: {
|
|
3566
|
+
readonly type: "boolean";
|
|
3567
|
+
};
|
|
3568
|
+
readonly unknownWarnings: {
|
|
3569
|
+
readonly type: "boolean";
|
|
3570
|
+
};
|
|
3571
|
+
};
|
|
3572
|
+
readonly additionalProperties: false;
|
|
3573
|
+
};
|
|
3574
|
+
export declare const RatingChildSchema: {
|
|
3575
|
+
readonly type: "object";
|
|
3576
|
+
readonly properties: {
|
|
3577
|
+
readonly votes: {
|
|
3578
|
+
readonly type: "integer";
|
|
3579
|
+
readonly format: "int32";
|
|
3580
|
+
};
|
|
3581
|
+
readonly value: {
|
|
3582
|
+
readonly type: "number";
|
|
3583
|
+
readonly format: "double";
|
|
3584
|
+
};
|
|
3585
|
+
readonly type: {
|
|
3586
|
+
readonly $ref: "#/components/schemas/RatingType";
|
|
3587
|
+
};
|
|
3588
|
+
};
|
|
3589
|
+
readonly additionalProperties: false;
|
|
3590
|
+
};
|
|
3591
|
+
export declare const RatingTypeSchema: {
|
|
3592
|
+
readonly enum: readonly ["user", "critic"];
|
|
3593
|
+
readonly type: "string";
|
|
3594
|
+
};
|
|
3595
|
+
export declare const RatingsSchema: {
|
|
3596
|
+
readonly type: "object";
|
|
3597
|
+
readonly properties: {
|
|
3598
|
+
readonly imdb: {
|
|
3599
|
+
readonly $ref: "#/components/schemas/RatingChild";
|
|
3600
|
+
};
|
|
3601
|
+
readonly tmdb: {
|
|
3602
|
+
readonly $ref: "#/components/schemas/RatingChild";
|
|
3603
|
+
};
|
|
3604
|
+
readonly metacritic: {
|
|
3605
|
+
readonly $ref: "#/components/schemas/RatingChild";
|
|
3606
|
+
};
|
|
3607
|
+
readonly rottenTomatoes: {
|
|
3608
|
+
readonly $ref: "#/components/schemas/RatingChild";
|
|
3609
|
+
};
|
|
3610
|
+
readonly trakt: {
|
|
3611
|
+
readonly $ref: "#/components/schemas/RatingChild";
|
|
3612
|
+
};
|
|
3613
|
+
};
|
|
3614
|
+
readonly additionalProperties: false;
|
|
3615
|
+
};
|
|
3616
|
+
export declare const RejectionTypeSchema: {
|
|
3617
|
+
readonly enum: readonly ["permanent", "temporary"];
|
|
3618
|
+
readonly type: "string";
|
|
3619
|
+
};
|
|
3620
|
+
export declare const ReleaseProfileResourceSchema: {
|
|
3621
|
+
readonly type: "object";
|
|
3622
|
+
readonly properties: {
|
|
3623
|
+
readonly id: {
|
|
3624
|
+
readonly type: "integer";
|
|
3625
|
+
readonly format: "int32";
|
|
3626
|
+
};
|
|
3627
|
+
readonly name: {
|
|
3628
|
+
readonly type: "string";
|
|
3629
|
+
readonly nullable: true;
|
|
3630
|
+
};
|
|
3631
|
+
readonly enabled: {
|
|
3632
|
+
readonly type: "boolean";
|
|
3633
|
+
};
|
|
3634
|
+
readonly required: {
|
|
3635
|
+
readonly nullable: true;
|
|
3636
|
+
};
|
|
3637
|
+
readonly ignored: {
|
|
3638
|
+
readonly nullable: true;
|
|
3639
|
+
};
|
|
3640
|
+
readonly indexerId: {
|
|
3641
|
+
readonly type: "integer";
|
|
3642
|
+
readonly format: "int32";
|
|
3643
|
+
};
|
|
3644
|
+
readonly tags: {
|
|
3645
|
+
readonly uniqueItems: true;
|
|
3646
|
+
readonly type: "array";
|
|
3647
|
+
readonly items: {
|
|
3648
|
+
readonly type: "integer";
|
|
3649
|
+
readonly format: "int32";
|
|
3650
|
+
};
|
|
3651
|
+
readonly nullable: true;
|
|
3652
|
+
};
|
|
3653
|
+
};
|
|
3654
|
+
readonly additionalProperties: false;
|
|
3655
|
+
};
|
|
3656
|
+
export declare const ReleaseResourceSchema: {
|
|
3657
|
+
readonly type: "object";
|
|
3658
|
+
readonly properties: {
|
|
3659
|
+
readonly id: {
|
|
3660
|
+
readonly type: "integer";
|
|
3661
|
+
readonly format: "int32";
|
|
3662
|
+
};
|
|
3663
|
+
readonly guid: {
|
|
3664
|
+
readonly type: "string";
|
|
3665
|
+
readonly nullable: true;
|
|
3666
|
+
};
|
|
3667
|
+
readonly quality: {
|
|
3668
|
+
readonly $ref: "#/components/schemas/QualityModel";
|
|
3669
|
+
};
|
|
3670
|
+
readonly customFormats: {
|
|
3671
|
+
readonly type: "array";
|
|
3672
|
+
readonly items: {
|
|
3673
|
+
readonly $ref: "#/components/schemas/CustomFormatResource";
|
|
3674
|
+
};
|
|
3675
|
+
readonly nullable: true;
|
|
3676
|
+
};
|
|
3677
|
+
readonly customFormatScore: {
|
|
3678
|
+
readonly type: "integer";
|
|
3679
|
+
readonly format: "int32";
|
|
3680
|
+
};
|
|
3681
|
+
readonly qualityWeight: {
|
|
3682
|
+
readonly type: "integer";
|
|
3683
|
+
readonly format: "int32";
|
|
3684
|
+
};
|
|
3685
|
+
readonly age: {
|
|
3686
|
+
readonly type: "integer";
|
|
3687
|
+
readonly format: "int32";
|
|
3688
|
+
};
|
|
3689
|
+
readonly ageHours: {
|
|
3690
|
+
readonly type: "number";
|
|
3691
|
+
readonly format: "double";
|
|
3692
|
+
};
|
|
3693
|
+
readonly ageMinutes: {
|
|
3694
|
+
readonly type: "number";
|
|
3695
|
+
readonly format: "double";
|
|
3696
|
+
};
|
|
3697
|
+
readonly size: {
|
|
3698
|
+
readonly type: "integer";
|
|
3699
|
+
readonly format: "int64";
|
|
3700
|
+
};
|
|
3701
|
+
readonly indexerId: {
|
|
3702
|
+
readonly type: "integer";
|
|
3703
|
+
readonly format: "int32";
|
|
3704
|
+
};
|
|
3705
|
+
readonly indexer: {
|
|
3706
|
+
readonly type: "string";
|
|
3707
|
+
readonly nullable: true;
|
|
3708
|
+
};
|
|
3709
|
+
readonly releaseGroup: {
|
|
3710
|
+
readonly type: "string";
|
|
3711
|
+
readonly nullable: true;
|
|
3712
|
+
};
|
|
3713
|
+
readonly subGroup: {
|
|
3714
|
+
readonly type: "string";
|
|
3715
|
+
readonly nullable: true;
|
|
3716
|
+
};
|
|
3717
|
+
readonly releaseHash: {
|
|
3718
|
+
readonly type: "string";
|
|
3719
|
+
readonly nullable: true;
|
|
3720
|
+
};
|
|
3721
|
+
readonly title: {
|
|
3722
|
+
readonly type: "string";
|
|
3723
|
+
readonly nullable: true;
|
|
3724
|
+
};
|
|
3725
|
+
readonly sceneSource: {
|
|
3726
|
+
readonly type: "boolean";
|
|
3727
|
+
};
|
|
3728
|
+
readonly movieTitles: {
|
|
3729
|
+
readonly type: "array";
|
|
3730
|
+
readonly items: {
|
|
3731
|
+
readonly type: "string";
|
|
3732
|
+
};
|
|
3733
|
+
readonly nullable: true;
|
|
3734
|
+
};
|
|
3735
|
+
readonly languages: {
|
|
3736
|
+
readonly type: "array";
|
|
3737
|
+
readonly items: {
|
|
3738
|
+
readonly $ref: "#/components/schemas/Language";
|
|
3739
|
+
};
|
|
3740
|
+
readonly nullable: true;
|
|
3741
|
+
};
|
|
3742
|
+
readonly mappedMovieId: {
|
|
3743
|
+
readonly type: "integer";
|
|
3744
|
+
readonly format: "int32";
|
|
3745
|
+
readonly nullable: true;
|
|
3746
|
+
};
|
|
3747
|
+
readonly approved: {
|
|
3748
|
+
readonly type: "boolean";
|
|
3749
|
+
};
|
|
3750
|
+
readonly temporarilyRejected: {
|
|
3751
|
+
readonly type: "boolean";
|
|
3752
|
+
};
|
|
3753
|
+
readonly rejected: {
|
|
3754
|
+
readonly type: "boolean";
|
|
3755
|
+
};
|
|
3756
|
+
readonly tmdbId: {
|
|
3757
|
+
readonly type: "integer";
|
|
3758
|
+
readonly format: "int32";
|
|
3759
|
+
};
|
|
3760
|
+
readonly imdbId: {
|
|
3761
|
+
readonly type: "integer";
|
|
3762
|
+
readonly format: "int32";
|
|
3763
|
+
};
|
|
3764
|
+
readonly rejections: {
|
|
3765
|
+
readonly type: "array";
|
|
3766
|
+
readonly items: {
|
|
3767
|
+
readonly type: "string";
|
|
3768
|
+
};
|
|
3769
|
+
readonly nullable: true;
|
|
3770
|
+
};
|
|
3771
|
+
readonly publishDate: {
|
|
3772
|
+
readonly type: "string";
|
|
3773
|
+
readonly format: "date-time";
|
|
3774
|
+
};
|
|
3775
|
+
readonly commentUrl: {
|
|
3776
|
+
readonly type: "string";
|
|
3777
|
+
readonly nullable: true;
|
|
3778
|
+
};
|
|
3779
|
+
readonly downloadUrl: {
|
|
3780
|
+
readonly type: "string";
|
|
3781
|
+
readonly nullable: true;
|
|
3782
|
+
};
|
|
3783
|
+
readonly infoUrl: {
|
|
3784
|
+
readonly type: "string";
|
|
3785
|
+
readonly nullable: true;
|
|
3786
|
+
};
|
|
3787
|
+
readonly movieRequested: {
|
|
3788
|
+
readonly type: "boolean";
|
|
3789
|
+
};
|
|
3790
|
+
readonly downloadAllowed: {
|
|
3791
|
+
readonly type: "boolean";
|
|
3792
|
+
};
|
|
3793
|
+
readonly releaseWeight: {
|
|
3794
|
+
readonly type: "integer";
|
|
3795
|
+
readonly format: "int32";
|
|
3796
|
+
};
|
|
3797
|
+
readonly edition: {
|
|
3798
|
+
readonly type: "string";
|
|
3799
|
+
readonly nullable: true;
|
|
3800
|
+
};
|
|
3801
|
+
readonly magnetUrl: {
|
|
3802
|
+
readonly type: "string";
|
|
3803
|
+
readonly nullable: true;
|
|
3804
|
+
};
|
|
3805
|
+
readonly infoHash: {
|
|
3806
|
+
readonly type: "string";
|
|
3807
|
+
readonly nullable: true;
|
|
3808
|
+
};
|
|
3809
|
+
readonly seeders: {
|
|
3810
|
+
readonly type: "integer";
|
|
3811
|
+
readonly format: "int32";
|
|
3812
|
+
readonly nullable: true;
|
|
3813
|
+
};
|
|
3814
|
+
readonly leechers: {
|
|
3815
|
+
readonly type: "integer";
|
|
3816
|
+
readonly format: "int32";
|
|
3817
|
+
readonly nullable: true;
|
|
3818
|
+
};
|
|
3819
|
+
readonly protocol: {
|
|
3820
|
+
readonly $ref: "#/components/schemas/DownloadProtocol";
|
|
3821
|
+
};
|
|
3822
|
+
readonly indexerFlags: {
|
|
3823
|
+
readonly nullable: true;
|
|
3824
|
+
};
|
|
3825
|
+
readonly movieId: {
|
|
3826
|
+
readonly type: "integer";
|
|
3827
|
+
readonly format: "int32";
|
|
3828
|
+
readonly nullable: true;
|
|
3829
|
+
};
|
|
3830
|
+
readonly downloadClientId: {
|
|
3831
|
+
readonly type: "integer";
|
|
3832
|
+
readonly format: "int32";
|
|
3833
|
+
readonly nullable: true;
|
|
3834
|
+
};
|
|
3835
|
+
readonly downloadClient: {
|
|
3836
|
+
readonly type: "string";
|
|
3837
|
+
readonly nullable: true;
|
|
3838
|
+
};
|
|
3839
|
+
readonly shouldOverride: {
|
|
3840
|
+
readonly type: "boolean";
|
|
3841
|
+
readonly nullable: true;
|
|
3842
|
+
};
|
|
3843
|
+
};
|
|
3844
|
+
readonly additionalProperties: false;
|
|
3845
|
+
};
|
|
3846
|
+
export declare const RemotePathMappingResourceSchema: {
|
|
3847
|
+
readonly type: "object";
|
|
3848
|
+
readonly properties: {
|
|
3849
|
+
readonly id: {
|
|
3850
|
+
readonly type: "integer";
|
|
3851
|
+
readonly format: "int32";
|
|
3852
|
+
};
|
|
3853
|
+
readonly host: {
|
|
3854
|
+
readonly type: "string";
|
|
3855
|
+
readonly nullable: true;
|
|
3856
|
+
};
|
|
3857
|
+
readonly remotePath: {
|
|
3858
|
+
readonly type: "string";
|
|
3859
|
+
readonly nullable: true;
|
|
3860
|
+
};
|
|
3861
|
+
readonly localPath: {
|
|
3862
|
+
readonly type: "string";
|
|
3863
|
+
readonly nullable: true;
|
|
3864
|
+
};
|
|
3865
|
+
};
|
|
3866
|
+
readonly additionalProperties: false;
|
|
3867
|
+
};
|
|
3868
|
+
export declare const RenameMovieResourceSchema: {
|
|
3869
|
+
readonly type: "object";
|
|
3870
|
+
readonly properties: {
|
|
3871
|
+
readonly id: {
|
|
3872
|
+
readonly type: "integer";
|
|
3873
|
+
readonly format: "int32";
|
|
3874
|
+
};
|
|
3875
|
+
readonly movieId: {
|
|
3876
|
+
readonly type: "integer";
|
|
3877
|
+
readonly format: "int32";
|
|
3878
|
+
};
|
|
3879
|
+
readonly movieFileId: {
|
|
3880
|
+
readonly type: "integer";
|
|
3881
|
+
readonly format: "int32";
|
|
3882
|
+
};
|
|
3883
|
+
readonly existingPath: {
|
|
3884
|
+
readonly type: "string";
|
|
3885
|
+
readonly nullable: true;
|
|
3886
|
+
};
|
|
3887
|
+
readonly newPath: {
|
|
3888
|
+
readonly type: "string";
|
|
3889
|
+
readonly nullable: true;
|
|
3890
|
+
};
|
|
3891
|
+
};
|
|
3892
|
+
readonly additionalProperties: false;
|
|
3893
|
+
};
|
|
3894
|
+
export declare const RescanAfterRefreshTypeSchema: {
|
|
3895
|
+
readonly enum: readonly ["always", "afterManual", "never"];
|
|
3896
|
+
readonly type: "string";
|
|
3897
|
+
};
|
|
3898
|
+
export declare const RevisionSchema: {
|
|
3899
|
+
readonly type: "object";
|
|
3900
|
+
readonly properties: {
|
|
3901
|
+
readonly version: {
|
|
3902
|
+
readonly type: "integer";
|
|
3903
|
+
readonly format: "int32";
|
|
3904
|
+
};
|
|
3905
|
+
readonly real: {
|
|
3906
|
+
readonly type: "integer";
|
|
3907
|
+
readonly format: "int32";
|
|
3908
|
+
};
|
|
3909
|
+
readonly isRepack: {
|
|
3910
|
+
readonly type: "boolean";
|
|
3911
|
+
};
|
|
3912
|
+
};
|
|
3913
|
+
readonly additionalProperties: false;
|
|
3914
|
+
};
|
|
3915
|
+
export declare const RootFolderResourceSchema: {
|
|
3916
|
+
readonly type: "object";
|
|
3917
|
+
readonly properties: {
|
|
3918
|
+
readonly id: {
|
|
3919
|
+
readonly type: "integer";
|
|
3920
|
+
readonly format: "int32";
|
|
3921
|
+
};
|
|
3922
|
+
readonly path: {
|
|
3923
|
+
readonly type: "string";
|
|
3924
|
+
readonly nullable: true;
|
|
3925
|
+
};
|
|
3926
|
+
readonly accessible: {
|
|
3927
|
+
readonly type: "boolean";
|
|
3928
|
+
};
|
|
3929
|
+
readonly freeSpace: {
|
|
3930
|
+
readonly type: "integer";
|
|
3931
|
+
readonly format: "int64";
|
|
3932
|
+
readonly nullable: true;
|
|
3933
|
+
};
|
|
3934
|
+
readonly unmappedFolders: {
|
|
3935
|
+
readonly type: "array";
|
|
3936
|
+
readonly items: {
|
|
3937
|
+
readonly $ref: "#/components/schemas/UnmappedFolder";
|
|
3938
|
+
};
|
|
3939
|
+
readonly nullable: true;
|
|
3940
|
+
};
|
|
3941
|
+
};
|
|
3942
|
+
readonly additionalProperties: false;
|
|
3943
|
+
};
|
|
3944
|
+
export declare const RuntimeModeSchema: {
|
|
3945
|
+
readonly enum: readonly ["console", "service", "tray"];
|
|
3946
|
+
readonly type: "string";
|
|
3947
|
+
};
|
|
3948
|
+
export declare const SelectOptionSchema: {
|
|
3949
|
+
readonly type: "object";
|
|
3950
|
+
readonly properties: {
|
|
3951
|
+
readonly value: {
|
|
3952
|
+
readonly type: "integer";
|
|
3953
|
+
readonly format: "int32";
|
|
3954
|
+
};
|
|
3955
|
+
readonly name: {
|
|
3956
|
+
readonly type: "string";
|
|
3957
|
+
readonly nullable: true;
|
|
3958
|
+
};
|
|
3959
|
+
readonly order: {
|
|
3960
|
+
readonly type: "integer";
|
|
3961
|
+
readonly format: "int32";
|
|
3962
|
+
};
|
|
3963
|
+
readonly hint: {
|
|
3964
|
+
readonly type: "string";
|
|
3965
|
+
readonly nullable: true;
|
|
3966
|
+
};
|
|
3967
|
+
readonly dividerAfter: {
|
|
3968
|
+
readonly type: "boolean";
|
|
3969
|
+
};
|
|
3970
|
+
};
|
|
3971
|
+
readonly additionalProperties: false;
|
|
3972
|
+
};
|
|
3973
|
+
export declare const SortDirectionSchema: {
|
|
3974
|
+
readonly enum: readonly ["default", "ascending", "descending"];
|
|
3975
|
+
readonly type: "string";
|
|
3976
|
+
};
|
|
3977
|
+
export declare const SourceTypeSchema: {
|
|
3978
|
+
readonly enum: readonly ["tmdb", "mappings", "user", "indexer"];
|
|
3979
|
+
readonly type: "string";
|
|
3980
|
+
};
|
|
3981
|
+
export declare const SystemResourceSchema: {
|
|
3982
|
+
readonly type: "object";
|
|
3983
|
+
readonly properties: {
|
|
3984
|
+
readonly appName: {
|
|
3985
|
+
readonly type: "string";
|
|
3986
|
+
readonly nullable: true;
|
|
3987
|
+
};
|
|
3988
|
+
readonly instanceName: {
|
|
3989
|
+
readonly type: "string";
|
|
3990
|
+
readonly nullable: true;
|
|
3991
|
+
};
|
|
3992
|
+
readonly version: {
|
|
3993
|
+
readonly type: "string";
|
|
3994
|
+
readonly nullable: true;
|
|
3995
|
+
};
|
|
3996
|
+
readonly buildTime: {
|
|
3997
|
+
readonly type: "string";
|
|
3998
|
+
readonly format: "date-time";
|
|
3999
|
+
};
|
|
4000
|
+
readonly isDebug: {
|
|
4001
|
+
readonly type: "boolean";
|
|
4002
|
+
};
|
|
4003
|
+
readonly isProduction: {
|
|
4004
|
+
readonly type: "boolean";
|
|
4005
|
+
};
|
|
4006
|
+
readonly isAdmin: {
|
|
4007
|
+
readonly type: "boolean";
|
|
4008
|
+
};
|
|
4009
|
+
readonly isUserInteractive: {
|
|
4010
|
+
readonly type: "boolean";
|
|
4011
|
+
};
|
|
4012
|
+
readonly startupPath: {
|
|
4013
|
+
readonly type: "string";
|
|
4014
|
+
readonly nullable: true;
|
|
4015
|
+
};
|
|
4016
|
+
readonly appData: {
|
|
4017
|
+
readonly type: "string";
|
|
4018
|
+
readonly nullable: true;
|
|
4019
|
+
};
|
|
4020
|
+
readonly osName: {
|
|
4021
|
+
readonly type: "string";
|
|
4022
|
+
readonly nullable: true;
|
|
4023
|
+
};
|
|
4024
|
+
readonly osVersion: {
|
|
4025
|
+
readonly type: "string";
|
|
4026
|
+
readonly nullable: true;
|
|
4027
|
+
};
|
|
4028
|
+
readonly isNetCore: {
|
|
4029
|
+
readonly type: "boolean";
|
|
4030
|
+
};
|
|
4031
|
+
readonly isLinux: {
|
|
4032
|
+
readonly type: "boolean";
|
|
4033
|
+
};
|
|
4034
|
+
readonly isOsx: {
|
|
4035
|
+
readonly type: "boolean";
|
|
4036
|
+
};
|
|
4037
|
+
readonly isWindows: {
|
|
4038
|
+
readonly type: "boolean";
|
|
4039
|
+
};
|
|
4040
|
+
readonly isDocker: {
|
|
4041
|
+
readonly type: "boolean";
|
|
4042
|
+
};
|
|
4043
|
+
readonly mode: {
|
|
4044
|
+
readonly $ref: "#/components/schemas/RuntimeMode";
|
|
4045
|
+
};
|
|
4046
|
+
readonly branch: {
|
|
4047
|
+
readonly type: "string";
|
|
4048
|
+
readonly nullable: true;
|
|
4049
|
+
};
|
|
4050
|
+
readonly databaseType: {
|
|
4051
|
+
readonly $ref: "#/components/schemas/DatabaseType";
|
|
4052
|
+
};
|
|
4053
|
+
readonly databaseVersion: {
|
|
4054
|
+
readonly type: "string";
|
|
4055
|
+
readonly nullable: true;
|
|
4056
|
+
};
|
|
4057
|
+
readonly authentication: {
|
|
4058
|
+
readonly $ref: "#/components/schemas/AuthenticationType";
|
|
4059
|
+
};
|
|
4060
|
+
readonly migrationVersion: {
|
|
4061
|
+
readonly type: "integer";
|
|
4062
|
+
readonly format: "int32";
|
|
4063
|
+
};
|
|
4064
|
+
readonly urlBase: {
|
|
4065
|
+
readonly type: "string";
|
|
4066
|
+
readonly nullable: true;
|
|
4067
|
+
};
|
|
4068
|
+
readonly runtimeVersion: {
|
|
4069
|
+
readonly type: "string";
|
|
4070
|
+
readonly nullable: true;
|
|
4071
|
+
};
|
|
4072
|
+
readonly runtimeName: {
|
|
4073
|
+
readonly type: "string";
|
|
4074
|
+
readonly nullable: true;
|
|
4075
|
+
};
|
|
4076
|
+
readonly startTime: {
|
|
4077
|
+
readonly type: "string";
|
|
4078
|
+
readonly format: "date-time";
|
|
4079
|
+
};
|
|
4080
|
+
readonly packageVersion: {
|
|
4081
|
+
readonly type: "string";
|
|
4082
|
+
readonly nullable: true;
|
|
4083
|
+
};
|
|
4084
|
+
readonly packageAuthor: {
|
|
4085
|
+
readonly type: "string";
|
|
4086
|
+
readonly nullable: true;
|
|
4087
|
+
};
|
|
4088
|
+
readonly packageUpdateMechanism: {
|
|
4089
|
+
readonly $ref: "#/components/schemas/UpdateMechanism";
|
|
4090
|
+
};
|
|
4091
|
+
readonly packageUpdateMechanismMessage: {
|
|
4092
|
+
readonly type: "string";
|
|
4093
|
+
readonly nullable: true;
|
|
4094
|
+
};
|
|
4095
|
+
};
|
|
4096
|
+
readonly additionalProperties: false;
|
|
4097
|
+
};
|
|
4098
|
+
export declare const TMDbCountryCodeSchema: {
|
|
4099
|
+
readonly enum: readonly ["au", "br", "ca", "fr", "de", "gb", "in", "ie", "it", "nz", "ro", "es", "us"];
|
|
4100
|
+
readonly type: "string";
|
|
4101
|
+
};
|
|
4102
|
+
export declare const TagDetailsResourceSchema: {
|
|
4103
|
+
readonly type: "object";
|
|
4104
|
+
readonly properties: {
|
|
4105
|
+
readonly id: {
|
|
4106
|
+
readonly type: "integer";
|
|
4107
|
+
readonly format: "int32";
|
|
4108
|
+
};
|
|
4109
|
+
readonly label: {
|
|
4110
|
+
readonly type: "string";
|
|
4111
|
+
readonly nullable: true;
|
|
4112
|
+
};
|
|
4113
|
+
readonly delayProfileIds: {
|
|
4114
|
+
readonly type: "array";
|
|
4115
|
+
readonly items: {
|
|
4116
|
+
readonly type: "integer";
|
|
4117
|
+
readonly format: "int32";
|
|
4118
|
+
};
|
|
4119
|
+
readonly nullable: true;
|
|
4120
|
+
};
|
|
4121
|
+
readonly importListIds: {
|
|
4122
|
+
readonly type: "array";
|
|
4123
|
+
readonly items: {
|
|
4124
|
+
readonly type: "integer";
|
|
4125
|
+
readonly format: "int32";
|
|
4126
|
+
};
|
|
4127
|
+
readonly nullable: true;
|
|
4128
|
+
};
|
|
4129
|
+
readonly notificationIds: {
|
|
4130
|
+
readonly type: "array";
|
|
4131
|
+
readonly items: {
|
|
4132
|
+
readonly type: "integer";
|
|
4133
|
+
readonly format: "int32";
|
|
4134
|
+
};
|
|
4135
|
+
readonly nullable: true;
|
|
4136
|
+
};
|
|
4137
|
+
readonly releaseProfileIds: {
|
|
4138
|
+
readonly type: "array";
|
|
4139
|
+
readonly items: {
|
|
4140
|
+
readonly type: "integer";
|
|
4141
|
+
readonly format: "int32";
|
|
4142
|
+
};
|
|
4143
|
+
readonly nullable: true;
|
|
4144
|
+
};
|
|
4145
|
+
readonly indexerIds: {
|
|
4146
|
+
readonly type: "array";
|
|
4147
|
+
readonly items: {
|
|
4148
|
+
readonly type: "integer";
|
|
4149
|
+
readonly format: "int32";
|
|
4150
|
+
};
|
|
4151
|
+
readonly nullable: true;
|
|
4152
|
+
};
|
|
4153
|
+
readonly downloadClientIds: {
|
|
4154
|
+
readonly type: "array";
|
|
4155
|
+
readonly items: {
|
|
4156
|
+
readonly type: "integer";
|
|
4157
|
+
readonly format: "int32";
|
|
4158
|
+
};
|
|
4159
|
+
readonly nullable: true;
|
|
4160
|
+
};
|
|
4161
|
+
readonly autoTagIds: {
|
|
4162
|
+
readonly type: "array";
|
|
4163
|
+
readonly items: {
|
|
4164
|
+
readonly type: "integer";
|
|
4165
|
+
readonly format: "int32";
|
|
4166
|
+
};
|
|
4167
|
+
readonly nullable: true;
|
|
4168
|
+
};
|
|
4169
|
+
readonly movieIds: {
|
|
4170
|
+
readonly type: "array";
|
|
4171
|
+
readonly items: {
|
|
4172
|
+
readonly type: "integer";
|
|
4173
|
+
readonly format: "int32";
|
|
4174
|
+
};
|
|
4175
|
+
readonly nullable: true;
|
|
4176
|
+
};
|
|
4177
|
+
};
|
|
4178
|
+
readonly additionalProperties: false;
|
|
4179
|
+
};
|
|
4180
|
+
export declare const TagResourceSchema: {
|
|
4181
|
+
readonly type: "object";
|
|
4182
|
+
readonly properties: {
|
|
4183
|
+
readonly id: {
|
|
4184
|
+
readonly type: "integer";
|
|
4185
|
+
readonly format: "int32";
|
|
4186
|
+
};
|
|
4187
|
+
readonly label: {
|
|
4188
|
+
readonly type: "string";
|
|
4189
|
+
readonly nullable: true;
|
|
4190
|
+
};
|
|
4191
|
+
};
|
|
4192
|
+
readonly additionalProperties: false;
|
|
4193
|
+
};
|
|
4194
|
+
export declare const TaskResourceSchema: {
|
|
4195
|
+
readonly type: "object";
|
|
4196
|
+
readonly properties: {
|
|
4197
|
+
readonly id: {
|
|
4198
|
+
readonly type: "integer";
|
|
4199
|
+
readonly format: "int32";
|
|
4200
|
+
};
|
|
4201
|
+
readonly name: {
|
|
4202
|
+
readonly type: "string";
|
|
4203
|
+
readonly nullable: true;
|
|
4204
|
+
};
|
|
4205
|
+
readonly taskName: {
|
|
4206
|
+
readonly type: "string";
|
|
4207
|
+
readonly nullable: true;
|
|
4208
|
+
};
|
|
4209
|
+
readonly interval: {
|
|
4210
|
+
readonly type: "integer";
|
|
4211
|
+
readonly format: "int32";
|
|
4212
|
+
};
|
|
4213
|
+
readonly lastExecution: {
|
|
4214
|
+
readonly type: "string";
|
|
4215
|
+
readonly format: "date-time";
|
|
4216
|
+
};
|
|
4217
|
+
readonly lastStartTime: {
|
|
4218
|
+
readonly type: "string";
|
|
4219
|
+
readonly format: "date-time";
|
|
4220
|
+
};
|
|
4221
|
+
readonly nextExecution: {
|
|
4222
|
+
readonly type: "string";
|
|
4223
|
+
readonly format: "date-time";
|
|
4224
|
+
};
|
|
4225
|
+
readonly lastDuration: {
|
|
4226
|
+
readonly type: "string";
|
|
4227
|
+
readonly format: "date-span";
|
|
4228
|
+
readonly readOnly: true;
|
|
4229
|
+
};
|
|
4230
|
+
};
|
|
4231
|
+
readonly additionalProperties: false;
|
|
4232
|
+
};
|
|
4233
|
+
export declare const TrackedDownloadStateSchema: {
|
|
4234
|
+
readonly enum: readonly ["downloading", "importBlocked", "importPending", "importing", "imported", "failedPending", "failed", "ignored"];
|
|
4235
|
+
readonly type: "string";
|
|
4236
|
+
};
|
|
4237
|
+
export declare const TrackedDownloadStatusSchema: {
|
|
4238
|
+
readonly enum: readonly ["ok", "warning", "error"];
|
|
4239
|
+
readonly type: "string";
|
|
4240
|
+
};
|
|
4241
|
+
export declare const TrackedDownloadStatusMessageSchema: {
|
|
4242
|
+
readonly type: "object";
|
|
4243
|
+
readonly properties: {
|
|
4244
|
+
readonly title: {
|
|
4245
|
+
readonly type: "string";
|
|
4246
|
+
readonly nullable: true;
|
|
4247
|
+
};
|
|
4248
|
+
readonly messages: {
|
|
4249
|
+
readonly type: "array";
|
|
4250
|
+
readonly items: {
|
|
4251
|
+
readonly type: "string";
|
|
4252
|
+
};
|
|
4253
|
+
readonly nullable: true;
|
|
4254
|
+
};
|
|
4255
|
+
};
|
|
4256
|
+
readonly additionalProperties: false;
|
|
4257
|
+
};
|
|
4258
|
+
export declare const UiConfigResourceSchema: {
|
|
4259
|
+
readonly type: "object";
|
|
4260
|
+
readonly properties: {
|
|
4261
|
+
readonly id: {
|
|
4262
|
+
readonly type: "integer";
|
|
4263
|
+
readonly format: "int32";
|
|
4264
|
+
};
|
|
4265
|
+
readonly firstDayOfWeek: {
|
|
4266
|
+
readonly type: "integer";
|
|
4267
|
+
readonly format: "int32";
|
|
4268
|
+
};
|
|
4269
|
+
readonly calendarWeekColumnHeader: {
|
|
4270
|
+
readonly type: "string";
|
|
4271
|
+
readonly nullable: true;
|
|
4272
|
+
};
|
|
4273
|
+
readonly movieRuntimeFormat: {
|
|
4274
|
+
readonly $ref: "#/components/schemas/MovieRuntimeFormatType";
|
|
4275
|
+
};
|
|
4276
|
+
readonly shortDateFormat: {
|
|
4277
|
+
readonly type: "string";
|
|
4278
|
+
readonly nullable: true;
|
|
4279
|
+
};
|
|
4280
|
+
readonly longDateFormat: {
|
|
4281
|
+
readonly type: "string";
|
|
4282
|
+
readonly nullable: true;
|
|
4283
|
+
};
|
|
4284
|
+
readonly timeFormat: {
|
|
4285
|
+
readonly type: "string";
|
|
4286
|
+
readonly nullable: true;
|
|
4287
|
+
};
|
|
4288
|
+
readonly showRelativeDates: {
|
|
4289
|
+
readonly type: "boolean";
|
|
4290
|
+
};
|
|
4291
|
+
readonly enableColorImpairedMode: {
|
|
4292
|
+
readonly type: "boolean";
|
|
4293
|
+
};
|
|
4294
|
+
readonly movieInfoLanguage: {
|
|
4295
|
+
readonly type: "integer";
|
|
4296
|
+
readonly format: "int32";
|
|
4297
|
+
};
|
|
4298
|
+
readonly uiLanguage: {
|
|
4299
|
+
readonly type: "integer";
|
|
4300
|
+
readonly format: "int32";
|
|
4301
|
+
};
|
|
4302
|
+
readonly theme: {
|
|
4303
|
+
readonly type: "string";
|
|
4304
|
+
readonly nullable: true;
|
|
4305
|
+
};
|
|
4306
|
+
};
|
|
4307
|
+
readonly additionalProperties: false;
|
|
4308
|
+
};
|
|
4309
|
+
export declare const UnmappedFolderSchema: {
|
|
4310
|
+
readonly type: "object";
|
|
4311
|
+
readonly properties: {
|
|
4312
|
+
readonly name: {
|
|
4313
|
+
readonly type: "string";
|
|
4314
|
+
readonly nullable: true;
|
|
4315
|
+
};
|
|
4316
|
+
readonly path: {
|
|
4317
|
+
readonly type: "string";
|
|
4318
|
+
readonly nullable: true;
|
|
4319
|
+
};
|
|
4320
|
+
readonly relativePath: {
|
|
4321
|
+
readonly type: "string";
|
|
4322
|
+
readonly nullable: true;
|
|
4323
|
+
};
|
|
4324
|
+
};
|
|
4325
|
+
readonly additionalProperties: false;
|
|
4326
|
+
};
|
|
4327
|
+
export declare const UpdateChangesSchema: {
|
|
4328
|
+
readonly type: "object";
|
|
4329
|
+
readonly properties: {
|
|
4330
|
+
readonly new: {
|
|
4331
|
+
readonly type: "array";
|
|
4332
|
+
readonly items: {
|
|
4333
|
+
readonly type: "string";
|
|
4334
|
+
};
|
|
4335
|
+
readonly nullable: true;
|
|
4336
|
+
};
|
|
4337
|
+
readonly fixed: {
|
|
4338
|
+
readonly type: "array";
|
|
4339
|
+
readonly items: {
|
|
4340
|
+
readonly type: "string";
|
|
4341
|
+
};
|
|
4342
|
+
readonly nullable: true;
|
|
4343
|
+
};
|
|
4344
|
+
};
|
|
4345
|
+
readonly additionalProperties: false;
|
|
4346
|
+
};
|
|
4347
|
+
export declare const UpdateMechanismSchema: {
|
|
4348
|
+
readonly enum: readonly ["builtIn", "script", "external", "apt", "docker"];
|
|
4349
|
+
readonly type: "string";
|
|
4350
|
+
};
|
|
4351
|
+
export declare const UpdateResourceSchema: {
|
|
4352
|
+
readonly type: "object";
|
|
4353
|
+
readonly properties: {
|
|
4354
|
+
readonly id: {
|
|
4355
|
+
readonly type: "integer";
|
|
4356
|
+
readonly format: "int32";
|
|
4357
|
+
};
|
|
4358
|
+
readonly version: {
|
|
4359
|
+
readonly type: "string";
|
|
4360
|
+
readonly nullable: true;
|
|
4361
|
+
};
|
|
4362
|
+
readonly branch: {
|
|
4363
|
+
readonly type: "string";
|
|
4364
|
+
readonly nullable: true;
|
|
4365
|
+
};
|
|
4366
|
+
readonly releaseDate: {
|
|
4367
|
+
readonly type: "string";
|
|
4368
|
+
readonly format: "date-time";
|
|
4369
|
+
};
|
|
4370
|
+
readonly fileName: {
|
|
4371
|
+
readonly type: "string";
|
|
4372
|
+
readonly nullable: true;
|
|
4373
|
+
};
|
|
4374
|
+
readonly url: {
|
|
4375
|
+
readonly type: "string";
|
|
4376
|
+
readonly nullable: true;
|
|
4377
|
+
};
|
|
4378
|
+
readonly installed: {
|
|
4379
|
+
readonly type: "boolean";
|
|
4380
|
+
};
|
|
4381
|
+
readonly installedOn: {
|
|
4382
|
+
readonly type: "string";
|
|
4383
|
+
readonly format: "date-time";
|
|
4384
|
+
readonly nullable: true;
|
|
4385
|
+
};
|
|
4386
|
+
readonly installable: {
|
|
4387
|
+
readonly type: "boolean";
|
|
4388
|
+
};
|
|
4389
|
+
readonly latest: {
|
|
4390
|
+
readonly type: "boolean";
|
|
4391
|
+
};
|
|
4392
|
+
readonly changes: {
|
|
4393
|
+
readonly $ref: "#/components/schemas/UpdateChanges";
|
|
4394
|
+
};
|
|
4395
|
+
readonly hash: {
|
|
4396
|
+
readonly type: "string";
|
|
4397
|
+
readonly nullable: true;
|
|
4398
|
+
};
|
|
4399
|
+
};
|
|
4400
|
+
readonly additionalProperties: false;
|
|
4401
|
+
};
|
|
4402
|
+
//# sourceMappingURL=schemas.gen.d.ts.map
|