@tomsd/github-repo-js 0.2.4 → 0.2.5

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.
@@ -9,18 +9,78 @@ export declare function readyGitHubRepositoryPull(token: string): {
9
9
  comments_url: string;
10
10
  commit: {
11
11
  url: string;
12
- author: import("@octokit/openapi-types").components["schemas"]["nullable-git-user"];
13
- committer: import("@octokit/openapi-types").components["schemas"]["nullable-git-user"];
12
+ author: {
13
+ name?: string;
14
+ email?: string;
15
+ date?: string;
16
+ } | null;
17
+ committer: {
18
+ name?: string;
19
+ email?: string;
20
+ date?: string;
21
+ } | null;
14
22
  message: string;
15
23
  comment_count: number;
16
24
  tree: {
17
25
  sha: string;
18
26
  url: string;
19
27
  };
20
- verification?: import("@octokit/openapi-types").components["schemas"]["verification"];
28
+ verification?: {
29
+ verified: boolean;
30
+ reason: string;
31
+ payload: string | null;
32
+ signature: string | null;
33
+ verified_at: string | null;
34
+ };
21
35
  };
22
- author: import("@octokit/openapi-types").components["schemas"]["simple-user"] | import("@octokit/openapi-types").components["schemas"]["empty-object"] | null;
23
- committer: import("@octokit/openapi-types").components["schemas"]["simple-user"] | import("@octokit/openapi-types").components["schemas"]["empty-object"] | null;
36
+ author: {
37
+ name?: string | null;
38
+ email?: string | null;
39
+ login: string;
40
+ id: number;
41
+ node_id: string;
42
+ avatar_url: string;
43
+ gravatar_id: string | null;
44
+ url: string;
45
+ html_url: string;
46
+ followers_url: string;
47
+ following_url: string;
48
+ gists_url: string;
49
+ starred_url: string;
50
+ subscriptions_url: string;
51
+ organizations_url: string;
52
+ repos_url: string;
53
+ events_url: string;
54
+ received_events_url: string;
55
+ type: string;
56
+ site_admin: boolean;
57
+ starred_at?: string;
58
+ user_view_type?: string;
59
+ } | Record<string, never> | null;
60
+ committer: {
61
+ name?: string | null;
62
+ email?: string | null;
63
+ login: string;
64
+ id: number;
65
+ node_id: string;
66
+ avatar_url: string;
67
+ gravatar_id: string | null;
68
+ url: string;
69
+ html_url: string;
70
+ followers_url: string;
71
+ following_url: string;
72
+ gists_url: string;
73
+ starred_url: string;
74
+ subscriptions_url: string;
75
+ organizations_url: string;
76
+ repos_url: string;
77
+ events_url: string;
78
+ received_events_url: string;
79
+ type: string;
80
+ site_admin: boolean;
81
+ starred_at?: string;
82
+ user_view_type?: string;
83
+ } | Record<string, never> | null;
24
84
  parents: {
25
85
  sha: string;
26
86
  url: string;
@@ -31,17 +91,157 @@ export declare function readyGitHubRepositoryPull(token: string): {
31
91
  deletions?: number;
32
92
  total?: number;
33
93
  };
34
- files?: import("@octokit/openapi-types").components["schemas"]["diff-entry"][];
94
+ files?: {
95
+ sha: string | null;
96
+ filename: string;
97
+ status: "added" | "removed" | "modified" | "renamed" | "copied" | "changed" | "unchanged";
98
+ additions: number;
99
+ deletions: number;
100
+ changes: number;
101
+ blob_url: string;
102
+ raw_url: string;
103
+ contents_url: string;
104
+ patch?: string;
105
+ previous_filename?: string;
106
+ }[];
35
107
  }[]>;
36
108
  getReviewers(): Promise<{
37
- users: import("@octokit/openapi-types").components["schemas"]["simple-user"][];
38
- teams: import("@octokit/openapi-types").components["schemas"]["team"][];
109
+ users: {
110
+ name?: string | null;
111
+ email?: string | null;
112
+ login: string;
113
+ id: number;
114
+ node_id: string;
115
+ avatar_url: string;
116
+ gravatar_id: string | null;
117
+ url: string;
118
+ html_url: string;
119
+ followers_url: string;
120
+ following_url: string;
121
+ gists_url: string;
122
+ starred_url: string;
123
+ subscriptions_url: string;
124
+ organizations_url: string;
125
+ repos_url: string;
126
+ events_url: string;
127
+ received_events_url: string;
128
+ type: string;
129
+ site_admin: boolean;
130
+ starred_at?: string;
131
+ user_view_type?: string;
132
+ }[];
133
+ teams: {
134
+ id: number;
135
+ node_id: string;
136
+ name: string;
137
+ slug: string;
138
+ description: string | null;
139
+ privacy?: string;
140
+ notification_setting?: string;
141
+ permission: string;
142
+ permissions?: {
143
+ pull: boolean;
144
+ triage: boolean;
145
+ push: boolean;
146
+ maintain: boolean;
147
+ admin: boolean;
148
+ };
149
+ url: string;
150
+ html_url: string;
151
+ members_url: string;
152
+ repositories_url: string;
153
+ type: "enterprise" | "organization";
154
+ organization_id?: number;
155
+ enterprise_id?: number;
156
+ parent: {
157
+ id: number;
158
+ node_id: string;
159
+ url: string;
160
+ members_url: string;
161
+ name: string;
162
+ description: string | null;
163
+ permission: string;
164
+ privacy?: string;
165
+ notification_setting?: string;
166
+ html_url: string;
167
+ repositories_url: string;
168
+ slug: string;
169
+ ldap_dn?: string;
170
+ type: "enterprise" | "organization";
171
+ organization_id?: number;
172
+ enterprise_id?: number;
173
+ } | null;
174
+ }[];
39
175
  }>;
40
176
  postReviewers(body: {
41
177
  data: never;
42
178
  }): Promise<{
43
- users: import("@octokit/openapi-types").components["schemas"]["simple-user"][];
44
- teams: import("@octokit/openapi-types").components["schemas"]["team"][];
179
+ users: {
180
+ name?: string | null;
181
+ email?: string | null;
182
+ login: string;
183
+ id: number;
184
+ node_id: string;
185
+ avatar_url: string;
186
+ gravatar_id: string | null;
187
+ url: string;
188
+ html_url: string;
189
+ followers_url: string;
190
+ following_url: string;
191
+ gists_url: string;
192
+ starred_url: string;
193
+ subscriptions_url: string;
194
+ organizations_url: string;
195
+ repos_url: string;
196
+ events_url: string;
197
+ received_events_url: string;
198
+ type: string;
199
+ site_admin: boolean;
200
+ starred_at?: string;
201
+ user_view_type?: string;
202
+ }[];
203
+ teams: {
204
+ id: number;
205
+ node_id: string;
206
+ name: string;
207
+ slug: string;
208
+ description: string | null;
209
+ privacy?: string;
210
+ notification_setting?: string;
211
+ permission: string;
212
+ permissions?: {
213
+ pull: boolean;
214
+ triage: boolean;
215
+ push: boolean;
216
+ maintain: boolean;
217
+ admin: boolean;
218
+ };
219
+ url: string;
220
+ html_url: string;
221
+ members_url: string;
222
+ repositories_url: string;
223
+ type: "enterprise" | "organization";
224
+ organization_id?: number;
225
+ enterprise_id?: number;
226
+ parent: {
227
+ id: number;
228
+ node_id: string;
229
+ url: string;
230
+ members_url: string;
231
+ name: string;
232
+ description: string | null;
233
+ permission: string;
234
+ privacy?: string;
235
+ notification_setting?: string;
236
+ html_url: string;
237
+ repositories_url: string;
238
+ slug: string;
239
+ ldap_dn?: string;
240
+ type: "enterprise" | "organization";
241
+ organization_id?: number;
242
+ enterprise_id?: number;
243
+ } | null;
244
+ }[];
45
245
  }>;
46
246
  pullNumber: number;
47
247
  owner: string;
@@ -71,7 +271,30 @@ export declare function readyGitHubRepositoryPull(token: string): {
71
271
  state: "open" | "closed";
72
272
  locked: boolean;
73
273
  title: string;
74
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
274
+ user: {
275
+ name?: string | null;
276
+ email?: string | null;
277
+ login: string;
278
+ id: number;
279
+ node_id: string;
280
+ avatar_url: string;
281
+ gravatar_id: string | null;
282
+ url: string;
283
+ html_url: string;
284
+ followers_url: string;
285
+ following_url: string;
286
+ gists_url: string;
287
+ starred_url: string;
288
+ subscriptions_url: string;
289
+ organizations_url: string;
290
+ repos_url: string;
291
+ events_url: string;
292
+ received_events_url: string;
293
+ type: string;
294
+ site_admin: boolean;
295
+ starred_at?: string;
296
+ user_view_type?: string;
297
+ };
75
298
  body: string | null;
76
299
  labels: {
77
300
  id: number;
@@ -82,49 +305,560 @@ export declare function readyGitHubRepositoryPull(token: string): {
82
305
  color: string;
83
306
  default: boolean;
84
307
  }[];
85
- milestone: import("@octokit/openapi-types").components["schemas"]["nullable-milestone"];
308
+ milestone: {
309
+ url: string;
310
+ html_url: string;
311
+ labels_url: string;
312
+ id: number;
313
+ node_id: string;
314
+ number: number;
315
+ state: "open" | "closed";
316
+ title: string;
317
+ description: string | null;
318
+ creator: {
319
+ name?: string | null;
320
+ email?: string | null;
321
+ login: string;
322
+ id: number;
323
+ node_id: string;
324
+ avatar_url: string;
325
+ gravatar_id: string | null;
326
+ url: string;
327
+ html_url: string;
328
+ followers_url: string;
329
+ following_url: string;
330
+ gists_url: string;
331
+ starred_url: string;
332
+ subscriptions_url: string;
333
+ organizations_url: string;
334
+ repos_url: string;
335
+ events_url: string;
336
+ received_events_url: string;
337
+ type: string;
338
+ site_admin: boolean;
339
+ starred_at?: string;
340
+ user_view_type?: string;
341
+ } | null;
342
+ open_issues: number;
343
+ closed_issues: number;
344
+ created_at: string;
345
+ updated_at: string;
346
+ closed_at: string | null;
347
+ due_on: string | null;
348
+ } | null;
86
349
  active_lock_reason?: string | null;
87
350
  created_at: string;
88
351
  updated_at: string;
89
352
  closed_at: string | null;
90
353
  merged_at: string | null;
91
354
  merge_commit_sha: string | null;
92
- assignee: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
93
- assignees?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
94
- requested_reviewers?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
95
- requested_teams?: import("@octokit/openapi-types").components["schemas"]["team-simple"][] | null;
355
+ assignee: {
356
+ name?: string | null;
357
+ email?: string | null;
358
+ login: string;
359
+ id: number;
360
+ node_id: string;
361
+ avatar_url: string;
362
+ gravatar_id: string | null;
363
+ url: string;
364
+ html_url: string;
365
+ followers_url: string;
366
+ following_url: string;
367
+ gists_url: string;
368
+ starred_url: string;
369
+ subscriptions_url: string;
370
+ organizations_url: string;
371
+ repos_url: string;
372
+ events_url: string;
373
+ received_events_url: string;
374
+ type: string;
375
+ site_admin: boolean;
376
+ starred_at?: string;
377
+ user_view_type?: string;
378
+ } | null;
379
+ assignees?: {
380
+ name?: string | null;
381
+ email?: string | null;
382
+ login: string;
383
+ id: number;
384
+ node_id: string;
385
+ avatar_url: string;
386
+ gravatar_id: string | null;
387
+ url: string;
388
+ html_url: string;
389
+ followers_url: string;
390
+ following_url: string;
391
+ gists_url: string;
392
+ starred_url: string;
393
+ subscriptions_url: string;
394
+ organizations_url: string;
395
+ repos_url: string;
396
+ events_url: string;
397
+ received_events_url: string;
398
+ type: string;
399
+ site_admin: boolean;
400
+ starred_at?: string;
401
+ user_view_type?: string;
402
+ }[] | null;
403
+ requested_reviewers?: {
404
+ name?: string | null;
405
+ email?: string | null;
406
+ login: string;
407
+ id: number;
408
+ node_id: string;
409
+ avatar_url: string;
410
+ gravatar_id: string | null;
411
+ url: string;
412
+ html_url: string;
413
+ followers_url: string;
414
+ following_url: string;
415
+ gists_url: string;
416
+ starred_url: string;
417
+ subscriptions_url: string;
418
+ organizations_url: string;
419
+ repos_url: string;
420
+ events_url: string;
421
+ received_events_url: string;
422
+ type: string;
423
+ site_admin: boolean;
424
+ starred_at?: string;
425
+ user_view_type?: string;
426
+ }[] | null;
427
+ requested_teams?: {
428
+ id: number;
429
+ node_id: string;
430
+ url: string;
431
+ members_url: string;
432
+ name: string;
433
+ description: string | null;
434
+ permission: string;
435
+ privacy?: string;
436
+ notification_setting?: string;
437
+ html_url: string;
438
+ repositories_url: string;
439
+ slug: string;
440
+ ldap_dn?: string;
441
+ type: "enterprise" | "organization";
442
+ organization_id?: number;
443
+ enterprise_id?: number;
444
+ }[] | null;
96
445
  head: {
97
446
  label: string;
98
447
  ref: string;
99
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
448
+ repo: {
449
+ id: number;
450
+ node_id: string;
451
+ name: string;
452
+ full_name: string;
453
+ license: {
454
+ key: string;
455
+ name: string;
456
+ url: string | null;
457
+ spdx_id: string | null;
458
+ node_id: string;
459
+ html_url?: string;
460
+ } | null;
461
+ forks: number;
462
+ permissions?: {
463
+ admin: boolean;
464
+ pull: boolean;
465
+ triage?: boolean;
466
+ push: boolean;
467
+ maintain?: boolean;
468
+ };
469
+ owner: {
470
+ name?: string | null;
471
+ email?: string | null;
472
+ login: string;
473
+ id: number;
474
+ node_id: string;
475
+ avatar_url: string;
476
+ gravatar_id: string | null;
477
+ url: string;
478
+ html_url: string;
479
+ followers_url: string;
480
+ following_url: string;
481
+ gists_url: string;
482
+ starred_url: string;
483
+ subscriptions_url: string;
484
+ organizations_url: string;
485
+ repos_url: string;
486
+ events_url: string;
487
+ received_events_url: string;
488
+ type: string;
489
+ site_admin: boolean;
490
+ starred_at?: string;
491
+ user_view_type?: string;
492
+ };
493
+ private: boolean;
494
+ html_url: string;
495
+ description: string | null;
496
+ fork: boolean;
497
+ url: string;
498
+ archive_url: string;
499
+ assignees_url: string;
500
+ blobs_url: string;
501
+ branches_url: string;
502
+ collaborators_url: string;
503
+ comments_url: string;
504
+ commits_url: string;
505
+ compare_url: string;
506
+ contents_url: string;
507
+ contributors_url: string;
508
+ deployments_url: string;
509
+ downloads_url: string;
510
+ events_url: string;
511
+ forks_url: string;
512
+ git_commits_url: string;
513
+ git_refs_url: string;
514
+ git_tags_url: string;
515
+ git_url: string;
516
+ issue_comment_url: string;
517
+ issue_events_url: string;
518
+ issues_url: string;
519
+ keys_url: string;
520
+ labels_url: string;
521
+ languages_url: string;
522
+ merges_url: string;
523
+ milestones_url: string;
524
+ notifications_url: string;
525
+ pulls_url: string;
526
+ releases_url: string;
527
+ ssh_url: string;
528
+ stargazers_url: string;
529
+ statuses_url: string;
530
+ subscribers_url: string;
531
+ subscription_url: string;
532
+ tags_url: string;
533
+ teams_url: string;
534
+ trees_url: string;
535
+ clone_url: string;
536
+ mirror_url: string | null;
537
+ hooks_url: string;
538
+ svn_url: string;
539
+ homepage: string | null;
540
+ language: string | null;
541
+ forks_count: number;
542
+ stargazers_count: number;
543
+ watchers_count: number;
544
+ size: number;
545
+ default_branch: string;
546
+ open_issues_count: number;
547
+ is_template?: boolean;
548
+ topics?: string[];
549
+ has_issues: boolean;
550
+ has_projects: boolean;
551
+ has_wiki: boolean;
552
+ has_pages: boolean;
553
+ has_downloads: boolean;
554
+ has_discussions?: boolean;
555
+ archived: boolean;
556
+ disabled: boolean;
557
+ visibility?: string;
558
+ pushed_at: string | null;
559
+ created_at: string | null;
560
+ updated_at: string | null;
561
+ allow_rebase_merge?: boolean;
562
+ temp_clone_token?: string;
563
+ allow_squash_merge?: boolean;
564
+ allow_auto_merge?: boolean;
565
+ delete_branch_on_merge?: boolean;
566
+ allow_update_branch?: boolean;
567
+ use_squash_pr_title_as_default?: boolean;
568
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
569
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
570
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
571
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
572
+ allow_merge_commit?: boolean;
573
+ allow_forking?: boolean;
574
+ web_commit_signoff_required?: boolean;
575
+ open_issues: number;
576
+ watchers: number;
577
+ master_branch?: string;
578
+ starred_at?: string;
579
+ anonymous_access_enabled?: boolean;
580
+ code_search_index_status?: {
581
+ lexical_search_ok?: boolean;
582
+ lexical_commit_sha?: string;
583
+ };
584
+ };
100
585
  sha: string;
101
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
586
+ user: {
587
+ name?: string | null;
588
+ email?: string | null;
589
+ login: string;
590
+ id: number;
591
+ node_id: string;
592
+ avatar_url: string;
593
+ gravatar_id: string | null;
594
+ url: string;
595
+ html_url: string;
596
+ followers_url: string;
597
+ following_url: string;
598
+ gists_url: string;
599
+ starred_url: string;
600
+ subscriptions_url: string;
601
+ organizations_url: string;
602
+ repos_url: string;
603
+ events_url: string;
604
+ received_events_url: string;
605
+ type: string;
606
+ site_admin: boolean;
607
+ starred_at?: string;
608
+ user_view_type?: string;
609
+ };
102
610
  };
103
611
  base: {
104
612
  label: string;
105
613
  ref: string;
106
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
614
+ repo: {
615
+ id: number;
616
+ node_id: string;
617
+ name: string;
618
+ full_name: string;
619
+ license: {
620
+ key: string;
621
+ name: string;
622
+ url: string | null;
623
+ spdx_id: string | null;
624
+ node_id: string;
625
+ html_url?: string;
626
+ } | null;
627
+ forks: number;
628
+ permissions?: {
629
+ admin: boolean;
630
+ pull: boolean;
631
+ triage?: boolean;
632
+ push: boolean;
633
+ maintain?: boolean;
634
+ };
635
+ owner: {
636
+ name?: string | null;
637
+ email?: string | null;
638
+ login: string;
639
+ id: number;
640
+ node_id: string;
641
+ avatar_url: string;
642
+ gravatar_id: string | null;
643
+ url: string;
644
+ html_url: string;
645
+ followers_url: string;
646
+ following_url: string;
647
+ gists_url: string;
648
+ starred_url: string;
649
+ subscriptions_url: string;
650
+ organizations_url: string;
651
+ repos_url: string;
652
+ events_url: string;
653
+ received_events_url: string;
654
+ type: string;
655
+ site_admin: boolean;
656
+ starred_at?: string;
657
+ user_view_type?: string;
658
+ };
659
+ private: boolean;
660
+ html_url: string;
661
+ description: string | null;
662
+ fork: boolean;
663
+ url: string;
664
+ archive_url: string;
665
+ assignees_url: string;
666
+ blobs_url: string;
667
+ branches_url: string;
668
+ collaborators_url: string;
669
+ comments_url: string;
670
+ commits_url: string;
671
+ compare_url: string;
672
+ contents_url: string;
673
+ contributors_url: string;
674
+ deployments_url: string;
675
+ downloads_url: string;
676
+ events_url: string;
677
+ forks_url: string;
678
+ git_commits_url: string;
679
+ git_refs_url: string;
680
+ git_tags_url: string;
681
+ git_url: string;
682
+ issue_comment_url: string;
683
+ issue_events_url: string;
684
+ issues_url: string;
685
+ keys_url: string;
686
+ labels_url: string;
687
+ languages_url: string;
688
+ merges_url: string;
689
+ milestones_url: string;
690
+ notifications_url: string;
691
+ pulls_url: string;
692
+ releases_url: string;
693
+ ssh_url: string;
694
+ stargazers_url: string;
695
+ statuses_url: string;
696
+ subscribers_url: string;
697
+ subscription_url: string;
698
+ tags_url: string;
699
+ teams_url: string;
700
+ trees_url: string;
701
+ clone_url: string;
702
+ mirror_url: string | null;
703
+ hooks_url: string;
704
+ svn_url: string;
705
+ homepage: string | null;
706
+ language: string | null;
707
+ forks_count: number;
708
+ stargazers_count: number;
709
+ watchers_count: number;
710
+ size: number;
711
+ default_branch: string;
712
+ open_issues_count: number;
713
+ is_template?: boolean;
714
+ topics?: string[];
715
+ has_issues: boolean;
716
+ has_projects: boolean;
717
+ has_wiki: boolean;
718
+ has_pages: boolean;
719
+ has_downloads: boolean;
720
+ has_discussions?: boolean;
721
+ archived: boolean;
722
+ disabled: boolean;
723
+ visibility?: string;
724
+ pushed_at: string | null;
725
+ created_at: string | null;
726
+ updated_at: string | null;
727
+ allow_rebase_merge?: boolean;
728
+ temp_clone_token?: string;
729
+ allow_squash_merge?: boolean;
730
+ allow_auto_merge?: boolean;
731
+ delete_branch_on_merge?: boolean;
732
+ allow_update_branch?: boolean;
733
+ use_squash_pr_title_as_default?: boolean;
734
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
735
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
736
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
737
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
738
+ allow_merge_commit?: boolean;
739
+ allow_forking?: boolean;
740
+ web_commit_signoff_required?: boolean;
741
+ open_issues: number;
742
+ watchers: number;
743
+ master_branch?: string;
744
+ starred_at?: string;
745
+ anonymous_access_enabled?: boolean;
746
+ code_search_index_status?: {
747
+ lexical_search_ok?: boolean;
748
+ lexical_commit_sha?: string;
749
+ };
750
+ };
107
751
  sha: string;
108
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
752
+ user: {
753
+ name?: string | null;
754
+ email?: string | null;
755
+ login: string;
756
+ id: number;
757
+ node_id: string;
758
+ avatar_url: string;
759
+ gravatar_id: string | null;
760
+ url: string;
761
+ html_url: string;
762
+ followers_url: string;
763
+ following_url: string;
764
+ gists_url: string;
765
+ starred_url: string;
766
+ subscriptions_url: string;
767
+ organizations_url: string;
768
+ repos_url: string;
769
+ events_url: string;
770
+ received_events_url: string;
771
+ type: string;
772
+ site_admin: boolean;
773
+ starred_at?: string;
774
+ user_view_type?: string;
775
+ };
109
776
  };
110
777
  _links: {
111
- comments: import("@octokit/openapi-types").components["schemas"]["link"];
112
- commits: import("@octokit/openapi-types").components["schemas"]["link"];
113
- statuses: import("@octokit/openapi-types").components["schemas"]["link"];
114
- html: import("@octokit/openapi-types").components["schemas"]["link"];
115
- issue: import("@octokit/openapi-types").components["schemas"]["link"];
116
- review_comments: import("@octokit/openapi-types").components["schemas"]["link"];
117
- review_comment: import("@octokit/openapi-types").components["schemas"]["link"];
118
- self: import("@octokit/openapi-types").components["schemas"]["link"];
778
+ comments: {
779
+ href: string;
780
+ };
781
+ commits: {
782
+ href: string;
783
+ };
784
+ statuses: {
785
+ href: string;
786
+ };
787
+ html: {
788
+ href: string;
789
+ };
790
+ issue: {
791
+ href: string;
792
+ };
793
+ review_comments: {
794
+ href: string;
795
+ };
796
+ review_comment: {
797
+ href: string;
798
+ };
799
+ self: {
800
+ href: string;
801
+ };
119
802
  };
120
- author_association: import("@octokit/openapi-types").components["schemas"]["author-association"];
121
- auto_merge: import("@octokit/openapi-types").components["schemas"]["auto-merge"];
803
+ author_association: "COLLABORATOR" | "CONTRIBUTOR" | "FIRST_TIMER" | "FIRST_TIME_CONTRIBUTOR" | "MANNEQUIN" | "MEMBER" | "NONE" | "OWNER";
804
+ auto_merge: {
805
+ enabled_by: {
806
+ name?: string | null;
807
+ email?: string | null;
808
+ login: string;
809
+ id: number;
810
+ node_id: string;
811
+ avatar_url: string;
812
+ gravatar_id: string | null;
813
+ url: string;
814
+ html_url: string;
815
+ followers_url: string;
816
+ following_url: string;
817
+ gists_url: string;
818
+ starred_url: string;
819
+ subscriptions_url: string;
820
+ organizations_url: string;
821
+ repos_url: string;
822
+ events_url: string;
823
+ received_events_url: string;
824
+ type: string;
825
+ site_admin: boolean;
826
+ starred_at?: string;
827
+ user_view_type?: string;
828
+ };
829
+ merge_method: "merge" | "squash" | "rebase";
830
+ commit_title: string;
831
+ commit_message: string;
832
+ } | null;
122
833
  draft?: boolean;
123
834
  merged: boolean;
124
835
  mergeable: boolean | null;
125
836
  rebaseable?: boolean | null;
126
837
  mergeable_state: string;
127
- merged_by: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
838
+ merged_by: {
839
+ name?: string | null;
840
+ email?: string | null;
841
+ login: string;
842
+ id: number;
843
+ node_id: string;
844
+ avatar_url: string;
845
+ gravatar_id: string | null;
846
+ url: string;
847
+ html_url: string;
848
+ followers_url: string;
849
+ following_url: string;
850
+ gists_url: string;
851
+ starred_url: string;
852
+ subscriptions_url: string;
853
+ organizations_url: string;
854
+ repos_url: string;
855
+ events_url: string;
856
+ received_events_url: string;
857
+ type: string;
858
+ site_admin: boolean;
859
+ starred_at?: string;
860
+ user_view_type?: string;
861
+ } | null;
128
862
  comments: number;
129
863
  review_comments: number;
130
864
  maintainer_can_modify: boolean;
@@ -150,7 +884,30 @@ export declare function readyGitHubRepositoryPull(token: string): {
150
884
  state: "open" | "closed";
151
885
  locked: boolean;
152
886
  title: string;
153
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
887
+ user: {
888
+ name?: string | null;
889
+ email?: string | null;
890
+ login: string;
891
+ id: number;
892
+ node_id: string;
893
+ avatar_url: string;
894
+ gravatar_id: string | null;
895
+ url: string;
896
+ html_url: string;
897
+ followers_url: string;
898
+ following_url: string;
899
+ gists_url: string;
900
+ starred_url: string;
901
+ subscriptions_url: string;
902
+ organizations_url: string;
903
+ repos_url: string;
904
+ events_url: string;
905
+ received_events_url: string;
906
+ type: string;
907
+ site_admin: boolean;
908
+ starred_at?: string;
909
+ user_view_type?: string;
910
+ };
154
911
  body: string | null;
155
912
  labels: {
156
913
  id: number;
@@ -161,49 +918,560 @@ export declare function readyGitHubRepositoryPull(token: string): {
161
918
  color: string;
162
919
  default: boolean;
163
920
  }[];
164
- milestone: import("@octokit/openapi-types").components["schemas"]["nullable-milestone"];
921
+ milestone: {
922
+ url: string;
923
+ html_url: string;
924
+ labels_url: string;
925
+ id: number;
926
+ node_id: string;
927
+ number: number;
928
+ state: "open" | "closed";
929
+ title: string;
930
+ description: string | null;
931
+ creator: {
932
+ name?: string | null;
933
+ email?: string | null;
934
+ login: string;
935
+ id: number;
936
+ node_id: string;
937
+ avatar_url: string;
938
+ gravatar_id: string | null;
939
+ url: string;
940
+ html_url: string;
941
+ followers_url: string;
942
+ following_url: string;
943
+ gists_url: string;
944
+ starred_url: string;
945
+ subscriptions_url: string;
946
+ organizations_url: string;
947
+ repos_url: string;
948
+ events_url: string;
949
+ received_events_url: string;
950
+ type: string;
951
+ site_admin: boolean;
952
+ starred_at?: string;
953
+ user_view_type?: string;
954
+ } | null;
955
+ open_issues: number;
956
+ closed_issues: number;
957
+ created_at: string;
958
+ updated_at: string;
959
+ closed_at: string | null;
960
+ due_on: string | null;
961
+ } | null;
165
962
  active_lock_reason?: string | null;
166
963
  created_at: string;
167
964
  updated_at: string;
168
965
  closed_at: string | null;
169
966
  merged_at: string | null;
170
967
  merge_commit_sha: string | null;
171
- assignee: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
172
- assignees?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
173
- requested_reviewers?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
174
- requested_teams?: import("@octokit/openapi-types").components["schemas"]["team-simple"][] | null;
968
+ assignee: {
969
+ name?: string | null;
970
+ email?: string | null;
971
+ login: string;
972
+ id: number;
973
+ node_id: string;
974
+ avatar_url: string;
975
+ gravatar_id: string | null;
976
+ url: string;
977
+ html_url: string;
978
+ followers_url: string;
979
+ following_url: string;
980
+ gists_url: string;
981
+ starred_url: string;
982
+ subscriptions_url: string;
983
+ organizations_url: string;
984
+ repos_url: string;
985
+ events_url: string;
986
+ received_events_url: string;
987
+ type: string;
988
+ site_admin: boolean;
989
+ starred_at?: string;
990
+ user_view_type?: string;
991
+ } | null;
992
+ assignees?: {
993
+ name?: string | null;
994
+ email?: string | null;
995
+ login: string;
996
+ id: number;
997
+ node_id: string;
998
+ avatar_url: string;
999
+ gravatar_id: string | null;
1000
+ url: string;
1001
+ html_url: string;
1002
+ followers_url: string;
1003
+ following_url: string;
1004
+ gists_url: string;
1005
+ starred_url: string;
1006
+ subscriptions_url: string;
1007
+ organizations_url: string;
1008
+ repos_url: string;
1009
+ events_url: string;
1010
+ received_events_url: string;
1011
+ type: string;
1012
+ site_admin: boolean;
1013
+ starred_at?: string;
1014
+ user_view_type?: string;
1015
+ }[] | null;
1016
+ requested_reviewers?: {
1017
+ name?: string | null;
1018
+ email?: string | null;
1019
+ login: string;
1020
+ id: number;
1021
+ node_id: string;
1022
+ avatar_url: string;
1023
+ gravatar_id: string | null;
1024
+ url: string;
1025
+ html_url: string;
1026
+ followers_url: string;
1027
+ following_url: string;
1028
+ gists_url: string;
1029
+ starred_url: string;
1030
+ subscriptions_url: string;
1031
+ organizations_url: string;
1032
+ repos_url: string;
1033
+ events_url: string;
1034
+ received_events_url: string;
1035
+ type: string;
1036
+ site_admin: boolean;
1037
+ starred_at?: string;
1038
+ user_view_type?: string;
1039
+ }[] | null;
1040
+ requested_teams?: {
1041
+ id: number;
1042
+ node_id: string;
1043
+ url: string;
1044
+ members_url: string;
1045
+ name: string;
1046
+ description: string | null;
1047
+ permission: string;
1048
+ privacy?: string;
1049
+ notification_setting?: string;
1050
+ html_url: string;
1051
+ repositories_url: string;
1052
+ slug: string;
1053
+ ldap_dn?: string;
1054
+ type: "enterprise" | "organization";
1055
+ organization_id?: number;
1056
+ enterprise_id?: number;
1057
+ }[] | null;
175
1058
  head: {
176
1059
  label: string;
177
1060
  ref: string;
178
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
1061
+ repo: {
1062
+ id: number;
1063
+ node_id: string;
1064
+ name: string;
1065
+ full_name: string;
1066
+ license: {
1067
+ key: string;
1068
+ name: string;
1069
+ url: string | null;
1070
+ spdx_id: string | null;
1071
+ node_id: string;
1072
+ html_url?: string;
1073
+ } | null;
1074
+ forks: number;
1075
+ permissions?: {
1076
+ admin: boolean;
1077
+ pull: boolean;
1078
+ triage?: boolean;
1079
+ push: boolean;
1080
+ maintain?: boolean;
1081
+ };
1082
+ owner: {
1083
+ name?: string | null;
1084
+ email?: string | null;
1085
+ login: string;
1086
+ id: number;
1087
+ node_id: string;
1088
+ avatar_url: string;
1089
+ gravatar_id: string | null;
1090
+ url: string;
1091
+ html_url: string;
1092
+ followers_url: string;
1093
+ following_url: string;
1094
+ gists_url: string;
1095
+ starred_url: string;
1096
+ subscriptions_url: string;
1097
+ organizations_url: string;
1098
+ repos_url: string;
1099
+ events_url: string;
1100
+ received_events_url: string;
1101
+ type: string;
1102
+ site_admin: boolean;
1103
+ starred_at?: string;
1104
+ user_view_type?: string;
1105
+ };
1106
+ private: boolean;
1107
+ html_url: string;
1108
+ description: string | null;
1109
+ fork: boolean;
1110
+ url: string;
1111
+ archive_url: string;
1112
+ assignees_url: string;
1113
+ blobs_url: string;
1114
+ branches_url: string;
1115
+ collaborators_url: string;
1116
+ comments_url: string;
1117
+ commits_url: string;
1118
+ compare_url: string;
1119
+ contents_url: string;
1120
+ contributors_url: string;
1121
+ deployments_url: string;
1122
+ downloads_url: string;
1123
+ events_url: string;
1124
+ forks_url: string;
1125
+ git_commits_url: string;
1126
+ git_refs_url: string;
1127
+ git_tags_url: string;
1128
+ git_url: string;
1129
+ issue_comment_url: string;
1130
+ issue_events_url: string;
1131
+ issues_url: string;
1132
+ keys_url: string;
1133
+ labels_url: string;
1134
+ languages_url: string;
1135
+ merges_url: string;
1136
+ milestones_url: string;
1137
+ notifications_url: string;
1138
+ pulls_url: string;
1139
+ releases_url: string;
1140
+ ssh_url: string;
1141
+ stargazers_url: string;
1142
+ statuses_url: string;
1143
+ subscribers_url: string;
1144
+ subscription_url: string;
1145
+ tags_url: string;
1146
+ teams_url: string;
1147
+ trees_url: string;
1148
+ clone_url: string;
1149
+ mirror_url: string | null;
1150
+ hooks_url: string;
1151
+ svn_url: string;
1152
+ homepage: string | null;
1153
+ language: string | null;
1154
+ forks_count: number;
1155
+ stargazers_count: number;
1156
+ watchers_count: number;
1157
+ size: number;
1158
+ default_branch: string;
1159
+ open_issues_count: number;
1160
+ is_template?: boolean;
1161
+ topics?: string[];
1162
+ has_issues: boolean;
1163
+ has_projects: boolean;
1164
+ has_wiki: boolean;
1165
+ has_pages: boolean;
1166
+ has_downloads: boolean;
1167
+ has_discussions?: boolean;
1168
+ archived: boolean;
1169
+ disabled: boolean;
1170
+ visibility?: string;
1171
+ pushed_at: string | null;
1172
+ created_at: string | null;
1173
+ updated_at: string | null;
1174
+ allow_rebase_merge?: boolean;
1175
+ temp_clone_token?: string;
1176
+ allow_squash_merge?: boolean;
1177
+ allow_auto_merge?: boolean;
1178
+ delete_branch_on_merge?: boolean;
1179
+ allow_update_branch?: boolean;
1180
+ use_squash_pr_title_as_default?: boolean;
1181
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
1182
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
1183
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
1184
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
1185
+ allow_merge_commit?: boolean;
1186
+ allow_forking?: boolean;
1187
+ web_commit_signoff_required?: boolean;
1188
+ open_issues: number;
1189
+ watchers: number;
1190
+ master_branch?: string;
1191
+ starred_at?: string;
1192
+ anonymous_access_enabled?: boolean;
1193
+ code_search_index_status?: {
1194
+ lexical_search_ok?: boolean;
1195
+ lexical_commit_sha?: string;
1196
+ };
1197
+ };
179
1198
  sha: string;
180
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
1199
+ user: {
1200
+ name?: string | null;
1201
+ email?: string | null;
1202
+ login: string;
1203
+ id: number;
1204
+ node_id: string;
1205
+ avatar_url: string;
1206
+ gravatar_id: string | null;
1207
+ url: string;
1208
+ html_url: string;
1209
+ followers_url: string;
1210
+ following_url: string;
1211
+ gists_url: string;
1212
+ starred_url: string;
1213
+ subscriptions_url: string;
1214
+ organizations_url: string;
1215
+ repos_url: string;
1216
+ events_url: string;
1217
+ received_events_url: string;
1218
+ type: string;
1219
+ site_admin: boolean;
1220
+ starred_at?: string;
1221
+ user_view_type?: string;
1222
+ };
181
1223
  };
182
1224
  base: {
183
1225
  label: string;
184
1226
  ref: string;
185
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
1227
+ repo: {
1228
+ id: number;
1229
+ node_id: string;
1230
+ name: string;
1231
+ full_name: string;
1232
+ license: {
1233
+ key: string;
1234
+ name: string;
1235
+ url: string | null;
1236
+ spdx_id: string | null;
1237
+ node_id: string;
1238
+ html_url?: string;
1239
+ } | null;
1240
+ forks: number;
1241
+ permissions?: {
1242
+ admin: boolean;
1243
+ pull: boolean;
1244
+ triage?: boolean;
1245
+ push: boolean;
1246
+ maintain?: boolean;
1247
+ };
1248
+ owner: {
1249
+ name?: string | null;
1250
+ email?: string | null;
1251
+ login: string;
1252
+ id: number;
1253
+ node_id: string;
1254
+ avatar_url: string;
1255
+ gravatar_id: string | null;
1256
+ url: string;
1257
+ html_url: string;
1258
+ followers_url: string;
1259
+ following_url: string;
1260
+ gists_url: string;
1261
+ starred_url: string;
1262
+ subscriptions_url: string;
1263
+ organizations_url: string;
1264
+ repos_url: string;
1265
+ events_url: string;
1266
+ received_events_url: string;
1267
+ type: string;
1268
+ site_admin: boolean;
1269
+ starred_at?: string;
1270
+ user_view_type?: string;
1271
+ };
1272
+ private: boolean;
1273
+ html_url: string;
1274
+ description: string | null;
1275
+ fork: boolean;
1276
+ url: string;
1277
+ archive_url: string;
1278
+ assignees_url: string;
1279
+ blobs_url: string;
1280
+ branches_url: string;
1281
+ collaborators_url: string;
1282
+ comments_url: string;
1283
+ commits_url: string;
1284
+ compare_url: string;
1285
+ contents_url: string;
1286
+ contributors_url: string;
1287
+ deployments_url: string;
1288
+ downloads_url: string;
1289
+ events_url: string;
1290
+ forks_url: string;
1291
+ git_commits_url: string;
1292
+ git_refs_url: string;
1293
+ git_tags_url: string;
1294
+ git_url: string;
1295
+ issue_comment_url: string;
1296
+ issue_events_url: string;
1297
+ issues_url: string;
1298
+ keys_url: string;
1299
+ labels_url: string;
1300
+ languages_url: string;
1301
+ merges_url: string;
1302
+ milestones_url: string;
1303
+ notifications_url: string;
1304
+ pulls_url: string;
1305
+ releases_url: string;
1306
+ ssh_url: string;
1307
+ stargazers_url: string;
1308
+ statuses_url: string;
1309
+ subscribers_url: string;
1310
+ subscription_url: string;
1311
+ tags_url: string;
1312
+ teams_url: string;
1313
+ trees_url: string;
1314
+ clone_url: string;
1315
+ mirror_url: string | null;
1316
+ hooks_url: string;
1317
+ svn_url: string;
1318
+ homepage: string | null;
1319
+ language: string | null;
1320
+ forks_count: number;
1321
+ stargazers_count: number;
1322
+ watchers_count: number;
1323
+ size: number;
1324
+ default_branch: string;
1325
+ open_issues_count: number;
1326
+ is_template?: boolean;
1327
+ topics?: string[];
1328
+ has_issues: boolean;
1329
+ has_projects: boolean;
1330
+ has_wiki: boolean;
1331
+ has_pages: boolean;
1332
+ has_downloads: boolean;
1333
+ has_discussions?: boolean;
1334
+ archived: boolean;
1335
+ disabled: boolean;
1336
+ visibility?: string;
1337
+ pushed_at: string | null;
1338
+ created_at: string | null;
1339
+ updated_at: string | null;
1340
+ allow_rebase_merge?: boolean;
1341
+ temp_clone_token?: string;
1342
+ allow_squash_merge?: boolean;
1343
+ allow_auto_merge?: boolean;
1344
+ delete_branch_on_merge?: boolean;
1345
+ allow_update_branch?: boolean;
1346
+ use_squash_pr_title_as_default?: boolean;
1347
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
1348
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
1349
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
1350
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
1351
+ allow_merge_commit?: boolean;
1352
+ allow_forking?: boolean;
1353
+ web_commit_signoff_required?: boolean;
1354
+ open_issues: number;
1355
+ watchers: number;
1356
+ master_branch?: string;
1357
+ starred_at?: string;
1358
+ anonymous_access_enabled?: boolean;
1359
+ code_search_index_status?: {
1360
+ lexical_search_ok?: boolean;
1361
+ lexical_commit_sha?: string;
1362
+ };
1363
+ };
186
1364
  sha: string;
187
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
1365
+ user: {
1366
+ name?: string | null;
1367
+ email?: string | null;
1368
+ login: string;
1369
+ id: number;
1370
+ node_id: string;
1371
+ avatar_url: string;
1372
+ gravatar_id: string | null;
1373
+ url: string;
1374
+ html_url: string;
1375
+ followers_url: string;
1376
+ following_url: string;
1377
+ gists_url: string;
1378
+ starred_url: string;
1379
+ subscriptions_url: string;
1380
+ organizations_url: string;
1381
+ repos_url: string;
1382
+ events_url: string;
1383
+ received_events_url: string;
1384
+ type: string;
1385
+ site_admin: boolean;
1386
+ starred_at?: string;
1387
+ user_view_type?: string;
1388
+ };
188
1389
  };
189
1390
  _links: {
190
- comments: import("@octokit/openapi-types").components["schemas"]["link"];
191
- commits: import("@octokit/openapi-types").components["schemas"]["link"];
192
- statuses: import("@octokit/openapi-types").components["schemas"]["link"];
193
- html: import("@octokit/openapi-types").components["schemas"]["link"];
194
- issue: import("@octokit/openapi-types").components["schemas"]["link"];
195
- review_comments: import("@octokit/openapi-types").components["schemas"]["link"];
196
- review_comment: import("@octokit/openapi-types").components["schemas"]["link"];
197
- self: import("@octokit/openapi-types").components["schemas"]["link"];
1391
+ comments: {
1392
+ href: string;
1393
+ };
1394
+ commits: {
1395
+ href: string;
1396
+ };
1397
+ statuses: {
1398
+ href: string;
1399
+ };
1400
+ html: {
1401
+ href: string;
1402
+ };
1403
+ issue: {
1404
+ href: string;
1405
+ };
1406
+ review_comments: {
1407
+ href: string;
1408
+ };
1409
+ review_comment: {
1410
+ href: string;
1411
+ };
1412
+ self: {
1413
+ href: string;
1414
+ };
198
1415
  };
199
- author_association: import("@octokit/openapi-types").components["schemas"]["author-association"];
200
- auto_merge: import("@octokit/openapi-types").components["schemas"]["auto-merge"];
1416
+ author_association: "COLLABORATOR" | "CONTRIBUTOR" | "FIRST_TIMER" | "FIRST_TIME_CONTRIBUTOR" | "MANNEQUIN" | "MEMBER" | "NONE" | "OWNER";
1417
+ auto_merge: {
1418
+ enabled_by: {
1419
+ name?: string | null;
1420
+ email?: string | null;
1421
+ login: string;
1422
+ id: number;
1423
+ node_id: string;
1424
+ avatar_url: string;
1425
+ gravatar_id: string | null;
1426
+ url: string;
1427
+ html_url: string;
1428
+ followers_url: string;
1429
+ following_url: string;
1430
+ gists_url: string;
1431
+ starred_url: string;
1432
+ subscriptions_url: string;
1433
+ organizations_url: string;
1434
+ repos_url: string;
1435
+ events_url: string;
1436
+ received_events_url: string;
1437
+ type: string;
1438
+ site_admin: boolean;
1439
+ starred_at?: string;
1440
+ user_view_type?: string;
1441
+ };
1442
+ merge_method: "merge" | "squash" | "rebase";
1443
+ commit_title: string;
1444
+ commit_message: string;
1445
+ } | null;
201
1446
  draft?: boolean;
202
1447
  merged: boolean;
203
1448
  mergeable: boolean | null;
204
1449
  rebaseable?: boolean | null;
205
1450
  mergeable_state: string;
206
- merged_by: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
1451
+ merged_by: {
1452
+ name?: string | null;
1453
+ email?: string | null;
1454
+ login: string;
1455
+ id: number;
1456
+ node_id: string;
1457
+ avatar_url: string;
1458
+ gravatar_id: string | null;
1459
+ url: string;
1460
+ html_url: string;
1461
+ followers_url: string;
1462
+ following_url: string;
1463
+ gists_url: string;
1464
+ starred_url: string;
1465
+ subscriptions_url: string;
1466
+ organizations_url: string;
1467
+ repos_url: string;
1468
+ events_url: string;
1469
+ received_events_url: string;
1470
+ type: string;
1471
+ site_admin: boolean;
1472
+ starred_at?: string;
1473
+ user_view_type?: string;
1474
+ } | null;
207
1475
  comments: number;
208
1476
  review_comments: number;
209
1477
  maintainer_can_modify: boolean;
@@ -229,7 +1497,30 @@ export declare function readyGitHubRepositoryPull(token: string): {
229
1497
  state: "open" | "closed";
230
1498
  locked: boolean;
231
1499
  title: string;
232
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
1500
+ user: {
1501
+ name?: string | null;
1502
+ email?: string | null;
1503
+ login: string;
1504
+ id: number;
1505
+ node_id: string;
1506
+ avatar_url: string;
1507
+ gravatar_id: string | null;
1508
+ url: string;
1509
+ html_url: string;
1510
+ followers_url: string;
1511
+ following_url: string;
1512
+ gists_url: string;
1513
+ starred_url: string;
1514
+ subscriptions_url: string;
1515
+ organizations_url: string;
1516
+ repos_url: string;
1517
+ events_url: string;
1518
+ received_events_url: string;
1519
+ type: string;
1520
+ site_admin: boolean;
1521
+ starred_at?: string;
1522
+ user_view_type?: string;
1523
+ };
233
1524
  body: string | null;
234
1525
  labels: {
235
1526
  id: number;
@@ -240,49 +1531,560 @@ export declare function readyGitHubRepositoryPull(token: string): {
240
1531
  color: string;
241
1532
  default: boolean;
242
1533
  }[];
243
- milestone: import("@octokit/openapi-types").components["schemas"]["nullable-milestone"];
1534
+ milestone: {
1535
+ url: string;
1536
+ html_url: string;
1537
+ labels_url: string;
1538
+ id: number;
1539
+ node_id: string;
1540
+ number: number;
1541
+ state: "open" | "closed";
1542
+ title: string;
1543
+ description: string | null;
1544
+ creator: {
1545
+ name?: string | null;
1546
+ email?: string | null;
1547
+ login: string;
1548
+ id: number;
1549
+ node_id: string;
1550
+ avatar_url: string;
1551
+ gravatar_id: string | null;
1552
+ url: string;
1553
+ html_url: string;
1554
+ followers_url: string;
1555
+ following_url: string;
1556
+ gists_url: string;
1557
+ starred_url: string;
1558
+ subscriptions_url: string;
1559
+ organizations_url: string;
1560
+ repos_url: string;
1561
+ events_url: string;
1562
+ received_events_url: string;
1563
+ type: string;
1564
+ site_admin: boolean;
1565
+ starred_at?: string;
1566
+ user_view_type?: string;
1567
+ } | null;
1568
+ open_issues: number;
1569
+ closed_issues: number;
1570
+ created_at: string;
1571
+ updated_at: string;
1572
+ closed_at: string | null;
1573
+ due_on: string | null;
1574
+ } | null;
244
1575
  active_lock_reason?: string | null;
245
1576
  created_at: string;
246
1577
  updated_at: string;
247
1578
  closed_at: string | null;
248
1579
  merged_at: string | null;
249
1580
  merge_commit_sha: string | null;
250
- assignee: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
251
- assignees?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
252
- requested_reviewers?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
253
- requested_teams?: import("@octokit/openapi-types").components["schemas"]["team-simple"][] | null;
1581
+ assignee: {
1582
+ name?: string | null;
1583
+ email?: string | null;
1584
+ login: string;
1585
+ id: number;
1586
+ node_id: string;
1587
+ avatar_url: string;
1588
+ gravatar_id: string | null;
1589
+ url: string;
1590
+ html_url: string;
1591
+ followers_url: string;
1592
+ following_url: string;
1593
+ gists_url: string;
1594
+ starred_url: string;
1595
+ subscriptions_url: string;
1596
+ organizations_url: string;
1597
+ repos_url: string;
1598
+ events_url: string;
1599
+ received_events_url: string;
1600
+ type: string;
1601
+ site_admin: boolean;
1602
+ starred_at?: string;
1603
+ user_view_type?: string;
1604
+ } | null;
1605
+ assignees?: {
1606
+ name?: string | null;
1607
+ email?: string | null;
1608
+ login: string;
1609
+ id: number;
1610
+ node_id: string;
1611
+ avatar_url: string;
1612
+ gravatar_id: string | null;
1613
+ url: string;
1614
+ html_url: string;
1615
+ followers_url: string;
1616
+ following_url: string;
1617
+ gists_url: string;
1618
+ starred_url: string;
1619
+ subscriptions_url: string;
1620
+ organizations_url: string;
1621
+ repos_url: string;
1622
+ events_url: string;
1623
+ received_events_url: string;
1624
+ type: string;
1625
+ site_admin: boolean;
1626
+ starred_at?: string;
1627
+ user_view_type?: string;
1628
+ }[] | null;
1629
+ requested_reviewers?: {
1630
+ name?: string | null;
1631
+ email?: string | null;
1632
+ login: string;
1633
+ id: number;
1634
+ node_id: string;
1635
+ avatar_url: string;
1636
+ gravatar_id: string | null;
1637
+ url: string;
1638
+ html_url: string;
1639
+ followers_url: string;
1640
+ following_url: string;
1641
+ gists_url: string;
1642
+ starred_url: string;
1643
+ subscriptions_url: string;
1644
+ organizations_url: string;
1645
+ repos_url: string;
1646
+ events_url: string;
1647
+ received_events_url: string;
1648
+ type: string;
1649
+ site_admin: boolean;
1650
+ starred_at?: string;
1651
+ user_view_type?: string;
1652
+ }[] | null;
1653
+ requested_teams?: {
1654
+ id: number;
1655
+ node_id: string;
1656
+ url: string;
1657
+ members_url: string;
1658
+ name: string;
1659
+ description: string | null;
1660
+ permission: string;
1661
+ privacy?: string;
1662
+ notification_setting?: string;
1663
+ html_url: string;
1664
+ repositories_url: string;
1665
+ slug: string;
1666
+ ldap_dn?: string;
1667
+ type: "enterprise" | "organization";
1668
+ organization_id?: number;
1669
+ enterprise_id?: number;
1670
+ }[] | null;
254
1671
  head: {
255
1672
  label: string;
256
1673
  ref: string;
257
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
1674
+ repo: {
1675
+ id: number;
1676
+ node_id: string;
1677
+ name: string;
1678
+ full_name: string;
1679
+ license: {
1680
+ key: string;
1681
+ name: string;
1682
+ url: string | null;
1683
+ spdx_id: string | null;
1684
+ node_id: string;
1685
+ html_url?: string;
1686
+ } | null;
1687
+ forks: number;
1688
+ permissions?: {
1689
+ admin: boolean;
1690
+ pull: boolean;
1691
+ triage?: boolean;
1692
+ push: boolean;
1693
+ maintain?: boolean;
1694
+ };
1695
+ owner: {
1696
+ name?: string | null;
1697
+ email?: string | null;
1698
+ login: string;
1699
+ id: number;
1700
+ node_id: string;
1701
+ avatar_url: string;
1702
+ gravatar_id: string | null;
1703
+ url: string;
1704
+ html_url: string;
1705
+ followers_url: string;
1706
+ following_url: string;
1707
+ gists_url: string;
1708
+ starred_url: string;
1709
+ subscriptions_url: string;
1710
+ organizations_url: string;
1711
+ repos_url: string;
1712
+ events_url: string;
1713
+ received_events_url: string;
1714
+ type: string;
1715
+ site_admin: boolean;
1716
+ starred_at?: string;
1717
+ user_view_type?: string;
1718
+ };
1719
+ private: boolean;
1720
+ html_url: string;
1721
+ description: string | null;
1722
+ fork: boolean;
1723
+ url: string;
1724
+ archive_url: string;
1725
+ assignees_url: string;
1726
+ blobs_url: string;
1727
+ branches_url: string;
1728
+ collaborators_url: string;
1729
+ comments_url: string;
1730
+ commits_url: string;
1731
+ compare_url: string;
1732
+ contents_url: string;
1733
+ contributors_url: string;
1734
+ deployments_url: string;
1735
+ downloads_url: string;
1736
+ events_url: string;
1737
+ forks_url: string;
1738
+ git_commits_url: string;
1739
+ git_refs_url: string;
1740
+ git_tags_url: string;
1741
+ git_url: string;
1742
+ issue_comment_url: string;
1743
+ issue_events_url: string;
1744
+ issues_url: string;
1745
+ keys_url: string;
1746
+ labels_url: string;
1747
+ languages_url: string;
1748
+ merges_url: string;
1749
+ milestones_url: string;
1750
+ notifications_url: string;
1751
+ pulls_url: string;
1752
+ releases_url: string;
1753
+ ssh_url: string;
1754
+ stargazers_url: string;
1755
+ statuses_url: string;
1756
+ subscribers_url: string;
1757
+ subscription_url: string;
1758
+ tags_url: string;
1759
+ teams_url: string;
1760
+ trees_url: string;
1761
+ clone_url: string;
1762
+ mirror_url: string | null;
1763
+ hooks_url: string;
1764
+ svn_url: string;
1765
+ homepage: string | null;
1766
+ language: string | null;
1767
+ forks_count: number;
1768
+ stargazers_count: number;
1769
+ watchers_count: number;
1770
+ size: number;
1771
+ default_branch: string;
1772
+ open_issues_count: number;
1773
+ is_template?: boolean;
1774
+ topics?: string[];
1775
+ has_issues: boolean;
1776
+ has_projects: boolean;
1777
+ has_wiki: boolean;
1778
+ has_pages: boolean;
1779
+ has_downloads: boolean;
1780
+ has_discussions?: boolean;
1781
+ archived: boolean;
1782
+ disabled: boolean;
1783
+ visibility?: string;
1784
+ pushed_at: string | null;
1785
+ created_at: string | null;
1786
+ updated_at: string | null;
1787
+ allow_rebase_merge?: boolean;
1788
+ temp_clone_token?: string;
1789
+ allow_squash_merge?: boolean;
1790
+ allow_auto_merge?: boolean;
1791
+ delete_branch_on_merge?: boolean;
1792
+ allow_update_branch?: boolean;
1793
+ use_squash_pr_title_as_default?: boolean;
1794
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
1795
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
1796
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
1797
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
1798
+ allow_merge_commit?: boolean;
1799
+ allow_forking?: boolean;
1800
+ web_commit_signoff_required?: boolean;
1801
+ open_issues: number;
1802
+ watchers: number;
1803
+ master_branch?: string;
1804
+ starred_at?: string;
1805
+ anonymous_access_enabled?: boolean;
1806
+ code_search_index_status?: {
1807
+ lexical_search_ok?: boolean;
1808
+ lexical_commit_sha?: string;
1809
+ };
1810
+ };
258
1811
  sha: string;
259
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
1812
+ user: {
1813
+ name?: string | null;
1814
+ email?: string | null;
1815
+ login: string;
1816
+ id: number;
1817
+ node_id: string;
1818
+ avatar_url: string;
1819
+ gravatar_id: string | null;
1820
+ url: string;
1821
+ html_url: string;
1822
+ followers_url: string;
1823
+ following_url: string;
1824
+ gists_url: string;
1825
+ starred_url: string;
1826
+ subscriptions_url: string;
1827
+ organizations_url: string;
1828
+ repos_url: string;
1829
+ events_url: string;
1830
+ received_events_url: string;
1831
+ type: string;
1832
+ site_admin: boolean;
1833
+ starred_at?: string;
1834
+ user_view_type?: string;
1835
+ };
260
1836
  };
261
1837
  base: {
262
1838
  label: string;
263
1839
  ref: string;
264
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
1840
+ repo: {
1841
+ id: number;
1842
+ node_id: string;
1843
+ name: string;
1844
+ full_name: string;
1845
+ license: {
1846
+ key: string;
1847
+ name: string;
1848
+ url: string | null;
1849
+ spdx_id: string | null;
1850
+ node_id: string;
1851
+ html_url?: string;
1852
+ } | null;
1853
+ forks: number;
1854
+ permissions?: {
1855
+ admin: boolean;
1856
+ pull: boolean;
1857
+ triage?: boolean;
1858
+ push: boolean;
1859
+ maintain?: boolean;
1860
+ };
1861
+ owner: {
1862
+ name?: string | null;
1863
+ email?: string | null;
1864
+ login: string;
1865
+ id: number;
1866
+ node_id: string;
1867
+ avatar_url: string;
1868
+ gravatar_id: string | null;
1869
+ url: string;
1870
+ html_url: string;
1871
+ followers_url: string;
1872
+ following_url: string;
1873
+ gists_url: string;
1874
+ starred_url: string;
1875
+ subscriptions_url: string;
1876
+ organizations_url: string;
1877
+ repos_url: string;
1878
+ events_url: string;
1879
+ received_events_url: string;
1880
+ type: string;
1881
+ site_admin: boolean;
1882
+ starred_at?: string;
1883
+ user_view_type?: string;
1884
+ };
1885
+ private: boolean;
1886
+ html_url: string;
1887
+ description: string | null;
1888
+ fork: boolean;
1889
+ url: string;
1890
+ archive_url: string;
1891
+ assignees_url: string;
1892
+ blobs_url: string;
1893
+ branches_url: string;
1894
+ collaborators_url: string;
1895
+ comments_url: string;
1896
+ commits_url: string;
1897
+ compare_url: string;
1898
+ contents_url: string;
1899
+ contributors_url: string;
1900
+ deployments_url: string;
1901
+ downloads_url: string;
1902
+ events_url: string;
1903
+ forks_url: string;
1904
+ git_commits_url: string;
1905
+ git_refs_url: string;
1906
+ git_tags_url: string;
1907
+ git_url: string;
1908
+ issue_comment_url: string;
1909
+ issue_events_url: string;
1910
+ issues_url: string;
1911
+ keys_url: string;
1912
+ labels_url: string;
1913
+ languages_url: string;
1914
+ merges_url: string;
1915
+ milestones_url: string;
1916
+ notifications_url: string;
1917
+ pulls_url: string;
1918
+ releases_url: string;
1919
+ ssh_url: string;
1920
+ stargazers_url: string;
1921
+ statuses_url: string;
1922
+ subscribers_url: string;
1923
+ subscription_url: string;
1924
+ tags_url: string;
1925
+ teams_url: string;
1926
+ trees_url: string;
1927
+ clone_url: string;
1928
+ mirror_url: string | null;
1929
+ hooks_url: string;
1930
+ svn_url: string;
1931
+ homepage: string | null;
1932
+ language: string | null;
1933
+ forks_count: number;
1934
+ stargazers_count: number;
1935
+ watchers_count: number;
1936
+ size: number;
1937
+ default_branch: string;
1938
+ open_issues_count: number;
1939
+ is_template?: boolean;
1940
+ topics?: string[];
1941
+ has_issues: boolean;
1942
+ has_projects: boolean;
1943
+ has_wiki: boolean;
1944
+ has_pages: boolean;
1945
+ has_downloads: boolean;
1946
+ has_discussions?: boolean;
1947
+ archived: boolean;
1948
+ disabled: boolean;
1949
+ visibility?: string;
1950
+ pushed_at: string | null;
1951
+ created_at: string | null;
1952
+ updated_at: string | null;
1953
+ allow_rebase_merge?: boolean;
1954
+ temp_clone_token?: string;
1955
+ allow_squash_merge?: boolean;
1956
+ allow_auto_merge?: boolean;
1957
+ delete_branch_on_merge?: boolean;
1958
+ allow_update_branch?: boolean;
1959
+ use_squash_pr_title_as_default?: boolean;
1960
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
1961
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
1962
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
1963
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
1964
+ allow_merge_commit?: boolean;
1965
+ allow_forking?: boolean;
1966
+ web_commit_signoff_required?: boolean;
1967
+ open_issues: number;
1968
+ watchers: number;
1969
+ master_branch?: string;
1970
+ starred_at?: string;
1971
+ anonymous_access_enabled?: boolean;
1972
+ code_search_index_status?: {
1973
+ lexical_search_ok?: boolean;
1974
+ lexical_commit_sha?: string;
1975
+ };
1976
+ };
265
1977
  sha: string;
266
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
1978
+ user: {
1979
+ name?: string | null;
1980
+ email?: string | null;
1981
+ login: string;
1982
+ id: number;
1983
+ node_id: string;
1984
+ avatar_url: string;
1985
+ gravatar_id: string | null;
1986
+ url: string;
1987
+ html_url: string;
1988
+ followers_url: string;
1989
+ following_url: string;
1990
+ gists_url: string;
1991
+ starred_url: string;
1992
+ subscriptions_url: string;
1993
+ organizations_url: string;
1994
+ repos_url: string;
1995
+ events_url: string;
1996
+ received_events_url: string;
1997
+ type: string;
1998
+ site_admin: boolean;
1999
+ starred_at?: string;
2000
+ user_view_type?: string;
2001
+ };
267
2002
  };
268
2003
  _links: {
269
- comments: import("@octokit/openapi-types").components["schemas"]["link"];
270
- commits: import("@octokit/openapi-types").components["schemas"]["link"];
271
- statuses: import("@octokit/openapi-types").components["schemas"]["link"];
272
- html: import("@octokit/openapi-types").components["schemas"]["link"];
273
- issue: import("@octokit/openapi-types").components["schemas"]["link"];
274
- review_comments: import("@octokit/openapi-types").components["schemas"]["link"];
275
- review_comment: import("@octokit/openapi-types").components["schemas"]["link"];
276
- self: import("@octokit/openapi-types").components["schemas"]["link"];
2004
+ comments: {
2005
+ href: string;
2006
+ };
2007
+ commits: {
2008
+ href: string;
2009
+ };
2010
+ statuses: {
2011
+ href: string;
2012
+ };
2013
+ html: {
2014
+ href: string;
2015
+ };
2016
+ issue: {
2017
+ href: string;
2018
+ };
2019
+ review_comments: {
2020
+ href: string;
2021
+ };
2022
+ review_comment: {
2023
+ href: string;
2024
+ };
2025
+ self: {
2026
+ href: string;
2027
+ };
277
2028
  };
278
- author_association: import("@octokit/openapi-types").components["schemas"]["author-association"];
279
- auto_merge: import("@octokit/openapi-types").components["schemas"]["auto-merge"];
2029
+ author_association: "COLLABORATOR" | "CONTRIBUTOR" | "FIRST_TIMER" | "FIRST_TIME_CONTRIBUTOR" | "MANNEQUIN" | "MEMBER" | "NONE" | "OWNER";
2030
+ auto_merge: {
2031
+ enabled_by: {
2032
+ name?: string | null;
2033
+ email?: string | null;
2034
+ login: string;
2035
+ id: number;
2036
+ node_id: string;
2037
+ avatar_url: string;
2038
+ gravatar_id: string | null;
2039
+ url: string;
2040
+ html_url: string;
2041
+ followers_url: string;
2042
+ following_url: string;
2043
+ gists_url: string;
2044
+ starred_url: string;
2045
+ subscriptions_url: string;
2046
+ organizations_url: string;
2047
+ repos_url: string;
2048
+ events_url: string;
2049
+ received_events_url: string;
2050
+ type: string;
2051
+ site_admin: boolean;
2052
+ starred_at?: string;
2053
+ user_view_type?: string;
2054
+ };
2055
+ merge_method: "merge" | "squash" | "rebase";
2056
+ commit_title: string;
2057
+ commit_message: string;
2058
+ } | null;
280
2059
  draft?: boolean;
281
2060
  merged: boolean;
282
2061
  mergeable: boolean | null;
283
2062
  rebaseable?: boolean | null;
284
2063
  mergeable_state: string;
285
- merged_by: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
2064
+ merged_by: {
2065
+ name?: string | null;
2066
+ email?: string | null;
2067
+ login: string;
2068
+ id: number;
2069
+ node_id: string;
2070
+ avatar_url: string;
2071
+ gravatar_id: string | null;
2072
+ url: string;
2073
+ html_url: string;
2074
+ followers_url: string;
2075
+ following_url: string;
2076
+ gists_url: string;
2077
+ starred_url: string;
2078
+ subscriptions_url: string;
2079
+ organizations_url: string;
2080
+ repos_url: string;
2081
+ events_url: string;
2082
+ received_events_url: string;
2083
+ type: string;
2084
+ site_admin: boolean;
2085
+ starred_at?: string;
2086
+ user_view_type?: string;
2087
+ } | null;
286
2088
  comments: number;
287
2089
  review_comments: number;
288
2090
  maintainer_can_modify: boolean;
@@ -310,7 +2112,30 @@ export declare function readyGitHubRepositoryPull(token: string): {
310
2112
  state: "open" | "closed";
311
2113
  locked: boolean;
312
2114
  title: string;
313
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
2115
+ user: {
2116
+ name?: string | null;
2117
+ email?: string | null;
2118
+ login: string;
2119
+ id: number;
2120
+ node_id: string;
2121
+ avatar_url: string;
2122
+ gravatar_id: string | null;
2123
+ url: string;
2124
+ html_url: string;
2125
+ followers_url: string;
2126
+ following_url: string;
2127
+ gists_url: string;
2128
+ starred_url: string;
2129
+ subscriptions_url: string;
2130
+ organizations_url: string;
2131
+ repos_url: string;
2132
+ events_url: string;
2133
+ received_events_url: string;
2134
+ type: string;
2135
+ site_admin: boolean;
2136
+ starred_at?: string;
2137
+ user_view_type?: string;
2138
+ };
314
2139
  body: string | null;
315
2140
  labels: {
316
2141
  id: number;
@@ -321,49 +2146,560 @@ export declare function readyGitHubRepositoryPull(token: string): {
321
2146
  color: string;
322
2147
  default: boolean;
323
2148
  }[];
324
- milestone: import("@octokit/openapi-types").components["schemas"]["nullable-milestone"];
2149
+ milestone: {
2150
+ url: string;
2151
+ html_url: string;
2152
+ labels_url: string;
2153
+ id: number;
2154
+ node_id: string;
2155
+ number: number;
2156
+ state: "open" | "closed";
2157
+ title: string;
2158
+ description: string | null;
2159
+ creator: {
2160
+ name?: string | null;
2161
+ email?: string | null;
2162
+ login: string;
2163
+ id: number;
2164
+ node_id: string;
2165
+ avatar_url: string;
2166
+ gravatar_id: string | null;
2167
+ url: string;
2168
+ html_url: string;
2169
+ followers_url: string;
2170
+ following_url: string;
2171
+ gists_url: string;
2172
+ starred_url: string;
2173
+ subscriptions_url: string;
2174
+ organizations_url: string;
2175
+ repos_url: string;
2176
+ events_url: string;
2177
+ received_events_url: string;
2178
+ type: string;
2179
+ site_admin: boolean;
2180
+ starred_at?: string;
2181
+ user_view_type?: string;
2182
+ } | null;
2183
+ open_issues: number;
2184
+ closed_issues: number;
2185
+ created_at: string;
2186
+ updated_at: string;
2187
+ closed_at: string | null;
2188
+ due_on: string | null;
2189
+ } | null;
325
2190
  active_lock_reason?: string | null;
326
2191
  created_at: string;
327
2192
  updated_at: string;
328
2193
  closed_at: string | null;
329
2194
  merged_at: string | null;
330
2195
  merge_commit_sha: string | null;
331
- assignee: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
332
- assignees?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
333
- requested_reviewers?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
334
- requested_teams?: import("@octokit/openapi-types").components["schemas"]["team-simple"][] | null;
2196
+ assignee: {
2197
+ name?: string | null;
2198
+ email?: string | null;
2199
+ login: string;
2200
+ id: number;
2201
+ node_id: string;
2202
+ avatar_url: string;
2203
+ gravatar_id: string | null;
2204
+ url: string;
2205
+ html_url: string;
2206
+ followers_url: string;
2207
+ following_url: string;
2208
+ gists_url: string;
2209
+ starred_url: string;
2210
+ subscriptions_url: string;
2211
+ organizations_url: string;
2212
+ repos_url: string;
2213
+ events_url: string;
2214
+ received_events_url: string;
2215
+ type: string;
2216
+ site_admin: boolean;
2217
+ starred_at?: string;
2218
+ user_view_type?: string;
2219
+ } | null;
2220
+ assignees?: {
2221
+ name?: string | null;
2222
+ email?: string | null;
2223
+ login: string;
2224
+ id: number;
2225
+ node_id: string;
2226
+ avatar_url: string;
2227
+ gravatar_id: string | null;
2228
+ url: string;
2229
+ html_url: string;
2230
+ followers_url: string;
2231
+ following_url: string;
2232
+ gists_url: string;
2233
+ starred_url: string;
2234
+ subscriptions_url: string;
2235
+ organizations_url: string;
2236
+ repos_url: string;
2237
+ events_url: string;
2238
+ received_events_url: string;
2239
+ type: string;
2240
+ site_admin: boolean;
2241
+ starred_at?: string;
2242
+ user_view_type?: string;
2243
+ }[] | null;
2244
+ requested_reviewers?: {
2245
+ name?: string | null;
2246
+ email?: string | null;
2247
+ login: string;
2248
+ id: number;
2249
+ node_id: string;
2250
+ avatar_url: string;
2251
+ gravatar_id: string | null;
2252
+ url: string;
2253
+ html_url: string;
2254
+ followers_url: string;
2255
+ following_url: string;
2256
+ gists_url: string;
2257
+ starred_url: string;
2258
+ subscriptions_url: string;
2259
+ organizations_url: string;
2260
+ repos_url: string;
2261
+ events_url: string;
2262
+ received_events_url: string;
2263
+ type: string;
2264
+ site_admin: boolean;
2265
+ starred_at?: string;
2266
+ user_view_type?: string;
2267
+ }[] | null;
2268
+ requested_teams?: {
2269
+ id: number;
2270
+ node_id: string;
2271
+ url: string;
2272
+ members_url: string;
2273
+ name: string;
2274
+ description: string | null;
2275
+ permission: string;
2276
+ privacy?: string;
2277
+ notification_setting?: string;
2278
+ html_url: string;
2279
+ repositories_url: string;
2280
+ slug: string;
2281
+ ldap_dn?: string;
2282
+ type: "enterprise" | "organization";
2283
+ organization_id?: number;
2284
+ enterprise_id?: number;
2285
+ }[] | null;
335
2286
  head: {
336
2287
  label: string;
337
2288
  ref: string;
338
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
2289
+ repo: {
2290
+ id: number;
2291
+ node_id: string;
2292
+ name: string;
2293
+ full_name: string;
2294
+ license: {
2295
+ key: string;
2296
+ name: string;
2297
+ url: string | null;
2298
+ spdx_id: string | null;
2299
+ node_id: string;
2300
+ html_url?: string;
2301
+ } | null;
2302
+ forks: number;
2303
+ permissions?: {
2304
+ admin: boolean;
2305
+ pull: boolean;
2306
+ triage?: boolean;
2307
+ push: boolean;
2308
+ maintain?: boolean;
2309
+ };
2310
+ owner: {
2311
+ name?: string | null;
2312
+ email?: string | null;
2313
+ login: string;
2314
+ id: number;
2315
+ node_id: string;
2316
+ avatar_url: string;
2317
+ gravatar_id: string | null;
2318
+ url: string;
2319
+ html_url: string;
2320
+ followers_url: string;
2321
+ following_url: string;
2322
+ gists_url: string;
2323
+ starred_url: string;
2324
+ subscriptions_url: string;
2325
+ organizations_url: string;
2326
+ repos_url: string;
2327
+ events_url: string;
2328
+ received_events_url: string;
2329
+ type: string;
2330
+ site_admin: boolean;
2331
+ starred_at?: string;
2332
+ user_view_type?: string;
2333
+ };
2334
+ private: boolean;
2335
+ html_url: string;
2336
+ description: string | null;
2337
+ fork: boolean;
2338
+ url: string;
2339
+ archive_url: string;
2340
+ assignees_url: string;
2341
+ blobs_url: string;
2342
+ branches_url: string;
2343
+ collaborators_url: string;
2344
+ comments_url: string;
2345
+ commits_url: string;
2346
+ compare_url: string;
2347
+ contents_url: string;
2348
+ contributors_url: string;
2349
+ deployments_url: string;
2350
+ downloads_url: string;
2351
+ events_url: string;
2352
+ forks_url: string;
2353
+ git_commits_url: string;
2354
+ git_refs_url: string;
2355
+ git_tags_url: string;
2356
+ git_url: string;
2357
+ issue_comment_url: string;
2358
+ issue_events_url: string;
2359
+ issues_url: string;
2360
+ keys_url: string;
2361
+ labels_url: string;
2362
+ languages_url: string;
2363
+ merges_url: string;
2364
+ milestones_url: string;
2365
+ notifications_url: string;
2366
+ pulls_url: string;
2367
+ releases_url: string;
2368
+ ssh_url: string;
2369
+ stargazers_url: string;
2370
+ statuses_url: string;
2371
+ subscribers_url: string;
2372
+ subscription_url: string;
2373
+ tags_url: string;
2374
+ teams_url: string;
2375
+ trees_url: string;
2376
+ clone_url: string;
2377
+ mirror_url: string | null;
2378
+ hooks_url: string;
2379
+ svn_url: string;
2380
+ homepage: string | null;
2381
+ language: string | null;
2382
+ forks_count: number;
2383
+ stargazers_count: number;
2384
+ watchers_count: number;
2385
+ size: number;
2386
+ default_branch: string;
2387
+ open_issues_count: number;
2388
+ is_template?: boolean;
2389
+ topics?: string[];
2390
+ has_issues: boolean;
2391
+ has_projects: boolean;
2392
+ has_wiki: boolean;
2393
+ has_pages: boolean;
2394
+ has_downloads: boolean;
2395
+ has_discussions?: boolean;
2396
+ archived: boolean;
2397
+ disabled: boolean;
2398
+ visibility?: string;
2399
+ pushed_at: string | null;
2400
+ created_at: string | null;
2401
+ updated_at: string | null;
2402
+ allow_rebase_merge?: boolean;
2403
+ temp_clone_token?: string;
2404
+ allow_squash_merge?: boolean;
2405
+ allow_auto_merge?: boolean;
2406
+ delete_branch_on_merge?: boolean;
2407
+ allow_update_branch?: boolean;
2408
+ use_squash_pr_title_as_default?: boolean;
2409
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
2410
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
2411
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
2412
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
2413
+ allow_merge_commit?: boolean;
2414
+ allow_forking?: boolean;
2415
+ web_commit_signoff_required?: boolean;
2416
+ open_issues: number;
2417
+ watchers: number;
2418
+ master_branch?: string;
2419
+ starred_at?: string;
2420
+ anonymous_access_enabled?: boolean;
2421
+ code_search_index_status?: {
2422
+ lexical_search_ok?: boolean;
2423
+ lexical_commit_sha?: string;
2424
+ };
2425
+ };
339
2426
  sha: string;
340
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
2427
+ user: {
2428
+ name?: string | null;
2429
+ email?: string | null;
2430
+ login: string;
2431
+ id: number;
2432
+ node_id: string;
2433
+ avatar_url: string;
2434
+ gravatar_id: string | null;
2435
+ url: string;
2436
+ html_url: string;
2437
+ followers_url: string;
2438
+ following_url: string;
2439
+ gists_url: string;
2440
+ starred_url: string;
2441
+ subscriptions_url: string;
2442
+ organizations_url: string;
2443
+ repos_url: string;
2444
+ events_url: string;
2445
+ received_events_url: string;
2446
+ type: string;
2447
+ site_admin: boolean;
2448
+ starred_at?: string;
2449
+ user_view_type?: string;
2450
+ };
341
2451
  };
342
2452
  base: {
343
2453
  label: string;
344
2454
  ref: string;
345
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
2455
+ repo: {
2456
+ id: number;
2457
+ node_id: string;
2458
+ name: string;
2459
+ full_name: string;
2460
+ license: {
2461
+ key: string;
2462
+ name: string;
2463
+ url: string | null;
2464
+ spdx_id: string | null;
2465
+ node_id: string;
2466
+ html_url?: string;
2467
+ } | null;
2468
+ forks: number;
2469
+ permissions?: {
2470
+ admin: boolean;
2471
+ pull: boolean;
2472
+ triage?: boolean;
2473
+ push: boolean;
2474
+ maintain?: boolean;
2475
+ };
2476
+ owner: {
2477
+ name?: string | null;
2478
+ email?: string | null;
2479
+ login: string;
2480
+ id: number;
2481
+ node_id: string;
2482
+ avatar_url: string;
2483
+ gravatar_id: string | null;
2484
+ url: string;
2485
+ html_url: string;
2486
+ followers_url: string;
2487
+ following_url: string;
2488
+ gists_url: string;
2489
+ starred_url: string;
2490
+ subscriptions_url: string;
2491
+ organizations_url: string;
2492
+ repos_url: string;
2493
+ events_url: string;
2494
+ received_events_url: string;
2495
+ type: string;
2496
+ site_admin: boolean;
2497
+ starred_at?: string;
2498
+ user_view_type?: string;
2499
+ };
2500
+ private: boolean;
2501
+ html_url: string;
2502
+ description: string | null;
2503
+ fork: boolean;
2504
+ url: string;
2505
+ archive_url: string;
2506
+ assignees_url: string;
2507
+ blobs_url: string;
2508
+ branches_url: string;
2509
+ collaborators_url: string;
2510
+ comments_url: string;
2511
+ commits_url: string;
2512
+ compare_url: string;
2513
+ contents_url: string;
2514
+ contributors_url: string;
2515
+ deployments_url: string;
2516
+ downloads_url: string;
2517
+ events_url: string;
2518
+ forks_url: string;
2519
+ git_commits_url: string;
2520
+ git_refs_url: string;
2521
+ git_tags_url: string;
2522
+ git_url: string;
2523
+ issue_comment_url: string;
2524
+ issue_events_url: string;
2525
+ issues_url: string;
2526
+ keys_url: string;
2527
+ labels_url: string;
2528
+ languages_url: string;
2529
+ merges_url: string;
2530
+ milestones_url: string;
2531
+ notifications_url: string;
2532
+ pulls_url: string;
2533
+ releases_url: string;
2534
+ ssh_url: string;
2535
+ stargazers_url: string;
2536
+ statuses_url: string;
2537
+ subscribers_url: string;
2538
+ subscription_url: string;
2539
+ tags_url: string;
2540
+ teams_url: string;
2541
+ trees_url: string;
2542
+ clone_url: string;
2543
+ mirror_url: string | null;
2544
+ hooks_url: string;
2545
+ svn_url: string;
2546
+ homepage: string | null;
2547
+ language: string | null;
2548
+ forks_count: number;
2549
+ stargazers_count: number;
2550
+ watchers_count: number;
2551
+ size: number;
2552
+ default_branch: string;
2553
+ open_issues_count: number;
2554
+ is_template?: boolean;
2555
+ topics?: string[];
2556
+ has_issues: boolean;
2557
+ has_projects: boolean;
2558
+ has_wiki: boolean;
2559
+ has_pages: boolean;
2560
+ has_downloads: boolean;
2561
+ has_discussions?: boolean;
2562
+ archived: boolean;
2563
+ disabled: boolean;
2564
+ visibility?: string;
2565
+ pushed_at: string | null;
2566
+ created_at: string | null;
2567
+ updated_at: string | null;
2568
+ allow_rebase_merge?: boolean;
2569
+ temp_clone_token?: string;
2570
+ allow_squash_merge?: boolean;
2571
+ allow_auto_merge?: boolean;
2572
+ delete_branch_on_merge?: boolean;
2573
+ allow_update_branch?: boolean;
2574
+ use_squash_pr_title_as_default?: boolean;
2575
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
2576
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
2577
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
2578
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
2579
+ allow_merge_commit?: boolean;
2580
+ allow_forking?: boolean;
2581
+ web_commit_signoff_required?: boolean;
2582
+ open_issues: number;
2583
+ watchers: number;
2584
+ master_branch?: string;
2585
+ starred_at?: string;
2586
+ anonymous_access_enabled?: boolean;
2587
+ code_search_index_status?: {
2588
+ lexical_search_ok?: boolean;
2589
+ lexical_commit_sha?: string;
2590
+ };
2591
+ };
346
2592
  sha: string;
347
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
2593
+ user: {
2594
+ name?: string | null;
2595
+ email?: string | null;
2596
+ login: string;
2597
+ id: number;
2598
+ node_id: string;
2599
+ avatar_url: string;
2600
+ gravatar_id: string | null;
2601
+ url: string;
2602
+ html_url: string;
2603
+ followers_url: string;
2604
+ following_url: string;
2605
+ gists_url: string;
2606
+ starred_url: string;
2607
+ subscriptions_url: string;
2608
+ organizations_url: string;
2609
+ repos_url: string;
2610
+ events_url: string;
2611
+ received_events_url: string;
2612
+ type: string;
2613
+ site_admin: boolean;
2614
+ starred_at?: string;
2615
+ user_view_type?: string;
2616
+ };
348
2617
  };
349
2618
  _links: {
350
- comments: import("@octokit/openapi-types").components["schemas"]["link"];
351
- commits: import("@octokit/openapi-types").components["schemas"]["link"];
352
- statuses: import("@octokit/openapi-types").components["schemas"]["link"];
353
- html: import("@octokit/openapi-types").components["schemas"]["link"];
354
- issue: import("@octokit/openapi-types").components["schemas"]["link"];
355
- review_comments: import("@octokit/openapi-types").components["schemas"]["link"];
356
- review_comment: import("@octokit/openapi-types").components["schemas"]["link"];
357
- self: import("@octokit/openapi-types").components["schemas"]["link"];
2619
+ comments: {
2620
+ href: string;
2621
+ };
2622
+ commits: {
2623
+ href: string;
2624
+ };
2625
+ statuses: {
2626
+ href: string;
2627
+ };
2628
+ html: {
2629
+ href: string;
2630
+ };
2631
+ issue: {
2632
+ href: string;
2633
+ };
2634
+ review_comments: {
2635
+ href: string;
2636
+ };
2637
+ review_comment: {
2638
+ href: string;
2639
+ };
2640
+ self: {
2641
+ href: string;
2642
+ };
358
2643
  };
359
- author_association: import("@octokit/openapi-types").components["schemas"]["author-association"];
360
- auto_merge: import("@octokit/openapi-types").components["schemas"]["auto-merge"];
2644
+ author_association: "COLLABORATOR" | "CONTRIBUTOR" | "FIRST_TIMER" | "FIRST_TIME_CONTRIBUTOR" | "MANNEQUIN" | "MEMBER" | "NONE" | "OWNER";
2645
+ auto_merge: {
2646
+ enabled_by: {
2647
+ name?: string | null;
2648
+ email?: string | null;
2649
+ login: string;
2650
+ id: number;
2651
+ node_id: string;
2652
+ avatar_url: string;
2653
+ gravatar_id: string | null;
2654
+ url: string;
2655
+ html_url: string;
2656
+ followers_url: string;
2657
+ following_url: string;
2658
+ gists_url: string;
2659
+ starred_url: string;
2660
+ subscriptions_url: string;
2661
+ organizations_url: string;
2662
+ repos_url: string;
2663
+ events_url: string;
2664
+ received_events_url: string;
2665
+ type: string;
2666
+ site_admin: boolean;
2667
+ starred_at?: string;
2668
+ user_view_type?: string;
2669
+ };
2670
+ merge_method: "merge" | "squash" | "rebase";
2671
+ commit_title: string;
2672
+ commit_message: string;
2673
+ } | null;
361
2674
  draft?: boolean;
362
2675
  merged: boolean;
363
2676
  mergeable: boolean | null;
364
2677
  rebaseable?: boolean | null;
365
2678
  mergeable_state: string;
366
- merged_by: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
2679
+ merged_by: {
2680
+ name?: string | null;
2681
+ email?: string | null;
2682
+ login: string;
2683
+ id: number;
2684
+ node_id: string;
2685
+ avatar_url: string;
2686
+ gravatar_id: string | null;
2687
+ url: string;
2688
+ html_url: string;
2689
+ followers_url: string;
2690
+ following_url: string;
2691
+ gists_url: string;
2692
+ starred_url: string;
2693
+ subscriptions_url: string;
2694
+ organizations_url: string;
2695
+ repos_url: string;
2696
+ events_url: string;
2697
+ received_events_url: string;
2698
+ type: string;
2699
+ site_admin: boolean;
2700
+ starred_at?: string;
2701
+ user_view_type?: string;
2702
+ } | null;
367
2703
  comments: number;
368
2704
  review_comments: number;
369
2705
  maintainer_can_modify: boolean;
@@ -391,7 +2727,30 @@ export declare function readyGitHubRepositoryPull(token: string): {
391
2727
  state: "open" | "closed";
392
2728
  locked: boolean;
393
2729
  title: string;
394
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
2730
+ user: {
2731
+ name?: string | null;
2732
+ email?: string | null;
2733
+ login: string;
2734
+ id: number;
2735
+ node_id: string;
2736
+ avatar_url: string;
2737
+ gravatar_id: string | null;
2738
+ url: string;
2739
+ html_url: string;
2740
+ followers_url: string;
2741
+ following_url: string;
2742
+ gists_url: string;
2743
+ starred_url: string;
2744
+ subscriptions_url: string;
2745
+ organizations_url: string;
2746
+ repos_url: string;
2747
+ events_url: string;
2748
+ received_events_url: string;
2749
+ type: string;
2750
+ site_admin: boolean;
2751
+ starred_at?: string;
2752
+ user_view_type?: string;
2753
+ };
395
2754
  body: string | null;
396
2755
  labels: {
397
2756
  id: number;
@@ -402,49 +2761,560 @@ export declare function readyGitHubRepositoryPull(token: string): {
402
2761
  color: string;
403
2762
  default: boolean;
404
2763
  }[];
405
- milestone: import("@octokit/openapi-types").components["schemas"]["nullable-milestone"];
2764
+ milestone: {
2765
+ url: string;
2766
+ html_url: string;
2767
+ labels_url: string;
2768
+ id: number;
2769
+ node_id: string;
2770
+ number: number;
2771
+ state: "open" | "closed";
2772
+ title: string;
2773
+ description: string | null;
2774
+ creator: {
2775
+ name?: string | null;
2776
+ email?: string | null;
2777
+ login: string;
2778
+ id: number;
2779
+ node_id: string;
2780
+ avatar_url: string;
2781
+ gravatar_id: string | null;
2782
+ url: string;
2783
+ html_url: string;
2784
+ followers_url: string;
2785
+ following_url: string;
2786
+ gists_url: string;
2787
+ starred_url: string;
2788
+ subscriptions_url: string;
2789
+ organizations_url: string;
2790
+ repos_url: string;
2791
+ events_url: string;
2792
+ received_events_url: string;
2793
+ type: string;
2794
+ site_admin: boolean;
2795
+ starred_at?: string;
2796
+ user_view_type?: string;
2797
+ } | null;
2798
+ open_issues: number;
2799
+ closed_issues: number;
2800
+ created_at: string;
2801
+ updated_at: string;
2802
+ closed_at: string | null;
2803
+ due_on: string | null;
2804
+ } | null;
406
2805
  active_lock_reason?: string | null;
407
2806
  created_at: string;
408
2807
  updated_at: string;
409
2808
  closed_at: string | null;
410
2809
  merged_at: string | null;
411
2810
  merge_commit_sha: string | null;
412
- assignee: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
413
- assignees?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
414
- requested_reviewers?: import("@octokit/openapi-types").components["schemas"]["simple-user"][] | null;
415
- requested_teams?: import("@octokit/openapi-types").components["schemas"]["team-simple"][] | null;
2811
+ assignee: {
2812
+ name?: string | null;
2813
+ email?: string | null;
2814
+ login: string;
2815
+ id: number;
2816
+ node_id: string;
2817
+ avatar_url: string;
2818
+ gravatar_id: string | null;
2819
+ url: string;
2820
+ html_url: string;
2821
+ followers_url: string;
2822
+ following_url: string;
2823
+ gists_url: string;
2824
+ starred_url: string;
2825
+ subscriptions_url: string;
2826
+ organizations_url: string;
2827
+ repos_url: string;
2828
+ events_url: string;
2829
+ received_events_url: string;
2830
+ type: string;
2831
+ site_admin: boolean;
2832
+ starred_at?: string;
2833
+ user_view_type?: string;
2834
+ } | null;
2835
+ assignees?: {
2836
+ name?: string | null;
2837
+ email?: string | null;
2838
+ login: string;
2839
+ id: number;
2840
+ node_id: string;
2841
+ avatar_url: string;
2842
+ gravatar_id: string | null;
2843
+ url: string;
2844
+ html_url: string;
2845
+ followers_url: string;
2846
+ following_url: string;
2847
+ gists_url: string;
2848
+ starred_url: string;
2849
+ subscriptions_url: string;
2850
+ organizations_url: string;
2851
+ repos_url: string;
2852
+ events_url: string;
2853
+ received_events_url: string;
2854
+ type: string;
2855
+ site_admin: boolean;
2856
+ starred_at?: string;
2857
+ user_view_type?: string;
2858
+ }[] | null;
2859
+ requested_reviewers?: {
2860
+ name?: string | null;
2861
+ email?: string | null;
2862
+ login: string;
2863
+ id: number;
2864
+ node_id: string;
2865
+ avatar_url: string;
2866
+ gravatar_id: string | null;
2867
+ url: string;
2868
+ html_url: string;
2869
+ followers_url: string;
2870
+ following_url: string;
2871
+ gists_url: string;
2872
+ starred_url: string;
2873
+ subscriptions_url: string;
2874
+ organizations_url: string;
2875
+ repos_url: string;
2876
+ events_url: string;
2877
+ received_events_url: string;
2878
+ type: string;
2879
+ site_admin: boolean;
2880
+ starred_at?: string;
2881
+ user_view_type?: string;
2882
+ }[] | null;
2883
+ requested_teams?: {
2884
+ id: number;
2885
+ node_id: string;
2886
+ url: string;
2887
+ members_url: string;
2888
+ name: string;
2889
+ description: string | null;
2890
+ permission: string;
2891
+ privacy?: string;
2892
+ notification_setting?: string;
2893
+ html_url: string;
2894
+ repositories_url: string;
2895
+ slug: string;
2896
+ ldap_dn?: string;
2897
+ type: "enterprise" | "organization";
2898
+ organization_id?: number;
2899
+ enterprise_id?: number;
2900
+ }[] | null;
416
2901
  head: {
417
2902
  label: string;
418
2903
  ref: string;
419
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
2904
+ repo: {
2905
+ id: number;
2906
+ node_id: string;
2907
+ name: string;
2908
+ full_name: string;
2909
+ license: {
2910
+ key: string;
2911
+ name: string;
2912
+ url: string | null;
2913
+ spdx_id: string | null;
2914
+ node_id: string;
2915
+ html_url?: string;
2916
+ } | null;
2917
+ forks: number;
2918
+ permissions?: {
2919
+ admin: boolean;
2920
+ pull: boolean;
2921
+ triage?: boolean;
2922
+ push: boolean;
2923
+ maintain?: boolean;
2924
+ };
2925
+ owner: {
2926
+ name?: string | null;
2927
+ email?: string | null;
2928
+ login: string;
2929
+ id: number;
2930
+ node_id: string;
2931
+ avatar_url: string;
2932
+ gravatar_id: string | null;
2933
+ url: string;
2934
+ html_url: string;
2935
+ followers_url: string;
2936
+ following_url: string;
2937
+ gists_url: string;
2938
+ starred_url: string;
2939
+ subscriptions_url: string;
2940
+ organizations_url: string;
2941
+ repos_url: string;
2942
+ events_url: string;
2943
+ received_events_url: string;
2944
+ type: string;
2945
+ site_admin: boolean;
2946
+ starred_at?: string;
2947
+ user_view_type?: string;
2948
+ };
2949
+ private: boolean;
2950
+ html_url: string;
2951
+ description: string | null;
2952
+ fork: boolean;
2953
+ url: string;
2954
+ archive_url: string;
2955
+ assignees_url: string;
2956
+ blobs_url: string;
2957
+ branches_url: string;
2958
+ collaborators_url: string;
2959
+ comments_url: string;
2960
+ commits_url: string;
2961
+ compare_url: string;
2962
+ contents_url: string;
2963
+ contributors_url: string;
2964
+ deployments_url: string;
2965
+ downloads_url: string;
2966
+ events_url: string;
2967
+ forks_url: string;
2968
+ git_commits_url: string;
2969
+ git_refs_url: string;
2970
+ git_tags_url: string;
2971
+ git_url: string;
2972
+ issue_comment_url: string;
2973
+ issue_events_url: string;
2974
+ issues_url: string;
2975
+ keys_url: string;
2976
+ labels_url: string;
2977
+ languages_url: string;
2978
+ merges_url: string;
2979
+ milestones_url: string;
2980
+ notifications_url: string;
2981
+ pulls_url: string;
2982
+ releases_url: string;
2983
+ ssh_url: string;
2984
+ stargazers_url: string;
2985
+ statuses_url: string;
2986
+ subscribers_url: string;
2987
+ subscription_url: string;
2988
+ tags_url: string;
2989
+ teams_url: string;
2990
+ trees_url: string;
2991
+ clone_url: string;
2992
+ mirror_url: string | null;
2993
+ hooks_url: string;
2994
+ svn_url: string;
2995
+ homepage: string | null;
2996
+ language: string | null;
2997
+ forks_count: number;
2998
+ stargazers_count: number;
2999
+ watchers_count: number;
3000
+ size: number;
3001
+ default_branch: string;
3002
+ open_issues_count: number;
3003
+ is_template?: boolean;
3004
+ topics?: string[];
3005
+ has_issues: boolean;
3006
+ has_projects: boolean;
3007
+ has_wiki: boolean;
3008
+ has_pages: boolean;
3009
+ has_downloads: boolean;
3010
+ has_discussions?: boolean;
3011
+ archived: boolean;
3012
+ disabled: boolean;
3013
+ visibility?: string;
3014
+ pushed_at: string | null;
3015
+ created_at: string | null;
3016
+ updated_at: string | null;
3017
+ allow_rebase_merge?: boolean;
3018
+ temp_clone_token?: string;
3019
+ allow_squash_merge?: boolean;
3020
+ allow_auto_merge?: boolean;
3021
+ delete_branch_on_merge?: boolean;
3022
+ allow_update_branch?: boolean;
3023
+ use_squash_pr_title_as_default?: boolean;
3024
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
3025
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
3026
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
3027
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
3028
+ allow_merge_commit?: boolean;
3029
+ allow_forking?: boolean;
3030
+ web_commit_signoff_required?: boolean;
3031
+ open_issues: number;
3032
+ watchers: number;
3033
+ master_branch?: string;
3034
+ starred_at?: string;
3035
+ anonymous_access_enabled?: boolean;
3036
+ code_search_index_status?: {
3037
+ lexical_search_ok?: boolean;
3038
+ lexical_commit_sha?: string;
3039
+ };
3040
+ };
420
3041
  sha: string;
421
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
3042
+ user: {
3043
+ name?: string | null;
3044
+ email?: string | null;
3045
+ login: string;
3046
+ id: number;
3047
+ node_id: string;
3048
+ avatar_url: string;
3049
+ gravatar_id: string | null;
3050
+ url: string;
3051
+ html_url: string;
3052
+ followers_url: string;
3053
+ following_url: string;
3054
+ gists_url: string;
3055
+ starred_url: string;
3056
+ subscriptions_url: string;
3057
+ organizations_url: string;
3058
+ repos_url: string;
3059
+ events_url: string;
3060
+ received_events_url: string;
3061
+ type: string;
3062
+ site_admin: boolean;
3063
+ starred_at?: string;
3064
+ user_view_type?: string;
3065
+ };
422
3066
  };
423
3067
  base: {
424
3068
  label: string;
425
3069
  ref: string;
426
- repo: import("@octokit/openapi-types").components["schemas"]["repository"];
3070
+ repo: {
3071
+ id: number;
3072
+ node_id: string;
3073
+ name: string;
3074
+ full_name: string;
3075
+ license: {
3076
+ key: string;
3077
+ name: string;
3078
+ url: string | null;
3079
+ spdx_id: string | null;
3080
+ node_id: string;
3081
+ html_url?: string;
3082
+ } | null;
3083
+ forks: number;
3084
+ permissions?: {
3085
+ admin: boolean;
3086
+ pull: boolean;
3087
+ triage?: boolean;
3088
+ push: boolean;
3089
+ maintain?: boolean;
3090
+ };
3091
+ owner: {
3092
+ name?: string | null;
3093
+ email?: string | null;
3094
+ login: string;
3095
+ id: number;
3096
+ node_id: string;
3097
+ avatar_url: string;
3098
+ gravatar_id: string | null;
3099
+ url: string;
3100
+ html_url: string;
3101
+ followers_url: string;
3102
+ following_url: string;
3103
+ gists_url: string;
3104
+ starred_url: string;
3105
+ subscriptions_url: string;
3106
+ organizations_url: string;
3107
+ repos_url: string;
3108
+ events_url: string;
3109
+ received_events_url: string;
3110
+ type: string;
3111
+ site_admin: boolean;
3112
+ starred_at?: string;
3113
+ user_view_type?: string;
3114
+ };
3115
+ private: boolean;
3116
+ html_url: string;
3117
+ description: string | null;
3118
+ fork: boolean;
3119
+ url: string;
3120
+ archive_url: string;
3121
+ assignees_url: string;
3122
+ blobs_url: string;
3123
+ branches_url: string;
3124
+ collaborators_url: string;
3125
+ comments_url: string;
3126
+ commits_url: string;
3127
+ compare_url: string;
3128
+ contents_url: string;
3129
+ contributors_url: string;
3130
+ deployments_url: string;
3131
+ downloads_url: string;
3132
+ events_url: string;
3133
+ forks_url: string;
3134
+ git_commits_url: string;
3135
+ git_refs_url: string;
3136
+ git_tags_url: string;
3137
+ git_url: string;
3138
+ issue_comment_url: string;
3139
+ issue_events_url: string;
3140
+ issues_url: string;
3141
+ keys_url: string;
3142
+ labels_url: string;
3143
+ languages_url: string;
3144
+ merges_url: string;
3145
+ milestones_url: string;
3146
+ notifications_url: string;
3147
+ pulls_url: string;
3148
+ releases_url: string;
3149
+ ssh_url: string;
3150
+ stargazers_url: string;
3151
+ statuses_url: string;
3152
+ subscribers_url: string;
3153
+ subscription_url: string;
3154
+ tags_url: string;
3155
+ teams_url: string;
3156
+ trees_url: string;
3157
+ clone_url: string;
3158
+ mirror_url: string | null;
3159
+ hooks_url: string;
3160
+ svn_url: string;
3161
+ homepage: string | null;
3162
+ language: string | null;
3163
+ forks_count: number;
3164
+ stargazers_count: number;
3165
+ watchers_count: number;
3166
+ size: number;
3167
+ default_branch: string;
3168
+ open_issues_count: number;
3169
+ is_template?: boolean;
3170
+ topics?: string[];
3171
+ has_issues: boolean;
3172
+ has_projects: boolean;
3173
+ has_wiki: boolean;
3174
+ has_pages: boolean;
3175
+ has_downloads: boolean;
3176
+ has_discussions?: boolean;
3177
+ archived: boolean;
3178
+ disabled: boolean;
3179
+ visibility?: string;
3180
+ pushed_at: string | null;
3181
+ created_at: string | null;
3182
+ updated_at: string | null;
3183
+ allow_rebase_merge?: boolean;
3184
+ temp_clone_token?: string;
3185
+ allow_squash_merge?: boolean;
3186
+ allow_auto_merge?: boolean;
3187
+ delete_branch_on_merge?: boolean;
3188
+ allow_update_branch?: boolean;
3189
+ use_squash_pr_title_as_default?: boolean;
3190
+ squash_merge_commit_title?: "PR_TITLE" | "COMMIT_OR_PR_TITLE";
3191
+ squash_merge_commit_message?: "PR_BODY" | "COMMIT_MESSAGES" | "BLANK";
3192
+ merge_commit_title?: "PR_TITLE" | "MERGE_MESSAGE";
3193
+ merge_commit_message?: "PR_BODY" | "PR_TITLE" | "BLANK";
3194
+ allow_merge_commit?: boolean;
3195
+ allow_forking?: boolean;
3196
+ web_commit_signoff_required?: boolean;
3197
+ open_issues: number;
3198
+ watchers: number;
3199
+ master_branch?: string;
3200
+ starred_at?: string;
3201
+ anonymous_access_enabled?: boolean;
3202
+ code_search_index_status?: {
3203
+ lexical_search_ok?: boolean;
3204
+ lexical_commit_sha?: string;
3205
+ };
3206
+ };
427
3207
  sha: string;
428
- user: import("@octokit/openapi-types").components["schemas"]["simple-user"];
3208
+ user: {
3209
+ name?: string | null;
3210
+ email?: string | null;
3211
+ login: string;
3212
+ id: number;
3213
+ node_id: string;
3214
+ avatar_url: string;
3215
+ gravatar_id: string | null;
3216
+ url: string;
3217
+ html_url: string;
3218
+ followers_url: string;
3219
+ following_url: string;
3220
+ gists_url: string;
3221
+ starred_url: string;
3222
+ subscriptions_url: string;
3223
+ organizations_url: string;
3224
+ repos_url: string;
3225
+ events_url: string;
3226
+ received_events_url: string;
3227
+ type: string;
3228
+ site_admin: boolean;
3229
+ starred_at?: string;
3230
+ user_view_type?: string;
3231
+ };
429
3232
  };
430
3233
  _links: {
431
- comments: import("@octokit/openapi-types").components["schemas"]["link"];
432
- commits: import("@octokit/openapi-types").components["schemas"]["link"];
433
- statuses: import("@octokit/openapi-types").components["schemas"]["link"];
434
- html: import("@octokit/openapi-types").components["schemas"]["link"];
435
- issue: import("@octokit/openapi-types").components["schemas"]["link"];
436
- review_comments: import("@octokit/openapi-types").components["schemas"]["link"];
437
- review_comment: import("@octokit/openapi-types").components["schemas"]["link"];
438
- self: import("@octokit/openapi-types").components["schemas"]["link"];
3234
+ comments: {
3235
+ href: string;
3236
+ };
3237
+ commits: {
3238
+ href: string;
3239
+ };
3240
+ statuses: {
3241
+ href: string;
3242
+ };
3243
+ html: {
3244
+ href: string;
3245
+ };
3246
+ issue: {
3247
+ href: string;
3248
+ };
3249
+ review_comments: {
3250
+ href: string;
3251
+ };
3252
+ review_comment: {
3253
+ href: string;
3254
+ };
3255
+ self: {
3256
+ href: string;
3257
+ };
439
3258
  };
440
- author_association: import("@octokit/openapi-types").components["schemas"]["author-association"];
441
- auto_merge: import("@octokit/openapi-types").components["schemas"]["auto-merge"];
3259
+ author_association: "COLLABORATOR" | "CONTRIBUTOR" | "FIRST_TIMER" | "FIRST_TIME_CONTRIBUTOR" | "MANNEQUIN" | "MEMBER" | "NONE" | "OWNER";
3260
+ auto_merge: {
3261
+ enabled_by: {
3262
+ name?: string | null;
3263
+ email?: string | null;
3264
+ login: string;
3265
+ id: number;
3266
+ node_id: string;
3267
+ avatar_url: string;
3268
+ gravatar_id: string | null;
3269
+ url: string;
3270
+ html_url: string;
3271
+ followers_url: string;
3272
+ following_url: string;
3273
+ gists_url: string;
3274
+ starred_url: string;
3275
+ subscriptions_url: string;
3276
+ organizations_url: string;
3277
+ repos_url: string;
3278
+ events_url: string;
3279
+ received_events_url: string;
3280
+ type: string;
3281
+ site_admin: boolean;
3282
+ starred_at?: string;
3283
+ user_view_type?: string;
3284
+ };
3285
+ merge_method: "merge" | "squash" | "rebase";
3286
+ commit_title: string;
3287
+ commit_message: string;
3288
+ } | null;
442
3289
  draft?: boolean;
443
3290
  merged: boolean;
444
3291
  mergeable: boolean | null;
445
3292
  rebaseable?: boolean | null;
446
3293
  mergeable_state: string;
447
- merged_by: import("@octokit/openapi-types").components["schemas"]["nullable-simple-user"];
3294
+ merged_by: {
3295
+ name?: string | null;
3296
+ email?: string | null;
3297
+ login: string;
3298
+ id: number;
3299
+ node_id: string;
3300
+ avatar_url: string;
3301
+ gravatar_id: string | null;
3302
+ url: string;
3303
+ html_url: string;
3304
+ followers_url: string;
3305
+ following_url: string;
3306
+ gists_url: string;
3307
+ starred_url: string;
3308
+ subscriptions_url: string;
3309
+ organizations_url: string;
3310
+ repos_url: string;
3311
+ events_url: string;
3312
+ received_events_url: string;
3313
+ type: string;
3314
+ site_admin: boolean;
3315
+ starred_at?: string;
3316
+ user_view_type?: string;
3317
+ } | null;
448
3318
  comments: number;
449
3319
  review_comments: number;
450
3320
  maintainer_can_modify: boolean;