typescript-github-action-template 0.2.34 → 0.2.35
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.
|
@@ -2812,6 +2812,8 @@ export type CommitComment = Comment & Deletable & Minimizable & Node & Reactable
|
|
|
2812
2812
|
viewerCanMinimize: Scalars['Boolean']['output'];
|
|
2813
2813
|
/** Can user react to this subject */
|
|
2814
2814
|
viewerCanReact: Scalars['Boolean']['output'];
|
|
2815
|
+
/** Check if the current viewer can unminimize this object. */
|
|
2816
|
+
viewerCanUnminimize: Scalars['Boolean']['output'];
|
|
2815
2817
|
/** Check if the current viewer can update this object. */
|
|
2816
2818
|
viewerCanUpdate: Scalars['Boolean']['output'];
|
|
2817
2819
|
/** Reasons why the current viewer can not update this comment. */
|
|
@@ -5849,7 +5851,7 @@ export type Discussion = Closable & Comment & Deletable & Labelable & Lockable &
|
|
|
5849
5851
|
answerChosenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5850
5852
|
/** The user who chose this discussion's answer, if answered. */
|
|
5851
5853
|
answerChosenBy?: Maybe<Actor>;
|
|
5852
|
-
/** The actor who authored the
|
|
5854
|
+
/** The actor who authored the discussion. */
|
|
5853
5855
|
author?: Maybe<Actor>;
|
|
5854
5856
|
/** Author's association with the subject of the comment. */
|
|
5855
5857
|
authorAssociation: CommentAuthorAssociation;
|
|
@@ -6090,6 +6092,8 @@ export type DiscussionComment = Comment & Deletable & Minimizable & Node & React
|
|
|
6090
6092
|
viewerCanReact: Scalars['Boolean']['output'];
|
|
6091
6093
|
/** Can the current user unmark this comment as an answer? */
|
|
6092
6094
|
viewerCanUnmarkAsAnswer: Scalars['Boolean']['output'];
|
|
6095
|
+
/** Check if the current viewer can unminimize this object. */
|
|
6096
|
+
viewerCanUnminimize: Scalars['Boolean']['output'];
|
|
6093
6097
|
/** Check if the current viewer can update this object. */
|
|
6094
6098
|
viewerCanUpdate: Scalars['Boolean']['output'];
|
|
6095
6099
|
/** Whether or not the current user can add or remove an upvote on this subject. */
|
|
@@ -8347,6 +8351,8 @@ export type GistComment = Comment & Deletable & Minimizable & Node & Updatable &
|
|
|
8347
8351
|
viewerCanDelete: Scalars['Boolean']['output'];
|
|
8348
8352
|
/** Check if the current viewer can minimize this object. */
|
|
8349
8353
|
viewerCanMinimize: Scalars['Boolean']['output'];
|
|
8354
|
+
/** Check if the current viewer can unminimize this object. */
|
|
8355
|
+
viewerCanUnminimize: Scalars['Boolean']['output'];
|
|
8350
8356
|
/** Check if the current viewer can update this object. */
|
|
8351
8357
|
viewerCanUpdate: Scalars['Boolean']['output'];
|
|
8352
8358
|
/** Reasons why the current viewer can not update this comment. */
|
|
@@ -9249,6 +9255,8 @@ export type IssueComment = Comment & Deletable & Minimizable & Node & Reactable
|
|
|
9249
9255
|
viewerCanMinimize: Scalars['Boolean']['output'];
|
|
9250
9256
|
/** Can user react to this subject */
|
|
9251
9257
|
viewerCanReact: Scalars['Boolean']['output'];
|
|
9258
|
+
/** Check if the current viewer can unminimize this object. */
|
|
9259
|
+
viewerCanUnminimize: Scalars['Boolean']['output'];
|
|
9252
9260
|
/** Check if the current viewer can update this object. */
|
|
9253
9261
|
viewerCanUpdate: Scalars['Boolean']['output'];
|
|
9254
9262
|
/** Reasons why the current viewer can not update this comment. */
|
|
@@ -11255,6 +11263,8 @@ export type Minimizable = {
|
|
|
11255
11263
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
11256
11264
|
/** Check if the current viewer can minimize this object. */
|
|
11257
11265
|
viewerCanMinimize: Scalars['Boolean']['output'];
|
|
11266
|
+
/** Check if the current viewer can unminimize this object. */
|
|
11267
|
+
viewerCanUnminimize: Scalars['Boolean']['output'];
|
|
11258
11268
|
};
|
|
11259
11269
|
/** Autogenerated input type of MinimizeComment */
|
|
11260
11270
|
export type MinimizeCommentInput = {
|
|
@@ -11727,7 +11737,7 @@ export type Mutation = {
|
|
|
11727
11737
|
* with and without Enterprise Managed Users may use this mutation.
|
|
11728
11738
|
*/
|
|
11729
11739
|
removeEnterpriseIdentityProvider?: Maybe<RemoveEnterpriseIdentityProviderPayload>;
|
|
11730
|
-
/**
|
|
11740
|
+
/** Completely removes a user from the enterprise */
|
|
11731
11741
|
removeEnterpriseMember?: Maybe<RemoveEnterpriseMemberPayload>;
|
|
11732
11742
|
/** Removes an organization from the enterprise */
|
|
11733
11743
|
removeEnterpriseOrganization?: Maybe<RemoveEnterpriseOrganizationPayload>;
|
|
@@ -20337,6 +20347,8 @@ export type PullRequestReview = Comment & Deletable & Minimizable & Node & React
|
|
|
20337
20347
|
viewerCanMinimize: Scalars['Boolean']['output'];
|
|
20338
20348
|
/** Can user react to this subject */
|
|
20339
20349
|
viewerCanReact: Scalars['Boolean']['output'];
|
|
20350
|
+
/** Check if the current viewer can unminimize this object. */
|
|
20351
|
+
viewerCanUnminimize: Scalars['Boolean']['output'];
|
|
20340
20352
|
/** Check if the current viewer can update this object. */
|
|
20341
20353
|
viewerCanUpdate: Scalars['Boolean']['output'];
|
|
20342
20354
|
/** Reasons why the current viewer can not update this comment. */
|
|
@@ -20476,6 +20488,8 @@ export type PullRequestReviewComment = Comment & Deletable & Minimizable & Node
|
|
|
20476
20488
|
viewerCanMinimize: Scalars['Boolean']['output'];
|
|
20477
20489
|
/** Can user react to this subject */
|
|
20478
20490
|
viewerCanReact: Scalars['Boolean']['output'];
|
|
20491
|
+
/** Check if the current viewer can unminimize this object. */
|
|
20492
|
+
viewerCanUnminimize: Scalars['Boolean']['output'];
|
|
20479
20493
|
/** Check if the current viewer can update this object. */
|
|
20480
20494
|
viewerCanUpdate: Scalars['Boolean']['output'];
|
|
20481
20495
|
/** Reasons why the current viewer can not update this comment. */
|
|
@@ -25621,6 +25635,8 @@ export type RepositoryRulesetBypassActor = Node & {
|
|
|
25621
25635
|
export type RepositoryRulesetBypassActorBypassMode =
|
|
25622
25636
|
/** The actor can always bypass rules */
|
|
25623
25637
|
'ALWAYS'
|
|
25638
|
+
/** The actor is exempt from rules without generating a pass / fail result */
|
|
25639
|
+
| 'EXEMPT'
|
|
25624
25640
|
/** The actor can only bypass rules via a pull request */
|
|
25625
25641
|
| 'PULL_REQUEST';
|
|
25626
25642
|
/** The connection type for RepositoryRulesetBypassActor. */
|
|
@@ -27786,6 +27802,8 @@ export type SponsorsCountryOrRegionCode =
|
|
|
27786
27802
|
| 'SV'
|
|
27787
27803
|
/** Sint Maarten (Dutch part) */
|
|
27788
27804
|
| 'SX'
|
|
27805
|
+
/** Syria */
|
|
27806
|
+
| 'SY'
|
|
27789
27807
|
/** Swaziland */
|
|
27790
27808
|
| 'SZ'
|
|
27791
27809
|
/** Turks and Caicos Islands */
|
|
@@ -33195,7 +33213,7 @@ export type ViewerLoginQuery = {
|
|
|
33195
33213
|
};
|
|
33196
33214
|
};
|
|
33197
33215
|
export declare class TypedDocumentString<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
|
|
33198
|
-
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType']
|
|
33216
|
+
__apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
|
|
33199
33217
|
private value;
|
|
33200
33218
|
__meta__?: Record<string, any> | undefined;
|
|
33201
33219
|
constructor(value: string, __meta__?: Record<string, any> | undefined);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-github-action-template",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.35",
|
|
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": "
|
|
33
|
+
"@graphql-codegen/cli": "6.0.0",
|
|
34
34
|
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
35
|
-
"@graphql-codegen/typescript": "
|
|
36
|
-
"@graphql-codegen/typescript-document-nodes": "
|
|
35
|
+
"@graphql-codegen/typescript": "5.0.0",
|
|
36
|
+
"@graphql-codegen/typescript-document-nodes": "5.0.0",
|
|
37
37
|
"@serverless-guru/prettier-plugin-import-order": "^0.4.2",
|
|
38
38
|
"@types/node": "^24.0.0",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|