1
0
mirror of synced 2025-12-23 11:54:18 -05:00

Merge pull request #14190 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot
2022-01-16 16:29:26 -06:00
committed by GitHub
9 changed files with 1067 additions and 6 deletions

View File

@@ -19417,6 +19417,31 @@ type OrgEnableTwoFactorRequirementAuditEntry implements AuditEntry & Node & Orga
userUrl: URI
}
"""
Ordering options for an organization's enterprise owner connections.
"""
input OrgEnterpriseOwnerOrder {
"""
The ordering direction.
"""
direction: OrderDirection!
"""
The field to order enterprise owners by.
"""
field: OrgEnterpriseOwnerOrderField!
}
"""
Properties by which enterprise owners can be ordered.
"""
enum OrgEnterpriseOwnerOrderField {
"""
Order enterprise owners by login.
"""
LOGIN
}
"""
Audit log entry for a org.invite_member event.
"""
@@ -21251,6 +21276,46 @@ type Organization implements Actor & MemberStatusable & Node & ProfileOwner & Pr
The organization's public email.
"""
email: String
"""
A list of owners of the organization's enterprise account.
"""
enterpriseOwners(
"""
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 enterprise owners returned from the connection.
"""
orderBy: OrgEnterpriseOwnerOrder = {field: LOGIN, direction: ASC}
"""
The organization role to filter by.
"""
organizationRole: RoleInOrganization
"""
The search string to look for.
"""
query: String
): OrganizationEnterpriseOwnerConnection!
id: ID!
"""
@@ -22004,6 +22069,51 @@ type OrganizationEdge {
node: Organization
}
"""
The connection type for User.
"""
type OrganizationEnterpriseOwnerConnection {
"""
A list of edges.
"""
edges: [OrganizationEnterpriseOwnerEdge]
"""
A list of nodes.
"""
nodes: [User]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An enterprise owner in the context of an organization that is part of the enterprise.
"""
type OrganizationEnterpriseOwnerEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: User
"""
The role of the owner with respect to the organization.
"""
organizationRole: RoleInOrganization!
}
"""
An Identity Provider configured to provision SAML and SCIM identities for Organizations
"""
@@ -26326,6 +26436,11 @@ type PullRequestTimelineItemsEdge {
The possible item types found in a timeline.
"""
enum PullRequestTimelineItemsItemType {
"""
Represents a 'added_to_merge_queue' event on a given pull request.
"""
ADDED_TO_MERGE_QUEUE_EVENT
"""
Represents a 'added_to_project' event on a given issue or pull request.
"""
@@ -26531,6 +26646,11 @@ enum PullRequestTimelineItemsItemType {
"""
REFERENCED_EVENT
"""
Represents a 'removed_from_merge_queue' event on a given pull request.
"""
REMOVED_FROM_MERGE_QUEUE_EVENT
"""
Represents a 'removed_from_project' event on a given issue or pull request.
"""

View File

@@ -13045,6 +13045,11 @@ enum FundingPlatform {
"""
KO_FI
"""
LFX Crowdfunding funding platform.
"""
LFX_CROWDFUNDING
"""
Liberapay funding platform.
"""
@@ -21140,6 +21145,31 @@ type OrgEnableTwoFactorRequirementAuditEntry implements AuditEntry & Node & Orga
userUrl: URI
}
"""
Ordering options for an organization's enterprise owner connections.
"""
input OrgEnterpriseOwnerOrder {
"""
The ordering direction.
"""
direction: OrderDirection!
"""
The field to order enterprise owners by.
"""
field: OrgEnterpriseOwnerOrderField!
}
"""
Properties by which enterprise owners can be ordered.
"""
enum OrgEnterpriseOwnerOrderField {
"""
Order enterprise owners by login.
"""
LOGIN
}
"""
Audit log entry for a org.invite_member event.
"""
@@ -23015,6 +23045,46 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
"""
email: String
"""
A list of owners of the organization's enterprise account.
"""
enterpriseOwners(
"""
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 enterprise owners returned from the connection.
"""
orderBy: OrgEnterpriseOwnerOrder = {field: LOGIN, direction: ASC}
"""
The organization role to filter by.
"""
organizationRole: RoleInOrganization
"""
The search string to look for.
"""
query: String
): OrganizationEnterpriseOwnerConnection!
"""
The estimated next GitHub Sponsors payout for this user/organization in cents (USD).
"""
@@ -24127,6 +24197,51 @@ type OrganizationEdge {
node: Organization
}
"""
The connection type for User.
"""
type OrganizationEnterpriseOwnerConnection {
"""
A list of edges.
"""
edges: [OrganizationEnterpriseOwnerEdge]
"""
A list of nodes.
"""
nodes: [User]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An enterprise owner in the context of an organization that is part of the enterprise.
"""
type OrganizationEnterpriseOwnerEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: User
"""
The role of the owner with respect to the organization.
"""
organizationRole: RoleInOrganization!
}
"""
An Identity Provider configured to provision SAML and SCIM identities for Organizations
"""
@@ -29522,6 +29637,11 @@ type PullRequestTimelineItemsEdge {
The possible item types found in a timeline.
"""
enum PullRequestTimelineItemsItemType {
"""
Represents a 'added_to_merge_queue' event on a given pull request.
"""
ADDED_TO_MERGE_QUEUE_EVENT
"""
Represents a 'added_to_project' event on a given issue or pull request.
"""
@@ -29727,6 +29847,11 @@ enum PullRequestTimelineItemsItemType {
"""
REFERENCED_EVENT
"""
Represents a 'removed_from_merge_queue' event on a given pull request.
"""
REMOVED_FROM_MERGE_QUEUE_EVENT
"""
Represents a 'removed_from_project' event on a given issue or pull request.
"""

View File

@@ -13045,6 +13045,11 @@ enum FundingPlatform {
"""
KO_FI
"""
LFX Crowdfunding funding platform.
"""
LFX_CROWDFUNDING
"""
Liberapay funding platform.
"""
@@ -21140,6 +21145,31 @@ type OrgEnableTwoFactorRequirementAuditEntry implements AuditEntry & Node & Orga
userUrl: URI
}
"""
Ordering options for an organization's enterprise owner connections.
"""
input OrgEnterpriseOwnerOrder {
"""
The ordering direction.
"""
direction: OrderDirection!
"""
The field to order enterprise owners by.
"""
field: OrgEnterpriseOwnerOrderField!
}
"""
Properties by which enterprise owners can be ordered.
"""
enum OrgEnterpriseOwnerOrderField {
"""
Order enterprise owners by login.
"""
LOGIN
}
"""
Audit log entry for a org.invite_member event.
"""
@@ -23015,6 +23045,46 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
"""
email: String
"""
A list of owners of the organization's enterprise account.
"""
enterpriseOwners(
"""
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 enterprise owners returned from the connection.
"""
orderBy: OrgEnterpriseOwnerOrder = {field: LOGIN, direction: ASC}
"""
The organization role to filter by.
"""
organizationRole: RoleInOrganization
"""
The search string to look for.
"""
query: String
): OrganizationEnterpriseOwnerConnection!
"""
The estimated next GitHub Sponsors payout for this user/organization in cents (USD).
"""
@@ -24127,6 +24197,51 @@ type OrganizationEdge {
node: Organization
}
"""
The connection type for User.
"""
type OrganizationEnterpriseOwnerConnection {
"""
A list of edges.
"""
edges: [OrganizationEnterpriseOwnerEdge]
"""
A list of nodes.
"""
nodes: [User]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An enterprise owner in the context of an organization that is part of the enterprise.
"""
type OrganizationEnterpriseOwnerEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: User
"""
The role of the owner with respect to the organization.
"""
organizationRole: RoleInOrganization!
}
"""
An Identity Provider configured to provision SAML and SCIM identities for Organizations
"""
@@ -29522,6 +29637,11 @@ type PullRequestTimelineItemsEdge {
The possible item types found in a timeline.
"""
enum PullRequestTimelineItemsItemType {
"""
Represents a 'added_to_merge_queue' event on a given pull request.
"""
ADDED_TO_MERGE_QUEUE_EVENT
"""
Represents a 'added_to_project' event on a given issue or pull request.
"""
@@ -29727,6 +29847,11 @@ enum PullRequestTimelineItemsItemType {
"""
REFERENCED_EVENT
"""
Represents a 'removed_from_merge_queue' event on a given pull request.
"""
REMOVED_FROM_MERGE_QUEUE_EVENT
"""
Represents a 'removed_from_project' event on a given issue or pull request.
"""

View File

@@ -1,4 +1,24 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `OrgEnterpriseOwnerOrder` was added",
"Type `OrgEnterpriseOwnerOrderField` was added",
"Type `OrganizationEnterpriseOwnerConnection` was added",
"Type `OrganizationEnterpriseOwnerEdge` was added",
"Enum value 'LFX_CROWDFUNDING` was added to enum `FundingPlatform'",
"Field `enterpriseOwners` was added to object type `Organization`",
"Enum value 'ADDED_TO_MERGE_QUEUE_EVENT` was added to enum `PullRequestTimelineItemsItemType'",
"Enum value 'REMOVED_FROM_MERGE_QUEUE_EVENT` was added to enum `PullRequestTimelineItemsItemType'"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2022-01-16"
},
{
"schemaChanges": [
{

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -33453,6 +33453,86 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "enterpriseOwners",
"description": "<p>A list of owners of the organization's enterprise account.</p>",
"type": "OrganizationEnterpriseOwnerConnection!",
"id": "organizationenterpriseownerconnection",
"kind": "objects",
"href": "/graphql/reference/objects#organizationenterpriseownerconnection",
"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 enterprise owners returned from the connection.</p>",
"type": {
"name": "OrgEnterpriseOwnerOrder",
"id": "orgenterpriseownerorder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#orgenterpriseownerorder"
}
},
{
"name": "organizationRole",
"description": "<p>The organization role to filter by.</p>",
"type": {
"name": "RoleInOrganization",
"id": "roleinorganization",
"kind": "enums",
"href": "/graphql/reference/enums#roleinorganization"
}
},
{
"name": "query",
"description": "<p>The search string to look for.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
}
]
},
{
"name": "estimatedNextSponsorsPayoutInCents",
"description": "<p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>",
@@ -35373,6 +35453,80 @@
}
]
},
{
"name": "OrganizationEnterpriseOwnerConnection",
"kind": "objects",
"id": "organizationenterpriseownerconnection",
"href": "/graphql/reference/objects#organizationenterpriseownerconnection",
"description": "<p>The connection type for User.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[OrganizationEnterpriseOwnerEdge]",
"id": "organizationenterpriseowneredge",
"kind": "objects",
"href": "/graphql/reference/objects#organizationenterpriseowneredge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[User]",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"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": "OrganizationEnterpriseOwnerEdge",
"kind": "objects",
"id": "organizationenterpriseowneredge",
"href": "/graphql/reference/objects#organizationenterpriseowneredge",
"description": "<p>An enterprise owner in the context of an organization that is part of the enterprise.</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": "User",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"name": "organizationRole",
"description": "<p>The role of the owner with respect to the organization.</p>",
"type": "RoleInOrganization!",
"id": "roleinorganization",
"kind": "enums",
"href": "/graphql/reference/enums#roleinorganization"
}
]
},
{
"name": "OrganizationIdentityProvider",
"kind": "objects",
@@ -67445,6 +67599,10 @@
"name": "KO_FI",
"description": "<p>Ko-fi funding platform.</p>"
},
{
"name": "LFX_CROWDFUNDING",
"description": "<p>LFX Crowdfunding funding platform.</p>"
},
{
"name": "LIBERAPAY",
"description": "<p>Liberapay funding platform.</p>"
@@ -68152,6 +68310,19 @@
}
]
},
{
"name": "OrgEnterpriseOwnerOrderField",
"kind": "enums",
"id": "orgenterpriseownerorderfield",
"href": "/graphql/reference/enums#orgenterpriseownerorderfield",
"description": "<p>Properties by which enterprise owners can be ordered.</p>",
"values": [
{
"name": "LOGIN",
"description": "<p>Order enterprise owners by login.</p>"
}
]
},
{
"name": "OrgRemoveBillingManagerAuditEntryReason",
"kind": "enums",
@@ -68937,6 +69108,10 @@
"href": "/graphql/reference/enums#pullrequesttimelineitemsitemtype",
"description": "<p>The possible item types found in a timeline.</p>",
"values": [
{
"name": "ADDED_TO_MERGE_QUEUE_EVENT",
"description": "<p>Represents a<code>added_to_merge_queue</code>event on a given pull request.</p>"
},
{
"name": "ADDED_TO_PROJECT_EVENT",
"description": "<p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>"
@@ -69101,6 +69276,10 @@
"name": "REFERENCED_EVENT",
"description": "<p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>"
},
{
"name": "REMOVED_FROM_MERGE_QUEUE_EVENT",
"description": "<p>Represents a<code>removed_from_merge_queue</code>event on a given pull request.</p>"
},
{
"name": "REMOVED_FROM_PROJECT_EVENT",
"description": "<p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>"
@@ -77028,6 +77207,31 @@
}
]
},
{
"name": "OrgEnterpriseOwnerOrder",
"kind": "inputObjects",
"id": "orgenterpriseownerorder",
"href": "/graphql/reference/input-objects#orgenterpriseownerorder",
"description": "<p>Ordering options for an organization's enterprise owner 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 enterprise owners by.</p>",
"type": "OrgEnterpriseOwnerOrderField!",
"id": "orgenterpriseownerorderfield",
"kind": "enums",
"href": "/graphql/reference/enums#orgenterpriseownerorderfield"
}
]
},
{
"name": "OrganizationOrder",
"kind": "inputObjects",

View File

@@ -30567,6 +30567,86 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "enterpriseOwners",
"description": "<p>A list of owners of the organization's enterprise account.</p>",
"type": "OrganizationEnterpriseOwnerConnection!",
"id": "organizationenterpriseownerconnection",
"kind": "objects",
"href": "/graphql/reference/objects#organizationenterpriseownerconnection",
"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 enterprise owners returned from the connection.</p>",
"type": {
"name": "OrgEnterpriseOwnerOrder",
"id": "orgenterpriseownerorder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#orgenterpriseownerorder"
}
},
{
"name": "organizationRole",
"description": "<p>The organization role to filter by.</p>",
"type": {
"name": "RoleInOrganization",
"id": "roleinorganization",
"kind": "enums",
"href": "/graphql/reference/enums#roleinorganization"
}
},
{
"name": "query",
"description": "<p>The search string to look for.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
}
]
},
{
"name": "ipAllowListEnabledSetting",
"description": "<p>The setting value for whether the organization has an IP allow list enabled.</p>",
@@ -31798,6 +31878,80 @@
}
]
},
{
"name": "OrganizationEnterpriseOwnerConnection",
"kind": "objects",
"id": "organizationenterpriseownerconnection",
"href": "/graphql/reference/objects#organizationenterpriseownerconnection",
"description": "<p>The connection type for User.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[OrganizationEnterpriseOwnerEdge]",
"id": "organizationenterpriseowneredge",
"kind": "objects",
"href": "/graphql/reference/objects#organizationenterpriseowneredge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[User]",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"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": "OrganizationEnterpriseOwnerEdge",
"kind": "objects",
"id": "organizationenterpriseowneredge",
"href": "/graphql/reference/objects#organizationenterpriseowneredge",
"description": "<p>An enterprise owner in the context of an organization that is part of the enterprise.</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": "User",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"name": "organizationRole",
"description": "<p>The role of the owner with respect to the organization.</p>",
"type": "RoleInOrganization!",
"id": "roleinorganization",
"kind": "enums",
"href": "/graphql/reference/enums#roleinorganization"
}
]
},
{
"name": "OrganizationIdentityProvider",
"kind": "objects",
@@ -60163,6 +60317,19 @@
}
]
},
{
"name": "OrgEnterpriseOwnerOrderField",
"kind": "enums",
"id": "orgenterpriseownerorderfield",
"href": "/graphql/reference/enums#orgenterpriseownerorderfield",
"description": "<p>Properties by which enterprise owners can be ordered.</p>",
"values": [
{
"name": "LOGIN",
"description": "<p>Order enterprise owners by login.</p>"
}
]
},
{
"name": "OrgRemoveBillingManagerAuditEntryReason",
"kind": "enums",
@@ -60847,6 +61014,10 @@
"href": "/graphql/reference/enums#pullrequesttimelineitemsitemtype",
"description": "<p>The possible item types found in a timeline.</p>",
"values": [
{
"name": "ADDED_TO_MERGE_QUEUE_EVENT",
"description": "<p>Represents a<code>added_to_merge_queue</code>event on a given pull request.</p>"
},
{
"name": "ADDED_TO_PROJECT_EVENT",
"description": "<p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>"
@@ -61011,6 +61182,10 @@
"name": "REFERENCED_EVENT",
"description": "<p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>"
},
{
"name": "REMOVED_FROM_MERGE_QUEUE_EVENT",
"description": "<p>Represents a<code>removed_from_merge_queue</code>event on a given pull request.</p>"
},
{
"name": "REMOVED_FROM_PROJECT_EVENT",
"description": "<p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>"
@@ -67971,6 +68146,31 @@
}
]
},
{
"name": "OrgEnterpriseOwnerOrder",
"kind": "inputObjects",
"id": "orgenterpriseownerorder",
"href": "/graphql/reference/input-objects#orgenterpriseownerorder",
"description": "<p>Ordering options for an organization's enterprise owner 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 enterprise owners by.</p>",
"type": "OrgEnterpriseOwnerOrderField!",
"id": "orgenterpriseownerorderfield",
"kind": "enums",
"href": "/graphql/reference/enums#orgenterpriseownerorderfield"
}
]
},
{
"name": "OrganizationOrder",
"kind": "inputObjects",

View File

@@ -33453,6 +33453,86 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "enterpriseOwners",
"description": "<p>A list of owners of the organization's enterprise account.</p>",
"type": "OrganizationEnterpriseOwnerConnection!",
"id": "organizationenterpriseownerconnection",
"kind": "objects",
"href": "/graphql/reference/objects#organizationenterpriseownerconnection",
"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 enterprise owners returned from the connection.</p>",
"type": {
"name": "OrgEnterpriseOwnerOrder",
"id": "orgenterpriseownerorder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#orgenterpriseownerorder"
}
},
{
"name": "organizationRole",
"description": "<p>The organization role to filter by.</p>",
"type": {
"name": "RoleInOrganization",
"id": "roleinorganization",
"kind": "enums",
"href": "/graphql/reference/enums#roleinorganization"
}
},
{
"name": "query",
"description": "<p>The search string to look for.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
}
]
},
{
"name": "estimatedNextSponsorsPayoutInCents",
"description": "<p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>",
@@ -35373,6 +35453,80 @@
}
]
},
{
"name": "OrganizationEnterpriseOwnerConnection",
"kind": "objects",
"id": "organizationenterpriseownerconnection",
"href": "/graphql/reference/objects#organizationenterpriseownerconnection",
"description": "<p>The connection type for User.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[OrganizationEnterpriseOwnerEdge]",
"id": "organizationenterpriseowneredge",
"kind": "objects",
"href": "/graphql/reference/objects#organizationenterpriseowneredge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[User]",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"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": "OrganizationEnterpriseOwnerEdge",
"kind": "objects",
"id": "organizationenterpriseowneredge",
"href": "/graphql/reference/objects#organizationenterpriseowneredge",
"description": "<p>An enterprise owner in the context of an organization that is part of the enterprise.</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": "User",
"id": "user",
"kind": "objects",
"href": "/graphql/reference/objects#user"
},
{
"name": "organizationRole",
"description": "<p>The role of the owner with respect to the organization.</p>",
"type": "RoleInOrganization!",
"id": "roleinorganization",
"kind": "enums",
"href": "/graphql/reference/enums#roleinorganization"
}
]
},
{
"name": "OrganizationIdentityProvider",
"kind": "objects",
@@ -67445,6 +67599,10 @@
"name": "KO_FI",
"description": "<p>Ko-fi funding platform.</p>"
},
{
"name": "LFX_CROWDFUNDING",
"description": "<p>LFX Crowdfunding funding platform.</p>"
},
{
"name": "LIBERAPAY",
"description": "<p>Liberapay funding platform.</p>"
@@ -68152,6 +68310,19 @@
}
]
},
{
"name": "OrgEnterpriseOwnerOrderField",
"kind": "enums",
"id": "orgenterpriseownerorderfield",
"href": "/graphql/reference/enums#orgenterpriseownerorderfield",
"description": "<p>Properties by which enterprise owners can be ordered.</p>",
"values": [
{
"name": "LOGIN",
"description": "<p>Order enterprise owners by login.</p>"
}
]
},
{
"name": "OrgRemoveBillingManagerAuditEntryReason",
"kind": "enums",
@@ -68937,6 +69108,10 @@
"href": "/graphql/reference/enums#pullrequesttimelineitemsitemtype",
"description": "<p>The possible item types found in a timeline.</p>",
"values": [
{
"name": "ADDED_TO_MERGE_QUEUE_EVENT",
"description": "<p>Represents a<code>added_to_merge_queue</code>event on a given pull request.</p>"
},
{
"name": "ADDED_TO_PROJECT_EVENT",
"description": "<p>Represents a<code>added_to_project</code>event on a given issue or pull request.</p>"
@@ -69101,6 +69276,10 @@
"name": "REFERENCED_EVENT",
"description": "<p>Represents a<code>referenced</code>event on a given <code>ReferencedSubject</code>.</p>"
},
{
"name": "REMOVED_FROM_MERGE_QUEUE_EVENT",
"description": "<p>Represents a<code>removed_from_merge_queue</code>event on a given pull request.</p>"
},
{
"name": "REMOVED_FROM_PROJECT_EVENT",
"description": "<p>Represents a<code>removed_from_project</code>event on a given issue or pull request.</p>"
@@ -77028,6 +77207,31 @@
}
]
},
{
"name": "OrgEnterpriseOwnerOrder",
"kind": "inputObjects",
"id": "orgenterpriseownerorder",
"href": "/graphql/reference/input-objects#orgenterpriseownerorder",
"description": "<p>Ordering options for an organization's enterprise owner 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 enterprise owners by.</p>",
"type": "OrgEnterpriseOwnerOrderField!",
"id": "orgenterpriseownerorderfield",
"kind": "enums",
"href": "/graphql/reference/enums#orgenterpriseownerorderfield"
}
]
},
{
"name": "OrganizationOrder",
"kind": "inputObjects",