You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration/url`.
465
+
publicvarurl:Swift.String?
462
466
/// The username to use when authenticating with the private registry.
463
467
///
464
468
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration/username`.
465
469
publicvarusername:Swift.String?
470
+
/// Whether this private registry replaces the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When `true`, Dependabot will only use this registry and will not fall back to the public registry. When `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
471
+
///
472
+
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration/replaces_base`.
473
+
publicvarreplacesBase:Swift.Bool?
466
474
/// Which type of organization repositories have access to the private registry.
467
475
///
468
476
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration/visibility`.
@@ -484,29 +492,37 @@ public enum Components {
484
492
/// - Parameters:
485
493
/// - name: The name of the private registry configuration.
486
494
/// - registryType: The registry type.
495
+
/// - url: The URL of the private registry.
487
496
/// - username: The username to use when authenticating with the private registry.
497
+
/// - replacesBase: Whether this private registry replaces the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When `true`, Dependabot will only use this registry and will not fall back to the public registry. When `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
488
498
/// - visibility: Which type of organization repositories have access to the private registry.
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration-with-selected-repositories/url`.
566
+
publicvarurl:Swift.String?
547
567
/// The username to use when authenticating with the private registry.
548
568
///
549
569
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration-with-selected-repositories/username`.
550
570
publicvarusername:Swift.String?
571
+
/// Whether this private registry replaces the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When `true`, Dependabot will only use this registry and will not fall back to the public registry. When `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
572
+
///
573
+
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration-with-selected-repositories/replaces_base`.
574
+
publicvarreplacesBase:Swift.Bool?
551
575
/// Which type of organization repositories have access to the private registry. `selected` means only the repositories specified by `selected_repository_ids` can access the private registry.
552
576
///
553
577
/// - Remark: Generated from `#/components/schemas/org-private-registry-configuration-with-selected-repositories/visibility`.
@@ -573,23 +597,29 @@ public enum Components {
573
597
/// - Parameters:
574
598
/// - name: The name of the private registry configuration.
575
599
/// - registryType: The registry type.
600
+
/// - url: The URL of the private registry.
576
601
/// - username: The username to use when authenticating with the private registry.
602
+
/// - replacesBase: Whether this private registry replaces the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When `true`, Dependabot will only use this registry and will not fall back to the public registry. When `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
577
603
/// - visibility: Which type of organization repositories have access to the private registry. `selected` means only the repositories specified by `selected_repository_ids` can access the private registry.
578
604
/// - selectedRepositoryIds: An array of repository IDs that can access the organization private registry when `visibility` is set to `selected`.
case selectedRepositoryIds ="selected_repository_ids"
604
636
case createdAt ="created_at"
@@ -1079,6 +1111,10 @@ public enum Operations {
1079
1111
///
1080
1112
/// - Remark: Generated from `#/paths/orgs/{org}/private-registries/POST/requestBody/json/username`.
1081
1113
publicvarusername:Swift.String?
1114
+
/// Whether this private registry should replace the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When set to `true`, Dependabot will only use this registry and will not fall back to the public registry. When set to `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
1115
+
///
1116
+
/// - Remark: Generated from `#/paths/orgs/{org}/private-registries/POST/requestBody/json/replaces_base`.
1117
+
publicvarreplacesBase:Swift.Bool?
1082
1118
/// The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.
1083
1119
///
1084
1120
/// - Remark: Generated from `#/paths/orgs/{org}/private-registries/POST/requestBody/json/encrypted_value`.
@@ -1109,6 +1145,7 @@ public enum Operations {
1109
1145
/// - registryType: The registry type.
1110
1146
/// - url: The URL of the private registry.
1111
1147
/// - username: The username to use when authenticating with the private registry. This field should be omitted if the private registry does not require a username for authentication.
1148
+
/// - replacesBase: Whether this private registry should replace the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When set to `true`, Dependabot will only use this registry and will not fall back to the public registry. When set to `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
1112
1149
/// - encryptedValue: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.
1113
1150
/// - keyId: The ID of the key you used to encrypt the secret.
1114
1151
/// - visibility: Which type of organization repositories have access to the private registry. `selected` means only the repositories specified by `selected_repository_ids` can access the private registry.
/// - Remark: Generated from `#/paths/orgs/{org}/private-registries/{secret_name}/PATCH/requestBody/json/username`.
1746
1786
publicvarusername:Swift.String?
1787
+
/// Whether this private registry should replace the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When set to `true`, Dependabot will only use this registry and will not fall back to the public registry. When set to `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
1788
+
///
1789
+
/// - Remark: Generated from `#/paths/orgs/{org}/private-registries/{secret_name}/PATCH/requestBody/json/replaces_base`.
1790
+
publicvarreplacesBase:Swift.Bool?
1747
1791
/// The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.
1748
1792
///
1749
1793
/// - Remark: Generated from `#/paths/orgs/{org}/private-registries/{secret_name}/PATCH/requestBody/json/encrypted_value`.
@@ -1774,6 +1818,7 @@ public enum Operations {
1774
1818
/// - registryType: The registry type.
1775
1819
/// - url: The URL of the private registry.
1776
1820
/// - username: The username to use when authenticating with the private registry. This field should be omitted if the private registry does not require a username for authentication.
1821
+
/// - replacesBase: Whether this private registry should replace the base registry (e.g., npmjs.org for npm, rubygems.org for rubygems). When set to `true`, Dependabot will only use this registry and will not fall back to the public registry. When set to `false` (default), Dependabot will use this registry for scoped packages but may fall back to the public registry for other packages.
1777
1822
/// - encryptedValue: The value for your secret, encrypted with [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages) using the public key retrieved from the [Get private registries public key for an organization](https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization) endpoint.
1778
1823
/// - keyId: The ID of the key you used to encrypt the secret.
1779
1824
/// - visibility: Which type of organization repositories have access to the private registry. `selected` means only the repositories specified by `selected_repository_ids` can access the private registry.
0 commit comments