@linear/sdk 7.0.1 → 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.
@@ -29,6 +29,21 @@ export declare type Scalars = {
29
29
  /** A universally unique identifier as specified by RFC 4122. */
30
30
  UUID: any;
31
31
  };
32
+ /** A bot actor is an actor that is not a user, but an application or integration. */
33
+ export declare type ActorBot = {
34
+ __typename?: "ActorBot";
35
+ /** A url pointing to the avatar representing this bot. */
36
+ avatarUrl?: Maybe<Scalars["String"]>;
37
+ id: Scalars["ID"];
38
+ /** The display name of the bot. */
39
+ name?: Maybe<Scalars["String"]>;
40
+ /** The sub type of the bot. */
41
+ subType?: Maybe<Scalars["String"]>;
42
+ /** The type of bot. */
43
+ type: Scalars["String"];
44
+ /** The display name of the external user on behalf of which the bot acted. */
45
+ userDisplayName?: Maybe<Scalars["String"]>;
46
+ };
32
47
  export declare type AirbyteConfigurationInput = {
33
48
  /** Linear export API key. */
34
49
  apiKey: Scalars["String"];
@@ -117,6 +132,17 @@ export declare type ArchiveResponse = {
117
132
  /** The total number of entities in the archive. */
118
133
  totalCount: Scalars["Float"];
119
134
  };
135
+ export declare type AsksChannelConnectPayload = {
136
+ __typename?: "AsksChannelConnectPayload";
137
+ /** The integration that was created or updated. */
138
+ integration?: Maybe<Integration>;
139
+ /** The identifier of the last sync operation. */
140
+ lastSyncId: Scalars["Float"];
141
+ /** The new Asks Slack channel mapping for the connected channel. */
142
+ mapping: SlackChannelNameMapping;
143
+ /** Whether the operation was successful. */
144
+ success: Scalars["Boolean"];
145
+ };
120
146
  /** Issue attachment (e.g. support ticket, pull request). */
121
147
  export declare type Attachment = Node & {
122
148
  __typename?: "Attachment";
@@ -126,6 +152,8 @@ export declare type Attachment = Node & {
126
152
  createdAt: Scalars["DateTime"];
127
153
  /** The creator of the attachment. */
128
154
  creator?: Maybe<User>;
155
+ /** The non-Linear user who created the attachment. */
156
+ externalUserCreator?: Maybe<ExternalUser>;
129
157
  /** Indicates if attachments for the same source application should be grouped in the Linear UI. */
130
158
  groupBySource: Scalars["Boolean"];
131
159
  /** The unique identifier of the entity. */
@@ -340,6 +368,34 @@ export declare type AuditEntryType = {
340
368
  /** The audit entry type. */
341
369
  type: Scalars["String"];
342
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
+ };
343
399
  /** [INTERNAL] An OAuth userId/createdDate tuple */
344
400
  export declare type AuthMembership = {
345
401
  __typename?: "AuthMembership";
@@ -348,23 +404,133 @@ export declare type AuthMembership = {
348
404
  /** The authorizing userId */
349
405
  userId: Scalars["String"];
350
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
+ };
351
427
  export declare type AuthResolverResponse = {
352
428
  __typename?: "AuthResolverResponse";
353
429
  /** Should the signup flow allow access for the domain. */
354
430
  allowDomainAccess?: Maybe<Scalars["Boolean"]>;
355
431
  /** Organizations this account has access to, but is not yet a member. */
356
- availableOrganizations?: Maybe<Array<Organization>>;
432
+ availableOrganizations?: Maybe<Array<AuthOrganization>>;
357
433
  /** Email for the authenticated account. */
358
434
  email?: Maybe<Scalars["String"]>;
359
435
  /** User account ID. */
360
436
  id: Scalars["String"];
361
437
  /** ID of the organization last accessed by the user. */
362
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>>;
363
441
  /** JWT token for authentication of the account. */
364
442
  token?: Maybe<Scalars["String"]>;
365
443
  /** Users belonging to this account. */
366
- 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"]>;
367
527
  };
528
+ export declare enum AuthenticationSessionType {
529
+ Android = "android",
530
+ Desktop = "desktop",
531
+ Ios = "ios",
532
+ Web = "web"
533
+ }
368
534
  /** [INTERNAL] Public information of the OAuth application, plus the authorized scopes for a given user. */
369
535
  export declare type AuthorizedApplication = {
370
536
  __typename?: "AuthorizedApplication";
@@ -397,10 +563,14 @@ export declare type Comment = Node & {
397
563
  body: Scalars["String"];
398
564
  /** The comment content as a Prosemirror document. */
399
565
  bodyData: Scalars["String"];
566
+ /** The bot that created the comment */
567
+ botActor?: Maybe<ActorBot>;
400
568
  /** The children of the comment. */
401
569
  children: CommentConnection;
402
570
  /** The time at which the entity was created. */
403
571
  createdAt: Scalars["DateTime"];
572
+ /** The document content that the comment is associated with. */
573
+ documentContent: DocumentContent;
404
574
  /** The time user edited the comment. */
405
575
  editedAt?: Maybe<Scalars["DateTime"]>;
406
576
  /** [ALPHA] The external user who wrote the comment. */
@@ -411,8 +581,16 @@ export declare type Comment = Node & {
411
581
  issue: Issue;
412
582
  /** The parent comment under which the current comment is nested. */
413
583
  parent?: Maybe<Comment>;
584
+ /** [ALPHA] The project update that the comment is associated with. */
585
+ projectUpdate: ProjectUpdate;
414
586
  /** Emoji reaction summary, grouped by emoji type */
415
587
  reactionData: Scalars["JSONObject"];
588
+ /** The time the resolvingUser resolved the thread. */
589
+ resolvedAt?: Maybe<Scalars["DateTime"]>;
590
+ /** The comment that resolved the thread. */
591
+ resolvingComment?: Maybe<Comment>;
592
+ /** The user that resolved the thread. */
593
+ resolvingUser?: Maybe<User>;
416
594
  /**
417
595
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
418
596
  * 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
@@ -478,12 +656,16 @@ export declare type CommentCreateInput = {
478
656
  displayIconUrl?: Maybe<Scalars["String"]>;
479
657
  /** Flag to prevent auto subscription to the issue the comment is created on. */
480
658
  doNotSubscribeToIssue?: Maybe<Scalars["Boolean"]>;
659
+ /** The document content to associate the comment with. */
660
+ documentContentId?: Maybe<Scalars["String"]>;
481
661
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
482
662
  id?: Maybe<Scalars["String"]>;
483
663
  /** The issue to associate the comment with. */
484
- issueId: Scalars["String"];
664
+ issueId?: Maybe<Scalars["String"]>;
485
665
  /** The parent comment under which to nest a current comment. */
486
666
  parentId?: Maybe<Scalars["String"]>;
667
+ /** The prject update to associate the comment with. */
668
+ projectUpdateId?: Maybe<Scalars["String"]>;
487
669
  };
488
670
  export declare type CommentEdge = {
489
671
  __typename?: "CommentEdge";
@@ -620,8 +802,8 @@ export declare type CreateCsvExportReportPayload = {
620
802
  };
621
803
  export declare type CreateOrJoinOrganizationResponse = {
622
804
  __typename?: "CreateOrJoinOrganizationResponse";
623
- organization: Organization;
624
- user: User;
805
+ organization: AuthOrganization;
806
+ user: AuthUser;
625
807
  };
626
808
  export declare type CreateOrganizationInput = {
627
809
  /** Whether the organization should allow email domain access. */
@@ -663,8 +845,8 @@ export declare type CustomView = Node & {
663
845
  name: Scalars["String"];
664
846
  /** The organization of the custom view. */
665
847
  organization: Organization;
666
- /** [ALPHA] The user who owns the custom view. */
667
- owner?: Maybe<User>;
848
+ /** The user who owns the custom view. */
849
+ owner: User;
668
850
  /** [ALPHA] The filter applied to projects in the custom view. */
669
851
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
670
852
  /** Whether the custom view is shared with everyone in the organization. */
@@ -716,9 +898,16 @@ export declare type CustomViewEdge = {
716
898
  cursor: Scalars["String"];
717
899
  node: CustomView;
718
900
  };
901
+ export declare type CustomViewHasSubscribersPayload = {
902
+ __typename?: "CustomViewHasSubscribersPayload";
903
+ /** Whether the custom view has subscribers. */
904
+ hasSubscribers: Scalars["Boolean"];
905
+ };
719
906
  /** A custom view notification subscription. */
720
907
  export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
721
908
  __typename?: "CustomViewNotificationSubscription";
909
+ /** Whether the subscription is active or not */
910
+ active: Scalars["Boolean"];
722
911
  /** The time at which the entity was archived. Null if the entity has not been archived. */
723
912
  archivedAt?: Maybe<Scalars["DateTime"]>;
724
913
  /** The type of view to which the notification subscription context is associated with. */
@@ -938,6 +1127,8 @@ export declare type CycleFilter = {
938
1127
  /** A cycle notification subscription. */
939
1128
  export declare type CycleNotificationSubscription = Entity & Node & NotificationSubscription & {
940
1129
  __typename?: "CycleNotificationSubscription";
1130
+ /** Whether the subscription is active or not */
1131
+ active: Scalars["Boolean"];
941
1132
  /** The time at which the entity was archived. Null if the entity has not been archived. */
942
1133
  archivedAt?: Maybe<Scalars["DateTime"]>;
943
1134
  /** The type of view to which the notification subscription context is associated with. */
@@ -1042,10 +1233,13 @@ export declare type Document = Node & {
1042
1233
  archivedAt?: Maybe<Scalars["DateTime"]>;
1043
1234
  /** The color of the icon. */
1044
1235
  color?: Maybe<Scalars["String"]>;
1045
- /** The document content in markdown format. */
1236
+ /** The documents content in markdown format. */
1046
1237
  content?: Maybe<Scalars["String"]>;
1047
- /** The document content as JSON. */
1048
- contentData?: Maybe<Scalars["JSONObject"]>;
1238
+ /**
1239
+ * The documents content as a Prosemirror document.
1240
+ * @deprecated Use content instead.
1241
+ */
1242
+ contentData?: Maybe<Scalars["JSON"]>;
1049
1243
  /** The time at which the entity was created. */
1050
1244
  createdAt: Scalars["DateTime"];
1051
1245
  /** The user who created the document. */
@@ -1054,6 +1248,8 @@ export declare type Document = Node & {
1054
1248
  icon?: Maybe<Scalars["String"]>;
1055
1249
  /** The unique identifier of the entity. */
1056
1250
  id: Scalars["ID"];
1251
+ /** The last template that was applied to this document. */
1252
+ lastAppliedTemplate?: Maybe<Template>;
1057
1253
  /** The project that the document is associated with. */
1058
1254
  project: Project;
1059
1255
  /** The document's unique URL slug. */
@@ -1084,12 +1280,53 @@ export declare type DocumentContent = Node & {
1084
1280
  content?: Maybe<Scalars["String"]>;
1085
1281
  /** The document content as JSON. */
1086
1282
  contentData?: Maybe<Scalars["JSONObject"]>;
1283
+ /** The document content state as a base64 encoded string. */
1284
+ contentState?: Maybe<Scalars["String"]>;
1087
1285
  /** The time at which the entity was created. */
1088
1286
  createdAt: Scalars["DateTime"];
1287
+ /** The document that the content is associated with. */
1288
+ document?: Maybe<Document>;
1089
1289
  /** The unique identifier of the entity. */
1090
1290
  id: Scalars["ID"];
1091
- /** The issue that the document is associated with. */
1291
+ /** The issue that the content is associated with. */
1092
1292
  issue?: Maybe<Issue>;
1293
+ /** The project that the content is associated with. */
1294
+ project?: Maybe<Project>;
1295
+ /** The project milestone that the content is associated with. */
1296
+ projectMilestone?: Maybe<ProjectMilestone>;
1297
+ /**
1298
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
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
1300
+ * been updated after creation.
1301
+ */
1302
+ updatedAt: Scalars["DateTime"];
1303
+ };
1304
+ /** Document content filtering options. */
1305
+ export declare type DocumentContentFilter = {
1306
+ /** Comparator for the created at date. */
1307
+ createdAt?: Maybe<DateComparator>;
1308
+ /** Comparator for the identifier. */
1309
+ id?: Maybe<IdComparator>;
1310
+ /** Comparator for the updated at date. */
1311
+ updatedAt?: Maybe<DateComparator>;
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"];
1093
1330
  /**
1094
1331
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1095
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
@@ -1097,17 +1334,39 @@ export declare type DocumentContent = Node & {
1097
1334
  */
1098
1335
  updatedAt: Scalars["DateTime"];
1099
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
+ };
1100
1357
  export declare type DocumentCreateInput = {
1101
1358
  /** The color of the icon. */
1102
1359
  color?: Maybe<Scalars["String"]>;
1103
1360
  /** The document content as markdown. */
1104
1361
  content?: Maybe<Scalars["String"]>;
1105
- /** The document content as a Prosemirror document. */
1362
+ /** [Internal] The document content as a Prosemirror document. */
1106
1363
  contentData?: Maybe<Scalars["JSONObject"]>;
1107
1364
  /** The icon of the document. */
1108
1365
  icon?: Maybe<Scalars["String"]>;
1109
1366
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1110
1367
  id?: Maybe<Scalars["String"]>;
1368
+ /** The ID of the last template applied to the document. */
1369
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1111
1370
  /** Related project for the document. */
1112
1371
  projectId: Scalars["String"];
1113
1372
  /** The title of the document. */
@@ -1144,10 +1403,13 @@ export declare type DocumentSearchResult = Node & {
1144
1403
  archivedAt?: Maybe<Scalars["DateTime"]>;
1145
1404
  /** The color of the icon. */
1146
1405
  color?: Maybe<Scalars["String"]>;
1147
- /** The document content in markdown format. */
1406
+ /** The documents content in markdown format. */
1148
1407
  content?: Maybe<Scalars["String"]>;
1149
- /** The document content as JSON. */
1150
- contentData?: Maybe<Scalars["JSONObject"]>;
1408
+ /**
1409
+ * The documents content as a Prosemirror document.
1410
+ * @deprecated Use content instead.
1411
+ */
1412
+ contentData?: Maybe<Scalars["JSON"]>;
1151
1413
  /** The time at which the entity was created. */
1152
1414
  createdAt: Scalars["DateTime"];
1153
1415
  /** The user who created the document. */
@@ -1156,6 +1418,8 @@ export declare type DocumentSearchResult = Node & {
1156
1418
  icon?: Maybe<Scalars["String"]>;
1157
1419
  /** The unique identifier of the entity. */
1158
1420
  id: Scalars["ID"];
1421
+ /** The last template that was applied to this document. */
1422
+ lastAppliedTemplate?: Maybe<Template>;
1159
1423
  /** Metadata related to search result */
1160
1424
  metadata: Scalars["JSONObject"];
1161
1425
  /** The project that the document is associated with. */
@@ -1190,10 +1454,12 @@ export declare type DocumentUpdateInput = {
1190
1454
  color?: Maybe<Scalars["String"]>;
1191
1455
  /** The document content as markdown. */
1192
1456
  content?: Maybe<Scalars["String"]>;
1193
- /** The document content as a Prosemirror document. */
1457
+ /** [Internal] The document content as a Prosemirror document. */
1194
1458
  contentData?: Maybe<Scalars["JSONObject"]>;
1195
1459
  /** The icon of the document. */
1196
1460
  icon?: Maybe<Scalars["String"]>;
1461
+ /** The ID of the last template applied to the document. */
1462
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1197
1463
  /** Related project for the document. */
1198
1464
  projectId?: Maybe<Scalars["String"]>;
1199
1465
  /** The title of the document. */
@@ -1226,6 +1492,8 @@ export declare type EmailUserAccountAuthChallengeInput = {
1226
1492
  clientAuthCode?: Maybe<Scalars["String"]>;
1227
1493
  /** The email for which to generate the magic login code. */
1228
1494
  email: Scalars["String"];
1495
+ /** The organization invite link to associate with this authentication. */
1496
+ inviteLink?: Maybe<Scalars["String"]>;
1229
1497
  /** Whether the login was requested from the desktop app. */
1230
1498
  isDesktop?: Maybe<Scalars["Boolean"]>;
1231
1499
  /** Signup code. */
@@ -1238,41 +1506,6 @@ export declare type EmailUserAccountAuthChallengeResponse = {
1238
1506
  /** Whether the operation was successful. */
1239
1507
  success: Scalars["Boolean"];
1240
1508
  };
1241
- /** Information for creating embedded content for the provided URL */
1242
- export declare type Embed = {
1243
- __typename?: "Embed";
1244
- /** The name of the author/owner of the resource */
1245
- authorName?: Maybe<Scalars["String"]>;
1246
- /** The description of the content */
1247
- description?: Maybe<Scalars["String"]>;
1248
- /** The height of embedded content (photo, video, rich) */
1249
- height?: Maybe<Scalars["Float"]>;
1250
- /** The HTML (video, rich) */
1251
- html?: Maybe<Scalars["String"]>;
1252
- /** The name of the provider */
1253
- providerName?: Maybe<Scalars["String"]>;
1254
- /** The height of the thumbnail preview image */
1255
- thumbnailHeight?: Maybe<Scalars["Float"]>;
1256
- /** The URL of the thumbnail preview image */
1257
- thumbnailUrl?: Maybe<Scalars["String"]>;
1258
- /** The width of the thumbnail preview image */
1259
- thumbnailWidth?: Maybe<Scalars["Float"]>;
1260
- /** Title for the returned embed view */
1261
- title?: Maybe<Scalars["String"]>;
1262
- /** The type of embed */
1263
- type: Scalars["String"];
1264
- /** The asset URL (photo) */
1265
- url?: Maybe<Scalars["String"]>;
1266
- /** The width of embedded content (photo, video, rich) */
1267
- width?: Maybe<Scalars["Float"]>;
1268
- };
1269
- export declare type EmbedPayload = {
1270
- __typename?: "EmbedPayload";
1271
- /** Embed information */
1272
- embed?: Maybe<Embed>;
1273
- /** Whether the query was successful */
1274
- success: Scalars["Boolean"];
1275
- };
1276
1509
  /** A custom emoji. */
1277
1510
  export declare type Emoji = Node & {
1278
1511
  __typename?: "Emoji";
@@ -1528,61 +1761,6 @@ export declare type FavoriteUpdateInput = {
1528
1761
  /** The position of the item in the favorites list. */
1529
1762
  sortOrder?: Maybe<Scalars["Float"]>;
1530
1763
  };
1531
- /** Object representing Figma preview information. */
1532
- export declare type FigmaEmbed = {
1533
- __typename?: "FigmaEmbed";
1534
- /** Date when the file was updated at the time of embedding. */
1535
- lastModified: Scalars["DateTime"];
1536
- /** Figma file name. */
1537
- name: Scalars["String"];
1538
- /** Node name. */
1539
- nodeName?: Maybe<Scalars["String"]>;
1540
- /** Figma screenshot URL. */
1541
- url?: Maybe<Scalars["String"]>;
1542
- };
1543
- export declare type FigmaEmbedPayload = {
1544
- __typename?: "FigmaEmbedPayload";
1545
- /** Figma embed information. */
1546
- figmaEmbed?: Maybe<FigmaEmbed>;
1547
- /** Whether the operation was successful. */
1548
- success: Scalars["Boolean"];
1549
- };
1550
- /** A schedule for a team's first responder. */
1551
- export declare type FirstResponderSchedule = Node & {
1552
- __typename?: "FirstResponderSchedule";
1553
- /** The time at which the entity was archived. Null if the entity has not been archived. */
1554
- archivedAt?: Maybe<Scalars["DateTime"]>;
1555
- /** The time at which the entity was created. */
1556
- createdAt: Scalars["DateTime"];
1557
- /** The unique identifier of the entity. */
1558
- id: Scalars["ID"];
1559
- /** The integration used for scheduling. */
1560
- integration: Integration;
1561
- /** The id of the integration schedule used for scheduling. */
1562
- integrationScheduleId?: Maybe<Scalars["String"]>;
1563
- /** The current schedule and available schedules. */
1564
- scheduleData: Scalars["JSONObject"];
1565
- /** The team to which the schedule belongs to. */
1566
- team: Team;
1567
- /**
1568
- * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1569
- * 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
1570
- * been updated after creation.
1571
- */
1572
- updatedAt: Scalars["DateTime"];
1573
- };
1574
- export declare type FirstResponderScheduleConnection = {
1575
- __typename?: "FirstResponderScheduleConnection";
1576
- edges: Array<FirstResponderScheduleEdge>;
1577
- nodes: Array<FirstResponderSchedule>;
1578
- pageInfo: PageInfo;
1579
- };
1580
- export declare type FirstResponderScheduleEdge = {
1581
- __typename?: "FirstResponderScheduleEdge";
1582
- /** Used in `before` and `after` args */
1583
- cursor: Scalars["String"];
1584
- node: FirstResponderSchedule;
1585
- };
1586
1764
  export declare type FrontAttachmentPayload = {
1587
1765
  __typename?: "FrontAttachmentPayload";
1588
1766
  /** The identifier of the last sync operation. */
@@ -1634,12 +1812,54 @@ export declare type GitHubSettings = {
1634
1812
  orgAvatarUrl: Scalars["String"];
1635
1813
  /** The GitHub organization's name */
1636
1814
  orgLogin: Scalars["String"];
1815
+ /** The names of the repositories connected for the GitHub integration */
1816
+ repositories?: Maybe<Array<Scalars["String"]>>;
1637
1817
  };
1638
1818
  export declare type GitHubSettingsInput = {
1639
1819
  /** The avatar URL for the GitHub organization */
1640
1820
  orgAvatarUrl: Scalars["String"];
1641
1821
  /** The GitHub organization's name */
1642
1822
  orgLogin: Scalars["String"];
1823
+ /** The names of the repositories connected for the GitHub integration */
1824
+ repositories?: Maybe<Array<Scalars["String"]>>;
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"]>;
1643
1863
  };
1644
1864
  /** GitHub OAuth token, plus information about the organizations the user is a member of. */
1645
1865
  export declare type GithubOAuthTokenPayload = {
@@ -1688,6 +1908,8 @@ export declare type GoogleSheetsSettingsInput = {
1688
1908
  export declare type GoogleUserAccountAuthInput = {
1689
1909
  /** Code returned from Google's OAuth flow. */
1690
1910
  code: Scalars["String"];
1911
+ /** An optional invite link for an organization. */
1912
+ inviteLink?: Maybe<Scalars["String"]>;
1691
1913
  /** The URI to redirect the user to. */
1692
1914
  redirectUri?: Maybe<Scalars["String"]>;
1693
1915
  /** Signup code. */
@@ -1778,12 +2000,15 @@ export declare type IntegrationSettings = {
1778
2000
  __typename?: "IntegrationSettings";
1779
2001
  front?: Maybe<FrontSettings>;
1780
2002
  gitHub?: Maybe<GitHubSettings>;
2003
+ gitHubSync?: Maybe<GitHubSyncSettings>;
2004
+ gitLab?: Maybe<GitLabSettings>;
1781
2005
  googleSheets?: Maybe<GoogleSheetsSettings>;
1782
2006
  intercom?: Maybe<IntercomSettings>;
1783
2007
  jira?: Maybe<JiraSettings>;
1784
2008
  notion?: Maybe<NotionSettings>;
1785
2009
  pagerDuty?: Maybe<PagerDutySettings>;
1786
2010
  sentry?: Maybe<SentrySettings>;
2011
+ slackAsks?: Maybe<SlackAsksSettings>;
1787
2012
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
1788
2013
  slackPost?: Maybe<SlackPostSettings>;
1789
2014
  slackProjectPost?: Maybe<SlackPostSettings>;
@@ -1792,12 +2017,15 @@ export declare type IntegrationSettings = {
1792
2017
  export declare type IntegrationSettingsInput = {
1793
2018
  front?: Maybe<FrontSettingsInput>;
1794
2019
  gitHub?: Maybe<GitHubSettingsInput>;
2020
+ gitHubSync?: Maybe<GitHubSyncSettingsInput>;
2021
+ gitLab?: Maybe<GitLabSettingsInput>;
1795
2022
  googleSheets?: Maybe<GoogleSheetsSettingsInput>;
1796
2023
  intercom?: Maybe<IntercomSettingsInput>;
1797
2024
  jira?: Maybe<JiraSettingsInput>;
1798
2025
  notion?: Maybe<NotionSettingsInput>;
1799
2026
  pagerDuty?: Maybe<PagerDutyInput>;
1800
2027
  sentry?: Maybe<SentrySettingsInput>;
2028
+ slackAsks?: Maybe<SlackAsksSettingsInput>;
1801
2029
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
1802
2030
  slackPost?: Maybe<SlackPostSettingsInput>;
1803
2031
  slackProjectPost?: Maybe<SlackPostSettingsInput>;
@@ -1810,6 +2038,8 @@ export declare type IntegrationTemplate = Node & {
1810
2038
  archivedAt?: Maybe<Scalars["DateTime"]>;
1811
2039
  /** The time at which the entity was created. */
1812
2040
  createdAt: Scalars["DateTime"];
2041
+ /** ID of the foreign entity in the external integration this template is for, e.g., Slack channel ID. */
2042
+ foreignEntityId?: Maybe<Scalars["String"]>;
1813
2043
  /** The unique identifier of the entity. */
1814
2044
  id: Scalars["ID"];
1815
2045
  /** The integration that the template is associated with. */
@@ -1830,6 +2060,8 @@ export declare type IntegrationTemplateConnection = {
1830
2060
  pageInfo: PageInfo;
1831
2061
  };
1832
2062
  export declare type IntegrationTemplateCreateInput = {
2063
+ /** The foreign identifier in the other service. */
2064
+ foreignEntityId?: Maybe<Scalars["String"]>;
1833
2065
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1834
2066
  id?: Maybe<Scalars["String"]>;
1835
2067
  /** The identifier of the integration. */
@@ -2027,7 +2259,10 @@ export declare type Issue = Node & {
2027
2259
  cycle?: Maybe<Cycle>;
2028
2260
  /** The issue's description in markdown format. */
2029
2261
  description?: Maybe<Scalars["String"]>;
2030
- /** [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
+ */
2031
2266
  descriptionData?: Maybe<Scalars["JSON"]>;
2032
2267
  /** The date at which the issue is due. */
2033
2268
  dueDate?: Maybe<Scalars["TimelessDate"]>;
@@ -2047,6 +2282,8 @@ export declare type Issue = Node & {
2047
2282
  inverseRelations: IssueRelationConnection;
2048
2283
  /** Labels associated with this issue. */
2049
2284
  labels: IssueLabelConnection;
2285
+ /** The last template that was applied to this issue. */
2286
+ lastAppliedTemplate?: Maybe<Template>;
2050
2287
  /** The issue's unique number. */
2051
2288
  number: Scalars["Float"];
2052
2289
  /** The parent of the issue. */
@@ -2243,6 +2480,8 @@ export declare type IssueCollectionFilter = {
2243
2480
  id?: Maybe<IdComparator>;
2244
2481
  /** Filters that issue labels must satisfy. */
2245
2482
  labels?: Maybe<IssueLabelCollectionFilter>;
2483
+ /** Filters that the last applied template must satisfy. */
2484
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
2246
2485
  /** Comparator for the collection length. */
2247
2486
  length?: Maybe<NumberComparator>;
2248
2487
  /** Comparator for the issues number. */
@@ -2267,6 +2506,8 @@ export declare type IssueCollectionFilter = {
2267
2506
  snoozedUntilAt?: Maybe<NullableDateComparator>;
2268
2507
  /** Filters that needs to be matched by some issues. */
2269
2508
  some?: Maybe<IssueFilter>;
2509
+ /** Filters that the source must satisfy. */
2510
+ sourceMetadata?: Maybe<SourceMetadataComparator>;
2270
2511
  /** Comparator for the issues started at date. */
2271
2512
  startedAt?: Maybe<NullableDateComparator>;
2272
2513
  /** Filters that the issues state must satisfy. */
@@ -2313,8 +2554,12 @@ export declare type IssueCreateInput = {
2313
2554
  id?: Maybe<Scalars["String"]>;
2314
2555
  /** The identifiers of the issue labels associated with this ticket. */
2315
2556
  labelIds?: Maybe<Array<Scalars["String"]>>;
2557
+ /** The ID of the last template applied to the issue. */
2558
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
2316
2559
  /** The identifier of the parent issue. */
2317
2560
  parentId?: Maybe<Scalars["String"]>;
2561
+ /** Whether the passed sort order should be preserved */
2562
+ preserveSortOrderOnCreate?: Maybe<Scalars["Boolean"]>;
2318
2563
  /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
2319
2564
  priority?: Maybe<Scalars["Int"]>;
2320
2565
  /** The project associated with the issue. */
@@ -2442,6 +2687,8 @@ export declare type IssueFilter = {
2442
2687
  id?: Maybe<IdComparator>;
2443
2688
  /** Filters that issue labels must satisfy. */
2444
2689
  labels?: Maybe<IssueLabelCollectionFilter>;
2690
+ /** Filters that the last applied template must satisfy. */
2691
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
2445
2692
  /** Comparator for the issues number. */
2446
2693
  number?: Maybe<NumberComparator>;
2447
2694
  /** Compound filters, one of which need to be matched by the issue. */
@@ -2462,6 +2709,8 @@ export declare type IssueFilter = {
2462
2709
  snoozedBy?: Maybe<NullableUserFilter>;
2463
2710
  /** Comparator for the issues snoozed until date. */
2464
2711
  snoozedUntilAt?: Maybe<NullableDateComparator>;
2712
+ /** Filters that the source must satisfy. */
2713
+ sourceMetadata?: Maybe<SourceMetadataComparator>;
2465
2714
  /** Comparator for the issues started at date. */
2466
2715
  startedAt?: Maybe<NullableDateComparator>;
2467
2716
  /** Filters that the issues state must satisfy. */
@@ -2491,6 +2740,7 @@ export declare type IssueHistory = Node & {
2491
2740
  actorId?: Maybe<Scalars["String"]>;
2492
2741
  /** ID's of labels that were added. */
2493
2742
  addedLabelIds?: Maybe<Array<Scalars["String"]>>;
2743
+ addedLabels?: Maybe<Array<IssueLabel>>;
2494
2744
  /** Whether the issue is archived at the time of this history entry. */
2495
2745
  archived?: Maybe<Scalars["Boolean"]>;
2496
2746
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -2503,6 +2753,8 @@ export declare type IssueHistory = Node & {
2503
2753
  autoArchived?: Maybe<Scalars["Boolean"]>;
2504
2754
  /** Whether the issue was auto-closed. */
2505
2755
  autoClosed?: Maybe<Scalars["Boolean"]>;
2756
+ /** The bot that performed the action */
2757
+ botActor?: Maybe<ActorBot>;
2506
2758
  /** [Internal] Serialized JSON representing changes for certain non-relational properties. */
2507
2759
  changes?: Maybe<Scalars["JSONObject"]>;
2508
2760
  /** The time at which the entity was created. */
@@ -2549,6 +2801,7 @@ export declare type IssueHistory = Node & {
2549
2801
  relationChanges?: Maybe<Array<IssueRelationHistoryPayload>>;
2550
2802
  /** ID's of labels that were removed. */
2551
2803
  removedLabelIds?: Maybe<Array<Scalars["String"]>>;
2804
+ removedLabels?: Maybe<Array<IssueLabel>>;
2552
2805
  /** The user to whom the issue was assigned to. */
2553
2806
  toAssignee?: Maybe<User>;
2554
2807
  /** The id of user to whom the issue was assigned to. */
@@ -2834,6 +3087,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
2834
3087
  actor?: Maybe<User>;
2835
3088
  /** The time at which the entity was archived. Null if the entity has not been archived. */
2836
3089
  archivedAt?: Maybe<Scalars["DateTime"]>;
3090
+ /** The bot that caused the notification. */
3091
+ botActor?: Maybe<ActorBot>;
2837
3092
  /** The comment related to the notification. */
2838
3093
  comment?: Maybe<Comment>;
2839
3094
  /** The time at which the entity was created. */
@@ -2855,6 +3110,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
2855
3110
  readAt?: Maybe<Scalars["DateTime"]>;
2856
3111
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
2857
3112
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
3113
+ /** The subscriptions related to the notification. */
3114
+ subscriptions?: Maybe<Array<NotificationSubscription>>;
2858
3115
  /** The team related to the notification. */
2859
3116
  team: Team;
2860
3117
  /** Notification type */
@@ -3008,7 +3265,10 @@ export declare type IssueSearchResult = Node & {
3008
3265
  cycle?: Maybe<Cycle>;
3009
3266
  /** The issue's description in markdown format. */
3010
3267
  description?: Maybe<Scalars["String"]>;
3011
- /** [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
+ */
3012
3272
  descriptionData?: Maybe<Scalars["JSON"]>;
3013
3273
  /** The date at which the issue is due. */
3014
3274
  dueDate?: Maybe<Scalars["TimelessDate"]>;
@@ -3028,6 +3288,8 @@ export declare type IssueSearchResult = Node & {
3028
3288
  inverseRelations: IssueRelationConnection;
3029
3289
  /** Labels associated with this issue. */
3030
3290
  labels: IssueLabelConnection;
3291
+ /** The last template that was applied to this issue. */
3292
+ lastAppliedTemplate?: Maybe<Template>;
3031
3293
  /** Metadata related to search result */
3032
3294
  metadata: Scalars["JSONObject"];
3033
3295
  /** The issue's unique number. */
@@ -3184,6 +3446,8 @@ export declare type IssueUpdateInput = {
3184
3446
  estimate?: Maybe<Scalars["Int"]>;
3185
3447
  /** The identifiers of the issue labels associated with this ticket. */
3186
3448
  labelIds?: Maybe<Array<Scalars["String"]>>;
3449
+ /** The ID of the last template applied to the issue. */
3450
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
3187
3451
  /** The identifier of the parent issue. */
3188
3452
  parentId?: Maybe<Scalars["String"]>;
3189
3453
  /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
@@ -3210,7 +3474,7 @@ export declare type IssueUpdateInput = {
3210
3474
  teamId?: Maybe<Scalars["String"]>;
3211
3475
  /** The issue title. */
3212
3476
  title?: Maybe<Scalars["String"]>;
3213
- /** Wether the issue has been trashed. */
3477
+ /** Whether the issue has been trashed. */
3214
3478
  trashed?: Maybe<Scalars["Boolean"]>;
3215
3479
  };
3216
3480
  export declare type JiraConfigurationInput = {
@@ -3270,12 +3534,16 @@ export declare type JiraSettingsInput = {
3270
3534
  projects: Array<JiraProjectDataInput>;
3271
3535
  };
3272
3536
  export declare type JoinOrganizationInput = {
3537
+ /** An optional invite link for an organization. */
3538
+ inviteLink?: Maybe<Scalars["String"]>;
3273
3539
  /** The identifier of the organization. */
3274
3540
  organizationId: Scalars["String"];
3275
3541
  };
3276
3542
  /** A label notification subscription. */
3277
3543
  export declare type LabelNotificationSubscription = Entity & Node & NotificationSubscription & {
3278
3544
  __typename?: "LabelNotificationSubscription";
3545
+ /** Whether the subscription is active or not */
3546
+ active: Scalars["Boolean"];
3279
3547
  /** The time at which the entity was archived. Null if the entity has not been archived. */
3280
3548
  archivedAt?: Maybe<Scalars["DateTime"]>;
3281
3549
  /** The type of view to which the notification subscription context is associated with. */
@@ -3335,6 +3603,10 @@ export declare type Mutation = {
3335
3603
  attachmentLinkDiscord: AttachmentPayload;
3336
3604
  /** Link an existing Front conversation to an issue. */
3337
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;
3338
3610
  /** Link an existing Intercom conversation to an issue. */
3339
3611
  attachmentLinkIntercom: AttachmentPayload;
3340
3612
  /** Link an existing Jira issue to an issue. */
@@ -3353,6 +3625,10 @@ export declare type Mutation = {
3353
3625
  commentCreate: CommentPayload;
3354
3626
  /** Deletes a comment. */
3355
3627
  commentDelete: DeletePayload;
3628
+ /** [ALPHA] Resolves a comment. */
3629
+ commentResolve: CommentPayload;
3630
+ /** [ALPHA] Unresolves a comment. */
3631
+ commentUnresolve: CommentPayload;
3356
3632
  /** Updates a comment. */
3357
3633
  commentUpdate: CommentPayload;
3358
3634
  /** Saves user message. */
@@ -3363,6 +3639,8 @@ export declare type Mutation = {
3363
3639
  createCsvExportReport: CreateCsvExportReportPayload;
3364
3640
  /** Creates an organization from onboarding. */
3365
3641
  createOrganizationFromOnboarding: CreateOrJoinOrganizationResponse;
3642
+ /** Create a notification to remind a user about a project update. */
3643
+ createProjectUpdateReminder: ProjectUpdateReminderPayload;
3366
3644
  /** Creates a new custom view. */
3367
3645
  customViewCreate: CustomViewPayload;
3368
3646
  /** Deletes a custom view. */
@@ -3407,6 +3685,8 @@ export declare type Mutation = {
3407
3685
  imageUploadFromUrl: ImageUploadFromUrlPayload;
3408
3686
  /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
3409
3687
  importFileUpload: UploadPayload;
3688
+ /** Connect a Slack channel to Asks. */
3689
+ integrationAsksConnectChannel: AsksChannelConnectPayload;
3410
3690
  /** Deletes an integration. */
3411
3691
  integrationDelete: DeletePayload;
3412
3692
  /** Integrates the organization with Discord. */
@@ -3419,8 +3699,12 @@ export declare type Mutation = {
3419
3699
  integrationGithubCommitCreate: GitHubCommitIntegrationPayload;
3420
3700
  /** Connects the organization with the GitHub App. */
3421
3701
  integrationGithubConnect: IntegrationPayload;
3702
+ /** Connects the organization with the GitHub Sync App. */
3703
+ integrationGithubSync: IntegrationPayload;
3422
3704
  /** Connects the organization with a GitLab Access Token. */
3423
3705
  integrationGitlabConnect: IntegrationPayload;
3706
+ /** [Internal] Connects the Google Calendar to the user to this Linear account via OAuth2. */
3707
+ integrationGoogleCalendarPersonalConnect: IntegrationPayload;
3424
3708
  /** Integrates the organization with Google Sheets. */
3425
3709
  integrationGoogleSheets: IntegrationPayload;
3426
3710
  /** Integrates the organization with Intercom. */
@@ -3438,7 +3722,9 @@ export declare type Mutation = {
3438
3722
  */
3439
3723
  integrationLoom: IntegrationPayload;
3440
3724
  /** [INTERNAL] Integrates the organization with PagerDuty. */
3441
- integrationPageDutyConnect: IntegrationPayload;
3725
+ integrationPagerDutyConnect: IntegrationPayload;
3726
+ /** [INTERNAL] Refresh PagerDuty schedule mappings. */
3727
+ integrationPagerDutyRefreshScheduleMappings: IntegrationPayload;
3442
3728
  /** Requests a currently unavailable integration. */
3443
3729
  integrationRequest: IntegrationRequestPayload;
3444
3730
  /** Integrates the organization with Sentry. */
@@ -3471,6 +3757,8 @@ export declare type Mutation = {
3471
3757
  integrationsSettingsCreate: IntegrationsSettingsPayload;
3472
3758
  /** Updates settings related to integrations for a project or a team. */
3473
3759
  integrationsSettingsUpdate: IntegrationsSettingsPayload;
3760
+ /** Adds a label to an issue. */
3761
+ issueAddLabel: IssuePayload;
3474
3762
  /** Archives an issue. */
3475
3763
  issueArchive: IssueArchivePayload;
3476
3764
  /** Updates multiple issues at once. */
@@ -3511,8 +3799,14 @@ export declare type Mutation = {
3511
3799
  issueRelationUpdate: IssueRelationPayload;
3512
3800
  /** Adds an issue reminder. Will cause a notification to be sent when the issue reminder time is reached. */
3513
3801
  issueReminder: IssuePayload;
3802
+ /** Removes a label from an issue. */
3803
+ issueRemoveLabel: IssuePayload;
3804
+ /** Subscribes a user to an issue. */
3805
+ issueSubscribe: IssuePayload;
3514
3806
  /** Unarchives an issue. */
3515
3807
  issueUnarchive: IssueArchivePayload;
3808
+ /** Unsubscribes a user from an issue. */
3809
+ issueUnsubscribe: IssuePayload;
3516
3810
  /** Updates an issue. */
3517
3811
  issueUpdate: IssuePayload;
3518
3812
  /** [INTERNAL] Connects the organization with a Jira Personal Access Token. */
@@ -3521,8 +3815,14 @@ export declare type Mutation = {
3521
3815
  joinOrganizationFromOnboarding: CreateOrJoinOrganizationResponse;
3522
3816
  /** Leave an organization. */
3523
3817
  leaveOrganization: CreateOrJoinOrganizationResponse;
3524
- /** Logout of all clients. */
3818
+ /** Logout the client. */
3525
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;
3526
3826
  /** Archives a notification. */
3527
3827
  notificationArchive: NotificationArchivePayload;
3528
3828
  /** Archives all of the user's past notifications for the associated entity. */
@@ -3535,7 +3835,10 @@ export declare type Mutation = {
3535
3835
  notificationSnoozeAll: NotificationBatchActionPayload;
3536
3836
  /** Creates a new notification subscription for a cycle, custom view, label, project or team. */
3537
3837
  notificationSubscriptionCreate: NotificationSubscriptionPayload;
3538
- /** Deletes a notification subscription reference. */
3838
+ /**
3839
+ * Deletes a notification subscription reference.
3840
+ * @deprecated Update `notificationSubscription.active` to `false` instead.
3841
+ */
3539
3842
  notificationSubscriptionDelete: DeletePayload;
3540
3843
  /** Updates a notification subscription. */
3541
3844
  notificationSubscriptionUpdate: NotificationSubscriptionPayload;
@@ -3576,8 +3879,8 @@ export declare type Mutation = {
3576
3879
  projectArchive: ProjectArchivePayload;
3577
3880
  /** Creates a new project. */
3578
3881
  projectCreate: ProjectPayload;
3579
- /** Deletes a project. All issues will be disassociated from the deleted project. */
3580
- projectDelete: DeletePayload;
3882
+ /** Deletes (trashes) a project. */
3883
+ projectDelete: ProjectArchivePayload;
3581
3884
  /** Creates a new project link. */
3582
3885
  projectLinkCreate: ProjectLinkPayload;
3583
3886
  /** Deletes a project link. */
@@ -3668,8 +3971,6 @@ export declare type Mutation = {
3668
3971
  userFlagUpdate: UserSettingsFlagPayload;
3669
3972
  /** Connects the GitHub user to this Linear account via OAuth2. */
3670
3973
  userGitHubConnect: UserPayload;
3671
- /** Connects the Google Calendar to the user to this Linear account via OAuth2. */
3672
- userGoogleCalendarConnect: UserPayload;
3673
3974
  /** Connects the Jira user to this Linear account via OAuth2. */
3674
3975
  userJiraConnect: UserPayload;
3675
3976
  /** Makes user an admin. Can only be called by an admin. */
@@ -3727,16 +4028,45 @@ export declare type MutationAttachmentDeleteArgs = {
3727
4028
  };
3728
4029
  export declare type MutationAttachmentLinkDiscordArgs = {
3729
4030
  channelId: Scalars["String"];
4031
+ createAsUser?: Maybe<Scalars["String"]>;
4032
+ displayIconUrl?: Maybe<Scalars["String"]>;
4033
+ id?: Maybe<Scalars["String"]>;
3730
4034
  issueId: Scalars["String"];
3731
4035
  messageId: Scalars["String"];
3732
4036
  url: Scalars["String"];
3733
4037
  };
3734
4038
  export declare type MutationAttachmentLinkFrontArgs = {
3735
4039
  conversationId: Scalars["String"];
4040
+ createAsUser?: Maybe<Scalars["String"]>;
4041
+ displayIconUrl?: Maybe<Scalars["String"]>;
4042
+ id?: Maybe<Scalars["String"]>;
4043
+ issueId: Scalars["String"];
4044
+ };
4045
+ export declare type MutationAttachmentLinkGitHubPrArgs = {
4046
+ createAsUser?: Maybe<Scalars["String"]>;
4047
+ displayIconUrl?: Maybe<Scalars["String"]>;
4048
+ id?: Maybe<Scalars["String"]>;
3736
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"];
3737
4064
  };
3738
4065
  export declare type MutationAttachmentLinkIntercomArgs = {
3739
4066
  conversationId: Scalars["String"];
4067
+ createAsUser?: Maybe<Scalars["String"]>;
4068
+ displayIconUrl?: Maybe<Scalars["String"]>;
4069
+ id?: Maybe<Scalars["String"]>;
3740
4070
  issueId: Scalars["String"];
3741
4071
  };
3742
4072
  export declare type MutationAttachmentLinkJiraIssueArgs = {
@@ -3745,6 +4075,8 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
3745
4075
  };
3746
4076
  export declare type MutationAttachmentLinkSlackArgs = {
3747
4077
  channel: Scalars["String"];
4078
+ createAsUser?: Maybe<Scalars["String"]>;
4079
+ displayIconUrl?: Maybe<Scalars["String"]>;
3748
4080
  id?: Maybe<Scalars["String"]>;
3749
4081
  issueId: Scalars["String"];
3750
4082
  latest: Scalars["String"];
@@ -3753,12 +4085,17 @@ export declare type MutationAttachmentLinkSlackArgs = {
3753
4085
  url: Scalars["String"];
3754
4086
  };
3755
4087
  export declare type MutationAttachmentLinkUrlArgs = {
4088
+ createAsUser?: Maybe<Scalars["String"]>;
4089
+ displayIconUrl?: Maybe<Scalars["String"]>;
3756
4090
  id?: Maybe<Scalars["String"]>;
3757
4091
  issueId: Scalars["String"];
3758
4092
  title?: Maybe<Scalars["String"]>;
3759
4093
  url: Scalars["String"];
3760
4094
  };
3761
4095
  export declare type MutationAttachmentLinkZendeskArgs = {
4096
+ createAsUser?: Maybe<Scalars["String"]>;
4097
+ displayIconUrl?: Maybe<Scalars["String"]>;
4098
+ id?: Maybe<Scalars["String"]>;
3762
4099
  issueId: Scalars["String"];
3763
4100
  ticketId: Scalars["String"];
3764
4101
  };
@@ -3775,6 +4112,13 @@ export declare type MutationCommentCreateArgs = {
3775
4112
  export declare type MutationCommentDeleteArgs = {
3776
4113
  id: Scalars["String"];
3777
4114
  };
4115
+ export declare type MutationCommentResolveArgs = {
4116
+ id: Scalars["String"];
4117
+ resolvingCommentId?: Maybe<Scalars["String"]>;
4118
+ };
4119
+ export declare type MutationCommentUnresolveArgs = {
4120
+ id: Scalars["String"];
4121
+ };
3778
4122
  export declare type MutationCommentUpdateArgs = {
3779
4123
  id: Scalars["String"];
3780
4124
  input: CommentUpdateInput;
@@ -3792,6 +4136,10 @@ export declare type MutationCreateOrganizationFromOnboardingArgs = {
3792
4136
  input: CreateOrganizationInput;
3793
4137
  survey?: Maybe<OnboardingCustomerSurvey>;
3794
4138
  };
4139
+ export declare type MutationCreateProjectUpdateReminderArgs = {
4140
+ projectId: Scalars["String"];
4141
+ userId?: Maybe<Scalars["String"]>;
4142
+ };
3795
4143
  export declare type MutationCustomViewCreateArgs = {
3796
4144
  input: CustomViewCreateInput;
3797
4145
  };
@@ -3869,6 +4217,10 @@ export declare type MutationImportFileUploadArgs = {
3869
4217
  metaData?: Maybe<Scalars["JSON"]>;
3870
4218
  size: Scalars["Int"];
3871
4219
  };
4220
+ export declare type MutationIntegrationAsksConnectChannelArgs = {
4221
+ code: Scalars["String"];
4222
+ redirectUri: Scalars["String"];
4223
+ };
3872
4224
  export declare type MutationIntegrationDeleteArgs = {
3873
4225
  id: Scalars["String"];
3874
4226
  };
@@ -3887,10 +4239,16 @@ export declare type MutationIntegrationFrontArgs = {
3887
4239
  export declare type MutationIntegrationGithubConnectArgs = {
3888
4240
  installationId: Scalars["String"];
3889
4241
  };
4242
+ export declare type MutationIntegrationGithubSyncArgs = {
4243
+ installationId: Scalars["String"];
4244
+ };
3890
4245
  export declare type MutationIntegrationGitlabConnectArgs = {
3891
4246
  accessToken: Scalars["String"];
3892
4247
  gitlabUrl: Scalars["String"];
3893
4248
  };
4249
+ export declare type MutationIntegrationGoogleCalendarPersonalConnectArgs = {
4250
+ code: Scalars["String"];
4251
+ };
3894
4252
  export declare type MutationIntegrationGoogleSheetsArgs = {
3895
4253
  code: Scalars["String"];
3896
4254
  };
@@ -3902,8 +4260,9 @@ export declare type MutationIntegrationIntercomArgs = {
3902
4260
  export declare type MutationIntegrationIntercomSettingsUpdateArgs = {
3903
4261
  input: IntercomSettingsInput;
3904
4262
  };
3905
- export declare type MutationIntegrationPageDutyConnectArgs = {
3906
- apiToken: Scalars["String"];
4263
+ export declare type MutationIntegrationPagerDutyConnectArgs = {
4264
+ code: Scalars["String"];
4265
+ redirectUri: Scalars["String"];
3907
4266
  };
3908
4267
  export declare type MutationIntegrationRequestArgs = {
3909
4268
  input: IntegrationRequestInput;
@@ -3973,6 +4332,10 @@ export declare type MutationIntegrationsSettingsUpdateArgs = {
3973
4332
  id: Scalars["String"];
3974
4333
  input: IntegrationsSettingsUpdateInput;
3975
4334
  };
4335
+ export declare type MutationIssueAddLabelArgs = {
4336
+ id: Scalars["String"];
4337
+ labelId: Scalars["String"];
4338
+ };
3976
4339
  export declare type MutationIssueArchiveArgs = {
3977
4340
  id: Scalars["String"];
3978
4341
  trash?: Maybe<Scalars["Boolean"]>;
@@ -4080,9 +4443,21 @@ export declare type MutationIssueReminderArgs = {
4080
4443
  id: Scalars["String"];
4081
4444
  reminderAt: Scalars["DateTime"];
4082
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
+ };
4083
4454
  export declare type MutationIssueUnarchiveArgs = {
4084
4455
  id: Scalars["String"];
4085
4456
  };
4457
+ export declare type MutationIssueUnsubscribeArgs = {
4458
+ id: Scalars["String"];
4459
+ userId?: Maybe<Scalars["String"]>;
4460
+ };
4086
4461
  export declare type MutationIssueUpdateArgs = {
4087
4462
  id: Scalars["String"];
4088
4463
  input: IssueUpdateInput;
@@ -4096,6 +4471,9 @@ export declare type MutationJoinOrganizationFromOnboardingArgs = {
4096
4471
  export declare type MutationLeaveOrganizationArgs = {
4097
4472
  organizationId: Scalars["String"];
4098
4473
  };
4474
+ export declare type MutationLogoutSessionArgs = {
4475
+ sessionId: Scalars["String"];
4476
+ };
4099
4477
  export declare type MutationNotificationArchiveArgs = {
4100
4478
  id: Scalars["String"];
4101
4479
  };
@@ -4161,10 +4539,11 @@ export declare type MutationOrganizationInviteUpdateArgs = {
4161
4539
  input: OrganizationInviteUpdateInput;
4162
4540
  };
4163
4541
  export declare type MutationOrganizationUpdateArgs = {
4164
- input: UpdateOrganizationInput;
4542
+ input: OrganizationUpdateInput;
4165
4543
  };
4166
4544
  export declare type MutationProjectArchiveArgs = {
4167
4545
  id: Scalars["String"];
4546
+ trash?: Maybe<Scalars["Boolean"]>;
4168
4547
  };
4169
4548
  export declare type MutationProjectCreateArgs = {
4170
4549
  input: ProjectCreateInput;
@@ -4319,9 +4698,6 @@ export declare type MutationUserFlagUpdateArgs = {
4319
4698
  export declare type MutationUserGitHubConnectArgs = {
4320
4699
  code: Scalars["String"];
4321
4700
  };
4322
- export declare type MutationUserGoogleCalendarConnectArgs = {
4323
- code: Scalars["String"];
4324
- };
4325
4701
  export declare type MutationUserJiraConnectArgs = {
4326
4702
  code: Scalars["String"];
4327
4703
  };
@@ -4349,7 +4725,7 @@ export declare type MutationUserUnsuspendArgs = {
4349
4725
  };
4350
4726
  export declare type MutationUserUpdateArgs = {
4351
4727
  id: Scalars["String"];
4352
- input: UpdateUserInput;
4728
+ input: UserUpdateInput;
4353
4729
  };
4354
4730
  export declare type MutationViewPreferencesCreateArgs = {
4355
4731
  input: ViewPreferencesCreateInput;
@@ -4391,6 +4767,8 @@ export declare type Notification = {
4391
4767
  actor?: Maybe<User>;
4392
4768
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4393
4769
  archivedAt?: Maybe<Scalars["DateTime"]>;
4770
+ /** The bot that caused the notification. */
4771
+ botActor?: Maybe<ActorBot>;
4394
4772
  /** The time at which the entity was created. */
4395
4773
  createdAt: Scalars["DateTime"];
4396
4774
  /**
@@ -4472,6 +4850,8 @@ export declare type NotificationPayload = {
4472
4850
  };
4473
4851
  /** Notification subscriptions for models. */
4474
4852
  export declare type NotificationSubscription = {
4853
+ /** Whether the subscription is active or not */
4854
+ active: Scalars["Boolean"];
4475
4855
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4476
4856
  archivedAt?: Maybe<Scalars["DateTime"]>;
4477
4857
  /** The type of view to which the notification subscription context is associated with. */
@@ -4510,6 +4890,8 @@ export declare type NotificationSubscriptionConnection = {
4510
4890
  pageInfo: PageInfo;
4511
4891
  };
4512
4892
  export declare type NotificationSubscriptionCreateInput = {
4893
+ /** Whether the subscription is active. */
4894
+ active?: Maybe<Scalars["Boolean"]>;
4513
4895
  /** The type of view to which the notification subscription context is associated with. */
4514
4896
  contextViewType?: Maybe<ContextViewType>;
4515
4897
  /** The identifier of the custom view to subscribe to. */
@@ -4547,6 +4929,8 @@ export declare type NotificationSubscriptionPayload = {
4547
4929
  success: Scalars["Boolean"];
4548
4930
  };
4549
4931
  export declare type NotificationSubscriptionUpdateInput = {
4932
+ /** Whether the subscription is active. */
4933
+ active?: Maybe<Scalars["Boolean"]>;
4550
4934
  /** The types of notifications of the subscription. */
4551
4935
  notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4552
4936
  };
@@ -4632,6 +5016,15 @@ export declare type NullableDateComparator = {
4632
5016
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
4633
5017
  null?: Maybe<Scalars["Boolean"]>;
4634
5018
  };
5019
+ /** Document content filtering options. */
5020
+ export declare type NullableDocumentContentFilter = {
5021
+ /** Comparator for the created at date. */
5022
+ createdAt?: Maybe<DateComparator>;
5023
+ /** Comparator for the identifier. */
5024
+ id?: Maybe<IdComparator>;
5025
+ /** Comparator for the updated at date. */
5026
+ updatedAt?: Maybe<DateComparator>;
5027
+ };
4635
5028
  /** Issue filtering options. */
4636
5029
  export declare type NullableIssueFilter = {
4637
5030
  /** Compound filters, all of which need to be matched by the issue. */
@@ -4676,6 +5069,8 @@ export declare type NullableIssueFilter = {
4676
5069
  id?: Maybe<IdComparator>;
4677
5070
  /** Filters that issue labels must satisfy. */
4678
5071
  labels?: Maybe<IssueLabelCollectionFilter>;
5072
+ /** Filters that the last applied template must satisfy. */
5073
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
4679
5074
  /** Filter based on the existence of the relation. */
4680
5075
  null?: Maybe<Scalars["Boolean"]>;
4681
5076
  /** Comparator for the issues number. */
@@ -4698,6 +5093,8 @@ export declare type NullableIssueFilter = {
4698
5093
  snoozedBy?: Maybe<NullableUserFilter>;
4699
5094
  /** Comparator for the issues snoozed until date. */
4700
5095
  snoozedUntilAt?: Maybe<NullableDateComparator>;
5096
+ /** Filters that the source must satisfy. */
5097
+ sourceMetadata?: Maybe<SourceMetadataComparator>;
4701
5098
  /** Comparator for the issues started at date. */
4702
5099
  startedAt?: Maybe<NullableDateComparator>;
4703
5100
  /** Filters that the issues state must satisfy. */
@@ -4754,6 +5151,8 @@ export declare type NullableProjectFilter = {
4754
5151
  id?: Maybe<IdComparator>;
4755
5152
  /** Filters that the projects issues must satisfy. */
4756
5153
  issues?: Maybe<IssueCollectionFilter>;
5154
+ /** Filters that the last applied template must satisfy. */
5155
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
4757
5156
  /** Filters that the projects lead must satisfy. */
4758
5157
  lead?: Maybe<NullableUserFilter>;
4759
5158
  /** Filters that the projects members must satisfy. */
@@ -4860,6 +5259,23 @@ export declare type NullableTeamFilter = {
4860
5259
  /** Comparator for the updated at date. */
4861
5260
  updatedAt?: Maybe<DateComparator>;
4862
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
+ };
4863
5279
  export declare type NullableTimelessDateComparator = {
4864
5280
  /** Equals constraint. */
4865
5281
  eq?: Maybe<Scalars["TimelessDate"]>;
@@ -4945,7 +5361,7 @@ export declare type OauthClient = Node & {
4945
5361
  clientSecret: Scalars["String"];
4946
5362
  /** The time at which the entity was created. */
4947
5363
  createdAt: Scalars["DateTime"];
4948
- /** The user who created the OAuthClient. */
5364
+ /** The user who created the OAuth application. */
4949
5365
  creator: User;
4950
5366
  /** Information about the application. */
4951
5367
  description?: Maybe<Scalars["String"]>;
@@ -4959,9 +5375,9 @@ export declare type OauthClient = Node & {
4959
5375
  imageUrl?: Maybe<Scalars["String"]>;
4960
5376
  /** OAuth application's client name. */
4961
5377
  name: Scalars["String"];
4962
- /** The organization that the OAuthClient is associated with. */
5378
+ /** The organization that the OAuth application is associated with. */
4963
5379
  organization: Organization;
4964
- /** 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. */
4965
5381
  publicEnabled: Scalars["Boolean"];
4966
5382
  /** List of allowed redirect URIs for the application. */
4967
5383
  redirectUris: Array<Scalars["String"]>;
@@ -5015,6 +5431,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
5015
5431
  actor?: Maybe<User>;
5016
5432
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5017
5433
  archivedAt?: Maybe<Scalars["DateTime"]>;
5434
+ /** The bot that caused the notification. */
5435
+ botActor?: Maybe<ActorBot>;
5018
5436
  /** The time at which the entity was created. */
5019
5437
  createdAt: Scalars["DateTime"];
5020
5438
  /**
@@ -5064,6 +5482,8 @@ export declare type OnboardingCustomerSurvey = {
5064
5482
  /** An organization. Organizations are root-level objects that contain user accounts and teams. */
5065
5483
  export declare type Organization = Node & {
5066
5484
  __typename?: "Organization";
5485
+ /** Whether member users are allowed to send invites */
5486
+ allowMembersToInvite?: Maybe<Scalars["Boolean"]>;
5067
5487
  /** Allowed authentication providers, empty array means all are allowed */
5068
5488
  allowedAuthServices: Array<Scalars["String"]>;
5069
5489
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -5106,8 +5526,12 @@ export declare type Organization = Node & {
5106
5526
  roadmapEnabled: Scalars["Boolean"];
5107
5527
  /** Whether SAML authentication is enabled for organization. */
5108
5528
  samlEnabled: Scalars["Boolean"];
5529
+ /** [INTERNAL] SAML settings */
5530
+ samlSettings?: Maybe<Scalars["JSONObject"]>;
5109
5531
  /** Whether SCIM provisioning is enabled for organization. */
5110
5532
  scimEnabled: Scalars["Boolean"];
5533
+ /** Which day count to use for SLA calculations */
5534
+ slaDayCount: SlaDayCountType;
5111
5535
  /** The organization's subscription to a paid plan. */
5112
5536
  subscription?: Maybe<PaidSubscription>;
5113
5537
  /** Teams associated with the organization. */
@@ -5291,6 +5715,8 @@ export declare type OrganizationInvite = Node & {
5291
5715
  invitee?: Maybe<User>;
5292
5716
  /** The user who created the invitation. */
5293
5717
  inviter: User;
5718
+ /** Extra metadata associated with the organization invite. */
5719
+ metadata: Scalars["JSONObject"];
5294
5720
  /** The organization that the invite is associated with. */
5295
5721
  organization: Organization;
5296
5722
  /** The user role that the invitee will receive upon accepting the invite. */
@@ -5315,6 +5741,8 @@ export declare type OrganizationInviteCreateInput = {
5315
5741
  id?: Maybe<Scalars["String"]>;
5316
5742
  /** The message to send to the invitee. */
5317
5743
  message?: Maybe<Scalars["String"]>;
5744
+ /** [INTERNAL] Optional metadata about the invite */
5745
+ metadata?: Maybe<Scalars["JSONObject"]>;
5318
5746
  /** What user role the invite should grant. */
5319
5747
  role?: Maybe<UserRoleType>;
5320
5748
  /** The teams that the user has been invited to. */
@@ -5383,40 +5811,80 @@ export declare type OrganizationStartPlusTrialPayload = {
5383
5811
  /** Whether the operation was successful. */
5384
5812
  success: Scalars["Boolean"];
5385
5813
  };
5386
- export declare type PageInfo = {
5387
- __typename?: "PageInfo";
5388
- /** Cursor representing the last result in the paginated results. */
5389
- endCursor?: Maybe<Scalars["String"]>;
5390
- /** Indicates if there are more results when paginating forward. */
5391
- hasNextPage: Scalars["Boolean"];
5392
- /** Indicates if there are more results when paginating backward. */
5393
- hasPreviousPage: Scalars["Boolean"];
5394
- /** Cursor representing the first result in the paginated results. */
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
+ };
5850
+ export declare type PageInfo = {
5851
+ __typename?: "PageInfo";
5852
+ /** Cursor representing the last result in the paginated results. */
5853
+ endCursor?: Maybe<Scalars["String"]>;
5854
+ /** Indicates if there are more results when paginating forward. */
5855
+ hasNextPage: Scalars["Boolean"];
5856
+ /** Indicates if there are more results when paginating backward. */
5857
+ hasPreviousPage: Scalars["Boolean"];
5858
+ /** Cursor representing the first result in the paginated results. */
5395
5859
  startCursor?: Maybe<Scalars["String"]>;
5396
5860
  };
5397
5861
  export declare type PagerDutyInput = {
5398
- /** The mapping of PagerDuty schedule id to names. */
5399
- scheduleMapping: Array<PagerDutyScheduleMappingInput>;
5862
+ /** Metadata about a PagerDuty schedule. */
5863
+ scheduleMapping: Array<PagerDutyScheduleInfoInput>;
5400
5864
  };
5401
- /** Tuple for mapping PagerDuty schedule id to names. */
5402
- export declare type PagerDutyScheduleMapping = {
5403
- __typename?: "PagerDutyScheduleMapping";
5865
+ /** Metadata about a PagerDuty schedule. */
5866
+ export declare type PagerDutyScheduleInfo = {
5867
+ __typename?: "PagerDutyScheduleInfo";
5404
5868
  /** The PagerDuty schedule id. */
5405
5869
  scheduleId: Scalars["String"];
5406
5870
  /** The PagerDuty schedule name. */
5407
5871
  scheduleName: Scalars["String"];
5872
+ /** The URL of the schedule in PagerDuty's web app. */
5873
+ url: Scalars["String"];
5408
5874
  };
5409
- export declare type PagerDutyScheduleMappingInput = {
5875
+ export declare type PagerDutyScheduleInfoInput = {
5410
5876
  /** The PagerDuty schedule id. */
5411
5877
  scheduleId: Scalars["String"];
5412
5878
  /** The PagerDuty schedule name. */
5413
5879
  scheduleName: Scalars["String"];
5880
+ /** The URL of the schedule in PagerDuty's web app. */
5881
+ url: Scalars["String"];
5414
5882
  };
5415
5883
  /** PagerDuty specific settings. */
5416
5884
  export declare type PagerDutySettings = {
5417
5885
  __typename?: "PagerDutySettings";
5418
- /** The mapping of PagerDuty schedule id to names. */
5419
- scheduleMapping: Array<PagerDutyScheduleMapping>;
5886
+ /** Metadata about a PagerDuty schedule. */
5887
+ scheduleMapping: Array<PagerDutyScheduleInfo>;
5420
5888
  };
5421
5889
  /** By which field should the pagination order by */
5422
5890
  export declare enum PaginationOrderBy {
@@ -5430,6 +5898,8 @@ export declare type PaidSubscription = Node & {
5430
5898
  archivedAt?: Maybe<Scalars["DateTime"]>;
5431
5899
  /** The date the subscription was canceled, if any. */
5432
5900
  canceledAt?: Maybe<Scalars["DateTime"]>;
5901
+ /** The collection method for this subscription, either automatically charged or invoiced. */
5902
+ collectionMethod?: Maybe<Scalars["String"]>;
5433
5903
  /** The time at which the entity was created. */
5434
5904
  createdAt: Scalars["DateTime"];
5435
5905
  /** The creator of the subscription. */
@@ -5474,6 +5944,8 @@ export declare type Project = Node & {
5474
5944
  completedIssueCountHistory: Array<Scalars["Float"]>;
5475
5945
  /** The number of completed estimation points after each week. */
5476
5946
  completedScopeHistory: Array<Scalars["Float"]>;
5947
+ /** The project's content in markdown format. */
5948
+ content?: Maybe<Scalars["String"]>;
5477
5949
  /** The project was created based on this issue. */
5478
5950
  convertedFromIssue?: Maybe<Issue>;
5479
5951
  /** The time at which the entity was created. */
@@ -5496,6 +5968,8 @@ export declare type Project = Node & {
5496
5968
  issueCountHistory: Array<Scalars["Float"]>;
5497
5969
  /** Issues associated with the project. */
5498
5970
  issues: IssueConnection;
5971
+ /** The last template that was applied to this project. */
5972
+ lastAppliedTemplate?: Maybe<Template>;
5499
5973
  /** The project lead. */
5500
5974
  lead?: Maybe<User>;
5501
5975
  /** Links associated with the project. */
@@ -5536,6 +6010,8 @@ export declare type Project = Node & {
5536
6010
  targetDate?: Maybe<Scalars["TimelessDate"]>;
5537
6011
  /** Teams associated with this project. */
5538
6012
  teams: TeamConnection;
6013
+ /** A flag that indicates whether the project is in the trash bin. */
6014
+ trashed?: Maybe<Scalars["Boolean"]>;
5539
6015
  /**
5540
6016
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5541
6017
  * 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
@@ -5644,6 +6120,8 @@ export declare type ProjectCollectionFilter = {
5644
6120
  id?: Maybe<IdComparator>;
5645
6121
  /** Filters that the projects issues must satisfy. */
5646
6122
  issues?: Maybe<IssueCollectionFilter>;
6123
+ /** Filters that the last applied template must satisfy. */
6124
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
5647
6125
  /** Filters that the projects lead must satisfy. */
5648
6126
  lead?: Maybe<NullableUserFilter>;
5649
6127
  /** Comparator for the collection length. */
@@ -5692,6 +6170,8 @@ export declare type ProjectCreateInput = {
5692
6170
  icon?: Maybe<Scalars["String"]>;
5693
6171
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
5694
6172
  id?: Maybe<Scalars["String"]>;
6173
+ /** The ID of the last template applied to the project. */
6174
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
5695
6175
  /** The identifier of the project lead. */
5696
6176
  leadId?: Maybe<Scalars["String"]>;
5697
6177
  /** The identifiers of the members of this project. */
@@ -5735,6 +6215,8 @@ export declare type ProjectFilter = {
5735
6215
  id?: Maybe<IdComparator>;
5736
6216
  /** Filters that the projects issues must satisfy. */
5737
6217
  issues?: Maybe<IssueCollectionFilter>;
6218
+ /** Filters that the last applied template must satisfy. */
6219
+ lastAppliedTemplate?: Maybe<NullableTemplateFilter>;
5738
6220
  /** Filters that the projects lead must satisfy. */
5739
6221
  lead?: Maybe<NullableUserFilter>;
5740
6222
  /** Filters that the projects members must satisfy. */
@@ -5835,8 +6317,10 @@ export declare type ProjectMilestone = Node & {
5835
6317
  archivedAt?: Maybe<Scalars["DateTime"]>;
5836
6318
  /** The time at which the entity was created. */
5837
6319
  createdAt: Scalars["DateTime"];
5838
- /** The description of the project milestone. */
6320
+ /** The project milestone's description in markdown format. */
5839
6321
  description?: Maybe<Scalars["String"]>;
6322
+ /** [Internal] The project milestone's description as a Prosemirror document. */
6323
+ descriptionData?: Maybe<Scalars["JSON"]>;
5840
6324
  /** The unique identifier of the entity. */
5841
6325
  id: Scalars["ID"];
5842
6326
  /** The name of the project milestone. */
@@ -5884,8 +6368,10 @@ export declare type ProjectMilestoneConnection = {
5884
6368
  pageInfo: PageInfo;
5885
6369
  };
5886
6370
  export declare type ProjectMilestoneCreateInput = {
5887
- /** The description of the project milestone. */
6371
+ /** The description of the project milestone in markdown format. */
5888
6372
  description?: Maybe<Scalars["String"]>;
6373
+ /** The description of the project milestone as a Prosemirror document. */
6374
+ descriptionData?: Maybe<Scalars["JSONObject"]>;
5889
6375
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
5890
6376
  id?: Maybe<Scalars["String"]>;
5891
6377
  /** The name of the project milestone. */
@@ -5930,12 +6416,12 @@ export declare type ProjectMilestonePayload = {
5930
6416
  success: Scalars["Boolean"];
5931
6417
  };
5932
6418
  export declare type ProjectMilestoneUpdateInput = {
5933
- /** The description of the project milestone. */
6419
+ /** The description of the project milestone in markdown format. */
5934
6420
  description?: Maybe<Scalars["String"]>;
6421
+ /** The description of the project milestone as a Prosemirror document. */
6422
+ descriptionData?: Maybe<Scalars["JSONObject"]>;
5935
6423
  /** The name of the project milestone. */
5936
6424
  name?: Maybe<Scalars["String"]>;
5937
- /** Related project for the project milestone. */
5938
- projectId?: Maybe<Scalars["String"]>;
5939
6425
  /** The sort order for the project milestone within a project. */
5940
6426
  sortOrder?: Maybe<Scalars["Float"]>;
5941
6427
  /** The planned target date of the project milestone. */
@@ -5948,6 +6434,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5948
6434
  actor?: Maybe<User>;
5949
6435
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5950
6436
  archivedAt?: Maybe<Scalars["DateTime"]>;
6437
+ /** The bot that caused the notification. */
6438
+ botActor?: Maybe<ActorBot>;
5951
6439
  /** The time at which the entity was created. */
5952
6440
  createdAt: Scalars["DateTime"];
5953
6441
  /**
@@ -5983,6 +6471,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5983
6471
  /** A project notification subscription. */
5984
6472
  export declare type ProjectNotificationSubscription = Entity & Node & NotificationSubscription & {
5985
6473
  __typename?: "ProjectNotificationSubscription";
6474
+ /** Whether the subscription is active or not */
6475
+ active: Scalars["Boolean"];
5986
6476
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5987
6477
  archivedAt?: Maybe<Scalars["DateTime"]>;
5988
6478
  /** The type of view to which the notification subscription context is associated with. */
@@ -6051,6 +6541,8 @@ export declare type ProjectSearchResult = Node & {
6051
6541
  completedIssueCountHistory: Array<Scalars["Float"]>;
6052
6542
  /** The number of completed estimation points after each week. */
6053
6543
  completedScopeHistory: Array<Scalars["Float"]>;
6544
+ /** The project's content in markdown format. */
6545
+ content?: Maybe<Scalars["String"]>;
6054
6546
  /** The project was created based on this issue. */
6055
6547
  convertedFromIssue?: Maybe<Issue>;
6056
6548
  /** The time at which the entity was created. */
@@ -6073,6 +6565,8 @@ export declare type ProjectSearchResult = Node & {
6073
6565
  issueCountHistory: Array<Scalars["Float"]>;
6074
6566
  /** Issues associated with the project. */
6075
6567
  issues: IssueConnection;
6568
+ /** The last template that was applied to this project. */
6569
+ lastAppliedTemplate?: Maybe<Template>;
6076
6570
  /** The project lead. */
6077
6571
  lead?: Maybe<User>;
6078
6572
  /** Links associated with the project. */
@@ -6115,6 +6609,8 @@ export declare type ProjectSearchResult = Node & {
6115
6609
  targetDate?: Maybe<Scalars["TimelessDate"]>;
6116
6610
  /** Teams associated with this project. */
6117
6611
  teams: TeamConnection;
6612
+ /** A flag that indicates whether the project is in the trash bin. */
6613
+ trashed?: Maybe<Scalars["Boolean"]>;
6118
6614
  /**
6119
6615
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
6120
6616
  * 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
@@ -6205,6 +6701,10 @@ export declare type ProjectUpdate = Node & {
6205
6701
  body: Scalars["String"];
6206
6702
  /** The time at which the entity was created. */
6207
6703
  createdAt: Scalars["DateTime"];
6704
+ /** The diff between the current update and the previous one. */
6705
+ diff?: Maybe<Scalars["JSON"]>;
6706
+ /** The diff between the current update and the previous one, formatted as markdown. */
6707
+ diffMarkdown?: Maybe<Scalars["String"]>;
6208
6708
  /** The time the project update was edited. */
6209
6709
  editedAt?: Maybe<Scalars["DateTime"]>;
6210
6710
  /** The health of the project at the time of the update. */
@@ -6250,6 +6750,23 @@ export declare type ProjectUpdateEdge = {
6250
6750
  cursor: Scalars["String"];
6251
6751
  node: ProjectUpdate;
6252
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
+ };
6253
6770
  /** The health type of a project when the update is created. */
6254
6771
  export declare enum ProjectUpdateHealthType {
6255
6772
  AtRisk = "atRisk",
@@ -6269,6 +6786,8 @@ export declare type ProjectUpdateInput = {
6269
6786
  description?: Maybe<Scalars["String"]>;
6270
6787
  /** The icon of the project. */
6271
6788
  icon?: Maybe<Scalars["String"]>;
6789
+ /** The ID of the last template applied to the project. */
6790
+ lastAppliedTemplateId?: Maybe<Scalars["String"]>;
6272
6791
  /** The identifier of the project lead. */
6273
6792
  leadId?: Maybe<Scalars["String"]>;
6274
6793
  /** The identifiers of the members of this project. */
@@ -6356,10 +6875,18 @@ export declare type ProjectUpdatePayload = {
6356
6875
  };
6357
6876
  /** The frequency at which to send project update reminders. */
6358
6877
  export declare enum ProjectUpdateReminderFrequency {
6878
+ Month = "month",
6359
6879
  Never = "never",
6360
6880
  TwoWeeks = "twoWeeks",
6361
6881
  Week = "week"
6362
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
+ };
6363
6890
  export declare type ProjectUpdateUpdateInput = {
6364
6891
  /** The content of the project update in markdown format. */
6365
6892
  body?: Maybe<Scalars["String"]>;
@@ -6409,7 +6936,7 @@ export declare type PushSubscriptionCreateInput = {
6409
6936
  /** Whether this is a subscription payload for Google Cloud Messaging or Apple Push Notification service */
6410
6937
  type?: Maybe<PushSubscriptionType>;
6411
6938
  /** The user identifier of the subscription. */
6412
- userId: Scalars["String"];
6939
+ userId?: Maybe<Scalars["String"]>;
6413
6940
  };
6414
6941
  export declare type PushSubscriptionEdge = {
6415
6942
  __typename?: "PushSubscriptionEdge";
@@ -6419,6 +6946,8 @@ export declare type PushSubscriptionEdge = {
6419
6946
  };
6420
6947
  export declare type PushSubscriptionPayload = {
6421
6948
  __typename?: "PushSubscriptionPayload";
6949
+ /** The push subscription that was created or updated. */
6950
+ entity: PushSubscription;
6422
6951
  /** The identifier of the last sync operation. */
6423
6952
  lastSyncId: Scalars["Float"];
6424
6953
  /** Whether the operation was successful. */
@@ -6432,6 +6961,8 @@ export declare type PushSubscriptionTestPayload = {
6432
6961
  /** The different push subscription types */
6433
6962
  export declare enum PushSubscriptionType {
6434
6963
  Apple = "apple",
6964
+ AppleDevelopment = "appleDevelopment",
6965
+ Firebase = "firebase",
6435
6966
  Web = "web"
6436
6967
  }
6437
6968
  export declare type Query = {
@@ -6474,6 +7005,8 @@ export declare type Query = {
6474
7005
  auditEntries: AuditEntryConnection;
6475
7006
  /** List of audit entry types. */
6476
7007
  auditEntryTypes: Array<AuditEntryType>;
7008
+ /** User's active sessions. */
7009
+ authenticationSessions: Array<AuthenticationSessionResponse>;
6477
7010
  /** [INTERNAL] Get all authorized applications for a user */
6478
7011
  authorizedApplications: Array<AuthorizedApplication>;
6479
7012
  /** Fetch users belonging to this user account. */
@@ -6486,6 +7019,8 @@ export declare type Query = {
6486
7019
  customView: CustomView;
6487
7020
  /** [INTERNAL] Suggests metadata for a view based on it's filters. */
6488
7021
  customViewDetailsSuggestion: CustomViewSuggestionPayload;
7022
+ /** Whether a custom view has other subscribers than the current user in the organization. */
7023
+ customViewHasSubscribers: CustomViewHasSubscribersPayload;
6489
7024
  /** Custom views for the user. */
6490
7025
  customViews: CustomViewConnection;
6491
7026
  /** One specific cycle. */
@@ -6494,10 +7029,10 @@ export declare type Query = {
6494
7029
  cycles: CycleConnection;
6495
7030
  /** One specific document. */
6496
7031
  document: Document;
6497
- /** All documents for the project. */
7032
+ /** A collection of document content history entries. */
7033
+ documentContentHistory: DocumentContentHistoryPayload;
7034
+ /** All documents in the workspace. */
6498
7035
  documents: DocumentConnection;
6499
- /** Returns embed info for any url */
6500
- embedInfo: EmbedPayload;
6501
7036
  /** A specific emoji. */
6502
7037
  emoji: Emoji;
6503
7038
  /** All custom emojis. */
@@ -6510,8 +7045,6 @@ export declare type Query = {
6510
7045
  favorite: Favorite;
6511
7046
  /** The user's favorites. */
6512
7047
  favorites: FavoriteConnection;
6513
- /** Fetch Figma screenshot and other information with file and node identifiers. */
6514
- figmaEmbedInfo: FigmaEmbedPayload;
6515
7048
  /** One specific integration. */
6516
7049
  integration: Integration;
6517
7050
  /** One specific integrationTemplate. */
@@ -6622,8 +7155,6 @@ export declare type Query = {
6622
7155
  templatesForIntegration: Array<Template>;
6623
7156
  /** One specific user. */
6624
7157
  user: User;
6625
- /** Finds a user account by email. */
6626
- userAccountExists?: Maybe<UserAccountExistsPayload>;
6627
7158
  /** The user's settings. */
6628
7159
  userSettings: UserSettings;
6629
7160
  /** All users for the organization. */
@@ -6737,6 +7268,9 @@ export declare type QueryCustomViewDetailsSuggestionArgs = {
6737
7268
  filter: Scalars["JSONObject"];
6738
7269
  modelName?: Maybe<Scalars["String"]>;
6739
7270
  };
7271
+ export declare type QueryCustomViewHasSubscribersArgs = {
7272
+ id: Scalars["String"];
7273
+ };
6740
7274
  export declare type QueryCustomViewsArgs = {
6741
7275
  after?: Maybe<Scalars["String"]>;
6742
7276
  before?: Maybe<Scalars["String"]>;
@@ -6760,6 +7294,9 @@ export declare type QueryCyclesArgs = {
6760
7294
  export declare type QueryDocumentArgs = {
6761
7295
  id: Scalars["String"];
6762
7296
  };
7297
+ export declare type QueryDocumentContentHistoryArgs = {
7298
+ id: Scalars["String"];
7299
+ };
6763
7300
  export declare type QueryDocumentsArgs = {
6764
7301
  after?: Maybe<Scalars["String"]>;
6765
7302
  before?: Maybe<Scalars["String"]>;
@@ -6768,9 +7305,6 @@ export declare type QueryDocumentsArgs = {
6768
7305
  last?: Maybe<Scalars["Int"]>;
6769
7306
  orderBy?: Maybe<PaginationOrderBy>;
6770
7307
  };
6771
- export declare type QueryEmbedInfoArgs = {
6772
- url: Scalars["String"];
6773
- };
6774
7308
  export declare type QueryEmojiArgs = {
6775
7309
  id: Scalars["String"];
6776
7310
  };
@@ -6804,10 +7338,6 @@ export declare type QueryFavoritesArgs = {
6804
7338
  last?: Maybe<Scalars["Int"]>;
6805
7339
  orderBy?: Maybe<PaginationOrderBy>;
6806
7340
  };
6807
- export declare type QueryFigmaEmbedInfoArgs = {
6808
- fileId: Scalars["String"];
6809
- nodeId?: Maybe<Scalars["String"]>;
6810
- };
6811
7341
  export declare type QueryIntegrationArgs = {
6812
7342
  id: Scalars["String"];
6813
7343
  };
@@ -6976,6 +7506,7 @@ export declare type QueryProjectUpdateInteractionsArgs = {
6976
7506
  export declare type QueryProjectUpdatesArgs = {
6977
7507
  after?: Maybe<Scalars["String"]>;
6978
7508
  before?: Maybe<Scalars["String"]>;
7509
+ filter?: Maybe<ProjectUpdateFilter>;
6979
7510
  first?: Maybe<Scalars["Int"]>;
6980
7511
  includeArchived?: Maybe<Scalars["Boolean"]>;
6981
7512
  last?: Maybe<Scalars["Int"]>;
@@ -7017,8 +7548,10 @@ export declare type QuerySearchDocumentsArgs = {
7017
7548
  before?: Maybe<Scalars["String"]>;
7018
7549
  first?: Maybe<Scalars["Int"]>;
7019
7550
  includeArchived?: Maybe<Scalars["Boolean"]>;
7551
+ includeComments?: Maybe<Scalars["Boolean"]>;
7020
7552
  last?: Maybe<Scalars["Int"]>;
7021
7553
  orderBy?: Maybe<PaginationOrderBy>;
7554
+ teamId?: Maybe<Scalars["String"]>;
7022
7555
  term: Scalars["String"];
7023
7556
  };
7024
7557
  export declare type QuerySearchIssuesArgs = {
@@ -7027,8 +7560,10 @@ export declare type QuerySearchIssuesArgs = {
7027
7560
  filter?: Maybe<IssueFilter>;
7028
7561
  first?: Maybe<Scalars["Int"]>;
7029
7562
  includeArchived?: Maybe<Scalars["Boolean"]>;
7563
+ includeComments?: Maybe<Scalars["Boolean"]>;
7030
7564
  last?: Maybe<Scalars["Int"]>;
7031
7565
  orderBy?: Maybe<PaginationOrderBy>;
7566
+ teamId?: Maybe<Scalars["String"]>;
7032
7567
  term: Scalars["String"];
7033
7568
  };
7034
7569
  export declare type QuerySearchProjectsArgs = {
@@ -7036,8 +7571,10 @@ export declare type QuerySearchProjectsArgs = {
7036
7571
  before?: Maybe<Scalars["String"]>;
7037
7572
  first?: Maybe<Scalars["Int"]>;
7038
7573
  includeArchived?: Maybe<Scalars["Boolean"]>;
7574
+ includeComments?: Maybe<Scalars["Boolean"]>;
7039
7575
  last?: Maybe<Scalars["Int"]>;
7040
7576
  orderBy?: Maybe<PaginationOrderBy>;
7577
+ teamId?: Maybe<Scalars["String"]>;
7041
7578
  term: Scalars["String"];
7042
7579
  };
7043
7580
  export declare type QuerySsoUrlFromEmailArgs = {
@@ -7076,9 +7613,6 @@ export declare type QueryTemplatesForIntegrationArgs = {
7076
7613
  export declare type QueryUserArgs = {
7077
7614
  id: Scalars["String"];
7078
7615
  };
7079
- export declare type QueryUserAccountExistsArgs = {
7080
- email: Scalars["String"];
7081
- };
7082
7616
  export declare type QueryUsersArgs = {
7083
7617
  after?: Maybe<Scalars["String"]>;
7084
7618
  before?: Maybe<Scalars["String"]>;
@@ -7403,6 +7937,11 @@ export declare type RoadmapUpdateInput = {
7403
7937
  /** The sort order of the roadmap within the organization. */
7404
7938
  sortOrder?: Maybe<Scalars["Float"]>;
7405
7939
  };
7940
+ /** Which day count to use for SLA calculations */
7941
+ export declare enum SlaDayCountType {
7942
+ All = "all",
7943
+ OnlyBusinessDays = "onlyBusinessDays"
7944
+ }
7406
7945
  export declare type SamlConfiguration = {
7407
7946
  __typename?: "SamlConfiguration";
7408
7947
  /** The issuer's custom entity ID. */
@@ -7456,7 +7995,8 @@ export declare enum SlaStatus {
7456
7995
  Failed = "Failed",
7457
7996
  HighRisk = "HighRisk",
7458
7997
  LowRisk = "LowRisk",
7459
- MediumRisk = "MediumRisk"
7998
+ MediumRisk = "MediumRisk",
7999
+ Paused = "Paused"
7460
8000
  }
7461
8001
  /** Comparator for sla status. */
7462
8002
  export declare type SlaStatusComparator = {
@@ -7471,6 +8011,60 @@ export declare type SlaStatusComparator = {
7471
8011
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
7472
8012
  null?: Maybe<Scalars["Boolean"]>;
7473
8013
  };
8014
+ /** Slack Asks specific settings. */
8015
+ export declare type SlackAsksSettings = {
8016
+ __typename?: "SlackAsksSettings";
8017
+ /** The mapping of Slack channel ID => Slack channel name for connected channels. */
8018
+ slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
8019
+ };
8020
+ export declare type SlackAsksSettingsInput = {
8021
+ /** The mapping of Slack channel ID => Slack channel name for connected channels. */
8022
+ slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
8023
+ };
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 */
8039
+ export declare type SlackChannelNameMapping = {
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"]>;
8045
+ /** The Slack channel ID. */
8046
+ id: Scalars["String"];
8047
+ /** Whether or not the Slack channel is private */
8048
+ isPrivate?: Maybe<Scalars["Boolean"]>;
8049
+ /** The Slack channel name. */
8050
+ name: Scalars["String"];
8051
+ /** Which teams are connected to the channel and settings for those teams */
8052
+ teams: Array<SlackAsksTeamSettings>;
8053
+ };
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"]>;
8059
+ /** The Slack channel ID. */
8060
+ id: Scalars["String"];
8061
+ /** Whether or not the Slack channel is private */
8062
+ isPrivate?: Maybe<Scalars["Boolean"]>;
8063
+ /** The Slack channel name. */
8064
+ name: Scalars["String"];
8065
+ /** Which teams are connected to the channel and settings for those teams */
8066
+ teams: Array<SlackAsksTeamSettingsInput>;
8067
+ };
7474
8068
  /** Slack notification specific settings. */
7475
8069
  export declare type SlackPostSettings = {
7476
8070
  __typename?: "SlackPostSettings";
@@ -7483,6 +8077,21 @@ export declare type SlackPostSettingsInput = {
7483
8077
  channelId: Scalars["String"];
7484
8078
  configurationUrl: Scalars["String"];
7485
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
+ };
7486
8095
  /** Comparator for `sourceType` field. */
7487
8096
  export declare type SourceTypeComparator = {
7488
8097
  /** Contains constraint. Matches any values that contain the given string. */
@@ -7556,18 +8165,25 @@ export declare type StringComparator = {
7556
8165
  /** Starts with case insensitive constraint. Matches any values that start with the given string. */
7557
8166
  startsWithIgnoreCase?: Maybe<Scalars["String"]>;
7558
8167
  };
7559
- /**
7560
- * Contains either the full serialized state of the application or delta packets that the requester can
7561
- * apply to the local data set in order to be up-to-date.
7562
- */
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. */
7563
8182
  export declare type SyncResponse = {
7564
8183
  __typename?: "SyncResponse";
7565
8184
  /** The version of the remote database. Incremented by 1 for each migration run on the database. */
7566
8185
  databaseVersion: Scalars["Float"];
7567
- /**
7568
- * JSON serialized delta changes that the client can apply to its local state
7569
- * in order to catch up with the state of the world.
7570
- */
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. */
7571
8187
  delta?: Maybe<Scalars["String"]>;
7572
8188
  /** The last sync id covered by the response. */
7573
8189
  lastSyncId: Scalars["Float"];
@@ -7611,7 +8227,7 @@ export declare type Team = Node & {
7611
8227
  cycleIssueAutoAssignCompleted: Scalars["Boolean"];
7612
8228
  /** Auto assign started issues to current cycle. */
7613
8229
  cycleIssueAutoAssignStarted: Scalars["Boolean"];
7614
- /** Only allow issues issues with cycles in Active Issues. */
8230
+ /** Auto assign issues to current cycle if in active status. */
7615
8231
  cycleLockToActive: Scalars["Boolean"];
7616
8232
  /** The day of the week that a new cycle starts. */
7617
8233
  cycleStartDay: Scalars["Float"];
@@ -7623,6 +8239,8 @@ export declare type Team = Node & {
7623
8239
  defaultIssueEstimate: Scalars["Float"];
7624
8240
  /** The default workflow state into which issues are set when they are opened by team members. */
7625
8241
  defaultIssueState?: Maybe<WorkflowState>;
8242
+ /** The default template to use for new projects created for the team. */
8243
+ defaultProjectTemplate?: Maybe<Template>;
7626
8244
  /** The default template to use for new issues created by members of the team. */
7627
8245
  defaultTemplateForMembers?: Maybe<Template>;
7628
8246
  /**
@@ -7677,6 +8295,8 @@ export declare type Team = Node & {
7677
8295
  memberships: TeamMembershipConnection;
7678
8296
  /** The workflow state into which issues are moved when a PR has been merged. */
7679
8297
  mergeWorkflowState?: Maybe<WorkflowState>;
8298
+ /** The workflow state into which issues are moved when a PR is ready to be merged. */
8299
+ mergeableWorkflowState?: Maybe<WorkflowState>;
7680
8300
  /** The team's name. */
7681
8301
  name: Scalars["String"];
7682
8302
  /** The organization that the team is associated with. */
@@ -7860,6 +8480,8 @@ export declare type TeamCreateInput = {
7860
8480
  cyclesEnabled?: Maybe<Scalars["Boolean"]>;
7861
8481
  /** What to use as an default estimate for unestimated issues. */
7862
8482
  defaultIssueEstimate?: Maybe<Scalars["Float"]>;
8483
+ /** The identifier of the default project template of this team. */
8484
+ defaultProjectTemplateId?: Maybe<Scalars["String"]>;
7863
8485
  /** The identifier of the default template for members of this team. */
7864
8486
  defaultTemplateForMembersId?: Maybe<Scalars["String"]>;
7865
8487
  /** The identifier of the default template for non-members of this team. */
@@ -7994,6 +8616,8 @@ export declare type TeamMembershipUpdateInput = {
7994
8616
  /** A team notification subscription. */
7995
8617
  export declare type TeamNotificationSubscription = Entity & Node & NotificationSubscription & {
7996
8618
  __typename?: "TeamNotificationSubscription";
8619
+ /** Whether the subscription is active or not */
8620
+ active: Scalars["Boolean"];
7997
8621
  /** The time at which the entity was archived. Null if the entity has not been archived. */
7998
8622
  archivedAt?: Maybe<Scalars["DateTime"]>;
7999
8623
  /** The type of view to which the notification subscription context is associated with. */
@@ -8036,6 +8660,20 @@ export declare type TeamPayload = {
8036
8660
  /** The team that was created or updated. */
8037
8661
  team?: Maybe<Team>;
8038
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
+ };
8039
8677
  export declare type TeamUpdateInput = {
8040
8678
  /** Period after which closed and completed issues are automatically archived, in months. */
8041
8679
  autoArchivePeriod?: Maybe<Scalars["Float"]>;
@@ -8065,6 +8703,8 @@ export declare type TeamUpdateInput = {
8065
8703
  defaultIssueEstimate?: Maybe<Scalars["Float"]>;
8066
8704
  /** Default status for newly created issues. */
8067
8705
  defaultIssueStateId?: Maybe<Scalars["String"]>;
8706
+ /** The identifier of the default project template of this team. */
8707
+ defaultProjectTemplateId?: Maybe<Scalars["String"]>;
8068
8708
  /** The identifier of the default template for members of this team. */
8069
8709
  defaultTemplateForMembersId?: Maybe<Scalars["String"]>;
8070
8710
  /** The identifier of the default template for non-members of this team. */
@@ -8093,6 +8733,8 @@ export declare type TeamUpdateInput = {
8093
8733
  markedAsDuplicateWorkflowStateId?: Maybe<Scalars["String"]>;
8094
8734
  /** The workflow state into which issues are moved when a PR has been merged. */
8095
8735
  mergeWorkflowStateId?: Maybe<Scalars["String"]>;
8736
+ /** The workflow state into which issues are moved when a PR is ready to be merged. */
8737
+ mergeableWorkflowStateId?: Maybe<Scalars["String"]>;
8096
8738
  /** The name of the team. */
8097
8739
  name?: Maybe<Scalars["String"]>;
8098
8740
  /** Whether the team is private or not. */
@@ -8215,6 +8857,8 @@ export declare type TimelessDateComparator = {
8215
8857
  export declare type TokenUserAccountAuthInput = {
8216
8858
  /** The email which to login via the magic login code. */
8217
8859
  email: Scalars["String"];
8860
+ /** An optional invite link for an organization. */
8861
+ inviteLink?: Maybe<Scalars["String"]>;
8218
8862
  /** The identifiers of the teams to auto-join. */
8219
8863
  teamIdsToJoin?: Maybe<Array<Scalars["String"]>>;
8220
8864
  /** The timezone of the user's browser. */
@@ -8222,61 +8866,46 @@ export declare type TokenUserAccountAuthInput = {
8222
8866
  /** The magic login code. */
8223
8867
  token: Scalars["String"];
8224
8868
  };
8225
- export declare type UpdateOrganizationInput = {
8226
- /** List of services that are allowed to be used for login. */
8227
- allowedAuthServices?: Maybe<Array<Scalars["String"]>>;
8228
- /** How git branches are formatted. If null, default formatting will be used. */
8229
- gitBranchFormat?: Maybe<Scalars["String"]>;
8230
- /** Whether the Git integration linkback messages should be sent for private repositories. */
8231
- gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
8232
- /** Whether the Git integration linkback messages should be sent for public repositories. */
8233
- gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
8234
- /** Linear Preview feature flags */
8235
- linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
8236
- /** The logo of the organization. */
8237
- logoUrl?: Maybe<Scalars["String"]>;
8238
- /** The name of the organization. */
8239
- name?: Maybe<Scalars["String"]>;
8240
- /** Whether the organization has opted for having to approve all OAuth applications for install. */
8241
- oauthAppReview?: Maybe<Scalars["Boolean"]>;
8242
- /** The day at which project updates are sent. */
8243
- projectUpdateRemindersDay?: Maybe<Day>;
8244
- /** The hour at which project updates are sent. */
8245
- projectUpdateRemindersHour?: Maybe<Scalars["Float"]>;
8246
- /** The frequency at which project updates are sent. */
8247
- projectUpdatesReminderFrequency?: Maybe<ProjectUpdateReminderFrequency>;
8248
- /** Whether the organization has opted for reduced customer support attachment information. */
8249
- reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
8250
- /** Whether the organization is using roadmap. */
8251
- roadmapEnabled?: Maybe<Scalars["Boolean"]>;
8252
- /** Internal. Whether SLAs have been enabled for the organization. */
8253
- slaEnabled?: Maybe<Scalars["Boolean"]>;
8254
- /** The URL key of the organization. */
8255
- 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"];
8256
8892
  };
8257
- export declare type UpdateUserInput = {
8258
- /** Whether the user account is active. */
8259
- active?: Maybe<Scalars["Boolean"]>;
8260
- /** Whether the user account has admin privileges. */
8261
- admin?: Maybe<Scalars["Boolean"]>;
8262
- /** The avatar image URL of the user. */
8263
- avatarUrl?: Maybe<Scalars["String"]>;
8264
- /** The user description or a short bio. */
8265
- description?: Maybe<Scalars["String"]>;
8266
- /** Reason for deactivation. */
8267
- disableReason?: Maybe<Scalars["String"]>;
8268
- /** The display name of the user. */
8269
- displayName?: Maybe<Scalars["String"]>;
8270
- /** The name of the user. */
8271
- name?: Maybe<Scalars["String"]>;
8272
- /** The emoji part of the user status. */
8273
- statusEmoji?: Maybe<Scalars["String"]>;
8274
- /** The label part of the user status. */
8275
- statusLabel?: Maybe<Scalars["String"]>;
8276
- /** When the user status should be cleared. */
8277
- statusUntilAt?: Maybe<Scalars["DateTime"]>;
8278
- /** The local timezone of the user. */
8279
- 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;
8280
8909
  };
8281
8910
  /** Object representing Google Cloud upload policy, plus additional data. */
8282
8911
  export declare type UploadFile = {
@@ -8430,8 +9059,6 @@ export declare type UserAccount = {
8430
9059
  service: Scalars["String"];
8431
9060
  /** The time at which the model was updated. */
8432
9061
  updatedAt: Scalars["DateTime"];
8433
- /** Users belonging to the account. */
8434
- users: Array<User>;
8435
9062
  };
8436
9063
  /** [INTERNAL] An email change verification challenge. */
8437
9064
  export declare type UserAccountEmailChange = {
@@ -8455,12 +9082,6 @@ export declare type UserAccountEmailChange = {
8455
9082
  /** The time at which the model was updated. */
8456
9083
  updatedAt: Scalars["DateTime"];
8457
9084
  };
8458
- /** [INTERNAL] Result of looking up a user account by email. */
8459
- export declare type UserAccountExistsPayload = {
8460
- __typename?: "UserAccountExistsPayload";
8461
- /** [INTERNAL] Whether the operation was successful. */
8462
- success: Scalars["Boolean"];
8463
- };
8464
9085
  export declare type UserAdminPayload = {
8465
9086
  __typename?: "UserAdminPayload";
8466
9087
  /** Whether the operation was successful. */
@@ -8585,6 +9206,7 @@ export declare enum UserFlagType {
8585
9206
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
8586
9207
  FigmaPluginBannerDismissed = "figmaPluginBannerDismissed",
8587
9208
  FigmaPromptDismissed = "figmaPromptDismissed",
9209
+ HelpIslandFeatureInsightsDismissed = "helpIslandFeatureInsightsDismissed",
8588
9210
  ImportBannerDismissed = "importBannerDismissed",
8589
9211
  InsightsHelpDismissed = "insightsHelpDismissed",
8590
9212
  InsightsWelcomeDismissed = "insightsWelcomeDismissed",
@@ -8603,6 +9225,11 @@ export declare enum UserFlagType {
8603
9225
  TeamsPageIntroductionDismissed = "teamsPageIntroductionDismissed",
8604
9226
  ThreadedCommentsNudgeIsSeen = "threadedCommentsNudgeIsSeen",
8605
9227
  TriageWelcomeDismissed = "triageWelcomeDismissed",
9228
+ TryCyclesDismissed = "tryCyclesDismissed",
9229
+ TryGithubDismissed = "tryGithubDismissed",
9230
+ TryInvitePeopleDismissed = "tryInvitePeopleDismissed",
9231
+ TryRoadmapsDismissed = "tryRoadmapsDismissed",
9232
+ TryTriageDismissed = "tryTriageDismissed",
8606
9233
  UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
8607
9234
  }
8608
9235
  /** Operations that can be applied to UserFlagType */
@@ -8615,6 +9242,8 @@ export declare enum UserFlagUpdateOperation {
8615
9242
  /** A user notification subscription. */
8616
9243
  export declare type UserNotificationSubscription = Entity & Node & NotificationSubscription & {
8617
9244
  __typename?: "UserNotificationSubscription";
9245
+ /** Whether the subscription is active or not */
9246
+ active: Scalars["Boolean"];
8618
9247
  /** The time at which the entity was archived. Null if the entity has not been archived. */
8619
9248
  archivedAt?: Maybe<Scalars["DateTime"]>;
8620
9249
  /** The type of view to which the notification subscription context is associated with. */
@@ -8726,6 +9355,30 @@ export declare type UserSettingsUpdateInput = {
8726
9355
  /** [Internal] The user's usage warning history. */
8727
9356
  usageWarningHistory?: Maybe<Scalars["JSONObject"]>;
8728
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
+ };
8729
9382
  /** View preferences. */
8730
9383
  export declare type ViewPreferences = Node & {
8731
9384
  __typename?: "ViewPreferences";
@@ -9044,7 +9697,7 @@ export declare type WorkflowState = Node & {
9044
9697
  position: Scalars["Float"];
9045
9698
  /** The team to which this state belongs to. */
9046
9699
  team: Team;
9047
- /** The type of the state. */
9700
+ /** The type of the state. One of "triage", "backlog", "unstarted", "started", "completed", "canceled". */
9048
9701
  type: Scalars["String"];
9049
9702
  /**
9050
9703
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
@@ -9247,15 +9900,30 @@ declare type Entity_UserNotificationSubscription_Fragment = {
9247
9900
  __typename: "UserNotificationSubscription";
9248
9901
  } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9249
9902
  export declare type EntityFragment = Entity_CustomViewNotificationSubscription_Fragment | Entity_CycleNotificationSubscription_Fragment | Entity_IssueNotification_Fragment | Entity_LabelNotificationSubscription_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment | Entity_UserNotificationSubscription_Fragment;
9903
+ export declare type ActorBotFragment = {
9904
+ __typename: "ActorBot";
9905
+ } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
9250
9906
  export declare type CommentFragment = {
9251
9907
  __typename: "Comment";
9252
- } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
9908
+ } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
9909
+ botActor?: Maybe<{
9910
+ __typename?: "ActorBot";
9911
+ } & ActorBotFragment>;
9912
+ resolvingComment?: Maybe<{
9913
+ __typename?: "Comment";
9914
+ } & Pick<Comment, "id">>;
9915
+ documentContent: {
9916
+ __typename?: "DocumentContent";
9917
+ } & DocumentContentFragment;
9253
9918
  issue: {
9254
9919
  __typename?: "Issue";
9255
9920
  } & Pick<Issue, "id">;
9256
9921
  parent?: Maybe<{
9257
9922
  __typename?: "Comment";
9258
9923
  } & Pick<Comment, "id">>;
9924
+ resolvingUser?: Maybe<{
9925
+ __typename?: "User";
9926
+ } & Pick<User, "id">>;
9259
9927
  user?: Maybe<{
9260
9928
  __typename?: "User";
9261
9929
  } & Pick<User, "id">>;
@@ -9276,7 +9944,7 @@ export declare type EmojiFragment = {
9276
9944
  };
9277
9945
  export declare type CustomViewNotificationSubscriptionFragment = {
9278
9946
  __typename: "CustomViewNotificationSubscription";
9279
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9947
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9280
9948
  cycle?: Maybe<{
9281
9949
  __typename?: "Cycle";
9282
9950
  } & Pick<Cycle, "id">>;
@@ -9308,10 +9976,13 @@ export declare type CustomViewFragment = {
9308
9976
  creator: {
9309
9977
  __typename?: "User";
9310
9978
  } & Pick<User, "id">;
9979
+ owner: {
9980
+ __typename?: "User";
9981
+ } & Pick<User, "id">;
9311
9982
  };
9312
9983
  export declare type CycleNotificationSubscriptionFragment = {
9313
9984
  __typename: "CycleNotificationSubscription";
9314
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9985
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9315
9986
  customView?: Maybe<{
9316
9987
  __typename?: "CustomView";
9317
9988
  } & Pick<CustomView, "id">>;
@@ -9336,14 +10007,33 @@ export declare type CycleNotificationSubscriptionFragment = {
9336
10007
  };
9337
10008
  export declare type DocumentContentFragment = {
9338
10009
  __typename: "DocumentContent";
9339
- } & Pick<DocumentContent, "contentData" | "content" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10010
+ } & Pick<DocumentContent, "contentData" | "content" | "contentState" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10011
+ document?: Maybe<{
10012
+ __typename?: "Document";
10013
+ } & Pick<Document, "id">>;
9340
10014
  issue?: Maybe<{
9341
10015
  __typename?: "Issue";
9342
10016
  } & Pick<Issue, "id">>;
10017
+ projectMilestone?: Maybe<{
10018
+ __typename?: "ProjectMilestone";
10019
+ } & Pick<ProjectMilestone, "id">>;
10020
+ project?: Maybe<{
10021
+ __typename?: "Project";
10022
+ } & Pick<Project, "id">>;
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;
9343
10030
  };
9344
10031
  export declare type DocumentFragment = {
9345
10032
  __typename: "Document";
9346
- } & 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">>;
9347
10037
  project: {
9348
10038
  __typename?: "Project";
9349
10039
  } & Pick<Project, "id">;
@@ -9437,7 +10127,7 @@ export declare type DeletePayloadFragment = {
9437
10127
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
9438
10128
  export declare type LabelNotificationSubscriptionFragment = {
9439
10129
  __typename: "LabelNotificationSubscription";
9440
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
10130
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9441
10131
  customView?: Maybe<{
9442
10132
  __typename?: "CustomView";
9443
10133
  } & Pick<CustomView, "id">>;
@@ -9462,7 +10152,7 @@ export declare type LabelNotificationSubscriptionFragment = {
9462
10152
  };
9463
10153
  export declare type ProjectMilestoneFragment = {
9464
10154
  __typename: "ProjectMilestone";
9465
- } & Pick<ProjectMilestone, "description" | "updatedAt" | "name" | "sortOrder" | "targetDate" | "archivedAt" | "createdAt" | "id"> & {
10155
+ } & Pick<ProjectMilestone, "updatedAt" | "name" | "sortOrder" | "targetDate" | "description" | "archivedAt" | "createdAt" | "id"> & {
9466
10156
  project: {
9467
10157
  __typename?: "Project";
9468
10158
  } & Pick<Project, "id">;
@@ -9470,6 +10160,9 @@ export declare type ProjectMilestoneFragment = {
9470
10160
  declare type Notification_IssueNotification_Fragment = {
9471
10161
  __typename: "IssueNotification";
9472
10162
  } & Pick<IssueNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
10163
+ botActor?: Maybe<{
10164
+ __typename?: "ActorBot";
10165
+ } & ActorBotFragment>;
9473
10166
  actor?: Maybe<{
9474
10167
  __typename?: "User";
9475
10168
  } & Pick<User, "id">>;
@@ -9480,6 +10173,9 @@ declare type Notification_IssueNotification_Fragment = {
9480
10173
  declare type Notification_OauthClientApprovalNotification_Fragment = {
9481
10174
  __typename: "OauthClientApprovalNotification";
9482
10175
  } & Pick<OauthClientApprovalNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
10176
+ botActor?: Maybe<{
10177
+ __typename?: "ActorBot";
10178
+ } & ActorBotFragment>;
9483
10179
  actor?: Maybe<{
9484
10180
  __typename?: "User";
9485
10181
  } & Pick<User, "id">>;
@@ -9490,6 +10186,9 @@ declare type Notification_OauthClientApprovalNotification_Fragment = {
9490
10186
  declare type Notification_ProjectNotification_Fragment = {
9491
10187
  __typename: "ProjectNotification";
9492
10188
  } & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
10189
+ botActor?: Maybe<{
10190
+ __typename?: "ActorBot";
10191
+ } & ActorBotFragment>;
9493
10192
  actor?: Maybe<{
9494
10193
  __typename?: "User";
9495
10194
  } & Pick<User, "id">>;
@@ -9500,7 +10199,7 @@ declare type Notification_ProjectNotification_Fragment = {
9500
10199
  export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
9501
10200
  export declare type ProjectNotificationSubscriptionFragment = {
9502
10201
  __typename: "ProjectNotificationSubscription";
9503
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
10202
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9504
10203
  customView?: Maybe<{
9505
10204
  __typename?: "CustomView";
9506
10205
  } & Pick<CustomView, "id">>;
@@ -9526,6 +10225,9 @@ export declare type ProjectNotificationSubscriptionFragment = {
9526
10225
  export declare type ProjectNotificationFragment = {
9527
10226
  __typename: "ProjectNotification";
9528
10227
  } & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
10228
+ botActor?: Maybe<{
10229
+ __typename?: "ActorBot";
10230
+ } & ActorBotFragment>;
9529
10231
  project: {
9530
10232
  __typename?: "Project";
9531
10233
  } & Pick<Project, "id">;
@@ -9541,10 +10243,13 @@ export declare type ProjectNotificationFragment = {
9541
10243
  };
9542
10244
  export declare type ProjectFragment = {
9543
10245
  __typename: "Project";
9544
- } & Pick<Project, "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
10246
+ } & Pick<Project, "trashed" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
9545
10247
  integrationsSettings?: Maybe<{
9546
10248
  __typename?: "IntegrationsSettings";
9547
10249
  } & Pick<IntegrationsSettings, "id">>;
10250
+ lastAppliedTemplate?: Maybe<{
10251
+ __typename?: "Template";
10252
+ } & Pick<Template, "id">>;
9548
10253
  lead?: Maybe<{
9549
10254
  __typename?: "User";
9550
10255
  } & Pick<User, "id">>;
@@ -9568,6 +10273,9 @@ export declare type IssueHistoryFragment = {
9568
10273
  relationChanges?: Maybe<Array<{
9569
10274
  __typename?: "IssueRelationHistoryPayload";
9570
10275
  } & IssueRelationHistoryPayloadFragment>>;
10276
+ botActor?: Maybe<{
10277
+ __typename?: "ActorBot";
10278
+ } & ActorBotFragment>;
9571
10279
  issueImport?: Maybe<{
9572
10280
  __typename?: "IssueImport";
9573
10281
  } & IssueImportFragment>;
@@ -9619,6 +10327,12 @@ export declare type IssueHistoryFragment = {
9619
10327
  actor?: Maybe<{
9620
10328
  __typename?: "User";
9621
10329
  } & Pick<User, "id">>;
10330
+ addedLabels?: Maybe<Array<{
10331
+ __typename?: "IssueLabel";
10332
+ } & IssueLabelFragment>>;
10333
+ removedLabels?: Maybe<Array<{
10334
+ __typename?: "IssueLabel";
10335
+ } & IssueLabelFragment>>;
9622
10336
  };
9623
10337
  export declare type IssueRelationFragment = {
9624
10338
  __typename: "IssueRelation";
@@ -9640,16 +10354,6 @@ export declare type RoadmapFragment = {
9640
10354
  __typename?: "User";
9641
10355
  } & Pick<User, "id">;
9642
10356
  };
9643
- export declare type FirstResponderScheduleFragment = {
9644
- __typename: "FirstResponderSchedule";
9645
- } & Pick<FirstResponderSchedule, "scheduleData" | "integrationScheduleId" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9646
- integration: {
9647
- __typename?: "Integration";
9648
- } & Pick<Integration, "id">;
9649
- team: {
9650
- __typename?: "Team";
9651
- } & Pick<Team, "id">;
9652
- };
9653
10357
  export declare type CycleFragment = {
9654
10358
  __typename: "Cycle";
9655
10359
  } & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
@@ -9666,7 +10370,7 @@ export declare type WorkflowStateFragment = {
9666
10370
  };
9667
10371
  export declare type TeamNotificationSubscriptionFragment = {
9668
10372
  __typename: "TeamNotificationSubscription";
9669
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
10373
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9670
10374
  customView?: Maybe<{
9671
10375
  __typename?: "CustomView";
9672
10376
  } & Pick<CustomView, "id">>;
@@ -9689,6 +10393,16 @@ export declare type TeamNotificationSubscriptionFragment = {
9689
10393
  __typename?: "User";
9690
10394
  } & Pick<User, "id">>;
9691
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
+ };
9692
10406
  export declare type TemplateFragment = {
9693
10407
  __typename: "Template";
9694
10408
  } & Pick<Template, "templateData" | "description" | "type" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
@@ -9704,7 +10418,7 @@ export declare type TemplateFragment = {
9704
10418
  };
9705
10419
  export declare type ProjectUpdateFragment = {
9706
10420
  __typename: "ProjectUpdate";
9707
- } & Pick<ProjectUpdate, "url" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
10421
+ } & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body"> & {
9708
10422
  project: {
9709
10423
  __typename?: "Project";
9710
10424
  } & Pick<Project, "id">;
@@ -9714,14 +10428,10 @@ export declare type ProjectUpdateFragment = {
9714
10428
  };
9715
10429
  export declare type UserAccountFragment = {
9716
10430
  __typename: "UserAccount";
9717
- } & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name"> & {
9718
- users: Array<{
9719
- __typename?: "User";
9720
- } & UserFragment>;
9721
- };
10431
+ } & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name">;
9722
10432
  export declare type UserNotificationSubscriptionFragment = {
9723
10433
  __typename: "UserNotificationSubscription";
9724
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
10434
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
9725
10435
  customView?: Maybe<{
9726
10436
  __typename?: "CustomView";
9727
10437
  } & Pick<CustomView, "id">>;
@@ -9744,6 +10454,13 @@ export declare type UserNotificationSubscriptionFragment = {
9744
10454
  __typename?: "User";
9745
10455
  } & Pick<User, "id">;
9746
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
+ };
9747
10464
  export declare type UserFragment = {
9748
10465
  __typename: "User";
9749
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">;
@@ -9788,7 +10505,7 @@ export declare type IntegrationFragment = {
9788
10505
  };
9789
10506
  export declare type OrganizationInviteFragment = {
9790
10507
  __typename: "OrganizationInvite";
9791
- } & Pick<OrganizationInvite, "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
10508
+ } & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
9792
10509
  inviter: {
9793
10510
  __typename?: "User";
9794
10511
  } & Pick<User, "id">;
@@ -9799,12 +10516,28 @@ export declare type OrganizationInviteFragment = {
9799
10516
  export declare type IssueNotificationFragment = {
9800
10517
  __typename: "IssueNotification";
9801
10518
  } & Pick<IssueNotification, "reactionEmoji" | "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
10519
+ botActor?: Maybe<{
10520
+ __typename?: "ActorBot";
10521
+ } & ActorBotFragment>;
9802
10522
  comment?: Maybe<{
9803
10523
  __typename?: "Comment";
9804
10524
  } & Pick<Comment, "id">>;
9805
10525
  issue: {
9806
10526
  __typename?: "Issue";
9807
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)>>;
9808
10541
  team: {
9809
10542
  __typename?: "Team";
9810
10543
  } & Pick<Team, "id">;
@@ -9821,6 +10554,9 @@ export declare type IssueFragment = {
9821
10554
  cycle?: Maybe<{
9822
10555
  __typename?: "Cycle";
9823
10556
  } & Pick<Cycle, "id">>;
10557
+ lastAppliedTemplate?: Maybe<{
10558
+ __typename?: "Template";
10559
+ } & Pick<Template, "id">>;
9824
10560
  parent?: Maybe<{
9825
10561
  __typename?: "Issue";
9826
10562
  } & Pick<Issue, "id">>;
@@ -9855,6 +10591,9 @@ export declare type OauthClientApprovalNotificationFragment = {
9855
10591
  oauthClientApproval: {
9856
10592
  __typename?: "OauthClientApproval";
9857
10593
  } & OauthClientApprovalFragment;
10594
+ botActor?: Maybe<{
10595
+ __typename?: "ActorBot";
10596
+ } & ActorBotFragment>;
9858
10597
  actor?: Maybe<{
9859
10598
  __typename?: "User";
9860
10599
  } & Pick<User, "id">>;
@@ -9864,14 +10603,17 @@ export declare type OauthClientApprovalNotificationFragment = {
9864
10603
  };
9865
10604
  export declare type OrganizationFragment = {
9866
10605
  __typename: "Organization";
9867
- } & 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"> & {
9868
10607
  subscription?: Maybe<{
9869
10608
  __typename?: "PaidSubscription";
9870
10609
  } & PaidSubscriptionFragment>;
9871
10610
  };
10611
+ export declare type AuthOrganizationFragment = {
10612
+ __typename: "AuthOrganization";
10613
+ } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "samlEnabled" | "id" | "userCount">;
9872
10614
  export declare type TeamFragment = {
9873
10615
  __typename: "Team";
9874
- } & 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"> & {
9875
10617
  integrationsSettings?: Maybe<{
9876
10618
  __typename?: "IntegrationsSettings";
9877
10619
  } & Pick<IntegrationsSettings, "id">>;
@@ -9884,6 +10626,9 @@ export declare type TeamFragment = {
9884
10626
  defaultTemplateForNonMembers?: Maybe<{
9885
10627
  __typename?: "Template";
9886
10628
  } & Pick<Template, "id">>;
10629
+ defaultProjectTemplate?: Maybe<{
10630
+ __typename?: "Template";
10631
+ } & Pick<Template, "id">>;
9887
10632
  defaultIssueState?: Maybe<{
9888
10633
  __typename?: "WorkflowState";
9889
10634
  } & Pick<WorkflowState, "id">>;
@@ -9896,6 +10641,9 @@ export declare type TeamFragment = {
9896
10641
  startWorkflowState?: Maybe<{
9897
10642
  __typename?: "WorkflowState";
9898
10643
  } & Pick<WorkflowState, "id">>;
10644
+ mergeableWorkflowState?: Maybe<{
10645
+ __typename?: "WorkflowState";
10646
+ } & Pick<WorkflowState, "id">>;
9899
10647
  reviewWorkflowState?: Maybe<{
9900
10648
  __typename?: "WorkflowState";
9901
10649
  } & Pick<WorkflowState, "id">>;
@@ -9939,6 +10687,9 @@ export declare type GithubOAuthTokenPayloadFragment = {
9939
10687
  __typename?: "GithubOrg";
9940
10688
  } & GithubOrgFragment>>;
9941
10689
  };
10690
+ export declare type GitHubSyncRepoFragment = {
10691
+ __typename: "GitHubSyncRepo";
10692
+ } & Pick<GitHubSyncRepo, "id" | "fullName">;
9942
10693
  export declare type GoogleSheetsSettingsFragment = {
9943
10694
  __typename: "GoogleSheetsSettings";
9944
10695
  } & Pick<GoogleSheetsSettings, "sheetId" | "spreadsheetId" | "spreadsheetUrl" | "updatedIssuesAt">;
@@ -9952,9 +10703,6 @@ export declare type ProjectUpdateInteractionFragment = {
9952
10703
  __typename?: "User";
9953
10704
  } & Pick<User, "id">;
9954
10705
  };
9955
- export declare type EmbedFragment = {
9956
- __typename: "Embed";
9957
- } & Pick<Embed, "html" | "thumbnailUrl" | "url" | "description" | "height" | "thumbnailHeight" | "authorName" | "providerName" | "type" | "width" | "thumbnailWidth" | "title">;
9958
10706
  export declare type IntercomSettingsFragment = {
9959
10707
  __typename: "IntercomSettings";
9960
10708
  } & Pick<IntercomSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
@@ -9993,7 +10741,7 @@ export declare type RoadmapToProjectFragment = {
9993
10741
  };
9994
10742
  export declare type IntegrationTemplateFragment = {
9995
10743
  __typename: "IntegrationTemplate";
9996
- } & Pick<IntegrationTemplate, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10744
+ } & Pick<IntegrationTemplate, "foreignEntityId" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9997
10745
  integration: {
9998
10746
  __typename?: "Integration";
9999
10747
  } & Pick<Integration, "id">;
@@ -10017,12 +10765,28 @@ export declare type IssueLabelFragment = {
10017
10765
  export declare type JiraProjectDataFragment = {
10018
10766
  __typename: "JiraProjectData";
10019
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
+ };
10020
10781
  export declare type GitHubSettingsFragment = {
10021
10782
  __typename: "GitHubSettings";
10022
- } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl">;
10783
+ } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl" | "repositories">;
10784
+ export declare type GitLabSettingsFragment = {
10785
+ __typename: "GitLabSettings";
10786
+ } & Pick<GitLabSettings, "url">;
10023
10787
  declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
10024
10788
  __typename: "CustomViewNotificationSubscription";
10025
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10789
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10026
10790
  customView: {
10027
10791
  __typename?: "CustomView";
10028
10792
  } & Pick<CustomView, "id">;
@@ -10047,7 +10811,7 @@ declare type NotificationSubscription_CustomViewNotificationSubscription_Fragmen
10047
10811
  };
10048
10812
  declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10049
10813
  __typename: "CycleNotificationSubscription";
10050
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10814
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10051
10815
  customView?: Maybe<{
10052
10816
  __typename?: "CustomView";
10053
10817
  } & Pick<CustomView, "id">>;
@@ -10072,7 +10836,7 @@ declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10072
10836
  };
10073
10837
  declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10074
10838
  __typename: "LabelNotificationSubscription";
10075
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10839
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10076
10840
  customView?: Maybe<{
10077
10841
  __typename?: "CustomView";
10078
10842
  } & Pick<CustomView, "id">>;
@@ -10097,7 +10861,7 @@ declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10097
10861
  };
10098
10862
  declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
10099
10863
  __typename: "ProjectNotificationSubscription";
10100
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10864
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10101
10865
  customView?: Maybe<{
10102
10866
  __typename?: "CustomView";
10103
10867
  } & Pick<CustomView, "id">>;
@@ -10122,7 +10886,7 @@ declare type NotificationSubscription_ProjectNotificationSubscription_Fragment =
10122
10886
  };
10123
10887
  declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
10124
10888
  __typename: "TeamNotificationSubscription";
10125
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10889
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10126
10890
  customView?: Maybe<{
10127
10891
  __typename?: "CustomView";
10128
10892
  } & Pick<CustomView, "id">>;
@@ -10147,7 +10911,7 @@ declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
10147
10911
  };
10148
10912
  declare type NotificationSubscription_UserNotificationSubscription_Fragment = {
10149
10913
  __typename: "UserNotificationSubscription";
10150
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10914
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
10151
10915
  customView?: Maybe<{
10152
10916
  __typename?: "CustomView";
10153
10917
  } & Pick<CustomView, "id">>;
@@ -10181,9 +10945,13 @@ export declare type OauthClientFragment = {
10181
10945
  __typename?: "User";
10182
10946
  } & Pick<User, "id">;
10183
10947
  };
10184
- export declare type FigmaEmbedFragment = {
10185
- __typename: "FigmaEmbed";
10186
- } & 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
+ };
10187
10955
  export declare type UploadFileFragment = {
10188
10956
  __typename: "UploadFile";
10189
10957
  } & Pick<UploadFile, "assetUrl" | "contentType" | "filename" | "uploadUrl" | "size" | "metaData"> & {
@@ -10195,8 +10963,8 @@ export declare type PagerDutySettingsFragment = {
10195
10963
  __typename: "PagerDutySettings";
10196
10964
  } & {
10197
10965
  scheduleMapping: Array<{
10198
- __typename?: "PagerDutyScheduleMapping";
10199
- } & PagerDutyScheduleMappingFragment>;
10966
+ __typename?: "PagerDutyScheduleInfo";
10967
+ } & PagerDutyScheduleInfoFragment>;
10200
10968
  };
10201
10969
  export declare type UserAuthorizedApplicationFragment = {
10202
10970
  __typename: "UserAuthorizedApplication";
@@ -10220,6 +10988,13 @@ export declare type OauthClientApprovalFragment = {
10220
10988
  export declare type SentrySettingsFragment = {
10221
10989
  __typename: "SentrySettings";
10222
10990
  } & Pick<SentrySettings, "organizationSlug">;
10991
+ export declare type SlackAsksSettingsFragment = {
10992
+ __typename: "SlackAsksSettings";
10993
+ } & {
10994
+ slackChannelMapping?: Maybe<Array<{
10995
+ __typename?: "SlackChannelNameMapping";
10996
+ } & SlackChannelNameMappingFragment>>;
10997
+ };
10223
10998
  export declare type SlackPostSettingsFragment = {
10224
10999
  __typename: "SlackPostSettings";
10225
11000
  } & Pick<SlackPostSettings, "channel" | "channelId" | "configurationUrl">;
@@ -10242,6 +11017,12 @@ export declare type IntegrationSettingsFragment = {
10242
11017
  gitHub?: Maybe<{
10243
11018
  __typename?: "GitHubSettings";
10244
11019
  } & GitHubSettingsFragment>;
11020
+ gitHubSync?: Maybe<{
11021
+ __typename?: "GitHubSyncSettings";
11022
+ } & GitHubSyncSettingsFragment>;
11023
+ gitLab?: Maybe<{
11024
+ __typename?: "GitLabSettings";
11025
+ } & GitLabSettingsFragment>;
10245
11026
  googleSheets?: Maybe<{
10246
11027
  __typename?: "GoogleSheetsSettings";
10247
11028
  } & GoogleSheetsSettingsFragment>;
@@ -10260,6 +11041,9 @@ export declare type IntegrationSettingsFragment = {
10260
11041
  sentry?: Maybe<{
10261
11042
  __typename?: "SentrySettings";
10262
11043
  } & SentrySettingsFragment>;
11044
+ slackAsks?: Maybe<{
11045
+ __typename?: "SlackAsksSettings";
11046
+ } & SlackAsksSettingsFragment>;
10263
11047
  slackOrgProjectUpdatesPost?: Maybe<{
10264
11048
  __typename?: "SlackPostSettings";
10265
11049
  } & SlackPostSettingsFragment>;
@@ -10278,7 +11062,7 @@ export declare type SamlConfigurationPayloadFragment = {
10278
11062
  } & Pick<SamlConfigurationPayload, "ssoBinding" | "ssoEndpoint" | "ssoSignAlgo" | "issuerEntityId">;
10279
11063
  export declare type PaidSubscriptionFragment = {
10280
11064
  __typename: "PaidSubscription";
10281
- } & 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"> & {
10282
11066
  creator?: Maybe<{
10283
11067
  __typename?: "User";
10284
11068
  } & Pick<User, "id">>;
@@ -10293,9 +11077,15 @@ export declare type UserSettingsFragment = {
10293
11077
  export declare type JiraLinearMappingFragment = {
10294
11078
  __typename: "JiraLinearMapping";
10295
11079
  } & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId">;
10296
- export declare type PagerDutyScheduleMappingFragment = {
10297
- __typename: "PagerDutyScheduleMapping";
10298
- } & Pick<PagerDutyScheduleMapping, "scheduleId" | "scheduleName">;
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">;
10299
11089
  export declare type FavoriteFragment = {
10300
11090
  __typename: "Favorite";
10301
11091
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -10366,6 +11156,16 @@ export declare type ApiKeyPayloadFragment = {
10366
11156
  __typename?: "ApiKey";
10367
11157
  } & ApiKeyFragment;
10368
11158
  };
11159
+ export declare type AsksChannelConnectPayloadFragment = {
11160
+ __typename: "AsksChannelConnectPayload";
11161
+ } & Pick<AsksChannelConnectPayload, "lastSyncId" | "success"> & {
11162
+ integration?: Maybe<{
11163
+ __typename?: "Integration";
11164
+ } & Pick<Integration, "id">>;
11165
+ mapping: {
11166
+ __typename?: "SlackChannelNameMapping";
11167
+ } & SlackChannelNameMappingFragment;
11168
+ };
10369
11169
  export declare type AttachmentConnectionFragment = {
10370
11170
  __typename: "AttachmentConnection";
10371
11171
  } & {
@@ -10399,16 +11199,38 @@ export declare type AuditEntryConnectionFragment = {
10399
11199
  export declare type AuditEntryTypeFragment = {
10400
11200
  __typename: "AuditEntryType";
10401
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">;
10402
11218
  export declare type AuthResolverResponseFragment = {
10403
11219
  __typename: "AuthResolverResponse";
10404
11220
  } & Pick<AuthResolverResponse, "email" | "lastUsedOrganizationId" | "token" | "allowDomainAccess" | "id"> & {
11221
+ lockedOrganizations?: Maybe<Array<{
11222
+ __typename?: "AuthOrganization";
11223
+ } & AuthOrganizationFragment>>;
10405
11224
  availableOrganizations?: Maybe<Array<{
10406
- __typename?: "Organization";
10407
- } & OrganizationFragment>>;
11225
+ __typename?: "AuthOrganization";
11226
+ } & AuthOrganizationFragment>>;
10408
11227
  users: Array<{
10409
- __typename?: "User";
10410
- } & UserFragment>;
11228
+ __typename?: "AuthUser";
11229
+ } & AuthUserFragment>;
10411
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">;
10412
11234
  export declare type CommentConnectionFragment = {
10413
11235
  __typename: "CommentConnection";
10414
11236
  } & {
@@ -10445,9 +11267,12 @@ export declare type CreateCsvExportReportPayloadFragment = {
10445
11267
  export declare type CreateOrJoinOrganizationResponseFragment = {
10446
11268
  __typename: "CreateOrJoinOrganizationResponse";
10447
11269
  } & {
11270
+ organization: {
11271
+ __typename?: "AuthOrganization";
11272
+ } & AuthOrganizationFragment;
10448
11273
  user: {
10449
- __typename?: "User";
10450
- } & Pick<User, "id">;
11274
+ __typename?: "AuthUser";
11275
+ } & AuthUserFragment;
10451
11276
  };
10452
11277
  export declare type CustomViewConnectionFragment = {
10453
11278
  __typename: "CustomViewConnection";
@@ -10459,6 +11284,9 @@ export declare type CustomViewConnectionFragment = {
10459
11284
  __typename?: "PageInfo";
10460
11285
  } & PageInfoFragment;
10461
11286
  };
11287
+ export declare type CustomViewHasSubscribersPayloadFragment = {
11288
+ __typename: "CustomViewHasSubscribersPayload";
11289
+ } & Pick<CustomViewHasSubscribersPayload, "hasSubscribers">;
10462
11290
  export declare type CustomViewPayloadFragment = {
10463
11291
  __typename: "CustomViewPayload";
10464
11292
  } & Pick<CustomViewPayload, "lastSyncId" | "success"> & {
@@ -10496,6 +11324,16 @@ export declare type DocumentConnectionFragment = {
10496
11324
  __typename?: "PageInfo";
10497
11325
  } & PageInfoFragment;
10498
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">;
10499
11337
  export declare type DocumentPayloadFragment = {
10500
11338
  __typename: "DocumentPayload";
10501
11339
  } & Pick<DocumentPayload, "lastSyncId" | "success"> & {
@@ -10518,7 +11356,10 @@ export declare type DocumentSearchPayloadFragment = {
10518
11356
  };
10519
11357
  export declare type DocumentSearchResultFragment = {
10520
11358
  __typename: "DocumentSearchResult";
10521
- } & 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">>;
10522
11363
  project: {
10523
11364
  __typename?: "Project";
10524
11365
  } & Pick<Project, "id">;
@@ -10545,13 +11386,6 @@ export declare type EmailUnsubscribePayloadFragment = {
10545
11386
  export declare type EmailUserAccountAuthChallengeResponseFragment = {
10546
11387
  __typename: "EmailUserAccountAuthChallengeResponse";
10547
11388
  } & Pick<EmailUserAccountAuthChallengeResponse, "authType" | "success">;
10548
- export declare type EmbedPayloadFragment = {
10549
- __typename: "EmbedPayload";
10550
- } & Pick<EmbedPayload, "success"> & {
10551
- embed?: Maybe<{
10552
- __typename?: "Embed";
10553
- } & EmbedFragment>;
10554
- };
10555
11389
  export declare type EmojiConnectionFragment = {
10556
11390
  __typename: "EmojiConnection";
10557
11391
  } & {
@@ -10586,23 +11420,6 @@ export declare type FavoritePayloadFragment = {
10586
11420
  __typename?: "Favorite";
10587
11421
  } & Pick<Favorite, "id">;
10588
11422
  };
10589
- export declare type FigmaEmbedPayloadFragment = {
10590
- __typename: "FigmaEmbedPayload";
10591
- } & Pick<FigmaEmbedPayload, "success"> & {
10592
- figmaEmbed?: Maybe<{
10593
- __typename?: "FigmaEmbed";
10594
- } & FigmaEmbedFragment>;
10595
- };
10596
- export declare type FirstResponderScheduleConnectionFragment = {
10597
- __typename: "FirstResponderScheduleConnection";
10598
- } & {
10599
- nodes: Array<{
10600
- __typename?: "FirstResponderSchedule";
10601
- } & FirstResponderScheduleFragment>;
10602
- pageInfo: {
10603
- __typename?: "PageInfo";
10604
- } & PageInfoFragment;
10605
- };
10606
11423
  export declare type FrontAttachmentPayloadFragment = {
10607
11424
  __typename: "FrontAttachmentPayload";
10608
11425
  } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
@@ -10780,6 +11597,9 @@ export declare type IssueSearchResultFragment = {
10780
11597
  cycle?: Maybe<{
10781
11598
  __typename?: "Cycle";
10782
11599
  } & Pick<Cycle, "id">>;
11600
+ lastAppliedTemplate?: Maybe<{
11601
+ __typename?: "Template";
11602
+ } & Pick<Template, "id">>;
10783
11603
  parent?: Maybe<{
10784
11604
  __typename?: "Issue";
10785
11605
  } & Pick<Issue, "id">>;
@@ -10854,6 +11674,9 @@ declare type Node_Document_Fragment = {
10854
11674
  declare type Node_DocumentContent_Fragment = {
10855
11675
  __typename: "DocumentContent";
10856
11676
  } & Pick<DocumentContent, "id">;
11677
+ declare type Node_DocumentContentHistory_Fragment = {
11678
+ __typename: "DocumentContentHistory";
11679
+ } & Pick<DocumentContentHistory, "id">;
10857
11680
  declare type Node_DocumentSearchResult_Fragment = {
10858
11681
  __typename: "DocumentSearchResult";
10859
11682
  } & Pick<DocumentSearchResult, "id">;
@@ -10866,9 +11689,6 @@ declare type Node_ExternalUser_Fragment = {
10866
11689
  declare type Node_Favorite_Fragment = {
10867
11690
  __typename: "Favorite";
10868
11691
  } & Pick<Favorite, "id">;
10869
- declare type Node_FirstResponderSchedule_Fragment = {
10870
- __typename: "FirstResponderSchedule";
10871
- } & Pick<FirstResponderSchedule, "id">;
10872
11692
  declare type Node_Integration_Fragment = {
10873
11693
  __typename: "Integration";
10874
11694
  } & Pick<Integration, "id">;
@@ -10974,6 +11794,9 @@ declare type Node_TeamNotificationSubscription_Fragment = {
10974
11794
  declare type Node_Template_Fragment = {
10975
11795
  __typename: "Template";
10976
11796
  } & Pick<Template, "id">;
11797
+ declare type Node_TriageResponsibility_Fragment = {
11798
+ __typename: "TriageResponsibility";
11799
+ } & Pick<TriageResponsibility, "id">;
10977
11800
  declare type Node_User_Fragment = {
10978
11801
  __typename: "User";
10979
11802
  } & Pick<User, "id">;
@@ -10998,7 +11821,7 @@ declare type Node_WorkflowDefinition_Fragment = {
10998
11821
  declare type Node_WorkflowState_Fragment = {
10999
11822
  __typename: "WorkflowState";
11000
11823
  } & Pick<WorkflowState, "id">;
11001
- 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;
11002
11825
  export declare type NotificationBatchActionPayloadFragment = {
11003
11826
  __typename: "NotificationBatchActionPayload";
11004
11827
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
@@ -11189,10 +12012,13 @@ export declare type ProjectSearchPayloadFragment = {
11189
12012
  };
11190
12013
  export declare type ProjectSearchResultFragment = {
11191
12014
  __typename: "ProjectSearchResult";
11192
- } & Pick<ProjectSearchResult, "metadata" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
12015
+ } & Pick<ProjectSearchResult, "trashed" | "metadata" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
11193
12016
  integrationsSettings?: Maybe<{
11194
12017
  __typename?: "IntegrationsSettings";
11195
12018
  } & Pick<IntegrationsSettings, "id">>;
12019
+ lastAppliedTemplate?: Maybe<{
12020
+ __typename?: "Template";
12021
+ } & Pick<Template, "id">>;
11196
12022
  lead?: Maybe<{
11197
12023
  __typename?: "User";
11198
12024
  } & Pick<User, "id">>;
@@ -11247,6 +12073,9 @@ export declare type ProjectUpdatePayloadFragment = {
11247
12073
  __typename?: "ProjectUpdate";
11248
12074
  } & Pick<ProjectUpdate, "id">;
11249
12075
  };
12076
+ export declare type ProjectUpdateReminderPayloadFragment = {
12077
+ __typename: "ProjectUpdateReminderPayload";
12078
+ } & Pick<ProjectUpdateReminderPayload, "lastSyncId" | "success">;
11250
12079
  export declare type ProjectUpdateWithInteractionPayloadFragment = {
11251
12080
  __typename: "ProjectUpdateWithInteractionPayload";
11252
12081
  } & Pick<ProjectUpdateWithInteractionPayload, "lastSyncId" | "success"> & {
@@ -11269,7 +12098,11 @@ export declare type PushSubscriptionConnectionFragment = {
11269
12098
  };
11270
12099
  export declare type PushSubscriptionPayloadFragment = {
11271
12100
  __typename: "PushSubscriptionPayload";
11272
- } & Pick<PushSubscriptionPayload, "lastSyncId" | "success">;
12101
+ } & Pick<PushSubscriptionPayload, "lastSyncId" | "success"> & {
12102
+ entity: {
12103
+ __typename?: "PushSubscription";
12104
+ } & PushSubscriptionFragment;
12105
+ };
11273
12106
  export declare type PushSubscriptionTestPayloadFragment = {
11274
12107
  __typename: "PushSubscriptionTestPayload";
11275
12108
  } & Pick<PushSubscriptionTestPayload, "success">;
@@ -11391,6 +12224,16 @@ export declare type TemplatePayloadFragment = {
11391
12224
  __typename?: "Template";
11392
12225
  } & Pick<Template, "id">;
11393
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
+ };
11394
12237
  export declare type UploadFileHeaderFragment = {
11395
12238
  __typename: "UploadFileHeader";
11396
12239
  } & Pick<UploadFileHeader, "key" | "value">;
@@ -11588,6 +12431,9 @@ export declare type DeleteAttachmentMutation = {
11588
12431
  };
11589
12432
  export declare type AttachmentLinkDiscordMutationVariables = Exact<{
11590
12433
  channelId: Scalars["String"];
12434
+ createAsUser?: Maybe<Scalars["String"]>;
12435
+ displayIconUrl?: Maybe<Scalars["String"]>;
12436
+ id?: Maybe<Scalars["String"]>;
11591
12437
  issueId: Scalars["String"];
11592
12438
  messageId: Scalars["String"];
11593
12439
  url: Scalars["String"];
@@ -11601,6 +12447,9 @@ export declare type AttachmentLinkDiscordMutation = {
11601
12447
  };
11602
12448
  export declare type AttachmentLinkFrontMutationVariables = Exact<{
11603
12449
  conversationId: Scalars["String"];
12450
+ createAsUser?: Maybe<Scalars["String"]>;
12451
+ displayIconUrl?: Maybe<Scalars["String"]>;
12452
+ id?: Maybe<Scalars["String"]>;
11604
12453
  issueId: Scalars["String"];
11605
12454
  }>;
11606
12455
  export declare type AttachmentLinkFrontMutation = {
@@ -11610,8 +12459,45 @@ export declare type AttachmentLinkFrontMutation = {
11610
12459
  __typename?: "FrontAttachmentPayload";
11611
12460
  } & FrontAttachmentPayloadFragment;
11612
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
+ };
11613
12496
  export declare type AttachmentLinkIntercomMutationVariables = Exact<{
11614
12497
  conversationId: Scalars["String"];
12498
+ createAsUser?: Maybe<Scalars["String"]>;
12499
+ displayIconUrl?: Maybe<Scalars["String"]>;
12500
+ id?: Maybe<Scalars["String"]>;
11615
12501
  issueId: Scalars["String"];
11616
12502
  }>;
11617
12503
  export declare type AttachmentLinkIntercomMutation = {
@@ -11634,6 +12520,8 @@ export declare type AttachmentLinkJiraIssueMutation = {
11634
12520
  };
11635
12521
  export declare type AttachmentLinkSlackMutationVariables = Exact<{
11636
12522
  channel: Scalars["String"];
12523
+ createAsUser?: Maybe<Scalars["String"]>;
12524
+ displayIconUrl?: Maybe<Scalars["String"]>;
11637
12525
  id?: Maybe<Scalars["String"]>;
11638
12526
  issueId: Scalars["String"];
11639
12527
  latest: Scalars["String"];
@@ -11649,6 +12537,8 @@ export declare type AttachmentLinkSlackMutation = {
11649
12537
  } & AttachmentPayloadFragment;
11650
12538
  };
11651
12539
  export declare type AttachmentLinkUrlMutationVariables = Exact<{
12540
+ createAsUser?: Maybe<Scalars["String"]>;
12541
+ displayIconUrl?: Maybe<Scalars["String"]>;
11652
12542
  id?: Maybe<Scalars["String"]>;
11653
12543
  issueId: Scalars["String"];
11654
12544
  title?: Maybe<Scalars["String"]>;
@@ -11662,6 +12552,9 @@ export declare type AttachmentLinkUrlMutation = {
11662
12552
  } & AttachmentPayloadFragment;
11663
12553
  };
11664
12554
  export declare type AttachmentLinkZendeskMutationVariables = Exact<{
12555
+ createAsUser?: Maybe<Scalars["String"]>;
12556
+ displayIconUrl?: Maybe<Scalars["String"]>;
12557
+ id?: Maybe<Scalars["String"]>;
11665
12558
  issueId: Scalars["String"];
11666
12559
  ticketId: Scalars["String"];
11667
12560
  }>;
@@ -11755,6 +12648,17 @@ export declare type CreateOrganizationFromOnboardingMutation = {
11755
12648
  __typename?: "CreateOrJoinOrganizationResponse";
11756
12649
  } & CreateOrJoinOrganizationResponseFragment;
11757
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
+ };
11758
12662
  export declare type CreateCustomViewMutationVariables = Exact<{
11759
12663
  input: CustomViewCreateInput;
11760
12664
  }>;
@@ -11976,6 +12880,17 @@ export declare type ImportFileUploadMutation = {
11976
12880
  __typename?: "UploadPayload";
11977
12881
  } & UploadPayloadFragment;
11978
12882
  };
12883
+ export declare type IntegrationAsksConnectChannelMutationVariables = Exact<{
12884
+ code: Scalars["String"];
12885
+ redirectUri: Scalars["String"];
12886
+ }>;
12887
+ export declare type IntegrationAsksConnectChannelMutation = {
12888
+ __typename?: "Mutation";
12889
+ } & {
12890
+ integrationAsksConnectChannel: {
12891
+ __typename?: "AsksChannelConnectPayload";
12892
+ } & AsksChannelConnectPayloadFragment;
12893
+ };
11979
12894
  export declare type DeleteIntegrationMutationVariables = Exact<{
11980
12895
  id: Scalars["String"];
11981
12896
  }>;
@@ -12039,6 +12954,16 @@ export declare type IntegrationGithubConnectMutation = {
12039
12954
  __typename?: "IntegrationPayload";
12040
12955
  } & IntegrationPayloadFragment;
12041
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
+ };
12042
12967
  export declare type IntegrationGitlabConnectMutationVariables = Exact<{
12043
12968
  accessToken: Scalars["String"];
12044
12969
  gitlabUrl: Scalars["String"];
@@ -12271,6 +13196,17 @@ export declare type UpdateIntegrationsSettingsMutation = {
12271
13196
  __typename?: "IntegrationsSettingsPayload";
12272
13197
  } & IntegrationsSettingsPayloadFragment;
12273
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
+ };
12274
13210
  export declare type ArchiveIssueMutationVariables = Exact<{
12275
13211
  id: Scalars["String"];
12276
13212
  trash?: Maybe<Scalars["Boolean"]>;
@@ -12507,6 +13443,28 @@ export declare type IssueReminderMutation = {
12507
13443
  __typename?: "IssuePayload";
12508
13444
  } & IssuePayloadFragment;
12509
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
+ };
12510
13468
  export declare type UnarchiveIssueMutationVariables = Exact<{
12511
13469
  id: Scalars["String"];
12512
13470
  }>;
@@ -12517,6 +13475,17 @@ export declare type UnarchiveIssueMutation = {
12517
13475
  __typename?: "IssueArchivePayload";
12518
13476
  } & IssueArchivePayloadFragment;
12519
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
+ };
12520
13489
  export declare type UpdateIssueMutationVariables = Exact<{
12521
13490
  id: Scalars["String"];
12522
13491
  input: IssueUpdateInput;
@@ -12558,6 +13527,36 @@ export declare type LogoutMutation = {
12558
13527
  __typename?: "LogoutResponse";
12559
13528
  } & LogoutResponseFragment;
12560
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
+ };
12561
13560
  export declare type ArchiveNotificationMutationVariables = Exact<{
12562
13561
  id: Scalars["String"];
12563
13562
  }>;
@@ -12755,7 +13754,7 @@ export declare type OrganizationStartPlusTrialMutation = {
12755
13754
  } & OrganizationStartPlusTrialPayloadFragment;
12756
13755
  };
12757
13756
  export declare type UpdateOrganizationMutationVariables = Exact<{
12758
- input: UpdateOrganizationInput;
13757
+ input: OrganizationUpdateInput;
12759
13758
  }>;
12760
13759
  export declare type UpdateOrganizationMutation = {
12761
13760
  __typename?: "Mutation";
@@ -12766,6 +13765,7 @@ export declare type UpdateOrganizationMutation = {
12766
13765
  };
12767
13766
  export declare type ArchiveProjectMutationVariables = Exact<{
12768
13767
  id: Scalars["String"];
13768
+ trash?: Maybe<Scalars["Boolean"]>;
12769
13769
  }>;
12770
13770
  export declare type ArchiveProjectMutation = {
12771
13771
  __typename?: "Mutation";
@@ -12791,8 +13791,8 @@ export declare type DeleteProjectMutation = {
12791
13791
  __typename?: "Mutation";
12792
13792
  } & {
12793
13793
  projectDelete: {
12794
- __typename?: "DeletePayload";
12795
- } & DeletePayloadFragment;
13794
+ __typename?: "ProjectArchivePayload";
13795
+ } & ProjectArchivePayloadFragment;
12796
13796
  };
12797
13797
  export declare type CreateProjectLinkMutationVariables = Exact<{
12798
13798
  input: ProjectLinkCreateInput;
@@ -13256,16 +14256,6 @@ export declare type UserGitHubConnectMutation = {
13256
14256
  __typename?: "UserPayload";
13257
14257
  } & UserPayloadFragment;
13258
14258
  };
13259
- export declare type UserGoogleCalendarConnectMutationVariables = Exact<{
13260
- code: Scalars["String"];
13261
- }>;
13262
- export declare type UserGoogleCalendarConnectMutation = {
13263
- __typename?: "Mutation";
13264
- } & {
13265
- userGoogleCalendarConnect: {
13266
- __typename?: "UserPayload";
13267
- } & UserPayloadFragment;
13268
- };
13269
14259
  export declare type UserJiraConnectMutationVariables = Exact<{
13270
14260
  code: Scalars["String"];
13271
14261
  }>;
@@ -13349,7 +14339,7 @@ export declare type UnsuspendUserMutation = {
13349
14339
  };
13350
14340
  export declare type UpdateUserMutationVariables = Exact<{
13351
14341
  id: Scalars["String"];
13352
- input: UpdateUserInput;
14342
+ input: UserUpdateInput;
13353
14343
  }>;
13354
14344
  export declare type UpdateUserMutation = {
13355
14345
  __typename?: "Mutation";
@@ -13775,6 +14765,16 @@ export declare type AuditEntryTypesQuery = {
13775
14765
  __typename?: "AuditEntryType";
13776
14766
  } & AuditEntryTypeFragment>;
13777
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
+ };
13778
14778
  export declare type AvailableUsersQueryVariables = Exact<{
13779
14779
  [key: string]: never;
13780
14780
  }>;
@@ -13795,6 +14795,20 @@ export declare type CommentQuery = {
13795
14795
  __typename?: "Comment";
13796
14796
  } & CommentFragment;
13797
14797
  };
14798
+ export declare type Comment_BotActorQueryVariables = Exact<{
14799
+ id: Scalars["String"];
14800
+ }>;
14801
+ export declare type Comment_BotActorQuery = {
14802
+ __typename?: "Query";
14803
+ } & {
14804
+ comment: {
14805
+ __typename?: "Comment";
14806
+ } & {
14807
+ botActor?: Maybe<{
14808
+ __typename?: "ActorBot";
14809
+ } & ActorBotFragment>;
14810
+ };
14811
+ };
13798
14812
  export declare type Comment_ChildrenQueryVariables = Exact<{
13799
14813
  id: Scalars["String"];
13800
14814
  after?: Maybe<Scalars["String"]>;
@@ -13816,6 +14830,20 @@ export declare type Comment_ChildrenQuery = {
13816
14830
  } & CommentConnectionFragment;
13817
14831
  };
13818
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
+ };
13819
14847
  export declare type CommentsQueryVariables = Exact<{
13820
14848
  after?: Maybe<Scalars["String"]>;
13821
14849
  before?: Maybe<Scalars["String"]>;
@@ -13842,6 +14870,16 @@ export declare type CustomViewQuery = {
13842
14870
  __typename?: "CustomView";
13843
14871
  } & CustomViewFragment;
13844
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
+ };
13845
14883
  export declare type CustomViewsQueryVariables = Exact<{
13846
14884
  after?: Maybe<Scalars["String"]>;
13847
14885
  before?: Maybe<Scalars["String"]>;
@@ -13935,6 +14973,16 @@ export declare type DocumentQuery = {
13935
14973
  __typename?: "Document";
13936
14974
  } & DocumentFragment;
13937
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
+ };
13938
14986
  export declare type DocumentsQueryVariables = Exact<{
13939
14987
  after?: Maybe<Scalars["String"]>;
13940
14988
  before?: Maybe<Scalars["String"]>;
@@ -13950,30 +14998,6 @@ export declare type DocumentsQuery = {
13950
14998
  __typename?: "DocumentConnection";
13951
14999
  } & DocumentConnectionFragment;
13952
15000
  };
13953
- export declare type EmbedInfoQueryVariables = Exact<{
13954
- url: Scalars["String"];
13955
- }>;
13956
- export declare type EmbedInfoQuery = {
13957
- __typename?: "Query";
13958
- } & {
13959
- embedInfo: {
13960
- __typename?: "EmbedPayload";
13961
- } & EmbedPayloadFragment;
13962
- };
13963
- export declare type EmbedInfo_EmbedQueryVariables = Exact<{
13964
- url: Scalars["String"];
13965
- }>;
13966
- export declare type EmbedInfo_EmbedQuery = {
13967
- __typename?: "Query";
13968
- } & {
13969
- embedInfo: {
13970
- __typename?: "EmbedPayload";
13971
- } & {
13972
- embed?: Maybe<{
13973
- __typename?: "Embed";
13974
- } & EmbedFragment>;
13975
- };
13976
- };
13977
15001
  export declare type EmojiQueryVariables = Exact<{
13978
15002
  id: Scalars["String"];
13979
15003
  }>;
@@ -14044,32 +15068,6 @@ export declare type FavoritesQuery = {
14044
15068
  __typename?: "FavoriteConnection";
14045
15069
  } & FavoriteConnectionFragment;
14046
15070
  };
14047
- export declare type FigmaEmbedInfoQueryVariables = Exact<{
14048
- fileId: Scalars["String"];
14049
- nodeId?: Maybe<Scalars["String"]>;
14050
- }>;
14051
- export declare type FigmaEmbedInfoQuery = {
14052
- __typename?: "Query";
14053
- } & {
14054
- figmaEmbedInfo: {
14055
- __typename?: "FigmaEmbedPayload";
14056
- } & FigmaEmbedPayloadFragment;
14057
- };
14058
- export declare type FigmaEmbedInfo_FigmaEmbedQueryVariables = Exact<{
14059
- fileId: Scalars["String"];
14060
- nodeId?: Maybe<Scalars["String"]>;
14061
- }>;
14062
- export declare type FigmaEmbedInfo_FigmaEmbedQuery = {
14063
- __typename?: "Query";
14064
- } & {
14065
- figmaEmbedInfo: {
14066
- __typename?: "FigmaEmbedPayload";
14067
- } & {
14068
- figmaEmbed?: Maybe<{
14069
- __typename?: "FigmaEmbed";
14070
- } & FigmaEmbedFragment>;
14071
- };
14072
- };
14073
15071
  export declare type IntegrationQueryVariables = Exact<{
14074
15072
  id: Scalars["String"];
14075
15073
  }>;
@@ -15113,6 +16111,7 @@ export declare type ProjectUpdateInteractionsQuery = {
15113
16111
  export declare type ProjectUpdatesQueryVariables = Exact<{
15114
16112
  after?: Maybe<Scalars["String"]>;
15115
16113
  before?: Maybe<Scalars["String"]>;
16114
+ filter?: Maybe<ProjectUpdateFilter>;
15116
16115
  first?: Maybe<Scalars["Int"]>;
15117
16116
  includeArchived?: Maybe<Scalars["Boolean"]>;
15118
16117
  last?: Maybe<Scalars["Int"]>;
@@ -15237,8 +16236,10 @@ export declare type SearchDocumentsQueryVariables = Exact<{
15237
16236
  before?: Maybe<Scalars["String"]>;
15238
16237
  first?: Maybe<Scalars["Int"]>;
15239
16238
  includeArchived?: Maybe<Scalars["Boolean"]>;
16239
+ includeComments?: Maybe<Scalars["Boolean"]>;
15240
16240
  last?: Maybe<Scalars["Int"]>;
15241
16241
  orderBy?: Maybe<PaginationOrderBy>;
16242
+ teamId?: Maybe<Scalars["String"]>;
15242
16243
  term: Scalars["String"];
15243
16244
  }>;
15244
16245
  export declare type SearchDocumentsQuery = {
@@ -15253,8 +16254,10 @@ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
15253
16254
  before?: Maybe<Scalars["String"]>;
15254
16255
  first?: Maybe<Scalars["Int"]>;
15255
16256
  includeArchived?: Maybe<Scalars["Boolean"]>;
16257
+ includeComments?: Maybe<Scalars["Boolean"]>;
15256
16258
  last?: Maybe<Scalars["Int"]>;
15257
16259
  orderBy?: Maybe<PaginationOrderBy>;
16260
+ teamId?: Maybe<Scalars["String"]>;
15258
16261
  term: Scalars["String"];
15259
16262
  }>;
15260
16263
  export declare type SearchDocuments_ArchivePayloadQuery = {
@@ -15274,8 +16277,10 @@ export declare type SearchIssuesQueryVariables = Exact<{
15274
16277
  filter?: Maybe<IssueFilter>;
15275
16278
  first?: Maybe<Scalars["Int"]>;
15276
16279
  includeArchived?: Maybe<Scalars["Boolean"]>;
16280
+ includeComments?: Maybe<Scalars["Boolean"]>;
15277
16281
  last?: Maybe<Scalars["Int"]>;
15278
16282
  orderBy?: Maybe<PaginationOrderBy>;
16283
+ teamId?: Maybe<Scalars["String"]>;
15279
16284
  term: Scalars["String"];
15280
16285
  }>;
15281
16286
  export declare type SearchIssuesQuery = {
@@ -15291,8 +16296,10 @@ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
15291
16296
  filter?: Maybe<IssueFilter>;
15292
16297
  first?: Maybe<Scalars["Int"]>;
15293
16298
  includeArchived?: Maybe<Scalars["Boolean"]>;
16299
+ includeComments?: Maybe<Scalars["Boolean"]>;
15294
16300
  last?: Maybe<Scalars["Int"]>;
15295
16301
  orderBy?: Maybe<PaginationOrderBy>;
16302
+ teamId?: Maybe<Scalars["String"]>;
15296
16303
  term: Scalars["String"];
15297
16304
  }>;
15298
16305
  export declare type SearchIssues_ArchivePayloadQuery = {
@@ -15311,8 +16318,10 @@ export declare type SearchProjectsQueryVariables = Exact<{
15311
16318
  before?: Maybe<Scalars["String"]>;
15312
16319
  first?: Maybe<Scalars["Int"]>;
15313
16320
  includeArchived?: Maybe<Scalars["Boolean"]>;
16321
+ includeComments?: Maybe<Scalars["Boolean"]>;
15314
16322
  last?: Maybe<Scalars["Int"]>;
15315
16323
  orderBy?: Maybe<PaginationOrderBy>;
16324
+ teamId?: Maybe<Scalars["String"]>;
15316
16325
  term: Scalars["String"];
15317
16326
  }>;
15318
16327
  export declare type SearchProjectsQuery = {
@@ -15327,8 +16336,10 @@ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
15327
16336
  before?: Maybe<Scalars["String"]>;
15328
16337
  first?: Maybe<Scalars["Int"]>;
15329
16338
  includeArchived?: Maybe<Scalars["Boolean"]>;
16339
+ includeComments?: Maybe<Scalars["Boolean"]>;
15330
16340
  last?: Maybe<Scalars["Int"]>;
15331
16341
  orderBy?: Maybe<PaginationOrderBy>;
16342
+ teamId?: Maybe<Scalars["String"]>;
15332
16343
  term: Scalars["String"];
15333
16344
  }>;
15334
16345
  export declare type SearchProjects_ArchivePayloadQuery = {
@@ -15906,10 +16917,13 @@ export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
15906
16917
  export declare const CustomViewNotificationSubscriptionFragmentDoc: DocumentNode<CustomViewNotificationSubscriptionFragment, unknown>;
15907
16918
  export declare const CycleNotificationSubscriptionFragmentDoc: DocumentNode<CycleNotificationSubscriptionFragment, unknown>;
15908
16919
  export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
16920
+ export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentContentHistoryFragment, unknown>;
15909
16921
  export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
15910
16922
  export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
15911
16923
  export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
15912
16924
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
16925
+ export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
16926
+ export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
15913
16927
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
15914
16928
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
15915
16929
  export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
@@ -15924,9 +16938,10 @@ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<Labe
15924
16938
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
15925
16939
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
15926
16940
  export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
15927
- export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
15928
16941
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
15929
16942
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
16943
+ export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
16944
+ export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
15930
16945
  export declare const SyncResponseFragmentDoc: DocumentNode<SyncResponseFragment, unknown>;
15931
16946
  export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
15932
16947
  export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
@@ -15936,24 +16951,33 @@ export declare const UserAuthorizedApplicationFragmentDoc: DocumentNode<UserAuth
15936
16951
  export declare const ApplicationFragmentDoc: DocumentNode<ApplicationFragment, unknown>;
15937
16952
  export declare const FrontSettingsFragmentDoc: DocumentNode<FrontSettingsFragment, unknown>;
15938
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>;
15939
16958
  export declare const GoogleSheetsSettingsFragmentDoc: DocumentNode<GoogleSheetsSettingsFragment, unknown>;
15940
16959
  export declare const IntercomSettingsFragmentDoc: DocumentNode<IntercomSettingsFragment, unknown>;
15941
16960
  export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFragment, unknown>;
15942
16961
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
15943
16962
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
15944
16963
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
15945
- export declare const PagerDutyScheduleMappingFragmentDoc: DocumentNode<PagerDutyScheduleMappingFragment, unknown>;
16964
+ export declare const PagerDutyScheduleInfoFragmentDoc: DocumentNode<PagerDutyScheduleInfoFragment, unknown>;
15946
16965
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
15947
16966
  export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
16967
+ export declare const SlackAsksTeamSettingsFragmentDoc: DocumentNode<SlackAsksTeamSettingsFragment, unknown>;
16968
+ export declare const SlackChannelNameMappingFragmentDoc: DocumentNode<SlackChannelNameMappingFragment, unknown>;
16969
+ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSettingsFragment, unknown>;
15948
16970
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
15949
16971
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
15950
16972
  export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
15951
16973
  export declare const SamlConfigurationPayloadFragmentDoc: DocumentNode<SamlConfigurationPayloadFragment, unknown>;
15952
16974
  export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
16975
+ export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
15953
16976
  export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
15954
16977
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
15955
16978
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
15956
16979
  export declare const ApiKeyPayloadFragmentDoc: DocumentNode<ApiKeyPayloadFragment, unknown>;
16980
+ export declare const AsksChannelConnectPayloadFragmentDoc: DocumentNode<AsksChannelConnectPayloadFragment, unknown>;
15957
16981
  export declare const AttachmentFragmentDoc: DocumentNode<AttachmentFragment, unknown>;
15958
16982
  export declare const AttachmentConnectionFragmentDoc: DocumentNode<AttachmentConnectionFragment, unknown>;
15959
16983
  export declare const AttachmentPayloadFragmentDoc: DocumentNode<AttachmentPayloadFragment, unknown>;
@@ -15961,9 +16985,14 @@ export declare const AttachmentSourcesPayloadFragmentDoc: DocumentNode<Attachmen
15961
16985
  export declare const AuditEntryFragmentDoc: DocumentNode<AuditEntryFragment, unknown>;
15962
16986
  export declare const AuditEntryConnectionFragmentDoc: DocumentNode<AuditEntryConnectionFragment, unknown>;
15963
16987
  export declare const AuditEntryTypeFragmentDoc: DocumentNode<AuditEntryTypeFragment, unknown>;
15964
- export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
15965
- 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>;
15966
16994
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
16995
+ export declare const AuthenticationSessionResponseFragmentDoc: DocumentNode<AuthenticationSessionResponseFragment, unknown>;
15967
16996
  export declare const CommentFragmentDoc: DocumentNode<CommentFragment, unknown>;
15968
16997
  export declare const CommentConnectionFragmentDoc: DocumentNode<CommentConnectionFragment, unknown>;
15969
16998
  export declare const CommentPayloadFragmentDoc: DocumentNode<CommentPayloadFragment, unknown>;
@@ -15974,6 +17003,7 @@ export declare const CreateCsvExportReportPayloadFragmentDoc: DocumentNode<Creat
15974
17003
  export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<CreateOrJoinOrganizationResponseFragment, unknown>;
15975
17004
  export declare const CustomViewFragmentDoc: DocumentNode<CustomViewFragment, unknown>;
15976
17005
  export declare const CustomViewConnectionFragmentDoc: DocumentNode<CustomViewConnectionFragment, unknown>;
17006
+ export declare const CustomViewHasSubscribersPayloadFragmentDoc: DocumentNode<CustomViewHasSubscribersPayloadFragment, unknown>;
15977
17007
  export declare const CustomViewPayloadFragmentDoc: DocumentNode<CustomViewPayloadFragment, unknown>;
15978
17008
  export declare const CustomViewSuggestionPayloadFragmentDoc: DocumentNode<CustomViewSuggestionPayloadFragment, unknown>;
15979
17009
  export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
@@ -15981,6 +17011,8 @@ export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFra
15981
17011
  export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
15982
17012
  export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
15983
17013
  export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
17014
+ export declare const DocumentContentHistoryTypeFragmentDoc: DocumentNode<DocumentContentHistoryTypeFragment, unknown>;
17015
+ export declare const DocumentContentHistoryPayloadFragmentDoc: DocumentNode<DocumentContentHistoryPayloadFragment, unknown>;
15984
17016
  export declare const DocumentPayloadFragmentDoc: DocumentNode<DocumentPayloadFragment, unknown>;
15985
17017
  export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFragment, unknown>;
15986
17018
  export declare const DocumentSearchResultFragmentDoc: DocumentNode<DocumentSearchResultFragment, unknown>;
@@ -15988,18 +17020,12 @@ export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSear
15988
17020
  export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
15989
17021
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
15990
17022
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
15991
- export declare const EmbedFragmentDoc: DocumentNode<EmbedFragment, unknown>;
15992
- export declare const EmbedPayloadFragmentDoc: DocumentNode<EmbedPayloadFragment, unknown>;
15993
17023
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
15994
17024
  export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
15995
17025
  export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
15996
17026
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
15997
17027
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
15998
17028
  export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
15999
- export declare const FigmaEmbedFragmentDoc: DocumentNode<FigmaEmbedFragment, unknown>;
16000
- export declare const FigmaEmbedPayloadFragmentDoc: DocumentNode<FigmaEmbedPayloadFragment, unknown>;
16001
- export declare const FirstResponderScheduleFragmentDoc: DocumentNode<FirstResponderScheduleFragment, unknown>;
16002
- export declare const FirstResponderScheduleConnectionFragmentDoc: DocumentNode<FirstResponderScheduleConnectionFragment, unknown>;
16003
17029
  export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
16004
17030
  export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
16005
17031
  export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
@@ -16019,12 +17045,12 @@ export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFra
16019
17045
  export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<IssueFilterSuggestionPayloadFragment, unknown>;
16020
17046
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
16021
17047
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
17048
+ export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
16022
17049
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
16023
17050
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
16024
17051
  export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
16025
17052
  export declare const IssueImportDeletePayloadFragmentDoc: DocumentNode<IssueImportDeletePayloadFragment, unknown>;
16026
17053
  export declare const IssueImportPayloadFragmentDoc: DocumentNode<IssueImportPayloadFragment, unknown>;
16027
- export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
16028
17054
  export declare const IssueLabelConnectionFragmentDoc: DocumentNode<IssueLabelConnectionFragment, unknown>;
16029
17055
  export declare const IssueLabelPayloadFragmentDoc: DocumentNode<IssueLabelPayloadFragment, unknown>;
16030
17056
  export declare const IssuePayloadFragmentDoc: DocumentNode<IssuePayloadFragment, unknown>;
@@ -16040,7 +17066,6 @@ export declare const NodeFragmentDoc: DocumentNode<NodeFragment, unknown>;
16040
17066
  export declare const NotificationBatchActionPayloadFragmentDoc: DocumentNode<NotificationBatchActionPayloadFragment, unknown>;
16041
17067
  export declare const NotificationConnectionFragmentDoc: DocumentNode<NotificationConnectionFragment, unknown>;
16042
17068
  export declare const NotificationPayloadFragmentDoc: DocumentNode<NotificationPayloadFragment, unknown>;
16043
- export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
16044
17069
  export declare const NotificationSubscriptionConnectionFragmentDoc: DocumentNode<NotificationSubscriptionConnectionFragment, unknown>;
16045
17070
  export declare const NotificationSubscriptionPayloadFragmentDoc: DocumentNode<NotificationSubscriptionPayloadFragment, unknown>;
16046
17071
  export declare const OauthClientFragmentDoc: DocumentNode<OauthClientFragment, unknown>;
@@ -16073,6 +17098,7 @@ export declare const ProjectUpdateInteractionFragmentDoc: DocumentNode<ProjectUp
16073
17098
  export declare const ProjectUpdateInteractionConnectionFragmentDoc: DocumentNode<ProjectUpdateInteractionConnectionFragment, unknown>;
16074
17099
  export declare const ProjectUpdateInteractionPayloadFragmentDoc: DocumentNode<ProjectUpdateInteractionPayloadFragment, unknown>;
16075
17100
  export declare const ProjectUpdatePayloadFragmentDoc: DocumentNode<ProjectUpdatePayloadFragment, unknown>;
17101
+ export declare const ProjectUpdateReminderPayloadFragmentDoc: DocumentNode<ProjectUpdateReminderPayloadFragment, unknown>;
16076
17102
  export declare const ProjectUpdateWithInteractionPayloadFragmentDoc: DocumentNode<ProjectUpdateWithInteractionPayloadFragment, unknown>;
16077
17103
  export declare const PushSubscriptionFragmentDoc: DocumentNode<PushSubscriptionFragment, unknown>;
16078
17104
  export declare const PushSubscriptionConnectionFragmentDoc: DocumentNode<PushSubscriptionConnectionFragment, unknown>;
@@ -16100,10 +17126,13 @@ export declare const TeamMembershipPayloadFragmentDoc: DocumentNode<TeamMembersh
16100
17126
  export declare const TeamPayloadFragmentDoc: DocumentNode<TeamPayloadFragment, unknown>;
16101
17127
  export declare const TemplateConnectionFragmentDoc: DocumentNode<TemplateConnectionFragment, unknown>;
16102
17128
  export declare const TemplatePayloadFragmentDoc: DocumentNode<TemplatePayloadFragment, unknown>;
17129
+ export declare const TriageResponsibilityFragmentDoc: DocumentNode<TriageResponsibilityFragment, unknown>;
17130
+ export declare const TriageResponsibilityConnectionFragmentDoc: DocumentNode<TriageResponsibilityConnectionFragment, unknown>;
16103
17131
  export declare const UploadFileHeaderFragmentDoc: DocumentNode<UploadFileHeaderFragment, unknown>;
16104
17132
  export declare const UploadFileFragmentDoc: DocumentNode<UploadFileFragment, unknown>;
16105
17133
  export declare const UploadPayloadFragmentDoc: DocumentNode<UploadPayloadFragment, unknown>;
16106
17134
  export declare const UserAdminPayloadFragmentDoc: DocumentNode<UserAdminPayloadFragment, unknown>;
17135
+ export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
16107
17136
  export declare const UserConnectionFragmentDoc: DocumentNode<UserConnectionFragment, unknown>;
16108
17137
  export declare const UserPayloadFragmentDoc: DocumentNode<UserPayloadFragment, unknown>;
16109
17138
  export declare const UserSettingsFlagPayloadFragmentDoc: DocumentNode<UserSettingsFlagPayloadFragment, unknown>;
@@ -16141,16 +17170,45 @@ export declare const DeleteAttachmentDocument: DocumentNode<DeleteAttachmentMuta
16141
17170
  }>>;
16142
17171
  export declare const AttachmentLinkDiscordDocument: DocumentNode<AttachmentLinkDiscordMutation, Exact<{
16143
17172
  channelId: Scalars["String"];
17173
+ createAsUser?: Maybe<string> | undefined;
17174
+ displayIconUrl?: Maybe<string> | undefined;
17175
+ id?: Maybe<string> | undefined;
16144
17176
  issueId: Scalars["String"];
16145
17177
  messageId: Scalars["String"];
16146
17178
  url: Scalars["String"];
16147
17179
  }>>;
16148
17180
  export declare const AttachmentLinkFrontDocument: DocumentNode<AttachmentLinkFrontMutation, Exact<{
16149
17181
  conversationId: Scalars["String"];
17182
+ createAsUser?: Maybe<string> | undefined;
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;
16150
17201
  issueId: Scalars["String"];
17202
+ number: Scalars["Float"];
17203
+ owner: Scalars["String"];
17204
+ repo: Scalars["String"];
17205
+ url: Scalars["String"];
16151
17206
  }>>;
16152
17207
  export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLinkIntercomMutation, Exact<{
16153
17208
  conversationId: Scalars["String"];
17209
+ createAsUser?: Maybe<string> | undefined;
17210
+ displayIconUrl?: Maybe<string> | undefined;
17211
+ id?: Maybe<string> | undefined;
16154
17212
  issueId: Scalars["String"];
16155
17213
  }>>;
16156
17214
  export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLinkJiraIssueMutation, Exact<{
@@ -16159,6 +17217,8 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
16159
17217
  }>>;
16160
17218
  export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSlackMutation, Exact<{
16161
17219
  channel: Scalars["String"];
17220
+ createAsUser?: Maybe<string> | undefined;
17221
+ displayIconUrl?: Maybe<string> | undefined;
16162
17222
  id?: Maybe<string> | undefined;
16163
17223
  issueId: Scalars["String"];
16164
17224
  latest: Scalars["String"];
@@ -16167,12 +17227,17 @@ export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSla
16167
17227
  url: Scalars["String"];
16168
17228
  }>>;
16169
17229
  export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMutation, Exact<{
17230
+ createAsUser?: Maybe<string> | undefined;
17231
+ displayIconUrl?: Maybe<string> | undefined;
16170
17232
  id?: Maybe<string> | undefined;
16171
17233
  issueId: Scalars["String"];
16172
17234
  title?: Maybe<string> | undefined;
16173
17235
  url: Scalars["String"];
16174
17236
  }>>;
16175
17237
  export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZendeskMutation, Exact<{
17238
+ createAsUser?: Maybe<string> | undefined;
17239
+ displayIconUrl?: Maybe<string> | undefined;
17240
+ id?: Maybe<string> | undefined;
16176
17241
  issueId: Scalars["String"];
16177
17242
  ticketId: Scalars["String"];
16178
17243
  }>>;
@@ -16203,6 +17268,10 @@ export declare const CreateOrganizationFromOnboardingDocument: DocumentNode<Crea
16203
17268
  input: CreateOrganizationInput;
16204
17269
  survey?: Maybe<OnboardingCustomerSurvey> | undefined;
16205
17270
  }>>;
17271
+ export declare const CreateProjectUpdateReminderDocument: DocumentNode<CreateProjectUpdateReminderMutation, Exact<{
17272
+ projectId: Scalars["String"];
17273
+ userId?: Maybe<string> | undefined;
17274
+ }>>;
16206
17275
  export declare const CreateCustomViewDocument: DocumentNode<CreateCustomViewMutation, Exact<{
16207
17276
  input: CustomViewCreateInput;
16208
17277
  }>>;
@@ -16277,6 +17346,10 @@ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMuta
16277
17346
  metaData?: Maybe<Record<string, unknown>> | undefined;
16278
17347
  size: Scalars["Int"];
16279
17348
  }>>;
17349
+ export declare const IntegrationAsksConnectChannelDocument: DocumentNode<IntegrationAsksConnectChannelMutation, Exact<{
17350
+ code: Scalars["String"];
17351
+ redirectUri: Scalars["String"];
17352
+ }>>;
16280
17353
  export declare const DeleteIntegrationDocument: DocumentNode<DeleteIntegrationMutation, Exact<{
16281
17354
  id: Scalars["String"];
16282
17355
  }>>;
@@ -16298,6 +17371,9 @@ export declare const CreateIntegrationGithubCommitDocument: DocumentNode<CreateI
16298
17371
  export declare const IntegrationGithubConnectDocument: DocumentNode<IntegrationGithubConnectMutation, Exact<{
16299
17372
  installationId: Scalars["String"];
16300
17373
  }>>;
17374
+ export declare const IntegrationGithubSyncDocument: DocumentNode<IntegrationGithubSyncMutation, Exact<{
17375
+ installationId: Scalars["String"];
17376
+ }>>;
16301
17377
  export declare const IntegrationGitlabConnectDocument: DocumentNode<IntegrationGitlabConnectMutation, Exact<{
16302
17378
  accessToken: Scalars["String"];
16303
17379
  gitlabUrl: Scalars["String"];
@@ -16383,6 +17459,10 @@ export declare const UpdateIntegrationsSettingsDocument: DocumentNode<UpdateInte
16383
17459
  id: Scalars["String"];
16384
17460
  input: IntegrationsSettingsUpdateInput;
16385
17461
  }>>;
17462
+ export declare const IssueAddLabelDocument: DocumentNode<IssueAddLabelMutation, Exact<{
17463
+ id: Scalars["String"];
17464
+ labelId: Scalars["String"];
17465
+ }>>;
16386
17466
  export declare const ArchiveIssueDocument: DocumentNode<ArchiveIssueMutation, Exact<{
16387
17467
  id: Scalars["String"];
16388
17468
  trash?: Maybe<boolean> | undefined;
@@ -16486,9 +17566,21 @@ export declare const IssueReminderDocument: DocumentNode<IssueReminderMutation,
16486
17566
  id: Scalars["String"];
16487
17567
  reminderAt: Scalars["DateTime"];
16488
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
+ }>>;
16489
17577
  export declare const UnarchiveIssueDocument: DocumentNode<UnarchiveIssueMutation, Exact<{
16490
17578
  id: Scalars["String"];
16491
17579
  }>>;
17580
+ export declare const IssueUnsubscribeDocument: DocumentNode<IssueUnsubscribeMutation, Exact<{
17581
+ id: Scalars["String"];
17582
+ userId?: Maybe<string> | undefined;
17583
+ }>>;
16492
17584
  export declare const UpdateIssueDocument: DocumentNode<UpdateIssueMutation, Exact<{
16493
17585
  id: Scalars["String"];
16494
17586
  input: IssueUpdateInput;
@@ -16502,6 +17594,15 @@ export declare const LeaveOrganizationDocument: DocumentNode<LeaveOrganizationMu
16502
17594
  export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
16503
17595
  [key: string]: never;
16504
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
+ }>>;
16505
17606
  export declare const ArchiveNotificationDocument: DocumentNode<ArchiveNotificationMutation, Exact<{
16506
17607
  id: Scalars["String"];
16507
17608
  }>>;
@@ -16566,10 +17667,11 @@ export declare const OrganizationStartPlusTrialDocument: DocumentNode<Organizati
16566
17667
  [key: string]: never;
16567
17668
  }>>;
16568
17669
  export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, Exact<{
16569
- input: UpdateOrganizationInput;
17670
+ input: OrganizationUpdateInput;
16570
17671
  }>>;
16571
17672
  export declare const ArchiveProjectDocument: DocumentNode<ArchiveProjectMutation, Exact<{
16572
17673
  id: Scalars["String"];
17674
+ trash?: Maybe<boolean> | undefined;
16573
17675
  }>>;
16574
17676
  export declare const CreateProjectDocument: DocumentNode<CreateProjectMutation, Exact<{
16575
17677
  input: ProjectCreateInput;
@@ -16724,9 +17826,6 @@ export declare const UpdateUserFlagDocument: DocumentNode<UpdateUserFlagMutation
16724
17826
  export declare const UserGitHubConnectDocument: DocumentNode<UserGitHubConnectMutation, Exact<{
16725
17827
  code: Scalars["String"];
16726
17828
  }>>;
16727
- export declare const UserGoogleCalendarConnectDocument: DocumentNode<UserGoogleCalendarConnectMutation, Exact<{
16728
- code: Scalars["String"];
16729
- }>>;
16730
17829
  export declare const UserJiraConnectDocument: DocumentNode<UserJiraConnectMutation, Exact<{
16731
17830
  code: Scalars["String"];
16732
17831
  }>>;
@@ -16754,7 +17853,7 @@ export declare const UnsuspendUserDocument: DocumentNode<UnsuspendUserMutation,
16754
17853
  }>>;
16755
17854
  export declare const UpdateUserDocument: DocumentNode<UpdateUserMutation, Exact<{
16756
17855
  id: Scalars["String"];
16757
- input: UpdateUserInput;
17856
+ input: UserUpdateInput;
16758
17857
  }>>;
16759
17858
  export declare const CreateViewPreferencesDocument: DocumentNode<CreateViewPreferencesMutation, Exact<{
16760
17859
  input: ViewPreferencesCreateInput;
@@ -16938,12 +18037,18 @@ export declare const AuditEntriesDocument: DocumentNode<AuditEntriesQuery, Exact
16938
18037
  export declare const AuditEntryTypesDocument: DocumentNode<AuditEntryTypesQuery, Exact<{
16939
18038
  [key: string]: never;
16940
18039
  }>>;
18040
+ export declare const AuthenticationSessionsDocument: DocumentNode<AuthenticationSessionsQuery, Exact<{
18041
+ [key: string]: never;
18042
+ }>>;
16941
18043
  export declare const AvailableUsersDocument: DocumentNode<AvailableUsersQuery, Exact<{
16942
18044
  [key: string]: never;
16943
18045
  }>>;
16944
18046
  export declare const CommentDocument: DocumentNode<CommentQuery, Exact<{
16945
18047
  id: Scalars["String"];
16946
18048
  }>>;
18049
+ export declare const Comment_BotActorDocument: DocumentNode<Comment_BotActorQuery, Exact<{
18050
+ id: Scalars["String"];
18051
+ }>>;
16947
18052
  export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuery, Exact<{
16948
18053
  id: Scalars["String"];
16949
18054
  after?: Maybe<string> | undefined;
@@ -16954,6 +18059,9 @@ export declare const Comment_ChildrenDocument: DocumentNode<Comment_ChildrenQuer
16954
18059
  last?: Maybe<number> | undefined;
16955
18060
  orderBy?: Maybe<PaginationOrderBy> | undefined;
16956
18061
  }>>;
18062
+ export declare const Comment_DocumentContentDocument: DocumentNode<Comment_DocumentContentQuery, Exact<{
18063
+ id: Scalars["String"];
18064
+ }>>;
16957
18065
  export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
16958
18066
  after?: Maybe<string> | undefined;
16959
18067
  before?: Maybe<string> | undefined;
@@ -16966,6 +18074,9 @@ export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
16966
18074
  export declare const CustomViewDocument: DocumentNode<CustomViewQuery, Exact<{
16967
18075
  id: Scalars["String"];
16968
18076
  }>>;
18077
+ export declare const CustomViewHasSubscribersDocument: DocumentNode<CustomViewHasSubscribersQuery, Exact<{
18078
+ id: Scalars["String"];
18079
+ }>>;
16969
18080
  export declare const CustomViewsDocument: DocumentNode<CustomViewsQuery, Exact<{
16970
18081
  after?: Maybe<string> | undefined;
16971
18082
  before?: Maybe<string> | undefined;
@@ -17009,6 +18120,9 @@ export declare const CyclesDocument: DocumentNode<CyclesQuery, Exact<{
17009
18120
  export declare const DocumentDocument: DocumentNode<DocumentQuery, Exact<{
17010
18121
  id: Scalars["String"];
17011
18122
  }>>;
18123
+ export declare const DocumentContentHistoryDocument: DocumentNode<DocumentContentHistoryQuery, Exact<{
18124
+ id: Scalars["String"];
18125
+ }>>;
17012
18126
  export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
17013
18127
  after?: Maybe<string> | undefined;
17014
18128
  before?: Maybe<string> | undefined;
@@ -17017,12 +18131,6 @@ export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
17017
18131
  last?: Maybe<number> | undefined;
17018
18132
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17019
18133
  }>>;
17020
- export declare const EmbedInfoDocument: DocumentNode<EmbedInfoQuery, Exact<{
17021
- url: Scalars["String"];
17022
- }>>;
17023
- export declare const EmbedInfo_EmbedDocument: DocumentNode<EmbedInfo_EmbedQuery, Exact<{
17024
- url: Scalars["String"];
17025
- }>>;
17026
18134
  export declare const EmojiDocument: DocumentNode<EmojiQuery, Exact<{
17027
18135
  id: Scalars["String"];
17028
18136
  }>>;
@@ -17054,14 +18162,6 @@ export declare const FavoritesDocument: DocumentNode<FavoritesQuery, Exact<{
17054
18162
  last?: Maybe<number> | undefined;
17055
18163
  orderBy?: Maybe<PaginationOrderBy> | undefined;
17056
18164
  }>>;
17057
- export declare const FigmaEmbedInfoDocument: DocumentNode<FigmaEmbedInfoQuery, Exact<{
17058
- fileId: Scalars["String"];
17059
- nodeId?: Maybe<string> | undefined;
17060
- }>>;
17061
- export declare const FigmaEmbedInfo_FigmaEmbedDocument: DocumentNode<FigmaEmbedInfo_FigmaEmbedQuery, Exact<{
17062
- fileId: Scalars["String"];
17063
- nodeId?: Maybe<string> | undefined;
17064
- }>>;
17065
18165
  export declare const IntegrationDocument: DocumentNode<IntegrationQuery, Exact<{
17066
18166
  id: Scalars["String"];
17067
18167
  }>>;
@@ -17519,6 +18619,7 @@ export declare const ProjectUpdateInteractionsDocument: DocumentNode<ProjectUpda
17519
18619
  export declare const ProjectUpdatesDocument: DocumentNode<ProjectUpdatesQuery, Exact<{
17520
18620
  after?: Maybe<string> | undefined;
17521
18621
  before?: Maybe<string> | undefined;
18622
+ filter?: Maybe<ProjectUpdateFilter> | undefined;
17522
18623
  first?: Maybe<number> | undefined;
17523
18624
  includeArchived?: Maybe<boolean> | undefined;
17524
18625
  last?: Maybe<number> | undefined;
@@ -17576,8 +18677,10 @@ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery,
17576
18677
  before?: Maybe<string> | undefined;
17577
18678
  first?: Maybe<number> | undefined;
17578
18679
  includeArchived?: Maybe<boolean> | undefined;
18680
+ includeComments?: Maybe<boolean> | undefined;
17579
18681
  last?: Maybe<number> | undefined;
17580
18682
  orderBy?: Maybe<PaginationOrderBy> | undefined;
18683
+ teamId?: Maybe<string> | undefined;
17581
18684
  term: Scalars["String"];
17582
18685
  }>>;
17583
18686
  export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<SearchDocuments_ArchivePayloadQuery, Exact<{
@@ -17585,8 +18688,10 @@ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<Search
17585
18688
  before?: Maybe<string> | undefined;
17586
18689
  first?: Maybe<number> | undefined;
17587
18690
  includeArchived?: Maybe<boolean> | undefined;
18691
+ includeComments?: Maybe<boolean> | undefined;
17588
18692
  last?: Maybe<number> | undefined;
17589
18693
  orderBy?: Maybe<PaginationOrderBy> | undefined;
18694
+ teamId?: Maybe<string> | undefined;
17590
18695
  term: Scalars["String"];
17591
18696
  }>>;
17592
18697
  export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact<{
@@ -17595,8 +18700,10 @@ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact
17595
18700
  filter?: Maybe<IssueFilter> | undefined;
17596
18701
  first?: Maybe<number> | undefined;
17597
18702
  includeArchived?: Maybe<boolean> | undefined;
18703
+ includeComments?: Maybe<boolean> | undefined;
17598
18704
  last?: Maybe<number> | undefined;
17599
18705
  orderBy?: Maybe<PaginationOrderBy> | undefined;
18706
+ teamId?: Maybe<string> | undefined;
17600
18707
  term: Scalars["String"];
17601
18708
  }>>;
17602
18709
  export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIssues_ArchivePayloadQuery, Exact<{
@@ -17605,8 +18712,10 @@ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIss
17605
18712
  filter?: Maybe<IssueFilter> | undefined;
17606
18713
  first?: Maybe<number> | undefined;
17607
18714
  includeArchived?: Maybe<boolean> | undefined;
18715
+ includeComments?: Maybe<boolean> | undefined;
17608
18716
  last?: Maybe<number> | undefined;
17609
18717
  orderBy?: Maybe<PaginationOrderBy> | undefined;
18718
+ teamId?: Maybe<string> | undefined;
17610
18719
  term: Scalars["String"];
17611
18720
  }>>;
17612
18721
  export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, Exact<{
@@ -17614,8 +18723,10 @@ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, E
17614
18723
  before?: Maybe<string> | undefined;
17615
18724
  first?: Maybe<number> | undefined;
17616
18725
  includeArchived?: Maybe<boolean> | undefined;
18726
+ includeComments?: Maybe<boolean> | undefined;
17617
18727
  last?: Maybe<number> | undefined;
17618
18728
  orderBy?: Maybe<PaginationOrderBy> | undefined;
18729
+ teamId?: Maybe<string> | undefined;
17619
18730
  term: Scalars["String"];
17620
18731
  }>>;
17621
18732
  export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchProjects_ArchivePayloadQuery, Exact<{
@@ -17623,8 +18734,10 @@ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchP
17623
18734
  before?: Maybe<string> | undefined;
17624
18735
  first?: Maybe<number> | undefined;
17625
18736
  includeArchived?: Maybe<boolean> | undefined;
18737
+ includeComments?: Maybe<boolean> | undefined;
17626
18738
  last?: Maybe<number> | undefined;
17627
18739
  orderBy?: Maybe<PaginationOrderBy> | undefined;
18740
+ teamId?: Maybe<string> | undefined;
17628
18741
  term: Scalars["String"];
17629
18742
  }>>;
17630
18743
  export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery, Exact<{