@linear/sdk 6.0.0 → 7.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.
@@ -98,8 +98,8 @@ export declare type Application = {
98
98
  /** Application name. */
99
99
  name: Scalars["String"];
100
100
  };
101
+ /** A generic payload return from entity archive or deletion mutations. */
101
102
  export declare type ArchivePayload = {
102
- __typename?: "ArchivePayload";
103
103
  /** The identifier of the last sync operation. */
104
104
  lastSyncId: Scalars["Float"];
105
105
  /** Whether the operation was successful. */
@@ -151,6 +151,16 @@ export declare type Attachment = Node & {
151
151
  /** Location of the attachment which is also used as an identifier. */
152
152
  url: Scalars["String"];
153
153
  };
154
+ /** A generic payload return from entity archive mutations. */
155
+ export declare type AttachmentArchivePayload = ArchivePayload & {
156
+ __typename?: "AttachmentArchivePayload";
157
+ /** The archived/unarchived entity. Null if entity was deleted. */
158
+ entity?: Maybe<Attachment>;
159
+ /** The identifier of the last sync operation. */
160
+ lastSyncId: Scalars["Float"];
161
+ /** Whether the operation was successful. */
162
+ success: Scalars["Boolean"];
163
+ };
154
164
  /** Attachment collection filtering options. */
155
165
  export declare type AttachmentCollectionFilter = {
156
166
  /** Compound filters, all of which need to be matched by the attachment. */
@@ -248,6 +258,11 @@ export declare type AttachmentPayload = {
248
258
  /** Whether the operation was successful. */
249
259
  success: Scalars["Boolean"];
250
260
  };
261
+ export declare type AttachmentSourcesPayload = {
262
+ __typename?: "AttachmentSourcesPayload";
263
+ /** A unique list of all source types used in this workspace */
264
+ sources: Scalars["JSONObject"];
265
+ };
251
266
  export declare type AttachmentUpdateInput = {
252
267
  /** An icon url to display with the attachment. Should be of jpg or png format. Maximum of 1MB in size. Dimensions should be 20x20px for optimal display quality. */
253
268
  iconUrl?: Maybe<Scalars["String"]>;
@@ -575,6 +590,8 @@ export declare type ContactPayload = {
575
590
  };
576
591
  /** [INTERNAL] Input for sending a message to the Linear Sales team */
577
592
  export declare type ContactSalesCreateInput = {
593
+ /** Size of the company. */
594
+ companySize?: Maybe<Scalars["String"]>;
578
595
  /** Work email of the person requesting information. */
579
596
  email: Scalars["String"];
580
597
  /** The message the user sent. */
@@ -589,6 +606,13 @@ export declare type ContentComparator = {
589
606
  /** [Internal] Not-contains constraint. */
590
607
  notContains?: Maybe<Scalars["String"]>;
591
608
  };
609
+ export declare enum ContextViewType {
610
+ ActiveCycle = "activeCycle",
611
+ ActiveIssues = "activeIssues",
612
+ Backlog = "backlog",
613
+ Triage = "triage",
614
+ UpcomingCycle = "upcomingCycle"
615
+ }
592
616
  export declare type CreateCsvExportReportPayload = {
593
617
  __typename?: "CreateCsvExportReportPayload";
594
618
  /** Whether the operation was successful. */
@@ -639,8 +663,8 @@ export declare type CustomView = Node & {
639
663
  name: Scalars["String"];
640
664
  /** The organization of the custom view. */
641
665
  organization: Organization;
642
- /** [Deprecated] The user who owns the custom view. */
643
- owner: User;
666
+ /** [ALPHA] The user who owns the custom view. */
667
+ owner?: Maybe<User>;
644
668
  /** [ALPHA] The filter applied to projects in the custom view. */
645
669
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
646
670
  /** Whether the custom view is shared with everyone in the organization. */
@@ -653,6 +677,8 @@ export declare type CustomView = Node & {
653
677
  * been updated after creation.
654
678
  */
655
679
  updatedAt: Scalars["DateTime"];
680
+ /** [ALPHA] The user who last updated the custom view. */
681
+ updatedBy: User;
656
682
  };
657
683
  export declare type CustomViewConnection = {
658
684
  __typename?: "CustomViewConnection";
@@ -675,6 +701,8 @@ export declare type CustomViewCreateInput = {
675
701
  id?: Maybe<Scalars["String"]>;
676
702
  /** The name of the custom view. */
677
703
  name: Scalars["String"];
704
+ /** The owner of the custom view. */
705
+ ownerId?: Maybe<Scalars["String"]>;
678
706
  /** [ALPHA] The project filter applied to issues in the custom view. */
679
707
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
680
708
  /** Whether the custom view is shared with everyone in the organization. */
@@ -688,6 +716,42 @@ export declare type CustomViewEdge = {
688
716
  cursor: Scalars["String"];
689
717
  node: CustomView;
690
718
  };
719
+ /** A custom view notification subscription. */
720
+ export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
721
+ __typename?: "CustomViewNotificationSubscription";
722
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
723
+ archivedAt?: Maybe<Scalars["DateTime"]>;
724
+ /** The type of view to which the notification subscription context is associated with. */
725
+ contextViewType?: Maybe<ContextViewType>;
726
+ /** The time at which the entity was created. */
727
+ createdAt: Scalars["DateTime"];
728
+ /** The custom view subscribed to. */
729
+ customView: CustomView;
730
+ /** The contextual cycle view associated with the notification subscription. */
731
+ cycle?: Maybe<Cycle>;
732
+ /** The unique identifier of the entity. */
733
+ id: Scalars["ID"];
734
+ /** The contextual label view associated with the notification subscription. */
735
+ label?: Maybe<IssueLabel>;
736
+ /** The type of subscription. */
737
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
738
+ /** The contextual project view associated with the notification subscription. */
739
+ project?: Maybe<Project>;
740
+ /** The user that subscribed to receive notifications. */
741
+ subscriber: User;
742
+ /** The team associated with the notification subscription. */
743
+ team?: Maybe<Team>;
744
+ /**
745
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
746
+ * 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
747
+ * been updated after creation.
748
+ */
749
+ updatedAt: Scalars["DateTime"];
750
+ /** The user view associated with the notification subscription. */
751
+ user?: Maybe<User>;
752
+ /** The type of user view to which the notification subscription context is associated with. */
753
+ userContextViewType?: Maybe<UserContextViewType>;
754
+ };
691
755
  export declare type CustomViewPayload = {
692
756
  __typename?: "CustomViewPayload";
693
757
  /** The custom view that was created or updated. */
@@ -719,6 +783,8 @@ export declare type CustomViewUpdateInput = {
719
783
  icon?: Maybe<Scalars["String"]>;
720
784
  /** The name of the custom view. */
721
785
  name?: Maybe<Scalars["String"]>;
786
+ /** The owner of the custom view. */
787
+ ownerId?: Maybe<Scalars["String"]>;
722
788
  /** [ALPHA] The project filter applied to issues in the custom view. */
723
789
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
724
790
  /** Whether the custom view is shared with everyone in the organization. */
@@ -794,6 +860,16 @@ export declare type CycleUncompletedIssuesUponCloseArgs = {
794
860
  last?: Maybe<Scalars["Int"]>;
795
861
  orderBy?: Maybe<PaginationOrderBy>;
796
862
  };
863
+ /** A generic payload return from entity archive mutations. */
864
+ export declare type CycleArchivePayload = ArchivePayload & {
865
+ __typename?: "CycleArchivePayload";
866
+ /** The archived/unarchived entity. Null if entity was deleted. */
867
+ entity?: Maybe<Cycle>;
868
+ /** The identifier of the last sync operation. */
869
+ lastSyncId: Scalars["Float"];
870
+ /** Whether the operation was successful. */
871
+ success: Scalars["Boolean"];
872
+ };
797
873
  export declare type CycleConnection = {
798
874
  __typename?: "CycleConnection";
799
875
  edges: Array<CycleEdge>;
@@ -859,6 +935,42 @@ export declare type CycleFilter = {
859
935
  /** Comparator for the updated at date. */
860
936
  updatedAt?: Maybe<DateComparator>;
861
937
  };
938
+ /** A cycle notification subscription. */
939
+ export declare type CycleNotificationSubscription = Entity & Node & NotificationSubscription & {
940
+ __typename?: "CycleNotificationSubscription";
941
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
942
+ archivedAt?: Maybe<Scalars["DateTime"]>;
943
+ /** The type of view to which the notification subscription context is associated with. */
944
+ contextViewType?: Maybe<ContextViewType>;
945
+ /** The time at which the entity was created. */
946
+ createdAt: Scalars["DateTime"];
947
+ /** The contextual custom view associated with the notification subscription. */
948
+ customView?: Maybe<CustomView>;
949
+ /** The cycle subscribed to. */
950
+ cycle: Cycle;
951
+ /** The unique identifier of the entity. */
952
+ id: Scalars["ID"];
953
+ /** The contextual label view associated with the notification subscription. */
954
+ label?: Maybe<IssueLabel>;
955
+ /** The type of subscription. */
956
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
957
+ /** The contextual project view associated with the notification subscription. */
958
+ project?: Maybe<Project>;
959
+ /** The user that subscribed to receive notifications. */
960
+ subscriber: User;
961
+ /** The team associated with the notification subscription. */
962
+ team?: Maybe<Team>;
963
+ /**
964
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
965
+ * 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
966
+ * been updated after creation.
967
+ */
968
+ updatedAt: Scalars["DateTime"];
969
+ /** The user view associated with the notification subscription. */
970
+ user?: Maybe<User>;
971
+ /** The type of user view to which the notification subscription context is associated with. */
972
+ userContextViewType?: Maybe<UserContextViewType>;
973
+ };
862
974
  export declare type CyclePayload = {
863
975
  __typename?: "CyclePayload";
864
976
  /** The Cycle that was created or updated. */
@@ -913,6 +1025,16 @@ export declare type DeleteOrganizationInput = {
913
1025
  /** The deletion code to confirm operation. */
914
1026
  deletionCode: Scalars["String"];
915
1027
  };
1028
+ /** A generic payload return from entity deletion mutations. */
1029
+ export declare type DeletePayload = ArchivePayload & {
1030
+ __typename?: "DeletePayload";
1031
+ /** The identifier of the deleted entity. */
1032
+ entityId: Scalars["String"];
1033
+ /** The identifier of the last sync operation. */
1034
+ lastSyncId: Scalars["Float"];
1035
+ /** Whether the operation was successful. */
1036
+ success: Scalars["Boolean"];
1037
+ };
916
1038
  /** A document for a project. */
917
1039
  export declare type Document = Node & {
918
1040
  __typename?: "Document";
@@ -1116,6 +1238,41 @@ export declare type EmailUserAccountAuthChallengeResponse = {
1116
1238
  /** Whether the operation was successful. */
1117
1239
  success: Scalars["Boolean"];
1118
1240
  };
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
+ };
1119
1276
  /** A custom emoji. */
1120
1277
  export declare type Emoji = Node & {
1121
1278
  __typename?: "Emoji";
@@ -1211,23 +1368,6 @@ export declare type EstimateComparator = {
1211
1368
  /** Compound filters, all of which need to be matched by the estimate. */
1212
1369
  or?: Maybe<Array<NullableNumberComparator>>;
1213
1370
  };
1214
- export declare type EventCreateInput = {
1215
- /** The category of the event to create. */
1216
- category: Scalars["String"];
1217
- /** Additional data of the event, encoded as JSON. */
1218
- data?: Maybe<Scalars["JSON"]>;
1219
- /** The subject of the event. */
1220
- subject: Scalars["String"];
1221
- /** The target identifier of the event. */
1222
- targetId?: Maybe<Scalars["String"]>;
1223
- /** The value of the event. */
1224
- value?: Maybe<Scalars["Float"]>;
1225
- };
1226
- export declare type EventPayload = {
1227
- __typename?: "EventPayload";
1228
- /** Whether the operation was successful. */
1229
- success: Scalars["Boolean"];
1230
- };
1231
1371
  /** [ALPHA] An external authenticated (e.g., through Slack) user which doesn't have a Linear account, but can create and update entities in Linear from the external system that authenticated them. */
1232
1372
  export declare type ExternalUser = Node & {
1233
1373
  __typename?: "ExternalUser";
@@ -1291,6 +1431,8 @@ export declare type Favorite = Node & {
1291
1431
  issue?: Maybe<Issue>;
1292
1432
  /** The favorited label. */
1293
1433
  label?: Maybe<IssueLabel>;
1434
+ /** The owner of the favorite. */
1435
+ owner: User;
1294
1436
  /** The parent folder of the favorite. */
1295
1437
  parent?: Maybe<Favorite>;
1296
1438
  /** The team of the favorited predefined view. */
@@ -1313,8 +1455,8 @@ export declare type Favorite = Node & {
1313
1455
  * been updated after creation.
1314
1456
  */
1315
1457
  updatedAt: Scalars["DateTime"];
1316
- /** The owner of the favorite. */
1317
- user: User;
1458
+ /** The favorited user. */
1459
+ user?: Maybe<User>;
1318
1460
  };
1319
1461
  /** User favorites presented in the sidebar. */
1320
1462
  export declare type FavoriteChildrenArgs = {
@@ -1360,6 +1502,8 @@ export declare type FavoriteCreateInput = {
1360
1502
  roadmapId?: Maybe<Scalars["String"]>;
1361
1503
  /** The position of the item in the favorites list. */
1362
1504
  sortOrder?: Maybe<Scalars["Float"]>;
1505
+ /** The identifier of the user to favorite. */
1506
+ userId?: Maybe<Scalars["String"]>;
1363
1507
  };
1364
1508
  export declare type FavoriteEdge = {
1365
1509
  __typename?: "FavoriteEdge";
@@ -1403,6 +1547,42 @@ export declare type FigmaEmbedPayload = {
1403
1547
  /** Whether the operation was successful. */
1404
1548
  success: Scalars["Boolean"];
1405
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
+ };
1406
1586
  export declare type FrontAttachmentPayload = {
1407
1587
  __typename?: "FrontAttachmentPayload";
1408
1588
  /** The identifier of the last sync operation. */
@@ -1602,6 +1782,7 @@ export declare type IntegrationSettings = {
1602
1782
  intercom?: Maybe<IntercomSettings>;
1603
1783
  jira?: Maybe<JiraSettings>;
1604
1784
  notion?: Maybe<NotionSettings>;
1785
+ pagerDuty?: Maybe<PagerDutySettings>;
1605
1786
  sentry?: Maybe<SentrySettings>;
1606
1787
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
1607
1788
  slackPost?: Maybe<SlackPostSettings>;
@@ -1615,6 +1796,7 @@ export declare type IntegrationSettingsInput = {
1615
1796
  intercom?: Maybe<IntercomSettingsInput>;
1616
1797
  jira?: Maybe<JiraSettingsInput>;
1617
1798
  notion?: Maybe<NotionSettingsInput>;
1799
+ pagerDuty?: Maybe<PagerDutyInput>;
1618
1800
  sentry?: Maybe<SentrySettingsInput>;
1619
1801
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
1620
1802
  slackPost?: Maybe<SlackPostSettingsInput>;
@@ -1996,6 +2178,16 @@ export declare type IssueSubscribersArgs = {
1996
2178
  last?: Maybe<Scalars["Int"]>;
1997
2179
  orderBy?: Maybe<PaginationOrderBy>;
1998
2180
  };
2181
+ /** A generic payload return from entity archive mutations. */
2182
+ export declare type IssueArchivePayload = ArchivePayload & {
2183
+ __typename?: "IssueArchivePayload";
2184
+ /** The archived/unarchived entity. Null if entity was deleted. */
2185
+ entity?: Maybe<Issue>;
2186
+ /** The identifier of the last sync operation. */
2187
+ lastSyncId: Scalars["Float"];
2188
+ /** Whether the operation was successful. */
2189
+ success: Scalars["Boolean"];
2190
+ };
1999
2191
  export declare type IssueBatchPayload = {
2000
2192
  __typename?: "IssueBatchPayload";
2001
2193
  /** The issues that were updated. */
@@ -2143,8 +2335,10 @@ export declare type IssueCreateInput = {
2143
2335
  subscriberIds?: Maybe<Array<Scalars["String"]>>;
2144
2336
  /** The identifier or key of the team associated with the issue. */
2145
2337
  teamId: Scalars["String"];
2338
+ /** The identifier of a template the issue should be created from. If other values are provided in the input, they will override template values. */
2339
+ templateId?: Maybe<Scalars["String"]>;
2146
2340
  /** The title of the issue. */
2147
- title: Scalars["String"];
2341
+ title?: Maybe<Scalars["String"]>;
2148
2342
  };
2149
2343
  /** [Internal] A draft issue. */
2150
2344
  export declare type IssueDraft = Node & {
@@ -2501,6 +2695,8 @@ export declare type IssueLabel = Node & {
2501
2695
  description?: Maybe<Scalars["String"]>;
2502
2696
  /** The unique identifier of the entity. */
2503
2697
  id: Scalars["ID"];
2698
+ /** Whether this label is considered to be a group. */
2699
+ isGroup: Scalars["Boolean"];
2504
2700
  /** Issues associated with the label. */
2505
2701
  issues: IssueConnection;
2506
2702
  /** The label's name. */
@@ -2561,7 +2757,7 @@ export declare type IssueLabelCollectionFilter = {
2561
2757
  /** Filters that needs to be matched by some issue labels. */
2562
2758
  some?: Maybe<IssueLabelFilter>;
2563
2759
  /** Filters that the issue labels team must satisfy. */
2564
- team?: Maybe<TeamFilter>;
2760
+ team?: Maybe<NullableTeamFilter>;
2565
2761
  /** Comparator for the updated at date. */
2566
2762
  updatedAt?: Maybe<DateComparator>;
2567
2763
  };
@@ -2608,7 +2804,7 @@ export declare type IssueLabelFilter = {
2608
2804
  /** Filters that the issue label's parent label must satisfy. */
2609
2805
  parent?: Maybe<IssueLabelFilter>;
2610
2806
  /** Filters that the issue labels team must satisfy. */
2611
- team?: Maybe<TeamFilter>;
2807
+ team?: Maybe<NullableTeamFilter>;
2612
2808
  /** Comparator for the updated at date. */
2613
2809
  updatedAt?: Maybe<DateComparator>;
2614
2810
  };
@@ -3077,6 +3273,42 @@ export declare type JoinOrganizationInput = {
3077
3273
  /** The identifier of the organization. */
3078
3274
  organizationId: Scalars["String"];
3079
3275
  };
3276
+ /** A label notification subscription. */
3277
+ export declare type LabelNotificationSubscription = Entity & Node & NotificationSubscription & {
3278
+ __typename?: "LabelNotificationSubscription";
3279
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
3280
+ archivedAt?: Maybe<Scalars["DateTime"]>;
3281
+ /** The type of view to which the notification subscription context is associated with. */
3282
+ contextViewType?: Maybe<ContextViewType>;
3283
+ /** The time at which the entity was created. */
3284
+ createdAt: Scalars["DateTime"];
3285
+ /** The contextual custom view associated with the notification subscription. */
3286
+ customView?: Maybe<CustomView>;
3287
+ /** The contextual cycle view associated with the notification subscription. */
3288
+ cycle?: Maybe<Cycle>;
3289
+ /** The unique identifier of the entity. */
3290
+ id: Scalars["ID"];
3291
+ /** The label subscribed to. */
3292
+ label: IssueLabel;
3293
+ /** The type of subscription. */
3294
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
3295
+ /** The contextual project view associated with the notification subscription. */
3296
+ project?: Maybe<Project>;
3297
+ /** The user that subscribed to receive notifications. */
3298
+ subscriber: User;
3299
+ /** The team associated with the notification subscription. */
3300
+ team?: Maybe<Team>;
3301
+ /**
3302
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
3303
+ * 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
3304
+ * been updated after creation.
3305
+ */
3306
+ updatedAt: Scalars["DateTime"];
3307
+ /** The user view associated with the notification subscription. */
3308
+ user?: Maybe<User>;
3309
+ /** The type of user view to which the notification subscription context is associated with. */
3310
+ userContextViewType?: Maybe<UserContextViewType>;
3311
+ };
3080
3312
  export declare type LogoutResponse = {
3081
3313
  __typename?: "LogoutResponse";
3082
3314
  /** Whether the operation was successful. */
@@ -3089,16 +3321,16 @@ export declare type Mutation = {
3089
3321
  /** Creates a new API key. */
3090
3322
  apiKeyCreate: ApiKeyPayload;
3091
3323
  /** Deletes an API key. */
3092
- apiKeyDelete: ArchivePayload;
3324
+ apiKeyDelete: DeletePayload;
3093
3325
  /**
3094
3326
  * [DEPRECATED] Archives an issue attachment.
3095
3327
  * @deprecated This mutation is deprecated, please use `attachmentDelete` instead
3096
3328
  */
3097
- attachmentArchive: ArchivePayload;
3329
+ attachmentArchive: AttachmentArchivePayload;
3098
3330
  /** Creates a new attachment, or updates existing if the same `url` and `issueId` is used. */
3099
3331
  attachmentCreate: AttachmentPayload;
3100
3332
  /** Deletes an issue attachment. */
3101
- attachmentDelete: ArchivePayload;
3333
+ attachmentDelete: DeletePayload;
3102
3334
  /** Link an existing Discord message to an issue. */
3103
3335
  attachmentLinkDiscord: AttachmentPayload;
3104
3336
  /** Link an existing Front conversation to an issue. */
@@ -3107,16 +3339,20 @@ export declare type Mutation = {
3107
3339
  attachmentLinkIntercom: AttachmentPayload;
3108
3340
  /** Link an existing Jira issue to an issue. */
3109
3341
  attachmentLinkJiraIssue: AttachmentPayload;
3342
+ /** Link an existing Slack message to an issue. */
3343
+ attachmentLinkSlack: AttachmentPayload;
3110
3344
  /** Link any url to an issue. */
3111
3345
  attachmentLinkURL: AttachmentPayload;
3112
3346
  /** Link an existing Zendesk ticket to an issue. */
3113
3347
  attachmentLinkZendesk: AttachmentPayload;
3348
+ /** Unsyncs an existing synced Slack attachment. */
3349
+ attachmentUnsyncSlack: AttachmentPayload;
3114
3350
  /** Updates an existing issue attachment. */
3115
3351
  attachmentUpdate: AttachmentPayload;
3116
3352
  /** Creates a new comment. */
3117
3353
  commentCreate: CommentPayload;
3118
3354
  /** Deletes a comment. */
3119
- commentDelete: ArchivePayload;
3355
+ commentDelete: DeletePayload;
3120
3356
  /** Updates a comment. */
3121
3357
  commentUpdate: CommentPayload;
3122
3358
  /** Saves user message. */
@@ -3130,11 +3366,11 @@ export declare type Mutation = {
3130
3366
  /** Creates a new custom view. */
3131
3367
  customViewCreate: CustomViewPayload;
3132
3368
  /** Deletes a custom view. */
3133
- customViewDelete: ArchivePayload;
3369
+ customViewDelete: DeletePayload;
3134
3370
  /** Updates a custom view. */
3135
3371
  customViewUpdate: CustomViewPayload;
3136
3372
  /** Archives a cycle. */
3137
- cycleArchive: ArchivePayload;
3373
+ cycleArchive: CycleArchivePayload;
3138
3374
  /** Creates a new cycle. */
3139
3375
  cycleCreate: CyclePayload;
3140
3376
  /** Updates a cycle. */
@@ -3142,7 +3378,7 @@ export declare type Mutation = {
3142
3378
  /** Creates a new document. */
3143
3379
  documentCreate: DocumentPayload;
3144
3380
  /** Deletes a document. */
3145
- documentDelete: ArchivePayload;
3381
+ documentDelete: DeletePayload;
3146
3382
  /** Updates a document. */
3147
3383
  documentUpdate: DocumentPayload;
3148
3384
  /** [INTERNAL] Subscribes the email to the newsletter. */
@@ -3156,13 +3392,11 @@ export declare type Mutation = {
3156
3392
  /** Creates a custom emoji. */
3157
3393
  emojiCreate: EmojiPayload;
3158
3394
  /** Deletes an emoji. */
3159
- emojiDelete: ArchivePayload;
3160
- /** [Deprecated] Creates a new event. */
3161
- eventCreate: EventPayload;
3395
+ emojiDelete: DeletePayload;
3162
3396
  /** Creates a new favorite (project, cycle etc). */
3163
3397
  favoriteCreate: FavoritePayload;
3164
3398
  /** Deletes a favorite reference. */
3165
- favoriteDelete: ArchivePayload;
3399
+ favoriteDelete: DeletePayload;
3166
3400
  /** Updates a favorite. */
3167
3401
  favoriteUpdate: FavoritePayload;
3168
3402
  /** XHR request payload to upload an images, video and other attachments directly to Linear's cloud storage. */
@@ -3174,7 +3408,7 @@ export declare type Mutation = {
3174
3408
  /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
3175
3409
  importFileUpload: UploadPayload;
3176
3410
  /** Deletes an integration. */
3177
- integrationDelete: ArchivePayload;
3411
+ integrationDelete: DeletePayload;
3178
3412
  /** Integrates the organization with Discord. */
3179
3413
  integrationDiscord: IntegrationPayload;
3180
3414
  /** Integrates the organization with Figma. */
@@ -3203,6 +3437,8 @@ export declare type Mutation = {
3203
3437
  * @deprecated Not available.
3204
3438
  */
3205
3439
  integrationLoom: IntegrationPayload;
3440
+ /** [INTERNAL] Integrates the organization with PagerDuty. */
3441
+ integrationPageDutyConnect: IntegrationPayload;
3206
3442
  /** Requests a currently unavailable integration. */
3207
3443
  integrationRequest: IntegrationRequestPayload;
3208
3444
  /** Integrates the organization with Sentry. */
@@ -3211,10 +3447,10 @@ export declare type Mutation = {
3211
3447
  integrationSettingsUpdate: IntegrationPayload;
3212
3448
  /** Integrates the organization with Slack. */
3213
3449
  integrationSlack: IntegrationPayload;
3450
+ /** Integrates the organization with the Slack Asks app */
3451
+ integrationSlackAsks: IntegrationPayload;
3214
3452
  /** Imports custom emojis from your Slack workspace. */
3215
3453
  integrationSlackImportEmojis: IntegrationPayload;
3216
- /** Integrates the organization with Slack for issue intake. */
3217
- integrationSlackIntake: IntegrationPayload;
3218
3454
  /** Slack integration for organization level project update notifications. */
3219
3455
  integrationSlackOrgProjectUpdatesPost: IntegrationPayload;
3220
3456
  /** Integrates your personal notifications with Slack. */
@@ -3226,7 +3462,7 @@ export declare type Mutation = {
3226
3462
  /** Creates a new integrationTemplate join. */
3227
3463
  integrationTemplateCreate: IntegrationTemplatePayload;
3228
3464
  /** Deletes a integrationTemplate. */
3229
- integrationTemplateDelete: ArchivePayload;
3465
+ integrationTemplateDelete: DeletePayload;
3230
3466
  /** Updates the organization's Slack integration. */
3231
3467
  integrationUpdateSlack: IntegrationPayload;
3232
3468
  /** Integrates the organization with Zendesk. */
@@ -3236,13 +3472,13 @@ export declare type Mutation = {
3236
3472
  /** Updates settings related to integrations for a project or a team. */
3237
3473
  integrationsSettingsUpdate: IntegrationsSettingsPayload;
3238
3474
  /** Archives an issue. */
3239
- issueArchive: ArchivePayload;
3475
+ issueArchive: IssueArchivePayload;
3240
3476
  /** Updates multiple issues at once. */
3241
3477
  issueBatchUpdate: IssueBatchPayload;
3242
3478
  /** Creates a new issue. */
3243
3479
  issueCreate: IssuePayload;
3244
3480
  /** Deletes (trashes) an issue. */
3245
- issueDelete: ArchivePayload;
3481
+ issueDelete: IssueArchivePayload;
3246
3482
  /** [INTERNAL] Updates an issue description from the Front app to handle Front attachments correctly. */
3247
3483
  issueDescriptionUpdateFromFront: IssuePayload;
3248
3484
  /** Kicks off an Asana import job. */
@@ -3261,27 +3497,22 @@ export declare type Mutation = {
3261
3497
  issueImportProcess: IssueImportPayload;
3262
3498
  /** Updates the mapping for the issue import. */
3263
3499
  issueImportUpdate: IssueImportPayload;
3264
- /**
3265
- * Deletes an issue label.
3266
- * @deprecated Labels are deleted instead of archived now!
3267
- */
3268
- issueLabelArchive: ArchivePayload;
3269
3500
  /** Creates a new label. */
3270
3501
  issueLabelCreate: IssueLabelPayload;
3271
3502
  /** Deletes an issue label. */
3272
- issueLabelDelete: ArchivePayload;
3503
+ issueLabelDelete: DeletePayload;
3273
3504
  /** Updates an label. */
3274
3505
  issueLabelUpdate: IssueLabelPayload;
3275
3506
  /** Creates a new issue relation. */
3276
3507
  issueRelationCreate: IssueRelationPayload;
3277
3508
  /** Deletes an issue relation. */
3278
- issueRelationDelete: ArchivePayload;
3509
+ issueRelationDelete: DeletePayload;
3279
3510
  /** Updates an issue relation. */
3280
3511
  issueRelationUpdate: IssueRelationPayload;
3281
3512
  /** Adds an issue reminder. Will cause a notification to be sent when the issue reminder time is reached. */
3282
3513
  issueReminder: IssuePayload;
3283
3514
  /** Unarchives an issue. */
3284
- issueUnarchive: ArchivePayload;
3515
+ issueUnarchive: IssueArchivePayload;
3285
3516
  /** Updates an issue. */
3286
3517
  issueUpdate: IssuePayload;
3287
3518
  /** [INTERNAL] Connects the organization with a Jira Personal Access Token. */
@@ -3293,15 +3524,25 @@ export declare type Mutation = {
3293
3524
  /** Logout of all clients. */
3294
3525
  logout: LogoutResponse;
3295
3526
  /** Archives a notification. */
3296
- notificationArchive: ArchivePayload;
3297
- /** Creates a new notification subscription for a team or a project. */
3527
+ notificationArchive: NotificationArchivePayload;
3528
+ /** Archives all of the user's past notifications for the associated entity. */
3529
+ notificationArchiveAll: NotificationBatchActionPayload;
3530
+ /** Marks all past notifications for the associated entity as read. */
3531
+ notificationMarkReadAll: NotificationBatchActionPayload;
3532
+ /** Marks all past notifications for the associated entity as unread. */
3533
+ notificationMarkUnreadAll: NotificationBatchActionPayload;
3534
+ /** Snoozes a notification and all past notifications for the associated entity. */
3535
+ notificationSnoozeAll: NotificationBatchActionPayload;
3536
+ /** Creates a new notification subscription for a cycle, custom view, label, project or team. */
3298
3537
  notificationSubscriptionCreate: NotificationSubscriptionPayload;
3299
3538
  /** Deletes a notification subscription reference. */
3300
- notificationSubscriptionDelete: ArchivePayload;
3539
+ notificationSubscriptionDelete: DeletePayload;
3301
3540
  /** Updates a notification subscription. */
3302
3541
  notificationSubscriptionUpdate: NotificationSubscriptionPayload;
3303
3542
  /** Unarchives a notification. */
3304
- notificationUnarchive: ArchivePayload;
3543
+ notificationUnarchive: NotificationArchivePayload;
3544
+ /** Unsnoozes a notification and all past notifications for the associated entity. */
3545
+ notificationUnsnoozeAll: NotificationBatchActionPayload;
3305
3546
  /** Updates a notification. */
3306
3547
  notificationUpdate: NotificationPayload;
3307
3548
  /** Cancels the deletion of an organization. Administrator privileges required. */
@@ -3315,13 +3556,13 @@ export declare type Mutation = {
3315
3556
  /** [INTERNAL] Adds a domain to be allowed for an organization. */
3316
3557
  organizationDomainCreate: OrganizationDomainPayload;
3317
3558
  /** Deletes a domain. */
3318
- organizationDomainDelete: ArchivePayload;
3559
+ organizationDomainDelete: DeletePayload;
3319
3560
  /** [INTERNAL] Verifies a domain to be added to an organization. */
3320
3561
  organizationDomainVerify: OrganizationDomainPayload;
3321
3562
  /** Creates a new organization invite. */
3322
3563
  organizationInviteCreate: OrganizationInvitePayload;
3323
3564
  /** Deletes an organization invite. */
3324
- organizationInviteDelete: ArchivePayload;
3565
+ organizationInviteDelete: DeletePayload;
3325
3566
  /** Updates an organization invite. */
3326
3567
  organizationInviteUpdate: OrganizationInvitePayload;
3327
3568
  /** Starts a plus trial for the organization. Administrator privileges required. */
@@ -3332,31 +3573,31 @@ export declare type Mutation = {
3332
3573
  * Archives a project.
3333
3574
  * @deprecated Deprecated in favor of projectDelete.
3334
3575
  */
3335
- projectArchive: ArchivePayload;
3576
+ projectArchive: ProjectArchivePayload;
3336
3577
  /** Creates a new project. */
3337
3578
  projectCreate: ProjectPayload;
3338
3579
  /** Deletes a project. All issues will be disassociated from the deleted project. */
3339
- projectDelete: ArchivePayload;
3580
+ projectDelete: DeletePayload;
3340
3581
  /** Creates a new project link. */
3341
3582
  projectLinkCreate: ProjectLinkPayload;
3342
3583
  /** Deletes a project link. */
3343
- projectLinkDelete: ArchivePayload;
3584
+ projectLinkDelete: DeletePayload;
3344
3585
  /** Updates a project link. */
3345
3586
  projectLinkUpdate: ProjectLinkPayload;
3346
3587
  /** Creates a new project milestone. */
3347
3588
  projectMilestoneCreate: ProjectMilestonePayload;
3348
3589
  /** Deletes a project milestone. */
3349
- projectMilestoneDelete: ArchivePayload;
3590
+ projectMilestoneDelete: DeletePayload;
3350
3591
  /** Updates a project milestone. */
3351
3592
  projectMilestoneUpdate: ProjectMilestonePayload;
3352
3593
  /** Unarchives a project. */
3353
- projectUnarchive: ArchivePayload;
3594
+ projectUnarchive: ProjectArchivePayload;
3354
3595
  /** Updates a project. */
3355
3596
  projectUpdate: ProjectPayload;
3356
3597
  /** Creates a new project update. */
3357
3598
  projectUpdateCreate: ProjectUpdatePayload;
3358
3599
  /** Deletes a project update. */
3359
- projectUpdateDelete: ArchivePayload;
3600
+ projectUpdateDelete: DeletePayload;
3360
3601
  /** Creates a new interaction on a project update. */
3361
3602
  projectUpdateInteractionCreate: ProjectUpdateInteractionPayload;
3362
3603
  /** Mark a project update as read. */
@@ -3370,25 +3611,25 @@ export declare type Mutation = {
3370
3611
  /** Creates a new reaction. */
3371
3612
  reactionCreate: ReactionPayload;
3372
3613
  /** Deletes a reaction. */
3373
- reactionDelete: ArchivePayload;
3614
+ reactionDelete: DeletePayload;
3374
3615
  /** Manually update Google Sheets data. */
3375
3616
  refreshGoogleSheetsData: IntegrationPayload;
3376
3617
  /** Re-send an organization invite. */
3377
- resendOrganizationInvite: ArchivePayload;
3618
+ resendOrganizationInvite: DeletePayload;
3378
3619
  /** Archives a roadmap. */
3379
- roadmapArchive: ArchivePayload;
3620
+ roadmapArchive: RoadmapArchivePayload;
3380
3621
  /** Creates a new roadmap. */
3381
3622
  roadmapCreate: RoadmapPayload;
3382
3623
  /** Deletes a roadmap. */
3383
- roadmapDelete: ArchivePayload;
3624
+ roadmapDelete: DeletePayload;
3384
3625
  /** Creates a new roadmapToProject join. */
3385
3626
  roadmapToProjectCreate: RoadmapToProjectPayload;
3386
3627
  /** Deletes a roadmapToProject. */
3387
- roadmapToProjectDelete: ArchivePayload;
3628
+ roadmapToProjectDelete: DeletePayload;
3388
3629
  /** Updates a roadmapToProject. */
3389
3630
  roadmapToProjectUpdate: RoadmapToProjectPayload;
3390
3631
  /** Unarchives a roadmap. */
3391
- roadmapUnarchive: ArchivePayload;
3632
+ roadmapUnarchive: RoadmapArchivePayload;
3392
3633
  /** Updates a roadmap. */
3393
3634
  roadmapUpdate: RoadmapPayload;
3394
3635
  /** Authenticates a user account via email and authentication token for SAML. */
@@ -3398,13 +3639,13 @@ export declare type Mutation = {
3398
3639
  /** Deletes team's cycles data */
3399
3640
  teamCyclesDelete: TeamPayload;
3400
3641
  /** Deletes a team. */
3401
- teamDelete: ArchivePayload;
3642
+ teamDelete: DeletePayload;
3402
3643
  /** Deletes a previously used team key. */
3403
- teamKeyDelete: ArchivePayload;
3644
+ teamKeyDelete: DeletePayload;
3404
3645
  /** Creates a new team membership. */
3405
3646
  teamMembershipCreate: TeamMembershipPayload;
3406
3647
  /** Deletes a team membership. */
3407
- teamMembershipDelete: ArchivePayload;
3648
+ teamMembershipDelete: DeletePayload;
3408
3649
  /** Updates a team membership. */
3409
3650
  teamMembershipUpdate: TeamMembershipPayload;
3410
3651
  /** Updates a team. */
@@ -3412,7 +3653,7 @@ export declare type Mutation = {
3412
3653
  /** Creates a new template. */
3413
3654
  templateCreate: TemplatePayload;
3414
3655
  /** Deletes a template. */
3415
- templateDelete: ArchivePayload;
3656
+ templateDelete: DeletePayload;
3416
3657
  /** Updates an existing template. */
3417
3658
  templateUpdate: TemplatePayload;
3418
3659
  /** Makes user a regular user. Can only be called by an admin. */
@@ -3450,17 +3691,17 @@ export declare type Mutation = {
3450
3691
  /** Creates a new ViewPreferences object. */
3451
3692
  viewPreferencesCreate: ViewPreferencesPayload;
3452
3693
  /** Deletes a ViewPreferences. */
3453
- viewPreferencesDelete: ArchivePayload;
3694
+ viewPreferencesDelete: DeletePayload;
3454
3695
  /** Updates an existing ViewPreferences object. */
3455
3696
  viewPreferencesUpdate: ViewPreferencesPayload;
3456
3697
  /** Creates a new webhook. */
3457
3698
  webhookCreate: WebhookPayload;
3458
3699
  /** Deletes a Webhook. */
3459
- webhookDelete: ArchivePayload;
3700
+ webhookDelete: DeletePayload;
3460
3701
  /** Updates an existing Webhook. */
3461
3702
  webhookUpdate: WebhookPayload;
3462
3703
  /** Archives a state. Only states with issues that have all been archived can be archived. */
3463
- workflowStateArchive: ArchivePayload;
3704
+ workflowStateArchive: WorkflowStateArchivePayload;
3464
3705
  /** Creates a new state, adding it to the workflow of a team. */
3465
3706
  workflowStateCreate: WorkflowStatePayload;
3466
3707
  /** Updates a state. */
@@ -3502,6 +3743,15 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
3502
3743
  issueId: Scalars["String"];
3503
3744
  jiraIssueId: Scalars["String"];
3504
3745
  };
3746
+ export declare type MutationAttachmentLinkSlackArgs = {
3747
+ channel: Scalars["String"];
3748
+ id?: Maybe<Scalars["String"]>;
3749
+ issueId: Scalars["String"];
3750
+ latest: Scalars["String"];
3751
+ title?: Maybe<Scalars["String"]>;
3752
+ ts?: Maybe<Scalars["String"]>;
3753
+ url: Scalars["String"];
3754
+ };
3505
3755
  export declare type MutationAttachmentLinkUrlArgs = {
3506
3756
  id?: Maybe<Scalars["String"]>;
3507
3757
  issueId: Scalars["String"];
@@ -3512,6 +3762,9 @@ export declare type MutationAttachmentLinkZendeskArgs = {
3512
3762
  issueId: Scalars["String"];
3513
3763
  ticketId: Scalars["String"];
3514
3764
  };
3765
+ export declare type MutationAttachmentUnsyncSlackArgs = {
3766
+ id: Scalars["String"];
3767
+ };
3515
3768
  export declare type MutationAttachmentUpdateArgs = {
3516
3769
  id: Scalars["String"];
3517
3770
  input: AttachmentUpdateInput;
@@ -3587,9 +3840,6 @@ export declare type MutationEmojiCreateArgs = {
3587
3840
  export declare type MutationEmojiDeleteArgs = {
3588
3841
  id: Scalars["String"];
3589
3842
  };
3590
- export declare type MutationEventCreateArgs = {
3591
- input: EventCreateInput;
3592
- };
3593
3843
  export declare type MutationFavoriteCreateArgs = {
3594
3844
  input: FavoriteCreateInput;
3595
3845
  };
@@ -3652,6 +3902,9 @@ export declare type MutationIntegrationIntercomArgs = {
3652
3902
  export declare type MutationIntegrationIntercomSettingsUpdateArgs = {
3653
3903
  input: IntercomSettingsInput;
3654
3904
  };
3905
+ export declare type MutationIntegrationPageDutyConnectArgs = {
3906
+ apiToken: Scalars["String"];
3907
+ };
3655
3908
  export declare type MutationIntegrationRequestArgs = {
3656
3909
  input: IntegrationRequestInput;
3657
3910
  };
@@ -3669,11 +3922,11 @@ export declare type MutationIntegrationSlackArgs = {
3669
3922
  redirectUri: Scalars["String"];
3670
3923
  shouldUseV2Auth?: Maybe<Scalars["Boolean"]>;
3671
3924
  };
3672
- export declare type MutationIntegrationSlackImportEmojisArgs = {
3925
+ export declare type MutationIntegrationSlackAsksArgs = {
3673
3926
  code: Scalars["String"];
3674
3927
  redirectUri: Scalars["String"];
3675
3928
  };
3676
- export declare type MutationIntegrationSlackIntakeArgs = {
3929
+ export declare type MutationIntegrationSlackImportEmojisArgs = {
3677
3930
  code: Scalars["String"];
3678
3931
  redirectUri: Scalars["String"];
3679
3932
  };
@@ -3802,9 +4055,6 @@ export declare type MutationIssueImportUpdateArgs = {
3802
4055
  id: Scalars["String"];
3803
4056
  input: IssueImportUpdateInput;
3804
4057
  };
3805
- export declare type MutationIssueLabelArchiveArgs = {
3806
- id: Scalars["String"];
3807
- };
3808
4058
  export declare type MutationIssueLabelCreateArgs = {
3809
4059
  input: IssueLabelCreateInput;
3810
4060
  replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
@@ -3849,6 +4099,20 @@ export declare type MutationLeaveOrganizationArgs = {
3849
4099
  export declare type MutationNotificationArchiveArgs = {
3850
4100
  id: Scalars["String"];
3851
4101
  };
4102
+ export declare type MutationNotificationArchiveAllArgs = {
4103
+ input: NotificationEntityInput;
4104
+ };
4105
+ export declare type MutationNotificationMarkReadAllArgs = {
4106
+ input: NotificationEntityInput;
4107
+ readAt: Scalars["DateTime"];
4108
+ };
4109
+ export declare type MutationNotificationMarkUnreadAllArgs = {
4110
+ input: NotificationEntityInput;
4111
+ };
4112
+ export declare type MutationNotificationSnoozeAllArgs = {
4113
+ input: NotificationEntityInput;
4114
+ snoozedUntilAt: Scalars["DateTime"];
4115
+ };
3852
4116
  export declare type MutationNotificationSubscriptionCreateArgs = {
3853
4117
  input: NotificationSubscriptionCreateInput;
3854
4118
  };
@@ -3862,6 +4126,10 @@ export declare type MutationNotificationSubscriptionUpdateArgs = {
3862
4126
  export declare type MutationNotificationUnarchiveArgs = {
3863
4127
  id: Scalars["String"];
3864
4128
  };
4129
+ export declare type MutationNotificationUnsnoozeAllArgs = {
4130
+ input: NotificationEntityInput;
4131
+ unsnoozedAt: Scalars["DateTime"];
4132
+ };
3865
4133
  export declare type MutationNotificationUpdateArgs = {
3866
4134
  id: Scalars["String"];
3867
4135
  input: NotificationUpdateInput;
@@ -4151,6 +4419,25 @@ export declare type Notification = {
4151
4419
  /** The user that received the notification. */
4152
4420
  user: User;
4153
4421
  };
4422
+ /** A generic payload return from entity archive mutations. */
4423
+ export declare type NotificationArchivePayload = ArchivePayload & {
4424
+ __typename?: "NotificationArchivePayload";
4425
+ /** The archived/unarchived entity. Null if entity was deleted. */
4426
+ entity?: Maybe<Notification>;
4427
+ /** The identifier of the last sync operation. */
4428
+ lastSyncId: Scalars["Float"];
4429
+ /** Whether the operation was successful. */
4430
+ success: Scalars["Boolean"];
4431
+ };
4432
+ export declare type NotificationBatchActionPayload = {
4433
+ __typename?: "NotificationBatchActionPayload";
4434
+ /** The identifier of the last sync operation. */
4435
+ lastSyncId: Scalars["Float"];
4436
+ /** The notifications that were updated. */
4437
+ notifications: Array<Notification>;
4438
+ /** Whether the operation was successful. */
4439
+ success: Scalars["Boolean"];
4440
+ };
4154
4441
  export declare type NotificationConnection = {
4155
4442
  __typename?: "NotificationConnection";
4156
4443
  edges: Array<NotificationEdge>;
@@ -4163,6 +4450,17 @@ export declare type NotificationEdge = {
4163
4450
  cursor: Scalars["String"];
4164
4451
  node: Notification;
4165
4452
  };
4453
+ /** Describes the type and id of the entity to target for notifications. */
4454
+ export declare type NotificationEntityInput = {
4455
+ /** The id of the issue related to the notification. */
4456
+ issueId?: Maybe<Scalars["String"]>;
4457
+ /** The id of the OAuth client approval related to the notification. */
4458
+ oauthClientApprovalId?: Maybe<Scalars["String"]>;
4459
+ /** The id of the project related to the notification. */
4460
+ projectId?: Maybe<Scalars["String"]>;
4461
+ /** The id of the project update related to the notification. */
4462
+ projectUpdateId?: Maybe<Scalars["String"]>;
4463
+ };
4166
4464
  export declare type NotificationPayload = {
4167
4465
  __typename?: "NotificationPayload";
4168
4466
  /** The identifier of the last sync operation. */
@@ -4176,24 +4474,34 @@ export declare type NotificationPayload = {
4176
4474
  export declare type NotificationSubscription = {
4177
4475
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4178
4476
  archivedAt?: Maybe<Scalars["DateTime"]>;
4477
+ /** The type of view to which the notification subscription context is associated with. */
4478
+ contextViewType?: Maybe<ContextViewType>;
4179
4479
  /** The time at which the entity was created. */
4180
4480
  createdAt: Scalars["DateTime"];
4481
+ /** The contextual custom view associated with the notification subscription. */
4482
+ customView?: Maybe<CustomView>;
4483
+ /** The contextual cycle view associated with the notification subscription. */
4484
+ cycle?: Maybe<Cycle>;
4181
4485
  /** The unique identifier of the entity. */
4182
4486
  id: Scalars["ID"];
4183
- /** Subscribed project. */
4487
+ /** The contextual label view associated with the notification subscription. */
4488
+ label?: Maybe<IssueLabel>;
4489
+ /** The contextual project view associated with the notification subscription. */
4184
4490
  project?: Maybe<Project>;
4185
- /** Subscribed team. */
4491
+ /** The user that subscribed to receive notifications. */
4492
+ subscriber: User;
4493
+ /** The team associated with the notification subscription. */
4186
4494
  team?: Maybe<Team>;
4187
- /** The type of the subscription. */
4188
- type: Scalars["String"];
4189
4495
  /**
4190
4496
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
4191
4497
  * 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
4192
4498
  * been updated after creation.
4193
4499
  */
4194
4500
  updatedAt: Scalars["DateTime"];
4195
- /** The user associated with notification subscriptions. */
4196
- user: User;
4501
+ /** The user view associated with the notification subscription. */
4502
+ user?: Maybe<User>;
4503
+ /** The type of user view to which the notification subscription context is associated with. */
4504
+ userContextViewType?: Maybe<UserContextViewType>;
4197
4505
  };
4198
4506
  export declare type NotificationSubscriptionConnection = {
4199
4507
  __typename?: "NotificationSubscriptionConnection";
@@ -4202,16 +4510,26 @@ export declare type NotificationSubscriptionConnection = {
4202
4510
  pageInfo: PageInfo;
4203
4511
  };
4204
4512
  export declare type NotificationSubscriptionCreateInput = {
4513
+ /** The type of view to which the notification subscription context is associated with. */
4514
+ contextViewType?: Maybe<ContextViewType>;
4515
+ /** The identifier of the custom view to subscribe to. */
4516
+ customViewId?: Maybe<Scalars["String"]>;
4517
+ /** The identifier of the cycle to subscribe to. */
4518
+ cycleId?: Maybe<Scalars["String"]>;
4205
4519
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
4206
4520
  id?: Maybe<Scalars["String"]>;
4521
+ /** The identifier of the label to subscribe to. */
4522
+ labelId?: Maybe<Scalars["String"]>;
4523
+ /** The types of notifications of the subscription. */
4524
+ notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4207
4525
  /** The identifier of the project to subscribe to. */
4208
4526
  projectId?: Maybe<Scalars["String"]>;
4209
- /** The type of the project subscription. */
4210
- projectNotificationSubscriptionType?: Maybe<ProjectNotificationSubscriptionType>;
4211
4527
  /** The identifier of the team to subscribe to. */
4212
4528
  teamId?: Maybe<Scalars["String"]>;
4213
- /** The types of notifications of the team subscription. */
4214
- teamNotificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4529
+ /** The type of user view to which the notification subscription context is associated with. */
4530
+ userContextViewType?: Maybe<UserContextViewType>;
4531
+ /** The identifier of the user to subscribe to. */
4532
+ userId?: Maybe<Scalars["String"]>;
4215
4533
  };
4216
4534
  export declare type NotificationSubscriptionEdge = {
4217
4535
  __typename?: "NotificationSubscriptionEdge";
@@ -4229,10 +4547,8 @@ export declare type NotificationSubscriptionPayload = {
4229
4547
  success: Scalars["Boolean"];
4230
4548
  };
4231
4549
  export declare type NotificationSubscriptionUpdateInput = {
4232
- /** The type of the project subscription. */
4233
- projectNotificationSubscriptionType?: Maybe<ProjectNotificationSubscriptionType>;
4234
- /** The types of notifications of the team subscription. */
4235
- teamNotificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4550
+ /** The types of notifications of the subscription. */
4551
+ notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4236
4552
  };
4237
4553
  export declare type NotificationUpdateInput = {
4238
4554
  /** The id of the project update related to the notification. */
@@ -4420,6 +4736,8 @@ export declare type NullableNumberComparator = {
4420
4736
  };
4421
4737
  /** Project filtering options. */
4422
4738
  export declare type NullableProjectFilter = {
4739
+ /** Filters that the project's team must satisfy. */
4740
+ accessibleTeams?: Maybe<TeamCollectionFilter>;
4423
4741
  /** Compound filters, all of which need to be matched by the project. */
4424
4742
  and?: Maybe<Array<NullableProjectFilter>>;
4425
4743
  /** Comparator for the project completion date. */
@@ -4519,6 +4837,29 @@ export declare type NullableStringComparator = {
4519
4837
  /** Starts with case insensitive constraint. Matches any values that start with the given string. */
4520
4838
  startsWithIgnoreCase?: Maybe<Scalars["String"]>;
4521
4839
  };
4840
+ /** Team filtering options. */
4841
+ export declare type NullableTeamFilter = {
4842
+ /** Compound filters, all of which need to be matched by the team. */
4843
+ and?: Maybe<Array<NullableTeamFilter>>;
4844
+ /** Comparator for the created at date. */
4845
+ createdAt?: Maybe<DateComparator>;
4846
+ /** Comparator for the team description. */
4847
+ description?: Maybe<NullableStringComparator>;
4848
+ /** Comparator for the identifier. */
4849
+ id?: Maybe<IdComparator>;
4850
+ /** Filters that the teams issues must satisfy. */
4851
+ issues?: Maybe<IssueCollectionFilter>;
4852
+ /** Comparator for the team key. */
4853
+ key?: Maybe<StringComparator>;
4854
+ /** Comparator for the team name. */
4855
+ name?: Maybe<StringComparator>;
4856
+ /** Filter based on the existence of the relation. */
4857
+ null?: Maybe<Scalars["Boolean"]>;
4858
+ /** Compound filters, one of which need to be matched by the team. */
4859
+ or?: Maybe<Array<NullableTeamFilter>>;
4860
+ /** Comparator for the updated at date. */
4861
+ updatedAt?: Maybe<DateComparator>;
4862
+ };
4522
4863
  export declare type NullableTimelessDateComparator = {
4523
4864
  /** Equals constraint. */
4524
4865
  eq?: Maybe<Scalars["TimelessDate"]>;
@@ -5053,6 +5394,30 @@ export declare type PageInfo = {
5053
5394
  /** Cursor representing the first result in the paginated results. */
5054
5395
  startCursor?: Maybe<Scalars["String"]>;
5055
5396
  };
5397
+ export declare type PagerDutyInput = {
5398
+ /** The mapping of PagerDuty schedule id to names. */
5399
+ scheduleMapping: Array<PagerDutyScheduleMappingInput>;
5400
+ };
5401
+ /** Tuple for mapping PagerDuty schedule id to names. */
5402
+ export declare type PagerDutyScheduleMapping = {
5403
+ __typename?: "PagerDutyScheduleMapping";
5404
+ /** The PagerDuty schedule id. */
5405
+ scheduleId: Scalars["String"];
5406
+ /** The PagerDuty schedule name. */
5407
+ scheduleName: Scalars["String"];
5408
+ };
5409
+ export declare type PagerDutyScheduleMappingInput = {
5410
+ /** The PagerDuty schedule id. */
5411
+ scheduleId: Scalars["String"];
5412
+ /** The PagerDuty schedule name. */
5413
+ scheduleName: Scalars["String"];
5414
+ };
5415
+ /** PagerDuty specific settings. */
5416
+ export declare type PagerDutySettings = {
5417
+ __typename?: "PagerDutySettings";
5418
+ /** The mapping of PagerDuty schedule id to names. */
5419
+ scheduleMapping: Array<PagerDutyScheduleMapping>;
5420
+ };
5056
5421
  /** By which field should the pagination order by */
5057
5422
  export declare enum PaginationOrderBy {
5058
5423
  CreatedAt = "createdAt",
@@ -5161,7 +5526,7 @@ export declare type Project = Node & {
5161
5526
  slugId: Scalars["String"];
5162
5527
  /** The sort order for the project within the organization. */
5163
5528
  sortOrder: Scalars["Float"];
5164
- /** [Internal] The estimated start date of the project. */
5529
+ /** The estimated start date of the project. */
5165
5530
  startDate?: Maybe<Scalars["TimelessDate"]>;
5166
5531
  /** The time at which the project was moved into started state. */
5167
5532
  startedAt?: Maybe<Scalars["DateTime"]>;
@@ -5247,8 +5612,20 @@ export declare type ProjectTeamsArgs = {
5247
5612
  last?: Maybe<Scalars["Int"]>;
5248
5613
  orderBy?: Maybe<PaginationOrderBy>;
5249
5614
  };
5615
+ /** A generic payload return from entity archive mutations. */
5616
+ export declare type ProjectArchivePayload = ArchivePayload & {
5617
+ __typename?: "ProjectArchivePayload";
5618
+ /** The archived/unarchived entity. Null if entity was deleted. */
5619
+ entity?: Maybe<Project>;
5620
+ /** The identifier of the last sync operation. */
5621
+ lastSyncId: Scalars["Float"];
5622
+ /** Whether the operation was successful. */
5623
+ success: Scalars["Boolean"];
5624
+ };
5250
5625
  /** Project filtering options. */
5251
5626
  export declare type ProjectCollectionFilter = {
5627
+ /** Filters that the project's team must satisfy. */
5628
+ accessibleTeams?: Maybe<TeamCollectionFilter>;
5252
5629
  /** Compound filters, all of which need to be matched by the project. */
5253
5630
  and?: Maybe<Array<ProjectCollectionFilter>>;
5254
5631
  /** Comparator for the project completion date. */
@@ -5340,6 +5717,8 @@ export declare type ProjectEdge = {
5340
5717
  };
5341
5718
  /** Project filtering options. */
5342
5719
  export declare type ProjectFilter = {
5720
+ /** Filters that the project's team must satisfy. */
5721
+ accessibleTeams?: Maybe<TeamCollectionFilter>;
5343
5722
  /** Compound filters, all of which need to be matched by the project. */
5344
5723
  and?: Maybe<Array<ProjectFilter>>;
5345
5724
  /** Comparator for the project completion date. */
@@ -5606,33 +5985,37 @@ export declare type ProjectNotificationSubscription = Entity & Node & Notificati
5606
5985
  __typename?: "ProjectNotificationSubscription";
5607
5986
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5608
5987
  archivedAt?: Maybe<Scalars["DateTime"]>;
5988
+ /** The type of view to which the notification subscription context is associated with. */
5989
+ contextViewType?: Maybe<ContextViewType>;
5609
5990
  /** The time at which the entity was created. */
5610
5991
  createdAt: Scalars["DateTime"];
5992
+ /** The contextual custom view associated with the notification subscription. */
5993
+ customView?: Maybe<CustomView>;
5994
+ /** The contextual cycle view associated with the notification subscription. */
5995
+ cycle?: Maybe<Cycle>;
5611
5996
  /** The unique identifier of the entity. */
5612
5997
  id: Scalars["ID"];
5998
+ /** The contextual label view associated with the notification subscription. */
5999
+ label?: Maybe<IssueLabel>;
6000
+ /** The type of subscription. */
6001
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
5613
6002
  /** The project subscribed to. */
5614
6003
  project: Project;
5615
- /** The type of the project subscription. */
5616
- projectNotificationSubscriptionType: ProjectNotificationSubscriptionType;
5617
- /** Subscribed team. */
6004
+ /** The user that subscribed to receive notifications. */
6005
+ subscriber: User;
6006
+ /** The team associated with the notification subscription. */
5618
6007
  team?: Maybe<Team>;
5619
- /** The type of the subscription. */
5620
- type: Scalars["String"];
5621
6008
  /**
5622
6009
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5623
6010
  * 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
5624
6011
  * been updated after creation.
5625
6012
  */
5626
6013
  updatedAt: Scalars["DateTime"];
5627
- /** The user associated with notification subscriptions. */
5628
- user: User;
6014
+ /** The user view associated with the notification subscription. */
6015
+ user?: Maybe<User>;
6016
+ /** The type of user view to which the notification subscription context is associated with. */
6017
+ userContextViewType?: Maybe<UserContextViewType>;
5629
6018
  };
5630
- /** The type of a project notification subscription. */
5631
- export declare enum ProjectNotificationSubscriptionType {
5632
- All = "all",
5633
- Custom = "custom",
5634
- ImportantOnly = "importantOnly"
5635
- }
5636
6019
  export declare type ProjectPayload = {
5637
6020
  __typename?: "ProjectPayload";
5638
6021
  /** The identifier of the last sync operation. */
@@ -5722,7 +6105,7 @@ export declare type ProjectSearchResult = Node & {
5722
6105
  slugId: Scalars["String"];
5723
6106
  /** The sort order for the project within the organization. */
5724
6107
  sortOrder: Scalars["Float"];
5725
- /** [Internal] The estimated start date of the project. */
6108
+ /** The estimated start date of the project. */
5726
6109
  startDate?: Maybe<Scalars["TimelessDate"]>;
5727
6110
  /** The time at which the project was moved into started state. */
5728
6111
  startedAt?: Maybe<Scalars["DateTime"]>;
@@ -6077,6 +6460,8 @@ export declare type Query = {
6077
6460
  * @deprecated Will be removed in near future, please use `attachmentsForURL` to get attachments and their issues instead.
6078
6461
  */
6079
6462
  attachmentIssue: Issue;
6463
+ /** [Internal] Get a list of all unique attachment sources in the workspace */
6464
+ attachmentSources: AttachmentSourcesPayload;
6080
6465
  /**
6081
6466
  * All issue attachments.
6082
6467
  *
@@ -6111,6 +6496,8 @@ export declare type Query = {
6111
6496
  document: Document;
6112
6497
  /** All documents for the project. */
6113
6498
  documents: DocumentConnection;
6499
+ /** Returns embed info for any url */
6500
+ embedInfo: EmbedPayload;
6114
6501
  /** A specific emoji. */
6115
6502
  emoji: Emoji;
6116
6503
  /** All custom emojis. */
@@ -6155,7 +6542,7 @@ export declare type Query = {
6155
6542
  issueRelation: IssueRelation;
6156
6543
  /** All issue relationships. */
6157
6544
  issueRelations: IssueRelationConnection;
6158
- /** [ALPHA] Search issues. This query is experimental and is subject to change without notice. */
6545
+ /** [DEPRECATED] Search issues. This endpoint is deprecated and will be removed in the future – use `searchIssues` instead. */
6159
6546
  issueSearch: IssueConnection;
6160
6547
  /** Find issue based on the VCS branch name. */
6161
6548
  issueVcsBranchSearch?: Maybe<Issue>;
@@ -6231,6 +6618,8 @@ export declare type Query = {
6231
6618
  template: Template;
6232
6619
  /** All templates from all users. */
6233
6620
  templates: Array<Template>;
6621
+ /** Returns all templates that are associated with the integration type. */
6622
+ templatesForIntegration: Array<Template>;
6234
6623
  /** One specific user. */
6235
6624
  user: User;
6236
6625
  /** Finds a user account by email. */
@@ -6299,6 +6688,9 @@ export declare type QueryAttachmentArgs = {
6299
6688
  export declare type QueryAttachmentIssueArgs = {
6300
6689
  id: Scalars["String"];
6301
6690
  };
6691
+ export declare type QueryAttachmentSourcesArgs = {
6692
+ teamId?: Maybe<Scalars["String"]>;
6693
+ };
6302
6694
  export declare type QueryAttachmentsArgs = {
6303
6695
  after?: Maybe<Scalars["String"]>;
6304
6696
  before?: Maybe<Scalars["String"]>;
@@ -6376,6 +6768,9 @@ export declare type QueryDocumentsArgs = {
6376
6768
  last?: Maybe<Scalars["Int"]>;
6377
6769
  orderBy?: Maybe<PaginationOrderBy>;
6378
6770
  };
6771
+ export declare type QueryEmbedInfoArgs = {
6772
+ url: Scalars["String"];
6773
+ };
6379
6774
  export declare type QueryEmojiArgs = {
6380
6775
  id: Scalars["String"];
6381
6776
  };
@@ -6675,6 +7070,9 @@ export declare type QueryTeamsArgs = {
6675
7070
  export declare type QueryTemplateArgs = {
6676
7071
  id: Scalars["String"];
6677
7072
  };
7073
+ export declare type QueryTemplatesForIntegrationArgs = {
7074
+ integrationType: Scalars["String"];
7075
+ };
6678
7076
  export declare type QueryUserArgs = {
6679
7077
  id: Scalars["String"];
6680
7078
  };
@@ -6771,6 +7169,8 @@ export declare type ReactionCreateInput = {
6771
7169
  emoji?: Maybe<Scalars["String"]>;
6772
7170
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one */
6773
7171
  id?: Maybe<Scalars["String"]>;
7172
+ /** The issue to associate the reaction with. */
7173
+ issueId?: Maybe<Scalars["String"]>;
6774
7174
  /** The project update to associate the reaction with. */
6775
7175
  projectUpdateId?: Maybe<Scalars["String"]>;
6776
7176
  };
@@ -6845,6 +7245,16 @@ export declare type RoadmapProjectsArgs = {
6845
7245
  last?: Maybe<Scalars["Int"]>;
6846
7246
  orderBy?: Maybe<PaginationOrderBy>;
6847
7247
  };
7248
+ /** A generic payload return from entity archive mutations. */
7249
+ export declare type RoadmapArchivePayload = ArchivePayload & {
7250
+ __typename?: "RoadmapArchivePayload";
7251
+ /** The archived/unarchived entity. Null if entity was deleted. */
7252
+ entity?: Maybe<Roadmap>;
7253
+ /** The identifier of the last sync operation. */
7254
+ lastSyncId: Scalars["Float"];
7255
+ /** Whether the operation was successful. */
7256
+ success: Scalars["Boolean"];
7257
+ };
6848
7258
  /** Roadmap collection filtering options. */
6849
7259
  export declare type RoadmapCollectionFilter = {
6850
7260
  /** Compound filters, all of which need to be matched by the roadmap. */
@@ -7241,6 +7651,8 @@ export declare type Team = Node & {
7241
7651
  integrationsSettings?: Maybe<IntegrationsSettings>;
7242
7652
  /** Unique hash for the team to be used in invite URLs. */
7243
7653
  inviteHash: Scalars["String"];
7654
+ /** Number of issues in the team. */
7655
+ issueCount: Scalars["Int"];
7244
7656
  /** Whether to allow zeros in issues estimates. */
7245
7657
  issueEstimationAllowZero: Scalars["Boolean"];
7246
7658
  /** Whether to add additional points to the estimate scale. */
@@ -7317,6 +7729,10 @@ export declare type TeamCyclesArgs = {
7317
7729
  orderBy?: Maybe<PaginationOrderBy>;
7318
7730
  };
7319
7731
  /** An organizational unit that contains issues. */
7732
+ export declare type TeamIssueCountArgs = {
7733
+ includeArchived?: Maybe<Scalars["Boolean"]>;
7734
+ };
7735
+ /** An organizational unit that contains issues. */
7320
7736
  export declare type TeamIssuesArgs = {
7321
7737
  after?: Maybe<Scalars["String"]>;
7322
7738
  before?: Maybe<Scalars["String"]>;
@@ -7394,6 +7810,25 @@ export declare type TeamWebhooksArgs = {
7394
7810
  last?: Maybe<Scalars["Int"]>;
7395
7811
  orderBy?: Maybe<PaginationOrderBy>;
7396
7812
  };
7813
+ /** Roadmap collection filtering options. */
7814
+ export declare type TeamCollectionFilter = {
7815
+ /** Compound filters, all of which need to be matched by the roadmap. */
7816
+ and?: Maybe<Array<TeamCollectionFilter>>;
7817
+ /** Comparator for the created at date. */
7818
+ createdAt?: Maybe<DateComparator>;
7819
+ /** Filters that needs to be matched by all roadmaps. */
7820
+ every?: Maybe<TeamFilter>;
7821
+ /** Comparator for the identifier. */
7822
+ id?: Maybe<IdComparator>;
7823
+ /** Comparator for the collection length. */
7824
+ length?: Maybe<NumberComparator>;
7825
+ /** Compound filters, one of which need to be matched by the roadmap. */
7826
+ or?: Maybe<Array<TeamCollectionFilter>>;
7827
+ /** Filters that needs to be matched by some roadmaps. */
7828
+ some?: Maybe<TeamFilter>;
7829
+ /** Comparator for the updated at date. */
7830
+ updatedAt?: Maybe<DateComparator>;
7831
+ };
7397
7832
  export declare type TeamConnection = {
7398
7833
  __typename?: "TeamConnection";
7399
7834
  edges: Array<TeamEdge>;
@@ -7561,24 +7996,36 @@ export declare type TeamNotificationSubscription = Entity & Node & NotificationS
7561
7996
  __typename?: "TeamNotificationSubscription";
7562
7997
  /** The time at which the entity was archived. Null if the entity has not been archived. */
7563
7998
  archivedAt?: Maybe<Scalars["DateTime"]>;
7999
+ /** The type of view to which the notification subscription context is associated with. */
8000
+ contextViewType?: Maybe<ContextViewType>;
7564
8001
  /** The time at which the entity was created. */
7565
8002
  createdAt: Scalars["DateTime"];
8003
+ /** The contextual custom view associated with the notification subscription. */
8004
+ customView?: Maybe<CustomView>;
8005
+ /** The contextual cycle view associated with the notification subscription. */
8006
+ cycle?: Maybe<Cycle>;
7566
8007
  /** The unique identifier of the entity. */
7567
8008
  id: Scalars["ID"];
7568
- /** Subscribed project. */
8009
+ /** The contextual label view associated with the notification subscription. */
8010
+ label?: Maybe<IssueLabel>;
8011
+ /** The type of subscription. */
8012
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
8013
+ /** The contextual project view associated with the notification subscription. */
7569
8014
  project?: Maybe<Project>;
8015
+ /** The user that subscribed to receive notifications. */
8016
+ subscriber: User;
7570
8017
  /** The team subscribed to. */
7571
8018
  team: Team;
7572
- /** The type of the subscription. */
7573
- type: Scalars["String"];
7574
8019
  /**
7575
8020
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
7576
8021
  * 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
7577
8022
  * been updated after creation.
7578
8023
  */
7579
8024
  updatedAt: Scalars["DateTime"];
7580
- /** The user associated with notification subscriptions. */
7581
- user: User;
8025
+ /** The user view associated with the notification subscription. */
8026
+ user?: Maybe<User>;
8027
+ /** The type of user view to which the notification subscription context is associated with. */
8028
+ userContextViewType?: Maybe<UserContextViewType>;
7582
8029
  };
7583
8030
  export declare type TeamPayload = {
7584
8031
  __typename?: "TeamPayload";
@@ -8084,6 +8531,9 @@ export declare type UserConnection = {
8084
8531
  nodes: Array<User>;
8085
8532
  pageInfo: PageInfo;
8086
8533
  };
8534
+ export declare enum UserContextViewType {
8535
+ Assigned = "assigned"
8536
+ }
8087
8537
  export declare type UserEdge = {
8088
8538
  __typename?: "UserEdge";
8089
8539
  /** Used in `before` and `after` args */
@@ -8133,6 +8583,7 @@ export declare enum UserFlagType {
8133
8583
  EmptyBacklogDismissed = "emptyBacklogDismissed",
8134
8584
  EmptyCustomViewsDismissed = "emptyCustomViewsDismissed",
8135
8585
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
8586
+ FigmaPluginBannerDismissed = "figmaPluginBannerDismissed",
8136
8587
  FigmaPromptDismissed = "figmaPromptDismissed",
8137
8588
  ImportBannerDismissed = "importBannerDismissed",
8138
8589
  InsightsHelpDismissed = "insightsHelpDismissed",
@@ -8144,13 +8595,15 @@ export declare enum UserFlagType {
8144
8595
  MigrateThemePreference = "migrateThemePreference",
8145
8596
  MilestoneOnboardingIsSeenAndDismissed = "milestoneOnboardingIsSeenAndDismissed",
8146
8597
  ProjectBacklogWelcomeDismissed = "projectBacklogWelcomeDismissed",
8598
+ ProjectBoardOnboardingIsSeenAndDismissed = "projectBoardOnboardingIsSeenAndDismissed",
8147
8599
  ProjectUpdatesWelcomeDismissed = "projectUpdatesWelcomeDismissed",
8148
8600
  ProjectWelcomeDismissed = "projectWelcomeDismissed",
8149
8601
  RewindBannerDismissed = "rewindBannerDismissed",
8150
8602
  SlackCommentReactionTipShown = "slackCommentReactionTipShown",
8151
8603
  TeamsPageIntroductionDismissed = "teamsPageIntroductionDismissed",
8152
8604
  ThreadedCommentsNudgeIsSeen = "threadedCommentsNudgeIsSeen",
8153
- TriageWelcomeDismissed = "triageWelcomeDismissed"
8605
+ TriageWelcomeDismissed = "triageWelcomeDismissed",
8606
+ UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
8154
8607
  }
8155
8608
  /** Operations that can be applied to UserFlagType */
8156
8609
  export declare enum UserFlagUpdateOperation {
@@ -8159,20 +8612,56 @@ export declare enum UserFlagUpdateOperation {
8159
8612
  Incr = "incr",
8160
8613
  Lock = "lock"
8161
8614
  }
8162
- export declare type UserPayload = {
8163
- __typename?: "UserPayload";
8164
- /** The identifier of the last sync operation. */
8165
- lastSyncId: Scalars["Float"];
8166
- /** Whether the operation was successful. */
8167
- success: Scalars["Boolean"];
8168
- /** The user that was created or updated. */
8169
- user?: Maybe<User>;
8170
- };
8171
- /** The different permission roles available to users on an organization */
8172
- export declare enum UserRoleType {
8173
- Admin = "admin",
8174
- Guest = "guest",
8175
- User = "user"
8615
+ /** A user notification subscription. */
8616
+ export declare type UserNotificationSubscription = Entity & Node & NotificationSubscription & {
8617
+ __typename?: "UserNotificationSubscription";
8618
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
8619
+ archivedAt?: Maybe<Scalars["DateTime"]>;
8620
+ /** The type of view to which the notification subscription context is associated with. */
8621
+ contextViewType?: Maybe<ContextViewType>;
8622
+ /** The time at which the entity was created. */
8623
+ createdAt: Scalars["DateTime"];
8624
+ /** The contextual custom view associated with the notification subscription. */
8625
+ customView?: Maybe<CustomView>;
8626
+ /** The contextual cycle view associated with the notification subscription. */
8627
+ cycle?: Maybe<Cycle>;
8628
+ /** The unique identifier of the entity. */
8629
+ id: Scalars["ID"];
8630
+ /** The contextual label view associated with the notification subscription. */
8631
+ label?: Maybe<IssueLabel>;
8632
+ /** The type of subscription. */
8633
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
8634
+ /** The contextual project view associated with the notification subscription. */
8635
+ project?: Maybe<Project>;
8636
+ /** The user that subscribed to receive notifications. */
8637
+ subscriber: User;
8638
+ /** The team associated with the notification subscription. */
8639
+ team?: Maybe<Team>;
8640
+ /**
8641
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8642
+ * 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
8643
+ * been updated after creation.
8644
+ */
8645
+ updatedAt: Scalars["DateTime"];
8646
+ /** The user subscribed to. */
8647
+ user: User;
8648
+ /** The type of user view to which the notification subscription context is associated with. */
8649
+ userContextViewType?: Maybe<UserContextViewType>;
8650
+ };
8651
+ export declare type UserPayload = {
8652
+ __typename?: "UserPayload";
8653
+ /** The identifier of the last sync operation. */
8654
+ lastSyncId: Scalars["Float"];
8655
+ /** Whether the operation was successful. */
8656
+ success: Scalars["Boolean"];
8657
+ /** The user that was created or updated. */
8658
+ user?: Maybe<User>;
8659
+ };
8660
+ /** The different permission roles available to users on an organization */
8661
+ export declare enum UserRoleType {
8662
+ Admin = "admin",
8663
+ Guest = "guest",
8664
+ User = "user"
8176
8665
  }
8177
8666
  /** The settings of a user as a JSON object. */
8178
8667
  export declare type UserSettings = Node & {
@@ -8234,6 +8723,8 @@ export declare type UserSettingsUpdateInput = {
8234
8723
  settings?: Maybe<Scalars["JSONObject"]>;
8235
8724
  /** The types of emails the user has unsubscribed from. */
8236
8725
  unsubscribedFrom?: Maybe<Array<Scalars["String"]>>;
8726
+ /** [Internal] The user's usage warning history. */
8727
+ usageWarningHistory?: Maybe<Scalars["JSONObject"]>;
8237
8728
  };
8238
8729
  /** View preferences. */
8239
8730
  export declare type ViewPreferences = Node & {
@@ -8311,6 +8802,7 @@ export declare enum ViewType {
8311
8802
  CompletedCycle = "completedCycle",
8312
8803
  CustomRoadmap = "customRoadmap",
8313
8804
  CustomView = "customView",
8805
+ CustomViews = "customViews",
8314
8806
  Cycle = "cycle",
8315
8807
  Inbox = "inbox",
8316
8808
  Label = "label",
@@ -8475,10 +8967,16 @@ export declare type WorkflowDefinition = Node & {
8475
8967
  archivedAt?: Maybe<Scalars["DateTime"]>;
8476
8968
  /** The conditions that need to be match for the workflow to be triggered. */
8477
8969
  conditions: Scalars["JSONObject"];
8970
+ /** The type of view to which this workflow's context is associated with. */
8971
+ contextViewType?: Maybe<ContextViewType>;
8478
8972
  /** The time at which the entity was created. */
8479
8973
  createdAt: Scalars["DateTime"];
8480
8974
  /** The user who created the workflow. */
8481
8975
  creator: User;
8976
+ /** The context custom view associated with the workflow. */
8977
+ customView?: Maybe<CustomView>;
8978
+ /** The contextual cycle view associated with the workflow. */
8979
+ cycle?: Maybe<Cycle>;
8482
8980
  /** The description of the workflow. */
8483
8981
  description?: Maybe<Scalars["String"]>;
8484
8982
  enabled: Scalars["Boolean"];
@@ -8486,8 +8984,12 @@ export declare type WorkflowDefinition = Node & {
8486
8984
  groupName?: Maybe<Scalars["String"]>;
8487
8985
  /** The unique identifier of the entity. */
8488
8986
  id: Scalars["ID"];
8987
+ /** The contextual label view associated with the workflow. */
8988
+ label?: Maybe<IssueLabel>;
8489
8989
  /** The name of the workflow. */
8490
8990
  name: Scalars["String"];
8991
+ /** The contextual project view associated with the workflow. */
8992
+ project?: Maybe<Project>;
8491
8993
  /** The sort order of the workflow definition within its siblings. */
8492
8994
  sortOrder: Scalars["String"];
8493
8995
  /** The team associated with the workflow. If not set, the workflow is associated with the entire organization. */
@@ -8504,6 +9006,10 @@ export declare type WorkflowDefinition = Node & {
8504
9006
  * been updated after creation.
8505
9007
  */
8506
9008
  updatedAt: Scalars["DateTime"];
9009
+ /** The contextual user view associated with the workflow. */
9010
+ user?: Maybe<User>;
9011
+ /** The type of user view to which this workflow's context is associated with. */
9012
+ userContextViewType?: Maybe<UserContextViewType>;
8507
9013
  };
8508
9014
  export declare type WorkflowDefinitionConnection = {
8509
9015
  __typename?: "WorkflowDefinitionConnection";
@@ -8557,6 +9063,16 @@ export declare type WorkflowStateIssuesArgs = {
8557
9063
  last?: Maybe<Scalars["Int"]>;
8558
9064
  orderBy?: Maybe<PaginationOrderBy>;
8559
9065
  };
9066
+ /** A generic payload return from entity archive mutations. */
9067
+ export declare type WorkflowStateArchivePayload = ArchivePayload & {
9068
+ __typename?: "WorkflowStateArchivePayload";
9069
+ /** The archived/unarchived entity. Null if entity was deleted. */
9070
+ entity?: Maybe<WorkflowState>;
9071
+ /** The identifier of the last sync operation. */
9072
+ lastSyncId: Scalars["Float"];
9073
+ /** Whether the operation was successful. */
9074
+ success: Scalars["Boolean"];
9075
+ };
8560
9076
  export declare type WorkflowStateConnection = {
8561
9077
  __typename?: "WorkflowStateConnection";
8562
9078
  edges: Array<WorkflowStateEdge>;
@@ -8642,7 +9158,8 @@ export declare enum WorkflowTriggerType {
8642
9158
  }
8643
9159
  export declare enum WorkflowType {
8644
9160
  Custom = "custom",
8645
- Sla = "sla"
9161
+ Sla = "sla",
9162
+ ViewSubscription = "viewSubscription"
8646
9163
  }
8647
9164
  /** [INTERNAL] Public information of the OAuth application, plus the userIds and scopes for those users. */
8648
9165
  export declare type WorkspaceAuthorizedApplication = {
@@ -8702,9 +9219,18 @@ export declare type ZendeskSettingsInput = {
8702
9219
  /** The URL of the connected Zendesk organization. */
8703
9220
  url: Scalars["String"];
8704
9221
  };
9222
+ declare type Entity_CustomViewNotificationSubscription_Fragment = {
9223
+ __typename: "CustomViewNotificationSubscription";
9224
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9225
+ declare type Entity_CycleNotificationSubscription_Fragment = {
9226
+ __typename: "CycleNotificationSubscription";
9227
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
8705
9228
  declare type Entity_IssueNotification_Fragment = {
8706
9229
  __typename: "IssueNotification";
8707
9230
  } & Pick<IssueNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9231
+ declare type Entity_LabelNotificationSubscription_Fragment = {
9232
+ __typename: "LabelNotificationSubscription";
9233
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
8708
9234
  declare type Entity_OauthClientApprovalNotification_Fragment = {
8709
9235
  __typename: "OauthClientApprovalNotification";
8710
9236
  } & Pick<OauthClientApprovalNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -8717,7 +9243,10 @@ declare type Entity_ProjectNotificationSubscription_Fragment = {
8717
9243
  declare type Entity_TeamNotificationSubscription_Fragment = {
8718
9244
  __typename: "TeamNotificationSubscription";
8719
9245
  } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
8720
- export declare type EntityFragment = Entity_IssueNotification_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment;
9246
+ declare type Entity_UserNotificationSubscription_Fragment = {
9247
+ __typename: "UserNotificationSubscription";
9248
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9249
+ 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;
8721
9250
  export declare type CommentFragment = {
8722
9251
  __typename: "Comment";
8723
9252
  } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
@@ -8745,6 +9274,31 @@ export declare type EmojiFragment = {
8745
9274
  __typename?: "User";
8746
9275
  } & Pick<User, "id">;
8747
9276
  };
9277
+ export declare type CustomViewNotificationSubscriptionFragment = {
9278
+ __typename: "CustomViewNotificationSubscription";
9279
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9280
+ cycle?: Maybe<{
9281
+ __typename?: "Cycle";
9282
+ } & Pick<Cycle, "id">>;
9283
+ label?: Maybe<{
9284
+ __typename?: "IssueLabel";
9285
+ } & Pick<IssueLabel, "id">>;
9286
+ project?: Maybe<{
9287
+ __typename?: "Project";
9288
+ } & Pick<Project, "id">>;
9289
+ customView: {
9290
+ __typename?: "CustomView";
9291
+ } & Pick<CustomView, "id">;
9292
+ team?: Maybe<{
9293
+ __typename?: "Team";
9294
+ } & Pick<Team, "id">>;
9295
+ subscriber: {
9296
+ __typename?: "User";
9297
+ } & Pick<User, "id">;
9298
+ user?: Maybe<{
9299
+ __typename?: "User";
9300
+ } & Pick<User, "id">>;
9301
+ };
8748
9302
  export declare type CustomViewFragment = {
8749
9303
  __typename: "CustomView";
8750
9304
  } & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
@@ -8754,9 +9308,31 @@ export declare type CustomViewFragment = {
8754
9308
  creator: {
8755
9309
  __typename?: "User";
8756
9310
  } & Pick<User, "id">;
8757
- owner: {
9311
+ };
9312
+ export declare type CycleNotificationSubscriptionFragment = {
9313
+ __typename: "CycleNotificationSubscription";
9314
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9315
+ customView?: Maybe<{
9316
+ __typename?: "CustomView";
9317
+ } & Pick<CustomView, "id">>;
9318
+ label?: Maybe<{
9319
+ __typename?: "IssueLabel";
9320
+ } & Pick<IssueLabel, "id">>;
9321
+ project?: Maybe<{
9322
+ __typename?: "Project";
9323
+ } & Pick<Project, "id">>;
9324
+ cycle: {
9325
+ __typename?: "Cycle";
9326
+ } & Pick<Cycle, "id">;
9327
+ team?: Maybe<{
9328
+ __typename?: "Team";
9329
+ } & Pick<Team, "id">>;
9330
+ subscriber: {
8758
9331
  __typename?: "User";
8759
9332
  } & Pick<User, "id">;
9333
+ user?: Maybe<{
9334
+ __typename?: "User";
9335
+ } & Pick<User, "id">>;
8760
9336
  };
8761
9337
  export declare type DocumentContentFragment = {
8762
9338
  __typename: "DocumentContent";
@@ -8778,6 +9354,112 @@ export declare type DocumentFragment = {
8778
9354
  __typename?: "User";
8779
9355
  } & Pick<User, "id">;
8780
9356
  };
9357
+ export declare type AttachmentArchivePayloadFragment = {
9358
+ __typename: "AttachmentArchivePayload";
9359
+ } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
9360
+ entity?: Maybe<{
9361
+ __typename?: "Attachment";
9362
+ } & Pick<Attachment, "id">>;
9363
+ };
9364
+ export declare type CycleArchivePayloadFragment = {
9365
+ __typename: "CycleArchivePayload";
9366
+ } & Pick<CycleArchivePayload, "lastSyncId" | "success"> & {
9367
+ entity?: Maybe<{
9368
+ __typename?: "Cycle";
9369
+ } & Pick<Cycle, "id">>;
9370
+ };
9371
+ export declare type IssueArchivePayloadFragment = {
9372
+ __typename: "IssueArchivePayload";
9373
+ } & Pick<IssueArchivePayload, "lastSyncId" | "success"> & {
9374
+ entity?: Maybe<{
9375
+ __typename?: "Issue";
9376
+ } & Pick<Issue, "id">>;
9377
+ };
9378
+ export declare type NotificationArchivePayloadFragment = {
9379
+ __typename: "NotificationArchivePayload";
9380
+ } & Pick<NotificationArchivePayload, "lastSyncId" | "success"> & {
9381
+ entity?: Maybe<({
9382
+ __typename?: "IssueNotification";
9383
+ } & Notification_IssueNotification_Fragment) | ({
9384
+ __typename?: "OauthClientApprovalNotification";
9385
+ } & Notification_OauthClientApprovalNotification_Fragment) | ({
9386
+ __typename?: "ProjectNotification";
9387
+ } & Notification_ProjectNotification_Fragment)>;
9388
+ };
9389
+ export declare type ProjectArchivePayloadFragment = {
9390
+ __typename: "ProjectArchivePayload";
9391
+ } & Pick<ProjectArchivePayload, "lastSyncId" | "success"> & {
9392
+ entity?: Maybe<{
9393
+ __typename?: "Project";
9394
+ } & Pick<Project, "id">>;
9395
+ };
9396
+ export declare type RoadmapArchivePayloadFragment = {
9397
+ __typename: "RoadmapArchivePayload";
9398
+ } & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & {
9399
+ entity?: Maybe<{
9400
+ __typename?: "Roadmap";
9401
+ } & Pick<Roadmap, "id">>;
9402
+ };
9403
+ export declare type WorkflowStateArchivePayloadFragment = {
9404
+ __typename: "WorkflowStateArchivePayload";
9405
+ } & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & {
9406
+ entity?: Maybe<{
9407
+ __typename?: "WorkflowState";
9408
+ } & Pick<WorkflowState, "id">>;
9409
+ };
9410
+ declare type ArchivePayload_AttachmentArchivePayload_Fragment = {
9411
+ __typename: "AttachmentArchivePayload";
9412
+ } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & AttachmentArchivePayloadFragment;
9413
+ declare type ArchivePayload_CycleArchivePayload_Fragment = {
9414
+ __typename: "CycleArchivePayload";
9415
+ } & Pick<CycleArchivePayload, "lastSyncId" | "success"> & CycleArchivePayloadFragment;
9416
+ declare type ArchivePayload_DeletePayload_Fragment = {
9417
+ __typename: "DeletePayload";
9418
+ } & Pick<DeletePayload, "lastSyncId" | "success"> & DeletePayloadFragment;
9419
+ declare type ArchivePayload_IssueArchivePayload_Fragment = {
9420
+ __typename: "IssueArchivePayload";
9421
+ } & Pick<IssueArchivePayload, "lastSyncId" | "success"> & IssueArchivePayloadFragment;
9422
+ declare type ArchivePayload_NotificationArchivePayload_Fragment = {
9423
+ __typename: "NotificationArchivePayload";
9424
+ } & Pick<NotificationArchivePayload, "lastSyncId" | "success"> & NotificationArchivePayloadFragment;
9425
+ declare type ArchivePayload_ProjectArchivePayload_Fragment = {
9426
+ __typename: "ProjectArchivePayload";
9427
+ } & Pick<ProjectArchivePayload, "lastSyncId" | "success"> & ProjectArchivePayloadFragment;
9428
+ declare type ArchivePayload_RoadmapArchivePayload_Fragment = {
9429
+ __typename: "RoadmapArchivePayload";
9430
+ } & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & RoadmapArchivePayloadFragment;
9431
+ declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
9432
+ __typename: "WorkflowStateArchivePayload";
9433
+ } & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & WorkflowStateArchivePayloadFragment;
9434
+ export declare type ArchivePayloadFragment = ArchivePayload_AttachmentArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
9435
+ export declare type DeletePayloadFragment = {
9436
+ __typename: "DeletePayload";
9437
+ } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
9438
+ export declare type LabelNotificationSubscriptionFragment = {
9439
+ __typename: "LabelNotificationSubscription";
9440
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9441
+ customView?: Maybe<{
9442
+ __typename?: "CustomView";
9443
+ } & Pick<CustomView, "id">>;
9444
+ cycle?: Maybe<{
9445
+ __typename?: "Cycle";
9446
+ } & Pick<Cycle, "id">>;
9447
+ project?: Maybe<{
9448
+ __typename?: "Project";
9449
+ } & Pick<Project, "id">>;
9450
+ label: {
9451
+ __typename?: "IssueLabel";
9452
+ } & Pick<IssueLabel, "id">;
9453
+ team?: Maybe<{
9454
+ __typename?: "Team";
9455
+ } & Pick<Team, "id">>;
9456
+ subscriber: {
9457
+ __typename?: "User";
9458
+ } & Pick<User, "id">;
9459
+ user?: Maybe<{
9460
+ __typename?: "User";
9461
+ } & Pick<User, "id">>;
9462
+ };
8781
9463
  export declare type ProjectMilestoneFragment = {
8782
9464
  __typename: "ProjectMilestone";
8783
9465
  } & Pick<ProjectMilestone, "description" | "updatedAt" | "name" | "sortOrder" | "targetDate" | "archivedAt" | "createdAt" | "id"> & {
@@ -8818,16 +9500,28 @@ declare type Notification_ProjectNotification_Fragment = {
8818
9500
  export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
8819
9501
  export declare type ProjectNotificationSubscriptionFragment = {
8820
9502
  __typename: "ProjectNotificationSubscription";
8821
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
8822
- team?: Maybe<{
8823
- __typename?: "Team";
8824
- } & Pick<Team, "id">>;
9503
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9504
+ customView?: Maybe<{
9505
+ __typename?: "CustomView";
9506
+ } & Pick<CustomView, "id">>;
9507
+ cycle?: Maybe<{
9508
+ __typename?: "Cycle";
9509
+ } & Pick<Cycle, "id">>;
9510
+ label?: Maybe<{
9511
+ __typename?: "IssueLabel";
9512
+ } & Pick<IssueLabel, "id">>;
8825
9513
  project: {
8826
9514
  __typename?: "Project";
8827
9515
  } & Pick<Project, "id">;
8828
- user: {
9516
+ team?: Maybe<{
9517
+ __typename?: "Team";
9518
+ } & Pick<Team, "id">>;
9519
+ subscriber: {
8829
9520
  __typename?: "User";
8830
9521
  } & Pick<User, "id">;
9522
+ user?: Maybe<{
9523
+ __typename?: "User";
9524
+ } & Pick<User, "id">>;
8831
9525
  };
8832
9526
  export declare type ProjectNotificationFragment = {
8833
9527
  __typename: "ProjectNotification";
@@ -8847,7 +9541,7 @@ export declare type ProjectNotificationFragment = {
8847
9541
  };
8848
9542
  export declare type ProjectFragment = {
8849
9543
  __typename: "Project";
8850
- } & Pick<Project, "url" | "targetDate" | "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"> & {
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"> & {
8851
9545
  integrationsSettings?: Maybe<{
8852
9546
  __typename?: "IntegrationsSettings";
8853
9547
  } & Pick<IntegrationsSettings, "id">>;
@@ -8946,6 +9640,16 @@ export declare type RoadmapFragment = {
8946
9640
  __typename?: "User";
8947
9641
  } & Pick<User, "id">;
8948
9642
  };
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
+ };
8949
9653
  export declare type CycleFragment = {
8950
9654
  __typename: "Cycle";
8951
9655
  } & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
@@ -8962,16 +9666,28 @@ export declare type WorkflowStateFragment = {
8962
9666
  };
8963
9667
  export declare type TeamNotificationSubscriptionFragment = {
8964
9668
  __typename: "TeamNotificationSubscription";
8965
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
9669
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9670
+ customView?: Maybe<{
9671
+ __typename?: "CustomView";
9672
+ } & Pick<CustomView, "id">>;
9673
+ cycle?: Maybe<{
9674
+ __typename?: "Cycle";
9675
+ } & Pick<Cycle, "id">>;
9676
+ label?: Maybe<{
9677
+ __typename?: "IssueLabel";
9678
+ } & Pick<IssueLabel, "id">>;
8966
9679
  project?: Maybe<{
8967
9680
  __typename?: "Project";
8968
9681
  } & Pick<Project, "id">>;
8969
9682
  team: {
8970
9683
  __typename?: "Team";
8971
9684
  } & Pick<Team, "id">;
8972
- user: {
9685
+ subscriber: {
8973
9686
  __typename?: "User";
8974
9687
  } & Pick<User, "id">;
9688
+ user?: Maybe<{
9689
+ __typename?: "User";
9690
+ } & Pick<User, "id">>;
8975
9691
  };
8976
9692
  export declare type TemplateFragment = {
8977
9693
  __typename: "Template";
@@ -9003,6 +9719,31 @@ export declare type UserAccountFragment = {
9003
9719
  __typename?: "User";
9004
9720
  } & UserFragment>;
9005
9721
  };
9722
+ export declare type UserNotificationSubscriptionFragment = {
9723
+ __typename: "UserNotificationSubscription";
9724
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9725
+ customView?: Maybe<{
9726
+ __typename?: "CustomView";
9727
+ } & Pick<CustomView, "id">>;
9728
+ cycle?: Maybe<{
9729
+ __typename?: "Cycle";
9730
+ } & Pick<Cycle, "id">>;
9731
+ label?: Maybe<{
9732
+ __typename?: "IssueLabel";
9733
+ } & Pick<IssueLabel, "id">>;
9734
+ project?: Maybe<{
9735
+ __typename?: "Project";
9736
+ } & Pick<Project, "id">>;
9737
+ team?: Maybe<{
9738
+ __typename?: "Team";
9739
+ } & Pick<Team, "id">>;
9740
+ user: {
9741
+ __typename?: "User";
9742
+ } & Pick<User, "id">;
9743
+ subscriber: {
9744
+ __typename?: "User";
9745
+ } & Pick<User, "id">;
9746
+ };
9006
9747
  export declare type UserFragment = {
9007
9748
  __typename: "User";
9008
9749
  } & 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">;
@@ -9130,7 +9871,7 @@ export declare type OrganizationFragment = {
9130
9871
  };
9131
9872
  export declare type TeamFragment = {
9132
9873
  __typename: "Team";
9133
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "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"> & {
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"> & {
9134
9875
  integrationsSettings?: Maybe<{
9135
9876
  __typename?: "IntegrationsSettings";
9136
9877
  } & Pick<IntegrationsSettings, "id">>;
@@ -9211,6 +9952,9 @@ export declare type ProjectUpdateInteractionFragment = {
9211
9952
  __typename?: "User";
9212
9953
  } & Pick<User, "id">;
9213
9954
  };
9955
+ export declare type EmbedFragment = {
9956
+ __typename: "Embed";
9957
+ } & Pick<Embed, "html" | "thumbnailUrl" | "url" | "description" | "height" | "thumbnailHeight" | "authorName" | "providerName" | "type" | "width" | "thumbnailWidth" | "title">;
9214
9958
  export declare type IntercomSettingsFragment = {
9215
9959
  __typename: "IntercomSettings";
9216
9960
  } & Pick<IntercomSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
@@ -9259,7 +10003,7 @@ export declare type IntegrationTemplateFragment = {
9259
10003
  };
9260
10004
  export declare type IssueLabelFragment = {
9261
10005
  __typename: "IssueLabel";
9262
- } & Pick<IssueLabel, "color" | "description" | "name" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10006
+ } & Pick<IssueLabel, "color" | "description" | "name" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "isGroup"> & {
9263
10007
  parent?: Maybe<{
9264
10008
  __typename?: "IssueLabel";
9265
10009
  } & Pick<IssueLabel, "id">>;
@@ -9276,33 +10020,157 @@ export declare type JiraProjectDataFragment = {
9276
10020
  export declare type GitHubSettingsFragment = {
9277
10021
  __typename: "GitHubSettings";
9278
10022
  } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl">;
10023
+ declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
10024
+ __typename: "CustomViewNotificationSubscription";
10025
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10026
+ customView: {
10027
+ __typename?: "CustomView";
10028
+ } & Pick<CustomView, "id">;
10029
+ cycle?: Maybe<{
10030
+ __typename?: "Cycle";
10031
+ } & Pick<Cycle, "id">>;
10032
+ label?: Maybe<{
10033
+ __typename?: "IssueLabel";
10034
+ } & Pick<IssueLabel, "id">>;
10035
+ project?: Maybe<{
10036
+ __typename?: "Project";
10037
+ } & Pick<Project, "id">>;
10038
+ team?: Maybe<{
10039
+ __typename?: "Team";
10040
+ } & Pick<Team, "id">>;
10041
+ subscriber: {
10042
+ __typename?: "User";
10043
+ } & Pick<User, "id">;
10044
+ user?: Maybe<{
10045
+ __typename?: "User";
10046
+ } & Pick<User, "id">>;
10047
+ };
10048
+ declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10049
+ __typename: "CycleNotificationSubscription";
10050
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10051
+ customView?: Maybe<{
10052
+ __typename?: "CustomView";
10053
+ } & Pick<CustomView, "id">>;
10054
+ cycle: {
10055
+ __typename?: "Cycle";
10056
+ } & Pick<Cycle, "id">;
10057
+ label?: Maybe<{
10058
+ __typename?: "IssueLabel";
10059
+ } & Pick<IssueLabel, "id">>;
10060
+ project?: Maybe<{
10061
+ __typename?: "Project";
10062
+ } & Pick<Project, "id">>;
10063
+ team?: Maybe<{
10064
+ __typename?: "Team";
10065
+ } & Pick<Team, "id">>;
10066
+ subscriber: {
10067
+ __typename?: "User";
10068
+ } & Pick<User, "id">;
10069
+ user?: Maybe<{
10070
+ __typename?: "User";
10071
+ } & Pick<User, "id">>;
10072
+ };
10073
+ declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10074
+ __typename: "LabelNotificationSubscription";
10075
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10076
+ customView?: Maybe<{
10077
+ __typename?: "CustomView";
10078
+ } & Pick<CustomView, "id">>;
10079
+ cycle?: Maybe<{
10080
+ __typename?: "Cycle";
10081
+ } & Pick<Cycle, "id">>;
10082
+ label: {
10083
+ __typename?: "IssueLabel";
10084
+ } & Pick<IssueLabel, "id">;
10085
+ project?: Maybe<{
10086
+ __typename?: "Project";
10087
+ } & Pick<Project, "id">>;
10088
+ team?: Maybe<{
10089
+ __typename?: "Team";
10090
+ } & Pick<Team, "id">>;
10091
+ subscriber: {
10092
+ __typename?: "User";
10093
+ } & Pick<User, "id">;
10094
+ user?: Maybe<{
10095
+ __typename?: "User";
10096
+ } & Pick<User, "id">>;
10097
+ };
9279
10098
  declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
9280
10099
  __typename: "ProjectNotificationSubscription";
9281
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
10100
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10101
+ customView?: Maybe<{
10102
+ __typename?: "CustomView";
10103
+ } & Pick<CustomView, "id">>;
10104
+ cycle?: Maybe<{
10105
+ __typename?: "Cycle";
10106
+ } & Pick<Cycle, "id">>;
10107
+ label?: Maybe<{
10108
+ __typename?: "IssueLabel";
10109
+ } & Pick<IssueLabel, "id">>;
9282
10110
  project: {
9283
10111
  __typename?: "Project";
9284
10112
  } & Pick<Project, "id">;
9285
10113
  team?: Maybe<{
9286
10114
  __typename?: "Team";
9287
10115
  } & Pick<Team, "id">>;
9288
- user: {
10116
+ subscriber: {
9289
10117
  __typename?: "User";
9290
10118
  } & Pick<User, "id">;
10119
+ user?: Maybe<{
10120
+ __typename?: "User";
10121
+ } & Pick<User, "id">>;
9291
10122
  };
9292
10123
  declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
9293
10124
  __typename: "TeamNotificationSubscription";
9294
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
10125
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10126
+ customView?: Maybe<{
10127
+ __typename?: "CustomView";
10128
+ } & Pick<CustomView, "id">>;
10129
+ cycle?: Maybe<{
10130
+ __typename?: "Cycle";
10131
+ } & Pick<Cycle, "id">>;
10132
+ label?: Maybe<{
10133
+ __typename?: "IssueLabel";
10134
+ } & Pick<IssueLabel, "id">>;
9295
10135
  project?: Maybe<{
9296
10136
  __typename?: "Project";
9297
10137
  } & Pick<Project, "id">>;
9298
10138
  team: {
9299
10139
  __typename?: "Team";
9300
10140
  } & Pick<Team, "id">;
10141
+ subscriber: {
10142
+ __typename?: "User";
10143
+ } & Pick<User, "id">;
10144
+ user?: Maybe<{
10145
+ __typename?: "User";
10146
+ } & Pick<User, "id">>;
10147
+ };
10148
+ declare type NotificationSubscription_UserNotificationSubscription_Fragment = {
10149
+ __typename: "UserNotificationSubscription";
10150
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10151
+ customView?: Maybe<{
10152
+ __typename?: "CustomView";
10153
+ } & Pick<CustomView, "id">>;
10154
+ cycle?: Maybe<{
10155
+ __typename?: "Cycle";
10156
+ } & Pick<Cycle, "id">>;
10157
+ label?: Maybe<{
10158
+ __typename?: "IssueLabel";
10159
+ } & Pick<IssueLabel, "id">>;
10160
+ project?: Maybe<{
10161
+ __typename?: "Project";
10162
+ } & Pick<Project, "id">>;
10163
+ team?: Maybe<{
10164
+ __typename?: "Team";
10165
+ } & Pick<Team, "id">>;
10166
+ subscriber: {
10167
+ __typename?: "User";
10168
+ } & Pick<User, "id">;
9301
10169
  user: {
9302
10170
  __typename?: "User";
9303
10171
  } & Pick<User, "id">;
9304
10172
  };
9305
- export declare type NotificationSubscriptionFragment = NotificationSubscription_ProjectNotificationSubscription_Fragment | NotificationSubscription_TeamNotificationSubscription_Fragment;
10173
+ export declare type NotificationSubscriptionFragment = NotificationSubscription_CustomViewNotificationSubscription_Fragment | NotificationSubscription_CycleNotificationSubscription_Fragment | NotificationSubscription_LabelNotificationSubscription_Fragment | NotificationSubscription_ProjectNotificationSubscription_Fragment | NotificationSubscription_TeamNotificationSubscription_Fragment | NotificationSubscription_UserNotificationSubscription_Fragment;
9306
10174
  export declare type NotionSettingsFragment = {
9307
10175
  __typename: "NotionSettings";
9308
10176
  } & Pick<NotionSettings, "workspaceId" | "workspaceName">;
@@ -9323,6 +10191,13 @@ export declare type UploadFileFragment = {
9323
10191
  __typename?: "UploadFileHeader";
9324
10192
  } & UploadFileHeaderFragment>;
9325
10193
  };
10194
+ export declare type PagerDutySettingsFragment = {
10195
+ __typename: "PagerDutySettings";
10196
+ } & {
10197
+ scheduleMapping: Array<{
10198
+ __typename?: "PagerDutyScheduleMapping";
10199
+ } & PagerDutyScheduleMappingFragment>;
10200
+ };
9326
10201
  export declare type UserAuthorizedApplicationFragment = {
9327
10202
  __typename: "UserAuthorizedApplication";
9328
10203
  } & Pick<UserAuthorizedApplication, "name" | "approvalErrorCode" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl" | "webhooksEnabled" | "createdByLinear" | "isAuthorized">;
@@ -9379,6 +10254,9 @@ export declare type IntegrationSettingsFragment = {
9379
10254
  notion?: Maybe<{
9380
10255
  __typename?: "NotionSettings";
9381
10256
  } & NotionSettingsFragment>;
10257
+ pagerDuty?: Maybe<{
10258
+ __typename?: "PagerDutySettings";
10259
+ } & PagerDutySettingsFragment>;
9382
10260
  sentry?: Maybe<{
9383
10261
  __typename?: "SentrySettings";
9384
10262
  } & SentrySettingsFragment>;
@@ -9415,6 +10293,9 @@ export declare type UserSettingsFragment = {
9415
10293
  export declare type JiraLinearMappingFragment = {
9416
10294
  __typename: "JiraLinearMapping";
9417
10295
  } & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId">;
10296
+ export declare type PagerDutyScheduleMappingFragment = {
10297
+ __typename: "PagerDutyScheduleMapping";
10298
+ } & Pick<PagerDutyScheduleMapping, "scheduleId" | "scheduleName">;
9418
10299
  export declare type FavoriteFragment = {
9419
10300
  __typename: "Favorite";
9420
10301
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -9442,7 +10323,10 @@ export declare type FavoriteFragment = {
9442
10323
  projectTeam?: Maybe<{
9443
10324
  __typename?: "Team";
9444
10325
  } & Pick<Team, "id">>;
9445
- user: {
10326
+ user?: Maybe<{
10327
+ __typename?: "User";
10328
+ } & Pick<User, "id">>;
10329
+ owner: {
9446
10330
  __typename?: "User";
9447
10331
  } & Pick<User, "id">;
9448
10332
  parent?: Maybe<{
@@ -9482,9 +10366,6 @@ export declare type ApiKeyPayloadFragment = {
9482
10366
  __typename?: "ApiKey";
9483
10367
  } & ApiKeyFragment;
9484
10368
  };
9485
- export declare type ArchivePayloadFragment = {
9486
- __typename: "ArchivePayload";
9487
- } & Pick<ArchivePayload, "lastSyncId" | "success">;
9488
10369
  export declare type AttachmentConnectionFragment = {
9489
10370
  __typename: "AttachmentConnection";
9490
10371
  } & {
@@ -9502,6 +10383,9 @@ export declare type AttachmentPayloadFragment = {
9502
10383
  __typename?: "Attachment";
9503
10384
  } & Pick<Attachment, "id">;
9504
10385
  };
10386
+ export declare type AttachmentSourcesPayloadFragment = {
10387
+ __typename: "AttachmentSourcesPayload";
10388
+ } & Pick<AttachmentSourcesPayload, "sources">;
9505
10389
  export declare type AuditEntryConnectionFragment = {
9506
10390
  __typename: "AuditEntryConnection";
9507
10391
  } & {
@@ -9661,6 +10545,13 @@ export declare type EmailUnsubscribePayloadFragment = {
9661
10545
  export declare type EmailUserAccountAuthChallengeResponseFragment = {
9662
10546
  __typename: "EmailUserAccountAuthChallengeResponse";
9663
10547
  } & 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
+ };
9664
10555
  export declare type EmojiConnectionFragment = {
9665
10556
  __typename: "EmojiConnection";
9666
10557
  } & {
@@ -9678,9 +10569,6 @@ export declare type EmojiPayloadFragment = {
9678
10569
  __typename?: "Emoji";
9679
10570
  } & Pick<Emoji, "id">;
9680
10571
  };
9681
- export declare type EventPayloadFragment = {
9682
- __typename: "EventPayload";
9683
- } & Pick<EventPayload, "success">;
9684
10572
  export declare type FavoriteConnectionFragment = {
9685
10573
  __typename: "FavoriteConnection";
9686
10574
  } & {
@@ -9705,6 +10593,16 @@ export declare type FigmaEmbedPayloadFragment = {
9705
10593
  __typename?: "FigmaEmbed";
9706
10594
  } & FigmaEmbedFragment>;
9707
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
+ };
9708
10606
  export declare type FrontAttachmentPayloadFragment = {
9709
10607
  __typename: "FrontAttachmentPayload";
9710
10608
  } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
@@ -9941,9 +10839,15 @@ declare type Node_Company_Fragment = {
9941
10839
  declare type Node_CustomView_Fragment = {
9942
10840
  __typename: "CustomView";
9943
10841
  } & Pick<CustomView, "id">;
10842
+ declare type Node_CustomViewNotificationSubscription_Fragment = {
10843
+ __typename: "CustomViewNotificationSubscription";
10844
+ } & Pick<CustomViewNotificationSubscription, "id">;
9944
10845
  declare type Node_Cycle_Fragment = {
9945
10846
  __typename: "Cycle";
9946
10847
  } & Pick<Cycle, "id">;
10848
+ declare type Node_CycleNotificationSubscription_Fragment = {
10849
+ __typename: "CycleNotificationSubscription";
10850
+ } & Pick<CycleNotificationSubscription, "id">;
9947
10851
  declare type Node_Document_Fragment = {
9948
10852
  __typename: "Document";
9949
10853
  } & Pick<Document, "id">;
@@ -9962,6 +10866,9 @@ declare type Node_ExternalUser_Fragment = {
9962
10866
  declare type Node_Favorite_Fragment = {
9963
10867
  __typename: "Favorite";
9964
10868
  } & Pick<Favorite, "id">;
10869
+ declare type Node_FirstResponderSchedule_Fragment = {
10870
+ __typename: "FirstResponderSchedule";
10871
+ } & Pick<FirstResponderSchedule, "id">;
9965
10872
  declare type Node_Integration_Fragment = {
9966
10873
  __typename: "Integration";
9967
10874
  } & Pick<Integration, "id">;
@@ -9995,6 +10902,9 @@ declare type Node_IssueRelation_Fragment = {
9995
10902
  declare type Node_IssueSearchResult_Fragment = {
9996
10903
  __typename: "IssueSearchResult";
9997
10904
  } & Pick<IssueSearchResult, "id">;
10905
+ declare type Node_LabelNotificationSubscription_Fragment = {
10906
+ __typename: "LabelNotificationSubscription";
10907
+ } & Pick<LabelNotificationSubscription, "id">;
9998
10908
  declare type Node_OauthClient_Fragment = {
9999
10909
  __typename: "OauthClient";
10000
10910
  } & Pick<OauthClient, "id">;
@@ -10067,6 +10977,9 @@ declare type Node_Template_Fragment = {
10067
10977
  declare type Node_User_Fragment = {
10068
10978
  __typename: "User";
10069
10979
  } & Pick<User, "id">;
10980
+ declare type Node_UserNotificationSubscription_Fragment = {
10981
+ __typename: "UserNotificationSubscription";
10982
+ } & Pick<UserNotificationSubscription, "id">;
10070
10983
  declare type Node_UserSettings_Fragment = {
10071
10984
  __typename: "UserSettings";
10072
10985
  } & Pick<UserSettings, "id">;
@@ -10085,7 +10998,18 @@ declare type Node_WorkflowDefinition_Fragment = {
10085
10998
  declare type Node_WorkflowState_Fragment = {
10086
10999
  __typename: "WorkflowState";
10087
11000
  } & Pick<WorkflowState, "id">;
10088
- export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_DocumentContent_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_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_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
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;
11002
+ export declare type NotificationBatchActionPayloadFragment = {
11003
+ __typename: "NotificationBatchActionPayload";
11004
+ } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
11005
+ notifications: Array<({
11006
+ __typename?: "IssueNotification";
11007
+ } & Notification_IssueNotification_Fragment) | ({
11008
+ __typename?: "OauthClientApprovalNotification";
11009
+ } & Notification_OauthClientApprovalNotification_Fragment) | ({
11010
+ __typename?: "ProjectNotification";
11011
+ } & Notification_ProjectNotification_Fragment)>;
11012
+ };
10089
11013
  export declare type NotificationConnectionFragment = {
10090
11014
  __typename: "NotificationConnection";
10091
11015
  } & {
@@ -10115,10 +11039,18 @@ export declare type NotificationSubscriptionConnectionFragment = {
10115
11039
  __typename: "NotificationSubscriptionConnection";
10116
11040
  } & {
10117
11041
  nodes: Array<({
11042
+ __typename?: "CustomViewNotificationSubscription";
11043
+ } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
11044
+ __typename?: "CycleNotificationSubscription";
11045
+ } & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
11046
+ __typename?: "LabelNotificationSubscription";
11047
+ } & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
10118
11048
  __typename?: "ProjectNotificationSubscription";
10119
11049
  } & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
10120
11050
  __typename?: "TeamNotificationSubscription";
10121
- } & NotificationSubscription_TeamNotificationSubscription_Fragment)>;
11051
+ } & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
11052
+ __typename?: "UserNotificationSubscription";
11053
+ } & NotificationSubscription_UserNotificationSubscription_Fragment)>;
10122
11054
  pageInfo: {
10123
11055
  __typename?: "PageInfo";
10124
11056
  } & PageInfoFragment;
@@ -10127,10 +11059,18 @@ export declare type NotificationSubscriptionPayloadFragment = {
10127
11059
  __typename: "NotificationSubscriptionPayload";
10128
11060
  } & Pick<NotificationSubscriptionPayload, "lastSyncId" | "success"> & {
10129
11061
  notificationSubscription: ({
11062
+ __typename?: "CustomViewNotificationSubscription";
11063
+ } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
11064
+ __typename?: "CycleNotificationSubscription";
11065
+ } & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
11066
+ __typename?: "LabelNotificationSubscription";
11067
+ } & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
10130
11068
  __typename?: "ProjectNotificationSubscription";
10131
11069
  } & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
10132
11070
  __typename?: "TeamNotificationSubscription";
10133
- } & NotificationSubscription_TeamNotificationSubscription_Fragment);
11071
+ } & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
11072
+ __typename?: "UserNotificationSubscription";
11073
+ } & NotificationSubscription_UserNotificationSubscription_Fragment);
10134
11074
  };
10135
11075
  export declare type OauthClientConnectionFragment = {
10136
11076
  __typename: "OauthClientConnection";
@@ -10249,7 +11189,7 @@ export declare type ProjectSearchPayloadFragment = {
10249
11189
  };
10250
11190
  export declare type ProjectSearchResultFragment = {
10251
11191
  __typename: "ProjectSearchResult";
10252
- } & Pick<ProjectSearchResult, "metadata" | "url" | "targetDate" | "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"> & {
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"> & {
10253
11193
  integrationsSettings?: Maybe<{
10254
11194
  __typename?: "IntegrationsSettings";
10255
11195
  } & Pick<IntegrationsSettings, "id">>;
@@ -10537,6 +11477,21 @@ export declare type WorkflowCronJobDefinitionConnectionFragment = {
10537
11477
  export declare type WorkflowDefinitionFragment = {
10538
11478
  __typename: "WorkflowDefinition";
10539
11479
  } & Pick<WorkflowDefinition, "activities" | "conditions" | "description" | "updatedAt" | "groupName" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "id" | "enabled"> & {
11480
+ customView?: Maybe<{
11481
+ __typename?: "CustomView";
11482
+ } & Pick<CustomView, "id">>;
11483
+ cycle?: Maybe<{
11484
+ __typename?: "Cycle";
11485
+ } & Pick<Cycle, "id">>;
11486
+ label?: Maybe<{
11487
+ __typename?: "IssueLabel";
11488
+ } & Pick<IssueLabel, "id">>;
11489
+ project?: Maybe<{
11490
+ __typename?: "Project";
11491
+ } & Pick<Project, "id">>;
11492
+ user?: Maybe<{
11493
+ __typename?: "User";
11494
+ } & Pick<User, "id">>;
10540
11495
  team?: Maybe<{
10541
11496
  __typename?: "Team";
10542
11497
  } & Pick<Team, "id">>;
@@ -10598,8 +11553,8 @@ export declare type DeleteApiKeyMutation = {
10598
11553
  __typename?: "Mutation";
10599
11554
  } & {
10600
11555
  apiKeyDelete: {
10601
- __typename?: "ArchivePayload";
10602
- } & ArchivePayloadFragment;
11556
+ __typename?: "DeletePayload";
11557
+ } & DeletePayloadFragment;
10603
11558
  };
10604
11559
  export declare type ArchiveAttachmentMutationVariables = Exact<{
10605
11560
  id: Scalars["String"];
@@ -10608,8 +11563,8 @@ export declare type ArchiveAttachmentMutation = {
10608
11563
  __typename?: "Mutation";
10609
11564
  } & {
10610
11565
  attachmentArchive: {
10611
- __typename?: "ArchivePayload";
10612
- } & ArchivePayloadFragment;
11566
+ __typename?: "AttachmentArchivePayload";
11567
+ } & AttachmentArchivePayloadFragment;
10613
11568
  };
10614
11569
  export declare type CreateAttachmentMutationVariables = Exact<{
10615
11570
  input: AttachmentCreateInput;
@@ -10628,8 +11583,8 @@ export declare type DeleteAttachmentMutation = {
10628
11583
  __typename?: "Mutation";
10629
11584
  } & {
10630
11585
  attachmentDelete: {
10631
- __typename?: "ArchivePayload";
10632
- } & ArchivePayloadFragment;
11586
+ __typename?: "DeletePayload";
11587
+ } & DeletePayloadFragment;
10633
11588
  };
10634
11589
  export declare type AttachmentLinkDiscordMutationVariables = Exact<{
10635
11590
  channelId: Scalars["String"];
@@ -10677,6 +11632,22 @@ export declare type AttachmentLinkJiraIssueMutation = {
10677
11632
  __typename?: "AttachmentPayload";
10678
11633
  } & AttachmentPayloadFragment;
10679
11634
  };
11635
+ export declare type AttachmentLinkSlackMutationVariables = Exact<{
11636
+ channel: Scalars["String"];
11637
+ id?: Maybe<Scalars["String"]>;
11638
+ issueId: Scalars["String"];
11639
+ latest: Scalars["String"];
11640
+ title?: Maybe<Scalars["String"]>;
11641
+ ts?: Maybe<Scalars["String"]>;
11642
+ url: Scalars["String"];
11643
+ }>;
11644
+ export declare type AttachmentLinkSlackMutation = {
11645
+ __typename?: "Mutation";
11646
+ } & {
11647
+ attachmentLinkSlack: {
11648
+ __typename?: "AttachmentPayload";
11649
+ } & AttachmentPayloadFragment;
11650
+ };
10680
11651
  export declare type AttachmentLinkUrlMutationVariables = Exact<{
10681
11652
  id?: Maybe<Scalars["String"]>;
10682
11653
  issueId: Scalars["String"];
@@ -10701,6 +11672,16 @@ export declare type AttachmentLinkZendeskMutation = {
10701
11672
  __typename?: "AttachmentPayload";
10702
11673
  } & AttachmentPayloadFragment;
10703
11674
  };
11675
+ export declare type AttachmentUnsyncSlackMutationVariables = Exact<{
11676
+ id: Scalars["String"];
11677
+ }>;
11678
+ export declare type AttachmentUnsyncSlackMutation = {
11679
+ __typename?: "Mutation";
11680
+ } & {
11681
+ attachmentUnsyncSlack: {
11682
+ __typename?: "AttachmentPayload";
11683
+ } & AttachmentPayloadFragment;
11684
+ };
10704
11685
  export declare type UpdateAttachmentMutationVariables = Exact<{
10705
11686
  id: Scalars["String"];
10706
11687
  input: AttachmentUpdateInput;
@@ -10729,8 +11710,8 @@ export declare type DeleteCommentMutation = {
10729
11710
  __typename?: "Mutation";
10730
11711
  } & {
10731
11712
  commentDelete: {
10732
- __typename?: "ArchivePayload";
10733
- } & ArchivePayloadFragment;
11713
+ __typename?: "DeletePayload";
11714
+ } & DeletePayloadFragment;
10734
11715
  };
10735
11716
  export declare type UpdateCommentMutationVariables = Exact<{
10736
11717
  id: Scalars["String"];
@@ -10791,8 +11772,8 @@ export declare type DeleteCustomViewMutation = {
10791
11772
  __typename?: "Mutation";
10792
11773
  } & {
10793
11774
  customViewDelete: {
10794
- __typename?: "ArchivePayload";
10795
- } & ArchivePayloadFragment;
11775
+ __typename?: "DeletePayload";
11776
+ } & DeletePayloadFragment;
10796
11777
  };
10797
11778
  export declare type UpdateCustomViewMutationVariables = Exact<{
10798
11779
  id: Scalars["String"];
@@ -10812,8 +11793,8 @@ export declare type ArchiveCycleMutation = {
10812
11793
  __typename?: "Mutation";
10813
11794
  } & {
10814
11795
  cycleArchive: {
10815
- __typename?: "ArchivePayload";
10816
- } & ArchivePayloadFragment;
11796
+ __typename?: "CycleArchivePayload";
11797
+ } & CycleArchivePayloadFragment;
10817
11798
  };
10818
11799
  export declare type CreateCycleMutationVariables = Exact<{
10819
11800
  input: CycleCreateInput;
@@ -10853,8 +11834,8 @@ export declare type DeleteDocumentMutation = {
10853
11834
  __typename?: "Mutation";
10854
11835
  } & {
10855
11836
  documentDelete: {
10856
- __typename?: "ArchivePayload";
10857
- } & ArchivePayloadFragment;
11837
+ __typename?: "DeletePayload";
11838
+ } & DeletePayloadFragment;
10858
11839
  };
10859
11840
  export declare type UpdateDocumentMutationVariables = Exact<{
10860
11841
  id: Scalars["String"];
@@ -10914,18 +11895,8 @@ export declare type DeleteEmojiMutation = {
10914
11895
  __typename?: "Mutation";
10915
11896
  } & {
10916
11897
  emojiDelete: {
10917
- __typename?: "ArchivePayload";
10918
- } & ArchivePayloadFragment;
10919
- };
10920
- export declare type CreateEventMutationVariables = Exact<{
10921
- input: EventCreateInput;
10922
- }>;
10923
- export declare type CreateEventMutation = {
10924
- __typename?: "Mutation";
10925
- } & {
10926
- eventCreate: {
10927
- __typename?: "EventPayload";
10928
- } & EventPayloadFragment;
11898
+ __typename?: "DeletePayload";
11899
+ } & DeletePayloadFragment;
10929
11900
  };
10930
11901
  export declare type CreateFavoriteMutationVariables = Exact<{
10931
11902
  input: FavoriteCreateInput;
@@ -10944,8 +11915,8 @@ export declare type DeleteFavoriteMutation = {
10944
11915
  __typename?: "Mutation";
10945
11916
  } & {
10946
11917
  favoriteDelete: {
10947
- __typename?: "ArchivePayload";
10948
- } & ArchivePayloadFragment;
11918
+ __typename?: "DeletePayload";
11919
+ } & DeletePayloadFragment;
10949
11920
  };
10950
11921
  export declare type UpdateFavoriteMutationVariables = Exact<{
10951
11922
  id: Scalars["String"];
@@ -11012,8 +11983,8 @@ export declare type DeleteIntegrationMutation = {
11012
11983
  __typename?: "Mutation";
11013
11984
  } & {
11014
11985
  integrationDelete: {
11015
- __typename?: "ArchivePayload";
11016
- } & ArchivePayloadFragment;
11986
+ __typename?: "DeletePayload";
11987
+ } & DeletePayloadFragment;
11017
11988
  };
11018
11989
  export declare type IntegrationDiscordMutationVariables = Exact<{
11019
11990
  code: Scalars["String"];
@@ -11165,25 +12136,25 @@ export declare type IntegrationSlackMutation = {
11165
12136
  __typename?: "IntegrationPayload";
11166
12137
  } & IntegrationPayloadFragment;
11167
12138
  };
11168
- export declare type IntegrationSlackImportEmojisMutationVariables = Exact<{
12139
+ export declare type IntegrationSlackAsksMutationVariables = Exact<{
11169
12140
  code: Scalars["String"];
11170
12141
  redirectUri: Scalars["String"];
11171
12142
  }>;
11172
- export declare type IntegrationSlackImportEmojisMutation = {
12143
+ export declare type IntegrationSlackAsksMutation = {
11173
12144
  __typename?: "Mutation";
11174
12145
  } & {
11175
- integrationSlackImportEmojis: {
12146
+ integrationSlackAsks: {
11176
12147
  __typename?: "IntegrationPayload";
11177
12148
  } & IntegrationPayloadFragment;
11178
12149
  };
11179
- export declare type IntegrationSlackIntakeMutationVariables = Exact<{
12150
+ export declare type IntegrationSlackImportEmojisMutationVariables = Exact<{
11180
12151
  code: Scalars["String"];
11181
12152
  redirectUri: Scalars["String"];
11182
12153
  }>;
11183
- export declare type IntegrationSlackIntakeMutation = {
12154
+ export declare type IntegrationSlackImportEmojisMutation = {
11184
12155
  __typename?: "Mutation";
11185
12156
  } & {
11186
- integrationSlackIntake: {
12157
+ integrationSlackImportEmojis: {
11187
12158
  __typename?: "IntegrationPayload";
11188
12159
  } & IntegrationPayloadFragment;
11189
12160
  };
@@ -11252,8 +12223,8 @@ export declare type DeleteIntegrationTemplateMutation = {
11252
12223
  __typename?: "Mutation";
11253
12224
  } & {
11254
12225
  integrationTemplateDelete: {
11255
- __typename?: "ArchivePayload";
11256
- } & ArchivePayloadFragment;
12226
+ __typename?: "DeletePayload";
12227
+ } & DeletePayloadFragment;
11257
12228
  };
11258
12229
  export declare type IntegrationUpdateSlackMutationVariables = Exact<{
11259
12230
  code: Scalars["String"];
@@ -11308,8 +12279,8 @@ export declare type ArchiveIssueMutation = {
11308
12279
  __typename?: "Mutation";
11309
12280
  } & {
11310
12281
  issueArchive: {
11311
- __typename?: "ArchivePayload";
11312
- } & ArchivePayloadFragment;
12282
+ __typename?: "IssueArchivePayload";
12283
+ } & IssueArchivePayloadFragment;
11313
12284
  };
11314
12285
  export declare type UpdateIssueBatchMutationVariables = Exact<{
11315
12286
  ids: Array<Scalars["UUID"]> | Scalars["UUID"];
@@ -11339,8 +12310,8 @@ export declare type DeleteIssueMutation = {
11339
12310
  __typename?: "Mutation";
11340
12311
  } & {
11341
12312
  issueDelete: {
11342
- __typename?: "ArchivePayload";
11343
- } & ArchivePayloadFragment;
12313
+ __typename?: "IssueArchivePayload";
12314
+ } & IssueArchivePayloadFragment;
11344
12315
  };
11345
12316
  export declare type IssueImportCreateAsanaMutationVariables = Exact<{
11346
12317
  asanaTeamName: Scalars["String"];
@@ -11462,16 +12433,6 @@ export declare type UpdateIssueImportMutation = {
11462
12433
  __typename?: "IssueImportPayload";
11463
12434
  } & IssueImportPayloadFragment;
11464
12435
  };
11465
- export declare type ArchiveIssueLabelMutationVariables = Exact<{
11466
- id: Scalars["String"];
11467
- }>;
11468
- export declare type ArchiveIssueLabelMutation = {
11469
- __typename?: "Mutation";
11470
- } & {
11471
- issueLabelArchive: {
11472
- __typename?: "ArchivePayload";
11473
- } & ArchivePayloadFragment;
11474
- };
11475
12436
  export declare type CreateIssueLabelMutationVariables = Exact<{
11476
12437
  input: IssueLabelCreateInput;
11477
12438
  replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
@@ -11490,8 +12451,8 @@ export declare type DeleteIssueLabelMutation = {
11490
12451
  __typename?: "Mutation";
11491
12452
  } & {
11492
12453
  issueLabelDelete: {
11493
- __typename?: "ArchivePayload";
11494
- } & ArchivePayloadFragment;
12454
+ __typename?: "DeletePayload";
12455
+ } & DeletePayloadFragment;
11495
12456
  };
11496
12457
  export declare type UpdateIssueLabelMutationVariables = Exact<{
11497
12458
  id: Scalars["String"];
@@ -11521,8 +12482,8 @@ export declare type DeleteIssueRelationMutation = {
11521
12482
  __typename?: "Mutation";
11522
12483
  } & {
11523
12484
  issueRelationDelete: {
11524
- __typename?: "ArchivePayload";
11525
- } & ArchivePayloadFragment;
12485
+ __typename?: "DeletePayload";
12486
+ } & DeletePayloadFragment;
11526
12487
  };
11527
12488
  export declare type UpdateIssueRelationMutationVariables = Exact<{
11528
12489
  id: Scalars["String"];
@@ -11553,8 +12514,8 @@ export declare type UnarchiveIssueMutation = {
11553
12514
  __typename?: "Mutation";
11554
12515
  } & {
11555
12516
  issueUnarchive: {
11556
- __typename?: "ArchivePayload";
11557
- } & ArchivePayloadFragment;
12517
+ __typename?: "IssueArchivePayload";
12518
+ } & IssueArchivePayloadFragment;
11558
12519
  };
11559
12520
  export declare type UpdateIssueMutationVariables = Exact<{
11560
12521
  id: Scalars["String"];
@@ -11604,8 +12565,50 @@ export declare type ArchiveNotificationMutation = {
11604
12565
  __typename?: "Mutation";
11605
12566
  } & {
11606
12567
  notificationArchive: {
11607
- __typename?: "ArchivePayload";
11608
- } & ArchivePayloadFragment;
12568
+ __typename?: "NotificationArchivePayload";
12569
+ } & NotificationArchivePayloadFragment;
12570
+ };
12571
+ export declare type NotificationArchiveAllMutationVariables = Exact<{
12572
+ input: NotificationEntityInput;
12573
+ }>;
12574
+ export declare type NotificationArchiveAllMutation = {
12575
+ __typename?: "Mutation";
12576
+ } & {
12577
+ notificationArchiveAll: {
12578
+ __typename?: "NotificationBatchActionPayload";
12579
+ } & NotificationBatchActionPayloadFragment;
12580
+ };
12581
+ export declare type NotificationMarkReadAllMutationVariables = Exact<{
12582
+ input: NotificationEntityInput;
12583
+ readAt: Scalars["DateTime"];
12584
+ }>;
12585
+ export declare type NotificationMarkReadAllMutation = {
12586
+ __typename?: "Mutation";
12587
+ } & {
12588
+ notificationMarkReadAll: {
12589
+ __typename?: "NotificationBatchActionPayload";
12590
+ } & NotificationBatchActionPayloadFragment;
12591
+ };
12592
+ export declare type NotificationMarkUnreadAllMutationVariables = Exact<{
12593
+ input: NotificationEntityInput;
12594
+ }>;
12595
+ export declare type NotificationMarkUnreadAllMutation = {
12596
+ __typename?: "Mutation";
12597
+ } & {
12598
+ notificationMarkUnreadAll: {
12599
+ __typename?: "NotificationBatchActionPayload";
12600
+ } & NotificationBatchActionPayloadFragment;
12601
+ };
12602
+ export declare type NotificationSnoozeAllMutationVariables = Exact<{
12603
+ input: NotificationEntityInput;
12604
+ snoozedUntilAt: Scalars["DateTime"];
12605
+ }>;
12606
+ export declare type NotificationSnoozeAllMutation = {
12607
+ __typename?: "Mutation";
12608
+ } & {
12609
+ notificationSnoozeAll: {
12610
+ __typename?: "NotificationBatchActionPayload";
12611
+ } & NotificationBatchActionPayloadFragment;
11609
12612
  };
11610
12613
  export declare type CreateNotificationSubscriptionMutationVariables = Exact<{
11611
12614
  input: NotificationSubscriptionCreateInput;
@@ -11624,8 +12627,8 @@ export declare type DeleteNotificationSubscriptionMutation = {
11624
12627
  __typename?: "Mutation";
11625
12628
  } & {
11626
12629
  notificationSubscriptionDelete: {
11627
- __typename?: "ArchivePayload";
11628
- } & ArchivePayloadFragment;
12630
+ __typename?: "DeletePayload";
12631
+ } & DeletePayloadFragment;
11629
12632
  };
11630
12633
  export declare type UpdateNotificationSubscriptionMutationVariables = Exact<{
11631
12634
  id: Scalars["String"];
@@ -11645,8 +12648,19 @@ export declare type UnarchiveNotificationMutation = {
11645
12648
  __typename?: "Mutation";
11646
12649
  } & {
11647
12650
  notificationUnarchive: {
11648
- __typename?: "ArchivePayload";
11649
- } & ArchivePayloadFragment;
12651
+ __typename?: "NotificationArchivePayload";
12652
+ } & NotificationArchivePayloadFragment;
12653
+ };
12654
+ export declare type NotificationUnsnoozeAllMutationVariables = Exact<{
12655
+ input: NotificationEntityInput;
12656
+ unsnoozedAt: Scalars["DateTime"];
12657
+ }>;
12658
+ export declare type NotificationUnsnoozeAllMutation = {
12659
+ __typename?: "Mutation";
12660
+ } & {
12661
+ notificationUnsnoozeAll: {
12662
+ __typename?: "NotificationBatchActionPayload";
12663
+ } & NotificationBatchActionPayloadFragment;
11650
12664
  };
11651
12665
  export declare type UpdateNotificationMutationVariables = Exact<{
11652
12666
  id: Scalars["String"];
@@ -11696,8 +12710,8 @@ export declare type DeleteOrganizationDomainMutation = {
11696
12710
  __typename?: "Mutation";
11697
12711
  } & {
11698
12712
  organizationDomainDelete: {
11699
- __typename?: "ArchivePayload";
11700
- } & ArchivePayloadFragment;
12713
+ __typename?: "DeletePayload";
12714
+ } & DeletePayloadFragment;
11701
12715
  };
11702
12716
  export declare type CreateOrganizationInviteMutationVariables = Exact<{
11703
12717
  input: OrganizationInviteCreateInput;
@@ -11716,8 +12730,8 @@ export declare type DeleteOrganizationInviteMutation = {
11716
12730
  __typename?: "Mutation";
11717
12731
  } & {
11718
12732
  organizationInviteDelete: {
11719
- __typename?: "ArchivePayload";
11720
- } & ArchivePayloadFragment;
12733
+ __typename?: "DeletePayload";
12734
+ } & DeletePayloadFragment;
11721
12735
  };
11722
12736
  export declare type UpdateOrganizationInviteMutationVariables = Exact<{
11723
12737
  id: Scalars["String"];
@@ -11757,8 +12771,8 @@ export declare type ArchiveProjectMutation = {
11757
12771
  __typename?: "Mutation";
11758
12772
  } & {
11759
12773
  projectArchive: {
11760
- __typename?: "ArchivePayload";
11761
- } & ArchivePayloadFragment;
12774
+ __typename?: "ProjectArchivePayload";
12775
+ } & ProjectArchivePayloadFragment;
11762
12776
  };
11763
12777
  export declare type CreateProjectMutationVariables = Exact<{
11764
12778
  input: ProjectCreateInput;
@@ -11777,8 +12791,8 @@ export declare type DeleteProjectMutation = {
11777
12791
  __typename?: "Mutation";
11778
12792
  } & {
11779
12793
  projectDelete: {
11780
- __typename?: "ArchivePayload";
11781
- } & ArchivePayloadFragment;
12794
+ __typename?: "DeletePayload";
12795
+ } & DeletePayloadFragment;
11782
12796
  };
11783
12797
  export declare type CreateProjectLinkMutationVariables = Exact<{
11784
12798
  input: ProjectLinkCreateInput;
@@ -11797,8 +12811,8 @@ export declare type DeleteProjectLinkMutation = {
11797
12811
  __typename?: "Mutation";
11798
12812
  } & {
11799
12813
  projectLinkDelete: {
11800
- __typename?: "ArchivePayload";
11801
- } & ArchivePayloadFragment;
12814
+ __typename?: "DeletePayload";
12815
+ } & DeletePayloadFragment;
11802
12816
  };
11803
12817
  export declare type UpdateProjectLinkMutationVariables = Exact<{
11804
12818
  id: Scalars["String"];
@@ -11828,8 +12842,8 @@ export declare type DeleteProjectMilestoneMutation = {
11828
12842
  __typename?: "Mutation";
11829
12843
  } & {
11830
12844
  projectMilestoneDelete: {
11831
- __typename?: "ArchivePayload";
11832
- } & ArchivePayloadFragment;
12845
+ __typename?: "DeletePayload";
12846
+ } & DeletePayloadFragment;
11833
12847
  };
11834
12848
  export declare type UpdateProjectMilestoneMutationVariables = Exact<{
11835
12849
  id: Scalars["String"];
@@ -11849,8 +12863,8 @@ export declare type UnarchiveProjectMutation = {
11849
12863
  __typename?: "Mutation";
11850
12864
  } & {
11851
12865
  projectUnarchive: {
11852
- __typename?: "ArchivePayload";
11853
- } & ArchivePayloadFragment;
12866
+ __typename?: "ProjectArchivePayload";
12867
+ } & ProjectArchivePayloadFragment;
11854
12868
  };
11855
12869
  export declare type UpdateProjectMutationVariables = Exact<{
11856
12870
  id: Scalars["String"];
@@ -11880,8 +12894,8 @@ export declare type DeleteProjectUpdateMutation = {
11880
12894
  __typename?: "Mutation";
11881
12895
  } & {
11882
12896
  projectUpdateDelete: {
11883
- __typename?: "ArchivePayload";
11884
- } & ArchivePayloadFragment;
12897
+ __typename?: "DeletePayload";
12898
+ } & DeletePayloadFragment;
11885
12899
  };
11886
12900
  export declare type CreateProjectUpdateInteractionMutationVariables = Exact<{
11887
12901
  input: ProjectUpdateInteractionCreateInput;
@@ -11951,8 +12965,8 @@ export declare type DeleteReactionMutation = {
11951
12965
  __typename?: "Mutation";
11952
12966
  } & {
11953
12967
  reactionDelete: {
11954
- __typename?: "ArchivePayload";
11955
- } & ArchivePayloadFragment;
12968
+ __typename?: "DeletePayload";
12969
+ } & DeletePayloadFragment;
11956
12970
  };
11957
12971
  export declare type RefreshGoogleSheetsDataMutationVariables = Exact<{
11958
12972
  id: Scalars["String"];
@@ -11971,8 +12985,8 @@ export declare type ResendOrganizationInviteMutation = {
11971
12985
  __typename?: "Mutation";
11972
12986
  } & {
11973
12987
  resendOrganizationInvite: {
11974
- __typename?: "ArchivePayload";
11975
- } & ArchivePayloadFragment;
12988
+ __typename?: "DeletePayload";
12989
+ } & DeletePayloadFragment;
11976
12990
  };
11977
12991
  export declare type ArchiveRoadmapMutationVariables = Exact<{
11978
12992
  id: Scalars["String"];
@@ -11981,8 +12995,8 @@ export declare type ArchiveRoadmapMutation = {
11981
12995
  __typename?: "Mutation";
11982
12996
  } & {
11983
12997
  roadmapArchive: {
11984
- __typename?: "ArchivePayload";
11985
- } & ArchivePayloadFragment;
12998
+ __typename?: "RoadmapArchivePayload";
12999
+ } & RoadmapArchivePayloadFragment;
11986
13000
  };
11987
13001
  export declare type CreateRoadmapMutationVariables = Exact<{
11988
13002
  input: RoadmapCreateInput;
@@ -12001,8 +13015,8 @@ export declare type DeleteRoadmapMutation = {
12001
13015
  __typename?: "Mutation";
12002
13016
  } & {
12003
13017
  roadmapDelete: {
12004
- __typename?: "ArchivePayload";
12005
- } & ArchivePayloadFragment;
13018
+ __typename?: "DeletePayload";
13019
+ } & DeletePayloadFragment;
12006
13020
  };
12007
13021
  export declare type CreateRoadmapToProjectMutationVariables = Exact<{
12008
13022
  input: RoadmapToProjectCreateInput;
@@ -12021,8 +13035,8 @@ export declare type DeleteRoadmapToProjectMutation = {
12021
13035
  __typename?: "Mutation";
12022
13036
  } & {
12023
13037
  roadmapToProjectDelete: {
12024
- __typename?: "ArchivePayload";
12025
- } & ArchivePayloadFragment;
13038
+ __typename?: "DeletePayload";
13039
+ } & DeletePayloadFragment;
12026
13040
  };
12027
13041
  export declare type UpdateRoadmapToProjectMutationVariables = Exact<{
12028
13042
  id: Scalars["String"];
@@ -12042,8 +13056,8 @@ export declare type UnarchiveRoadmapMutation = {
12042
13056
  __typename?: "Mutation";
12043
13057
  } & {
12044
13058
  roadmapUnarchive: {
12045
- __typename?: "ArchivePayload";
12046
- } & ArchivePayloadFragment;
13059
+ __typename?: "RoadmapArchivePayload";
13060
+ } & RoadmapArchivePayloadFragment;
12047
13061
  };
12048
13062
  export declare type UpdateRoadmapMutationVariables = Exact<{
12049
13063
  id: Scalars["String"];
@@ -12094,8 +13108,8 @@ export declare type DeleteTeamMutation = {
12094
13108
  __typename?: "Mutation";
12095
13109
  } & {
12096
13110
  teamDelete: {
12097
- __typename?: "ArchivePayload";
12098
- } & ArchivePayloadFragment;
13111
+ __typename?: "DeletePayload";
13112
+ } & DeletePayloadFragment;
12099
13113
  };
12100
13114
  export declare type DeleteTeamKeyMutationVariables = Exact<{
12101
13115
  id: Scalars["String"];
@@ -12104,8 +13118,8 @@ export declare type DeleteTeamKeyMutation = {
12104
13118
  __typename?: "Mutation";
12105
13119
  } & {
12106
13120
  teamKeyDelete: {
12107
- __typename?: "ArchivePayload";
12108
- } & ArchivePayloadFragment;
13121
+ __typename?: "DeletePayload";
13122
+ } & DeletePayloadFragment;
12109
13123
  };
12110
13124
  export declare type CreateTeamMembershipMutationVariables = Exact<{
12111
13125
  input: TeamMembershipCreateInput;
@@ -12124,8 +13138,8 @@ export declare type DeleteTeamMembershipMutation = {
12124
13138
  __typename?: "Mutation";
12125
13139
  } & {
12126
13140
  teamMembershipDelete: {
12127
- __typename?: "ArchivePayload";
12128
- } & ArchivePayloadFragment;
13141
+ __typename?: "DeletePayload";
13142
+ } & DeletePayloadFragment;
12129
13143
  };
12130
13144
  export declare type UpdateTeamMembershipMutationVariables = Exact<{
12131
13145
  id: Scalars["String"];
@@ -12166,8 +13180,8 @@ export declare type DeleteTemplateMutation = {
12166
13180
  __typename?: "Mutation";
12167
13181
  } & {
12168
13182
  templateDelete: {
12169
- __typename?: "ArchivePayload";
12170
- } & ArchivePayloadFragment;
13183
+ __typename?: "DeletePayload";
13184
+ } & DeletePayloadFragment;
12171
13185
  };
12172
13186
  export declare type UpdateTemplateMutationVariables = Exact<{
12173
13187
  id: Scalars["String"];
@@ -12361,8 +13375,8 @@ export declare type DeleteViewPreferencesMutation = {
12361
13375
  __typename?: "Mutation";
12362
13376
  } & {
12363
13377
  viewPreferencesDelete: {
12364
- __typename?: "ArchivePayload";
12365
- } & ArchivePayloadFragment;
13378
+ __typename?: "DeletePayload";
13379
+ } & DeletePayloadFragment;
12366
13380
  };
12367
13381
  export declare type UpdateViewPreferencesMutationVariables = Exact<{
12368
13382
  id: Scalars["String"];
@@ -12392,8 +13406,8 @@ export declare type DeleteWebhookMutation = {
12392
13406
  __typename?: "Mutation";
12393
13407
  } & {
12394
13408
  webhookDelete: {
12395
- __typename?: "ArchivePayload";
12396
- } & ArchivePayloadFragment;
13409
+ __typename?: "DeletePayload";
13410
+ } & DeletePayloadFragment;
12397
13411
  };
12398
13412
  export declare type UpdateWebhookMutationVariables = Exact<{
12399
13413
  id: Scalars["String"];
@@ -12413,8 +13427,8 @@ export declare type ArchiveWorkflowStateMutation = {
12413
13427
  __typename?: "Mutation";
12414
13428
  } & {
12415
13429
  workflowStateArchive: {
12416
- __typename?: "ArchivePayload";
12417
- } & ArchivePayloadFragment;
13430
+ __typename?: "WorkflowStateArchivePayload";
13431
+ } & WorkflowStateArchivePayloadFragment;
12418
13432
  };
12419
13433
  export declare type CreateWorkflowStateMutationVariables = Exact<{
12420
13434
  input: WorkflowStateCreateInput;
@@ -12936,6 +13950,30 @@ export declare type DocumentsQuery = {
12936
13950
  __typename?: "DocumentConnection";
12937
13951
  } & DocumentConnectionFragment;
12938
13952
  };
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
+ };
12939
13977
  export declare type EmojiQueryVariables = Exact<{
12940
13978
  id: Scalars["String"];
12941
13979
  }>;
@@ -13418,6 +14456,23 @@ export declare type IssueRelationsQuery = {
13418
14456
  __typename?: "IssueRelationConnection";
13419
14457
  } & IssueRelationConnectionFragment;
13420
14458
  };
14459
+ export declare type IssueSearchQueryVariables = Exact<{
14460
+ after?: Maybe<Scalars["String"]>;
14461
+ before?: Maybe<Scalars["String"]>;
14462
+ filter?: Maybe<IssueFilter>;
14463
+ first?: Maybe<Scalars["Int"]>;
14464
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14465
+ last?: Maybe<Scalars["Int"]>;
14466
+ orderBy?: Maybe<PaginationOrderBy>;
14467
+ query?: Maybe<Scalars["String"]>;
14468
+ }>;
14469
+ export declare type IssueSearchQuery = {
14470
+ __typename?: "Query";
14471
+ } & {
14472
+ issueSearch: {
14473
+ __typename?: "IssueConnection";
14474
+ } & IssueConnectionFragment;
14475
+ };
13421
14476
  export declare type IssueVcsBranchSearchQueryVariables = Exact<{
13422
14477
  branchName: Scalars["String"];
13423
14478
  }>;
@@ -13631,10 +14686,18 @@ export declare type NotificationSubscriptionQuery = {
13631
14686
  __typename?: "Query";
13632
14687
  } & {
13633
14688
  notificationSubscription: ({
14689
+ __typename?: "CustomViewNotificationSubscription";
14690
+ } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
14691
+ __typename?: "CycleNotificationSubscription";
14692
+ } & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
14693
+ __typename?: "LabelNotificationSubscription";
14694
+ } & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
13634
14695
  __typename?: "ProjectNotificationSubscription";
13635
14696
  } & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
13636
14697
  __typename?: "TeamNotificationSubscription";
13637
- } & NotificationSubscription_TeamNotificationSubscription_Fragment);
14698
+ } & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
14699
+ __typename?: "UserNotificationSubscription";
14700
+ } & NotificationSubscription_UserNotificationSubscription_Fragment);
13638
14701
  };
13639
14702
  export declare type NotificationSubscriptionsQueryVariables = Exact<{
13640
14703
  after?: Maybe<Scalars["String"]>;
@@ -14548,6 +15611,16 @@ export declare type TemplatesQuery = {
14548
15611
  __typename?: "Template";
14549
15612
  } & TemplateFragment>;
14550
15613
  };
15614
+ export declare type TemplatesForIntegrationQueryVariables = Exact<{
15615
+ integrationType: Scalars["String"];
15616
+ }>;
15617
+ export declare type TemplatesForIntegrationQuery = {
15618
+ __typename?: "Query";
15619
+ } & {
15620
+ templatesForIntegration: Array<{
15621
+ __typename?: "Template";
15622
+ } & TemplateFragment>;
15623
+ };
14551
15624
  export declare type UserQueryVariables = Exact<{
14552
15625
  id: Scalars["String"];
14553
15626
  }>;
@@ -14830,12 +15903,30 @@ export declare type WorkflowStatesQuery = {
14830
15903
  } & WorkflowStateConnectionFragment;
14831
15904
  };
14832
15905
  export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
15906
+ export declare const CustomViewNotificationSubscriptionFragmentDoc: DocumentNode<CustomViewNotificationSubscriptionFragment, unknown>;
15907
+ export declare const CycleNotificationSubscriptionFragmentDoc: DocumentNode<CycleNotificationSubscriptionFragment, unknown>;
14833
15908
  export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
15909
+ export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
15910
+ export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
15911
+ export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
15912
+ export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
15913
+ export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
15914
+ export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
15915
+ export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
15916
+ export declare const ProjectNotificationFragmentDoc: DocumentNode<ProjectNotificationFragment, unknown>;
15917
+ export declare const NotificationFragmentDoc: DocumentNode<NotificationFragment, unknown>;
15918
+ export declare const NotificationArchivePayloadFragmentDoc: DocumentNode<NotificationArchivePayloadFragment, unknown>;
15919
+ export declare const ProjectArchivePayloadFragmentDoc: DocumentNode<ProjectArchivePayloadFragment, unknown>;
15920
+ export declare const RoadmapArchivePayloadFragmentDoc: DocumentNode<RoadmapArchivePayloadFragment, unknown>;
15921
+ export declare const WorkflowStateArchivePayloadFragmentDoc: DocumentNode<WorkflowStateArchivePayloadFragment, unknown>;
15922
+ export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragment, unknown>;
15923
+ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<LabelNotificationSubscriptionFragment, unknown>;
14834
15924
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
14835
15925
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
14836
15926
  export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
14837
15927
  export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
14838
15928
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
15929
+ export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
14839
15930
  export declare const SyncResponseFragmentDoc: DocumentNode<SyncResponseFragment, unknown>;
14840
15931
  export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
14841
15932
  export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
@@ -14851,6 +15942,8 @@ export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFra
14851
15942
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
14852
15943
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
14853
15944
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
15945
+ export declare const PagerDutyScheduleMappingFragmentDoc: DocumentNode<PagerDutyScheduleMappingFragment, unknown>;
15946
+ export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
14854
15947
  export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
14855
15948
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
14856
15949
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
@@ -14861,10 +15954,10 @@ export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
14861
15954
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
14862
15955
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
14863
15956
  export declare const ApiKeyPayloadFragmentDoc: DocumentNode<ApiKeyPayloadFragment, unknown>;
14864
- export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragment, unknown>;
14865
15957
  export declare const AttachmentFragmentDoc: DocumentNode<AttachmentFragment, unknown>;
14866
15958
  export declare const AttachmentConnectionFragmentDoc: DocumentNode<AttachmentConnectionFragment, unknown>;
14867
15959
  export declare const AttachmentPayloadFragmentDoc: DocumentNode<AttachmentPayloadFragment, unknown>;
15960
+ export declare const AttachmentSourcesPayloadFragmentDoc: DocumentNode<AttachmentSourcesPayloadFragment, unknown>;
14868
15961
  export declare const AuditEntryFragmentDoc: DocumentNode<AuditEntryFragment, unknown>;
14869
15962
  export declare const AuditEntryConnectionFragmentDoc: DocumentNode<AuditEntryConnectionFragment, unknown>;
14870
15963
  export declare const AuditEntryTypeFragmentDoc: DocumentNode<AuditEntryTypeFragment, unknown>;
@@ -14895,15 +15988,18 @@ export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSear
14895
15988
  export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
14896
15989
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
14897
15990
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
15991
+ export declare const EmbedFragmentDoc: DocumentNode<EmbedFragment, unknown>;
15992
+ export declare const EmbedPayloadFragmentDoc: DocumentNode<EmbedPayloadFragment, unknown>;
14898
15993
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
14899
15994
  export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
14900
15995
  export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
14901
- export declare const EventPayloadFragmentDoc: DocumentNode<EventPayloadFragment, unknown>;
14902
15996
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
14903
15997
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
14904
15998
  export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
14905
15999
  export declare const FigmaEmbedFragmentDoc: DocumentNode<FigmaEmbedFragment, unknown>;
14906
16000
  export declare const FigmaEmbedPayloadFragmentDoc: DocumentNode<FigmaEmbedPayloadFragment, unknown>;
16001
+ export declare const FirstResponderScheduleFragmentDoc: DocumentNode<FirstResponderScheduleFragment, unknown>;
16002
+ export declare const FirstResponderScheduleConnectionFragmentDoc: DocumentNode<FirstResponderScheduleConnectionFragment, unknown>;
14907
16003
  export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
14908
16004
  export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
14909
16005
  export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
@@ -14941,11 +16037,7 @@ export declare const IssueSearchPayloadFragmentDoc: DocumentNode<IssueSearchPayl
14941
16037
  export declare const IssueSearchResultConnectionFragmentDoc: DocumentNode<IssueSearchResultConnectionFragment, unknown>;
14942
16038
  export declare const LogoutResponseFragmentDoc: DocumentNode<LogoutResponseFragment, unknown>;
14943
16039
  export declare const NodeFragmentDoc: DocumentNode<NodeFragment, unknown>;
14944
- export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
14945
- export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
14946
- export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
14947
- export declare const ProjectNotificationFragmentDoc: DocumentNode<ProjectNotificationFragment, unknown>;
14948
- export declare const NotificationFragmentDoc: DocumentNode<NotificationFragment, unknown>;
16040
+ export declare const NotificationBatchActionPayloadFragmentDoc: DocumentNode<NotificationBatchActionPayloadFragment, unknown>;
14949
16041
  export declare const NotificationConnectionFragmentDoc: DocumentNode<NotificationConnectionFragment, unknown>;
14950
16042
  export declare const NotificationPayloadFragmentDoc: DocumentNode<NotificationPayloadFragment, unknown>;
14951
16043
  export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
@@ -15065,6 +16157,15 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
15065
16157
  issueId: Scalars["String"];
15066
16158
  jiraIssueId: Scalars["String"];
15067
16159
  }>>;
16160
+ export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSlackMutation, Exact<{
16161
+ channel: Scalars["String"];
16162
+ id?: Maybe<string> | undefined;
16163
+ issueId: Scalars["String"];
16164
+ latest: Scalars["String"];
16165
+ title?: Maybe<string> | undefined;
16166
+ ts?: Maybe<string> | undefined;
16167
+ url: Scalars["String"];
16168
+ }>>;
15068
16169
  export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMutation, Exact<{
15069
16170
  id?: Maybe<string> | undefined;
15070
16171
  issueId: Scalars["String"];
@@ -15075,6 +16176,9 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
15075
16176
  issueId: Scalars["String"];
15076
16177
  ticketId: Scalars["String"];
15077
16178
  }>>;
16179
+ export declare const AttachmentUnsyncSlackDocument: DocumentNode<AttachmentUnsyncSlackMutation, Exact<{
16180
+ id: Scalars["String"];
16181
+ }>>;
15078
16182
  export declare const UpdateAttachmentDocument: DocumentNode<UpdateAttachmentMutation, Exact<{
15079
16183
  id: Scalars["String"];
15080
16184
  input: AttachmentUpdateInput;
@@ -15144,9 +16248,6 @@ export declare const CreateEmojiDocument: DocumentNode<CreateEmojiMutation, Exac
15144
16248
  export declare const DeleteEmojiDocument: DocumentNode<DeleteEmojiMutation, Exact<{
15145
16249
  id: Scalars["String"];
15146
16250
  }>>;
15147
- export declare const CreateEventDocument: DocumentNode<CreateEventMutation, Exact<{
15148
- input: EventCreateInput;
15149
- }>>;
15150
16251
  export declare const CreateFavoriteDocument: DocumentNode<CreateFavoriteMutation, Exact<{
15151
16252
  input: FavoriteCreateInput;
15152
16253
  }>>;
@@ -15231,11 +16332,11 @@ export declare const IntegrationSlackDocument: DocumentNode<IntegrationSlackMuta
15231
16332
  redirectUri: Scalars["String"];
15232
16333
  shouldUseV2Auth?: Maybe<boolean> | undefined;
15233
16334
  }>>;
15234
- export declare const IntegrationSlackImportEmojisDocument: DocumentNode<IntegrationSlackImportEmojisMutation, Exact<{
16335
+ export declare const IntegrationSlackAsksDocument: DocumentNode<IntegrationSlackAsksMutation, Exact<{
15235
16336
  code: Scalars["String"];
15236
16337
  redirectUri: Scalars["String"];
15237
16338
  }>>;
15238
- export declare const IntegrationSlackIntakeDocument: DocumentNode<IntegrationSlackIntakeMutation, Exact<{
16339
+ export declare const IntegrationSlackImportEmojisDocument: DocumentNode<IntegrationSlackImportEmojisMutation, Exact<{
15239
16340
  code: Scalars["String"];
15240
16341
  redirectUri: Scalars["String"];
15241
16342
  }>>;
@@ -15360,9 +16461,6 @@ export declare const UpdateIssueImportDocument: DocumentNode<UpdateIssueImportMu
15360
16461
  id: Scalars["String"];
15361
16462
  input: IssueImportUpdateInput;
15362
16463
  }>>;
15363
- export declare const ArchiveIssueLabelDocument: DocumentNode<ArchiveIssueLabelMutation, Exact<{
15364
- id: Scalars["String"];
15365
- }>>;
15366
16464
  export declare const CreateIssueLabelDocument: DocumentNode<CreateIssueLabelMutation, Exact<{
15367
16465
  input: IssueLabelCreateInput;
15368
16466
  replaceTeamLabels?: Maybe<boolean> | undefined;
@@ -15407,6 +16505,20 @@ export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
15407
16505
  export declare const ArchiveNotificationDocument: DocumentNode<ArchiveNotificationMutation, Exact<{
15408
16506
  id: Scalars["String"];
15409
16507
  }>>;
16508
+ export declare const NotificationArchiveAllDocument: DocumentNode<NotificationArchiveAllMutation, Exact<{
16509
+ input: NotificationEntityInput;
16510
+ }>>;
16511
+ export declare const NotificationMarkReadAllDocument: DocumentNode<NotificationMarkReadAllMutation, Exact<{
16512
+ input: NotificationEntityInput;
16513
+ readAt: Scalars["DateTime"];
16514
+ }>>;
16515
+ export declare const NotificationMarkUnreadAllDocument: DocumentNode<NotificationMarkUnreadAllMutation, Exact<{
16516
+ input: NotificationEntityInput;
16517
+ }>>;
16518
+ export declare const NotificationSnoozeAllDocument: DocumentNode<NotificationSnoozeAllMutation, Exact<{
16519
+ input: NotificationEntityInput;
16520
+ snoozedUntilAt: Scalars["DateTime"];
16521
+ }>>;
15410
16522
  export declare const CreateNotificationSubscriptionDocument: DocumentNode<CreateNotificationSubscriptionMutation, Exact<{
15411
16523
  input: NotificationSubscriptionCreateInput;
15412
16524
  }>>;
@@ -15420,6 +16532,10 @@ export declare const UpdateNotificationSubscriptionDocument: DocumentNode<Update
15420
16532
  export declare const UnarchiveNotificationDocument: DocumentNode<UnarchiveNotificationMutation, Exact<{
15421
16533
  id: Scalars["String"];
15422
16534
  }>>;
16535
+ export declare const NotificationUnsnoozeAllDocument: DocumentNode<NotificationUnsnoozeAllMutation, Exact<{
16536
+ input: NotificationEntityInput;
16537
+ unsnoozedAt: Scalars["DateTime"];
16538
+ }>>;
15423
16539
  export declare const UpdateNotificationDocument: DocumentNode<UpdateNotificationMutation, Exact<{
15424
16540
  id: Scalars["String"];
15425
16541
  input: NotificationUpdateInput;
@@ -15901,6 +17017,12 @@ export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
15901
17017
  last?: Maybe<number> | undefined;
15902
17018
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15903
17019
  }>>;
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
+ }>>;
15904
17026
  export declare const EmojiDocument: DocumentNode<EmojiQuery, Exact<{
15905
17027
  id: Scalars["String"];
15906
17028
  }>>;
@@ -16111,6 +17233,16 @@ export declare const IssueRelationsDocument: DocumentNode<IssueRelationsQuery, E
16111
17233
  last?: Maybe<number> | undefined;
16112
17234
  orderBy?: Maybe<PaginationOrderBy> | undefined;
16113
17235
  }>>;
17236
+ export declare const IssueSearchDocument: DocumentNode<IssueSearchQuery, Exact<{
17237
+ after?: Maybe<string> | undefined;
17238
+ before?: Maybe<string> | undefined;
17239
+ filter?: Maybe<IssueFilter> | undefined;
17240
+ first?: Maybe<number> | undefined;
17241
+ includeArchived?: Maybe<boolean> | undefined;
17242
+ last?: Maybe<number> | undefined;
17243
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
17244
+ query?: Maybe<string> | undefined;
17245
+ }>>;
16114
17246
  export declare const IssueVcsBranchSearchDocument: DocumentNode<IssueVcsBranchSearchQuery, Exact<{
16115
17247
  branchName: Scalars["String"];
16116
17248
  }>>;
@@ -16616,6 +17748,9 @@ export declare const TemplateDocument: DocumentNode<TemplateQuery, Exact<{
16616
17748
  export declare const TemplatesDocument: DocumentNode<TemplatesQuery, Exact<{
16617
17749
  [key: string]: never;
16618
17750
  }>>;
17751
+ export declare const TemplatesForIntegrationDocument: DocumentNode<TemplatesForIntegrationQuery, Exact<{
17752
+ integrationType: Scalars["String"];
17753
+ }>>;
16619
17754
  export declare const UserDocument: DocumentNode<UserQuery, Exact<{
16620
17755
  id: Scalars["String"];
16621
17756
  }>>;