@prdb/sdk 0.6.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/actors/changes/index.d.ts +9 -0
- package/dist/generated/actors/changes/index.d.ts.map +1 -1
- package/dist/generated/actors/changes/index.js.map +1 -1
- package/dist/generated/actors/index.d.ts +21 -0
- package/dist/generated/actors/index.d.ts.map +1 -1
- package/dist/generated/actors/index.js.map +1 -1
- package/dist/generated/favoriteActors/index.d.ts +15 -0
- package/dist/generated/favoriteActors/index.d.ts.map +1 -1
- package/dist/generated/favoriteActors/index.js.map +1 -1
- package/dist/generated/favoriteSites/index.d.ts +15 -0
- package/dist/generated/favoriteSites/index.d.ts.map +1 -1
- package/dist/generated/favoriteSites/index.js.map +1 -1
- package/dist/generated/indexerFilehashes/changes/index.d.ts +15 -0
- package/dist/generated/indexerFilehashes/changes/index.d.ts.map +1 -1
- package/dist/generated/indexerFilehashes/changes/index.js.map +1 -1
- package/dist/generated/indexerFilehashes/latest/index.d.ts +33 -0
- package/dist/generated/indexerFilehashes/latest/index.d.ts.map +1 -1
- package/dist/generated/indexerFilehashes/latest/index.js.map +1 -1
- package/dist/generated/models/index.d.ts +551 -311
- package/dist/generated/models/index.d.ts.map +1 -1
- package/dist/generated/models/index.js +13 -1
- package/dist/generated/models/index.js.map +1 -1
- package/dist/generated/predb/index.d.ts +24 -0
- package/dist/generated/predb/index.d.ts.map +1 -1
- package/dist/generated/predb/index.js.map +1 -1
- package/dist/generated/predb/latest/index.d.ts +15 -0
- package/dist/generated/predb/latest/index.d.ts.map +1 -1
- package/dist/generated/predb/latest/index.js.map +1 -1
- package/dist/generated/predb/searchByVideo/index.d.ts +6 -0
- package/dist/generated/predb/searchByVideo/index.d.ts.map +1 -1
- package/dist/generated/predb/searchByVideo/index.js.map +1 -1
- package/dist/generated/sites/index.d.ts +15 -0
- package/dist/generated/sites/index.d.ts.map +1 -1
- package/dist/generated/sites/index.js.map +1 -1
- package/dist/generated/videos/filehashSubmissions/index.d.ts +2 -2
- package/dist/generated/videos/filehashes/changes/index.d.ts +15 -0
- package/dist/generated/videos/filehashes/changes/index.d.ts.map +1 -1
- package/dist/generated/videos/filehashes/changes/index.js.map +1 -1
- package/dist/generated/videos/filehashes/latest/index.d.ts +33 -0
- package/dist/generated/videos/filehashes/latest/index.d.ts.map +1 -1
- package/dist/generated/videos/filehashes/latest/index.js.map +1 -1
- package/dist/generated/videos/filehashes/unlinked/index.d.ts +12 -0
- package/dist/generated/videos/filehashes/unlinked/index.d.ts.map +1 -1
- package/dist/generated/videos/filehashes/unlinked/index.js.map +1 -1
- package/dist/generated/videos/identify/index.d.ts +2 -2
- package/dist/generated/videos/index.d.ts +27 -0
- package/dist/generated/videos/index.d.ts.map +1 -1
- package/dist/generated/videos/index.js.map +1 -1
- package/dist/generated/wantedVideos/batch/index.d.ts +2 -2
- package/dist/generated/wantedVideos/changes/index.d.ts +9 -0
- package/dist/generated/wantedVideos/changes/index.d.ts.map +1 -1
- package/dist/generated/wantedVideos/changes/index.js.map +1 -1
- package/dist/generated/wantedVideos/fulfillments/index.d.ts +2 -2
- package/dist/generated/wantedVideos/index.d.ts +27 -0
- package/dist/generated/wantedVideos/index.d.ts.map +1 -1
- package/dist/generated/wantedVideos/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
import { type AdditionalDataHolder, type ApiError, type DateOnly, type Guid, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
|
|
2
|
+
/**
|
|
3
|
+
* An active subscription held by the authenticated user.
|
|
4
|
+
*/
|
|
2
5
|
export interface ActiveSubscriptionDto extends AdditionalDataHolder, Parsable {
|
|
3
6
|
/**
|
|
4
|
-
*
|
|
7
|
+
* UTC timestamp when this subscription period ends.
|
|
5
8
|
*/
|
|
6
9
|
endsAtUtc?: Date | null;
|
|
7
10
|
/**
|
|
8
|
-
*
|
|
11
|
+
* Stable slug identifying the subscription package (e.g. "plus", "premium").
|
|
9
12
|
*/
|
|
10
13
|
packageIdentifier?: string | null;
|
|
11
14
|
/**
|
|
12
|
-
*
|
|
15
|
+
* Human-readable title of the subscription package.
|
|
13
16
|
*/
|
|
14
17
|
packageTitle?: string | null;
|
|
15
18
|
/**
|
|
16
|
-
*
|
|
19
|
+
* UTC timestamp when this subscription period starts.
|
|
17
20
|
*/
|
|
18
21
|
startsAtUtc?: Date | null;
|
|
19
22
|
}
|
|
@@ -23,7 +26,7 @@ export interface ActorAliasDto extends AdditionalDataHolder, Parsable {
|
|
|
23
26
|
*/
|
|
24
27
|
name?: string | null;
|
|
25
28
|
/**
|
|
26
|
-
*
|
|
29
|
+
* ID of the site this alias is associated with, if any.
|
|
27
30
|
*/
|
|
28
31
|
siteId?: Guid | null;
|
|
29
32
|
}
|
|
@@ -37,6 +40,9 @@ export interface ActorBioDto extends AdditionalDataHolder, Parsable {
|
|
|
37
40
|
*/
|
|
38
41
|
text?: string | null;
|
|
39
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* Full current actor payload, including tombstone metadata.
|
|
45
|
+
*/
|
|
40
46
|
export interface ActorChangeActorDto extends AdditionalDataHolder, Parsable {
|
|
41
47
|
/**
|
|
42
48
|
* The aliases property
|
|
@@ -203,13 +209,16 @@ export interface ActorChangeBioDto extends AdditionalDataHolder, Parsable {
|
|
|
203
209
|
*/
|
|
204
210
|
text?: string | null;
|
|
205
211
|
}
|
|
212
|
+
/**
|
|
213
|
+
* A single current-state actor change.
|
|
214
|
+
*/
|
|
206
215
|
export interface ActorChangeDto extends AdditionalDataHolder, Parsable {
|
|
207
216
|
/**
|
|
208
|
-
*
|
|
217
|
+
* Full current actor payload, including tombstone metadata.
|
|
209
218
|
*/
|
|
210
219
|
actor?: ActorChangeActorDto | null;
|
|
211
220
|
/**
|
|
212
|
-
*
|
|
221
|
+
* One of `created`, `updated`, or `deleted`.
|
|
213
222
|
*/
|
|
214
223
|
eventType?: string | null;
|
|
215
224
|
}
|
|
@@ -227,7 +236,7 @@ export interface ActorChangeImageDto extends AdditionalDataHolder, Parsable {
|
|
|
227
236
|
*/
|
|
228
237
|
imageTypeLabel?: string | null;
|
|
229
238
|
/**
|
|
230
|
-
*
|
|
239
|
+
* Absolute URL for the image, if available: a complete URL including scheme and host, ready torequest as-is.
|
|
231
240
|
*/
|
|
232
241
|
url?: string | null;
|
|
233
242
|
}
|
|
@@ -245,6 +254,9 @@ export interface ActorChangeLinkDto extends AdditionalDataHolder, Parsable {
|
|
|
245
254
|
*/
|
|
246
255
|
url?: string | null;
|
|
247
256
|
}
|
|
257
|
+
/**
|
|
258
|
+
* Seek cursor for continuing an actor change feed.
|
|
259
|
+
*/
|
|
248
260
|
export interface ActorChangesCursorDto extends AdditionalDataHolder, Parsable {
|
|
249
261
|
/**
|
|
250
262
|
* The id property
|
|
@@ -255,6 +267,9 @@ export interface ActorChangesCursorDto extends AdditionalDataHolder, Parsable {
|
|
|
255
267
|
*/
|
|
256
268
|
updatedAtUtc?: Date | null;
|
|
257
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* Full details for a single actor.
|
|
272
|
+
*/
|
|
258
273
|
export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
259
274
|
/**
|
|
260
275
|
* The aliases property
|
|
@@ -265,7 +280,7 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
265
280
|
*/
|
|
266
281
|
bios?: ActorBioDto[] | null;
|
|
267
282
|
/**
|
|
268
|
-
*
|
|
283
|
+
* Date of birth, if known.
|
|
269
284
|
*/
|
|
270
285
|
birthday?: DateOnly | null;
|
|
271
286
|
/**
|
|
@@ -273,7 +288,7 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
273
288
|
*/
|
|
274
289
|
birthdayType?: number | null;
|
|
275
290
|
/**
|
|
276
|
-
*
|
|
291
|
+
* Human-readable birthday type label (e.g. "Exact", "Approximate").
|
|
277
292
|
*/
|
|
278
293
|
birthdayTypeLabel?: string | null;
|
|
279
294
|
/**
|
|
@@ -285,7 +300,7 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
285
300
|
*/
|
|
286
301
|
braSize?: number | null;
|
|
287
302
|
/**
|
|
288
|
-
*
|
|
303
|
+
* Human-readable bra size label (e.g. "34B").
|
|
289
304
|
*/
|
|
290
305
|
braSizeLabel?: string | null;
|
|
291
306
|
/**
|
|
@@ -297,11 +312,11 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
297
312
|
*/
|
|
298
313
|
breastTypeLabel?: string | null;
|
|
299
314
|
/**
|
|
300
|
-
*
|
|
315
|
+
* Year the actor's career ended, if applicable.
|
|
301
316
|
*/
|
|
302
317
|
careerEnd?: number | null;
|
|
303
318
|
/**
|
|
304
|
-
*
|
|
319
|
+
* Year the actor's career began.
|
|
305
320
|
*/
|
|
306
321
|
careerStart?: number | null;
|
|
307
322
|
/**
|
|
@@ -309,7 +324,7 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
309
324
|
*/
|
|
310
325
|
createdAtUtc?: Date | null;
|
|
311
326
|
/**
|
|
312
|
-
*
|
|
327
|
+
* Date of death, if applicable.
|
|
313
328
|
*/
|
|
314
329
|
deathday?: DateOnly | null;
|
|
315
330
|
/**
|
|
@@ -333,7 +348,7 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
333
348
|
*/
|
|
334
349
|
gender?: number | null;
|
|
335
350
|
/**
|
|
336
|
-
*
|
|
351
|
+
* Human-readable gender label.
|
|
337
352
|
*/
|
|
338
353
|
genderLabel?: string | null;
|
|
339
354
|
/**
|
|
@@ -345,11 +360,11 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
345
360
|
*/
|
|
346
361
|
haircolorLabel?: string | null;
|
|
347
362
|
/**
|
|
348
|
-
*
|
|
363
|
+
* Height in centimetres.
|
|
349
364
|
*/
|
|
350
365
|
height?: number | null;
|
|
351
366
|
/**
|
|
352
|
-
*
|
|
367
|
+
* Hip measurement in centimetres.
|
|
353
368
|
*/
|
|
354
369
|
hipSize?: number | null;
|
|
355
370
|
/**
|
|
@@ -365,7 +380,7 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
365
380
|
*/
|
|
366
381
|
links?: ActorLinkDto[] | null;
|
|
367
382
|
/**
|
|
368
|
-
*
|
|
383
|
+
* Stage name of the actor.
|
|
369
384
|
*/
|
|
370
385
|
name?: string | null;
|
|
371
386
|
/**
|
|
@@ -389,7 +404,7 @@ export interface ActorDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
389
404
|
*/
|
|
390
405
|
updatedAtUtc?: Date | null;
|
|
391
406
|
/**
|
|
392
|
-
*
|
|
407
|
+
* Waist measurement in centimetres.
|
|
393
408
|
*/
|
|
394
409
|
waistSize?: number | null;
|
|
395
410
|
}
|
|
@@ -407,7 +422,7 @@ export interface ActorImageDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
407
422
|
*/
|
|
408
423
|
imageTypeLabel?: string | null;
|
|
409
424
|
/**
|
|
410
|
-
*
|
|
425
|
+
* Absolute URL for the image, if available: a complete URL including scheme and host, ready torequest as-is.
|
|
411
426
|
*/
|
|
412
427
|
url?: string | null;
|
|
413
428
|
}
|
|
@@ -425,9 +440,12 @@ export interface ActorLinkDto extends AdditionalDataHolder, Parsable {
|
|
|
425
440
|
*/
|
|
426
441
|
url?: string | null;
|
|
427
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* Summary of a single actor.
|
|
445
|
+
*/
|
|
428
446
|
export interface ActorSummaryDto extends AdditionalDataHolder, Parsable {
|
|
429
447
|
/**
|
|
430
|
-
*
|
|
448
|
+
* Date of birth, if known.
|
|
431
449
|
*/
|
|
432
450
|
birthday?: DateOnly | null;
|
|
433
451
|
/**
|
|
@@ -435,7 +453,7 @@ export interface ActorSummaryDto extends AdditionalDataHolder, Parsable {
|
|
|
435
453
|
*/
|
|
436
454
|
ethnicity?: number | null;
|
|
437
455
|
/**
|
|
438
|
-
*
|
|
456
|
+
* Human-readable ethnicity label.
|
|
439
457
|
*/
|
|
440
458
|
ethnicityLabel?: string | null;
|
|
441
459
|
/**
|
|
@@ -443,7 +461,7 @@ export interface ActorSummaryDto extends AdditionalDataHolder, Parsable {
|
|
|
443
461
|
*/
|
|
444
462
|
gender?: number | null;
|
|
445
463
|
/**
|
|
446
|
-
*
|
|
464
|
+
* Human-readable gender label.
|
|
447
465
|
*/
|
|
448
466
|
genderLabel?: string | null;
|
|
449
467
|
/**
|
|
@@ -451,7 +469,7 @@ export interface ActorSummaryDto extends AdditionalDataHolder, Parsable {
|
|
|
451
469
|
*/
|
|
452
470
|
id?: Guid | null;
|
|
453
471
|
/**
|
|
454
|
-
*
|
|
472
|
+
* Stage name of the actor.
|
|
455
473
|
*/
|
|
456
474
|
name?: string | null;
|
|
457
475
|
/**
|
|
@@ -459,43 +477,43 @@ export interface ActorSummaryDto extends AdditionalDataHolder, Parsable {
|
|
|
459
477
|
*/
|
|
460
478
|
nationality?: number | null;
|
|
461
479
|
/**
|
|
462
|
-
*
|
|
480
|
+
* Human-readable nationality label.
|
|
463
481
|
*/
|
|
464
482
|
nationalityLabel?: string | null;
|
|
465
483
|
/**
|
|
466
|
-
*
|
|
484
|
+
* Absolute URL of the actor's profile image, if available: a complete URL including scheme andhost, ready to request as-is.
|
|
467
485
|
*/
|
|
468
486
|
profileImageUrl?: string | null;
|
|
469
487
|
}
|
|
470
488
|
export interface AddDownloadedFromIndexerFilenameRequest extends AdditionalDataHolder, Parsable {
|
|
471
489
|
/**
|
|
472
|
-
* The filename
|
|
490
|
+
* The filename as reported by the indexer/download source.
|
|
473
491
|
*/
|
|
474
492
|
filename?: string | null;
|
|
475
493
|
/**
|
|
476
|
-
*
|
|
494
|
+
* File size in bytes.
|
|
477
495
|
*/
|
|
478
496
|
filesize?: number | null;
|
|
479
497
|
/**
|
|
480
|
-
*
|
|
498
|
+
* Optional OS hash value as a 16-character fixed-length string.
|
|
481
499
|
*/
|
|
482
500
|
osHash?: string | null;
|
|
483
501
|
/**
|
|
484
|
-
*
|
|
502
|
+
* Optional perceptual hash value, 16 hexadecimal characters. It must be computed as"Perceptual hashes" in the API description prescribes; a value from another procedureis stored but can never be matched.
|
|
485
503
|
*/
|
|
486
504
|
pHash?: string | null;
|
|
487
505
|
}
|
|
488
506
|
export interface AddDownloadedFromIndexerRequest extends AdditionalDataHolder, Parsable {
|
|
489
507
|
/**
|
|
490
|
-
*
|
|
508
|
+
* Download identifier returned by the indexer or download client.
|
|
491
509
|
*/
|
|
492
510
|
downloadIdentifier?: string | null;
|
|
493
511
|
/**
|
|
494
|
-
*
|
|
512
|
+
* Optional filename rows to create together with the parent entry.
|
|
495
513
|
*/
|
|
496
514
|
filenames?: AddDownloadedFromIndexerFilenameRequest[] | null;
|
|
497
515
|
/**
|
|
498
|
-
*
|
|
516
|
+
* Indexer-specific identifier for the download item.
|
|
499
517
|
*/
|
|
500
518
|
indexerId?: string | null;
|
|
501
519
|
/**
|
|
@@ -503,35 +521,41 @@ export interface AddDownloadedFromIndexerRequest extends AdditionalDataHolder, P
|
|
|
503
521
|
*/
|
|
504
522
|
indexerSource?: number | null;
|
|
505
523
|
/**
|
|
506
|
-
*
|
|
524
|
+
* NZB or release name.
|
|
507
525
|
*/
|
|
508
526
|
nzbName?: string | null;
|
|
509
527
|
/**
|
|
510
|
-
*
|
|
528
|
+
* NZB or release URL.
|
|
511
529
|
*/
|
|
512
530
|
nzbUrl?: string | null;
|
|
513
531
|
/**
|
|
514
|
-
*
|
|
532
|
+
* Optional ID of the wanted video this download belongs to. Pass null when the download is not linked to a video yet.
|
|
515
533
|
*/
|
|
516
534
|
videoId?: Guid | null;
|
|
517
535
|
}
|
|
536
|
+
/**
|
|
537
|
+
* Request body for batch-adding wanted videos.
|
|
538
|
+
*/
|
|
518
539
|
export interface AddWantedVideosBatchRequest extends AdditionalDataHolder, Parsable {
|
|
519
540
|
/**
|
|
520
|
-
*
|
|
541
|
+
* IDs of the videos to add. Between 1 and 50 entries.
|
|
521
542
|
*/
|
|
522
543
|
videoIds?: Guid[] | null;
|
|
523
544
|
}
|
|
545
|
+
/**
|
|
546
|
+
* Summary of a batch add-wanted-videos operation.
|
|
547
|
+
*/
|
|
524
548
|
export interface AddWantedVideosBatchResponse extends AdditionalDataHolder, Parsable {
|
|
525
549
|
/**
|
|
526
|
-
*
|
|
550
|
+
* Number of entries newly added to the wanted list.
|
|
527
551
|
*/
|
|
528
552
|
added?: number | null;
|
|
529
553
|
/**
|
|
530
|
-
*
|
|
554
|
+
* Number of entries that were already on the wanted list.
|
|
531
555
|
*/
|
|
532
556
|
alreadyExisted?: number | null;
|
|
533
557
|
/**
|
|
534
|
-
*
|
|
558
|
+
* Number of video IDs that were not found in the database.
|
|
535
559
|
*/
|
|
536
560
|
notFound?: number | null;
|
|
537
561
|
}
|
|
@@ -1891,59 +1915,65 @@ export declare function deserializeIntoWantedVideoChangeWantedVideoDto(wantedVid
|
|
|
1891
1915
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
1892
1916
|
*/
|
|
1893
1917
|
export declare function deserializeIntoWantedVideoSummaryDto(wantedVideoSummaryDto?: Partial<WantedVideoSummaryDto> | undefined): Record<string, (node: ParseNode) => void>;
|
|
1918
|
+
/**
|
|
1919
|
+
* A filename recorded for a downloaded-from-indexer entry.
|
|
1920
|
+
*/
|
|
1894
1921
|
export interface DownloadedFromIndexerFilenameDto extends AdditionalDataHolder, Parsable {
|
|
1895
1922
|
/**
|
|
1896
|
-
*
|
|
1923
|
+
* When this filename row was created.
|
|
1897
1924
|
*/
|
|
1898
1925
|
createdAtUtc?: Date | null;
|
|
1899
1926
|
/**
|
|
1900
|
-
*
|
|
1927
|
+
* ID of the parent downloaded-from-indexer entry.
|
|
1901
1928
|
*/
|
|
1902
1929
|
downloadedFromIndexerId?: Guid | null;
|
|
1903
1930
|
/**
|
|
1904
|
-
* The filename
|
|
1931
|
+
* The filename as reported by the indexer/download source.
|
|
1905
1932
|
*/
|
|
1906
1933
|
filename?: string | null;
|
|
1907
1934
|
/**
|
|
1908
|
-
*
|
|
1935
|
+
* File size in bytes.
|
|
1909
1936
|
*/
|
|
1910
1937
|
filesize?: number | null;
|
|
1911
1938
|
/**
|
|
1912
|
-
*
|
|
1939
|
+
* ID of the filename row.
|
|
1913
1940
|
*/
|
|
1914
1941
|
id?: Guid | null;
|
|
1915
1942
|
/**
|
|
1916
|
-
*
|
|
1943
|
+
* Optional OS hash value as a 16-character fixed-length string.
|
|
1917
1944
|
*/
|
|
1918
1945
|
osHash?: string | null;
|
|
1919
1946
|
/**
|
|
1920
|
-
*
|
|
1947
|
+
* Optional perceptual hash value as a 16-character fixed-length string.
|
|
1921
1948
|
*/
|
|
1922
1949
|
pHash?: string | null;
|
|
1923
1950
|
/**
|
|
1924
|
-
*
|
|
1951
|
+
* When this filename row was last updated.
|
|
1925
1952
|
*/
|
|
1926
1953
|
updatedAtUtc?: Date | null;
|
|
1927
1954
|
}
|
|
1955
|
+
/**
|
|
1956
|
+
* A downloaded-from-indexer entry for the current user.
|
|
1957
|
+
*/
|
|
1928
1958
|
export interface DownloadedFromIndexerResponse extends AdditionalDataHolder, Parsable {
|
|
1929
1959
|
/**
|
|
1930
|
-
*
|
|
1960
|
+
* When this entry was created.
|
|
1931
1961
|
*/
|
|
1932
1962
|
createdAtUtc?: Date | null;
|
|
1933
1963
|
/**
|
|
1934
|
-
*
|
|
1964
|
+
* Download identifier returned by the indexer or download client.
|
|
1935
1965
|
*/
|
|
1936
1966
|
downloadIdentifier?: string | null;
|
|
1937
1967
|
/**
|
|
1938
|
-
*
|
|
1968
|
+
* Filename rows recorded for this entry.
|
|
1939
1969
|
*/
|
|
1940
1970
|
filenames?: DownloadedFromIndexerFilenameDto[] | null;
|
|
1941
1971
|
/**
|
|
1942
|
-
*
|
|
1972
|
+
* ID of the downloaded-from-indexer entry.
|
|
1943
1973
|
*/
|
|
1944
1974
|
id?: Guid | null;
|
|
1945
1975
|
/**
|
|
1946
|
-
*
|
|
1976
|
+
* Indexer-specific identifier for the download item.
|
|
1947
1977
|
*/
|
|
1948
1978
|
indexerId?: string | null;
|
|
1949
1979
|
/**
|
|
@@ -1951,32 +1981,38 @@ export interface DownloadedFromIndexerResponse extends AdditionalDataHolder, Par
|
|
|
1951
1981
|
*/
|
|
1952
1982
|
indexerSource?: number | null;
|
|
1953
1983
|
/**
|
|
1954
|
-
*
|
|
1984
|
+
* NZB or release name.
|
|
1955
1985
|
*/
|
|
1956
1986
|
nzbName?: string | null;
|
|
1957
1987
|
/**
|
|
1958
|
-
*
|
|
1988
|
+
* NZB or release URL.
|
|
1959
1989
|
*/
|
|
1960
1990
|
nzbUrl?: string | null;
|
|
1961
1991
|
/**
|
|
1962
|
-
*
|
|
1992
|
+
* When this entry was last updated.
|
|
1963
1993
|
*/
|
|
1964
1994
|
updatedAtUtc?: Date | null;
|
|
1965
1995
|
/**
|
|
1966
|
-
*
|
|
1996
|
+
* ID of the associated wanted video, or null when the download is not linked to a video.
|
|
1967
1997
|
*/
|
|
1968
1998
|
videoId?: Guid | null;
|
|
1969
1999
|
}
|
|
2000
|
+
/**
|
|
2001
|
+
* A single changed favorite actor row in the incremental feed.
|
|
2002
|
+
*/
|
|
1970
2003
|
export interface FavoriteActorChangeDto extends AdditionalDataHolder, Parsable {
|
|
1971
2004
|
/**
|
|
1972
|
-
*
|
|
2005
|
+
* One of `created`, `updated`, or `deleted`.
|
|
1973
2006
|
*/
|
|
1974
2007
|
eventType?: string | null;
|
|
1975
2008
|
/**
|
|
1976
|
-
*
|
|
2009
|
+
* Current-state payload for a favorite actor row in the incremental feed.
|
|
1977
2010
|
*/
|
|
1978
2011
|
favoriteActor?: FavoriteActorChangeFavoriteActorDto | null;
|
|
1979
2012
|
}
|
|
2013
|
+
/**
|
|
2014
|
+
* Current-state payload for a favorite actor row in the incremental feed.
|
|
2015
|
+
*/
|
|
1980
2016
|
export interface FavoriteActorChangeFavoriteActorDto extends AdditionalDataHolder, Parsable {
|
|
1981
2017
|
/**
|
|
1982
2018
|
* The deletedAtUtc property
|
|
@@ -2011,14 +2047,22 @@ export interface FavoriteActorChangeFavoriteActorDto extends AdditionalDataHolde
|
|
|
2011
2047
|
*/
|
|
2012
2048
|
nationality?: string | null;
|
|
2013
2049
|
/**
|
|
2014
|
-
* The
|
|
2050
|
+
* Deprecated alias for `profileImageUrl`, carrying the identical value. The nameclaimed a path fragment that was never sent; read `profileImageUrl` instead. Removed inthe next major version.
|
|
2051
|
+
* @deprecated
|
|
2015
2052
|
*/
|
|
2016
2053
|
profileImageCdnPath?: string | null;
|
|
2054
|
+
/**
|
|
2055
|
+
* Absolute URL of the actor's face/profile image, if available: a complete URL includingscheme and host, ready to request as-is.
|
|
2056
|
+
*/
|
|
2057
|
+
profileImageUrl?: string | null;
|
|
2017
2058
|
/**
|
|
2018
2059
|
* The updatedAtUtc property
|
|
2019
2060
|
*/
|
|
2020
2061
|
updatedAtUtc?: Date | null;
|
|
2021
2062
|
}
|
|
2063
|
+
/**
|
|
2064
|
+
* Seek cursor for continuing a favorite actor change feed.
|
|
2065
|
+
*/
|
|
2022
2066
|
export interface FavoriteActorChangesCursorDto extends AdditionalDataHolder, Parsable {
|
|
2023
2067
|
/**
|
|
2024
2068
|
* The id property
|
|
@@ -2029,17 +2073,20 @@ export interface FavoriteActorChangesCursorDto extends AdditionalDataHolder, Par
|
|
|
2029
2073
|
*/
|
|
2030
2074
|
updatedAtUtc?: Date | null;
|
|
2031
2075
|
}
|
|
2076
|
+
/**
|
|
2077
|
+
* Summary of an actor in the current user's favorites list.
|
|
2078
|
+
*/
|
|
2032
2079
|
export interface FavoriteActorSummaryDto extends AdditionalDataHolder, Parsable {
|
|
2033
2080
|
/**
|
|
2034
|
-
*
|
|
2081
|
+
* Ethnicity label.
|
|
2035
2082
|
*/
|
|
2036
2083
|
ethnicity?: string | null;
|
|
2037
2084
|
/**
|
|
2038
|
-
*
|
|
2085
|
+
* UTC timestamp when the user added this actor to their favorites.
|
|
2039
2086
|
*/
|
|
2040
2087
|
favoritedAtUtc?: Date | null;
|
|
2041
2088
|
/**
|
|
2042
|
-
*
|
|
2089
|
+
* Gender label (e.g. `Female`, `Male`, `Unknown`).
|
|
2043
2090
|
*/
|
|
2044
2091
|
gender?: string | null;
|
|
2045
2092
|
/**
|
|
@@ -2051,24 +2098,35 @@ export interface FavoriteActorSummaryDto extends AdditionalDataHolder, Parsable
|
|
|
2051
2098
|
*/
|
|
2052
2099
|
name?: string | null;
|
|
2053
2100
|
/**
|
|
2054
|
-
*
|
|
2101
|
+
* Nationality label.
|
|
2055
2102
|
*/
|
|
2056
2103
|
nationality?: string | null;
|
|
2057
2104
|
/**
|
|
2058
|
-
* The
|
|
2105
|
+
* Deprecated alias for `profileImageUrl`, carrying the identical value. The nameclaimed a path fragment that was never sent; read `profileImageUrl` instead. Removed inthe next major version.
|
|
2106
|
+
* @deprecated
|
|
2059
2107
|
*/
|
|
2060
2108
|
profileImageCdnPath?: string | null;
|
|
2109
|
+
/**
|
|
2110
|
+
* Absolute URL of the actor's face/profile image, if available: a complete URL includingscheme and host, ready to request as-is.
|
|
2111
|
+
*/
|
|
2112
|
+
profileImageUrl?: string | null;
|
|
2061
2113
|
}
|
|
2114
|
+
/**
|
|
2115
|
+
* A single changed favorite site row in the incremental feed.
|
|
2116
|
+
*/
|
|
2062
2117
|
export interface FavoriteSiteChangeDto extends AdditionalDataHolder, Parsable {
|
|
2063
2118
|
/**
|
|
2064
|
-
*
|
|
2119
|
+
* One of `created`, `updated`, or `deleted`.
|
|
2065
2120
|
*/
|
|
2066
2121
|
eventType?: string | null;
|
|
2067
2122
|
/**
|
|
2068
|
-
*
|
|
2123
|
+
* Current-state payload for a favorite site row in the incremental feed.
|
|
2069
2124
|
*/
|
|
2070
2125
|
favoriteSite?: FavoriteSiteChangeFavoriteSiteDto | null;
|
|
2071
2126
|
}
|
|
2127
|
+
/**
|
|
2128
|
+
* Current-state payload for a favorite site row in the incremental feed.
|
|
2129
|
+
*/
|
|
2072
2130
|
export interface FavoriteSiteChangeFavoriteSiteDto extends AdditionalDataHolder, Parsable {
|
|
2073
2131
|
/**
|
|
2074
2132
|
* The deletedAtUtc property
|
|
@@ -2107,6 +2165,9 @@ export interface FavoriteSiteChangeFavoriteSiteDto extends AdditionalDataHolder,
|
|
|
2107
2165
|
*/
|
|
2108
2166
|
url?: string | null;
|
|
2109
2167
|
}
|
|
2168
|
+
/**
|
|
2169
|
+
* Seek cursor for continuing a favorite site change feed.
|
|
2170
|
+
*/
|
|
2110
2171
|
export interface FavoriteSiteChangesCursorDto extends AdditionalDataHolder, Parsable {
|
|
2111
2172
|
/**
|
|
2112
2173
|
* The id property
|
|
@@ -2117,9 +2178,12 @@ export interface FavoriteSiteChangesCursorDto extends AdditionalDataHolder, Pars
|
|
|
2117
2178
|
*/
|
|
2118
2179
|
updatedAtUtc?: Date | null;
|
|
2119
2180
|
}
|
|
2181
|
+
/**
|
|
2182
|
+
* Summary of a site in the current user's favorites list.
|
|
2183
|
+
*/
|
|
2120
2184
|
export interface FavoriteSiteSummaryDto extends AdditionalDataHolder, Parsable {
|
|
2121
2185
|
/**
|
|
2122
|
-
*
|
|
2186
|
+
* UTC timestamp when the user added this site to their favorites.
|
|
2123
2187
|
*/
|
|
2124
2188
|
favoritedAtUtc?: Date | null;
|
|
2125
2189
|
/**
|
|
@@ -2143,9 +2207,12 @@ export interface FavoriteSiteSummaryDto extends AdditionalDataHolder, Parsable {
|
|
|
2143
2207
|
*/
|
|
2144
2208
|
url?: string | null;
|
|
2145
2209
|
}
|
|
2210
|
+
/**
|
|
2211
|
+
* A single fulfilment update.
|
|
2212
|
+
*/
|
|
2146
2213
|
export interface FulfillWantedVideoItem extends AdditionalDataHolder, Parsable {
|
|
2147
2214
|
/**
|
|
2148
|
-
*
|
|
2215
|
+
* When the video was fulfilled. Ignored when isFulfilled is false; defaults to the server time when omitted.
|
|
2149
2216
|
*/
|
|
2150
2217
|
fulfilledAtUtc?: Date | null;
|
|
2151
2218
|
/**
|
|
@@ -2157,40 +2224,52 @@ export interface FulfillWantedVideoItem extends AdditionalDataHolder, Parsable {
|
|
|
2157
2224
|
*/
|
|
2158
2225
|
fulfillmentByApp?: number | null;
|
|
2159
2226
|
/**
|
|
2160
|
-
*
|
|
2227
|
+
* External identifier from the fulfilling application, if applicable.
|
|
2161
2228
|
*/
|
|
2162
2229
|
fulfillmentExternalId?: string | null;
|
|
2163
2230
|
/**
|
|
2164
|
-
*
|
|
2231
|
+
* Whether the wanted video has been fulfilled.
|
|
2165
2232
|
*/
|
|
2166
2233
|
isFulfilled?: boolean | null;
|
|
2167
2234
|
/**
|
|
2168
|
-
*
|
|
2235
|
+
* ID of the video whose wanted entry is updated. Must be unique within the request.
|
|
2169
2236
|
*/
|
|
2170
2237
|
videoId?: Guid | null;
|
|
2171
2238
|
}
|
|
2239
|
+
/**
|
|
2240
|
+
* What happened to one video of the batch.
|
|
2241
|
+
*/
|
|
2172
2242
|
export interface FulfillWantedVideoResultDto extends AdditionalDataHolder, Parsable {
|
|
2173
2243
|
/**
|
|
2174
|
-
* Known values: Updated (0), Unchanged (1), NotWanted (2), NotFound (3).
|
|
2244
|
+
* Outcome of a single fulfilment update. Known values: Updated (0), Unchanged (1), NotWanted (2), NotFound (3).
|
|
2175
2245
|
*/
|
|
2176
2246
|
outcome?: number | null;
|
|
2177
2247
|
/**
|
|
2178
|
-
*
|
|
2248
|
+
* ID of the video this result belongs to.
|
|
2179
2249
|
*/
|
|
2180
2250
|
videoId?: Guid | null;
|
|
2181
2251
|
}
|
|
2252
|
+
/**
|
|
2253
|
+
* Request body for batch-updating the fulfilment state of wanted videos.
|
|
2254
|
+
*/
|
|
2182
2255
|
export interface FulfillWantedVideosBatchRequest extends AdditionalDataHolder, Parsable {
|
|
2183
2256
|
/**
|
|
2184
|
-
*
|
|
2257
|
+
* Fulfilment updates to apply. Between 1 and 50 entries, each for a distinct video.
|
|
2185
2258
|
*/
|
|
2186
2259
|
items?: FulfillWantedVideoItem[] | null;
|
|
2187
2260
|
}
|
|
2261
|
+
/**
|
|
2262
|
+
* Per-video outcome of a batch fulfilment update.
|
|
2263
|
+
*/
|
|
2188
2264
|
export interface FulfillWantedVideosBatchResponse extends AdditionalDataHolder, Parsable {
|
|
2189
2265
|
/**
|
|
2190
|
-
*
|
|
2266
|
+
* One result per requested video, in request order.
|
|
2191
2267
|
*/
|
|
2192
2268
|
results?: FulfillWantedVideoResultDto[] | null;
|
|
2193
2269
|
}
|
|
2270
|
+
/**
|
|
2271
|
+
* A seek-paged actor delta feed ordered by updated timestamp and actor ID.
|
|
2272
|
+
*/
|
|
2194
2273
|
export interface GetActorChangesResponse extends AdditionalDataHolder, Parsable {
|
|
2195
2274
|
/**
|
|
2196
2275
|
* The hasMore property
|
|
@@ -2201,7 +2280,7 @@ export interface GetActorChangesResponse extends AdditionalDataHolder, Parsable
|
|
|
2201
2280
|
*/
|
|
2202
2281
|
items?: ActorChangeDto[] | null;
|
|
2203
2282
|
/**
|
|
2204
|
-
*
|
|
2283
|
+
* Seek cursor for continuing an actor change feed.
|
|
2205
2284
|
*/
|
|
2206
2285
|
nextCursor?: ActorChangesCursorDto | null;
|
|
2207
2286
|
/**
|
|
@@ -2209,7 +2288,7 @@ export interface GetActorChangesResponse extends AdditionalDataHolder, Parsable
|
|
|
2209
2288
|
*/
|
|
2210
2289
|
pageSize?: number | null;
|
|
2211
2290
|
/**
|
|
2212
|
-
* The
|
|
2291
|
+
* The server's clock when this page was produced, read before the rows were queried.Safe to persist as the next `since` when `items` is empty: an empty pagecarries no row timestamp to continue from, and a client's own clock or the HTTP`Date` header are not sound substitutes for a value the server later reads backas a lower bound.
|
|
2213
2292
|
*/
|
|
2214
2293
|
serverTimeUtc?: Date | null;
|
|
2215
2294
|
}
|
|
@@ -2219,6 +2298,9 @@ export interface GetActorsByIdsRequest extends AdditionalDataHolder, Parsable {
|
|
|
2219
2298
|
*/
|
|
2220
2299
|
ids?: Guid[] | null;
|
|
2221
2300
|
}
|
|
2301
|
+
/**
|
|
2302
|
+
* Paged delta feed of favorite actor changes ordered by updated timestamp and ID.
|
|
2303
|
+
*/
|
|
2222
2304
|
export interface GetFavoriteActorChangesResponse extends AdditionalDataHolder, Parsable {
|
|
2223
2305
|
/**
|
|
2224
2306
|
* The hasMore property
|
|
@@ -2229,7 +2311,7 @@ export interface GetFavoriteActorChangesResponse extends AdditionalDataHolder, P
|
|
|
2229
2311
|
*/
|
|
2230
2312
|
items?: FavoriteActorChangeDto[] | null;
|
|
2231
2313
|
/**
|
|
2232
|
-
*
|
|
2314
|
+
* Seek cursor for continuing a favorite actor change feed.
|
|
2233
2315
|
*/
|
|
2234
2316
|
nextCursor?: FavoriteActorChangesCursorDto | null;
|
|
2235
2317
|
/**
|
|
@@ -2237,10 +2319,13 @@ export interface GetFavoriteActorChangesResponse extends AdditionalDataHolder, P
|
|
|
2237
2319
|
*/
|
|
2238
2320
|
pageSize?: number | null;
|
|
2239
2321
|
/**
|
|
2240
|
-
* The
|
|
2322
|
+
* The server's clock when this page was produced, read before the rows were queried.Safe to persist as the next `since` when `items` is empty: an empty pagecarries no row timestamp to continue from, and a client's own clock or the HTTP`Date` header are not sound substitutes for a value the server later reads backas a lower bound.
|
|
2241
2323
|
*/
|
|
2242
2324
|
serverTimeUtc?: Date | null;
|
|
2243
2325
|
}
|
|
2326
|
+
/**
|
|
2327
|
+
* Paged delta feed of favorite site changes ordered by updated timestamp and ID.
|
|
2328
|
+
*/
|
|
2244
2329
|
export interface GetFavoriteSiteChangesResponse extends AdditionalDataHolder, Parsable {
|
|
2245
2330
|
/**
|
|
2246
2331
|
* The hasMore property
|
|
@@ -2251,7 +2336,7 @@ export interface GetFavoriteSiteChangesResponse extends AdditionalDataHolder, Pa
|
|
|
2251
2336
|
*/
|
|
2252
2337
|
items?: FavoriteSiteChangeDto[] | null;
|
|
2253
2338
|
/**
|
|
2254
|
-
*
|
|
2339
|
+
* Seek cursor for continuing a favorite site change feed.
|
|
2255
2340
|
*/
|
|
2256
2341
|
nextCursor?: FavoriteSiteChangesCursorDto | null;
|
|
2257
2342
|
/**
|
|
@@ -2259,23 +2344,29 @@ export interface GetFavoriteSiteChangesResponse extends AdditionalDataHolder, Pa
|
|
|
2259
2344
|
*/
|
|
2260
2345
|
pageSize?: number | null;
|
|
2261
2346
|
/**
|
|
2262
|
-
* The
|
|
2347
|
+
* The server's clock when this page was produced, read before the rows were queried.Safe to persist as the next `since` when `items` is empty: an empty pagecarries no row timestamp to continue from, and a client's own clock or the HTTP`Date` header are not sound substitutes for a value the server later reads backas a lower bound.
|
|
2263
2348
|
*/
|
|
2264
2349
|
serverTimeUtc?: Date | null;
|
|
2265
2350
|
}
|
|
2351
|
+
/**
|
|
2352
|
+
* Health check response.
|
|
2353
|
+
*/
|
|
2266
2354
|
export interface GetHealthResponse extends AdditionalDataHolder, Parsable {
|
|
2267
2355
|
/**
|
|
2268
|
-
*
|
|
2356
|
+
* Always "ok" when the API is reachable.
|
|
2269
2357
|
*/
|
|
2270
2358
|
status?: string | null;
|
|
2271
2359
|
/**
|
|
2272
|
-
*
|
|
2360
|
+
* UTC timestamp at the time of the request.
|
|
2273
2361
|
*/
|
|
2274
2362
|
timestamp?: Date | null;
|
|
2275
2363
|
}
|
|
2364
|
+
/**
|
|
2365
|
+
* Paged delta feed of indexer filehash changes ordered by updated timestamp and ID.
|
|
2366
|
+
*/
|
|
2276
2367
|
export interface GetIndexerFilehashChangesResponse extends AdditionalDataHolder, Parsable {
|
|
2277
2368
|
/**
|
|
2278
|
-
*
|
|
2369
|
+
* Whether additional rows exist after the current page.
|
|
2279
2370
|
*/
|
|
2280
2371
|
hasMore?: boolean | null;
|
|
2281
2372
|
/**
|
|
@@ -2283,35 +2374,41 @@ export interface GetIndexerFilehashChangesResponse extends AdditionalDataHolder,
|
|
|
2283
2374
|
*/
|
|
2284
2375
|
items?: IndexerFilehashChangeDto[] | null;
|
|
2285
2376
|
/**
|
|
2286
|
-
*
|
|
2377
|
+
* Seek cursor for continuing an indexer filehash change feed.
|
|
2287
2378
|
*/
|
|
2288
2379
|
nextCursor?: IndexerFilehashChangesCursorDto | null;
|
|
2289
2380
|
/**
|
|
2290
|
-
* The
|
|
2381
|
+
* The resolved page size for this response.
|
|
2291
2382
|
*/
|
|
2292
2383
|
pageSize?: number | null;
|
|
2293
2384
|
/**
|
|
2294
|
-
* The
|
|
2385
|
+
* The server's clock when this page was produced, read before the rows were queried.Safe to persist as the next `since` when `items` is empty: an empty pagecarries no row timestamp to continue from, and a client's own clock or the HTTP`Date` header are not sound substitutes for a value the server later reads backas a lower bound.
|
|
2295
2386
|
*/
|
|
2296
2387
|
serverTimeUtc?: Date | null;
|
|
2297
2388
|
}
|
|
2389
|
+
/**
|
|
2390
|
+
* Current rate limit status for the authenticated user.
|
|
2391
|
+
*/
|
|
2298
2392
|
export interface GetRateLimitResponse extends AdditionalDataHolder, Parsable {
|
|
2299
2393
|
/**
|
|
2300
|
-
*
|
|
2394
|
+
* Rate limit status for a single time window.
|
|
2301
2395
|
*/
|
|
2302
2396
|
hourly?: RateLimitWindowStatus | null;
|
|
2303
2397
|
/**
|
|
2304
|
-
*
|
|
2398
|
+
* Always true. Rate limiting is enforced unconditionally; when it cannot be enforced the APIanswers 503 instead of returning this document. Kept for compatibility with clients thatread the field.
|
|
2305
2399
|
*/
|
|
2306
2400
|
isEnforced?: boolean | null;
|
|
2307
2401
|
/**
|
|
2308
|
-
*
|
|
2402
|
+
* Rate limit status for a single time window.
|
|
2309
2403
|
*/
|
|
2310
2404
|
monthly?: RateLimitWindowStatus | null;
|
|
2311
2405
|
}
|
|
2406
|
+
/**
|
|
2407
|
+
* Paged delta feed of video filehash changes ordered by updated timestamp and ID.
|
|
2408
|
+
*/
|
|
2312
2409
|
export interface GetVideoFilehashChangesResponse extends AdditionalDataHolder, Parsable {
|
|
2313
2410
|
/**
|
|
2314
|
-
*
|
|
2411
|
+
* Whether additional rows exist after the current page.
|
|
2315
2412
|
*/
|
|
2316
2413
|
hasMore?: boolean | null;
|
|
2317
2414
|
/**
|
|
@@ -2319,15 +2416,15 @@ export interface GetVideoFilehashChangesResponse extends AdditionalDataHolder, P
|
|
|
2319
2416
|
*/
|
|
2320
2417
|
items?: VideoFilehashChangeDto[] | null;
|
|
2321
2418
|
/**
|
|
2322
|
-
*
|
|
2419
|
+
* Seek cursor for continuing a video filehash change feed.
|
|
2323
2420
|
*/
|
|
2324
2421
|
nextCursor?: VideoFilehashChangesCursorDto | null;
|
|
2325
2422
|
/**
|
|
2326
|
-
* The
|
|
2423
|
+
* The resolved page size for this response.
|
|
2327
2424
|
*/
|
|
2328
2425
|
pageSize?: number | null;
|
|
2329
2426
|
/**
|
|
2330
|
-
* The
|
|
2427
|
+
* The server's clock when this page was produced, read before the rows were queried.Safe to persist as the next `since` when `items` is empty: an empty pagecarries no row timestamp to continue from, and a client's own clock or the HTTP`Date` header are not sound substitutes for a value the server later reads backas a lower bound.
|
|
2331
2428
|
*/
|
|
2332
2429
|
serverTimeUtc?: Date | null;
|
|
2333
2430
|
}
|
|
@@ -2371,10 +2468,13 @@ export interface GetVideoUserImageChangesResponse extends AdditionalDataHolder,
|
|
|
2371
2468
|
*/
|
|
2372
2469
|
pageSize?: number | null;
|
|
2373
2470
|
/**
|
|
2374
|
-
* The
|
|
2471
|
+
* The server's clock when this page was produced, read before the rows were queried.Safe to persist as the next `since` when `items` is empty: an empty pagecarries no row timestamp to continue from, and a client's own clock or the HTTP`Date` header are not sound substitutes for a value the server later reads backas a lower bound.
|
|
2375
2472
|
*/
|
|
2376
2473
|
serverTimeUtc?: Date | null;
|
|
2377
2474
|
}
|
|
2475
|
+
/**
|
|
2476
|
+
* Paged delta feed of wanted video changes ordered by updated timestamp and ID.
|
|
2477
|
+
*/
|
|
2378
2478
|
export interface GetWantedVideoChangesResponse extends AdditionalDataHolder, Parsable {
|
|
2379
2479
|
/**
|
|
2380
2480
|
* The hasMore property
|
|
@@ -2385,7 +2485,7 @@ export interface GetWantedVideoChangesResponse extends AdditionalDataHolder, Par
|
|
|
2385
2485
|
*/
|
|
2386
2486
|
items?: WantedVideoChangeDto[] | null;
|
|
2387
2487
|
/**
|
|
2388
|
-
*
|
|
2488
|
+
* Seek cursor for continuing a wanted video change feed.
|
|
2389
2489
|
*/
|
|
2390
2490
|
nextCursor?: WantedVideoChangesCursorDto | null;
|
|
2391
2491
|
/**
|
|
@@ -2393,53 +2493,62 @@ export interface GetWantedVideoChangesResponse extends AdditionalDataHolder, Par
|
|
|
2393
2493
|
*/
|
|
2394
2494
|
pageSize?: number | null;
|
|
2395
2495
|
/**
|
|
2396
|
-
* The
|
|
2496
|
+
* The server's clock when this page was produced, read before the rows were queried.Safe to persist as the next `since` when `items` is empty: an empty pagecarries no row timestamp to continue from, and a client's own clock or the HTTP`Date` header are not sound substitutes for a value the server later reads backas a lower bound.
|
|
2397
2497
|
*/
|
|
2398
2498
|
serverTimeUtc?: Date | null;
|
|
2399
2499
|
}
|
|
2500
|
+
/**
|
|
2501
|
+
* The site a file could be attributed to.
|
|
2502
|
+
*/
|
|
2400
2503
|
export interface IdentifySiteDto extends AdditionalDataHolder, Parsable {
|
|
2401
2504
|
/**
|
|
2402
|
-
*
|
|
2505
|
+
* Unique identifier of the site.
|
|
2403
2506
|
*/
|
|
2404
2507
|
id?: Guid | null;
|
|
2405
2508
|
/**
|
|
2406
|
-
*
|
|
2509
|
+
* Site title.
|
|
2407
2510
|
*/
|
|
2408
2511
|
title?: string | null;
|
|
2409
2512
|
/**
|
|
2410
|
-
*
|
|
2513
|
+
* Site URL.
|
|
2411
2514
|
*/
|
|
2412
2515
|
url?: string | null;
|
|
2413
2516
|
}
|
|
2517
|
+
/**
|
|
2518
|
+
* One file to identify.
|
|
2519
|
+
*/
|
|
2414
2520
|
export interface IdentifyVideoFileDto extends AdditionalDataHolder, Parsable {
|
|
2415
2521
|
/**
|
|
2416
|
-
*
|
|
2522
|
+
* File name without directory. Required — it carries the lowest rungs of the ladder.
|
|
2417
2523
|
*/
|
|
2418
2524
|
filename?: string | null;
|
|
2419
2525
|
/**
|
|
2420
|
-
*
|
|
2526
|
+
* Size of the file in bytes, if known.
|
|
2421
2527
|
*/
|
|
2422
2528
|
filesize?: number | null;
|
|
2423
2529
|
/**
|
|
2424
|
-
*
|
|
2530
|
+
* OS hash of the file, 16 hexadecimal characters, if the client computed one.
|
|
2425
2531
|
*/
|
|
2426
2532
|
osHash?: string | null;
|
|
2427
2533
|
/**
|
|
2428
|
-
*
|
|
2534
|
+
* Perceptual hash of the file, 16 hexadecimal characters, if the client computed one.Compared for equality only, and only against values computed the way "Perceptual hashes"in the API description prescribes — send none rather than one from another procedure.
|
|
2429
2535
|
*/
|
|
2430
2536
|
pHash?: string | null;
|
|
2431
2537
|
/**
|
|
2432
|
-
*
|
|
2538
|
+
* Client-assigned identifier, returned unchanged. Unique within the request.
|
|
2433
2539
|
*/
|
|
2434
2540
|
ref?: string | null;
|
|
2435
2541
|
}
|
|
2542
|
+
/**
|
|
2543
|
+
* What the identification ladder made of one file.
|
|
2544
|
+
*/
|
|
2436
2545
|
export interface IdentifyVideoResultDto extends AdditionalDataHolder, Parsable {
|
|
2437
2546
|
/**
|
|
2438
|
-
*
|
|
2547
|
+
* All equally good videos when the match was ambiguous; otherwise empty.
|
|
2439
2548
|
*/
|
|
2440
2549
|
candidates?: Guid[] | null;
|
|
2441
2550
|
/**
|
|
2442
|
-
* Known values: None (0), Partial (1), Probable (2), Strong (3), Exact (4), Ambiguous (5).
|
|
2551
|
+
* How much the match can be trusted. Drives whether a client files a file automatically. Known values: None (0), Partial (1), Probable (2), Strong (3), Exact (4), Ambiguous (5).
|
|
2443
2552
|
*/
|
|
2444
2553
|
confidence?: number | null;
|
|
2445
2554
|
/**
|
|
@@ -2447,11 +2556,11 @@ export interface IdentifyVideoResultDto extends AdditionalDataHolder, Parsable {
|
|
|
2447
2556
|
*/
|
|
2448
2557
|
matchedBy?: number | null;
|
|
2449
2558
|
/**
|
|
2450
|
-
* The
|
|
2559
|
+
* The client-assigned identifier of the input file, returned unchanged.
|
|
2451
2560
|
*/
|
|
2452
2561
|
ref?: string | null;
|
|
2453
2562
|
/**
|
|
2454
|
-
* The site
|
|
2563
|
+
* The site a file could be attributed to.
|
|
2455
2564
|
*/
|
|
2456
2565
|
site?: IdentifySiteDto | null;
|
|
2457
2566
|
/**
|
|
@@ -2459,51 +2568,63 @@ export interface IdentifyVideoResultDto extends AdditionalDataHolder, Parsable {
|
|
|
2459
2568
|
*/
|
|
2460
2569
|
video?: VideoDetailDto | null;
|
|
2461
2570
|
/**
|
|
2462
|
-
* The
|
|
2571
|
+
* The identified video, when exactly one was found.
|
|
2463
2572
|
*/
|
|
2464
2573
|
videoId?: Guid | null;
|
|
2465
2574
|
}
|
|
2575
|
+
/**
|
|
2576
|
+
* Request body for identifying local files against the prdb catalogue.
|
|
2577
|
+
*/
|
|
2466
2578
|
export interface IdentifyVideosRequest extends AdditionalDataHolder, Parsable {
|
|
2467
2579
|
/**
|
|
2468
|
-
*
|
|
2580
|
+
* Files to identify. Between 1 and 200 entries.
|
|
2469
2581
|
*/
|
|
2470
2582
|
files?: IdentifyVideoFileDto[] | null;
|
|
2471
2583
|
/**
|
|
2472
|
-
*
|
|
2584
|
+
* When true, each matched result carries the full video document. Defaults to false.
|
|
2473
2585
|
*/
|
|
2474
2586
|
includeVideoDetails?: boolean | null;
|
|
2475
2587
|
}
|
|
2588
|
+
/**
|
|
2589
|
+
* Identification results, one per submitted file.
|
|
2590
|
+
*/
|
|
2476
2591
|
export interface IdentifyVideosResponse extends AdditionalDataHolder, Parsable {
|
|
2477
2592
|
/**
|
|
2478
|
-
*
|
|
2593
|
+
* One result per input file, in input order.
|
|
2479
2594
|
*/
|
|
2480
2595
|
results?: IdentifyVideoResultDto[] | null;
|
|
2481
2596
|
}
|
|
2597
|
+
/**
|
|
2598
|
+
* A single changed indexer filehash row in the incremental feed.
|
|
2599
|
+
*/
|
|
2482
2600
|
export interface IndexerFilehashChangeDto extends AdditionalDataHolder, Parsable {
|
|
2483
2601
|
/**
|
|
2484
|
-
*
|
|
2602
|
+
* One of `created`, `updated`, or `deleted`.
|
|
2485
2603
|
*/
|
|
2486
2604
|
eventType?: string | null;
|
|
2487
2605
|
/**
|
|
2488
|
-
*
|
|
2606
|
+
* Current persisted state of a changed indexer filehash row, including soft-delete fields.
|
|
2489
2607
|
*/
|
|
2490
2608
|
filehash?: IndexerFilehashChangeFilehashDto | null;
|
|
2491
2609
|
}
|
|
2610
|
+
/**
|
|
2611
|
+
* Current persisted state of a changed indexer filehash row, including soft-delete fields.
|
|
2612
|
+
*/
|
|
2492
2613
|
export interface IndexerFilehashChangeFilehashDto extends AdditionalDataHolder, Parsable {
|
|
2493
2614
|
/**
|
|
2494
2615
|
* The createdAtUtc property
|
|
2495
2616
|
*/
|
|
2496
2617
|
createdAtUtc?: Date | null;
|
|
2497
2618
|
/**
|
|
2498
|
-
*
|
|
2619
|
+
* Timestamp when the row was soft-deleted, or null when still active.
|
|
2499
2620
|
*/
|
|
2500
2621
|
deletedAtUtc?: Date | null;
|
|
2501
2622
|
/**
|
|
2502
|
-
*
|
|
2623
|
+
* Original filename submitted for this filehash record.
|
|
2503
2624
|
*/
|
|
2504
2625
|
filename?: string | null;
|
|
2505
2626
|
/**
|
|
2506
|
-
*
|
|
2627
|
+
* File size in bytes.
|
|
2507
2628
|
*/
|
|
2508
2629
|
filesize?: number | null;
|
|
2509
2630
|
/**
|
|
@@ -2511,31 +2632,31 @@ export interface IndexerFilehashChangeFilehashDto extends AdditionalDataHolder,
|
|
|
2511
2632
|
*/
|
|
2512
2633
|
id?: Guid | null;
|
|
2513
2634
|
/**
|
|
2514
|
-
*
|
|
2635
|
+
* Indexer-specific identifier for the release.
|
|
2515
2636
|
*/
|
|
2516
2637
|
indexerId?: string | null;
|
|
2517
2638
|
/**
|
|
2518
|
-
*
|
|
2639
|
+
* Indexer source. Supported values: `DrunkenSlug`, `NzbFinder`, `NzbPorn`.
|
|
2519
2640
|
*/
|
|
2520
2641
|
indexerSource?: string | null;
|
|
2521
2642
|
/**
|
|
2522
|
-
*
|
|
2643
|
+
* Whether this row is soft-deleted.
|
|
2523
2644
|
*/
|
|
2524
2645
|
isDeleted?: boolean | null;
|
|
2525
2646
|
/**
|
|
2526
|
-
*
|
|
2647
|
+
* Whether this filehash record has been verified.
|
|
2527
2648
|
*/
|
|
2528
2649
|
isVerified?: boolean | null;
|
|
2529
2650
|
/**
|
|
2530
|
-
*
|
|
2651
|
+
* OS hash value as stored.
|
|
2531
2652
|
*/
|
|
2532
2653
|
osHash?: string | null;
|
|
2533
2654
|
/**
|
|
2534
|
-
*
|
|
2655
|
+
* P hash value as stored, or null when not available.
|
|
2535
2656
|
*/
|
|
2536
2657
|
pHash?: string | null;
|
|
2537
2658
|
/**
|
|
2538
|
-
*
|
|
2659
|
+
* Number of submissions merged into this filehash record.
|
|
2539
2660
|
*/
|
|
2540
2661
|
submissionCount?: number | null;
|
|
2541
2662
|
/**
|
|
@@ -2543,6 +2664,9 @@ export interface IndexerFilehashChangeFilehashDto extends AdditionalDataHolder,
|
|
|
2543
2664
|
*/
|
|
2544
2665
|
updatedAtUtc?: Date | null;
|
|
2545
2666
|
}
|
|
2667
|
+
/**
|
|
2668
|
+
* Seek cursor for continuing an indexer filehash change feed.
|
|
2669
|
+
*/
|
|
2546
2670
|
export interface IndexerFilehashChangesCursorDto extends AdditionalDataHolder, Parsable {
|
|
2547
2671
|
/**
|
|
2548
2672
|
* The id property
|
|
@@ -2559,11 +2683,11 @@ export interface IndexerFilehashDto extends AdditionalDataHolder, Parsable {
|
|
|
2559
2683
|
*/
|
|
2560
2684
|
createdAtUtc?: Date | null;
|
|
2561
2685
|
/**
|
|
2562
|
-
*
|
|
2686
|
+
* Original filename submitted for this filehash record.
|
|
2563
2687
|
*/
|
|
2564
2688
|
filename?: string | null;
|
|
2565
2689
|
/**
|
|
2566
|
-
*
|
|
2690
|
+
* File size in bytes.
|
|
2567
2691
|
*/
|
|
2568
2692
|
filesize?: number | null;
|
|
2569
2693
|
/**
|
|
@@ -2571,27 +2695,27 @@ export interface IndexerFilehashDto extends AdditionalDataHolder, Parsable {
|
|
|
2571
2695
|
*/
|
|
2572
2696
|
id?: Guid | null;
|
|
2573
2697
|
/**
|
|
2574
|
-
*
|
|
2698
|
+
* Indexer-specific identifier for the release.
|
|
2575
2699
|
*/
|
|
2576
2700
|
indexerId?: string | null;
|
|
2577
2701
|
/**
|
|
2578
|
-
*
|
|
2702
|
+
* Indexer source. Supported values: `DrunkenSlug`, `NzbFinder`, `NzbPorn`.
|
|
2579
2703
|
*/
|
|
2580
2704
|
indexerSource?: string | null;
|
|
2581
2705
|
/**
|
|
2582
|
-
*
|
|
2706
|
+
* Whether this filehash record has been verified.
|
|
2583
2707
|
*/
|
|
2584
2708
|
isVerified?: boolean | null;
|
|
2585
2709
|
/**
|
|
2586
|
-
*
|
|
2710
|
+
* OS hash value as stored.
|
|
2587
2711
|
*/
|
|
2588
2712
|
osHash?: string | null;
|
|
2589
2713
|
/**
|
|
2590
|
-
*
|
|
2714
|
+
* P hash value as stored, or null when not available.
|
|
2591
2715
|
*/
|
|
2592
2716
|
pHash?: string | null;
|
|
2593
2717
|
/**
|
|
2594
|
-
*
|
|
2718
|
+
* Number of submissions merged into this filehash record.
|
|
2595
2719
|
*/
|
|
2596
2720
|
submissionCount?: number | null;
|
|
2597
2721
|
/**
|
|
@@ -2599,40 +2723,46 @@ export interface IndexerFilehashDto extends AdditionalDataHolder, Parsable {
|
|
|
2599
2723
|
*/
|
|
2600
2724
|
updatedAtUtc?: Date | null;
|
|
2601
2725
|
}
|
|
2726
|
+
/**
|
|
2727
|
+
* Combined indexer identity used to match filehashes by indexer source and indexer-specific ID.
|
|
2728
|
+
*/
|
|
2602
2729
|
export interface IndexerFilehashLookupKeyDto extends AdditionalDataHolder, Parsable {
|
|
2603
2730
|
/**
|
|
2604
|
-
*
|
|
2731
|
+
* Indexer-specific identifier for the release.
|
|
2605
2732
|
*/
|
|
2606
2733
|
indexerId?: string | null;
|
|
2607
2734
|
/**
|
|
2608
|
-
* Allowed values: DrunkenSlug, NzbFinder, NzbPorn.
|
|
2735
|
+
* Indexer source. Supported values: `DrunkenSlug`, `NzbFinder`, `NzbPorn`. Allowed values: DrunkenSlug, NzbFinder, NzbPorn.
|
|
2609
2736
|
*/
|
|
2610
2737
|
indexerSource?: IndexerFilehashLookupKeyDto_indexerSource | null;
|
|
2611
2738
|
}
|
|
2612
2739
|
export type IndexerFilehashLookupKeyDto_indexerSource = (typeof IndexerFilehashLookupKeyDto_indexerSourceObject)[keyof typeof IndexerFilehashLookupKeyDto_indexerSourceObject];
|
|
2740
|
+
/**
|
|
2741
|
+
* Paged list of the latest indexer filehash entries.
|
|
2742
|
+
*/
|
|
2613
2743
|
export interface LatestIndexerFilehashesResponse extends AdditionalDataHolder, Parsable {
|
|
2614
2744
|
/**
|
|
2615
2745
|
* The items property
|
|
2616
2746
|
*/
|
|
2617
2747
|
items?: IndexerFilehashDto[] | null;
|
|
2618
2748
|
/**
|
|
2619
|
-
*
|
|
2749
|
+
* Current page number (1-based).
|
|
2620
2750
|
*/
|
|
2621
2751
|
page?: number | null;
|
|
2622
2752
|
/**
|
|
2623
|
-
*
|
|
2753
|
+
* Number of items per page.
|
|
2624
2754
|
*/
|
|
2625
2755
|
pageSize?: number | null;
|
|
2626
2756
|
/**
|
|
2627
|
-
*
|
|
2757
|
+
* Resolved sort field for the current query.
|
|
2628
2758
|
*/
|
|
2629
2759
|
sortBy?: string | null;
|
|
2630
2760
|
/**
|
|
2631
|
-
*
|
|
2761
|
+
* Resolved sort direction for the current query.
|
|
2632
2762
|
*/
|
|
2633
2763
|
sortDirection?: string | null;
|
|
2634
2764
|
/**
|
|
2635
|
-
*
|
|
2765
|
+
* Total number of filehash entries matching the current filters.
|
|
2636
2766
|
*/
|
|
2637
2767
|
totalCount?: number | null;
|
|
2638
2768
|
}
|
|
@@ -2654,21 +2784,24 @@ export interface LatestPreDbItemDto extends AdditionalDataHolder, Parsable {
|
|
|
2654
2784
|
*/
|
|
2655
2785
|
video?: LatestPreDbVideoDto | null;
|
|
2656
2786
|
}
|
|
2787
|
+
/**
|
|
2788
|
+
* Paged list of the latest PreDb entries.
|
|
2789
|
+
*/
|
|
2657
2790
|
export interface LatestPreDbResponse extends AdditionalDataHolder, Parsable {
|
|
2658
2791
|
/**
|
|
2659
2792
|
* The items property
|
|
2660
2793
|
*/
|
|
2661
2794
|
items?: LatestPreDbItemDto[] | null;
|
|
2662
2795
|
/**
|
|
2663
|
-
*
|
|
2796
|
+
* Current page number (1-based).
|
|
2664
2797
|
*/
|
|
2665
2798
|
page?: number | null;
|
|
2666
2799
|
/**
|
|
2667
|
-
*
|
|
2800
|
+
* Number of items per page.
|
|
2668
2801
|
*/
|
|
2669
2802
|
pageSize?: number | null;
|
|
2670
2803
|
/**
|
|
2671
|
-
*
|
|
2804
|
+
* Total number of PreDb entries matching the current filters.
|
|
2672
2805
|
*/
|
|
2673
2806
|
totalCount?: number | null;
|
|
2674
2807
|
}
|
|
@@ -2700,256 +2833,283 @@ export interface LatestPreDbVideoDto extends AdditionalDataHolder, Parsable {
|
|
|
2700
2833
|
*/
|
|
2701
2834
|
title?: string | null;
|
|
2702
2835
|
}
|
|
2836
|
+
/**
|
|
2837
|
+
* Paged list of the latest video filehash entries.
|
|
2838
|
+
*/
|
|
2703
2839
|
export interface LatestVideoFilehashesResponse extends AdditionalDataHolder, Parsable {
|
|
2704
2840
|
/**
|
|
2705
2841
|
* The items property
|
|
2706
2842
|
*/
|
|
2707
2843
|
items?: VideoFilehashDto[] | null;
|
|
2708
2844
|
/**
|
|
2709
|
-
*
|
|
2845
|
+
* Current page number (1-based).
|
|
2710
2846
|
*/
|
|
2711
2847
|
page?: number | null;
|
|
2712
2848
|
/**
|
|
2713
|
-
*
|
|
2849
|
+
* Number of items per page.
|
|
2714
2850
|
*/
|
|
2715
2851
|
pageSize?: number | null;
|
|
2716
2852
|
/**
|
|
2717
|
-
*
|
|
2853
|
+
* Resolved sort field for the current query.
|
|
2718
2854
|
*/
|
|
2719
2855
|
sortBy?: string | null;
|
|
2720
2856
|
/**
|
|
2721
|
-
*
|
|
2857
|
+
* Resolved sort direction for the current query.
|
|
2722
2858
|
*/
|
|
2723
2859
|
sortDirection?: string | null;
|
|
2724
2860
|
/**
|
|
2725
|
-
*
|
|
2861
|
+
* Total number of filehash entries matching the current filters.
|
|
2726
2862
|
*/
|
|
2727
2863
|
totalCount?: number | null;
|
|
2728
2864
|
}
|
|
2865
|
+
/**
|
|
2866
|
+
* Paged list of actors.
|
|
2867
|
+
*/
|
|
2729
2868
|
export interface ListActorsResponse extends AdditionalDataHolder, Parsable {
|
|
2730
2869
|
/**
|
|
2731
|
-
*
|
|
2870
|
+
* Actors on the current page.
|
|
2732
2871
|
*/
|
|
2733
2872
|
items?: ActorSummaryDto[] | null;
|
|
2734
2873
|
/**
|
|
2735
|
-
*
|
|
2874
|
+
* Current page number (1-based).
|
|
2736
2875
|
*/
|
|
2737
2876
|
page?: number | null;
|
|
2738
2877
|
/**
|
|
2739
|
-
*
|
|
2878
|
+
* Number of items per page.
|
|
2740
2879
|
*/
|
|
2741
2880
|
pageSize?: number | null;
|
|
2742
2881
|
/**
|
|
2743
|
-
*
|
|
2882
|
+
* Field the result is sorted by: "name" or "createdAtUtc".
|
|
2744
2883
|
*/
|
|
2745
2884
|
sortBy?: string | null;
|
|
2746
2885
|
/**
|
|
2747
|
-
*
|
|
2886
|
+
* Sort direction applied: "asc" or "desc".
|
|
2748
2887
|
*/
|
|
2749
2888
|
sortDirection?: string | null;
|
|
2750
2889
|
/**
|
|
2751
|
-
*
|
|
2890
|
+
* Total number of actors matching the current query filters.
|
|
2752
2891
|
*/
|
|
2753
2892
|
totalCount?: number | null;
|
|
2754
2893
|
/**
|
|
2755
|
-
*
|
|
2894
|
+
* Total number of pages for the current query and page size.
|
|
2756
2895
|
*/
|
|
2757
2896
|
totalPages?: number | null;
|
|
2758
2897
|
}
|
|
2898
|
+
/**
|
|
2899
|
+
* Paged list of the current user's favorite actors.
|
|
2900
|
+
*/
|
|
2759
2901
|
export interface ListFavoriteActorsResponse extends AdditionalDataHolder, Parsable {
|
|
2760
2902
|
/**
|
|
2761
|
-
*
|
|
2903
|
+
* Favorite actor entries on the current page.
|
|
2762
2904
|
*/
|
|
2763
2905
|
items?: FavoriteActorSummaryDto[] | null;
|
|
2764
2906
|
/**
|
|
2765
|
-
*
|
|
2907
|
+
* Current page number (1-based).
|
|
2766
2908
|
*/
|
|
2767
2909
|
page?: number | null;
|
|
2768
2910
|
/**
|
|
2769
|
-
*
|
|
2911
|
+
* Number of items per page.
|
|
2770
2912
|
*/
|
|
2771
2913
|
pageSize?: number | null;
|
|
2772
2914
|
/**
|
|
2773
|
-
*
|
|
2915
|
+
* Field the results are sorted by.
|
|
2774
2916
|
*/
|
|
2775
2917
|
sortBy?: string | null;
|
|
2776
2918
|
/**
|
|
2777
|
-
*
|
|
2919
|
+
* Sort direction applied: `asc` or `desc`.
|
|
2778
2920
|
*/
|
|
2779
2921
|
sortDirection?: string | null;
|
|
2780
2922
|
/**
|
|
2781
|
-
*
|
|
2923
|
+
* Total number of favorite actors matching the current query filters.
|
|
2782
2924
|
*/
|
|
2783
2925
|
totalCount?: number | null;
|
|
2784
2926
|
/**
|
|
2785
|
-
*
|
|
2927
|
+
* Total number of pages.
|
|
2786
2928
|
*/
|
|
2787
2929
|
totalPages?: number | null;
|
|
2788
2930
|
}
|
|
2931
|
+
/**
|
|
2932
|
+
* Paged list of the current user's favorite sites.
|
|
2933
|
+
*/
|
|
2789
2934
|
export interface ListFavoriteSitesResponse extends AdditionalDataHolder, Parsable {
|
|
2790
2935
|
/**
|
|
2791
|
-
*
|
|
2936
|
+
* Favorite site entries on the current page.
|
|
2792
2937
|
*/
|
|
2793
2938
|
items?: FavoriteSiteSummaryDto[] | null;
|
|
2794
2939
|
/**
|
|
2795
|
-
*
|
|
2940
|
+
* Current page number (1-based).
|
|
2796
2941
|
*/
|
|
2797
2942
|
page?: number | null;
|
|
2798
2943
|
/**
|
|
2799
|
-
*
|
|
2944
|
+
* Number of items per page.
|
|
2800
2945
|
*/
|
|
2801
2946
|
pageSize?: number | null;
|
|
2802
2947
|
/**
|
|
2803
|
-
*
|
|
2948
|
+
* Field the results are sorted by.
|
|
2804
2949
|
*/
|
|
2805
2950
|
sortBy?: string | null;
|
|
2806
2951
|
/**
|
|
2807
|
-
*
|
|
2952
|
+
* Sort direction applied: `asc` or `desc`.
|
|
2808
2953
|
*/
|
|
2809
2954
|
sortDirection?: string | null;
|
|
2810
2955
|
/**
|
|
2811
|
-
*
|
|
2956
|
+
* Total number of favorite sites matching the current query filters.
|
|
2812
2957
|
*/
|
|
2813
2958
|
totalCount?: number | null;
|
|
2814
2959
|
/**
|
|
2815
|
-
*
|
|
2960
|
+
* Total number of pages.
|
|
2816
2961
|
*/
|
|
2817
2962
|
totalPages?: number | null;
|
|
2818
2963
|
}
|
|
2964
|
+
/**
|
|
2965
|
+
* Paged list of PreDb entries.
|
|
2966
|
+
*/
|
|
2819
2967
|
export interface ListPreDbResponse extends AdditionalDataHolder, Parsable {
|
|
2820
2968
|
/**
|
|
2821
|
-
*
|
|
2969
|
+
* PreDb entries on the current page.
|
|
2822
2970
|
*/
|
|
2823
2971
|
items?: PreDbSummaryDto[] | null;
|
|
2824
2972
|
/**
|
|
2825
|
-
*
|
|
2973
|
+
* Current page number (1-based).
|
|
2826
2974
|
*/
|
|
2827
2975
|
page?: number | null;
|
|
2828
2976
|
/**
|
|
2829
|
-
*
|
|
2977
|
+
* Number of items per page.
|
|
2830
2978
|
*/
|
|
2831
2979
|
pageSize?: number | null;
|
|
2832
2980
|
/**
|
|
2833
|
-
*
|
|
2981
|
+
* Field the result is sorted by: "releaseDate" or "title".
|
|
2834
2982
|
*/
|
|
2835
2983
|
sortBy?: string | null;
|
|
2836
2984
|
/**
|
|
2837
|
-
*
|
|
2985
|
+
* Sort direction applied: "asc" or "desc".
|
|
2838
2986
|
*/
|
|
2839
2987
|
sortDirection?: string | null;
|
|
2840
2988
|
/**
|
|
2841
|
-
*
|
|
2989
|
+
* Total number of entries matching the current query filters.
|
|
2842
2990
|
*/
|
|
2843
2991
|
totalCount?: number | null;
|
|
2844
2992
|
}
|
|
2993
|
+
/**
|
|
2994
|
+
* Paged list of sites.
|
|
2995
|
+
*/
|
|
2845
2996
|
export interface ListSitesResponse extends AdditionalDataHolder, Parsable {
|
|
2846
2997
|
/**
|
|
2847
|
-
*
|
|
2998
|
+
* Sites on the current page.
|
|
2848
2999
|
*/
|
|
2849
3000
|
items?: SiteSummaryDto[] | null;
|
|
2850
3001
|
/**
|
|
2851
|
-
*
|
|
3002
|
+
* Current page number (1-based).
|
|
2852
3003
|
*/
|
|
2853
3004
|
page?: number | null;
|
|
2854
3005
|
/**
|
|
2855
|
-
*
|
|
3006
|
+
* Number of items per page.
|
|
2856
3007
|
*/
|
|
2857
3008
|
pageSize?: number | null;
|
|
2858
3009
|
/**
|
|
2859
|
-
*
|
|
3010
|
+
* Field the result is sorted by: "title".
|
|
2860
3011
|
*/
|
|
2861
3012
|
sortBy?: string | null;
|
|
2862
3013
|
/**
|
|
2863
|
-
*
|
|
3014
|
+
* Sort direction applied: "asc" or "desc".
|
|
2864
3015
|
*/
|
|
2865
3016
|
sortDirection?: string | null;
|
|
2866
3017
|
/**
|
|
2867
|
-
*
|
|
3018
|
+
* Total number of sites matching the current query filters.
|
|
2868
3019
|
*/
|
|
2869
3020
|
totalCount?: number | null;
|
|
2870
3021
|
}
|
|
3022
|
+
/**
|
|
3023
|
+
* Paged list of videos.
|
|
3024
|
+
*/
|
|
2871
3025
|
export interface ListVideosResponse extends AdditionalDataHolder, Parsable {
|
|
2872
3026
|
/**
|
|
2873
|
-
*
|
|
3027
|
+
* Videos on the current page.
|
|
2874
3028
|
*/
|
|
2875
3029
|
items?: VideoSummaryDto[] | null;
|
|
2876
3030
|
/**
|
|
2877
|
-
*
|
|
3031
|
+
* Current page number (1-based).
|
|
2878
3032
|
*/
|
|
2879
3033
|
page?: number | null;
|
|
2880
3034
|
/**
|
|
2881
|
-
*
|
|
3035
|
+
* Number of items per page.
|
|
2882
3036
|
*/
|
|
2883
3037
|
pageSize?: number | null;
|
|
2884
3038
|
/**
|
|
2885
|
-
*
|
|
3039
|
+
* Field the result is sorted by: "title" or "releaseDate".
|
|
2886
3040
|
*/
|
|
2887
3041
|
sortBy?: string | null;
|
|
2888
3042
|
/**
|
|
2889
|
-
*
|
|
3043
|
+
* Sort direction applied: "asc" or "desc".
|
|
2890
3044
|
*/
|
|
2891
3045
|
sortDirection?: string | null;
|
|
2892
3046
|
/**
|
|
2893
|
-
*
|
|
3047
|
+
* Total number of videos matching the current query filters.
|
|
2894
3048
|
*/
|
|
2895
3049
|
totalCount?: number | null;
|
|
2896
3050
|
}
|
|
3051
|
+
/**
|
|
3052
|
+
* Paged list of the current user's wanted videos.
|
|
3053
|
+
*/
|
|
2897
3054
|
export interface ListWantedVideosResponse extends AdditionalDataHolder, Parsable {
|
|
2898
3055
|
/**
|
|
2899
|
-
*
|
|
3056
|
+
* Wanted video entries on the current page.
|
|
2900
3057
|
*/
|
|
2901
3058
|
items?: WantedVideoSummaryDto[] | null;
|
|
2902
3059
|
/**
|
|
2903
|
-
*
|
|
3060
|
+
* Current page number (1-based).
|
|
2904
3061
|
*/
|
|
2905
3062
|
page?: number | null;
|
|
2906
3063
|
/**
|
|
2907
|
-
*
|
|
3064
|
+
* Number of items per page.
|
|
2908
3065
|
*/
|
|
2909
3066
|
pageSize?: number | null;
|
|
2910
3067
|
/**
|
|
2911
|
-
*
|
|
3068
|
+
* Field the results are sorted by.
|
|
2912
3069
|
*/
|
|
2913
3070
|
sortBy?: string | null;
|
|
2914
3071
|
/**
|
|
2915
|
-
*
|
|
3072
|
+
* Sort direction applied: `asc` or `desc`.
|
|
2916
3073
|
*/
|
|
2917
3074
|
sortDirection?: string | null;
|
|
2918
3075
|
/**
|
|
2919
|
-
*
|
|
3076
|
+
* Total number of wanted videos matching the current query filters.
|
|
2920
3077
|
*/
|
|
2921
3078
|
totalCount?: number | null;
|
|
2922
3079
|
/**
|
|
2923
|
-
*
|
|
3080
|
+
* Total number of pages.
|
|
2924
3081
|
*/
|
|
2925
3082
|
totalPages?: number | null;
|
|
2926
3083
|
}
|
|
2927
3084
|
export interface LookupIndexerFilehashesRequest extends AdditionalDataHolder, Parsable {
|
|
2928
3085
|
/**
|
|
2929
|
-
*
|
|
3086
|
+
* Optional exact filenames to match.
|
|
2930
3087
|
*/
|
|
2931
3088
|
filenames?: string[] | null;
|
|
2932
3089
|
/**
|
|
2933
|
-
*
|
|
3090
|
+
* Optional exact file sizes to match.
|
|
2934
3091
|
*/
|
|
2935
3092
|
filesizes?: number[] | null;
|
|
2936
3093
|
/**
|
|
2937
|
-
*
|
|
3094
|
+
* Optional filehash row IDs to match.
|
|
2938
3095
|
*/
|
|
2939
3096
|
ids?: Guid[] | null;
|
|
2940
3097
|
/**
|
|
2941
|
-
*
|
|
3098
|
+
* Optional combined indexer source and indexer ID pairs to match.
|
|
2942
3099
|
*/
|
|
2943
3100
|
indexerKeys?: IndexerFilehashLookupKeyDto[] | null;
|
|
2944
3101
|
/**
|
|
2945
|
-
*
|
|
3102
|
+
* Optional OS hash values to match.
|
|
2946
3103
|
*/
|
|
2947
3104
|
osHashes?: string[] | null;
|
|
2948
3105
|
/**
|
|
2949
|
-
*
|
|
3106
|
+
* Optional perceptual hash values to match, 16 hexadecimal characters each. Matched forequality, so a value computed by any procedure other than the one under "Perceptualhashes" in the API description matches nothing rather than failing.
|
|
2950
3107
|
*/
|
|
2951
3108
|
pHashes?: string[] | null;
|
|
2952
3109
|
}
|
|
3110
|
+
/**
|
|
3111
|
+
* Flat indexer filehash lookup results.
|
|
3112
|
+
*/
|
|
2953
3113
|
export interface LookupIndexerFilehashesResponse extends AdditionalDataHolder, Parsable {
|
|
2954
3114
|
/**
|
|
2955
3115
|
* The items property
|
|
@@ -2958,30 +3118,33 @@ export interface LookupIndexerFilehashesResponse extends AdditionalDataHolder, P
|
|
|
2958
3118
|
}
|
|
2959
3119
|
export interface LookupVideoFilehashesRequest extends AdditionalDataHolder, Parsable {
|
|
2960
3120
|
/**
|
|
2961
|
-
*
|
|
3121
|
+
* Optional exact filenames to match.
|
|
2962
3122
|
*/
|
|
2963
3123
|
filenames?: string[] | null;
|
|
2964
3124
|
/**
|
|
2965
|
-
*
|
|
3125
|
+
* Optional exact file sizes to match.
|
|
2966
3126
|
*/
|
|
2967
3127
|
filesizes?: number[] | null;
|
|
2968
3128
|
/**
|
|
2969
|
-
*
|
|
3129
|
+
* Optional filehash row IDs to match.
|
|
2970
3130
|
*/
|
|
2971
3131
|
ids?: Guid[] | null;
|
|
2972
3132
|
/**
|
|
2973
|
-
*
|
|
3133
|
+
* Optional OS hash values to match.
|
|
2974
3134
|
*/
|
|
2975
3135
|
osHashes?: string[] | null;
|
|
2976
3136
|
/**
|
|
2977
|
-
*
|
|
3137
|
+
* Optional perceptual hash values to match, 16 hexadecimal characters each. Matched forequality, so a value computed by any procedure other than the one under "Perceptualhashes" in the API description matches nothing rather than failing.
|
|
2978
3138
|
*/
|
|
2979
3139
|
pHashes?: string[] | null;
|
|
2980
3140
|
/**
|
|
2981
|
-
*
|
|
3141
|
+
* Optional associated video IDs to match.
|
|
2982
3142
|
*/
|
|
2983
3143
|
videoIds?: Guid[] | null;
|
|
2984
3144
|
}
|
|
3145
|
+
/**
|
|
3146
|
+
* Flat filehash lookup results.
|
|
3147
|
+
*/
|
|
2985
3148
|
export interface LookupVideoFilehashesResponse extends AdditionalDataHolder, Parsable {
|
|
2986
3149
|
/**
|
|
2987
3150
|
* The items property
|
|
@@ -2998,29 +3161,32 @@ export interface PreDbItemDto extends AdditionalDataHolder, Parsable {
|
|
|
2998
3161
|
*/
|
|
2999
3162
|
title?: string | null;
|
|
3000
3163
|
}
|
|
3164
|
+
/**
|
|
3165
|
+
* Summary representation of a PreDb entry.
|
|
3166
|
+
*/
|
|
3001
3167
|
export interface PreDbSummaryDto extends AdditionalDataHolder, Parsable {
|
|
3002
3168
|
/**
|
|
3003
|
-
*
|
|
3169
|
+
* Readable category value: Movies, TvShows, or Adult.
|
|
3004
3170
|
*/
|
|
3005
3171
|
category?: string | null;
|
|
3006
3172
|
/**
|
|
3007
|
-
*
|
|
3173
|
+
* Optional file size value if known.
|
|
3008
3174
|
*/
|
|
3009
3175
|
filesize?: number | null;
|
|
3010
3176
|
/**
|
|
3011
|
-
*
|
|
3177
|
+
* Unique identifier of the PreDb entry.
|
|
3012
3178
|
*/
|
|
3013
3179
|
id?: Guid | null;
|
|
3014
3180
|
/**
|
|
3015
|
-
*
|
|
3181
|
+
* Release date associated with the entry.
|
|
3016
3182
|
*/
|
|
3017
3183
|
releaseDate?: DateOnly | null;
|
|
3018
3184
|
/**
|
|
3019
|
-
*
|
|
3185
|
+
* Release group name.
|
|
3020
3186
|
*/
|
|
3021
3187
|
releaseGroup?: string | null;
|
|
3022
3188
|
/**
|
|
3023
|
-
*
|
|
3189
|
+
* Release title as indexed in PreDb.
|
|
3024
3190
|
*/
|
|
3025
3191
|
title?: string | null;
|
|
3026
3192
|
}
|
|
@@ -3068,21 +3234,24 @@ export interface ProblemDetails extends AdditionalDataHolder, ApiError, Parsable
|
|
|
3068
3234
|
*/
|
|
3069
3235
|
type?: string | null;
|
|
3070
3236
|
}
|
|
3237
|
+
/**
|
|
3238
|
+
* Rate limit status for a single time window.
|
|
3239
|
+
*/
|
|
3071
3240
|
export interface RateLimitWindowStatus extends AdditionalDataHolder, Parsable {
|
|
3072
3241
|
/**
|
|
3073
|
-
*
|
|
3242
|
+
* Maximum number of requests allowed within this window.
|
|
3074
3243
|
*/
|
|
3075
3244
|
limit?: number | null;
|
|
3076
3245
|
/**
|
|
3077
|
-
*
|
|
3246
|
+
* Number of requests remaining before the limit is reached.
|
|
3078
3247
|
*/
|
|
3079
3248
|
remaining?: number | null;
|
|
3080
3249
|
/**
|
|
3081
|
-
*
|
|
3250
|
+
* Seconds until the oldest request in the window expires, reducing the used count by one.
|
|
3082
3251
|
*/
|
|
3083
3252
|
resetsInSeconds?: number | null;
|
|
3084
3253
|
/**
|
|
3085
|
-
*
|
|
3254
|
+
* Number of requests made within the current window.
|
|
3086
3255
|
*/
|
|
3087
3256
|
used?: number | null;
|
|
3088
3257
|
}
|
|
@@ -3121,7 +3290,7 @@ export interface SearchPreDbByVideoResponse extends AdditionalDataHolder, Parsab
|
|
|
3121
3290
|
*/
|
|
3122
3291
|
items?: PreDbVideoGroupDto[] | null;
|
|
3123
3292
|
/**
|
|
3124
|
-
*
|
|
3293
|
+
* Number of distinct videos in the result set (capped at 500).
|
|
3125
3294
|
*/
|
|
3126
3295
|
totalGroups?: number | null;
|
|
3127
3296
|
}
|
|
@@ -3916,63 +4085,75 @@ export declare function serializeWantedVideoChangeWantedVideoDto(writer: Seriali
|
|
|
3916
4085
|
* @param writer Serialization writer to use to serialize this model
|
|
3917
4086
|
*/
|
|
3918
4087
|
export declare function serializeWantedVideoSummaryDto(writer: SerializationWriter, wantedVideoSummaryDto?: Partial<WantedVideoSummaryDto> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
4088
|
+
/**
|
|
4089
|
+
* Summary of a single site.
|
|
4090
|
+
*/
|
|
3919
4091
|
export interface SiteSummaryDto extends AdditionalDataHolder, Parsable {
|
|
3920
4092
|
/**
|
|
3921
|
-
*
|
|
4093
|
+
* When this site was created.
|
|
3922
4094
|
*/
|
|
3923
4095
|
createdAtUtc?: Date | null;
|
|
3924
4096
|
/**
|
|
3925
|
-
*
|
|
4097
|
+
* Unique identifier of the site.
|
|
3926
4098
|
*/
|
|
3927
4099
|
id?: Guid | null;
|
|
3928
4100
|
/**
|
|
3929
|
-
*
|
|
4101
|
+
* Unique identifier of the network this site belongs to, if any.
|
|
3930
4102
|
*/
|
|
3931
4103
|
networkId?: Guid | null;
|
|
3932
4104
|
/**
|
|
3933
|
-
*
|
|
4105
|
+
* Title of the network this site belongs to, if any.
|
|
3934
4106
|
*/
|
|
3935
4107
|
networkTitle?: string | null;
|
|
3936
4108
|
/**
|
|
3937
|
-
*
|
|
4109
|
+
* Site title.
|
|
3938
4110
|
*/
|
|
3939
4111
|
title?: string | null;
|
|
3940
4112
|
/**
|
|
3941
|
-
*
|
|
4113
|
+
* When this site was last changed.
|
|
3942
4114
|
*/
|
|
3943
4115
|
updatedAtUtc?: Date | null;
|
|
3944
4116
|
/**
|
|
3945
|
-
*
|
|
4117
|
+
* Site URL.
|
|
3946
4118
|
*/
|
|
3947
4119
|
url?: string | null;
|
|
3948
4120
|
}
|
|
4121
|
+
/**
|
|
4122
|
+
* Request body for submitting confirmed hash-to-video assignments.
|
|
4123
|
+
*/
|
|
3949
4124
|
export interface SubmitVideoFilehashesRequest extends AdditionalDataHolder, Parsable {
|
|
3950
4125
|
/**
|
|
3951
|
-
*
|
|
4126
|
+
* Assignments to submit. Between 1 and 200 entries.
|
|
3952
4127
|
*/
|
|
3953
4128
|
items?: SubmitVideoFilehashItem[] | null;
|
|
3954
4129
|
}
|
|
4130
|
+
/**
|
|
4131
|
+
* Per-entry outcome of a filehash submission.
|
|
4132
|
+
*/
|
|
3955
4133
|
export interface SubmitVideoFilehashesResponse extends AdditionalDataHolder, Parsable {
|
|
3956
4134
|
/**
|
|
3957
|
-
*
|
|
4135
|
+
* One result per submitted entry, in request order.
|
|
3958
4136
|
*/
|
|
3959
4137
|
results?: SubmitVideoFilehashResultDto[] | null;
|
|
3960
4138
|
}
|
|
4139
|
+
/**
|
|
4140
|
+
* A single hash-to-video assignment.
|
|
4141
|
+
*/
|
|
3961
4142
|
export interface SubmitVideoFilehashItem extends AdditionalDataHolder, Parsable {
|
|
3962
4143
|
/**
|
|
3963
|
-
*
|
|
4144
|
+
* File name without directory. Optional — a client may withhold it, and the endpoint works without it.
|
|
3964
4145
|
*/
|
|
3965
4146
|
filename?: string | null;
|
|
3966
4147
|
/**
|
|
3967
|
-
*
|
|
4148
|
+
* Size of the file in bytes.
|
|
3968
4149
|
*/
|
|
3969
4150
|
filesize?: number | null;
|
|
3970
4151
|
/**
|
|
3971
|
-
*
|
|
4152
|
+
* OS hash of the file, 16 hexadecimal characters. Required; it is the only aggregation key.
|
|
3972
4153
|
*/
|
|
3973
4154
|
osHash?: string | null;
|
|
3974
4155
|
/**
|
|
3975
|
-
*
|
|
4156
|
+
* Perceptual hash of the file, 16 hexadecimal characters, if the client computed one. It mustbe computed as "Perceptual hashes" in the API description prescribes; a submission carryinga value from another procedure contributes a row nothing can match.
|
|
3976
4157
|
*/
|
|
3977
4158
|
pHash?: string | null;
|
|
3978
4159
|
/**
|
|
@@ -3980,21 +4161,24 @@ export interface SubmitVideoFilehashItem extends AdditionalDataHolder, Parsable
|
|
|
3980
4161
|
*/
|
|
3981
4162
|
source?: number | null;
|
|
3982
4163
|
/**
|
|
3983
|
-
* The
|
|
4164
|
+
* The video this file is. Required — a hash observation without an assignment is not accepted.
|
|
3984
4165
|
*/
|
|
3985
4166
|
videoId?: Guid | null;
|
|
3986
4167
|
}
|
|
4168
|
+
/**
|
|
4169
|
+
* What happened to one submitted assignment.
|
|
4170
|
+
*/
|
|
3987
4171
|
export interface SubmitVideoFilehashResultDto extends AdditionalDataHolder, Parsable {
|
|
3988
4172
|
/**
|
|
3989
|
-
* The
|
|
4173
|
+
* The OS hash of the entry, normalized to upper case.
|
|
3990
4174
|
*/
|
|
3991
4175
|
osHash?: string | null;
|
|
3992
4176
|
/**
|
|
3993
|
-
* Known values: Recorded (0), Updated (1), Conflicted (2), VideoNotFound (3).
|
|
4177
|
+
* Outcome of a single submission. Known values: Recorded (0), Updated (1), Conflicted (2), VideoNotFound (3).
|
|
3994
4178
|
*/
|
|
3995
4179
|
outcome?: number | null;
|
|
3996
4180
|
/**
|
|
3997
|
-
* The
|
|
4181
|
+
* The video the entry named.
|
|
3998
4182
|
*/
|
|
3999
4183
|
videoId?: Guid | null;
|
|
4000
4184
|
}
|
|
@@ -4016,57 +4200,60 @@ export interface SubmitVideoUserImageResponse extends AdditionalDataHolder, Pars
|
|
|
4016
4200
|
*/
|
|
4017
4201
|
videoUserImageId?: Guid | null;
|
|
4018
4202
|
}
|
|
4203
|
+
/**
|
|
4204
|
+
* Paged list of active filehash entries that are not linked to a video.
|
|
4205
|
+
*/
|
|
4019
4206
|
export interface UnlinkedVideoFilehashesResponse extends AdditionalDataHolder, Parsable {
|
|
4020
4207
|
/**
|
|
4021
4208
|
* The items property
|
|
4022
4209
|
*/
|
|
4023
4210
|
items?: VideoFilehashDto[] | null;
|
|
4024
4211
|
/**
|
|
4025
|
-
*
|
|
4212
|
+
* Current page number (1-based).
|
|
4026
4213
|
*/
|
|
4027
4214
|
page?: number | null;
|
|
4028
4215
|
/**
|
|
4029
|
-
*
|
|
4216
|
+
* Number of items per page.
|
|
4030
4217
|
*/
|
|
4031
4218
|
pageSize?: number | null;
|
|
4032
4219
|
/**
|
|
4033
|
-
*
|
|
4220
|
+
* Resolved sort field for the current query.
|
|
4034
4221
|
*/
|
|
4035
4222
|
sortBy?: string | null;
|
|
4036
4223
|
/**
|
|
4037
|
-
*
|
|
4224
|
+
* Resolved sort direction for the current query.
|
|
4038
4225
|
*/
|
|
4039
4226
|
sortDirection?: string | null;
|
|
4040
4227
|
/**
|
|
4041
|
-
*
|
|
4228
|
+
* Total number of active unlinked filehash entries matching the current filters.
|
|
4042
4229
|
*/
|
|
4043
4230
|
totalCount?: number | null;
|
|
4044
4231
|
}
|
|
4045
4232
|
export interface UpdateDownloadedFromIndexerFilenameRequest extends AdditionalDataHolder, Parsable {
|
|
4046
4233
|
/**
|
|
4047
|
-
* The filename
|
|
4234
|
+
* The filename as reported by the indexer/download source.
|
|
4048
4235
|
*/
|
|
4049
4236
|
filename?: string | null;
|
|
4050
4237
|
/**
|
|
4051
|
-
*
|
|
4238
|
+
* File size in bytes.
|
|
4052
4239
|
*/
|
|
4053
4240
|
filesize?: number | null;
|
|
4054
4241
|
/**
|
|
4055
|
-
*
|
|
4242
|
+
* Optional OS hash value as a 16-character fixed-length string.
|
|
4056
4243
|
*/
|
|
4057
4244
|
osHash?: string | null;
|
|
4058
4245
|
/**
|
|
4059
|
-
*
|
|
4246
|
+
* Optional perceptual hash value, 16 hexadecimal characters. It must be computed as"Perceptual hashes" in the API description prescribes; a value from another procedureis stored but can never be matched.
|
|
4060
4247
|
*/
|
|
4061
4248
|
pHash?: string | null;
|
|
4062
4249
|
}
|
|
4063
4250
|
export interface UpdateDownloadedFromIndexerRequest extends AdditionalDataHolder, Parsable {
|
|
4064
4251
|
/**
|
|
4065
|
-
*
|
|
4252
|
+
* Download identifier returned by the indexer or download client.
|
|
4066
4253
|
*/
|
|
4067
4254
|
downloadIdentifier?: string | null;
|
|
4068
4255
|
/**
|
|
4069
|
-
*
|
|
4256
|
+
* Indexer-specific identifier for the download item.
|
|
4070
4257
|
*/
|
|
4071
4258
|
indexerId?: string | null;
|
|
4072
4259
|
/**
|
|
@@ -4074,17 +4261,17 @@ export interface UpdateDownloadedFromIndexerRequest extends AdditionalDataHolder
|
|
|
4074
4261
|
*/
|
|
4075
4262
|
indexerSource?: number | null;
|
|
4076
4263
|
/**
|
|
4077
|
-
*
|
|
4264
|
+
* NZB or release name.
|
|
4078
4265
|
*/
|
|
4079
4266
|
nzbName?: string | null;
|
|
4080
4267
|
/**
|
|
4081
|
-
*
|
|
4268
|
+
* NZB or release URL.
|
|
4082
4269
|
*/
|
|
4083
4270
|
nzbUrl?: string | null;
|
|
4084
4271
|
}
|
|
4085
4272
|
export interface UpdateWantedVideoRequest extends AdditionalDataHolder, Parsable {
|
|
4086
4273
|
/**
|
|
4087
|
-
*
|
|
4274
|
+
* When the wanted video was fulfilled, if applicable.
|
|
4088
4275
|
*/
|
|
4089
4276
|
fulfilledAtUtc?: Date | null;
|
|
4090
4277
|
/**
|
|
@@ -4096,21 +4283,24 @@ export interface UpdateWantedVideoRequest extends AdditionalDataHolder, Parsable
|
|
|
4096
4283
|
*/
|
|
4097
4284
|
fulfillmentByApp?: number | null;
|
|
4098
4285
|
/**
|
|
4099
|
-
*
|
|
4286
|
+
* External identifier from the fulfilling application, if applicable.
|
|
4100
4287
|
*/
|
|
4101
4288
|
fulfillmentExternalId?: string | null;
|
|
4102
4289
|
/**
|
|
4103
|
-
*
|
|
4290
|
+
* Whether the wanted video has been fulfilled.
|
|
4104
4291
|
*/
|
|
4105
4292
|
isFulfilled?: boolean | null;
|
|
4106
4293
|
}
|
|
4294
|
+
/**
|
|
4295
|
+
* The updated wanted video entry.
|
|
4296
|
+
*/
|
|
4107
4297
|
export interface UpdateWantedVideoResponse extends AdditionalDataHolder, Parsable {
|
|
4108
4298
|
/**
|
|
4109
|
-
*
|
|
4299
|
+
* When this wanted video entry was created.
|
|
4110
4300
|
*/
|
|
4111
4301
|
createdAtUtc?: Date | null;
|
|
4112
4302
|
/**
|
|
4113
|
-
*
|
|
4303
|
+
* When the wanted video was fulfilled, if applicable.
|
|
4114
4304
|
*/
|
|
4115
4305
|
fulfilledAtUtc?: Date | null;
|
|
4116
4306
|
/**
|
|
@@ -4122,29 +4312,32 @@ export interface UpdateWantedVideoResponse extends AdditionalDataHolder, Parsabl
|
|
|
4122
4312
|
*/
|
|
4123
4313
|
fulfillmentByApp?: number | null;
|
|
4124
4314
|
/**
|
|
4125
|
-
*
|
|
4315
|
+
* External identifier from the fulfilling application, if applicable.
|
|
4126
4316
|
*/
|
|
4127
4317
|
fulfillmentExternalId?: string | null;
|
|
4128
4318
|
/**
|
|
4129
|
-
*
|
|
4319
|
+
* Whether this wanted video has been fulfilled.
|
|
4130
4320
|
*/
|
|
4131
4321
|
isFulfilled?: boolean | null;
|
|
4132
4322
|
/**
|
|
4133
|
-
*
|
|
4323
|
+
* When this wanted video entry was last updated.
|
|
4134
4324
|
*/
|
|
4135
4325
|
updatedAtUtc?: Date | null;
|
|
4136
4326
|
/**
|
|
4137
|
-
*
|
|
4327
|
+
* ID of the video.
|
|
4138
4328
|
*/
|
|
4139
4329
|
videoId?: Guid | null;
|
|
4140
4330
|
}
|
|
4331
|
+
/**
|
|
4332
|
+
* Identity and subscription state for the authenticated user.
|
|
4333
|
+
*/
|
|
4141
4334
|
export interface UserIdentityResponse extends AdditionalDataHolder, Parsable {
|
|
4142
4335
|
/**
|
|
4143
|
-
*
|
|
4336
|
+
* All subscriptions with Status=Active and an end date in the future.
|
|
4144
4337
|
*/
|
|
4145
4338
|
activeSubscriptions?: ActiveSubscriptionDto[] | null;
|
|
4146
4339
|
/**
|
|
4147
|
-
*
|
|
4340
|
+
* Stable HMAC-SHA256 hex digest derived from the user's immutable ID.Suitable as a durable public identifier — does not change unless the server secret rotates.
|
|
4148
4341
|
*/
|
|
4149
4342
|
userHash?: string | null;
|
|
4150
4343
|
}
|
|
@@ -4162,7 +4355,7 @@ export interface VideoDetailActorDto extends AdditionalDataHolder, Parsable {
|
|
|
4162
4355
|
*/
|
|
4163
4356
|
id?: Guid | null;
|
|
4164
4357
|
/**
|
|
4165
|
-
* The
|
|
4358
|
+
* Images for this actor, ordered by ActorImageType VideoDetailActorImageDto.ImageType ascending(Thumbnail, Poster, Face), then oldest first, with the image ID as the tie-breaker. The orderis stable across requests.
|
|
4166
4359
|
*/
|
|
4167
4360
|
images?: VideoDetailActorImageDto[] | null;
|
|
4168
4361
|
/**
|
|
@@ -4176,7 +4369,8 @@ export interface VideoDetailActorDto extends AdditionalDataHolder, Parsable {
|
|
|
4176
4369
|
}
|
|
4177
4370
|
export interface VideoDetailActorImageDto extends AdditionalDataHolder, Parsable {
|
|
4178
4371
|
/**
|
|
4179
|
-
* The
|
|
4372
|
+
* Deprecated alias for `url`, carrying the identical value. The name claimed a pathfragment that was never sent; read `url` instead. Removed in the next major version.
|
|
4373
|
+
* @deprecated
|
|
4180
4374
|
*/
|
|
4181
4375
|
cdnPath?: string | null;
|
|
4182
4376
|
/**
|
|
@@ -4187,6 +4381,10 @@ export interface VideoDetailActorImageDto extends AdditionalDataHolder, Parsable
|
|
|
4187
4381
|
* Known values: Thumbnail (1), Poster (2), Face (3).
|
|
4188
4382
|
*/
|
|
4189
4383
|
imageType?: number | null;
|
|
4384
|
+
/**
|
|
4385
|
+
* Absolute URL for the image, if available: a complete URL including scheme and host, ready torequest as-is. The actor endpoints expose the same image under the same name.
|
|
4386
|
+
*/
|
|
4387
|
+
url?: string | null;
|
|
4190
4388
|
}
|
|
4191
4389
|
export interface VideoDetailDto extends AdditionalDataHolder, Parsable {
|
|
4192
4390
|
/**
|
|
@@ -4202,7 +4400,7 @@ export interface VideoDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
4202
4400
|
*/
|
|
4203
4401
|
id?: Guid | null;
|
|
4204
4402
|
/**
|
|
4205
|
-
* The
|
|
4403
|
+
* Images for this video, ordered oldest first by the time they were added, with the image IDas the tie-breaker. The order is stable across requests.
|
|
4206
4404
|
*/
|
|
4207
4405
|
images?: VideoDetailImageDto[] | null;
|
|
4208
4406
|
/**
|
|
@@ -4228,13 +4426,18 @@ export interface VideoDetailDto extends AdditionalDataHolder, Parsable {
|
|
|
4228
4426
|
}
|
|
4229
4427
|
export interface VideoDetailImageDto extends AdditionalDataHolder, Parsable {
|
|
4230
4428
|
/**
|
|
4231
|
-
* The
|
|
4429
|
+
* Deprecated alias for `url`, carrying the identical value. The name claimed a pathfragment that was never sent; read `url` instead. Removed in the next major version.
|
|
4430
|
+
* @deprecated
|
|
4232
4431
|
*/
|
|
4233
4432
|
cdnPath?: string | null;
|
|
4234
4433
|
/**
|
|
4235
4434
|
* The id property
|
|
4236
4435
|
*/
|
|
4237
4436
|
id?: Guid | null;
|
|
4437
|
+
/**
|
|
4438
|
+
* Absolute URL for the image, if available: a complete URL including scheme and host, ready torequest as-is. This is the same value the deprecated `cdnPath` carries.
|
|
4439
|
+
*/
|
|
4440
|
+
url?: string | null;
|
|
4238
4441
|
}
|
|
4239
4442
|
export interface VideoDetailNetworkDto extends AdditionalDataHolder, Parsable {
|
|
4240
4443
|
/**
|
|
@@ -4278,31 +4481,37 @@ export interface VideoDetailSiteDto extends AdditionalDataHolder, Parsable {
|
|
|
4278
4481
|
*/
|
|
4279
4482
|
url?: string | null;
|
|
4280
4483
|
}
|
|
4484
|
+
/**
|
|
4485
|
+
* A single changed video filehash row in the incremental feed.
|
|
4486
|
+
*/
|
|
4281
4487
|
export interface VideoFilehashChangeDto extends AdditionalDataHolder, Parsable {
|
|
4282
4488
|
/**
|
|
4283
|
-
*
|
|
4489
|
+
* One of `created`, `updated`, or `deleted`.
|
|
4284
4490
|
*/
|
|
4285
4491
|
eventType?: string | null;
|
|
4286
4492
|
/**
|
|
4287
|
-
*
|
|
4493
|
+
* Current persisted state of a changed video filehash row, including soft-delete fields.
|
|
4288
4494
|
*/
|
|
4289
4495
|
filehash?: VideoFilehashChangeFilehashDto | null;
|
|
4290
4496
|
}
|
|
4497
|
+
/**
|
|
4498
|
+
* Current persisted state of a changed video filehash row, including soft-delete fields.
|
|
4499
|
+
*/
|
|
4291
4500
|
export interface VideoFilehashChangeFilehashDto extends AdditionalDataHolder, Parsable {
|
|
4292
4501
|
/**
|
|
4293
4502
|
* The createdAtUtc property
|
|
4294
4503
|
*/
|
|
4295
4504
|
createdAtUtc?: Date | null;
|
|
4296
4505
|
/**
|
|
4297
|
-
*
|
|
4506
|
+
* Timestamp when the row was soft-deleted, or null when still active.
|
|
4298
4507
|
*/
|
|
4299
4508
|
deletedAtUtc?: Date | null;
|
|
4300
4509
|
/**
|
|
4301
|
-
*
|
|
4510
|
+
* Original filename submitted for this filehash record.
|
|
4302
4511
|
*/
|
|
4303
4512
|
filename?: string | null;
|
|
4304
4513
|
/**
|
|
4305
|
-
*
|
|
4514
|
+
* File size in bytes.
|
|
4306
4515
|
*/
|
|
4307
4516
|
filesize?: number | null;
|
|
4308
4517
|
/**
|
|
@@ -4310,23 +4519,23 @@ export interface VideoFilehashChangeFilehashDto extends AdditionalDataHolder, Pa
|
|
|
4310
4519
|
*/
|
|
4311
4520
|
id?: Guid | null;
|
|
4312
4521
|
/**
|
|
4313
|
-
*
|
|
4522
|
+
* Whether this row is soft-deleted.
|
|
4314
4523
|
*/
|
|
4315
4524
|
isDeleted?: boolean | null;
|
|
4316
4525
|
/**
|
|
4317
|
-
*
|
|
4526
|
+
* Whether this filehash record has been verified.
|
|
4318
4527
|
*/
|
|
4319
4528
|
isVerified?: boolean | null;
|
|
4320
4529
|
/**
|
|
4321
|
-
*
|
|
4530
|
+
* OS hash value as stored, or null when not available.
|
|
4322
4531
|
*/
|
|
4323
4532
|
osHash?: string | null;
|
|
4324
4533
|
/**
|
|
4325
|
-
*
|
|
4534
|
+
* P hash value as stored, or null when not available.
|
|
4326
4535
|
*/
|
|
4327
4536
|
pHash?: string | null;
|
|
4328
4537
|
/**
|
|
4329
|
-
*
|
|
4538
|
+
* Number of submissions merged into this filehash record.
|
|
4330
4539
|
*/
|
|
4331
4540
|
submissionCount?: number | null;
|
|
4332
4541
|
/**
|
|
@@ -4338,6 +4547,9 @@ export interface VideoFilehashChangeFilehashDto extends AdditionalDataHolder, Pa
|
|
|
4338
4547
|
*/
|
|
4339
4548
|
videoId?: Guid | null;
|
|
4340
4549
|
}
|
|
4550
|
+
/**
|
|
4551
|
+
* Seek cursor for continuing a video filehash change feed.
|
|
4552
|
+
*/
|
|
4341
4553
|
export interface VideoFilehashChangesCursorDto extends AdditionalDataHolder, Parsable {
|
|
4342
4554
|
/**
|
|
4343
4555
|
* The id property
|
|
@@ -4354,11 +4566,11 @@ export interface VideoFilehashDto extends AdditionalDataHolder, Parsable {
|
|
|
4354
4566
|
*/
|
|
4355
4567
|
createdAtUtc?: Date | null;
|
|
4356
4568
|
/**
|
|
4357
|
-
*
|
|
4569
|
+
* Original filename submitted for this filehash record.
|
|
4358
4570
|
*/
|
|
4359
4571
|
filename?: string | null;
|
|
4360
4572
|
/**
|
|
4361
|
-
*
|
|
4573
|
+
* File size in bytes.
|
|
4362
4574
|
*/
|
|
4363
4575
|
filesize?: number | null;
|
|
4364
4576
|
/**
|
|
@@ -4366,19 +4578,19 @@ export interface VideoFilehashDto extends AdditionalDataHolder, Parsable {
|
|
|
4366
4578
|
*/
|
|
4367
4579
|
id?: Guid | null;
|
|
4368
4580
|
/**
|
|
4369
|
-
*
|
|
4581
|
+
* Whether this filehash record has been verified.
|
|
4370
4582
|
*/
|
|
4371
4583
|
isVerified?: boolean | null;
|
|
4372
4584
|
/**
|
|
4373
|
-
*
|
|
4585
|
+
* OS hash value as stored, or null when not available.
|
|
4374
4586
|
*/
|
|
4375
4587
|
osHash?: string | null;
|
|
4376
4588
|
/**
|
|
4377
|
-
*
|
|
4589
|
+
* P hash value as stored, or null when not available.
|
|
4378
4590
|
*/
|
|
4379
4591
|
pHash?: string | null;
|
|
4380
4592
|
/**
|
|
4381
|
-
*
|
|
4593
|
+
* Number of submissions merged into this filehash record.
|
|
4382
4594
|
*/
|
|
4383
4595
|
submissionCount?: number | null;
|
|
4384
4596
|
/**
|
|
@@ -4400,43 +4612,49 @@ export interface VideoFilehashesByVideoIdDto extends AdditionalDataHolder, Parsa
|
|
|
4400
4612
|
*/
|
|
4401
4613
|
videoId?: Guid | null;
|
|
4402
4614
|
}
|
|
4615
|
+
/**
|
|
4616
|
+
* Minimal actor summary included in a video list item.
|
|
4617
|
+
*/
|
|
4403
4618
|
export interface VideoSummaryActorDto extends AdditionalDataHolder, Parsable {
|
|
4404
4619
|
/**
|
|
4405
|
-
*
|
|
4620
|
+
* Unique identifier of the actor.
|
|
4406
4621
|
*/
|
|
4407
4622
|
id?: Guid | null;
|
|
4408
4623
|
/**
|
|
4409
|
-
*
|
|
4624
|
+
* Actor name.
|
|
4410
4625
|
*/
|
|
4411
4626
|
name?: string | null;
|
|
4412
4627
|
}
|
|
4628
|
+
/**
|
|
4629
|
+
* Summary of a single video.
|
|
4630
|
+
*/
|
|
4413
4631
|
export interface VideoSummaryDto extends AdditionalDataHolder, Parsable {
|
|
4414
4632
|
/**
|
|
4415
|
-
*
|
|
4633
|
+
* Actors appearing in this video.
|
|
4416
4634
|
*/
|
|
4417
4635
|
actors?: VideoSummaryActorDto[] | null;
|
|
4418
4636
|
/**
|
|
4419
|
-
*
|
|
4637
|
+
* Timestamp when the video was created in PRDB.
|
|
4420
4638
|
*/
|
|
4421
4639
|
createdAtUtc?: Date | null;
|
|
4422
4640
|
/**
|
|
4423
|
-
*
|
|
4641
|
+
* Unique identifier of the video.
|
|
4424
4642
|
*/
|
|
4425
4643
|
id?: Guid | null;
|
|
4426
4644
|
/**
|
|
4427
|
-
*
|
|
4645
|
+
* Release date of the video, if known.
|
|
4428
4646
|
*/
|
|
4429
4647
|
releaseDate?: DateOnly | null;
|
|
4430
4648
|
/**
|
|
4431
|
-
*
|
|
4649
|
+
* Unique identifier of the site this video belongs to.
|
|
4432
4650
|
*/
|
|
4433
4651
|
siteId?: Guid | null;
|
|
4434
4652
|
/**
|
|
4435
|
-
*
|
|
4653
|
+
* Title of the site this video belongs to.
|
|
4436
4654
|
*/
|
|
4437
4655
|
siteTitle?: string | null;
|
|
4438
4656
|
/**
|
|
4439
|
-
*
|
|
4657
|
+
* Video title.
|
|
4440
4658
|
*/
|
|
4441
4659
|
title?: string | null;
|
|
4442
4660
|
}
|
|
@@ -4462,7 +4680,7 @@ export interface VideoUserImageChangesCursorDto extends AdditionalDataHolder, Pa
|
|
|
4462
4680
|
}
|
|
4463
4681
|
export interface VideoUserImageDto extends AdditionalDataHolder, Parsable {
|
|
4464
4682
|
/**
|
|
4465
|
-
*
|
|
4683
|
+
* Server-validated 16-character OS hash of the file the preview is based on.
|
|
4466
4684
|
*/
|
|
4467
4685
|
basedOnFileWithOsHash?: string | null;
|
|
4468
4686
|
/**
|
|
@@ -4510,23 +4728,23 @@ export interface VideoUserImageDto extends AdditionalDataHolder, Parsable {
|
|
|
4510
4728
|
*/
|
|
4511
4729
|
previewImageType?: string | null;
|
|
4512
4730
|
/**
|
|
4513
|
-
*
|
|
4731
|
+
* Number of occupied tile columns in the sprite-sheet grid.
|
|
4514
4732
|
*/
|
|
4515
4733
|
spriteColumns?: number | null;
|
|
4516
4734
|
/**
|
|
4517
|
-
*
|
|
4735
|
+
* Number of occupied tile rows in the sprite-sheet grid.
|
|
4518
4736
|
*/
|
|
4519
4737
|
spriteRows?: number | null;
|
|
4520
4738
|
/**
|
|
4521
|
-
*
|
|
4739
|
+
* Number of sprite tiles described by the paired WebVTT metadata object.
|
|
4522
4740
|
*/
|
|
4523
4741
|
spriteTileCount?: number | null;
|
|
4524
4742
|
/**
|
|
4525
|
-
*
|
|
4743
|
+
* Uniform sprite tile height in pixels.
|
|
4526
4744
|
*/
|
|
4527
4745
|
spriteTileHeight?: number | null;
|
|
4528
4746
|
/**
|
|
4529
|
-
*
|
|
4747
|
+
* Uniform sprite tile width in pixels.
|
|
4530
4748
|
*/
|
|
4531
4749
|
spriteTileWidth?: number | null;
|
|
4532
4750
|
/**
|
|
@@ -4534,7 +4752,7 @@ export interface VideoUserImageDto extends AdditionalDataHolder, Parsable {
|
|
|
4534
4752
|
*/
|
|
4535
4753
|
updatedAtUtc?: Date | null;
|
|
4536
4754
|
/**
|
|
4537
|
-
*
|
|
4755
|
+
* Absolute URL for the stored image object: a complete URL including scheme and host, ready torequest as-is.
|
|
4538
4756
|
*/
|
|
4539
4757
|
url?: string | null;
|
|
4540
4758
|
/**
|
|
@@ -4546,7 +4764,7 @@ export interface VideoUserImageDto extends AdditionalDataHolder, Parsable {
|
|
|
4546
4764
|
*/
|
|
4547
4765
|
videoId?: Guid | null;
|
|
4548
4766
|
/**
|
|
4549
|
-
*
|
|
4767
|
+
* Absolute URL for the paired WebVTT metadata object when this image is a sprite sheet: acomplete URL including scheme and host, ready to request as-is.
|
|
4550
4768
|
*/
|
|
4551
4769
|
vttUrl?: string | null;
|
|
4552
4770
|
/**
|
|
@@ -4554,16 +4772,22 @@ export interface VideoUserImageDto extends AdditionalDataHolder, Parsable {
|
|
|
4554
4772
|
*/
|
|
4555
4773
|
width?: number | null;
|
|
4556
4774
|
}
|
|
4775
|
+
/**
|
|
4776
|
+
* A single changed wanted video row in the incremental feed.
|
|
4777
|
+
*/
|
|
4557
4778
|
export interface WantedVideoChangeDto extends AdditionalDataHolder, Parsable {
|
|
4558
4779
|
/**
|
|
4559
|
-
*
|
|
4780
|
+
* One of `created`, `updated`, or `deleted`.
|
|
4560
4781
|
*/
|
|
4561
4782
|
eventType?: string | null;
|
|
4562
4783
|
/**
|
|
4563
|
-
*
|
|
4784
|
+
* Current-state payload for a wanted video row in the incremental feed.
|
|
4564
4785
|
*/
|
|
4565
4786
|
wantedVideo?: WantedVideoChangeWantedVideoDto | null;
|
|
4566
4787
|
}
|
|
4788
|
+
/**
|
|
4789
|
+
* Seek cursor for continuing a wanted video change feed.
|
|
4790
|
+
*/
|
|
4567
4791
|
export interface WantedVideoChangesCursorDto extends AdditionalDataHolder, Parsable {
|
|
4568
4792
|
/**
|
|
4569
4793
|
* The id property
|
|
@@ -4574,6 +4798,9 @@ export interface WantedVideoChangesCursorDto extends AdditionalDataHolder, Parsa
|
|
|
4574
4798
|
*/
|
|
4575
4799
|
updatedAtUtc?: Date | null;
|
|
4576
4800
|
}
|
|
4801
|
+
/**
|
|
4802
|
+
* Current-state payload for a wanted video row in the incremental feed.
|
|
4803
|
+
*/
|
|
4577
4804
|
export interface WantedVideoChangeWantedVideoDto extends AdditionalDataHolder, Parsable {
|
|
4578
4805
|
/**
|
|
4579
4806
|
* The createdAtUtc property
|
|
@@ -4600,9 +4827,14 @@ export interface WantedVideoChangeWantedVideoDto extends AdditionalDataHolder, P
|
|
|
4600
4827
|
*/
|
|
4601
4828
|
fulfillmentExternalId?: string | null;
|
|
4602
4829
|
/**
|
|
4603
|
-
* The
|
|
4830
|
+
* Deprecated alias for `imageUrl`, carrying the identical value. The name claimed apath fragment that was never sent; read `imageUrl` instead. Removed in the next majorversion.
|
|
4831
|
+
* @deprecated
|
|
4604
4832
|
*/
|
|
4605
4833
|
imageCdnPath?: string | null;
|
|
4834
|
+
/**
|
|
4835
|
+
* Absolute URL for the video's primary image, if available: a complete URL including schemeand host, ready to request as-is.
|
|
4836
|
+
*/
|
|
4837
|
+
imageUrl?: string | null;
|
|
4606
4838
|
/**
|
|
4607
4839
|
* The isDeleted property
|
|
4608
4840
|
*/
|
|
@@ -4636,13 +4868,16 @@ export interface WantedVideoChangeWantedVideoDto extends AdditionalDataHolder, P
|
|
|
4636
4868
|
*/
|
|
4637
4869
|
videoTitle?: string | null;
|
|
4638
4870
|
}
|
|
4871
|
+
/**
|
|
4872
|
+
* A wanted video entry for the current user.
|
|
4873
|
+
*/
|
|
4639
4874
|
export interface WantedVideoSummaryDto extends AdditionalDataHolder, Parsable {
|
|
4640
4875
|
/**
|
|
4641
|
-
*
|
|
4876
|
+
* When this wanted video entry was created.
|
|
4642
4877
|
*/
|
|
4643
4878
|
createdAtUtc?: Date | null;
|
|
4644
4879
|
/**
|
|
4645
|
-
*
|
|
4880
|
+
* When the wanted video was fulfilled, if applicable.
|
|
4646
4881
|
*/
|
|
4647
4882
|
fulfilledAtUtc?: Date | null;
|
|
4648
4883
|
/**
|
|
@@ -4654,44 +4889,49 @@ export interface WantedVideoSummaryDto extends AdditionalDataHolder, Parsable {
|
|
|
4654
4889
|
*/
|
|
4655
4890
|
fulfillmentByApp?: number | null;
|
|
4656
4891
|
/**
|
|
4657
|
-
*
|
|
4892
|
+
* External identifier from the fulfilling application, if applicable.
|
|
4658
4893
|
*/
|
|
4659
4894
|
fulfillmentExternalId?: string | null;
|
|
4660
4895
|
/**
|
|
4661
|
-
* The
|
|
4896
|
+
* Deprecated alias for `imageUrl`, carrying the identical value. The name claimed apath fragment that was never sent; read `imageUrl` instead. Removed in the next majorversion.
|
|
4897
|
+
* @deprecated
|
|
4662
4898
|
*/
|
|
4663
4899
|
imageCdnPath?: string | null;
|
|
4664
4900
|
/**
|
|
4665
|
-
*
|
|
4901
|
+
* Absolute URL for the video's primary image, if available: a complete URL including schemeand host, ready to request as-is.
|
|
4902
|
+
*/
|
|
4903
|
+
imageUrl?: string | null;
|
|
4904
|
+
/**
|
|
4905
|
+
* Whether this wanted video has been fulfilled.
|
|
4666
4906
|
*/
|
|
4667
4907
|
isFulfilled?: boolean | null;
|
|
4668
4908
|
/**
|
|
4669
|
-
*
|
|
4909
|
+
* Title of the site this video belongs to.
|
|
4670
4910
|
*/
|
|
4671
4911
|
siteTitle?: string | null;
|
|
4672
4912
|
/**
|
|
4673
|
-
*
|
|
4913
|
+
* When this wanted video entry was last updated.
|
|
4674
4914
|
*/
|
|
4675
4915
|
updatedAtUtc?: Date | null;
|
|
4676
4916
|
/**
|
|
4677
|
-
*
|
|
4917
|
+
* When the video was added to the database.
|
|
4678
4918
|
*/
|
|
4679
4919
|
videoCreatedAtUtc?: Date | null;
|
|
4680
4920
|
/**
|
|
4681
|
-
*
|
|
4921
|
+
* ID of the wanted video.
|
|
4682
4922
|
*/
|
|
4683
4923
|
videoId?: Guid | null;
|
|
4684
4924
|
/**
|
|
4685
|
-
*
|
|
4925
|
+
* Release date of the video, if known.
|
|
4686
4926
|
*/
|
|
4687
4927
|
videoReleaseDate?: DateOnly | null;
|
|
4688
4928
|
/**
|
|
4689
|
-
*
|
|
4929
|
+
* Video title.
|
|
4690
4930
|
*/
|
|
4691
4931
|
videoTitle?: string | null;
|
|
4692
4932
|
}
|
|
4693
4933
|
/**
|
|
4694
|
-
* Allowed values: DrunkenSlug, NzbFinder, NzbPorn.
|
|
4934
|
+
* Indexer source. Supported values: `DrunkenSlug`, `NzbFinder`, `NzbPorn`. Allowed values: DrunkenSlug, NzbFinder, NzbPorn.
|
|
4695
4935
|
*/
|
|
4696
4936
|
export declare const IndexerFilehashLookupKeyDto_indexerSourceObject: {
|
|
4697
4937
|
readonly DrunkenSlug: "DrunkenSlug";
|