tsarr 1.3.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import type { ServarrClientConfig } from '../core/types.js';
2
2
  import * as ProwlarrApi from '../generated/prowlarr/index.js';
3
- import type { CommandResource, IndexerResource } from '../generated/prowlarr/types.gen.js';
3
+ import type { ApplicationResource, CommandResource, DevelopmentConfigResource, HostConfigResource, IndexerResource, NotificationResource, TagResource, UiConfigResource } from '../generated/prowlarr/types.gen.js';
4
4
  /**
5
5
  * Prowlarr API client for indexer management
6
6
  *
@@ -133,6 +133,565 @@ export declare class ProwlarrClient {
133
133
  request: Request;
134
134
  response: Response;
135
135
  }>;
136
+ /**
137
+ * Get host configuration settings
138
+ */
139
+ getHostConfig(): Promise<({
140
+ data: undefined;
141
+ error: unknown;
142
+ } | {
143
+ data: ProwlarrApi.HostConfigResource;
144
+ error: undefined;
145
+ }) & {
146
+ request: Request;
147
+ response: Response;
148
+ }>;
149
+ /**
150
+ * Get host configuration by ID
151
+ */
152
+ getHostConfigById(id: number): Promise<({
153
+ data: undefined;
154
+ error: unknown;
155
+ } | {
156
+ data: ProwlarrApi.HostConfigResource;
157
+ error: undefined;
158
+ }) & {
159
+ request: Request;
160
+ response: Response;
161
+ }>;
162
+ /**
163
+ * Update host configuration
164
+ */
165
+ updateHostConfig(id: number, config: HostConfigResource): Promise<({
166
+ data: undefined;
167
+ error: unknown;
168
+ } | {
169
+ data: ProwlarrApi.HostConfigResource;
170
+ error: undefined;
171
+ }) & {
172
+ request: Request;
173
+ response: Response;
174
+ }>;
175
+ /**
176
+ * Get UI configuration settings
177
+ */
178
+ getUiConfig(): Promise<({
179
+ data: undefined;
180
+ error: unknown;
181
+ } | {
182
+ data: ProwlarrApi.UiConfigResource;
183
+ error: undefined;
184
+ }) & {
185
+ request: Request;
186
+ response: Response;
187
+ }>;
188
+ /**
189
+ * Get UI configuration by ID
190
+ */
191
+ getUiConfigById(id: number): Promise<({
192
+ data: undefined;
193
+ error: unknown;
194
+ } | {
195
+ data: ProwlarrApi.UiConfigResource;
196
+ error: undefined;
197
+ }) & {
198
+ request: Request;
199
+ response: Response;
200
+ }>;
201
+ /**
202
+ * Update UI configuration
203
+ */
204
+ updateUiConfig(id: number, config: UiConfigResource): Promise<({
205
+ data: undefined;
206
+ error: unknown;
207
+ } | {
208
+ data: ProwlarrApi.UiConfigResource;
209
+ error: undefined;
210
+ }) & {
211
+ request: Request;
212
+ response: Response;
213
+ }>;
214
+ /**
215
+ * Get development configuration settings
216
+ */
217
+ getDevelopmentConfig(): Promise<({
218
+ data: undefined;
219
+ error: unknown;
220
+ } | {
221
+ data: ProwlarrApi.DevelopmentConfigResource;
222
+ error: undefined;
223
+ }) & {
224
+ request: Request;
225
+ response: Response;
226
+ }>;
227
+ /**
228
+ * Get development configuration by ID
229
+ */
230
+ getDevelopmentConfigById(id: number): Promise<({
231
+ data: undefined;
232
+ error: unknown;
233
+ } | {
234
+ data: ProwlarrApi.DevelopmentConfigResource;
235
+ error: undefined;
236
+ }) & {
237
+ request: Request;
238
+ response: Response;
239
+ }>;
240
+ /**
241
+ * Update development configuration
242
+ */
243
+ updateDevelopmentConfig(id: number, config: DevelopmentConfigResource): Promise<({
244
+ data: undefined;
245
+ error: unknown;
246
+ } | {
247
+ data: ProwlarrApi.DevelopmentConfigResource;
248
+ error: undefined;
249
+ }) & {
250
+ request: Request;
251
+ response: Response;
252
+ }>;
253
+ /**
254
+ * Restart the Prowlarr application
255
+ */
256
+ restartSystem(): Promise<({
257
+ data: undefined;
258
+ error: unknown;
259
+ } | {
260
+ data: unknown;
261
+ error: undefined;
262
+ }) & {
263
+ request: Request;
264
+ response: Response;
265
+ }>;
266
+ /**
267
+ * Shutdown the Prowlarr application
268
+ */
269
+ shutdownSystem(): Promise<({
270
+ data: undefined;
271
+ error: unknown;
272
+ } | {
273
+ data: unknown;
274
+ error: undefined;
275
+ }) & {
276
+ request: Request;
277
+ response: Response;
278
+ }>;
279
+ /**
280
+ * Get system backup files
281
+ */
282
+ getSystemBackups(): Promise<({
283
+ data: undefined;
284
+ error: unknown;
285
+ } | {
286
+ data: ProwlarrApi.BackupResource[];
287
+ error: undefined;
288
+ }) & {
289
+ request: Request;
290
+ response: Response;
291
+ }>;
292
+ /**
293
+ * Delete a system backup by ID
294
+ */
295
+ deleteSystemBackup(id: number): Promise<({
296
+ data: undefined;
297
+ error: unknown;
298
+ } | {
299
+ data: unknown;
300
+ error: undefined;
301
+ }) & {
302
+ request: Request;
303
+ response: Response;
304
+ }>;
305
+ /**
306
+ * Restore system backup by ID
307
+ */
308
+ restoreSystemBackup(id: number): Promise<({
309
+ data: undefined;
310
+ error: unknown;
311
+ } | {
312
+ data: unknown;
313
+ error: undefined;
314
+ }) & {
315
+ request: Request;
316
+ response: Response;
317
+ }>;
318
+ /**
319
+ * Upload and restore system backup
320
+ */
321
+ uploadSystemBackup(): Promise<({
322
+ data: undefined;
323
+ error: unknown;
324
+ } | {
325
+ data: unknown;
326
+ error: undefined;
327
+ }) & {
328
+ request: Request;
329
+ response: Response;
330
+ }>;
331
+ /**
332
+ * Get system logs
333
+ */
334
+ getSystemLogs(): Promise<({
335
+ data: undefined;
336
+ error: unknown;
337
+ } | {
338
+ data: ProwlarrApi.LogResourcePagingResource;
339
+ error: undefined;
340
+ }) & {
341
+ request: Request;
342
+ response: Response;
343
+ }>;
344
+ /**
345
+ * Get log files
346
+ */
347
+ getLogFiles(): Promise<({
348
+ data: undefined;
349
+ error: unknown;
350
+ } | {
351
+ data: ProwlarrApi.LogFileResource[];
352
+ error: undefined;
353
+ }) & {
354
+ request: Request;
355
+ response: Response;
356
+ }>;
357
+ /**
358
+ * Get specific log file by filename
359
+ */
360
+ getLogFileByName(filename: string): Promise<({
361
+ data: undefined;
362
+ error: unknown;
363
+ } | {
364
+ data: ProwlarrApi.IActionResult;
365
+ error: undefined;
366
+ }) & {
367
+ request: Request;
368
+ response: Response;
369
+ }>;
370
+ /**
371
+ * Get all tags
372
+ */
373
+ getTags(): Promise<({
374
+ data: undefined;
375
+ error: unknown;
376
+ } | {
377
+ data: ProwlarrApi.TagResource[];
378
+ error: undefined;
379
+ }) & {
380
+ request: Request;
381
+ response: Response;
382
+ }>;
383
+ /**
384
+ * Add a new tag
385
+ */
386
+ addTag(tag: TagResource): Promise<({
387
+ data: undefined;
388
+ error: unknown;
389
+ } | {
390
+ data: ProwlarrApi.TagResource;
391
+ error: undefined;
392
+ }) & {
393
+ request: Request;
394
+ response: Response;
395
+ }>;
396
+ /**
397
+ * Get a specific tag by ID
398
+ */
399
+ getTag(id: number): Promise<({
400
+ data: undefined;
401
+ error: unknown;
402
+ } | {
403
+ data: ProwlarrApi.TagResource;
404
+ error: undefined;
405
+ }) & {
406
+ request: Request;
407
+ response: Response;
408
+ }>;
409
+ /**
410
+ * Update an existing tag
411
+ */
412
+ updateTag(id: number, tag: TagResource): Promise<({
413
+ data: undefined;
414
+ error: unknown;
415
+ } | {
416
+ data: ProwlarrApi.TagResource;
417
+ error: undefined;
418
+ }) & {
419
+ request: Request;
420
+ response: Response;
421
+ }>;
422
+ /**
423
+ * Delete a tag
424
+ */
425
+ deleteTag(id: number): Promise<({
426
+ data: undefined;
427
+ error: unknown;
428
+ } | {
429
+ data: unknown;
430
+ error: undefined;
431
+ }) & {
432
+ request: Request;
433
+ response: Response;
434
+ }>;
435
+ /**
436
+ * Get detailed tag information
437
+ */
438
+ getTagDetails(): Promise<({
439
+ data: undefined;
440
+ error: unknown;
441
+ } | {
442
+ data: ProwlarrApi.TagDetailsResource[];
443
+ error: undefined;
444
+ }) & {
445
+ request: Request;
446
+ response: Response;
447
+ }>;
448
+ /**
449
+ * Get detailed tag information by ID
450
+ */
451
+ getTagDetailById(id: number): Promise<({
452
+ data: undefined;
453
+ error: unknown;
454
+ } | {
455
+ data: ProwlarrApi.TagDetailsResource;
456
+ error: undefined;
457
+ }) & {
458
+ request: Request;
459
+ response: Response;
460
+ }>;
461
+ /**
462
+ * Get a specific application by ID
463
+ */
464
+ getApplication(id: number): Promise<({
465
+ data: undefined;
466
+ error: unknown;
467
+ } | {
468
+ data: ProwlarrApi.ApplicationResource;
469
+ error: undefined;
470
+ }) & {
471
+ request: Request;
472
+ response: Response;
473
+ }>;
474
+ /**
475
+ * Add a new application
476
+ */
477
+ addApplication(application: ApplicationResource): Promise<({
478
+ data: undefined;
479
+ error: unknown;
480
+ } | {
481
+ data: ProwlarrApi.ApplicationResource;
482
+ error: undefined;
483
+ }) & {
484
+ request: Request;
485
+ response: Response;
486
+ }>;
487
+ /**
488
+ * Update an existing application
489
+ */
490
+ updateApplication(id: number, application: ApplicationResource): Promise<({
491
+ data: undefined;
492
+ error: unknown;
493
+ } | {
494
+ data: ProwlarrApi.ApplicationResource;
495
+ error: undefined;
496
+ }) & {
497
+ request: Request;
498
+ response: Response;
499
+ }>;
500
+ /**
501
+ * Delete an application
502
+ */
503
+ deleteApplication(id: number): Promise<({
504
+ data: undefined;
505
+ error: unknown;
506
+ } | {
507
+ data: unknown;
508
+ error: undefined;
509
+ }) & {
510
+ request: Request;
511
+ response: Response;
512
+ }>;
513
+ /**
514
+ * Test an application configuration
515
+ */
516
+ testApplication(application: ApplicationResource): Promise<({
517
+ data: undefined;
518
+ error: unknown;
519
+ } | {
520
+ data: unknown;
521
+ error: undefined;
522
+ }) & {
523
+ request: Request;
524
+ response: Response;
525
+ }>;
526
+ /**
527
+ * Test all applications
528
+ */
529
+ testAllApplications(): Promise<({
530
+ data: undefined;
531
+ error: unknown;
532
+ } | {
533
+ data: unknown;
534
+ error: undefined;
535
+ }) & {
536
+ request: Request;
537
+ response: Response;
538
+ }>;
539
+ /**
540
+ * Get application schema for available application types
541
+ */
542
+ getApplicationSchema(): Promise<({
543
+ data: undefined;
544
+ error: unknown;
545
+ } | {
546
+ data: ProwlarrApi.ApplicationResource[];
547
+ error: undefined;
548
+ }) & {
549
+ request: Request;
550
+ response: Response;
551
+ }>;
552
+ /**
553
+ * Get indexer schema for available indexer types
554
+ */
555
+ getIndexerSchema(): Promise<({
556
+ data: undefined;
557
+ error: unknown;
558
+ } | {
559
+ data: ProwlarrApi.IndexerResource[];
560
+ error: undefined;
561
+ }) & {
562
+ request: Request;
563
+ response: Response;
564
+ }>;
565
+ /**
566
+ * Test an indexer configuration
567
+ */
568
+ testIndexer(indexer: IndexerResource): Promise<({
569
+ data: undefined;
570
+ error: unknown;
571
+ } | {
572
+ data: unknown;
573
+ error: undefined;
574
+ }) & {
575
+ request: Request;
576
+ response: Response;
577
+ }>;
578
+ /**
579
+ * Test all indexers
580
+ */
581
+ testAllIndexers(): Promise<({
582
+ data: undefined;
583
+ error: unknown;
584
+ } | {
585
+ data: unknown;
586
+ error: undefined;
587
+ }) & {
588
+ request: Request;
589
+ response: Response;
590
+ }>;
591
+ /**
592
+ * Get all notification providers
593
+ */
594
+ getNotifications(): Promise<({
595
+ data: undefined;
596
+ error: unknown;
597
+ } | {
598
+ data: ProwlarrApi.NotificationResource[];
599
+ error: undefined;
600
+ }) & {
601
+ request: Request;
602
+ response: Response;
603
+ }>;
604
+ /**
605
+ * Get a specific notification provider by ID
606
+ */
607
+ getNotification(id: number): Promise<({
608
+ data: undefined;
609
+ error: unknown;
610
+ } | {
611
+ data: ProwlarrApi.NotificationResource;
612
+ error: undefined;
613
+ }) & {
614
+ request: Request;
615
+ response: Response;
616
+ }>;
617
+ /**
618
+ * Add a new notification provider
619
+ */
620
+ addNotification(notification: NotificationResource): Promise<({
621
+ data: undefined;
622
+ error: unknown;
623
+ } | {
624
+ data: ProwlarrApi.NotificationResource;
625
+ error: undefined;
626
+ }) & {
627
+ request: Request;
628
+ response: Response;
629
+ }>;
630
+ /**
631
+ * Update an existing notification provider
632
+ */
633
+ updateNotification(id: number, notification: NotificationResource): Promise<({
634
+ data: undefined;
635
+ error: unknown;
636
+ } | {
637
+ data: ProwlarrApi.NotificationResource;
638
+ error: undefined;
639
+ }) & {
640
+ request: Request;
641
+ response: Response;
642
+ }>;
643
+ /**
644
+ * Delete a notification provider
645
+ */
646
+ deleteNotification(id: number): Promise<({
647
+ data: undefined;
648
+ error: unknown;
649
+ } | {
650
+ data: unknown;
651
+ error: undefined;
652
+ }) & {
653
+ request: Request;
654
+ response: Response;
655
+ }>;
656
+ /**
657
+ * Get notification schema for available notification types
658
+ */
659
+ getNotificationSchema(): Promise<({
660
+ data: undefined;
661
+ error: unknown;
662
+ } | {
663
+ data: ProwlarrApi.NotificationResource[];
664
+ error: undefined;
665
+ }) & {
666
+ request: Request;
667
+ response: Response;
668
+ }>;
669
+ /**
670
+ * Test a notification configuration
671
+ */
672
+ testNotification(notification: NotificationResource): Promise<({
673
+ data: undefined;
674
+ error: unknown;
675
+ } | {
676
+ data: unknown;
677
+ error: undefined;
678
+ }) & {
679
+ request: Request;
680
+ response: Response;
681
+ }>;
682
+ /**
683
+ * Test all notifications
684
+ */
685
+ testAllNotifications(): Promise<({
686
+ data: undefined;
687
+ error: unknown;
688
+ } | {
689
+ data: unknown;
690
+ error: undefined;
691
+ }) & {
692
+ request: Request;
693
+ response: Response;
694
+ }>;
136
695
  updateConfig(newConfig: Partial<ServarrClientConfig>): {
137
696
  baseUrl: string;
138
697
  apiKey: string;
@@ -1 +1 @@
1
- {"version":3,"file":"prowlarr.d.ts","sourceRoot":"","sources":["../../src/clients/prowlarr.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5D,OAAO,KAAK,WAAW,MAAM,gCAAgC,CAAC;AAC9D,OAAO,KAAK,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAE3F;;;;;;;;;;;;GAYG;AACH,qBAAa,cAAc;IACzB,OAAO,CAAC,YAAY,CAAyC;gBAEjD,MAAM,EAAE,mBAAmB;IAKjC,eAAe;;;;;;;;;;IAIf,SAAS;;;;;;;;;;IAMf;;OAEG;IACG,WAAW;;;;;;;;;;IAIX,UAAU,CAAC,EAAE,EAAE,MAAM;;;;;;;;;;IAIrB,UAAU,CAAC,OAAO,EAAE,eAAe;;;;;;;;;;IAInC,aAAa,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;IAIlD,aAAa,CAAC,EAAE,EAAE,MAAM;;;;;;;;;;IAM9B;;OAEG;IACG,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE;;;;;;;;;;IAU3C,eAAe;;;;;;;;;;IAKf,UAAU,CAAC,OAAO,EAAE,eAAe;;;;;;;;;;IAInC,WAAW;;;;;;;;;;IAIjB,YAAY,CAAC,SAAS,EAAE,OAAO,CAAC,mBAAmB,CAAC;;;;;;CAMrD"}
1
+ {"version":3,"file":"prowlarr.d.ts","sourceRoot":"","sources":["../../src/clients/prowlarr.ts"],"names":[],"mappings":"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"}