github-schema 1.21.1 → 1.21.3
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/{github-schema-CMobN1Mg.d.cts → github-schema-MYKucXTm.d.cts} +60 -2
- package/dist/{github-schema-CpPEovOD.d.mts → github-schema-ygNht_GF.d.mts} +60 -2
- package/dist/github-schema.d.cts +2 -2
- package/dist/github-schema.d.mts +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/github-schema.graphql +94 -1
- package/package.json +2 -2
package/github-schema.graphql
CHANGED
|
@@ -1364,6 +1364,26 @@ type AddedToProjectV2Event implements Node & ProjectV2Event {
|
|
|
1364
1364
|
wasAutomated: Boolean!
|
|
1365
1365
|
}
|
|
1366
1366
|
|
|
1367
|
+
"""
|
|
1368
|
+
Copilot Agentic fields in context of the current viewer.
|
|
1369
|
+
"""
|
|
1370
|
+
interface Agentic {
|
|
1371
|
+
"""
|
|
1372
|
+
Channel value for subscribing to live updates for session creations.
|
|
1373
|
+
"""
|
|
1374
|
+
viewerCopilotAgentCreatesChannel: String
|
|
1375
|
+
|
|
1376
|
+
"""
|
|
1377
|
+
Channel value for subscribing to live updates for session log updates.
|
|
1378
|
+
"""
|
|
1379
|
+
viewerCopilotAgentLogUpdatesChannel: String
|
|
1380
|
+
|
|
1381
|
+
"""
|
|
1382
|
+
Channel value for subscribing to live updates for session updates.
|
|
1383
|
+
"""
|
|
1384
|
+
viewerCopilotAgentUpdatesChannel: String
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1367
1387
|
"""
|
|
1368
1388
|
An announcement banner for an enterprise or organization.
|
|
1369
1389
|
"""
|
|
@@ -39445,6 +39465,13 @@ type PullRequestParameters {
|
|
|
39445
39465
|
All conversations on code must be resolved before a pull request can be merged.
|
|
39446
39466
|
"""
|
|
39447
39467
|
requiredReviewThreadResolution: Boolean!
|
|
39468
|
+
|
|
39469
|
+
"""
|
|
39470
|
+
This field is in beta and subject to change. A collection of reviewers and
|
|
39471
|
+
associated file patterns. Each reviewer has a list of file patterns which
|
|
39472
|
+
determine the files that reviewer is required to review.
|
|
39473
|
+
"""
|
|
39474
|
+
requiredReviewers: [RequiredReviewerConfiguration!]
|
|
39448
39475
|
}
|
|
39449
39476
|
|
|
39450
39477
|
"""
|
|
@@ -39486,6 +39513,13 @@ input PullRequestParametersInput {
|
|
|
39486
39513
|
All conversations on code must be resolved before a pull request can be merged.
|
|
39487
39514
|
"""
|
|
39488
39515
|
requiredReviewThreadResolution: Boolean!
|
|
39516
|
+
|
|
39517
|
+
"""
|
|
39518
|
+
This argument is in beta and subject to change. A collection of reviewers and
|
|
39519
|
+
associated file patterns. Each reviewer has a list of file patterns which
|
|
39520
|
+
determine the files that reviewer is required to review.
|
|
39521
|
+
"""
|
|
39522
|
+
requiredReviewers: [RequiredReviewerConfigurationInput!]
|
|
39489
39523
|
}
|
|
39490
39524
|
|
|
39491
39525
|
"""
|
|
@@ -50791,6 +50825,50 @@ input RequiredDeploymentsParametersInput {
|
|
|
50791
50825
|
requiredDeploymentEnvironments: [String!]!
|
|
50792
50826
|
}
|
|
50793
50827
|
|
|
50828
|
+
"""
|
|
50829
|
+
A reviewing team, and file patterns describing which files they must approve changes to.
|
|
50830
|
+
"""
|
|
50831
|
+
type RequiredReviewerConfiguration {
|
|
50832
|
+
"""
|
|
50833
|
+
Array of file patterns. Pull requests which change matching files must be
|
|
50834
|
+
approved by the specified team. File patterns use fnmatch syntax.
|
|
50835
|
+
"""
|
|
50836
|
+
filePatterns: [String!]!
|
|
50837
|
+
|
|
50838
|
+
"""
|
|
50839
|
+
Minimum number of approvals required from the specified team. If set to zero,
|
|
50840
|
+
the team will be added to the pull request but approval is optional.
|
|
50841
|
+
"""
|
|
50842
|
+
minimumApprovals: Int!
|
|
50843
|
+
|
|
50844
|
+
"""
|
|
50845
|
+
Node ID of the team which must review changes to matching files.
|
|
50846
|
+
"""
|
|
50847
|
+
reviewerId: ID!
|
|
50848
|
+
}
|
|
50849
|
+
|
|
50850
|
+
"""
|
|
50851
|
+
A reviewing team, and file patterns describing which files they must approve changes to.
|
|
50852
|
+
"""
|
|
50853
|
+
input RequiredReviewerConfigurationInput {
|
|
50854
|
+
"""
|
|
50855
|
+
Array of file patterns. Pull requests which change matching files must be
|
|
50856
|
+
approved by the specified team. File patterns use fnmatch syntax.
|
|
50857
|
+
"""
|
|
50858
|
+
filePatterns: [String!]!
|
|
50859
|
+
|
|
50860
|
+
"""
|
|
50861
|
+
Minimum number of approvals required from the specified team. If set to zero,
|
|
50862
|
+
the team will be added to the pull request but approval is optional.
|
|
50863
|
+
"""
|
|
50864
|
+
minimumApprovals: Int!
|
|
50865
|
+
|
|
50866
|
+
"""
|
|
50867
|
+
Node ID of the team which must review changes to matching files.
|
|
50868
|
+
"""
|
|
50869
|
+
reviewerId: ID!
|
|
50870
|
+
}
|
|
50871
|
+
|
|
50794
50872
|
"""
|
|
50795
50873
|
Represents a required status check for a protected branch, but not any specific run of that check.
|
|
50796
50874
|
"""
|
|
@@ -63160,7 +63238,7 @@ type UpdateUserListsForItemPayload {
|
|
|
63160
63238
|
"""
|
|
63161
63239
|
A user is an individual's account on GitHub that owns repositories and can make new content.
|
|
63162
63240
|
"""
|
|
63163
|
-
type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
|
|
63241
|
+
type User implements Actor & Agentic & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable {
|
|
63164
63242
|
"""
|
|
63165
63243
|
Determine if this repository owner has any items that can be pinned to their profile.
|
|
63166
63244
|
"""
|
|
@@ -64758,6 +64836,21 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
|
|
64758
64836
|
"""
|
|
64759
64837
|
viewerCanSponsor: Boolean!
|
|
64760
64838
|
|
|
64839
|
+
"""
|
|
64840
|
+
Channel value for subscribing to live updates for session creations.
|
|
64841
|
+
"""
|
|
64842
|
+
viewerCopilotAgentCreatesChannel: String
|
|
64843
|
+
|
|
64844
|
+
"""
|
|
64845
|
+
Channel value for subscribing to live updates for session log updates.
|
|
64846
|
+
"""
|
|
64847
|
+
viewerCopilotAgentLogUpdatesChannel: String
|
|
64848
|
+
|
|
64849
|
+
"""
|
|
64850
|
+
Channel value for subscribing to live updates for session updates.
|
|
64851
|
+
"""
|
|
64852
|
+
viewerCopilotAgentUpdatesChannel: String
|
|
64853
|
+
|
|
64761
64854
|
"""
|
|
64762
64855
|
Whether or not this user is followed by the viewer. Inverse of isFollowingViewer.
|
|
64763
64856
|
"""
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-schema",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.3",
|
|
4
4
|
"description": "GitHub's GraphQL schema",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@graphql-codegen/cli": "6.0.1",
|
|
59
59
|
"@graphql-codegen/typescript": "5.0.2",
|
|
60
60
|
"@luxass/eslint-config": "6.0.1",
|
|
61
|
-
"@types/node": "24.
|
|
61
|
+
"@types/node": "24.10.0",
|
|
62
62
|
"eslint": "9.39.1",
|
|
63
63
|
"eslint-plugin-format": "1.0.2",
|
|
64
64
|
"publint": "0.3.15",
|