GitHubKit 0.11.12__py3-none-any.whl → 0.11.13__py3-none-any.whl
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.
Potentially problematic release.
This version of GitHubKit might be problematic. Click here for more details.
- githubkit/versions/ghec_v2022_11_28/models/group_0051.py +5 -1
- githubkit/versions/ghec_v2022_11_28/models/group_0098.py +4 -0
- githubkit/versions/ghec_v2022_11_28/models/group_1010.py +3 -1
- githubkit/versions/ghec_v2022_11_28/rest/checks.py +13 -16
- githubkit/versions/ghec_v2022_11_28/rest/repos.py +15 -34
- githubkit/versions/ghec_v2022_11_28/types/group_0051.py +2 -1
- githubkit/versions/ghec_v2022_11_28/types/group_0098.py +1 -0
- githubkit/versions/ghec_v2022_11_28/types/group_1010.py +3 -1
- githubkit/versions/v2022_11_28/models/group_0030.py +5 -1
- githubkit/versions/v2022_11_28/models/group_0082.py +4 -0
- githubkit/versions/v2022_11_28/models/group_0936.py +3 -1
- githubkit/versions/v2022_11_28/rest/checks.py +13 -16
- githubkit/versions/v2022_11_28/rest/repos.py +15 -34
- githubkit/versions/v2022_11_28/types/group_0030.py +2 -1
- githubkit/versions/v2022_11_28/types/group_0082.py +1 -0
- githubkit/versions/v2022_11_28/types/group_0936.py +3 -1
- {githubkit-0.11.12.dist-info → githubkit-0.11.13.dist-info}/METADATA +2 -2
- {githubkit-0.11.12.dist-info → githubkit-0.11.13.dist-info}/RECORD +20 -20
- {githubkit-0.11.12.dist-info → githubkit-0.11.13.dist-info}/LICENSE +0 -0
- {githubkit-0.11.12.dist-info → githubkit-0.11.13.dist-info}/WHEEL +0 -0
|
@@ -9,7 +9,7 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
9
9
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
|
-
from typing import Union
|
|
12
|
+
from typing import Union, Literal
|
|
13
13
|
from datetime import date, datetime
|
|
14
14
|
|
|
15
15
|
from pydantic import Field
|
|
@@ -55,6 +55,10 @@ class CopilotSeatDetails(GitHubModel):
|
|
|
55
55
|
default=UNSET,
|
|
56
56
|
description="Timestamp of when the assignee's GitHub Copilot access was last updated, in ISO 8601 format.",
|
|
57
57
|
)
|
|
58
|
+
plan_type: Missing[Literal["business", "enterprise", "unknown"]] = Field(
|
|
59
|
+
default=UNSET,
|
|
60
|
+
description="The Copilot plan of the organization, or the parent enterprise, when applicable.",
|
|
61
|
+
)
|
|
58
62
|
|
|
59
63
|
|
|
60
64
|
class EnterpriseTeam(GitHubModel):
|
|
@@ -49,6 +49,10 @@ class CopilotOrganizationDetails(ExtraGitHubModel):
|
|
|
49
49
|
seat_management_setting: Literal[
|
|
50
50
|
"assign_all", "assign_selected", "disabled", "unconfigured"
|
|
51
51
|
] = Field(description="The mode of assigning new seats.")
|
|
52
|
+
plan_type: Missing[Literal["business", "enterprise", "unknown"]] = Field(
|
|
53
|
+
default=UNSET,
|
|
54
|
+
description="The Copilot plan of the organization, or the parent enterprise, when applicable.",
|
|
55
|
+
)
|
|
52
56
|
|
|
53
57
|
|
|
54
58
|
class CopilotSeatBreakdown(GitHubModel):
|
|
@@ -38,7 +38,9 @@ class ReposOwnerRepoCheckRunsPostBodyOneof1(ExtraGitHubModel):
|
|
|
38
38
|
external_id: Missing[str] = Field(
|
|
39
39
|
default=UNSET, description="A reference for the run on the integrator's system."
|
|
40
40
|
)
|
|
41
|
-
status: Missing[
|
|
41
|
+
status: Missing[
|
|
42
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
43
|
+
] = Field(default=UNSET)
|
|
42
44
|
started_at: Missing[datetime] = Field(
|
|
43
45
|
default=UNSET,
|
|
44
46
|
description="The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.",
|
|
@@ -10,10 +10,9 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
12
|
from weakref import ref
|
|
13
|
-
from typing_extensions import Annotated
|
|
14
13
|
from typing import TYPE_CHECKING, Dict, Literal, Optional, overload
|
|
15
14
|
|
|
16
|
-
from pydantic import
|
|
15
|
+
from pydantic import BaseModel
|
|
17
16
|
|
|
18
17
|
from githubkit.typing import Missing, UnsetType
|
|
19
18
|
from githubkit.utils import UNSET, exclude_unset
|
|
@@ -124,7 +123,9 @@ class ChecksClient:
|
|
|
124
123
|
head_sha: str,
|
|
125
124
|
details_url: Missing[str] = UNSET,
|
|
126
125
|
external_id: Missing[str] = UNSET,
|
|
127
|
-
status: Missing[
|
|
126
|
+
status: Missing[
|
|
127
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
128
|
+
] = UNSET,
|
|
128
129
|
started_at: Missing[datetime] = UNSET,
|
|
129
130
|
conclusion: Missing[
|
|
130
131
|
Literal[
|
|
@@ -178,12 +179,9 @@ class ChecksClient:
|
|
|
178
179
|
|
|
179
180
|
json = kwargs if data is UNSET else data
|
|
180
181
|
json = type_validate_python(
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
185
|
-
],
|
|
186
|
-
Field(discriminator="status"),
|
|
182
|
+
Union[
|
|
183
|
+
ReposOwnerRepoCheckRunsPostBodyOneof0,
|
|
184
|
+
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
187
185
|
],
|
|
188
186
|
json,
|
|
189
187
|
)
|
|
@@ -253,7 +251,9 @@ class ChecksClient:
|
|
|
253
251
|
head_sha: str,
|
|
254
252
|
details_url: Missing[str] = UNSET,
|
|
255
253
|
external_id: Missing[str] = UNSET,
|
|
256
|
-
status: Missing[
|
|
254
|
+
status: Missing[
|
|
255
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
256
|
+
] = UNSET,
|
|
257
257
|
started_at: Missing[datetime] = UNSET,
|
|
258
258
|
conclusion: Missing[
|
|
259
259
|
Literal[
|
|
@@ -307,12 +307,9 @@ class ChecksClient:
|
|
|
307
307
|
|
|
308
308
|
json = kwargs if data is UNSET else data
|
|
309
309
|
json = type_validate_python(
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
314
|
-
],
|
|
315
|
-
Field(discriminator="status"),
|
|
310
|
+
Union[
|
|
311
|
+
ReposOwnerRepoCheckRunsPostBodyOneof0,
|
|
312
|
+
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
316
313
|
],
|
|
317
314
|
json,
|
|
318
315
|
)
|
|
@@ -10,10 +10,9 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
12
|
from weakref import ref
|
|
13
|
-
from typing_extensions import Annotated
|
|
14
13
|
from typing import TYPE_CHECKING, Dict, Literal, Optional, overload
|
|
15
14
|
|
|
16
|
-
from pydantic import
|
|
15
|
+
from pydantic import BaseModel
|
|
17
16
|
|
|
18
17
|
from githubkit.typing import Missing, UnsetType
|
|
19
18
|
from githubkit.utils import UNSET, exclude_unset
|
|
@@ -7142,14 +7141,8 @@ class ReposClient:
|
|
|
7142
7141
|
*,
|
|
7143
7142
|
headers: Optional[Dict[str, str]] = None,
|
|
7144
7143
|
) -> Response[
|
|
7145
|
-
|
|
7146
|
-
|
|
7147
|
-
List[ContentDirectoryItems],
|
|
7148
|
-
ContentFile,
|
|
7149
|
-
ContentSymlink,
|
|
7150
|
-
ContentSubmodule,
|
|
7151
|
-
],
|
|
7152
|
-
Field(discriminator="type"),
|
|
7144
|
+
Union[
|
|
7145
|
+
List[ContentDirectoryItems], ContentFile, ContentSymlink, ContentSubmodule
|
|
7153
7146
|
]
|
|
7154
7147
|
]:
|
|
7155
7148
|
"""See also: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content"""
|
|
@@ -7177,14 +7170,11 @@ class ReposClient:
|
|
|
7177
7170
|
url,
|
|
7178
7171
|
params=exclude_unset(params),
|
|
7179
7172
|
headers=exclude_unset(headers),
|
|
7180
|
-
response_model=
|
|
7181
|
-
|
|
7182
|
-
|
|
7183
|
-
|
|
7184
|
-
|
|
7185
|
-
ContentSubmodule,
|
|
7186
|
-
],
|
|
7187
|
-
Field(discriminator="type"),
|
|
7173
|
+
response_model=Union[
|
|
7174
|
+
List[ContentDirectoryItems],
|
|
7175
|
+
ContentFile,
|
|
7176
|
+
ContentSymlink,
|
|
7177
|
+
ContentSubmodule,
|
|
7188
7178
|
],
|
|
7189
7179
|
error_models={
|
|
7190
7180
|
"404": BasicError,
|
|
@@ -7201,14 +7191,8 @@ class ReposClient:
|
|
|
7201
7191
|
*,
|
|
7202
7192
|
headers: Optional[Dict[str, str]] = None,
|
|
7203
7193
|
) -> Response[
|
|
7204
|
-
|
|
7205
|
-
|
|
7206
|
-
List[ContentDirectoryItems],
|
|
7207
|
-
ContentFile,
|
|
7208
|
-
ContentSymlink,
|
|
7209
|
-
ContentSubmodule,
|
|
7210
|
-
],
|
|
7211
|
-
Field(discriminator="type"),
|
|
7194
|
+
Union[
|
|
7195
|
+
List[ContentDirectoryItems], ContentFile, ContentSymlink, ContentSubmodule
|
|
7212
7196
|
]
|
|
7213
7197
|
]:
|
|
7214
7198
|
"""See also: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content"""
|
|
@@ -7236,14 +7220,11 @@ class ReposClient:
|
|
|
7236
7220
|
url,
|
|
7237
7221
|
params=exclude_unset(params),
|
|
7238
7222
|
headers=exclude_unset(headers),
|
|
7239
|
-
response_model=
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
ContentSubmodule,
|
|
7245
|
-
],
|
|
7246
|
-
Field(discriminator="type"),
|
|
7223
|
+
response_model=Union[
|
|
7224
|
+
List[ContentDirectoryItems],
|
|
7225
|
+
ContentFile,
|
|
7226
|
+
ContentSymlink,
|
|
7227
|
+
ContentSubmodule,
|
|
7247
7228
|
],
|
|
7248
7229
|
error_models={
|
|
7249
7230
|
"404": BasicError,
|
|
@@ -9,7 +9,7 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
9
9
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
|
-
from typing import Union
|
|
12
|
+
from typing import Union, Literal
|
|
13
13
|
from datetime import date, datetime
|
|
14
14
|
from typing_extensions import TypedDict, NotRequired
|
|
15
15
|
|
|
@@ -33,6 +33,7 @@ class CopilotSeatDetailsType(TypedDict):
|
|
|
33
33
|
last_activity_editor: NotRequired[Union[str, None]]
|
|
34
34
|
created_at: datetime
|
|
35
35
|
updated_at: NotRequired[datetime]
|
|
36
|
+
plan_type: NotRequired[Literal["business", "enterprise", "unknown"]]
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
class EnterpriseTeamType(TypedDict):
|
|
@@ -28,6 +28,7 @@ class CopilotOrganizationDetailsType(TypedDict):
|
|
|
28
28
|
seat_management_setting: Literal[
|
|
29
29
|
"assign_all", "assign_selected", "disabled", "unconfigured"
|
|
30
30
|
]
|
|
31
|
+
plan_type: NotRequired[Literal["business", "enterprise", "unknown"]]
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
class CopilotSeatBreakdownType(TypedDict):
|
|
@@ -26,7 +26,9 @@ class ReposOwnerRepoCheckRunsPostBodyOneof1Type(TypedDict):
|
|
|
26
26
|
head_sha: str
|
|
27
27
|
details_url: NotRequired[str]
|
|
28
28
|
external_id: NotRequired[str]
|
|
29
|
-
status: NotRequired[
|
|
29
|
+
status: NotRequired[
|
|
30
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
31
|
+
]
|
|
30
32
|
started_at: NotRequired[datetime]
|
|
31
33
|
conclusion: NotRequired[
|
|
32
34
|
Literal[
|
|
@@ -9,7 +9,7 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
9
9
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
|
-
from typing import Union
|
|
12
|
+
from typing import Union, Literal
|
|
13
13
|
from datetime import date, datetime
|
|
14
14
|
|
|
15
15
|
from pydantic import Field
|
|
@@ -55,6 +55,10 @@ class CopilotSeatDetails(GitHubModel):
|
|
|
55
55
|
default=UNSET,
|
|
56
56
|
description="Timestamp of when the assignee's GitHub Copilot access was last updated, in ISO 8601 format.",
|
|
57
57
|
)
|
|
58
|
+
plan_type: Missing[Literal["business", "enterprise", "unknown"]] = Field(
|
|
59
|
+
default=UNSET,
|
|
60
|
+
description="The Copilot plan of the organization, or the parent enterprise, when applicable.",
|
|
61
|
+
)
|
|
58
62
|
|
|
59
63
|
|
|
60
64
|
class EnterpriseTeam(GitHubModel):
|
|
@@ -49,6 +49,10 @@ class CopilotOrganizationDetails(ExtraGitHubModel):
|
|
|
49
49
|
seat_management_setting: Literal[
|
|
50
50
|
"assign_all", "assign_selected", "disabled", "unconfigured"
|
|
51
51
|
] = Field(description="The mode of assigning new seats.")
|
|
52
|
+
plan_type: Missing[Literal["business", "enterprise", "unknown"]] = Field(
|
|
53
|
+
default=UNSET,
|
|
54
|
+
description="The Copilot plan of the organization, or the parent enterprise, when applicable.",
|
|
55
|
+
)
|
|
52
56
|
|
|
53
57
|
|
|
54
58
|
class CopilotSeatBreakdown(GitHubModel):
|
|
@@ -38,7 +38,9 @@ class ReposOwnerRepoCheckRunsPostBodyOneof1(ExtraGitHubModel):
|
|
|
38
38
|
external_id: Missing[str] = Field(
|
|
39
39
|
default=UNSET, description="A reference for the run on the integrator's system."
|
|
40
40
|
)
|
|
41
|
-
status: Missing[
|
|
41
|
+
status: Missing[
|
|
42
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
43
|
+
] = Field(default=UNSET)
|
|
42
44
|
started_at: Missing[datetime] = Field(
|
|
43
45
|
default=UNSET,
|
|
44
46
|
description="The time that the check run began. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.",
|
|
@@ -10,10 +10,9 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
12
|
from weakref import ref
|
|
13
|
-
from typing_extensions import Annotated
|
|
14
13
|
from typing import TYPE_CHECKING, Dict, Literal, Optional, overload
|
|
15
14
|
|
|
16
|
-
from pydantic import
|
|
15
|
+
from pydantic import BaseModel
|
|
17
16
|
|
|
18
17
|
from githubkit.typing import Missing, UnsetType
|
|
19
18
|
from githubkit.utils import UNSET, exclude_unset
|
|
@@ -124,7 +123,9 @@ class ChecksClient:
|
|
|
124
123
|
head_sha: str,
|
|
125
124
|
details_url: Missing[str] = UNSET,
|
|
126
125
|
external_id: Missing[str] = UNSET,
|
|
127
|
-
status: Missing[
|
|
126
|
+
status: Missing[
|
|
127
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
128
|
+
] = UNSET,
|
|
128
129
|
started_at: Missing[datetime] = UNSET,
|
|
129
130
|
conclusion: Missing[
|
|
130
131
|
Literal[
|
|
@@ -178,12 +179,9 @@ class ChecksClient:
|
|
|
178
179
|
|
|
179
180
|
json = kwargs if data is UNSET else data
|
|
180
181
|
json = type_validate_python(
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
185
|
-
],
|
|
186
|
-
Field(discriminator="status"),
|
|
182
|
+
Union[
|
|
183
|
+
ReposOwnerRepoCheckRunsPostBodyOneof0,
|
|
184
|
+
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
187
185
|
],
|
|
188
186
|
json,
|
|
189
187
|
)
|
|
@@ -253,7 +251,9 @@ class ChecksClient:
|
|
|
253
251
|
head_sha: str,
|
|
254
252
|
details_url: Missing[str] = UNSET,
|
|
255
253
|
external_id: Missing[str] = UNSET,
|
|
256
|
-
status: Missing[
|
|
254
|
+
status: Missing[
|
|
255
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
256
|
+
] = UNSET,
|
|
257
257
|
started_at: Missing[datetime] = UNSET,
|
|
258
258
|
conclusion: Missing[
|
|
259
259
|
Literal[
|
|
@@ -307,12 +307,9 @@ class ChecksClient:
|
|
|
307
307
|
|
|
308
308
|
json = kwargs if data is UNSET else data
|
|
309
309
|
json = type_validate_python(
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
314
|
-
],
|
|
315
|
-
Field(discriminator="status"),
|
|
310
|
+
Union[
|
|
311
|
+
ReposOwnerRepoCheckRunsPostBodyOneof0,
|
|
312
|
+
ReposOwnerRepoCheckRunsPostBodyOneof1,
|
|
316
313
|
],
|
|
317
314
|
json,
|
|
318
315
|
)
|
|
@@ -10,10 +10,9 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
12
|
from weakref import ref
|
|
13
|
-
from typing_extensions import Annotated
|
|
14
13
|
from typing import TYPE_CHECKING, Dict, Literal, Optional, overload
|
|
15
14
|
|
|
16
|
-
from pydantic import
|
|
15
|
+
from pydantic import BaseModel
|
|
17
16
|
|
|
18
17
|
from githubkit.typing import Missing, UnsetType
|
|
19
18
|
from githubkit.utils import UNSET, exclude_unset
|
|
@@ -7142,14 +7141,8 @@ class ReposClient:
|
|
|
7142
7141
|
*,
|
|
7143
7142
|
headers: Optional[Dict[str, str]] = None,
|
|
7144
7143
|
) -> Response[
|
|
7145
|
-
|
|
7146
|
-
|
|
7147
|
-
List[ContentDirectoryItems],
|
|
7148
|
-
ContentFile,
|
|
7149
|
-
ContentSymlink,
|
|
7150
|
-
ContentSubmodule,
|
|
7151
|
-
],
|
|
7152
|
-
Field(discriminator="type"),
|
|
7144
|
+
Union[
|
|
7145
|
+
List[ContentDirectoryItems], ContentFile, ContentSymlink, ContentSubmodule
|
|
7153
7146
|
]
|
|
7154
7147
|
]:
|
|
7155
7148
|
"""See also: https://docs.github.com/rest/repos/contents#get-repository-content"""
|
|
@@ -7177,14 +7170,11 @@ class ReposClient:
|
|
|
7177
7170
|
url,
|
|
7178
7171
|
params=exclude_unset(params),
|
|
7179
7172
|
headers=exclude_unset(headers),
|
|
7180
|
-
response_model=
|
|
7181
|
-
|
|
7182
|
-
|
|
7183
|
-
|
|
7184
|
-
|
|
7185
|
-
ContentSubmodule,
|
|
7186
|
-
],
|
|
7187
|
-
Field(discriminator="type"),
|
|
7173
|
+
response_model=Union[
|
|
7174
|
+
List[ContentDirectoryItems],
|
|
7175
|
+
ContentFile,
|
|
7176
|
+
ContentSymlink,
|
|
7177
|
+
ContentSubmodule,
|
|
7188
7178
|
],
|
|
7189
7179
|
error_models={
|
|
7190
7180
|
"404": BasicError,
|
|
@@ -7201,14 +7191,8 @@ class ReposClient:
|
|
|
7201
7191
|
*,
|
|
7202
7192
|
headers: Optional[Dict[str, str]] = None,
|
|
7203
7193
|
) -> Response[
|
|
7204
|
-
|
|
7205
|
-
|
|
7206
|
-
List[ContentDirectoryItems],
|
|
7207
|
-
ContentFile,
|
|
7208
|
-
ContentSymlink,
|
|
7209
|
-
ContentSubmodule,
|
|
7210
|
-
],
|
|
7211
|
-
Field(discriminator="type"),
|
|
7194
|
+
Union[
|
|
7195
|
+
List[ContentDirectoryItems], ContentFile, ContentSymlink, ContentSubmodule
|
|
7212
7196
|
]
|
|
7213
7197
|
]:
|
|
7214
7198
|
"""See also: https://docs.github.com/rest/repos/contents#get-repository-content"""
|
|
@@ -7236,14 +7220,11 @@ class ReposClient:
|
|
|
7236
7220
|
url,
|
|
7237
7221
|
params=exclude_unset(params),
|
|
7238
7222
|
headers=exclude_unset(headers),
|
|
7239
|
-
response_model=
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
ContentSubmodule,
|
|
7245
|
-
],
|
|
7246
|
-
Field(discriminator="type"),
|
|
7223
|
+
response_model=Union[
|
|
7224
|
+
List[ContentDirectoryItems],
|
|
7225
|
+
ContentFile,
|
|
7226
|
+
ContentSymlink,
|
|
7227
|
+
ContentSubmodule,
|
|
7247
7228
|
],
|
|
7248
7229
|
error_models={
|
|
7249
7230
|
"404": BasicError,
|
|
@@ -9,7 +9,7 @@ See https://github.com/github/rest-api-description for more information.
|
|
|
9
9
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
|
-
from typing import Union
|
|
12
|
+
from typing import Union, Literal
|
|
13
13
|
from datetime import date, datetime
|
|
14
14
|
from typing_extensions import TypedDict, NotRequired
|
|
15
15
|
|
|
@@ -33,6 +33,7 @@ class CopilotSeatDetailsType(TypedDict):
|
|
|
33
33
|
last_activity_editor: NotRequired[Union[str, None]]
|
|
34
34
|
created_at: datetime
|
|
35
35
|
updated_at: NotRequired[datetime]
|
|
36
|
+
plan_type: NotRequired[Literal["business", "enterprise", "unknown"]]
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
class EnterpriseTeamType(TypedDict):
|
|
@@ -28,6 +28,7 @@ class CopilotOrganizationDetailsType(TypedDict):
|
|
|
28
28
|
seat_management_setting: Literal[
|
|
29
29
|
"assign_all", "assign_selected", "disabled", "unconfigured"
|
|
30
30
|
]
|
|
31
|
+
plan_type: NotRequired[Literal["business", "enterprise", "unknown"]]
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
class CopilotSeatBreakdownType(TypedDict):
|
|
@@ -26,7 +26,9 @@ class ReposOwnerRepoCheckRunsPostBodyOneof1Type(TypedDict):
|
|
|
26
26
|
head_sha: str
|
|
27
27
|
details_url: NotRequired[str]
|
|
28
28
|
external_id: NotRequired[str]
|
|
29
|
-
status: NotRequired[
|
|
29
|
+
status: NotRequired[
|
|
30
|
+
Literal["queued", "in_progress", "waiting", "requested", "pending"]
|
|
31
|
+
]
|
|
30
32
|
started_at: NotRequired[datetime]
|
|
31
33
|
conclusion: NotRequired[
|
|
32
34
|
Literal[
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: GitHubKit
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.13
|
|
4
4
|
Summary: GitHub SDK for Python
|
|
5
5
|
Home-page: https://github.com/yanyongyu/githubkit
|
|
6
6
|
License: MIT
|
|
@@ -30,7 +30,7 @@ Project-URL: Documentation, https://github.com/yanyongyu/githubkit
|
|
|
30
30
|
Project-URL: Repository, https://github.com/yanyongyu/githubkit
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
|
|
33
|
-
<!-- markdownlint-disable
|
|
33
|
+
<!-- markdownlint-disable MD041 -->
|
|
34
34
|
<div align="center">
|
|
35
35
|
|
|
36
36
|
[](https://github.com/yanyongyu/githubkit)
|
|
@@ -81,7 +81,7 @@ githubkit/versions/ghec_v2022_11_28/models/group_0047.py,sha256=2FULTiTG5S2-MzBf
|
|
|
81
81
|
githubkit/versions/ghec_v2022_11_28/models/group_0048.py,sha256=DNpQzLLxoITRJOAYVY30nmmp64a_tHUX7bJYc0b2R4w,2437
|
|
82
82
|
githubkit/versions/ghec_v2022_11_28/models/group_0049.py,sha256=vdxf9oNaqLEV_--Ik4AqO0tdVdQVWDkWHQVWKBwVoO0,1552
|
|
83
83
|
githubkit/versions/ghec_v2022_11_28/models/group_0050.py,sha256=7PqDd0eMO2mCL0xe1gEYh1yAJGbYBeldipQTMod3RB8,1432
|
|
84
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0051.py,sha256=
|
|
84
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0051.py,sha256=VeGvsbqt7G-CAC4VX2LkVs1E1WfRwu7BDLrAChHEAHc,3037
|
|
85
85
|
githubkit/versions/ghec_v2022_11_28/models/group_0052.py,sha256=dikuUev6oCC8T288FgYuO448euRrFP9aeH7RGtXlY5c,4082
|
|
86
86
|
githubkit/versions/ghec_v2022_11_28/models/group_0053.py,sha256=3HfYzTAGgIeIqZ_jzsoqWyUyxfwbmNDvYw0UVogwfhs,733
|
|
87
87
|
githubkit/versions/ghec_v2022_11_28/models/group_0054.py,sha256=wWd1wkFxyUu_2o5v7ZppeA68zYUERjMbP5QU4yeB0nI,1821
|
|
@@ -128,7 +128,7 @@ githubkit/versions/ghec_v2022_11_28/models/group_0094.py,sha256=a0t38Cr3jfeGMyQl
|
|
|
128
128
|
githubkit/versions/ghec_v2022_11_28/models/group_0095.py,sha256=B93ambZ3Y15gUWkJNh5kXHVGZzUP_ECN0bnzY7DF1LA,1674
|
|
129
129
|
githubkit/versions/ghec_v2022_11_28/models/group_0096.py,sha256=ExYVJnmJBbUVmsyU8e6hu6MlhMdpNMRfduf_cp474UY,6388
|
|
130
130
|
githubkit/versions/ghec_v2022_11_28/models/group_0097.py,sha256=nr62131S-Kdw4ytm1nCN6wTopNrIw8Lmw8iSQEp8WFA,935
|
|
131
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0098.py,sha256=
|
|
131
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0098.py,sha256=_we-aUPNi7ni_E8MV5PoOoIg8ZZ5M_SDIOD2DKahELk,3623
|
|
132
132
|
githubkit/versions/ghec_v2022_11_28/models/group_0099.py,sha256=7hx--TtZFoxlrf3VLZet2xE5njk9AgR3UIAF5t5ARuM,2724
|
|
133
133
|
githubkit/versions/ghec_v2022_11_28/models/group_0100.py,sha256=YH_nzzrOuJwjvseEtF-NAK1MgXWODJG2OyV8Ey8zOyo,1218
|
|
134
134
|
githubkit/versions/ghec_v2022_11_28/models/group_0101.py,sha256=DAane04Dli-hBBTFiLP-63JXF4We1qBqrcdtdm9UGzE,1322
|
|
@@ -1040,7 +1040,7 @@ githubkit/versions/ghec_v2022_11_28/models/group_1006.py,sha256=io67YP-Y0TUR3Euq
|
|
|
1040
1040
|
githubkit/versions/ghec_v2022_11_28/models/group_1007.py,sha256=f1i2EZNAWBk5a5MexDU04i90d-9kj3gKZKmGgerAmjY,641
|
|
1041
1041
|
githubkit/versions/ghec_v2022_11_28/models/group_1008.py,sha256=VnaKSnoP9fYqEqC86GpaWB8gifhKEqTzUNVq6PdRNgg,5677
|
|
1042
1042
|
githubkit/versions/ghec_v2022_11_28/models/group_1009.py,sha256=qVeCKP7NbsSQxFUtmuF1jmSf83IQg5HcoJfrlTvyJAo,3672
|
|
1043
|
-
githubkit/versions/ghec_v2022_11_28/models/group_1010.py,sha256=
|
|
1043
|
+
githubkit/versions/ghec_v2022_11_28/models/group_1010.py,sha256=A_yeAENFQoY180NEYM65eFPvAJGub8gXeYVJgqlyjBY,3838
|
|
1044
1044
|
githubkit/versions/ghec_v2022_11_28/models/group_1011.py,sha256=dgnWq39LckzY8UDS3Tp3SJY4sQhpr3OjRl-aFStoKsc,5669
|
|
1045
1045
|
githubkit/versions/ghec_v2022_11_28/models/group_1012.py,sha256=Wqve2uFpJKH9xLKPHgt1VozsMSKVTtT5bpzzgpBzX0A,3275
|
|
1046
1046
|
githubkit/versions/ghec_v2022_11_28/models/group_1013.py,sha256=h0_A4CD4ezEl0SFNz2tQw3LawirkD8AH1Mjbxkug0Xw,3370
|
|
@@ -1217,7 +1217,7 @@ githubkit/versions/ghec_v2022_11_28/rest/actions.py,sha256=zHBgUxuHDbXnHXQQwuWba
|
|
|
1217
1217
|
githubkit/versions/ghec_v2022_11_28/rest/activity.py,sha256=khKUWbD0h9d1G2KfDTyKUVLqgsMhCNdMEZVCxqKXk9U,66493
|
|
1218
1218
|
githubkit/versions/ghec_v2022_11_28/rest/apps.py,sha256=8y0sBXk4uUSsve01ozZy6a-yQJcphpGRMJBLOnipZ-I,80076
|
|
1219
1219
|
githubkit/versions/ghec_v2022_11_28/rest/billing.py,sha256=7Qk3xcLlLcNZxkEZINzQ1AzuUbQ79gLBRY_ELEL5P_M,34402
|
|
1220
|
-
githubkit/versions/ghec_v2022_11_28/rest/checks.py,sha256=
|
|
1220
|
+
githubkit/versions/ghec_v2022_11_28/rest/checks.py,sha256=z_ZLYST6dzwAv0DawOUuqleiBXOm5q4JQJOCbeguHl0,40010
|
|
1221
1221
|
githubkit/versions/ghec_v2022_11_28/rest/classroom.py,sha256=mn20j-qh3N1fAI0N1Xmn5WIU-HmMTDb_EXfbvzPVve8,11445
|
|
1222
1222
|
githubkit/versions/ghec_v2022_11_28/rest/code_scanning.py,sha256=DXfg-Himv6EMgO6NCjMd7aUeuYPrHg7o-m06JhB79qY,63172
|
|
1223
1223
|
githubkit/versions/ghec_v2022_11_28/rest/code_security.py,sha256=8u1SgQ219N-e52q-j4ih7nLRtpMX6OINhH-j-Gqg4y0,40811
|
|
@@ -1244,7 +1244,7 @@ githubkit/versions/ghec_v2022_11_28/rest/projects.py,sha256=JBFhZsbzQqBifB6uT1Ls
|
|
|
1244
1244
|
githubkit/versions/ghec_v2022_11_28/rest/pulls.py,sha256=TYtOnGPk5DpKkSWXRwxcJ0am6E79hA2PvAsxj3xJbmo,88694
|
|
1245
1245
|
githubkit/versions/ghec_v2022_11_28/rest/rate_limit.py,sha256=53urwzZq82jUu0VibmtNa_2HkmMjEJGF8zpnPwrznpk,2359
|
|
1246
1246
|
githubkit/versions/ghec_v2022_11_28/rest/reactions.py,sha256=Hs8-oPdTnuQjQ2ES_442ZqloX9IVilwxIKuiR9c02dM,71016
|
|
1247
|
-
githubkit/versions/ghec_v2022_11_28/rest/repos.py,sha256=
|
|
1247
|
+
githubkit/versions/ghec_v2022_11_28/rest/repos.py,sha256=H6qdkJuOlg4BDyb6LaC6I4hR2cJAzgmbhvwnzZl44G0,530641
|
|
1248
1248
|
githubkit/versions/ghec_v2022_11_28/rest/scim.py,sha256=yiVJrnCZQwB5CYhZeAGVC3m1iax83mlyjwuH7PHIMCM,20015
|
|
1249
1249
|
githubkit/versions/ghec_v2022_11_28/rest/search.py,sha256=qD7oZJQYhJURHouSOokmoksOiKeh5CD2jxOqt_0fAfY,19380
|
|
1250
1250
|
githubkit/versions/ghec_v2022_11_28/rest/secret_scanning.py,sha256=4bpFAp0X1HWMawqGGRbWZua0Y9bxQw6YShEqjvHsQto,26250
|
|
@@ -1304,7 +1304,7 @@ githubkit/versions/ghec_v2022_11_28/types/group_0047.py,sha256=QoGnpVUZ3jq7uuw9T
|
|
|
1304
1304
|
githubkit/versions/ghec_v2022_11_28/types/group_0048.py,sha256=KoeSLnrCpgm9JNlojR1ml4qYNmy3LBEdeXX2btAwWCI,1804
|
|
1305
1305
|
githubkit/versions/ghec_v2022_11_28/types/group_0049.py,sha256=4mTNAjBLWBoltPd9nd_jiP0J2giCGP5LwfUSohRheDY,801
|
|
1306
1306
|
githubkit/versions/ghec_v2022_11_28/types/group_0050.py,sha256=pVC217j6VCf_ORP5YiTZk3q4xmtpxVkMY7-nhPBCxWQ,1080
|
|
1307
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0051.py,sha256
|
|
1307
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0051.py,sha256=-bN0OqCh3PCetgwKoSAnT5R5QL3RgfMeG1MAfSIeKQ4,1567
|
|
1308
1308
|
githubkit/versions/ghec_v2022_11_28/types/group_0052.py,sha256=qSOy8MvxopFhkmEX85FynZPV-uCV8yaOJ_4qBHIcI70,1435
|
|
1309
1309
|
githubkit/versions/ghec_v2022_11_28/types/group_0053.py,sha256=FniZYEjq50eO7cGWJPmmlaQxZok0EW3b09Eb_H7oigw,494
|
|
1310
1310
|
githubkit/versions/ghec_v2022_11_28/types/group_0054.py,sha256=yT_FwA0I-1ekZ49ZIfQrQaDhpHFzwnKVs4US1yzsvNA,1210
|
|
@@ -1351,7 +1351,7 @@ githubkit/versions/ghec_v2022_11_28/types/group_0094.py,sha256=v1vVtdL3XCUi3X8kP
|
|
|
1351
1351
|
githubkit/versions/ghec_v2022_11_28/types/group_0095.py,sha256=P48iH4MoH1DjXOIWHyBebSHCxZlJvnD-_NUzkkcerZ4,700
|
|
1352
1352
|
githubkit/versions/ghec_v2022_11_28/types/group_0096.py,sha256=p3SfdQwiJsbn0VPxmVGrrkJSgVCzSxHdi0PbIpidnwU,2756
|
|
1353
1353
|
githubkit/versions/ghec_v2022_11_28/types/group_0097.py,sha256=EprzOCwBgacN4Vpbq0Wusm8lYT2Pn_AnOjUvbKK1CiA,622
|
|
1354
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0098.py,sha256=
|
|
1354
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0098.py,sha256=KJMXjtyBfkQjxVarYagQhJUDRQ6DU2BW-dVFOVgvVP4,1582
|
|
1355
1355
|
githubkit/versions/ghec_v2022_11_28/types/group_0099.py,sha256=FNthTgUIfx5rXj4iE2qarQwmuue9TJf8a01eYp8uylM,1033
|
|
1356
1356
|
githubkit/versions/ghec_v2022_11_28/types/group_0100.py,sha256=n4jvYdJK0HOOfWBu_qV87IBvBhE_ajd8hfSmuEXdUfA,684
|
|
1357
1357
|
githubkit/versions/ghec_v2022_11_28/types/group_0101.py,sha256=dh73U8zhdUdQ_CXkoDy7nnufEqiq6W8BB2tbMrPg1oc,723
|
|
@@ -2263,7 +2263,7 @@ githubkit/versions/ghec_v2022_11_28/types/group_1006.py,sha256=D869uoifKCcWV7Xqn
|
|
|
2263
2263
|
githubkit/versions/ghec_v2022_11_28/types/group_1007.py,sha256=pqUDUEmO_QPG1c6SWhw1ctMFUPPOqXNVjW1Mt9JbxCE,493
|
|
2264
2264
|
githubkit/versions/ghec_v2022_11_28/types/group_1008.py,sha256=Ouwvtql1bpxxD6kkoR1aWU0iwzcGQwHHnw7bIe9B32c,2001
|
|
2265
2265
|
githubkit/versions/ghec_v2022_11_28/types/group_1009.py,sha256=7LlbtO-bDaHe0xwDOVUoq8j9FzA2ifDO207DsnLoL9w,1232
|
|
2266
|
-
githubkit/versions/ghec_v2022_11_28/types/group_1010.py,sha256=
|
|
2266
|
+
githubkit/versions/ghec_v2022_11_28/types/group_1010.py,sha256=apdTHvrl4KOibPDFYEGuZGP2uITBBqdLhUH1ykiczPc,1369
|
|
2267
2267
|
githubkit/versions/ghec_v2022_11_28/types/group_1011.py,sha256=FqkeEgXdEEYWvz8jqg1TWYvSgtJe3Mnu9WE1GSdRtPI,2202
|
|
2268
2268
|
githubkit/versions/ghec_v2022_11_28/types/group_1012.py,sha256=ToCWK_OMRzX_GHp09dV0yw5MoGV6wp2WsETYFHGg9fs,1331
|
|
2269
2269
|
githubkit/versions/ghec_v2022_11_28/types/group_1013.py,sha256=iDrzTlIwhSel___8svsnyoEAquiWdUdHbGXSWcILIxw,1406
|
|
@@ -2550,7 +2550,7 @@ githubkit/versions/v2022_11_28/models/group_0026.py,sha256=wa8YVMr82ynU0T6ayHMMp
|
|
|
2550
2550
|
githubkit/versions/v2022_11_28/models/group_0027.py,sha256=tX6kBbB0GCHKITtPSBn9fGr15GtR4GzpJKyKPwQZ9CI,894
|
|
2551
2551
|
githubkit/versions/v2022_11_28/models/group_0028.py,sha256=vdxf9oNaqLEV_--Ik4AqO0tdVdQVWDkWHQVWKBwVoO0,1552
|
|
2552
2552
|
githubkit/versions/v2022_11_28/models/group_0029.py,sha256=zrp7h8h408XCeSZANsk7Pr0Jc09-Q5iOWsRAcyQwD5Y,1432
|
|
2553
|
-
githubkit/versions/v2022_11_28/models/group_0030.py,sha256=
|
|
2553
|
+
githubkit/versions/v2022_11_28/models/group_0030.py,sha256=n5wRIVcrT2cHM09471UAbytt7Uy2wd2FUYmhsGTym8A,3037
|
|
2554
2554
|
githubkit/versions/v2022_11_28/models/group_0031.py,sha256=dikuUev6oCC8T288FgYuO448euRrFP9aeH7RGtXlY5c,4082
|
|
2555
2555
|
githubkit/versions/v2022_11_28/models/group_0032.py,sha256=3HfYzTAGgIeIqZ_jzsoqWyUyxfwbmNDvYw0UVogwfhs,733
|
|
2556
2556
|
githubkit/versions/v2022_11_28/models/group_0033.py,sha256=H2hyk11dkDOkLENwYtOd92v19tQNwHJlem3Q9YNSrvY,1821
|
|
@@ -2602,7 +2602,7 @@ githubkit/versions/v2022_11_28/models/group_0078.py,sha256=qaEOPgNRLVlTg30D0OVoO
|
|
|
2602
2602
|
githubkit/versions/v2022_11_28/models/group_0079.py,sha256=B93ambZ3Y15gUWkJNh5kXHVGZzUP_ECN0bnzY7DF1LA,1674
|
|
2603
2603
|
githubkit/versions/v2022_11_28/models/group_0080.py,sha256=yNF4UqlMDnOJBUOuKzPYGkdK3v0XvOWJTGn1egg9cTo,6388
|
|
2604
2604
|
githubkit/versions/v2022_11_28/models/group_0081.py,sha256=nr62131S-Kdw4ytm1nCN6wTopNrIw8Lmw8iSQEp8WFA,935
|
|
2605
|
-
githubkit/versions/v2022_11_28/models/group_0082.py,sha256=
|
|
2605
|
+
githubkit/versions/v2022_11_28/models/group_0082.py,sha256=_we-aUPNi7ni_E8MV5PoOoIg8ZZ5M_SDIOD2DKahELk,3623
|
|
2606
2606
|
githubkit/versions/v2022_11_28/models/group_0083.py,sha256=0uPFihZTXnTDAMJGgm7GraHIukpUSpcoOnpEamxiKVA,676
|
|
2607
2607
|
githubkit/versions/v2022_11_28/models/group_0084.py,sha256=Vg6jHx6hALnE3jeTsDaVkYCLyMBUWOUGAfA_WF_r-VI,1323
|
|
2608
2608
|
githubkit/versions/v2022_11_28/models/group_0085.py,sha256=14d3H9BGrhKdFk8TFNvAEIYxe0Zu4FwCZaAD6RAHMYE,1183
|
|
@@ -3456,7 +3456,7 @@ githubkit/versions/v2022_11_28/models/group_0932.py,sha256=io67YP-Y0TUR3EuqQl4jf
|
|
|
3456
3456
|
githubkit/versions/v2022_11_28/models/group_0933.py,sha256=f1i2EZNAWBk5a5MexDU04i90d-9kj3gKZKmGgerAmjY,641
|
|
3457
3457
|
githubkit/versions/v2022_11_28/models/group_0934.py,sha256=HueAjEXU4tS9-W5jw0nxGUfGWDhV2PHYmv_oiIZyvpE,5627
|
|
3458
3458
|
githubkit/versions/v2022_11_28/models/group_0935.py,sha256=Xa2DDVku8-7Xiobm_XSZCqDaw941QN0hFyRuHy2_4cg,3622
|
|
3459
|
-
githubkit/versions/v2022_11_28/models/group_0936.py,sha256=
|
|
3459
|
+
githubkit/versions/v2022_11_28/models/group_0936.py,sha256=C_Kr9agP1oi4eCer_TkNVbd7g6Xb_p452-IGdt3VXGM,3788
|
|
3460
3460
|
githubkit/versions/v2022_11_28/models/group_0937.py,sha256=cS_BqtUmkZNlkKgpPjGYYhnQswreg46BapTGSyGS6m4,5619
|
|
3461
3461
|
githubkit/versions/v2022_11_28/models/group_0938.py,sha256=DA5QUqpuhkBkNrnpOvpSuQO-PYcuyC9fxxv33Pf05Y4,3250
|
|
3462
3462
|
githubkit/versions/v2022_11_28/models/group_0939.py,sha256=CS26SscZJhNeZHW40MgMU6VkjgZ2dSK4aJI08lkxHEs,3345
|
|
@@ -3629,7 +3629,7 @@ githubkit/versions/v2022_11_28/rest/actions.py,sha256=bwyrQzWxj9VvCUQSblqwvhcwVr
|
|
|
3629
3629
|
githubkit/versions/v2022_11_28/rest/activity.py,sha256=MxWeFuOTHCLl7r0f5RwIi-odQOQJcOSQz5lqGAGQ5Tc,64901
|
|
3630
3630
|
githubkit/versions/v2022_11_28/rest/apps.py,sha256=Rr02LJU8L7uaYJUAziuMqSxLRW29YhN3J7NRvdfwddE,78226
|
|
3631
3631
|
githubkit/versions/v2022_11_28/rest/billing.py,sha256=lxsltobPhCabt_q_2Mgoj3YZge9Bxw1-Ngs7q8yh1dM,9070
|
|
3632
|
-
githubkit/versions/v2022_11_28/rest/checks.py,sha256=
|
|
3632
|
+
githubkit/versions/v2022_11_28/rest/checks.py,sha256=tPZ6j8o6AU-x0gKhuGjM97fZ9Wq7R00_lb6AnzZmCkE,39410
|
|
3633
3633
|
githubkit/versions/v2022_11_28/rest/classroom.py,sha256=rbGxutAEGzsnMrRO7ZB_rFko4qJi71qpOqvFL0yZ1i8,11145
|
|
3634
3634
|
githubkit/versions/v2022_11_28/rest/code_scanning.py,sha256=zYzioT-dDY2kT3SNwWCiX3Kf_OK2kwwBGHMyjqJqFGc,58705
|
|
3635
3635
|
githubkit/versions/v2022_11_28/rest/code_security.py,sha256=AWsU6VPhB-1hrJPaNxv__CmoGUGHKu5f6d5Gv-Byj60,40261
|
|
@@ -3655,7 +3655,7 @@ githubkit/versions/v2022_11_28/rest/projects.py,sha256=FLescAG-V6kiymWLu1OegtKN_
|
|
|
3655
3655
|
githubkit/versions/v2022_11_28/rest/pulls.py,sha256=7AR9qfWZLmmrtaoatxg3f0CUJ5wFzcHx6EgcjUTSRpI,87360
|
|
3656
3656
|
githubkit/versions/v2022_11_28/rest/rate_limit.py,sha256=ZY7mwLy7y39SNK2WvK7cEoksk0RMSKFHmXawFBTV36s,2309
|
|
3657
3657
|
githubkit/versions/v2022_11_28/rest/reactions.py,sha256=pmlNkimesxzq_dKsGfBfemDzVuQJ_j2Va_j_5xNzbTg,69766
|
|
3658
|
-
githubkit/versions/v2022_11_28/rest/repos.py,sha256=
|
|
3658
|
+
githubkit/versions/v2022_11_28/rest/repos.py,sha256=vSAq3pbB1U_SCIjEBfnJCu6bJtPexQxmoznkS-kVMRw,517609
|
|
3659
3659
|
githubkit/versions/v2022_11_28/rest/search.py,sha256=UtkPoPLPyfXy_e648_TxrpmbX69xkwhMfz-Maen91lk,19062
|
|
3660
3660
|
githubkit/versions/v2022_11_28/rest/secret_scanning.py,sha256=mtgTjZH6BYzHMbwTUzMz27CWp9Z6qEojf49pU0gF4Y4,25956
|
|
3661
3661
|
githubkit/versions/v2022_11_28/rest/security_advisories.py,sha256=GQSOcurWDTCPfpNKex03sCRN2Squzl00iCSc4eIdTRw,35745
|
|
@@ -3692,7 +3692,7 @@ githubkit/versions/v2022_11_28/types/group_0026.py,sha256=cEz_ZAcdubWsOzW0XiVVur
|
|
|
3692
3692
|
githubkit/versions/v2022_11_28/types/group_0027.py,sha256=zUrE_Aw_IN6AII_piCOVGYSijNaHZ4k5sVujogDrJmU,700
|
|
3693
3693
|
githubkit/versions/v2022_11_28/types/group_0028.py,sha256=4mTNAjBLWBoltPd9nd_jiP0J2giCGP5LwfUSohRheDY,801
|
|
3694
3694
|
githubkit/versions/v2022_11_28/types/group_0029.py,sha256=8cf_gdBsoafY9mpgZcn2N4--cWHo6jw9CWMTK9arjJg,1080
|
|
3695
|
-
githubkit/versions/v2022_11_28/types/group_0030.py,sha256=
|
|
3695
|
+
githubkit/versions/v2022_11_28/types/group_0030.py,sha256=wPOLiZ3jk-V0oT4A9yJhEKyLhMTyEO6iP7Kt1rIdq24,1567
|
|
3696
3696
|
githubkit/versions/v2022_11_28/types/group_0031.py,sha256=qSOy8MvxopFhkmEX85FynZPV-uCV8yaOJ_4qBHIcI70,1435
|
|
3697
3697
|
githubkit/versions/v2022_11_28/types/group_0032.py,sha256=FniZYEjq50eO7cGWJPmmlaQxZok0EW3b09Eb_H7oigw,494
|
|
3698
3698
|
githubkit/versions/v2022_11_28/types/group_0033.py,sha256=jUyHfIxObi_hWZx6pmI9dtlBvHfmdmsFh6n-5IeTXqY,1210
|
|
@@ -3744,7 +3744,7 @@ githubkit/versions/v2022_11_28/types/group_0078.py,sha256=3TNDEb7EvJYoVg8t_0pNxj
|
|
|
3744
3744
|
githubkit/versions/v2022_11_28/types/group_0079.py,sha256=P48iH4MoH1DjXOIWHyBebSHCxZlJvnD-_NUzkkcerZ4,700
|
|
3745
3745
|
githubkit/versions/v2022_11_28/types/group_0080.py,sha256=WpsEYjCpcb73GNfIaqEC8wI6NJRp12A28V_r5aN_M6Y,2756
|
|
3746
3746
|
githubkit/versions/v2022_11_28/types/group_0081.py,sha256=EprzOCwBgacN4Vpbq0Wusm8lYT2Pn_AnOjUvbKK1CiA,622
|
|
3747
|
-
githubkit/versions/v2022_11_28/types/group_0082.py,sha256=
|
|
3747
|
+
githubkit/versions/v2022_11_28/types/group_0082.py,sha256=KJMXjtyBfkQjxVarYagQhJUDRQ6DU2BW-dVFOVgvVP4,1582
|
|
3748
3748
|
githubkit/versions/v2022_11_28/types/group_0083.py,sha256=bDI_lKZfv1OPSYnx0T8zcRN5ZzvEm-AQev0rV6x7qeg,497
|
|
3749
3749
|
githubkit/versions/v2022_11_28/types/group_0084.py,sha256=SGoshY-UoEKcRApOcGg5Ad6H6-ThPppRBbk5DV-pOdo,939
|
|
3750
3750
|
githubkit/versions/v2022_11_28/types/group_0085.py,sha256=Xbxm6qqqOL_V5sL40zE2CLHRugB8l7qlp_ppTVJDt4g,859
|
|
@@ -4598,7 +4598,7 @@ githubkit/versions/v2022_11_28/types/group_0932.py,sha256=D869uoifKCcWV7Xqn6Co1G
|
|
|
4598
4598
|
githubkit/versions/v2022_11_28/types/group_0933.py,sha256=pqUDUEmO_QPG1c6SWhw1ctMFUPPOqXNVjW1Mt9JbxCE,493
|
|
4599
4599
|
githubkit/versions/v2022_11_28/types/group_0934.py,sha256=Ouwvtql1bpxxD6kkoR1aWU0iwzcGQwHHnw7bIe9B32c,2001
|
|
4600
4600
|
githubkit/versions/v2022_11_28/types/group_0935.py,sha256=9jZ-7jqPO32XLWKRjvtaka727Z3vv-vSC1IR3M5-bC0,1232
|
|
4601
|
-
githubkit/versions/v2022_11_28/types/group_0936.py,sha256=
|
|
4601
|
+
githubkit/versions/v2022_11_28/types/group_0936.py,sha256=6-jTSU2E7lcK5FJwOk1SlHubXdNJQC1Jjt64akUcnPQ,1369
|
|
4602
4602
|
githubkit/versions/v2022_11_28/types/group_0937.py,sha256=FqkeEgXdEEYWvz8jqg1TWYvSgtJe3Mnu9WE1GSdRtPI,2202
|
|
4603
4603
|
githubkit/versions/v2022_11_28/types/group_0938.py,sha256=WDwOuRULr4CgjOQ8u1J688k_FtQsZgZ10cjd3GokyPw,1331
|
|
4604
4604
|
githubkit/versions/v2022_11_28/types/group_0939.py,sha256=iFDBucsuqPoFjGaX2UxRMNWazTOXLYO9gLpCTmSOFyI,1406
|
|
@@ -4844,7 +4844,7 @@ githubkit/versions/v2022_11_28/webhooks/workflow_job.py,sha256=0jSIYYKSWALIn0KH2
|
|
|
4844
4844
|
githubkit/versions/v2022_11_28/webhooks/workflow_run.py,sha256=dfHN7iolqc4cQo2ulL6uC-ro8_3vyFe45hiZRZPkSSs,1052
|
|
4845
4845
|
githubkit/versions/webhooks.py,sha256=WZOYVfc9puu-EvBHvdjSjEIutikFg9F9riB4gSKhIIY,1826
|
|
4846
4846
|
githubkit/webhooks/__init__.py,sha256=nysPfT_VIiTS1VBw3-1NJ-1-MZiDUllNL1slNuYo5dc,386
|
|
4847
|
-
githubkit-0.11.
|
|
4848
|
-
githubkit-0.11.
|
|
4849
|
-
githubkit-0.11.
|
|
4850
|
-
githubkit-0.11.
|
|
4847
|
+
githubkit-0.11.13.dist-info/LICENSE,sha256=UEHBN69sLTXotNNzfRixnjtFlFw7GKq0agUkR06lnUA,1066
|
|
4848
|
+
githubkit-0.11.13.dist-info/METADATA,sha256=HppKig2cfHdQn4MYQ8XAfhd1NoUDUVgtpsn7IgBxoAM,5226
|
|
4849
|
+
githubkit-0.11.13.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
4850
|
+
githubkit-0.11.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|