github-schema 1.11.3 → 1.12.1

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.
@@ -1026,6 +1026,56 @@ type AddStarPayload {
1026
1026
  starrable: Starrable
1027
1027
  }
1028
1028
 
1029
+ """
1030
+ Autogenerated input type of AddSubIssue
1031
+ """
1032
+ input AddSubIssueInput {
1033
+ """
1034
+ A unique identifier for the client performing the mutation.
1035
+ """
1036
+ clientMutationId: String
1037
+
1038
+ """
1039
+ The id of the issue.
1040
+ """
1041
+ issueId: ID!
1042
+
1043
+ """
1044
+ Option to replace parent issue if one already exists
1045
+ """
1046
+ replaceParent: Boolean
1047
+
1048
+ """
1049
+ The id of the sub-issue.
1050
+ """
1051
+ subIssueId: ID
1052
+
1053
+ """
1054
+ The url of the sub-issue.
1055
+ """
1056
+ subIssueUrl: String
1057
+ }
1058
+
1059
+ """
1060
+ Autogenerated return type of AddSubIssue.
1061
+ """
1062
+ type AddSubIssuePayload {
1063
+ """
1064
+ A unique identifier for the client performing the mutation.
1065
+ """
1066
+ clientMutationId: String
1067
+
1068
+ """
1069
+ The parent issue that the sub-issue was added to.
1070
+ """
1071
+ issue: Issue
1072
+
1073
+ """
1074
+ The sub-issue of the parent.
1075
+ """
1076
+ subIssue: Issue
1077
+ }
1078
+
1029
1079
  """
1030
1080
  Autogenerated input type of AddUpvote
1031
1081
  """
@@ -1169,7 +1219,7 @@ type AddedToProjectEvent implements Node {
1169
1219
  """
1170
1220
  Represents an announcement banner.
1171
1221
  """
1172
- interface AnnouncementBanner {
1222
+ interface AnnouncementBannerI {
1173
1223
  """
1174
1224
  The text of the announcement
1175
1225
  """
@@ -7566,6 +7616,11 @@ input CreateIssueInput {
7566
7616
  """
7567
7617
  milestoneId: ID
7568
7618
 
7619
+ """
7620
+ The Node ID of the parent issue to add this new issue to
7621
+ """
7622
+ parentIssueId: ID
7623
+
7569
7624
  """
7570
7625
  An array of Node IDs for projects associated with this issue.
7571
7626
  """
@@ -10308,6 +10363,11 @@ type DeployKey implements Node {
10308
10363
  """
10309
10364
  createdAt: DateTime!
10310
10365
 
10366
+ """
10367
+ Whether or not the deploy key is enabled by policy at the Enterprise or Organization level.
10368
+ """
10369
+ enabled: Boolean!
10370
+
10311
10371
  """
10312
10372
  The Node ID of the DeployKey object
10313
10373
  """
@@ -12719,7 +12779,7 @@ type EnqueuePullRequestPayload {
12719
12779
  """
12720
12780
  An account to manage multiple organizations with consolidated policy and billing.
12721
12781
  """
12722
- type Enterprise implements AnnouncementBanner & Node {
12782
+ type Enterprise implements AnnouncementBannerI & Node {
12723
12783
  """
12724
12784
  The text of the announcement
12725
12785
  """
@@ -14757,6 +14817,46 @@ type EnterpriseOwnerInfo {
14757
14817
  query: String
14758
14818
  ): EnterpriseMemberInvitationConnection!
14759
14819
 
14820
+ """
14821
+ The setting value for whether deploy keys are enabled for repositories in organizations in this enterprise.
14822
+ """
14823
+ repositoryDeployKeySetting: EnterpriseEnabledDisabledSettingValue!
14824
+
14825
+ """
14826
+ A list of enterprise organizations configured with the provided deploy keys setting value.
14827
+ """
14828
+ repositoryDeployKeySettingOrganizations(
14829
+ """
14830
+ Returns the elements in the list that come after the specified cursor.
14831
+ """
14832
+ after: String
14833
+
14834
+ """
14835
+ Returns the elements in the list that come before the specified cursor.
14836
+ """
14837
+ before: String
14838
+
14839
+ """
14840
+ Returns the first _n_ elements from the list.
14841
+ """
14842
+ first: Int
14843
+
14844
+ """
14845
+ Returns the last _n_ elements from the list.
14846
+ """
14847
+ last: Int
14848
+
14849
+ """
14850
+ Ordering options for organizations with this setting.
14851
+ """
14852
+ orderBy: OrganizationOrder = {field: LOGIN, direction: ASC}
14853
+
14854
+ """
14855
+ The setting value to find organizations for.
14856
+ """
14857
+ value: Boolean!
14858
+ ): OrganizationConnection!
14859
+
14760
14860
  """
14761
14861
  The setting value for whether repository projects are enabled in this enterprise.
14762
14862
  """
@@ -17270,6 +17370,11 @@ interface GitSignature {
17270
17370
  """
17271
17371
  state: GitSignatureState!
17272
17372
 
17373
+ """
17374
+ The date the signature was verified, if valid
17375
+ """
17376
+ verifiedAt: DateTime
17377
+
17273
17378
  """
17274
17379
  True if the signature was made with GitHub's signing key.
17275
17380
  """
@@ -17411,6 +17516,11 @@ type GpgSignature implements GitSignature {
17411
17516
  """
17412
17517
  state: GitSignatureState!
17413
17518
 
17519
+ """
17520
+ The date the signature was verified, if valid
17521
+ """
17522
+ verifiedAt: DateTime
17523
+
17414
17524
  """
17415
17525
  True if the signature was made with GitHub's signing key.
17416
17526
  """
@@ -18221,6 +18331,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
18221
18331
  """
18222
18332
  number: Int!
18223
18333
 
18334
+ """
18335
+ The parent entity of the issue.
18336
+ """
18337
+ parent: Issue
18338
+
18224
18339
  """
18225
18340
  A list of Users that are participating in the Issue conversation.
18226
18341
  """
@@ -18421,6 +18536,36 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
18421
18536
  """
18422
18537
  stateReason: IssueStateReason
18423
18538
 
18539
+ """
18540
+ A list of sub-issues associated with the Issue.
18541
+ """
18542
+ subIssues(
18543
+ """
18544
+ Returns the elements in the list that come after the specified cursor.
18545
+ """
18546
+ after: String
18547
+
18548
+ """
18549
+ Returns the elements in the list that come before the specified cursor.
18550
+ """
18551
+ before: String
18552
+
18553
+ """
18554
+ Returns the first _n_ elements from the list.
18555
+ """
18556
+ first: Int
18557
+
18558
+ """
18559
+ Returns the last _n_ elements from the list.
18560
+ """
18561
+ last: Int
18562
+ ): IssueConnection!
18563
+
18564
+ """
18565
+ Summary of the state of an issue's sub-issues
18566
+ """
18567
+ subIssuesSummary: SubIssuesSummary!
18568
+
18424
18569
  """
18425
18570
  A list of events, comments, commits, etc. associated with the issue.
18426
18571
  """
@@ -22977,6 +23122,16 @@ type Mutation {
22977
23122
  input: AddStarInput!
22978
23123
  ): AddStarPayload
22979
23124
 
23125
+ """
23126
+ Adds a sub-issue to a given issue
23127
+ """
23128
+ addSubIssue(
23129
+ """
23130
+ Parameters for AddSubIssue
23131
+ """
23132
+ input: AddSubIssueInput!
23133
+ ): AddSubIssuePayload
23134
+
22980
23135
  """
22981
23136
  Add an upvote to a discussion or discussion comment.
22982
23137
  """
@@ -24247,6 +24402,16 @@ type Mutation {
24247
24402
  input: RemoveStarInput!
24248
24403
  ): RemoveStarPayload
24249
24404
 
24405
+ """
24406
+ Removes a sub-issue from a given issue
24407
+ """
24408
+ removeSubIssue(
24409
+ """
24410
+ Parameters for RemoveSubIssue
24411
+ """
24412
+ input: RemoveSubIssueInput!
24413
+ ): RemoveSubIssuePayload
24414
+
24250
24415
  """
24251
24416
  Remove an upvote to a discussion or discussion comment.
24252
24417
  """
@@ -24297,6 +24462,16 @@ type Mutation {
24297
24462
  input: ReorderEnvironmentInput!
24298
24463
  ): ReorderEnvironmentPayload
24299
24464
 
24465
+ """
24466
+ Reprioritizes a sub-issue to a different position in the parent list.
24467
+ """
24468
+ reprioritizeSubIssue(
24469
+ """
24470
+ Parameters for ReprioritizeSubIssue
24471
+ """
24472
+ input: ReprioritizeSubIssueInput!
24473
+ ): ReprioritizeSubIssuePayload
24474
+
24300
24475
  """
24301
24476
  Set review requests on a pull request.
24302
24477
  """
@@ -28913,7 +29088,7 @@ type OrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements AuditEnt
28913
29088
  """
28914
29089
  An account on GitHub, with one or more owners, that has repositories, members and teams.
28915
29090
  """
28916
- type Organization implements Actor & AnnouncementBanner & MemberStatusable & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
29091
+ type Organization implements Actor & AnnouncementBannerI & MemberStatusable & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
28917
29092
  """
28918
29093
  The text of the announcement
28919
29094
  """
@@ -41605,6 +41780,46 @@ type RemoveStarPayload {
41605
41780
  starrable: Starrable
41606
41781
  }
41607
41782
 
41783
+ """
41784
+ Autogenerated input type of RemoveSubIssue
41785
+ """
41786
+ input RemoveSubIssueInput {
41787
+ """
41788
+ A unique identifier for the client performing the mutation.
41789
+ """
41790
+ clientMutationId: String
41791
+
41792
+ """
41793
+ The id of the issue.
41794
+ """
41795
+ issueId: ID!
41796
+
41797
+ """
41798
+ The id of the sub-issue.
41799
+ """
41800
+ subIssueId: ID!
41801
+ }
41802
+
41803
+ """
41804
+ Autogenerated return type of RemoveSubIssue.
41805
+ """
41806
+ type RemoveSubIssuePayload {
41807
+ """
41808
+ A unique identifier for the client performing the mutation.
41809
+ """
41810
+ clientMutationId: String
41811
+
41812
+ """
41813
+ The parent of the sub-issue.
41814
+ """
41815
+ issue: Issue
41816
+
41817
+ """
41818
+ The sub-issue of the parent.
41819
+ """
41820
+ subIssue: Issue
41821
+ }
41822
+
41608
41823
  """
41609
41824
  Autogenerated input type of RemoveUpvote
41610
41825
  """
@@ -48402,6 +48617,51 @@ enum RepositoryVulnerabilityAlertState {
48402
48617
  OPEN
48403
48618
  }
48404
48619
 
48620
+ """
48621
+ Autogenerated input type of ReprioritizeSubIssue
48622
+ """
48623
+ input ReprioritizeSubIssueInput {
48624
+ """
48625
+ The id of the sub-issue to be prioritized after (either positional argument after OR before should be specified).
48626
+ """
48627
+ afterId: ID
48628
+
48629
+ """
48630
+ The id of the sub-issue to be prioritized before (either positional argument after OR before should be specified).
48631
+ """
48632
+ beforeId: ID
48633
+
48634
+ """
48635
+ A unique identifier for the client performing the mutation.
48636
+ """
48637
+ clientMutationId: String
48638
+
48639
+ """
48640
+ The id of the parent issue.
48641
+ """
48642
+ issueId: ID!
48643
+
48644
+ """
48645
+ The id of the sub-issue to reprioritize.
48646
+ """
48647
+ subIssueId: ID!
48648
+ }
48649
+
48650
+ """
48651
+ Autogenerated return type of ReprioritizeSubIssue.
48652
+ """
48653
+ type ReprioritizeSubIssuePayload {
48654
+ """
48655
+ A unique identifier for the client performing the mutation.
48656
+ """
48657
+ clientMutationId: String
48658
+
48659
+ """
48660
+ The parent issue that the sub-issue was reprioritized in.
48661
+ """
48662
+ issue: Issue
48663
+ }
48664
+
48405
48665
  """
48406
48666
  Autogenerated input type of RequestReviews
48407
48667
  """
@@ -50347,6 +50607,11 @@ type SmimeSignature implements GitSignature {
50347
50607
  """
50348
50608
  state: GitSignatureState!
50349
50609
 
50610
+ """
50611
+ The date the signature was verified, if valid
50612
+ """
50613
+ verifiedAt: DateTime
50614
+
50350
50615
  """
50351
50616
  True if the signature was made with GitHub's signing key.
50352
50617
  """
@@ -53355,6 +53620,11 @@ type SshSignature implements GitSignature {
53355
53620
  """
53356
53621
  state: GitSignatureState!
53357
53622
 
53623
+ """
53624
+ The date the signature was verified, if valid
53625
+ """
53626
+ verifiedAt: DateTime
53627
+
53358
53628
  """
53359
53629
  True if the signature was made with GitHub's signing key.
53360
53630
  """
@@ -54008,6 +54278,26 @@ type StripeConnectAccount {
54008
54278
  stripeDashboardUrl: URI!
54009
54279
  }
54010
54280
 
54281
+ """
54282
+ Summary of the state of an issue's sub-issues
54283
+ """
54284
+ type SubIssuesSummary {
54285
+ """
54286
+ Count of completed sub-issues
54287
+ """
54288
+ completed: Int!
54289
+
54290
+ """
54291
+ Percent of sub-issues which are completed
54292
+ """
54293
+ percentCompleted: Int!
54294
+
54295
+ """
54296
+ Count of total number of sub-issues
54297
+ """
54298
+ total: Int!
54299
+ }
54300
+
54011
54301
  """
54012
54302
  Autogenerated input type of SubmitPullRequestReview
54013
54303
  """
@@ -57208,6 +57498,11 @@ type UnknownSignature implements GitSignature {
57208
57498
  """
57209
57499
  state: GitSignatureState!
57210
57500
 
57501
+ """
57502
+ The date the signature was verified, if valid
57503
+ """
57504
+ verifiedAt: DateTime
57505
+
57211
57506
  """
57212
57507
  True if the signature was made with GitHub's signing key.
57213
57508
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.11.3",
3
+ "version": "1.12.1",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {
@@ -8,7 +8,7 @@
8
8
  "email": "lucasnrgaard@gmail.com",
9
9
  "url": "https://luxass.dev"
10
10
  },
11
- "packageManager": "pnpm@9.12.3",
11
+ "packageManager": "pnpm@9.14.2",
12
12
  "license": "MIT",
13
13
  "homepage": "https://github.com/luxass/github-schema",
14
14
  "repository": {
@@ -94,12 +94,12 @@
94
94
  "devDependencies": {
95
95
  "@graphql-codegen/add": "^5.0.3",
96
96
  "@graphql-codegen/cli": "^5.0.3",
97
- "@graphql-codegen/typescript": "^4.1.1",
98
- "@luxass/eslint-config": "^4.12.1",
97
+ "@graphql-codegen/typescript": "^4.1.2",
98
+ "@luxass/eslint-config": "^4.14.0",
99
99
  "@types/node": "^20.14.10",
100
- "eslint": "^9.14.0",
100
+ "eslint": "^9.15.0",
101
101
  "eslint-plugin-format": "^0.1.2",
102
102
  "tsup": "^8.3.5",
103
- "typescript": "^5.6.3"
103
+ "typescript": "^5.7.2"
104
104
  }
105
105
  }