Skip to content

Commit 80bb844

Browse files
authored
fix: POST /repos/{owner}/{repo}/deployments (repos/create-deployment) does not accept a created_at parameter (#79)
1 parent f902742 commit 80bb844

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

cache/openapi-schema.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"openapi": "3.0.3",
33
"info": {
4-
"version": "2.17.0",
4+
"version": "2.17.1",
55
"title": "GitHub's official OpenAPI spec + Octokit extension",
66
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
77
"license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
@@ -20456,10 +20456,6 @@
2045620456
"production_environment": {
2045720457
"type": "boolean",
2045820458
"description": "Specifies if the given environment is one that end-users directly interact with. Default: `true` when `environment` is `production` and `false` otherwise. \n**Note:** This parameter requires you to use the [`application/vnd.github.ant-man-preview+json`](https://docs.github.com/rest/overview/api-previews#enhanced-deployments) custom media type."
20459-
},
20460-
"created_at": {
20461-
"type": "string",
20462-
"example": "\"1776-07-04T00:00:00.000-07:52\""
2046320459
}
2046420460
},
2046520461
"required": ["ref"]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
]
5454
},
5555
"octokit": {
56-
"openapi-version": "2.17.0"
56+
"openapi-version": "2.17.1"
5757
},
5858
"@pika/pack": {
5959
"pipeline": [

src/generated/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22056,7 +22056,6 @@ export interface operations {
2205622056
* **Note:** This parameter requires you to use the [`application/vnd.github.ant-man-preview+json`](https://docs.github.com/rest/overview/api-previews#enhanced-deployments) custom media type.
2205722057
*/
2205822058
production_environment?: boolean;
22059-
created_at?: string;
2206022059
};
2206122060
};
2206222061
};

0 commit comments

Comments
 (0)