Skip to content

Commit 1716b8a

Browse files
authored
repo sync
2 parents b7ab141 + 21eeba6 commit 1716b8a

File tree

6 files changed

+213
-2
lines changed

6 files changed

+213
-2
lines changed

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29762,6 +29762,11 @@ type SecurityAdvisory implements Node {
2976229762
"""
2976329763
identifiers: [SecurityAdvisoryIdentifier!]!
2976429764

29765+
"""
29766+
The permalink for the advisory's dependabot alerts page
29767+
"""
29768+
notificationsPermalink: URI
29769+
2976529770
"""
2976629771
The organization that originated the advisory
2976729772
"""

data/graphql/schema.docs.graphql

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8857,6 +8857,11 @@ type EnterpriseOwnerInfo {
88578857
value: Boolean!
88588858
): OrganizationConnection!
88598859

8860+
"""
8861+
Indicates if email notification delivery for this enterprise is restricted to verified domains.
8862+
"""
8863+
notificationDeliveryRestrictionEnabledSetting: NotificationRestrictionSettingValue!
8864+
88608865
"""
88618866
The setting value for whether organization projects are enabled for organizations in this enterprise.
88628867
"""
@@ -15709,6 +15714,11 @@ type Mutation {
1570915714
"""
1571015715
updateLabel(input: UpdateLabelInput!): UpdateLabelPayload @preview(toggledBy: "bane-preview")
1571115716

15717+
"""
15718+
Update the setting to restrict notifications to only verified domains available to an owner.
15719+
"""
15720+
updateNotificationRestrictionSetting(input: UpdateNotificationRestrictionSettingInput!): UpdateNotificationRestrictionSettingPayload
15721+
1571215722
"""
1571315723
Updates an existing project.
1571415724
"""
@@ -15812,6 +15822,21 @@ interface Node {
1581215822
id: ID!
1581315823
}
1581415824

15825+
"""
15826+
The possible values for the notification restriction setting.
15827+
"""
15828+
enum NotificationRestrictionSettingValue {
15829+
"""
15830+
The setting is disabled for the owner.
15831+
"""
15832+
DISABLED
15833+
15834+
"""
15835+
The setting is enabled for the owner.
15836+
"""
15837+
ENABLED
15838+
}
15839+
1581515840
"""
1581615841
Metadata for an audit entry with action oauth_application.*
1581715842
"""
@@ -19254,6 +19279,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
1925419279
"""
1925519280
newTeamUrl: URI!
1925619281

19282+
"""
19283+
Indicates if email notification delivery for this organization is restricted to verified domains.
19284+
"""
19285+
notificationDeliveryRestrictionEnabledSetting: NotificationRestrictionSettingValue!
19286+
1925719287
"""
1925819288
The billing email for the organization.
1925919289
"""
@@ -32118,6 +32148,11 @@ type SecurityAdvisory implements Node {
3211832148
"""
3211932149
identifiers: [SecurityAdvisoryIdentifier!]!
3212032150

32151+
"""
32152+
The permalink for the advisory's dependabot alerts page
32153+
"""
32154+
notificationsPermalink: URI
32155+
3212132156
"""
3212232157
The organization that originated the advisory
3212332158
"""
@@ -37761,6 +37796,41 @@ type UpdateLabelPayload @preview(toggledBy: "bane-preview") {
3776137796
label: Label
3776237797
}
3776337798

37799+
"""
37800+
Autogenerated input type of UpdateNotificationRestrictionSetting
37801+
"""
37802+
input UpdateNotificationRestrictionSettingInput {
37803+
"""
37804+
A unique identifier for the client performing the mutation.
37805+
"""
37806+
clientMutationId: String
37807+
37808+
"""
37809+
The ID of the owner on which to set the restrict notifications setting.
37810+
"""
37811+
ownerId: ID! @possibleTypes(concreteTypes: ["Enterprise", "Organization"], abstractType: "VerifiableDomainOwner")
37812+
37813+
"""
37814+
The value for the restrict notifications setting.
37815+
"""
37816+
settingValue: NotificationRestrictionSettingValue!
37817+
}
37818+
37819+
"""
37820+
Autogenerated return type of UpdateNotificationRestrictionSetting
37821+
"""
37822+
type UpdateNotificationRestrictionSettingPayload {
37823+
"""
37824+
A unique identifier for the client performing the mutation.
37825+
"""
37826+
clientMutationId: String
37827+
37828+
"""
37829+
The owner on which the setting was updated.
37830+
"""
37831+
owner: VerifiableDomainOwner
37832+
}
37833+
3776437834
"""
3776537835
Autogenerated input type of UpdateProjectCard
3776637836
"""

lib/graphql/static/changelog.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"Type `NotificationRestrictionSettingValue` was added",
8+
"Type `UpdateNotificationRestrictionSettingInput` was added",
9+
"Type `UpdateNotificationRestrictionSettingPayload` was added",
10+
"Field `notificationDeliveryRestrictionEnabledSetting` was added to object type `Organization`",
11+
"Field `notificationsPermalink` was added to object type `SecurityAdvisory`",
12+
"Field `notificationDeliveryRestrictionEnabledSetting` was added to object type `EnterpriseOwnerInfo`",
13+
"Field `updateNotificationRestrictionSetting` was added to object type `Mutation`"
14+
]
15+
}
16+
],
17+
"previewChanges": [],
18+
"upcomingChanges": [],
19+
"date": "2021-02-01"
20+
},
221
{
322
"schemaChanges": [
423
{

lib/graphql/static/prerendered-objects.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

lib/graphql/static/schema-dotcom.json

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5464,6 +5464,40 @@
54645464
}
54655465
]
54665466
},
5467+
{
5468+
"name": "updateNotificationRestrictionSetting",
5469+
"kind": "mutations",
5470+
"id": "updatenotificationrestrictionsetting",
5471+
"href": "/graphql/reference/mutations#updatenotificationrestrictionsetting",
5472+
"description": "<p>Update the setting to restrict notifications to only verified domains available to an owner.</p>",
5473+
"inputFields": [
5474+
{
5475+
"name": "input",
5476+
"type": "UpdateNotificationRestrictionSettingInput!",
5477+
"id": "updatenotificationrestrictionsettinginput",
5478+
"kind": "input-objects",
5479+
"href": "/graphql/reference/input-objects#updatenotificationrestrictionsettinginput"
5480+
}
5481+
],
5482+
"returnFields": [
5483+
{
5484+
"name": "clientMutationId",
5485+
"type": "String",
5486+
"id": "string",
5487+
"kind": "scalars",
5488+
"href": "/graphql/reference/scalars#string",
5489+
"description": "<p>A unique identifier for the client performing the mutation.</p>"
5490+
},
5491+
{
5492+
"name": "owner",
5493+
"type": "VerifiableDomainOwner",
5494+
"id": "verifiabledomainowner",
5495+
"kind": "unions",
5496+
"href": "/graphql/reference/unions#verifiabledomainowner",
5497+
"description": "<p>The owner on which the setting was updated.</p>"
5498+
}
5499+
]
5500+
},
54675501
{
54685502
"name": "updateProject",
54695503
"kind": "mutations",
@@ -15593,6 +15627,14 @@
1559315627
}
1559415628
]
1559515629
},
15630+
{
15631+
"name": "notificationDeliveryRestrictionEnabledSetting",
15632+
"description": "<p>Indicates if email notification delivery for this enterprise is restricted to verified domains.</p>",
15633+
"type": "NotificationRestrictionSettingValue!",
15634+
"id": "notificationrestrictionsettingvalue",
15635+
"kind": "enums",
15636+
"href": "/graphql/reference/enums#notificationrestrictionsettingvalue"
15637+
},
1559615638
{
1559715639
"name": "organizationProjectsSetting",
1559815640
"description": "<p>The setting value for whether organization projects are enabled for organizations in this enterprise.</p>",
@@ -29525,6 +29567,14 @@
2952529567
"kind": "scalars",
2952629568
"href": "/graphql/reference/scalars#uri"
2952729569
},
29570+
{
29571+
"name": "notificationDeliveryRestrictionEnabledSetting",
29572+
"description": "<p>Indicates if email notification delivery for this organization is restricted to verified domains.</p>",
29573+
"type": "NotificationRestrictionSettingValue!",
29574+
"id": "notificationrestrictionsettingvalue",
29575+
"kind": "enums",
29576+
"href": "/graphql/reference/enums#notificationrestrictionsettingvalue"
29577+
},
2952829578
{
2952929579
"name": "organizationBillingEmail",
2953029580
"description": "<p>The billing email for the organization.</p>",
@@ -46925,6 +46975,14 @@
4692546975
"kind": "objects",
4692646976
"href": "/graphql/reference/objects#securityadvisoryidentifier"
4692746977
},
46978+
{
46979+
"name": "notificationsPermalink",
46980+
"description": "<p>The permalink for the advisory's dependabot alerts page.</p>",
46981+
"type": "URI",
46982+
"id": "uri",
46983+
"kind": "scalars",
46984+
"href": "/graphql/reference/scalars#uri"
46985+
},
4692846986
{
4692946987
"name": "origin",
4693046988
"description": "<p>The organization that originated the advisory.</p>",
@@ -59111,6 +59169,23 @@
5911159169
}
5911259170
]
5911359171
},
59172+
{
59173+
"name": "NotificationRestrictionSettingValue",
59174+
"kind": "enums",
59175+
"id": "notificationrestrictionsettingvalue",
59176+
"href": "/graphql/reference/enums#notificationrestrictionsettingvalue",
59177+
"description": "<p>The possible values for the notification restriction setting.</p>",
59178+
"values": [
59179+
{
59180+
"name": "DISABLED",
59181+
"description": "<p>The setting is disabled for the owner.</p>"
59182+
},
59183+
{
59184+
"name": "ENABLED",
59185+
"description": "<p>The setting is enabled for the owner.</p>"
59186+
}
59187+
]
59188+
},
5911459189
{
5911559190
"name": "OauthApplicationCreateAuditEntryState",
5911659191
"kind": "enums",
@@ -69789,6 +69864,40 @@
6978969864
}
6979069865
]
6979169866
},
69867+
{
69868+
"name": "UpdateNotificationRestrictionSettingInput",
69869+
"kind": "inputObjects",
69870+
"id": "updatenotificationrestrictionsettinginput",
69871+
"href": "/graphql/reference/input-objects#updatenotificationrestrictionsettinginput",
69872+
"description": "<p>Autogenerated input type of UpdateNotificationRestrictionSetting.</p>",
69873+
"inputFields": [
69874+
{
69875+
"name": "clientMutationId",
69876+
"description": "<p>A unique identifier for the client performing the mutation.</p>",
69877+
"type": "String",
69878+
"id": "string",
69879+
"kind": "scalars",
69880+
"href": "/graphql/reference/scalars#string"
69881+
},
69882+
{
69883+
"name": "ownerId",
69884+
"description": "<p>The ID of the owner on which to set the restrict notifications setting.</p>",
69885+
"type": "ID!",
69886+
"id": "id",
69887+
"kind": "scalars",
69888+
"href": "/graphql/reference/scalars#id",
69889+
"isDeprecated": false
69890+
},
69891+
{
69892+
"name": "settingValue",
69893+
"description": "<p>The value for the restrict notifications setting.</p>",
69894+
"type": "NotificationRestrictionSettingValue!",
69895+
"id": "notificationrestrictionsettingvalue",
69896+
"kind": "enums",
69897+
"href": "/graphql/reference/enums#notificationrestrictionsettingvalue"
69898+
}
69899+
]
69900+
},
6979269901
{
6979369902
"name": "UpdateProjectCardInput",
6979469903
"kind": "inputObjects",

lib/graphql/static/schema-ghae.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43579,6 +43579,14 @@
4357943579
"kind": "objects",
4358043580
"href": "/graphql/reference/objects#securityadvisoryidentifier"
4358143581
},
43582+
{
43583+
"name": "notificationsPermalink",
43584+
"description": "<p>The permalink for the advisory's dependabot alerts page.</p>",
43585+
"type": "URI",
43586+
"id": "uri",
43587+
"kind": "scalars",
43588+
"href": "/graphql/reference/scalars#uri"
43589+
},
4358243590
{
4358343591
"name": "origin",
4358443592
"description": "<p>The organization that originated the advisory.</p>",

0 commit comments

Comments
 (0)