Skip to content

Commit 8d0678d

Browse files
authored
👽 re-generate opneapi models
1 parent 30d48c3 commit 8d0678d

File tree

4 files changed

+26
-18
lines changed

4 files changed

+26
-18
lines changed

githubkit/versions/ghec_v2022_11_28/rest/checks.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -822,8 +822,6 @@ def rerequest_run(
822822
823823
For more information about how to re-run GitHub Actions jobs, see "[Re-run a job from a workflow run](https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run)".
824824
825-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
826-
827825
See also: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run
828826
"""
829827

@@ -861,8 +859,6 @@ async def async_rerequest_run(
861859
862860
For more information about how to re-run GitHub Actions jobs, see "[Re-run a job from a workflow run](https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run)".
863861
864-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
865-
866862
See also: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run
867863
"""
868864

@@ -1354,8 +1350,6 @@ def rerequest_suite(
13541350
13551351
Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the [`check_suite` webhook](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads/#check_suite) event with the action `rerequested`. When a check suite is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.
13561352
1357-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
1358-
13591353
See also: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite
13601354
"""
13611355

@@ -1386,8 +1380,6 @@ async def async_rerequest_suite(
13861380
13871381
Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the [`check_suite` webhook](https://docs.github.com/enterprise-cloud@latest//webhooks/event-payloads/#check_suite) event with the action `rerequested`. When a check suite is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.
13881382
1389-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
1390-
13911383
See also: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite
13921384
"""
13931385

githubkit/versions/ghec_v2022_11_28/rest/dependabot.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from githubkit.utils import UNSET, exclude_unset
2121

2222
if TYPE_CHECKING:
23-
from typing import Literal
23+
from typing import Literal, Union
2424

2525
from githubkit import GitHubCore
2626
from githubkit.response import Response
@@ -79,6 +79,7 @@ def list_alerts_for_enterprise(
7979
ecosystem: Missing[str] = UNSET,
8080
package: Missing[str] = UNSET,
8181
epss_percentage: Missing[str] = UNSET,
82+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
8283
scope: Missing[Literal["development", "runtime"]] = UNSET,
8384
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
8485
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -120,6 +121,7 @@ def list_alerts_for_enterprise(
120121
"ecosystem": ecosystem,
121122
"package": package,
122123
"epss_percentage": epss_percentage,
124+
"has": has,
123125
"scope": scope,
124126
"sort": sort,
125127
"direction": direction,
@@ -154,6 +156,7 @@ async def async_list_alerts_for_enterprise(
154156
ecosystem: Missing[str] = UNSET,
155157
package: Missing[str] = UNSET,
156158
epss_percentage: Missing[str] = UNSET,
159+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
157160
scope: Missing[Literal["development", "runtime"]] = UNSET,
158161
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
159162
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -195,6 +198,7 @@ async def async_list_alerts_for_enterprise(
195198
"ecosystem": ecosystem,
196199
"package": package,
197200
"epss_percentage": epss_percentage,
201+
"has": has,
198202
"scope": scope,
199203
"sort": sort,
200204
"direction": direction,
@@ -229,6 +233,7 @@ def list_alerts_for_org(
229233
ecosystem: Missing[str] = UNSET,
230234
package: Missing[str] = UNSET,
231235
epss_percentage: Missing[str] = UNSET,
236+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
232237
scope: Missing[Literal["development", "runtime"]] = UNSET,
233238
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
234239
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -268,6 +273,7 @@ def list_alerts_for_org(
268273
"ecosystem": ecosystem,
269274
"package": package,
270275
"epss_percentage": epss_percentage,
276+
"has": has,
271277
"scope": scope,
272278
"sort": sort,
273279
"direction": direction,
@@ -303,6 +309,7 @@ async def async_list_alerts_for_org(
303309
ecosystem: Missing[str] = UNSET,
304310
package: Missing[str] = UNSET,
305311
epss_percentage: Missing[str] = UNSET,
312+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
306313
scope: Missing[Literal["development", "runtime"]] = UNSET,
307314
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
308315
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -342,6 +349,7 @@ async def async_list_alerts_for_org(
342349
"ecosystem": ecosystem,
343350
"package": package,
344351
"epss_percentage": epss_percentage,
352+
"has": has,
345353
"scope": scope,
346354
"sort": sort,
347355
"direction": direction,
@@ -1143,6 +1151,7 @@ def list_alerts_for_repo(
11431151
package: Missing[str] = UNSET,
11441152
manifest: Missing[str] = UNSET,
11451153
epss_percentage: Missing[str] = UNSET,
1154+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
11461155
scope: Missing[Literal["development", "runtime"]] = UNSET,
11471156
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
11481157
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -1174,6 +1183,7 @@ def list_alerts_for_repo(
11741183
"package": package,
11751184
"manifest": manifest,
11761185
"epss_percentage": epss_percentage,
1186+
"has": has,
11771187
"scope": scope,
11781188
"sort": sort,
11791189
"direction": direction,
@@ -1212,6 +1222,7 @@ async def async_list_alerts_for_repo(
12121222
package: Missing[str] = UNSET,
12131223
manifest: Missing[str] = UNSET,
12141224
epss_percentage: Missing[str] = UNSET,
1225+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
12151226
scope: Missing[Literal["development", "runtime"]] = UNSET,
12161227
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
12171228
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -1243,6 +1254,7 @@ async def async_list_alerts_for_repo(
12431254
"package": package,
12441255
"manifest": manifest,
12451256
"epss_percentage": epss_percentage,
1257+
"has": has,
12461258
"scope": scope,
12471259
"sort": sort,
12481260
"direction": direction,

githubkit/versions/v2022_11_28/rest/checks.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -822,8 +822,6 @@ def rerequest_run(
822822
823823
For more information about how to re-run GitHub Actions jobs, see "[Re-run a job from a workflow run](https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run)".
824824
825-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
826-
827825
See also: https://docs.github.com/rest/checks/runs#rerequest-a-check-run
828826
"""
829827

@@ -861,8 +859,6 @@ async def async_rerequest_run(
861859
862860
For more information about how to re-run GitHub Actions jobs, see "[Re-run a job from a workflow run](https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run)".
863861
864-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
865-
866862
See also: https://docs.github.com/rest/checks/runs#rerequest-a-check-run
867863
"""
868864

@@ -1354,8 +1350,6 @@ def rerequest_suite(
13541350
13551351
Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the [`check_suite` webhook](https://docs.github.com/webhooks/event-payloads/#check_suite) event with the action `rerequested`. When a check suite is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.
13561352
1357-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
1358-
13591353
See also: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite
13601354
"""
13611355

@@ -1386,8 +1380,6 @@ async def async_rerequest_suite(
13861380
13871381
Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the [`check_suite` webhook](https://docs.github.com/webhooks/event-payloads/#check_suite) event with the action `rerequested`. When a check suite is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.
13881382
1389-
OAuth apps and personal access tokens (classic) cannot use this endpoint.
1390-
13911383
See also: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite
13921384
"""
13931385

githubkit/versions/v2022_11_28/rest/dependabot.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from githubkit.utils import UNSET, exclude_unset
2121

2222
if TYPE_CHECKING:
23-
from typing import Literal
23+
from typing import Literal, Union
2424

2525
from githubkit import GitHubCore
2626
from githubkit.response import Response
@@ -79,6 +79,7 @@ def list_alerts_for_enterprise(
7979
ecosystem: Missing[str] = UNSET,
8080
package: Missing[str] = UNSET,
8181
epss_percentage: Missing[str] = UNSET,
82+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
8283
scope: Missing[Literal["development", "runtime"]] = UNSET,
8384
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
8485
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -120,6 +121,7 @@ def list_alerts_for_enterprise(
120121
"ecosystem": ecosystem,
121122
"package": package,
122123
"epss_percentage": epss_percentage,
124+
"has": has,
123125
"scope": scope,
124126
"sort": sort,
125127
"direction": direction,
@@ -154,6 +156,7 @@ async def async_list_alerts_for_enterprise(
154156
ecosystem: Missing[str] = UNSET,
155157
package: Missing[str] = UNSET,
156158
epss_percentage: Missing[str] = UNSET,
159+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
157160
scope: Missing[Literal["development", "runtime"]] = UNSET,
158161
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
159162
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -195,6 +198,7 @@ async def async_list_alerts_for_enterprise(
195198
"ecosystem": ecosystem,
196199
"package": package,
197200
"epss_percentage": epss_percentage,
201+
"has": has,
198202
"scope": scope,
199203
"sort": sort,
200204
"direction": direction,
@@ -229,6 +233,7 @@ def list_alerts_for_org(
229233
ecosystem: Missing[str] = UNSET,
230234
package: Missing[str] = UNSET,
231235
epss_percentage: Missing[str] = UNSET,
236+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
232237
scope: Missing[Literal["development", "runtime"]] = UNSET,
233238
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
234239
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -268,6 +273,7 @@ def list_alerts_for_org(
268273
"ecosystem": ecosystem,
269274
"package": package,
270275
"epss_percentage": epss_percentage,
276+
"has": has,
271277
"scope": scope,
272278
"sort": sort,
273279
"direction": direction,
@@ -303,6 +309,7 @@ async def async_list_alerts_for_org(
303309
ecosystem: Missing[str] = UNSET,
304310
package: Missing[str] = UNSET,
305311
epss_percentage: Missing[str] = UNSET,
312+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
306313
scope: Missing[Literal["development", "runtime"]] = UNSET,
307314
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
308315
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -342,6 +349,7 @@ async def async_list_alerts_for_org(
342349
"ecosystem": ecosystem,
343350
"package": package,
344351
"epss_percentage": epss_percentage,
352+
"has": has,
345353
"scope": scope,
346354
"sort": sort,
347355
"direction": direction,
@@ -1143,6 +1151,7 @@ def list_alerts_for_repo(
11431151
package: Missing[str] = UNSET,
11441152
manifest: Missing[str] = UNSET,
11451153
epss_percentage: Missing[str] = UNSET,
1154+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
11461155
scope: Missing[Literal["development", "runtime"]] = UNSET,
11471156
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
11481157
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -1174,6 +1183,7 @@ def list_alerts_for_repo(
11741183
"package": package,
11751184
"manifest": manifest,
11761185
"epss_percentage": epss_percentage,
1186+
"has": has,
11771187
"scope": scope,
11781188
"sort": sort,
11791189
"direction": direction,
@@ -1212,6 +1222,7 @@ async def async_list_alerts_for_repo(
12121222
package: Missing[str] = UNSET,
12131223
manifest: Missing[str] = UNSET,
12141224
epss_percentage: Missing[str] = UNSET,
1225+
has: Missing[Union[str, list[Literal["patch"]]]] = UNSET,
12151226
scope: Missing[Literal["development", "runtime"]] = UNSET,
12161227
sort: Missing[Literal["created", "updated", "epss_percentage"]] = UNSET,
12171228
direction: Missing[Literal["asc", "desc"]] = UNSET,
@@ -1243,6 +1254,7 @@ async def async_list_alerts_for_repo(
12431254
"package": package,
12441255
"manifest": manifest,
12451256
"epss_percentage": epss_percentage,
1257+
"has": has,
12461258
"scope": scope,
12471259
"sort": sort,
12481260
"direction": direction,

0 commit comments

Comments
 (0)