@@ -11,7 +11,30 @@ export namespace OctokitCommon {
1111 export type IssuesCreateResponseData = OctokitRest . RestEndpointMethodTypes [ 'issues' ] [ 'create' ] [ 'response' ] [ 'data' ] ;
1212 export type IssuesListCommentsResponseData = OctokitRest . RestEndpointMethodTypes [ 'issues' ] [ 'listComments' ] [ 'response' ] [ 'data' ] ;
1313 export type IssuesListEventsForTimelineResponseData = Endpoints [ 'GET /repos/{owner}/{repo}/issues/{issue_number}/timeline' ] [ 'response' ] [ 'data' ] ;
14- export type IssuesListEventsForTimelineResponseItemActor = IssuesListEventsForTimelineResponseData [ 0 ] [ 'actor' ] ;
14+ export type IssuesListEventsForTimelineResponseItemActor = {
15+ name ?: string | null ;
16+ email ?: string | null ;
17+ login : string ;
18+ id : number ;
19+ node_id : string ;
20+ avatar_url : string ;
21+ gravatar_id : string ;
22+ url : string ;
23+ html_url : string ;
24+ followers_url : string ;
25+ following_url : string ;
26+ gists_url : string ;
27+ starred_url : string ;
28+ subscriptions_url : string ;
29+ organizations_url : string ;
30+ repos_url : string ;
31+ events_url : string ;
32+ received_events_url : string ;
33+ type : string ;
34+ site_admin : boolean ;
35+ starred_at : string ;
36+ user_view_type : string ;
37+ }
1538 export type PullsCreateParams = OctokitRest . RestEndpointMethodTypes [ 'pulls' ] [ 'create' ] [ 'parameters' ] ;
1639 export type PullsCreateReviewResponseData = Endpoints [ 'POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews' ] [ 'response' ] [ 'data' ] ;
1740 export type PullsCreateReviewCommentResponseData = Endpoints [ 'POST /repos/{owner}/{repo}/pulls/{pull_number}/comments' ] [ 'response' ] [ 'data' ] ;
@@ -33,7 +56,6 @@ export namespace OctokitCommon {
3356 export type PullsListResponseItemHeadUser = PullsListResponseItemHead [ 'user' ] ;
3457 export type PullsListResponseItemHeadRepoOwner = PullsListResponseItemHead [ 'repo' ] [ 'owner' ] ;
3558 export type PullsListReviewRequestsResponseTeamsItem = Endpoints [ 'GET /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers' ] [ 'response' ] [ 'data' ] [ 'teams' ] [ 0 ] ;
36- export type PullsListResponseItemHeadRepoTemplateRepository = PullsListResponseItem [ 'head' ] [ 'repo' ] [ 'template_repository' ] ;
3759 export type PullsListCommitsResponseItem = Endpoints [ 'GET /repos/{owner}/{repo}/pulls/{pull_number}/commits' ] [ 'response' ] [ 'data' ] [ 0 ] ;
3860 export type ReposCompareCommitsResponseData = OctokitRest . RestEndpointMethodTypes [ 'repos' ] [ 'compareCommits' ] [ 'response' ] [ 'data' ] ;
3961 export type ReposGetCombinedStatusForRefResponseStatusesItem = Endpoints [ 'GET /repos/{owner}/{repo}/commits/{ref}/status' ] [ 'response' ] [ 'data' ] [ 'statuses' ] [ 0 ] ;
@@ -46,7 +68,7 @@ export namespace OctokitCommon {
4668 export type SearchReposResponseItem = Endpoints [ 'GET /search/repositories' ] [ 'response' ] [ 'data' ] [ 'items' ] [ 0 ] ;
4769 export type CompareCommits = Endpoints [ 'GET /repos/{owner}/{repo}/compare/{base}...{head}' ] [ 'response' ] [ 'data' ] ;
4870 export type Commit = CompareCommits [ 'commits' ] [ 0 ] ;
49- export type CommitFile = CompareCommits [ 'files' ] [ 0 ] ;
71+ export type CommitFiles = CompareCommits [ 'files' ]
5072 export type Notification = Endpoints [ 'GET /notifications' ] [ 'response' ] [ 'data' ] [ 0 ] ;
5173}
5274
0 commit comments