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
@@ -1849,6 +1849,13 @@ public struct Client: APIProtocol {
1849
1849
name: "after",
1850
1850
value: input.query.after
1851
1851
)
1852
+
try converter.setQueryItemAsURI(
1853
+
in: &request,
1854
+
style: .form,
1855
+
explode: true,
1856
+
name: "predicate_type",
1857
+
value: input.query.predicate_type
1858
+
)
1852
1859
converter.setAcceptHeader(
1853
1860
in: &request.headerFields,
1854
1861
contentTypes: input.headers.accept
@@ -2222,9 +2229,9 @@ public struct Client: APIProtocol {
2222
2229
}
2223
2230
)
2224
2231
}
2225
-
/// Check if automated security fixes are enabled for a repository
2232
+
/// Check if Dependabot security updates are enabled for a repository
2226
2233
///
2227
-
/// Shows whether automated security fixes are enabled, disabled or paused for a repository. The authenticated user must have admin read access to the repository. For more information, see "[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
2234
+
/// Shows whether Dependabot security updates are enabled, disabled or paused for a repository. The authenticated user must have admin read access to the repository. For more information, see "[Configuring Dependabot security updates](https://docs.github.com/articles/configuring-automated-security-fixes)".
/// - Remark: Generated from `#/paths//repos/{owner}/{repo}/automated-security-fixes/get(repos/check-automated-security-fixes)`.
@@ -2289,9 +2296,9 @@ public struct Client: APIProtocol {
2289
2296
}
2290
2297
)
2291
2298
}
2292
-
/// Enable automated security fixes
2299
+
/// Enable Dependabot security updates
2293
2300
///
2294
-
/// Enables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see "[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
2301
+
/// Enables Dependabot security updates for a repository. The authenticated user must have admin access to the repository. For more information, see "[Configuring Dependabot security updates](https://docs.github.com/articles/configuring-automated-security-fixes)".
/// - Remark: Generated from `#/paths//repos/{owner}/{repo}/automated-security-fixes/put(repos/enable-automated-security-fixes)`.
@@ -2330,9 +2337,9 @@ public struct Client: APIProtocol {
2330
2337
}
2331
2338
)
2332
2339
}
2333
-
/// Disable automated security fixes
2340
+
/// Disable Dependabot security updates
2334
2341
///
2335
-
/// Disables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see "[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
2342
+
/// Disables Dependabot security updates for a repository. The authenticated user must have admin access to the repository. For more information, see "[Configuring Dependabot security updates](https://docs.github.com/articles/configuring-automated-security-fixes)".
/// - Remark: Generated from `#/paths//repos/{owner}/{repo}/automated-security-fixes/delete(repos/disable-automated-security-fixes)`.
@@ -6195,8 +6202,8 @@ public struct Client: APIProtocol {
6195
6202
/// To use this endpoint, the authenticated user must either be an administrator of the repository or target themselves for removal.
6196
6203
///
6197
6204
/// This endpoint also:
6198
-
/// - Cancels any outstanding invitations
6199
-
/// - Unasigns the user from any issues
6205
+
/// - Cancels any outstanding invitations sent by the collaborator
6206
+
/// - Unassigns the user from any issues
6200
6207
/// - Removes access to organization projects if the user is not an organization member and is not a collaborator on any other organization repositories.
6201
6208
/// - Unstars the repository
6202
6209
/// - Updates access permissions to packages
@@ -7353,7 +7360,7 @@ public struct Client: APIProtocol {
7353
7360
}
7354
7361
/// List pull requests associated with a commit
7355
7362
///
7356
-
/// Lists the merged pull request that introduced the commit to the repository. If the commit is not present in the default branch, will only return open pull requests associated with the commit.
7363
+
/// Lists the merged pull request that introduced the commit to the repository. If the commit is not present in the default branch, it will return merged and open pull requests associated with the commit.
7357
7364
///
7358
7365
/// To list the open or merged pull requests associated with a branch, you can set the `commit_sha` parameter to the branch name.
7359
7366
///
@@ -10428,7 +10435,7 @@ public struct Client: APIProtocol {
10428
10435
///
10429
10436
/// The authenticated user must have admin or owner permissions to the repository to use this endpoint.
10430
10437
///
10431
-
/// For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).
10438
+
/// For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).
10432
10439
///
10433
10440
/// OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.
10434
10441
///
@@ -16957,6 +16964,241 @@ public struct Client: APIProtocol {
0 commit comments