typescript-github-action-template 0.2.8 → 0.2.10

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.
@@ -412,6 +412,19 @@ export type AddStarInput = {
412
412
  /** The Starrable ID to star. */
413
413
  starrableId: Scalars['ID']['input'];
414
414
  };
415
+ /** Autogenerated input type of AddSubIssue */
416
+ export type AddSubIssueInput = {
417
+ /** A unique identifier for the client performing the mutation. */
418
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
419
+ /** The id of the issue. */
420
+ issueId: Scalars['ID']['input'];
421
+ /** Option to replace parent issue if one already exists */
422
+ replaceParent?: InputMaybe<Scalars['Boolean']['input']>;
423
+ /** The id of the sub-issue. */
424
+ subIssueId?: InputMaybe<Scalars['ID']['input']>;
425
+ /** The url of the sub-issue. */
426
+ subIssueUrl?: InputMaybe<Scalars['String']['input']>;
427
+ };
415
428
  /** Autogenerated input type of AddUpvote */
416
429
  export type AddUpvoteInput = {
417
430
  /** A unique identifier for the client performing the mutation. */
@@ -1260,6 +1273,8 @@ export type CreateIssueInput = {
1260
1273
  labelIds?: InputMaybe<Array<Scalars['ID']['input']>>;
1261
1274
  /** The Node ID of the milestone for this issue. */
1262
1275
  milestoneId?: InputMaybe<Scalars['ID']['input']>;
1276
+ /** The Node ID of the parent issue to add this new issue to */
1277
+ parentIssueId?: InputMaybe<Scalars['ID']['input']>;
1263
1278
  /** An array of Node IDs for projects associated with this issue. */
1264
1279
  projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
1265
1280
  /** The Node ID of the repository. */
@@ -4339,6 +4354,15 @@ export type RemoveStarInput = {
4339
4354
  /** The Starrable ID to unstar. */
4340
4355
  starrableId: Scalars['ID']['input'];
4341
4356
  };
4357
+ /** Autogenerated input type of RemoveSubIssue */
4358
+ export type RemoveSubIssueInput = {
4359
+ /** A unique identifier for the client performing the mutation. */
4360
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
4361
+ /** The id of the issue. */
4362
+ issueId: Scalars['ID']['input'];
4363
+ /** The id of the sub-issue. */
4364
+ subIssueId: Scalars['ID']['input'];
4365
+ };
4342
4366
  /** Autogenerated input type of RemoveUpvote */
4343
4367
  export type RemoveUpvoteInput = {
4344
4368
  /** A unique identifier for the client performing the mutation. */
@@ -4772,6 +4796,19 @@ export type RepositoryVulnerabilityAlertState =
4772
4796
  | 'FIXED'
4773
4797
  /** An alert that is still open. */
4774
4798
  | 'OPEN';
4799
+ /** Autogenerated input type of ReprioritizeSubIssue */
4800
+ export type ReprioritizeSubIssueInput = {
4801
+ /** The id of the sub-issue to be prioritized after (either positional argument after OR before should be specified). */
4802
+ afterId?: InputMaybe<Scalars['ID']['input']>;
4803
+ /** The id of the sub-issue to be prioritized before (either positional argument after OR before should be specified). */
4804
+ beforeId?: InputMaybe<Scalars['ID']['input']>;
4805
+ /** A unique identifier for the client performing the mutation. */
4806
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
4807
+ /** The id of the parent issue. */
4808
+ issueId: Scalars['ID']['input'];
4809
+ /** The id of the sub-issue to reprioritize. */
4810
+ subIssueId: Scalars['ID']['input'];
4811
+ };
4775
4812
  /** Autogenerated input type of RequestReviews */
4776
4813
  export type RequestReviewsInput = {
4777
4814
  /** A unique identifier for the client performing the mutation. */
@@ -6338,6 +6375,15 @@ export type UpdateEnterpriseDefaultRepositoryPermissionSettingInput = {
6338
6375
  /** The value for the base repository permission setting on the enterprise. */
6339
6376
  settingValue: EnterpriseDefaultRepositoryPermissionSettingValue;
6340
6377
  };
6378
+ /** Autogenerated input type of UpdateEnterpriseDeployKeySetting */
6379
+ export type UpdateEnterpriseDeployKeySettingInput = {
6380
+ /** A unique identifier for the client performing the mutation. */
6381
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
6382
+ /** The ID of the enterprise on which to set the deploy key setting. */
6383
+ enterpriseId: Scalars['ID']['input'];
6384
+ /** The value for the deploy key setting on the enterprise. */
6385
+ settingValue: EnterpriseEnabledDisabledSettingValue;
6386
+ };
6341
6387
  /** Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting */
6342
6388
  export type UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput = {
6343
6389
  /** A unique identifier for the client performing the mutation. */
@@ -6683,6 +6729,21 @@ export type UpdateProjectV2DraftIssueInput = {
6683
6729
  /** The title of the draft issue. */
6684
6730
  title?: InputMaybe<Scalars['String']['input']>;
6685
6731
  };
6732
+ /** Autogenerated input type of UpdateProjectV2Field */
6733
+ export type UpdateProjectV2FieldInput = {
6734
+ /** A unique identifier for the client performing the mutation. */
6735
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
6736
+ /** The ID of the field to update. */
6737
+ fieldId: Scalars['ID']['input'];
6738
+ /** The name to update. */
6739
+ name?: InputMaybe<Scalars['String']['input']>;
6740
+ /**
6741
+ * Options for a field of type SINGLE_SELECT. If empty, no changes will be made
6742
+ * to the options. If values are present, they will overwrite the existing
6743
+ * options for the field.
6744
+ */
6745
+ singleSelectOptions?: InputMaybe<Array<ProjectV2SingleSelectFieldOptionInput>>;
6746
+ };
6686
6747
  /** Autogenerated input type of UpdateProjectV2 */
6687
6748
  export type UpdateProjectV2Input = {
6688
6749
  /** A unique identifier for the client performing the mutation. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
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.3",
34
34
  "@graphql-codegen/near-operation-file-preset": "^3.0.0",
35
- "@graphql-codegen/typescript": "4.1.1",
36
- "@graphql-codegen/typescript-document-nodes": "4.0.11",
35
+ "@graphql-codegen/typescript": "4.1.2",
36
+ "@graphql-codegen/typescript-document-nodes": "4.0.12",
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",