GitHubKit 0.12.3__py3-none-any.whl → 0.12.4__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_0135.py +1 -0
- githubkit/versions/ghec_v2022_11_28/models/group_0136.py +1 -0
- githubkit/versions/ghec_v2022_11_28/models/group_0137.py +1 -0
- githubkit/versions/ghec_v2022_11_28/models/group_0266.py +7 -0
- githubkit/versions/ghec_v2022_11_28/models/group_0836.py +2 -2
- githubkit/versions/ghec_v2022_11_28/models/group_0837.py +2 -2
- githubkit/versions/ghec_v2022_11_28/models/group_0838.py +2 -2
- githubkit/versions/ghec_v2022_11_28/types/group_0135.py +1 -0
- githubkit/versions/ghec_v2022_11_28/types/group_0136.py +1 -0
- githubkit/versions/ghec_v2022_11_28/types/group_0137.py +1 -0
- githubkit/versions/ghec_v2022_11_28/types/group_0266.py +2 -0
- githubkit/versions/ghec_v2022_11_28/types/group_0836.py +2 -2
- githubkit/versions/ghec_v2022_11_28/types/group_0837.py +2 -2
- githubkit/versions/ghec_v2022_11_28/types/group_0838.py +2 -2
- githubkit/versions/v2022_11_28/models/group_0044.py +1 -0
- githubkit/versions/v2022_11_28/models/group_0045.py +1 -0
- githubkit/versions/v2022_11_28/models/group_0046.py +1 -0
- githubkit/versions/v2022_11_28/models/group_0229.py +7 -0
- githubkit/versions/v2022_11_28/models/group_0778.py +2 -2
- githubkit/versions/v2022_11_28/models/group_0779.py +2 -2
- githubkit/versions/v2022_11_28/models/group_0780.py +2 -2
- githubkit/versions/v2022_11_28/types/group_0044.py +1 -0
- githubkit/versions/v2022_11_28/types/group_0045.py +1 -0
- githubkit/versions/v2022_11_28/types/group_0046.py +1 -0
- githubkit/versions/v2022_11_28/types/group_0229.py +2 -0
- githubkit/versions/v2022_11_28/types/group_0778.py +2 -2
- githubkit/versions/v2022_11_28/types/group_0779.py +2 -2
- githubkit/versions/v2022_11_28/types/group_0780.py +2 -2
- {githubkit-0.12.3.dist-info → githubkit-0.12.4.dist-info}/METADATA +2 -2
- {githubkit-0.12.3.dist-info → githubkit-0.12.4.dist-info}/RECORD +32 -32
- {githubkit-0.12.3.dist-info → githubkit-0.12.4.dist-info}/WHEEL +1 -1
- {githubkit-0.12.3.dist-info → githubkit-0.12.4.dist-info}/LICENSE +0 -0
|
@@ -41,6 +41,7 @@ class BaseGist(GitHubModel):
|
|
|
41
41
|
updated_at: datetime = Field()
|
|
42
42
|
description: Union[str, None] = Field()
|
|
43
43
|
comments: int = Field()
|
|
44
|
+
comments_enabled: Missing[bool] = Field(default=UNSET)
|
|
44
45
|
user: Union[None, SimpleUser] = Field()
|
|
45
46
|
comments_url: str = Field()
|
|
46
47
|
owner: Missing[SimpleUser] = Field(
|
|
@@ -62,6 +62,7 @@ class GistSimplePropForkOf(GitHubModel):
|
|
|
62
62
|
updated_at: datetime = Field()
|
|
63
63
|
description: Union[str, None] = Field()
|
|
64
64
|
comments: int = Field()
|
|
65
|
+
comments_enabled: Missing[bool] = Field(default=UNSET)
|
|
65
66
|
user: Union[None, SimpleUser] = Field()
|
|
66
67
|
comments_url: str = Field()
|
|
67
68
|
owner: Missing[Union[None, SimpleUser]] = Field(default=UNSET)
|
|
@@ -47,6 +47,7 @@ class GistSimple(GitHubModel):
|
|
|
47
47
|
updated_at: Missing[str] = Field(default=UNSET)
|
|
48
48
|
description: Missing[Union[str, None]] = Field(default=UNSET)
|
|
49
49
|
comments: Missing[int] = Field(default=UNSET)
|
|
50
|
+
comments_enabled: Missing[bool] = Field(default=UNSET)
|
|
50
51
|
user: Missing[Union[str, None]] = Field(default=UNSET)
|
|
51
52
|
comments_url: Missing[str] = Field(default=UNSET)
|
|
52
53
|
owner: Missing[SimpleUser] = Field(
|
|
@@ -46,6 +46,13 @@ class CodeScanningDefaultSetup(GitHubModel):
|
|
|
46
46
|
]
|
|
47
47
|
]
|
|
48
48
|
] = Field(default=UNSET, description="Languages to be analyzed.")
|
|
49
|
+
runner_type: Missing[Union[None, Literal["standard", "labeled"]]] = Field(
|
|
50
|
+
default=UNSET, description="Runner type to be used."
|
|
51
|
+
)
|
|
52
|
+
runner_label: Missing[Union[str, None]] = Field(
|
|
53
|
+
default=UNSET,
|
|
54
|
+
description="Runner label to be used if the runner type is labeled.",
|
|
55
|
+
)
|
|
49
56
|
query_suite: Missing[Literal["default", "extended"]] = Field(
|
|
50
57
|
default=UNSET, description="CodeQL query suite to be used."
|
|
51
58
|
)
|
|
@@ -413,8 +413,8 @@ class WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItems(GitHubMode
|
|
|
413
413
|
head: WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHead = (
|
|
414
414
|
Field()
|
|
415
415
|
)
|
|
416
|
-
id:
|
|
417
|
-
number:
|
|
416
|
+
id: int = Field()
|
|
417
|
+
number: int = Field()
|
|
418
418
|
url: str = Field()
|
|
419
419
|
|
|
420
420
|
|
|
@@ -402,8 +402,8 @@ class WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItems(GitHubMod
|
|
|
402
402
|
head: WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHead = (
|
|
403
403
|
Field()
|
|
404
404
|
)
|
|
405
|
-
id:
|
|
406
|
-
number:
|
|
405
|
+
id: int = Field()
|
|
406
|
+
number: int = Field()
|
|
407
407
|
url: str = Field()
|
|
408
408
|
|
|
409
409
|
|
|
@@ -410,8 +410,8 @@ class WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItems(GitHubMode
|
|
|
410
410
|
head: WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHead = (
|
|
411
411
|
Field()
|
|
412
412
|
)
|
|
413
|
-
id:
|
|
414
|
-
number:
|
|
413
|
+
id: int = Field()
|
|
414
|
+
number: int = Field()
|
|
415
415
|
url: str = Field()
|
|
416
416
|
|
|
417
417
|
|
|
@@ -57,6 +57,7 @@ class GistSimplePropForkOfType(TypedDict):
|
|
|
57
57
|
updated_at: datetime
|
|
58
58
|
description: Union[str, None]
|
|
59
59
|
comments: int
|
|
60
|
+
comments_enabled: NotRequired[bool]
|
|
60
61
|
user: Union[None, SimpleUserType]
|
|
61
62
|
comments_url: str
|
|
62
63
|
owner: NotRequired[Union[None, SimpleUserType]]
|
|
@@ -40,6 +40,7 @@ class GistSimpleType(TypedDict):
|
|
|
40
40
|
updated_at: NotRequired[str]
|
|
41
41
|
description: NotRequired[Union[str, None]]
|
|
42
42
|
comments: NotRequired[int]
|
|
43
|
+
comments_enabled: NotRequired[bool]
|
|
43
44
|
user: NotRequired[Union[str, None]]
|
|
44
45
|
comments_url: NotRequired[str]
|
|
45
46
|
owner: NotRequired[SimpleUserType]
|
|
@@ -38,6 +38,8 @@ class CodeScanningDefaultSetupType(TypedDict):
|
|
|
38
38
|
]
|
|
39
39
|
]
|
|
40
40
|
]
|
|
41
|
+
runner_type: NotRequired[Union[None, Literal["standard", "labeled"]]]
|
|
42
|
+
runner_label: NotRequired[Union[str, None]]
|
|
41
43
|
query_suite: NotRequired[Literal["default", "extended"]]
|
|
42
44
|
updated_at: NotRequired[Union[datetime, None]]
|
|
43
45
|
schedule: NotRequired[Union[None, Literal["weekly"]]]
|
|
@@ -368,8 +368,8 @@ class WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsType(TypedD
|
|
|
368
368
|
|
|
369
369
|
base: WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBaseType
|
|
370
370
|
head: WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHeadType
|
|
371
|
-
id:
|
|
372
|
-
number:
|
|
371
|
+
id: int
|
|
372
|
+
number: int
|
|
373
373
|
url: str
|
|
374
374
|
|
|
375
375
|
|
|
@@ -366,8 +366,8 @@ class WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsType(Typed
|
|
|
366
366
|
|
|
367
367
|
base: WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBaseType
|
|
368
368
|
head: WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHeadType
|
|
369
|
-
id:
|
|
370
|
-
number:
|
|
369
|
+
id: int
|
|
370
|
+
number: int
|
|
371
371
|
url: str
|
|
372
372
|
|
|
373
373
|
|
|
@@ -368,8 +368,8 @@ class WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsType(TypedD
|
|
|
368
368
|
|
|
369
369
|
base: WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBaseType
|
|
370
370
|
head: WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHeadType
|
|
371
|
-
id:
|
|
372
|
-
number:
|
|
371
|
+
id: int
|
|
372
|
+
number: int
|
|
373
373
|
url: str
|
|
374
374
|
|
|
375
375
|
|
|
@@ -41,6 +41,7 @@ class BaseGist(GitHubModel):
|
|
|
41
41
|
updated_at: datetime = Field()
|
|
42
42
|
description: Union[str, None] = Field()
|
|
43
43
|
comments: int = Field()
|
|
44
|
+
comments_enabled: Missing[bool] = Field(default=UNSET)
|
|
44
45
|
user: Union[None, SimpleUser] = Field()
|
|
45
46
|
comments_url: str = Field()
|
|
46
47
|
owner: Missing[SimpleUser] = Field(
|
|
@@ -62,6 +62,7 @@ class GistSimplePropForkOf(GitHubModel):
|
|
|
62
62
|
updated_at: datetime = Field()
|
|
63
63
|
description: Union[str, None] = Field()
|
|
64
64
|
comments: int = Field()
|
|
65
|
+
comments_enabled: Missing[bool] = Field(default=UNSET)
|
|
65
66
|
user: Union[None, SimpleUser] = Field()
|
|
66
67
|
comments_url: str = Field()
|
|
67
68
|
owner: Missing[Union[None, SimpleUser]] = Field(default=UNSET)
|
|
@@ -47,6 +47,7 @@ class GistSimple(GitHubModel):
|
|
|
47
47
|
updated_at: Missing[str] = Field(default=UNSET)
|
|
48
48
|
description: Missing[Union[str, None]] = Field(default=UNSET)
|
|
49
49
|
comments: Missing[int] = Field(default=UNSET)
|
|
50
|
+
comments_enabled: Missing[bool] = Field(default=UNSET)
|
|
50
51
|
user: Missing[Union[str, None]] = Field(default=UNSET)
|
|
51
52
|
comments_url: Missing[str] = Field(default=UNSET)
|
|
52
53
|
owner: Missing[SimpleUser] = Field(
|
|
@@ -46,6 +46,13 @@ class CodeScanningDefaultSetup(GitHubModel):
|
|
|
46
46
|
]
|
|
47
47
|
]
|
|
48
48
|
] = Field(default=UNSET, description="Languages to be analyzed.")
|
|
49
|
+
runner_type: Missing[Union[None, Literal["standard", "labeled"]]] = Field(
|
|
50
|
+
default=UNSET, description="Runner type to be used."
|
|
51
|
+
)
|
|
52
|
+
runner_label: Missing[Union[str, None]] = Field(
|
|
53
|
+
default=UNSET,
|
|
54
|
+
description="Runner label to be used if the runner type is labeled.",
|
|
55
|
+
)
|
|
49
56
|
query_suite: Missing[Literal["default", "extended"]] = Field(
|
|
50
57
|
default=UNSET, description="CodeQL query suite to be used."
|
|
51
58
|
)
|
|
@@ -413,8 +413,8 @@ class WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItems(GitHubMode
|
|
|
413
413
|
head: WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHead = (
|
|
414
414
|
Field()
|
|
415
415
|
)
|
|
416
|
-
id:
|
|
417
|
-
number:
|
|
416
|
+
id: int = Field()
|
|
417
|
+
number: int = Field()
|
|
418
418
|
url: str = Field()
|
|
419
419
|
|
|
420
420
|
|
|
@@ -402,8 +402,8 @@ class WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItems(GitHubMod
|
|
|
402
402
|
head: WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHead = (
|
|
403
403
|
Field()
|
|
404
404
|
)
|
|
405
|
-
id:
|
|
406
|
-
number:
|
|
405
|
+
id: int = Field()
|
|
406
|
+
number: int = Field()
|
|
407
407
|
url: str = Field()
|
|
408
408
|
|
|
409
409
|
|
|
@@ -410,8 +410,8 @@ class WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItems(GitHubMode
|
|
|
410
410
|
head: WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHead = (
|
|
411
411
|
Field()
|
|
412
412
|
)
|
|
413
|
-
id:
|
|
414
|
-
number:
|
|
413
|
+
id: int = Field()
|
|
414
|
+
number: int = Field()
|
|
415
415
|
url: str = Field()
|
|
416
416
|
|
|
417
417
|
|
|
@@ -57,6 +57,7 @@ class GistSimplePropForkOfType(TypedDict):
|
|
|
57
57
|
updated_at: datetime
|
|
58
58
|
description: Union[str, None]
|
|
59
59
|
comments: int
|
|
60
|
+
comments_enabled: NotRequired[bool]
|
|
60
61
|
user: Union[None, SimpleUserType]
|
|
61
62
|
comments_url: str
|
|
62
63
|
owner: NotRequired[Union[None, SimpleUserType]]
|
|
@@ -40,6 +40,7 @@ class GistSimpleType(TypedDict):
|
|
|
40
40
|
updated_at: NotRequired[str]
|
|
41
41
|
description: NotRequired[Union[str, None]]
|
|
42
42
|
comments: NotRequired[int]
|
|
43
|
+
comments_enabled: NotRequired[bool]
|
|
43
44
|
user: NotRequired[Union[str, None]]
|
|
44
45
|
comments_url: NotRequired[str]
|
|
45
46
|
owner: NotRequired[SimpleUserType]
|
|
@@ -38,6 +38,8 @@ class CodeScanningDefaultSetupType(TypedDict):
|
|
|
38
38
|
]
|
|
39
39
|
]
|
|
40
40
|
]
|
|
41
|
+
runner_type: NotRequired[Union[None, Literal["standard", "labeled"]]]
|
|
42
|
+
runner_label: NotRequired[Union[str, None]]
|
|
41
43
|
query_suite: NotRequired[Literal["default", "extended"]]
|
|
42
44
|
updated_at: NotRequired[Union[datetime, None]]
|
|
43
45
|
schedule: NotRequired[Union[None, Literal["weekly"]]]
|
|
@@ -368,8 +368,8 @@ class WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsType(TypedD
|
|
|
368
368
|
|
|
369
369
|
base: WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropBaseType
|
|
370
370
|
head: WebhookWorkflowRunCompletedPropWorkflowRunPropPullRequestsItemsPropHeadType
|
|
371
|
-
id:
|
|
372
|
-
number:
|
|
371
|
+
id: int
|
|
372
|
+
number: int
|
|
373
373
|
url: str
|
|
374
374
|
|
|
375
375
|
|
|
@@ -366,8 +366,8 @@ class WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsType(Typed
|
|
|
366
366
|
|
|
367
367
|
base: WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropBaseType
|
|
368
368
|
head: WebhookWorkflowRunInProgressPropWorkflowRunPropPullRequestsItemsPropHeadType
|
|
369
|
-
id:
|
|
370
|
-
number:
|
|
369
|
+
id: int
|
|
370
|
+
number: int
|
|
371
371
|
url: str
|
|
372
372
|
|
|
373
373
|
|
|
@@ -368,8 +368,8 @@ class WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsType(TypedD
|
|
|
368
368
|
|
|
369
369
|
base: WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropBaseType
|
|
370
370
|
head: WebhookWorkflowRunRequestedPropWorkflowRunPropPullRequestsItemsPropHeadType
|
|
371
|
-
id:
|
|
372
|
-
number:
|
|
371
|
+
id: int
|
|
372
|
+
number: int
|
|
373
373
|
url: str
|
|
374
374
|
|
|
375
375
|
|
|
@@ -167,9 +167,9 @@ githubkit/versions/ghec_v2022_11_28/models/group_0131.py,sha256=RmQnYZSsaZ2Lkk_A
|
|
|
167
167
|
githubkit/versions/ghec_v2022_11_28/models/group_0132.py,sha256=WWXJ0kgZa3_6eRRlI10IVqh_HJiY4JBCRES6F8CMVwU,1846
|
|
168
168
|
githubkit/versions/ghec_v2022_11_28/models/group_0133.py,sha256=gb1fbsQqbtRN6RftNDOabhxjf6GwN5FyTrUc3hBCsew,2588
|
|
169
169
|
githubkit/versions/ghec_v2022_11_28/models/group_0134.py,sha256=LGojUFQqGTyWdeGs4jtYW7RsRZc8XpVJbMQ9dsq6ulQ,3006
|
|
170
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0135.py,sha256=
|
|
171
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0136.py,sha256=
|
|
172
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0137.py,sha256=
|
|
170
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0135.py,sha256=xbtWbe_pJIVejiqdrEhoMx8WZ5LJ4vJRfIJqX2zO1kI,1626
|
|
171
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0136.py,sha256=WdmEOeW4b4QvTYmiW36dBTFyUfuoS_wMI_z_Umifjiw,2401
|
|
172
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0137.py,sha256=bmgoCPn0DMk7Po3OHJfxRYLfgULb0LMflJw1nGenLn4,4617
|
|
173
173
|
githubkit/versions/ghec_v2022_11_28/models/group_0138.py,sha256=6-BhVcidjyyMC2IigN41qSe97iCA-kVKdrLW5LClK2w,1184
|
|
174
174
|
githubkit/versions/ghec_v2022_11_28/models/group_0139.py,sha256=BVK2lLU_hwSUbXTHy2eyL1XVLGTViy9TeozkJ9bkzAc,1135
|
|
175
175
|
githubkit/versions/ghec_v2022_11_28/models/group_0140.py,sha256=ev1XFLzocjBRfmBQW6lFHFebxcnEW2fjVRPuAhsAXXg,552
|
|
@@ -298,7 +298,7 @@ githubkit/versions/ghec_v2022_11_28/models/group_0262.py,sha256=k7b_UvWyYRQAs4Fe
|
|
|
298
298
|
githubkit/versions/ghec_v2022_11_28/models/group_0263.py,sha256=Ill8i8qBrFhiox5dwBuvlaZ6Mew3Tq6cL8FyvetNshQ,1721
|
|
299
299
|
githubkit/versions/ghec_v2022_11_28/models/group_0264.py,sha256=gRVIY5pnY0jQ1EGPQMXGu8QjVnb-E5jxh9qWVjYifKc,1822
|
|
300
300
|
githubkit/versions/ghec_v2022_11_28/models/group_0265.py,sha256=J9n4zGJyHH5-o0B97PpZJhyeDjD0SIKGqCJsynE8NJ8,2152
|
|
301
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0266.py,sha256=
|
|
301
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0266.py,sha256=7iLcARpxlwAjRbEIwA5k8CRZtbnOU8JOjaUpEGSAhlI,2063
|
|
302
302
|
githubkit/versions/ghec_v2022_11_28/models/group_0267.py,sha256=AC9svOYVsJnVRewvx_vyx8nAhe3wAy8-KrnOQ_BTQ4g,1689
|
|
303
303
|
githubkit/versions/ghec_v2022_11_28/models/group_0268.py,sha256=rAzR7I5t-E9Jp7HLrikp13FrQSWEq41ntFasHeVeUGI,1034
|
|
304
304
|
githubkit/versions/ghec_v2022_11_28/models/group_0269.py,sha256=vNUE6kWsXm2OG_ZyKwj8fInjQefjz7klpUSHDthpmXg,803
|
|
@@ -868,9 +868,9 @@ githubkit/versions/ghec_v2022_11_28/models/group_0832.py,sha256=-hfNkmdzMOEU9yF0
|
|
|
868
868
|
githubkit/versions/ghec_v2022_11_28/models/group_0833.py,sha256=bXwoA2KThwkdWICfNJ_PwNB2mkYEKI8mlKbGJ-iuc00,2769
|
|
869
869
|
githubkit/versions/ghec_v2022_11_28/models/group_0834.py,sha256=-dpJmOtEB-L9OYAFmygcT9CzNBUz509BjhvRgwA4_58,4632
|
|
870
870
|
githubkit/versions/ghec_v2022_11_28/models/group_0835.py,sha256=bu-SnXaeT12eXfVyAHkoxRQKmq3r5YIUMpZQqbW3g0s,4673
|
|
871
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0836.py,sha256=
|
|
872
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0837.py,sha256=
|
|
873
|
-
githubkit/versions/ghec_v2022_11_28/models/group_0838.py,sha256
|
|
871
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0836.py,sha256=kxBVOySQEDmbFYEXnA9nvgdJxqnnWvChVUQBEa9qiIg,19507
|
|
872
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0837.py,sha256=6SUGPtbK805Cub_zmGJSBqQKnJksy-cQ9if02a4DqyY,19080
|
|
873
|
+
githubkit/versions/ghec_v2022_11_28/models/group_0838.py,sha256=-POlHe03a1H6SJJ5fVFcB3pmn2wqg944CjaSI2AmniY,19304
|
|
874
874
|
githubkit/versions/ghec_v2022_11_28/models/group_0839.py,sha256=sZocOeD4LwiPwkjBrmHNMcvAshzW-HvEf9TvTNusPBM,1783
|
|
875
875
|
githubkit/versions/ghec_v2022_11_28/models/group_0840.py,sha256=KOhkozIfc87cQH-_WVmd3jgYlQMZgngFVFcxvOeXxzU,764
|
|
876
876
|
githubkit/versions/ghec_v2022_11_28/models/group_0841.py,sha256=hidlvEYZ_gs9wb32DGm0mmnpBAGRg6mBiHvMJEebEvc,1288
|
|
@@ -1442,9 +1442,9 @@ githubkit/versions/ghec_v2022_11_28/types/group_0131.py,sha256=gSTEKiLJHti65LHhM
|
|
|
1442
1442
|
githubkit/versions/ghec_v2022_11_28/types/group_0132.py,sha256=fU_cTPVN0VAXU776haLL53XQbGaI1fsQ9kMSjk9AgJQ,1256
|
|
1443
1443
|
githubkit/versions/ghec_v2022_11_28/types/group_0133.py,sha256=yjt_vd4P_BC3Q6xih0xxK9RN0uQtlk-Fq9byXwtTrEk,1672
|
|
1444
1444
|
githubkit/versions/ghec_v2022_11_28/types/group_0134.py,sha256=v_5H_CmHk-H-HU649D38XK2RESkPIIEcWlncab42xjY,1621
|
|
1445
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0135.py,sha256=
|
|
1446
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0136.py,sha256=
|
|
1447
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0137.py,sha256=
|
|
1445
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0135.py,sha256=icuJJ-7b2JX2rsk5l6j_ouR9OmpAZX1pHOiGO4Gq3kY,1150
|
|
1446
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0136.py,sha256=Qb-g6tUKxKJXzJrRZKNFocXcXxOSNFph_eFsZ_sR1Pw,1764
|
|
1447
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0137.py,sha256=7nxIcQxzS1I7enhaGBiAmNemDpiW2NUejCys7H-y_ew,3190
|
|
1448
1448
|
githubkit/versions/ghec_v2022_11_28/types/group_0138.py,sha256=P7cw2VKtfPXBmyOMN-knFI6UKia6nnfXv5_OiEhbjlw,882
|
|
1449
1449
|
githubkit/versions/ghec_v2022_11_28/types/group_0139.py,sha256=gfwB-Ud_E6hGNFu6LYz22iSk6ekt1e7jPcqYdfsjdp0,880
|
|
1450
1450
|
githubkit/versions/ghec_v2022_11_28/types/group_0140.py,sha256=on7ralOtuQHeSa6NrD2kvl8gyKoS8Mv-c0I0s_eNZm0,460
|
|
@@ -1573,7 +1573,7 @@ githubkit/versions/ghec_v2022_11_28/types/group_0262.py,sha256=QARSMc8rDtmCRTj53
|
|
|
1573
1573
|
githubkit/versions/ghec_v2022_11_28/types/group_0263.py,sha256=F-lAV5UOGN4YhFU0cl8nKp4sehUqQ_YsRCIPL3xsF1c,914
|
|
1574
1574
|
githubkit/versions/ghec_v2022_11_28/types/group_0264.py,sha256=IGMt5TjRcleoipx4zZ6x6F1oYEBto1QQrH3uIcnXo6k,1387
|
|
1575
1575
|
githubkit/versions/ghec_v2022_11_28/types/group_0265.py,sha256=2jIA478RgtZTrZGq4ws-gzZYkNreo9vbBlhguB89lbY,934
|
|
1576
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0266.py,sha256=
|
|
1576
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0266.py,sha256=kkONh6Rfi0irLmYrp3MwI4cMBYPk4HEvhX2Sn8rZtRQ,1311
|
|
1577
1577
|
githubkit/versions/ghec_v2022_11_28/types/group_0267.py,sha256=qMoXOI-7_V-C6QowEylXvMARYFiDUkIKR0vr8zkuuXY,1117
|
|
1578
1578
|
githubkit/versions/ghec_v2022_11_28/types/group_0268.py,sha256=qhexuehxqqAEAcKlfua0iMu0Au5ONFBj_iQ9nCshD4E,728
|
|
1579
1579
|
githubkit/versions/ghec_v2022_11_28/types/group_0269.py,sha256=Ne1HoHVee9edomqITrDx2yQ3Frioscfbd0iGiiTZD1w,488
|
|
@@ -2143,9 +2143,9 @@ githubkit/versions/ghec_v2022_11_28/types/group_0832.py,sha256=pafDEkwqvfC-nxmXy
|
|
|
2143
2143
|
githubkit/versions/ghec_v2022_11_28/types/group_0833.py,sha256=6aqTJoijpZ6Sg_GmxQ9nkzmLN-lORdC9Se9kQW_u2j0,1866
|
|
2144
2144
|
githubkit/versions/ghec_v2022_11_28/types/group_0834.py,sha256=8cDjoG0rmAbBhdJf-zCsqLX-9MGXvhf2ls3t4st12d0,2396
|
|
2145
2145
|
githubkit/versions/ghec_v2022_11_28/types/group_0835.py,sha256=RGFutdJKsz-HoZmYkXR0WOPTQlB22ucb5YZKRJlmvXM,2418
|
|
2146
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0836.py,sha256=
|
|
2147
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0837.py,sha256=
|
|
2148
|
-
githubkit/versions/ghec_v2022_11_28/types/group_0838.py,sha256=
|
|
2146
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0836.py,sha256=ZzlSSnJpFe2cFTsENJAnb4i8VQa-pWLOuD4xmfEfDi4,12438
|
|
2147
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0837.py,sha256=_rfPIDxlAydYHKDRhyFOkFEz9tDULWgDmZCMi10LrGU,12313
|
|
2148
|
+
githubkit/versions/ghec_v2022_11_28/types/group_0838.py,sha256=3qsxHY9VwLeaKuLo1ynzaxmr2XcMiFPpj89aIqlJaJQ,12412
|
|
2149
2149
|
githubkit/versions/ghec_v2022_11_28/types/group_0839.py,sha256=xM52VJEmigwqAfsw6ZjW64ObBWCb1ANNPcBrEa1l15A,1088
|
|
2150
2150
|
githubkit/versions/ghec_v2022_11_28/types/group_0840.py,sha256=08TUYzULhi-Aoicu7mRLTn0jsaIad5EuOlqp-VfVvdA,610
|
|
2151
2151
|
githubkit/versions/ghec_v2022_11_28/types/group_0841.py,sha256=yrYzYOYDLgWP81iyBa8VkF7XBlEkuq7Gi_-HsMGbFXo,592
|
|
@@ -2670,9 +2670,9 @@ githubkit/versions/v2022_11_28/models/group_0040.py,sha256=xYe-lBFJhIn26NI1ZRjr6
|
|
|
2670
2670
|
githubkit/versions/v2022_11_28/models/group_0041.py,sha256=n3sxF8-nhAiaYwRJwvA8drVOMUg8PhVPVrKzZhWE_0g,1846
|
|
2671
2671
|
githubkit/versions/v2022_11_28/models/group_0042.py,sha256=sTjuec7ZS8f1pZydSquJlDRbjZOpCofbeypkb9mz27o,2588
|
|
2672
2672
|
githubkit/versions/v2022_11_28/models/group_0043.py,sha256=LGojUFQqGTyWdeGs4jtYW7RsRZc8XpVJbMQ9dsq6ulQ,3006
|
|
2673
|
-
githubkit/versions/v2022_11_28/models/group_0044.py,sha256=
|
|
2674
|
-
githubkit/versions/v2022_11_28/models/group_0045.py,sha256=
|
|
2675
|
-
githubkit/versions/v2022_11_28/models/group_0046.py,sha256=
|
|
2673
|
+
githubkit/versions/v2022_11_28/models/group_0044.py,sha256=xbtWbe_pJIVejiqdrEhoMx8WZ5LJ4vJRfIJqX2zO1kI,1626
|
|
2674
|
+
githubkit/versions/v2022_11_28/models/group_0045.py,sha256=WdmEOeW4b4QvTYmiW36dBTFyUfuoS_wMI_z_Umifjiw,2401
|
|
2675
|
+
githubkit/versions/v2022_11_28/models/group_0046.py,sha256=4I15M5ZkARX_zLhlNkC-1T0iOjm4ECQLwZ1qq-G8E2c,4617
|
|
2676
2676
|
githubkit/versions/v2022_11_28/models/group_0047.py,sha256=6-BhVcidjyyMC2IigN41qSe97iCA-kVKdrLW5LClK2w,1184
|
|
2677
2677
|
githubkit/versions/v2022_11_28/models/group_0048.py,sha256=BVK2lLU_hwSUbXTHy2eyL1XVLGTViy9TeozkJ9bkzAc,1135
|
|
2678
2678
|
githubkit/versions/v2022_11_28/models/group_0049.py,sha256=ev1XFLzocjBRfmBQW6lFHFebxcnEW2fjVRPuAhsAXXg,552
|
|
@@ -2855,7 +2855,7 @@ githubkit/versions/v2022_11_28/models/group_0225.py,sha256=jP4CtJFSp38Tn68gv_1YD
|
|
|
2855
2855
|
githubkit/versions/v2022_11_28/models/group_0226.py,sha256=O5lXVI78yv8lguD-M-EVrZTyBz7LaGTbJNb_I9GrwNc,1721
|
|
2856
2856
|
githubkit/versions/v2022_11_28/models/group_0227.py,sha256=AopCAxhyLDGroZIyrrRg7k2DZrkYqtdn1r1me-MGU9I,1822
|
|
2857
2857
|
githubkit/versions/v2022_11_28/models/group_0228.py,sha256=DChnXHlQsRtgSxUFWgMx0GDQ9NafIy12ETuaJSNccwQ,2152
|
|
2858
|
-
githubkit/versions/v2022_11_28/models/group_0229.py,sha256=
|
|
2858
|
+
githubkit/versions/v2022_11_28/models/group_0229.py,sha256=7iLcARpxlwAjRbEIwA5k8CRZtbnOU8JOjaUpEGSAhlI,2063
|
|
2859
2859
|
githubkit/versions/v2022_11_28/models/group_0230.py,sha256=AC9svOYVsJnVRewvx_vyx8nAhe3wAy8-KrnOQ_BTQ4g,1689
|
|
2860
2860
|
githubkit/versions/v2022_11_28/models/group_0231.py,sha256=rAzR7I5t-E9Jp7HLrikp13FrQSWEq41ntFasHeVeUGI,1034
|
|
2861
2861
|
githubkit/versions/v2022_11_28/models/group_0232.py,sha256=vNUE6kWsXm2OG_ZyKwj8fInjQefjz7klpUSHDthpmXg,803
|
|
@@ -3404,9 +3404,9 @@ githubkit/versions/v2022_11_28/models/group_0774.py,sha256=aZwGLwVf35Idl5Ro2xwte
|
|
|
3404
3404
|
githubkit/versions/v2022_11_28/models/group_0775.py,sha256=bXwoA2KThwkdWICfNJ_PwNB2mkYEKI8mlKbGJ-iuc00,2769
|
|
3405
3405
|
githubkit/versions/v2022_11_28/models/group_0776.py,sha256=cHa2pO2BI3tYFwxg23DKRhFy_e_Zgpw_iEvqEK-Tljs,4582
|
|
3406
3406
|
githubkit/versions/v2022_11_28/models/group_0777.py,sha256=smPnO-Bjz5UpgnYVtXQ_7Bel7xkquujITLuFr7oQNRU,4623
|
|
3407
|
-
githubkit/versions/v2022_11_28/models/group_0778.py,sha256=
|
|
3408
|
-
githubkit/versions/v2022_11_28/models/group_0779.py,sha256
|
|
3409
|
-
githubkit/versions/v2022_11_28/models/group_0780.py,sha256=
|
|
3407
|
+
githubkit/versions/v2022_11_28/models/group_0778.py,sha256=NVB1quA2SXRmcQm6RnupekFLga6sg7xvIsSUijkvp5g,19457
|
|
3408
|
+
githubkit/versions/v2022_11_28/models/group_0779.py,sha256=-vc6Fp280ommQiVo6sJ66aSo6rCcrdl_sfOKCnQtW_k,19030
|
|
3409
|
+
githubkit/versions/v2022_11_28/models/group_0780.py,sha256=YRI2_BMuKivXFJZuofqtXx6LqZL4nWNaCV_OplETVqU,19254
|
|
3410
3410
|
githubkit/versions/v2022_11_28/models/group_0781.py,sha256=sZocOeD4LwiPwkjBrmHNMcvAshzW-HvEf9TvTNusPBM,1783
|
|
3411
3411
|
githubkit/versions/v2022_11_28/models/group_0782.py,sha256=KOhkozIfc87cQH-_WVmd3jgYlQMZgngFVFcxvOeXxzU,764
|
|
3412
3412
|
githubkit/versions/v2022_11_28/models/group_0783.py,sha256=UHYXyHQFHjk5KwbqUtmbS0e-y7LrAkzfyMOoGZqOJD8,1263
|
|
@@ -3849,9 +3849,9 @@ githubkit/versions/v2022_11_28/types/group_0040.py,sha256=eiW_Y6b100TP-ujxghaGm6
|
|
|
3849
3849
|
githubkit/versions/v2022_11_28/types/group_0041.py,sha256=6ubWM3RLrjxs-_jk4fgMvat4XcMWDMxOhgZW5QP4Sbw,1256
|
|
3850
3850
|
githubkit/versions/v2022_11_28/types/group_0042.py,sha256=xqrYkel9j36zBHVcubeNefkRkqkVJvYiz4kO6vLitAk,1672
|
|
3851
3851
|
githubkit/versions/v2022_11_28/types/group_0043.py,sha256=v_5H_CmHk-H-HU649D38XK2RESkPIIEcWlncab42xjY,1621
|
|
3852
|
-
githubkit/versions/v2022_11_28/types/group_0044.py,sha256=
|
|
3853
|
-
githubkit/versions/v2022_11_28/types/group_0045.py,sha256=
|
|
3854
|
-
githubkit/versions/v2022_11_28/types/group_0046.py,sha256=
|
|
3852
|
+
githubkit/versions/v2022_11_28/types/group_0044.py,sha256=icuJJ-7b2JX2rsk5l6j_ouR9OmpAZX1pHOiGO4Gq3kY,1150
|
|
3853
|
+
githubkit/versions/v2022_11_28/types/group_0045.py,sha256=Qb-g6tUKxKJXzJrRZKNFocXcXxOSNFph_eFsZ_sR1Pw,1764
|
|
3854
|
+
githubkit/versions/v2022_11_28/types/group_0046.py,sha256=THlLtk2I381mddjfXMFcOToOUruacqOPted8GCpXKnE,3190
|
|
3855
3855
|
githubkit/versions/v2022_11_28/types/group_0047.py,sha256=P7cw2VKtfPXBmyOMN-knFI6UKia6nnfXv5_OiEhbjlw,882
|
|
3856
3856
|
githubkit/versions/v2022_11_28/types/group_0048.py,sha256=gfwB-Ud_E6hGNFu6LYz22iSk6ekt1e7jPcqYdfsjdp0,880
|
|
3857
3857
|
githubkit/versions/v2022_11_28/types/group_0049.py,sha256=on7ralOtuQHeSa6NrD2kvl8gyKoS8Mv-c0I0s_eNZm0,460
|
|
@@ -4034,7 +4034,7 @@ githubkit/versions/v2022_11_28/types/group_0225.py,sha256=aTPecQYfe04yYIcEnFMuiE
|
|
|
4034
4034
|
githubkit/versions/v2022_11_28/types/group_0226.py,sha256=2qr-0lXbcsz9hKU4fhNg0kMzr5U9iAdao1rvDe-xnJw,914
|
|
4035
4035
|
githubkit/versions/v2022_11_28/types/group_0227.py,sha256=85YSFxcQ6lk8lG0pGjIORN_utrMHFy05S7upVINozNI,1387
|
|
4036
4036
|
githubkit/versions/v2022_11_28/types/group_0228.py,sha256=8v9TV6ODUkTSzEc7ps2ak3XPJIHtmrsePzBRdLcQN9c,934
|
|
4037
|
-
githubkit/versions/v2022_11_28/types/group_0229.py,sha256=
|
|
4037
|
+
githubkit/versions/v2022_11_28/types/group_0229.py,sha256=kkONh6Rfi0irLmYrp3MwI4cMBYPk4HEvhX2Sn8rZtRQ,1311
|
|
4038
4038
|
githubkit/versions/v2022_11_28/types/group_0230.py,sha256=qMoXOI-7_V-C6QowEylXvMARYFiDUkIKR0vr8zkuuXY,1117
|
|
4039
4039
|
githubkit/versions/v2022_11_28/types/group_0231.py,sha256=qhexuehxqqAEAcKlfua0iMu0Au5ONFBj_iQ9nCshD4E,728
|
|
4040
4040
|
githubkit/versions/v2022_11_28/types/group_0232.py,sha256=Ne1HoHVee9edomqITrDx2yQ3Frioscfbd0iGiiTZD1w,488
|
|
@@ -4583,9 +4583,9 @@ githubkit/versions/v2022_11_28/types/group_0774.py,sha256=pafDEkwqvfC-nxmXyNbG9x
|
|
|
4583
4583
|
githubkit/versions/v2022_11_28/types/group_0775.py,sha256=6aqTJoijpZ6Sg_GmxQ9nkzmLN-lORdC9Se9kQW_u2j0,1866
|
|
4584
4584
|
githubkit/versions/v2022_11_28/types/group_0776.py,sha256=DiWanmmXE5U8FeHxKjiP5xizXY2QQveaq049j_qlC9A,2396
|
|
4585
4585
|
githubkit/versions/v2022_11_28/types/group_0777.py,sha256=veTsJDg34gUG3QOrwXNhZQeti18yjl4q2MtUkGPfBlA,2418
|
|
4586
|
-
githubkit/versions/v2022_11_28/types/group_0778.py,sha256=
|
|
4587
|
-
githubkit/versions/v2022_11_28/types/group_0779.py,sha256=
|
|
4588
|
-
githubkit/versions/v2022_11_28/types/group_0780.py,sha256=
|
|
4586
|
+
githubkit/versions/v2022_11_28/types/group_0778.py,sha256=AMMINQIivMZmV64m-g1t3-0zB3hgeID3l_WZQf6CsM0,12438
|
|
4587
|
+
githubkit/versions/v2022_11_28/types/group_0779.py,sha256=iMUH_rUwCD8jQ47CfRWCMvhCetd1GJuRktC8j-Mzyw0,12313
|
|
4588
|
+
githubkit/versions/v2022_11_28/types/group_0780.py,sha256=sDEf-Acy3CEDABjs2MTZCtLJ8xi25pj98LJV8PRmKKU,12412
|
|
4589
4589
|
githubkit/versions/v2022_11_28/types/group_0781.py,sha256=xM52VJEmigwqAfsw6ZjW64ObBWCb1ANNPcBrEa1l15A,1088
|
|
4590
4590
|
githubkit/versions/v2022_11_28/types/group_0782.py,sha256=08TUYzULhi-Aoicu7mRLTn0jsaIad5EuOlqp-VfVvdA,610
|
|
4591
4591
|
githubkit/versions/v2022_11_28/types/group_0783.py,sha256=yrYzYOYDLgWP81iyBa8VkF7XBlEkuq7Gi_-HsMGbFXo,592
|
|
@@ -5024,7 +5024,7 @@ githubkit/versions/v2022_11_28/webhooks/workflow_job.py,sha256=OqbBp1FJTKGrYcToG
|
|
|
5024
5024
|
githubkit/versions/v2022_11_28/webhooks/workflow_run.py,sha256=4KudCBilrMQMy4adDoDPl8MajkCMEFHYJTJT7U59Hbg,1040
|
|
5025
5025
|
githubkit/versions/webhooks.py,sha256=WWdXh8JPdNX3Ohz7M_pxoMBb3Hh101BrmvTyawniuj0,1820
|
|
5026
5026
|
githubkit/webhooks/__init__.py,sha256=nysPfT_VIiTS1VBw3-1NJ-1-MZiDUllNL1slNuYo5dc,386
|
|
5027
|
-
githubkit-0.12.
|
|
5028
|
-
githubkit-0.12.
|
|
5029
|
-
githubkit-0.12.
|
|
5030
|
-
githubkit-0.12.
|
|
5027
|
+
githubkit-0.12.4.dist-info/LICENSE,sha256=UEHBN69sLTXotNNzfRixnjtFlFw7GKq0agUkR06lnUA,1066
|
|
5028
|
+
githubkit-0.12.4.dist-info/METADATA,sha256=ikm_-2E4CyEgpDVF47eebkwFsuKEVwgZv3KbjCdfhco,5158
|
|
5029
|
+
githubkit-0.12.4.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
|
5030
|
+
githubkit-0.12.4.dist-info/RECORD,,
|
|
File without changes
|