@linear/sdk 10.0.0 → 11.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -229,7 +229,7 @@ export declare type AttachmentConnection = {
229
229
  export declare type AttachmentCreateInput = {
230
230
  /** Create a linked comment with markdown body. */
231
231
  commentBody?: Maybe<Scalars["String"]>;
232
- /** Create a linked comment with Prosemirror body. Please use `commentBody` instead */
232
+ /** [Internal] Create a linked comment with Prosemirror body. Please use `commentBody` instead. */
233
233
  commentBodyData?: Maybe<Scalars["JSONObject"]>;
234
234
  /** Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode. */
235
235
  createAsUser?: Maybe<Scalars["String"]>;
@@ -463,6 +463,8 @@ export declare type AuthUser = {
463
463
  /** User authentication session. */
464
464
  export declare type AuthenticationSession = {
465
465
  __typename?: "AuthenticationSession";
466
+ /** Used web browser. */
467
+ browserType?: Maybe<Scalars["String"]>;
466
468
  /** Client used for the session */
467
469
  client?: Maybe<Scalars["String"]>;
468
470
  /** Country codes of all seen locations. */
@@ -495,6 +497,8 @@ export declare type AuthenticationSession = {
495
497
  };
496
498
  export declare type AuthenticationSessionResponse = {
497
499
  __typename?: "AuthenticationSessionResponse";
500
+ /** Used web browser. */
501
+ browserType?: Maybe<Scalars["String"]>;
498
502
  /** Client used for the session */
499
503
  client?: Maybe<Scalars["String"]>;
500
504
  /** Country codes of all seen locations. */
@@ -563,7 +567,7 @@ export declare type Comment = Node & {
563
567
  archivedAt?: Maybe<Scalars["DateTime"]>;
564
568
  /** The comment content in markdown format. */
565
569
  body: Scalars["String"];
566
- /** The comment content as a Prosemirror document. */
570
+ /** [Internal] The comment content as a Prosemirror document. */
567
571
  bodyData: Scalars["String"];
568
572
  /** The bot that created the comment */
569
573
  botActor?: Maybe<ActorBot>;
@@ -572,7 +576,7 @@ export declare type Comment = Node & {
572
576
  /** The time at which the entity was created. */
573
577
  createdAt: Scalars["DateTime"];
574
578
  /** The document content that the comment is associated with. */
575
- documentContent: DocumentContent;
579
+ documentContent?: Maybe<DocumentContent>;
576
580
  /** The time user edited the comment. */
577
581
  editedAt?: Maybe<Scalars["DateTime"]>;
578
582
  /** [ALPHA] The external user who wrote the comment. */
@@ -648,7 +652,7 @@ export declare type CommentConnection = {
648
652
  export declare type CommentCreateInput = {
649
653
  /** The comment content in markdown format. */
650
654
  body?: Maybe<Scalars["String"]>;
651
- /** The comment content as a Prosemirror document. */
655
+ /** [Internal] The comment content as a Prosemirror document. */
652
656
  bodyData?: Maybe<Scalars["JSON"]>;
653
657
  /** Create comment as a user with the provided name. This option is only available to OAuth applications creating comments in `actor=application` mode. */
654
658
  createAsUser?: Maybe<Scalars["String"]>;
@@ -849,6 +853,8 @@ export declare type CustomView = Node & {
849
853
  icon?: Maybe<Scalars["String"]>;
850
854
  /** The unique identifier of the entity. */
851
855
  id: Scalars["ID"];
856
+ /** The model name of the custom view. */
857
+ modelName: Scalars["String"];
852
858
  /** The name of the custom view. */
853
859
  name: Scalars["String"];
854
860
  /** The organization of the custom view. */
@@ -1286,7 +1292,7 @@ export declare type DocumentContent = Node & {
1286
1292
  archivedAt?: Maybe<Scalars["DateTime"]>;
1287
1293
  /** The document content in markdown format. */
1288
1294
  content?: Maybe<Scalars["String"]>;
1289
- /** The document content as JSON. */
1295
+ /** [Internal] The document content as a Prosemirror document. */
1290
1296
  contentData?: Maybe<Scalars["JSONObject"]>;
1291
1297
  /** The document content state as a base64 encoded string. */
1292
1298
  contentState?: Maybe<Scalars["String"]>;
@@ -1327,7 +1333,7 @@ export declare type DocumentContentHistory = Node & {
1327
1333
  actorIds: Array<Scalars["String"]>;
1328
1334
  /** The time at which the entity was archived. Null if the entity has not been archived. */
1329
1335
  archivedAt?: Maybe<Scalars["DateTime"]>;
1330
- /** The document content as JSON. */
1336
+ /** [Internal] The document content as a Prosemirror document. */
1331
1337
  contentData?: Maybe<Scalars["JSONObject"]>;
1332
1338
  /** The timestamp associated with the DocumentContent when it was originally saved */
1333
1339
  contentDataSnapshotAt: Scalars["DateTime"];
@@ -1355,7 +1361,7 @@ export declare type DocumentContentHistoryType = {
1355
1361
  __typename?: "DocumentContentHistoryType";
1356
1362
  /** The ID of the author of the change. */
1357
1363
  actorIds?: Maybe<Array<Scalars["String"]>>;
1358
- /** The document content as Prosemirror document. */
1364
+ /** [Internal] The document content as Prosemirror document. */
1359
1365
  contentData: Scalars["JSON"];
1360
1366
  /** The date when the document content history snapshot was taken. This can be different than createdAt since the content is captured from its state at the previously known updatedAt timestamp in the case of an update. On document create, these timestamps can be the same. */
1361
1367
  contentDataSnapshotAt: Scalars["DateTime"];
@@ -2023,6 +2029,7 @@ export declare enum IntegrationService {
2023
2029
  GitHubSync = "gitHubSync",
2024
2030
  Github = "github",
2025
2031
  GithubCommit = "githubCommit",
2032
+ GithubPersonal = "githubPersonal",
2026
2033
  Gitlab = "gitlab",
2027
2034
  GoogleCalendarPersonal = "googleCalendarPersonal",
2028
2035
  GoogleSheets = "googleSheets",
@@ -2052,6 +2059,7 @@ export declare type IntegrationSettings = {
2052
2059
  googleSheets?: Maybe<GoogleSheetsSettings>;
2053
2060
  intercom?: Maybe<IntercomSettings>;
2054
2061
  jira?: Maybe<JiraSettings>;
2062
+ jiraPersonal?: Maybe<JiraPersonalSettings>;
2055
2063
  notion?: Maybe<NotionSettings>;
2056
2064
  pagerDuty?: Maybe<PagerDutySettings>;
2057
2065
  sentry?: Maybe<SentrySettings>;
@@ -2070,6 +2078,7 @@ export declare type IntegrationSettingsInput = {
2070
2078
  googleSheets?: Maybe<GoogleSheetsSettingsInput>;
2071
2079
  intercom?: Maybe<IntercomSettingsInput>;
2072
2080
  jira?: Maybe<JiraSettingsInput>;
2081
+ jiraPersonal?: Maybe<JiraPersonalSettingsInput>;
2073
2082
  notion?: Maybe<NotionSettingsInput>;
2074
2083
  pagerDuty?: Maybe<PagerDutyInput>;
2075
2084
  sentry?: Maybe<SentrySettingsInput>;
@@ -2593,7 +2602,7 @@ export declare type IssueCreateInput = {
2593
2602
  cycleId?: Maybe<Scalars["String"]>;
2594
2603
  /** The issue description in markdown format. */
2595
2604
  description?: Maybe<Scalars["String"]>;
2596
- /** The issue description as a Prosemirror document. */
2605
+ /** [Internal] The issue description as a Prosemirror document. */
2597
2606
  descriptionData?: Maybe<Scalars["JSON"]>;
2598
2607
  /** Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode. */
2599
2608
  displayIconUrl?: Maybe<Scalars["String"]>;
@@ -3554,6 +3563,16 @@ export declare type JiraLinearMappingInput = {
3554
3563
  /** The Linear team id to map to the given project. */
3555
3564
  linearTeamId: Scalars["String"];
3556
3565
  };
3566
+ /** Jira personal specific settings. */
3567
+ export declare type JiraPersonalSettings = {
3568
+ __typename?: "JiraPersonalSettings";
3569
+ /** The name of the Jira site currently authorized through the integration. */
3570
+ siteName?: Maybe<Scalars["String"]>;
3571
+ };
3572
+ export declare type JiraPersonalSettingsInput = {
3573
+ /** The name of the Jira site currently authorized through the integration. */
3574
+ siteName?: Maybe<Scalars["String"]>;
3575
+ };
3557
3576
  /** Metadata about a Jira project. */
3558
3577
  export declare type JiraProjectData = {
3559
3578
  __typename?: "JiraProjectData";
@@ -3748,6 +3767,8 @@ export declare type Mutation = {
3748
3767
  integrationFigma: IntegrationPayload;
3749
3768
  /** Integrates the organization with Front. */
3750
3769
  integrationFront: IntegrationPayload;
3770
+ /** Connect your GitHub account to Linear. */
3771
+ integrationGitHubPersonal: IntegrationPayload;
3751
3772
  /** Generates a webhook for the GitHub commit integration. */
3752
3773
  integrationGithubCommitCreate: GitHubCommitIntegrationPayload;
3753
3774
  /** Connects the organization with the GitHub App. */
@@ -4024,7 +4045,10 @@ export declare type Mutation = {
4024
4045
  userExternalUserDisconnect: UserPayload;
4025
4046
  /** Updates a user's settings flag. */
4026
4047
  userFlagUpdate: UserSettingsFlagPayload;
4027
- /** Connects the GitHub user to this Linear account via OAuth2. */
4048
+ /**
4049
+ * [DEPRECATED] Connects the GitHub user to this Linear account via OAuth2.
4050
+ * @deprecated Replaced by integrationGitHubPersonal mutation on Integration resolver.
4051
+ */
4028
4052
  userGitHubConnect: UserPayload;
4029
4053
  /**
4030
4054
  * [DEPRECATED] Connects the Jira user to this Linear account via OAuth2.
@@ -4116,8 +4140,7 @@ export declare type MutationAttachmentLinkGitLabMrArgs = {
4116
4140
  id?: Maybe<Scalars["String"]>;
4117
4141
  issueId: Scalars["String"];
4118
4142
  number: Scalars["Float"];
4119
- owner: Scalars["String"];
4120
- repo: Scalars["String"];
4143
+ projectPathWithNamespace: Scalars["String"];
4121
4144
  url: Scalars["String"];
4122
4145
  };
4123
4146
  export declare type MutationAttachmentLinkIntercomArgs = {
@@ -4294,6 +4317,9 @@ export declare type MutationIntegrationFrontArgs = {
4294
4317
  code: Scalars["String"];
4295
4318
  redirectUri: Scalars["String"];
4296
4319
  };
4320
+ export declare type MutationIntegrationGitHubPersonalArgs = {
4321
+ code: Scalars["String"];
4322
+ };
4297
4323
  export declare type MutationIntegrationGithubConnectArgs = {
4298
4324
  installationId: Scalars["String"];
4299
4325
  };
@@ -6431,7 +6457,7 @@ export declare type ProjectMilestoneConnection = {
6431
6457
  export declare type ProjectMilestoneCreateInput = {
6432
6458
  /** The description of the project milestone in markdown format. */
6433
6459
  description?: Maybe<Scalars["String"]>;
6434
- /** The description of the project milestone as a Prosemirror document. */
6460
+ /** [Internal] The description of the project milestone as a Prosemirror document. */
6435
6461
  descriptionData?: Maybe<Scalars["JSONObject"]>;
6436
6462
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
6437
6463
  id?: Maybe<Scalars["String"]>;
@@ -6479,7 +6505,7 @@ export declare type ProjectMilestonePayload = {
6479
6505
  export declare type ProjectMilestoneUpdateInput = {
6480
6506
  /** The description of the project milestone in markdown format. */
6481
6507
  description?: Maybe<Scalars["String"]>;
6482
- /** The description of the project milestone as a Prosemirror document. */
6508
+ /** [Internal] The description of the project milestone as a Prosemirror document. */
6483
6509
  descriptionData?: Maybe<Scalars["JSONObject"]>;
6484
6510
  /** The name of the project milestone. */
6485
6511
  name?: Maybe<Scalars["String"]>;
@@ -6798,7 +6824,7 @@ export declare type ProjectUpdateConnection = {
6798
6824
  export declare type ProjectUpdateCreateInput = {
6799
6825
  /** The content of the project update in markdown format. */
6800
6826
  body?: Maybe<Scalars["String"]>;
6801
- /** The content of the project update as a Prosemirror document. */
6827
+ /** [Internal] The content of the project update as a Prosemirror document. */
6802
6828
  bodyData?: Maybe<Scalars["JSON"]>;
6803
6829
  /** The health of the project at the time of the update. */
6804
6830
  health?: Maybe<ProjectUpdateHealthType>;
@@ -8103,10 +8129,14 @@ export declare type SlaStatusComparator = {
8103
8129
  /** Slack Asks specific settings. */
8104
8130
  export declare type SlackAsksSettings = {
8105
8131
  __typename?: "SlackAsksSettings";
8132
+ /** The user role type that is allowed to manage Asks settings. */
8133
+ canAdministrate?: Maybe<UserRoleType>;
8106
8134
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
8107
8135
  slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
8108
8136
  };
8109
8137
  export declare type SlackAsksSettingsInput = {
8138
+ /** The user role type that is allowed to manage Asks settings. */
8139
+ canAdministrate?: Maybe<UserRoleType>;
8110
8140
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
8111
8141
  slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
8112
8142
  };
@@ -8133,6 +8163,8 @@ export declare type SlackChannelNameMapping = {
8133
8163
  autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
8134
8164
  /** Whether or not top-level messages in this channel should automatically create Asks */
8135
8165
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
8166
+ /** Whether or not we the Linear Asks bot has been added to this Slack channel */
8167
+ botAdded?: Maybe<Scalars["Boolean"]>;
8136
8168
  /** The Slack channel ID. */
8137
8169
  id: Scalars["String"];
8138
8170
  /** Whether or not the Slack channel is private */
@@ -8151,6 +8183,8 @@ export declare type SlackChannelNameMappingInput = {
8151
8183
  autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
8152
8184
  /** Whether or not top-level messages in this channel should automatically create Asks */
8153
8185
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
8186
+ /** Whether or not we the Linear Asks bot has been added to this Slack channel */
8187
+ botAdded?: Maybe<Scalars["Boolean"]>;
8154
8188
  /** The Slack channel ID. */
8155
8189
  id: Scalars["String"];
8156
8190
  /** Whether or not the Slack channel is private */
@@ -10045,16 +10079,16 @@ export declare type ActorBotFragment = {
10045
10079
  } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
10046
10080
  export declare type CommentFragment = {
10047
10081
  __typename: "Comment";
10048
- } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
10082
+ } & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
10049
10083
  botActor?: Maybe<{
10050
10084
  __typename?: "ActorBot";
10051
10085
  } & ActorBotFragment>;
10052
10086
  resolvingComment?: Maybe<{
10053
10087
  __typename?: "Comment";
10054
10088
  } & Pick<Comment, "id">>;
10055
- documentContent: {
10089
+ documentContent?: Maybe<{
10056
10090
  __typename?: "DocumentContent";
10057
- } & DocumentContentFragment;
10091
+ } & DocumentContentFragment>;
10058
10092
  issue: {
10059
10093
  __typename?: "Issue";
10060
10094
  } & Pick<Issue, "id">;
@@ -10109,7 +10143,7 @@ export declare type CustomViewNotificationSubscriptionFragment = {
10109
10143
  };
10110
10144
  export declare type CustomViewFragment = {
10111
10145
  __typename: "CustomView";
10112
- } & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
10146
+ } & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
10113
10147
  team?: Maybe<{
10114
10148
  __typename?: "Team";
10115
10149
  } & Pick<Team, "id">>;
@@ -10147,7 +10181,7 @@ export declare type CycleNotificationSubscriptionFragment = {
10147
10181
  };
10148
10182
  export declare type DocumentContentFragment = {
10149
10183
  __typename: "DocumentContent";
10150
- } & Pick<DocumentContent, "contentData" | "content" | "contentState" | "updatedAt" | "restoredAt" | "archivedAt" | "createdAt" | "id"> & {
10184
+ } & Pick<DocumentContent, "content" | "contentState" | "updatedAt" | "restoredAt" | "archivedAt" | "createdAt" | "id"> & {
10151
10185
  document?: Maybe<{
10152
10186
  __typename?: "Document";
10153
10187
  } & Pick<Document, "id">>;
@@ -10163,7 +10197,7 @@ export declare type DocumentContentFragment = {
10163
10197
  };
10164
10198
  export declare type DocumentContentHistoryFragment = {
10165
10199
  __typename: "DocumentContentHistory";
10166
- } & Pick<DocumentContentHistory, "actorIds" | "contentData" | "updatedAt" | "archivedAt" | "createdAt" | "contentDataSnapshotAt" | "id"> & {
10200
+ } & Pick<DocumentContentHistory, "actorIds" | "updatedAt" | "archivedAt" | "createdAt" | "contentDataSnapshotAt" | "id"> & {
10167
10201
  documentContent: {
10168
10202
  __typename?: "DocumentContent";
10169
10203
  } & DocumentContentFragment;
@@ -10859,6 +10893,9 @@ export declare type AttachmentFragment = {
10859
10893
  export declare type IssueRelationHistoryPayloadFragment = {
10860
10894
  __typename: "IssueRelationHistoryPayload";
10861
10895
  } & Pick<IssueRelationHistoryPayload, "identifier" | "type">;
10896
+ export declare type JiraPersonalSettingsFragment = {
10897
+ __typename: "JiraPersonalSettings";
10898
+ } & Pick<JiraPersonalSettings, "siteName">;
10862
10899
  export declare type JiraSettingsFragment = {
10863
10900
  __typename: "JiraSettings";
10864
10901
  } & {
@@ -11087,7 +11124,7 @@ export declare type OauthClientFragment = {
11087
11124
  };
11088
11125
  export declare type SlackChannelNameMappingFragment = {
11089
11126
  __typename: "SlackChannelNameMapping";
11090
- } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateOnBotMention" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji"> & {
11127
+ } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateOnBotMention" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji" | "botAdded"> & {
11091
11128
  teams: Array<{
11092
11129
  __typename?: "SlackAsksTeamSettings";
11093
11130
  } & SlackAsksTeamSettingsFragment>;
@@ -11175,6 +11212,9 @@ export declare type IntegrationSettingsFragment = {
11175
11212
  jira?: Maybe<{
11176
11213
  __typename?: "JiraSettings";
11177
11214
  } & JiraSettingsFragment>;
11215
+ jiraPersonal?: Maybe<{
11216
+ __typename?: "JiraPersonalSettings";
11217
+ } & JiraPersonalSettingsFragment>;
11178
11218
  notion?: Maybe<{
11179
11219
  __typename?: "NotionSettings";
11180
11220
  } & NotionSettingsFragment>;
@@ -11231,7 +11271,7 @@ export declare type SlackAsksTeamSettingsFragment = {
11231
11271
  } & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
11232
11272
  export declare type AuthenticationSessionFragment = {
11233
11273
  __typename: "AuthenticationSession";
11234
- } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "lastActiveAt" | "id">;
11274
+ } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
11235
11275
  export declare type FavoriteFragment = {
11236
11276
  __typename: "Favorite";
11237
11277
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -11376,7 +11416,7 @@ export declare type AuthResolverResponseFragment = {
11376
11416
  };
11377
11417
  export declare type AuthenticationSessionResponseFragment = {
11378
11418
  __typename: "AuthenticationSessionResponse";
11379
- } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "lastActiveAt" | "id">;
11419
+ } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
11380
11420
  export declare type CommentConnectionFragment = {
11381
11421
  __typename: "CommentConnection";
11382
11422
  } & {
@@ -11479,7 +11519,7 @@ export declare type DocumentContentHistoryPayloadFragment = {
11479
11519
  };
11480
11520
  export declare type DocumentContentHistoryTypeFragment = {
11481
11521
  __typename: "DocumentContentHistoryType";
11482
- } & Pick<DocumentContentHistoryType, "actorIds" | "id" | "createdAt" | "contentDataSnapshotAt" | "contentData">;
11522
+ } & Pick<DocumentContentHistoryType, "actorIds" | "id" | "createdAt" | "contentDataSnapshotAt">;
11483
11523
  export declare type DocumentPayloadFragment = {
11484
11524
  __typename: "DocumentPayload";
11485
11525
  } & Pick<DocumentPayload, "lastSyncId" | "success"> & {
@@ -12887,9 +12927,9 @@ export declare type Comment_DocumentContentQuery = {
12887
12927
  comment: {
12888
12928
  __typename?: "Comment";
12889
12929
  } & {
12890
- documentContent: {
12930
+ documentContent?: Maybe<{
12891
12931
  __typename?: "DocumentContent";
12892
- } & DocumentContentFragment;
12932
+ } & DocumentContentFragment>;
12893
12933
  };
12894
12934
  };
12895
12935
  export declare type CommentsQueryVariables = Exact<{
@@ -15100,8 +15140,7 @@ export declare type AttachmentLinkGitLabMrMutationVariables = Exact<{
15100
15140
  id?: Maybe<Scalars["String"]>;
15101
15141
  issueId: Scalars["String"];
15102
15142
  number: Scalars["Float"];
15103
- owner: Scalars["String"];
15104
- repo: Scalars["String"];
15143
+ projectPathWithNamespace: Scalars["String"];
15105
15144
  url: Scalars["String"];
15106
15145
  }>;
15107
15146
  export declare type AttachmentLinkGitLabMrMutation = {
@@ -15573,6 +15612,16 @@ export declare type IntegrationFrontMutation = {
15573
15612
  __typename?: "IntegrationPayload";
15574
15613
  } & IntegrationPayloadFragment;
15575
15614
  };
15615
+ export declare type IntegrationGitHubPersonalMutationVariables = Exact<{
15616
+ code: Scalars["String"];
15617
+ }>;
15618
+ export declare type IntegrationGitHubPersonalMutation = {
15619
+ __typename?: "Mutation";
15620
+ } & {
15621
+ integrationGitHubPersonal: {
15622
+ __typename?: "IntegrationPayload";
15623
+ } & IntegrationPayloadFragment;
15624
+ };
15576
15625
  export declare type CreateIntegrationGithubCommitMutationVariables = Exact<{
15577
15626
  [key: string]: never;
15578
15627
  }>;
@@ -17137,6 +17186,7 @@ export declare const IntercomSettingsFragmentDoc: DocumentNode<IntercomSettingsF
17137
17186
  export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFragment, unknown>;
17138
17187
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
17139
17188
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
17189
+ export declare const JiraPersonalSettingsFragmentDoc: DocumentNode<JiraPersonalSettingsFragment, unknown>;
17140
17190
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
17141
17191
  export declare const PagerDutyScheduleInfoFragmentDoc: DocumentNode<PagerDutyScheduleInfoFragment, unknown>;
17142
17192
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
@@ -18483,8 +18533,7 @@ export declare const AttachmentLinkGitLabMrDocument: DocumentNode<AttachmentLink
18483
18533
  id?: Maybe<string> | undefined;
18484
18534
  issueId: Scalars["String"];
18485
18535
  number: Scalars["Float"];
18486
- owner: Scalars["String"];
18487
- repo: Scalars["String"];
18536
+ projectPathWithNamespace: Scalars["String"];
18488
18537
  url: Scalars["String"];
18489
18538
  }>>;
18490
18539
  export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
@@ -18655,6 +18704,9 @@ export declare const IntegrationFrontDocument: DocumentNode<IntegrationFrontMuta
18655
18704
  code: Scalars["String"];
18656
18705
  redirectUri: Scalars["String"];
18657
18706
  }>>;
18707
+ export declare const IntegrationGitHubPersonalDocument: DocumentNode<IntegrationGitHubPersonalMutation, Exact<{
18708
+ code: Scalars["String"];
18709
+ }>>;
18658
18710
  export declare const CreateIntegrationGithubCommitDocument: DocumentNode<CreateIntegrationGithubCommitMutation, Exact<{
18659
18711
  [key: string]: never;
18660
18712
  }>>;