github-schema 1.13.1 → 1.14.0

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.
@@ -736,15 +736,24 @@ type AddedToProjectEvent = Node & {
736
736
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
737
737
  /** Identifies the date and time when the object was created. */
738
738
  createdAt: Scalars['DateTime']['output'];
739
- /** Identifies the primary key from the database. */
739
+ /**
740
+ * Identifies the primary key from the database.
741
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
742
+ */
740
743
  databaseId?: Maybe<Scalars['Int']['output']>;
741
744
  /** The Node ID of the AddedToProjectEvent object */
742
745
  id: Scalars['ID']['output'];
743
746
  /** Project referenced by event. */
744
747
  project?: Maybe<Project>;
745
- /** Project card referenced by this project event. */
748
+ /**
749
+ * Project card referenced by this project event.
750
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
751
+ */
746
752
  projectCard?: Maybe<ProjectCard>;
747
- /** Column name referenced by this project event. */
753
+ /**
754
+ * Column name referenced by this project event.
755
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
756
+ */
748
757
  projectColumnName: Scalars['String']['output'];
749
758
  };
750
759
  /** An announcement banner for an enterprise or organization. */
@@ -3319,7 +3328,10 @@ type ConvertedNoteToIssueEvent = Node & {
3319
3328
  id: Scalars['ID']['output'];
3320
3329
  /** Project referenced by event. */
3321
3330
  project?: Maybe<Project>;
3322
- /** Project card referenced by this project event. */
3331
+ /**
3332
+ * Project card referenced by this project event.
3333
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
3334
+ */
3323
3335
  projectCard?: Maybe<ProjectCard>;
3324
3336
  /** Column name referenced by this project event. */
3325
3337
  projectColumnName: Scalars['String']['output'];
@@ -6265,6 +6277,8 @@ type Enterprise = AnnouncementBannerI & Node & {
6265
6277
  rulesets?: Maybe<RepositoryRulesetConnection>;
6266
6278
  /** The URL-friendly identifier for the enterprise. */
6267
6279
  slug: Scalars['String']['output'];
6280
+ /** Identifies the date and time when the object was last updated. */
6281
+ updatedAt: Scalars['DateTime']['output'];
6268
6282
  /** The HTTP URL for this enterprise. */
6269
6283
  url: Scalars['URI']['output'];
6270
6284
  /** A list of repositories that belong to users. Only available for enterprises with Enterprise Managed Users. */
@@ -10701,17 +10715,29 @@ type MovedColumnsInProjectEvent = Node & {
10701
10715
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
10702
10716
  /** Identifies the date and time when the object was created. */
10703
10717
  createdAt: Scalars['DateTime']['output'];
10704
- /** Identifies the primary key from the database. */
10718
+ /**
10719
+ * Identifies the primary key from the database.
10720
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10721
+ */
10705
10722
  databaseId?: Maybe<Scalars['Int']['output']>;
10706
10723
  /** The Node ID of the MovedColumnsInProjectEvent object */
10707
10724
  id: Scalars['ID']['output'];
10708
- /** Column name the issue or pull request was moved from. */
10725
+ /**
10726
+ * Column name the issue or pull request was moved from.
10727
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10728
+ */
10709
10729
  previousProjectColumnName: Scalars['String']['output'];
10710
10730
  /** Project referenced by event. */
10711
10731
  project?: Maybe<Project>;
10712
- /** Project card referenced by this project event. */
10732
+ /**
10733
+ * Project card referenced by this project event.
10734
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10735
+ */
10713
10736
  projectCard?: Maybe<ProjectCard>;
10714
- /** Column name the issue or pull request was moved to. */
10737
+ /**
10738
+ * Column name the issue or pull request was moved to.
10739
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10740
+ */
10715
10741
  projectColumnName: Scalars['String']['output'];
10716
10742
  };
10717
10743
  /** The root query for implementing GraphQL mutations. */
@@ -10743,9 +10769,15 @@ type Mutation = {
10743
10769
  addEnterpriseSupportEntitlement?: Maybe<AddEnterpriseSupportEntitlementPayload>;
10744
10770
  /** Adds labels to a labelable object. */
10745
10771
  addLabelsToLabelable?: Maybe<AddLabelsToLabelablePayload>;
10746
- /** Adds a card to a ProjectColumn. Either `contentId` or `note` must be provided but **not** both. */
10772
+ /**
10773
+ * Adds a card to a ProjectColumn. Either `contentId` or `note` must be provided but **not** both.
10774
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10775
+ */
10747
10776
  addProjectCard?: Maybe<AddProjectCardPayload>;
10748
- /** Adds a column to a Project. */
10777
+ /**
10778
+ * Adds a column to a Project.
10779
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10780
+ */
10749
10781
  addProjectColumn?: Maybe<AddProjectColumnPayload>;
10750
10782
  /** Creates a new draft issue and add it to a Project. */
10751
10783
  addProjectV2DraftIssue?: Maybe<AddProjectV2DraftIssuePayload>;
@@ -10793,7 +10825,10 @@ type Mutation = {
10793
10825
  * milestone fields are supported.
10794
10826
  */
10795
10827
  clearProjectV2ItemFieldValue?: Maybe<ClearProjectV2ItemFieldValuePayload>;
10796
- /** Creates a new project by cloning configuration from an existing project. */
10828
+ /**
10829
+ * Creates a new project by cloning configuration from an existing project.
10830
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10831
+ */
10797
10832
  cloneProject?: Maybe<CloneProjectPayload>;
10798
10833
  /** Create a new repository with the same files and directory structure as a template repository. */
10799
10834
  cloneTemplateRepository?: Maybe<CloneTemplateRepositoryPayload>;
@@ -10803,7 +10838,10 @@ type Mutation = {
10803
10838
  closeIssue?: Maybe<CloseIssuePayload>;
10804
10839
  /** Close a pull request. */
10805
10840
  closePullRequest?: Maybe<ClosePullRequestPayload>;
10806
- /** Convert a project note card to one associated with a newly created issue. */
10841
+ /**
10842
+ * Convert a project note card to one associated with a newly created issue.
10843
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10844
+ */
10807
10845
  convertProjectCardNoteToIssue?: Maybe<ConvertProjectCardNoteToIssuePayload>;
10808
10846
  /** Converts a projectV2 draft issue item to an issue. */
10809
10847
  convertProjectV2DraftIssueItemToIssue?: Maybe<ConvertProjectV2DraftIssueItemToIssuePayload>;
@@ -10891,7 +10929,10 @@ type Mutation = {
10891
10929
  createLinkedBranch?: Maybe<CreateLinkedBranchPayload>;
10892
10930
  /** Creates a GitHub Enterprise Importer (GEI) migration source. */
10893
10931
  createMigrationSource?: Maybe<CreateMigrationSourcePayload>;
10894
- /** Creates a new project. */
10932
+ /**
10933
+ * Creates a new project.
10934
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10935
+ */
10895
10936
  createProject?: Maybe<CreateProjectPayload>;
10896
10937
  /** Creates a new project. */
10897
10938
  createProjectV2?: Maybe<CreateProjectV2Payload>;
@@ -10948,11 +10989,20 @@ type Mutation = {
10948
10989
  deleteLinkedBranch?: Maybe<DeleteLinkedBranchPayload>;
10949
10990
  /** Delete a package version. */
10950
10991
  deletePackageVersion?: Maybe<DeletePackageVersionPayload>;
10951
- /** Deletes a project. */
10992
+ /**
10993
+ * Deletes a project.
10994
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
10995
+ */
10952
10996
  deleteProject?: Maybe<DeleteProjectPayload>;
10953
- /** Deletes a project card. */
10997
+ /**
10998
+ * Deletes a project card.
10999
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11000
+ */
10954
11001
  deleteProjectCard?: Maybe<DeleteProjectCardPayload>;
10955
- /** Deletes a project column. */
11002
+ /**
11003
+ * Deletes a project column.
11004
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11005
+ */
10956
11006
  deleteProjectColumn?: Maybe<DeleteProjectColumnPayload>;
10957
11007
  /** Delete a project. */
10958
11008
  deleteProjectV2?: Maybe<DeleteProjectV2Payload>;
@@ -11000,7 +11050,10 @@ type Mutation = {
11000
11050
  grantEnterpriseOrganizationsMigratorRole?: Maybe<GrantEnterpriseOrganizationsMigratorRolePayload>;
11001
11051
  /** Grant the migrator role to a user or a team. */
11002
11052
  grantMigratorRole?: Maybe<GrantMigratorRolePayload>;
11003
- /** Creates a new project by importing columns and a list of issues/PRs. */
11053
+ /**
11054
+ * Creates a new project by importing columns and a list of issues/PRs.
11055
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11056
+ */
11004
11057
  importProject?: Maybe<ImportProjectPayload>;
11005
11058
  /** Invite someone to become an administrator of the enterprise. */
11006
11059
  inviteEnterpriseAdmin?: Maybe<InviteEnterpriseAdminPayload>;
@@ -11010,7 +11063,10 @@ type Mutation = {
11010
11063
  linkProjectV2ToRepository?: Maybe<LinkProjectV2ToRepositoryPayload>;
11011
11064
  /** Links a project to a team. */
11012
11065
  linkProjectV2ToTeam?: Maybe<LinkProjectV2ToTeamPayload>;
11013
- /** Creates a repository link for a project. */
11066
+ /**
11067
+ * Creates a repository link for a project.
11068
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11069
+ */
11014
11070
  linkRepositoryToProject?: Maybe<LinkRepositoryToProjectPayload>;
11015
11071
  /** Lock a lockable object */
11016
11072
  lockLockable?: Maybe<LockLockablePayload>;
@@ -11028,9 +11084,15 @@ type Mutation = {
11028
11084
  mergePullRequest?: Maybe<MergePullRequestPayload>;
11029
11085
  /** Minimizes a comment on an Issue, Commit, Pull Request, or Gist */
11030
11086
  minimizeComment?: Maybe<MinimizeCommentPayload>;
11031
- /** Moves a project card to another place. */
11087
+ /**
11088
+ * Moves a project card to another place.
11089
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11090
+ */
11032
11091
  moveProjectCard?: Maybe<MoveProjectCardPayload>;
11033
- /** Moves a project column to another place. */
11092
+ /**
11093
+ * Moves a project column to another place.
11094
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11095
+ */
11034
11096
  moveProjectColumn?: Maybe<MoveProjectColumnPayload>;
11035
11097
  /** Pin an environment to a repository */
11036
11098
  pinEnvironment?: Maybe<PinEnvironmentPayload>;
@@ -11125,7 +11187,10 @@ type Mutation = {
11125
11187
  unlinkProjectV2FromRepository?: Maybe<UnlinkProjectV2FromRepositoryPayload>;
11126
11188
  /** Unlinks a project to a team. */
11127
11189
  unlinkProjectV2FromTeam?: Maybe<UnlinkProjectV2FromTeamPayload>;
11128
- /** Deletes a repository link from a project. */
11190
+ /**
11191
+ * Deletes a repository link from a project.
11192
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11193
+ */
11129
11194
  unlinkRepositoryFromProject?: Maybe<UnlinkRepositoryFromProjectPayload>;
11130
11195
  /** Unlock a lockable object */
11131
11196
  unlockLockable?: Maybe<UnlockLockablePayload>;
@@ -11218,11 +11283,20 @@ type Mutation = {
11218
11283
  * your GitHub account with Patreon.
11219
11284
  */
11220
11285
  updatePatreonSponsorability?: Maybe<UpdatePatreonSponsorabilityPayload>;
11221
- /** Updates an existing project. */
11286
+ /**
11287
+ * Updates an existing project.
11288
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11289
+ */
11222
11290
  updateProject?: Maybe<UpdateProjectPayload>;
11223
- /** Updates an existing project card. */
11291
+ /**
11292
+ * Updates an existing project card.
11293
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11294
+ */
11224
11295
  updateProjectCard?: Maybe<UpdateProjectCardPayload>;
11225
- /** Updates an existing project column. */
11296
+ /**
11297
+ * Updates an existing project column.
11298
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
11299
+ */
11226
11300
  updateProjectColumn?: Maybe<UpdateProjectColumnPayload>;
11227
11301
  /** Updates an existing project. */
11228
11302
  updateProjectV2?: Maybe<UpdateProjectV2Payload>;
@@ -13942,11 +14016,17 @@ type Organization = Actor & AnnouncementBannerI & MemberStatusable & Node & Pack
13942
14016
  pinnedItems: PinnableItemConnection;
13943
14017
  /** Returns how many more items this profile owner can pin to their profile. */
13944
14018
  pinnedItemsRemaining: Scalars['Int']['output'];
13945
- /** Find project by number. */
14019
+ /**
14020
+ * Find project by number.
14021
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
14022
+ */
13946
14023
  project?: Maybe<Project>;
13947
14024
  /** Find a project by number. */
13948
14025
  projectV2?: Maybe<ProjectV2>;
13949
- /** A list of projects under the owner. */
14026
+ /**
14027
+ * A list of projects under the owner.
14028
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
14029
+ */
13950
14030
  projects: ProjectConnection;
13951
14031
  /** The HTTP path listing organization's projects */
13952
14032
  projectsResourcePath: Scalars['URI']['output'];
@@ -15406,41 +15486,89 @@ type ProfileOwnerPinnedItemsArgs = {
15406
15486
  /** Projects manage issues, pull requests and notes within a project owner. */
15407
15487
  type Project = Closable & Node & Updatable & {
15408
15488
  __typename?: 'Project';
15409
- /** The project's description body. */
15489
+ /**
15490
+ * The project's description body.
15491
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15492
+ */
15410
15493
  body?: Maybe<Scalars['String']['output']>;
15411
- /** The projects description body rendered to HTML. */
15494
+ /**
15495
+ * The projects description body rendered to HTML.
15496
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15497
+ */
15412
15498
  bodyHTML: Scalars['HTML']['output'];
15413
15499
  /** Indicates if the object is closed (definition of closed may depend on type) */
15414
15500
  closed: Scalars['Boolean']['output'];
15415
15501
  /** Identifies the date and time when the object was closed. */
15416
15502
  closedAt?: Maybe<Scalars['DateTime']['output']>;
15417
- /** List of columns in the project */
15503
+ /**
15504
+ * List of columns in the project
15505
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15506
+ */
15418
15507
  columns: ProjectColumnConnection;
15419
- /** Identifies the date and time when the object was created. */
15508
+ /**
15509
+ * Identifies the date and time when the object was created.
15510
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15511
+ */
15420
15512
  createdAt: Scalars['DateTime']['output'];
15421
- /** The actor who originally created the project. */
15513
+ /**
15514
+ * The actor who originally created the project.
15515
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15516
+ */
15422
15517
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
15423
- /** Identifies the primary key from the database. */
15518
+ /**
15519
+ * Identifies the primary key from the database.
15520
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15521
+ */
15424
15522
  databaseId?: Maybe<Scalars['Int']['output']>;
15425
- /** The Node ID of the Project object */
15523
+ /**
15524
+ * The Node ID of the Project object
15525
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15526
+ */
15426
15527
  id: Scalars['ID']['output'];
15427
- /** The project's name. */
15528
+ /**
15529
+ * The project's name.
15530
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15531
+ */
15428
15532
  name: Scalars['String']['output'];
15429
- /** The project's number. */
15533
+ /**
15534
+ * The project's number.
15535
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15536
+ */
15430
15537
  number: Scalars['Int']['output'];
15431
- /** The project's owner. Currently limited to repositories, organizations, and users. */
15538
+ /**
15539
+ * The project's owner. Currently limited to repositories, organizations, and users.
15540
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15541
+ */
15432
15542
  owner: Organization | Repository | User;
15433
- /** List of pending cards in this project */
15543
+ /**
15544
+ * List of pending cards in this project
15545
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15546
+ */
15434
15547
  pendingCards: ProjectCardConnection;
15435
- /** Project progress details. */
15548
+ /**
15549
+ * Project progress details.
15550
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15551
+ */
15436
15552
  progress: ProjectProgress;
15437
- /** The HTTP path for this project */
15553
+ /**
15554
+ * The HTTP path for this project
15555
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15556
+ */
15438
15557
  resourcePath: Scalars['URI']['output'];
15439
- /** Whether the project is open or closed. */
15558
+ /**
15559
+ * Whether the project is open or closed.
15560
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15561
+ */
15440
15562
  state: ProjectState;
15441
- /** Identifies the date and time when the object was last updated. */
15563
+ /**
15564
+ * Identifies the date and time when the object was last updated.
15565
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15566
+ */
15442
15567
  updatedAt: Scalars['DateTime']['output'];
15443
- /** The HTTP URL for this project */
15568
+ /**
15569
+ * The HTTP URL for this project
15570
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15571
+ */
15444
15572
  url: Scalars['URI']['output'];
15445
15573
  /** Indicates if the object can be closed by the viewer. */
15446
15574
  viewerCanClose: Scalars['Boolean']['output'];
@@ -15472,31 +15600,68 @@ type ProjectCard = Node & {
15472
15600
  * project column at a time. The column field will be null if the card is created
15473
15601
  * in a pending state and has yet to be associated with a column. Once cards are
15474
15602
  * associated with a column, they will not become pending in the future.
15603
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15475
15604
  */
15476
15605
  column?: Maybe<ProjectColumn>;
15477
- /** The card content item */
15606
+ /**
15607
+ * The card content item
15608
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15609
+ */
15478
15610
  content?: Maybe<ProjectCardItem>;
15479
- /** Identifies the date and time when the object was created. */
15611
+ /**
15612
+ * Identifies the date and time when the object was created.
15613
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15614
+ */
15480
15615
  createdAt: Scalars['DateTime']['output'];
15481
- /** The actor who created this card */
15616
+ /**
15617
+ * The actor who created this card
15618
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15619
+ */
15482
15620
  creator?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
15483
- /** Identifies the primary key from the database. */
15621
+ /**
15622
+ * Identifies the primary key from the database.
15623
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15624
+ */
15484
15625
  databaseId?: Maybe<Scalars['Int']['output']>;
15485
- /** The Node ID of the ProjectCard object */
15626
+ /**
15627
+ * The Node ID of the ProjectCard object
15628
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15629
+ */
15486
15630
  id: Scalars['ID']['output'];
15487
- /** Whether the card is archived */
15631
+ /**
15632
+ * Whether the card is archived
15633
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15634
+ */
15488
15635
  isArchived: Scalars['Boolean']['output'];
15489
- /** The card note */
15636
+ /**
15637
+ * The card note
15638
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15639
+ */
15490
15640
  note?: Maybe<Scalars['String']['output']>;
15491
- /** The project that contains this card. */
15641
+ /**
15642
+ * The project that contains this card.
15643
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15644
+ */
15492
15645
  project: Project;
15493
- /** The HTTP path for this card */
15646
+ /**
15647
+ * The HTTP path for this card
15648
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15649
+ */
15494
15650
  resourcePath: Scalars['URI']['output'];
15495
- /** The state of ProjectCard */
15651
+ /**
15652
+ * The state of ProjectCard
15653
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15654
+ */
15496
15655
  state?: Maybe<ProjectCardState>;
15497
- /** Identifies the date and time when the object was last updated. */
15656
+ /**
15657
+ * Identifies the date and time when the object was last updated.
15658
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15659
+ */
15498
15660
  updatedAt: Scalars['DateTime']['output'];
15499
- /** The HTTP URL for this card */
15661
+ /**
15662
+ * The HTTP URL for this card
15663
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15664
+ */
15500
15665
  url: Scalars['URI']['output'];
15501
15666
  };
15502
15667
  /** The possible archived states of a project card. */
@@ -15545,25 +15710,55 @@ type ProjectCardState =
15545
15710
  /** A column inside a project. */
15546
15711
  type ProjectColumn = Node & {
15547
15712
  __typename?: 'ProjectColumn';
15548
- /** List of cards in the column */
15713
+ /**
15714
+ * List of cards in the column
15715
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15716
+ */
15549
15717
  cards: ProjectCardConnection;
15550
- /** Identifies the date and time when the object was created. */
15718
+ /**
15719
+ * Identifies the date and time when the object was created.
15720
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15721
+ */
15551
15722
  createdAt: Scalars['DateTime']['output'];
15552
- /** Identifies the primary key from the database. */
15723
+ /**
15724
+ * Identifies the primary key from the database.
15725
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15726
+ */
15553
15727
  databaseId?: Maybe<Scalars['Int']['output']>;
15554
- /** The Node ID of the ProjectColumn object */
15728
+ /**
15729
+ * The Node ID of the ProjectColumn object
15730
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15731
+ */
15555
15732
  id: Scalars['ID']['output'];
15556
- /** The project column's name. */
15733
+ /**
15734
+ * The project column's name.
15735
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15736
+ */
15557
15737
  name: Scalars['String']['output'];
15558
- /** The project that contains this column. */
15738
+ /**
15739
+ * The project that contains this column.
15740
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15741
+ */
15559
15742
  project: Project;
15560
- /** The semantic purpose of the column */
15743
+ /**
15744
+ * The semantic purpose of the column
15745
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15746
+ */
15561
15747
  purpose?: Maybe<ProjectColumnPurpose>;
15562
- /** The HTTP path for this project column */
15748
+ /**
15749
+ * The HTTP path for this project column
15750
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15751
+ */
15563
15752
  resourcePath: Scalars['URI']['output'];
15564
- /** Identifies the date and time when the object was last updated. */
15753
+ /**
15754
+ * Identifies the date and time when the object was last updated.
15755
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15756
+ */
15565
15757
  updatedAt: Scalars['DateTime']['output'];
15566
- /** The HTTP URL for this project column */
15758
+ /**
15759
+ * The HTTP URL for this project column
15760
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15761
+ */
15567
15762
  url: Scalars['URI']['output'];
15568
15763
  };
15569
15764
  /** A column inside a project. */
@@ -15650,9 +15845,15 @@ type ProjectOrderField =
15650
15845
  type ProjectOwner = {
15651
15846
  /** The Node ID of the ProjectOwner object */
15652
15847
  id: Scalars['ID']['output'];
15653
- /** Find project by number. */
15848
+ /**
15849
+ * Find project by number.
15850
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15851
+ */
15654
15852
  project?: Maybe<Project>;
15655
- /** A list of projects under the owner. */
15853
+ /**
15854
+ * A list of projects under the owner.
15855
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15856
+ */
15656
15857
  projects: ProjectConnection;
15657
15858
  /** The HTTP path listing owners projects */
15658
15859
  projectsResourcePath: Scalars['URI']['output'];
@@ -15678,19 +15879,40 @@ type ProjectOwnerProjectsArgs = {
15678
15879
  /** Project progress stats. */
15679
15880
  type ProjectProgress = {
15680
15881
  __typename?: 'ProjectProgress';
15681
- /** The number of done cards. */
15882
+ /**
15883
+ * The number of done cards.
15884
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15885
+ */
15682
15886
  doneCount: Scalars['Int']['output'];
15683
- /** The percentage of done cards. */
15887
+ /**
15888
+ * The percentage of done cards.
15889
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15890
+ */
15684
15891
  donePercentage: Scalars['Float']['output'];
15685
- /** Whether progress tracking is enabled and cards with purpose exist for this project */
15892
+ /**
15893
+ * Whether progress tracking is enabled and cards with purpose exist for this project
15894
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15895
+ */
15686
15896
  enabled: Scalars['Boolean']['output'];
15687
- /** The number of in-progress cards. */
15897
+ /**
15898
+ * The number of in-progress cards.
15899
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15900
+ */
15688
15901
  inProgressCount: Scalars['Int']['output'];
15689
- /** The percentage of in-progress cards. */
15902
+ /**
15903
+ * The percentage of in-progress cards.
15904
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15905
+ */
15690
15906
  inProgressPercentage: Scalars['Float']['output'];
15691
- /** The number of to do cards. */
15907
+ /**
15908
+ * The number of to do cards.
15909
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15910
+ */
15692
15911
  todoCount: Scalars['Int']['output'];
15693
- /** The percentage of to do cards. */
15912
+ /**
15913
+ * The percentage of to do cards.
15914
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
15915
+ */
15694
15916
  todoPercentage: Scalars['Float']['output'];
15695
15917
  };
15696
15918
  /** State of the project; either 'open' or 'closed' */
@@ -16013,12 +16235,16 @@ type ProjectV2FieldType =
16013
16235
  | 'MILESTONE'
16014
16236
  /** Number */
16015
16237
  | 'NUMBER'
16238
+ /** Parent issue */
16239
+ | 'PARENT_ISSUE'
16016
16240
  /** Repository */
16017
16241
  | 'REPOSITORY'
16018
16242
  /** Reviewers */
16019
16243
  | 'REVIEWERS'
16020
16244
  /** Single Select */
16021
16245
  | 'SINGLE_SELECT'
16246
+ /** Sub-issues progress */
16247
+ | 'SUB_ISSUES_PROGRESS'
16022
16248
  /** Text */
16023
16249
  | 'TEXT'
16024
16250
  /** Title */
@@ -19336,13 +19562,19 @@ type RemovedFromProjectEvent = Node & {
19336
19562
  actor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
19337
19563
  /** Identifies the date and time when the object was created. */
19338
19564
  createdAt: Scalars['DateTime']['output'];
19339
- /** Identifies the primary key from the database. */
19565
+ /**
19566
+ * Identifies the primary key from the database.
19567
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
19568
+ */
19340
19569
  databaseId?: Maybe<Scalars['Int']['output']>;
19341
19570
  /** The Node ID of the RemovedFromProjectEvent object */
19342
19571
  id: Scalars['ID']['output'];
19343
19572
  /** Project referenced by event. */
19344
19573
  project?: Maybe<Project>;
19345
- /** Column name referenced by this project event. */
19574
+ /**
19575
+ * Column name referenced by this project event.
19576
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
19577
+ */
19346
19578
  projectColumnName: Scalars['String']['output'];
19347
19579
  };
19348
19580
  /** Represents a 'renamed' event on a given issue or pull request */
@@ -20619,11 +20851,17 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
20619
20851
  planFeatures: RepositoryPlanFeatures;
20620
20852
  /** The primary language of the repository's code. */
20621
20853
  primaryLanguage?: Maybe<Language>;
20622
- /** Find project by number. */
20854
+ /**
20855
+ * Find project by number.
20856
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
20857
+ */
20623
20858
  project?: Maybe<Project>;
20624
20859
  /** Finds and returns the Project according to the provided Project number. */
20625
20860
  projectV2?: Maybe<ProjectV2>;
20626
- /** A list of projects under the owner. */
20861
+ /**
20862
+ * A list of projects under the owner.
20863
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
20864
+ */
20627
20865
  projects: ProjectConnection;
20628
20866
  /** The HTTP path listing the repository's projects */
20629
20867
  projectsResourcePath: Scalars['URI']['output'];
@@ -27912,11 +28150,17 @@ type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV
27912
28150
  pinnedItems: PinnableItemConnection;
27913
28151
  /** Returns how many more items this profile owner can pin to their profile. */
27914
28152
  pinnedItemsRemaining: Scalars['Int']['output'];
27915
- /** Find project by number. */
28153
+ /**
28154
+ * Find project by number.
28155
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
28156
+ */
27916
28157
  project?: Maybe<Project>;
27917
28158
  /** Find a project by number. */
27918
28159
  projectV2?: Maybe<ProjectV2>;
27919
- /** A list of projects under the owner. */
28160
+ /**
28161
+ * A list of projects under the owner.
28162
+ * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
28163
+ */
27920
28164
  projects: ProjectConnection;
27921
28165
  /** The HTTP path listing user's projects */
27922
28166
  projectsResourcePath: Scalars['URI']['output'];