github-schema 1.7.0 → 1.7.2
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.
- package/dist/github-schema.d.cts +52 -6
- package/dist/github-schema.d.ts +52 -6
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +85 -5
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -15485,6 +15485,11 @@ enum FundingPlatform {
|
|
|
15485
15485
|
"""
|
|
15486
15486
|
PATREON
|
|
15487
15487
|
|
|
15488
|
+
"""
|
|
15489
|
+
Polar funding platform.
|
|
15490
|
+
"""
|
|
15491
|
+
POLAR
|
|
15492
|
+
|
|
15488
15493
|
"""
|
|
15489
15494
|
Tidelift funding platform.
|
|
15490
15495
|
"""
|
|
@@ -19278,6 +19283,41 @@ type MarkFileAsViewedPayload {
|
|
|
19278
19283
|
pullRequest: PullRequest
|
|
19279
19284
|
}
|
|
19280
19285
|
|
|
19286
|
+
"""
|
|
19287
|
+
Autogenerated input type of MarkNotificationAsDone
|
|
19288
|
+
"""
|
|
19289
|
+
input MarkNotificationAsDoneInput {
|
|
19290
|
+
"""
|
|
19291
|
+
A unique identifier for the client performing the mutation.
|
|
19292
|
+
"""
|
|
19293
|
+
clientMutationId: String
|
|
19294
|
+
|
|
19295
|
+
"""
|
|
19296
|
+
The NotificationThread id.
|
|
19297
|
+
"""
|
|
19298
|
+
id: ID!
|
|
19299
|
+
}
|
|
19300
|
+
|
|
19301
|
+
"""
|
|
19302
|
+
Autogenerated return type of MarkNotificationAsDone
|
|
19303
|
+
"""
|
|
19304
|
+
type MarkNotificationAsDonePayload {
|
|
19305
|
+
"""
|
|
19306
|
+
A unique identifier for the client performing the mutation.
|
|
19307
|
+
"""
|
|
19308
|
+
clientMutationId: String
|
|
19309
|
+
|
|
19310
|
+
"""
|
|
19311
|
+
Did the operation succeed?
|
|
19312
|
+
"""
|
|
19313
|
+
success: Boolean
|
|
19314
|
+
|
|
19315
|
+
"""
|
|
19316
|
+
The user that the notification belongs to.
|
|
19317
|
+
"""
|
|
19318
|
+
viewer: User
|
|
19319
|
+
}
|
|
19320
|
+
|
|
19281
19321
|
"""
|
|
19282
19322
|
Autogenerated input type of MarkProjectV2AsTemplate
|
|
19283
19323
|
"""
|
|
@@ -20697,7 +20737,7 @@ interface Migration {
|
|
|
20697
20737
|
|
|
20698
20738
|
"""
|
|
20699
20739
|
The number of warnings encountered for this migration. To review the warnings,
|
|
20700
|
-
check the [Migration Log](https://docs.github.com/
|
|
20740
|
+
check the [Migration Log](https://docs.github.com/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
|
|
20701
20741
|
"""
|
|
20702
20742
|
warningsCount: Int!
|
|
20703
20743
|
}
|
|
@@ -22393,6 +22433,16 @@ type Mutation {
|
|
|
22393
22433
|
input: MarkFileAsViewedInput!
|
|
22394
22434
|
): MarkFileAsViewedPayload
|
|
22395
22435
|
|
|
22436
|
+
"""
|
|
22437
|
+
Marks a notification as done
|
|
22438
|
+
"""
|
|
22439
|
+
markNotificationAsDone(
|
|
22440
|
+
"""
|
|
22441
|
+
Parameters for MarkNotificationAsDone
|
|
22442
|
+
"""
|
|
22443
|
+
input: MarkNotificationAsDoneInput!
|
|
22444
|
+
): MarkNotificationAsDonePayload
|
|
22445
|
+
|
|
22396
22446
|
"""
|
|
22397
22447
|
Mark a project as a template. Note that only projects which are owned by an Organization can be marked as a template.
|
|
22398
22448
|
"""
|
|
@@ -34332,7 +34382,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
|
|
34332
34382
|
"""
|
|
34333
34383
|
Identifies the primary key from the database.
|
|
34334
34384
|
"""
|
|
34335
|
-
databaseId: Int
|
|
34385
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.")
|
|
34336
34386
|
|
|
34337
34387
|
"""
|
|
34338
34388
|
The number of deletions in this pull request.
|
|
@@ -34369,6 +34419,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
|
|
34369
34419
|
last: Int
|
|
34370
34420
|
): PullRequestChangedFileConnection
|
|
34371
34421
|
|
|
34422
|
+
"""
|
|
34423
|
+
Identifies the primary key from the database as a BigInt.
|
|
34424
|
+
"""
|
|
34425
|
+
fullDatabaseId: BigInt
|
|
34426
|
+
|
|
34372
34427
|
"""
|
|
34373
34428
|
Identifies the head Ref associated with the pull request.
|
|
34374
34429
|
"""
|
|
@@ -35601,13 +35656,18 @@ type PullRequestReview implements Comment & Deletable & Minimizable & Node & Rea
|
|
|
35601
35656
|
"""
|
|
35602
35657
|
Identifies the primary key from the database.
|
|
35603
35658
|
"""
|
|
35604
|
-
databaseId: Int
|
|
35659
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.")
|
|
35605
35660
|
|
|
35606
35661
|
"""
|
|
35607
35662
|
The actor who edited the comment.
|
|
35608
35663
|
"""
|
|
35609
35664
|
editor: Actor
|
|
35610
35665
|
|
|
35666
|
+
"""
|
|
35667
|
+
Identifies the primary key from the database as a BigInt.
|
|
35668
|
+
"""
|
|
35669
|
+
fullDatabaseId: BigInt
|
|
35670
|
+
|
|
35611
35671
|
"""
|
|
35612
35672
|
The Node ID of the PullRequestReview object
|
|
35613
35673
|
"""
|
|
@@ -35843,7 +35903,7 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod
|
|
|
35843
35903
|
"""
|
|
35844
35904
|
Identifies the primary key from the database.
|
|
35845
35905
|
"""
|
|
35846
|
-
databaseId: Int
|
|
35906
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.")
|
|
35847
35907
|
|
|
35848
35908
|
"""
|
|
35849
35909
|
The diff hunk to which the comment applies.
|
|
@@ -35860,6 +35920,11 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod
|
|
|
35860
35920
|
"""
|
|
35861
35921
|
editor: Actor
|
|
35862
35922
|
|
|
35923
|
+
"""
|
|
35924
|
+
Identifies the primary key from the database as a BigInt.
|
|
35925
|
+
"""
|
|
35926
|
+
fullDatabaseId: BigInt
|
|
35927
|
+
|
|
35863
35928
|
"""
|
|
35864
35929
|
The Node ID of the PullRequestReviewComment object
|
|
35865
35930
|
"""
|
|
@@ -42521,6 +42586,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
42521
42586
|
"""
|
|
42522
42587
|
hasProjectsEnabled: Boolean!
|
|
42523
42588
|
|
|
42589
|
+
"""
|
|
42590
|
+
Indicates if the repository displays a Sponsor button for financial contributions.
|
|
42591
|
+
"""
|
|
42592
|
+
hasSponsorshipsEnabled: Boolean!
|
|
42593
|
+
|
|
42524
42594
|
"""
|
|
42525
42595
|
Whether vulnerability alerts are enabled for the repository.
|
|
42526
42596
|
"""
|
|
@@ -44042,6 +44112,11 @@ interface RepositoryInfo {
|
|
|
44042
44112
|
"""
|
|
44043
44113
|
hasProjectsEnabled: Boolean!
|
|
44044
44114
|
|
|
44115
|
+
"""
|
|
44116
|
+
Indicates if the repository displays a Sponsor button for financial contributions.
|
|
44117
|
+
"""
|
|
44118
|
+
hasSponsorshipsEnabled: Boolean!
|
|
44119
|
+
|
|
44045
44120
|
"""
|
|
44046
44121
|
Indicates if the repository has wiki feature enabled.
|
|
44047
44122
|
"""
|
|
@@ -44454,7 +44529,7 @@ type RepositoryMigration implements Migration & Node {
|
|
|
44454
44529
|
|
|
44455
44530
|
"""
|
|
44456
44531
|
The number of warnings encountered for this migration. To review the warnings,
|
|
44457
|
-
check the [Migration Log](https://docs.github.com/
|
|
44532
|
+
check the [Migration Log](https://docs.github.com/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer).
|
|
44458
44533
|
"""
|
|
44459
44534
|
warningsCount: Int!
|
|
44460
44535
|
}
|
|
@@ -57319,6 +57394,11 @@ input UpdateRepositoryInput {
|
|
|
57319
57394
|
"""
|
|
57320
57395
|
hasProjectsEnabled: Boolean
|
|
57321
57396
|
|
|
57397
|
+
"""
|
|
57398
|
+
Indicates if the repository displays a Sponsor button for financial contributions.
|
|
57399
|
+
"""
|
|
57400
|
+
hasSponsorshipsEnabled: Boolean
|
|
57401
|
+
|
|
57322
57402
|
"""
|
|
57323
57403
|
Indicates if the repository should have the wiki feature enabled.
|
|
57324
57404
|
"""
|