github-schema 1.10.5 → 1.11.1
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.d.cts +116 -64
- package/dist/github-schema.d.ts +116 -64
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +215 -35
- package/package.json +6 -6
package/github-schema.graphql
CHANGED
|
@@ -1195,6 +1195,11 @@ interface AnnouncementBanner {
|
|
|
1195
1195
|
A GitHub App.
|
|
1196
1196
|
"""
|
|
1197
1197
|
type App implements Node {
|
|
1198
|
+
"""
|
|
1199
|
+
The client ID of the app.
|
|
1200
|
+
"""
|
|
1201
|
+
clientId: String
|
|
1202
|
+
|
|
1198
1203
|
"""
|
|
1199
1204
|
Identifies the date and time when the object was created.
|
|
1200
1205
|
"""
|
|
@@ -12797,6 +12802,10 @@ type Enterprise implements AnnouncementBanner & Node {
|
|
|
12797
12802
|
"""
|
|
12798
12803
|
Only return members with this two-factor authentication status. Does not
|
|
12799
12804
|
include members who only have an account on a GitHub Enterprise Server instance.
|
|
12805
|
+
|
|
12806
|
+
**Upcoming Change on 2025-04-01 UTC**
|
|
12807
|
+
**Description:** `hasTwoFactorEnabled` will be removed. Use `two_factor_method_security` instead.
|
|
12808
|
+
**Reason:** `has_two_factor_enabled` will be removed.
|
|
12800
12809
|
"""
|
|
12801
12810
|
hasTwoFactorEnabled: Boolean = null
|
|
12802
12811
|
|
|
@@ -12824,6 +12833,12 @@ type Enterprise implements AnnouncementBanner & Node {
|
|
|
12824
12833
|
The role of the user in the enterprise organization or server.
|
|
12825
12834
|
"""
|
|
12826
12835
|
role: EnterpriseUserAccountMembershipRole
|
|
12836
|
+
|
|
12837
|
+
"""
|
|
12838
|
+
Only return members with this type of two-factor authentication method. Does
|
|
12839
|
+
not include members who only have an account on a GitHub Enterprise Server instance.
|
|
12840
|
+
"""
|
|
12841
|
+
twoFactorMethodSecurity: TwoFactorCredentialSecurityType = null
|
|
12827
12842
|
): EnterpriseMemberConnection!
|
|
12828
12843
|
|
|
12829
12844
|
"""
|
|
@@ -13243,6 +13258,21 @@ enum EnterpriseDefaultRepositoryPermissionSettingValue {
|
|
|
13243
13258
|
WRITE
|
|
13244
13259
|
}
|
|
13245
13260
|
|
|
13261
|
+
"""
|
|
13262
|
+
The possible values for an enabled/no policy enterprise setting.
|
|
13263
|
+
"""
|
|
13264
|
+
enum EnterpriseDisallowedMethodsSettingValue {
|
|
13265
|
+
"""
|
|
13266
|
+
The setting prevents insecure 2FA methods from being used by members of the enterprise.
|
|
13267
|
+
"""
|
|
13268
|
+
INSECURE
|
|
13269
|
+
|
|
13270
|
+
"""
|
|
13271
|
+
There is no policy set for preventing insecure 2FA methods from being used by members of the enterprise.
|
|
13272
|
+
"""
|
|
13273
|
+
NO_POLICY
|
|
13274
|
+
}
|
|
13275
|
+
|
|
13246
13276
|
"""
|
|
13247
13277
|
An edge in a connection.
|
|
13248
13278
|
"""
|
|
@@ -13836,6 +13866,10 @@ type EnterpriseOwnerInfo {
|
|
|
13836
13866
|
|
|
13837
13867
|
"""
|
|
13838
13868
|
Only return administrators with this two-factor authentication status.
|
|
13869
|
+
|
|
13870
|
+
**Upcoming Change on 2025-04-01 UTC**
|
|
13871
|
+
**Description:** `hasTwoFactorEnabled` will be removed. Use `two_factor_method_security` instead.
|
|
13872
|
+
**Reason:** `has_two_factor_enabled` will be removed.
|
|
13839
13873
|
"""
|
|
13840
13874
|
hasTwoFactorEnabled: Boolean = null
|
|
13841
13875
|
|
|
@@ -13863,6 +13897,11 @@ type EnterpriseOwnerInfo {
|
|
|
13863
13897
|
The role to filter by.
|
|
13864
13898
|
"""
|
|
13865
13899
|
role: EnterpriseAdministratorRole
|
|
13900
|
+
|
|
13901
|
+
"""
|
|
13902
|
+
Only return outside collaborators with this type of two-factor authentication method.
|
|
13903
|
+
"""
|
|
13904
|
+
twoFactorMethodSecurity: TwoFactorCredentialSecurityType = null
|
|
13866
13905
|
): EnterpriseAdministratorConnection!
|
|
13867
13906
|
|
|
13868
13907
|
"""
|
|
@@ -14510,6 +14549,10 @@ type EnterpriseOwnerInfo {
|
|
|
14510
14549
|
|
|
14511
14550
|
"""
|
|
14512
14551
|
Only return outside collaborators with this two-factor authentication status.
|
|
14552
|
+
|
|
14553
|
+
**Upcoming Change on 2025-04-01 UTC**
|
|
14554
|
+
**Description:** `hasTwoFactorEnabled` will be removed. Use `two_factor_method_security` instead.
|
|
14555
|
+
**Reason:** `has_two_factor_enabled` will be removed.
|
|
14513
14556
|
"""
|
|
14514
14557
|
hasTwoFactorEnabled: Boolean = null
|
|
14515
14558
|
|
|
@@ -14538,6 +14581,11 @@ type EnterpriseOwnerInfo {
|
|
|
14538
14581
|
"""
|
|
14539
14582
|
query: String
|
|
14540
14583
|
|
|
14584
|
+
"""
|
|
14585
|
+
Only return outside collaborators with this type of two-factor authentication method.
|
|
14586
|
+
"""
|
|
14587
|
+
twoFactorMethodSecurity: TwoFactorCredentialSecurityType = null
|
|
14588
|
+
|
|
14541
14589
|
"""
|
|
14542
14590
|
Only return outside collaborators on repositories with this visibility.
|
|
14543
14591
|
"""
|
|
@@ -14844,6 +14892,11 @@ type EnterpriseOwnerInfo {
|
|
|
14844
14892
|
value: Boolean!
|
|
14845
14893
|
): OrganizationConnection!
|
|
14846
14894
|
|
|
14895
|
+
"""
|
|
14896
|
+
The setting value for what methods of two-factor authentication the enterprise prevents its users from having.
|
|
14897
|
+
"""
|
|
14898
|
+
twoFactorDisallowedMethodsSetting: EnterpriseDisallowedMethodsSettingValue!
|
|
14899
|
+
|
|
14847
14900
|
"""
|
|
14848
14901
|
The setting value for whether the enterprise requires two-factor authentication for its organizations and users.
|
|
14849
14902
|
"""
|
|
@@ -16231,8 +16284,7 @@ input FileDeletion {
|
|
|
16231
16284
|
}
|
|
16232
16285
|
|
|
16233
16286
|
"""
|
|
16234
|
-
Prevent commits that include files with specified file extensions from being
|
|
16235
|
-
pushed to the commit graph. NOTE: This rule is in beta and subject to change
|
|
16287
|
+
Prevent commits that include files with specified file extensions from being pushed to the commit graph.
|
|
16236
16288
|
"""
|
|
16237
16289
|
type FileExtensionRestrictionParameters {
|
|
16238
16290
|
"""
|
|
@@ -16242,8 +16294,7 @@ type FileExtensionRestrictionParameters {
|
|
|
16242
16294
|
}
|
|
16243
16295
|
|
|
16244
16296
|
"""
|
|
16245
|
-
Prevent commits that include files with specified file extensions from being
|
|
16246
|
-
pushed to the commit graph. NOTE: This rule is in beta and subject to change
|
|
16297
|
+
Prevent commits that include files with specified file extensions from being pushed to the commit graph.
|
|
16247
16298
|
"""
|
|
16248
16299
|
input FileExtensionRestrictionParametersInput {
|
|
16249
16300
|
"""
|
|
@@ -16253,8 +16304,7 @@ input FileExtensionRestrictionParametersInput {
|
|
|
16253
16304
|
}
|
|
16254
16305
|
|
|
16255
16306
|
"""
|
|
16256
|
-
Prevent commits that include changes in specified file paths from being pushed
|
|
16257
|
-
to the commit graph. NOTE: This rule is in beta and subject to change
|
|
16307
|
+
Prevent commits that include changes in specified file paths from being pushed to the commit graph.
|
|
16258
16308
|
"""
|
|
16259
16309
|
type FilePathRestrictionParameters {
|
|
16260
16310
|
"""
|
|
@@ -16264,8 +16314,7 @@ type FilePathRestrictionParameters {
|
|
|
16264
16314
|
}
|
|
16265
16315
|
|
|
16266
16316
|
"""
|
|
16267
|
-
Prevent commits that include changes in specified file paths from being pushed
|
|
16268
|
-
to the commit graph. NOTE: This rule is in beta and subject to change
|
|
16317
|
+
Prevent commits that include changes in specified file paths from being pushed to the commit graph.
|
|
16269
16318
|
"""
|
|
16270
16319
|
input FilePathRestrictionParametersInput {
|
|
16271
16320
|
"""
|
|
@@ -18602,6 +18651,11 @@ enum IssueClosedStateReason {
|
|
|
18602
18651
|
"""
|
|
18603
18652
|
COMPLETED
|
|
18604
18653
|
|
|
18654
|
+
"""
|
|
18655
|
+
An issue that has been closed as a duplicate
|
|
18656
|
+
"""
|
|
18657
|
+
DUPLICATE
|
|
18658
|
+
|
|
18605
18659
|
"""
|
|
18606
18660
|
An issue that has been closed as not planned
|
|
18607
18661
|
"""
|
|
@@ -19085,6 +19139,11 @@ enum IssueStateReason {
|
|
|
19085
19139
|
"""
|
|
19086
19140
|
COMPLETED
|
|
19087
19141
|
|
|
19142
|
+
"""
|
|
19143
|
+
An issue that has been closed as a duplicate
|
|
19144
|
+
"""
|
|
19145
|
+
DUPLICATE
|
|
19146
|
+
|
|
19088
19147
|
"""
|
|
19089
19148
|
An issue that has been closed as not planned
|
|
19090
19149
|
"""
|
|
@@ -20944,8 +21003,7 @@ type MarketplaceListingEdge {
|
|
|
20944
21003
|
}
|
|
20945
21004
|
|
|
20946
21005
|
"""
|
|
20947
|
-
Prevent commits that include file paths that exceed a specified character limit
|
|
20948
|
-
from being pushed to the commit graph. NOTE: This rule is in beta and subject to change
|
|
21006
|
+
Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
|
|
20949
21007
|
"""
|
|
20950
21008
|
type MaxFilePathLengthParameters {
|
|
20951
21009
|
"""
|
|
@@ -20955,8 +21013,7 @@ type MaxFilePathLengthParameters {
|
|
|
20955
21013
|
}
|
|
20956
21014
|
|
|
20957
21015
|
"""
|
|
20958
|
-
Prevent commits that include file paths that exceed a specified character limit
|
|
20959
|
-
from being pushed to the commit graph. NOTE: This rule is in beta and subject to change
|
|
21016
|
+
Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
|
|
20960
21017
|
"""
|
|
20961
21018
|
input MaxFilePathLengthParametersInput {
|
|
20962
21019
|
"""
|
|
@@ -20966,8 +21023,7 @@ input MaxFilePathLengthParametersInput {
|
|
|
20966
21023
|
}
|
|
20967
21024
|
|
|
20968
21025
|
"""
|
|
20969
|
-
Prevent commits that exceed a specified file size limit from being pushed to the
|
|
20970
|
-
commit. NOTE: This rule is in beta and subject to change
|
|
21026
|
+
Prevent commits that exceed a specified file size limit from being pushed to the commit.
|
|
20971
21027
|
"""
|
|
20972
21028
|
type MaxFileSizeParameters {
|
|
20973
21029
|
"""
|
|
@@ -20977,8 +21033,7 @@ type MaxFileSizeParameters {
|
|
|
20977
21033
|
}
|
|
20978
21034
|
|
|
20979
21035
|
"""
|
|
20980
|
-
Prevent commits that exceed a specified file size limit from being pushed to the
|
|
20981
|
-
commit. NOTE: This rule is in beta and subject to change
|
|
21036
|
+
Prevent commits that exceed a specified file size limit from being pushed to the commit.
|
|
20982
21037
|
"""
|
|
20983
21038
|
input MaxFileSizeParametersInput {
|
|
20984
21039
|
"""
|
|
@@ -24757,6 +24812,16 @@ type Mutation {
|
|
|
24757
24812
|
input: UpdateEnterpriseTeamDiscussionsSettingInput!
|
|
24758
24813
|
): UpdateEnterpriseTeamDiscussionsSettingPayload
|
|
24759
24814
|
|
|
24815
|
+
"""
|
|
24816
|
+
Sets the two-factor authentication methods that users of an enterprise may not use.
|
|
24817
|
+
"""
|
|
24818
|
+
updateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting(
|
|
24819
|
+
"""
|
|
24820
|
+
Parameters for UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting
|
|
24821
|
+
"""
|
|
24822
|
+
input: UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput!
|
|
24823
|
+
): UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingPayload
|
|
24824
|
+
|
|
24760
24825
|
"""
|
|
24761
24826
|
Sets whether two factor authentication is required for all users in an enterprise.
|
|
24762
24827
|
"""
|
|
@@ -29763,6 +29828,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
|
|
|
29763
29828
|
The ID of the ruleset to be returned.
|
|
29764
29829
|
"""
|
|
29765
29830
|
databaseId: Int!
|
|
29831
|
+
|
|
29832
|
+
"""
|
|
29833
|
+
Include rulesets configured at higher levels that apply to this organization.
|
|
29834
|
+
"""
|
|
29835
|
+
includeParents: Boolean = true
|
|
29766
29836
|
): RepositoryRuleset
|
|
29767
29837
|
|
|
29768
29838
|
"""
|
|
@@ -29793,6 +29863,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
|
|
|
29793
29863
|
Returns the last _n_ elements from the list.
|
|
29794
29864
|
"""
|
|
29795
29865
|
last: Int
|
|
29866
|
+
|
|
29867
|
+
"""
|
|
29868
|
+
Return rulesets that apply to the specified target
|
|
29869
|
+
"""
|
|
29870
|
+
targets: [RepositoryRulesetTarget!] = null
|
|
29796
29871
|
): RepositoryRulesetConnection
|
|
29797
29872
|
|
|
29798
29873
|
"""
|
|
@@ -33295,7 +33370,7 @@ type ProjectV2 implements Closable & Node & Updatable {
|
|
|
33295
33370
|
"""
|
|
33296
33371
|
Identifies the primary key from the database.
|
|
33297
33372
|
"""
|
|
33298
|
-
databaseId: Int
|
|
33373
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2025-04-01 UTC.")
|
|
33299
33374
|
|
|
33300
33375
|
"""
|
|
33301
33376
|
A field of the project
|
|
@@ -33337,6 +33412,11 @@ type ProjectV2 implements Closable & Node & Updatable {
|
|
|
33337
33412
|
orderBy: ProjectV2FieldOrder = {field: POSITION, direction: ASC}
|
|
33338
33413
|
): ProjectV2FieldConfigurationConnection!
|
|
33339
33414
|
|
|
33415
|
+
"""
|
|
33416
|
+
Identifies the primary key from the database as a BigInt.
|
|
33417
|
+
"""
|
|
33418
|
+
fullDatabaseId: BigInt
|
|
33419
|
+
|
|
33340
33420
|
"""
|
|
33341
33421
|
The Node ID of the ProjectV2 object
|
|
33342
33422
|
"""
|
|
@@ -34075,7 +34155,7 @@ type ProjectV2Item implements Node {
|
|
|
34075
34155
|
"""
|
|
34076
34156
|
Identifies the primary key from the database.
|
|
34077
34157
|
"""
|
|
34078
|
-
databaseId: Int
|
|
34158
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2025-04-01 UTC.")
|
|
34079
34159
|
|
|
34080
34160
|
"""
|
|
34081
34161
|
The field value of the first project field which matches the 'name' argument that is set on the item.
|
|
@@ -35390,7 +35470,12 @@ type ProjectV2StatusUpdate implements Node {
|
|
|
35390
35470
|
"""
|
|
35391
35471
|
Identifies the primary key from the database.
|
|
35392
35472
|
"""
|
|
35393
|
-
databaseId: Int
|
|
35473
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2025-04-01 UTC.")
|
|
35474
|
+
|
|
35475
|
+
"""
|
|
35476
|
+
Identifies the primary key from the database as a BigInt.
|
|
35477
|
+
"""
|
|
35478
|
+
fullDatabaseId: BigInt
|
|
35394
35479
|
|
|
35395
35480
|
"""
|
|
35396
35481
|
The Node ID of the ProjectV2StatusUpdate object
|
|
@@ -35515,7 +35600,7 @@ type ProjectV2View implements Node {
|
|
|
35515
35600
|
"""
|
|
35516
35601
|
Identifies the primary key from the database.
|
|
35517
35602
|
"""
|
|
35518
|
-
databaseId: Int
|
|
35603
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2025-04-01 UTC.")
|
|
35519
35604
|
|
|
35520
35605
|
"""
|
|
35521
35606
|
The view's visible fields.
|
|
@@ -35552,6 +35637,11 @@ type ProjectV2View implements Node {
|
|
|
35552
35637
|
"""
|
|
35553
35638
|
filter: String
|
|
35554
35639
|
|
|
35640
|
+
"""
|
|
35641
|
+
Identifies the primary key from the database as a BigInt.
|
|
35642
|
+
"""
|
|
35643
|
+
fullDatabaseId: BigInt
|
|
35644
|
+
|
|
35555
35645
|
"""
|
|
35556
35646
|
The view's group-by field.
|
|
35557
35647
|
"""
|
|
@@ -35890,13 +35980,18 @@ type ProjectV2Workflow implements Node {
|
|
|
35890
35980
|
"""
|
|
35891
35981
|
Identifies the primary key from the database.
|
|
35892
35982
|
"""
|
|
35893
|
-
databaseId: Int
|
|
35983
|
+
databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2025-04-01 UTC.")
|
|
35894
35984
|
|
|
35895
35985
|
"""
|
|
35896
35986
|
Whether the workflow is enabled.
|
|
35897
35987
|
"""
|
|
35898
35988
|
enabled: Boolean!
|
|
35899
35989
|
|
|
35990
|
+
"""
|
|
35991
|
+
Identifies the primary key from the database as a BigInt.
|
|
35992
|
+
"""
|
|
35993
|
+
fullDatabaseId: BigInt
|
|
35994
|
+
|
|
35900
35995
|
"""
|
|
35901
35996
|
The Node ID of the ProjectV2Workflow object
|
|
35902
35997
|
"""
|
|
@@ -36276,7 +36371,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
|
|
36276
36371
|
closedAt: DateTime
|
|
36277
36372
|
|
|
36278
36373
|
"""
|
|
36279
|
-
List of issues that
|
|
36374
|
+
List of issues that may be closed by this pull request
|
|
36280
36375
|
"""
|
|
36281
36376
|
closingIssuesReferences(
|
|
36282
36377
|
"""
|
|
@@ -39242,7 +39337,7 @@ type PushAllowanceEdge {
|
|
|
39242
39337
|
"""
|
|
39243
39338
|
The query root of GitHub's GraphQL interface.
|
|
39244
39339
|
"""
|
|
39245
|
-
type Query {
|
|
39340
|
+
type Query implements Node {
|
|
39246
39341
|
"""
|
|
39247
39342
|
Look up a code of conduct by its key
|
|
39248
39343
|
"""
|
|
@@ -39328,6 +39423,11 @@ type Query {
|
|
|
39328
39423
|
invitationToken: String!
|
|
39329
39424
|
): EnterpriseMemberInvitation
|
|
39330
39425
|
|
|
39426
|
+
"""
|
|
39427
|
+
ID of the object.
|
|
39428
|
+
"""
|
|
39429
|
+
id: ID!
|
|
39430
|
+
|
|
39331
39431
|
"""
|
|
39332
39432
|
Look up an open source license by its key
|
|
39333
39433
|
"""
|
|
@@ -45661,6 +45761,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
45661
45761
|
Returns the last _n_ elements from the list.
|
|
45662
45762
|
"""
|
|
45663
45763
|
last: Int
|
|
45764
|
+
|
|
45765
|
+
"""
|
|
45766
|
+
Return rulesets that apply to the specified target
|
|
45767
|
+
"""
|
|
45768
|
+
targets: [RepositoryRulesetTarget!] = null
|
|
45664
45769
|
): RepositoryRulesetConnection
|
|
45665
45770
|
|
|
45666
45771
|
"""
|
|
@@ -47362,14 +47467,12 @@ enum RepositoryRuleType {
|
|
|
47362
47467
|
DELETION
|
|
47363
47468
|
|
|
47364
47469
|
"""
|
|
47365
|
-
Prevent commits that include files with specified file extensions from being
|
|
47366
|
-
pushed to the commit graph. NOTE: This rule is in beta and subject to change
|
|
47470
|
+
Prevent commits that include files with specified file extensions from being pushed to the commit graph.
|
|
47367
47471
|
"""
|
|
47368
47472
|
FILE_EXTENSION_RESTRICTION
|
|
47369
47473
|
|
|
47370
47474
|
"""
|
|
47371
|
-
Prevent commits that include changes in specified file paths from being pushed
|
|
47372
|
-
to the commit graph. NOTE: This rule is in beta and subject to change
|
|
47475
|
+
Prevent commits that include changes in specified file paths from being pushed to the commit graph.
|
|
47373
47476
|
"""
|
|
47374
47477
|
FILE_PATH_RESTRICTION
|
|
47375
47478
|
|
|
@@ -47379,15 +47482,12 @@ enum RepositoryRuleType {
|
|
|
47379
47482
|
LOCK_BRANCH
|
|
47380
47483
|
|
|
47381
47484
|
"""
|
|
47382
|
-
Prevent commits that include file paths that exceed a specified character
|
|
47383
|
-
limit from being pushed to the commit graph. NOTE: This rule is in beta and
|
|
47384
|
-
subject to change
|
|
47485
|
+
Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
|
|
47385
47486
|
"""
|
|
47386
47487
|
MAX_FILE_PATH_LENGTH
|
|
47387
47488
|
|
|
47388
47489
|
"""
|
|
47389
|
-
Prevent commits that exceed a specified file size limit from being pushed to
|
|
47390
|
-
the commit. NOTE: This rule is in beta and subject to change
|
|
47490
|
+
Prevent commits that exceed a specified file size limit from being pushed to the commit.
|
|
47391
47491
|
"""
|
|
47392
47492
|
MAX_FILE_SIZE
|
|
47393
47493
|
|
|
@@ -47604,6 +47704,11 @@ type RepositoryRulesetBypassActor implements Node {
|
|
|
47604
47704
|
"""
|
|
47605
47705
|
deployKey: Boolean!
|
|
47606
47706
|
|
|
47707
|
+
"""
|
|
47708
|
+
This actor represents the ability for an enterprise owner to bypass
|
|
47709
|
+
"""
|
|
47710
|
+
enterpriseOwner: Boolean!
|
|
47711
|
+
|
|
47607
47712
|
"""
|
|
47608
47713
|
The Node ID of the RepositoryRulesetBypassActor object
|
|
47609
47714
|
"""
|
|
@@ -47706,6 +47811,11 @@ input RepositoryRulesetBypassActorInput {
|
|
|
47706
47811
|
"""
|
|
47707
47812
|
deployKey: Boolean
|
|
47708
47813
|
|
|
47814
|
+
"""
|
|
47815
|
+
For enterprise owner bypasses, true
|
|
47816
|
+
"""
|
|
47817
|
+
enterpriseOwner: Boolean
|
|
47818
|
+
|
|
47709
47819
|
"""
|
|
47710
47820
|
For organization owner bypasses, true
|
|
47711
47821
|
"""
|
|
@@ -47758,7 +47868,7 @@ type RepositoryRulesetEdge {
|
|
|
47758
47868
|
}
|
|
47759
47869
|
|
|
47760
47870
|
"""
|
|
47761
|
-
The targets supported for rulesets.
|
|
47871
|
+
The targets supported for rulesets.
|
|
47762
47872
|
"""
|
|
47763
47873
|
enum RepositoryRulesetTarget {
|
|
47764
47874
|
"""
|
|
@@ -49192,7 +49302,7 @@ input RuleParametersInput {
|
|
|
49192
49302
|
"""
|
|
49193
49303
|
Types which can have `RepositoryRule` objects.
|
|
49194
49304
|
"""
|
|
49195
|
-
union RuleSource = Organization | Repository
|
|
49305
|
+
union RuleSource = Enterprise | Organization | Repository
|
|
49196
49306
|
|
|
49197
49307
|
"""
|
|
49198
49308
|
The possible digest algorithms used to sign SAML requests for an identity provider.
|
|
@@ -49468,7 +49578,7 @@ type SecurityAdvisory implements Node {
|
|
|
49468
49578
|
"""
|
|
49469
49579
|
The CVSS associated with this advisory
|
|
49470
49580
|
"""
|
|
49471
|
-
cvss: CVSS!
|
|
49581
|
+
cvss: CVSS! @deprecated(reason: "`cvss` will be removed. New `cvss_severities` field will now contain both `cvss_v3` and `cvss_v4` properties. Removal on 2025-10-01 UTC.")
|
|
49472
49582
|
|
|
49473
49583
|
"""
|
|
49474
49584
|
CWEs associated with this Advisory
|
|
@@ -49800,6 +49910,16 @@ input SecurityAdvisoryOrder {
|
|
|
49800
49910
|
Properties by which security advisory connections can be ordered.
|
|
49801
49911
|
"""
|
|
49802
49912
|
enum SecurityAdvisoryOrderField {
|
|
49913
|
+
"""
|
|
49914
|
+
Order advisories by EPSS percentage
|
|
49915
|
+
"""
|
|
49916
|
+
EPSS_PERCENTAGE
|
|
49917
|
+
|
|
49918
|
+
"""
|
|
49919
|
+
Order advisories by EPSS percentile
|
|
49920
|
+
"""
|
|
49921
|
+
EPSS_PERCENTILE
|
|
49922
|
+
|
|
49803
49923
|
"""
|
|
49804
49924
|
Order advisories by publication time
|
|
49805
49925
|
"""
|
|
@@ -56808,6 +56928,26 @@ type TreeEntry {
|
|
|
56808
56928
|
type: String!
|
|
56809
56929
|
}
|
|
56810
56930
|
|
|
56931
|
+
"""
|
|
56932
|
+
Filters by whether or not 2FA is enabled and if the method configured is considered secure or insecure.
|
|
56933
|
+
"""
|
|
56934
|
+
enum TwoFactorCredentialSecurityType {
|
|
56935
|
+
"""
|
|
56936
|
+
No method of two-factor authentication.
|
|
56937
|
+
"""
|
|
56938
|
+
DISABLED
|
|
56939
|
+
|
|
56940
|
+
"""
|
|
56941
|
+
Has an insecure method of two-factor authentication. GitHub currently defines this as SMS two-factor authentication.
|
|
56942
|
+
"""
|
|
56943
|
+
INSECURE
|
|
56944
|
+
|
|
56945
|
+
"""
|
|
56946
|
+
Has only secure methods of two-factor authentication.
|
|
56947
|
+
"""
|
|
56948
|
+
SECURE
|
|
56949
|
+
}
|
|
56950
|
+
|
|
56811
56951
|
"""
|
|
56812
56952
|
An RFC 3986, RFC 3987, and RFC 6570 (level 4) compliant URI string.
|
|
56813
56953
|
"""
|
|
@@ -58626,6 +58766,46 @@ type UpdateEnterpriseTeamDiscussionsSettingPayload {
|
|
|
58626
58766
|
message: String
|
|
58627
58767
|
}
|
|
58628
58768
|
|
|
58769
|
+
"""
|
|
58770
|
+
Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting
|
|
58771
|
+
"""
|
|
58772
|
+
input UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput {
|
|
58773
|
+
"""
|
|
58774
|
+
A unique identifier for the client performing the mutation.
|
|
58775
|
+
"""
|
|
58776
|
+
clientMutationId: String
|
|
58777
|
+
|
|
58778
|
+
"""
|
|
58779
|
+
The ID of the enterprise on which to set the two-factor authentication disallowed methods setting.
|
|
58780
|
+
"""
|
|
58781
|
+
enterpriseId: ID!
|
|
58782
|
+
|
|
58783
|
+
"""
|
|
58784
|
+
The value for the two-factor authentication disallowed methods setting on the enterprise.
|
|
58785
|
+
"""
|
|
58786
|
+
settingValue: EnterpriseDisallowedMethodsSettingValue!
|
|
58787
|
+
}
|
|
58788
|
+
|
|
58789
|
+
"""
|
|
58790
|
+
Autogenerated return type of UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting.
|
|
58791
|
+
"""
|
|
58792
|
+
type UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingPayload {
|
|
58793
|
+
"""
|
|
58794
|
+
A unique identifier for the client performing the mutation.
|
|
58795
|
+
"""
|
|
58796
|
+
clientMutationId: String
|
|
58797
|
+
|
|
58798
|
+
"""
|
|
58799
|
+
The enterprise with the updated two-factor authentication disallowed methods setting.
|
|
58800
|
+
"""
|
|
58801
|
+
enterprise: Enterprise
|
|
58802
|
+
|
|
58803
|
+
"""
|
|
58804
|
+
A message confirming the result of updating the two-factor authentication disallowed methods setting.
|
|
58805
|
+
"""
|
|
58806
|
+
message: String
|
|
58807
|
+
}
|
|
58808
|
+
|
|
58629
58809
|
"""
|
|
58630
58810
|
Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting
|
|
58631
58811
|
"""
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-schema",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "GitHub's GraphQL schema",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"email": "lucasnrgaard@gmail.com",
|
|
9
9
|
"url": "https://luxass.dev"
|
|
10
10
|
},
|
|
11
|
-
"packageManager": "pnpm@9.
|
|
11
|
+
"packageManager": "pnpm@9.12.0",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"homepage": "https://github.com/luxass/github-schema",
|
|
14
14
|
"repository": {
|
|
@@ -95,11 +95,11 @@
|
|
|
95
95
|
"@graphql-codegen/add": "^5.0.3",
|
|
96
96
|
"@graphql-codegen/cli": "^5.0.2",
|
|
97
97
|
"@graphql-codegen/typescript": "^4.0.9",
|
|
98
|
-
"@luxass/eslint-config": "^4.
|
|
98
|
+
"@luxass/eslint-config": "^4.12.1",
|
|
99
99
|
"@types/node": "^20.14.10",
|
|
100
|
-
"eslint": "^9.
|
|
100
|
+
"eslint": "^9.12.0",
|
|
101
101
|
"eslint-plugin-format": "^0.1.2",
|
|
102
|
-
"tsup": "^8.
|
|
103
|
-
"typescript": "^5.
|
|
102
|
+
"tsup": "^8.3.0",
|
|
103
|
+
"typescript": "^5.6.2"
|
|
104
104
|
}
|
|
105
105
|
}
|