github-schema 1.7.1 → 1.7.3
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 +44 -17
- package/dist/github-schema.d.ts +44 -17
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +73 -22
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -7959,6 +7959,13 @@ input CreateSponsorshipsInput {
|
|
|
7959
7959
|
"""
|
|
7960
7960
|
receiveEmails: Boolean = false
|
|
7961
7961
|
|
|
7962
|
+
"""
|
|
7963
|
+
Whether the sponsorships created should continue each billing cycle for the
|
|
7964
|
+
sponsor (monthly or annually), versus lasting only a single month. Defaults to
|
|
7965
|
+
one-time sponsorships.
|
|
7966
|
+
"""
|
|
7967
|
+
recurring: Boolean = false
|
|
7968
|
+
|
|
7962
7969
|
"""
|
|
7963
7970
|
The username of the user or organization who is acting as the sponsor, paying for the sponsorships.
|
|
7964
7971
|
"""
|
|
@@ -15475,11 +15482,6 @@ enum FundingPlatform {
|
|
|
15475
15482
|
"""
|
|
15476
15483
|
OPEN_COLLECTIVE
|
|
15477
15484
|
|
|
15478
|
-
"""
|
|
15479
|
-
Otechie funding platform.
|
|
15480
|
-
"""
|
|
15481
|
-
OTECHIE
|
|
15482
|
-
|
|
15483
15485
|
"""
|
|
15484
15486
|
Patreon funding platform.
|
|
15485
15487
|
"""
|
|
@@ -18939,7 +18941,7 @@ type LinkedBranch implements Node {
|
|
|
18939
18941
|
}
|
|
18940
18942
|
|
|
18941
18943
|
"""
|
|
18942
|
-
|
|
18944
|
+
A list of branches linked to an issue.
|
|
18943
18945
|
"""
|
|
18944
18946
|
type LinkedBranchConnection {
|
|
18945
18947
|
"""
|
|
@@ -19149,7 +19151,7 @@ type Mannequin implements Actor & Node & UniformResourceLocatable {
|
|
|
19149
19151
|
}
|
|
19150
19152
|
|
|
19151
19153
|
"""
|
|
19152
|
-
|
|
19154
|
+
A list of mannequins.
|
|
19153
19155
|
"""
|
|
19154
19156
|
type MannequinConnection {
|
|
19155
19157
|
"""
|
|
@@ -19283,6 +19285,41 @@ type MarkFileAsViewedPayload {
|
|
|
19283
19285
|
pullRequest: PullRequest
|
|
19284
19286
|
}
|
|
19285
19287
|
|
|
19288
|
+
"""
|
|
19289
|
+
Autogenerated input type of MarkNotificationAsDone
|
|
19290
|
+
"""
|
|
19291
|
+
input MarkNotificationAsDoneInput {
|
|
19292
|
+
"""
|
|
19293
|
+
A unique identifier for the client performing the mutation.
|
|
19294
|
+
"""
|
|
19295
|
+
clientMutationId: String
|
|
19296
|
+
|
|
19297
|
+
"""
|
|
19298
|
+
The NotificationThread id.
|
|
19299
|
+
"""
|
|
19300
|
+
id: ID!
|
|
19301
|
+
}
|
|
19302
|
+
|
|
19303
|
+
"""
|
|
19304
|
+
Autogenerated return type of MarkNotificationAsDone
|
|
19305
|
+
"""
|
|
19306
|
+
type MarkNotificationAsDonePayload {
|
|
19307
|
+
"""
|
|
19308
|
+
A unique identifier for the client performing the mutation.
|
|
19309
|
+
"""
|
|
19310
|
+
clientMutationId: String
|
|
19311
|
+
|
|
19312
|
+
"""
|
|
19313
|
+
Did the operation succeed?
|
|
19314
|
+
"""
|
|
19315
|
+
success: Boolean
|
|
19316
|
+
|
|
19317
|
+
"""
|
|
19318
|
+
The user that the notification belongs to.
|
|
19319
|
+
"""
|
|
19320
|
+
viewer: User
|
|
19321
|
+
}
|
|
19322
|
+
|
|
19286
19323
|
"""
|
|
19287
19324
|
Autogenerated input type of MarkProjectV2AsTemplate
|
|
19288
19325
|
"""
|
|
@@ -20702,7 +20739,7 @@ interface Migration {
|
|
|
20702
20739
|
|
|
20703
20740
|
"""
|
|
20704
20741
|
The number of warnings encountered for this migration. To review the warnings,
|
|
20705
|
-
check the [Migration Log](https://docs.github.com/
|
|
20742
|
+
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).
|
|
20706
20743
|
"""
|
|
20707
20744
|
warningsCount: Int!
|
|
20708
20745
|
}
|
|
@@ -21937,9 +21974,8 @@ type Mutation {
|
|
|
21937
21974
|
): CreateSponsorshipPayload
|
|
21938
21975
|
|
|
21939
21976
|
"""
|
|
21940
|
-
Make many
|
|
21941
|
-
|
|
21942
|
-
Sponsors profile.
|
|
21977
|
+
Make many sponsorships for different sponsorable users or organizations at
|
|
21978
|
+
once. Can only sponsor those who have a public GitHub Sponsors profile.
|
|
21943
21979
|
"""
|
|
21944
21980
|
createSponsorships(
|
|
21945
21981
|
"""
|
|
@@ -22398,6 +22434,16 @@ type Mutation {
|
|
|
22398
22434
|
input: MarkFileAsViewedInput!
|
|
22399
22435
|
): MarkFileAsViewedPayload
|
|
22400
22436
|
|
|
22437
|
+
"""
|
|
22438
|
+
Marks a notification as done
|
|
22439
|
+
"""
|
|
22440
|
+
markNotificationAsDone(
|
|
22441
|
+
"""
|
|
22442
|
+
Parameters for MarkNotificationAsDone
|
|
22443
|
+
"""
|
|
22444
|
+
input: MarkNotificationAsDoneInput!
|
|
22445
|
+
): MarkNotificationAsDonePayload
|
|
22446
|
+
|
|
22401
22447
|
"""
|
|
22402
22448
|
Mark a project as a template. Note that only projects which are owned by an Organization can be marked as a template.
|
|
22403
22449
|
"""
|
|
@@ -29011,7 +29057,7 @@ enum OrganizationInvitationType {
|
|
|
29011
29057
|
}
|
|
29012
29058
|
|
|
29013
29059
|
"""
|
|
29014
|
-
|
|
29060
|
+
A list of users who belong to the organization.
|
|
29015
29061
|
"""
|
|
29016
29062
|
type OrganizationMemberConnection {
|
|
29017
29063
|
"""
|
|
@@ -32276,6 +32322,11 @@ type ProjectV2Item implements Node {
|
|
|
32276
32322
|
orderBy: ProjectV2ItemFieldValueOrder = {field: POSITION, direction: ASC}
|
|
32277
32323
|
): ProjectV2ItemFieldValueConnection!
|
|
32278
32324
|
|
|
32325
|
+
"""
|
|
32326
|
+
Identifies the primary key from the database as a BigInt.
|
|
32327
|
+
"""
|
|
32328
|
+
fullDatabaseId: BigInt
|
|
32329
|
+
|
|
32279
32330
|
"""
|
|
32280
32331
|
The Node ID of the ProjectV2Item object
|
|
32281
32332
|
"""
|
|
@@ -42438,6 +42489,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
42438
42489
|
"""
|
|
42439
42490
|
last: Int
|
|
42440
42491
|
|
|
42492
|
+
"""
|
|
42493
|
+
The names of the environments to be returned.
|
|
42494
|
+
"""
|
|
42495
|
+
names: [String!] = []
|
|
42496
|
+
|
|
42441
42497
|
"""
|
|
42442
42498
|
Ordering options for the environments
|
|
42443
42499
|
"""
|
|
@@ -44484,13 +44540,13 @@ type RepositoryMigration implements Migration & Node {
|
|
|
44484
44540
|
|
|
44485
44541
|
"""
|
|
44486
44542
|
The number of warnings encountered for this migration. To review the warnings,
|
|
44487
|
-
check the [Migration Log](https://docs.github.com/
|
|
44543
|
+
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).
|
|
44488
44544
|
"""
|
|
44489
44545
|
warningsCount: Int!
|
|
44490
44546
|
}
|
|
44491
44547
|
|
|
44492
44548
|
"""
|
|
44493
|
-
|
|
44549
|
+
A list of migrations.
|
|
44494
44550
|
"""
|
|
44495
44551
|
type RepositoryMigrationConnection {
|
|
44496
44552
|
"""
|
|
@@ -45141,11 +45197,6 @@ enum RepositoryRuleType {
|
|
|
45141
45197
|
"""
|
|
45142
45198
|
REQUIRED_WORKFLOW_STATUS_CHECKS
|
|
45143
45199
|
|
|
45144
|
-
"""
|
|
45145
|
-
Commits pushed to matching refs must have verified signatures.
|
|
45146
|
-
"""
|
|
45147
|
-
RULESET_REQUIRED_SIGNATURES
|
|
45148
|
-
|
|
45149
45200
|
"""
|
|
45150
45201
|
Secret scanning
|
|
45151
45202
|
"""
|
|
@@ -48061,7 +48112,7 @@ enum SponsorAndLifetimeValueOrderField {
|
|
|
48061
48112
|
}
|
|
48062
48113
|
|
|
48063
48114
|
"""
|
|
48064
|
-
|
|
48115
|
+
A list of users and organizations sponsoring someone via GitHub Sponsors.
|
|
48065
48116
|
"""
|
|
48066
48117
|
type SponsorConnection {
|
|
48067
48118
|
"""
|
|
@@ -50540,7 +50591,7 @@ type Sponsorship implements Node {
|
|
|
50540
50591
|
}
|
|
50541
50592
|
|
|
50542
50593
|
"""
|
|
50543
|
-
|
|
50594
|
+
A list of sponsorships either from the subject or received by the subject.
|
|
50544
50595
|
"""
|
|
50545
50596
|
type SponsorshipConnection {
|
|
50546
50597
|
"""
|
|
@@ -59590,7 +59641,7 @@ type UserBlockedEvent implements Node {
|
|
|
59590
59641
|
}
|
|
59591
59642
|
|
|
59592
59643
|
"""
|
|
59593
|
-
|
|
59644
|
+
A list of users.
|
|
59594
59645
|
"""
|
|
59595
59646
|
type UserConnection {
|
|
59596
59647
|
"""
|