github-schema 1.7.2 → 1.7.4

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.
@@ -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. */
@@ -7304,8 +7310,10 @@ type FundingLink = {
7304
7310
  };
7305
7311
  /** The possible funding platforms for repository funding links. */
7306
7312
  type FundingPlatform =
7313
+ /** Buy Me a Coffee funding platform. */
7314
+ 'BUY_ME_A_COFFEE'
7307
7315
  /** Community Bridge funding platform. */
7308
- 'COMMUNITY_BRIDGE'
7316
+ | 'COMMUNITY_BRIDGE'
7309
7317
  /** Custom funding platform. */
7310
7318
  | 'CUSTOM'
7311
7319
  /** GitHub funding platform. */
@@ -7320,8 +7328,6 @@ type FundingPlatform =
7320
7328
  | 'LIBERAPAY'
7321
7329
  /** Open Collective funding platform. */
7322
7330
  | 'OPEN_COLLECTIVE'
7323
- /** Otechie funding platform. */
7324
- | 'OTECHIE'
7325
7331
  /** Patreon funding platform. */
7326
7332
  | 'PATREON'
7327
7333
  /** Polar funding platform. */
@@ -8798,7 +8804,7 @@ type LinkedBranch = Node & {
8798
8804
  /** The branch's ref. */
8799
8805
  ref?: Maybe<Ref>;
8800
8806
  };
8801
- /** The connection type for LinkedBranch. */
8807
+ /** A list of branches linked to an issue. */
8802
8808
  type LinkedBranchConnection = {
8803
8809
  __typename?: 'LinkedBranchConnection';
8804
8810
  /** A list of edges. */
@@ -8896,7 +8902,7 @@ type Mannequin = Actor & Node & UniformResourceLocatable & {
8896
8902
  type MannequinAvatarUrlArgs = {
8897
8903
  size?: InputMaybe<Scalars['Int']['input']>;
8898
8904
  };
8899
- /** The connection type for Mannequin. */
8905
+ /** A list of mannequins. */
8900
8906
  type MannequinConnection = {
8901
8907
  __typename?: 'MannequinConnection';
8902
8908
  /** A list of edges. */
@@ -10036,9 +10042,8 @@ type Mutation = {
10036
10042
  /** Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship. */
10037
10043
  createSponsorship?: Maybe<CreateSponsorshipPayload>;
10038
10044
  /**
10039
- * Make many one-time sponsorships for different sponsorable users or
10040
- * organizations at once. Can only sponsor those who have a public GitHub
10041
- * Sponsors profile.
10045
+ * Make many sponsorships for different sponsorable users or organizations at
10046
+ * once. Can only sponsor those who have a public GitHub Sponsors profile.
10042
10047
  */
10043
10048
  createSponsorships?: Maybe<CreateSponsorshipsPayload>;
10044
10049
  /** Creates a new team discussion. */
@@ -13500,7 +13505,7 @@ type OrganizationInvitationType =
13500
13505
  'EMAIL'
13501
13506
  /** The invitation was to an existing user. */
13502
13507
  | 'USER';
13503
- /** The connection type for User. */
13508
+ /** A list of users who belong to the organization. */
13504
13509
  type OrganizationMemberConnection = {
13505
13510
  __typename?: 'OrganizationMemberConnection';
13506
13511
  /** A list of edges. */
@@ -14901,6 +14906,8 @@ type ProjectV2Item = Node & {
14901
14906
  fieldValueByName?: Maybe<ProjectV2ItemFieldValue>;
14902
14907
  /** The field values that are set on the item. */
14903
14908
  fieldValues: ProjectV2ItemFieldValueConnection;
14909
+ /** Identifies the primary key from the database as a BigInt. */
14910
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
14904
14911
  /** The Node ID of the ProjectV2Item object */
14905
14912
  id: Scalars['ID']['output'];
14906
14913
  /** Whether the item is archived. */
@@ -19453,6 +19460,7 @@ type RepositoryEnvironmentsArgs = {
19453
19460
  before?: InputMaybe<Scalars['String']['input']>;
19454
19461
  first?: InputMaybe<Scalars['Int']['input']>;
19455
19462
  last?: InputMaybe<Scalars['Int']['input']>;
19463
+ names?: InputMaybe<Array<Scalars['String']['input']>>;
19456
19464
  orderBy?: InputMaybe<Environments>;
19457
19465
  };
19458
19466
  /** A repository contains the content for a project. */
@@ -20061,7 +20069,7 @@ type RepositoryMigration = Migration & Node & {
20061
20069
  */
20062
20070
  warningsCount: Scalars['Int']['output'];
20063
20071
  };
20064
- /** The connection type for RepositoryMigration. */
20072
+ /** A list of migrations. */
20065
20073
  type RepositoryMigrationConnection = {
20066
20074
  __typename?: 'RepositoryMigrationConnection';
20067
20075
  /** A list of edges. */
@@ -20353,8 +20361,6 @@ type RepositoryRuleType =
20353
20361
  * request and required workflow checks to pass before they can be merged.
20354
20362
  */
20355
20363
  | 'REQUIRED_WORKFLOW_STATUS_CHECKS'
20356
- /** Commits pushed to matching refs must have verified signatures. */
20357
- | 'RULESET_REQUIRED_SIGNATURES'
20358
20364
  /** Secret scanning */
20359
20365
  | 'SECRET_SCANNING'
20360
20366
  /** Tag */
@@ -21716,7 +21722,7 @@ type SponsorAndLifetimeValueOrderField =
21716
21722
  | 'SPONSOR_LOGIN'
21717
21723
  /** Order results by the sponsor's relevance to the viewer. */
21718
21724
  | 'SPONSOR_RELEVANCE';
21719
- /** The connection type for Sponsor. */
21725
+ /** A list of users and organizations sponsoring someone via GitHub Sponsors. */
21720
21726
  type SponsorConnection = {
21721
21727
  __typename?: 'SponsorConnection';
21722
21728
  /** A list of edges. */
@@ -22771,7 +22777,7 @@ type Sponsorship = Node & {
22771
22777
  /** Identifies the date and time when the current tier was chosen for this sponsorship. */
22772
22778
  tierSelectedAt?: Maybe<Scalars['DateTime']['output']>;
22773
22779
  };
22774
- /** The connection type for Sponsorship. */
22780
+ /** A list of sponsorships either from the subject or received by the subject. */
22775
22781
  type SponsorshipConnection = {
22776
22782
  __typename?: 'SponsorshipConnection';
22777
22783
  /** A list of edges. */
@@ -26735,7 +26741,7 @@ type UserBlockedEvent = Node & {
26735
26741
  /** The user who was blocked. */
26736
26742
  subject?: Maybe<User>;
26737
26743
  };
26738
- /** The connection type for User. */
26744
+ /** A list of users. */
26739
26745
  type UserConnection = {
26740
26746
  __typename?: 'UserConnection';
26741
26747
  /** A list of edges. */
@@ -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. */
@@ -7304,8 +7310,10 @@ type FundingLink = {
7304
7310
  };
7305
7311
  /** The possible funding platforms for repository funding links. */
7306
7312
  type FundingPlatform =
7313
+ /** Buy Me a Coffee funding platform. */
7314
+ 'BUY_ME_A_COFFEE'
7307
7315
  /** Community Bridge funding platform. */
7308
- 'COMMUNITY_BRIDGE'
7316
+ | 'COMMUNITY_BRIDGE'
7309
7317
  /** Custom funding platform. */
7310
7318
  | 'CUSTOM'
7311
7319
  /** GitHub funding platform. */
@@ -7320,8 +7328,6 @@ type FundingPlatform =
7320
7328
  | 'LIBERAPAY'
7321
7329
  /** Open Collective funding platform. */
7322
7330
  | 'OPEN_COLLECTIVE'
7323
- /** Otechie funding platform. */
7324
- | 'OTECHIE'
7325
7331
  /** Patreon funding platform. */
7326
7332
  | 'PATREON'
7327
7333
  /** Polar funding platform. */
@@ -8798,7 +8804,7 @@ type LinkedBranch = Node & {
8798
8804
  /** The branch's ref. */
8799
8805
  ref?: Maybe<Ref>;
8800
8806
  };
8801
- /** The connection type for LinkedBranch. */
8807
+ /** A list of branches linked to an issue. */
8802
8808
  type LinkedBranchConnection = {
8803
8809
  __typename?: 'LinkedBranchConnection';
8804
8810
  /** A list of edges. */
@@ -8896,7 +8902,7 @@ type Mannequin = Actor & Node & UniformResourceLocatable & {
8896
8902
  type MannequinAvatarUrlArgs = {
8897
8903
  size?: InputMaybe<Scalars['Int']['input']>;
8898
8904
  };
8899
- /** The connection type for Mannequin. */
8905
+ /** A list of mannequins. */
8900
8906
  type MannequinConnection = {
8901
8907
  __typename?: 'MannequinConnection';
8902
8908
  /** A list of edges. */
@@ -10036,9 +10042,8 @@ type Mutation = {
10036
10042
  /** Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship. */
10037
10043
  createSponsorship?: Maybe<CreateSponsorshipPayload>;
10038
10044
  /**
10039
- * Make many one-time sponsorships for different sponsorable users or
10040
- * organizations at once. Can only sponsor those who have a public GitHub
10041
- * Sponsors profile.
10045
+ * Make many sponsorships for different sponsorable users or organizations at
10046
+ * once. Can only sponsor those who have a public GitHub Sponsors profile.
10042
10047
  */
10043
10048
  createSponsorships?: Maybe<CreateSponsorshipsPayload>;
10044
10049
  /** Creates a new team discussion. */
@@ -13500,7 +13505,7 @@ type OrganizationInvitationType =
13500
13505
  'EMAIL'
13501
13506
  /** The invitation was to an existing user. */
13502
13507
  | 'USER';
13503
- /** The connection type for User. */
13508
+ /** A list of users who belong to the organization. */
13504
13509
  type OrganizationMemberConnection = {
13505
13510
  __typename?: 'OrganizationMemberConnection';
13506
13511
  /** A list of edges. */
@@ -14901,6 +14906,8 @@ type ProjectV2Item = Node & {
14901
14906
  fieldValueByName?: Maybe<ProjectV2ItemFieldValue>;
14902
14907
  /** The field values that are set on the item. */
14903
14908
  fieldValues: ProjectV2ItemFieldValueConnection;
14909
+ /** Identifies the primary key from the database as a BigInt. */
14910
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
14904
14911
  /** The Node ID of the ProjectV2Item object */
14905
14912
  id: Scalars['ID']['output'];
14906
14913
  /** Whether the item is archived. */
@@ -19453,6 +19460,7 @@ type RepositoryEnvironmentsArgs = {
19453
19460
  before?: InputMaybe<Scalars['String']['input']>;
19454
19461
  first?: InputMaybe<Scalars['Int']['input']>;
19455
19462
  last?: InputMaybe<Scalars['Int']['input']>;
19463
+ names?: InputMaybe<Array<Scalars['String']['input']>>;
19456
19464
  orderBy?: InputMaybe<Environments>;
19457
19465
  };
19458
19466
  /** A repository contains the content for a project. */
@@ -20061,7 +20069,7 @@ type RepositoryMigration = Migration & Node & {
20061
20069
  */
20062
20070
  warningsCount: Scalars['Int']['output'];
20063
20071
  };
20064
- /** The connection type for RepositoryMigration. */
20072
+ /** A list of migrations. */
20065
20073
  type RepositoryMigrationConnection = {
20066
20074
  __typename?: 'RepositoryMigrationConnection';
20067
20075
  /** A list of edges. */
@@ -20353,8 +20361,6 @@ type RepositoryRuleType =
20353
20361
  * request and required workflow checks to pass before they can be merged.
20354
20362
  */
20355
20363
  | 'REQUIRED_WORKFLOW_STATUS_CHECKS'
20356
- /** Commits pushed to matching refs must have verified signatures. */
20357
- | 'RULESET_REQUIRED_SIGNATURES'
20358
20364
  /** Secret scanning */
20359
20365
  | 'SECRET_SCANNING'
20360
20366
  /** Tag */
@@ -21716,7 +21722,7 @@ type SponsorAndLifetimeValueOrderField =
21716
21722
  | 'SPONSOR_LOGIN'
21717
21723
  /** Order results by the sponsor's relevance to the viewer. */
21718
21724
  | 'SPONSOR_RELEVANCE';
21719
- /** The connection type for Sponsor. */
21725
+ /** A list of users and organizations sponsoring someone via GitHub Sponsors. */
21720
21726
  type SponsorConnection = {
21721
21727
  __typename?: 'SponsorConnection';
21722
21728
  /** A list of edges. */
@@ -22771,7 +22777,7 @@ type Sponsorship = Node & {
22771
22777
  /** Identifies the date and time when the current tier was chosen for this sponsorship. */
22772
22778
  tierSelectedAt?: Maybe<Scalars['DateTime']['output']>;
22773
22779
  };
22774
- /** The connection type for Sponsorship. */
22780
+ /** A list of sponsorships either from the subject or received by the subject. */
22775
22781
  type SponsorshipConnection = {
22776
22782
  __typename?: 'SponsorshipConnection';
22777
22783
  /** A list of edges. */
@@ -26735,7 +26741,7 @@ type UserBlockedEvent = Node & {
26735
26741
  /** The user who was blocked. */
26736
26742
  subject?: Maybe<User>;
26737
26743
  };
26738
- /** The connection type for User. */
26744
+ /** A list of users. */
26739
26745
  type UserConnection = {
26740
26746
  __typename?: 'UserConnection';
26741
26747
  /** A list of edges. */
@@ -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
  """
@@ -15435,6 +15442,11 @@ type FundingLink {
15435
15442
  The possible funding platforms for repository funding links.
15436
15443
  """
15437
15444
  enum FundingPlatform {
15445
+ """
15446
+ Buy Me a Coffee funding platform.
15447
+ """
15448
+ BUY_ME_A_COFFEE
15449
+
15438
15450
  """
15439
15451
  Community Bridge funding platform.
15440
15452
  """
@@ -15475,11 +15487,6 @@ enum FundingPlatform {
15475
15487
  """
15476
15488
  OPEN_COLLECTIVE
15477
15489
 
15478
- """
15479
- Otechie funding platform.
15480
- """
15481
- OTECHIE
15482
-
15483
15490
  """
15484
15491
  Patreon funding platform.
15485
15492
  """
@@ -18939,7 +18946,7 @@ type LinkedBranch implements Node {
18939
18946
  }
18940
18947
 
18941
18948
  """
18942
- The connection type for LinkedBranch.
18949
+ A list of branches linked to an issue.
18943
18950
  """
18944
18951
  type LinkedBranchConnection {
18945
18952
  """
@@ -19149,7 +19156,7 @@ type Mannequin implements Actor & Node & UniformResourceLocatable {
19149
19156
  }
19150
19157
 
19151
19158
  """
19152
- The connection type for Mannequin.
19159
+ A list of mannequins.
19153
19160
  """
19154
19161
  type MannequinConnection {
19155
19162
  """
@@ -21972,9 +21979,8 @@ type Mutation {
21972
21979
  ): CreateSponsorshipPayload
21973
21980
 
21974
21981
  """
21975
- Make many one-time sponsorships for different sponsorable users or
21976
- organizations at once. Can only sponsor those who have a public GitHub
21977
- Sponsors profile.
21982
+ Make many sponsorships for different sponsorable users or organizations at
21983
+ once. Can only sponsor those who have a public GitHub Sponsors profile.
21978
21984
  """
21979
21985
  createSponsorships(
21980
21986
  """
@@ -29056,7 +29062,7 @@ enum OrganizationInvitationType {
29056
29062
  }
29057
29063
 
29058
29064
  """
29059
- The connection type for User.
29065
+ A list of users who belong to the organization.
29060
29066
  """
29061
29067
  type OrganizationMemberConnection {
29062
29068
  """
@@ -32321,6 +32327,11 @@ type ProjectV2Item implements Node {
32321
32327
  orderBy: ProjectV2ItemFieldValueOrder = {field: POSITION, direction: ASC}
32322
32328
  ): ProjectV2ItemFieldValueConnection!
32323
32329
 
32330
+ """
32331
+ Identifies the primary key from the database as a BigInt.
32332
+ """
32333
+ fullDatabaseId: BigInt
32334
+
32324
32335
  """
32325
32336
  The Node ID of the ProjectV2Item object
32326
32337
  """
@@ -42483,6 +42494,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
42483
42494
  """
42484
42495
  last: Int
42485
42496
 
42497
+ """
42498
+ The names of the environments to be returned.
42499
+ """
42500
+ names: [String!] = []
42501
+
42486
42502
  """
42487
42503
  Ordering options for the environments
42488
42504
  """
@@ -44535,7 +44551,7 @@ type RepositoryMigration implements Migration & Node {
44535
44551
  }
44536
44552
 
44537
44553
  """
44538
- The connection type for RepositoryMigration.
44554
+ A list of migrations.
44539
44555
  """
44540
44556
  type RepositoryMigrationConnection {
44541
44557
  """
@@ -45186,11 +45202,6 @@ enum RepositoryRuleType {
45186
45202
  """
45187
45203
  REQUIRED_WORKFLOW_STATUS_CHECKS
45188
45204
 
45189
- """
45190
- Commits pushed to matching refs must have verified signatures.
45191
- """
45192
- RULESET_REQUIRED_SIGNATURES
45193
-
45194
45205
  """
45195
45206
  Secret scanning
45196
45207
  """
@@ -48106,7 +48117,7 @@ enum SponsorAndLifetimeValueOrderField {
48106
48117
  }
48107
48118
 
48108
48119
  """
48109
- The connection type for Sponsor.
48120
+ A list of users and organizations sponsoring someone via GitHub Sponsors.
48110
48121
  """
48111
48122
  type SponsorConnection {
48112
48123
  """
@@ -50585,7 +50596,7 @@ type Sponsorship implements Node {
50585
50596
  }
50586
50597
 
50587
50598
  """
50588
- The connection type for Sponsorship.
50599
+ A list of sponsorships either from the subject or received by the subject.
50589
50600
  """
50590
50601
  type SponsorshipConnection {
50591
50602
  """
@@ -59635,7 +59646,7 @@ type UserBlockedEvent implements Node {
59635
59646
  }
59636
59647
 
59637
59648
  """
59638
- The connection type for User.
59649
+ A list of users.
59639
59650
  """
59640
59651
  type UserConnection {
59641
59652
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.7.2",
3
+ "version": "1.7.4",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {