typescript-github-action-template 0.2.25 → 0.2.26
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.
- package/dist/__graphql__/graphql.d.ts +58 -16
- package/package.json +3 -3
|
@@ -1291,8 +1291,6 @@ export type Bot = Actor & Node & UniformResourceLocatable & {
|
|
|
1291
1291
|
export type BotAvatarUrlArgs = {
|
|
1292
1292
|
size?: InputMaybe<Scalars['Int']['input']>;
|
|
1293
1293
|
};
|
|
1294
|
-
/** Used when either Bot or User are accepted. */
|
|
1295
|
-
export type BotOrUser = Bot | User;
|
|
1296
1294
|
/** Types which can be actors for `BranchActorAllowance` objects. */
|
|
1297
1295
|
export type BranchActorAllowanceActor = App | Team | User;
|
|
1298
1296
|
/** Parameters to be used for the branch_name_pattern rule */
|
|
@@ -3122,7 +3120,10 @@ export type ContributionOrder = {
|
|
|
3122
3120
|
/** The ordering direction. */
|
|
3123
3121
|
direction: OrderDirection;
|
|
3124
3122
|
};
|
|
3125
|
-
/**
|
|
3123
|
+
/**
|
|
3124
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3125
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3126
|
+
*/
|
|
3126
3127
|
export type ContributionsCollection = {
|
|
3127
3128
|
__typename: 'ContributionsCollection';
|
|
3128
3129
|
/** Commit contributions made by the user, grouped by repository. */
|
|
@@ -3248,11 +3249,17 @@ export type ContributionsCollection = {
|
|
|
3248
3249
|
/** The user who made the contributions in this collection. */
|
|
3249
3250
|
user: User;
|
|
3250
3251
|
};
|
|
3251
|
-
/**
|
|
3252
|
+
/**
|
|
3253
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3254
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3255
|
+
*/
|
|
3252
3256
|
export type ContributionsCollectionCommitContributionsByRepositoryArgs = {
|
|
3253
3257
|
maxRepositories?: InputMaybe<Scalars['Int']['input']>;
|
|
3254
3258
|
};
|
|
3255
|
-
/**
|
|
3259
|
+
/**
|
|
3260
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3261
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3262
|
+
*/
|
|
3256
3263
|
export type ContributionsCollectionIssueContributionsArgs = {
|
|
3257
3264
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3258
3265
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3262,13 +3269,19 @@ export type ContributionsCollectionIssueContributionsArgs = {
|
|
|
3262
3269
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3263
3270
|
orderBy?: InputMaybe<ContributionOrder>;
|
|
3264
3271
|
};
|
|
3265
|
-
/**
|
|
3272
|
+
/**
|
|
3273
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3274
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3275
|
+
*/
|
|
3266
3276
|
export type ContributionsCollectionIssueContributionsByRepositoryArgs = {
|
|
3267
3277
|
excludeFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3268
3278
|
excludePopular?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3269
3279
|
maxRepositories?: InputMaybe<Scalars['Int']['input']>;
|
|
3270
3280
|
};
|
|
3271
|
-
/**
|
|
3281
|
+
/**
|
|
3282
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3283
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3284
|
+
*/
|
|
3272
3285
|
export type ContributionsCollectionPullRequestContributionsArgs = {
|
|
3273
3286
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3274
3287
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3278,13 +3291,19 @@ export type ContributionsCollectionPullRequestContributionsArgs = {
|
|
|
3278
3291
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3279
3292
|
orderBy?: InputMaybe<ContributionOrder>;
|
|
3280
3293
|
};
|
|
3281
|
-
/**
|
|
3294
|
+
/**
|
|
3295
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3296
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3297
|
+
*/
|
|
3282
3298
|
export type ContributionsCollectionPullRequestContributionsByRepositoryArgs = {
|
|
3283
3299
|
excludeFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3284
3300
|
excludePopular?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3285
3301
|
maxRepositories?: InputMaybe<Scalars['Int']['input']>;
|
|
3286
3302
|
};
|
|
3287
|
-
/**
|
|
3303
|
+
/**
|
|
3304
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3305
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3306
|
+
*/
|
|
3288
3307
|
export type ContributionsCollectionPullRequestReviewContributionsArgs = {
|
|
3289
3308
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3290
3309
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3292,11 +3311,17 @@ export type ContributionsCollectionPullRequestReviewContributionsArgs = {
|
|
|
3292
3311
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3293
3312
|
orderBy?: InputMaybe<ContributionOrder>;
|
|
3294
3313
|
};
|
|
3295
|
-
/**
|
|
3314
|
+
/**
|
|
3315
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3316
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3317
|
+
*/
|
|
3296
3318
|
export type ContributionsCollectionPullRequestReviewContributionsByRepositoryArgs = {
|
|
3297
3319
|
maxRepositories?: InputMaybe<Scalars['Int']['input']>;
|
|
3298
3320
|
};
|
|
3299
|
-
/**
|
|
3321
|
+
/**
|
|
3322
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3323
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3324
|
+
*/
|
|
3300
3325
|
export type ContributionsCollectionRepositoryContributionsArgs = {
|
|
3301
3326
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3302
3327
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3305,27 +3330,42 @@ export type ContributionsCollectionRepositoryContributionsArgs = {
|
|
|
3305
3330
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3306
3331
|
orderBy?: InputMaybe<ContributionOrder>;
|
|
3307
3332
|
};
|
|
3308
|
-
/**
|
|
3333
|
+
/**
|
|
3334
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3335
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3336
|
+
*/
|
|
3309
3337
|
export type ContributionsCollectionTotalIssueContributionsArgs = {
|
|
3310
3338
|
excludeFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3311
3339
|
excludePopular?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3312
3340
|
};
|
|
3313
|
-
/**
|
|
3341
|
+
/**
|
|
3342
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3343
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3344
|
+
*/
|
|
3314
3345
|
export type ContributionsCollectionTotalPullRequestContributionsArgs = {
|
|
3315
3346
|
excludeFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3316
3347
|
excludePopular?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3317
3348
|
};
|
|
3318
|
-
/**
|
|
3349
|
+
/**
|
|
3350
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3351
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3352
|
+
*/
|
|
3319
3353
|
export type ContributionsCollectionTotalRepositoriesWithContributedIssuesArgs = {
|
|
3320
3354
|
excludeFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3321
3355
|
excludePopular?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3322
3356
|
};
|
|
3323
|
-
/**
|
|
3357
|
+
/**
|
|
3358
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3359
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3360
|
+
*/
|
|
3324
3361
|
export type ContributionsCollectionTotalRepositoriesWithContributedPullRequestsArgs = {
|
|
3325
3362
|
excludeFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3326
3363
|
excludePopular?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3327
3364
|
};
|
|
3328
|
-
/**
|
|
3365
|
+
/**
|
|
3366
|
+
* A collection of contributions made by a user, including opened issues, commits, and pull requests.
|
|
3367
|
+
* Contributions in private and internal repositories are only included with the optional read:user scope.
|
|
3368
|
+
*/
|
|
3329
3369
|
export type ContributionsCollectionTotalRepositoryContributionsArgs = {
|
|
3330
3370
|
excludeFirst?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3331
3371
|
};
|
|
@@ -25837,6 +25877,8 @@ export type ReprioritizeSubIssuePayload = {
|
|
|
25837
25877
|
};
|
|
25838
25878
|
/** Autogenerated input type of RequestReviews */
|
|
25839
25879
|
export type RequestReviewsInput = {
|
|
25880
|
+
/** The Node IDs of the bot to request. */
|
|
25881
|
+
botIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25840
25882
|
/** A unique identifier for the client performing the mutation. */
|
|
25841
25883
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
25842
25884
|
/** The Node ID of the pull request to modify. */
|
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.26",
|
|
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,12 +30,12 @@
|
|
|
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.
|
|
33
|
+
"@graphql-codegen/cli": "5.0.7",
|
|
34
34
|
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
35
35
|
"@graphql-codegen/typescript": "4.1.6",
|
|
36
36
|
"@graphql-codegen/typescript-document-nodes": "4.0.16",
|
|
37
37
|
"@serverless-guru/prettier-plugin-import-order": "^0.4.2",
|
|
38
|
-
"@types/node": "^
|
|
38
|
+
"@types/node": "^24.0.0",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
40
40
|
"@typescript-eslint/parser": "^8.0.0",
|
|
41
41
|
"@vercel/ncc": "^0.38.0",
|