typescript-github-action-template 0.2.14 → 0.2.16

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.
@@ -3834,6 +3834,8 @@ export type CreateProjectV2FieldInput = {
3834
3834
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
3835
3835
  /** The data type of the field. */
3836
3836
  dataType: ProjectV2CustomFieldType;
3837
+ /** Configuration for an iteration field. */
3838
+ iterationConfiguration?: InputMaybe<ProjectV2IterationFieldConfigurationInput>;
3837
3839
  /** The name of the field. */
3838
3840
  name: Scalars['String']['input'];
3839
3841
  /** The ID of the Project to create the field in. */
@@ -16116,6 +16118,8 @@ export type ProjectV2Connection = {
16116
16118
  export type ProjectV2CustomFieldType =
16117
16119
  /** Date */
16118
16120
  'DATE'
16121
+ /** Iteration */
16122
+ | 'ITERATION'
16119
16123
  /** Number */
16120
16124
  | 'NUMBER'
16121
16125
  /** Single Select */
@@ -16605,6 +16609,15 @@ export type ProjectV2ItemType =
16605
16609
  | 'PULL_REQUEST'
16606
16610
  /** Redacted Item */
16607
16611
  | 'REDACTED';
16612
+ /** Represents an iteration */
16613
+ export type ProjectV2Iteration = {
16614
+ /** The duration of the iteration, in days. */
16615
+ duration: Scalars['Int']['input'];
16616
+ /** The start date for the iteration. */
16617
+ startDate: Scalars['Date']['input'];
16618
+ /** The title for the iteration. */
16619
+ title: Scalars['String']['input'];
16620
+ };
16608
16621
  /** An iteration field inside a project. */
16609
16622
  export type ProjectV2IterationField = Node & ProjectV2FieldCommon & {
16610
16623
  __typename: 'ProjectV2IterationField';
@@ -16637,6 +16650,15 @@ export type ProjectV2IterationFieldConfiguration = {
16637
16650
  /** The iteration's start day of the week */
16638
16651
  startDay: Scalars['Int']['output'];
16639
16652
  };
16653
+ /** Represents an iteration field configuration. */
16654
+ export type ProjectV2IterationFieldConfigurationInput = {
16655
+ /** The duration of each iteration, in days. */
16656
+ duration: Scalars['Int']['input'];
16657
+ /** Zero or more iterations for the field. */
16658
+ iterations: Array<ProjectV2Iteration>;
16659
+ /** The start date for the first iteration. */
16660
+ startDate: Scalars['Date']['input'];
16661
+ };
16640
16662
  /** Iteration field iteration settings for a project. */
16641
16663
  export type ProjectV2IterationFieldIteration = {
16642
16664
  __typename: 'ProjectV2IterationFieldIteration';
@@ -27512,6 +27534,8 @@ export type UpdateProjectV2FieldInput = {
27512
27534
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
27513
27535
  /** The ID of the field to update. */
27514
27536
  fieldId: Scalars['ID']['input'];
27537
+ /** Configuration for an iteration field. */
27538
+ iterationConfiguration?: InputMaybe<ProjectV2IterationFieldConfigurationInput>;
27515
27539
  /** The name to update. */
27516
27540
  name?: InputMaybe<Scalars['String']['input']>;
27517
27541
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.14",
3
+ "version": "0.2.16",
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",
@@ -30,10 +30,10 @@
30
30
  "@0no-co/graphqlsp": "^1.12.12",
31
31
  "@eslint/eslintrc": "^3.0.2",
32
32
  "@eslint/js": "^9.2.0",
33
- "@graphql-codegen/cli": "5.0.4",
33
+ "@graphql-codegen/cli": "5.0.5",
34
34
  "@graphql-codegen/near-operation-file-preset": "^3.0.0",
35
- "@graphql-codegen/typescript": "4.1.3",
36
- "@graphql-codegen/typescript-document-nodes": "4.0.13",
35
+ "@graphql-codegen/typescript": "4.1.4",
36
+ "@graphql-codegen/typescript-document-nodes": "4.0.14",
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",