@linear/sdk 6.0.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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. */
@@ -575,6 +585,8 @@ export declare type ContactPayload = {
575
585
  };
576
586
  /** [INTERNAL] Input for sending a message to the Linear Sales team */
577
587
  export declare type ContactSalesCreateInput = {
588
+ /** Size of the company. */
589
+ companySize?: Maybe<Scalars["String"]>;
578
590
  /** Work email of the person requesting information. */
579
591
  email: Scalars["String"];
580
592
  /** The message the user sent. */
@@ -589,6 +601,13 @@ export declare type ContentComparator = {
589
601
  /** [Internal] Not-contains constraint. */
590
602
  notContains?: Maybe<Scalars["String"]>;
591
603
  };
604
+ export declare enum ContextViewType {
605
+ ActiveCycle = "activeCycle",
606
+ ActiveIssues = "activeIssues",
607
+ Backlog = "backlog",
608
+ Triage = "triage",
609
+ UpcomingCycle = "upcomingCycle"
610
+ }
592
611
  export declare type CreateCsvExportReportPayload = {
593
612
  __typename?: "CreateCsvExportReportPayload";
594
613
  /** Whether the operation was successful. */
@@ -639,8 +658,8 @@ export declare type CustomView = Node & {
639
658
  name: Scalars["String"];
640
659
  /** The organization of the custom view. */
641
660
  organization: Organization;
642
- /** [Deprecated] The user who owns the custom view. */
643
- owner: User;
661
+ /** [ALPHA] The user who owns the custom view. */
662
+ owner?: Maybe<User>;
644
663
  /** [ALPHA] The filter applied to projects in the custom view. */
645
664
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
646
665
  /** Whether the custom view is shared with everyone in the organization. */
@@ -653,6 +672,8 @@ export declare type CustomView = Node & {
653
672
  * been updated after creation.
654
673
  */
655
674
  updatedAt: Scalars["DateTime"];
675
+ /** [ALPHA] The user who last updated the custom view. */
676
+ updatedBy: User;
656
677
  };
657
678
  export declare type CustomViewConnection = {
658
679
  __typename?: "CustomViewConnection";
@@ -675,6 +696,8 @@ export declare type CustomViewCreateInput = {
675
696
  id?: Maybe<Scalars["String"]>;
676
697
  /** The name of the custom view. */
677
698
  name: Scalars["String"];
699
+ /** The owner of the custom view. */
700
+ ownerId?: Maybe<Scalars["String"]>;
678
701
  /** [ALPHA] The project filter applied to issues in the custom view. */
679
702
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
680
703
  /** Whether the custom view is shared with everyone in the organization. */
@@ -688,6 +711,42 @@ export declare type CustomViewEdge = {
688
711
  cursor: Scalars["String"];
689
712
  node: CustomView;
690
713
  };
714
+ /** A custom view notification subscription. */
715
+ export declare type CustomViewNotificationSubscription = Entity & Node & NotificationSubscription & {
716
+ __typename?: "CustomViewNotificationSubscription";
717
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
718
+ archivedAt?: Maybe<Scalars["DateTime"]>;
719
+ /** The type of view to which the notification subscription context is associated with. */
720
+ contextViewType?: Maybe<ContextViewType>;
721
+ /** The time at which the entity was created. */
722
+ createdAt: Scalars["DateTime"];
723
+ /** The custom view subscribed to. */
724
+ customView: CustomView;
725
+ /** The contextual cycle view associated with the notification subscription. */
726
+ cycle?: Maybe<Cycle>;
727
+ /** The unique identifier of the entity. */
728
+ id: Scalars["ID"];
729
+ /** The contextual label view associated with the notification subscription. */
730
+ label?: Maybe<IssueLabel>;
731
+ /** The type of subscription. */
732
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
733
+ /** The contextual project view associated with the notification subscription. */
734
+ project?: Maybe<Project>;
735
+ /** The user that subscribed to receive notifications. */
736
+ subscriber: User;
737
+ /** The team associated with the notification subscription. */
738
+ team?: Maybe<Team>;
739
+ /**
740
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
741
+ * 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
742
+ * been updated after creation.
743
+ */
744
+ updatedAt: Scalars["DateTime"];
745
+ /** The user view associated with the notification subscription. */
746
+ user?: Maybe<User>;
747
+ /** The type of user view to which the notification subscription context is associated with. */
748
+ userContextViewType?: Maybe<UserContextViewType>;
749
+ };
691
750
  export declare type CustomViewPayload = {
692
751
  __typename?: "CustomViewPayload";
693
752
  /** The custom view that was created or updated. */
@@ -719,6 +778,8 @@ export declare type CustomViewUpdateInput = {
719
778
  icon?: Maybe<Scalars["String"]>;
720
779
  /** The name of the custom view. */
721
780
  name?: Maybe<Scalars["String"]>;
781
+ /** The owner of the custom view. */
782
+ ownerId?: Maybe<Scalars["String"]>;
722
783
  /** [ALPHA] The project filter applied to issues in the custom view. */
723
784
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
724
785
  /** Whether the custom view is shared with everyone in the organization. */
@@ -794,6 +855,16 @@ export declare type CycleUncompletedIssuesUponCloseArgs = {
794
855
  last?: Maybe<Scalars["Int"]>;
795
856
  orderBy?: Maybe<PaginationOrderBy>;
796
857
  };
858
+ /** A generic payload return from entity archive mutations. */
859
+ export declare type CycleArchivePayload = ArchivePayload & {
860
+ __typename?: "CycleArchivePayload";
861
+ /** The archived/unarchived entity. Null if entity was deleted. */
862
+ entity?: Maybe<Cycle>;
863
+ /** The identifier of the last sync operation. */
864
+ lastSyncId: Scalars["Float"];
865
+ /** Whether the operation was successful. */
866
+ success: Scalars["Boolean"];
867
+ };
797
868
  export declare type CycleConnection = {
798
869
  __typename?: "CycleConnection";
799
870
  edges: Array<CycleEdge>;
@@ -859,6 +930,42 @@ export declare type CycleFilter = {
859
930
  /** Comparator for the updated at date. */
860
931
  updatedAt?: Maybe<DateComparator>;
861
932
  };
933
+ /** A cycle notification subscription. */
934
+ export declare type CycleNotificationSubscription = Entity & Node & NotificationSubscription & {
935
+ __typename?: "CycleNotificationSubscription";
936
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
937
+ archivedAt?: Maybe<Scalars["DateTime"]>;
938
+ /** The type of view to which the notification subscription context is associated with. */
939
+ contextViewType?: Maybe<ContextViewType>;
940
+ /** The time at which the entity was created. */
941
+ createdAt: Scalars["DateTime"];
942
+ /** The contextual custom view associated with the notification subscription. */
943
+ customView?: Maybe<CustomView>;
944
+ /** The cycle subscribed to. */
945
+ cycle: Cycle;
946
+ /** The unique identifier of the entity. */
947
+ id: Scalars["ID"];
948
+ /** The contextual label view associated with the notification subscription. */
949
+ label?: Maybe<IssueLabel>;
950
+ /** The type of subscription. */
951
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
952
+ /** The contextual project view associated with the notification subscription. */
953
+ project?: Maybe<Project>;
954
+ /** The user that subscribed to receive notifications. */
955
+ subscriber: User;
956
+ /** The team associated with the notification subscription. */
957
+ team?: Maybe<Team>;
958
+ /**
959
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
960
+ * 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
961
+ * been updated after creation.
962
+ */
963
+ updatedAt: Scalars["DateTime"];
964
+ /** The user view associated with the notification subscription. */
965
+ user?: Maybe<User>;
966
+ /** The type of user view to which the notification subscription context is associated with. */
967
+ userContextViewType?: Maybe<UserContextViewType>;
968
+ };
862
969
  export declare type CyclePayload = {
863
970
  __typename?: "CyclePayload";
864
971
  /** The Cycle that was created or updated. */
@@ -913,6 +1020,16 @@ export declare type DeleteOrganizationInput = {
913
1020
  /** The deletion code to confirm operation. */
914
1021
  deletionCode: Scalars["String"];
915
1022
  };
1023
+ /** A generic payload return from entity deletion mutations. */
1024
+ export declare type DeletePayload = ArchivePayload & {
1025
+ __typename?: "DeletePayload";
1026
+ /** The identifier of the deleted entity. */
1027
+ entityId: Scalars["String"];
1028
+ /** The identifier of the last sync operation. */
1029
+ lastSyncId: Scalars["Float"];
1030
+ /** Whether the operation was successful. */
1031
+ success: Scalars["Boolean"];
1032
+ };
916
1033
  /** A document for a project. */
917
1034
  export declare type Document = Node & {
918
1035
  __typename?: "Document";
@@ -1116,6 +1233,41 @@ export declare type EmailUserAccountAuthChallengeResponse = {
1116
1233
  /** Whether the operation was successful. */
1117
1234
  success: Scalars["Boolean"];
1118
1235
  };
1236
+ /** Information for creating embedded content for the provided URL */
1237
+ export declare type Embed = {
1238
+ __typename?: "Embed";
1239
+ /** The name of the author/owner of the resource */
1240
+ authorName?: Maybe<Scalars["String"]>;
1241
+ /** The description of the content */
1242
+ description?: Maybe<Scalars["String"]>;
1243
+ /** The height of embedded content (photo, video, rich) */
1244
+ height?: Maybe<Scalars["Float"]>;
1245
+ /** The HTML (video, rich) */
1246
+ html?: Maybe<Scalars["String"]>;
1247
+ /** The name of the provider */
1248
+ providerName?: Maybe<Scalars["String"]>;
1249
+ /** The height of the thumbnail preview image */
1250
+ thumbnailHeight?: Maybe<Scalars["Float"]>;
1251
+ /** The URL of the thumbnail preview image */
1252
+ thumbnailUrl?: Maybe<Scalars["String"]>;
1253
+ /** The width of the thumbnail preview image */
1254
+ thumbnailWidth?: Maybe<Scalars["Float"]>;
1255
+ /** Title for the returned embed view */
1256
+ title?: Maybe<Scalars["String"]>;
1257
+ /** The type of embed */
1258
+ type: Scalars["String"];
1259
+ /** The asset URL (photo) */
1260
+ url?: Maybe<Scalars["String"]>;
1261
+ /** The width of embedded content (photo, video, rich) */
1262
+ width?: Maybe<Scalars["Float"]>;
1263
+ };
1264
+ export declare type EmbedPayload = {
1265
+ __typename?: "EmbedPayload";
1266
+ /** Embed information */
1267
+ embed?: Maybe<Embed>;
1268
+ /** Whether the query was successful */
1269
+ success: Scalars["Boolean"];
1270
+ };
1119
1271
  /** A custom emoji. */
1120
1272
  export declare type Emoji = Node & {
1121
1273
  __typename?: "Emoji";
@@ -1211,23 +1363,6 @@ export declare type EstimateComparator = {
1211
1363
  /** Compound filters, all of which need to be matched by the estimate. */
1212
1364
  or?: Maybe<Array<NullableNumberComparator>>;
1213
1365
  };
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
1366
  /** [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
1367
  export declare type ExternalUser = Node & {
1233
1368
  __typename?: "ExternalUser";
@@ -1291,6 +1426,8 @@ export declare type Favorite = Node & {
1291
1426
  issue?: Maybe<Issue>;
1292
1427
  /** The favorited label. */
1293
1428
  label?: Maybe<IssueLabel>;
1429
+ /** The owner of the favorite. */
1430
+ owner: User;
1294
1431
  /** The parent folder of the favorite. */
1295
1432
  parent?: Maybe<Favorite>;
1296
1433
  /** The team of the favorited predefined view. */
@@ -1313,8 +1450,8 @@ export declare type Favorite = Node & {
1313
1450
  * been updated after creation.
1314
1451
  */
1315
1452
  updatedAt: Scalars["DateTime"];
1316
- /** The owner of the favorite. */
1317
- user: User;
1453
+ /** The favorited user. */
1454
+ user?: Maybe<User>;
1318
1455
  };
1319
1456
  /** User favorites presented in the sidebar. */
1320
1457
  export declare type FavoriteChildrenArgs = {
@@ -1360,6 +1497,8 @@ export declare type FavoriteCreateInput = {
1360
1497
  roadmapId?: Maybe<Scalars["String"]>;
1361
1498
  /** The position of the item in the favorites list. */
1362
1499
  sortOrder?: Maybe<Scalars["Float"]>;
1500
+ /** The identifier of the user to favorite. */
1501
+ userId?: Maybe<Scalars["String"]>;
1363
1502
  };
1364
1503
  export declare type FavoriteEdge = {
1365
1504
  __typename?: "FavoriteEdge";
@@ -1403,6 +1542,42 @@ export declare type FigmaEmbedPayload = {
1403
1542
  /** Whether the operation was successful. */
1404
1543
  success: Scalars["Boolean"];
1405
1544
  };
1545
+ /** A schedule for a team's first responder. */
1546
+ export declare type FirstResponderSchedule = Node & {
1547
+ __typename?: "FirstResponderSchedule";
1548
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
1549
+ archivedAt?: Maybe<Scalars["DateTime"]>;
1550
+ /** The time at which the entity was created. */
1551
+ createdAt: Scalars["DateTime"];
1552
+ /** The unique identifier of the entity. */
1553
+ id: Scalars["ID"];
1554
+ /** The integration used for scheduling. */
1555
+ integration: Integration;
1556
+ /** The id of the integration schedule used for scheduling. */
1557
+ integrationScheduleId?: Maybe<Scalars["String"]>;
1558
+ /** The current schedule and available schedules. */
1559
+ scheduleData: Scalars["JSONObject"];
1560
+ /** The team to which the schedule belongs to. */
1561
+ team: Team;
1562
+ /**
1563
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1564
+ * 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
1565
+ * been updated after creation.
1566
+ */
1567
+ updatedAt: Scalars["DateTime"];
1568
+ };
1569
+ export declare type FirstResponderScheduleConnection = {
1570
+ __typename?: "FirstResponderScheduleConnection";
1571
+ edges: Array<FirstResponderScheduleEdge>;
1572
+ nodes: Array<FirstResponderSchedule>;
1573
+ pageInfo: PageInfo;
1574
+ };
1575
+ export declare type FirstResponderScheduleEdge = {
1576
+ __typename?: "FirstResponderScheduleEdge";
1577
+ /** Used in `before` and `after` args */
1578
+ cursor: Scalars["String"];
1579
+ node: FirstResponderSchedule;
1580
+ };
1406
1581
  export declare type FrontAttachmentPayload = {
1407
1582
  __typename?: "FrontAttachmentPayload";
1408
1583
  /** The identifier of the last sync operation. */
@@ -1602,6 +1777,7 @@ export declare type IntegrationSettings = {
1602
1777
  intercom?: Maybe<IntercomSettings>;
1603
1778
  jira?: Maybe<JiraSettings>;
1604
1779
  notion?: Maybe<NotionSettings>;
1780
+ pagerDuty?: Maybe<PagerDutySettings>;
1605
1781
  sentry?: Maybe<SentrySettings>;
1606
1782
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
1607
1783
  slackPost?: Maybe<SlackPostSettings>;
@@ -1615,6 +1791,7 @@ export declare type IntegrationSettingsInput = {
1615
1791
  intercom?: Maybe<IntercomSettingsInput>;
1616
1792
  jira?: Maybe<JiraSettingsInput>;
1617
1793
  notion?: Maybe<NotionSettingsInput>;
1794
+ pagerDuty?: Maybe<PagerDutyInput>;
1618
1795
  sentry?: Maybe<SentrySettingsInput>;
1619
1796
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
1620
1797
  slackPost?: Maybe<SlackPostSettingsInput>;
@@ -1996,6 +2173,16 @@ export declare type IssueSubscribersArgs = {
1996
2173
  last?: Maybe<Scalars["Int"]>;
1997
2174
  orderBy?: Maybe<PaginationOrderBy>;
1998
2175
  };
2176
+ /** A generic payload return from entity archive mutations. */
2177
+ export declare type IssueArchivePayload = ArchivePayload & {
2178
+ __typename?: "IssueArchivePayload";
2179
+ /** The archived/unarchived entity. Null if entity was deleted. */
2180
+ entity?: Maybe<Issue>;
2181
+ /** The identifier of the last sync operation. */
2182
+ lastSyncId: Scalars["Float"];
2183
+ /** Whether the operation was successful. */
2184
+ success: Scalars["Boolean"];
2185
+ };
1999
2186
  export declare type IssueBatchPayload = {
2000
2187
  __typename?: "IssueBatchPayload";
2001
2188
  /** The issues that were updated. */
@@ -2143,8 +2330,10 @@ export declare type IssueCreateInput = {
2143
2330
  subscriberIds?: Maybe<Array<Scalars["String"]>>;
2144
2331
  /** The identifier or key of the team associated with the issue. */
2145
2332
  teamId: Scalars["String"];
2333
+ /** The identifier of a template the issue should be created from. If other values are provided in the input, they will override template values. */
2334
+ templateId?: Maybe<Scalars["String"]>;
2146
2335
  /** The title of the issue. */
2147
- title: Scalars["String"];
2336
+ title?: Maybe<Scalars["String"]>;
2148
2337
  };
2149
2338
  /** [Internal] A draft issue. */
2150
2339
  export declare type IssueDraft = Node & {
@@ -2561,7 +2750,7 @@ export declare type IssueLabelCollectionFilter = {
2561
2750
  /** Filters that needs to be matched by some issue labels. */
2562
2751
  some?: Maybe<IssueLabelFilter>;
2563
2752
  /** Filters that the issue labels team must satisfy. */
2564
- team?: Maybe<TeamFilter>;
2753
+ team?: Maybe<NullableTeamFilter>;
2565
2754
  /** Comparator for the updated at date. */
2566
2755
  updatedAt?: Maybe<DateComparator>;
2567
2756
  };
@@ -2608,7 +2797,7 @@ export declare type IssueLabelFilter = {
2608
2797
  /** Filters that the issue label's parent label must satisfy. */
2609
2798
  parent?: Maybe<IssueLabelFilter>;
2610
2799
  /** Filters that the issue labels team must satisfy. */
2611
- team?: Maybe<TeamFilter>;
2800
+ team?: Maybe<NullableTeamFilter>;
2612
2801
  /** Comparator for the updated at date. */
2613
2802
  updatedAt?: Maybe<DateComparator>;
2614
2803
  };
@@ -3077,6 +3266,42 @@ export declare type JoinOrganizationInput = {
3077
3266
  /** The identifier of the organization. */
3078
3267
  organizationId: Scalars["String"];
3079
3268
  };
3269
+ /** A label notification subscription. */
3270
+ export declare type LabelNotificationSubscription = Entity & Node & NotificationSubscription & {
3271
+ __typename?: "LabelNotificationSubscription";
3272
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
3273
+ archivedAt?: Maybe<Scalars["DateTime"]>;
3274
+ /** The type of view to which the notification subscription context is associated with. */
3275
+ contextViewType?: Maybe<ContextViewType>;
3276
+ /** The time at which the entity was created. */
3277
+ createdAt: Scalars["DateTime"];
3278
+ /** The contextual custom view associated with the notification subscription. */
3279
+ customView?: Maybe<CustomView>;
3280
+ /** The contextual cycle view associated with the notification subscription. */
3281
+ cycle?: Maybe<Cycle>;
3282
+ /** The unique identifier of the entity. */
3283
+ id: Scalars["ID"];
3284
+ /** The label subscribed to. */
3285
+ label: IssueLabel;
3286
+ /** The type of subscription. */
3287
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
3288
+ /** The contextual project view associated with the notification subscription. */
3289
+ project?: Maybe<Project>;
3290
+ /** The user that subscribed to receive notifications. */
3291
+ subscriber: User;
3292
+ /** The team associated with the notification subscription. */
3293
+ team?: Maybe<Team>;
3294
+ /**
3295
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
3296
+ * 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
3297
+ * been updated after creation.
3298
+ */
3299
+ updatedAt: Scalars["DateTime"];
3300
+ /** The user view associated with the notification subscription. */
3301
+ user?: Maybe<User>;
3302
+ /** The type of user view to which the notification subscription context is associated with. */
3303
+ userContextViewType?: Maybe<UserContextViewType>;
3304
+ };
3080
3305
  export declare type LogoutResponse = {
3081
3306
  __typename?: "LogoutResponse";
3082
3307
  /** Whether the operation was successful. */
@@ -3089,16 +3314,16 @@ export declare type Mutation = {
3089
3314
  /** Creates a new API key. */
3090
3315
  apiKeyCreate: ApiKeyPayload;
3091
3316
  /** Deletes an API key. */
3092
- apiKeyDelete: ArchivePayload;
3317
+ apiKeyDelete: DeletePayload;
3093
3318
  /**
3094
3319
  * [DEPRECATED] Archives an issue attachment.
3095
3320
  * @deprecated This mutation is deprecated, please use `attachmentDelete` instead
3096
3321
  */
3097
- attachmentArchive: ArchivePayload;
3322
+ attachmentArchive: AttachmentArchivePayload;
3098
3323
  /** Creates a new attachment, or updates existing if the same `url` and `issueId` is used. */
3099
3324
  attachmentCreate: AttachmentPayload;
3100
3325
  /** Deletes an issue attachment. */
3101
- attachmentDelete: ArchivePayload;
3326
+ attachmentDelete: DeletePayload;
3102
3327
  /** Link an existing Discord message to an issue. */
3103
3328
  attachmentLinkDiscord: AttachmentPayload;
3104
3329
  /** Link an existing Front conversation to an issue. */
@@ -3107,16 +3332,20 @@ export declare type Mutation = {
3107
3332
  attachmentLinkIntercom: AttachmentPayload;
3108
3333
  /** Link an existing Jira issue to an issue. */
3109
3334
  attachmentLinkJiraIssue: AttachmentPayload;
3335
+ /** Link an existing Slack message to an issue. */
3336
+ attachmentLinkSlack: AttachmentPayload;
3110
3337
  /** Link any url to an issue. */
3111
3338
  attachmentLinkURL: AttachmentPayload;
3112
3339
  /** Link an existing Zendesk ticket to an issue. */
3113
3340
  attachmentLinkZendesk: AttachmentPayload;
3341
+ /** Unsyncs an existing synced Slack attachment. */
3342
+ attachmentUnsyncSlack: AttachmentPayload;
3114
3343
  /** Updates an existing issue attachment. */
3115
3344
  attachmentUpdate: AttachmentPayload;
3116
3345
  /** Creates a new comment. */
3117
3346
  commentCreate: CommentPayload;
3118
3347
  /** Deletes a comment. */
3119
- commentDelete: ArchivePayload;
3348
+ commentDelete: DeletePayload;
3120
3349
  /** Updates a comment. */
3121
3350
  commentUpdate: CommentPayload;
3122
3351
  /** Saves user message. */
@@ -3130,11 +3359,11 @@ export declare type Mutation = {
3130
3359
  /** Creates a new custom view. */
3131
3360
  customViewCreate: CustomViewPayload;
3132
3361
  /** Deletes a custom view. */
3133
- customViewDelete: ArchivePayload;
3362
+ customViewDelete: DeletePayload;
3134
3363
  /** Updates a custom view. */
3135
3364
  customViewUpdate: CustomViewPayload;
3136
3365
  /** Archives a cycle. */
3137
- cycleArchive: ArchivePayload;
3366
+ cycleArchive: CycleArchivePayload;
3138
3367
  /** Creates a new cycle. */
3139
3368
  cycleCreate: CyclePayload;
3140
3369
  /** Updates a cycle. */
@@ -3142,7 +3371,7 @@ export declare type Mutation = {
3142
3371
  /** Creates a new document. */
3143
3372
  documentCreate: DocumentPayload;
3144
3373
  /** Deletes a document. */
3145
- documentDelete: ArchivePayload;
3374
+ documentDelete: DeletePayload;
3146
3375
  /** Updates a document. */
3147
3376
  documentUpdate: DocumentPayload;
3148
3377
  /** [INTERNAL] Subscribes the email to the newsletter. */
@@ -3156,13 +3385,11 @@ export declare type Mutation = {
3156
3385
  /** Creates a custom emoji. */
3157
3386
  emojiCreate: EmojiPayload;
3158
3387
  /** Deletes an emoji. */
3159
- emojiDelete: ArchivePayload;
3160
- /** [Deprecated] Creates a new event. */
3161
- eventCreate: EventPayload;
3388
+ emojiDelete: DeletePayload;
3162
3389
  /** Creates a new favorite (project, cycle etc). */
3163
3390
  favoriteCreate: FavoritePayload;
3164
3391
  /** Deletes a favorite reference. */
3165
- favoriteDelete: ArchivePayload;
3392
+ favoriteDelete: DeletePayload;
3166
3393
  /** Updates a favorite. */
3167
3394
  favoriteUpdate: FavoritePayload;
3168
3395
  /** XHR request payload to upload an images, video and other attachments directly to Linear's cloud storage. */
@@ -3174,7 +3401,7 @@ export declare type Mutation = {
3174
3401
  /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
3175
3402
  importFileUpload: UploadPayload;
3176
3403
  /** Deletes an integration. */
3177
- integrationDelete: ArchivePayload;
3404
+ integrationDelete: DeletePayload;
3178
3405
  /** Integrates the organization with Discord. */
3179
3406
  integrationDiscord: IntegrationPayload;
3180
3407
  /** Integrates the organization with Figma. */
@@ -3203,6 +3430,8 @@ export declare type Mutation = {
3203
3430
  * @deprecated Not available.
3204
3431
  */
3205
3432
  integrationLoom: IntegrationPayload;
3433
+ /** [INTERNAL] Integrates the organization with PagerDuty. */
3434
+ integrationPageDutyConnect: IntegrationPayload;
3206
3435
  /** Requests a currently unavailable integration. */
3207
3436
  integrationRequest: IntegrationRequestPayload;
3208
3437
  /** Integrates the organization with Sentry. */
@@ -3211,10 +3440,10 @@ export declare type Mutation = {
3211
3440
  integrationSettingsUpdate: IntegrationPayload;
3212
3441
  /** Integrates the organization with Slack. */
3213
3442
  integrationSlack: IntegrationPayload;
3443
+ /** Integrates the organization with the Slack Asks app */
3444
+ integrationSlackAsks: IntegrationPayload;
3214
3445
  /** Imports custom emojis from your Slack workspace. */
3215
3446
  integrationSlackImportEmojis: IntegrationPayload;
3216
- /** Integrates the organization with Slack for issue intake. */
3217
- integrationSlackIntake: IntegrationPayload;
3218
3447
  /** Slack integration for organization level project update notifications. */
3219
3448
  integrationSlackOrgProjectUpdatesPost: IntegrationPayload;
3220
3449
  /** Integrates your personal notifications with Slack. */
@@ -3226,7 +3455,7 @@ export declare type Mutation = {
3226
3455
  /** Creates a new integrationTemplate join. */
3227
3456
  integrationTemplateCreate: IntegrationTemplatePayload;
3228
3457
  /** Deletes a integrationTemplate. */
3229
- integrationTemplateDelete: ArchivePayload;
3458
+ integrationTemplateDelete: DeletePayload;
3230
3459
  /** Updates the organization's Slack integration. */
3231
3460
  integrationUpdateSlack: IntegrationPayload;
3232
3461
  /** Integrates the organization with Zendesk. */
@@ -3236,13 +3465,13 @@ export declare type Mutation = {
3236
3465
  /** Updates settings related to integrations for a project or a team. */
3237
3466
  integrationsSettingsUpdate: IntegrationsSettingsPayload;
3238
3467
  /** Archives an issue. */
3239
- issueArchive: ArchivePayload;
3468
+ issueArchive: IssueArchivePayload;
3240
3469
  /** Updates multiple issues at once. */
3241
3470
  issueBatchUpdate: IssueBatchPayload;
3242
3471
  /** Creates a new issue. */
3243
3472
  issueCreate: IssuePayload;
3244
3473
  /** Deletes (trashes) an issue. */
3245
- issueDelete: ArchivePayload;
3474
+ issueDelete: IssueArchivePayload;
3246
3475
  /** [INTERNAL] Updates an issue description from the Front app to handle Front attachments correctly. */
3247
3476
  issueDescriptionUpdateFromFront: IssuePayload;
3248
3477
  /** Kicks off an Asana import job. */
@@ -3261,27 +3490,22 @@ export declare type Mutation = {
3261
3490
  issueImportProcess: IssueImportPayload;
3262
3491
  /** Updates the mapping for the issue import. */
3263
3492
  issueImportUpdate: IssueImportPayload;
3264
- /**
3265
- * Deletes an issue label.
3266
- * @deprecated Labels are deleted instead of archived now!
3267
- */
3268
- issueLabelArchive: ArchivePayload;
3269
3493
  /** Creates a new label. */
3270
3494
  issueLabelCreate: IssueLabelPayload;
3271
3495
  /** Deletes an issue label. */
3272
- issueLabelDelete: ArchivePayload;
3496
+ issueLabelDelete: DeletePayload;
3273
3497
  /** Updates an label. */
3274
3498
  issueLabelUpdate: IssueLabelPayload;
3275
3499
  /** Creates a new issue relation. */
3276
3500
  issueRelationCreate: IssueRelationPayload;
3277
3501
  /** Deletes an issue relation. */
3278
- issueRelationDelete: ArchivePayload;
3502
+ issueRelationDelete: DeletePayload;
3279
3503
  /** Updates an issue relation. */
3280
3504
  issueRelationUpdate: IssueRelationPayload;
3281
3505
  /** Adds an issue reminder. Will cause a notification to be sent when the issue reminder time is reached. */
3282
3506
  issueReminder: IssuePayload;
3283
3507
  /** Unarchives an issue. */
3284
- issueUnarchive: ArchivePayload;
3508
+ issueUnarchive: IssueArchivePayload;
3285
3509
  /** Updates an issue. */
3286
3510
  issueUpdate: IssuePayload;
3287
3511
  /** [INTERNAL] Connects the organization with a Jira Personal Access Token. */
@@ -3293,15 +3517,25 @@ export declare type Mutation = {
3293
3517
  /** Logout of all clients. */
3294
3518
  logout: LogoutResponse;
3295
3519
  /** Archives a notification. */
3296
- notificationArchive: ArchivePayload;
3297
- /** Creates a new notification subscription for a team or a project. */
3520
+ notificationArchive: NotificationArchivePayload;
3521
+ /** Archives all of the user's past notifications for the associated entity. */
3522
+ notificationArchiveAll: NotificationBatchActionPayload;
3523
+ /** Marks all past notifications for the associated entity as read. */
3524
+ notificationMarkReadAll: NotificationBatchActionPayload;
3525
+ /** Marks all past notifications for the associated entity as unread. */
3526
+ notificationMarkUnreadAll: NotificationBatchActionPayload;
3527
+ /** Snoozes a notification and all past notifications for the associated entity. */
3528
+ notificationSnoozeAll: NotificationBatchActionPayload;
3529
+ /** Creates a new notification subscription for a cycle, custom view, label, project or team. */
3298
3530
  notificationSubscriptionCreate: NotificationSubscriptionPayload;
3299
3531
  /** Deletes a notification subscription reference. */
3300
- notificationSubscriptionDelete: ArchivePayload;
3532
+ notificationSubscriptionDelete: DeletePayload;
3301
3533
  /** Updates a notification subscription. */
3302
3534
  notificationSubscriptionUpdate: NotificationSubscriptionPayload;
3303
3535
  /** Unarchives a notification. */
3304
- notificationUnarchive: ArchivePayload;
3536
+ notificationUnarchive: NotificationArchivePayload;
3537
+ /** Unsnoozes a notification and all past notifications for the associated entity. */
3538
+ notificationUnsnoozeAll: NotificationBatchActionPayload;
3305
3539
  /** Updates a notification. */
3306
3540
  notificationUpdate: NotificationPayload;
3307
3541
  /** Cancels the deletion of an organization. Administrator privileges required. */
@@ -3315,13 +3549,13 @@ export declare type Mutation = {
3315
3549
  /** [INTERNAL] Adds a domain to be allowed for an organization. */
3316
3550
  organizationDomainCreate: OrganizationDomainPayload;
3317
3551
  /** Deletes a domain. */
3318
- organizationDomainDelete: ArchivePayload;
3552
+ organizationDomainDelete: DeletePayload;
3319
3553
  /** [INTERNAL] Verifies a domain to be added to an organization. */
3320
3554
  organizationDomainVerify: OrganizationDomainPayload;
3321
3555
  /** Creates a new organization invite. */
3322
3556
  organizationInviteCreate: OrganizationInvitePayload;
3323
3557
  /** Deletes an organization invite. */
3324
- organizationInviteDelete: ArchivePayload;
3558
+ organizationInviteDelete: DeletePayload;
3325
3559
  /** Updates an organization invite. */
3326
3560
  organizationInviteUpdate: OrganizationInvitePayload;
3327
3561
  /** Starts a plus trial for the organization. Administrator privileges required. */
@@ -3332,31 +3566,31 @@ export declare type Mutation = {
3332
3566
  * Archives a project.
3333
3567
  * @deprecated Deprecated in favor of projectDelete.
3334
3568
  */
3335
- projectArchive: ArchivePayload;
3569
+ projectArchive: ProjectArchivePayload;
3336
3570
  /** Creates a new project. */
3337
3571
  projectCreate: ProjectPayload;
3338
3572
  /** Deletes a project. All issues will be disassociated from the deleted project. */
3339
- projectDelete: ArchivePayload;
3573
+ projectDelete: DeletePayload;
3340
3574
  /** Creates a new project link. */
3341
3575
  projectLinkCreate: ProjectLinkPayload;
3342
3576
  /** Deletes a project link. */
3343
- projectLinkDelete: ArchivePayload;
3577
+ projectLinkDelete: DeletePayload;
3344
3578
  /** Updates a project link. */
3345
3579
  projectLinkUpdate: ProjectLinkPayload;
3346
3580
  /** Creates a new project milestone. */
3347
3581
  projectMilestoneCreate: ProjectMilestonePayload;
3348
3582
  /** Deletes a project milestone. */
3349
- projectMilestoneDelete: ArchivePayload;
3583
+ projectMilestoneDelete: DeletePayload;
3350
3584
  /** Updates a project milestone. */
3351
3585
  projectMilestoneUpdate: ProjectMilestonePayload;
3352
3586
  /** Unarchives a project. */
3353
- projectUnarchive: ArchivePayload;
3587
+ projectUnarchive: ProjectArchivePayload;
3354
3588
  /** Updates a project. */
3355
3589
  projectUpdate: ProjectPayload;
3356
3590
  /** Creates a new project update. */
3357
3591
  projectUpdateCreate: ProjectUpdatePayload;
3358
3592
  /** Deletes a project update. */
3359
- projectUpdateDelete: ArchivePayload;
3593
+ projectUpdateDelete: DeletePayload;
3360
3594
  /** Creates a new interaction on a project update. */
3361
3595
  projectUpdateInteractionCreate: ProjectUpdateInteractionPayload;
3362
3596
  /** Mark a project update as read. */
@@ -3370,25 +3604,25 @@ export declare type Mutation = {
3370
3604
  /** Creates a new reaction. */
3371
3605
  reactionCreate: ReactionPayload;
3372
3606
  /** Deletes a reaction. */
3373
- reactionDelete: ArchivePayload;
3607
+ reactionDelete: DeletePayload;
3374
3608
  /** Manually update Google Sheets data. */
3375
3609
  refreshGoogleSheetsData: IntegrationPayload;
3376
3610
  /** Re-send an organization invite. */
3377
- resendOrganizationInvite: ArchivePayload;
3611
+ resendOrganizationInvite: DeletePayload;
3378
3612
  /** Archives a roadmap. */
3379
- roadmapArchive: ArchivePayload;
3613
+ roadmapArchive: RoadmapArchivePayload;
3380
3614
  /** Creates a new roadmap. */
3381
3615
  roadmapCreate: RoadmapPayload;
3382
3616
  /** Deletes a roadmap. */
3383
- roadmapDelete: ArchivePayload;
3617
+ roadmapDelete: DeletePayload;
3384
3618
  /** Creates a new roadmapToProject join. */
3385
3619
  roadmapToProjectCreate: RoadmapToProjectPayload;
3386
3620
  /** Deletes a roadmapToProject. */
3387
- roadmapToProjectDelete: ArchivePayload;
3621
+ roadmapToProjectDelete: DeletePayload;
3388
3622
  /** Updates a roadmapToProject. */
3389
3623
  roadmapToProjectUpdate: RoadmapToProjectPayload;
3390
3624
  /** Unarchives a roadmap. */
3391
- roadmapUnarchive: ArchivePayload;
3625
+ roadmapUnarchive: RoadmapArchivePayload;
3392
3626
  /** Updates a roadmap. */
3393
3627
  roadmapUpdate: RoadmapPayload;
3394
3628
  /** Authenticates a user account via email and authentication token for SAML. */
@@ -3398,13 +3632,13 @@ export declare type Mutation = {
3398
3632
  /** Deletes team's cycles data */
3399
3633
  teamCyclesDelete: TeamPayload;
3400
3634
  /** Deletes a team. */
3401
- teamDelete: ArchivePayload;
3635
+ teamDelete: DeletePayload;
3402
3636
  /** Deletes a previously used team key. */
3403
- teamKeyDelete: ArchivePayload;
3637
+ teamKeyDelete: DeletePayload;
3404
3638
  /** Creates a new team membership. */
3405
3639
  teamMembershipCreate: TeamMembershipPayload;
3406
3640
  /** Deletes a team membership. */
3407
- teamMembershipDelete: ArchivePayload;
3641
+ teamMembershipDelete: DeletePayload;
3408
3642
  /** Updates a team membership. */
3409
3643
  teamMembershipUpdate: TeamMembershipPayload;
3410
3644
  /** Updates a team. */
@@ -3412,7 +3646,7 @@ export declare type Mutation = {
3412
3646
  /** Creates a new template. */
3413
3647
  templateCreate: TemplatePayload;
3414
3648
  /** Deletes a template. */
3415
- templateDelete: ArchivePayload;
3649
+ templateDelete: DeletePayload;
3416
3650
  /** Updates an existing template. */
3417
3651
  templateUpdate: TemplatePayload;
3418
3652
  /** Makes user a regular user. Can only be called by an admin. */
@@ -3450,17 +3684,17 @@ export declare type Mutation = {
3450
3684
  /** Creates a new ViewPreferences object. */
3451
3685
  viewPreferencesCreate: ViewPreferencesPayload;
3452
3686
  /** Deletes a ViewPreferences. */
3453
- viewPreferencesDelete: ArchivePayload;
3687
+ viewPreferencesDelete: DeletePayload;
3454
3688
  /** Updates an existing ViewPreferences object. */
3455
3689
  viewPreferencesUpdate: ViewPreferencesPayload;
3456
3690
  /** Creates a new webhook. */
3457
3691
  webhookCreate: WebhookPayload;
3458
3692
  /** Deletes a Webhook. */
3459
- webhookDelete: ArchivePayload;
3693
+ webhookDelete: DeletePayload;
3460
3694
  /** Updates an existing Webhook. */
3461
3695
  webhookUpdate: WebhookPayload;
3462
3696
  /** Archives a state. Only states with issues that have all been archived can be archived. */
3463
- workflowStateArchive: ArchivePayload;
3697
+ workflowStateArchive: WorkflowStateArchivePayload;
3464
3698
  /** Creates a new state, adding it to the workflow of a team. */
3465
3699
  workflowStateCreate: WorkflowStatePayload;
3466
3700
  /** Updates a state. */
@@ -3502,6 +3736,15 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
3502
3736
  issueId: Scalars["String"];
3503
3737
  jiraIssueId: Scalars["String"];
3504
3738
  };
3739
+ export declare type MutationAttachmentLinkSlackArgs = {
3740
+ channel: Scalars["String"];
3741
+ id?: Maybe<Scalars["String"]>;
3742
+ issueId: Scalars["String"];
3743
+ latest: Scalars["String"];
3744
+ title?: Maybe<Scalars["String"]>;
3745
+ ts?: Maybe<Scalars["String"]>;
3746
+ url: Scalars["String"];
3747
+ };
3505
3748
  export declare type MutationAttachmentLinkUrlArgs = {
3506
3749
  id?: Maybe<Scalars["String"]>;
3507
3750
  issueId: Scalars["String"];
@@ -3512,6 +3755,9 @@ export declare type MutationAttachmentLinkZendeskArgs = {
3512
3755
  issueId: Scalars["String"];
3513
3756
  ticketId: Scalars["String"];
3514
3757
  };
3758
+ export declare type MutationAttachmentUnsyncSlackArgs = {
3759
+ id: Scalars["String"];
3760
+ };
3515
3761
  export declare type MutationAttachmentUpdateArgs = {
3516
3762
  id: Scalars["String"];
3517
3763
  input: AttachmentUpdateInput;
@@ -3587,9 +3833,6 @@ export declare type MutationEmojiCreateArgs = {
3587
3833
  export declare type MutationEmojiDeleteArgs = {
3588
3834
  id: Scalars["String"];
3589
3835
  };
3590
- export declare type MutationEventCreateArgs = {
3591
- input: EventCreateInput;
3592
- };
3593
3836
  export declare type MutationFavoriteCreateArgs = {
3594
3837
  input: FavoriteCreateInput;
3595
3838
  };
@@ -3652,6 +3895,9 @@ export declare type MutationIntegrationIntercomArgs = {
3652
3895
  export declare type MutationIntegrationIntercomSettingsUpdateArgs = {
3653
3896
  input: IntercomSettingsInput;
3654
3897
  };
3898
+ export declare type MutationIntegrationPageDutyConnectArgs = {
3899
+ apiToken: Scalars["String"];
3900
+ };
3655
3901
  export declare type MutationIntegrationRequestArgs = {
3656
3902
  input: IntegrationRequestInput;
3657
3903
  };
@@ -3669,11 +3915,11 @@ export declare type MutationIntegrationSlackArgs = {
3669
3915
  redirectUri: Scalars["String"];
3670
3916
  shouldUseV2Auth?: Maybe<Scalars["Boolean"]>;
3671
3917
  };
3672
- export declare type MutationIntegrationSlackImportEmojisArgs = {
3918
+ export declare type MutationIntegrationSlackAsksArgs = {
3673
3919
  code: Scalars["String"];
3674
3920
  redirectUri: Scalars["String"];
3675
3921
  };
3676
- export declare type MutationIntegrationSlackIntakeArgs = {
3922
+ export declare type MutationIntegrationSlackImportEmojisArgs = {
3677
3923
  code: Scalars["String"];
3678
3924
  redirectUri: Scalars["String"];
3679
3925
  };
@@ -3802,9 +4048,6 @@ export declare type MutationIssueImportUpdateArgs = {
3802
4048
  id: Scalars["String"];
3803
4049
  input: IssueImportUpdateInput;
3804
4050
  };
3805
- export declare type MutationIssueLabelArchiveArgs = {
3806
- id: Scalars["String"];
3807
- };
3808
4051
  export declare type MutationIssueLabelCreateArgs = {
3809
4052
  input: IssueLabelCreateInput;
3810
4053
  replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
@@ -3849,6 +4092,20 @@ export declare type MutationLeaveOrganizationArgs = {
3849
4092
  export declare type MutationNotificationArchiveArgs = {
3850
4093
  id: Scalars["String"];
3851
4094
  };
4095
+ export declare type MutationNotificationArchiveAllArgs = {
4096
+ input: NotificationEntityInput;
4097
+ };
4098
+ export declare type MutationNotificationMarkReadAllArgs = {
4099
+ input: NotificationEntityInput;
4100
+ readAt: Scalars["DateTime"];
4101
+ };
4102
+ export declare type MutationNotificationMarkUnreadAllArgs = {
4103
+ input: NotificationEntityInput;
4104
+ };
4105
+ export declare type MutationNotificationSnoozeAllArgs = {
4106
+ input: NotificationEntityInput;
4107
+ snoozedUntilAt: Scalars["DateTime"];
4108
+ };
3852
4109
  export declare type MutationNotificationSubscriptionCreateArgs = {
3853
4110
  input: NotificationSubscriptionCreateInput;
3854
4111
  };
@@ -3862,6 +4119,10 @@ export declare type MutationNotificationSubscriptionUpdateArgs = {
3862
4119
  export declare type MutationNotificationUnarchiveArgs = {
3863
4120
  id: Scalars["String"];
3864
4121
  };
4122
+ export declare type MutationNotificationUnsnoozeAllArgs = {
4123
+ input: NotificationEntityInput;
4124
+ unsnoozedAt: Scalars["DateTime"];
4125
+ };
3865
4126
  export declare type MutationNotificationUpdateArgs = {
3866
4127
  id: Scalars["String"];
3867
4128
  input: NotificationUpdateInput;
@@ -4151,6 +4412,25 @@ export declare type Notification = {
4151
4412
  /** The user that received the notification. */
4152
4413
  user: User;
4153
4414
  };
4415
+ /** A generic payload return from entity archive mutations. */
4416
+ export declare type NotificationArchivePayload = ArchivePayload & {
4417
+ __typename?: "NotificationArchivePayload";
4418
+ /** The archived/unarchived entity. Null if entity was deleted. */
4419
+ entity?: Maybe<Notification>;
4420
+ /** The identifier of the last sync operation. */
4421
+ lastSyncId: Scalars["Float"];
4422
+ /** Whether the operation was successful. */
4423
+ success: Scalars["Boolean"];
4424
+ };
4425
+ export declare type NotificationBatchActionPayload = {
4426
+ __typename?: "NotificationBatchActionPayload";
4427
+ /** The identifier of the last sync operation. */
4428
+ lastSyncId: Scalars["Float"];
4429
+ /** The notifications that were updated. */
4430
+ notifications: Array<Notification>;
4431
+ /** Whether the operation was successful. */
4432
+ success: Scalars["Boolean"];
4433
+ };
4154
4434
  export declare type NotificationConnection = {
4155
4435
  __typename?: "NotificationConnection";
4156
4436
  edges: Array<NotificationEdge>;
@@ -4163,6 +4443,17 @@ export declare type NotificationEdge = {
4163
4443
  cursor: Scalars["String"];
4164
4444
  node: Notification;
4165
4445
  };
4446
+ /** Describes the type and id of the entity to target for notifications. */
4447
+ export declare type NotificationEntityInput = {
4448
+ /** The id of the issue related to the notification. */
4449
+ issueId?: Maybe<Scalars["String"]>;
4450
+ /** The id of the OAuth client approval related to the notification. */
4451
+ oauthClientApprovalId?: Maybe<Scalars["String"]>;
4452
+ /** The id of the project related to the notification. */
4453
+ projectId?: Maybe<Scalars["String"]>;
4454
+ /** The id of the project update related to the notification. */
4455
+ projectUpdateId?: Maybe<Scalars["String"]>;
4456
+ };
4166
4457
  export declare type NotificationPayload = {
4167
4458
  __typename?: "NotificationPayload";
4168
4459
  /** The identifier of the last sync operation. */
@@ -4176,24 +4467,34 @@ export declare type NotificationPayload = {
4176
4467
  export declare type NotificationSubscription = {
4177
4468
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4178
4469
  archivedAt?: Maybe<Scalars["DateTime"]>;
4470
+ /** The type of view to which the notification subscription context is associated with. */
4471
+ contextViewType?: Maybe<ContextViewType>;
4179
4472
  /** The time at which the entity was created. */
4180
4473
  createdAt: Scalars["DateTime"];
4474
+ /** The contextual custom view associated with the notification subscription. */
4475
+ customView?: Maybe<CustomView>;
4476
+ /** The contextual cycle view associated with the notification subscription. */
4477
+ cycle?: Maybe<Cycle>;
4181
4478
  /** The unique identifier of the entity. */
4182
4479
  id: Scalars["ID"];
4183
- /** Subscribed project. */
4480
+ /** The contextual label view associated with the notification subscription. */
4481
+ label?: Maybe<IssueLabel>;
4482
+ /** The contextual project view associated with the notification subscription. */
4184
4483
  project?: Maybe<Project>;
4185
- /** Subscribed team. */
4484
+ /** The user that subscribed to receive notifications. */
4485
+ subscriber: User;
4486
+ /** The team associated with the notification subscription. */
4186
4487
  team?: Maybe<Team>;
4187
- /** The type of the subscription. */
4188
- type: Scalars["String"];
4189
4488
  /**
4190
4489
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
4191
4490
  * 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
4491
  * been updated after creation.
4193
4492
  */
4194
4493
  updatedAt: Scalars["DateTime"];
4195
- /** The user associated with notification subscriptions. */
4196
- user: User;
4494
+ /** The user view associated with the notification subscription. */
4495
+ user?: Maybe<User>;
4496
+ /** The type of user view to which the notification subscription context is associated with. */
4497
+ userContextViewType?: Maybe<UserContextViewType>;
4197
4498
  };
4198
4499
  export declare type NotificationSubscriptionConnection = {
4199
4500
  __typename?: "NotificationSubscriptionConnection";
@@ -4202,16 +4503,26 @@ export declare type NotificationSubscriptionConnection = {
4202
4503
  pageInfo: PageInfo;
4203
4504
  };
4204
4505
  export declare type NotificationSubscriptionCreateInput = {
4506
+ /** The type of view to which the notification subscription context is associated with. */
4507
+ contextViewType?: Maybe<ContextViewType>;
4508
+ /** The identifier of the custom view to subscribe to. */
4509
+ customViewId?: Maybe<Scalars["String"]>;
4510
+ /** The identifier of the cycle to subscribe to. */
4511
+ cycleId?: Maybe<Scalars["String"]>;
4205
4512
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
4206
4513
  id?: Maybe<Scalars["String"]>;
4514
+ /** The identifier of the label to subscribe to. */
4515
+ labelId?: Maybe<Scalars["String"]>;
4516
+ /** The types of notifications of the subscription. */
4517
+ notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4207
4518
  /** The identifier of the project to subscribe to. */
4208
4519
  projectId?: Maybe<Scalars["String"]>;
4209
- /** The type of the project subscription. */
4210
- projectNotificationSubscriptionType?: Maybe<ProjectNotificationSubscriptionType>;
4211
4520
  /** The identifier of the team to subscribe to. */
4212
4521
  teamId?: Maybe<Scalars["String"]>;
4213
- /** The types of notifications of the team subscription. */
4214
- teamNotificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4522
+ /** The type of user view to which the notification subscription context is associated with. */
4523
+ userContextViewType?: Maybe<UserContextViewType>;
4524
+ /** The identifier of the user to subscribe to. */
4525
+ userId?: Maybe<Scalars["String"]>;
4215
4526
  };
4216
4527
  export declare type NotificationSubscriptionEdge = {
4217
4528
  __typename?: "NotificationSubscriptionEdge";
@@ -4229,10 +4540,8 @@ export declare type NotificationSubscriptionPayload = {
4229
4540
  success: Scalars["Boolean"];
4230
4541
  };
4231
4542
  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"]>>;
4543
+ /** The types of notifications of the subscription. */
4544
+ notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
4236
4545
  };
4237
4546
  export declare type NotificationUpdateInput = {
4238
4547
  /** The id of the project update related to the notification. */
@@ -4420,6 +4729,8 @@ export declare type NullableNumberComparator = {
4420
4729
  };
4421
4730
  /** Project filtering options. */
4422
4731
  export declare type NullableProjectFilter = {
4732
+ /** Filters that the project's team must satisfy. */
4733
+ accessibleTeams?: Maybe<TeamCollectionFilter>;
4423
4734
  /** Compound filters, all of which need to be matched by the project. */
4424
4735
  and?: Maybe<Array<NullableProjectFilter>>;
4425
4736
  /** Comparator for the project completion date. */
@@ -4519,6 +4830,29 @@ export declare type NullableStringComparator = {
4519
4830
  /** Starts with case insensitive constraint. Matches any values that start with the given string. */
4520
4831
  startsWithIgnoreCase?: Maybe<Scalars["String"]>;
4521
4832
  };
4833
+ /** Team filtering options. */
4834
+ export declare type NullableTeamFilter = {
4835
+ /** Compound filters, all of which need to be matched by the team. */
4836
+ and?: Maybe<Array<NullableTeamFilter>>;
4837
+ /** Comparator for the created at date. */
4838
+ createdAt?: Maybe<DateComparator>;
4839
+ /** Comparator for the team description. */
4840
+ description?: Maybe<NullableStringComparator>;
4841
+ /** Comparator for the identifier. */
4842
+ id?: Maybe<IdComparator>;
4843
+ /** Filters that the teams issues must satisfy. */
4844
+ issues?: Maybe<IssueCollectionFilter>;
4845
+ /** Comparator for the team key. */
4846
+ key?: Maybe<StringComparator>;
4847
+ /** Comparator for the team name. */
4848
+ name?: Maybe<StringComparator>;
4849
+ /** Filter based on the existence of the relation. */
4850
+ null?: Maybe<Scalars["Boolean"]>;
4851
+ /** Compound filters, one of which need to be matched by the team. */
4852
+ or?: Maybe<Array<NullableTeamFilter>>;
4853
+ /** Comparator for the updated at date. */
4854
+ updatedAt?: Maybe<DateComparator>;
4855
+ };
4522
4856
  export declare type NullableTimelessDateComparator = {
4523
4857
  /** Equals constraint. */
4524
4858
  eq?: Maybe<Scalars["TimelessDate"]>;
@@ -5053,6 +5387,30 @@ export declare type PageInfo = {
5053
5387
  /** Cursor representing the first result in the paginated results. */
5054
5388
  startCursor?: Maybe<Scalars["String"]>;
5055
5389
  };
5390
+ export declare type PagerDutyInput = {
5391
+ /** The mapping of PagerDuty schedule id to names. */
5392
+ scheduleMapping: Array<PagerDutyScheduleMappingInput>;
5393
+ };
5394
+ /** Tuple for mapping PagerDuty schedule id to names. */
5395
+ export declare type PagerDutyScheduleMapping = {
5396
+ __typename?: "PagerDutyScheduleMapping";
5397
+ /** The PagerDuty schedule id. */
5398
+ scheduleId: Scalars["String"];
5399
+ /** The PagerDuty schedule name. */
5400
+ scheduleName: Scalars["String"];
5401
+ };
5402
+ export declare type PagerDutyScheduleMappingInput = {
5403
+ /** The PagerDuty schedule id. */
5404
+ scheduleId: Scalars["String"];
5405
+ /** The PagerDuty schedule name. */
5406
+ scheduleName: Scalars["String"];
5407
+ };
5408
+ /** PagerDuty specific settings. */
5409
+ export declare type PagerDutySettings = {
5410
+ __typename?: "PagerDutySettings";
5411
+ /** The mapping of PagerDuty schedule id to names. */
5412
+ scheduleMapping: Array<PagerDutyScheduleMapping>;
5413
+ };
5056
5414
  /** By which field should the pagination order by */
5057
5415
  export declare enum PaginationOrderBy {
5058
5416
  CreatedAt = "createdAt",
@@ -5161,7 +5519,7 @@ export declare type Project = Node & {
5161
5519
  slugId: Scalars["String"];
5162
5520
  /** The sort order for the project within the organization. */
5163
5521
  sortOrder: Scalars["Float"];
5164
- /** [Internal] The estimated start date of the project. */
5522
+ /** The estimated start date of the project. */
5165
5523
  startDate?: Maybe<Scalars["TimelessDate"]>;
5166
5524
  /** The time at which the project was moved into started state. */
5167
5525
  startedAt?: Maybe<Scalars["DateTime"]>;
@@ -5247,8 +5605,20 @@ export declare type ProjectTeamsArgs = {
5247
5605
  last?: Maybe<Scalars["Int"]>;
5248
5606
  orderBy?: Maybe<PaginationOrderBy>;
5249
5607
  };
5608
+ /** A generic payload return from entity archive mutations. */
5609
+ export declare type ProjectArchivePayload = ArchivePayload & {
5610
+ __typename?: "ProjectArchivePayload";
5611
+ /** The archived/unarchived entity. Null if entity was deleted. */
5612
+ entity?: Maybe<Project>;
5613
+ /** The identifier of the last sync operation. */
5614
+ lastSyncId: Scalars["Float"];
5615
+ /** Whether the operation was successful. */
5616
+ success: Scalars["Boolean"];
5617
+ };
5250
5618
  /** Project filtering options. */
5251
5619
  export declare type ProjectCollectionFilter = {
5620
+ /** Filters that the project's team must satisfy. */
5621
+ accessibleTeams?: Maybe<TeamCollectionFilter>;
5252
5622
  /** Compound filters, all of which need to be matched by the project. */
5253
5623
  and?: Maybe<Array<ProjectCollectionFilter>>;
5254
5624
  /** Comparator for the project completion date. */
@@ -5340,6 +5710,8 @@ export declare type ProjectEdge = {
5340
5710
  };
5341
5711
  /** Project filtering options. */
5342
5712
  export declare type ProjectFilter = {
5713
+ /** Filters that the project's team must satisfy. */
5714
+ accessibleTeams?: Maybe<TeamCollectionFilter>;
5343
5715
  /** Compound filters, all of which need to be matched by the project. */
5344
5716
  and?: Maybe<Array<ProjectFilter>>;
5345
5717
  /** Comparator for the project completion date. */
@@ -5606,33 +5978,37 @@ export declare type ProjectNotificationSubscription = Entity & Node & Notificati
5606
5978
  __typename?: "ProjectNotificationSubscription";
5607
5979
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5608
5980
  archivedAt?: Maybe<Scalars["DateTime"]>;
5981
+ /** The type of view to which the notification subscription context is associated with. */
5982
+ contextViewType?: Maybe<ContextViewType>;
5609
5983
  /** The time at which the entity was created. */
5610
5984
  createdAt: Scalars["DateTime"];
5985
+ /** The contextual custom view associated with the notification subscription. */
5986
+ customView?: Maybe<CustomView>;
5987
+ /** The contextual cycle view associated with the notification subscription. */
5988
+ cycle?: Maybe<Cycle>;
5611
5989
  /** The unique identifier of the entity. */
5612
5990
  id: Scalars["ID"];
5991
+ /** The contextual label view associated with the notification subscription. */
5992
+ label?: Maybe<IssueLabel>;
5993
+ /** The type of subscription. */
5994
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
5613
5995
  /** The project subscribed to. */
5614
5996
  project: Project;
5615
- /** The type of the project subscription. */
5616
- projectNotificationSubscriptionType: ProjectNotificationSubscriptionType;
5617
- /** Subscribed team. */
5997
+ /** The user that subscribed to receive notifications. */
5998
+ subscriber: User;
5999
+ /** The team associated with the notification subscription. */
5618
6000
  team?: Maybe<Team>;
5619
- /** The type of the subscription. */
5620
- type: Scalars["String"];
5621
6001
  /**
5622
6002
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5623
6003
  * 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
6004
  * been updated after creation.
5625
6005
  */
5626
6006
  updatedAt: Scalars["DateTime"];
5627
- /** The user associated with notification subscriptions. */
5628
- user: User;
6007
+ /** The user view associated with the notification subscription. */
6008
+ user?: Maybe<User>;
6009
+ /** The type of user view to which the notification subscription context is associated with. */
6010
+ userContextViewType?: Maybe<UserContextViewType>;
5629
6011
  };
5630
- /** The type of a project notification subscription. */
5631
- export declare enum ProjectNotificationSubscriptionType {
5632
- All = "all",
5633
- Custom = "custom",
5634
- ImportantOnly = "importantOnly"
5635
- }
5636
6012
  export declare type ProjectPayload = {
5637
6013
  __typename?: "ProjectPayload";
5638
6014
  /** The identifier of the last sync operation. */
@@ -5722,7 +6098,7 @@ export declare type ProjectSearchResult = Node & {
5722
6098
  slugId: Scalars["String"];
5723
6099
  /** The sort order for the project within the organization. */
5724
6100
  sortOrder: Scalars["Float"];
5725
- /** [Internal] The estimated start date of the project. */
6101
+ /** The estimated start date of the project. */
5726
6102
  startDate?: Maybe<Scalars["TimelessDate"]>;
5727
6103
  /** The time at which the project was moved into started state. */
5728
6104
  startedAt?: Maybe<Scalars["DateTime"]>;
@@ -6111,6 +6487,8 @@ export declare type Query = {
6111
6487
  document: Document;
6112
6488
  /** All documents for the project. */
6113
6489
  documents: DocumentConnection;
6490
+ /** Returns embed info for any url */
6491
+ embedInfo: EmbedPayload;
6114
6492
  /** A specific emoji. */
6115
6493
  emoji: Emoji;
6116
6494
  /** All custom emojis. */
@@ -6155,7 +6533,7 @@ export declare type Query = {
6155
6533
  issueRelation: IssueRelation;
6156
6534
  /** All issue relationships. */
6157
6535
  issueRelations: IssueRelationConnection;
6158
- /** [ALPHA] Search issues. This query is experimental and is subject to change without notice. */
6536
+ /** [DEPRECATED] Search issues. This endpoint is deprecated and will be removed in the future – use `searchIssues` instead. */
6159
6537
  issueSearch: IssueConnection;
6160
6538
  /** Find issue based on the VCS branch name. */
6161
6539
  issueVcsBranchSearch?: Maybe<Issue>;
@@ -6231,6 +6609,8 @@ export declare type Query = {
6231
6609
  template: Template;
6232
6610
  /** All templates from all users. */
6233
6611
  templates: Array<Template>;
6612
+ /** Returns all templates that are associated with the integration type. */
6613
+ templatesForIntegration: Array<Template>;
6234
6614
  /** One specific user. */
6235
6615
  user: User;
6236
6616
  /** Finds a user account by email. */
@@ -6376,6 +6756,9 @@ export declare type QueryDocumentsArgs = {
6376
6756
  last?: Maybe<Scalars["Int"]>;
6377
6757
  orderBy?: Maybe<PaginationOrderBy>;
6378
6758
  };
6759
+ export declare type QueryEmbedInfoArgs = {
6760
+ url: Scalars["String"];
6761
+ };
6379
6762
  export declare type QueryEmojiArgs = {
6380
6763
  id: Scalars["String"];
6381
6764
  };
@@ -6675,6 +7058,9 @@ export declare type QueryTeamsArgs = {
6675
7058
  export declare type QueryTemplateArgs = {
6676
7059
  id: Scalars["String"];
6677
7060
  };
7061
+ export declare type QueryTemplatesForIntegrationArgs = {
7062
+ integrationType: Scalars["String"];
7063
+ };
6678
7064
  export declare type QueryUserArgs = {
6679
7065
  id: Scalars["String"];
6680
7066
  };
@@ -6771,6 +7157,8 @@ export declare type ReactionCreateInput = {
6771
7157
  emoji?: Maybe<Scalars["String"]>;
6772
7158
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one */
6773
7159
  id?: Maybe<Scalars["String"]>;
7160
+ /** The issue to associate the reaction with. */
7161
+ issueId?: Maybe<Scalars["String"]>;
6774
7162
  /** The project update to associate the reaction with. */
6775
7163
  projectUpdateId?: Maybe<Scalars["String"]>;
6776
7164
  };
@@ -6845,6 +7233,16 @@ export declare type RoadmapProjectsArgs = {
6845
7233
  last?: Maybe<Scalars["Int"]>;
6846
7234
  orderBy?: Maybe<PaginationOrderBy>;
6847
7235
  };
7236
+ /** A generic payload return from entity archive mutations. */
7237
+ export declare type RoadmapArchivePayload = ArchivePayload & {
7238
+ __typename?: "RoadmapArchivePayload";
7239
+ /** The archived/unarchived entity. Null if entity was deleted. */
7240
+ entity?: Maybe<Roadmap>;
7241
+ /** The identifier of the last sync operation. */
7242
+ lastSyncId: Scalars["Float"];
7243
+ /** Whether the operation was successful. */
7244
+ success: Scalars["Boolean"];
7245
+ };
6848
7246
  /** Roadmap collection filtering options. */
6849
7247
  export declare type RoadmapCollectionFilter = {
6850
7248
  /** Compound filters, all of which need to be matched by the roadmap. */
@@ -7241,6 +7639,8 @@ export declare type Team = Node & {
7241
7639
  integrationsSettings?: Maybe<IntegrationsSettings>;
7242
7640
  /** Unique hash for the team to be used in invite URLs. */
7243
7641
  inviteHash: Scalars["String"];
7642
+ /** Number of issues in the team. */
7643
+ issueCount: Scalars["Int"];
7244
7644
  /** Whether to allow zeros in issues estimates. */
7245
7645
  issueEstimationAllowZero: Scalars["Boolean"];
7246
7646
  /** Whether to add additional points to the estimate scale. */
@@ -7317,6 +7717,10 @@ export declare type TeamCyclesArgs = {
7317
7717
  orderBy?: Maybe<PaginationOrderBy>;
7318
7718
  };
7319
7719
  /** An organizational unit that contains issues. */
7720
+ export declare type TeamIssueCountArgs = {
7721
+ includeArchived?: Maybe<Scalars["Boolean"]>;
7722
+ };
7723
+ /** An organizational unit that contains issues. */
7320
7724
  export declare type TeamIssuesArgs = {
7321
7725
  after?: Maybe<Scalars["String"]>;
7322
7726
  before?: Maybe<Scalars["String"]>;
@@ -7394,6 +7798,25 @@ export declare type TeamWebhooksArgs = {
7394
7798
  last?: Maybe<Scalars["Int"]>;
7395
7799
  orderBy?: Maybe<PaginationOrderBy>;
7396
7800
  };
7801
+ /** Roadmap collection filtering options. */
7802
+ export declare type TeamCollectionFilter = {
7803
+ /** Compound filters, all of which need to be matched by the roadmap. */
7804
+ and?: Maybe<Array<TeamCollectionFilter>>;
7805
+ /** Comparator for the created at date. */
7806
+ createdAt?: Maybe<DateComparator>;
7807
+ /** Filters that needs to be matched by all roadmaps. */
7808
+ every?: Maybe<TeamFilter>;
7809
+ /** Comparator for the identifier. */
7810
+ id?: Maybe<IdComparator>;
7811
+ /** Comparator for the collection length. */
7812
+ length?: Maybe<NumberComparator>;
7813
+ /** Compound filters, one of which need to be matched by the roadmap. */
7814
+ or?: Maybe<Array<TeamCollectionFilter>>;
7815
+ /** Filters that needs to be matched by some roadmaps. */
7816
+ some?: Maybe<TeamFilter>;
7817
+ /** Comparator for the updated at date. */
7818
+ updatedAt?: Maybe<DateComparator>;
7819
+ };
7397
7820
  export declare type TeamConnection = {
7398
7821
  __typename?: "TeamConnection";
7399
7822
  edges: Array<TeamEdge>;
@@ -7561,24 +7984,36 @@ export declare type TeamNotificationSubscription = Entity & Node & NotificationS
7561
7984
  __typename?: "TeamNotificationSubscription";
7562
7985
  /** The time at which the entity was archived. Null if the entity has not been archived. */
7563
7986
  archivedAt?: Maybe<Scalars["DateTime"]>;
7987
+ /** The type of view to which the notification subscription context is associated with. */
7988
+ contextViewType?: Maybe<ContextViewType>;
7564
7989
  /** The time at which the entity was created. */
7565
7990
  createdAt: Scalars["DateTime"];
7991
+ /** The contextual custom view associated with the notification subscription. */
7992
+ customView?: Maybe<CustomView>;
7993
+ /** The contextual cycle view associated with the notification subscription. */
7994
+ cycle?: Maybe<Cycle>;
7566
7995
  /** The unique identifier of the entity. */
7567
7996
  id: Scalars["ID"];
7568
- /** Subscribed project. */
7997
+ /** The contextual label view associated with the notification subscription. */
7998
+ label?: Maybe<IssueLabel>;
7999
+ /** The type of subscription. */
8000
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
8001
+ /** The contextual project view associated with the notification subscription. */
7569
8002
  project?: Maybe<Project>;
8003
+ /** The user that subscribed to receive notifications. */
8004
+ subscriber: User;
7570
8005
  /** The team subscribed to. */
7571
8006
  team: Team;
7572
- /** The type of the subscription. */
7573
- type: Scalars["String"];
7574
8007
  /**
7575
8008
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
7576
8009
  * 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
8010
  * been updated after creation.
7578
8011
  */
7579
8012
  updatedAt: Scalars["DateTime"];
7580
- /** The user associated with notification subscriptions. */
7581
- user: User;
8013
+ /** The user view associated with the notification subscription. */
8014
+ user?: Maybe<User>;
8015
+ /** The type of user view to which the notification subscription context is associated with. */
8016
+ userContextViewType?: Maybe<UserContextViewType>;
7582
8017
  };
7583
8018
  export declare type TeamPayload = {
7584
8019
  __typename?: "TeamPayload";
@@ -8084,6 +8519,9 @@ export declare type UserConnection = {
8084
8519
  nodes: Array<User>;
8085
8520
  pageInfo: PageInfo;
8086
8521
  };
8522
+ export declare enum UserContextViewType {
8523
+ Assigned = "assigned"
8524
+ }
8087
8525
  export declare type UserEdge = {
8088
8526
  __typename?: "UserEdge";
8089
8527
  /** Used in `before` and `after` args */
@@ -8133,6 +8571,7 @@ export declare enum UserFlagType {
8133
8571
  EmptyBacklogDismissed = "emptyBacklogDismissed",
8134
8572
  EmptyCustomViewsDismissed = "emptyCustomViewsDismissed",
8135
8573
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
8574
+ FigmaPluginBannerDismissed = "figmaPluginBannerDismissed",
8136
8575
  FigmaPromptDismissed = "figmaPromptDismissed",
8137
8576
  ImportBannerDismissed = "importBannerDismissed",
8138
8577
  InsightsHelpDismissed = "insightsHelpDismissed",
@@ -8144,13 +8583,15 @@ export declare enum UserFlagType {
8144
8583
  MigrateThemePreference = "migrateThemePreference",
8145
8584
  MilestoneOnboardingIsSeenAndDismissed = "milestoneOnboardingIsSeenAndDismissed",
8146
8585
  ProjectBacklogWelcomeDismissed = "projectBacklogWelcomeDismissed",
8586
+ ProjectBoardOnboardingIsSeenAndDismissed = "projectBoardOnboardingIsSeenAndDismissed",
8147
8587
  ProjectUpdatesWelcomeDismissed = "projectUpdatesWelcomeDismissed",
8148
8588
  ProjectWelcomeDismissed = "projectWelcomeDismissed",
8149
8589
  RewindBannerDismissed = "rewindBannerDismissed",
8150
8590
  SlackCommentReactionTipShown = "slackCommentReactionTipShown",
8151
8591
  TeamsPageIntroductionDismissed = "teamsPageIntroductionDismissed",
8152
8592
  ThreadedCommentsNudgeIsSeen = "threadedCommentsNudgeIsSeen",
8153
- TriageWelcomeDismissed = "triageWelcomeDismissed"
8593
+ TriageWelcomeDismissed = "triageWelcomeDismissed",
8594
+ UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
8154
8595
  }
8155
8596
  /** Operations that can be applied to UserFlagType */
8156
8597
  export declare enum UserFlagUpdateOperation {
@@ -8159,23 +8600,59 @@ export declare enum UserFlagUpdateOperation {
8159
8600
  Incr = "incr",
8160
8601
  Lock = "lock"
8161
8602
  }
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"
8176
- }
8177
- /** The settings of a user as a JSON object. */
8178
- export declare type UserSettings = Node & {
8603
+ /** A user notification subscription. */
8604
+ export declare type UserNotificationSubscription = Entity & Node & NotificationSubscription & {
8605
+ __typename?: "UserNotificationSubscription";
8606
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
8607
+ archivedAt?: Maybe<Scalars["DateTime"]>;
8608
+ /** The type of view to which the notification subscription context is associated with. */
8609
+ contextViewType?: Maybe<ContextViewType>;
8610
+ /** The time at which the entity was created. */
8611
+ createdAt: Scalars["DateTime"];
8612
+ /** The contextual custom view associated with the notification subscription. */
8613
+ customView?: Maybe<CustomView>;
8614
+ /** The contextual cycle view associated with the notification subscription. */
8615
+ cycle?: Maybe<Cycle>;
8616
+ /** The unique identifier of the entity. */
8617
+ id: Scalars["ID"];
8618
+ /** The contextual label view associated with the notification subscription. */
8619
+ label?: Maybe<IssueLabel>;
8620
+ /** The type of subscription. */
8621
+ notificationSubscriptionTypes: Array<Scalars["String"]>;
8622
+ /** The contextual project view associated with the notification subscription. */
8623
+ project?: Maybe<Project>;
8624
+ /** The user that subscribed to receive notifications. */
8625
+ subscriber: User;
8626
+ /** The team associated with the notification subscription. */
8627
+ team?: Maybe<Team>;
8628
+ /**
8629
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8630
+ * 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
8631
+ * been updated after creation.
8632
+ */
8633
+ updatedAt: Scalars["DateTime"];
8634
+ /** The user subscribed to. */
8635
+ user: User;
8636
+ /** The type of user view to which the notification subscription context is associated with. */
8637
+ userContextViewType?: Maybe<UserContextViewType>;
8638
+ };
8639
+ export declare type UserPayload = {
8640
+ __typename?: "UserPayload";
8641
+ /** The identifier of the last sync operation. */
8642
+ lastSyncId: Scalars["Float"];
8643
+ /** Whether the operation was successful. */
8644
+ success: Scalars["Boolean"];
8645
+ /** The user that was created or updated. */
8646
+ user?: Maybe<User>;
8647
+ };
8648
+ /** The different permission roles available to users on an organization */
8649
+ export declare enum UserRoleType {
8650
+ Admin = "admin",
8651
+ Guest = "guest",
8652
+ User = "user"
8653
+ }
8654
+ /** The settings of a user as a JSON object. */
8655
+ export declare type UserSettings = Node & {
8179
8656
  __typename?: "UserSettings";
8180
8657
  /** The time at which the entity was archived. Null if the entity has not been archived. */
8181
8658
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -8234,6 +8711,8 @@ export declare type UserSettingsUpdateInput = {
8234
8711
  settings?: Maybe<Scalars["JSONObject"]>;
8235
8712
  /** The types of emails the user has unsubscribed from. */
8236
8713
  unsubscribedFrom?: Maybe<Array<Scalars["String"]>>;
8714
+ /** [Internal] The user's usage warning history. */
8715
+ usageWarningHistory?: Maybe<Scalars["JSONObject"]>;
8237
8716
  };
8238
8717
  /** View preferences. */
8239
8718
  export declare type ViewPreferences = Node & {
@@ -8311,6 +8790,7 @@ export declare enum ViewType {
8311
8790
  CompletedCycle = "completedCycle",
8312
8791
  CustomRoadmap = "customRoadmap",
8313
8792
  CustomView = "customView",
8793
+ CustomViews = "customViews",
8314
8794
  Cycle = "cycle",
8315
8795
  Inbox = "inbox",
8316
8796
  Label = "label",
@@ -8475,10 +8955,16 @@ export declare type WorkflowDefinition = Node & {
8475
8955
  archivedAt?: Maybe<Scalars["DateTime"]>;
8476
8956
  /** The conditions that need to be match for the workflow to be triggered. */
8477
8957
  conditions: Scalars["JSONObject"];
8958
+ /** The type of view to which this workflow's context is associated with. */
8959
+ contextViewType?: Maybe<ContextViewType>;
8478
8960
  /** The time at which the entity was created. */
8479
8961
  createdAt: Scalars["DateTime"];
8480
8962
  /** The user who created the workflow. */
8481
8963
  creator: User;
8964
+ /** The context custom view associated with the workflow. */
8965
+ customView?: Maybe<CustomView>;
8966
+ /** The contextual cycle view associated with the workflow. */
8967
+ cycle?: Maybe<Cycle>;
8482
8968
  /** The description of the workflow. */
8483
8969
  description?: Maybe<Scalars["String"]>;
8484
8970
  enabled: Scalars["Boolean"];
@@ -8486,8 +8972,12 @@ export declare type WorkflowDefinition = Node & {
8486
8972
  groupName?: Maybe<Scalars["String"]>;
8487
8973
  /** The unique identifier of the entity. */
8488
8974
  id: Scalars["ID"];
8975
+ /** The contextual label view associated with the workflow. */
8976
+ label?: Maybe<IssueLabel>;
8489
8977
  /** The name of the workflow. */
8490
8978
  name: Scalars["String"];
8979
+ /** The contextual project view associated with the workflow. */
8980
+ project?: Maybe<Project>;
8491
8981
  /** The sort order of the workflow definition within its siblings. */
8492
8982
  sortOrder: Scalars["String"];
8493
8983
  /** The team associated with the workflow. If not set, the workflow is associated with the entire organization. */
@@ -8504,6 +8994,10 @@ export declare type WorkflowDefinition = Node & {
8504
8994
  * been updated after creation.
8505
8995
  */
8506
8996
  updatedAt: Scalars["DateTime"];
8997
+ /** The contextual user view associated with the workflow. */
8998
+ user?: Maybe<User>;
8999
+ /** The type of user view to which this workflow's context is associated with. */
9000
+ userContextViewType?: Maybe<UserContextViewType>;
8507
9001
  };
8508
9002
  export declare type WorkflowDefinitionConnection = {
8509
9003
  __typename?: "WorkflowDefinitionConnection";
@@ -8557,6 +9051,16 @@ export declare type WorkflowStateIssuesArgs = {
8557
9051
  last?: Maybe<Scalars["Int"]>;
8558
9052
  orderBy?: Maybe<PaginationOrderBy>;
8559
9053
  };
9054
+ /** A generic payload return from entity archive mutations. */
9055
+ export declare type WorkflowStateArchivePayload = ArchivePayload & {
9056
+ __typename?: "WorkflowStateArchivePayload";
9057
+ /** The archived/unarchived entity. Null if entity was deleted. */
9058
+ entity?: Maybe<WorkflowState>;
9059
+ /** The identifier of the last sync operation. */
9060
+ lastSyncId: Scalars["Float"];
9061
+ /** Whether the operation was successful. */
9062
+ success: Scalars["Boolean"];
9063
+ };
8560
9064
  export declare type WorkflowStateConnection = {
8561
9065
  __typename?: "WorkflowStateConnection";
8562
9066
  edges: Array<WorkflowStateEdge>;
@@ -8642,7 +9146,8 @@ export declare enum WorkflowTriggerType {
8642
9146
  }
8643
9147
  export declare enum WorkflowType {
8644
9148
  Custom = "custom",
8645
- Sla = "sla"
9149
+ Sla = "sla",
9150
+ ViewSubscription = "viewSubscription"
8646
9151
  }
8647
9152
  /** [INTERNAL] Public information of the OAuth application, plus the userIds and scopes for those users. */
8648
9153
  export declare type WorkspaceAuthorizedApplication = {
@@ -8702,9 +9207,18 @@ export declare type ZendeskSettingsInput = {
8702
9207
  /** The URL of the connected Zendesk organization. */
8703
9208
  url: Scalars["String"];
8704
9209
  };
9210
+ declare type Entity_CustomViewNotificationSubscription_Fragment = {
9211
+ __typename: "CustomViewNotificationSubscription";
9212
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9213
+ declare type Entity_CycleNotificationSubscription_Fragment = {
9214
+ __typename: "CycleNotificationSubscription";
9215
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
8705
9216
  declare type Entity_IssueNotification_Fragment = {
8706
9217
  __typename: "IssueNotification";
8707
9218
  } & Pick<IssueNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9219
+ declare type Entity_LabelNotificationSubscription_Fragment = {
9220
+ __typename: "LabelNotificationSubscription";
9221
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
8708
9222
  declare type Entity_OauthClientApprovalNotification_Fragment = {
8709
9223
  __typename: "OauthClientApprovalNotification";
8710
9224
  } & Pick<OauthClientApprovalNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -8717,7 +9231,10 @@ declare type Entity_ProjectNotificationSubscription_Fragment = {
8717
9231
  declare type Entity_TeamNotificationSubscription_Fragment = {
8718
9232
  __typename: "TeamNotificationSubscription";
8719
9233
  } & 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;
9234
+ declare type Entity_UserNotificationSubscription_Fragment = {
9235
+ __typename: "UserNotificationSubscription";
9236
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
9237
+ 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
9238
  export declare type CommentFragment = {
8722
9239
  __typename: "Comment";
8723
9240
  } & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
@@ -8745,6 +9262,31 @@ export declare type EmojiFragment = {
8745
9262
  __typename?: "User";
8746
9263
  } & Pick<User, "id">;
8747
9264
  };
9265
+ export declare type CustomViewNotificationSubscriptionFragment = {
9266
+ __typename: "CustomViewNotificationSubscription";
9267
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9268
+ cycle?: Maybe<{
9269
+ __typename?: "Cycle";
9270
+ } & Pick<Cycle, "id">>;
9271
+ label?: Maybe<{
9272
+ __typename?: "IssueLabel";
9273
+ } & Pick<IssueLabel, "id">>;
9274
+ project?: Maybe<{
9275
+ __typename?: "Project";
9276
+ } & Pick<Project, "id">>;
9277
+ customView: {
9278
+ __typename?: "CustomView";
9279
+ } & Pick<CustomView, "id">;
9280
+ team?: Maybe<{
9281
+ __typename?: "Team";
9282
+ } & Pick<Team, "id">>;
9283
+ subscriber: {
9284
+ __typename?: "User";
9285
+ } & Pick<User, "id">;
9286
+ user?: Maybe<{
9287
+ __typename?: "User";
9288
+ } & Pick<User, "id">>;
9289
+ };
8748
9290
  export declare type CustomViewFragment = {
8749
9291
  __typename: "CustomView";
8750
9292
  } & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
@@ -8754,9 +9296,31 @@ export declare type CustomViewFragment = {
8754
9296
  creator: {
8755
9297
  __typename?: "User";
8756
9298
  } & Pick<User, "id">;
8757
- owner: {
9299
+ };
9300
+ export declare type CycleNotificationSubscriptionFragment = {
9301
+ __typename: "CycleNotificationSubscription";
9302
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9303
+ customView?: Maybe<{
9304
+ __typename?: "CustomView";
9305
+ } & Pick<CustomView, "id">>;
9306
+ label?: Maybe<{
9307
+ __typename?: "IssueLabel";
9308
+ } & Pick<IssueLabel, "id">>;
9309
+ project?: Maybe<{
9310
+ __typename?: "Project";
9311
+ } & Pick<Project, "id">>;
9312
+ cycle: {
9313
+ __typename?: "Cycle";
9314
+ } & Pick<Cycle, "id">;
9315
+ team?: Maybe<{
9316
+ __typename?: "Team";
9317
+ } & Pick<Team, "id">>;
9318
+ subscriber: {
8758
9319
  __typename?: "User";
8759
9320
  } & Pick<User, "id">;
9321
+ user?: Maybe<{
9322
+ __typename?: "User";
9323
+ } & Pick<User, "id">>;
8760
9324
  };
8761
9325
  export declare type DocumentContentFragment = {
8762
9326
  __typename: "DocumentContent";
@@ -8778,6 +9342,112 @@ export declare type DocumentFragment = {
8778
9342
  __typename?: "User";
8779
9343
  } & Pick<User, "id">;
8780
9344
  };
9345
+ export declare type AttachmentArchivePayloadFragment = {
9346
+ __typename: "AttachmentArchivePayload";
9347
+ } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
9348
+ entity?: Maybe<{
9349
+ __typename?: "Attachment";
9350
+ } & Pick<Attachment, "id">>;
9351
+ };
9352
+ export declare type CycleArchivePayloadFragment = {
9353
+ __typename: "CycleArchivePayload";
9354
+ } & Pick<CycleArchivePayload, "lastSyncId" | "success"> & {
9355
+ entity?: Maybe<{
9356
+ __typename?: "Cycle";
9357
+ } & Pick<Cycle, "id">>;
9358
+ };
9359
+ export declare type IssueArchivePayloadFragment = {
9360
+ __typename: "IssueArchivePayload";
9361
+ } & Pick<IssueArchivePayload, "lastSyncId" | "success"> & {
9362
+ entity?: Maybe<{
9363
+ __typename?: "Issue";
9364
+ } & Pick<Issue, "id">>;
9365
+ };
9366
+ export declare type NotificationArchivePayloadFragment = {
9367
+ __typename: "NotificationArchivePayload";
9368
+ } & Pick<NotificationArchivePayload, "lastSyncId" | "success"> & {
9369
+ entity?: Maybe<({
9370
+ __typename?: "IssueNotification";
9371
+ } & Notification_IssueNotification_Fragment) | ({
9372
+ __typename?: "OauthClientApprovalNotification";
9373
+ } & Notification_OauthClientApprovalNotification_Fragment) | ({
9374
+ __typename?: "ProjectNotification";
9375
+ } & Notification_ProjectNotification_Fragment)>;
9376
+ };
9377
+ export declare type ProjectArchivePayloadFragment = {
9378
+ __typename: "ProjectArchivePayload";
9379
+ } & Pick<ProjectArchivePayload, "lastSyncId" | "success"> & {
9380
+ entity?: Maybe<{
9381
+ __typename?: "Project";
9382
+ } & Pick<Project, "id">>;
9383
+ };
9384
+ export declare type RoadmapArchivePayloadFragment = {
9385
+ __typename: "RoadmapArchivePayload";
9386
+ } & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & {
9387
+ entity?: Maybe<{
9388
+ __typename?: "Roadmap";
9389
+ } & Pick<Roadmap, "id">>;
9390
+ };
9391
+ export declare type WorkflowStateArchivePayloadFragment = {
9392
+ __typename: "WorkflowStateArchivePayload";
9393
+ } & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & {
9394
+ entity?: Maybe<{
9395
+ __typename?: "WorkflowState";
9396
+ } & Pick<WorkflowState, "id">>;
9397
+ };
9398
+ declare type ArchivePayload_AttachmentArchivePayload_Fragment = {
9399
+ __typename: "AttachmentArchivePayload";
9400
+ } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & AttachmentArchivePayloadFragment;
9401
+ declare type ArchivePayload_CycleArchivePayload_Fragment = {
9402
+ __typename: "CycleArchivePayload";
9403
+ } & Pick<CycleArchivePayload, "lastSyncId" | "success"> & CycleArchivePayloadFragment;
9404
+ declare type ArchivePayload_DeletePayload_Fragment = {
9405
+ __typename: "DeletePayload";
9406
+ } & Pick<DeletePayload, "lastSyncId" | "success"> & DeletePayloadFragment;
9407
+ declare type ArchivePayload_IssueArchivePayload_Fragment = {
9408
+ __typename: "IssueArchivePayload";
9409
+ } & Pick<IssueArchivePayload, "lastSyncId" | "success"> & IssueArchivePayloadFragment;
9410
+ declare type ArchivePayload_NotificationArchivePayload_Fragment = {
9411
+ __typename: "NotificationArchivePayload";
9412
+ } & Pick<NotificationArchivePayload, "lastSyncId" | "success"> & NotificationArchivePayloadFragment;
9413
+ declare type ArchivePayload_ProjectArchivePayload_Fragment = {
9414
+ __typename: "ProjectArchivePayload";
9415
+ } & Pick<ProjectArchivePayload, "lastSyncId" | "success"> & ProjectArchivePayloadFragment;
9416
+ declare type ArchivePayload_RoadmapArchivePayload_Fragment = {
9417
+ __typename: "RoadmapArchivePayload";
9418
+ } & Pick<RoadmapArchivePayload, "lastSyncId" | "success"> & RoadmapArchivePayloadFragment;
9419
+ declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
9420
+ __typename: "WorkflowStateArchivePayload";
9421
+ } & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & WorkflowStateArchivePayloadFragment;
9422
+ 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;
9423
+ export declare type DeletePayloadFragment = {
9424
+ __typename: "DeletePayload";
9425
+ } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
9426
+ export declare type LabelNotificationSubscriptionFragment = {
9427
+ __typename: "LabelNotificationSubscription";
9428
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9429
+ customView?: Maybe<{
9430
+ __typename?: "CustomView";
9431
+ } & Pick<CustomView, "id">>;
9432
+ cycle?: Maybe<{
9433
+ __typename?: "Cycle";
9434
+ } & Pick<Cycle, "id">>;
9435
+ project?: Maybe<{
9436
+ __typename?: "Project";
9437
+ } & Pick<Project, "id">>;
9438
+ label: {
9439
+ __typename?: "IssueLabel";
9440
+ } & Pick<IssueLabel, "id">;
9441
+ team?: Maybe<{
9442
+ __typename?: "Team";
9443
+ } & Pick<Team, "id">>;
9444
+ subscriber: {
9445
+ __typename?: "User";
9446
+ } & Pick<User, "id">;
9447
+ user?: Maybe<{
9448
+ __typename?: "User";
9449
+ } & Pick<User, "id">>;
9450
+ };
8781
9451
  export declare type ProjectMilestoneFragment = {
8782
9452
  __typename: "ProjectMilestone";
8783
9453
  } & Pick<ProjectMilestone, "description" | "updatedAt" | "name" | "sortOrder" | "targetDate" | "archivedAt" | "createdAt" | "id"> & {
@@ -8818,16 +9488,28 @@ declare type Notification_ProjectNotification_Fragment = {
8818
9488
  export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
8819
9489
  export declare type ProjectNotificationSubscriptionFragment = {
8820
9490
  __typename: "ProjectNotificationSubscription";
8821
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
8822
- team?: Maybe<{
8823
- __typename?: "Team";
8824
- } & Pick<Team, "id">>;
9491
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9492
+ customView?: Maybe<{
9493
+ __typename?: "CustomView";
9494
+ } & Pick<CustomView, "id">>;
9495
+ cycle?: Maybe<{
9496
+ __typename?: "Cycle";
9497
+ } & Pick<Cycle, "id">>;
9498
+ label?: Maybe<{
9499
+ __typename?: "IssueLabel";
9500
+ } & Pick<IssueLabel, "id">>;
8825
9501
  project: {
8826
9502
  __typename?: "Project";
8827
9503
  } & Pick<Project, "id">;
8828
- user: {
9504
+ team?: Maybe<{
9505
+ __typename?: "Team";
9506
+ } & Pick<Team, "id">>;
9507
+ subscriber: {
8829
9508
  __typename?: "User";
8830
9509
  } & Pick<User, "id">;
9510
+ user?: Maybe<{
9511
+ __typename?: "User";
9512
+ } & Pick<User, "id">>;
8831
9513
  };
8832
9514
  export declare type ProjectNotificationFragment = {
8833
9515
  __typename: "ProjectNotification";
@@ -8847,7 +9529,7 @@ export declare type ProjectNotificationFragment = {
8847
9529
  };
8848
9530
  export declare type ProjectFragment = {
8849
9531
  __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"> & {
9532
+ } & 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
9533
  integrationsSettings?: Maybe<{
8852
9534
  __typename?: "IntegrationsSettings";
8853
9535
  } & Pick<IntegrationsSettings, "id">>;
@@ -8946,6 +9628,16 @@ export declare type RoadmapFragment = {
8946
9628
  __typename?: "User";
8947
9629
  } & Pick<User, "id">;
8948
9630
  };
9631
+ export declare type FirstResponderScheduleFragment = {
9632
+ __typename: "FirstResponderSchedule";
9633
+ } & Pick<FirstResponderSchedule, "scheduleData" | "integrationScheduleId" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9634
+ integration: {
9635
+ __typename?: "Integration";
9636
+ } & Pick<Integration, "id">;
9637
+ team: {
9638
+ __typename?: "Team";
9639
+ } & Pick<Team, "id">;
9640
+ };
8949
9641
  export declare type CycleFragment = {
8950
9642
  __typename: "Cycle";
8951
9643
  } & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
@@ -8962,16 +9654,28 @@ export declare type WorkflowStateFragment = {
8962
9654
  };
8963
9655
  export declare type TeamNotificationSubscriptionFragment = {
8964
9656
  __typename: "TeamNotificationSubscription";
8965
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
9657
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9658
+ customView?: Maybe<{
9659
+ __typename?: "CustomView";
9660
+ } & Pick<CustomView, "id">>;
9661
+ cycle?: Maybe<{
9662
+ __typename?: "Cycle";
9663
+ } & Pick<Cycle, "id">>;
9664
+ label?: Maybe<{
9665
+ __typename?: "IssueLabel";
9666
+ } & Pick<IssueLabel, "id">>;
8966
9667
  project?: Maybe<{
8967
9668
  __typename?: "Project";
8968
9669
  } & Pick<Project, "id">>;
8969
9670
  team: {
8970
9671
  __typename?: "Team";
8971
9672
  } & Pick<Team, "id">;
8972
- user: {
9673
+ subscriber: {
8973
9674
  __typename?: "User";
8974
9675
  } & Pick<User, "id">;
9676
+ user?: Maybe<{
9677
+ __typename?: "User";
9678
+ } & Pick<User, "id">>;
8975
9679
  };
8976
9680
  export declare type TemplateFragment = {
8977
9681
  __typename: "Template";
@@ -9003,6 +9707,31 @@ export declare type UserAccountFragment = {
9003
9707
  __typename?: "User";
9004
9708
  } & UserFragment>;
9005
9709
  };
9710
+ export declare type UserNotificationSubscriptionFragment = {
9711
+ __typename: "UserNotificationSubscription";
9712
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id"> & {
9713
+ customView?: Maybe<{
9714
+ __typename?: "CustomView";
9715
+ } & Pick<CustomView, "id">>;
9716
+ cycle?: Maybe<{
9717
+ __typename?: "Cycle";
9718
+ } & Pick<Cycle, "id">>;
9719
+ label?: Maybe<{
9720
+ __typename?: "IssueLabel";
9721
+ } & Pick<IssueLabel, "id">>;
9722
+ project?: Maybe<{
9723
+ __typename?: "Project";
9724
+ } & Pick<Project, "id">>;
9725
+ team?: Maybe<{
9726
+ __typename?: "Team";
9727
+ } & Pick<Team, "id">>;
9728
+ user: {
9729
+ __typename?: "User";
9730
+ } & Pick<User, "id">;
9731
+ subscriber: {
9732
+ __typename?: "User";
9733
+ } & Pick<User, "id">;
9734
+ };
9006
9735
  export declare type UserFragment = {
9007
9736
  __typename: "User";
9008
9737
  } & 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 +9859,7 @@ export declare type OrganizationFragment = {
9130
9859
  };
9131
9860
  export declare type TeamFragment = {
9132
9861
  __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"> & {
9862
+ } & 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
9863
  integrationsSettings?: Maybe<{
9135
9864
  __typename?: "IntegrationsSettings";
9136
9865
  } & Pick<IntegrationsSettings, "id">>;
@@ -9211,6 +9940,9 @@ export declare type ProjectUpdateInteractionFragment = {
9211
9940
  __typename?: "User";
9212
9941
  } & Pick<User, "id">;
9213
9942
  };
9943
+ export declare type EmbedFragment = {
9944
+ __typename: "Embed";
9945
+ } & Pick<Embed, "html" | "thumbnailUrl" | "url" | "description" | "height" | "thumbnailHeight" | "authorName" | "providerName" | "type" | "width" | "thumbnailWidth" | "title">;
9214
9946
  export declare type IntercomSettingsFragment = {
9215
9947
  __typename: "IntercomSettings";
9216
9948
  } & Pick<IntercomSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
@@ -9276,33 +10008,157 @@ export declare type JiraProjectDataFragment = {
9276
10008
  export declare type GitHubSettingsFragment = {
9277
10009
  __typename: "GitHubSettings";
9278
10010
  } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl">;
10011
+ declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
10012
+ __typename: "CustomViewNotificationSubscription";
10013
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10014
+ customView: {
10015
+ __typename?: "CustomView";
10016
+ } & Pick<CustomView, "id">;
10017
+ cycle?: Maybe<{
10018
+ __typename?: "Cycle";
10019
+ } & Pick<Cycle, "id">>;
10020
+ label?: Maybe<{
10021
+ __typename?: "IssueLabel";
10022
+ } & Pick<IssueLabel, "id">>;
10023
+ project?: Maybe<{
10024
+ __typename?: "Project";
10025
+ } & Pick<Project, "id">>;
10026
+ team?: Maybe<{
10027
+ __typename?: "Team";
10028
+ } & Pick<Team, "id">>;
10029
+ subscriber: {
10030
+ __typename?: "User";
10031
+ } & Pick<User, "id">;
10032
+ user?: Maybe<{
10033
+ __typename?: "User";
10034
+ } & Pick<User, "id">>;
10035
+ };
10036
+ declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
10037
+ __typename: "CycleNotificationSubscription";
10038
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10039
+ customView?: Maybe<{
10040
+ __typename?: "CustomView";
10041
+ } & Pick<CustomView, "id">>;
10042
+ cycle: {
10043
+ __typename?: "Cycle";
10044
+ } & Pick<Cycle, "id">;
10045
+ label?: Maybe<{
10046
+ __typename?: "IssueLabel";
10047
+ } & Pick<IssueLabel, "id">>;
10048
+ project?: Maybe<{
10049
+ __typename?: "Project";
10050
+ } & Pick<Project, "id">>;
10051
+ team?: Maybe<{
10052
+ __typename?: "Team";
10053
+ } & Pick<Team, "id">>;
10054
+ subscriber: {
10055
+ __typename?: "User";
10056
+ } & Pick<User, "id">;
10057
+ user?: Maybe<{
10058
+ __typename?: "User";
10059
+ } & Pick<User, "id">>;
10060
+ };
10061
+ declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
10062
+ __typename: "LabelNotificationSubscription";
10063
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10064
+ customView?: Maybe<{
10065
+ __typename?: "CustomView";
10066
+ } & Pick<CustomView, "id">>;
10067
+ cycle?: Maybe<{
10068
+ __typename?: "Cycle";
10069
+ } & Pick<Cycle, "id">>;
10070
+ label: {
10071
+ __typename?: "IssueLabel";
10072
+ } & Pick<IssueLabel, "id">;
10073
+ project?: Maybe<{
10074
+ __typename?: "Project";
10075
+ } & Pick<Project, "id">>;
10076
+ team?: Maybe<{
10077
+ __typename?: "Team";
10078
+ } & Pick<Team, "id">>;
10079
+ subscriber: {
10080
+ __typename?: "User";
10081
+ } & Pick<User, "id">;
10082
+ user?: Maybe<{
10083
+ __typename?: "User";
10084
+ } & Pick<User, "id">>;
10085
+ };
9279
10086
  declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
9280
10087
  __typename: "ProjectNotificationSubscription";
9281
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
10088
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10089
+ customView?: Maybe<{
10090
+ __typename?: "CustomView";
10091
+ } & Pick<CustomView, "id">>;
10092
+ cycle?: Maybe<{
10093
+ __typename?: "Cycle";
10094
+ } & Pick<Cycle, "id">>;
10095
+ label?: Maybe<{
10096
+ __typename?: "IssueLabel";
10097
+ } & Pick<IssueLabel, "id">>;
9282
10098
  project: {
9283
10099
  __typename?: "Project";
9284
10100
  } & Pick<Project, "id">;
9285
10101
  team?: Maybe<{
9286
10102
  __typename?: "Team";
9287
10103
  } & Pick<Team, "id">>;
9288
- user: {
10104
+ subscriber: {
9289
10105
  __typename?: "User";
9290
10106
  } & Pick<User, "id">;
10107
+ user?: Maybe<{
10108
+ __typename?: "User";
10109
+ } & Pick<User, "id">>;
9291
10110
  };
9292
10111
  declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
9293
10112
  __typename: "TeamNotificationSubscription";
9294
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
10113
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10114
+ customView?: Maybe<{
10115
+ __typename?: "CustomView";
10116
+ } & Pick<CustomView, "id">>;
10117
+ cycle?: Maybe<{
10118
+ __typename?: "Cycle";
10119
+ } & Pick<Cycle, "id">>;
10120
+ label?: Maybe<{
10121
+ __typename?: "IssueLabel";
10122
+ } & Pick<IssueLabel, "id">>;
9295
10123
  project?: Maybe<{
9296
10124
  __typename?: "Project";
9297
10125
  } & Pick<Project, "id">>;
9298
10126
  team: {
9299
10127
  __typename?: "Team";
9300
10128
  } & Pick<Team, "id">;
10129
+ subscriber: {
10130
+ __typename?: "User";
10131
+ } & Pick<User, "id">;
10132
+ user?: Maybe<{
10133
+ __typename?: "User";
10134
+ } & Pick<User, "id">>;
10135
+ };
10136
+ declare type NotificationSubscription_UserNotificationSubscription_Fragment = {
10137
+ __typename: "UserNotificationSubscription";
10138
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
10139
+ customView?: Maybe<{
10140
+ __typename?: "CustomView";
10141
+ } & Pick<CustomView, "id">>;
10142
+ cycle?: Maybe<{
10143
+ __typename?: "Cycle";
10144
+ } & Pick<Cycle, "id">>;
10145
+ label?: Maybe<{
10146
+ __typename?: "IssueLabel";
10147
+ } & Pick<IssueLabel, "id">>;
10148
+ project?: Maybe<{
10149
+ __typename?: "Project";
10150
+ } & Pick<Project, "id">>;
10151
+ team?: Maybe<{
10152
+ __typename?: "Team";
10153
+ } & Pick<Team, "id">>;
10154
+ subscriber: {
10155
+ __typename?: "User";
10156
+ } & Pick<User, "id">;
9301
10157
  user: {
9302
10158
  __typename?: "User";
9303
10159
  } & Pick<User, "id">;
9304
10160
  };
9305
- export declare type NotificationSubscriptionFragment = NotificationSubscription_ProjectNotificationSubscription_Fragment | NotificationSubscription_TeamNotificationSubscription_Fragment;
10161
+ export declare type NotificationSubscriptionFragment = NotificationSubscription_CustomViewNotificationSubscription_Fragment | NotificationSubscription_CycleNotificationSubscription_Fragment | NotificationSubscription_LabelNotificationSubscription_Fragment | NotificationSubscription_ProjectNotificationSubscription_Fragment | NotificationSubscription_TeamNotificationSubscription_Fragment | NotificationSubscription_UserNotificationSubscription_Fragment;
9306
10162
  export declare type NotionSettingsFragment = {
9307
10163
  __typename: "NotionSettings";
9308
10164
  } & Pick<NotionSettings, "workspaceId" | "workspaceName">;
@@ -9323,6 +10179,13 @@ export declare type UploadFileFragment = {
9323
10179
  __typename?: "UploadFileHeader";
9324
10180
  } & UploadFileHeaderFragment>;
9325
10181
  };
10182
+ export declare type PagerDutySettingsFragment = {
10183
+ __typename: "PagerDutySettings";
10184
+ } & {
10185
+ scheduleMapping: Array<{
10186
+ __typename?: "PagerDutyScheduleMapping";
10187
+ } & PagerDutyScheduleMappingFragment>;
10188
+ };
9326
10189
  export declare type UserAuthorizedApplicationFragment = {
9327
10190
  __typename: "UserAuthorizedApplication";
9328
10191
  } & Pick<UserAuthorizedApplication, "name" | "approvalErrorCode" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl" | "webhooksEnabled" | "createdByLinear" | "isAuthorized">;
@@ -9379,6 +10242,9 @@ export declare type IntegrationSettingsFragment = {
9379
10242
  notion?: Maybe<{
9380
10243
  __typename?: "NotionSettings";
9381
10244
  } & NotionSettingsFragment>;
10245
+ pagerDuty?: Maybe<{
10246
+ __typename?: "PagerDutySettings";
10247
+ } & PagerDutySettingsFragment>;
9382
10248
  sentry?: Maybe<{
9383
10249
  __typename?: "SentrySettings";
9384
10250
  } & SentrySettingsFragment>;
@@ -9415,6 +10281,9 @@ export declare type UserSettingsFragment = {
9415
10281
  export declare type JiraLinearMappingFragment = {
9416
10282
  __typename: "JiraLinearMapping";
9417
10283
  } & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId">;
10284
+ export declare type PagerDutyScheduleMappingFragment = {
10285
+ __typename: "PagerDutyScheduleMapping";
10286
+ } & Pick<PagerDutyScheduleMapping, "scheduleId" | "scheduleName">;
9418
10287
  export declare type FavoriteFragment = {
9419
10288
  __typename: "Favorite";
9420
10289
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -9442,7 +10311,10 @@ export declare type FavoriteFragment = {
9442
10311
  projectTeam?: Maybe<{
9443
10312
  __typename?: "Team";
9444
10313
  } & Pick<Team, "id">>;
9445
- user: {
10314
+ user?: Maybe<{
10315
+ __typename?: "User";
10316
+ } & Pick<User, "id">>;
10317
+ owner: {
9446
10318
  __typename?: "User";
9447
10319
  } & Pick<User, "id">;
9448
10320
  parent?: Maybe<{
@@ -9482,9 +10354,6 @@ export declare type ApiKeyPayloadFragment = {
9482
10354
  __typename?: "ApiKey";
9483
10355
  } & ApiKeyFragment;
9484
10356
  };
9485
- export declare type ArchivePayloadFragment = {
9486
- __typename: "ArchivePayload";
9487
- } & Pick<ArchivePayload, "lastSyncId" | "success">;
9488
10357
  export declare type AttachmentConnectionFragment = {
9489
10358
  __typename: "AttachmentConnection";
9490
10359
  } & {
@@ -9661,6 +10530,13 @@ export declare type EmailUnsubscribePayloadFragment = {
9661
10530
  export declare type EmailUserAccountAuthChallengeResponseFragment = {
9662
10531
  __typename: "EmailUserAccountAuthChallengeResponse";
9663
10532
  } & Pick<EmailUserAccountAuthChallengeResponse, "authType" | "success">;
10533
+ export declare type EmbedPayloadFragment = {
10534
+ __typename: "EmbedPayload";
10535
+ } & Pick<EmbedPayload, "success"> & {
10536
+ embed?: Maybe<{
10537
+ __typename?: "Embed";
10538
+ } & EmbedFragment>;
10539
+ };
9664
10540
  export declare type EmojiConnectionFragment = {
9665
10541
  __typename: "EmojiConnection";
9666
10542
  } & {
@@ -9678,9 +10554,6 @@ export declare type EmojiPayloadFragment = {
9678
10554
  __typename?: "Emoji";
9679
10555
  } & Pick<Emoji, "id">;
9680
10556
  };
9681
- export declare type EventPayloadFragment = {
9682
- __typename: "EventPayload";
9683
- } & Pick<EventPayload, "success">;
9684
10557
  export declare type FavoriteConnectionFragment = {
9685
10558
  __typename: "FavoriteConnection";
9686
10559
  } & {
@@ -9705,6 +10578,16 @@ export declare type FigmaEmbedPayloadFragment = {
9705
10578
  __typename?: "FigmaEmbed";
9706
10579
  } & FigmaEmbedFragment>;
9707
10580
  };
10581
+ export declare type FirstResponderScheduleConnectionFragment = {
10582
+ __typename: "FirstResponderScheduleConnection";
10583
+ } & {
10584
+ nodes: Array<{
10585
+ __typename?: "FirstResponderSchedule";
10586
+ } & FirstResponderScheduleFragment>;
10587
+ pageInfo: {
10588
+ __typename?: "PageInfo";
10589
+ } & PageInfoFragment;
10590
+ };
9708
10591
  export declare type FrontAttachmentPayloadFragment = {
9709
10592
  __typename: "FrontAttachmentPayload";
9710
10593
  } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
@@ -9941,9 +10824,15 @@ declare type Node_Company_Fragment = {
9941
10824
  declare type Node_CustomView_Fragment = {
9942
10825
  __typename: "CustomView";
9943
10826
  } & Pick<CustomView, "id">;
10827
+ declare type Node_CustomViewNotificationSubscription_Fragment = {
10828
+ __typename: "CustomViewNotificationSubscription";
10829
+ } & Pick<CustomViewNotificationSubscription, "id">;
9944
10830
  declare type Node_Cycle_Fragment = {
9945
10831
  __typename: "Cycle";
9946
10832
  } & Pick<Cycle, "id">;
10833
+ declare type Node_CycleNotificationSubscription_Fragment = {
10834
+ __typename: "CycleNotificationSubscription";
10835
+ } & Pick<CycleNotificationSubscription, "id">;
9947
10836
  declare type Node_Document_Fragment = {
9948
10837
  __typename: "Document";
9949
10838
  } & Pick<Document, "id">;
@@ -9962,6 +10851,9 @@ declare type Node_ExternalUser_Fragment = {
9962
10851
  declare type Node_Favorite_Fragment = {
9963
10852
  __typename: "Favorite";
9964
10853
  } & Pick<Favorite, "id">;
10854
+ declare type Node_FirstResponderSchedule_Fragment = {
10855
+ __typename: "FirstResponderSchedule";
10856
+ } & Pick<FirstResponderSchedule, "id">;
9965
10857
  declare type Node_Integration_Fragment = {
9966
10858
  __typename: "Integration";
9967
10859
  } & Pick<Integration, "id">;
@@ -9995,6 +10887,9 @@ declare type Node_IssueRelation_Fragment = {
9995
10887
  declare type Node_IssueSearchResult_Fragment = {
9996
10888
  __typename: "IssueSearchResult";
9997
10889
  } & Pick<IssueSearchResult, "id">;
10890
+ declare type Node_LabelNotificationSubscription_Fragment = {
10891
+ __typename: "LabelNotificationSubscription";
10892
+ } & Pick<LabelNotificationSubscription, "id">;
9998
10893
  declare type Node_OauthClient_Fragment = {
9999
10894
  __typename: "OauthClient";
10000
10895
  } & Pick<OauthClient, "id">;
@@ -10067,6 +10962,9 @@ declare type Node_Template_Fragment = {
10067
10962
  declare type Node_User_Fragment = {
10068
10963
  __typename: "User";
10069
10964
  } & Pick<User, "id">;
10965
+ declare type Node_UserNotificationSubscription_Fragment = {
10966
+ __typename: "UserNotificationSubscription";
10967
+ } & Pick<UserNotificationSubscription, "id">;
10070
10968
  declare type Node_UserSettings_Fragment = {
10071
10969
  __typename: "UserSettings";
10072
10970
  } & Pick<UserSettings, "id">;
@@ -10085,7 +10983,18 @@ declare type Node_WorkflowDefinition_Fragment = {
10085
10983
  declare type Node_WorkflowState_Fragment = {
10086
10984
  __typename: "WorkflowState";
10087
10985
  } & 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;
10986
+ 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;
10987
+ export declare type NotificationBatchActionPayloadFragment = {
10988
+ __typename: "NotificationBatchActionPayload";
10989
+ } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
10990
+ notifications: Array<({
10991
+ __typename?: "IssueNotification";
10992
+ } & Notification_IssueNotification_Fragment) | ({
10993
+ __typename?: "OauthClientApprovalNotification";
10994
+ } & Notification_OauthClientApprovalNotification_Fragment) | ({
10995
+ __typename?: "ProjectNotification";
10996
+ } & Notification_ProjectNotification_Fragment)>;
10997
+ };
10089
10998
  export declare type NotificationConnectionFragment = {
10090
10999
  __typename: "NotificationConnection";
10091
11000
  } & {
@@ -10115,10 +11024,18 @@ export declare type NotificationSubscriptionConnectionFragment = {
10115
11024
  __typename: "NotificationSubscriptionConnection";
10116
11025
  } & {
10117
11026
  nodes: Array<({
11027
+ __typename?: "CustomViewNotificationSubscription";
11028
+ } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
11029
+ __typename?: "CycleNotificationSubscription";
11030
+ } & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
11031
+ __typename?: "LabelNotificationSubscription";
11032
+ } & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
10118
11033
  __typename?: "ProjectNotificationSubscription";
10119
11034
  } & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
10120
11035
  __typename?: "TeamNotificationSubscription";
10121
- } & NotificationSubscription_TeamNotificationSubscription_Fragment)>;
11036
+ } & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
11037
+ __typename?: "UserNotificationSubscription";
11038
+ } & NotificationSubscription_UserNotificationSubscription_Fragment)>;
10122
11039
  pageInfo: {
10123
11040
  __typename?: "PageInfo";
10124
11041
  } & PageInfoFragment;
@@ -10127,10 +11044,18 @@ export declare type NotificationSubscriptionPayloadFragment = {
10127
11044
  __typename: "NotificationSubscriptionPayload";
10128
11045
  } & Pick<NotificationSubscriptionPayload, "lastSyncId" | "success"> & {
10129
11046
  notificationSubscription: ({
11047
+ __typename?: "CustomViewNotificationSubscription";
11048
+ } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
11049
+ __typename?: "CycleNotificationSubscription";
11050
+ } & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
11051
+ __typename?: "LabelNotificationSubscription";
11052
+ } & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
10130
11053
  __typename?: "ProjectNotificationSubscription";
10131
11054
  } & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
10132
11055
  __typename?: "TeamNotificationSubscription";
10133
- } & NotificationSubscription_TeamNotificationSubscription_Fragment);
11056
+ } & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
11057
+ __typename?: "UserNotificationSubscription";
11058
+ } & NotificationSubscription_UserNotificationSubscription_Fragment);
10134
11059
  };
10135
11060
  export declare type OauthClientConnectionFragment = {
10136
11061
  __typename: "OauthClientConnection";
@@ -10249,7 +11174,7 @@ export declare type ProjectSearchPayloadFragment = {
10249
11174
  };
10250
11175
  export declare type ProjectSearchResultFragment = {
10251
11176
  __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"> & {
11177
+ } & 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
11178
  integrationsSettings?: Maybe<{
10254
11179
  __typename?: "IntegrationsSettings";
10255
11180
  } & Pick<IntegrationsSettings, "id">>;
@@ -10537,6 +11462,21 @@ export declare type WorkflowCronJobDefinitionConnectionFragment = {
10537
11462
  export declare type WorkflowDefinitionFragment = {
10538
11463
  __typename: "WorkflowDefinition";
10539
11464
  } & Pick<WorkflowDefinition, "activities" | "conditions" | "description" | "updatedAt" | "groupName" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "id" | "enabled"> & {
11465
+ customView?: Maybe<{
11466
+ __typename?: "CustomView";
11467
+ } & Pick<CustomView, "id">>;
11468
+ cycle?: Maybe<{
11469
+ __typename?: "Cycle";
11470
+ } & Pick<Cycle, "id">>;
11471
+ label?: Maybe<{
11472
+ __typename?: "IssueLabel";
11473
+ } & Pick<IssueLabel, "id">>;
11474
+ project?: Maybe<{
11475
+ __typename?: "Project";
11476
+ } & Pick<Project, "id">>;
11477
+ user?: Maybe<{
11478
+ __typename?: "User";
11479
+ } & Pick<User, "id">>;
10540
11480
  team?: Maybe<{
10541
11481
  __typename?: "Team";
10542
11482
  } & Pick<Team, "id">>;
@@ -10598,8 +11538,8 @@ export declare type DeleteApiKeyMutation = {
10598
11538
  __typename?: "Mutation";
10599
11539
  } & {
10600
11540
  apiKeyDelete: {
10601
- __typename?: "ArchivePayload";
10602
- } & ArchivePayloadFragment;
11541
+ __typename?: "DeletePayload";
11542
+ } & DeletePayloadFragment;
10603
11543
  };
10604
11544
  export declare type ArchiveAttachmentMutationVariables = Exact<{
10605
11545
  id: Scalars["String"];
@@ -10608,8 +11548,8 @@ export declare type ArchiveAttachmentMutation = {
10608
11548
  __typename?: "Mutation";
10609
11549
  } & {
10610
11550
  attachmentArchive: {
10611
- __typename?: "ArchivePayload";
10612
- } & ArchivePayloadFragment;
11551
+ __typename?: "AttachmentArchivePayload";
11552
+ } & AttachmentArchivePayloadFragment;
10613
11553
  };
10614
11554
  export declare type CreateAttachmentMutationVariables = Exact<{
10615
11555
  input: AttachmentCreateInput;
@@ -10628,8 +11568,8 @@ export declare type DeleteAttachmentMutation = {
10628
11568
  __typename?: "Mutation";
10629
11569
  } & {
10630
11570
  attachmentDelete: {
10631
- __typename?: "ArchivePayload";
10632
- } & ArchivePayloadFragment;
11571
+ __typename?: "DeletePayload";
11572
+ } & DeletePayloadFragment;
10633
11573
  };
10634
11574
  export declare type AttachmentLinkDiscordMutationVariables = Exact<{
10635
11575
  channelId: Scalars["String"];
@@ -10677,6 +11617,22 @@ export declare type AttachmentLinkJiraIssueMutation = {
10677
11617
  __typename?: "AttachmentPayload";
10678
11618
  } & AttachmentPayloadFragment;
10679
11619
  };
11620
+ export declare type AttachmentLinkSlackMutationVariables = Exact<{
11621
+ channel: Scalars["String"];
11622
+ id?: Maybe<Scalars["String"]>;
11623
+ issueId: Scalars["String"];
11624
+ latest: Scalars["String"];
11625
+ title?: Maybe<Scalars["String"]>;
11626
+ ts?: Maybe<Scalars["String"]>;
11627
+ url: Scalars["String"];
11628
+ }>;
11629
+ export declare type AttachmentLinkSlackMutation = {
11630
+ __typename?: "Mutation";
11631
+ } & {
11632
+ attachmentLinkSlack: {
11633
+ __typename?: "AttachmentPayload";
11634
+ } & AttachmentPayloadFragment;
11635
+ };
10680
11636
  export declare type AttachmentLinkUrlMutationVariables = Exact<{
10681
11637
  id?: Maybe<Scalars["String"]>;
10682
11638
  issueId: Scalars["String"];
@@ -10701,6 +11657,16 @@ export declare type AttachmentLinkZendeskMutation = {
10701
11657
  __typename?: "AttachmentPayload";
10702
11658
  } & AttachmentPayloadFragment;
10703
11659
  };
11660
+ export declare type AttachmentUnsyncSlackMutationVariables = Exact<{
11661
+ id: Scalars["String"];
11662
+ }>;
11663
+ export declare type AttachmentUnsyncSlackMutation = {
11664
+ __typename?: "Mutation";
11665
+ } & {
11666
+ attachmentUnsyncSlack: {
11667
+ __typename?: "AttachmentPayload";
11668
+ } & AttachmentPayloadFragment;
11669
+ };
10704
11670
  export declare type UpdateAttachmentMutationVariables = Exact<{
10705
11671
  id: Scalars["String"];
10706
11672
  input: AttachmentUpdateInput;
@@ -10729,8 +11695,8 @@ export declare type DeleteCommentMutation = {
10729
11695
  __typename?: "Mutation";
10730
11696
  } & {
10731
11697
  commentDelete: {
10732
- __typename?: "ArchivePayload";
10733
- } & ArchivePayloadFragment;
11698
+ __typename?: "DeletePayload";
11699
+ } & DeletePayloadFragment;
10734
11700
  };
10735
11701
  export declare type UpdateCommentMutationVariables = Exact<{
10736
11702
  id: Scalars["String"];
@@ -10791,8 +11757,8 @@ export declare type DeleteCustomViewMutation = {
10791
11757
  __typename?: "Mutation";
10792
11758
  } & {
10793
11759
  customViewDelete: {
10794
- __typename?: "ArchivePayload";
10795
- } & ArchivePayloadFragment;
11760
+ __typename?: "DeletePayload";
11761
+ } & DeletePayloadFragment;
10796
11762
  };
10797
11763
  export declare type UpdateCustomViewMutationVariables = Exact<{
10798
11764
  id: Scalars["String"];
@@ -10812,8 +11778,8 @@ export declare type ArchiveCycleMutation = {
10812
11778
  __typename?: "Mutation";
10813
11779
  } & {
10814
11780
  cycleArchive: {
10815
- __typename?: "ArchivePayload";
10816
- } & ArchivePayloadFragment;
11781
+ __typename?: "CycleArchivePayload";
11782
+ } & CycleArchivePayloadFragment;
10817
11783
  };
10818
11784
  export declare type CreateCycleMutationVariables = Exact<{
10819
11785
  input: CycleCreateInput;
@@ -10853,8 +11819,8 @@ export declare type DeleteDocumentMutation = {
10853
11819
  __typename?: "Mutation";
10854
11820
  } & {
10855
11821
  documentDelete: {
10856
- __typename?: "ArchivePayload";
10857
- } & ArchivePayloadFragment;
11822
+ __typename?: "DeletePayload";
11823
+ } & DeletePayloadFragment;
10858
11824
  };
10859
11825
  export declare type UpdateDocumentMutationVariables = Exact<{
10860
11826
  id: Scalars["String"];
@@ -10914,18 +11880,8 @@ export declare type DeleteEmojiMutation = {
10914
11880
  __typename?: "Mutation";
10915
11881
  } & {
10916
11882
  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;
11883
+ __typename?: "DeletePayload";
11884
+ } & DeletePayloadFragment;
10929
11885
  };
10930
11886
  export declare type CreateFavoriteMutationVariables = Exact<{
10931
11887
  input: FavoriteCreateInput;
@@ -10944,8 +11900,8 @@ export declare type DeleteFavoriteMutation = {
10944
11900
  __typename?: "Mutation";
10945
11901
  } & {
10946
11902
  favoriteDelete: {
10947
- __typename?: "ArchivePayload";
10948
- } & ArchivePayloadFragment;
11903
+ __typename?: "DeletePayload";
11904
+ } & DeletePayloadFragment;
10949
11905
  };
10950
11906
  export declare type UpdateFavoriteMutationVariables = Exact<{
10951
11907
  id: Scalars["String"];
@@ -11012,8 +11968,8 @@ export declare type DeleteIntegrationMutation = {
11012
11968
  __typename?: "Mutation";
11013
11969
  } & {
11014
11970
  integrationDelete: {
11015
- __typename?: "ArchivePayload";
11016
- } & ArchivePayloadFragment;
11971
+ __typename?: "DeletePayload";
11972
+ } & DeletePayloadFragment;
11017
11973
  };
11018
11974
  export declare type IntegrationDiscordMutationVariables = Exact<{
11019
11975
  code: Scalars["String"];
@@ -11165,25 +12121,25 @@ export declare type IntegrationSlackMutation = {
11165
12121
  __typename?: "IntegrationPayload";
11166
12122
  } & IntegrationPayloadFragment;
11167
12123
  };
11168
- export declare type IntegrationSlackImportEmojisMutationVariables = Exact<{
12124
+ export declare type IntegrationSlackAsksMutationVariables = Exact<{
11169
12125
  code: Scalars["String"];
11170
12126
  redirectUri: Scalars["String"];
11171
12127
  }>;
11172
- export declare type IntegrationSlackImportEmojisMutation = {
12128
+ export declare type IntegrationSlackAsksMutation = {
11173
12129
  __typename?: "Mutation";
11174
12130
  } & {
11175
- integrationSlackImportEmojis: {
12131
+ integrationSlackAsks: {
11176
12132
  __typename?: "IntegrationPayload";
11177
12133
  } & IntegrationPayloadFragment;
11178
12134
  };
11179
- export declare type IntegrationSlackIntakeMutationVariables = Exact<{
12135
+ export declare type IntegrationSlackImportEmojisMutationVariables = Exact<{
11180
12136
  code: Scalars["String"];
11181
12137
  redirectUri: Scalars["String"];
11182
12138
  }>;
11183
- export declare type IntegrationSlackIntakeMutation = {
12139
+ export declare type IntegrationSlackImportEmojisMutation = {
11184
12140
  __typename?: "Mutation";
11185
12141
  } & {
11186
- integrationSlackIntake: {
12142
+ integrationSlackImportEmojis: {
11187
12143
  __typename?: "IntegrationPayload";
11188
12144
  } & IntegrationPayloadFragment;
11189
12145
  };
@@ -11252,8 +12208,8 @@ export declare type DeleteIntegrationTemplateMutation = {
11252
12208
  __typename?: "Mutation";
11253
12209
  } & {
11254
12210
  integrationTemplateDelete: {
11255
- __typename?: "ArchivePayload";
11256
- } & ArchivePayloadFragment;
12211
+ __typename?: "DeletePayload";
12212
+ } & DeletePayloadFragment;
11257
12213
  };
11258
12214
  export declare type IntegrationUpdateSlackMutationVariables = Exact<{
11259
12215
  code: Scalars["String"];
@@ -11308,8 +12264,8 @@ export declare type ArchiveIssueMutation = {
11308
12264
  __typename?: "Mutation";
11309
12265
  } & {
11310
12266
  issueArchive: {
11311
- __typename?: "ArchivePayload";
11312
- } & ArchivePayloadFragment;
12267
+ __typename?: "IssueArchivePayload";
12268
+ } & IssueArchivePayloadFragment;
11313
12269
  };
11314
12270
  export declare type UpdateIssueBatchMutationVariables = Exact<{
11315
12271
  ids: Array<Scalars["UUID"]> | Scalars["UUID"];
@@ -11339,8 +12295,8 @@ export declare type DeleteIssueMutation = {
11339
12295
  __typename?: "Mutation";
11340
12296
  } & {
11341
12297
  issueDelete: {
11342
- __typename?: "ArchivePayload";
11343
- } & ArchivePayloadFragment;
12298
+ __typename?: "IssueArchivePayload";
12299
+ } & IssueArchivePayloadFragment;
11344
12300
  };
11345
12301
  export declare type IssueImportCreateAsanaMutationVariables = Exact<{
11346
12302
  asanaTeamName: Scalars["String"];
@@ -11462,16 +12418,6 @@ export declare type UpdateIssueImportMutation = {
11462
12418
  __typename?: "IssueImportPayload";
11463
12419
  } & IssueImportPayloadFragment;
11464
12420
  };
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
12421
  export declare type CreateIssueLabelMutationVariables = Exact<{
11476
12422
  input: IssueLabelCreateInput;
11477
12423
  replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
@@ -11490,8 +12436,8 @@ export declare type DeleteIssueLabelMutation = {
11490
12436
  __typename?: "Mutation";
11491
12437
  } & {
11492
12438
  issueLabelDelete: {
11493
- __typename?: "ArchivePayload";
11494
- } & ArchivePayloadFragment;
12439
+ __typename?: "DeletePayload";
12440
+ } & DeletePayloadFragment;
11495
12441
  };
11496
12442
  export declare type UpdateIssueLabelMutationVariables = Exact<{
11497
12443
  id: Scalars["String"];
@@ -11521,8 +12467,8 @@ export declare type DeleteIssueRelationMutation = {
11521
12467
  __typename?: "Mutation";
11522
12468
  } & {
11523
12469
  issueRelationDelete: {
11524
- __typename?: "ArchivePayload";
11525
- } & ArchivePayloadFragment;
12470
+ __typename?: "DeletePayload";
12471
+ } & DeletePayloadFragment;
11526
12472
  };
11527
12473
  export declare type UpdateIssueRelationMutationVariables = Exact<{
11528
12474
  id: Scalars["String"];
@@ -11553,8 +12499,8 @@ export declare type UnarchiveIssueMutation = {
11553
12499
  __typename?: "Mutation";
11554
12500
  } & {
11555
12501
  issueUnarchive: {
11556
- __typename?: "ArchivePayload";
11557
- } & ArchivePayloadFragment;
12502
+ __typename?: "IssueArchivePayload";
12503
+ } & IssueArchivePayloadFragment;
11558
12504
  };
11559
12505
  export declare type UpdateIssueMutationVariables = Exact<{
11560
12506
  id: Scalars["String"];
@@ -11604,8 +12550,50 @@ export declare type ArchiveNotificationMutation = {
11604
12550
  __typename?: "Mutation";
11605
12551
  } & {
11606
12552
  notificationArchive: {
11607
- __typename?: "ArchivePayload";
11608
- } & ArchivePayloadFragment;
12553
+ __typename?: "NotificationArchivePayload";
12554
+ } & NotificationArchivePayloadFragment;
12555
+ };
12556
+ export declare type NotificationArchiveAllMutationVariables = Exact<{
12557
+ input: NotificationEntityInput;
12558
+ }>;
12559
+ export declare type NotificationArchiveAllMutation = {
12560
+ __typename?: "Mutation";
12561
+ } & {
12562
+ notificationArchiveAll: {
12563
+ __typename?: "NotificationBatchActionPayload";
12564
+ } & NotificationBatchActionPayloadFragment;
12565
+ };
12566
+ export declare type NotificationMarkReadAllMutationVariables = Exact<{
12567
+ input: NotificationEntityInput;
12568
+ readAt: Scalars["DateTime"];
12569
+ }>;
12570
+ export declare type NotificationMarkReadAllMutation = {
12571
+ __typename?: "Mutation";
12572
+ } & {
12573
+ notificationMarkReadAll: {
12574
+ __typename?: "NotificationBatchActionPayload";
12575
+ } & NotificationBatchActionPayloadFragment;
12576
+ };
12577
+ export declare type NotificationMarkUnreadAllMutationVariables = Exact<{
12578
+ input: NotificationEntityInput;
12579
+ }>;
12580
+ export declare type NotificationMarkUnreadAllMutation = {
12581
+ __typename?: "Mutation";
12582
+ } & {
12583
+ notificationMarkUnreadAll: {
12584
+ __typename?: "NotificationBatchActionPayload";
12585
+ } & NotificationBatchActionPayloadFragment;
12586
+ };
12587
+ export declare type NotificationSnoozeAllMutationVariables = Exact<{
12588
+ input: NotificationEntityInput;
12589
+ snoozedUntilAt: Scalars["DateTime"];
12590
+ }>;
12591
+ export declare type NotificationSnoozeAllMutation = {
12592
+ __typename?: "Mutation";
12593
+ } & {
12594
+ notificationSnoozeAll: {
12595
+ __typename?: "NotificationBatchActionPayload";
12596
+ } & NotificationBatchActionPayloadFragment;
11609
12597
  };
11610
12598
  export declare type CreateNotificationSubscriptionMutationVariables = Exact<{
11611
12599
  input: NotificationSubscriptionCreateInput;
@@ -11624,8 +12612,8 @@ export declare type DeleteNotificationSubscriptionMutation = {
11624
12612
  __typename?: "Mutation";
11625
12613
  } & {
11626
12614
  notificationSubscriptionDelete: {
11627
- __typename?: "ArchivePayload";
11628
- } & ArchivePayloadFragment;
12615
+ __typename?: "DeletePayload";
12616
+ } & DeletePayloadFragment;
11629
12617
  };
11630
12618
  export declare type UpdateNotificationSubscriptionMutationVariables = Exact<{
11631
12619
  id: Scalars["String"];
@@ -11645,8 +12633,19 @@ export declare type UnarchiveNotificationMutation = {
11645
12633
  __typename?: "Mutation";
11646
12634
  } & {
11647
12635
  notificationUnarchive: {
11648
- __typename?: "ArchivePayload";
11649
- } & ArchivePayloadFragment;
12636
+ __typename?: "NotificationArchivePayload";
12637
+ } & NotificationArchivePayloadFragment;
12638
+ };
12639
+ export declare type NotificationUnsnoozeAllMutationVariables = Exact<{
12640
+ input: NotificationEntityInput;
12641
+ unsnoozedAt: Scalars["DateTime"];
12642
+ }>;
12643
+ export declare type NotificationUnsnoozeAllMutation = {
12644
+ __typename?: "Mutation";
12645
+ } & {
12646
+ notificationUnsnoozeAll: {
12647
+ __typename?: "NotificationBatchActionPayload";
12648
+ } & NotificationBatchActionPayloadFragment;
11650
12649
  };
11651
12650
  export declare type UpdateNotificationMutationVariables = Exact<{
11652
12651
  id: Scalars["String"];
@@ -11696,8 +12695,8 @@ export declare type DeleteOrganizationDomainMutation = {
11696
12695
  __typename?: "Mutation";
11697
12696
  } & {
11698
12697
  organizationDomainDelete: {
11699
- __typename?: "ArchivePayload";
11700
- } & ArchivePayloadFragment;
12698
+ __typename?: "DeletePayload";
12699
+ } & DeletePayloadFragment;
11701
12700
  };
11702
12701
  export declare type CreateOrganizationInviteMutationVariables = Exact<{
11703
12702
  input: OrganizationInviteCreateInput;
@@ -11716,8 +12715,8 @@ export declare type DeleteOrganizationInviteMutation = {
11716
12715
  __typename?: "Mutation";
11717
12716
  } & {
11718
12717
  organizationInviteDelete: {
11719
- __typename?: "ArchivePayload";
11720
- } & ArchivePayloadFragment;
12718
+ __typename?: "DeletePayload";
12719
+ } & DeletePayloadFragment;
11721
12720
  };
11722
12721
  export declare type UpdateOrganizationInviteMutationVariables = Exact<{
11723
12722
  id: Scalars["String"];
@@ -11757,8 +12756,8 @@ export declare type ArchiveProjectMutation = {
11757
12756
  __typename?: "Mutation";
11758
12757
  } & {
11759
12758
  projectArchive: {
11760
- __typename?: "ArchivePayload";
11761
- } & ArchivePayloadFragment;
12759
+ __typename?: "ProjectArchivePayload";
12760
+ } & ProjectArchivePayloadFragment;
11762
12761
  };
11763
12762
  export declare type CreateProjectMutationVariables = Exact<{
11764
12763
  input: ProjectCreateInput;
@@ -11777,8 +12776,8 @@ export declare type DeleteProjectMutation = {
11777
12776
  __typename?: "Mutation";
11778
12777
  } & {
11779
12778
  projectDelete: {
11780
- __typename?: "ArchivePayload";
11781
- } & ArchivePayloadFragment;
12779
+ __typename?: "DeletePayload";
12780
+ } & DeletePayloadFragment;
11782
12781
  };
11783
12782
  export declare type CreateProjectLinkMutationVariables = Exact<{
11784
12783
  input: ProjectLinkCreateInput;
@@ -11797,8 +12796,8 @@ export declare type DeleteProjectLinkMutation = {
11797
12796
  __typename?: "Mutation";
11798
12797
  } & {
11799
12798
  projectLinkDelete: {
11800
- __typename?: "ArchivePayload";
11801
- } & ArchivePayloadFragment;
12799
+ __typename?: "DeletePayload";
12800
+ } & DeletePayloadFragment;
11802
12801
  };
11803
12802
  export declare type UpdateProjectLinkMutationVariables = Exact<{
11804
12803
  id: Scalars["String"];
@@ -11828,8 +12827,8 @@ export declare type DeleteProjectMilestoneMutation = {
11828
12827
  __typename?: "Mutation";
11829
12828
  } & {
11830
12829
  projectMilestoneDelete: {
11831
- __typename?: "ArchivePayload";
11832
- } & ArchivePayloadFragment;
12830
+ __typename?: "DeletePayload";
12831
+ } & DeletePayloadFragment;
11833
12832
  };
11834
12833
  export declare type UpdateProjectMilestoneMutationVariables = Exact<{
11835
12834
  id: Scalars["String"];
@@ -11849,8 +12848,8 @@ export declare type UnarchiveProjectMutation = {
11849
12848
  __typename?: "Mutation";
11850
12849
  } & {
11851
12850
  projectUnarchive: {
11852
- __typename?: "ArchivePayload";
11853
- } & ArchivePayloadFragment;
12851
+ __typename?: "ProjectArchivePayload";
12852
+ } & ProjectArchivePayloadFragment;
11854
12853
  };
11855
12854
  export declare type UpdateProjectMutationVariables = Exact<{
11856
12855
  id: Scalars["String"];
@@ -11880,8 +12879,8 @@ export declare type DeleteProjectUpdateMutation = {
11880
12879
  __typename?: "Mutation";
11881
12880
  } & {
11882
12881
  projectUpdateDelete: {
11883
- __typename?: "ArchivePayload";
11884
- } & ArchivePayloadFragment;
12882
+ __typename?: "DeletePayload";
12883
+ } & DeletePayloadFragment;
11885
12884
  };
11886
12885
  export declare type CreateProjectUpdateInteractionMutationVariables = Exact<{
11887
12886
  input: ProjectUpdateInteractionCreateInput;
@@ -11951,8 +12950,8 @@ export declare type DeleteReactionMutation = {
11951
12950
  __typename?: "Mutation";
11952
12951
  } & {
11953
12952
  reactionDelete: {
11954
- __typename?: "ArchivePayload";
11955
- } & ArchivePayloadFragment;
12953
+ __typename?: "DeletePayload";
12954
+ } & DeletePayloadFragment;
11956
12955
  };
11957
12956
  export declare type RefreshGoogleSheetsDataMutationVariables = Exact<{
11958
12957
  id: Scalars["String"];
@@ -11971,8 +12970,8 @@ export declare type ResendOrganizationInviteMutation = {
11971
12970
  __typename?: "Mutation";
11972
12971
  } & {
11973
12972
  resendOrganizationInvite: {
11974
- __typename?: "ArchivePayload";
11975
- } & ArchivePayloadFragment;
12973
+ __typename?: "DeletePayload";
12974
+ } & DeletePayloadFragment;
11976
12975
  };
11977
12976
  export declare type ArchiveRoadmapMutationVariables = Exact<{
11978
12977
  id: Scalars["String"];
@@ -11981,8 +12980,8 @@ export declare type ArchiveRoadmapMutation = {
11981
12980
  __typename?: "Mutation";
11982
12981
  } & {
11983
12982
  roadmapArchive: {
11984
- __typename?: "ArchivePayload";
11985
- } & ArchivePayloadFragment;
12983
+ __typename?: "RoadmapArchivePayload";
12984
+ } & RoadmapArchivePayloadFragment;
11986
12985
  };
11987
12986
  export declare type CreateRoadmapMutationVariables = Exact<{
11988
12987
  input: RoadmapCreateInput;
@@ -12001,8 +13000,8 @@ export declare type DeleteRoadmapMutation = {
12001
13000
  __typename?: "Mutation";
12002
13001
  } & {
12003
13002
  roadmapDelete: {
12004
- __typename?: "ArchivePayload";
12005
- } & ArchivePayloadFragment;
13003
+ __typename?: "DeletePayload";
13004
+ } & DeletePayloadFragment;
12006
13005
  };
12007
13006
  export declare type CreateRoadmapToProjectMutationVariables = Exact<{
12008
13007
  input: RoadmapToProjectCreateInput;
@@ -12021,8 +13020,8 @@ export declare type DeleteRoadmapToProjectMutation = {
12021
13020
  __typename?: "Mutation";
12022
13021
  } & {
12023
13022
  roadmapToProjectDelete: {
12024
- __typename?: "ArchivePayload";
12025
- } & ArchivePayloadFragment;
13023
+ __typename?: "DeletePayload";
13024
+ } & DeletePayloadFragment;
12026
13025
  };
12027
13026
  export declare type UpdateRoadmapToProjectMutationVariables = Exact<{
12028
13027
  id: Scalars["String"];
@@ -12042,8 +13041,8 @@ export declare type UnarchiveRoadmapMutation = {
12042
13041
  __typename?: "Mutation";
12043
13042
  } & {
12044
13043
  roadmapUnarchive: {
12045
- __typename?: "ArchivePayload";
12046
- } & ArchivePayloadFragment;
13044
+ __typename?: "RoadmapArchivePayload";
13045
+ } & RoadmapArchivePayloadFragment;
12047
13046
  };
12048
13047
  export declare type UpdateRoadmapMutationVariables = Exact<{
12049
13048
  id: Scalars["String"];
@@ -12094,8 +13093,8 @@ export declare type DeleteTeamMutation = {
12094
13093
  __typename?: "Mutation";
12095
13094
  } & {
12096
13095
  teamDelete: {
12097
- __typename?: "ArchivePayload";
12098
- } & ArchivePayloadFragment;
13096
+ __typename?: "DeletePayload";
13097
+ } & DeletePayloadFragment;
12099
13098
  };
12100
13099
  export declare type DeleteTeamKeyMutationVariables = Exact<{
12101
13100
  id: Scalars["String"];
@@ -12104,8 +13103,8 @@ export declare type DeleteTeamKeyMutation = {
12104
13103
  __typename?: "Mutation";
12105
13104
  } & {
12106
13105
  teamKeyDelete: {
12107
- __typename?: "ArchivePayload";
12108
- } & ArchivePayloadFragment;
13106
+ __typename?: "DeletePayload";
13107
+ } & DeletePayloadFragment;
12109
13108
  };
12110
13109
  export declare type CreateTeamMembershipMutationVariables = Exact<{
12111
13110
  input: TeamMembershipCreateInput;
@@ -12124,8 +13123,8 @@ export declare type DeleteTeamMembershipMutation = {
12124
13123
  __typename?: "Mutation";
12125
13124
  } & {
12126
13125
  teamMembershipDelete: {
12127
- __typename?: "ArchivePayload";
12128
- } & ArchivePayloadFragment;
13126
+ __typename?: "DeletePayload";
13127
+ } & DeletePayloadFragment;
12129
13128
  };
12130
13129
  export declare type UpdateTeamMembershipMutationVariables = Exact<{
12131
13130
  id: Scalars["String"];
@@ -12166,8 +13165,8 @@ export declare type DeleteTemplateMutation = {
12166
13165
  __typename?: "Mutation";
12167
13166
  } & {
12168
13167
  templateDelete: {
12169
- __typename?: "ArchivePayload";
12170
- } & ArchivePayloadFragment;
13168
+ __typename?: "DeletePayload";
13169
+ } & DeletePayloadFragment;
12171
13170
  };
12172
13171
  export declare type UpdateTemplateMutationVariables = Exact<{
12173
13172
  id: Scalars["String"];
@@ -12361,8 +13360,8 @@ export declare type DeleteViewPreferencesMutation = {
12361
13360
  __typename?: "Mutation";
12362
13361
  } & {
12363
13362
  viewPreferencesDelete: {
12364
- __typename?: "ArchivePayload";
12365
- } & ArchivePayloadFragment;
13363
+ __typename?: "DeletePayload";
13364
+ } & DeletePayloadFragment;
12366
13365
  };
12367
13366
  export declare type UpdateViewPreferencesMutationVariables = Exact<{
12368
13367
  id: Scalars["String"];
@@ -12392,8 +13391,8 @@ export declare type DeleteWebhookMutation = {
12392
13391
  __typename?: "Mutation";
12393
13392
  } & {
12394
13393
  webhookDelete: {
12395
- __typename?: "ArchivePayload";
12396
- } & ArchivePayloadFragment;
13394
+ __typename?: "DeletePayload";
13395
+ } & DeletePayloadFragment;
12397
13396
  };
12398
13397
  export declare type UpdateWebhookMutationVariables = Exact<{
12399
13398
  id: Scalars["String"];
@@ -12413,8 +13412,8 @@ export declare type ArchiveWorkflowStateMutation = {
12413
13412
  __typename?: "Mutation";
12414
13413
  } & {
12415
13414
  workflowStateArchive: {
12416
- __typename?: "ArchivePayload";
12417
- } & ArchivePayloadFragment;
13415
+ __typename?: "WorkflowStateArchivePayload";
13416
+ } & WorkflowStateArchivePayloadFragment;
12418
13417
  };
12419
13418
  export declare type CreateWorkflowStateMutationVariables = Exact<{
12420
13419
  input: WorkflowStateCreateInput;
@@ -12936,6 +13935,30 @@ export declare type DocumentsQuery = {
12936
13935
  __typename?: "DocumentConnection";
12937
13936
  } & DocumentConnectionFragment;
12938
13937
  };
13938
+ export declare type EmbedInfoQueryVariables = Exact<{
13939
+ url: Scalars["String"];
13940
+ }>;
13941
+ export declare type EmbedInfoQuery = {
13942
+ __typename?: "Query";
13943
+ } & {
13944
+ embedInfo: {
13945
+ __typename?: "EmbedPayload";
13946
+ } & EmbedPayloadFragment;
13947
+ };
13948
+ export declare type EmbedInfo_EmbedQueryVariables = Exact<{
13949
+ url: Scalars["String"];
13950
+ }>;
13951
+ export declare type EmbedInfo_EmbedQuery = {
13952
+ __typename?: "Query";
13953
+ } & {
13954
+ embedInfo: {
13955
+ __typename?: "EmbedPayload";
13956
+ } & {
13957
+ embed?: Maybe<{
13958
+ __typename?: "Embed";
13959
+ } & EmbedFragment>;
13960
+ };
13961
+ };
12939
13962
  export declare type EmojiQueryVariables = Exact<{
12940
13963
  id: Scalars["String"];
12941
13964
  }>;
@@ -13418,6 +14441,23 @@ export declare type IssueRelationsQuery = {
13418
14441
  __typename?: "IssueRelationConnection";
13419
14442
  } & IssueRelationConnectionFragment;
13420
14443
  };
14444
+ export declare type IssueSearchQueryVariables = Exact<{
14445
+ after?: Maybe<Scalars["String"]>;
14446
+ before?: Maybe<Scalars["String"]>;
14447
+ filter?: Maybe<IssueFilter>;
14448
+ first?: Maybe<Scalars["Int"]>;
14449
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14450
+ last?: Maybe<Scalars["Int"]>;
14451
+ orderBy?: Maybe<PaginationOrderBy>;
14452
+ query?: Maybe<Scalars["String"]>;
14453
+ }>;
14454
+ export declare type IssueSearchQuery = {
14455
+ __typename?: "Query";
14456
+ } & {
14457
+ issueSearch: {
14458
+ __typename?: "IssueConnection";
14459
+ } & IssueConnectionFragment;
14460
+ };
13421
14461
  export declare type IssueVcsBranchSearchQueryVariables = Exact<{
13422
14462
  branchName: Scalars["String"];
13423
14463
  }>;
@@ -13631,10 +14671,18 @@ export declare type NotificationSubscriptionQuery = {
13631
14671
  __typename?: "Query";
13632
14672
  } & {
13633
14673
  notificationSubscription: ({
14674
+ __typename?: "CustomViewNotificationSubscription";
14675
+ } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
14676
+ __typename?: "CycleNotificationSubscription";
14677
+ } & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
14678
+ __typename?: "LabelNotificationSubscription";
14679
+ } & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
13634
14680
  __typename?: "ProjectNotificationSubscription";
13635
14681
  } & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
13636
14682
  __typename?: "TeamNotificationSubscription";
13637
- } & NotificationSubscription_TeamNotificationSubscription_Fragment);
14683
+ } & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
14684
+ __typename?: "UserNotificationSubscription";
14685
+ } & NotificationSubscription_UserNotificationSubscription_Fragment);
13638
14686
  };
13639
14687
  export declare type NotificationSubscriptionsQueryVariables = Exact<{
13640
14688
  after?: Maybe<Scalars["String"]>;
@@ -14548,6 +15596,16 @@ export declare type TemplatesQuery = {
14548
15596
  __typename?: "Template";
14549
15597
  } & TemplateFragment>;
14550
15598
  };
15599
+ export declare type TemplatesForIntegrationQueryVariables = Exact<{
15600
+ integrationType: Scalars["String"];
15601
+ }>;
15602
+ export declare type TemplatesForIntegrationQuery = {
15603
+ __typename?: "Query";
15604
+ } & {
15605
+ templatesForIntegration: Array<{
15606
+ __typename?: "Template";
15607
+ } & TemplateFragment>;
15608
+ };
14551
15609
  export declare type UserQueryVariables = Exact<{
14552
15610
  id: Scalars["String"];
14553
15611
  }>;
@@ -14830,12 +15888,30 @@ export declare type WorkflowStatesQuery = {
14830
15888
  } & WorkflowStateConnectionFragment;
14831
15889
  };
14832
15890
  export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
15891
+ export declare const CustomViewNotificationSubscriptionFragmentDoc: DocumentNode<CustomViewNotificationSubscriptionFragment, unknown>;
15892
+ export declare const CycleNotificationSubscriptionFragmentDoc: DocumentNode<CycleNotificationSubscriptionFragment, unknown>;
14833
15893
  export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
15894
+ export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
15895
+ export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
15896
+ export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
15897
+ export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
15898
+ export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
15899
+ export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
15900
+ export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
15901
+ export declare const ProjectNotificationFragmentDoc: DocumentNode<ProjectNotificationFragment, unknown>;
15902
+ export declare const NotificationFragmentDoc: DocumentNode<NotificationFragment, unknown>;
15903
+ export declare const NotificationArchivePayloadFragmentDoc: DocumentNode<NotificationArchivePayloadFragment, unknown>;
15904
+ export declare const ProjectArchivePayloadFragmentDoc: DocumentNode<ProjectArchivePayloadFragment, unknown>;
15905
+ export declare const RoadmapArchivePayloadFragmentDoc: DocumentNode<RoadmapArchivePayloadFragment, unknown>;
15906
+ export declare const WorkflowStateArchivePayloadFragmentDoc: DocumentNode<WorkflowStateArchivePayloadFragment, unknown>;
15907
+ export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragment, unknown>;
15908
+ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<LabelNotificationSubscriptionFragment, unknown>;
14834
15909
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
14835
15910
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
14836
15911
  export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
14837
15912
  export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
14838
15913
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
15914
+ export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
14839
15915
  export declare const SyncResponseFragmentDoc: DocumentNode<SyncResponseFragment, unknown>;
14840
15916
  export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
14841
15917
  export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
@@ -14851,6 +15927,8 @@ export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFra
14851
15927
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
14852
15928
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
14853
15929
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
15930
+ export declare const PagerDutyScheduleMappingFragmentDoc: DocumentNode<PagerDutyScheduleMappingFragment, unknown>;
15931
+ export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
14854
15932
  export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
14855
15933
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
14856
15934
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
@@ -14861,7 +15939,6 @@ export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
14861
15939
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
14862
15940
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
14863
15941
  export declare const ApiKeyPayloadFragmentDoc: DocumentNode<ApiKeyPayloadFragment, unknown>;
14864
- export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragment, unknown>;
14865
15942
  export declare const AttachmentFragmentDoc: DocumentNode<AttachmentFragment, unknown>;
14866
15943
  export declare const AttachmentConnectionFragmentDoc: DocumentNode<AttachmentConnectionFragment, unknown>;
14867
15944
  export declare const AttachmentPayloadFragmentDoc: DocumentNode<AttachmentPayloadFragment, unknown>;
@@ -14895,15 +15972,18 @@ export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSear
14895
15972
  export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
14896
15973
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
14897
15974
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
15975
+ export declare const EmbedFragmentDoc: DocumentNode<EmbedFragment, unknown>;
15976
+ export declare const EmbedPayloadFragmentDoc: DocumentNode<EmbedPayloadFragment, unknown>;
14898
15977
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
14899
15978
  export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
14900
15979
  export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
14901
- export declare const EventPayloadFragmentDoc: DocumentNode<EventPayloadFragment, unknown>;
14902
15980
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
14903
15981
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
14904
15982
  export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
14905
15983
  export declare const FigmaEmbedFragmentDoc: DocumentNode<FigmaEmbedFragment, unknown>;
14906
15984
  export declare const FigmaEmbedPayloadFragmentDoc: DocumentNode<FigmaEmbedPayloadFragment, unknown>;
15985
+ export declare const FirstResponderScheduleFragmentDoc: DocumentNode<FirstResponderScheduleFragment, unknown>;
15986
+ export declare const FirstResponderScheduleConnectionFragmentDoc: DocumentNode<FirstResponderScheduleConnectionFragment, unknown>;
14907
15987
  export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
14908
15988
  export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
14909
15989
  export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
@@ -14941,11 +16021,7 @@ export declare const IssueSearchPayloadFragmentDoc: DocumentNode<IssueSearchPayl
14941
16021
  export declare const IssueSearchResultConnectionFragmentDoc: DocumentNode<IssueSearchResultConnectionFragment, unknown>;
14942
16022
  export declare const LogoutResponseFragmentDoc: DocumentNode<LogoutResponseFragment, unknown>;
14943
16023
  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>;
16024
+ export declare const NotificationBatchActionPayloadFragmentDoc: DocumentNode<NotificationBatchActionPayloadFragment, unknown>;
14949
16025
  export declare const NotificationConnectionFragmentDoc: DocumentNode<NotificationConnectionFragment, unknown>;
14950
16026
  export declare const NotificationPayloadFragmentDoc: DocumentNode<NotificationPayloadFragment, unknown>;
14951
16027
  export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
@@ -15065,6 +16141,15 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
15065
16141
  issueId: Scalars["String"];
15066
16142
  jiraIssueId: Scalars["String"];
15067
16143
  }>>;
16144
+ export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSlackMutation, Exact<{
16145
+ channel: Scalars["String"];
16146
+ id?: Maybe<string> | undefined;
16147
+ issueId: Scalars["String"];
16148
+ latest: Scalars["String"];
16149
+ title?: Maybe<string> | undefined;
16150
+ ts?: Maybe<string> | undefined;
16151
+ url: Scalars["String"];
16152
+ }>>;
15068
16153
  export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMutation, Exact<{
15069
16154
  id?: Maybe<string> | undefined;
15070
16155
  issueId: Scalars["String"];
@@ -15075,6 +16160,9 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
15075
16160
  issueId: Scalars["String"];
15076
16161
  ticketId: Scalars["String"];
15077
16162
  }>>;
16163
+ export declare const AttachmentUnsyncSlackDocument: DocumentNode<AttachmentUnsyncSlackMutation, Exact<{
16164
+ id: Scalars["String"];
16165
+ }>>;
15078
16166
  export declare const UpdateAttachmentDocument: DocumentNode<UpdateAttachmentMutation, Exact<{
15079
16167
  id: Scalars["String"];
15080
16168
  input: AttachmentUpdateInput;
@@ -15144,9 +16232,6 @@ export declare const CreateEmojiDocument: DocumentNode<CreateEmojiMutation, Exac
15144
16232
  export declare const DeleteEmojiDocument: DocumentNode<DeleteEmojiMutation, Exact<{
15145
16233
  id: Scalars["String"];
15146
16234
  }>>;
15147
- export declare const CreateEventDocument: DocumentNode<CreateEventMutation, Exact<{
15148
- input: EventCreateInput;
15149
- }>>;
15150
16235
  export declare const CreateFavoriteDocument: DocumentNode<CreateFavoriteMutation, Exact<{
15151
16236
  input: FavoriteCreateInput;
15152
16237
  }>>;
@@ -15231,11 +16316,11 @@ export declare const IntegrationSlackDocument: DocumentNode<IntegrationSlackMuta
15231
16316
  redirectUri: Scalars["String"];
15232
16317
  shouldUseV2Auth?: Maybe<boolean> | undefined;
15233
16318
  }>>;
15234
- export declare const IntegrationSlackImportEmojisDocument: DocumentNode<IntegrationSlackImportEmojisMutation, Exact<{
16319
+ export declare const IntegrationSlackAsksDocument: DocumentNode<IntegrationSlackAsksMutation, Exact<{
15235
16320
  code: Scalars["String"];
15236
16321
  redirectUri: Scalars["String"];
15237
16322
  }>>;
15238
- export declare const IntegrationSlackIntakeDocument: DocumentNode<IntegrationSlackIntakeMutation, Exact<{
16323
+ export declare const IntegrationSlackImportEmojisDocument: DocumentNode<IntegrationSlackImportEmojisMutation, Exact<{
15239
16324
  code: Scalars["String"];
15240
16325
  redirectUri: Scalars["String"];
15241
16326
  }>>;
@@ -15360,9 +16445,6 @@ export declare const UpdateIssueImportDocument: DocumentNode<UpdateIssueImportMu
15360
16445
  id: Scalars["String"];
15361
16446
  input: IssueImportUpdateInput;
15362
16447
  }>>;
15363
- export declare const ArchiveIssueLabelDocument: DocumentNode<ArchiveIssueLabelMutation, Exact<{
15364
- id: Scalars["String"];
15365
- }>>;
15366
16448
  export declare const CreateIssueLabelDocument: DocumentNode<CreateIssueLabelMutation, Exact<{
15367
16449
  input: IssueLabelCreateInput;
15368
16450
  replaceTeamLabels?: Maybe<boolean> | undefined;
@@ -15407,6 +16489,20 @@ export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
15407
16489
  export declare const ArchiveNotificationDocument: DocumentNode<ArchiveNotificationMutation, Exact<{
15408
16490
  id: Scalars["String"];
15409
16491
  }>>;
16492
+ export declare const NotificationArchiveAllDocument: DocumentNode<NotificationArchiveAllMutation, Exact<{
16493
+ input: NotificationEntityInput;
16494
+ }>>;
16495
+ export declare const NotificationMarkReadAllDocument: DocumentNode<NotificationMarkReadAllMutation, Exact<{
16496
+ input: NotificationEntityInput;
16497
+ readAt: Scalars["DateTime"];
16498
+ }>>;
16499
+ export declare const NotificationMarkUnreadAllDocument: DocumentNode<NotificationMarkUnreadAllMutation, Exact<{
16500
+ input: NotificationEntityInput;
16501
+ }>>;
16502
+ export declare const NotificationSnoozeAllDocument: DocumentNode<NotificationSnoozeAllMutation, Exact<{
16503
+ input: NotificationEntityInput;
16504
+ snoozedUntilAt: Scalars["DateTime"];
16505
+ }>>;
15410
16506
  export declare const CreateNotificationSubscriptionDocument: DocumentNode<CreateNotificationSubscriptionMutation, Exact<{
15411
16507
  input: NotificationSubscriptionCreateInput;
15412
16508
  }>>;
@@ -15420,6 +16516,10 @@ export declare const UpdateNotificationSubscriptionDocument: DocumentNode<Update
15420
16516
  export declare const UnarchiveNotificationDocument: DocumentNode<UnarchiveNotificationMutation, Exact<{
15421
16517
  id: Scalars["String"];
15422
16518
  }>>;
16519
+ export declare const NotificationUnsnoozeAllDocument: DocumentNode<NotificationUnsnoozeAllMutation, Exact<{
16520
+ input: NotificationEntityInput;
16521
+ unsnoozedAt: Scalars["DateTime"];
16522
+ }>>;
15423
16523
  export declare const UpdateNotificationDocument: DocumentNode<UpdateNotificationMutation, Exact<{
15424
16524
  id: Scalars["String"];
15425
16525
  input: NotificationUpdateInput;
@@ -15901,6 +17001,12 @@ export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
15901
17001
  last?: Maybe<number> | undefined;
15902
17002
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15903
17003
  }>>;
17004
+ export declare const EmbedInfoDocument: DocumentNode<EmbedInfoQuery, Exact<{
17005
+ url: Scalars["String"];
17006
+ }>>;
17007
+ export declare const EmbedInfo_EmbedDocument: DocumentNode<EmbedInfo_EmbedQuery, Exact<{
17008
+ url: Scalars["String"];
17009
+ }>>;
15904
17010
  export declare const EmojiDocument: DocumentNode<EmojiQuery, Exact<{
15905
17011
  id: Scalars["String"];
15906
17012
  }>>;
@@ -16111,6 +17217,16 @@ export declare const IssueRelationsDocument: DocumentNode<IssueRelationsQuery, E
16111
17217
  last?: Maybe<number> | undefined;
16112
17218
  orderBy?: Maybe<PaginationOrderBy> | undefined;
16113
17219
  }>>;
17220
+ export declare const IssueSearchDocument: DocumentNode<IssueSearchQuery, Exact<{
17221
+ after?: Maybe<string> | undefined;
17222
+ before?: Maybe<string> | undefined;
17223
+ filter?: Maybe<IssueFilter> | undefined;
17224
+ first?: Maybe<number> | undefined;
17225
+ includeArchived?: Maybe<boolean> | undefined;
17226
+ last?: Maybe<number> | undefined;
17227
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
17228
+ query?: Maybe<string> | undefined;
17229
+ }>>;
16114
17230
  export declare const IssueVcsBranchSearchDocument: DocumentNode<IssueVcsBranchSearchQuery, Exact<{
16115
17231
  branchName: Scalars["String"];
16116
17232
  }>>;
@@ -16616,6 +17732,9 @@ export declare const TemplateDocument: DocumentNode<TemplateQuery, Exact<{
16616
17732
  export declare const TemplatesDocument: DocumentNode<TemplatesQuery, Exact<{
16617
17733
  [key: string]: never;
16618
17734
  }>>;
17735
+ export declare const TemplatesForIntegrationDocument: DocumentNode<TemplatesForIntegrationQuery, Exact<{
17736
+ integrationType: Scalars["String"];
17737
+ }>>;
16619
17738
  export declare const UserDocument: DocumentNode<UserQuery, Exact<{
16620
17739
  id: Scalars["String"];
16621
17740
  }>>;