Skip to content

Commit 4eda357

Browse files
authored
feat: User#copilotEndpoints (#949)
1 parent 3100355 commit 4eda357

File tree

3 files changed

+132
-0
lines changed

3 files changed

+132
-0
lines changed

schema.d.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3446,6 +3446,19 @@ export type ConvertedToDiscussionEvent = Node & {
34463446
id: Scalars['ID']['output'];
34473447
};
34483448

3449+
/** Copilot endpoint information */
3450+
export type CopilotEndpoints = {
3451+
__typename?: 'CopilotEndpoints';
3452+
/** Copilot API endpoint */
3453+
api: Scalars['String']['output'];
3454+
/** Copilot origin tracker endpoint */
3455+
originTracker: Scalars['String']['output'];
3456+
/** Copilot proxy endpoint */
3457+
proxy: Scalars['String']['output'];
3458+
/** Copilot telemetry endpoint */
3459+
telemetry: Scalars['String']['output'];
3460+
};
3461+
34493462
/** Autogenerated input type of CopyProjectV2 */
34503463
export type CopyProjectV2Input = {
34513464
/** A unique identifier for the client performing the mutation. */
@@ -29637,6 +29650,8 @@ export type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & P
2963729650
companyHTML: Scalars['HTML']['output'];
2963829651
/** The collection of contributions this user has made to different repositories. */
2963929652
contributionsCollection: ContributionsCollection;
29653+
/** The user's Copilot endpoint information */
29654+
copilotEndpoints?: Maybe<CopilotEndpoints>;
2964029655
/** Identifies the date and time when the object was created. */
2964129656
createdAt: Scalars['DateTime']['output'];
2964229657
/** Identifies the primary key from the database. */

schema.graphql

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6654,6 +6654,31 @@ type ConvertedToDiscussionEvent implements Node {
66546654
id: ID!
66556655
}
66566656

6657+
"""
6658+
Copilot endpoint information
6659+
"""
6660+
type CopilotEndpoints {
6661+
"""
6662+
Copilot API endpoint
6663+
"""
6664+
api: String!
6665+
6666+
"""
6667+
Copilot origin tracker endpoint
6668+
"""
6669+
originTracker: String!
6670+
6671+
"""
6672+
Copilot proxy endpoint
6673+
"""
6674+
proxy: String!
6675+
6676+
"""
6677+
Copilot telemetry endpoint
6678+
"""
6679+
telemetry: String!
6680+
}
6681+
66576682
"""
66586683
Autogenerated input type of CopyProjectV2
66596684
"""
@@ -59551,6 +59576,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
5955159576
to: DateTime
5955259577
): ContributionsCollection!
5955359578

59579+
"""
59580+
The user's Copilot endpoint information
59581+
"""
59582+
copilotEndpoints: CopilotEndpoints
59583+
5955459584
"""
5955559585
Identifies the date and time when the object was created.
5955659586
"""

schema.json

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17317,6 +17317,81 @@
1731717317
"enumValues": null,
1731817318
"possibleTypes": null
1731917319
},
17320+
{
17321+
"kind": "OBJECT",
17322+
"name": "CopilotEndpoints",
17323+
"description": "Copilot endpoint information",
17324+
"fields": [
17325+
{
17326+
"name": "api",
17327+
"description": "Copilot API endpoint",
17328+
"args": [],
17329+
"type": {
17330+
"kind": "NON_NULL",
17331+
"name": null,
17332+
"ofType": {
17333+
"kind": "SCALAR",
17334+
"name": "String",
17335+
"ofType": null
17336+
}
17337+
},
17338+
"isDeprecated": false,
17339+
"deprecationReason": null
17340+
},
17341+
{
17342+
"name": "originTracker",
17343+
"description": "Copilot origin tracker endpoint",
17344+
"args": [],
17345+
"type": {
17346+
"kind": "NON_NULL",
17347+
"name": null,
17348+
"ofType": {
17349+
"kind": "SCALAR",
17350+
"name": "String",
17351+
"ofType": null
17352+
}
17353+
},
17354+
"isDeprecated": false,
17355+
"deprecationReason": null
17356+
},
17357+
{
17358+
"name": "proxy",
17359+
"description": "Copilot proxy endpoint",
17360+
"args": [],
17361+
"type": {
17362+
"kind": "NON_NULL",
17363+
"name": null,
17364+
"ofType": {
17365+
"kind": "SCALAR",
17366+
"name": "String",
17367+
"ofType": null
17368+
}
17369+
},
17370+
"isDeprecated": false,
17371+
"deprecationReason": null
17372+
},
17373+
{
17374+
"name": "telemetry",
17375+
"description": "Copilot telemetry endpoint",
17376+
"args": [],
17377+
"type": {
17378+
"kind": "NON_NULL",
17379+
"name": null,
17380+
"ofType": {
17381+
"kind": "SCALAR",
17382+
"name": "String",
17383+
"ofType": null
17384+
}
17385+
},
17386+
"isDeprecated": false,
17387+
"deprecationReason": null
17388+
}
17389+
],
17390+
"inputFields": null,
17391+
"interfaces": [],
17392+
"enumValues": null,
17393+
"possibleTypes": null
17394+
},
1732017395
{
1732117396
"kind": "INPUT_OBJECT",
1732217397
"name": "CopyProjectV2Input",
@@ -152373,6 +152448,18 @@
152373152448
"isDeprecated": false,
152374152449
"deprecationReason": null
152375152450
},
152451+
{
152452+
"name": "copilotEndpoints",
152453+
"description": "The user's Copilot endpoint information",
152454+
"args": [],
152455+
"type": {
152456+
"kind": "OBJECT",
152457+
"name": "CopilotEndpoints",
152458+
"ofType": null
152459+
},
152460+
"isDeprecated": false,
152461+
"deprecationReason": null
152462+
},
152376152463
{
152377152464
"name": "createdAt",
152378152465
"description": "Identifies the date and time when the object was created.",

0 commit comments

Comments
 (0)