typescript-github-action-template 0.2.31 → 0.2.32
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.
|
@@ -6447,6 +6447,8 @@ export type Enterprise = Node & {
|
|
|
6447
6447
|
ruleset?: Maybe<RepositoryRuleset>;
|
|
6448
6448
|
/** A list of rulesets for this enterprise. */
|
|
6449
6449
|
rulesets?: Maybe<RepositoryRulesetConnection>;
|
|
6450
|
+
/** The enterprise's security contact email address. */
|
|
6451
|
+
securityContactEmail?: Maybe<Scalars['String']['output']>;
|
|
6450
6452
|
/** The URL-friendly identifier for the enterprise. */
|
|
6451
6453
|
slug: Scalars['String']['output'];
|
|
6452
6454
|
/** Identifies the date and time when the object was last updated. */
|
|
@@ -30979,6 +30981,8 @@ export type UpdateEnterpriseProfileInput = {
|
|
|
30979
30981
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
30980
30982
|
/** The name of the enterprise. */
|
|
30981
30983
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
30984
|
+
/** The security contact email address of the enterprise. */
|
|
30985
|
+
securityContactEmail?: InputMaybe<Scalars['String']['input']>;
|
|
30982
30986
|
/** The URL of the enterprise's website. */
|
|
30983
30987
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
30984
30988
|
};
|
package/package.json
CHANGED