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