Skip to content

Commit 65cf1b8

Browse files
committed
fix(typescript): replace duplicated keys in method and parameter/response types
1 parent 72f6e0c commit 65cf1b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/generated/method-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3250,7 +3250,7 @@ export type RestEndpointMethods = {
32503250
* * `large_files_count` - the total number of files larger than 100MB found in the originating repository. To see a list of these files, make a "Get Large Files" request.
32513251
* @deprecated octokit.migrations.getImportProgress() has been renamed to octokit.migrations.getImportStatus() (2020-06-01)
32523252
*/
3253-
getImportStatus: {
3253+
getImportProgress: {
32543254
(
32553255
params?: RestEndpointMethodTypes["migrations"]["getImportStatus"]["parameters"]
32563256
): Promise<

src/generated/parameters-and-response-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2056,7 +2056,7 @@ export type RestEndpointMethodTypes = {
20562056
>;
20572057
response: Endpoints["GET /repos/:owner/:repo/import"]["response"];
20582058
};
2059-
getImportStatus: {
2059+
getImportProgress: {
20602060
parameters: RequestParameters &
20612061
Omit<
20622062
Endpoints["GET /repos/:owner/:repo/import"]["parameters"],

0 commit comments

Comments
 (0)