@linear/sdk 10.0.0 → 12.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"]>;
@@ -406,6 +406,17 @@ export declare type AuthMembership = {
406
406
  /** The authorizing userId */
407
407
  userId: Scalars["String"];
408
408
  };
409
+ export declare type AuthOauthClient = {
410
+ __typename?: "AuthOauthClient";
411
+ /** OAuth application's client ID. */
412
+ clientId: Scalars["String"];
413
+ /** OAuth application's client secret. */
414
+ clientSecret: Scalars["String"];
415
+ /** The unique identifier of the entity. */
416
+ id: Scalars["ID"];
417
+ /** List of allowed redirect URIs for the application. */
418
+ redirectUris: Array<Scalars["String"]>;
419
+ };
409
420
  /** An organization. Organizations are root-level objects that contain users and teams. */
410
421
  export declare type AuthOrganization = {
411
422
  __typename?: "AuthOrganization";
@@ -463,6 +474,8 @@ export declare type AuthUser = {
463
474
  /** User authentication session. */
464
475
  export declare type AuthenticationSession = {
465
476
  __typename?: "AuthenticationSession";
477
+ /** Used web browser. */
478
+ browserType?: Maybe<Scalars["String"]>;
466
479
  /** Client used for the session */
467
480
  client?: Maybe<Scalars["String"]>;
468
481
  /** Country codes of all seen locations. */
@@ -495,6 +508,8 @@ export declare type AuthenticationSession = {
495
508
  };
496
509
  export declare type AuthenticationSessionResponse = {
497
510
  __typename?: "AuthenticationSessionResponse";
511
+ /** Used web browser. */
512
+ browserType?: Maybe<Scalars["String"]>;
498
513
  /** Client used for the session */
499
514
  client?: Maybe<Scalars["String"]>;
500
515
  /** Country codes of all seen locations. */
@@ -563,7 +578,7 @@ export declare type Comment = Node & {
563
578
  archivedAt?: Maybe<Scalars["DateTime"]>;
564
579
  /** The comment content in markdown format. */
565
580
  body: Scalars["String"];
566
- /** The comment content as a Prosemirror document. */
581
+ /** [Internal] The comment content as a Prosemirror document. */
567
582
  bodyData: Scalars["String"];
568
583
  /** The bot that created the comment */
569
584
  botActor?: Maybe<ActorBot>;
@@ -572,7 +587,7 @@ export declare type Comment = Node & {
572
587
  /** The time at which the entity was created. */
573
588
  createdAt: Scalars["DateTime"];
574
589
  /** The document content that the comment is associated with. */
575
- documentContent: DocumentContent;
590
+ documentContent?: Maybe<DocumentContent>;
576
591
  /** The time user edited the comment. */
577
592
  editedAt?: Maybe<Scalars["DateTime"]>;
578
593
  /** [ALPHA] The external user who wrote the comment. */
@@ -648,7 +663,7 @@ export declare type CommentConnection = {
648
663
  export declare type CommentCreateInput = {
649
664
  /** The comment content in markdown format. */
650
665
  body?: Maybe<Scalars["String"]>;
651
- /** The comment content as a Prosemirror document. */
666
+ /** [Internal] The comment content as a Prosemirror document. */
652
667
  bodyData?: Maybe<Scalars["JSON"]>;
653
668
  /** Create comment as a user with the provided name. This option is only available to OAuth applications creating comments in `actor=application` mode. */
654
669
  createAsUser?: Maybe<Scalars["String"]>;
@@ -849,6 +864,8 @@ export declare type CustomView = Node & {
849
864
  icon?: Maybe<Scalars["String"]>;
850
865
  /** The unique identifier of the entity. */
851
866
  id: Scalars["ID"];
867
+ /** The model name of the custom view. */
868
+ modelName: Scalars["String"];
852
869
  /** The name of the custom view. */
853
870
  name: Scalars["String"];
854
871
  /** The organization of the custom view. */
@@ -1286,7 +1303,7 @@ export declare type DocumentContent = Node & {
1286
1303
  archivedAt?: Maybe<Scalars["DateTime"]>;
1287
1304
  /** The document content in markdown format. */
1288
1305
  content?: Maybe<Scalars["String"]>;
1289
- /** The document content as JSON. */
1306
+ /** [Internal] The document content as a Prosemirror document. */
1290
1307
  contentData?: Maybe<Scalars["JSONObject"]>;
1291
1308
  /** The document content state as a base64 encoded string. */
1292
1309
  contentState?: Maybe<Scalars["String"]>;
@@ -1327,7 +1344,7 @@ export declare type DocumentContentHistory = Node & {
1327
1344
  actorIds: Array<Scalars["String"]>;
1328
1345
  /** The time at which the entity was archived. Null if the entity has not been archived. */
1329
1346
  archivedAt?: Maybe<Scalars["DateTime"]>;
1330
- /** The document content as JSON. */
1347
+ /** [Internal] The document content as a Prosemirror document. */
1331
1348
  contentData?: Maybe<Scalars["JSONObject"]>;
1332
1349
  /** The timestamp associated with the DocumentContent when it was originally saved */
1333
1350
  contentDataSnapshotAt: Scalars["DateTime"];
@@ -1355,7 +1372,7 @@ export declare type DocumentContentHistoryType = {
1355
1372
  __typename?: "DocumentContentHistoryType";
1356
1373
  /** The ID of the author of the change. */
1357
1374
  actorIds?: Maybe<Array<Scalars["String"]>>;
1358
- /** The document content as Prosemirror document. */
1375
+ /** [Internal] The document content as Prosemirror document. */
1359
1376
  contentData: Scalars["JSON"];
1360
1377
  /** 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
1378
  contentDataSnapshotAt: Scalars["DateTime"];
@@ -2023,6 +2040,7 @@ export declare enum IntegrationService {
2023
2040
  GitHubSync = "gitHubSync",
2024
2041
  Github = "github",
2025
2042
  GithubCommit = "githubCommit",
2043
+ GithubPersonal = "githubPersonal",
2026
2044
  Gitlab = "gitlab",
2027
2045
  GoogleCalendarPersonal = "googleCalendarPersonal",
2028
2046
  GoogleSheets = "googleSheets",
@@ -2052,6 +2070,7 @@ export declare type IntegrationSettings = {
2052
2070
  googleSheets?: Maybe<GoogleSheetsSettings>;
2053
2071
  intercom?: Maybe<IntercomSettings>;
2054
2072
  jira?: Maybe<JiraSettings>;
2073
+ jiraPersonal?: Maybe<JiraPersonalSettings>;
2055
2074
  notion?: Maybe<NotionSettings>;
2056
2075
  pagerDuty?: Maybe<PagerDutySettings>;
2057
2076
  sentry?: Maybe<SentrySettings>;
@@ -2070,6 +2089,7 @@ export declare type IntegrationSettingsInput = {
2070
2089
  googleSheets?: Maybe<GoogleSheetsSettingsInput>;
2071
2090
  intercom?: Maybe<IntercomSettingsInput>;
2072
2091
  jira?: Maybe<JiraSettingsInput>;
2092
+ jiraPersonal?: Maybe<JiraPersonalSettingsInput>;
2073
2093
  notion?: Maybe<NotionSettingsInput>;
2074
2094
  pagerDuty?: Maybe<PagerDutyInput>;
2075
2095
  sentry?: Maybe<SentrySettingsInput>;
@@ -2593,7 +2613,7 @@ export declare type IssueCreateInput = {
2593
2613
  cycleId?: Maybe<Scalars["String"]>;
2594
2614
  /** The issue description in markdown format. */
2595
2615
  description?: Maybe<Scalars["String"]>;
2596
- /** The issue description as a Prosemirror document. */
2616
+ /** [Internal] The issue description as a Prosemirror document. */
2597
2617
  descriptionData?: Maybe<Scalars["JSON"]>;
2598
2618
  /** 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
2619
  displayIconUrl?: Maybe<Scalars["String"]>;
@@ -3543,17 +3563,31 @@ export declare type JiraConfigurationInput = {
3543
3563
  /** Tuple for mapping Jira projects to Linear teams. */
3544
3564
  export declare type JiraLinearMapping = {
3545
3565
  __typename?: "JiraLinearMapping";
3566
+ /** Whether the sync for this mapping is bidirectional. */
3567
+ bidirectional?: Maybe<Scalars["Boolean"]>;
3546
3568
  /** The Jira id for this project. */
3547
3569
  jiraProjectId: Scalars["String"];
3548
3570
  /** The Linear team id to map to the given project. */
3549
3571
  linearTeamId: Scalars["String"];
3550
3572
  };
3551
3573
  export declare type JiraLinearMappingInput = {
3574
+ /** Whether the sync for this mapping is bidirectional. */
3575
+ bidirectional?: Maybe<Scalars["Boolean"]>;
3552
3576
  /** The Jira id for this project. */
3553
3577
  jiraProjectId: Scalars["String"];
3554
3578
  /** The Linear team id to map to the given project. */
3555
3579
  linearTeamId: Scalars["String"];
3556
3580
  };
3581
+ /** Jira personal specific settings. */
3582
+ export declare type JiraPersonalSettings = {
3583
+ __typename?: "JiraPersonalSettings";
3584
+ /** The name of the Jira site currently authorized through the integration. */
3585
+ siteName?: Maybe<Scalars["String"]>;
3586
+ };
3587
+ export declare type JiraPersonalSettingsInput = {
3588
+ /** The name of the Jira site currently authorized through the integration. */
3589
+ siteName?: Maybe<Scalars["String"]>;
3590
+ };
3557
3591
  /** Metadata about a Jira project. */
3558
3592
  export declare type JiraProjectData = {
3559
3593
  __typename?: "JiraProjectData";
@@ -3748,6 +3782,8 @@ export declare type Mutation = {
3748
3782
  integrationFigma: IntegrationPayload;
3749
3783
  /** Integrates the organization with Front. */
3750
3784
  integrationFront: IntegrationPayload;
3785
+ /** Connect your GitHub account to Linear. */
3786
+ integrationGitHubPersonal: IntegrationPayload;
3751
3787
  /** Generates a webhook for the GitHub commit integration. */
3752
3788
  integrationGithubCommitCreate: GitHubCommitIntegrationPayload;
3753
3789
  /** Connects the organization with the GitHub App. */
@@ -4024,7 +4060,10 @@ export declare type Mutation = {
4024
4060
  userExternalUserDisconnect: UserPayload;
4025
4061
  /** Updates a user's settings flag. */
4026
4062
  userFlagUpdate: UserSettingsFlagPayload;
4027
- /** Connects the GitHub user to this Linear account via OAuth2. */
4063
+ /**
4064
+ * [DEPRECATED] Connects the GitHub user to this Linear account via OAuth2.
4065
+ * @deprecated Replaced by integrationGitHubPersonal mutation on Integration resolver.
4066
+ */
4028
4067
  userGitHubConnect: UserPayload;
4029
4068
  /**
4030
4069
  * [DEPRECATED] Connects the Jira user to this Linear account via OAuth2.
@@ -4116,8 +4155,7 @@ export declare type MutationAttachmentLinkGitLabMrArgs = {
4116
4155
  id?: Maybe<Scalars["String"]>;
4117
4156
  issueId: Scalars["String"];
4118
4157
  number: Scalars["Float"];
4119
- owner: Scalars["String"];
4120
- repo: Scalars["String"];
4158
+ projectPathWithNamespace: Scalars["String"];
4121
4159
  url: Scalars["String"];
4122
4160
  };
4123
4161
  export declare type MutationAttachmentLinkIntercomArgs = {
@@ -4294,6 +4332,9 @@ export declare type MutationIntegrationFrontArgs = {
4294
4332
  code: Scalars["String"];
4295
4333
  redirectUri: Scalars["String"];
4296
4334
  };
4335
+ export declare type MutationIntegrationGitHubPersonalArgs = {
4336
+ code: Scalars["String"];
4337
+ };
4297
4338
  export declare type MutationIntegrationGithubConnectArgs = {
4298
4339
  installationId: Scalars["String"];
4299
4340
  };
@@ -6431,7 +6472,7 @@ export declare type ProjectMilestoneConnection = {
6431
6472
  export declare type ProjectMilestoneCreateInput = {
6432
6473
  /** The description of the project milestone in markdown format. */
6433
6474
  description?: Maybe<Scalars["String"]>;
6434
- /** The description of the project milestone as a Prosemirror document. */
6475
+ /** [Internal] The description of the project milestone as a Prosemirror document. */
6435
6476
  descriptionData?: Maybe<Scalars["JSONObject"]>;
6436
6477
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
6437
6478
  id?: Maybe<Scalars["String"]>;
@@ -6479,7 +6520,7 @@ export declare type ProjectMilestonePayload = {
6479
6520
  export declare type ProjectMilestoneUpdateInput = {
6480
6521
  /** The description of the project milestone in markdown format. */
6481
6522
  description?: Maybe<Scalars["String"]>;
6482
- /** The description of the project milestone as a Prosemirror document. */
6523
+ /** [Internal] The description of the project milestone as a Prosemirror document. */
6483
6524
  descriptionData?: Maybe<Scalars["JSONObject"]>;
6484
6525
  /** The name of the project milestone. */
6485
6526
  name?: Maybe<Scalars["String"]>;
@@ -6798,7 +6839,7 @@ export declare type ProjectUpdateConnection = {
6798
6839
  export declare type ProjectUpdateCreateInput = {
6799
6840
  /** The content of the project update in markdown format. */
6800
6841
  body?: Maybe<Scalars["String"]>;
6801
- /** The content of the project update as a Prosemirror document. */
6842
+ /** [Internal] The content of the project update as a Prosemirror document. */
6802
6843
  bodyData?: Maybe<Scalars["JSON"]>;
6803
6844
  /** The health of the project at the time of the update. */
6804
6845
  health?: Maybe<ProjectUpdateHealthType>;
@@ -8103,10 +8144,14 @@ export declare type SlaStatusComparator = {
8103
8144
  /** Slack Asks specific settings. */
8104
8145
  export declare type SlackAsksSettings = {
8105
8146
  __typename?: "SlackAsksSettings";
8147
+ /** The user role type that is allowed to manage Asks settings. */
8148
+ canAdministrate: UserRoleType;
8106
8149
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
8107
8150
  slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
8108
8151
  };
8109
8152
  export declare type SlackAsksSettingsInput = {
8153
+ /** The user role type that is allowed to manage Asks settings. */
8154
+ canAdministrate: UserRoleType;
8110
8155
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
8111
8156
  slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
8112
8157
  };
@@ -8133,6 +8178,8 @@ export declare type SlackChannelNameMapping = {
8133
8178
  autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
8134
8179
  /** Whether or not top-level messages in this channel should automatically create Asks */
8135
8180
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
8181
+ /** Whether or not we the Linear Asks bot has been added to this Slack channel */
8182
+ botAdded?: Maybe<Scalars["Boolean"]>;
8136
8183
  /** The Slack channel ID. */
8137
8184
  id: Scalars["String"];
8138
8185
  /** Whether or not the Slack channel is private */
@@ -8151,6 +8198,8 @@ export declare type SlackChannelNameMappingInput = {
8151
8198
  autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
8152
8199
  /** Whether or not top-level messages in this channel should automatically create Asks */
8153
8200
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
8201
+ /** Whether or not we the Linear Asks bot has been added to this Slack channel */
8202
+ botAdded?: Maybe<Scalars["Boolean"]>;
8154
8203
  /** The Slack channel ID. */
8155
8204
  id: Scalars["String"];
8156
8205
  /** Whether or not the Slack channel is private */
@@ -10045,16 +10094,16 @@ export declare type ActorBotFragment = {
10045
10094
  } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
10046
10095
  export declare type CommentFragment = {
10047
10096
  __typename: "Comment";
10048
- } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
10097
+ } & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
10049
10098
  botActor?: Maybe<{
10050
10099
  __typename?: "ActorBot";
10051
10100
  } & ActorBotFragment>;
10052
10101
  resolvingComment?: Maybe<{
10053
10102
  __typename?: "Comment";
10054
10103
  } & Pick<Comment, "id">>;
10055
- documentContent: {
10104
+ documentContent?: Maybe<{
10056
10105
  __typename?: "DocumentContent";
10057
- } & DocumentContentFragment;
10106
+ } & DocumentContentFragment>;
10058
10107
  issue: {
10059
10108
  __typename?: "Issue";
10060
10109
  } & Pick<Issue, "id">;
@@ -10109,7 +10158,7 @@ export declare type CustomViewNotificationSubscriptionFragment = {
10109
10158
  };
10110
10159
  export declare type CustomViewFragment = {
10111
10160
  __typename: "CustomView";
10112
- } & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
10161
+ } & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
10113
10162
  team?: Maybe<{
10114
10163
  __typename?: "Team";
10115
10164
  } & Pick<Team, "id">>;
@@ -10147,7 +10196,7 @@ export declare type CycleNotificationSubscriptionFragment = {
10147
10196
  };
10148
10197
  export declare type DocumentContentFragment = {
10149
10198
  __typename: "DocumentContent";
10150
- } & Pick<DocumentContent, "contentData" | "content" | "contentState" | "updatedAt" | "restoredAt" | "archivedAt" | "createdAt" | "id"> & {
10199
+ } & Pick<DocumentContent, "content" | "contentState" | "updatedAt" | "restoredAt" | "archivedAt" | "createdAt" | "id"> & {
10151
10200
  document?: Maybe<{
10152
10201
  __typename?: "Document";
10153
10202
  } & Pick<Document, "id">>;
@@ -10163,7 +10212,7 @@ export declare type DocumentContentFragment = {
10163
10212
  };
10164
10213
  export declare type DocumentContentHistoryFragment = {
10165
10214
  __typename: "DocumentContentHistory";
10166
- } & Pick<DocumentContentHistory, "actorIds" | "contentData" | "updatedAt" | "archivedAt" | "createdAt" | "contentDataSnapshotAt" | "id"> & {
10215
+ } & Pick<DocumentContentHistory, "actorIds" | "updatedAt" | "archivedAt" | "createdAt" | "contentDataSnapshotAt" | "id"> & {
10167
10216
  documentContent: {
10168
10217
  __typename?: "DocumentContent";
10169
10218
  } & DocumentContentFragment;
@@ -10859,6 +10908,9 @@ export declare type AttachmentFragment = {
10859
10908
  export declare type IssueRelationHistoryPayloadFragment = {
10860
10909
  __typename: "IssueRelationHistoryPayload";
10861
10910
  } & Pick<IssueRelationHistoryPayload, "identifier" | "type">;
10911
+ export declare type JiraPersonalSettingsFragment = {
10912
+ __typename: "JiraPersonalSettings";
10913
+ } & Pick<JiraPersonalSettings, "siteName">;
10862
10914
  export declare type JiraSettingsFragment = {
10863
10915
  __typename: "JiraSettings";
10864
10916
  } & {
@@ -11087,7 +11139,7 @@ export declare type OauthClientFragment = {
11087
11139
  };
11088
11140
  export declare type SlackChannelNameMappingFragment = {
11089
11141
  __typename: "SlackChannelNameMapping";
11090
- } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateOnBotMention" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji"> & {
11142
+ } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateOnBotMention" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji" | "botAdded"> & {
11091
11143
  teams: Array<{
11092
11144
  __typename?: "SlackAsksTeamSettings";
11093
11145
  } & SlackAsksTeamSettingsFragment>;
@@ -11175,6 +11227,9 @@ export declare type IntegrationSettingsFragment = {
11175
11227
  jira?: Maybe<{
11176
11228
  __typename?: "JiraSettings";
11177
11229
  } & JiraSettingsFragment>;
11230
+ jiraPersonal?: Maybe<{
11231
+ __typename?: "JiraPersonalSettings";
11232
+ } & JiraPersonalSettingsFragment>;
11178
11233
  notion?: Maybe<{
11179
11234
  __typename?: "NotionSettings";
11180
11235
  } & NotionSettingsFragment>;
@@ -11222,7 +11277,7 @@ export declare type UserSettingsFragment = {
11222
11277
  };
11223
11278
  export declare type JiraLinearMappingFragment = {
11224
11279
  __typename: "JiraLinearMapping";
11225
- } & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId">;
11280
+ } & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId" | "bidirectional">;
11226
11281
  export declare type TeamRepoMappingFragment = {
11227
11282
  __typename: "TeamRepoMapping";
11228
11283
  } & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId">;
@@ -11231,7 +11286,7 @@ export declare type SlackAsksTeamSettingsFragment = {
11231
11286
  } & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
11232
11287
  export declare type AuthenticationSessionFragment = {
11233
11288
  __typename: "AuthenticationSession";
11234
- } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "lastActiveAt" | "id">;
11289
+ } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
11235
11290
  export declare type FavoriteFragment = {
11236
11291
  __typename: "Favorite";
11237
11292
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -11361,6 +11416,9 @@ export declare type AuthApiKeyPayloadFragment = {
11361
11416
  export declare type AuthIntegrationFragment = {
11362
11417
  __typename: "AuthIntegration";
11363
11418
  } & Pick<AuthIntegration, "id">;
11419
+ export declare type AuthOauthClientFragment = {
11420
+ __typename: "AuthOauthClient";
11421
+ } & Pick<AuthOauthClient, "redirectUris" | "clientId" | "clientSecret" | "id">;
11364
11422
  export declare type AuthResolverResponseFragment = {
11365
11423
  __typename: "AuthResolverResponse";
11366
11424
  } & Pick<AuthResolverResponse, "email" | "lastUsedOrganizationId" | "token" | "allowDomainAccess" | "id"> & {
@@ -11376,7 +11434,7 @@ export declare type AuthResolverResponseFragment = {
11376
11434
  };
11377
11435
  export declare type AuthenticationSessionResponseFragment = {
11378
11436
  __typename: "AuthenticationSessionResponse";
11379
- } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "lastActiveAt" | "id">;
11437
+ } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
11380
11438
  export declare type CommentConnectionFragment = {
11381
11439
  __typename: "CommentConnection";
11382
11440
  } & {
@@ -11479,7 +11537,7 @@ export declare type DocumentContentHistoryPayloadFragment = {
11479
11537
  };
11480
11538
  export declare type DocumentContentHistoryTypeFragment = {
11481
11539
  __typename: "DocumentContentHistoryType";
11482
- } & Pick<DocumentContentHistoryType, "actorIds" | "id" | "createdAt" | "contentDataSnapshotAt" | "contentData">;
11540
+ } & Pick<DocumentContentHistoryType, "actorIds" | "id" | "createdAt" | "contentDataSnapshotAt">;
11483
11541
  export declare type DocumentPayloadFragment = {
11484
11542
  __typename: "DocumentPayload";
11485
11543
  } & Pick<DocumentPayload, "lastSyncId" | "success"> & {
@@ -12887,9 +12945,9 @@ export declare type Comment_DocumentContentQuery = {
12887
12945
  comment: {
12888
12946
  __typename?: "Comment";
12889
12947
  } & {
12890
- documentContent: {
12948
+ documentContent?: Maybe<{
12891
12949
  __typename?: "DocumentContent";
12892
- } & DocumentContentFragment;
12950
+ } & DocumentContentFragment>;
12893
12951
  };
12894
12952
  };
12895
12953
  export declare type CommentsQueryVariables = Exact<{
@@ -15100,8 +15158,7 @@ export declare type AttachmentLinkGitLabMrMutationVariables = Exact<{
15100
15158
  id?: Maybe<Scalars["String"]>;
15101
15159
  issueId: Scalars["String"];
15102
15160
  number: Scalars["Float"];
15103
- owner: Scalars["String"];
15104
- repo: Scalars["String"];
15161
+ projectPathWithNamespace: Scalars["String"];
15105
15162
  url: Scalars["String"];
15106
15163
  }>;
15107
15164
  export declare type AttachmentLinkGitLabMrMutation = {
@@ -15573,6 +15630,16 @@ export declare type IntegrationFrontMutation = {
15573
15630
  __typename?: "IntegrationPayload";
15574
15631
  } & IntegrationPayloadFragment;
15575
15632
  };
15633
+ export declare type IntegrationGitHubPersonalMutationVariables = Exact<{
15634
+ code: Scalars["String"];
15635
+ }>;
15636
+ export declare type IntegrationGitHubPersonalMutation = {
15637
+ __typename?: "Mutation";
15638
+ } & {
15639
+ integrationGitHubPersonal: {
15640
+ __typename?: "IntegrationPayload";
15641
+ } & IntegrationPayloadFragment;
15642
+ };
15576
15643
  export declare type CreateIntegrationGithubCommitMutationVariables = Exact<{
15577
15644
  [key: string]: never;
15578
15645
  }>;
@@ -17137,6 +17204,7 @@ export declare const IntercomSettingsFragmentDoc: DocumentNode<IntercomSettingsF
17137
17204
  export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFragment, unknown>;
17138
17205
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
17139
17206
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
17207
+ export declare const JiraPersonalSettingsFragmentDoc: DocumentNode<JiraPersonalSettingsFragment, unknown>;
17140
17208
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
17141
17209
  export declare const PagerDutyScheduleInfoFragmentDoc: DocumentNode<PagerDutyScheduleInfoFragment, unknown>;
17142
17210
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
@@ -17167,6 +17235,7 @@ export declare const AuthApiKeyDeletePayloadFragmentDoc: DocumentNode<AuthApiKey
17167
17235
  export declare const AuthApiKeyFragmentDoc: DocumentNode<AuthApiKeyFragment, unknown>;
17168
17236
  export declare const AuthApiKeyPayloadFragmentDoc: DocumentNode<AuthApiKeyPayloadFragment, unknown>;
17169
17237
  export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFragment, unknown>;
17238
+ export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
17170
17239
  export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
17171
17240
  export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
17172
17241
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
@@ -18483,8 +18552,7 @@ export declare const AttachmentLinkGitLabMrDocument: DocumentNode<AttachmentLink
18483
18552
  id?: Maybe<string> | undefined;
18484
18553
  issueId: Scalars["String"];
18485
18554
  number: Scalars["Float"];
18486
- owner: Scalars["String"];
18487
- repo: Scalars["String"];
18555
+ projectPathWithNamespace: Scalars["String"];
18488
18556
  url: Scalars["String"];
18489
18557
  }>>;
18490
18558
  export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
@@ -18655,6 +18723,9 @@ export declare const IntegrationFrontDocument: DocumentNode<IntegrationFrontMuta
18655
18723
  code: Scalars["String"];
18656
18724
  redirectUri: Scalars["String"];
18657
18725
  }>>;
18726
+ export declare const IntegrationGitHubPersonalDocument: DocumentNode<IntegrationGitHubPersonalMutation, Exact<{
18727
+ code: Scalars["String"];
18728
+ }>>;
18658
18729
  export declare const CreateIntegrationGithubCommitDocument: DocumentNode<CreateIntegrationGithubCommitMutation, Exact<{
18659
18730
  [key: string]: never;
18660
18731
  }>>;