typescript-github-action-template 0.2.38 → 0.2.39

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.
@@ -17061,6 +17061,36 @@ export type OrganizationOrderField =
17061
17061
  'CREATED_AT'
17062
17062
  /** Order organizations by login */
17063
17063
  | 'LOGIN';
17064
+ /** Parameters to be used for the organization_property condition */
17065
+ export type OrganizationPropertyConditionTarget = {
17066
+ __typename: 'OrganizationPropertyConditionTarget';
17067
+ /** Array of organization properties that must not match. */
17068
+ exclude: Array<OrganizationPropertyTargetDefinition>;
17069
+ /** Array of organization properties that must match */
17070
+ include: Array<OrganizationPropertyTargetDefinition>;
17071
+ };
17072
+ /** Parameters to be used for the organization_property condition */
17073
+ export type OrganizationPropertyConditionTargetInput = {
17074
+ /** Array of organization properties that must not match. */
17075
+ exclude: Array<OrganizationPropertyTargetDefinitionInput>;
17076
+ /** Array of organization properties that must match */
17077
+ include: Array<OrganizationPropertyTargetDefinitionInput>;
17078
+ };
17079
+ /** A property that must match */
17080
+ export type OrganizationPropertyTargetDefinition = {
17081
+ __typename: 'OrganizationPropertyTargetDefinition';
17082
+ /** The name of the property */
17083
+ name: Scalars['String']['output'];
17084
+ /** The values to match for */
17085
+ propertyValues: Array<Scalars['String']['output']>;
17086
+ };
17087
+ /** A property that must match */
17088
+ export type OrganizationPropertyTargetDefinitionInput = {
17089
+ /** The name of the property */
17090
+ name: Scalars['String']['input'];
17091
+ /** The values to match for */
17092
+ propertyValues: Array<Scalars['String']['input']>;
17093
+ };
17064
17094
  /** An organization teams hovercard context */
17065
17095
  export type OrganizationTeamsHovercardContext = HovercardContext & {
17066
17096
  __typename: 'OrganizationTeamsHovercardContext';
@@ -18473,6 +18503,7 @@ export type ProjectV2ItemsArgs = {
18473
18503
  first?: InputMaybe<Scalars['Int']['input']>;
18474
18504
  last?: InputMaybe<Scalars['Int']['input']>;
18475
18505
  orderBy?: InputMaybe<ProjectV2ItemOrder>;
18506
+ query?: InputMaybe<Scalars['String']['input']>;
18476
18507
  };
18477
18508
  /** New projects that manage issues, pull requests and drafts using tables and boards. */
18478
18509
  export type ProjectV2RepositoriesArgs = {
@@ -25528,6 +25559,8 @@ export type RepositoryRule = Node & {
25528
25559
  /** Set of conditions that determine if a ruleset will evaluate */
25529
25560
  export type RepositoryRuleConditions = {
25530
25561
  __typename: 'RepositoryRuleConditions';
25562
+ /** Configuration for the organization_property condition */
25563
+ organizationProperty?: Maybe<OrganizationPropertyConditionTarget>;
25531
25564
  /** Configuration for the ref_name condition */
25532
25565
  refName?: Maybe<RefNameConditionTarget>;
25533
25566
  /** Configuration for the repository_id condition */
@@ -25539,6 +25572,8 @@ export type RepositoryRuleConditions = {
25539
25572
  };
25540
25573
  /** Specifies the conditions required for a ruleset to evaluate */
25541
25574
  export type RepositoryRuleConditionsInput = {
25575
+ /** Configuration for the organization_property condition */
25576
+ organizationProperty?: InputMaybe<OrganizationPropertyConditionTargetInput>;
25542
25577
  /** Configuration for the ref_name condition */
25543
25578
  refName?: InputMaybe<RefNameConditionTargetInput>;
25544
25579
  /** Configuration for the repository_id condition */
@@ -26110,6 +26145,8 @@ export type RepositoryVulnerabilityAlertConnection = {
26110
26145
  export type RepositoryVulnerabilityAlertDependencyRelationship =
26111
26146
  /** A direct dependency of your project */
26112
26147
  'DIRECT'
26148
+ /** The relationship could not be determined */
26149
+ | 'INCONCLUSIVE'
26113
26150
  /** A transitive dependency of your project */
26114
26151
  | 'TRANSITIVE'
26115
26152
  /** The relationship is unknown */
@@ -31632,14 +31669,18 @@ export type UpdateProjectV2FieldInput = {
31632
31669
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
31633
31670
  /** The ID of the field to update. */
31634
31671
  fieldId: Scalars['ID']['input'];
31635
- /** Configuration for an iteration field. */
31672
+ /**
31673
+ * Configuration for a field of type ITERATION. Empty input is ignored, provided
31674
+ * values overwrite the existing configuration, and existing configuration should
31675
+ * be fetched for partial updates.
31676
+ */
31636
31677
  iterationConfiguration?: InputMaybe<ProjectV2IterationFieldConfigurationInput>;
31637
31678
  /** The name to update. */
31638
31679
  name?: InputMaybe<Scalars['String']['input']>;
31639
31680
  /**
31640
- * Options for a field of type SINGLE_SELECT. If empty, no changes will be made
31641
- * to the options. If values are present, they will overwrite the existing
31642
- * options for the field.
31681
+ * Options for a field of type SINGLE_SELECT. Empty input is ignored, provided
31682
+ * values overwrite existing options, and existing options should be fetched for
31683
+ * partial updates.
31643
31684
  */
31644
31685
  singleSelectOptions?: InputMaybe<Array<ProjectV2SingleSelectFieldOptionInput>>;
31645
31686
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.38",
3
+ "version": "0.2.39",
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,7 +30,7 @@
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": "6.0.0",
33
+ "@graphql-codegen/cli": "6.0.1",
34
34
  "@graphql-codegen/near-operation-file-preset": "^3.0.0",
35
35
  "@graphql-codegen/typescript": "5.0.2",
36
36
  "@graphql-codegen/typescript-document-nodes": "5.0.2",