typescript-github-action-template 0.2.26 → 0.2.28
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.
|
@@ -2287,7 +2287,10 @@ export type ClosedEvent = Node & UniformResourceLocatable & {
|
|
|
2287
2287
|
id: Scalars['ID']['output'];
|
|
2288
2288
|
/** The HTTP path for this closed event. */
|
|
2289
2289
|
resourcePath: Scalars['URI']['output'];
|
|
2290
|
-
/**
|
|
2290
|
+
/**
|
|
2291
|
+
* The reason the issue state was changed to closed.
|
|
2292
|
+
* @deprecated The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
|
|
2293
|
+
*/
|
|
2291
2294
|
stateReason?: Maybe<IssueStateReason>;
|
|
2292
2295
|
/** The HTTP URL for this closed event. */
|
|
2293
2296
|
url: Scalars['URI']['output'];
|
|
@@ -8867,7 +8870,10 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
|
|
|
8867
8870
|
resourcePath: Scalars['URI']['output'];
|
|
8868
8871
|
/** Identifies the state of the issue. */
|
|
8869
8872
|
state: IssueState;
|
|
8870
|
-
/**
|
|
8873
|
+
/**
|
|
8874
|
+
* Identifies the reason for the issue state.
|
|
8875
|
+
* @deprecated The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
|
|
8876
|
+
*/
|
|
8871
8877
|
stateReason?: Maybe<IssueStateReason>;
|
|
8872
8878
|
/** A list of sub-issues associated with the Issue. */
|
|
8873
8879
|
subIssues: IssueConnection;
|
|
@@ -9307,10 +9313,7 @@ export type IssueState =
|
|
|
9307
9313
|
export type IssueStateReason =
|
|
9308
9314
|
/** An issue that has been closed as completed */
|
|
9309
9315
|
'COMPLETED'
|
|
9310
|
-
/**
|
|
9311
|
-
* An issue that has been closed as a duplicate. To retrieve this value, set
|
|
9312
|
-
* `(enableDuplicate: true)` when querying the stateReason field.
|
|
9313
|
-
*/
|
|
9316
|
+
/** An issue that has been closed as a duplicate. */
|
|
9314
9317
|
| 'DUPLICATE'
|
|
9315
9318
|
/** An issue that has been closed as not planned */
|
|
9316
9319
|
| 'NOT_PLANNED'
|
|
@@ -9969,6 +9972,8 @@ export type Mannequin = Actor & Node & UniformResourceLocatable & {
|
|
|
9969
9972
|
id: Scalars['ID']['output'];
|
|
9970
9973
|
/** The username of the actor. */
|
|
9971
9974
|
login: Scalars['String']['output'];
|
|
9975
|
+
/** The display name of the imported mannequin. */
|
|
9976
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9972
9977
|
/** The HTML path to this resource. */
|
|
9973
9978
|
resourcePath: Scalars['URI']['output'];
|
|
9974
9979
|
/** Identifies the date and time when the object was last updated. */
|
package/package.json
CHANGED