@@ -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 */
34503463export 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. */
0 commit comments