Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
333,622 changes: 333,622 additions & 0 deletions api.github.com.2026-03-10.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions githubkit/versions/ghec_v2022_11_28/models/group_0477.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class PagesDeploymentStatus(GitHubModel):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
] = Field(default=UNSET, description="The current status of the deployment.")

Expand Down
2 changes: 2 additions & 0 deletions githubkit/versions/ghec_v2022_11_28/types/group_0477.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class PagesDeploymentStatusType(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand All @@ -49,6 +50,7 @@ class PagesDeploymentStatusTypeForResponse(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand Down
1 change: 1 addition & 0 deletions githubkit/versions/ghec_v2026_03_10/models/group_0475.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class PagesDeploymentStatus(GitHubModel):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
] = Field(default=UNSET, description="The current status of the deployment.")

Expand Down
2 changes: 2 additions & 0 deletions githubkit/versions/ghec_v2026_03_10/types/group_0475.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class PagesDeploymentStatusType(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand All @@ -49,6 +50,7 @@ class PagesDeploymentStatusTypeForResponse(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand Down
1 change: 1 addition & 0 deletions githubkit/versions/v2022_11_28/models/group_0406.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class PagesDeploymentStatus(GitHubModel):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
] = Field(default=UNSET, description="The current status of the deployment.")

Expand Down
2 changes: 2 additions & 0 deletions githubkit/versions/v2022_11_28/types/group_0406.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class PagesDeploymentStatusType(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand All @@ -49,6 +50,7 @@ class PagesDeploymentStatusTypeForResponse(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand Down
1 change: 1 addition & 0 deletions githubkit/versions/v2026_03_10/models/group_0404.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class PagesDeploymentStatus(GitHubModel):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
] = Field(default=UNSET, description="The current status of the deployment.")

Expand Down
2 changes: 2 additions & 0 deletions githubkit/versions/v2026_03_10/types/group_0404.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class PagesDeploymentStatusType(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand All @@ -49,6 +50,7 @@ class PagesDeploymentStatusTypeForResponse(TypedDict):
"deployment_attempt_error",
"deployment_lost",
"succeed",
"deployment_queued",
]
]

Expand Down
1 change: 1 addition & 0 deletions githubkit/versions/versions.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ source = "https://raw.githubusercontent.com/github/rest-api-description/d3a3c2a5
"/components/schemas/team-organization/properties/location" = {type = ["string", "null"]}
"/components/schemas/team-organization/properties/name" = {type = ["string", "null"]}
"/components/schemas/team-organization/properties/blog" = {type = ["string", "null"]}
"/components/schemas/pages-deployment-status/properties/status/enum" = {"<add>" = ["deployment_queued"]}
"/components/schemas/git-user/properties/date" = {format = "date-time"}
"/components/schemas/verification/required" = {"<remove>" = ["verified_at"]}
"/components/schemas/diff-entry/properties/blob_url" = {type = ["string", "null"]}
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ source = "descriptions-next/ghec/ghec.2026-03-10.json"
], "$ref" = "<unset>" }

# https://github.com/yanyongyu/githubkit/issues/293
"/components/schemas/repo-search-result-item/required" = { "<remove>" = ["has_downloads"] }
"/components/schemas/repo-search-result-item/required" = { "<remove>" = [
"has_downloads",
] }

# https://github.com/github/rest-api-description/issues/2491
"/components/schemas/auto-merge/properties/commit_title" = { type = [
Expand Down Expand Up @@ -387,6 +389,11 @@ source = "descriptions-next/ghec/ghec.2026-03-10.json"
"null",
] }

# https://github.com/yanyongyu/githubkit/issues/299
"/components/schemas/pages-deployment-status/properties/status/enum" = { "<add>" = [
"deployment_queued",
] }

# https://github.com/yanyongyu/githubkit/issues/199
# https://github.com/github/rest-api-description/issues/4697
# git user date format should be date-time
Expand Down
Loading