github-schema 1.7.2 → 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 +18 -14
- package/dist/github-schema.d.ts +18 -14
- package/github-schema.graphql +26 -20
- package/package.json +1 -1
package/dist/github-schema.d.cts
CHANGED
|
@@ -3843,6 +3843,12 @@ type CreateSponsorshipsInput = {
|
|
|
3843
3843
|
privacyLevel?: InputMaybe<SponsorshipPrivacy>;
|
|
3844
3844
|
/** Whether the sponsor should receive email updates from the sponsorables. */
|
|
3845
3845
|
receiveEmails?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3846
|
+
/**
|
|
3847
|
+
* Whether the sponsorships created should continue each billing cycle for the
|
|
3848
|
+
* sponsor (monthly or annually), versus lasting only a single month. Defaults to
|
|
3849
|
+
* one-time sponsorships.
|
|
3850
|
+
*/
|
|
3851
|
+
recurring?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3846
3852
|
/** The username of the user or organization who is acting as the sponsor, paying for the sponsorships. */
|
|
3847
3853
|
sponsorLogin: Scalars['String']['input'];
|
|
3848
3854
|
/** The list of maintainers to sponsor and for how much apiece. */
|
|
@@ -7320,8 +7326,6 @@ type FundingPlatform =
|
|
|
7320
7326
|
| 'LIBERAPAY'
|
|
7321
7327
|
/** Open Collective funding platform. */
|
|
7322
7328
|
| 'OPEN_COLLECTIVE'
|
|
7323
|
-
/** Otechie funding platform. */
|
|
7324
|
-
| 'OTECHIE'
|
|
7325
7329
|
/** Patreon funding platform. */
|
|
7326
7330
|
| 'PATREON'
|
|
7327
7331
|
/** Polar funding platform. */
|
|
@@ -8798,7 +8802,7 @@ type LinkedBranch = Node & {
|
|
|
8798
8802
|
/** The branch's ref. */
|
|
8799
8803
|
ref?: Maybe<Ref>;
|
|
8800
8804
|
};
|
|
8801
|
-
/**
|
|
8805
|
+
/** A list of branches linked to an issue. */
|
|
8802
8806
|
type LinkedBranchConnection = {
|
|
8803
8807
|
__typename?: 'LinkedBranchConnection';
|
|
8804
8808
|
/** A list of edges. */
|
|
@@ -8896,7 +8900,7 @@ type Mannequin = Actor & Node & UniformResourceLocatable & {
|
|
|
8896
8900
|
type MannequinAvatarUrlArgs = {
|
|
8897
8901
|
size?: InputMaybe<Scalars['Int']['input']>;
|
|
8898
8902
|
};
|
|
8899
|
-
/**
|
|
8903
|
+
/** A list of mannequins. */
|
|
8900
8904
|
type MannequinConnection = {
|
|
8901
8905
|
__typename?: 'MannequinConnection';
|
|
8902
8906
|
/** A list of edges. */
|
|
@@ -10036,9 +10040,8 @@ type Mutation = {
|
|
|
10036
10040
|
/** Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship. */
|
|
10037
10041
|
createSponsorship?: Maybe<CreateSponsorshipPayload>;
|
|
10038
10042
|
/**
|
|
10039
|
-
* Make many
|
|
10040
|
-
*
|
|
10041
|
-
* Sponsors profile.
|
|
10043
|
+
* Make many sponsorships for different sponsorable users or organizations at
|
|
10044
|
+
* once. Can only sponsor those who have a public GitHub Sponsors profile.
|
|
10042
10045
|
*/
|
|
10043
10046
|
createSponsorships?: Maybe<CreateSponsorshipsPayload>;
|
|
10044
10047
|
/** Creates a new team discussion. */
|
|
@@ -13500,7 +13503,7 @@ type OrganizationInvitationType =
|
|
|
13500
13503
|
'EMAIL'
|
|
13501
13504
|
/** The invitation was to an existing user. */
|
|
13502
13505
|
| 'USER';
|
|
13503
|
-
/**
|
|
13506
|
+
/** A list of users who belong to the organization. */
|
|
13504
13507
|
type OrganizationMemberConnection = {
|
|
13505
13508
|
__typename?: 'OrganizationMemberConnection';
|
|
13506
13509
|
/** A list of edges. */
|
|
@@ -14901,6 +14904,8 @@ type ProjectV2Item = Node & {
|
|
|
14901
14904
|
fieldValueByName?: Maybe<ProjectV2ItemFieldValue>;
|
|
14902
14905
|
/** The field values that are set on the item. */
|
|
14903
14906
|
fieldValues: ProjectV2ItemFieldValueConnection;
|
|
14907
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
14908
|
+
fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
|
|
14904
14909
|
/** The Node ID of the ProjectV2Item object */
|
|
14905
14910
|
id: Scalars['ID']['output'];
|
|
14906
14911
|
/** Whether the item is archived. */
|
|
@@ -19453,6 +19458,7 @@ type RepositoryEnvironmentsArgs = {
|
|
|
19453
19458
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
19454
19459
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19455
19460
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19461
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19456
19462
|
orderBy?: InputMaybe<Environments>;
|
|
19457
19463
|
};
|
|
19458
19464
|
/** A repository contains the content for a project. */
|
|
@@ -20061,7 +20067,7 @@ type RepositoryMigration = Migration & Node & {
|
|
|
20061
20067
|
*/
|
|
20062
20068
|
warningsCount: Scalars['Int']['output'];
|
|
20063
20069
|
};
|
|
20064
|
-
/**
|
|
20070
|
+
/** A list of migrations. */
|
|
20065
20071
|
type RepositoryMigrationConnection = {
|
|
20066
20072
|
__typename?: 'RepositoryMigrationConnection';
|
|
20067
20073
|
/** A list of edges. */
|
|
@@ -20353,8 +20359,6 @@ type RepositoryRuleType =
|
|
|
20353
20359
|
* request and required workflow checks to pass before they can be merged.
|
|
20354
20360
|
*/
|
|
20355
20361
|
| 'REQUIRED_WORKFLOW_STATUS_CHECKS'
|
|
20356
|
-
/** Commits pushed to matching refs must have verified signatures. */
|
|
20357
|
-
| 'RULESET_REQUIRED_SIGNATURES'
|
|
20358
20362
|
/** Secret scanning */
|
|
20359
20363
|
| 'SECRET_SCANNING'
|
|
20360
20364
|
/** Tag */
|
|
@@ -21716,7 +21720,7 @@ type SponsorAndLifetimeValueOrderField =
|
|
|
21716
21720
|
| 'SPONSOR_LOGIN'
|
|
21717
21721
|
/** Order results by the sponsor's relevance to the viewer. */
|
|
21718
21722
|
| 'SPONSOR_RELEVANCE';
|
|
21719
|
-
/**
|
|
21723
|
+
/** A list of users and organizations sponsoring someone via GitHub Sponsors. */
|
|
21720
21724
|
type SponsorConnection = {
|
|
21721
21725
|
__typename?: 'SponsorConnection';
|
|
21722
21726
|
/** A list of edges. */
|
|
@@ -22771,7 +22775,7 @@ type Sponsorship = Node & {
|
|
|
22771
22775
|
/** Identifies the date and time when the current tier was chosen for this sponsorship. */
|
|
22772
22776
|
tierSelectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
22773
22777
|
};
|
|
22774
|
-
/**
|
|
22778
|
+
/** A list of sponsorships either from the subject or received by the subject. */
|
|
22775
22779
|
type SponsorshipConnection = {
|
|
22776
22780
|
__typename?: 'SponsorshipConnection';
|
|
22777
22781
|
/** A list of edges. */
|
|
@@ -26735,7 +26739,7 @@ type UserBlockedEvent = Node & {
|
|
|
26735
26739
|
/** The user who was blocked. */
|
|
26736
26740
|
subject?: Maybe<User>;
|
|
26737
26741
|
};
|
|
26738
|
-
/**
|
|
26742
|
+
/** A list of users. */
|
|
26739
26743
|
type UserConnection = {
|
|
26740
26744
|
__typename?: 'UserConnection';
|
|
26741
26745
|
/** A list of edges. */
|
package/dist/github-schema.d.ts
CHANGED
|
@@ -3843,6 +3843,12 @@ type CreateSponsorshipsInput = {
|
|
|
3843
3843
|
privacyLevel?: InputMaybe<SponsorshipPrivacy>;
|
|
3844
3844
|
/** Whether the sponsor should receive email updates from the sponsorables. */
|
|
3845
3845
|
receiveEmails?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3846
|
+
/**
|
|
3847
|
+
* Whether the sponsorships created should continue each billing cycle for the
|
|
3848
|
+
* sponsor (monthly or annually), versus lasting only a single month. Defaults to
|
|
3849
|
+
* one-time sponsorships.
|
|
3850
|
+
*/
|
|
3851
|
+
recurring?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3846
3852
|
/** The username of the user or organization who is acting as the sponsor, paying for the sponsorships. */
|
|
3847
3853
|
sponsorLogin: Scalars['String']['input'];
|
|
3848
3854
|
/** The list of maintainers to sponsor and for how much apiece. */
|
|
@@ -7320,8 +7326,6 @@ type FundingPlatform =
|
|
|
7320
7326
|
| 'LIBERAPAY'
|
|
7321
7327
|
/** Open Collective funding platform. */
|
|
7322
7328
|
| 'OPEN_COLLECTIVE'
|
|
7323
|
-
/** Otechie funding platform. */
|
|
7324
|
-
| 'OTECHIE'
|
|
7325
7329
|
/** Patreon funding platform. */
|
|
7326
7330
|
| 'PATREON'
|
|
7327
7331
|
/** Polar funding platform. */
|
|
@@ -8798,7 +8802,7 @@ type LinkedBranch = Node & {
|
|
|
8798
8802
|
/** The branch's ref. */
|
|
8799
8803
|
ref?: Maybe<Ref>;
|
|
8800
8804
|
};
|
|
8801
|
-
/**
|
|
8805
|
+
/** A list of branches linked to an issue. */
|
|
8802
8806
|
type LinkedBranchConnection = {
|
|
8803
8807
|
__typename?: 'LinkedBranchConnection';
|
|
8804
8808
|
/** A list of edges. */
|
|
@@ -8896,7 +8900,7 @@ type Mannequin = Actor & Node & UniformResourceLocatable & {
|
|
|
8896
8900
|
type MannequinAvatarUrlArgs = {
|
|
8897
8901
|
size?: InputMaybe<Scalars['Int']['input']>;
|
|
8898
8902
|
};
|
|
8899
|
-
/**
|
|
8903
|
+
/** A list of mannequins. */
|
|
8900
8904
|
type MannequinConnection = {
|
|
8901
8905
|
__typename?: 'MannequinConnection';
|
|
8902
8906
|
/** A list of edges. */
|
|
@@ -10036,9 +10040,8 @@ type Mutation = {
|
|
|
10036
10040
|
/** Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship. */
|
|
10037
10041
|
createSponsorship?: Maybe<CreateSponsorshipPayload>;
|
|
10038
10042
|
/**
|
|
10039
|
-
* Make many
|
|
10040
|
-
*
|
|
10041
|
-
* Sponsors profile.
|
|
10043
|
+
* Make many sponsorships for different sponsorable users or organizations at
|
|
10044
|
+
* once. Can only sponsor those who have a public GitHub Sponsors profile.
|
|
10042
10045
|
*/
|
|
10043
10046
|
createSponsorships?: Maybe<CreateSponsorshipsPayload>;
|
|
10044
10047
|
/** Creates a new team discussion. */
|
|
@@ -13500,7 +13503,7 @@ type OrganizationInvitationType =
|
|
|
13500
13503
|
'EMAIL'
|
|
13501
13504
|
/** The invitation was to an existing user. */
|
|
13502
13505
|
| 'USER';
|
|
13503
|
-
/**
|
|
13506
|
+
/** A list of users who belong to the organization. */
|
|
13504
13507
|
type OrganizationMemberConnection = {
|
|
13505
13508
|
__typename?: 'OrganizationMemberConnection';
|
|
13506
13509
|
/** A list of edges. */
|
|
@@ -14901,6 +14904,8 @@ type ProjectV2Item = Node & {
|
|
|
14901
14904
|
fieldValueByName?: Maybe<ProjectV2ItemFieldValue>;
|
|
14902
14905
|
/** The field values that are set on the item. */
|
|
14903
14906
|
fieldValues: ProjectV2ItemFieldValueConnection;
|
|
14907
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
14908
|
+
fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
|
|
14904
14909
|
/** The Node ID of the ProjectV2Item object */
|
|
14905
14910
|
id: Scalars['ID']['output'];
|
|
14906
14911
|
/** Whether the item is archived. */
|
|
@@ -19453,6 +19458,7 @@ type RepositoryEnvironmentsArgs = {
|
|
|
19453
19458
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
19454
19459
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19455
19460
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
19461
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19456
19462
|
orderBy?: InputMaybe<Environments>;
|
|
19457
19463
|
};
|
|
19458
19464
|
/** A repository contains the content for a project. */
|
|
@@ -20061,7 +20067,7 @@ type RepositoryMigration = Migration & Node & {
|
|
|
20061
20067
|
*/
|
|
20062
20068
|
warningsCount: Scalars['Int']['output'];
|
|
20063
20069
|
};
|
|
20064
|
-
/**
|
|
20070
|
+
/** A list of migrations. */
|
|
20065
20071
|
type RepositoryMigrationConnection = {
|
|
20066
20072
|
__typename?: 'RepositoryMigrationConnection';
|
|
20067
20073
|
/** A list of edges. */
|
|
@@ -20353,8 +20359,6 @@ type RepositoryRuleType =
|
|
|
20353
20359
|
* request and required workflow checks to pass before they can be merged.
|
|
20354
20360
|
*/
|
|
20355
20361
|
| 'REQUIRED_WORKFLOW_STATUS_CHECKS'
|
|
20356
|
-
/** Commits pushed to matching refs must have verified signatures. */
|
|
20357
|
-
| 'RULESET_REQUIRED_SIGNATURES'
|
|
20358
20362
|
/** Secret scanning */
|
|
20359
20363
|
| 'SECRET_SCANNING'
|
|
20360
20364
|
/** Tag */
|
|
@@ -21716,7 +21720,7 @@ type SponsorAndLifetimeValueOrderField =
|
|
|
21716
21720
|
| 'SPONSOR_LOGIN'
|
|
21717
21721
|
/** Order results by the sponsor's relevance to the viewer. */
|
|
21718
21722
|
| 'SPONSOR_RELEVANCE';
|
|
21719
|
-
/**
|
|
21723
|
+
/** A list of users and organizations sponsoring someone via GitHub Sponsors. */
|
|
21720
21724
|
type SponsorConnection = {
|
|
21721
21725
|
__typename?: 'SponsorConnection';
|
|
21722
21726
|
/** A list of edges. */
|
|
@@ -22771,7 +22775,7 @@ type Sponsorship = Node & {
|
|
|
22771
22775
|
/** Identifies the date and time when the current tier was chosen for this sponsorship. */
|
|
22772
22776
|
tierSelectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
22773
22777
|
};
|
|
22774
|
-
/**
|
|
22778
|
+
/** A list of sponsorships either from the subject or received by the subject. */
|
|
22775
22779
|
type SponsorshipConnection = {
|
|
22776
22780
|
__typename?: 'SponsorshipConnection';
|
|
22777
22781
|
/** A list of edges. */
|
|
@@ -26735,7 +26739,7 @@ type UserBlockedEvent = Node & {
|
|
|
26735
26739
|
/** The user who was blocked. */
|
|
26736
26740
|
subject?: Maybe<User>;
|
|
26737
26741
|
};
|
|
26738
|
-
/**
|
|
26742
|
+
/** A list of users. */
|
|
26739
26743
|
type UserConnection = {
|
|
26740
26744
|
__typename?: 'UserConnection';
|
|
26741
26745
|
/** A list of edges. */
|
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
|
"""
|
|
@@ -21972,9 +21974,8 @@ type Mutation {
|
|
|
21972
21974
|
): CreateSponsorshipPayload
|
|
21973
21975
|
|
|
21974
21976
|
"""
|
|
21975
|
-
Make many
|
|
21976
|
-
|
|
21977
|
-
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.
|
|
21978
21979
|
"""
|
|
21979
21980
|
createSponsorships(
|
|
21980
21981
|
"""
|
|
@@ -29056,7 +29057,7 @@ enum OrganizationInvitationType {
|
|
|
29056
29057
|
}
|
|
29057
29058
|
|
|
29058
29059
|
"""
|
|
29059
|
-
|
|
29060
|
+
A list of users who belong to the organization.
|
|
29060
29061
|
"""
|
|
29061
29062
|
type OrganizationMemberConnection {
|
|
29062
29063
|
"""
|
|
@@ -32321,6 +32322,11 @@ type ProjectV2Item implements Node {
|
|
|
32321
32322
|
orderBy: ProjectV2ItemFieldValueOrder = {field: POSITION, direction: ASC}
|
|
32322
32323
|
): ProjectV2ItemFieldValueConnection!
|
|
32323
32324
|
|
|
32325
|
+
"""
|
|
32326
|
+
Identifies the primary key from the database as a BigInt.
|
|
32327
|
+
"""
|
|
32328
|
+
fullDatabaseId: BigInt
|
|
32329
|
+
|
|
32324
32330
|
"""
|
|
32325
32331
|
The Node ID of the ProjectV2Item object
|
|
32326
32332
|
"""
|
|
@@ -42483,6 +42489,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
42483
42489
|
"""
|
|
42484
42490
|
last: Int
|
|
42485
42491
|
|
|
42492
|
+
"""
|
|
42493
|
+
The names of the environments to be returned.
|
|
42494
|
+
"""
|
|
42495
|
+
names: [String!] = []
|
|
42496
|
+
|
|
42486
42497
|
"""
|
|
42487
42498
|
Ordering options for the environments
|
|
42488
42499
|
"""
|
|
@@ -44535,7 +44546,7 @@ type RepositoryMigration implements Migration & Node {
|
|
|
44535
44546
|
}
|
|
44536
44547
|
|
|
44537
44548
|
"""
|
|
44538
|
-
|
|
44549
|
+
A list of migrations.
|
|
44539
44550
|
"""
|
|
44540
44551
|
type RepositoryMigrationConnection {
|
|
44541
44552
|
"""
|
|
@@ -45186,11 +45197,6 @@ enum RepositoryRuleType {
|
|
|
45186
45197
|
"""
|
|
45187
45198
|
REQUIRED_WORKFLOW_STATUS_CHECKS
|
|
45188
45199
|
|
|
45189
|
-
"""
|
|
45190
|
-
Commits pushed to matching refs must have verified signatures.
|
|
45191
|
-
"""
|
|
45192
|
-
RULESET_REQUIRED_SIGNATURES
|
|
45193
|
-
|
|
45194
45200
|
"""
|
|
45195
45201
|
Secret scanning
|
|
45196
45202
|
"""
|
|
@@ -48106,7 +48112,7 @@ enum SponsorAndLifetimeValueOrderField {
|
|
|
48106
48112
|
}
|
|
48107
48113
|
|
|
48108
48114
|
"""
|
|
48109
|
-
|
|
48115
|
+
A list of users and organizations sponsoring someone via GitHub Sponsors.
|
|
48110
48116
|
"""
|
|
48111
48117
|
type SponsorConnection {
|
|
48112
48118
|
"""
|
|
@@ -50585,7 +50591,7 @@ type Sponsorship implements Node {
|
|
|
50585
50591
|
}
|
|
50586
50592
|
|
|
50587
50593
|
"""
|
|
50588
|
-
|
|
50594
|
+
A list of sponsorships either from the subject or received by the subject.
|
|
50589
50595
|
"""
|
|
50590
50596
|
type SponsorshipConnection {
|
|
50591
50597
|
"""
|
|
@@ -59635,7 +59641,7 @@ type UserBlockedEvent implements Node {
|
|
|
59635
59641
|
}
|
|
59636
59642
|
|
|
59637
59643
|
"""
|
|
59638
|
-
|
|
59644
|
+
A list of users.
|
|
59639
59645
|
"""
|
|
59640
59646
|
type UserConnection {
|
|
59641
59647
|
"""
|