typescript-github-action-template 0.2.18 → 0.2.20

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.
@@ -744,7 +744,10 @@ export type AddedToProjectEvent = Node & {
744
744
  databaseId?: Maybe<Scalars['Int']['output']>;
745
745
  /** The Node ID of the AddedToProjectEvent object */
746
746
  id: Scalars['ID']['output'];
747
- /** Project referenced by event. */
747
+ /**
748
+ * Project referenced by event.
749
+ * @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.
750
+ */
748
751
  project?: Maybe<Project>;
749
752
  /**
750
753
  * Project card referenced by this project event.
@@ -3327,7 +3330,10 @@ export type ConvertedNoteToIssueEvent = Node & {
3327
3330
  databaseId?: Maybe<Scalars['Int']['output']>;
3328
3331
  /** The Node ID of the ConvertedNoteToIssueEvent object */
3329
3332
  id: Scalars['ID']['output'];
3330
- /** Project referenced by event. */
3333
+ /**
3334
+ * Project referenced by event.
3335
+ * @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.
3336
+ */
3331
3337
  project?: Maybe<Project>;
3332
3338
  /**
3333
3339
  * Project card referenced by this project event.
@@ -3715,6 +3721,8 @@ export type CreateIssueInput = {
3715
3721
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
3716
3722
  /** The name of an issue template in the repository, assigns labels and assignees from the template to the issue */
3717
3723
  issueTemplate?: InputMaybe<Scalars['String']['input']>;
3724
+ /** The Node ID of the issue type for this issue */
3725
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
3718
3726
  /** An array of Node IDs of labels for this issue. */
3719
3727
  labelIds?: InputMaybe<Array<Scalars['ID']['input']>>;
3720
3728
  /** The Node ID of the milestone for this issue. */
@@ -3736,6 +3744,37 @@ export type CreateIssuePayload = {
3736
3744
  /** The new issue. */
3737
3745
  issue?: Maybe<Issue>;
3738
3746
  };
3747
+ /** Autogenerated input type of CreateIssueType */
3748
+ export type CreateIssueTypeInput = {
3749
+ /** A unique identifier for the client performing the mutation. */
3750
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
3751
+ /** Color for the issue type */
3752
+ color?: InputMaybe<IssueTypeColor>;
3753
+ /** Description of the new issue type */
3754
+ description?: InputMaybe<Scalars['String']['input']>;
3755
+ /** Whether or not the issue type is enabled on the org level */
3756
+ isEnabled: Scalars['Boolean']['input'];
3757
+ /**
3758
+ * Whether or not the issue type is restricted to issues in private repositories
3759
+ *
3760
+ * **Upcoming Change on 2025-04-01 UTC**
3761
+ * **Description:** `isPrivate` will be removed.
3762
+ * **Reason:** Private issue types are being deprecated and can no longer be created.
3763
+ */
3764
+ isPrivate?: InputMaybe<Scalars['Boolean']['input']>;
3765
+ /** Name of the new issue type */
3766
+ name: Scalars['String']['input'];
3767
+ /** The ID for the organization on which the issue type is created */
3768
+ ownerId: Scalars['ID']['input'];
3769
+ };
3770
+ /** Autogenerated return type of CreateIssueType. */
3771
+ export type CreateIssueTypePayload = {
3772
+ __typename: 'CreateIssueTypePayload';
3773
+ /** A unique identifier for the client performing the mutation. */
3774
+ clientMutationId?: Maybe<Scalars['String']['output']>;
3775
+ /** The newly created issue type */
3776
+ issueType?: Maybe<IssueType>;
3777
+ };
3739
3778
  /** Autogenerated input type of CreateLabel */
3740
3779
  export type CreateLabelInput = {
3741
3780
  /** A unique identifier for the client performing the mutation. */
@@ -4722,6 +4761,21 @@ export type DeleteIssuePayload = {
4722
4761
  /** The repository the issue belonged to */
4723
4762
  repository?: Maybe<Repository>;
4724
4763
  };
4764
+ /** Autogenerated input type of DeleteIssueType */
4765
+ export type DeleteIssueTypeInput = {
4766
+ /** A unique identifier for the client performing the mutation. */
4767
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
4768
+ /** The ID of the issue type to delete */
4769
+ issueTypeId: Scalars['ID']['input'];
4770
+ };
4771
+ /** Autogenerated return type of DeleteIssueType. */
4772
+ export type DeleteIssueTypePayload = {
4773
+ __typename: 'DeleteIssueTypePayload';
4774
+ /** A unique identifier for the client performing the mutation. */
4775
+ clientMutationId?: Maybe<Scalars['String']['output']>;
4776
+ /** The ID of the deleted issue type */
4777
+ deletedIssueTypeId?: Maybe<Scalars['ID']['output']>;
4778
+ };
4725
4779
  /** Autogenerated input type of DeleteLabel */
4726
4780
  export type DeleteLabelInput = {
4727
4781
  /** A unique identifier for the client performing the mutation. */
@@ -5057,6 +5111,8 @@ export type DependencyGraphDependency = {
5057
5111
  packageManager?: Maybe<Scalars['String']['output']>;
5058
5112
  /** The name of the package in the canonical form used by the package manager. */
5059
5113
  packageName: Scalars['String']['output'];
5114
+ /** Public preview: The dependency package URL */
5115
+ packageUrl?: Maybe<Scalars['URI']['output']>;
5060
5116
  /** Public preview: The relationship of the dependency. Can be direct, transitive, or unknown */
5061
5117
  relationship: Scalars['String']['output'];
5062
5118
  /** The repository containing the package */
@@ -7892,13 +7948,19 @@ export type FileExtensionRestrictionParametersInput = {
7892
7948
  /** The file extensions that are restricted from being pushed to the commit graph. */
7893
7949
  restrictedFileExtensions: Array<Scalars['String']['input']>;
7894
7950
  };
7895
- /** Prevent commits that include changes in specified file paths from being pushed to the commit graph. */
7951
+ /**
7952
+ * Prevent commits that include changes in specified file and folder paths from
7953
+ * being pushed to the commit graph. This includes absolute paths that contain file names.
7954
+ */
7896
7955
  export type FilePathRestrictionParameters = {
7897
7956
  __typename: 'FilePathRestrictionParameters';
7898
7957
  /** The file paths that are restricted from being pushed to the commit graph. */
7899
7958
  restrictedFilePaths: Array<Scalars['String']['output']>;
7900
7959
  };
7901
- /** Prevent commits that include changes in specified file paths from being pushed to the commit graph. */
7960
+ /**
7961
+ * Prevent commits that include changes in specified file and folder paths from
7962
+ * being pushed to the commit graph. This includes absolute paths that contain file names.
7963
+ */
7902
7964
  export type FilePathRestrictionParametersInput = {
7903
7965
  /** The file paths that are restricted from being pushed to the commit graph. */
7904
7966
  restrictedFilePaths: Array<Scalars['String']['input']>;
@@ -8666,6 +8728,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8666
8728
  isPinned?: Maybe<Scalars['Boolean']['output']>;
8667
8729
  /** Is this issue read by the viewer */
8668
8730
  isReadByViewer?: Maybe<Scalars['Boolean']['output']>;
8731
+ /** The issue type for this Issue */
8732
+ issueType?: Maybe<IssueType>;
8669
8733
  /** A list of labels associated with the object. */
8670
8734
  labels?: Maybe<LabelConnection>;
8671
8735
  /** The moment the editor made the last edit */
@@ -8682,7 +8746,10 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8682
8746
  parent?: Maybe<Issue>;
8683
8747
  /** A list of Users that are participating in the Issue conversation. */
8684
8748
  participants: UserConnection;
8685
- /** List of project cards associated with this issue. */
8749
+ /**
8750
+ * List of project cards associated with this issue.
8751
+ * @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.
8752
+ */
8686
8753
  projectCards: ProjectCardConnection;
8687
8754
  /** List of project items associated with this issue. */
8688
8755
  projectItems: ProjectV2ItemConnection;
@@ -9149,6 +9216,8 @@ export type IssueTemplate = {
9149
9216
  name: Scalars['String']['output'];
9150
9217
  /** The suggested issue title. */
9151
9218
  title?: Maybe<Scalars['String']['output']>;
9219
+ /** The suggested issue type */
9220
+ type?: Maybe<IssueType>;
9152
9221
  };
9153
9222
  /** A repository issue template. */
9154
9223
  export type IssueTemplateAssigneesArgs = {
@@ -9188,7 +9257,7 @@ export type IssueTimelineItemEdge = {
9188
9257
  node?: Maybe<IssueTimelineItem>;
9189
9258
  };
9190
9259
  /** An item in an issue timeline */
9191
- export type IssueTimelineItems = AddedToProjectEvent | AssignedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
9260
+ export type IssueTimelineItems = AddedToProjectEvent | AssignedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
9192
9261
  /** The connection type for IssueTimelineItems. */
9193
9262
  export type IssueTimelineItemsConnection = {
9194
9263
  __typename: 'IssueTimelineItemsConnection';
@@ -9239,6 +9308,12 @@ export type IssueTimelineItemsItemType =
9239
9308
  | 'DISCONNECTED_EVENT'
9240
9309
  /** Represents a comment on an Issue. */
9241
9310
  | 'ISSUE_COMMENT'
9311
+ /** Represents a 'issue_type_added' event on a given issue. */
9312
+ | 'ISSUE_TYPE_ADDED_EVENT'
9313
+ /** Represents a 'issue_type_changed' event on a given issue. */
9314
+ | 'ISSUE_TYPE_CHANGED_EVENT'
9315
+ /** Represents a 'issue_type_removed' event on a given issue. */
9316
+ | 'ISSUE_TYPE_REMOVED_EVENT'
9242
9317
  /** Represents a 'labeled' event on a given issue or pull request. */
9243
9318
  | 'LABELED_EVENT'
9244
9319
  /** Represents a 'locked' event on a given issue or pull request. */
@@ -9287,6 +9362,128 @@ export type IssueTimelineItemsItemType =
9287
9362
  | 'UNSUBSCRIBED_EVENT'
9288
9363
  /** Represents a 'user_blocked' event on a given user. */
9289
9364
  | 'USER_BLOCKED_EVENT';
9365
+ /** Represents the type of Issue. */
9366
+ export type IssueType = Node & {
9367
+ __typename: 'IssueType';
9368
+ /** The issue type's color. */
9369
+ color: IssueTypeColor;
9370
+ /** The issue type's description. */
9371
+ description?: Maybe<Scalars['String']['output']>;
9372
+ /** The Node ID of the IssueType object */
9373
+ id: Scalars['ID']['output'];
9374
+ /** The issue type's enabled state. */
9375
+ isEnabled: Scalars['Boolean']['output'];
9376
+ /**
9377
+ * Whether the issue type is publicly visible.
9378
+ * @deprecated Private issue types are being deprecated and can no longer be created. Removal on 2025-04-01 UTC.
9379
+ */
9380
+ isPrivate: Scalars['Boolean']['output'];
9381
+ /** The issues with this issue type in the given repository. */
9382
+ issues: IssueConnection;
9383
+ /** The issue type's name. */
9384
+ name: Scalars['String']['output'];
9385
+ };
9386
+ /** Represents the type of Issue. */
9387
+ export type IssueTypeIssuesArgs = {
9388
+ after?: InputMaybe<Scalars['String']['input']>;
9389
+ before?: InputMaybe<Scalars['String']['input']>;
9390
+ filterBy?: InputMaybe<IssueFilters>;
9391
+ first?: InputMaybe<Scalars['Int']['input']>;
9392
+ labels?: InputMaybe<Array<Scalars['String']['input']>>;
9393
+ last?: InputMaybe<Scalars['Int']['input']>;
9394
+ orderBy?: InputMaybe<IssueOrder>;
9395
+ repositoryId: Scalars['ID']['input'];
9396
+ states?: InputMaybe<Array<IssueState>>;
9397
+ };
9398
+ /** Represents a 'issue_type_added' event on a given issue. */
9399
+ export type IssueTypeAddedEvent = Node & {
9400
+ __typename: 'IssueTypeAddedEvent';
9401
+ /** Identifies the actor who performed the event. */
9402
+ actor?: Maybe<Actor>;
9403
+ /** Identifies the date and time when the object was created. */
9404
+ createdAt: Scalars['DateTime']['output'];
9405
+ /** The Node ID of the IssueTypeAddedEvent object */
9406
+ id: Scalars['ID']['output'];
9407
+ /** The issue type added. */
9408
+ issueType?: Maybe<IssueType>;
9409
+ };
9410
+ /** Represents a 'issue_type_changed' event on a given issue. */
9411
+ export type IssueTypeChangedEvent = Node & {
9412
+ __typename: 'IssueTypeChangedEvent';
9413
+ /** Identifies the actor who performed the event. */
9414
+ actor?: Maybe<Actor>;
9415
+ /** Identifies the date and time when the object was created. */
9416
+ createdAt: Scalars['DateTime']['output'];
9417
+ /** The Node ID of the IssueTypeChangedEvent object */
9418
+ id: Scalars['ID']['output'];
9419
+ /** The issue type added. */
9420
+ issueType?: Maybe<IssueType>;
9421
+ /** The issue type removed. */
9422
+ prevIssueType?: Maybe<IssueType>;
9423
+ };
9424
+ /** The possible color for an issue type */
9425
+ export type IssueTypeColor =
9426
+ /** blue */
9427
+ 'BLUE'
9428
+ /** gray */
9429
+ | 'GRAY'
9430
+ /** green */
9431
+ | 'GREEN'
9432
+ /** orange */
9433
+ | 'ORANGE'
9434
+ /** pink */
9435
+ | 'PINK'
9436
+ /** purple */
9437
+ | 'PURPLE'
9438
+ /** red */
9439
+ | 'RED'
9440
+ /** yellow */
9441
+ | 'YELLOW';
9442
+ /** The connection type for IssueType. */
9443
+ export type IssueTypeConnection = {
9444
+ __typename: 'IssueTypeConnection';
9445
+ /** A list of edges. */
9446
+ edges?: Maybe<Array<Maybe<IssueTypeEdge>>>;
9447
+ /** A list of nodes. */
9448
+ nodes?: Maybe<Array<Maybe<IssueType>>>;
9449
+ /** Information to aid in pagination. */
9450
+ pageInfo: PageInfo;
9451
+ /** Identifies the total count of items in the connection. */
9452
+ totalCount: Scalars['Int']['output'];
9453
+ };
9454
+ /** An edge in a connection. */
9455
+ export type IssueTypeEdge = {
9456
+ __typename: 'IssueTypeEdge';
9457
+ /** A cursor for use in pagination. */
9458
+ cursor: Scalars['String']['output'];
9459
+ /** The item at the end of the edge. */
9460
+ node?: Maybe<IssueType>;
9461
+ };
9462
+ /** Ordering options for issue types connections */
9463
+ export type IssueTypeOrder = {
9464
+ /** The ordering direction. */
9465
+ direction: OrderDirection;
9466
+ /** The field to order issue types by. */
9467
+ field: IssueTypeOrderField;
9468
+ };
9469
+ /** Properties by which issue type connections can be ordered. */
9470
+ export type IssueTypeOrderField =
9471
+ /** Order issue types by creation time */
9472
+ 'CREATED_AT'
9473
+ /** Order issue types by name */
9474
+ | 'NAME';
9475
+ /** Represents a 'issue_type_removed' event on a given issue. */
9476
+ export type IssueTypeRemovedEvent = Node & {
9477
+ __typename: 'IssueTypeRemovedEvent';
9478
+ /** Identifies the actor who performed the event. */
9479
+ actor?: Maybe<Actor>;
9480
+ /** Identifies the date and time when the object was created. */
9481
+ createdAt: Scalars['DateTime']['output'];
9482
+ /** The Node ID of the IssueTypeRemovedEvent object */
9483
+ id: Scalars['ID']['output'];
9484
+ /** The issue type removed. */
9485
+ issueType?: Maybe<IssueType>;
9486
+ };
9290
9487
  /** Represents a user signing up for a GitHub account. */
9291
9488
  export type JoinedGitHubContribution = Contribution & {
9292
9489
  __typename: 'JoinedGitHubContribution';
@@ -9958,24 +10155,24 @@ export type MarketplaceListingEdge = {
9958
10155
  /** The item at the end of the edge. */
9959
10156
  node?: Maybe<MarketplaceListing>;
9960
10157
  };
9961
- /** Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph. */
10158
+ /** Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph. */
9962
10159
  export type MaxFilePathLengthParameters = {
9963
10160
  __typename: 'MaxFilePathLengthParameters';
9964
- /** The maximum amount of characters allowed in file paths */
10161
+ /** The maximum amount of characters allowed in file paths. */
9965
10162
  maxFilePathLength: Scalars['Int']['output'];
9966
10163
  };
9967
- /** Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph. */
10164
+ /** Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph. */
9968
10165
  export type MaxFilePathLengthParametersInput = {
9969
- /** The maximum amount of characters allowed in file paths */
10166
+ /** The maximum amount of characters allowed in file paths. */
9970
10167
  maxFilePathLength: Scalars['Int']['input'];
9971
10168
  };
9972
- /** Prevent commits that exceed a specified file size limit from being pushed to the commit graph. */
10169
+ /** Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. */
9973
10170
  export type MaxFileSizeParameters = {
9974
10171
  __typename: 'MaxFileSizeParameters';
9975
10172
  /** The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS). */
9976
10173
  maxFileSize: Scalars['Int']['output'];
9977
10174
  };
9978
- /** Prevent commits that exceed a specified file size limit from being pushed to the commit graph. */
10175
+ /** Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. */
9979
10176
  export type MaxFileSizeParametersInput = {
9980
10177
  /** The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS). */
9981
10178
  maxFileSize: Scalars['Int']['input'];
@@ -10536,6 +10733,8 @@ export type Milestone = Closable & Node & UniformResourceLocatable & {
10536
10733
  creator?: Maybe<Actor>;
10537
10734
  /** Identifies the description of the milestone. */
10538
10735
  description?: Maybe<Scalars['String']['output']>;
10736
+ /** The HTML rendered description of the milestone using GitHub Flavored Markdown. */
10737
+ descriptionHTML?: Maybe<Scalars['String']['output']>;
10539
10738
  /** Identifies the due date of the milestone. */
10540
10739
  dueOn?: Maybe<Scalars['DateTime']['output']>;
10541
10740
  /** The Node ID of the Milestone object */
@@ -10732,7 +10931,10 @@ export type MovedColumnsInProjectEvent = Node & {
10732
10931
  * @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.
10733
10932
  */
10734
10933
  previousProjectColumnName: Scalars['String']['output'];
10735
- /** Project referenced by event. */
10934
+ /**
10935
+ * Project referenced by event.
10936
+ * @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.
10937
+ */
10736
10938
  project?: Maybe<Project>;
10737
10939
  /**
10738
10940
  * Project card referenced by this project event.
@@ -10928,6 +11130,8 @@ export type Mutation = {
10928
11130
  createIpAllowListEntry?: Maybe<CreateIpAllowListEntryPayload>;
10929
11131
  /** Creates a new issue. */
10930
11132
  createIssue?: Maybe<CreateIssuePayload>;
11133
+ /** Creates a new issue type */
11134
+ createIssueType?: Maybe<CreateIssueTypePayload>;
10931
11135
  /** Creates a new label. */
10932
11136
  createLabel?: Maybe<CreateLabelPayload>;
10933
11137
  /** Create a branch linked to an issue. */
@@ -10988,6 +11192,8 @@ export type Mutation = {
10988
11192
  deleteIssue?: Maybe<DeleteIssuePayload>;
10989
11193
  /** Deletes an IssueComment object. */
10990
11194
  deleteIssueComment?: Maybe<DeleteIssueCommentPayload>;
11195
+ /** Delete an issue type */
11196
+ deleteIssueType?: Maybe<DeleteIssueTypePayload>;
10991
11197
  /** Deletes a label. */
10992
11198
  deleteLabel?: Maybe<DeleteLabelPayload>;
10993
11199
  /** Unlink a branch from an issue. */
@@ -11273,6 +11479,10 @@ export type Mutation = {
11273
11479
  updateIssue?: Maybe<UpdateIssuePayload>;
11274
11480
  /** Updates an IssueComment object. */
11275
11481
  updateIssueComment?: Maybe<UpdateIssueCommentPayload>;
11482
+ /** Updates the issue type on an issue */
11483
+ updateIssueIssueType?: Maybe<UpdateIssueIssueTypePayload>;
11484
+ /** Update an issue type */
11485
+ updateIssueType?: Maybe<UpdateIssueTypePayload>;
11276
11486
  /** Updates an existing label. */
11277
11487
  updateLabel?: Maybe<UpdateLabelPayload>;
11278
11488
  /** Update the setting to restrict notifications to only verified or approved domains available to an owner. */
@@ -11607,6 +11817,10 @@ export type MutationCreateIssueArgs = {
11607
11817
  input: CreateIssueInput;
11608
11818
  };
11609
11819
  /** The root query for implementing GraphQL mutations. */
11820
+ export type MutationCreateIssueTypeArgs = {
11821
+ input: CreateIssueTypeInput;
11822
+ };
11823
+ /** The root query for implementing GraphQL mutations. */
11610
11824
  export type MutationCreateLabelArgs = {
11611
11825
  input: CreateLabelInput;
11612
11826
  };
@@ -11715,6 +11929,10 @@ export type MutationDeleteIssueCommentArgs = {
11715
11929
  input: DeleteIssueCommentInput;
11716
11930
  };
11717
11931
  /** The root query for implementing GraphQL mutations. */
11932
+ export type MutationDeleteIssueTypeArgs = {
11933
+ input: DeleteIssueTypeInput;
11934
+ };
11935
+ /** The root query for implementing GraphQL mutations. */
11718
11936
  export type MutationDeleteLabelArgs = {
11719
11937
  input: DeleteLabelInput;
11720
11938
  };
@@ -12231,6 +12449,14 @@ export type MutationUpdateIssueCommentArgs = {
12231
12449
  input: UpdateIssueCommentInput;
12232
12450
  };
12233
12451
  /** The root query for implementing GraphQL mutations. */
12452
+ export type MutationUpdateIssueIssueTypeArgs = {
12453
+ input: UpdateIssueIssueTypeInput;
12454
+ };
12455
+ /** The root query for implementing GraphQL mutations. */
12456
+ export type MutationUpdateIssueTypeArgs = {
12457
+ input: UpdateIssueTypeInput;
12458
+ };
12459
+ /** The root query for implementing GraphQL mutations. */
12234
12460
  export type MutationUpdateLabelArgs = {
12235
12461
  input: UpdateLabelInput;
12236
12462
  };
@@ -13977,6 +14203,8 @@ export type Organization = Actor & AnnouncementBannerI & MemberStatusable & Node
13977
14203
  isSponsoringViewer: Scalars['Boolean']['output'];
13978
14204
  /** Whether the organization has verified its profile email and website. */
13979
14205
  isVerified: Scalars['Boolean']['output'];
14206
+ /** A list of the organization's issue types */
14207
+ issueTypes?: Maybe<IssueTypeConnection>;
13980
14208
  /**
13981
14209
  * Showcases a selection of repositories and gists that the profile owner has
13982
14210
  * either curated or that have been selected automatically based on popularity.
@@ -14111,7 +14339,10 @@ export type Organization = Actor & AnnouncementBannerI & MemberStatusable & Node
14111
14339
  viewerCanAdminister: Scalars['Boolean']['output'];
14112
14340
  /** Can the viewer pin repositories and gists to the profile? */
14113
14341
  viewerCanChangePinnedItems: Scalars['Boolean']['output'];
14114
- /** Can the current viewer create new projects on this owner. */
14342
+ /**
14343
+ * Can the current viewer create new projects on this owner.
14344
+ * @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.
14345
+ */
14115
14346
  viewerCanCreateProjects: Scalars['Boolean']['output'];
14116
14347
  /** Viewer can create repositories on this organization */
14117
14348
  viewerCanCreateRepositories: Scalars['Boolean']['output'];
@@ -14180,6 +14411,14 @@ export type OrganizationIsSponsoredByArgs = {
14180
14411
  accountLogin: Scalars['String']['input'];
14181
14412
  };
14182
14413
  /** An account on GitHub, with one or more owners, that has repositories, members and teams. */
14414
+ export type OrganizationIssueTypesArgs = {
14415
+ after?: InputMaybe<Scalars['String']['input']>;
14416
+ before?: InputMaybe<Scalars['String']['input']>;
14417
+ first?: InputMaybe<Scalars['Int']['input']>;
14418
+ last?: InputMaybe<Scalars['Int']['input']>;
14419
+ orderBy?: InputMaybe<IssueTypeOrder>;
14420
+ };
14421
+ /** An account on GitHub, with one or more owners, that has repositories, members and teams. */
14183
14422
  export type OrganizationLifetimeReceivedSponsorshipValuesArgs = {
14184
14423
  after?: InputMaybe<Scalars['String']['input']>;
14185
14424
  before?: InputMaybe<Scalars['String']['input']>;
@@ -15848,7 +16087,10 @@ export type ProjectOrderField =
15848
16087
  | 'UPDATED_AT';
15849
16088
  /** Represents an owner of a Project. */
15850
16089
  export type ProjectOwner = {
15851
- /** The Node ID of the ProjectOwner object */
16090
+ /**
16091
+ * The Node ID of the ProjectOwner object
16092
+ * @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.
16093
+ */
15852
16094
  id: Scalars['ID']['output'];
15853
16095
  /**
15854
16096
  * Find project by number.
@@ -15860,11 +16102,20 @@ export type ProjectOwner = {
15860
16102
  * @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.
15861
16103
  */
15862
16104
  projects: ProjectConnection;
15863
- /** The HTTP path listing owners projects */
16105
+ /**
16106
+ * The HTTP path listing owners projects
16107
+ * @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.
16108
+ */
15864
16109
  projectsResourcePath: Scalars['URI']['output'];
15865
- /** The HTTP URL listing owners projects */
16110
+ /**
16111
+ * The HTTP URL listing owners projects
16112
+ * @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.
16113
+ */
15866
16114
  projectsUrl: Scalars['URI']['output'];
15867
- /** Can the current viewer create new projects on this owner. */
16115
+ /**
16116
+ * Can the current viewer create new projects on this owner.
16117
+ * @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.
16118
+ */
15868
16119
  viewerCanCreateProjects: Scalars['Boolean']['output'];
15869
16120
  };
15870
16121
  /** Represents an owner of a Project. */
@@ -16232,6 +16483,8 @@ export type ProjectV2FieldType =
16232
16483
  'ASSIGNEES'
16233
16484
  /** Date */
16234
16485
  | 'DATE'
16486
+ /** Issue type */
16487
+ | 'ISSUE_TYPE'
16235
16488
  /** Iteration */
16236
16489
  | 'ITERATION'
16237
16490
  /** Labels */
@@ -17380,7 +17633,10 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable
17380
17633
  * `mergeable` field for more details on the mergeability of the pull request.
17381
17634
  */
17382
17635
  potentialMergeCommit?: Maybe<Commit>;
17383
- /** List of project cards associated with this pull request. */
17636
+ /**
17637
+ * List of project cards associated with this pull request.
17638
+ * @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.
17639
+ */
17384
17640
  projectCards: ProjectCardConnection;
17385
17641
  /** List of project items associated with this pull request. */
17386
17642
  projectItems: ProjectV2ItemConnection;
@@ -17646,6 +17902,14 @@ export type PullRequestViewerMergeBodyTextArgs = {
17646
17902
  export type PullRequestViewerMergeHeadlineTextArgs = {
17647
17903
  mergeType?: InputMaybe<PullRequestMergeMethod>;
17648
17904
  };
17905
+ /** Array of allowed merge methods. Allowed values include `merge`, `squash`, and `rebase`. At least one option must be enabled. */
17906
+ export type PullRequestAllowedMergeMethods =
17907
+ /** Add all commits from the head branch to the base branch with a merge commit. */
17908
+ 'MERGE'
17909
+ /** Add all commits from the head branch onto the base branch individually. */
17910
+ | 'REBASE'
17911
+ /** Combine all commits from the head branch into a single commit in the base branch. */
17912
+ | 'SQUASH';
17649
17913
  /** The possible methods for updating a pull request's head branch with the base branch. */
17650
17914
  export type PullRequestBranchUpdateMethod =
17651
17915
  /** Update branch via merge */
@@ -17809,7 +18073,12 @@ export type PullRequestParameters = {
17809
18073
  * Array of allowed merge methods. Allowed values include `merge`, `squash`, and
17810
18074
  * `rebase`. At least one option must be enabled.
17811
18075
  */
17812
- allowedMergeMethods?: Maybe<Array<Scalars['String']['output']>>;
18076
+ allowedMergeMethods?: Maybe<Array<PullRequestAllowedMergeMethods>>;
18077
+ /**
18078
+ * This field is in beta and subject to change. Automatically request review from
18079
+ * Copilot for new pull requests, if the author has access to Copilot code review.
18080
+ */
18081
+ automaticCopilotCodeReviewEnabled: Scalars['Boolean']['output'];
17813
18082
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
17814
18083
  dismissStaleReviewsOnPush: Scalars['Boolean']['output'];
17815
18084
  /** Require an approving review in pull requests that modify files that have a designated code owner. */
@@ -17827,7 +18096,12 @@ export type PullRequestParametersInput = {
17827
18096
  * Array of allowed merge methods. Allowed values include `merge`, `squash`, and
17828
18097
  * `rebase`. At least one option must be enabled.
17829
18098
  */
17830
- allowedMergeMethods?: InputMaybe<Array<Scalars['String']['input']>>;
18099
+ allowedMergeMethods?: InputMaybe<Array<PullRequestAllowedMergeMethods>>;
18100
+ /**
18101
+ * This argument is in beta and subject to change. Automatically request review
18102
+ * from Copilot for new pull requests, if the author has access to Copilot code review.
18103
+ */
18104
+ automaticCopilotCodeReviewEnabled?: InputMaybe<Scalars['Boolean']['input']>;
17831
18105
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
17832
18106
  dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
17833
18107
  /** Require an approving review in pull requests that modify files that have a designated code owner. */
@@ -18342,7 +18616,7 @@ export type PullRequestTimelineItemEdge = {
18342
18616
  node?: Maybe<PullRequestTimelineItem>;
18343
18617
  };
18344
18618
  /** An item in a pull request timeline */
18345
- export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
18619
+ export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
18346
18620
  /** The connection type for PullRequestTimelineItems. */
18347
18621
  export type PullRequestTimelineItemsConnection = {
18348
18622
  __typename: 'PullRequestTimelineItemsConnection';
@@ -18425,6 +18699,12 @@ export type PullRequestTimelineItemsItemType =
18425
18699
  | 'HEAD_REF_RESTORED_EVENT'
18426
18700
  /** Represents a comment on an Issue. */
18427
18701
  | 'ISSUE_COMMENT'
18702
+ /** Represents a 'issue_type_added' event on a given issue. */
18703
+ | 'ISSUE_TYPE_ADDED_EVENT'
18704
+ /** Represents a 'issue_type_changed' event on a given issue. */
18705
+ | 'ISSUE_TYPE_CHANGED_EVENT'
18706
+ /** Represents a 'issue_type_removed' event on a given issue. */
18707
+ | 'ISSUE_TYPE_REMOVED_EVENT'
18428
18708
  /** Represents a 'labeled' event on a given issue or pull request. */
18429
18709
  | 'LABELED_EVENT'
18430
18710
  /** Represents a 'locked' event on a given issue or pull request. */
@@ -19594,7 +19874,10 @@ export type RemovedFromProjectEvent = Node & {
19594
19874
  databaseId?: Maybe<Scalars['Int']['output']>;
19595
19875
  /** The Node ID of the RemovedFromProjectEvent object */
19596
19876
  id: Scalars['ID']['output'];
19597
- /** Project referenced by event. */
19877
+ /**
19878
+ * Project referenced by event.
19879
+ * @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.
19880
+ */
19598
19881
  project?: Maybe<Project>;
19599
19882
  /**
19600
19883
  * Column name referenced by this project event.
@@ -20822,6 +21105,10 @@ export type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent &
20822
21105
  issueOrPullRequest?: Maybe<IssueOrPullRequest>;
20823
21106
  /** Returns a list of issue templates associated to the repository */
20824
21107
  issueTemplates?: Maybe<Array<IssueTemplate>>;
21108
+ /** Returns a single issue type by name */
21109
+ issueType?: Maybe<IssueType>;
21110
+ /** A list of the repository's issue types */
21111
+ issueTypes?: Maybe<IssueTypeConnection>;
20825
21112
  /** A list of issues that have been opened in the repository. */
20826
21113
  issues: IssueConnection;
20827
21114
  /** Returns a single label by name */
@@ -20960,7 +21247,10 @@ export type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent &
20960
21247
  usesCustomOpenGraphImage: Scalars['Boolean']['output'];
20961
21248
  /** Indicates whether the viewer has admin permissions on this repository. */
20962
21249
  viewerCanAdminister: Scalars['Boolean']['output'];
20963
- /** Can the current viewer create new projects on this owner. */
21250
+ /**
21251
+ * Can the current viewer create new projects on this owner.
21252
+ * @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.
21253
+ */
20964
21254
  viewerCanCreateProjects: Scalars['Boolean']['output'];
20965
21255
  /** Check if the viewer is able to change their subscription status for the repository. */
20966
21256
  viewerCanSubscribe: Scalars['Boolean']['output'];
@@ -21115,6 +21405,18 @@ export type RepositoryIssueOrPullRequestArgs = {
21115
21405
  number: Scalars['Int']['input'];
21116
21406
  };
21117
21407
  /** A repository contains the content for a project. */
21408
+ export type RepositoryIssueTypeArgs = {
21409
+ name: Scalars['String']['input'];
21410
+ };
21411
+ /** A repository contains the content for a project. */
21412
+ export type RepositoryIssueTypesArgs = {
21413
+ after?: InputMaybe<Scalars['String']['input']>;
21414
+ before?: InputMaybe<Scalars['String']['input']>;
21415
+ first?: InputMaybe<Scalars['Int']['input']>;
21416
+ last?: InputMaybe<Scalars['Int']['input']>;
21417
+ orderBy?: InputMaybe<IssueTypeOrder>;
21418
+ };
21419
+ /** A repository contains the content for a project. */
21118
21420
  export type RepositoryIssuesArgs = {
21119
21421
  after?: InputMaybe<Scalars['String']['input']>;
21120
21422
  before?: InputMaybe<Scalars['String']['input']>;
@@ -21989,13 +22291,16 @@ export type RepositoryRuleType =
21989
22291
  | 'DELETION'
21990
22292
  /** Prevent commits that include files with specified file extensions from being pushed to the commit graph. */
21991
22293
  | 'FILE_EXTENSION_RESTRICTION'
21992
- /** Prevent commits that include changes in specified file paths from being pushed to the commit graph. */
22294
+ /**
22295
+ * Prevent commits that include changes in specified file and folder paths from
22296
+ * being pushed to the commit graph. This includes absolute paths that contain file names.
22297
+ */
21993
22298
  | 'FILE_PATH_RESTRICTION'
21994
22299
  /** Branch is read-only. Users cannot push to the branch. */
21995
22300
  | 'LOCK_BRANCH'
21996
- /** Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph. */
22301
+ /** Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph. */
21997
22302
  | 'MAX_FILE_PATH_LENGTH'
21998
- /** Prevent commits that exceed a specified file size limit from being pushed to the commit graph. */
22303
+ /** Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. */
21999
22304
  | 'MAX_FILE_SIZE'
22000
22305
  /** Max ref updates */
22001
22306
  | 'MAX_REF_UPDATES'
@@ -22319,6 +22624,8 @@ export type RepositoryVulnerabilityAlert = Node & RepositoryNode & {
22319
22624
  createdAt: Scalars['DateTime']['output'];
22320
22625
  /** The associated Dependabot update */
22321
22626
  dependabotUpdate?: Maybe<DependabotUpdate>;
22627
+ /** The relationship of an alert's dependency. */
22628
+ dependencyRelationship?: Maybe<RepositoryVulnerabilityAlertDependencyRelationship>;
22322
22629
  /** The scope of an alert's dependency */
22323
22630
  dependencyScope?: Maybe<RepositoryVulnerabilityAlertDependencyScope>;
22324
22631
  /** Comment explaining the reason the alert was dismissed */
@@ -22362,6 +22669,14 @@ export type RepositoryVulnerabilityAlertConnection = {
22362
22669
  /** Identifies the total count of items in the connection. */
22363
22670
  totalCount: Scalars['Int']['output'];
22364
22671
  };
22672
+ /** The possible relationships of an alert's dependency. */
22673
+ export type RepositoryVulnerabilityAlertDependencyRelationship =
22674
+ /** A direct dependency of your project */
22675
+ 'DIRECT'
22676
+ /** A transitive dependency of your project */
22677
+ | 'TRANSITIVE'
22678
+ /** The relationship is unknown */
22679
+ | 'UNKNOWN';
22365
22680
  /** The possible scopes of an alert's dependency. */
22366
22681
  export type RepositoryVulnerabilityAlertDependencyScope =
22367
22682
  /** A dependency that is only used in development */
@@ -22996,6 +23311,8 @@ export type SearchType =
22996
23311
  'DISCUSSION'
22997
23312
  /** Returns results matching issues in repositories. */
22998
23313
  | 'ISSUE'
23314
+ /** Returns results matching issues in repositories. */
23315
+ | 'ISSUE_ADVANCED'
22999
23316
  /** Returns results matching repositories. */
23000
23317
  | 'REPOSITORY'
23001
23318
  /** Returns results matching users and organizations on GitHub. */
@@ -27293,6 +27610,8 @@ export type UpdateIssueInput = {
27293
27610
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
27294
27611
  /** The ID of the Issue to modify. */
27295
27612
  id: Scalars['ID']['input'];
27613
+ /** The ID of the Issue Type for this issue. */
27614
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
27296
27615
  /** An array of Node IDs of labels for this issue. */
27297
27616
  labelIds?: InputMaybe<Array<Scalars['ID']['input']>>;
27298
27617
  /** The Node ID of the milestone for this issue. */
@@ -27304,6 +27623,23 @@ export type UpdateIssueInput = {
27304
27623
  /** The title for the issue. */
27305
27624
  title?: InputMaybe<Scalars['String']['input']>;
27306
27625
  };
27626
+ /** Autogenerated input type of UpdateIssueIssueType */
27627
+ export type UpdateIssueIssueTypeInput = {
27628
+ /** A unique identifier for the client performing the mutation. */
27629
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
27630
+ /** The ID of the issue to update */
27631
+ issueId: Scalars['ID']['input'];
27632
+ /** The ID of the issue type to update on the issue */
27633
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
27634
+ };
27635
+ /** Autogenerated return type of UpdateIssueIssueType. */
27636
+ export type UpdateIssueIssueTypePayload = {
27637
+ __typename: 'UpdateIssueIssueTypePayload';
27638
+ /** A unique identifier for the client performing the mutation. */
27639
+ clientMutationId?: Maybe<Scalars['String']['output']>;
27640
+ /** The updated issue */
27641
+ issue?: Maybe<Issue>;
27642
+ };
27307
27643
  /** Autogenerated return type of UpdateIssue. */
27308
27644
  export type UpdateIssuePayload = {
27309
27645
  __typename: 'UpdateIssuePayload';
@@ -27314,6 +27650,37 @@ export type UpdateIssuePayload = {
27314
27650
  /** The issue. */
27315
27651
  issue?: Maybe<Issue>;
27316
27652
  };
27653
+ /** Autogenerated input type of UpdateIssueType */
27654
+ export type UpdateIssueTypeInput = {
27655
+ /** A unique identifier for the client performing the mutation. */
27656
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
27657
+ /** Color for the issue type */
27658
+ color?: InputMaybe<IssueTypeColor>;
27659
+ /** The description of the issue type */
27660
+ description?: InputMaybe<Scalars['String']['input']>;
27661
+ /** Whether or not the issue type is enabled for the organization */
27662
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
27663
+ /**
27664
+ * Whether or not the issue type is restricted to issues in private repositories
27665
+ *
27666
+ * **Upcoming Change on 2025-04-01 UTC**
27667
+ * **Description:** `isPrivate` will be removed.
27668
+ * **Reason:** Private issue types are being deprecated and can no longer be created.
27669
+ */
27670
+ isPrivate?: InputMaybe<Scalars['Boolean']['input']>;
27671
+ /** The ID of the issue type to update */
27672
+ issueTypeId: Scalars['ID']['input'];
27673
+ /** The name of the issue type */
27674
+ name?: InputMaybe<Scalars['String']['input']>;
27675
+ };
27676
+ /** Autogenerated return type of UpdateIssueType. */
27677
+ export type UpdateIssueTypePayload = {
27678
+ __typename: 'UpdateIssueTypePayload';
27679
+ /** A unique identifier for the client performing the mutation. */
27680
+ clientMutationId?: Maybe<Scalars['String']['output']>;
27681
+ /** The updated issue type */
27682
+ issueType?: Maybe<IssueType>;
27683
+ };
27317
27684
  /** Autogenerated input type of UpdateLabel */
27318
27685
  export type UpdateLabelInput = {
27319
27686
  /** A unique identifier for the client performing the mutation. */
@@ -28261,7 +28628,10 @@ export type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & P
28261
28628
  userViewType: UserViewType;
28262
28629
  /** Can the viewer pin repositories and gists to the profile? */
28263
28630
  viewerCanChangePinnedItems: Scalars['Boolean']['output'];
28264
- /** Can the current viewer create new projects on this owner. */
28631
+ /**
28632
+ * Can the current viewer create new projects on this owner.
28633
+ * @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.
28634
+ */
28265
28635
  viewerCanCreateProjects: Scalars['Boolean']['output'];
28266
28636
  /** Whether or not the viewer is able to follow the user. */
28267
28637
  viewerCanFollow: Scalars['Boolean']['output'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.18",
3
+ "version": "0.2.20",
4
4
  "description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.js",
@@ -32,8 +32,8 @@
32
32
  "@eslint/js": "^9.2.0",
33
33
  "@graphql-codegen/cli": "5.0.5",
34
34
  "@graphql-codegen/near-operation-file-preset": "^3.0.0",
35
- "@graphql-codegen/typescript": "4.1.5",
36
- "@graphql-codegen/typescript-document-nodes": "4.0.15",
35
+ "@graphql-codegen/typescript": "4.1.6",
36
+ "@graphql-codegen/typescript-document-nodes": "4.0.16",
37
37
  "@serverless-guru/prettier-plugin-import-order": "^0.4.2",
38
38
  "@types/node": "^22.0.0",
39
39
  "@typescript-eslint/eslint-plugin": "^8.0.0",
@@ -55,7 +55,7 @@
55
55
  "@actions/core": "^1.10.0",
56
56
  "@actions/github": "^6.0.0",
57
57
  "@octokit/plugin-retry": "^7.1.1",
58
- "@octokit/plugin-throttling": "^9.3.0"
58
+ "@octokit/plugin-throttling": "^10.0.0"
59
59
  },
60
60
  "lint-staged": {
61
61
  "*.(ts,js)": "yarn lint --fix",