Skip to content

Commit afdaa02

Browse files
authored
Merge pull request #33160 from github/repo-sync
Repo sync
2 parents 9819851 + 601ed60 commit afdaa02

File tree

6 files changed

+173
-1
lines changed

6 files changed

+173
-1
lines changed

src/audit-logs/lib/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"apiOnlyEvents": "This event is not available in the web interface, only via the REST API, audit log streaming, or JSON/CSV exports.",
44
"apiRequestEvent": "This event is only available via audit log streaming."
55
},
6-
"sha": "a6a9cd728ee6f9fb99376efe918bad64769cac2d"
6+
"sha": "31b9ebf9dce9812e3264d981594ae80e192a34d8"
77
}

src/graphql/data/fpt/changelog.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Type <code>CopilotEndpoints</code> was added</p>",
8+
"<p>Field <code>copilotEndpoints</code> was added to object type <code>User</code></p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2024-05-24"
15+
},
216
{
317
"schemaChanges": [
418
{

src/graphql/data/fpt/schema.docs.graphql

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6704,6 +6704,31 @@ type ConvertedToDiscussionEvent implements Node {
67046704
id: ID!
67056705
}
67066706

6707+
"""
6708+
Copilot endpoint information
6709+
"""
6710+
type CopilotEndpoints {
6711+
"""
6712+
Copilot API endpoint
6713+
"""
6714+
api: String!
6715+
6716+
"""
6717+
Copilot origin tracker endpoint
6718+
"""
6719+
originTracker: String!
6720+
6721+
"""
6722+
Copilot proxy endpoint
6723+
"""
6724+
proxy: String!
6725+
6726+
"""
6727+
Copilot telemetry endpoint
6728+
"""
6729+
telemetry: String!
6730+
}
6731+
67076732
"""
67086733
Autogenerated input type of CopyProjectV2
67096734
"""
@@ -60019,6 +60044,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
6001960044
to: DateTime
6002060045
): ContributionsCollection!
6002160046

60047+
"""
60048+
The user's Copilot endpoint information
60049+
"""
60050+
copilotEndpoints: CopilotEndpoints
60051+
6002260052
"""
6002360053
Identifies the date and time when the object was created.
6002460054
"""

src/graphql/data/fpt/schema.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16212,6 +16212,47 @@
1621216212
}
1621316213
]
1621416214
},
16215+
{
16216+
"name": "CopilotEndpoints",
16217+
"kind": "objects",
16218+
"id": "copilotendpoints",
16219+
"href": "/graphql/reference/objects#copilotendpoints",
16220+
"description": "<p>Copilot endpoint information.</p>",
16221+
"fields": [
16222+
{
16223+
"name": "api",
16224+
"description": "<p>Copilot API endpoint.</p>",
16225+
"type": "String!",
16226+
"id": "string",
16227+
"kind": "scalars",
16228+
"href": "/graphql/reference/scalars#string"
16229+
},
16230+
{
16231+
"name": "originTracker",
16232+
"description": "<p>Copilot origin tracker endpoint.</p>",
16233+
"type": "String!",
16234+
"id": "string",
16235+
"kind": "scalars",
16236+
"href": "/graphql/reference/scalars#string"
16237+
},
16238+
{
16239+
"name": "proxy",
16240+
"description": "<p>Copilot proxy endpoint.</p>",
16241+
"type": "String!",
16242+
"id": "string",
16243+
"kind": "scalars",
16244+
"href": "/graphql/reference/scalars#string"
16245+
},
16246+
{
16247+
"name": "telemetry",
16248+
"description": "<p>Copilot telemetry endpoint.</p>",
16249+
"type": "String!",
16250+
"id": "string",
16251+
"kind": "scalars",
16252+
"href": "/graphql/reference/scalars#string"
16253+
}
16254+
]
16255+
},
1621516256
{
1621616257
"name": "CreatedCommitContribution",
1621716258
"kind": "objects",
@@ -73541,6 +73582,14 @@
7354173582
}
7354273583
]
7354373584
},
73585+
{
73586+
"name": "copilotEndpoints",
73587+
"description": "<p>The user's Copilot endpoint information.</p>",
73588+
"type": "CopilotEndpoints",
73589+
"id": "copilotendpoints",
73590+
"kind": "objects",
73591+
"href": "/graphql/reference/objects#copilotendpoints"
73592+
},
7354473593
{
7354573594
"name": "createdAt",
7354673595
"description": "<p>Identifies the date and time when the object was created.</p>",

src/graphql/data/ghec/schema.docs.graphql

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6704,6 +6704,31 @@ type ConvertedToDiscussionEvent implements Node {
67046704
id: ID!
67056705
}
67066706

6707+
"""
6708+
Copilot endpoint information
6709+
"""
6710+
type CopilotEndpoints {
6711+
"""
6712+
Copilot API endpoint
6713+
"""
6714+
api: String!
6715+
6716+
"""
6717+
Copilot origin tracker endpoint
6718+
"""
6719+
originTracker: String!
6720+
6721+
"""
6722+
Copilot proxy endpoint
6723+
"""
6724+
proxy: String!
6725+
6726+
"""
6727+
Copilot telemetry endpoint
6728+
"""
6729+
telemetry: String!
6730+
}
6731+
67076732
"""
67086733
Autogenerated input type of CopyProjectV2
67096734
"""
@@ -60019,6 +60044,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
6001960044
to: DateTime
6002060045
): ContributionsCollection!
6002160046

60047+
"""
60048+
The user's Copilot endpoint information
60049+
"""
60050+
copilotEndpoints: CopilotEndpoints
60051+
6002260052
"""
6002360053
Identifies the date and time when the object was created.
6002460054
"""

src/graphql/data/ghec/schema.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16212,6 +16212,47 @@
1621216212
}
1621316213
]
1621416214
},
16215+
{
16216+
"name": "CopilotEndpoints",
16217+
"kind": "objects",
16218+
"id": "copilotendpoints",
16219+
"href": "/graphql/reference/objects#copilotendpoints",
16220+
"description": "<p>Copilot endpoint information.</p>",
16221+
"fields": [
16222+
{
16223+
"name": "api",
16224+
"description": "<p>Copilot API endpoint.</p>",
16225+
"type": "String!",
16226+
"id": "string",
16227+
"kind": "scalars",
16228+
"href": "/graphql/reference/scalars#string"
16229+
},
16230+
{
16231+
"name": "originTracker",
16232+
"description": "<p>Copilot origin tracker endpoint.</p>",
16233+
"type": "String!",
16234+
"id": "string",
16235+
"kind": "scalars",
16236+
"href": "/graphql/reference/scalars#string"
16237+
},
16238+
{
16239+
"name": "proxy",
16240+
"description": "<p>Copilot proxy endpoint.</p>",
16241+
"type": "String!",
16242+
"id": "string",
16243+
"kind": "scalars",
16244+
"href": "/graphql/reference/scalars#string"
16245+
},
16246+
{
16247+
"name": "telemetry",
16248+
"description": "<p>Copilot telemetry endpoint.</p>",
16249+
"type": "String!",
16250+
"id": "string",
16251+
"kind": "scalars",
16252+
"href": "/graphql/reference/scalars#string"
16253+
}
16254+
]
16255+
},
1621516256
{
1621616257
"name": "CreatedCommitContribution",
1621716258
"kind": "objects",
@@ -73541,6 +73582,14 @@
7354173582
}
7354273583
]
7354373584
},
73585+
{
73586+
"name": "copilotEndpoints",
73587+
"description": "<p>The user's Copilot endpoint information.</p>",
73588+
"type": "CopilotEndpoints",
73589+
"id": "copilotendpoints",
73590+
"kind": "objects",
73591+
"href": "/graphql/reference/objects#copilotendpoints"
73592+
},
7354473593
{
7354573594
"name": "createdAt",
7354673595
"description": "<p>Identifies the date and time when the object was created.</p>",

0 commit comments

Comments
 (0)