octocrate 2.2.0

A comprehensive GitHub REST API library based on Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
use octocrate_core::*;
#[allow(unused_imports)]
use octocrate_types::*;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use typed_builder::TypedBuilder;

pub mod list_docker_migration_conflicting_packages_for_organization {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Package>;
}

pub mod list_packages_for_organization {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Package>;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry (`ghcr.io`) have the type `container`. You can use the type `docker` to find images that were pushed to GitHub's Docker registry (`docker.pkg.github.com`), even if these have now been migrated to the Container registry.
    pub package_type: PackageType,
    /// The selected visibility of the packages.  This parameter is optional and only filters an existing result set.
    ///
    /// The `internal` visibility is only supported for GitHub Packages registries that allow for granular permissions. For other ecosystems `internal` is synonymous with `private`.
    /// For the list of GitHub Packages registries that support granular permissions, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub visibility: Option<parameters::PackageVisibility>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
  }
}

pub mod get_package_for_organization {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Package;
}

pub mod restore_package_for_org {
  #[allow(unused_imports)]
  use super::*;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// package token
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub token: Option<String>,
  }
}

pub mod get_all_package_versions_for_package_owned_by_org {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<PackageVersion>;

  #[allow(clippy::large_enum_variant)]
  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum QueryState {
    #[serde(rename = "active")]
    Active,
    #[serde(rename = "deleted")]
    Deleted,
  }

  impl std::fmt::Display for QueryState {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
      match self {
        QueryState::Active => write!(f, "active"),
        QueryState::Deleted => write!(f, "deleted"),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The state of the package, either active or deleted.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub state: Option<QueryState>,
  }
}

pub mod get_package_version_for_organization {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = PackageVersion;
}

pub mod list_docker_migration_conflicting_packages_for_authenticated_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Package>;
}

pub mod list_packages_for_authenticated_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Package>;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry (`ghcr.io`) have the type `container`. You can use the type `docker` to find images that were pushed to GitHub's Docker registry (`docker.pkg.github.com`), even if these have now been migrated to the Container registry.
    pub package_type: PackageType,
    /// The selected visibility of the packages.  This parameter is optional and only filters an existing result set.
    ///
    /// The `internal` visibility is only supported for GitHub Packages registries that allow for granular permissions. For other ecosystems `internal` is synonymous with `private`.
    /// For the list of GitHub Packages registries that support granular permissions, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub visibility: Option<parameters::PackageVisibility>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
  }
}

pub mod get_package_for_authenticated_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Package;
}

pub mod restore_package_for_authenticated_user {
  #[allow(unused_imports)]
  use super::*;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// package token
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub token: Option<String>,
  }
}

pub mod get_all_package_versions_for_package_owned_by_authenticated_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<PackageVersion>;

  #[allow(clippy::large_enum_variant)]
  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum QueryState {
    #[serde(rename = "active")]
    Active,
    #[serde(rename = "deleted")]
    Deleted,
  }

  impl std::fmt::Display for QueryState {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
      match self {
        QueryState::Active => write!(f, "active"),
        QueryState::Deleted => write!(f, "deleted"),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The state of the package, either active or deleted.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub state: Option<QueryState>,
  }
}

pub mod get_package_version_for_authenticated_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = PackageVersion;
}

pub mod list_docker_migration_conflicting_packages_for_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Package>;
}

pub mod list_packages_for_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Package>;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry (`ghcr.io`) have the type `container`. You can use the type `docker` to find images that were pushed to GitHub's Docker registry (`docker.pkg.github.com`), even if these have now been migrated to the Container registry.
    pub package_type: PackageType,
    /// The selected visibility of the packages.  This parameter is optional and only filters an existing result set.
    ///
    /// The `internal` visibility is only supported for GitHub Packages registries that allow for granular permissions. For other ecosystems `internal` is synonymous with `private`.
    /// For the list of GitHub Packages registries that support granular permissions, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub visibility: Option<parameters::PackageVisibility>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
  }
}

pub mod get_package_for_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Package;
}

pub mod restore_package_for_user {
  #[allow(unused_imports)]
  use super::*;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// package token
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub token: Option<String>,
  }
}

pub mod get_all_package_versions_for_package_owned_by_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<PackageVersion>;
}

pub mod get_package_version_for_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = PackageVersion;
}

/// Manage packages for authenticated users and organizations.
pub struct GitHubPackagesAPI {
  config: SharedAPIConfig,
}

impl GitHubPackagesAPI {
  pub fn new(config: &SharedAPIConfig) -> Self {
    Self {
      config: config.clone(),
    }
  }

  /// **Get list of conflicting packages during Docker migration for organization**
  ///
  /// Lists all packages that are in a specific organization, are readable by the requesting user, and that encountered a conflict during a Docker migration.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint.
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization](https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization)
  pub fn list_docker_migration_conflicting_packages_for_organization(
    &self,
    org: impl Into<String>,
  ) -> Request<(), (), list_docker_migration_conflicting_packages_for_organization::Response> {
    let org = org.into();
    let url = format!("/orgs/{org}/docker/conflicts");

    Request::<(), (), list_docker_migration_conflicting_packages_for_organization::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **List packages for an organization**
  ///
  /// Lists packages in an organization readable by the user.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#list-packages-for-an-organization](https://docs.github.com/rest/packages/packages#list-packages-for-an-organization)
  pub fn list_packages_for_organization(
    &self,
    org: impl Into<String>,
  ) -> Request<(), list_packages_for_organization::Query, list_packages_for_organization::Response>
  {
    let org = org.into();
    let url = format!("/orgs/{org}/packages");

    Request::<(), list_packages_for_organization::Query, list_packages_for_organization::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Get a package for an organization**
  ///
  /// Gets a specific package in an organization.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization](https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization)
  pub fn get_package_for_organization(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    org: impl Into<String>,
  ) -> Request<(), (), get_package_for_organization::Response> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let org = org.into();
    let url = format!("/orgs/{org}/packages/{package_type}/{package_name}");

    Request::<(), (), get_package_for_organization::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Delete a package for an organization**
  ///
  /// Deletes an entire package in an organization. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
  ///
  /// The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization](https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization)
  pub fn delete_package_for_org(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    org: impl Into<String>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let org = org.into();
    let url = format!("/orgs/{org}/packages/{package_type}/{package_name}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Restore a package for an organization**
  ///
  /// Restores an entire package in an organization.
  ///
  /// You can restore a deleted package under the following conditions:
  ///   - The package was deleted within the last 30 days.
  ///   - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
  ///
  /// The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization](https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization)
  pub fn restore_package_for_org(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    org: impl Into<String>,
  ) -> NoContentRequest<(), restore_package_for_org::Query> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let org = org.into();
    let url = format!("/orgs/{org}/packages/{package_type}/{package_name}/restore");

    NoContentRequest::<(), restore_package_for_org::Query>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **List package versions for a package owned by an organization**
  ///
  /// Lists package versions for a package owned by an organization.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint if the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization](https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization)
  pub fn get_all_package_versions_for_package_owned_by_org(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    org: impl Into<String>,
  ) -> Request<
    (),
    get_all_package_versions_for_package_owned_by_org::Query,
    get_all_package_versions_for_package_owned_by_org::Response,
  > {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let org = org.into();
    let url = format!("/orgs/{org}/packages/{package_type}/{package_name}/versions");

    Request::<
      (),
      get_all_package_versions_for_package_owned_by_org::Query,
      get_all_package_versions_for_package_owned_by_org::Response,
    >::builder(&self.config)
    .get(url)
    .build()
  }

  /// **Get a package version for an organization**
  ///
  /// Gets a specific package version in an organization.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization](https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization)
  pub fn get_package_version_for_organization(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    org: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> Request<(), (), get_package_version_for_organization::Response> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let org = org.into();
    let package_version_id = package_version_id.into();
    let url =
      format!("/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}");

    Request::<(), (), get_package_version_for_organization::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Delete package version for an organization**
  ///
  /// Deletes a specific package version in an organization. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
  ///
  /// The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization](https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization)
  pub fn delete_package_version_for_org(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    org: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let org = org.into();
    let package_version_id = package_version_id.into();
    let url =
      format!("/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Restore package version for an organization**
  ///
  /// Restores a specific package version in an organization.
  ///
  /// You can restore a deleted package under the following conditions:
  ///   - The package was deleted within the last 30 days.
  ///   - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
  ///
  /// The authenticated user must have admin permissions in the organization to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must also have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization](https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization)
  pub fn restore_package_version_for_org(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    org: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let org = org.into();
    let package_version_id = package_version_id.into();
    let url = format!(
      "/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore"
    );

    NoContentRequest::<(), ()>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **Get list of conflicting packages during Docker migration for authenticated-user**
  ///
  /// Lists all packages that are owned by the authenticated user within the user's namespace, and that encountered a conflict during a Docker migration.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint.
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-authenticated-user](https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-authenticated-user)
  pub fn list_docker_migration_conflicting_packages_for_authenticated_user(
    &self,
  ) -> Request<(), (), list_docker_migration_conflicting_packages_for_authenticated_user::Response>
  {
    let url = format!("/user/docker/conflicts");

    Request::<(), (), list_docker_migration_conflicting_packages_for_authenticated_user::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **List packages for the authenticated user's namespace**
  ///
  /// Lists packages owned by the authenticated user within the user's namespace.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#list-packages-for-the-authenticated-users-namespace](https://docs.github.com/rest/packages/packages#list-packages-for-the-authenticated-users-namespace)
  pub fn list_packages_for_authenticated_user(
    &self,
  ) -> Request<
    (),
    list_packages_for_authenticated_user::Query,
    list_packages_for_authenticated_user::Response,
  > {
    let url = format!("/user/packages");

    Request::<
      (),
      list_packages_for_authenticated_user::Query,
      list_packages_for_authenticated_user::Response,
    >::builder(&self.config)
    .get(url)
    .build()
  }

  /// **Get a package for the authenticated user**
  ///
  /// Gets a specific package for a package owned by the authenticated user.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user](https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user)
  pub fn get_package_for_authenticated_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
  ) -> Request<(), (), get_package_for_authenticated_user::Response> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let url = format!("/user/packages/{package_type}/{package_name}");

    Request::<(), (), get_package_for_authenticated_user::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Delete a package for the authenticated user**
  ///
  /// Deletes a package owned by the authenticated user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, `repo` scope is also required. For the list these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user](https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user)
  pub fn delete_package_for_authenticated_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let url = format!("/user/packages/{package_type}/{package_name}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Restore a package for the authenticated user**
  ///
  /// Restores a package owned by the authenticated user.
  ///
  /// You can restore a deleted package under the following conditions:
  ///   - The package was deleted within the last 30 days.
  ///   - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user](https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user)
  pub fn restore_package_for_authenticated_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
  ) -> NoContentRequest<(), restore_package_for_authenticated_user::Query> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let url = format!("/user/packages/{package_type}/{package_name}/restore");

    NoContentRequest::<(), restore_package_for_authenticated_user::Query>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **List package versions for a package owned by the authenticated user**
  ///
  /// Lists package versions for a package owned by the authenticated user.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user](https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user)
  pub fn get_all_package_versions_for_package_owned_by_authenticated_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
  ) -> Request<
    (),
    get_all_package_versions_for_package_owned_by_authenticated_user::Query,
    get_all_package_versions_for_package_owned_by_authenticated_user::Response,
  > {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let url = format!("/user/packages/{package_type}/{package_name}/versions");

    Request::<
      (),
      get_all_package_versions_for_package_owned_by_authenticated_user::Query,
      get_all_package_versions_for_package_owned_by_authenticated_user::Response,
    >::builder(&self.config)
    .get(url)
    .build()
  }

  /// **Get a package version for the authenticated user**
  ///
  /// Gets a specific package version for a package owned by the authenticated user.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user](https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user)
  pub fn get_package_version_for_authenticated_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> Request<(), (), get_package_version_for_authenticated_user::Response> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let package_version_id = package_version_id.into();
    let url = format!("/user/packages/{package_type}/{package_name}/versions/{package_version_id}");

    Request::<(), (), get_package_version_for_authenticated_user::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Delete a package version for the authenticated user**
  ///
  /// Deletes a specific package version for a package owned by the authenticated user.  If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
  ///
  /// The authenticated user must have admin permissions in the organization to use this endpoint.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user](https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user)
  pub fn delete_package_version_for_authenticated_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let package_version_id = package_version_id.into();
    let url = format!("/user/packages/{package_type}/{package_name}/versions/{package_version_id}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Restore a package version for the authenticated user**
  ///
  /// Restores a package version owned by the authenticated user.
  ///
  /// You can restore a deleted package version under the following conditions:
  ///   - The package was deleted within the last 30 days.
  ///   - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user](https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user)
  pub fn restore_package_version_for_authenticated_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let package_version_id = package_version_id.into();
    let url =
      format!("/user/packages/{package_type}/{package_name}/versions/{package_version_id}/restore");

    NoContentRequest::<(), ()>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **Get list of conflicting packages during Docker migration for user**
  ///
  /// Lists all packages that are in a specific user's namespace, that the requesting user has access to, and that encountered a conflict during Docker migration.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint.
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user](https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user)
  pub fn list_docker_migration_conflicting_packages_for_user(
    &self,
    username: impl Into<String>,
  ) -> Request<(), (), list_docker_migration_conflicting_packages_for_user::Response> {
    let username = username.into();
    let url = format!("/users/{username}/docker/conflicts");

    Request::<(), (), list_docker_migration_conflicting_packages_for_user::Response>::builder(
      &self.config,
    )
    .get(url)
    .build()
  }

  /// **List packages for a user**
  ///
  /// Lists all packages in a user's namespace for which the requesting user has access.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#list-packages-for-a-user](https://docs.github.com/rest/packages/packages#list-packages-for-a-user)
  pub fn list_packages_for_user(
    &self,
    username: impl Into<String>,
  ) -> Request<(), list_packages_for_user::Query, list_packages_for_user::Response> {
    let username = username.into();
    let url = format!("/users/{username}/packages");

    Request::<(), list_packages_for_user::Query, list_packages_for_user::Response>::builder(
      &self.config,
    )
    .get(url)
    .build()
  }

  /// **Get a package for a user**
  ///
  /// Gets a specific package metadata for a public package owned by a user.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-a-package-for-a-user](https://docs.github.com/rest/packages/packages#get-a-package-for-a-user)
  pub fn get_package_for_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    username: impl Into<String>,
  ) -> Request<(), (), get_package_for_user::Response> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let username = username.into();
    let url = format!("/users/{username}/packages/{package_type}/{package_name}");

    Request::<(), (), get_package_for_user::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Delete a package for a user**
  ///
  /// Deletes an entire package for a user. You cannot delete a public package if any version of the package has more than 5,000 downloads. In this scenario, contact GitHub support for further assistance.
  ///
  /// If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user](https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user)
  pub fn delete_package_for_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    username: impl Into<String>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let username = username.into();
    let url = format!("/users/{username}/packages/{package_type}/{package_name}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Restore a package for a user**
  ///
  /// Restores an entire package for a user.
  ///
  /// You can restore a deleted package under the following conditions:
  ///   - The package was deleted within the last 30 days.
  ///   - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
  ///
  /// If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user](https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user)
  pub fn restore_package_for_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    username: impl Into<String>,
  ) -> NoContentRequest<(), restore_package_for_user::Query> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let username = username.into();
    let url = format!("/users/{username}/packages/{package_type}/{package_name}/restore");

    NoContentRequest::<(), restore_package_for_user::Query>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **List package versions for a package owned by a user**
  ///
  /// Lists package versions for a public package owned by a specified user.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user](https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user)
  pub fn get_all_package_versions_for_package_owned_by_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    username: impl Into<String>,
  ) -> Request<(), (), get_all_package_versions_for_package_owned_by_user::Response> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let username = username.into();
    let url = format!("/users/{username}/packages/{package_type}/{package_name}/versions");

    Request::<(), (), get_all_package_versions_for_package_owned_by_user::Response>::builder(
      &self.config,
    )
    .get(url)
    .build()
  }

  /// **Get a package version for a user**
  ///
  /// Gets a specific package version for a public package owned by a specified user.
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user](https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user)
  pub fn get_package_version_for_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    package_version_id: impl Into<i64>,
    username: impl Into<String>,
  ) -> Request<(), (), get_package_version_for_user::Response> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let package_version_id = package_version_id.into();
    let username = username.into();
    let url = format!(
      "/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}"
    );

    Request::<(), (), get_package_version_for_user::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Delete package version for a user**
  ///
  /// Deletes a specific package version for a user. If the package is public and the package version has more than 5,000 downloads, you cannot delete the package version. In this scenario, contact GitHub support for further assistance.
  ///
  /// If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `delete:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user](https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user)
  pub fn delete_package_version_for_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    username: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let username = username.into();
    let package_version_id = package_version_id.into();
    let url = format!(
      "/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}"
    );

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Restore package version for a user**
  ///
  /// Restores a specific package version for a user.
  ///
  /// You can restore a deleted package under the following conditions:
  ///   - The package was deleted within the last 30 days.
  ///   - The same package namespace and version is still available and not reused for a new package. If the same package namespace is not available, you will not be able to restore your package. In this scenario, to restore the deleted package, you must delete the new package that uses the deleted package's namespace first.
  ///
  /// If the `package_type` belongs to a GitHub Packages registry that supports granular permissions, the authenticated user must have admin permissions to the package. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#granular-permissions-for-userorganization-scoped-packages)."
  ///
  /// OAuth app tokens and personal access tokens (classic) need the `read:packages` and `write:packages` scopes to use this endpoint. If the `package_type` belongs to a GitHub Packages registry that only supports repository-scoped permissions, the `repo` scope is also required. For the list of these registries, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
  ///
  /// *Documentation*: [https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user](https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user)
  pub fn restore_package_version_for_user(
    &self,
    package_type: impl Into<PackageType>,
    package_name: impl Into<String>,
    username: impl Into<String>,
    package_version_id: impl Into<i64>,
  ) -> NoContentRequest<(), ()> {
    let package_type = package_type.into();
    let package_name = package_name.into();
    let username = username.into();
    let package_version_id = package_version_id.into();
    let url = format!("/users/{username}/packages/{package_type}/{package_name}/versions/{package_version_id}/restore");

    NoContentRequest::<(), ()>::builder(&self.config)
      .post(url)
      .build()
  }
}