Action ran graphql script"update-files"

This commit is contained in:
rachmari 2021-08-12 16:36:24 +00:00 коммит произвёл GitHub
Родитель d51b6e74dd
Коммит c81108bfca
7 изменённых файлов: 610 добавлений и 55 удалений

Просмотреть файл

@ -1821,10 +1821,6 @@ type CWE implements Node {
A detailed description of this CWE
"""
description: String!
"""
ID of the object.
"""
id: ID!
"""
@ -6541,7 +6537,7 @@ An ISO-8601 encoded UTC date string.
scalar DateTime
"""
The possible default permissions for repositories.
The possible base permissions for repositories.
"""
enum DefaultRepositoryPermissionField {
"""
@ -9336,7 +9332,7 @@ type EnterpriseBillingInfo {
}
"""
The possible values for the enterprise default repository permission setting.
The possible values for the enterprise base repository permission setting.
"""
enum EnterpriseDefaultRepositoryPermissionSettingValue {
"""
@ -9350,7 +9346,7 @@ enum EnterpriseDefaultRepositoryPermissionSettingValue {
NONE
"""
Organizations in the enterprise choose default repository permissions for their members.
Organizations in the enterprise choose base repository permissions for their members.
"""
NO_POLICY
@ -9836,7 +9832,7 @@ type EnterpriseOwnerInfo {
defaultRepositoryPermissionSetting: EnterpriseDefaultRepositoryPermissionSettingValue!
"""
A list of enterprise organizations configured with the provided default repository permission.
A list of enterprise organizations configured with the provided base repository permission.
"""
defaultRepositoryPermissionSettingOrganizations(
"""
@ -9911,7 +9907,7 @@ type EnterpriseOwnerInfo {
ipAllowListForInstalledAppsEnabledSetting: IpAllowListForInstalledAppsEnabledSettingValue!
"""
Whether or not the default repository permission is currently being updated.
Whether or not the base repository permission is currently being updated.
"""
isUpdatingDefaultRepositoryPermission: Boolean!
@ -20224,12 +20220,12 @@ type OrgUpdateDefaultRepositoryPermissionAuditEntry implements AuditEntry & Node
organizationUrl: URI
"""
The new default repository permission level for the organization.
The new base repository permission level for the organization.
"""
permission: OrgUpdateDefaultRepositoryPermissionAuditEntryPermission
"""
The former default repository permission level for the organization.
The former base repository permission level for the organization.
"""
permissionWas: OrgUpdateDefaultRepositoryPermissionAuditEntryPermission

Просмотреть файл

@ -1941,10 +1941,6 @@ type CWE implements Node {
A detailed description of this CWE
"""
description: String!
"""
ID of the object.
"""
id: ID!
"""
@ -6736,7 +6732,7 @@ type DeclineTopicSuggestionPayload {
}
"""
The possible default permissions for repositories.
The possible base permissions for repositories.
"""
enum DefaultRepositoryPermissionField {
"""
@ -9769,7 +9765,7 @@ type EnterpriseBillingInfo {
}
"""
The possible values for the enterprise default repository permission setting.
The possible values for the enterprise base repository permission setting.
"""
enum EnterpriseDefaultRepositoryPermissionSettingValue {
"""
@ -9783,7 +9779,7 @@ enum EnterpriseDefaultRepositoryPermissionSettingValue {
NONE
"""
Organizations in the enterprise choose default repository permissions for their members.
Organizations in the enterprise choose base repository permissions for their members.
"""
NO_POLICY
@ -10269,7 +10265,7 @@ type EnterpriseOwnerInfo {
defaultRepositoryPermissionSetting: EnterpriseDefaultRepositoryPermissionSettingValue!
"""
A list of enterprise organizations configured with the provided default repository permission.
A list of enterprise organizations configured with the provided base repository permission.
"""
defaultRepositoryPermissionSettingOrganizations(
"""
@ -10419,7 +10415,7 @@ type EnterpriseOwnerInfo {
ipAllowListForInstalledAppsEnabledSetting: IpAllowListForInstalledAppsEnabledSettingValue!
"""
Whether or not the default repository permission is currently being updated.
Whether or not the base repository permission is currently being updated.
"""
isUpdatingDefaultRepositoryPermission: Boolean!
@ -21586,12 +21582,12 @@ type OrgUpdateDefaultRepositoryPermissionAuditEntry implements AuditEntry & Node
organizationUrl: URI
"""
The new default repository permission level for the organization.
The new base repository permission level for the organization.
"""
permission: OrgUpdateDefaultRepositoryPermissionAuditEntryPermission
"""
The former default repository permission level for the organization.
The former base repository permission level for the organization.
"""
permissionWas: OrgUpdateDefaultRepositoryPermissionAuditEntryPermission
@ -22757,6 +22753,36 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
"""
sponsorshipForViewerAsSponsor: Sponsorship
"""
List of sponsorship updates sent from this sponsorable to sponsors.
"""
sponsorshipNewsletters(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorship updates returned from the connection.
"""
orderBy: SponsorshipNewsletterOrder = {field: CREATED_AT, direction: DESC}
): SponsorshipNewsletterConnection!
"""
This object's sponsorships as the maintainer.
"""
@ -37179,6 +37205,36 @@ interface Sponsorable {
"""
sponsorshipForViewerAsSponsor: Sponsorship
"""
List of sponsorship updates sent from this sponsorable to sponsors.
"""
sponsorshipNewsletters(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorship updates returned from the connection.
"""
orderBy: SponsorshipNewsletterOrder = {field: CREATED_AT, direction: DESC}
): SponsorshipNewsletterConnection!
"""
This object's sponsorships as the maintainer.
"""
@ -37909,6 +37965,107 @@ type SponsorshipEdge {
node: Sponsorship
}
"""
An update sent to sponsors of a user or organization on GitHub Sponsors.
"""
type SponsorshipNewsletter implements Node {
"""
The contents of the newsletter, the message the sponsorable wanted to give.
"""
body: String!
"""
Identifies the date and time when the object was created.
"""
createdAt: DateTime!
id: ID!
"""
Indicates if the newsletter has been made available to sponsors.
"""
isPublished: Boolean!
"""
The user or organization this newsletter is from.
"""
sponsorable: Sponsorable!
"""
The subject of the newsletter, what it's about.
"""
subject: String!
"""
Identifies the date and time when the object was last updated.
"""
updatedAt: DateTime!
}
"""
The connection type for SponsorshipNewsletter.
"""
type SponsorshipNewsletterConnection {
"""
A list of edges.
"""
edges: [SponsorshipNewsletterEdge]
"""
A list of nodes.
"""
nodes: [SponsorshipNewsletter]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type SponsorshipNewsletterEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: SponsorshipNewsletter
}
"""
Ordering options for sponsorship newsletter connections.
"""
input SponsorshipNewsletterOrder {
"""
The ordering direction.
"""
direction: OrderDirection!
"""
The field to order sponsorship newsletters by.
"""
field: SponsorshipNewsletterOrderField!
}
"""
Properties by which sponsorship update connections can be ordered.
"""
enum SponsorshipNewsletterOrderField {
"""
Order sponsorship newsletters by when they were created.
"""
CREATED_AT
}
"""
Ordering options for sponsorship connections.
"""
@ -44445,6 +44602,36 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
"""
sponsorshipForViewerAsSponsor: Sponsorship
"""
List of sponsorship updates sent from this sponsorable to sponsors.
"""
sponsorshipNewsletters(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for sponsorship updates returned from the connection.
"""
orderBy: SponsorshipNewsletterOrder = {field: CREATED_AT, direction: DESC}
): SponsorshipNewsletterConnection!
"""
This object's sponsorships as the maintainer.
"""

Просмотреть файл

@ -1,4 +1,24 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `SponsorshipNewsletter` was added",
"Type `SponsorshipNewsletterConnection` was added",
"Type `SponsorshipNewsletterEdge` was added",
"Type `SponsorshipNewsletterOrder` was added",
"Type `SponsorshipNewsletterOrderField` was added",
"Field `sponsorshipNewsletters` was added to object type `Organization`",
"Field `sponsorshipNewsletters` was added to interface `Sponsorable`",
"Field `sponsorshipNewsletters` was added to object type `User`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-08-12"
},
{
"schemaChanges": [
{

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -8588,14 +8588,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "id",
"description": "<p>ID of the object.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "name",
"description": "<p>The name of this CWE.</p>",
@ -17911,7 +17903,7 @@
},
{
"name": "defaultRepositoryPermissionSettingOrganizations",
"description": "<p>A list of enterprise organizations configured with the provided default repository permission.</p>",
"description": "<p>A list of enterprise organizations configured with the provided base repository permission.</p>",
"type": "OrganizationConnection!",
"id": "organizationconnection",
"kind": "objects",
@ -18208,7 +18200,7 @@
},
{
"name": "isUpdatingDefaultRepositoryPermission",
"description": "<p>Whether or not the default repository permission is currently being updated.</p>",
"description": "<p>Whether or not the base repository permission is currently being updated.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@ -31806,7 +31798,7 @@
},
{
"name": "permission",
"description": "<p>The new default repository permission level for the organization.</p>",
"description": "<p>The new base repository permission level for the organization.</p>",
"type": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission",
"id": "orgupdatedefaultrepositorypermissionauditentrypermission",
"kind": "enums",
@ -31814,7 +31806,7 @@
},
{
"name": "permissionWas",
"description": "<p>The former default repository permission level for the organization.</p>",
"description": "<p>The former base repository permission level for the organization.</p>",
"type": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission",
"id": "orgupdatedefaultrepositorypermissionauditentrypermission",
"kind": "enums",
@ -33882,6 +33874,66 @@
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
},
{
"name": "sponsorshipNewsletters",
"description": "<p>List of sponsorship updates sent from this sponsorable to sponsors.</p>",
"type": "SponsorshipNewsletterConnection!",
"id": "sponsorshipnewsletterconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipnewsletterconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorship updates returned from the connection.</p>",
"type": {
"name": "SponsorshipNewsletterOrder",
"id": "sponsorshipnewsletterorder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshipnewsletterorder"
}
}
]
},
{
"name": "sponsorshipsAsMaintainer",
"description": "<p>This object's sponsorships as the maintainer.</p>",
@ -53027,6 +53079,136 @@
}
]
},
{
"name": "SponsorshipNewsletter",
"kind": "objects",
"id": "sponsorshipnewsletter",
"href": "/graphql/reference/objects#sponsorshipnewsletter",
"description": "<p>An update sent to sponsors of a user or organization on GitHub Sponsors.</p>",
"implements": [
{
"name": "Node",
"id": "node",
"href": "/graphql/reference/interfaces#node"
}
],
"fields": [
{
"name": "body",
"description": "<p>The contents of the newsletter, the message the sponsorable wanted to give.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "createdAt",
"description": "<p>Identifies the date and time when the object was created.</p>",
"type": "DateTime!",
"id": "datetime",
"kind": "scalars",
"href": "/graphql/reference/scalars#datetime"
},
{
"name": "isPublished",
"description": "<p>Indicates if the newsletter has been made available to sponsors.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "sponsorable",
"description": "<p>The user or organization this newsletter is from.</p>",
"type": "Sponsorable!",
"id": "sponsorable",
"kind": "interfaces",
"href": "/graphql/reference/interfaces#sponsorable"
},
{
"name": "subject",
"description": "<p>The subject of the newsletter, what it's about.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "updatedAt",
"description": "<p>Identifies the date and time when the object was last updated.</p>",
"type": "DateTime!",
"id": "datetime",
"kind": "scalars",
"href": "/graphql/reference/scalars#datetime"
}
]
},
{
"name": "SponsorshipNewsletterConnection",
"kind": "objects",
"id": "sponsorshipnewsletterconnection",
"href": "/graphql/reference/objects#sponsorshipnewsletterconnection",
"description": "<p>The connection type for SponsorshipNewsletter.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[SponsorshipNewsletterEdge]",
"id": "sponsorshipnewsletteredge",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipnewsletteredge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[SponsorshipNewsletter]",
"id": "sponsorshipnewsletter",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipnewsletter"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "SponsorshipNewsletterEdge",
"kind": "objects",
"id": "sponsorshipnewsletteredge",
"href": "/graphql/reference/objects#sponsorshipnewsletteredge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "SponsorshipNewsletter",
"id": "sponsorshipnewsletter",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipnewsletter"
}
]
},
{
"name": "StargazerConnection",
"kind": "objects",
@ -59878,6 +60060,66 @@
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
},
{
"name": "sponsorshipNewsletters",
"description": "<p>List of sponsorship updates sent from this sponsorable to sponsors.</p>",
"type": "SponsorshipNewsletterConnection!",
"id": "sponsorshipnewsletterconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipnewsletterconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorship updates returned from the connection.</p>",
"type": {
"name": "SponsorshipNewsletterOrder",
"id": "sponsorshipnewsletterorder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshipnewsletterorder"
}
}
]
},
{
"name": "sponsorshipsAsMaintainer",
"description": "<p>This object's sponsorships as the maintainer.</p>",
@ -63683,6 +63925,66 @@
"kind": "objects",
"href": "/graphql/reference/objects#sponsorship"
},
{
"name": "sponsorshipNewsletters",
"description": "<p>List of sponsorship updates sent from this sponsorable to sponsors.</p>",
"type": "SponsorshipNewsletterConnection!",
"id": "sponsorshipnewsletterconnection",
"kind": "objects",
"href": "/graphql/reference/objects#sponsorshipnewsletterconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for sponsorship updates returned from the connection.</p>",
"type": {
"name": "SponsorshipNewsletterOrder",
"id": "sponsorshipnewsletterorder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#sponsorshipnewsletterorder"
}
}
]
},
{
"name": "sponsorshipsAsMaintainer",
"description": "<p>This object's sponsorships as the maintainer.</p>",
@ -64381,7 +64683,7 @@
"kind": "enums",
"id": "defaultrepositorypermissionfield",
"href": "/graphql/reference/enums#defaultrepositorypermissionfield",
"description": "<p>The possible default permissions for repositories.</p>",
"description": "<p>The possible base permissions for repositories.</p>",
"values": [
{
"name": "ADMIN",
@ -64607,7 +64909,7 @@
"kind": "enums",
"id": "enterprisedefaultrepositorypermissionsettingvalue",
"href": "/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue",
"description": "<p>The possible values for the enterprise default repository permission setting.</p>",
"description": "<p>The possible values for the enterprise base repository permission setting.</p>",
"values": [
{
"name": "ADMIN",
@ -64619,7 +64921,7 @@
},
{
"name": "NO_POLICY",
"description": "<p>Organizations in the enterprise choose default repository permissions for their members.</p>"
"description": "<p>Organizations in the enterprise choose base repository permissions for their members.</p>"
},
{
"name": "READ",
@ -67480,6 +67782,19 @@
}
]
},
{
"name": "SponsorshipNewsletterOrderField",
"kind": "enums",
"id": "sponsorshipnewsletterorderfield",
"href": "/graphql/reference/enums#sponsorshipnewsletterorderfield",
"description": "<p>Properties by which sponsorship update connections can be ordered.</p>",
"values": [
{
"name": "CREATED_AT",
"description": "<p>Order sponsorship newsletters by when they were created.</p>"
}
]
},
{
"name": "SponsorshipOrderField",
"kind": "enums",
@ -75334,6 +75649,31 @@
}
]
},
{
"name": "SponsorshipNewsletterOrder",
"kind": "inputObjects",
"id": "sponsorshipnewsletterorder",
"href": "/graphql/reference/input-objects#sponsorshipnewsletterorder",
"description": "<p>Ordering options for sponsorship newsletter connections.</p>",
"inputFields": [
{
"name": "direction",
"description": "<p>The ordering direction.</p>",
"type": "OrderDirection!",
"id": "orderdirection",
"kind": "enums",
"href": "/graphql/reference/enums#orderdirection"
},
{
"name": "field",
"description": "<p>The field to order sponsorship newsletters by.</p>",
"type": "SponsorshipNewsletterOrderField!",
"id": "sponsorshipnewsletterorderfield",
"kind": "enums",
"href": "/graphql/reference/enums#sponsorshipnewsletterorderfield"
}
]
},
{
"name": "SponsorshipOrder",
"kind": "inputObjects",

Просмотреть файл

@ -7571,14 +7571,6 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "id",
"description": "<p>ID of the object.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id"
},
{
"name": "name",
"description": "<p>The name of this CWE.</p>",
@ -16465,7 +16457,7 @@
},
{
"name": "defaultRepositoryPermissionSettingOrganizations",
"description": "<p>A list of enterprise organizations configured with the provided default repository permission.</p>",
"description": "<p>A list of enterprise organizations configured with the provided base repository permission.</p>",
"type": "OrganizationConnection!",
"id": "organizationconnection",
"kind": "objects",
@ -16611,7 +16603,7 @@
},
{
"name": "isUpdatingDefaultRepositoryPermission",
"description": "<p>Whether or not the default repository permission is currently being updated.</p>",
"description": "<p>Whether or not the base repository permission is currently being updated.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@ -29403,7 +29395,7 @@
},
{
"name": "permission",
"description": "<p>The new default repository permission level for the organization.</p>",
"description": "<p>The new base repository permission level for the organization.</p>",
"type": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission",
"id": "orgupdatedefaultrepositorypermissionauditentrypermission",
"kind": "enums",
@ -29411,7 +29403,7 @@
},
{
"name": "permissionWas",
"description": "<p>The former default repository permission level for the organization.</p>",
"description": "<p>The former base repository permission level for the organization.</p>",
"type": "OrgUpdateDefaultRepositoryPermissionAuditEntryPermission",
"id": "orgupdatedefaultrepositorypermissionauditentrypermission",
"kind": "enums",
@ -58976,7 +58968,7 @@
"kind": "enums",
"id": "defaultrepositorypermissionfield",
"href": "/graphql/reference/enums#defaultrepositorypermissionfield",
"description": "<p>The possible default permissions for repositories.</p>",
"description": "<p>The possible base permissions for repositories.</p>",
"values": [
{
"name": "ADMIN",
@ -59202,7 +59194,7 @@
"kind": "enums",
"id": "enterprisedefaultrepositorypermissionsettingvalue",
"href": "/graphql/reference/enums#enterprisedefaultrepositorypermissionsettingvalue",
"description": "<p>The possible values for the enterprise default repository permission setting.</p>",
"description": "<p>The possible values for the enterprise base repository permission setting.</p>",
"values": [
{
"name": "ADMIN",
@ -59214,7 +59206,7 @@
},
{
"name": "NO_POLICY",
"description": "<p>Organizations in the enterprise choose default repository permissions for their members.</p>"
"description": "<p>Organizations in the enterprise choose base repository permissions for their members.</p>"
},
{
"name": "READ",