@linear/sdk 8.0.0 → 9.0.1

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.
@@ -368,6 +368,34 @@ export declare type AuditEntryType = {
368
368
  /** The audit entry type. */
369
369
  type: Scalars["String"];
370
370
  };
371
+ export declare type AuthApiKey = {
372
+ __typename?: "AuthApiKey";
373
+ /** The unique identifier of the entity. */
374
+ id: Scalars["ID"];
375
+ };
376
+ export declare type AuthApiKeyCreateInput = {
377
+ /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
378
+ id?: Maybe<Scalars["String"]>;
379
+ /** The API key value. */
380
+ key: Scalars["String"];
381
+ };
382
+ export declare type AuthApiKeyDeletePayload = {
383
+ __typename?: "AuthApiKeyDeletePayload";
384
+ /** Whether the operation was successful. */
385
+ success: Scalars["Boolean"];
386
+ };
387
+ export declare type AuthApiKeyPayload = {
388
+ __typename?: "AuthApiKeyPayload";
389
+ /** The auth API key that was created. */
390
+ authApiKey: AuthApiKey;
391
+ /** Whether the operation was successful. */
392
+ success: Scalars["Boolean"];
393
+ };
394
+ export declare type AuthIntegration = {
395
+ __typename?: "AuthIntegration";
396
+ /** The unique identifier of the entity. */
397
+ id: Scalars["ID"];
398
+ };
371
399
  /** [INTERNAL] An OAuth userId/createdDate tuple */
372
400
  export declare type AuthMembership = {
373
401
  __typename?: "AuthMembership";
@@ -376,23 +404,133 @@ export declare type AuthMembership = {
376
404
  /** The authorizing userId */
377
405
  userId: Scalars["String"];
378
406
  };
407
+ /** An organization. Organizations are root-level objects that contain users and teams. */
408
+ export declare type AuthOrganization = {
409
+ __typename?: "AuthOrganization";
410
+ /** Allowed authentication providers, empty array means all are allowed */
411
+ allowedAuthServices: Array<Scalars["String"]>;
412
+ /** The time at which deletion of the organization was requested. */
413
+ deletionRequestedAt?: Maybe<Scalars["DateTime"]>;
414
+ id: Scalars["ID"];
415
+ /** The organization's logo URL. */
416
+ logoUrl?: Maybe<Scalars["String"]>;
417
+ /** The organization's name. */
418
+ name: Scalars["String"];
419
+ /** Previously used URL keys for the organization (last 3 are kept and redirected). */
420
+ previousUrlKeys: Array<Scalars["String"]>;
421
+ /** Whether SAML authentication is enabled for organization. */
422
+ samlEnabled: Scalars["Boolean"];
423
+ /** The organization's unique URL key. */
424
+ urlKey: Scalars["String"];
425
+ userCount: Scalars["Float"];
426
+ };
379
427
  export declare type AuthResolverResponse = {
380
428
  __typename?: "AuthResolverResponse";
381
429
  /** Should the signup flow allow access for the domain. */
382
430
  allowDomainAccess?: Maybe<Scalars["Boolean"]>;
383
431
  /** Organizations this account has access to, but is not yet a member. */
384
- availableOrganizations?: Maybe<Array<Organization>>;
432
+ availableOrganizations?: Maybe<Array<AuthOrganization>>;
385
433
  /** Email for the authenticated account. */
386
434
  email?: Maybe<Scalars["String"]>;
387
435
  /** User account ID. */
388
436
  id: Scalars["String"];
389
437
  /** ID of the organization last accessed by the user. */
390
438
  lastUsedOrganizationId?: Maybe<Scalars["String"]>;
439
+ /** List of organizations this user account is part of but are currently locked because of the current auth service. */
440
+ lockedOrganizations?: Maybe<Array<AuthOrganization>>;
391
441
  /** JWT token for authentication of the account. */
392
442
  token?: Maybe<Scalars["String"]>;
393
443
  /** Users belonging to this account. */
394
- users: Array<User>;
444
+ users: Array<AuthUser>;
445
+ };
446
+ /** A user that has access to the the resources of an organization. */
447
+ export declare type AuthUser = {
448
+ __typename?: "AuthUser";
449
+ /** An URL to the user's avatar image. */
450
+ avatarUrl?: Maybe<Scalars["String"]>;
451
+ /** The user's display (nick) name. Unique within each organization. */
452
+ displayName: Scalars["String"];
453
+ /** The user's email address. */
454
+ email: Scalars["String"];
455
+ id: Scalars["ID"];
456
+ /** The user's full name. */
457
+ name: Scalars["String"];
458
+ /** Organization the user belongs to. */
459
+ organization: AuthOrganization;
460
+ };
461
+ /** User authentication session. */
462
+ export declare type AuthenticationSession = {
463
+ __typename?: "AuthenticationSession";
464
+ /** Client used for the session */
465
+ client?: Maybe<Scalars["String"]>;
466
+ /** Country codes of all seen locations. */
467
+ countryCodes: Array<Scalars["String"]>;
468
+ /** Date when the session was created. */
469
+ createdAt: Scalars["DateTime"];
470
+ id: Scalars["String"];
471
+ /** IP address. */
472
+ ip?: Maybe<Scalars["String"]>;
473
+ /** When was the session last seen */
474
+ lastActiveAt?: Maybe<Scalars["DateTime"]>;
475
+ /** Human readable location */
476
+ location?: Maybe<Scalars["String"]>;
477
+ /** Location city name. */
478
+ locationCity?: Maybe<Scalars["String"]>;
479
+ /** Location country name. */
480
+ locationCountry?: Maybe<Scalars["String"]>;
481
+ /** Location country code. */
482
+ locationCountryCode?: Maybe<Scalars["String"]>;
483
+ /** Name of the session, derived from the client and operating system */
484
+ name: Scalars["String"];
485
+ /** Operating system used for the session */
486
+ operatingSystem?: Maybe<Scalars["String"]>;
487
+ /** Type of application used to authenticate. */
488
+ type: AuthenticationSessionType;
489
+ /** Date when the session was last updated. */
490
+ updatedAt: Scalars["DateTime"];
491
+ /** Session's user-agent. */
492
+ userAgent?: Maybe<Scalars["String"]>;
493
+ };
494
+ export declare type AuthenticationSessionResponse = {
495
+ __typename?: "AuthenticationSessionResponse";
496
+ /** Client used for the session */
497
+ client?: Maybe<Scalars["String"]>;
498
+ /** Country codes of all seen locations. */
499
+ countryCodes: Array<Scalars["String"]>;
500
+ /** Date when the session was created. */
501
+ createdAt: Scalars["DateTime"];
502
+ id: Scalars["String"];
503
+ /** IP address. */
504
+ ip?: Maybe<Scalars["String"]>;
505
+ /** Identifies the session used to make the request. */
506
+ isCurrentSession: Scalars["Boolean"];
507
+ /** When was the session last seen */
508
+ lastActiveAt?: Maybe<Scalars["DateTime"]>;
509
+ /** Human readable location */
510
+ location?: Maybe<Scalars["String"]>;
511
+ /** Location city name. */
512
+ locationCity?: Maybe<Scalars["String"]>;
513
+ /** Location country name. */
514
+ locationCountry?: Maybe<Scalars["String"]>;
515
+ /** Location country code. */
516
+ locationCountryCode?: Maybe<Scalars["String"]>;
517
+ /** Name of the session, derived from the client and operating system */
518
+ name: Scalars["String"];
519
+ /** Operating system used for the session */
520
+ operatingSystem?: Maybe<Scalars["String"]>;
521
+ /** Type of application used to authenticate. */
522
+ type: AuthenticationSessionType;
523
+ /** Date when the session was last updated. */
524
+ updatedAt: Scalars["DateTime"];
525
+ /** Session's user-agent. */
526
+ userAgent?: Maybe<Scalars["String"]>;
395
527
  };
528
+ export declare enum AuthenticationSessionType {
529
+ Android = "android",
530
+ Desktop = "desktop",
531
+ Ios = "ios",
532
+ Web = "web"
533
+ }
396
534
  /** [INTERNAL] Public information of the OAuth application, plus the authorized scopes for a given user. */
397
535
  export declare type AuthorizedApplication = {
398
536
  __typename?: "AuthorizedApplication";
@@ -431,6 +569,8 @@ export declare type Comment = Node & {
431
569
  children: CommentConnection;
432
570
  /** The time at which the entity was created. */
433
571
  createdAt: Scalars["DateTime"];
572
+ /** The document content that the comment is associated with. */
573
+ documentContent: DocumentContent;
434
574
  /** The time user edited the comment. */
435
575
  editedAt?: Maybe<Scalars["DateTime"]>;
436
576
  /** [ALPHA] The external user who wrote the comment. */
@@ -441,11 +581,15 @@ export declare type Comment = Node & {
441
581
  issue: Issue;
442
582
  /** The parent comment under which the current comment is nested. */
443
583
  parent?: Maybe<Comment>;
584
+ /** [ALPHA] The project update that the comment is associated with. */
585
+ projectUpdate: ProjectUpdate;
444
586
  /** Emoji reaction summary, grouped by emoji type */
445
587
  reactionData: Scalars["JSONObject"];
446
- /** [ALPHA] The comment that resolved the thread. */
588
+ /** The time the resolvingUser resolved the thread. */
589
+ resolvedAt?: Maybe<Scalars["DateTime"]>;
590
+ /** The comment that resolved the thread. */
447
591
  resolvingComment?: Maybe<Comment>;
448
- /** [ALPHA] The user that resolved the thread. */
592
+ /** The user that resolved the thread. */
449
593
  resolvingUser?: Maybe<User>;
450
594
  /**
451
595
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
@@ -512,12 +656,16 @@ export declare type CommentCreateInput = {
512
656
  displayIconUrl?: Maybe<Scalars["String"]>;
513
657
  /** Flag to prevent auto subscription to the issue the comment is created on. */
514
658
  doNotSubscribeToIssue?: Maybe<Scalars["Boolean"]>;
659
+ /** The document content to associate the comment with. */
660
+ documentContentId?: Maybe<Scalars["String"]>;
515
661
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
516
662
  id?: Maybe<Scalars["String"]>;
517
663
  /** The issue to associate the comment with. */
518
- issueId: Scalars["String"];
664
+ issueId?: Maybe<Scalars["String"]>;
519
665
  /** The parent comment under which to nest a current comment. */
520
666
  parentId?: Maybe<Scalars["String"]>;
667
+ /** The prject update to associate the comment with. */
668
+ projectUpdateId?: Maybe<Scalars["String"]>;
521
669
  };
522
670
  export declare type CommentEdge = {
523
671
  __typename?: "CommentEdge";
@@ -654,8 +802,8 @@ export declare type CreateCsvExportReportPayload = {
654
802
  };
655
803
  export declare type CreateOrJoinOrganizationResponse = {
656
804
  __typename?: "CreateOrJoinOrganizationResponse";
657
- organization: Organization;
658
- user: User;
805
+ organization: AuthOrganization;
806
+ user: AuthUser;
659
807
  };
660
808
  export declare type CreateOrganizationInput = {
661
809
  /** Whether the organization should allow email domain access. */
@@ -750,6 +898,11 @@ export declare type CustomViewEdge = {
750
898
  cursor: Scalars["String"];
751
899
  node: CustomView;
752
900
  };
901
+ export declare type CustomViewHasSubscribersPayload = {
902
+ __typename?: "CustomViewHasSubscribersPayload";
903
+ /** Whether the custom view has subscribers. */
904
+ hasSubscribers: Scalars["Boolean"];
905
+ };
753
906
  /** A custom view notification subscription. */
754
907
  export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
755
908
  __typename?: "CustomViewNotificationSubscription";
@@ -1080,10 +1233,13 @@ export declare type Document = Node & {
1080
1233
  archivedAt?: Maybe<Scalars["DateTime"]>;
1081
1234
  /** The color of the icon. */
1082
1235
  color?: Maybe<Scalars["String"]>;
1083
- /** The document content in markdown format. */
1236
+ /** The documents content in markdown format. */
1084
1237
  content?: Maybe<Scalars["String"]>;
1085
- /** The document content as JSON. */
1086
- contentData?: Maybe<Scalars["JSONObject"]>;
1238
+ /**
1239
+ * The documents content as a Prosemirror document.
1240
+ * @deprecated Use content instead.
1241
+ */
1242
+ contentData?: Maybe<Scalars["JSON"]>;
1087
1243
  /** The time at which the entity was created. */
1088
1244
  createdAt: Scalars["DateTime"];
1089
1245
  /** The user who created the document. */
@@ -1092,6 +1248,8 @@ export declare type Document = Node & {
1092
1248
  icon?: Maybe<Scalars["String"]>;
1093
1249
  /** The unique identifier of the entity. */
1094
1250
  id: Scalars["ID"];
1251
+ /** The last template that was applied to this document. */
1252
+ lastAppliedTemplate?: Maybe<Template>;
1095
1253
  /** The project that the document is associated with. */
1096
1254
  project: Project;
1097
1255
  /** The document's unique URL slug. */
@@ -1123,15 +1281,19 @@ export declare type DocumentContent = Node & {
1123
1281
  /** The document content as JSON. */
1124
1282
  contentData?: Maybe<Scalars["JSONObject"]>;
1125
1283
  /** The document content state as a base64 encoded string. */
1126
- contentState?: Maybe<Scalars["JSONObject"]>;
1284
+ contentState?: Maybe<Scalars["String"]>;
1127
1285
  /** The time at which the entity was created. */
1128
1286
  createdAt: Scalars["DateTime"];
1287
+ /** The document that the content is associated with. */
1288
+ document?: Maybe<Document>;
1129
1289
  /** The unique identifier of the entity. */
1130
1290
  id: Scalars["ID"];
1131
- /** The issue that the document is associated with. */
1291
+ /** The issue that the content is associated with. */
1132
1292
  issue?: Maybe<Issue>;
1133
- /** The project that the document is associated with. */
1293
+ /** The project that the content is associated with. */
1134
1294
  project?: Maybe<Project>;
1295
+ /** The project milestone that the content is associated with. */
1296
+ projectMilestone?: Maybe<ProjectMilestone>;
1135
1297
  /**
1136
1298
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1137
1299
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -1148,17 +1310,63 @@ export declare type DocumentContentFilter = {
1148
1310
  /** Comparator for the updated at date. */
1149
1311
  updatedAt?: Maybe<DateComparator>;
1150
1312
  };
1313
+ /** A document content history for a document */
1314
+ export declare type DocumentContentHistory = Node & {
1315
+ __typename?: "DocumentContentHistory";
1316
+ /** IDs of actors whose edits went into this history item. */
1317
+ actorIds: Array<Scalars["String"]>;
1318
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
1319
+ archivedAt?: Maybe<Scalars["DateTime"]>;
1320
+ /** The document content as JSON. */
1321
+ contentData?: Maybe<Scalars["JSONObject"]>;
1322
+ /** The timestamp associated with the DocumentContent when it was originally saved */
1323
+ contentDataSnapshotAt: Scalars["DateTime"];
1324
+ /** The time at which the entity was created. */
1325
+ createdAt: Scalars["DateTime"];
1326
+ /** The document content that this history item is associated with. */
1327
+ documentContent: DocumentContent;
1328
+ /** The unique identifier of the entity. */
1329
+ id: Scalars["ID"];
1330
+ /**
1331
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1332
+ * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
1333
+ * been updated after creation.
1334
+ */
1335
+ updatedAt: Scalars["DateTime"];
1336
+ };
1337
+ export declare type DocumentContentHistoryPayload = {
1338
+ __typename?: "DocumentContentHistoryPayload";
1339
+ /** The document content history entries. */
1340
+ history?: Maybe<Array<DocumentContentHistoryType>>;
1341
+ /** Whether the operation was successful. */
1342
+ success: Scalars["Boolean"];
1343
+ };
1344
+ export declare type DocumentContentHistoryType = {
1345
+ __typename?: "DocumentContentHistoryType";
1346
+ /** The ID of the author of the change. */
1347
+ actorIds?: Maybe<Array<Scalars["String"]>>;
1348
+ /** The document content as Prosemirror document. */
1349
+ contentData: Scalars["JSON"];
1350
+ /** 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. */
1351
+ contentDataSnapshotAt: Scalars["DateTime"];
1352
+ /** The date when the document content history entry was created. */
1353
+ createdAt: Scalars["DateTime"];
1354
+ /** The UUID of the document content history entry. */
1355
+ id: Scalars["String"];
1356
+ };
1151
1357
  export declare type DocumentCreateInput = {
1152
1358
  /** The color of the icon. */
1153
1359
  color?: Maybe<Scalars["String"]>;
1154
1360
  /** The document content as markdown. */
1155
1361
  content?: Maybe<Scalars["String"]>;
1156
- /** The document content as a Prosemirror document. */
1362
+ /** [Internal] The document content as a Prosemirror document. */
1157
1363
  contentData?: Maybe<Scalars["JSONObject"]>;
1158
1364
  /** The icon of the document. */
1159
1365
  icon?: Maybe<Scalars["String"]>;
1160
1366
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1161
1367
  id?: Maybe<Scalars["String"]>;
1368
+ /** The ID of the last template applied to the document. */
1369
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1162
1370
  /** Related project for the document. */
1163
1371
  projectId: Scalars["String"];
1164
1372
  /** The title of the document. */
@@ -1195,10 +1403,13 @@ export declare type DocumentSearchResult = Node & {
1195
1403
  archivedAt?: Maybe<Scalars["DateTime"]>;
1196
1404
  /** The color of the icon. */
1197
1405
  color?: Maybe<Scalars["String"]>;
1198
- /** The document content in markdown format. */
1406
+ /** The documents content in markdown format. */
1199
1407
  content?: Maybe<Scalars["String"]>;
1200
- /** The document content as JSON. */
1201
- contentData?: Maybe<Scalars["JSONObject"]>;
1408
+ /**
1409
+ * The documents content as a Prosemirror document.
1410
+ * @deprecated Use content instead.
1411
+ */
1412
+ contentData?: Maybe<Scalars["JSON"]>;
1202
1413
  /** The time at which the entity was created. */
1203
1414
  createdAt: Scalars["DateTime"];
1204
1415
  /** The user who created the document. */
@@ -1207,6 +1418,8 @@ export declare type DocumentSearchResult = Node & {
1207
1418
  icon?: Maybe<Scalars["String"]>;
1208
1419
  /** The unique identifier of the entity. */
1209
1420
  id: Scalars["ID"];
1421
+ /** The last template that was applied to this document. */
1422
+ lastAppliedTemplate?: Maybe<Template>;
1210
1423
  /** Metadata related to search result */
1211
1424
  metadata: Scalars["JSONObject"];
1212
1425
  /** The project that the document is associated with. */
@@ -1241,10 +1454,12 @@ export declare type DocumentUpdateInput = {
1241
1454
  color?: Maybe<Scalars["String"]>;
1242
1455
  /** The document content as markdown. */
1243
1456
  content?: Maybe<Scalars["String"]>;
1244
- /** The document content as a Prosemirror document. */
1457
+ /** [Internal] The document content as a Prosemirror document. */
1245
1458
  contentData?: Maybe<Scalars["JSONObject"]>;
1246
1459
  /** The icon of the document. */
1247
1460
  icon?: Maybe<Scalars["String"]>;
1461
+ /** The ID of the last template applied to the document. */
1462
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1248
1463
  /** Related project for the document. */
1249
1464
  projectId?: Maybe<Scalars["String"]>;
1250
1465
  /** The title of the document. */
@@ -1277,6 +1492,8 @@ export declare type EmailUserAccountAuthChallengeInput = {
1277
1492
  clientAuthCode?: Maybe<Scalars["String"]>;
1278
1493
  /** The email for which to generate the magic login code. */
1279
1494
  email: Scalars["String"];
1495
+ /** The organization invite link to associate with this authentication. */
1496
+ inviteLink?: Maybe<Scalars["String"]>;
1280
1497
  /** Whether the login was requested from the desktop app. */
1281
1498
  isDesktop?: Maybe<Scalars["Boolean"]>;
1282
1499
  /** Signup code. */
@@ -1289,41 +1506,6 @@ export declare type EmailUserAccountAuthChallengeResponse = {
1289
1506
  /** Whether the operation was successful. */
1290
1507
  success: Scalars["Boolean"];
1291
1508
  };
1292
- /** Information for creating embedded content for the provided URL */
1293
- export declare type Embed = {
1294
- __typename?: "Embed";
1295
- /** The name of the author/owner of the resource */
1296
- authorName?: Maybe<Scalars["String"]>;
1297
- /** The description of the content */
1298
- description?: Maybe<Scalars["String"]>;
1299
- /** The height of embedded content (photo, video, rich) */
1300
- height?: Maybe<Scalars["Float"]>;
1301
- /** The HTML (video, rich) */
1302
- html?: Maybe<Scalars["String"]>;
1303
- /** The name of the provider */
1304
- providerName?: Maybe<Scalars["String"]>;
1305
- /** The height of the thumbnail preview image */
1306
- thumbnailHeight?: Maybe<Scalars["Float"]>;
1307
- /** The URL of the thumbnail preview image */
1308
- thumbnailUrl?: Maybe<Scalars["String"]>;
1309
- /** The width of the thumbnail preview image */
1310
- thumbnailWidth?: Maybe<Scalars["Float"]>;
1311
- /** Title for the returned embed view */
1312
- title?: Maybe<Scalars["String"]>;
1313
- /** The type of embed */
1314
- type: Scalars["String"];
1315
- /** The asset URL (photo) */
1316
- url?: Maybe<Scalars["String"]>;
1317
- /** The width of embedded content (photo, video, rich) */
1318
- width?: Maybe<Scalars["Float"]>;
1319
- };
1320
- export declare type EmbedPayload = {
1321
- __typename?: "EmbedPayload";
1322
- /** Embed information */
1323
- embed?: Maybe<Embed>;
1324
- /** Whether the query was successful */
1325
- success: Scalars["Boolean"];
1326
- };
1327
1509
  /** A custom emoji. */
1328
1510
  export declare type Emoji = Node & {
1329
1511
  __typename?: "Emoji";
@@ -1579,59 +1761,6 @@ export declare type FavoriteUpdateInput = {
1579
1761
  /** The position of the item in the favorites list. */
1580
1762
  sortOrder?: Maybe<Scalars["Float"]>;
1581
1763
  };
1582
- /** Object representing Figma preview information. */
1583
- export declare type FigmaEmbed = {
1584
- __typename?: "FigmaEmbed";
1585
- /** Date when the file was updated at the time of embedding. */
1586
- lastModified: Scalars["DateTime"];
1587
- /** Figma file name. */
1588
- name: Scalars["String"];
1589
- /** Node name. */
1590
- nodeName?: Maybe<Scalars["String"]>;
1591
- /** Figma screenshot URL. */
1592
- url?: Maybe<Scalars["String"]>;
1593
- };
1594
- export declare type FigmaEmbedPayload = {
1595
- __typename?: "FigmaEmbedPayload";
1596
- /** Figma embed information. */
1597
- figmaEmbed?: Maybe<FigmaEmbed>;
1598
- /** Whether the operation was successful. */
1599
- success: Scalars["Boolean"];
1600
- };
1601
- /** A schedule for a team's first responder. */
1602
- export declare type FirstResponderSchedule = Node & {
1603
- __typename?: "FirstResponderSchedule";
1604
- /** The time at which the entity was archived. Null if the entity has not been archived. */
1605
- archivedAt?: Maybe<Scalars["DateTime"]>;
1606
- /** The time at which the entity was created. */
1607
- createdAt: Scalars["DateTime"];
1608
- /** The unique identifier of the entity. */
1609
- id: Scalars["ID"];
1610
- /** The integration used for time scheduling. */
1611
- integration: Integration;
1612
- /** The schedule information. */
1613
- scheduleData?: Maybe<Scalars["JSONObject"]>;
1614
- /** The team to which the schedule belongs to. */
1615
- team: Team;
1616
- /**
1617
- * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1618
- * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
1619
- * been updated after creation.
1620
- */
1621
- updatedAt: Scalars["DateTime"];
1622
- };
1623
- export declare type FirstResponderScheduleConnection = {
1624
- __typename?: "FirstResponderScheduleConnection";
1625
- edges: Array<FirstResponderScheduleEdge>;
1626
- nodes: Array<FirstResponderSchedule>;
1627
- pageInfo: PageInfo;
1628
- };
1629
- export declare type FirstResponderScheduleEdge = {
1630
- __typename?: "FirstResponderScheduleEdge";
1631
- /** Used in `before` and `after` args */
1632
- cursor: Scalars["String"];
1633
- node: FirstResponderSchedule;
1634
- };
1635
1764
  export declare type FrontAttachmentPayload = {
1636
1765
  __typename?: "FrontAttachmentPayload";
1637
1766
  /** The identifier of the last sync operation. */
@@ -1694,6 +1823,44 @@ export declare type GitHubSettingsInput = {
1694
1823
  /** The names of the repositories connected for the GitHub integration */
1695
1824
  repositories?: Maybe<Array<Scalars["String"]>>;
1696
1825
  };
1826
+ /** GitHub repos available to sync. */
1827
+ export declare type GitHubSyncRepo = {
1828
+ __typename?: "GitHubSyncRepo";
1829
+ /** The full name of the repository. */
1830
+ fullName: Scalars["String"];
1831
+ /** The GitHub repo id. */
1832
+ id: Scalars["Float"];
1833
+ };
1834
+ export declare type GitHubSyncRepoInput = {
1835
+ /** The full name of the repository. */
1836
+ fullName: Scalars["String"];
1837
+ /** The GitHub repo id. */
1838
+ id: Scalars["Float"];
1839
+ };
1840
+ /** Metadata and settings for a GitHub Sync integration. */
1841
+ export declare type GitHubSyncSettings = {
1842
+ __typename?: "GitHubSyncSettings";
1843
+ /** The names of the repositories connected for the GitHub integration */
1844
+ repositories?: Maybe<Array<GitHubSyncRepo>>;
1845
+ /** Mapping of team to repository for syncing */
1846
+ teamRepoMap?: Maybe<Array<TeamRepoMapping>>;
1847
+ };
1848
+ export declare type GitHubSyncSettingsInput = {
1849
+ /** The names of the repositories connected for the GitHub integration */
1850
+ repositories?: Maybe<Array<GitHubSyncRepoInput>>;
1851
+ /** Mapping of team to repository for syncing */
1852
+ teamRepoMap?: Maybe<Array<TeamRepoMappingInput>>;
1853
+ };
1854
+ /** Metadata and settings for a GitLab integration. */
1855
+ export declare type GitLabSettings = {
1856
+ __typename?: "GitLabSettings";
1857
+ /** The self-hosted URL of the GitLab instance */
1858
+ url?: Maybe<Scalars["String"]>;
1859
+ };
1860
+ export declare type GitLabSettingsInput = {
1861
+ /** The self-hosted URL of the GitLab instance */
1862
+ url?: Maybe<Scalars["String"]>;
1863
+ };
1697
1864
  /** GitHub OAuth token, plus information about the organizations the user is a member of. */
1698
1865
  export declare type GithubOAuthTokenPayload = {
1699
1866
  __typename?: "GithubOAuthTokenPayload";
@@ -1833,6 +2000,8 @@ export declare type IntegrationSettings = {
1833
2000
  __typename?: "IntegrationSettings";
1834
2001
  front?: Maybe<FrontSettings>;
1835
2002
  gitHub?: Maybe<GitHubSettings>;
2003
+ gitHubSync?: Maybe<GitHubSyncSettings>;
2004
+ gitLab?: Maybe<GitLabSettings>;
1836
2005
  googleSheets?: Maybe<GoogleSheetsSettings>;
1837
2006
  intercom?: Maybe<IntercomSettings>;
1838
2007
  jira?: Maybe<JiraSettings>;
@@ -1848,6 +2017,8 @@ export declare type IntegrationSettings = {
1848
2017
  export declare type IntegrationSettingsInput = {
1849
2018
  front?: Maybe<FrontSettingsInput>;
1850
2019
  gitHub?: Maybe<GitHubSettingsInput>;
2020
+ gitHubSync?: Maybe<GitHubSyncSettingsInput>;
2021
+ gitLab?: Maybe<GitLabSettingsInput>;
1851
2022
  googleSheets?: Maybe<GoogleSheetsSettingsInput>;
1852
2023
  intercom?: Maybe<IntercomSettingsInput>;
1853
2024
  jira?: Maybe<JiraSettingsInput>;
@@ -2088,7 +2259,10 @@ export declare type Issue = Node & {
2088
2259
  cycle?: Maybe<Cycle>;
2089
2260
  /** The issue's description in markdown format. */
2090
2261
  description?: Maybe<Scalars["String"]>;
2091
- /** [Internal] The issue's description as a Prosemirror document. */
2262
+ /**
2263
+ * [Internal] The issue's description as a Prosemirror document.
2264
+ * @deprecated Use description instead.
2265
+ */
2092
2266
  descriptionData?: Maybe<Scalars["JSON"]>;
2093
2267
  /** The date at which the issue is due. */
2094
2268
  dueDate?: Maybe<Scalars["TimelessDate"]>;
@@ -2108,6 +2282,8 @@ export declare type Issue = Node & {
2108
2282
  inverseRelations: IssueRelationConnection;
2109
2283
  /** Labels associated with this issue. */
2110
2284
  labels: IssueLabelConnection;
2285
+ /** The last template that was applied to this issue. */
2286
+ lastAppliedTemplate?: Maybe<Template>;
2111
2287
  /** The issue's unique number. */
2112
2288
  number: Scalars["Float"];
2113
2289
  /** The parent of the issue. */
@@ -2304,6 +2480,8 @@ export declare type IssueCollectionFilter = {
2304
2480
  id?: Maybe<IdComparator>;
2305
2481
  /** Filters that issue labels must satisfy. */
2306
2482
  labels?: Maybe<IssueLabelCollectionFilter>;
2483
+ /** Filters that the last applied template must satisfy. */
2484
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
2307
2485
  /** Comparator for the collection length. */
2308
2486
  length?: Maybe<NumberComparator>;
2309
2487
  /** Comparator for the issues number. */
@@ -2328,6 +2506,8 @@ export declare type IssueCollectionFilter = {
2328
2506
  snoozedUntilAt?: Maybe<NullableDateComparator>;
2329
2507
  /** Filters that needs to be matched by some issues. */
2330
2508
  some?: Maybe<IssueFilter>;
2509
+ /** Filters that the source must satisfy. */
2510
+ sourceMetadata?: Maybe<SourceMetadataComparator>;
2331
2511
  /** Comparator for the issues started at date. */
2332
2512
  startedAt?: Maybe<NullableDateComparator>;
2333
2513
  /** Filters that the issues state must satisfy. */
@@ -2374,6 +2554,8 @@ export declare type IssueCreateInput = {
2374
2554
  id?: Maybe<Scalars["String"]>;
2375
2555
  /** The identifiers of the issue labels associated with this ticket. */
2376
2556
  labelIds?: Maybe<Array<Scalars["String"]>>;
2557
+ /** The ID of the last template applied to the issue. */
2558
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
2377
2559
  /** The identifier of the parent issue. */
2378
2560
  parentId?: Maybe<Scalars["String"]>;
2379
2561
  /** Whether the passed sort order should be preserved */
@@ -2505,6 +2687,8 @@ export declare type IssueFilter = {
2505
2687
  id?: Maybe<IdComparator>;
2506
2688
  /** Filters that issue labels must satisfy. */
2507
2689
  labels?: Maybe<IssueLabelCollectionFilter>;
2690
+ /** Filters that the last applied template must satisfy. */
2691
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
2508
2692
  /** Comparator for the issues number. */
2509
2693
  number?: Maybe<NumberComparator>;
2510
2694
  /** Compound filters, one of which need to be matched by the issue. */
@@ -2525,6 +2709,8 @@ export declare type IssueFilter = {
2525
2709
  snoozedBy?: Maybe<NullableUserFilter>;
2526
2710
  /** Comparator for the issues snoozed until date. */
2527
2711
  snoozedUntilAt?: Maybe<NullableDateComparator>;
2712
+ /** Filters that the source must satisfy. */
2713
+ sourceMetadata?: Maybe<SourceMetadataComparator>;
2528
2714
  /** Comparator for the issues started at date. */
2529
2715
  startedAt?: Maybe<NullableDateComparator>;
2530
2716
  /** Filters that the issues state must satisfy. */
@@ -2554,6 +2740,7 @@ export declare type IssueHistory = Node & {
2554
2740
  actorId?: Maybe<Scalars["String"]>;
2555
2741
  /** ID's of labels that were added. */
2556
2742
  addedLabelIds?: Maybe<Array<Scalars["String"]>>;
2743
+ addedLabels?: Maybe<Array<IssueLabel>>;
2557
2744
  /** Whether the issue is archived at the time of this history entry. */
2558
2745
  archived?: Maybe<Scalars["Boolean"]>;
2559
2746
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -2614,6 +2801,7 @@ export declare type IssueHistory = Node & {
2614
2801
  relationChanges?: Maybe<Array<IssueRelationHistoryPayload>>;
2615
2802
  /** ID's of labels that were removed. */
2616
2803
  removedLabelIds?: Maybe<Array<Scalars["String"]>>;
2804
+ removedLabels?: Maybe<Array<IssueLabel>>;
2617
2805
  /** The user to whom the issue was assigned to. */
2618
2806
  toAssignee?: Maybe<User>;
2619
2807
  /** The id of user to whom the issue was assigned to. */
@@ -2922,6 +3110,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
2922
3110
  readAt?: Maybe<Scalars["DateTime"]>;
2923
3111
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
2924
3112
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
3113
+ /** The subscriptions related to the notification. */
3114
+ subscriptions?: Maybe<Array<NotificationSubscription>>;
2925
3115
  /** The team related to the notification. */
2926
3116
  team: Team;
2927
3117
  /** Notification type */
@@ -3075,7 +3265,10 @@ export declare type IssueSearchResult = Node & {
3075
3265
  cycle?: Maybe<Cycle>;
3076
3266
  /** The issue's description in markdown format. */
3077
3267
  description?: Maybe<Scalars["String"]>;
3078
- /** [Internal] The issue's description as a Prosemirror document. */
3268
+ /**
3269
+ * [Internal] The issue's description as a Prosemirror document.
3270
+ * @deprecated Use description instead.
3271
+ */
3079
3272
  descriptionData?: Maybe<Scalars["JSON"]>;
3080
3273
  /** The date at which the issue is due. */
3081
3274
  dueDate?: Maybe<Scalars["TimelessDate"]>;
@@ -3095,6 +3288,8 @@ export declare type IssueSearchResult = Node & {
3095
3288
  inverseRelations: IssueRelationConnection;
3096
3289
  /** Labels associated with this issue. */
3097
3290
  labels: IssueLabelConnection;
3291
+ /** The last template that was applied to this issue. */
3292
+ lastAppliedTemplate?: Maybe<Template>;
3098
3293
  /** Metadata related to search result */
3099
3294
  metadata: Scalars["JSONObject"];
3100
3295
  /** The issue's unique number. */
@@ -3251,6 +3446,8 @@ export declare type IssueUpdateInput = {
3251
3446
  estimate?: Maybe<Scalars["Int"]>;
3252
3447
  /** The identifiers of the issue labels associated with this ticket. */
3253
3448
  labelIds?: Maybe<Array<Scalars["String"]>>;
3449
+ /** The ID of the last template applied to the issue. */
3450
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
3254
3451
  /** The identifier of the parent issue. */
3255
3452
  parentId?: Maybe<Scalars["String"]>;
3256
3453
  /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
@@ -3406,6 +3603,10 @@ export declare type Mutation = {
3406
3603
  attachmentLinkDiscord: AttachmentPayload;
3407
3604
  /** Link an existing Front conversation to an issue. */
3408
3605
  attachmentLinkFront: FrontAttachmentPayload;
3606
+ /** Link an existing GitHub PR to an issue. */
3607
+ attachmentLinkGitHubPR: AttachmentPayload;
3608
+ /** Link an existing GitLab MR to an issue. */
3609
+ attachmentLinkGitLabMR: AttachmentPayload;
3409
3610
  /** Link an existing Intercom conversation to an issue. */
3410
3611
  attachmentLinkIntercom: AttachmentPayload;
3411
3612
  /** Link an existing Jira issue to an issue. */
@@ -3438,6 +3639,8 @@ export declare type Mutation = {
3438
3639
  createCsvExportReport: CreateCsvExportReportPayload;
3439
3640
  /** Creates an organization from onboarding. */
3440
3641
  createOrganizationFromOnboarding: CreateOrJoinOrganizationResponse;
3642
+ /** Create a notification to remind a user about a project update. */
3643
+ createProjectUpdateReminder: ProjectUpdateReminderPayload;
3441
3644
  /** Creates a new custom view. */
3442
3645
  customViewCreate: CustomViewPayload;
3443
3646
  /** Deletes a custom view. */
@@ -3496,8 +3699,12 @@ export declare type Mutation = {
3496
3699
  integrationGithubCommitCreate: GitHubCommitIntegrationPayload;
3497
3700
  /** Connects the organization with the GitHub App. */
3498
3701
  integrationGithubConnect: IntegrationPayload;
3702
+ /** Connects the organization with the GitHub Sync App. */
3703
+ integrationGithubSync: IntegrationPayload;
3499
3704
  /** Connects the organization with a GitLab Access Token. */
3500
3705
  integrationGitlabConnect: IntegrationPayload;
3706
+ /** [Internal] Connects the Google Calendar to the user to this Linear account via OAuth2. */
3707
+ integrationGoogleCalendarPersonalConnect: IntegrationPayload;
3501
3708
  /** Integrates the organization with Google Sheets. */
3502
3709
  integrationGoogleSheets: IntegrationPayload;
3503
3710
  /** Integrates the organization with Intercom. */
@@ -3516,6 +3723,8 @@ export declare type Mutation = {
3516
3723
  integrationLoom: IntegrationPayload;
3517
3724
  /** [INTERNAL] Integrates the organization with PagerDuty. */
3518
3725
  integrationPagerDutyConnect: IntegrationPayload;
3726
+ /** [INTERNAL] Refresh PagerDuty schedule mappings. */
3727
+ integrationPagerDutyRefreshScheduleMappings: IntegrationPayload;
3519
3728
  /** Requests a currently unavailable integration. */
3520
3729
  integrationRequest: IntegrationRequestPayload;
3521
3730
  /** Integrates the organization with Sentry. */
@@ -3548,6 +3757,8 @@ export declare type Mutation = {
3548
3757
  integrationsSettingsCreate: IntegrationsSettingsPayload;
3549
3758
  /** Updates settings related to integrations for a project or a team. */
3550
3759
  integrationsSettingsUpdate: IntegrationsSettingsPayload;
3760
+ /** Adds a label to an issue. */
3761
+ issueAddLabel: IssuePayload;
3551
3762
  /** Archives an issue. */
3552
3763
  issueArchive: IssueArchivePayload;
3553
3764
  /** Updates multiple issues at once. */
@@ -3588,8 +3799,14 @@ export declare type Mutation = {
3588
3799
  issueRelationUpdate: IssueRelationPayload;
3589
3800
  /** Adds an issue reminder. Will cause a notification to be sent when the issue reminder time is reached. */
3590
3801
  issueReminder: IssuePayload;
3802
+ /** Removes a label from an issue. */
3803
+ issueRemoveLabel: IssuePayload;
3804
+ /** Subscribes a user to an issue. */
3805
+ issueSubscribe: IssuePayload;
3591
3806
  /** Unarchives an issue. */
3592
3807
  issueUnarchive: IssueArchivePayload;
3808
+ /** Unsubscribes a user from an issue. */
3809
+ issueUnsubscribe: IssuePayload;
3593
3810
  /** Updates an issue. */
3594
3811
  issueUpdate: IssuePayload;
3595
3812
  /** [INTERNAL] Connects the organization with a Jira Personal Access Token. */
@@ -3598,8 +3815,14 @@ export declare type Mutation = {
3598
3815
  joinOrganizationFromOnboarding: CreateOrJoinOrganizationResponse;
3599
3816
  /** Leave an organization. */
3600
3817
  leaveOrganization: CreateOrJoinOrganizationResponse;
3601
- /** Logout of all clients. */
3818
+ /** Logout the client. */
3602
3819
  logout: LogoutResponse;
3820
+ /** Logout all of user's sessions including the active one. */
3821
+ logoutAllSessions: LogoutResponse;
3822
+ /** Logout all of user's sessions excluding the current one. */
3823
+ logoutOtherSessions: LogoutResponse;
3824
+ /** Logout an individual session with its ID. */
3825
+ logoutSession: LogoutResponse;
3603
3826
  /** Archives a notification. */
3604
3827
  notificationArchive: NotificationArchivePayload;
3605
3828
  /** Archives all of the user's past notifications for the associated entity. */
@@ -3748,8 +3971,6 @@ export declare type Mutation = {
3748
3971
  userFlagUpdate: UserSettingsFlagPayload;
3749
3972
  /** Connects the GitHub user to this Linear account via OAuth2. */
3750
3973
  userGitHubConnect: UserPayload;
3751
- /** Connects the Google Calendar to the user to this Linear account via OAuth2. */
3752
- userGoogleCalendarConnect: UserPayload;
3753
3974
  /** Connects the Jira user to this Linear account via OAuth2. */
3754
3975
  userJiraConnect: UserPayload;
3755
3976
  /** Makes user an admin. Can only be called by an admin. */
@@ -3809,6 +4030,7 @@ export declare type MutationAttachmentLinkDiscordArgs = {
3809
4030
  channelId: Scalars["String"];
3810
4031
  createAsUser?: Maybe<Scalars["String"]>;
3811
4032
  displayIconUrl?: Maybe<Scalars["String"]>;
4033
+ id?: Maybe<Scalars["String"]>;
3812
4034
  issueId: Scalars["String"];
3813
4035
  messageId: Scalars["String"];
3814
4036
  url: Scalars["String"];
@@ -3817,12 +4039,34 @@ export declare type MutationAttachmentLinkFrontArgs = {
3817
4039
  conversationId: Scalars["String"];
3818
4040
  createAsUser?: Maybe<Scalars["String"]>;
3819
4041
  displayIconUrl?: Maybe<Scalars["String"]>;
4042
+ id?: Maybe<Scalars["String"]>;
3820
4043
  issueId: Scalars["String"];
3821
4044
  };
4045
+ export declare type MutationAttachmentLinkGitHubPrArgs = {
4046
+ createAsUser?: Maybe<Scalars["String"]>;
4047
+ displayIconUrl?: Maybe<Scalars["String"]>;
4048
+ id?: Maybe<Scalars["String"]>;
4049
+ issueId: Scalars["String"];
4050
+ number: Scalars["Float"];
4051
+ owner: Scalars["String"];
4052
+ repo: Scalars["String"];
4053
+ url: Scalars["String"];
4054
+ };
4055
+ export declare type MutationAttachmentLinkGitLabMrArgs = {
4056
+ createAsUser?: Maybe<Scalars["String"]>;
4057
+ displayIconUrl?: Maybe<Scalars["String"]>;
4058
+ id?: Maybe<Scalars["String"]>;
4059
+ issueId: Scalars["String"];
4060
+ number: Scalars["Float"];
4061
+ owner: Scalars["String"];
4062
+ repo: Scalars["String"];
4063
+ url: Scalars["String"];
4064
+ };
3822
4065
  export declare type MutationAttachmentLinkIntercomArgs = {
3823
4066
  conversationId: Scalars["String"];
3824
4067
  createAsUser?: Maybe<Scalars["String"]>;
3825
4068
  displayIconUrl?: Maybe<Scalars["String"]>;
4069
+ id?: Maybe<Scalars["String"]>;
3826
4070
  issueId: Scalars["String"];
3827
4071
  };
3828
4072
  export declare type MutationAttachmentLinkJiraIssueArgs = {
@@ -3851,6 +4095,7 @@ export declare type MutationAttachmentLinkUrlArgs = {
3851
4095
  export declare type MutationAttachmentLinkZendeskArgs = {
3852
4096
  createAsUser?: Maybe<Scalars["String"]>;
3853
4097
  displayIconUrl?: Maybe<Scalars["String"]>;
4098
+ id?: Maybe<Scalars["String"]>;
3854
4099
  issueId: Scalars["String"];
3855
4100
  ticketId: Scalars["String"];
3856
4101
  };
@@ -3891,6 +4136,10 @@ export declare type MutationCreateOrganizationFromOnboardingArgs = {
3891
4136
  input: CreateOrganizationInput;
3892
4137
  survey?: Maybe<OnboardingCustomerSurvey>;
3893
4138
  };
4139
+ export declare type MutationCreateProjectUpdateReminderArgs = {
4140
+ projectId: Scalars["String"];
4141
+ userId?: Maybe<Scalars["String"]>;
4142
+ };
3894
4143
  export declare type MutationCustomViewCreateArgs = {
3895
4144
  input: CustomViewCreateInput;
3896
4145
  };
@@ -3990,10 +4239,16 @@ export declare type MutationIntegrationFrontArgs = {
3990
4239
  export declare type MutationIntegrationGithubConnectArgs = {
3991
4240
  installationId: Scalars["String"];
3992
4241
  };
4242
+ export declare type MutationIntegrationGithubSyncArgs = {
4243
+ installationId: Scalars["String"];
4244
+ };
3993
4245
  export declare type MutationIntegrationGitlabConnectArgs = {
3994
4246
  accessToken: Scalars["String"];
3995
4247
  gitlabUrl: Scalars["String"];
3996
4248
  };
4249
+ export declare type MutationIntegrationGoogleCalendarPersonalConnectArgs = {
4250
+ code: Scalars["String"];
4251
+ };
3997
4252
  export declare type MutationIntegrationGoogleSheetsArgs = {
3998
4253
  code: Scalars["String"];
3999
4254
  };
@@ -4077,6 +4332,10 @@ export declare type MutationIntegrationsSettingsUpdateArgs = {
4077
4332
  id: Scalars["String"];
4078
4333
  input: IntegrationsSettingsUpdateInput;
4079
4334
  };
4335
+ export declare type MutationIssueAddLabelArgs = {
4336
+ id: Scalars["String"];
4337
+ labelId: Scalars["String"];
4338
+ };
4080
4339
  export declare type MutationIssueArchiveArgs = {
4081
4340
  id: Scalars["String"];
4082
4341
  trash?: Maybe<Scalars["Boolean"]>;
@@ -4184,9 +4443,21 @@ export declare type MutationIssueReminderArgs = {
4184
4443
  id: Scalars["String"];
4185
4444
  reminderAt: Scalars["DateTime"];
4186
4445
  };
4446
+ export declare type MutationIssueRemoveLabelArgs = {
4447
+ id: Scalars["String"];
4448
+ labelId: Scalars["String"];
4449
+ };
4450
+ export declare type MutationIssueSubscribeArgs = {
4451
+ id: Scalars["String"];
4452
+ userId?: Maybe<Scalars["String"]>;
4453
+ };
4187
4454
  export declare type MutationIssueUnarchiveArgs = {
4188
4455
  id: Scalars["String"];
4189
4456
  };
4457
+ export declare type MutationIssueUnsubscribeArgs = {
4458
+ id: Scalars["String"];
4459
+ userId?: Maybe<Scalars["String"]>;
4460
+ };
4190
4461
  export declare type MutationIssueUpdateArgs = {
4191
4462
  id: Scalars["String"];
4192
4463
  input: IssueUpdateInput;
@@ -4200,6 +4471,9 @@ export declare type MutationJoinOrganizationFromOnboardingArgs = {
4200
4471
  export declare type MutationLeaveOrganizationArgs = {
4201
4472
  organizationId: Scalars["String"];
4202
4473
  };
4474
+ export declare type MutationLogoutSessionArgs = {
4475
+ sessionId: Scalars["String"];
4476
+ };
4203
4477
  export declare type MutationNotificationArchiveArgs = {
4204
4478
  id: Scalars["String"];
4205
4479
  };
@@ -4265,7 +4539,7 @@ export declare type MutationOrganizationInviteUpdateArgs = {
4265
4539
  input: OrganizationInviteUpdateInput;
4266
4540
  };
4267
4541
  export declare type MutationOrganizationUpdateArgs = {
4268
- input: UpdateOrganizationInput;
4542
+ input: OrganizationUpdateInput;
4269
4543
  };
4270
4544
  export declare type MutationProjectArchiveArgs = {
4271
4545
  id: Scalars["String"];
@@ -4424,9 +4698,6 @@ export declare type MutationUserFlagUpdateArgs = {
4424
4698
  export declare type MutationUserGitHubConnectArgs = {
4425
4699
  code: Scalars["String"];
4426
4700
  };
4427
- export declare type MutationUserGoogleCalendarConnectArgs = {
4428
- code: Scalars["String"];
4429
- };
4430
4701
  export declare type MutationUserJiraConnectArgs = {
4431
4702
  code: Scalars["String"];
4432
4703
  };
@@ -4454,7 +4725,7 @@ export declare type MutationUserUnsuspendArgs = {
4454
4725
  };
4455
4726
  export declare type MutationUserUpdateArgs = {
4456
4727
  id: Scalars["String"];
4457
- input: UpdateUserInput;
4728
+ input: UserUpdateInput;
4458
4729
  };
4459
4730
  export declare type MutationViewPreferencesCreateArgs = {
4460
4731
  input: ViewPreferencesCreateInput;
@@ -4798,6 +5069,8 @@ export declare type NullableIssueFilter = {
4798
5069
  id?: Maybe<IdComparator>;
4799
5070
  /** Filters that issue labels must satisfy. */
4800
5071
  labels?: Maybe<IssueLabelCollectionFilter>;
5072
+ /** Filters that the last applied template must satisfy. */
5073
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
4801
5074
  /** Filter based on the existence of the relation. */
4802
5075
  null?: Maybe<Scalars["Boolean"]>;
4803
5076
  /** Comparator for the issues number. */
@@ -4820,6 +5093,8 @@ export declare type NullableIssueFilter = {
4820
5093
  snoozedBy?: Maybe<NullableUserFilter>;
4821
5094
  /** Comparator for the issues snoozed until date. */
4822
5095
  snoozedUntilAt?: Maybe<NullableDateComparator>;
5096
+ /** Filters that the source must satisfy. */
5097
+ sourceMetadata?: Maybe<SourceMetadataComparator>;
4823
5098
  /** Comparator for the issues started at date. */
4824
5099
  startedAt?: Maybe<NullableDateComparator>;
4825
5100
  /** Filters that the issues state must satisfy. */
@@ -4876,6 +5151,8 @@ export declare type NullableProjectFilter = {
4876
5151
  id?: Maybe<IdComparator>;
4877
5152
  /** Filters that the projects issues must satisfy. */
4878
5153
  issues?: Maybe<IssueCollectionFilter>;
5154
+ /** Filters that the last applied template must satisfy. */
5155
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
4879
5156
  /** Filters that the projects lead must satisfy. */
4880
5157
  lead?: Maybe<NullableUserFilter>;
4881
5158
  /** Filters that the projects members must satisfy. */
@@ -4982,6 +5259,23 @@ export declare type NullableTeamFilter = {
4982
5259
  /** Comparator for the updated at date. */
4983
5260
  updatedAt?: Maybe<DateComparator>;
4984
5261
  };
5262
+ /** Template filtering options. */
5263
+ export declare type NullableTemplateFilter = {
5264
+ /** Compound filters, all of which need to be matched by the template. */
5265
+ and?: Maybe<Array<NullableTemplateFilter>>;
5266
+ /** Comparator for the created at date. */
5267
+ createdAt?: Maybe<DateComparator>;
5268
+ /** Comparator for the identifier. */
5269
+ id?: Maybe<IdComparator>;
5270
+ /** Comparator for the template's name. */
5271
+ name?: Maybe<StringComparator>;
5272
+ /** Filter based on the existence of the relation. */
5273
+ null?: Maybe<Scalars["Boolean"]>;
5274
+ /** Compound filters, one of which need to be matched by the template. */
5275
+ or?: Maybe<Array<NullableTemplateFilter>>;
5276
+ /** Comparator for the updated at date. */
5277
+ updatedAt?: Maybe<DateComparator>;
5278
+ };
4985
5279
  export declare type NullableTimelessDateComparator = {
4986
5280
  /** Equals constraint. */
4987
5281
  eq?: Maybe<Scalars["TimelessDate"]>;
@@ -5067,7 +5361,7 @@ export declare type OauthClient = Node & {
5067
5361
  clientSecret: Scalars["String"];
5068
5362
  /** The time at which the entity was created. */
5069
5363
  createdAt: Scalars["DateTime"];
5070
- /** The user who created the OAuthClient. */
5364
+ /** The user who created the OAuth application. */
5071
5365
  creator: User;
5072
5366
  /** Information about the application. */
5073
5367
  description?: Maybe<Scalars["String"]>;
@@ -5081,9 +5375,9 @@ export declare type OauthClient = Node & {
5081
5375
  imageUrl?: Maybe<Scalars["String"]>;
5082
5376
  /** OAuth application's client name. */
5083
5377
  name: Scalars["String"];
5084
- /** The organization that the OAuthClient is associated with. */
5378
+ /** The organization that the OAuth application is associated with. */
5085
5379
  organization: Organization;
5086
- /** Whether the OAuth application is publicly visible, or only visible to the creating workspace. */
5380
+ /** Whether the OAuth application can be installed in other organizations. */
5087
5381
  publicEnabled: Scalars["Boolean"];
5088
5382
  /** List of allowed redirect URIs for the application. */
5089
5383
  redirectUris: Array<Scalars["String"]>;
@@ -5188,6 +5482,8 @@ export declare type OnboardingCustomerSurvey = {
5188
5482
  /** An organization. Organizations are root-level objects that contain user accounts and teams. */
5189
5483
  export declare type Organization = Node & {
5190
5484
  __typename?: "Organization";
5485
+ /** Whether member users are allowed to send invites */
5486
+ allowMembersToInvite?: Maybe<Scalars["Boolean"]>;
5191
5487
  /** Allowed authentication providers, empty array means all are allowed */
5192
5488
  allowedAuthServices: Array<Scalars["String"]>;
5193
5489
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -5231,7 +5527,7 @@ export declare type Organization = Node & {
5231
5527
  /** Whether SAML authentication is enabled for organization. */
5232
5528
  samlEnabled: Scalars["Boolean"];
5233
5529
  /** [INTERNAL] SAML settings */
5234
- samlSettings: Scalars["JSONObject"];
5530
+ samlSettings?: Maybe<Scalars["JSONObject"]>;
5235
5531
  /** Whether SCIM provisioning is enabled for organization. */
5236
5532
  scimEnabled: Scalars["Boolean"];
5237
5533
  /** Which day count to use for SLA calculations */
@@ -5515,6 +5811,42 @@ export declare type OrganizationStartPlusTrialPayload = {
5515
5811
  /** Whether the operation was successful. */
5516
5812
  success: Scalars["Boolean"];
5517
5813
  };
5814
+ export declare type OrganizationUpdateInput = {
5815
+ /** Whether member users are allowed to send invites. */
5816
+ allowMembersToInvite?: Maybe<Scalars["Boolean"]>;
5817
+ /** List of services that are allowed to be used for login. */
5818
+ allowedAuthServices?: Maybe<Array<Scalars["String"]>>;
5819
+ /** How git branches are formatted. If null, default formatting will be used. */
5820
+ gitBranchFormat?: Maybe<Scalars["String"]>;
5821
+ /** Whether the Git integration linkback messages should be sent for private repositories. */
5822
+ gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
5823
+ /** Whether the Git integration linkback messages should be sent for public repositories. */
5824
+ gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
5825
+ /** Linear Preview feature flags */
5826
+ linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
5827
+ /** The logo of the organization. */
5828
+ logoUrl?: Maybe<Scalars["String"]>;
5829
+ /** The name of the organization. */
5830
+ name?: Maybe<Scalars["String"]>;
5831
+ /** Whether the organization has opted for having to approve all OAuth applications for install. */
5832
+ oauthAppReview?: Maybe<Scalars["Boolean"]>;
5833
+ /** The day at which project updates are sent. */
5834
+ projectUpdateRemindersDay?: Maybe<Day>;
5835
+ /** The hour at which project updates are sent. */
5836
+ projectUpdateRemindersHour?: Maybe<Scalars["Float"]>;
5837
+ /** The frequency at which project updates are sent. */
5838
+ projectUpdatesReminderFrequency?: Maybe<ProjectUpdateReminderFrequency>;
5839
+ /** Whether the organization has opted for reduced customer support attachment information. */
5840
+ reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
5841
+ /** Whether the organization is using roadmap. */
5842
+ roadmapEnabled?: Maybe<Scalars["Boolean"]>;
5843
+ /** Which day count to use for SLA calculation. */
5844
+ slaDayCount?: Maybe<SlaDayCountType>;
5845
+ /** Internal. Whether SLAs have been enabled for the organization. */
5846
+ slaEnabled?: Maybe<Scalars["Boolean"]>;
5847
+ /** The URL key of the organization. */
5848
+ urlKey?: Maybe<Scalars["String"]>;
5849
+ };
5518
5850
  export declare type PageInfo = {
5519
5851
  __typename?: "PageInfo";
5520
5852
  /** Cursor representing the last result in the paginated results. */
@@ -5527,28 +5859,32 @@ export declare type PageInfo = {
5527
5859
  startCursor?: Maybe<Scalars["String"]>;
5528
5860
  };
5529
5861
  export declare type PagerDutyInput = {
5530
- /** The mapping of PagerDuty schedule id to names. */
5531
- scheduleMapping: Array<PagerDutyScheduleMappingInput>;
5862
+ /** Metadata about a PagerDuty schedule. */
5863
+ scheduleMapping: Array<PagerDutyScheduleInfoInput>;
5532
5864
  };
5533
- /** Tuple for mapping PagerDuty schedule id to names. */
5534
- export declare type PagerDutyScheduleMapping = {
5535
- __typename?: "PagerDutyScheduleMapping";
5865
+ /** Metadata about a PagerDuty schedule. */
5866
+ export declare type PagerDutyScheduleInfo = {
5867
+ __typename?: "PagerDutyScheduleInfo";
5536
5868
  /** The PagerDuty schedule id. */
5537
5869
  scheduleId: Scalars["String"];
5538
5870
  /** The PagerDuty schedule name. */
5539
5871
  scheduleName: Scalars["String"];
5872
+ /** The URL of the schedule in PagerDuty's web app. */
5873
+ url: Scalars["String"];
5540
5874
  };
5541
- export declare type PagerDutyScheduleMappingInput = {
5875
+ export declare type PagerDutyScheduleInfoInput = {
5542
5876
  /** The PagerDuty schedule id. */
5543
5877
  scheduleId: Scalars["String"];
5544
5878
  /** The PagerDuty schedule name. */
5545
5879
  scheduleName: Scalars["String"];
5880
+ /** The URL of the schedule in PagerDuty's web app. */
5881
+ url: Scalars["String"];
5546
5882
  };
5547
5883
  /** PagerDuty specific settings. */
5548
5884
  export declare type PagerDutySettings = {
5549
5885
  __typename?: "PagerDutySettings";
5550
- /** The mapping of PagerDuty schedule id to names. */
5551
- scheduleMapping: Array<PagerDutyScheduleMapping>;
5886
+ /** Metadata about a PagerDuty schedule. */
5887
+ scheduleMapping: Array<PagerDutyScheduleInfo>;
5552
5888
  };
5553
5889
  /** By which field should the pagination order by */
5554
5890
  export declare enum PaginationOrderBy {
@@ -5562,6 +5898,8 @@ export declare type PaidSubscription = Node & {
5562
5898
  archivedAt?: Maybe<Scalars["DateTime"]>;
5563
5899
  /** The date the subscription was canceled, if any. */
5564
5900
  canceledAt?: Maybe<Scalars["DateTime"]>;
5901
+ /** The collection method for this subscription, either automatically charged or invoiced. */
5902
+ collectionMethod?: Maybe<Scalars["String"]>;
5565
5903
  /** The time at which the entity was created. */
5566
5904
  createdAt: Scalars["DateTime"];
5567
5905
  /** The creator of the subscription. */
@@ -5608,8 +5946,6 @@ export declare type Project = Node & {
5608
5946
  completedScopeHistory: Array<Scalars["Float"]>;
5609
5947
  /** The project's content in markdown format. */
5610
5948
  content?: Maybe<Scalars["String"]>;
5611
- /** [Internal] The project's content as a Prosemirror document. */
5612
- contentData?: Maybe<Scalars["JSON"]>;
5613
5949
  /** The project was created based on this issue. */
5614
5950
  convertedFromIssue?: Maybe<Issue>;
5615
5951
  /** The time at which the entity was created. */
@@ -5632,6 +5968,8 @@ export declare type Project = Node & {
5632
5968
  issueCountHistory: Array<Scalars["Float"]>;
5633
5969
  /** Issues associated with the project. */
5634
5970
  issues: IssueConnection;
5971
+ /** The last template that was applied to this project. */
5972
+ lastAppliedTemplate?: Maybe<Template>;
5635
5973
  /** The project lead. */
5636
5974
  lead?: Maybe<User>;
5637
5975
  /** Links associated with the project. */
@@ -5782,6 +6120,8 @@ export declare type ProjectCollectionFilter = {
5782
6120
  id?: Maybe<IdComparator>;
5783
6121
  /** Filters that the projects issues must satisfy. */
5784
6122
  issues?: Maybe<IssueCollectionFilter>;
6123
+ /** Filters that the last applied template must satisfy. */
6124
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
5785
6125
  /** Filters that the projects lead must satisfy. */
5786
6126
  lead?: Maybe<NullableUserFilter>;
5787
6127
  /** Comparator for the collection length. */
@@ -5830,6 +6170,8 @@ export declare type ProjectCreateInput = {
5830
6170
  icon?: Maybe<Scalars["String"]>;
5831
6171
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
5832
6172
  id?: Maybe<Scalars["String"]>;
6173
+ /** The ID of the last template applied to the project. */
6174
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
5833
6175
  /** The identifier of the project lead. */
5834
6176
  leadId?: Maybe<Scalars["String"]>;
5835
6177
  /** The identifiers of the members of this project. */
@@ -5873,6 +6215,8 @@ export declare type ProjectFilter = {
5873
6215
  id?: Maybe<IdComparator>;
5874
6216
  /** Filters that the projects issues must satisfy. */
5875
6217
  issues?: Maybe<IssueCollectionFilter>;
6218
+ /** Filters that the last applied template must satisfy. */
6219
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
5876
6220
  /** Filters that the projects lead must satisfy. */
5877
6221
  lead?: Maybe<NullableUserFilter>;
5878
6222
  /** Filters that the projects members must satisfy. */
@@ -5973,8 +6317,10 @@ export declare type ProjectMilestone = Node & {
5973
6317
  archivedAt?: Maybe<Scalars["DateTime"]>;
5974
6318
  /** The time at which the entity was created. */
5975
6319
  createdAt: Scalars["DateTime"];
5976
- /** The description of the project milestone. */
6320
+ /** The project milestone's description in markdown format. */
5977
6321
  description?: Maybe<Scalars["String"]>;
6322
+ /** [Internal] The project milestone's description as a Prosemirror document. */
6323
+ descriptionData?: Maybe<Scalars["JSON"]>;
5978
6324
  /** The unique identifier of the entity. */
5979
6325
  id: Scalars["ID"];
5980
6326
  /** The name of the project milestone. */
@@ -6022,8 +6368,10 @@ export declare type ProjectMilestoneConnection = {
6022
6368
  pageInfo: PageInfo;
6023
6369
  };
6024
6370
  export declare type ProjectMilestoneCreateInput = {
6025
- /** The description of the project milestone. */
6371
+ /** The description of the project milestone in markdown format. */
6026
6372
  description?: Maybe<Scalars["String"]>;
6373
+ /** The description of the project milestone as a Prosemirror document. */
6374
+ descriptionData?: Maybe<Scalars["JSONObject"]>;
6027
6375
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
6028
6376
  id?: Maybe<Scalars["String"]>;
6029
6377
  /** The name of the project milestone. */
@@ -6068,12 +6416,12 @@ export declare type ProjectMilestonePayload = {
6068
6416
  success: Scalars["Boolean"];
6069
6417
  };
6070
6418
  export declare type ProjectMilestoneUpdateInput = {
6071
- /** The description of the project milestone. */
6419
+ /** The description of the project milestone in markdown format. */
6072
6420
  description?: Maybe<Scalars["String"]>;
6421
+ /** The description of the project milestone as a Prosemirror document. */
6422
+ descriptionData?: Maybe<Scalars["JSONObject"]>;
6073
6423
  /** The name of the project milestone. */
6074
6424
  name?: Maybe<Scalars["String"]>;
6075
- /** Related project for the project milestone. */
6076
- projectId?: Maybe<Scalars["String"]>;
6077
6425
  /** The sort order for the project milestone within a project. */
6078
6426
  sortOrder?: Maybe<Scalars["Float"]>;
6079
6427
  /** The planned target date of the project milestone. */
@@ -6195,8 +6543,6 @@ export declare type ProjectSearchResult = Node & {
6195
6543
  completedScopeHistory: Array<Scalars["Float"]>;
6196
6544
  /** The project's content in markdown format. */
6197
6545
  content?: Maybe<Scalars["String"]>;
6198
- /** [Internal] The project's content as a Prosemirror document. */
6199
- contentData?: Maybe<Scalars["JSON"]>;
6200
6546
  /** The project was created based on this issue. */
6201
6547
  convertedFromIssue?: Maybe<Issue>;
6202
6548
  /** The time at which the entity was created. */
@@ -6219,6 +6565,8 @@ export declare type ProjectSearchResult = Node & {
6219
6565
  issueCountHistory: Array<Scalars["Float"]>;
6220
6566
  /** Issues associated with the project. */
6221
6567
  issues: IssueConnection;
6568
+ /** The last template that was applied to this project. */
6569
+ lastAppliedTemplate?: Maybe<Template>;
6222
6570
  /** The project lead. */
6223
6571
  lead?: Maybe<User>;
6224
6572
  /** Links associated with the project. */
@@ -6355,6 +6703,8 @@ export declare type ProjectUpdate = Node & {
6355
6703
  createdAt: Scalars["DateTime"];
6356
6704
  /** The diff between the current update and the previous one. */
6357
6705
  diff?: Maybe<Scalars["JSON"]>;
6706
+ /** The diff between the current update and the previous one, formatted as markdown. */
6707
+ diffMarkdown?: Maybe<Scalars["String"]>;
6358
6708
  /** The time the project update was edited. */
6359
6709
  editedAt?: Maybe<Scalars["DateTime"]>;
6360
6710
  /** The health of the project at the time of the update. */
@@ -6400,6 +6750,23 @@ export declare type ProjectUpdateEdge = {
6400
6750
  cursor: Scalars["String"];
6401
6751
  node: ProjectUpdate;
6402
6752
  };
6753
+ /** ProjectUpdate filtering options. */
6754
+ export declare type ProjectUpdateFilter = {
6755
+ /** Compound filters, all of which need to be matched by the ProjectUpdate. */
6756
+ and?: Maybe<Array<ProjectUpdateFilter>>;
6757
+ /** Comparator for the created at date. */
6758
+ createdAt?: Maybe<DateComparator>;
6759
+ /** Comparator for the identifier. */
6760
+ id?: Maybe<IdComparator>;
6761
+ /** Compound filters, one of which need to be matched by the ProjectUpdate. */
6762
+ or?: Maybe<Array<ProjectUpdateFilter>>;
6763
+ /** Filters that the project update project must satisfy. */
6764
+ project?: Maybe<ProjectFilter>;
6765
+ /** Comparator for the updated at date. */
6766
+ updatedAt?: Maybe<DateComparator>;
6767
+ /** Filters that the project update creator must satisfy. */
6768
+ user?: Maybe<UserFilter>;
6769
+ };
6403
6770
  /** The health type of a project when the update is created. */
6404
6771
  export declare enum ProjectUpdateHealthType {
6405
6772
  AtRisk = "atRisk",
@@ -6419,6 +6786,8 @@ export declare type ProjectUpdateInput = {
6419
6786
  description?: Maybe<Scalars["String"]>;
6420
6787
  /** The icon of the project. */
6421
6788
  icon?: Maybe<Scalars["String"]>;
6789
+ /** The ID of the last template applied to the project. */
6790
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
6422
6791
  /** The identifier of the project lead. */
6423
6792
  leadId?: Maybe<Scalars["String"]>;
6424
6793
  /** The identifiers of the members of this project. */
@@ -6511,6 +6880,13 @@ export declare enum ProjectUpdateReminderFrequency {
6511
6880
  TwoWeeks = "twoWeeks",
6512
6881
  Week = "week"
6513
6882
  }
6883
+ export declare type ProjectUpdateReminderPayload = {
6884
+ __typename?: "ProjectUpdateReminderPayload";
6885
+ /** The identifier of the last sync operation. */
6886
+ lastSyncId: Scalars["Float"];
6887
+ /** Whether the operation was successful. */
6888
+ success: Scalars["Boolean"];
6889
+ };
6514
6890
  export declare type ProjectUpdateUpdateInput = {
6515
6891
  /** The content of the project update in markdown format. */
6516
6892
  body?: Maybe<Scalars["String"]>;
@@ -6560,7 +6936,7 @@ export declare type PushSubscriptionCreateInput = {
6560
6936
  /** Whether this is a subscription payload for Google Cloud Messaging or Apple Push Notification service */
6561
6937
  type?: Maybe<PushSubscriptionType>;
6562
6938
  /** The user identifier of the subscription. */
6563
- userId: Scalars["String"];
6939
+ userId?: Maybe<Scalars["String"]>;
6564
6940
  };
6565
6941
  export declare type PushSubscriptionEdge = {
6566
6942
  __typename?: "PushSubscriptionEdge";
@@ -6570,6 +6946,8 @@ export declare type PushSubscriptionEdge = {
6570
6946
  };
6571
6947
  export declare type PushSubscriptionPayload = {
6572
6948
  __typename?: "PushSubscriptionPayload";
6949
+ /** The push subscription that was created or updated. */
6950
+ entity: PushSubscription;
6573
6951
  /** The identifier of the last sync operation. */
6574
6952
  lastSyncId: Scalars["Float"];
6575
6953
  /** Whether the operation was successful. */
@@ -6627,6 +7005,8 @@ export declare type Query = {
6627
7005
  auditEntries: AuditEntryConnection;
6628
7006
  /** List of audit entry types. */
6629
7007
  auditEntryTypes: Array<AuditEntryType>;
7008
+ /** User's active sessions. */
7009
+ authenticationSessions: Array<AuthenticationSessionResponse>;
6630
7010
  /** [INTERNAL] Get all authorized applications for a user */
6631
7011
  authorizedApplications: Array<AuthorizedApplication>;
6632
7012
  /** Fetch users belonging to this user account. */
@@ -6639,6 +7019,8 @@ export declare type Query = {
6639
7019
  customView: CustomView;
6640
7020
  /** [INTERNAL] Suggests metadata for a view based on it's filters. */
6641
7021
  customViewDetailsSuggestion: CustomViewSuggestionPayload;
7022
+ /** Whether a custom view has other subscribers than the current user in the organization. */
7023
+ customViewHasSubscribers: CustomViewHasSubscribersPayload;
6642
7024
  /** Custom views for the user. */
6643
7025
  customViews: CustomViewConnection;
6644
7026
  /** One specific cycle. */
@@ -6647,10 +7029,10 @@ export declare type Query = {
6647
7029
  cycles: CycleConnection;
6648
7030
  /** One specific document. */
6649
7031
  document: Document;
6650
- /** All documents for the project. */
7032
+ /** A collection of document content history entries. */
7033
+ documentContentHistory: DocumentContentHistoryPayload;
7034
+ /** All documents in the workspace. */
6651
7035
  documents: DocumentConnection;
6652
- /** Returns embed info for any url */
6653
- embedInfo: EmbedPayload;
6654
7036
  /** A specific emoji. */
6655
7037
  emoji: Emoji;
6656
7038
  /** All custom emojis. */
@@ -6663,8 +7045,6 @@ export declare type Query = {
6663
7045
  favorite: Favorite;
6664
7046
  /** The user's favorites. */
6665
7047
  favorites: FavoriteConnection;
6666
- /** Fetch Figma screenshot and other information with file and node identifiers. */
6667
- figmaEmbedInfo: FigmaEmbedPayload;
6668
7048
  /** One specific integration. */
6669
7049
  integration: Integration;
6670
7050
  /** One specific integrationTemplate. */
@@ -6775,8 +7155,6 @@ export declare type Query = {
6775
7155
  templatesForIntegration: Array<Template>;
6776
7156
  /** One specific user. */
6777
7157
  user: User;
6778
- /** Finds a user account by email. */
6779
- userAccountExists?: Maybe<UserAccountExistsPayload>;
6780
7158
  /** The user's settings. */
6781
7159
  userSettings: UserSettings;
6782
7160
  /** All users for the organization. */
@@ -6890,6 +7268,9 @@ export declare type QueryCustomViewDetailsSuggestionArgs = {
6890
7268
  filter: Scalars["JSONObject"];
6891
7269
  modelName?: Maybe<Scalars["String"]>;
6892
7270
  };
7271
+ export declare type QueryCustomViewHasSubscribersArgs = {
7272
+ id: Scalars["String"];
7273
+ };
6893
7274
  export declare type QueryCustomViewsArgs = {
6894
7275
  after?: Maybe<Scalars["String"]>;
6895
7276
  before?: Maybe<Scalars["String"]>;
@@ -6913,6 +7294,9 @@ export declare type QueryCyclesArgs = {
6913
7294
  export declare type QueryDocumentArgs = {
6914
7295
  id: Scalars["String"];
6915
7296
  };
7297
+ export declare type QueryDocumentContentHistoryArgs = {
7298
+ id: Scalars["String"];
7299
+ };
6916
7300
  export declare type QueryDocumentsArgs = {
6917
7301
  after?: Maybe<Scalars["String"]>;
6918
7302
  before?: Maybe<Scalars["String"]>;
@@ -6921,9 +7305,6 @@ export declare type QueryDocumentsArgs = {
6921
7305
  last?: Maybe<Scalars["Int"]>;
6922
7306
  orderBy?: Maybe<PaginationOrderBy>;
6923
7307
  };
6924
- export declare type QueryEmbedInfoArgs = {
6925
- url: Scalars["String"];
6926
- };
6927
7308
  export declare type QueryEmojiArgs = {
6928
7309
  id: Scalars["String"];
6929
7310
  };
@@ -6957,10 +7338,6 @@ export declare type QueryFavoritesArgs = {
6957
7338
  last?: Maybe<Scalars["Int"]>;
6958
7339
  orderBy?: Maybe<PaginationOrderBy>;
6959
7340
  };
6960
- export declare type QueryFigmaEmbedInfoArgs = {
6961
- fileId: Scalars["String"];
6962
- nodeId?: Maybe<Scalars["String"]>;
6963
- };
6964
7341
  export declare type QueryIntegrationArgs = {
6965
7342
  id: Scalars["String"];
6966
7343
  };
@@ -7129,6 +7506,7 @@ export declare type QueryProjectUpdateInteractionsArgs = {
7129
7506
  export declare type QueryProjectUpdatesArgs = {
7130
7507
  after?: Maybe<Scalars["String"]>;
7131
7508
  before?: Maybe<Scalars["String"]>;
7509
+ filter?: Maybe<ProjectUpdateFilter>;
7132
7510
  first?: Maybe<Scalars["Int"]>;
7133
7511
  includeArchived?: Maybe<Scalars["Boolean"]>;
7134
7512
  last?: Maybe<Scalars["Int"]>;
@@ -7170,6 +7548,7 @@ export declare type QuerySearchDocumentsArgs = {
7170
7548
  before?: Maybe<Scalars["String"]>;
7171
7549
  first?: Maybe<Scalars["Int"]>;
7172
7550
  includeArchived?: Maybe<Scalars["Boolean"]>;
7551
+ includeComments?: Maybe<Scalars["Boolean"]>;
7173
7552
  last?: Maybe<Scalars["Int"]>;
7174
7553
  orderBy?: Maybe<PaginationOrderBy>;
7175
7554
  teamId?: Maybe<Scalars["String"]>;
@@ -7181,6 +7560,7 @@ export declare type QuerySearchIssuesArgs = {
7181
7560
  filter?: Maybe<IssueFilter>;
7182
7561
  first?: Maybe<Scalars["Int"]>;
7183
7562
  includeArchived?: Maybe<Scalars["Boolean"]>;
7563
+ includeComments?: Maybe<Scalars["Boolean"]>;
7184
7564
  last?: Maybe<Scalars["Int"]>;
7185
7565
  orderBy?: Maybe<PaginationOrderBy>;
7186
7566
  teamId?: Maybe<Scalars["String"]>;
@@ -7191,6 +7571,7 @@ export declare type QuerySearchProjectsArgs = {
7191
7571
  before?: Maybe<Scalars["String"]>;
7192
7572
  first?: Maybe<Scalars["Int"]>;
7193
7573
  includeArchived?: Maybe<Scalars["Boolean"]>;
7574
+ includeComments?: Maybe<Scalars["Boolean"]>;
7194
7575
  last?: Maybe<Scalars["Int"]>;
7195
7576
  orderBy?: Maybe<PaginationOrderBy>;
7196
7577
  teamId?: Maybe<Scalars["String"]>;
@@ -7232,9 +7613,6 @@ export declare type QueryTemplatesForIntegrationArgs = {
7232
7613
  export declare type QueryUserArgs = {
7233
7614
  id: Scalars["String"];
7234
7615
  };
7235
- export declare type QueryUserAccountExistsArgs = {
7236
- email: Scalars["String"];
7237
- };
7238
7616
  export declare type QueryUsersArgs = {
7239
7617
  after?: Maybe<Scalars["String"]>;
7240
7618
  before?: Maybe<Scalars["String"]>;
@@ -7617,7 +7995,8 @@ export declare enum SlaStatus {
7617
7995
  Failed = "Failed",
7618
7996
  HighRisk = "HighRisk",
7619
7997
  LowRisk = "LowRisk",
7620
- MediumRisk = "MediumRisk"
7998
+ MediumRisk = "MediumRisk",
7999
+ Paused = "Paused"
7621
8000
  }
7622
8001
  /** Comparator for sla status. */
7623
8002
  export declare type SlaStatusComparator = {
@@ -7643,22 +8022,48 @@ export declare type SlackAsksSettingsInput = {
7643
8022
  slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
7644
8023
  };
7645
8024
  /** Tuple for mapping Slack channel IDs to names */
8025
+ export declare type SlackAsksTeamSettings = {
8026
+ __typename?: "SlackAsksTeamSettings";
8027
+ /** Whether the default Asks template is enabled in the given channel for this team */
8028
+ hasDefaultAsk: Scalars["Boolean"];
8029
+ /** The Linear team ID. */
8030
+ id: Scalars["String"];
8031
+ };
8032
+ export declare type SlackAsksTeamSettingsInput = {
8033
+ /** Whether the default Asks template is enabled in the given channel for this team */
8034
+ hasDefaultAsk: Scalars["Boolean"];
8035
+ /** The Linear team ID. */
8036
+ id: Scalars["String"];
8037
+ };
8038
+ /** Object for mapping Slack channel IDs to names and other settings */
7646
8039
  export declare type SlackChannelNameMapping = {
7647
8040
  __typename?: "SlackChannelNameMapping";
8041
+ /** Whether or not using the :ticket: emoji in this channel should automatically create Asks */
8042
+ autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
8043
+ /** Whether or not top-level messages in this channel should automatically create Asks */
8044
+ autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
7648
8045
  /** The Slack channel ID. */
7649
8046
  id: Scalars["String"];
7650
8047
  /** Whether or not the Slack channel is private */
7651
8048
  isPrivate?: Maybe<Scalars["Boolean"]>;
7652
8049
  /** The Slack channel name. */
7653
8050
  name: Scalars["String"];
8051
+ /** Which teams are connected to the channel and settings for those teams */
8052
+ teams: Array<SlackAsksTeamSettings>;
7654
8053
  };
7655
8054
  export declare type SlackChannelNameMappingInput = {
8055
+ /** Whether or not using the :ticket: emoji in this channel should automatically create Asks */
8056
+ autoCreateOnEmoji?: Maybe<Scalars["Boolean"]>;
8057
+ /** Whether or not top-level messages in this channel should automatically create Asks */
8058
+ autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
7656
8059
  /** The Slack channel ID. */
7657
8060
  id: Scalars["String"];
7658
8061
  /** Whether or not the Slack channel is private */
7659
8062
  isPrivate?: Maybe<Scalars["Boolean"]>;
7660
8063
  /** The Slack channel name. */
7661
8064
  name: Scalars["String"];
8065
+ /** Which teams are connected to the channel and settings for those teams */
8066
+ teams: Array<SlackAsksTeamSettingsInput>;
7662
8067
  };
7663
8068
  /** Slack notification specific settings. */
7664
8069
  export declare type SlackPostSettings = {
@@ -7672,6 +8077,21 @@ export declare type SlackPostSettingsInput = {
7672
8077
  channelId: Scalars["String"];
7673
8078
  configurationUrl: Scalars["String"];
7674
8079
  };
8080
+ /** Comparator for issue source type. */
8081
+ export declare type SourceMetadataComparator = {
8082
+ /** Equals constraint. */
8083
+ eq?: Maybe<Scalars["String"]>;
8084
+ /** In-array constraint. */
8085
+ in?: Maybe<Array<Scalars["String"]>>;
8086
+ /** Not-equals constraint. */
8087
+ neq?: Maybe<Scalars["String"]>;
8088
+ /** Not-in-array constraint. */
8089
+ nin?: Maybe<Array<Scalars["String"]>>;
8090
+ /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
8091
+ null?: Maybe<Scalars["Boolean"]>;
8092
+ /** Compound filters, all of which need to be matched by the sub type. */
8093
+ subType?: Maybe<SubTypeComparator>;
8094
+ };
7675
8095
  /** Comparator for `sourceType` field. */
7676
8096
  export declare type SourceTypeComparator = {
7677
8097
  /** Contains constraint. Matches any values that contain the given string. */
@@ -7745,18 +8165,25 @@ export declare type StringComparator = {
7745
8165
  /** Starts with case insensitive constraint. Matches any values that start with the given string. */
7746
8166
  startsWithIgnoreCase?: Maybe<Scalars["String"]>;
7747
8167
  };
7748
- /**
7749
- * Contains either the full serialized state of the application or delta packets that the requester can
7750
- * apply to the local data set in order to be up-to-date.
7751
- */
8168
+ /** Comparator for source type. */
8169
+ export declare type SubTypeComparator = {
8170
+ /** Equals constraint. */
8171
+ eq?: Maybe<Scalars["String"]>;
8172
+ /** In-array constraint. */
8173
+ in?: Maybe<Array<Scalars["String"]>>;
8174
+ /** Not-equals constraint. */
8175
+ neq?: Maybe<Scalars["String"]>;
8176
+ /** Not-in-array constraint. */
8177
+ nin?: Maybe<Array<Scalars["String"]>>;
8178
+ /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
8179
+ null?: Maybe<Scalars["Boolean"]>;
8180
+ };
8181
+ /** Contains either the full serialized state of the application or delta packets that the requester can apply to the local data set in order to be up-to-date. */
7752
8182
  export declare type SyncResponse = {
7753
8183
  __typename?: "SyncResponse";
7754
8184
  /** The version of the remote database. Incremented by 1 for each migration run on the database. */
7755
8185
  databaseVersion: Scalars["Float"];
7756
- /**
7757
- * JSON serialized delta changes that the client can apply to its local state
7758
- * in order to catch up with the state of the world.
7759
- */
8186
+ /** JSON serialized delta changes that the client can apply to its local state in order to catch up with the state of the world. */
7760
8187
  delta?: Maybe<Scalars["String"]>;
7761
8188
  /** The last sync id covered by the response. */
7762
8189
  lastSyncId: Scalars["Float"];
@@ -7800,7 +8227,7 @@ export declare type Team = Node & {
7800
8227
  cycleIssueAutoAssignCompleted: Scalars["Boolean"];
7801
8228
  /** Auto assign started issues to current cycle. */
7802
8229
  cycleIssueAutoAssignStarted: Scalars["Boolean"];
7803
- /** Only allow issues issues with cycles in Active Issues. */
8230
+ /** Auto assign issues to current cycle if in active status. */
7804
8231
  cycleLockToActive: Scalars["Boolean"];
7805
8232
  /** The day of the week that a new cycle starts. */
7806
8233
  cycleStartDay: Scalars["Float"];
@@ -7812,6 +8239,8 @@ export declare type Team = Node & {
7812
8239
  defaultIssueEstimate: Scalars["Float"];
7813
8240
  /** The default workflow state into which issues are set when they are opened by team members. */
7814
8241
  defaultIssueState?: Maybe<WorkflowState>;
8242
+ /** The default template to use for new projects created for the team. */
8243
+ defaultProjectTemplate?: Maybe<Template>;
7815
8244
  /** The default template to use for new issues created by members of the team. */
7816
8245
  defaultTemplateForMembers?: Maybe<Template>;
7817
8246
  /**
@@ -8051,6 +8480,8 @@ export declare type TeamCreateInput = {
8051
8480
  cyclesEnabled?: Maybe<Scalars["Boolean"]>;
8052
8481
  /** What to use as an default estimate for unestimated issues. */
8053
8482
  defaultIssueEstimate?: Maybe<Scalars["Float"]>;
8483
+ /** The identifier of the default project template of this team. */
8484
+ defaultProjectTemplateId?: Maybe<Scalars["String"]>;
8054
8485
  /** The identifier of the default template for members of this team. */
8055
8486
  defaultTemplateForMembersId?: Maybe<Scalars["String"]>;
8056
8487
  /** The identifier of the default template for non-members of this team. */
@@ -8229,6 +8660,20 @@ export declare type TeamPayload = {
8229
8660
  /** The team that was created or updated. */
8230
8661
  team?: Maybe<Team>;
8231
8662
  };
8663
+ /** Tuple for mapping Linear teams to GitHub repos. */
8664
+ export declare type TeamRepoMapping = {
8665
+ __typename?: "TeamRepoMapping";
8666
+ /** The GitHub repo id. */
8667
+ gitHubRepoId: Scalars["Float"];
8668
+ /** The Linear team id to map to the given project. */
8669
+ linearTeamId: Scalars["String"];
8670
+ };
8671
+ export declare type TeamRepoMappingInput = {
8672
+ /** The GitHub repo id. */
8673
+ gitHubRepoId: Scalars["Float"];
8674
+ /** The Linear team id to map to the given project. */
8675
+ linearTeamId: Scalars["String"];
8676
+ };
8232
8677
  export declare type TeamUpdateInput = {
8233
8678
  /** Period after which closed and completed issues are automatically archived, in months. */
8234
8679
  autoArchivePeriod?: Maybe<Scalars["Float"]>;
@@ -8258,6 +8703,8 @@ export declare type TeamUpdateInput = {
8258
8703
  defaultIssueEstimate?: Maybe<Scalars["Float"]>;
8259
8704
  /** Default status for newly created issues. */
8260
8705
  defaultIssueStateId?: Maybe<Scalars["String"]>;
8706
+ /** The identifier of the default project template of this team. */
8707
+ defaultProjectTemplateId?: Maybe<Scalars["String"]>;
8261
8708
  /** The identifier of the default template for members of this team. */
8262
8709
  defaultTemplateForMembersId?: Maybe<Scalars["String"]>;
8263
8710
  /** The identifier of the default template for non-members of this team. */
@@ -8419,63 +8866,46 @@ export declare type TokenUserAccountAuthInput = {
8419
8866
  /** The magic login code. */
8420
8867
  token: Scalars["String"];
8421
8868
  };
8422
- export declare type UpdateOrganizationInput = {
8423
- /** List of services that are allowed to be used for login. */
8424
- allowedAuthServices?: Maybe<Array<Scalars["String"]>>;
8425
- /** How git branches are formatted. If null, default formatting will be used. */
8426
- gitBranchFormat?: Maybe<Scalars["String"]>;
8427
- /** Whether the Git integration linkback messages should be sent for private repositories. */
8428
- gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
8429
- /** Whether the Git integration linkback messages should be sent for public repositories. */
8430
- gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
8431
- /** Linear Preview feature flags */
8432
- linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
8433
- /** The logo of the organization. */
8434
- logoUrl?: Maybe<Scalars["String"]>;
8435
- /** The name of the organization. */
8436
- name?: Maybe<Scalars["String"]>;
8437
- /** Whether the organization has opted for having to approve all OAuth applications for install. */
8438
- oauthAppReview?: Maybe<Scalars["Boolean"]>;
8439
- /** The day at which project updates are sent. */
8440
- projectUpdateRemindersDay?: Maybe<Day>;
8441
- /** The hour at which project updates are sent. */
8442
- projectUpdateRemindersHour?: Maybe<Scalars["Float"]>;
8443
- /** The frequency at which project updates are sent. */
8444
- projectUpdatesReminderFrequency?: Maybe<ProjectUpdateReminderFrequency>;
8445
- /** Whether the organization has opted for reduced customer support attachment information. */
8446
- reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
8447
- /** Whether the organization is using roadmap. */
8448
- roadmapEnabled?: Maybe<Scalars["Boolean"]>;
8449
- /** Which day count to use for SLA calculation. */
8450
- slaDayCount?: Maybe<SlaDayCountType>;
8451
- /** Internal. Whether SLAs have been enabled for the organization. */
8452
- slaEnabled?: Maybe<Scalars["Boolean"]>;
8453
- /** The URL key of the organization. */
8454
- urlKey?: Maybe<Scalars["String"]>;
8869
+ /** A team's triage responsibility. */
8870
+ export declare type TriageResponsibility = Node & {
8871
+ __typename?: "TriageResponsibility";
8872
+ /** The action to take when an issue is added to triage. */
8873
+ action: TriageResponsibilityAction;
8874
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
8875
+ archivedAt?: Maybe<Scalars["DateTime"]>;
8876
+ /** The responsibility configuration. */
8877
+ config?: Maybe<Scalars["JSONObject"]>;
8878
+ /** The time at which the entity was created. */
8879
+ createdAt: Scalars["DateTime"];
8880
+ /** The unique identifier of the entity. */
8881
+ id: Scalars["ID"];
8882
+ /** The integration used for scheduling when using the 'integrationSchedule' configuration. */
8883
+ integration: Integration;
8884
+ /** The team to which the triage responsibility belongs to. */
8885
+ team: Team;
8886
+ /**
8887
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8888
+ * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
8889
+ * been updated after creation.
8890
+ */
8891
+ updatedAt: Scalars["DateTime"];
8455
8892
  };
8456
- export declare type UpdateUserInput = {
8457
- /** Whether the user account is active. */
8458
- active?: Maybe<Scalars["Boolean"]>;
8459
- /** Whether the user account has admin privileges. */
8460
- admin?: Maybe<Scalars["Boolean"]>;
8461
- /** The avatar image URL of the user. */
8462
- avatarUrl?: Maybe<Scalars["String"]>;
8463
- /** The user description or a short bio. */
8464
- description?: Maybe<Scalars["String"]>;
8465
- /** Reason for deactivation. */
8466
- disableReason?: Maybe<Scalars["String"]>;
8467
- /** The display name of the user. */
8468
- displayName?: Maybe<Scalars["String"]>;
8469
- /** The name of the user. */
8470
- name?: Maybe<Scalars["String"]>;
8471
- /** The emoji part of the user status. */
8472
- statusEmoji?: Maybe<Scalars["String"]>;
8473
- /** The label part of the user status. */
8474
- statusLabel?: Maybe<Scalars["String"]>;
8475
- /** When the user status should be cleared. */
8476
- statusUntilAt?: Maybe<Scalars["DateTime"]>;
8477
- /** The local timezone of the user. */
8478
- timezone?: Maybe<Scalars["String"]>;
8893
+ /** Which action should be taken after an issue is added to triage. */
8894
+ export declare enum TriageResponsibilityAction {
8895
+ Assign = "assign",
8896
+ Notify = "notify"
8897
+ }
8898
+ export declare type TriageResponsibilityConnection = {
8899
+ __typename?: "TriageResponsibilityConnection";
8900
+ edges: Array<TriageResponsibilityEdge>;
8901
+ nodes: Array<TriageResponsibility>;
8902
+ pageInfo: PageInfo;
8903
+ };
8904
+ export declare type TriageResponsibilityEdge = {
8905
+ __typename?: "TriageResponsibilityEdge";
8906
+ /** Used in `before` and `after` args */
8907
+ cursor: Scalars["String"];
8908
+ node: TriageResponsibility;
8479
8909
  };
8480
8910
  /** Object representing Google Cloud upload policy, plus additional data. */
8481
8911
  export declare type UploadFile = {
@@ -8629,8 +9059,6 @@ export declare type UserAccount = {
8629
9059
  service: Scalars["String"];
8630
9060
  /** The time at which the model was updated. */
8631
9061
  updatedAt: Scalars["DateTime"];
8632
- /** Users belonging to the account. */
8633
- users: Array<User>;
8634
9062
  };
8635
9063
  /** [INTERNAL] An email change verification challenge. */
8636
9064
  export declare type UserAccountEmailChange = {
@@ -8654,12 +9082,6 @@ export declare type UserAccountEmailChange = {
8654
9082
  /** The time at which the model was updated. */
8655
9083
  updatedAt: Scalars["DateTime"];
8656
9084
  };
8657
- /** [INTERNAL] Result of looking up a user account by email. */
8658
- export declare type UserAccountExistsPayload = {
8659
- __typename?: "UserAccountExistsPayload";
8660
- /** [INTERNAL] Whether the operation was successful. */
8661
- success: Scalars["Boolean"];
8662
- };
8663
9085
  export declare type UserAdminPayload = {
8664
9086
  __typename?: "UserAdminPayload";
8665
9087
  /** Whether the operation was successful. */
@@ -8784,6 +9206,7 @@ export declare enum UserFlagType {
8784
9206
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
8785
9207
  FigmaPluginBannerDismissed = "figmaPluginBannerDismissed",
8786
9208
  FigmaPromptDismissed = "figmaPromptDismissed",
9209
+ HelpIslandFeatureInsightsDismissed = "helpIslandFeatureInsightsDismissed",
8787
9210
  ImportBannerDismissed = "importBannerDismissed",
8788
9211
  InsightsHelpDismissed = "insightsHelpDismissed",
8789
9212
  InsightsWelcomeDismissed = "insightsWelcomeDismissed",
@@ -8932,6 +9355,30 @@ export declare type UserSettingsUpdateInput = {
8932
9355
  /** [Internal] The user's usage warning history. */
8933
9356
  usageWarningHistory?: Maybe<Scalars["JSONObject"]>;
8934
9357
  };
9358
+ export declare type UserUpdateInput = {
9359
+ /** Whether the user account is active. */
9360
+ active?: Maybe<Scalars["Boolean"]>;
9361
+ /** Whether the user account has admin privileges. */
9362
+ admin?: Maybe<Scalars["Boolean"]>;
9363
+ /** The avatar image URL of the user. */
9364
+ avatarUrl?: Maybe<Scalars["String"]>;
9365
+ /** The user description or a short bio. */
9366
+ description?: Maybe<Scalars["String"]>;
9367
+ /** Reason for deactivation. */
9368
+ disableReason?: Maybe<Scalars["String"]>;
9369
+ /** The display name of the user. */
9370
+ displayName?: Maybe<Scalars["String"]>;
9371
+ /** The name of the user. */
9372
+ name?: Maybe<Scalars["String"]>;
9373
+ /** The emoji part of the user status. */
9374
+ statusEmoji?: Maybe<Scalars["String"]>;
9375
+ /** The label part of the user status. */
9376
+ statusLabel?: Maybe<Scalars["String"]>;
9377
+ /** When the user status should be cleared. */
9378
+ statusUntilAt?: Maybe<Scalars["DateTime"]>;
9379
+ /** The local timezone of the user. */
9380
+ timezone?: Maybe<Scalars["String"]>;
9381
+ };
8935
9382
  /** View preferences. */
8936
9383
  export declare type ViewPreferences = Node & {
8937
9384
  __typename?: "ViewPreferences";
@@ -9250,7 +9697,7 @@ export declare type WorkflowState = Node & {
9250
9697
  position: Scalars["Float"];
9251
9698
  /** The team to which this state belongs to. */
9252
9699
  team: Team;
9253
- /** The type of the state. */
9700
+ /** The type of the state. One of "triage", "backlog", "unstarted", "started", "completed", "canceled". */
9254
9701
  type: Scalars["String"];
9255
9702
  /**
9256
9703
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
@@ -9458,16 +9905,25 @@ export declare type ActorBotFragment = {
9458
9905
  } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
9459
9906
  export declare type CommentFragment = {
9460
9907
  __typename: "Comment";
9461
- } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
9908
+ } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
9462
9909
  botActor?: Maybe<{
9463
9910
  __typename?: "ActorBot";
9464
9911
  } & ActorBotFragment>;
9912
+ resolvingComment?: Maybe<{
9913
+ __typename?: "Comment";
9914
+ } & Pick<Comment, "id">>;
9915
+ documentContent: {
9916
+ __typename?: "DocumentContent";
9917
+ } & DocumentContentFragment;
9465
9918
  issue: {
9466
9919
  __typename?: "Issue";
9467
9920
  } & Pick<Issue, "id">;
9468
9921
  parent?: Maybe<{
9469
9922
  __typename?: "Comment";
9470
9923
  } & Pick<Comment, "id">>;
9924
+ resolvingUser?: Maybe<{
9925
+ __typename?: "User";
9926
+ } & Pick<User, "id">>;
9471
9927
  user?: Maybe<{
9472
9928
  __typename?: "User";
9473
9929
  } & Pick<User, "id">>;
@@ -9552,16 +10008,32 @@ export declare type CycleNotificationSubscriptionFragment = {
9552
10008
  export declare type DocumentContentFragment = {
9553
10009
  __typename: "DocumentContent";
9554
10010
  } & Pick<DocumentContent, "contentData" | "content" | "contentState" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10011
+ document?: Maybe<{
10012
+ __typename?: "Document";
10013
+ } & Pick<Document, "id">>;
9555
10014
  issue?: Maybe<{
9556
10015
  __typename?: "Issue";
9557
10016
  } & Pick<Issue, "id">>;
10017
+ projectMilestone?: Maybe<{
10018
+ __typename?: "ProjectMilestone";
10019
+ } & Pick<ProjectMilestone, "id">>;
9558
10020
  project?: Maybe<{
9559
10021
  __typename?: "Project";
9560
10022
  } & Pick<Project, "id">>;
9561
10023
  };
10024
+ export declare type DocumentContentHistoryFragment = {
10025
+ __typename: "DocumentContentHistory";
10026
+ } & Pick<DocumentContentHistory, "actorIds" | "contentData" | "updatedAt" | "archivedAt" | "createdAt" | "contentDataSnapshotAt" | "id"> & {
10027
+ documentContent: {
10028
+ __typename?: "DocumentContent";
10029
+ } & DocumentContentFragment;
10030
+ };
9562
10031
  export declare type DocumentFragment = {
9563
10032
  __typename: "Document";
9564
- } & Pick<Document, "color" | "contentData" | "content" | "title" | "slugId" | "icon" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10033
+ } & Pick<Document, "color" | "title" | "slugId" | "contentData" | "content" | "icon" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10034
+ lastAppliedTemplate?: Maybe<{
10035
+ __typename?: "Template";
10036
+ } & Pick<Template, "id">>;
9565
10037
  project: {
9566
10038
  __typename?: "Project";
9567
10039
  } & Pick<Project, "id">;
@@ -9680,7 +10152,7 @@ export declare type LabelNotificationSubscriptionFragment = {
9680
10152
  };
9681
10153
  export declare type ProjectMilestoneFragment = {
9682
10154
  __typename: "ProjectMilestone";
9683
- } & Pick<ProjectMilestone, "description" | "updatedAt" | "name" | "sortOrder" | "targetDate" | "archivedAt" | "createdAt" | "id"> & {
10155
+ } & Pick<ProjectMilestone, "updatedAt" | "name" | "sortOrder" | "targetDate" | "description" | "archivedAt" | "createdAt" | "id"> & {
9684
10156
  project: {
9685
10157
  __typename?: "Project";
9686
10158
  } & Pick<Project, "id">;
@@ -9775,6 +10247,9 @@ export declare type ProjectFragment = {
9775
10247
  integrationsSettings?: Maybe<{
9776
10248
  __typename?: "IntegrationsSettings";
9777
10249
  } & Pick<IntegrationsSettings, "id">>;
10250
+ lastAppliedTemplate?: Maybe<{
10251
+ __typename?: "Template";
10252
+ } & Pick<Template, "id">>;
9778
10253
  lead?: Maybe<{
9779
10254
  __typename?: "User";
9780
10255
  } & Pick<User, "id">>;
@@ -9852,6 +10327,12 @@ export declare type IssueHistoryFragment = {
9852
10327
  actor?: Maybe<{
9853
10328
  __typename?: "User";
9854
10329
  } & Pick<User, "id">>;
10330
+ addedLabels?: Maybe<Array<{
10331
+ __typename?: "IssueLabel";
10332
+ } & IssueLabelFragment>>;
10333
+ removedLabels?: Maybe<Array<{
10334
+ __typename?: "IssueLabel";
10335
+ } & IssueLabelFragment>>;
9855
10336
  };
9856
10337
  export declare type IssueRelationFragment = {
9857
10338
  __typename: "IssueRelation";
@@ -9873,16 +10354,6 @@ export declare type RoadmapFragment = {
9873
10354
  __typename?: "User";
9874
10355
  } & Pick<User, "id">;
9875
10356
  };
9876
- export declare type FirstResponderScheduleFragment = {
9877
- __typename: "FirstResponderSchedule";
9878
- } & Pick<FirstResponderSchedule, "updatedAt" | "scheduleData" | "archivedAt" | "createdAt" | "id"> & {
9879
- integration: {
9880
- __typename?: "Integration";
9881
- } & Pick<Integration, "id">;
9882
- team: {
9883
- __typename?: "Team";
9884
- } & Pick<Team, "id">;
9885
- };
9886
10357
  export declare type CycleFragment = {
9887
10358
  __typename: "Cycle";
9888
10359
  } & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
@@ -9922,6 +10393,16 @@ export declare type TeamNotificationSubscriptionFragment = {
9922
10393
  __typename?: "User";
9923
10394
  } & Pick<User, "id">>;
9924
10395
  };
10396
+ export declare type TriageResponsibilityFragment = {
10397
+ __typename: "TriageResponsibility";
10398
+ } & Pick<TriageResponsibility, "updatedAt" | "config" | "archivedAt" | "createdAt" | "id"> & {
10399
+ integration: {
10400
+ __typename?: "Integration";
10401
+ } & Pick<Integration, "id">;
10402
+ team: {
10403
+ __typename?: "Team";
10404
+ } & Pick<Team, "id">;
10405
+ };
9925
10406
  export declare type TemplateFragment = {
9926
10407
  __typename: "Template";
9927
10408
  } & Pick<Template, "templateData" | "description" | "type" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
@@ -9937,7 +10418,7 @@ export declare type TemplateFragment = {
9937
10418
  };
9938
10419
  export declare type ProjectUpdateFragment = {
9939
10420
  __typename: "ProjectUpdate";
9940
- } & Pick<ProjectUpdate, "url" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
10421
+ } & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
9941
10422
  project: {
9942
10423
  __typename?: "Project";
9943
10424
  } & Pick<Project, "id">;
@@ -9947,11 +10428,7 @@ export declare type ProjectUpdateFragment = {
9947
10428
  };
9948
10429
  export declare type UserAccountFragment = {
9949
10430
  __typename: "UserAccount";
9950
- } & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name"> & {
9951
- users: Array<{
9952
- __typename?: "User";
9953
- } & UserFragment>;
9954
- };
10431
+ } & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name">;
9955
10432
  export declare type UserNotificationSubscriptionFragment = {
9956
10433
  __typename: "UserNotificationSubscription";
9957
10434
  } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
@@ -9977,6 +10454,13 @@ export declare type UserNotificationSubscriptionFragment = {
9977
10454
  __typename?: "User";
9978
10455
  } & Pick<User, "id">;
9979
10456
  };
10457
+ export declare type AuthUserFragment = {
10458
+ __typename: "AuthUser";
10459
+ } & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "id"> & {
10460
+ organization: {
10461
+ __typename?: "AuthOrganization";
10462
+ } & AuthOrganizationFragment;
10463
+ };
9980
10464
  export declare type UserFragment = {
9981
10465
  __typename: "User";
9982
10466
  } & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "statusEmoji" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe" | "calendarHash">;
@@ -10041,6 +10525,19 @@ export declare type IssueNotificationFragment = {
10041
10525
  issue: {
10042
10526
  __typename?: "Issue";
10043
10527
  } & Pick<Issue, "id">;
10528
+ subscriptions?: Maybe<Array<({
10529
+ __typename?: "CustomViewNotificationSubscription";
10530
+ } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
10531
+ __typename?: "CycleNotificationSubscription";
10532
+ } & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
10533
+ __typename?: "LabelNotificationSubscription";
10534
+ } & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
10535
+ __typename?: "ProjectNotificationSubscription";
10536
+ } & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
10537
+ __typename?: "TeamNotificationSubscription";
10538
+ } & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
10539
+ __typename?: "UserNotificationSubscription";
10540
+ } & NotificationSubscription_UserNotificationSubscription_Fragment)>>;
10044
10541
  team: {
10045
10542
  __typename?: "Team";
10046
10543
  } & Pick<Team, "id">;
@@ -10057,6 +10554,9 @@ export declare type IssueFragment = {
10057
10554
  cycle?: Maybe<{
10058
10555
  __typename?: "Cycle";
10059
10556
  } & Pick<Cycle, "id">>;
10557
+ lastAppliedTemplate?: Maybe<{
10558
+ __typename?: "Template";
10559
+ } & Pick<Template, "id">>;
10060
10560
  parent?: Maybe<{
10061
10561
  __typename?: "Issue";
10062
10562
  } & Pick<Issue, "id">>;
@@ -10103,14 +10603,17 @@ export declare type OauthClientApprovalNotificationFragment = {
10103
10603
  };
10104
10604
  export declare type OrganizationFragment = {
10105
10605
  __typename: "Organization";
10106
- } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
10606
+ } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "allowMembersToInvite" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
10107
10607
  subscription?: Maybe<{
10108
10608
  __typename?: "PaidSubscription";
10109
10609
  } & PaidSubscriptionFragment>;
10110
10610
  };
10611
+ export declare type AuthOrganizationFragment = {
10612
+ __typename: "AuthOrganization";
10613
+ } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "samlEnabled" | "id" | "userCount">;
10111
10614
  export declare type TeamFragment = {
10112
10615
  __typename: "Team";
10113
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "cycleLockToActive" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "issueSortOrderDefaultToBottom" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled"> & {
10616
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "issueSortOrderDefaultToBottom" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled"> & {
10114
10617
  integrationsSettings?: Maybe<{
10115
10618
  __typename?: "IntegrationsSettings";
10116
10619
  } & Pick<IntegrationsSettings, "id">>;
@@ -10123,6 +10626,9 @@ export declare type TeamFragment = {
10123
10626
  defaultTemplateForNonMembers?: Maybe<{
10124
10627
  __typename?: "Template";
10125
10628
  } & Pick<Template, "id">>;
10629
+ defaultProjectTemplate?: Maybe<{
10630
+ __typename?: "Template";
10631
+ } & Pick<Template, "id">>;
10126
10632
  defaultIssueState?: Maybe<{
10127
10633
  __typename?: "WorkflowState";
10128
10634
  } & Pick<WorkflowState, "id">>;
@@ -10181,6 +10687,9 @@ export declare type GithubOAuthTokenPayloadFragment = {
10181
10687
  __typename?: "GithubOrg";
10182
10688
  } & GithubOrgFragment>>;
10183
10689
  };
10690
+ export declare type GitHubSyncRepoFragment = {
10691
+ __typename: "GitHubSyncRepo";
10692
+ } & Pick<GitHubSyncRepo, "id" | "fullName">;
10184
10693
  export declare type GoogleSheetsSettingsFragment = {
10185
10694
  __typename: "GoogleSheetsSettings";
10186
10695
  } & Pick<GoogleSheetsSettings, "sheetId" | "spreadsheetId" | "spreadsheetUrl" | "updatedIssuesAt">;
@@ -10194,9 +10703,6 @@ export declare type ProjectUpdateInteractionFragment = {
10194
10703
  __typename?: "User";
10195
10704
  } & Pick<User, "id">;
10196
10705
  };
10197
- export declare type EmbedFragment = {
10198
- __typename: "Embed";
10199
- } & Pick<Embed, "html" | "thumbnailUrl" | "url" | "description" | "height" | "thumbnailHeight" | "authorName" | "providerName" | "type" | "width" | "thumbnailWidth" | "title">;
10200
10706
  export declare type IntercomSettingsFragment = {
10201
10707
  __typename: "IntercomSettings";
10202
10708
  } & Pick<IntercomSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
@@ -10259,9 +10765,25 @@ export declare type IssueLabelFragment = {
10259
10765
  export declare type JiraProjectDataFragment = {
10260
10766
  __typename: "JiraProjectData";
10261
10767
  } & Pick<JiraProjectData, "id" | "key" | "name">;
10768
+ export declare type PagerDutyScheduleInfoFragment = {
10769
+ __typename: "PagerDutyScheduleInfo";
10770
+ } & Pick<PagerDutyScheduleInfo, "scheduleId" | "scheduleName" | "url">;
10771
+ export declare type GitHubSyncSettingsFragment = {
10772
+ __typename: "GitHubSyncSettings";
10773
+ } & {
10774
+ teamRepoMap?: Maybe<Array<{
10775
+ __typename?: "TeamRepoMapping";
10776
+ } & TeamRepoMappingFragment>>;
10777
+ repositories?: Maybe<Array<{
10778
+ __typename?: "GitHubSyncRepo";
10779
+ } & GitHubSyncRepoFragment>>;
10780
+ };
10262
10781
  export declare type GitHubSettingsFragment = {
10263
10782
  __typename: "GitHubSettings";
10264
10783
  } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl" | "repositories">;
10784
+ export declare type GitLabSettingsFragment = {
10785
+ __typename: "GitLabSettings";
10786
+ } & Pick<GitLabSettings, "url">;
10265
10787
  declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
10266
10788
  __typename: "CustomViewNotificationSubscription";
10267
10789
  } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
@@ -10423,9 +10945,13 @@ export declare type OauthClientFragment = {
10423
10945
  __typename?: "User";
10424
10946
  } & Pick<User, "id">;
10425
10947
  };
10426
- export declare type FigmaEmbedFragment = {
10427
- __typename: "FigmaEmbed";
10428
- } & Pick<FigmaEmbed, "lastModified" | "name" | "url" | "nodeName">;
10948
+ export declare type SlackChannelNameMappingFragment = {
10949
+ __typename: "SlackChannelNameMapping";
10950
+ } & Pick<SlackChannelNameMapping, "id" | "name" | "isPrivate" | "autoCreateOnMessage" | "autoCreateOnEmoji"> & {
10951
+ teams: Array<{
10952
+ __typename?: "SlackAsksTeamSettings";
10953
+ } & SlackAsksTeamSettingsFragment>;
10954
+ };
10429
10955
  export declare type UploadFileFragment = {
10430
10956
  __typename: "UploadFile";
10431
10957
  } & Pick<UploadFile, "assetUrl" | "contentType" | "filename" | "uploadUrl" | "size" | "metaData"> & {
@@ -10437,8 +10963,8 @@ export declare type PagerDutySettingsFragment = {
10437
10963
  __typename: "PagerDutySettings";
10438
10964
  } & {
10439
10965
  scheduleMapping: Array<{
10440
- __typename?: "PagerDutyScheduleMapping";
10441
- } & PagerDutyScheduleMappingFragment>;
10966
+ __typename?: "PagerDutyScheduleInfo";
10967
+ } & PagerDutyScheduleInfoFragment>;
10442
10968
  };
10443
10969
  export declare type UserAuthorizedApplicationFragment = {
10444
10970
  __typename: "UserAuthorizedApplication";
@@ -10491,6 +11017,12 @@ export declare type IntegrationSettingsFragment = {
10491
11017
  gitHub?: Maybe<{
10492
11018
  __typename?: "GitHubSettings";
10493
11019
  } & GitHubSettingsFragment>;
11020
+ gitHubSync?: Maybe<{
11021
+ __typename?: "GitHubSyncSettings";
11022
+ } & GitHubSyncSettingsFragment>;
11023
+ gitLab?: Maybe<{
11024
+ __typename?: "GitLabSettings";
11025
+ } & GitLabSettingsFragment>;
10494
11026
  googleSheets?: Maybe<{
10495
11027
  __typename?: "GoogleSheetsSettings";
10496
11028
  } & GoogleSheetsSettingsFragment>;
@@ -10530,7 +11062,7 @@ export declare type SamlConfigurationPayloadFragment = {
10530
11062
  } & Pick<SamlConfigurationPayload, "ssoBinding" | "ssoEndpoint" | "ssoSignAlgo" | "issuerEntityId">;
10531
11063
  export declare type PaidSubscriptionFragment = {
10532
11064
  __typename: "PaidSubscription";
10533
- } & Pick<PaidSubscription, "canceledAt" | "nextBillingAt" | "updatedAt" | "seatsMaximum" | "seatsMinimum" | "seats" | "pendingChangeType" | "type" | "archivedAt" | "createdAt" | "id"> & {
11065
+ } & Pick<PaidSubscription, "collectionMethod" | "canceledAt" | "nextBillingAt" | "updatedAt" | "seatsMaximum" | "seatsMinimum" | "seats" | "pendingChangeType" | "type" | "archivedAt" | "createdAt" | "id"> & {
10534
11066
  creator?: Maybe<{
10535
11067
  __typename?: "User";
10536
11068
  } & Pick<User, "id">>;
@@ -10545,12 +11077,15 @@ export declare type UserSettingsFragment = {
10545
11077
  export declare type JiraLinearMappingFragment = {
10546
11078
  __typename: "JiraLinearMapping";
10547
11079
  } & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId">;
10548
- export declare type PagerDutyScheduleMappingFragment = {
10549
- __typename: "PagerDutyScheduleMapping";
10550
- } & Pick<PagerDutyScheduleMapping, "scheduleId" | "scheduleName">;
10551
- export declare type SlackChannelNameMappingFragment = {
10552
- __typename: "SlackChannelNameMapping";
10553
- } & Pick<SlackChannelNameMapping, "id" | "name" | "isPrivate">;
11080
+ export declare type TeamRepoMappingFragment = {
11081
+ __typename: "TeamRepoMapping";
11082
+ } & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId">;
11083
+ export declare type SlackAsksTeamSettingsFragment = {
11084
+ __typename: "SlackAsksTeamSettings";
11085
+ } & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
11086
+ export declare type AuthenticationSessionFragment = {
11087
+ __typename: "AuthenticationSession";
11088
+ } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "lastActiveAt" | "id">;
10554
11089
  export declare type FavoriteFragment = {
10555
11090
  __typename: "Favorite";
10556
11091
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -10664,16 +11199,38 @@ export declare type AuditEntryConnectionFragment = {
10664
11199
  export declare type AuditEntryTypeFragment = {
10665
11200
  __typename: "AuditEntryType";
10666
11201
  } & Pick<AuditEntryType, "description" | "type">;
11202
+ export declare type AuthApiKeyFragment = {
11203
+ __typename: "AuthApiKey";
11204
+ } & Pick<AuthApiKey, "id">;
11205
+ export declare type AuthApiKeyDeletePayloadFragment = {
11206
+ __typename: "AuthApiKeyDeletePayload";
11207
+ } & Pick<AuthApiKeyDeletePayload, "success">;
11208
+ export declare type AuthApiKeyPayloadFragment = {
11209
+ __typename: "AuthApiKeyPayload";
11210
+ } & Pick<AuthApiKeyPayload, "success"> & {
11211
+ authApiKey: {
11212
+ __typename?: "AuthApiKey";
11213
+ } & AuthApiKeyFragment;
11214
+ };
11215
+ export declare type AuthIntegrationFragment = {
11216
+ __typename: "AuthIntegration";
11217
+ } & Pick<AuthIntegration, "id">;
10667
11218
  export declare type AuthResolverResponseFragment = {
10668
11219
  __typename: "AuthResolverResponse";
10669
11220
  } & Pick<AuthResolverResponse, "email" | "lastUsedOrganizationId" | "token" | "allowDomainAccess" | "id"> & {
11221
+ lockedOrganizations?: Maybe<Array<{
11222
+ __typename?: "AuthOrganization";
11223
+ } & AuthOrganizationFragment>>;
10670
11224
  availableOrganizations?: Maybe<Array<{
10671
- __typename?: "Organization";
10672
- } & OrganizationFragment>>;
11225
+ __typename?: "AuthOrganization";
11226
+ } & AuthOrganizationFragment>>;
10673
11227
  users: Array<{
10674
- __typename?: "User";
10675
- } & UserFragment>;
11228
+ __typename?: "AuthUser";
11229
+ } & AuthUserFragment>;
10676
11230
  };
11231
+ export declare type AuthenticationSessionResponseFragment = {
11232
+ __typename: "AuthenticationSessionResponse";
11233
+ } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "lastActiveAt" | "id">;
10677
11234
  export declare type CommentConnectionFragment = {
10678
11235
  __typename: "CommentConnection";
10679
11236
  } & {
@@ -10710,9 +11267,12 @@ export declare type CreateCsvExportReportPayloadFragment = {
10710
11267
  export declare type CreateOrJoinOrganizationResponseFragment = {
10711
11268
  __typename: "CreateOrJoinOrganizationResponse";
10712
11269
  } & {
11270
+ organization: {
11271
+ __typename?: "AuthOrganization";
11272
+ } & AuthOrganizationFragment;
10713
11273
  user: {
10714
- __typename?: "User";
10715
- } & Pick<User, "id">;
11274
+ __typename?: "AuthUser";
11275
+ } & AuthUserFragment;
10716
11276
  };
10717
11277
  export declare type CustomViewConnectionFragment = {
10718
11278
  __typename: "CustomViewConnection";
@@ -10724,6 +11284,9 @@ export declare type CustomViewConnectionFragment = {
10724
11284
  __typename?: "PageInfo";
10725
11285
  } & PageInfoFragment;
10726
11286
  };
11287
+ export declare type CustomViewHasSubscribersPayloadFragment = {
11288
+ __typename: "CustomViewHasSubscribersPayload";
11289
+ } & Pick<CustomViewHasSubscribersPayload, "hasSubscribers">;
10727
11290
  export declare type CustomViewPayloadFragment = {
10728
11291
  __typename: "CustomViewPayload";
10729
11292
  } & Pick<CustomViewPayload, "lastSyncId" | "success"> & {
@@ -10761,6 +11324,16 @@ export declare type DocumentConnectionFragment = {
10761
11324
  __typename?: "PageInfo";
10762
11325
  } & PageInfoFragment;
10763
11326
  };
11327
+ export declare type DocumentContentHistoryPayloadFragment = {
11328
+ __typename: "DocumentContentHistoryPayload";
11329
+ } & Pick<DocumentContentHistoryPayload, "success"> & {
11330
+ history?: Maybe<Array<{
11331
+ __typename?: "DocumentContentHistoryType";
11332
+ } & DocumentContentHistoryTypeFragment>>;
11333
+ };
11334
+ export declare type DocumentContentHistoryTypeFragment = {
11335
+ __typename: "DocumentContentHistoryType";
11336
+ } & Pick<DocumentContentHistoryType, "actorIds" | "id" | "createdAt" | "contentDataSnapshotAt" | "contentData">;
10764
11337
  export declare type DocumentPayloadFragment = {
10765
11338
  __typename: "DocumentPayload";
10766
11339
  } & Pick<DocumentPayload, "lastSyncId" | "success"> & {
@@ -10783,7 +11356,10 @@ export declare type DocumentSearchPayloadFragment = {
10783
11356
  };
10784
11357
  export declare type DocumentSearchResultFragment = {
10785
11358
  __typename: "DocumentSearchResult";
10786
- } & Pick<DocumentSearchResult, "metadata" | "color" | "contentData" | "content" | "title" | "slugId" | "icon" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
11359
+ } & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "contentData" | "content" | "icon" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
11360
+ lastAppliedTemplate?: Maybe<{
11361
+ __typename?: "Template";
11362
+ } & Pick<Template, "id">>;
10787
11363
  project: {
10788
11364
  __typename?: "Project";
10789
11365
  } & Pick<Project, "id">;
@@ -10810,13 +11386,6 @@ export declare type EmailUnsubscribePayloadFragment = {
10810
11386
  export declare type EmailUserAccountAuthChallengeResponseFragment = {
10811
11387
  __typename: "EmailUserAccountAuthChallengeResponse";
10812
11388
  } & Pick<EmailUserAccountAuthChallengeResponse, "authType" | "success">;
10813
- export declare type EmbedPayloadFragment = {
10814
- __typename: "EmbedPayload";
10815
- } & Pick<EmbedPayload, "success"> & {
10816
- embed?: Maybe<{
10817
- __typename?: "Embed";
10818
- } & EmbedFragment>;
10819
- };
10820
11389
  export declare type EmojiConnectionFragment = {
10821
11390
  __typename: "EmojiConnection";
10822
11391
  } & {
@@ -10851,23 +11420,6 @@ export declare type FavoritePayloadFragment = {
10851
11420
  __typename?: "Favorite";
10852
11421
  } & Pick<Favorite, "id">;
10853
11422
  };
10854
- export declare type FigmaEmbedPayloadFragment = {
10855
- __typename: "FigmaEmbedPayload";
10856
- } & Pick<FigmaEmbedPayload, "success"> & {
10857
- figmaEmbed?: Maybe<{
10858
- __typename?: "FigmaEmbed";
10859
- } & FigmaEmbedFragment>;
10860
- };
10861
- export declare type FirstResponderScheduleConnectionFragment = {
10862
- __typename: "FirstResponderScheduleConnection";
10863
- } & {
10864
- nodes: Array<{
10865
- __typename?: "FirstResponderSchedule";
10866
- } & FirstResponderScheduleFragment>;
10867
- pageInfo: {
10868
- __typename?: "PageInfo";
10869
- } & PageInfoFragment;
10870
- };
10871
11423
  export declare type FrontAttachmentPayloadFragment = {
10872
11424
  __typename: "FrontAttachmentPayload";
10873
11425
  } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
@@ -11045,6 +11597,9 @@ export declare type IssueSearchResultFragment = {
11045
11597
  cycle?: Maybe<{
11046
11598
  __typename?: "Cycle";
11047
11599
  } & Pick<Cycle, "id">>;
11600
+ lastAppliedTemplate?: Maybe<{
11601
+ __typename?: "Template";
11602
+ } & Pick<Template, "id">>;
11048
11603
  parent?: Maybe<{
11049
11604
  __typename?: "Issue";
11050
11605
  } & Pick<Issue, "id">>;
@@ -11119,6 +11674,9 @@ declare type Node_Document_Fragment = {
11119
11674
  declare type Node_DocumentContent_Fragment = {
11120
11675
  __typename: "DocumentContent";
11121
11676
  } & Pick<DocumentContent, "id">;
11677
+ declare type Node_DocumentContentHistory_Fragment = {
11678
+ __typename: "DocumentContentHistory";
11679
+ } & Pick<DocumentContentHistory, "id">;
11122
11680
  declare type Node_DocumentSearchResult_Fragment = {
11123
11681
  __typename: "DocumentSearchResult";
11124
11682
  } & Pick<DocumentSearchResult, "id">;
@@ -11131,9 +11689,6 @@ declare type Node_ExternalUser_Fragment = {
11131
11689
  declare type Node_Favorite_Fragment = {
11132
11690
  __typename: "Favorite";
11133
11691
  } & Pick<Favorite, "id">;
11134
- declare type Node_FirstResponderSchedule_Fragment = {
11135
- __typename: "FirstResponderSchedule";
11136
- } & Pick<FirstResponderSchedule, "id">;
11137
11692
  declare type Node_Integration_Fragment = {
11138
11693
  __typename: "Integration";
11139
11694
  } & Pick<Integration, "id">;
@@ -11239,6 +11794,9 @@ declare type Node_TeamNotificationSubscription_Fragment = {
11239
11794
  declare type Node_Template_Fragment = {
11240
11795
  __typename: "Template";
11241
11796
  } & Pick<Template, "id">;
11797
+ declare type Node_TriageResponsibility_Fragment = {
11798
+ __typename: "TriageResponsibility";
11799
+ } & Pick<TriageResponsibility, "id">;
11242
11800
  declare type Node_User_Fragment = {
11243
11801
  __typename: "User";
11244
11802
  } & Pick<User, "id">;
@@ -11263,7 +11821,7 @@ declare type Node_WorkflowDefinition_Fragment = {
11263
11821
  declare type Node_WorkflowState_Fragment = {
11264
11822
  __typename: "WorkflowState";
11265
11823
  } & Pick<WorkflowState, "id">;
11266
- export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentSearchResult_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Favorite_Fragment | Node_FirstResponderSchedule_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
11824
+ export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentSearchResult_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Favorite_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
11267
11825
  export declare type NotificationBatchActionPayloadFragment = {
11268
11826
  __typename: "NotificationBatchActionPayload";
11269
11827
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
@@ -11458,6 +12016,9 @@ export declare type ProjectSearchResultFragment = {
11458
12016
  integrationsSettings?: Maybe<{
11459
12017
  __typename?: "IntegrationsSettings";
11460
12018
  } & Pick<IntegrationsSettings, "id">>;
12019
+ lastAppliedTemplate?: Maybe<{
12020
+ __typename?: "Template";
12021
+ } & Pick<Template, "id">>;
11461
12022
  lead?: Maybe<{
11462
12023
  __typename?: "User";
11463
12024
  } & Pick<User, "id">>;
@@ -11512,6 +12073,9 @@ export declare type ProjectUpdatePayloadFragment = {
11512
12073
  __typename?: "ProjectUpdate";
11513
12074
  } & Pick<ProjectUpdate, "id">;
11514
12075
  };
12076
+ export declare type ProjectUpdateReminderPayloadFragment = {
12077
+ __typename: "ProjectUpdateReminderPayload";
12078
+ } & Pick<ProjectUpdateReminderPayload, "lastSyncId" | "success">;
11515
12079
  export declare type ProjectUpdateWithInteractionPayloadFragment = {
11516
12080
  __typename: "ProjectUpdateWithInteractionPayload";
11517
12081
  } & Pick<ProjectUpdateWithInteractionPayload, "lastSyncId" | "success"> & {
@@ -11534,7 +12098,11 @@ export declare type PushSubscriptionConnectionFragment = {
11534
12098
  };
11535
12099
  export declare type PushSubscriptionPayloadFragment = {
11536
12100
  __typename: "PushSubscriptionPayload";
11537
- } & Pick<PushSubscriptionPayload, "lastSyncId" | "success">;
12101
+ } & Pick<PushSubscriptionPayload, "lastSyncId" | "success"> & {
12102
+ entity: {
12103
+ __typename?: "PushSubscription";
12104
+ } & PushSubscriptionFragment;
12105
+ };
11538
12106
  export declare type PushSubscriptionTestPayloadFragment = {
11539
12107
  __typename: "PushSubscriptionTestPayload";
11540
12108
  } & Pick<PushSubscriptionTestPayload, "success">;
@@ -11656,6 +12224,16 @@ export declare type TemplatePayloadFragment = {
11656
12224
  __typename?: "Template";
11657
12225
  } & Pick<Template, "id">;
11658
12226
  };
12227
+ export declare type TriageResponsibilityConnectionFragment = {
12228
+ __typename: "TriageResponsibilityConnection";
12229
+ } & {
12230
+ nodes: Array<{
12231
+ __typename?: "TriageResponsibility";
12232
+ } & TriageResponsibilityFragment>;
12233
+ pageInfo: {
12234
+ __typename?: "PageInfo";
12235
+ } & PageInfoFragment;
12236
+ };
11659
12237
  export declare type UploadFileHeaderFragment = {
11660
12238
  __typename: "UploadFileHeader";
11661
12239
  } & Pick<UploadFileHeader, "key" | "value">;
@@ -11855,6 +12433,7 @@ export declare type AttachmentLinkDiscordMutationVariables = Exact<{
11855
12433
  channelId: Scalars["String"];
11856
12434
  createAsUser?: Maybe<Scalars["String"]>;
11857
12435
  displayIconUrl?: Maybe<Scalars["String"]>;
12436
+ id?: Maybe<Scalars["String"]>;
11858
12437
  issueId: Scalars["String"];
11859
12438
  messageId: Scalars["String"];
11860
12439
  url: Scalars["String"];
@@ -11870,6 +12449,7 @@ export declare type AttachmentLinkFrontMutationVariables = Exact<{
11870
12449
  conversationId: Scalars["String"];
11871
12450
  createAsUser?: Maybe<Scalars["String"]>;
11872
12451
  displayIconUrl?: Maybe<Scalars["String"]>;
12452
+ id?: Maybe<Scalars["String"]>;
11873
12453
  issueId: Scalars["String"];
11874
12454
  }>;
11875
12455
  export declare type AttachmentLinkFrontMutation = {
@@ -11879,10 +12459,45 @@ export declare type AttachmentLinkFrontMutation = {
11879
12459
  __typename?: "FrontAttachmentPayload";
11880
12460
  } & FrontAttachmentPayloadFragment;
11881
12461
  };
12462
+ export declare type AttachmentLinkGitHubPrMutationVariables = Exact<{
12463
+ createAsUser?: Maybe<Scalars["String"]>;
12464
+ displayIconUrl?: Maybe<Scalars["String"]>;
12465
+ id?: Maybe<Scalars["String"]>;
12466
+ issueId: Scalars["String"];
12467
+ number: Scalars["Float"];
12468
+ owner: Scalars["String"];
12469
+ repo: Scalars["String"];
12470
+ url: Scalars["String"];
12471
+ }>;
12472
+ export declare type AttachmentLinkGitHubPrMutation = {
12473
+ __typename?: "Mutation";
12474
+ } & {
12475
+ attachmentLinkGitHubPR: {
12476
+ __typename?: "AttachmentPayload";
12477
+ } & AttachmentPayloadFragment;
12478
+ };
12479
+ export declare type AttachmentLinkGitLabMrMutationVariables = Exact<{
12480
+ createAsUser?: Maybe<Scalars["String"]>;
12481
+ displayIconUrl?: Maybe<Scalars["String"]>;
12482
+ id?: Maybe<Scalars["String"]>;
12483
+ issueId: Scalars["String"];
12484
+ number: Scalars["Float"];
12485
+ owner: Scalars["String"];
12486
+ repo: Scalars["String"];
12487
+ url: Scalars["String"];
12488
+ }>;
12489
+ export declare type AttachmentLinkGitLabMrMutation = {
12490
+ __typename?: "Mutation";
12491
+ } & {
12492
+ attachmentLinkGitLabMR: {
12493
+ __typename?: "AttachmentPayload";
12494
+ } & AttachmentPayloadFragment;
12495
+ };
11882
12496
  export declare type AttachmentLinkIntercomMutationVariables = Exact<{
11883
12497
  conversationId: Scalars["String"];
11884
12498
  createAsUser?: Maybe<Scalars["String"]>;
11885
12499
  displayIconUrl?: Maybe<Scalars["String"]>;
12500
+ id?: Maybe<Scalars["String"]>;
11886
12501
  issueId: Scalars["String"];
11887
12502
  }>;
11888
12503
  export declare type AttachmentLinkIntercomMutation = {
@@ -11939,6 +12554,7 @@ export declare type AttachmentLinkUrlMutation = {
11939
12554
  export declare type AttachmentLinkZendeskMutationVariables = Exact<{
11940
12555
  createAsUser?: Maybe<Scalars["String"]>;
11941
12556
  displayIconUrl?: Maybe<Scalars["String"]>;
12557
+ id?: Maybe<Scalars["String"]>;
11942
12558
  issueId: Scalars["String"];
11943
12559
  ticketId: Scalars["String"];
11944
12560
  }>;
@@ -12032,6 +12648,17 @@ export declare type CreateOrganizationFromOnboardingMutation = {
12032
12648
  __typename?: "CreateOrJoinOrganizationResponse";
12033
12649
  } & CreateOrJoinOrganizationResponseFragment;
12034
12650
  };
12651
+ export declare type CreateProjectUpdateReminderMutationVariables = Exact<{
12652
+ projectId: Scalars["String"];
12653
+ userId?: Maybe<Scalars["String"]>;
12654
+ }>;
12655
+ export declare type CreateProjectUpdateReminderMutation = {
12656
+ __typename?: "Mutation";
12657
+ } & {
12658
+ createProjectUpdateReminder: {
12659
+ __typename?: "ProjectUpdateReminderPayload";
12660
+ } & ProjectUpdateReminderPayloadFragment;
12661
+ };
12035
12662
  export declare type CreateCustomViewMutationVariables = Exact<{
12036
12663
  input: CustomViewCreateInput;
12037
12664
  }>;
@@ -12327,6 +12954,16 @@ export declare type IntegrationGithubConnectMutation = {
12327
12954
  __typename?: "IntegrationPayload";
12328
12955
  } & IntegrationPayloadFragment;
12329
12956
  };
12957
+ export declare type IntegrationGithubSyncMutationVariables = Exact<{
12958
+ installationId: Scalars["String"];
12959
+ }>;
12960
+ export declare type IntegrationGithubSyncMutation = {
12961
+ __typename?: "Mutation";
12962
+ } & {
12963
+ integrationGithubSync: {
12964
+ __typename?: "IntegrationPayload";
12965
+ } & IntegrationPayloadFragment;
12966
+ };
12330
12967
  export declare type IntegrationGitlabConnectMutationVariables = Exact<{
12331
12968
  accessToken: Scalars["String"];
12332
12969
  gitlabUrl: Scalars["String"];
@@ -12559,6 +13196,17 @@ export declare type UpdateIntegrationsSettingsMutation = {
12559
13196
  __typename?: "IntegrationsSettingsPayload";
12560
13197
  } & IntegrationsSettingsPayloadFragment;
12561
13198
  };
13199
+ export declare type IssueAddLabelMutationVariables = Exact<{
13200
+ id: Scalars["String"];
13201
+ labelId: Scalars["String"];
13202
+ }>;
13203
+ export declare type IssueAddLabelMutation = {
13204
+ __typename?: "Mutation";
13205
+ } & {
13206
+ issueAddLabel: {
13207
+ __typename?: "IssuePayload";
13208
+ } & IssuePayloadFragment;
13209
+ };
12562
13210
  export declare type ArchiveIssueMutationVariables = Exact<{
12563
13211
  id: Scalars["String"];
12564
13212
  trash?: Maybe<Scalars["Boolean"]>;
@@ -12795,6 +13443,28 @@ export declare type IssueReminderMutation = {
12795
13443
  __typename?: "IssuePayload";
12796
13444
  } & IssuePayloadFragment;
12797
13445
  };
13446
+ export declare type IssueRemoveLabelMutationVariables = Exact<{
13447
+ id: Scalars["String"];
13448
+ labelId: Scalars["String"];
13449
+ }>;
13450
+ export declare type IssueRemoveLabelMutation = {
13451
+ __typename?: "Mutation";
13452
+ } & {
13453
+ issueRemoveLabel: {
13454
+ __typename?: "IssuePayload";
13455
+ } & IssuePayloadFragment;
13456
+ };
13457
+ export declare type IssueSubscribeMutationVariables = Exact<{
13458
+ id: Scalars["String"];
13459
+ userId?: Maybe<Scalars["String"]>;
13460
+ }>;
13461
+ export declare type IssueSubscribeMutation = {
13462
+ __typename?: "Mutation";
13463
+ } & {
13464
+ issueSubscribe: {
13465
+ __typename?: "IssuePayload";
13466
+ } & IssuePayloadFragment;
13467
+ };
12798
13468
  export declare type UnarchiveIssueMutationVariables = Exact<{
12799
13469
  id: Scalars["String"];
12800
13470
  }>;
@@ -12805,6 +13475,17 @@ export declare type UnarchiveIssueMutation = {
12805
13475
  __typename?: "IssueArchivePayload";
12806
13476
  } & IssueArchivePayloadFragment;
12807
13477
  };
13478
+ export declare type IssueUnsubscribeMutationVariables = Exact<{
13479
+ id: Scalars["String"];
13480
+ userId?: Maybe<Scalars["String"]>;
13481
+ }>;
13482
+ export declare type IssueUnsubscribeMutation = {
13483
+ __typename?: "Mutation";
13484
+ } & {
13485
+ issueUnsubscribe: {
13486
+ __typename?: "IssuePayload";
13487
+ } & IssuePayloadFragment;
13488
+ };
12808
13489
  export declare type UpdateIssueMutationVariables = Exact<{
12809
13490
  id: Scalars["String"];
12810
13491
  input: IssueUpdateInput;
@@ -12846,6 +13527,36 @@ export declare type LogoutMutation = {
12846
13527
  __typename?: "LogoutResponse";
12847
13528
  } & LogoutResponseFragment;
12848
13529
  };
13530
+ export declare type LogoutAllSessionsMutationVariables = Exact<{
13531
+ [key: string]: never;
13532
+ }>;
13533
+ export declare type LogoutAllSessionsMutation = {
13534
+ __typename?: "Mutation";
13535
+ } & {
13536
+ logoutAllSessions: {
13537
+ __typename?: "LogoutResponse";
13538
+ } & LogoutResponseFragment;
13539
+ };
13540
+ export declare type LogoutOtherSessionsMutationVariables = Exact<{
13541
+ [key: string]: never;
13542
+ }>;
13543
+ export declare type LogoutOtherSessionsMutation = {
13544
+ __typename?: "Mutation";
13545
+ } & {
13546
+ logoutOtherSessions: {
13547
+ __typename?: "LogoutResponse";
13548
+ } & LogoutResponseFragment;
13549
+ };
13550
+ export declare type LogoutSessionMutationVariables = Exact<{
13551
+ sessionId: Scalars["String"];
13552
+ }>;
13553
+ export declare type LogoutSessionMutation = {
13554
+ __typename?: "Mutation";
13555
+ } & {
13556
+ logoutSession: {
13557
+ __typename?: "LogoutResponse";
13558
+ } & LogoutResponseFragment;
13559
+ };
12849
13560
  export declare type ArchiveNotificationMutationVariables = Exact<{
12850
13561
  id: Scalars["String"];
12851
13562
  }>;
@@ -13043,7 +13754,7 @@ export declare type OrganizationStartPlusTrialMutation = {
13043
13754
  } & OrganizationStartPlusTrialPayloadFragment;
13044
13755
  };
13045
13756
  export declare type UpdateOrganizationMutationVariables = Exact<{
13046
- input: UpdateOrganizationInput;
13757
+ input: OrganizationUpdateInput;
13047
13758
  }>;
13048
13759
  export declare type UpdateOrganizationMutation = {
13049
13760
  __typename?: "Mutation";
@@ -13545,16 +14256,6 @@ export declare type UserGitHubConnectMutation = {
13545
14256
  __typename?: "UserPayload";
13546
14257
  } & UserPayloadFragment;
13547
14258
  };
13548
- export declare type UserGoogleCalendarConnectMutationVariables = Exact<{
13549
- code: Scalars["String"];
13550
- }>;
13551
- export declare type UserGoogleCalendarConnectMutation = {
13552
- __typename?: "Mutation";
13553
- } & {
13554
- userGoogleCalendarConnect: {
13555
- __typename?: "UserPayload";
13556
- } & UserPayloadFragment;
13557
- };
13558
14259
  export declare type UserJiraConnectMutationVariables = Exact<{
13559
14260
  code: Scalars["String"];
13560
14261
  }>;
@@ -13638,7 +14339,7 @@ export declare type UnsuspendUserMutation = {
13638
14339
  };
13639
14340
  export declare type UpdateUserMutationVariables = Exact<{
13640
14341
  id: Scalars["String"];
13641
- input: UpdateUserInput;
14342
+ input: UserUpdateInput;
13642
14343
  }>;
13643
14344
  export declare type UpdateUserMutation = {
13644
14345
  __typename?: "Mutation";
@@ -14064,6 +14765,16 @@ export declare type AuditEntryTypesQuery = {
14064
14765
  __typename?: "AuditEntryType";
14065
14766
  } & AuditEntryTypeFragment>;
14066
14767
  };
14768
+ export declare type AuthenticationSessionsQueryVariables = Exact<{
14769
+ [key: string]: never;
14770
+ }>;
14771
+ export declare type AuthenticationSessionsQuery = {
14772
+ __typename?: "Query";
14773
+ } & {
14774
+ authenticationSessions: Array<{
14775
+ __typename?: "AuthenticationSessionResponse";
14776
+ } & AuthenticationSessionResponseFragment>;
14777
+ };
14067
14778
  export declare type AvailableUsersQueryVariables = Exact<{
14068
14779
  [key: string]: never;
14069
14780
  }>;
@@ -14119,6 +14830,20 @@ export declare type Comment_ChildrenQuery = {
14119
14830
  } & CommentConnectionFragment;
14120
14831
  };
14121
14832
  };
14833
+ export declare type Comment_DocumentContentQueryVariables = Exact<{
14834
+ id: Scalars["String"];
14835
+ }>;
14836
+ export declare type Comment_DocumentContentQuery = {
14837
+ __typename?: "Query";
14838
+ } & {
14839
+ comment: {
14840
+ __typename?: "Comment";
14841
+ } & {
14842
+ documentContent: {
14843
+ __typename?: "DocumentContent";
14844
+ } & DocumentContentFragment;
14845
+ };
14846
+ };
14122
14847
  export declare type CommentsQueryVariables = Exact<{
14123
14848
  after?: Maybe<Scalars["String"]>;
14124
14849
  before?: Maybe<Scalars["String"]>;
@@ -14145,6 +14870,16 @@ export declare type CustomViewQuery = {
14145
14870
  __typename?: "CustomView";
14146
14871
  } & CustomViewFragment;
14147
14872
  };
14873
+ export declare type CustomViewHasSubscribersQueryVariables = Exact<{
14874
+ id: Scalars["String"];
14875
+ }>;
14876
+ export declare type CustomViewHasSubscribersQuery = {
14877
+ __typename?: "Query";
14878
+ } & {
14879
+ customViewHasSubscribers: {
14880
+ __typename?: "CustomViewHasSubscribersPayload";
14881
+ } & CustomViewHasSubscribersPayloadFragment;
14882
+ };
14148
14883
  export declare type CustomViewsQueryVariables = Exact<{
14149
14884
  after?: Maybe<Scalars["String"]>;
14150
14885
  before?: Maybe<Scalars["String"]>;
@@ -14238,6 +14973,16 @@ export declare type DocumentQuery = {
14238
14973
  __typename?: "Document";
14239
14974
  } & DocumentFragment;
14240
14975
  };
14976
+ export declare type DocumentContentHistoryQueryVariables = Exact<{
14977
+ id: Scalars["String"];
14978
+ }>;
14979
+ export declare type DocumentContentHistoryQuery = {
14980
+ __typename?: "Query";
14981
+ } & {
14982
+ documentContentHistory: {
14983
+ __typename?: "DocumentContentHistoryPayload";
14984
+ } & DocumentContentHistoryPayloadFragment;
14985
+ };
14241
14986
  export declare type DocumentsQueryVariables = Exact<{
14242
14987
  after?: Maybe<Scalars["String"]>;
14243
14988
  before?: Maybe<Scalars["String"]>;
@@ -14253,30 +14998,6 @@ export declare type DocumentsQuery = {
14253
14998
  __typename?: "DocumentConnection";
14254
14999
  } & DocumentConnectionFragment;
14255
15000
  };
14256
- export declare type EmbedInfoQueryVariables = Exact<{
14257
- url: Scalars["String"];
14258
- }>;
14259
- export declare type EmbedInfoQuery = {
14260
- __typename?: "Query";
14261
- } & {
14262
- embedInfo: {
14263
- __typename?: "EmbedPayload";
14264
- } & EmbedPayloadFragment;
14265
- };
14266
- export declare type EmbedInfo_EmbedQueryVariables = Exact<{
14267
- url: Scalars["String"];
14268
- }>;
14269
- export declare type EmbedInfo_EmbedQuery = {
14270
- __typename?: "Query";
14271
- } & {
14272
- embedInfo: {
14273
- __typename?: "EmbedPayload";
14274
- } & {
14275
- embed?: Maybe<{
14276
- __typename?: "Embed";
14277
- } & EmbedFragment>;
14278
- };
14279
- };
14280
15001
  export declare type EmojiQueryVariables = Exact<{
14281
15002
  id: Scalars["String"];
14282
15003
  }>;
@@ -14347,32 +15068,6 @@ export declare type FavoritesQuery = {
14347
15068
  __typename?: "FavoriteConnection";
14348
15069
  } & FavoriteConnectionFragment;
14349
15070
  };
14350
- export declare type FigmaEmbedInfoQueryVariables = Exact<{
14351
- fileId: Scalars["String"];
14352
- nodeId?: Maybe<Scalars["String"]>;
14353
- }>;
14354
- export declare type FigmaEmbedInfoQuery = {
14355
- __typename?: "Query";
14356
- } & {
14357
- figmaEmbedInfo: {
14358
- __typename?: "FigmaEmbedPayload";
14359
- } & FigmaEmbedPayloadFragment;
14360
- };
14361
- export declare type FigmaEmbedInfo_FigmaEmbedQueryVariables = Exact<{
14362
- fileId: Scalars["String"];
14363
- nodeId?: Maybe<Scalars["String"]>;
14364
- }>;
14365
- export declare type FigmaEmbedInfo_FigmaEmbedQuery = {
14366
- __typename?: "Query";
14367
- } & {
14368
- figmaEmbedInfo: {
14369
- __typename?: "FigmaEmbedPayload";
14370
- } & {
14371
- figmaEmbed?: Maybe<{
14372
- __typename?: "FigmaEmbed";
14373
- } & FigmaEmbedFragment>;
14374
- };
14375
- };
14376
15071
  export declare type IntegrationQueryVariables = Exact<{
14377
15072
  id: Scalars["String"];
14378
15073
  }>;
@@ -15416,6 +16111,7 @@ export declare type ProjectUpdateInteractionsQuery = {
15416
16111
  export declare type ProjectUpdatesQueryVariables = Exact<{
15417
16112
  after?: Maybe<Scalars["String"]>;
15418
16113
  before?: Maybe<Scalars["String"]>;
16114
+ filter?: Maybe<ProjectUpdateFilter>;
15419
16115
  first?: Maybe<Scalars["Int"]>;
15420
16116
  includeArchived?: Maybe<Scalars["Boolean"]>;
15421
16117
  last?: Maybe<Scalars["Int"]>;
@@ -15540,6 +16236,7 @@ export declare type SearchDocumentsQueryVariables = Exact<{
15540
16236
  before?: Maybe<Scalars["String"]>;
15541
16237
  first?: Maybe<Scalars["Int"]>;
15542
16238
  includeArchived?: Maybe<Scalars["Boolean"]>;
16239
+ includeComments?: Maybe<Scalars["Boolean"]>;
15543
16240
  last?: Maybe<Scalars["Int"]>;
15544
16241
  orderBy?: Maybe<PaginationOrderBy>;
15545
16242
  teamId?: Maybe<Scalars["String"]>;
@@ -15557,6 +16254,7 @@ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
15557
16254
  before?: Maybe<Scalars["String"]>;
15558
16255
  first?: Maybe<Scalars["Int"]>;
15559
16256
  includeArchived?: Maybe<Scalars["Boolean"]>;
16257
+ includeComments?: Maybe<Scalars["Boolean"]>;
15560
16258
  last?: Maybe<Scalars["Int"]>;
15561
16259
  orderBy?: Maybe<PaginationOrderBy>;
15562
16260
  teamId?: Maybe<Scalars["String"]>;
@@ -15579,6 +16277,7 @@ export declare type SearchIssuesQueryVariables = Exact<{
15579
16277
  filter?: Maybe<IssueFilter>;
15580
16278
  first?: Maybe<Scalars["Int"]>;
15581
16279
  includeArchived?: Maybe<Scalars["Boolean"]>;
16280
+ includeComments?: Maybe<Scalars["Boolean"]>;
15582
16281
  last?: Maybe<Scalars["Int"]>;
15583
16282
  orderBy?: Maybe<PaginationOrderBy>;
15584
16283
  teamId?: Maybe<Scalars["String"]>;
@@ -15597,6 +16296,7 @@ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
15597
16296
  filter?: Maybe<IssueFilter>;
15598
16297
  first?: Maybe<Scalars["Int"]>;
15599
16298
  includeArchived?: Maybe<Scalars["Boolean"]>;
16299
+ includeComments?: Maybe<Scalars["Boolean"]>;
15600
16300
  last?: Maybe<Scalars["Int"]>;
15601
16301
  orderBy?: Maybe<PaginationOrderBy>;
15602
16302
  teamId?: Maybe<Scalars["String"]>;
@@ -15618,6 +16318,7 @@ export declare type SearchProjectsQueryVariables = Exact<{
15618
16318
  before?: Maybe<Scalars["String"]>;
15619
16319
  first?: Maybe<Scalars["Int"]>;
15620
16320
  includeArchived?: Maybe<Scalars["Boolean"]>;
16321
+ includeComments?: Maybe<Scalars["Boolean"]>;
15621
16322
  last?: Maybe<Scalars["Int"]>;
15622
16323
  orderBy?: Maybe<PaginationOrderBy>;
15623
16324
  teamId?: Maybe<Scalars["String"]>;
@@ -15635,6 +16336,7 @@ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
15635
16336
  before?: Maybe<Scalars["String"]>;
15636
16337
  first?: Maybe<Scalars["Int"]>;
15637
16338
  includeArchived?: Maybe<Scalars["Boolean"]>;
16339
+ includeComments?: Maybe<Scalars["Boolean"]>;
15638
16340
  last?: Maybe<Scalars["Int"]>;
15639
16341
  orderBy?: Maybe<PaginationOrderBy>;
15640
16342
  teamId?: Maybe<Scalars["String"]>;
@@ -16215,11 +16917,13 @@ export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
16215
16917
  export declare const CustomViewNotificationSubscriptionFragmentDoc: DocumentNode<CustomViewNotificationSubscriptionFragment, unknown>;
16216
16918
  export declare const CycleNotificationSubscriptionFragmentDoc: DocumentNode<CycleNotificationSubscriptionFragment, unknown>;
16217
16919
  export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
16920
+ export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentContentHistoryFragment, unknown>;
16218
16921
  export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
16219
16922
  export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
16220
16923
  export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
16221
16924
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
16222
16925
  export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
16926
+ export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
16223
16927
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
16224
16928
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
16225
16929
  export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
@@ -16234,9 +16938,10 @@ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<Labe
16234
16938
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
16235
16939
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
16236
16940
  export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
16237
- export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
16238
16941
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
16239
16942
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
16943
+ export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
16944
+ export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
16240
16945
  export declare const SyncResponseFragmentDoc: DocumentNode<SyncResponseFragment, unknown>;
16241
16946
  export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
16242
16947
  export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
@@ -16246,15 +16951,20 @@ export declare const UserAuthorizedApplicationFragmentDoc: DocumentNode<UserAuth
16246
16951
  export declare const ApplicationFragmentDoc: DocumentNode<ApplicationFragment, unknown>;
16247
16952
  export declare const FrontSettingsFragmentDoc: DocumentNode<FrontSettingsFragment, unknown>;
16248
16953
  export declare const GitHubSettingsFragmentDoc: DocumentNode<GitHubSettingsFragment, unknown>;
16954
+ export declare const TeamRepoMappingFragmentDoc: DocumentNode<TeamRepoMappingFragment, unknown>;
16955
+ export declare const GitHubSyncRepoFragmentDoc: DocumentNode<GitHubSyncRepoFragment, unknown>;
16956
+ export declare const GitHubSyncSettingsFragmentDoc: DocumentNode<GitHubSyncSettingsFragment, unknown>;
16957
+ export declare const GitLabSettingsFragmentDoc: DocumentNode<GitLabSettingsFragment, unknown>;
16249
16958
  export declare const GoogleSheetsSettingsFragmentDoc: DocumentNode<GoogleSheetsSettingsFragment, unknown>;
16250
16959
  export declare const IntercomSettingsFragmentDoc: DocumentNode<IntercomSettingsFragment, unknown>;
16251
16960
  export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFragment, unknown>;
16252
16961
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
16253
16962
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
16254
16963
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
16255
- export declare const PagerDutyScheduleMappingFragmentDoc: DocumentNode<PagerDutyScheduleMappingFragment, unknown>;
16964
+ export declare const PagerDutyScheduleInfoFragmentDoc: DocumentNode<PagerDutyScheduleInfoFragment, unknown>;
16256
16965
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
16257
16966
  export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
16967
+ export declare const SlackAsksTeamSettingsFragmentDoc: DocumentNode<SlackAsksTeamSettingsFragment, unknown>;
16258
16968
  export declare const SlackChannelNameMappingFragmentDoc: DocumentNode<SlackChannelNameMappingFragment, unknown>;
16259
16969
  export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSettingsFragment, unknown>;
16260
16970
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
@@ -16262,6 +16972,7 @@ export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFra
16262
16972
  export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
16263
16973
  export declare const SamlConfigurationPayloadFragmentDoc: DocumentNode<SamlConfigurationPayloadFragment, unknown>;
16264
16974
  export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
16975
+ export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
16265
16976
  export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
16266
16977
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
16267
16978
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
@@ -16274,9 +16985,14 @@ export declare const AttachmentSourcesPayloadFragmentDoc: DocumentNode<Attachmen
16274
16985
  export declare const AuditEntryFragmentDoc: DocumentNode<AuditEntryFragment, unknown>;
16275
16986
  export declare const AuditEntryConnectionFragmentDoc: DocumentNode<AuditEntryConnectionFragment, unknown>;
16276
16987
  export declare const AuditEntryTypeFragmentDoc: DocumentNode<AuditEntryTypeFragment, unknown>;
16277
- export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
16278
- export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
16988
+ export declare const AuthApiKeyDeletePayloadFragmentDoc: DocumentNode<AuthApiKeyDeletePayloadFragment, unknown>;
16989
+ export declare const AuthApiKeyFragmentDoc: DocumentNode<AuthApiKeyFragment, unknown>;
16990
+ export declare const AuthApiKeyPayloadFragmentDoc: DocumentNode<AuthApiKeyPayloadFragment, unknown>;
16991
+ export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFragment, unknown>;
16992
+ export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
16993
+ export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
16279
16994
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
16995
+ export declare const AuthenticationSessionResponseFragmentDoc: DocumentNode<AuthenticationSessionResponseFragment, unknown>;
16280
16996
  export declare const CommentFragmentDoc: DocumentNode<CommentFragment, unknown>;
16281
16997
  export declare const CommentConnectionFragmentDoc: DocumentNode<CommentConnectionFragment, unknown>;
16282
16998
  export declare const CommentPayloadFragmentDoc: DocumentNode<CommentPayloadFragment, unknown>;
@@ -16287,6 +17003,7 @@ export declare const CreateCsvExportReportPayloadFragmentDoc: DocumentNode<Creat
16287
17003
  export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<CreateOrJoinOrganizationResponseFragment, unknown>;
16288
17004
  export declare const CustomViewFragmentDoc: DocumentNode<CustomViewFragment, unknown>;
16289
17005
  export declare const CustomViewConnectionFragmentDoc: DocumentNode<CustomViewConnectionFragment, unknown>;
17006
+ export declare const CustomViewHasSubscribersPayloadFragmentDoc: DocumentNode<CustomViewHasSubscribersPayloadFragment, unknown>;
16290
17007
  export declare const CustomViewPayloadFragmentDoc: DocumentNode<CustomViewPayloadFragment, unknown>;
16291
17008
  export declare const CustomViewSuggestionPayloadFragmentDoc: DocumentNode<CustomViewSuggestionPayloadFragment, unknown>;
16292
17009
  export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
@@ -16294,6 +17011,8 @@ export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFra
16294
17011
  export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
16295
17012
  export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
16296
17013
  export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
17014
+ export declare const DocumentContentHistoryTypeFragmentDoc: DocumentNode<DocumentContentHistoryTypeFragment, unknown>;
17015
+ export declare const DocumentContentHistoryPayloadFragmentDoc: DocumentNode<DocumentContentHistoryPayloadFragment, unknown>;
16297
17016
  export declare const DocumentPayloadFragmentDoc: DocumentNode<DocumentPayloadFragment, unknown>;
16298
17017
  export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFragment, unknown>;
16299
17018
  export declare const DocumentSearchResultFragmentDoc: DocumentNode<DocumentSearchResultFragment, unknown>;
@@ -16301,18 +17020,12 @@ export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSear
16301
17020
  export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
16302
17021
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
16303
17022
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
16304
- export declare const EmbedFragmentDoc: DocumentNode<EmbedFragment, unknown>;
16305
- export declare const EmbedPayloadFragmentDoc: DocumentNode<EmbedPayloadFragment, unknown>;
16306
17023
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
16307
17024
  export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
16308
17025
  export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
16309
17026
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
16310
17027
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
16311
17028
  export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
16312
- export declare const FigmaEmbedFragmentDoc: DocumentNode<FigmaEmbedFragment, unknown>;
16313
- export declare const FigmaEmbedPayloadFragmentDoc: DocumentNode<FigmaEmbedPayloadFragment, unknown>;
16314
- export declare const FirstResponderScheduleFragmentDoc: DocumentNode<FirstResponderScheduleFragment, unknown>;
16315
- export declare const FirstResponderScheduleConnectionFragmentDoc: DocumentNode<FirstResponderScheduleConnectionFragment, unknown>;
16316
17029
  export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
16317
17030
  export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
16318
17031
  export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
@@ -16332,12 +17045,12 @@ export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFra
16332
17045
  export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<IssueFilterSuggestionPayloadFragment, unknown>;
16333
17046
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
16334
17047
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
17048
+ export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
16335
17049
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
16336
17050
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
16337
17051
  export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
16338
17052
  export declare const IssueImportDeletePayloadFragmentDoc: DocumentNode<IssueImportDeletePayloadFragment, unknown>;
16339
17053
  export declare const IssueImportPayloadFragmentDoc: DocumentNode<IssueImportPayloadFragment, unknown>;
16340
- export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
16341
17054
  export declare const IssueLabelConnectionFragmentDoc: DocumentNode<IssueLabelConnectionFragment, unknown>;
16342
17055
  export declare const IssueLabelPayloadFragmentDoc: DocumentNode<IssueLabelPayloadFragment, unknown>;
16343
17056
  export declare const IssuePayloadFragmentDoc: DocumentNode<IssuePayloadFragment, unknown>;
@@ -16353,7 +17066,6 @@ export declare const NodeFragmentDoc: DocumentNode<NodeFragment, unknown>;
16353
17066
  export declare const NotificationBatchActionPayloadFragmentDoc: DocumentNode<NotificationBatchActionPayloadFragment, unknown>;
16354
17067
  export declare const NotificationConnectionFragmentDoc: DocumentNode<NotificationConnectionFragment, unknown>;
16355
17068
  export declare const NotificationPayloadFragmentDoc: DocumentNode<NotificationPayloadFragment, unknown>;
16356
- export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
16357
17069
  export declare const NotificationSubscriptionConnectionFragmentDoc: DocumentNode<NotificationSubscriptionConnectionFragment, unknown>;
16358
17070
  export declare const NotificationSubscriptionPayloadFragmentDoc: DocumentNode<NotificationSubscriptionPayloadFragment, unknown>;
16359
17071
  export declare const OauthClientFragmentDoc: DocumentNode<OauthClientFragment, unknown>;
@@ -16386,6 +17098,7 @@ export declare const ProjectUpdateInteractionFragmentDoc: DocumentNode<ProjectUp
16386
17098
  export declare const ProjectUpdateInteractionConnectionFragmentDoc: DocumentNode<ProjectUpdateInteractionConnectionFragment, unknown>;
16387
17099
  export declare const ProjectUpdateInteractionPayloadFragmentDoc: DocumentNode<ProjectUpdateInteractionPayloadFragment, unknown>;
16388
17100
  export declare const ProjectUpdatePayloadFragmentDoc: DocumentNode<ProjectUpdatePayloadFragment, unknown>;
17101
+ export declare const ProjectUpdateReminderPayloadFragmentDoc: DocumentNode<ProjectUpdateReminderPayloadFragment, unknown>;
16389
17102
  export declare const ProjectUpdateWithInteractionPayloadFragmentDoc: DocumentNode<ProjectUpdateWithInteractionPayloadFragment, unknown>;
16390
17103
  export declare const PushSubscriptionFragmentDoc: DocumentNode<PushSubscriptionFragment, unknown>;
16391
17104
  export declare const PushSubscriptionConnectionFragmentDoc: DocumentNode<PushSubscriptionConnectionFragment, unknown>;
@@ -16413,10 +17126,13 @@ export declare const TeamMembershipPayloadFragmentDoc: DocumentNode<TeamMembersh
16413
17126
  export declare const TeamPayloadFragmentDoc: DocumentNode<TeamPayloadFragment, unknown>;
16414
17127
  export declare const TemplateConnectionFragmentDoc: DocumentNode<TemplateConnectionFragment, unknown>;
16415
17128
  export declare const TemplatePayloadFragmentDoc: DocumentNode<TemplatePayloadFragment, unknown>;
17129
+ export declare const TriageResponsibilityFragmentDoc: DocumentNode<TriageResponsibilityFragment, unknown>;
17130
+ export declare const TriageResponsibilityConnectionFragmentDoc: DocumentNode<TriageResponsibilityConnectionFragment, unknown>;
16416
17131
  export declare const UploadFileHeaderFragmentDoc: DocumentNode<UploadFileHeaderFragment, unknown>;
16417
17132
  export declare const UploadFileFragmentDoc: DocumentNode<UploadFileFragment, unknown>;
16418
17133
  export declare const UploadPayloadFragmentDoc: DocumentNode<UploadPayloadFragment, unknown>;
16419
17134
  export declare const UserAdminPayloadFragmentDoc: DocumentNode<UserAdminPayloadFragment, unknown>;
17135
+ export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
16420
17136
  export declare const UserConnectionFragmentDoc: DocumentNode<UserConnectionFragment, unknown>;
16421
17137
  export declare const UserPayloadFragmentDoc: DocumentNode<UserPayloadFragment, unknown>;
16422
17138
  export declare const UserSettingsFlagPayloadFragmentDoc: DocumentNode<UserSettingsFlagPayloadFragment, unknown>;
@@ -16456,6 +17172,7 @@ export declare const AttachmentLinkDiscordDocument: DocumentNode<AttachmentLinkD
16456
17172
  channelId: Scalars["String"];
16457
17173
  createAsUser?: Maybe<string> | undefined;
16458
17174
  displayIconUrl?: Maybe<string> | undefined;
17175
+ id?: Maybe<string> | undefined;
16459
17176
  issueId: Scalars["String"];
16460
17177
  messageId: Scalars["String"];
16461
17178
  url: Scalars["String"];
@@ -16464,12 +17181,34 @@ export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFro
16464
17181
  conversationId: Scalars["String"];
16465
17182
  createAsUser?: Maybe<string> | undefined;
16466
17183
  displayIconUrl?: Maybe<string> | undefined;
17184
+ id?: Maybe<string> | undefined;
17185
+ issueId: Scalars["String"];
17186
+ }>>;
17187
+ export declare const AttachmentLinkGitHubPrDocument: DocumentNode<AttachmentLinkGitHubPrMutation, Exact<{
17188
+ createAsUser?: Maybe<string> | undefined;
17189
+ displayIconUrl?: Maybe<string> | undefined;
17190
+ id?: Maybe<string> | undefined;
17191
+ issueId: Scalars["String"];
17192
+ number: Scalars["Float"];
17193
+ owner: Scalars["String"];
17194
+ repo: Scalars["String"];
17195
+ url: Scalars["String"];
17196
+ }>>;
17197
+ export declare const AttachmentLinkGitLabMrDocument: DocumentNode<AttachmentLinkGitLabMrMutation, Exact<{
17198
+ createAsUser?: Maybe<string> | undefined;
17199
+ displayIconUrl?: Maybe<string> | undefined;
17200
+ id?: Maybe<string> | undefined;
16467
17201
  issueId: Scalars["String"];
17202
+ number: Scalars["Float"];
17203
+ owner: Scalars["String"];
17204
+ repo: Scalars["String"];
17205
+ url: Scalars["String"];
16468
17206
  }>>;
16469
17207
  export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
16470
17208
  conversationId: Scalars["String"];
16471
17209
  createAsUser?: Maybe<string> | undefined;
16472
17210
  displayIconUrl?: Maybe<string> | undefined;
17211
+ id?: Maybe<string> | undefined;
16473
17212
  issueId: Scalars["String"];
16474
17213
  }>>;
16475
17214
  export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLinkJiraIssueMutation, Exact<{
@@ -16498,6 +17237,7 @@ export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMu
16498
17237
  export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZendeskMutation, Exact<{
16499
17238
  createAsUser?: Maybe<string> | undefined;
16500
17239
  displayIconUrl?: Maybe<string> | undefined;
17240
+ id?: Maybe<string> | undefined;
16501
17241
  issueId: Scalars["String"];
16502
17242
  ticketId: Scalars["String"];
16503
17243
  }>>;
@@ -16528,6 +17268,10 @@ export declare const CreateOrganizationFromOnboardingDocument: DocumentNode<Crea
16528
17268
  input: CreateOrganizationInput;
16529
17269
  survey?: Maybe<OnboardingCustomerSurvey> | undefined;
16530
17270
  }>>;
17271
+ export declare const CreateProjectUpdateReminderDocument: DocumentNode<CreateProjectUpdateReminderMutation, Exact<{
17272
+ projectId: Scalars["String"];
17273
+ userId?: Maybe<string> | undefined;
17274
+ }>>;
16531
17275
  export declare const CreateCustomViewDocument: DocumentNode<CreateCustomViewMutation, Exact<{
16532
17276
  input: CustomViewCreateInput;
16533
17277
  }>>;
@@ -16627,6 +17371,9 @@ export declare const CreateIntegrationGithubCommitDocument: DocumentNode<CreateI
16627
17371
  export declare const IntegrationGithubConnectDocument: DocumentNode<IntegrationGithubConnectMutation, Exact<{
16628
17372
  installationId: Scalars["String"];
16629
17373
  }>>;
17374
+ export declare const IntegrationGithubSyncDocument: DocumentNode<IntegrationGithubSyncMutation, Exact<{
17375
+ installationId: Scalars["String"];
17376
+ }>>;
16630
17377
  export declare const IntegrationGitlabConnectDocument: DocumentNode<IntegrationGitlabConnectMutation, Exact<{
16631
17378
  accessToken: Scalars["String"];
16632
17379
  gitlabUrl: Scalars["String"];
@@ -16712,6 +17459,10 @@ export declare const UpdateIntegrationsSettingsDocument: DocumentNode<UpdateInte
16712
17459
  id: Scalars["String"];
16713
17460
  input: IntegrationsSettingsUpdateInput;
16714
17461
  }>>;
17462
+ export declare const IssueAddLabelDocument: DocumentNode<IssueAddLabelMutation, Exact<{
17463
+ id: Scalars["String"];
17464
+ labelId: Scalars["String"];
17465
+ }>>;
16715
17466
  export declare const ArchiveIssueDocument: DocumentNode<ArchiveIssueMutation, Exact<{
16716
17467
  id: Scalars["String"];
16717
17468
  trash?: Maybe<boolean> | undefined;
@@ -16815,9 +17566,21 @@ export declare const IssueReminderDocument: DocumentNode<IssueReminderMutation,
16815
17566
  id: Scalars["String"];
16816
17567
  reminderAt: Scalars["DateTime"];
16817
17568
  }>>;
17569
+ export declare const IssueRemoveLabelDocument: DocumentNode<IssueRemoveLabelMutation, Exact<{
17570
+ id: Scalars["String"];
17571
+ labelId: Scalars["String"];
17572
+ }>>;
17573
+ export declare const IssueSubscribeDocument: DocumentNode<IssueSubscribeMutation, Exact<{
17574
+ id: Scalars["String"];
17575
+ userId?: Maybe<string> | undefined;
17576
+ }>>;
16818
17577
  export declare const UnarchiveIssueDocument: DocumentNode<UnarchiveIssueMutation, Exact<{
16819
17578
  id: Scalars["String"];
16820
17579
  }>>;
17580
+ export declare const IssueUnsubscribeDocument: DocumentNode<IssueUnsubscribeMutation, Exact<{
17581
+ id: Scalars["String"];
17582
+ userId?: Maybe<string> | undefined;
17583
+ }>>;
16821
17584
  export declare const UpdateIssueDocument: DocumentNode<UpdateIssueMutation, Exact<{
16822
17585
  id: Scalars["String"];
16823
17586
  input: IssueUpdateInput;
@@ -16831,6 +17594,15 @@ export declare const LeaveOrganizationDocument: DocumentNode<LeaveOrganizationMu
16831
17594
  export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
16832
17595
  [key: string]: never;
16833
17596
  }>>;
17597
+ export declare const LogoutAllSessionsDocument: DocumentNode<LogoutAllSessionsMutation, Exact<{
17598
+ [key: string]: never;
17599
+ }>>;
17600
+ export declare const LogoutOtherSessionsDocument: DocumentNode<LogoutOtherSessionsMutation, Exact<{
17601
+ [key: string]: never;
17602
+ }>>;
17603
+ export declare const LogoutSessionDocument: DocumentNode<LogoutSessionMutation, Exact<{
17604
+ sessionId: Scalars["String"];
17605
+ }>>;
16834
17606
  export declare const ArchiveNotificationDocument: DocumentNode<ArchiveNotificationMutation, Exact<{
16835
17607
  id: Scalars["String"];
16836
17608
  }>>;
@@ -16895,7 +17667,7 @@ export declare const OrganizationStartPlusTrialDocument: DocumentNode<Organizati
16895
17667
  [key: string]: never;
16896
17668
  }>>;
16897
17669
  export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, Exact<{
16898
- input: UpdateOrganizationInput;
17670
+ input: OrganizationUpdateInput;
16899
17671
  }>>;
16900
17672
  export declare const ArchiveProjectDocument: DocumentNode<ArchiveProjectMutation, Exact<{
16901
17673
  id: Scalars["String"];
@@ -17054,9 +17826,6 @@ export declare const UpdateUserFlagDocument: DocumentNode<UpdateUserFlagMutation
17054
17826
  export declare const UserGitHubConnectDocument: DocumentNode<UserGitHubConnectMutation, Exact<{
17055
17827
  code: Scalars["String"];
17056
17828
  }>>;
17057
- export declare const UserGoogleCalendarConnectDocument: DocumentNode<UserGoogleCalendarConnectMutation, Exact<{
17058
- code: Scalars["String"];
17059
- }>>;
17060
17829
  export declare const UserJiraConnectDocument: DocumentNode<UserJiraConnectMutation, Exact<{
17061
17830
  code: Scalars["String"];
17062
17831
  }>>;
@@ -17084,7 +17853,7 @@ export declare const UnsuspendUserDocument: DocumentNode<UnsuspendUserMutation,
17084
17853
  }>>;
17085
17854
  export declare const UpdateUserDocument: DocumentNode<UpdateUserMutation, Exact<{
17086
17855
  id: Scalars["String"];
17087
- input: UpdateUserInput;
17856
+ input: UserUpdateInput;
17088
17857
  }>>;
17089
17858
  export declare const CreateViewPreferencesDocument: DocumentNode<CreateViewPreferencesMutation, Exact<{
17090
17859
  input: ViewPreferencesCreateInput;
@@ -17268,6 +18037,9 @@ export declare const AuditEntriesDocument: DocumentNode<AuditEntriesQuery, Exact
17268
18037
  export declare const AuditEntryTypesDocument: DocumentNode<AuditEntryTypesQuery, Exact<{
17269
18038
  [key: string]: never;
17270
18039
  }>>;
18040
+ export declare const AuthenticationSessionsDocument: DocumentNode<AuthenticationSessionsQuery, Exact<{
18041
+ [key: string]: never;
18042
+ }>>;
17271
18043
  export declare const AvailableUsersDocument: DocumentNode<AvailableUsersQuery, Exact<{
17272
18044
  [key: string]: never;
17273
18045
  }>>;
@@ -17287,6 +18059,9 @@ export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuer
17287
18059
  last?: Maybe<number> | undefined;
17288
18060
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17289
18061
  }>>;
18062
+ export declare const Comment_DocumentContentDocument: DocumentNode<Comment_DocumentContentQuery, Exact<{
18063
+ id: Scalars["String"];
18064
+ }>>;
17290
18065
  export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
17291
18066
  after?: Maybe<string> | undefined;
17292
18067
  before?: Maybe<string> | undefined;
@@ -17299,6 +18074,9 @@ export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
17299
18074
  export declare const CustomViewDocument: DocumentNode<CustomViewQuery, Exact<{
17300
18075
  id: Scalars["String"];
17301
18076
  }>>;
18077
+ export declare const CustomViewHasSubscribersDocument: DocumentNode<CustomViewHasSubscribersQuery, Exact<{
18078
+ id: Scalars["String"];
18079
+ }>>;
17302
18080
  export declare const CustomViewsDocument: DocumentNode<CustomViewsQuery, Exact<{
17303
18081
  after?: Maybe<string> | undefined;
17304
18082
  before?: Maybe<string> | undefined;
@@ -17342,6 +18120,9 @@ export declare const CyclesDocument: DocumentNode<CyclesQuery, Exact<{
17342
18120
  export declare const DocumentDocument: DocumentNode<DocumentQuery, Exact<{
17343
18121
  id: Scalars["String"];
17344
18122
  }>>;
18123
+ export declare const DocumentContentHistoryDocument: DocumentNode<DocumentContentHistoryQuery, Exact<{
18124
+ id: Scalars["String"];
18125
+ }>>;
17345
18126
  export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
17346
18127
  after?: Maybe<string> | undefined;
17347
18128
  before?: Maybe<string> | undefined;
@@ -17350,12 +18131,6 @@ export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
17350
18131
  last?: Maybe<number> | undefined;
17351
18132
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17352
18133
  }>>;
17353
- export declare const EmbedInfoDocument: DocumentNode<EmbedInfoQuery, Exact<{
17354
- url: Scalars["String"];
17355
- }>>;
17356
- export declare const EmbedInfo_EmbedDocument: DocumentNode<EmbedInfo_EmbedQuery, Exact<{
17357
- url: Scalars["String"];
17358
- }>>;
17359
18134
  export declare const EmojiDocument: DocumentNode<EmojiQuery, Exact<{
17360
18135
  id: Scalars["String"];
17361
18136
  }>>;
@@ -17387,14 +18162,6 @@ export declare const FavoritesDocument: DocumentNode<FavoritesQuery, Exact<{
17387
18162
  last?: Maybe<number> | undefined;
17388
18163
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17389
18164
  }>>;
17390
- export declare const FigmaEmbedInfoDocument: DocumentNode<FigmaEmbedInfoQuery, Exact<{
17391
- fileId: Scalars["String"];
17392
- nodeId?: Maybe<string> | undefined;
17393
- }>>;
17394
- export declare const FigmaEmbedInfo_FigmaEmbedDocument: DocumentNode<FigmaEmbedInfo_FigmaEmbedQuery, Exact<{
17395
- fileId: Scalars["String"];
17396
- nodeId?: Maybe<string> | undefined;
17397
- }>>;
17398
18165
  export declare const IntegrationDocument: DocumentNode<IntegrationQuery, Exact<{
17399
18166
  id: Scalars["String"];
17400
18167
  }>>;
@@ -17852,6 +18619,7 @@ export declare const ProjectUpdateInteractionsDocument: DocumentNode<ProjectUpda
17852
18619
  export declare const ProjectUpdatesDocument: DocumentNode<ProjectUpdatesQuery, Exact<{
17853
18620
  after?: Maybe<string> | undefined;
17854
18621
  before?: Maybe<string> | undefined;
18622
+ filter?: Maybe<ProjectUpdateFilter> | undefined;
17855
18623
  first?: Maybe<number> | undefined;
17856
18624
  includeArchived?: Maybe<boolean> | undefined;
17857
18625
  last?: Maybe<number> | undefined;
@@ -17909,6 +18677,7 @@ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery,
17909
18677
  before?: Maybe<string> | undefined;
17910
18678
  first?: Maybe<number> | undefined;
17911
18679
  includeArchived?: Maybe<boolean> | undefined;
18680
+ includeComments?: Maybe<boolean> | undefined;
17912
18681
  last?: Maybe<number> | undefined;
17913
18682
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17914
18683
  teamId?: Maybe<string> | undefined;
@@ -17919,6 +18688,7 @@ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<Search
17919
18688
  before?: Maybe<string> | undefined;
17920
18689
  first?: Maybe<number> | undefined;
17921
18690
  includeArchived?: Maybe<boolean> | undefined;
18691
+ includeComments?: Maybe<boolean> | undefined;
17922
18692
  last?: Maybe<number> | undefined;
17923
18693
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17924
18694
  teamId?: Maybe<string> | undefined;
@@ -17930,6 +18700,7 @@ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact
17930
18700
  filter?: Maybe<IssueFilter> | undefined;
17931
18701
  first?: Maybe<number> | undefined;
17932
18702
  includeArchived?: Maybe<boolean> | undefined;
18703
+ includeComments?: Maybe<boolean> | undefined;
17933
18704
  last?: Maybe<number> | undefined;
17934
18705
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17935
18706
  teamId?: Maybe<string> | undefined;
@@ -17941,6 +18712,7 @@ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIss
17941
18712
  filter?: Maybe<IssueFilter> | undefined;
17942
18713
  first?: Maybe<number> | undefined;
17943
18714
  includeArchived?: Maybe<boolean> | undefined;
18715
+ includeComments?: Maybe<boolean> | undefined;
17944
18716
  last?: Maybe<number> | undefined;
17945
18717
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17946
18718
  teamId?: Maybe<string> | undefined;
@@ -17951,6 +18723,7 @@ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, E
17951
18723
  before?: Maybe<string> | undefined;
17952
18724
  first?: Maybe<number> | undefined;
17953
18725
  includeArchived?: Maybe<boolean> | undefined;
18726
+ includeComments?: Maybe<boolean> | undefined;
17954
18727
  last?: Maybe<number> | undefined;
17955
18728
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17956
18729
  teamId?: Maybe<string> | undefined;
@@ -17961,6 +18734,7 @@ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchP
17961
18734
  before?: Maybe<string> | undefined;
17962
18735
  first?: Maybe<number> | undefined;
17963
18736
  includeArchived?: Maybe<boolean> | undefined;
18737
+ includeComments?: Maybe<boolean> | undefined;
17964
18738
  last?: Maybe<number> | undefined;
17965
18739
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17966
18740
  teamId?: Maybe<string> | undefined;