@linear/sdk 5.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.
- package/CHANGELOG.md +386 -0
- package/dist/_generated_documents.d.ts +1481 -272
- package/dist/_generated_documents.d.ts.map +1 -1
- package/dist/_generated_sdk.d.ts +1049 -304
- package/dist/_generated_sdk.d.ts.map +1 -1
- package/dist/index-cjs.js +3385 -765
- package/dist/index-cjs.js.map +1 -1
- package/dist/index-cjs.min.js +1 -1
- package/dist/index-cjs.min.js.br +0 -0
- package/dist/index-cjs.min.js.gz +0 -0
- package/dist/index-cjs.min.js.map +1 -1
- package/dist/index-es.js +3352 -762
- package/dist/index-es.js.map +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-es.min.js.br +0 -0
- package/dist/index-es.min.js.gz +0 -0
- package/dist/index-es.min.js.map +1 -1
- package/dist/index-umd.js +3382 -765
- package/dist/index-umd.js.map +1 -1
- package/dist/index-umd.min.js +1 -1
- package/dist/index-umd.min.js.br +0 -0
- package/dist/index-umd.min.js.gz +0 -0
- package/dist/index-umd.min.js.map +1 -1
- package/package.json +1 -1
@@ -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. */
|
@@ -510,6 +520,48 @@ export declare type CommentUpdateInput = {
|
|
510
520
|
/** The comment content as a Prosemirror document. */
|
511
521
|
bodyData?: Maybe<Scalars["JSON"]>;
|
512
522
|
};
|
523
|
+
/** A company related to issue's origin. */
|
524
|
+
export declare type Company = Node & {
|
525
|
+
__typename?: "Company";
|
526
|
+
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
527
|
+
archivedAt?: Maybe<Scalars["DateTime"]>;
|
528
|
+
/** Custom company properties. */
|
529
|
+
companyProperties: Scalars["JSONObject"];
|
530
|
+
/** The time at which the entity was created. */
|
531
|
+
createdAt: Scalars["DateTime"];
|
532
|
+
/** The user who added the company. */
|
533
|
+
creator: User;
|
534
|
+
/** Company ID in an external system. */
|
535
|
+
externalId: Scalars["String"];
|
536
|
+
/** The unique identifier of the entity. */
|
537
|
+
id: Scalars["ID"];
|
538
|
+
/** Company logo URL. */
|
539
|
+
logoUrl?: Maybe<Scalars["String"]>;
|
540
|
+
/** Company name. */
|
541
|
+
name: Scalars["String"];
|
542
|
+
/** The organization of the customer. */
|
543
|
+
organization: Organization;
|
544
|
+
/**
|
545
|
+
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
546
|
+
* 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
|
547
|
+
* been updated after creation.
|
548
|
+
*/
|
549
|
+
updatedAt: Scalars["DateTime"];
|
550
|
+
/** Company website URL. */
|
551
|
+
websiteUrl?: Maybe<Scalars["String"]>;
|
552
|
+
};
|
553
|
+
export declare type CompanyConnection = {
|
554
|
+
__typename?: "CompanyConnection";
|
555
|
+
edges: Array<CompanyEdge>;
|
556
|
+
nodes: Array<Company>;
|
557
|
+
pageInfo: PageInfo;
|
558
|
+
};
|
559
|
+
export declare type CompanyEdge = {
|
560
|
+
__typename?: "CompanyEdge";
|
561
|
+
/** Used in `before` and `after` args */
|
562
|
+
cursor: Scalars["String"];
|
563
|
+
node: Company;
|
564
|
+
};
|
513
565
|
export declare type ContactCreateInput = {
|
514
566
|
/** User's browser information. */
|
515
567
|
browser?: Maybe<Scalars["String"]>;
|
@@ -533,6 +585,8 @@ export declare type ContactPayload = {
|
|
533
585
|
};
|
534
586
|
/** [INTERNAL] Input for sending a message to the Linear Sales team */
|
535
587
|
export declare type ContactSalesCreateInput = {
|
588
|
+
/** Size of the company. */
|
589
|
+
companySize?: Maybe<Scalars["String"]>;
|
536
590
|
/** Work email of the person requesting information. */
|
537
591
|
email: Scalars["String"];
|
538
592
|
/** The message the user sent. */
|
@@ -547,6 +601,13 @@ export declare type ContentComparator = {
|
|
547
601
|
/** [Internal] Not-contains constraint. */
|
548
602
|
notContains?: Maybe<Scalars["String"]>;
|
549
603
|
};
|
604
|
+
export declare enum ContextViewType {
|
605
|
+
ActiveCycle = "activeCycle",
|
606
|
+
ActiveIssues = "activeIssues",
|
607
|
+
Backlog = "backlog",
|
608
|
+
Triage = "triage",
|
609
|
+
UpcomingCycle = "upcomingCycle"
|
610
|
+
}
|
550
611
|
export declare type CreateCsvExportReportPayload = {
|
551
612
|
__typename?: "CreateCsvExportReportPayload";
|
552
613
|
/** Whether the operation was successful. */
|
@@ -597,8 +658,8 @@ export declare type CustomView = Node & {
|
|
597
658
|
name: Scalars["String"];
|
598
659
|
/** The organization of the custom view. */
|
599
660
|
organization: Organization;
|
600
|
-
/** The user who owns the custom view. */
|
601
|
-
owner
|
661
|
+
/** [ALPHA] The user who owns the custom view. */
|
662
|
+
owner?: Maybe<User>;
|
602
663
|
/** [ALPHA] The filter applied to projects in the custom view. */
|
603
664
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
604
665
|
/** Whether the custom view is shared with everyone in the organization. */
|
@@ -611,6 +672,8 @@ export declare type CustomView = Node & {
|
|
611
672
|
* been updated after creation.
|
612
673
|
*/
|
613
674
|
updatedAt: Scalars["DateTime"];
|
675
|
+
/** [ALPHA] The user who last updated the custom view. */
|
676
|
+
updatedBy: User;
|
614
677
|
};
|
615
678
|
export declare type CustomViewConnection = {
|
616
679
|
__typename?: "CustomViewConnection";
|
@@ -633,7 +696,7 @@ export declare type CustomViewCreateInput = {
|
|
633
696
|
id?: Maybe<Scalars["String"]>;
|
634
697
|
/** The name of the custom view. */
|
635
698
|
name: Scalars["String"];
|
636
|
-
/** The owner of the custom view */
|
699
|
+
/** The owner of the custom view. */
|
637
700
|
ownerId?: Maybe<Scalars["String"]>;
|
638
701
|
/** [ALPHA] The project filter applied to issues in the custom view. */
|
639
702
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
@@ -648,6 +711,42 @@ export declare type CustomViewEdge = {
|
|
648
711
|
cursor: Scalars["String"];
|
649
712
|
node: CustomView;
|
650
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
|
+
};
|
651
750
|
export declare type CustomViewPayload = {
|
652
751
|
__typename?: "CustomViewPayload";
|
653
752
|
/** The custom view that was created or updated. */
|
@@ -679,7 +778,7 @@ export declare type CustomViewUpdateInput = {
|
|
679
778
|
icon?: Maybe<Scalars["String"]>;
|
680
779
|
/** The name of the custom view. */
|
681
780
|
name?: Maybe<Scalars["String"]>;
|
682
|
-
/** The owner of the custom view */
|
781
|
+
/** The owner of the custom view. */
|
683
782
|
ownerId?: Maybe<Scalars["String"]>;
|
684
783
|
/** [ALPHA] The project filter applied to issues in the custom view. */
|
685
784
|
projectFilterData?: Maybe<Scalars["JSONObject"]>;
|
@@ -756,6 +855,16 @@ export declare type CycleUncompletedIssuesUponCloseArgs = {
|
|
756
855
|
last?: Maybe<Scalars["Int"]>;
|
757
856
|
orderBy?: Maybe<PaginationOrderBy>;
|
758
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
|
+
};
|
759
868
|
export declare type CycleConnection = {
|
760
869
|
__typename?: "CycleConnection";
|
761
870
|
edges: Array<CycleEdge>;
|
@@ -821,6 +930,42 @@ export declare type CycleFilter = {
|
|
821
930
|
/** Comparator for the updated at date. */
|
822
931
|
updatedAt?: Maybe<DateComparator>;
|
823
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
|
+
};
|
824
969
|
export declare type CyclePayload = {
|
825
970
|
__typename?: "CyclePayload";
|
826
971
|
/** The Cycle that was created or updated. */
|
@@ -875,6 +1020,16 @@ export declare type DeleteOrganizationInput = {
|
|
875
1020
|
/** The deletion code to confirm operation. */
|
876
1021
|
deletionCode: Scalars["String"];
|
877
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
|
+
};
|
878
1033
|
/** A document for a project. */
|
879
1034
|
export declare type Document = Node & {
|
880
1035
|
__typename?: "Document";
|
@@ -1078,6 +1233,41 @@ export declare type EmailUserAccountAuthChallengeResponse = {
|
|
1078
1233
|
/** Whether the operation was successful. */
|
1079
1234
|
success: Scalars["Boolean"];
|
1080
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
|
+
};
|
1081
1271
|
/** A custom emoji. */
|
1082
1272
|
export declare type Emoji = Node & {
|
1083
1273
|
__typename?: "Emoji";
|
@@ -1173,23 +1363,6 @@ export declare type EstimateComparator = {
|
|
1173
1363
|
/** Compound filters, all of which need to be matched by the estimate. */
|
1174
1364
|
or?: Maybe<Array<NullableNumberComparator>>;
|
1175
1365
|
};
|
1176
|
-
export declare type EventCreateInput = {
|
1177
|
-
/** The category of the event to create. */
|
1178
|
-
category: Scalars["String"];
|
1179
|
-
/** Additional data of the event, encoded as JSON. */
|
1180
|
-
data?: Maybe<Scalars["JSON"]>;
|
1181
|
-
/** The subject of the event. */
|
1182
|
-
subject: Scalars["String"];
|
1183
|
-
/** The target identifier of the event. */
|
1184
|
-
targetId?: Maybe<Scalars["String"]>;
|
1185
|
-
/** The value of the event. */
|
1186
|
-
value?: Maybe<Scalars["Float"]>;
|
1187
|
-
};
|
1188
|
-
export declare type EventPayload = {
|
1189
|
-
__typename?: "EventPayload";
|
1190
|
-
/** Whether the operation was successful. */
|
1191
|
-
success: Scalars["Boolean"];
|
1192
|
-
};
|
1193
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. */
|
1194
1367
|
export declare type ExternalUser = Node & {
|
1195
1368
|
__typename?: "ExternalUser";
|
@@ -1253,6 +1426,8 @@ export declare type Favorite = Node & {
|
|
1253
1426
|
issue?: Maybe<Issue>;
|
1254
1427
|
/** The favorited label. */
|
1255
1428
|
label?: Maybe<IssueLabel>;
|
1429
|
+
/** The owner of the favorite. */
|
1430
|
+
owner: User;
|
1256
1431
|
/** The parent folder of the favorite. */
|
1257
1432
|
parent?: Maybe<Favorite>;
|
1258
1433
|
/** The team of the favorited predefined view. */
|
@@ -1275,8 +1450,8 @@ export declare type Favorite = Node & {
|
|
1275
1450
|
* been updated after creation.
|
1276
1451
|
*/
|
1277
1452
|
updatedAt: Scalars["DateTime"];
|
1278
|
-
/** The
|
1279
|
-
user
|
1453
|
+
/** The favorited user. */
|
1454
|
+
user?: Maybe<User>;
|
1280
1455
|
};
|
1281
1456
|
/** User favorites presented in the sidebar. */
|
1282
1457
|
export declare type FavoriteChildrenArgs = {
|
@@ -1322,6 +1497,8 @@ export declare type FavoriteCreateInput = {
|
|
1322
1497
|
roadmapId?: Maybe<Scalars["String"]>;
|
1323
1498
|
/** The position of the item in the favorites list. */
|
1324
1499
|
sortOrder?: Maybe<Scalars["Float"]>;
|
1500
|
+
/** The identifier of the user to favorite. */
|
1501
|
+
userId?: Maybe<Scalars["String"]>;
|
1325
1502
|
};
|
1326
1503
|
export declare type FavoriteEdge = {
|
1327
1504
|
__typename?: "FavoriteEdge";
|
@@ -1365,6 +1542,42 @@ export declare type FigmaEmbedPayload = {
|
|
1365
1542
|
/** Whether the operation was successful. */
|
1366
1543
|
success: Scalars["Boolean"];
|
1367
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
|
+
};
|
1368
1581
|
export declare type FrontAttachmentPayload = {
|
1369
1582
|
__typename?: "FrontAttachmentPayload";
|
1370
1583
|
/** The identifier of the last sync operation. */
|
@@ -1564,6 +1777,7 @@ export declare type IntegrationSettings = {
|
|
1564
1777
|
intercom?: Maybe<IntercomSettings>;
|
1565
1778
|
jira?: Maybe<JiraSettings>;
|
1566
1779
|
notion?: Maybe<NotionSettings>;
|
1780
|
+
pagerDuty?: Maybe<PagerDutySettings>;
|
1567
1781
|
sentry?: Maybe<SentrySettings>;
|
1568
1782
|
slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
|
1569
1783
|
slackPost?: Maybe<SlackPostSettings>;
|
@@ -1577,6 +1791,7 @@ export declare type IntegrationSettingsInput = {
|
|
1577
1791
|
intercom?: Maybe<IntercomSettingsInput>;
|
1578
1792
|
jira?: Maybe<JiraSettingsInput>;
|
1579
1793
|
notion?: Maybe<NotionSettingsInput>;
|
1794
|
+
pagerDuty?: Maybe<PagerDutyInput>;
|
1580
1795
|
sentry?: Maybe<SentrySettingsInput>;
|
1581
1796
|
slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
|
1582
1797
|
slackPost?: Maybe<SlackPostSettingsInput>;
|
@@ -1958,6 +2173,16 @@ export declare type IssueSubscribersArgs = {
|
|
1958
2173
|
last?: Maybe<Scalars["Int"]>;
|
1959
2174
|
orderBy?: Maybe<PaginationOrderBy>;
|
1960
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
|
+
};
|
1961
2186
|
export declare type IssueBatchPayload = {
|
1962
2187
|
__typename?: "IssueBatchPayload";
|
1963
2188
|
/** The issues that were updated. */
|
@@ -2105,8 +2330,10 @@ export declare type IssueCreateInput = {
|
|
2105
2330
|
subscriberIds?: Maybe<Array<Scalars["String"]>>;
|
2106
2331
|
/** The identifier or key of the team associated with the issue. */
|
2107
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"]>;
|
2108
2335
|
/** The title of the issue. */
|
2109
|
-
title
|
2336
|
+
title?: Maybe<Scalars["String"]>;
|
2110
2337
|
};
|
2111
2338
|
/** [Internal] A draft issue. */
|
2112
2339
|
export declare type IssueDraft = Node & {
|
@@ -2259,7 +2486,7 @@ export declare type IssueHistory = Node & {
|
|
2259
2486
|
actorId?: Maybe<Scalars["String"]>;
|
2260
2487
|
/** ID's of labels that were added. */
|
2261
2488
|
addedLabelIds?: Maybe<Array<Scalars["String"]>>;
|
2262
|
-
/** Whether the issue
|
2489
|
+
/** Whether the issue is archived at the time of this history entry. */
|
2263
2490
|
archived?: Maybe<Scalars["Boolean"]>;
|
2264
2491
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
2265
2492
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -2523,7 +2750,7 @@ export declare type IssueLabelCollectionFilter = {
|
|
2523
2750
|
/** Filters that needs to be matched by some issue labels. */
|
2524
2751
|
some?: Maybe<IssueLabelFilter>;
|
2525
2752
|
/** Filters that the issue labels team must satisfy. */
|
2526
|
-
team?: Maybe<
|
2753
|
+
team?: Maybe<NullableTeamFilter>;
|
2527
2754
|
/** Comparator for the updated at date. */
|
2528
2755
|
updatedAt?: Maybe<DateComparator>;
|
2529
2756
|
};
|
@@ -2570,7 +2797,7 @@ export declare type IssueLabelFilter = {
|
|
2570
2797
|
/** Filters that the issue label's parent label must satisfy. */
|
2571
2798
|
parent?: Maybe<IssueLabelFilter>;
|
2572
2799
|
/** Filters that the issue labels team must satisfy. */
|
2573
|
-
team?: Maybe<
|
2800
|
+
team?: Maybe<NullableTeamFilter>;
|
2574
2801
|
/** Comparator for the updated at date. */
|
2575
2802
|
updatedAt?: Maybe<DateComparator>;
|
2576
2803
|
};
|
@@ -2936,6 +3163,8 @@ export declare type IssueUpdateInput = {
|
|
2936
3163
|
assigneeId?: Maybe<Scalars["String"]>;
|
2937
3164
|
/** The position of the issue in its column on the board view. */
|
2938
3165
|
boardOrder?: Maybe<Scalars["Float"]>;
|
3166
|
+
/** The identifiers of the companies associated with this ticket. */
|
3167
|
+
companyIds?: Maybe<Array<Scalars["String"]>>;
|
2939
3168
|
/** The cycle associated with the issue. */
|
2940
3169
|
cycleId?: Maybe<Scalars["String"]>;
|
2941
3170
|
/** The issue description in markdown format. */
|
@@ -3037,6 +3266,42 @@ export declare type JoinOrganizationInput = {
|
|
3037
3266
|
/** The identifier of the organization. */
|
3038
3267
|
organizationId: Scalars["String"];
|
3039
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
|
+
};
|
3040
3305
|
export declare type LogoutResponse = {
|
3041
3306
|
__typename?: "LogoutResponse";
|
3042
3307
|
/** Whether the operation was successful. */
|
@@ -3049,16 +3314,16 @@ export declare type Mutation = {
|
|
3049
3314
|
/** Creates a new API key. */
|
3050
3315
|
apiKeyCreate: ApiKeyPayload;
|
3051
3316
|
/** Deletes an API key. */
|
3052
|
-
apiKeyDelete:
|
3317
|
+
apiKeyDelete: DeletePayload;
|
3053
3318
|
/**
|
3054
3319
|
* [DEPRECATED] Archives an issue attachment.
|
3055
3320
|
* @deprecated This mutation is deprecated, please use `attachmentDelete` instead
|
3056
3321
|
*/
|
3057
|
-
attachmentArchive:
|
3322
|
+
attachmentArchive: AttachmentArchivePayload;
|
3058
3323
|
/** Creates a new attachment, or updates existing if the same `url` and `issueId` is used. */
|
3059
3324
|
attachmentCreate: AttachmentPayload;
|
3060
3325
|
/** Deletes an issue attachment. */
|
3061
|
-
attachmentDelete:
|
3326
|
+
attachmentDelete: DeletePayload;
|
3062
3327
|
/** Link an existing Discord message to an issue. */
|
3063
3328
|
attachmentLinkDiscord: AttachmentPayload;
|
3064
3329
|
/** Link an existing Front conversation to an issue. */
|
@@ -3067,16 +3332,20 @@ export declare type Mutation = {
|
|
3067
3332
|
attachmentLinkIntercom: AttachmentPayload;
|
3068
3333
|
/** Link an existing Jira issue to an issue. */
|
3069
3334
|
attachmentLinkJiraIssue: AttachmentPayload;
|
3335
|
+
/** Link an existing Slack message to an issue. */
|
3336
|
+
attachmentLinkSlack: AttachmentPayload;
|
3070
3337
|
/** Link any url to an issue. */
|
3071
3338
|
attachmentLinkURL: AttachmentPayload;
|
3072
3339
|
/** Link an existing Zendesk ticket to an issue. */
|
3073
3340
|
attachmentLinkZendesk: AttachmentPayload;
|
3341
|
+
/** Unsyncs an existing synced Slack attachment. */
|
3342
|
+
attachmentUnsyncSlack: AttachmentPayload;
|
3074
3343
|
/** Updates an existing issue attachment. */
|
3075
3344
|
attachmentUpdate: AttachmentPayload;
|
3076
3345
|
/** Creates a new comment. */
|
3077
3346
|
commentCreate: CommentPayload;
|
3078
3347
|
/** Deletes a comment. */
|
3079
|
-
commentDelete:
|
3348
|
+
commentDelete: DeletePayload;
|
3080
3349
|
/** Updates a comment. */
|
3081
3350
|
commentUpdate: CommentPayload;
|
3082
3351
|
/** Saves user message. */
|
@@ -3090,11 +3359,11 @@ export declare type Mutation = {
|
|
3090
3359
|
/** Creates a new custom view. */
|
3091
3360
|
customViewCreate: CustomViewPayload;
|
3092
3361
|
/** Deletes a custom view. */
|
3093
|
-
customViewDelete:
|
3362
|
+
customViewDelete: DeletePayload;
|
3094
3363
|
/** Updates a custom view. */
|
3095
3364
|
customViewUpdate: CustomViewPayload;
|
3096
3365
|
/** Archives a cycle. */
|
3097
|
-
cycleArchive:
|
3366
|
+
cycleArchive: CycleArchivePayload;
|
3098
3367
|
/** Creates a new cycle. */
|
3099
3368
|
cycleCreate: CyclePayload;
|
3100
3369
|
/** Updates a cycle. */
|
@@ -3102,7 +3371,7 @@ export declare type Mutation = {
|
|
3102
3371
|
/** Creates a new document. */
|
3103
3372
|
documentCreate: DocumentPayload;
|
3104
3373
|
/** Deletes a document. */
|
3105
|
-
documentDelete:
|
3374
|
+
documentDelete: DeletePayload;
|
3106
3375
|
/** Updates a document. */
|
3107
3376
|
documentUpdate: DocumentPayload;
|
3108
3377
|
/** [INTERNAL] Subscribes the email to the newsletter. */
|
@@ -3116,13 +3385,11 @@ export declare type Mutation = {
|
|
3116
3385
|
/** Creates a custom emoji. */
|
3117
3386
|
emojiCreate: EmojiPayload;
|
3118
3387
|
/** Deletes an emoji. */
|
3119
|
-
emojiDelete:
|
3120
|
-
/** [Deprecated] Creates a new event. */
|
3121
|
-
eventCreate: EventPayload;
|
3388
|
+
emojiDelete: DeletePayload;
|
3122
3389
|
/** Creates a new favorite (project, cycle etc). */
|
3123
3390
|
favoriteCreate: FavoritePayload;
|
3124
3391
|
/** Deletes a favorite reference. */
|
3125
|
-
favoriteDelete:
|
3392
|
+
favoriteDelete: DeletePayload;
|
3126
3393
|
/** Updates a favorite. */
|
3127
3394
|
favoriteUpdate: FavoritePayload;
|
3128
3395
|
/** XHR request payload to upload an images, video and other attachments directly to Linear's cloud storage. */
|
@@ -3134,7 +3401,7 @@ export declare type Mutation = {
|
|
3134
3401
|
/** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
|
3135
3402
|
importFileUpload: UploadPayload;
|
3136
3403
|
/** Deletes an integration. */
|
3137
|
-
integrationDelete:
|
3404
|
+
integrationDelete: DeletePayload;
|
3138
3405
|
/** Integrates the organization with Discord. */
|
3139
3406
|
integrationDiscord: IntegrationPayload;
|
3140
3407
|
/** Integrates the organization with Figma. */
|
@@ -3163,6 +3430,8 @@ export declare type Mutation = {
|
|
3163
3430
|
* @deprecated Not available.
|
3164
3431
|
*/
|
3165
3432
|
integrationLoom: IntegrationPayload;
|
3433
|
+
/** [INTERNAL] Integrates the organization with PagerDuty. */
|
3434
|
+
integrationPageDutyConnect: IntegrationPayload;
|
3166
3435
|
/** Requests a currently unavailable integration. */
|
3167
3436
|
integrationRequest: IntegrationRequestPayload;
|
3168
3437
|
/** Integrates the organization with Sentry. */
|
@@ -3171,10 +3440,10 @@ export declare type Mutation = {
|
|
3171
3440
|
integrationSettingsUpdate: IntegrationPayload;
|
3172
3441
|
/** Integrates the organization with Slack. */
|
3173
3442
|
integrationSlack: IntegrationPayload;
|
3443
|
+
/** Integrates the organization with the Slack Asks app */
|
3444
|
+
integrationSlackAsks: IntegrationPayload;
|
3174
3445
|
/** Imports custom emojis from your Slack workspace. */
|
3175
3446
|
integrationSlackImportEmojis: IntegrationPayload;
|
3176
|
-
/** Integrates the organization with Slack for issue intake. */
|
3177
|
-
integrationSlackIntake: IntegrationPayload;
|
3178
3447
|
/** Slack integration for organization level project update notifications. */
|
3179
3448
|
integrationSlackOrgProjectUpdatesPost: IntegrationPayload;
|
3180
3449
|
/** Integrates your personal notifications with Slack. */
|
@@ -3186,7 +3455,9 @@ export declare type Mutation = {
|
|
3186
3455
|
/** Creates a new integrationTemplate join. */
|
3187
3456
|
integrationTemplateCreate: IntegrationTemplatePayload;
|
3188
3457
|
/** Deletes a integrationTemplate. */
|
3189
|
-
integrationTemplateDelete:
|
3458
|
+
integrationTemplateDelete: DeletePayload;
|
3459
|
+
/** Updates the organization's Slack integration. */
|
3460
|
+
integrationUpdateSlack: IntegrationPayload;
|
3190
3461
|
/** Integrates the organization with Zendesk. */
|
3191
3462
|
integrationZendesk: IntegrationPayload;
|
3192
3463
|
/** Creates new settings for one or more integrations. */
|
@@ -3194,13 +3465,13 @@ export declare type Mutation = {
|
|
3194
3465
|
/** Updates settings related to integrations for a project or a team. */
|
3195
3466
|
integrationsSettingsUpdate: IntegrationsSettingsPayload;
|
3196
3467
|
/** Archives an issue. */
|
3197
|
-
issueArchive:
|
3468
|
+
issueArchive: IssueArchivePayload;
|
3198
3469
|
/** Updates multiple issues at once. */
|
3199
3470
|
issueBatchUpdate: IssueBatchPayload;
|
3200
3471
|
/** Creates a new issue. */
|
3201
3472
|
issueCreate: IssuePayload;
|
3202
3473
|
/** Deletes (trashes) an issue. */
|
3203
|
-
issueDelete:
|
3474
|
+
issueDelete: IssueArchivePayload;
|
3204
3475
|
/** [INTERNAL] Updates an issue description from the Front app to handle Front attachments correctly. */
|
3205
3476
|
issueDescriptionUpdateFromFront: IssuePayload;
|
3206
3477
|
/** Kicks off an Asana import job. */
|
@@ -3219,27 +3490,22 @@ export declare type Mutation = {
|
|
3219
3490
|
issueImportProcess: IssueImportPayload;
|
3220
3491
|
/** Updates the mapping for the issue import. */
|
3221
3492
|
issueImportUpdate: IssueImportPayload;
|
3222
|
-
/**
|
3223
|
-
* Deletes an issue label.
|
3224
|
-
* @deprecated Labels are deleted instead of archived now!
|
3225
|
-
*/
|
3226
|
-
issueLabelArchive: ArchivePayload;
|
3227
3493
|
/** Creates a new label. */
|
3228
3494
|
issueLabelCreate: IssueLabelPayload;
|
3229
3495
|
/** Deletes an issue label. */
|
3230
|
-
issueLabelDelete:
|
3496
|
+
issueLabelDelete: DeletePayload;
|
3231
3497
|
/** Updates an label. */
|
3232
3498
|
issueLabelUpdate: IssueLabelPayload;
|
3233
3499
|
/** Creates a new issue relation. */
|
3234
3500
|
issueRelationCreate: IssueRelationPayload;
|
3235
3501
|
/** Deletes an issue relation. */
|
3236
|
-
issueRelationDelete:
|
3502
|
+
issueRelationDelete: DeletePayload;
|
3237
3503
|
/** Updates an issue relation. */
|
3238
3504
|
issueRelationUpdate: IssueRelationPayload;
|
3239
3505
|
/** Adds an issue reminder. Will cause a notification to be sent when the issue reminder time is reached. */
|
3240
3506
|
issueReminder: IssuePayload;
|
3241
3507
|
/** Unarchives an issue. */
|
3242
|
-
issueUnarchive:
|
3508
|
+
issueUnarchive: IssueArchivePayload;
|
3243
3509
|
/** Updates an issue. */
|
3244
3510
|
issueUpdate: IssuePayload;
|
3245
3511
|
/** [INTERNAL] Connects the organization with a Jira Personal Access Token. */
|
@@ -3251,15 +3517,25 @@ export declare type Mutation = {
|
|
3251
3517
|
/** Logout of all clients. */
|
3252
3518
|
logout: LogoutResponse;
|
3253
3519
|
/** Archives a notification. */
|
3254
|
-
notificationArchive:
|
3255
|
-
/**
|
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. */
|
3256
3530
|
notificationSubscriptionCreate: NotificationSubscriptionPayload;
|
3257
3531
|
/** Deletes a notification subscription reference. */
|
3258
|
-
notificationSubscriptionDelete:
|
3532
|
+
notificationSubscriptionDelete: DeletePayload;
|
3259
3533
|
/** Updates a notification subscription. */
|
3260
3534
|
notificationSubscriptionUpdate: NotificationSubscriptionPayload;
|
3261
3535
|
/** Unarchives a notification. */
|
3262
|
-
notificationUnarchive:
|
3536
|
+
notificationUnarchive: NotificationArchivePayload;
|
3537
|
+
/** Unsnoozes a notification and all past notifications for the associated entity. */
|
3538
|
+
notificationUnsnoozeAll: NotificationBatchActionPayload;
|
3263
3539
|
/** Updates a notification. */
|
3264
3540
|
notificationUpdate: NotificationPayload;
|
3265
3541
|
/** Cancels the deletion of an organization. Administrator privileges required. */
|
@@ -3273,13 +3549,13 @@ export declare type Mutation = {
|
|
3273
3549
|
/** [INTERNAL] Adds a domain to be allowed for an organization. */
|
3274
3550
|
organizationDomainCreate: OrganizationDomainPayload;
|
3275
3551
|
/** Deletes a domain. */
|
3276
|
-
organizationDomainDelete:
|
3552
|
+
organizationDomainDelete: DeletePayload;
|
3277
3553
|
/** [INTERNAL] Verifies a domain to be added to an organization. */
|
3278
3554
|
organizationDomainVerify: OrganizationDomainPayload;
|
3279
3555
|
/** Creates a new organization invite. */
|
3280
3556
|
organizationInviteCreate: OrganizationInvitePayload;
|
3281
3557
|
/** Deletes an organization invite. */
|
3282
|
-
organizationInviteDelete:
|
3558
|
+
organizationInviteDelete: DeletePayload;
|
3283
3559
|
/** Updates an organization invite. */
|
3284
3560
|
organizationInviteUpdate: OrganizationInvitePayload;
|
3285
3561
|
/** Starts a plus trial for the organization. Administrator privileges required. */
|
@@ -3290,31 +3566,31 @@ export declare type Mutation = {
|
|
3290
3566
|
* Archives a project.
|
3291
3567
|
* @deprecated Deprecated in favor of projectDelete.
|
3292
3568
|
*/
|
3293
|
-
projectArchive:
|
3569
|
+
projectArchive: ProjectArchivePayload;
|
3294
3570
|
/** Creates a new project. */
|
3295
3571
|
projectCreate: ProjectPayload;
|
3296
3572
|
/** Deletes a project. All issues will be disassociated from the deleted project. */
|
3297
|
-
projectDelete:
|
3573
|
+
projectDelete: DeletePayload;
|
3298
3574
|
/** Creates a new project link. */
|
3299
3575
|
projectLinkCreate: ProjectLinkPayload;
|
3300
3576
|
/** Deletes a project link. */
|
3301
|
-
projectLinkDelete:
|
3577
|
+
projectLinkDelete: DeletePayload;
|
3302
3578
|
/** Updates a project link. */
|
3303
3579
|
projectLinkUpdate: ProjectLinkPayload;
|
3304
3580
|
/** Creates a new project milestone. */
|
3305
3581
|
projectMilestoneCreate: ProjectMilestonePayload;
|
3306
3582
|
/** Deletes a project milestone. */
|
3307
|
-
projectMilestoneDelete:
|
3583
|
+
projectMilestoneDelete: DeletePayload;
|
3308
3584
|
/** Updates a project milestone. */
|
3309
3585
|
projectMilestoneUpdate: ProjectMilestonePayload;
|
3310
3586
|
/** Unarchives a project. */
|
3311
|
-
projectUnarchive:
|
3587
|
+
projectUnarchive: ProjectArchivePayload;
|
3312
3588
|
/** Updates a project. */
|
3313
3589
|
projectUpdate: ProjectPayload;
|
3314
3590
|
/** Creates a new project update. */
|
3315
3591
|
projectUpdateCreate: ProjectUpdatePayload;
|
3316
3592
|
/** Deletes a project update. */
|
3317
|
-
projectUpdateDelete:
|
3593
|
+
projectUpdateDelete: DeletePayload;
|
3318
3594
|
/** Creates a new interaction on a project update. */
|
3319
3595
|
projectUpdateInteractionCreate: ProjectUpdateInteractionPayload;
|
3320
3596
|
/** Mark a project update as read. */
|
@@ -3328,25 +3604,25 @@ export declare type Mutation = {
|
|
3328
3604
|
/** Creates a new reaction. */
|
3329
3605
|
reactionCreate: ReactionPayload;
|
3330
3606
|
/** Deletes a reaction. */
|
3331
|
-
reactionDelete:
|
3607
|
+
reactionDelete: DeletePayload;
|
3332
3608
|
/** Manually update Google Sheets data. */
|
3333
3609
|
refreshGoogleSheetsData: IntegrationPayload;
|
3334
3610
|
/** Re-send an organization invite. */
|
3335
|
-
resendOrganizationInvite:
|
3611
|
+
resendOrganizationInvite: DeletePayload;
|
3336
3612
|
/** Archives a roadmap. */
|
3337
|
-
roadmapArchive:
|
3613
|
+
roadmapArchive: RoadmapArchivePayload;
|
3338
3614
|
/** Creates a new roadmap. */
|
3339
3615
|
roadmapCreate: RoadmapPayload;
|
3340
3616
|
/** Deletes a roadmap. */
|
3341
|
-
roadmapDelete:
|
3617
|
+
roadmapDelete: DeletePayload;
|
3342
3618
|
/** Creates a new roadmapToProject join. */
|
3343
3619
|
roadmapToProjectCreate: RoadmapToProjectPayload;
|
3344
3620
|
/** Deletes a roadmapToProject. */
|
3345
|
-
roadmapToProjectDelete:
|
3621
|
+
roadmapToProjectDelete: DeletePayload;
|
3346
3622
|
/** Updates a roadmapToProject. */
|
3347
3623
|
roadmapToProjectUpdate: RoadmapToProjectPayload;
|
3348
3624
|
/** Unarchives a roadmap. */
|
3349
|
-
roadmapUnarchive:
|
3625
|
+
roadmapUnarchive: RoadmapArchivePayload;
|
3350
3626
|
/** Updates a roadmap. */
|
3351
3627
|
roadmapUpdate: RoadmapPayload;
|
3352
3628
|
/** Authenticates a user account via email and authentication token for SAML. */
|
@@ -3356,13 +3632,13 @@ export declare type Mutation = {
|
|
3356
3632
|
/** Deletes team's cycles data */
|
3357
3633
|
teamCyclesDelete: TeamPayload;
|
3358
3634
|
/** Deletes a team. */
|
3359
|
-
teamDelete:
|
3635
|
+
teamDelete: DeletePayload;
|
3360
3636
|
/** Deletes a previously used team key. */
|
3361
|
-
teamKeyDelete:
|
3637
|
+
teamKeyDelete: DeletePayload;
|
3362
3638
|
/** Creates a new team membership. */
|
3363
3639
|
teamMembershipCreate: TeamMembershipPayload;
|
3364
3640
|
/** Deletes a team membership. */
|
3365
|
-
teamMembershipDelete:
|
3641
|
+
teamMembershipDelete: DeletePayload;
|
3366
3642
|
/** Updates a team membership. */
|
3367
3643
|
teamMembershipUpdate: TeamMembershipPayload;
|
3368
3644
|
/** Updates a team. */
|
@@ -3370,7 +3646,7 @@ export declare type Mutation = {
|
|
3370
3646
|
/** Creates a new template. */
|
3371
3647
|
templateCreate: TemplatePayload;
|
3372
3648
|
/** Deletes a template. */
|
3373
|
-
templateDelete:
|
3649
|
+
templateDelete: DeletePayload;
|
3374
3650
|
/** Updates an existing template. */
|
3375
3651
|
templateUpdate: TemplatePayload;
|
3376
3652
|
/** Makes user a regular user. Can only be called by an admin. */
|
@@ -3408,17 +3684,17 @@ export declare type Mutation = {
|
|
3408
3684
|
/** Creates a new ViewPreferences object. */
|
3409
3685
|
viewPreferencesCreate: ViewPreferencesPayload;
|
3410
3686
|
/** Deletes a ViewPreferences. */
|
3411
|
-
viewPreferencesDelete:
|
3687
|
+
viewPreferencesDelete: DeletePayload;
|
3412
3688
|
/** Updates an existing ViewPreferences object. */
|
3413
3689
|
viewPreferencesUpdate: ViewPreferencesPayload;
|
3414
3690
|
/** Creates a new webhook. */
|
3415
3691
|
webhookCreate: WebhookPayload;
|
3416
3692
|
/** Deletes a Webhook. */
|
3417
|
-
webhookDelete:
|
3693
|
+
webhookDelete: DeletePayload;
|
3418
3694
|
/** Updates an existing Webhook. */
|
3419
3695
|
webhookUpdate: WebhookPayload;
|
3420
3696
|
/** Archives a state. Only states with issues that have all been archived can be archived. */
|
3421
|
-
workflowStateArchive:
|
3697
|
+
workflowStateArchive: WorkflowStateArchivePayload;
|
3422
3698
|
/** Creates a new state, adding it to the workflow of a team. */
|
3423
3699
|
workflowStateCreate: WorkflowStatePayload;
|
3424
3700
|
/** Updates a state. */
|
@@ -3460,6 +3736,15 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
|
|
3460
3736
|
issueId: Scalars["String"];
|
3461
3737
|
jiraIssueId: Scalars["String"];
|
3462
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
|
+
};
|
3463
3748
|
export declare type MutationAttachmentLinkUrlArgs = {
|
3464
3749
|
id?: Maybe<Scalars["String"]>;
|
3465
3750
|
issueId: Scalars["String"];
|
@@ -3470,6 +3755,9 @@ export declare type MutationAttachmentLinkZendeskArgs = {
|
|
3470
3755
|
issueId: Scalars["String"];
|
3471
3756
|
ticketId: Scalars["String"];
|
3472
3757
|
};
|
3758
|
+
export declare type MutationAttachmentUnsyncSlackArgs = {
|
3759
|
+
id: Scalars["String"];
|
3760
|
+
};
|
3473
3761
|
export declare type MutationAttachmentUpdateArgs = {
|
3474
3762
|
id: Scalars["String"];
|
3475
3763
|
input: AttachmentUpdateInput;
|
@@ -3545,9 +3833,6 @@ export declare type MutationEmojiCreateArgs = {
|
|
3545
3833
|
export declare type MutationEmojiDeleteArgs = {
|
3546
3834
|
id: Scalars["String"];
|
3547
3835
|
};
|
3548
|
-
export declare type MutationEventCreateArgs = {
|
3549
|
-
input: EventCreateInput;
|
3550
|
-
};
|
3551
3836
|
export declare type MutationFavoriteCreateArgs = {
|
3552
3837
|
input: FavoriteCreateInput;
|
3553
3838
|
};
|
@@ -3610,6 +3895,9 @@ export declare type MutationIntegrationIntercomArgs = {
|
|
3610
3895
|
export declare type MutationIntegrationIntercomSettingsUpdateArgs = {
|
3611
3896
|
input: IntercomSettingsInput;
|
3612
3897
|
};
|
3898
|
+
export declare type MutationIntegrationPageDutyConnectArgs = {
|
3899
|
+
apiToken: Scalars["String"];
|
3900
|
+
};
|
3613
3901
|
export declare type MutationIntegrationRequestArgs = {
|
3614
3902
|
input: IntegrationRequestInput;
|
3615
3903
|
};
|
@@ -3627,11 +3915,11 @@ export declare type MutationIntegrationSlackArgs = {
|
|
3627
3915
|
redirectUri: Scalars["String"];
|
3628
3916
|
shouldUseV2Auth?: Maybe<Scalars["Boolean"]>;
|
3629
3917
|
};
|
3630
|
-
export declare type
|
3918
|
+
export declare type MutationIntegrationSlackAsksArgs = {
|
3631
3919
|
code: Scalars["String"];
|
3632
3920
|
redirectUri: Scalars["String"];
|
3633
3921
|
};
|
3634
|
-
export declare type
|
3922
|
+
export declare type MutationIntegrationSlackImportEmojisArgs = {
|
3635
3923
|
code: Scalars["String"];
|
3636
3924
|
redirectUri: Scalars["String"];
|
3637
3925
|
};
|
@@ -3661,6 +3949,10 @@ export declare type MutationIntegrationTemplateCreateArgs = {
|
|
3661
3949
|
export declare type MutationIntegrationTemplateDeleteArgs = {
|
3662
3950
|
id: Scalars["String"];
|
3663
3951
|
};
|
3952
|
+
export declare type MutationIntegrationUpdateSlackArgs = {
|
3953
|
+
code: Scalars["String"];
|
3954
|
+
redirectUri: Scalars["String"];
|
3955
|
+
};
|
3664
3956
|
export declare type MutationIntegrationZendeskArgs = {
|
3665
3957
|
code: Scalars["String"];
|
3666
3958
|
redirectUri: Scalars["String"];
|
@@ -3756,9 +4048,6 @@ export declare type MutationIssueImportUpdateArgs = {
|
|
3756
4048
|
id: Scalars["String"];
|
3757
4049
|
input: IssueImportUpdateInput;
|
3758
4050
|
};
|
3759
|
-
export declare type MutationIssueLabelArchiveArgs = {
|
3760
|
-
id: Scalars["String"];
|
3761
|
-
};
|
3762
4051
|
export declare type MutationIssueLabelCreateArgs = {
|
3763
4052
|
input: IssueLabelCreateInput;
|
3764
4053
|
replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
|
@@ -3803,6 +4092,20 @@ export declare type MutationLeaveOrganizationArgs = {
|
|
3803
4092
|
export declare type MutationNotificationArchiveArgs = {
|
3804
4093
|
id: Scalars["String"];
|
3805
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
|
+
};
|
3806
4109
|
export declare type MutationNotificationSubscriptionCreateArgs = {
|
3807
4110
|
input: NotificationSubscriptionCreateInput;
|
3808
4111
|
};
|
@@ -3816,6 +4119,10 @@ export declare type MutationNotificationSubscriptionUpdateArgs = {
|
|
3816
4119
|
export declare type MutationNotificationUnarchiveArgs = {
|
3817
4120
|
id: Scalars["String"];
|
3818
4121
|
};
|
4122
|
+
export declare type MutationNotificationUnsnoozeAllArgs = {
|
4123
|
+
input: NotificationEntityInput;
|
4124
|
+
unsnoozedAt: Scalars["DateTime"];
|
4125
|
+
};
|
3819
4126
|
export declare type MutationNotificationUpdateArgs = {
|
3820
4127
|
id: Scalars["String"];
|
3821
4128
|
input: NotificationUpdateInput;
|
@@ -4105,6 +4412,25 @@ export declare type Notification = {
|
|
4105
4412
|
/** The user that received the notification. */
|
4106
4413
|
user: User;
|
4107
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
|
+
};
|
4108
4434
|
export declare type NotificationConnection = {
|
4109
4435
|
__typename?: "NotificationConnection";
|
4110
4436
|
edges: Array<NotificationEdge>;
|
@@ -4117,6 +4443,17 @@ export declare type NotificationEdge = {
|
|
4117
4443
|
cursor: Scalars["String"];
|
4118
4444
|
node: Notification;
|
4119
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
|
+
};
|
4120
4457
|
export declare type NotificationPayload = {
|
4121
4458
|
__typename?: "NotificationPayload";
|
4122
4459
|
/** The identifier of the last sync operation. */
|
@@ -4130,24 +4467,34 @@ export declare type NotificationPayload = {
|
|
4130
4467
|
export declare type NotificationSubscription = {
|
4131
4468
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
4132
4469
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
4470
|
+
/** The type of view to which the notification subscription context is associated with. */
|
4471
|
+
contextViewType?: Maybe<ContextViewType>;
|
4133
4472
|
/** The time at which the entity was created. */
|
4134
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>;
|
4135
4478
|
/** The unique identifier of the entity. */
|
4136
4479
|
id: Scalars["ID"];
|
4137
|
-
/**
|
4480
|
+
/** The contextual label view associated with the notification subscription. */
|
4481
|
+
label?: Maybe<IssueLabel>;
|
4482
|
+
/** The contextual project view associated with the notification subscription. */
|
4138
4483
|
project?: Maybe<Project>;
|
4139
|
-
/**
|
4484
|
+
/** The user that subscribed to receive notifications. */
|
4485
|
+
subscriber: User;
|
4486
|
+
/** The team associated with the notification subscription. */
|
4140
4487
|
team?: Maybe<Team>;
|
4141
|
-
/** The type of the subscription. */
|
4142
|
-
type: Scalars["String"];
|
4143
4488
|
/**
|
4144
4489
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
4145
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
|
4146
4491
|
* been updated after creation.
|
4147
4492
|
*/
|
4148
4493
|
updatedAt: Scalars["DateTime"];
|
4149
|
-
/** The user associated with notification
|
4150
|
-
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>;
|
4151
4498
|
};
|
4152
4499
|
export declare type NotificationSubscriptionConnection = {
|
4153
4500
|
__typename?: "NotificationSubscriptionConnection";
|
@@ -4156,16 +4503,26 @@ export declare type NotificationSubscriptionConnection = {
|
|
4156
4503
|
pageInfo: PageInfo;
|
4157
4504
|
};
|
4158
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"]>;
|
4159
4512
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
|
4160
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"]>>;
|
4161
4518
|
/** The identifier of the project to subscribe to. */
|
4162
4519
|
projectId?: Maybe<Scalars["String"]>;
|
4163
|
-
/** The type of the project subscription. */
|
4164
|
-
projectNotificationSubscriptionType?: Maybe<ProjectNotificationSubscriptionType>;
|
4165
4520
|
/** The identifier of the team to subscribe to. */
|
4166
4521
|
teamId?: Maybe<Scalars["String"]>;
|
4167
|
-
/** The
|
4168
|
-
|
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"]>;
|
4169
4526
|
};
|
4170
4527
|
export declare type NotificationSubscriptionEdge = {
|
4171
4528
|
__typename?: "NotificationSubscriptionEdge";
|
@@ -4183,10 +4540,8 @@ export declare type NotificationSubscriptionPayload = {
|
|
4183
4540
|
success: Scalars["Boolean"];
|
4184
4541
|
};
|
4185
4542
|
export declare type NotificationSubscriptionUpdateInput = {
|
4186
|
-
/** The
|
4187
|
-
|
4188
|
-
/** The types of notifications of the team subscription. */
|
4189
|
-
teamNotificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
|
4543
|
+
/** The types of notifications of the subscription. */
|
4544
|
+
notificationSubscriptionTypes?: Maybe<Array<Scalars["String"]>>;
|
4190
4545
|
};
|
4191
4546
|
export declare type NotificationUpdateInput = {
|
4192
4547
|
/** The id of the project update related to the notification. */
|
@@ -4374,6 +4729,8 @@ export declare type NullableNumberComparator = {
|
|
4374
4729
|
};
|
4375
4730
|
/** Project filtering options. */
|
4376
4731
|
export declare type NullableProjectFilter = {
|
4732
|
+
/** Filters that the project's team must satisfy. */
|
4733
|
+
accessibleTeams?: Maybe<TeamCollectionFilter>;
|
4377
4734
|
/** Compound filters, all of which need to be matched by the project. */
|
4378
4735
|
and?: Maybe<Array<NullableProjectFilter>>;
|
4379
4736
|
/** Comparator for the project completion date. */
|
@@ -4384,6 +4741,8 @@ export declare type NullableProjectFilter = {
|
|
4384
4741
|
createdAt?: Maybe<DateComparator>;
|
4385
4742
|
/** Filters that the projects creator must satisfy. */
|
4386
4743
|
creator?: Maybe<UserFilter>;
|
4744
|
+
/** Comparator for the project health. */
|
4745
|
+
health?: Maybe<StringComparator>;
|
4387
4746
|
/** Comparator for the identifier. */
|
4388
4747
|
id?: Maybe<IdComparator>;
|
4389
4748
|
/** Filters that the projects issues must satisfy. */
|
@@ -4471,6 +4830,29 @@ export declare type NullableStringComparator = {
|
|
4471
4830
|
/** Starts with case insensitive constraint. Matches any values that start with the given string. */
|
4472
4831
|
startsWithIgnoreCase?: Maybe<Scalars["String"]>;
|
4473
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
|
+
};
|
4474
4856
|
export declare type NullableTimelessDateComparator = {
|
4475
4857
|
/** Equals constraint. */
|
4476
4858
|
eq?: Maybe<Scalars["TimelessDate"]>;
|
@@ -5005,6 +5387,30 @@ export declare type PageInfo = {
|
|
5005
5387
|
/** Cursor representing the first result in the paginated results. */
|
5006
5388
|
startCursor?: Maybe<Scalars["String"]>;
|
5007
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
|
+
};
|
5008
5414
|
/** By which field should the pagination order by */
|
5009
5415
|
export declare enum PaginationOrderBy {
|
5010
5416
|
CreatedAt = "createdAt",
|
@@ -5113,7 +5519,7 @@ export declare type Project = Node & {
|
|
5113
5519
|
slugId: Scalars["String"];
|
5114
5520
|
/** The sort order for the project within the organization. */
|
5115
5521
|
sortOrder: Scalars["Float"];
|
5116
|
-
/**
|
5522
|
+
/** The estimated start date of the project. */
|
5117
5523
|
startDate?: Maybe<Scalars["TimelessDate"]>;
|
5118
5524
|
/** The time at which the project was moved into started state. */
|
5119
5525
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -5199,8 +5605,20 @@ export declare type ProjectTeamsArgs = {
|
|
5199
5605
|
last?: Maybe<Scalars["Int"]>;
|
5200
5606
|
orderBy?: Maybe<PaginationOrderBy>;
|
5201
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
|
+
};
|
5202
5618
|
/** Project filtering options. */
|
5203
5619
|
export declare type ProjectCollectionFilter = {
|
5620
|
+
/** Filters that the project's team must satisfy. */
|
5621
|
+
accessibleTeams?: Maybe<TeamCollectionFilter>;
|
5204
5622
|
/** Compound filters, all of which need to be matched by the project. */
|
5205
5623
|
and?: Maybe<Array<ProjectCollectionFilter>>;
|
5206
5624
|
/** Comparator for the project completion date. */
|
@@ -5213,6 +5631,8 @@ export declare type ProjectCollectionFilter = {
|
|
5213
5631
|
creator?: Maybe<UserFilter>;
|
5214
5632
|
/** Filters that needs to be matched by all projects. */
|
5215
5633
|
every?: Maybe<ProjectFilter>;
|
5634
|
+
/** Comparator for the project health. */
|
5635
|
+
health?: Maybe<StringComparator>;
|
5216
5636
|
/** Comparator for the identifier. */
|
5217
5637
|
id?: Maybe<IdComparator>;
|
5218
5638
|
/** Filters that the projects issues must satisfy. */
|
@@ -5290,6 +5710,8 @@ export declare type ProjectEdge = {
|
|
5290
5710
|
};
|
5291
5711
|
/** Project filtering options. */
|
5292
5712
|
export declare type ProjectFilter = {
|
5713
|
+
/** Filters that the project's team must satisfy. */
|
5714
|
+
accessibleTeams?: Maybe<TeamCollectionFilter>;
|
5293
5715
|
/** Compound filters, all of which need to be matched by the project. */
|
5294
5716
|
and?: Maybe<Array<ProjectFilter>>;
|
5295
5717
|
/** Comparator for the project completion date. */
|
@@ -5300,6 +5722,8 @@ export declare type ProjectFilter = {
|
|
5300
5722
|
createdAt?: Maybe<DateComparator>;
|
5301
5723
|
/** Filters that the projects creator must satisfy. */
|
5302
5724
|
creator?: Maybe<UserFilter>;
|
5725
|
+
/** Comparator for the project health. */
|
5726
|
+
health?: Maybe<StringComparator>;
|
5303
5727
|
/** Comparator for the identifier. */
|
5304
5728
|
id?: Maybe<IdComparator>;
|
5305
5729
|
/** Filters that the projects issues must satisfy. */
|
@@ -5554,33 +5978,37 @@ export declare type ProjectNotificationSubscription = Entity & Node & Notificati
|
|
5554
5978
|
__typename?: "ProjectNotificationSubscription";
|
5555
5979
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
5556
5980
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
5981
|
+
/** The type of view to which the notification subscription context is associated with. */
|
5982
|
+
contextViewType?: Maybe<ContextViewType>;
|
5557
5983
|
/** The time at which the entity was created. */
|
5558
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>;
|
5559
5989
|
/** The unique identifier of the entity. */
|
5560
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"]>;
|
5561
5995
|
/** The project subscribed to. */
|
5562
5996
|
project: Project;
|
5563
|
-
/** The
|
5564
|
-
|
5565
|
-
/**
|
5997
|
+
/** The user that subscribed to receive notifications. */
|
5998
|
+
subscriber: User;
|
5999
|
+
/** The team associated with the notification subscription. */
|
5566
6000
|
team?: Maybe<Team>;
|
5567
|
-
/** The type of the subscription. */
|
5568
|
-
type: Scalars["String"];
|
5569
6001
|
/**
|
5570
6002
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
5571
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
|
5572
6004
|
* been updated after creation.
|
5573
6005
|
*/
|
5574
6006
|
updatedAt: Scalars["DateTime"];
|
5575
|
-
/** The user associated with notification
|
5576
|
-
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>;
|
5577
6011
|
};
|
5578
|
-
/** The type of a project notification subscription. */
|
5579
|
-
export declare enum ProjectNotificationSubscriptionType {
|
5580
|
-
All = "all",
|
5581
|
-
Custom = "custom",
|
5582
|
-
ImportantOnly = "importantOnly"
|
5583
|
-
}
|
5584
6012
|
export declare type ProjectPayload = {
|
5585
6013
|
__typename?: "ProjectPayload";
|
5586
6014
|
/** The identifier of the last sync operation. */
|
@@ -5670,7 +6098,7 @@ export declare type ProjectSearchResult = Node & {
|
|
5670
6098
|
slugId: Scalars["String"];
|
5671
6099
|
/** The sort order for the project within the organization. */
|
5672
6100
|
sortOrder: Scalars["Float"];
|
5673
|
-
/**
|
6101
|
+
/** The estimated start date of the project. */
|
5674
6102
|
startDate?: Maybe<Scalars["TimelessDate"]>;
|
5675
6103
|
/** The time at which the project was moved into started state. */
|
5676
6104
|
startedAt?: Maybe<Scalars["DateTime"]>;
|
@@ -6059,6 +6487,8 @@ export declare type Query = {
|
|
6059
6487
|
document: Document;
|
6060
6488
|
/** All documents for the project. */
|
6061
6489
|
documents: DocumentConnection;
|
6490
|
+
/** Returns embed info for any url */
|
6491
|
+
embedInfo: EmbedPayload;
|
6062
6492
|
/** A specific emoji. */
|
6063
6493
|
emoji: Emoji;
|
6064
6494
|
/** All custom emojis. */
|
@@ -6103,7 +6533,7 @@ export declare type Query = {
|
|
6103
6533
|
issueRelation: IssueRelation;
|
6104
6534
|
/** All issue relationships. */
|
6105
6535
|
issueRelations: IssueRelationConnection;
|
6106
|
-
/** [
|
6536
|
+
/** [DEPRECATED] Search issues. This endpoint is deprecated and will be removed in the future – use `searchIssues` instead. */
|
6107
6537
|
issueSearch: IssueConnection;
|
6108
6538
|
/** Find issue based on the VCS branch name. */
|
6109
6539
|
issueVcsBranchSearch?: Maybe<Issue>;
|
@@ -6179,6 +6609,8 @@ export declare type Query = {
|
|
6179
6609
|
template: Template;
|
6180
6610
|
/** All templates from all users. */
|
6181
6611
|
templates: Array<Template>;
|
6612
|
+
/** Returns all templates that are associated with the integration type. */
|
6613
|
+
templatesForIntegration: Array<Template>;
|
6182
6614
|
/** One specific user. */
|
6183
6615
|
user: User;
|
6184
6616
|
/** Finds a user account by email. */
|
@@ -6291,6 +6723,7 @@ export declare type QueryCustomViewArgs = {
|
|
6291
6723
|
};
|
6292
6724
|
export declare type QueryCustomViewDetailsSuggestionArgs = {
|
6293
6725
|
filter: Scalars["JSONObject"];
|
6726
|
+
modelName?: Maybe<Scalars["String"]>;
|
6294
6727
|
};
|
6295
6728
|
export declare type QueryCustomViewsArgs = {
|
6296
6729
|
after?: Maybe<Scalars["String"]>;
|
@@ -6323,6 +6756,9 @@ export declare type QueryDocumentsArgs = {
|
|
6323
6756
|
last?: Maybe<Scalars["Int"]>;
|
6324
6757
|
orderBy?: Maybe<PaginationOrderBy>;
|
6325
6758
|
};
|
6759
|
+
export declare type QueryEmbedInfoArgs = {
|
6760
|
+
url: Scalars["String"];
|
6761
|
+
};
|
6326
6762
|
export declare type QueryEmojiArgs = {
|
6327
6763
|
id: Scalars["String"];
|
6328
6764
|
};
|
@@ -6622,6 +7058,9 @@ export declare type QueryTeamsArgs = {
|
|
6622
7058
|
export declare type QueryTemplateArgs = {
|
6623
7059
|
id: Scalars["String"];
|
6624
7060
|
};
|
7061
|
+
export declare type QueryTemplatesForIntegrationArgs = {
|
7062
|
+
integrationType: Scalars["String"];
|
7063
|
+
};
|
6625
7064
|
export declare type QueryUserArgs = {
|
6626
7065
|
id: Scalars["String"];
|
6627
7066
|
};
|
@@ -6718,6 +7157,8 @@ export declare type ReactionCreateInput = {
|
|
6718
7157
|
emoji?: Maybe<Scalars["String"]>;
|
6719
7158
|
/** The identifier in UUID v4 format. If none is provided, the backend will generate one */
|
6720
7159
|
id?: Maybe<Scalars["String"]>;
|
7160
|
+
/** The issue to associate the reaction with. */
|
7161
|
+
issueId?: Maybe<Scalars["String"]>;
|
6721
7162
|
/** The project update to associate the reaction with. */
|
6722
7163
|
projectUpdateId?: Maybe<Scalars["String"]>;
|
6723
7164
|
};
|
@@ -6792,6 +7233,16 @@ export declare type RoadmapProjectsArgs = {
|
|
6792
7233
|
last?: Maybe<Scalars["Int"]>;
|
6793
7234
|
orderBy?: Maybe<PaginationOrderBy>;
|
6794
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
|
+
};
|
6795
7246
|
/** Roadmap collection filtering options. */
|
6796
7247
|
export declare type RoadmapCollectionFilter = {
|
6797
7248
|
/** Compound filters, all of which need to be matched by the roadmap. */
|
@@ -7188,6 +7639,8 @@ export declare type Team = Node & {
|
|
7188
7639
|
integrationsSettings?: Maybe<IntegrationsSettings>;
|
7189
7640
|
/** Unique hash for the team to be used in invite URLs. */
|
7190
7641
|
inviteHash: Scalars["String"];
|
7642
|
+
/** Number of issues in the team. */
|
7643
|
+
issueCount: Scalars["Int"];
|
7191
7644
|
/** Whether to allow zeros in issues estimates. */
|
7192
7645
|
issueEstimationAllowZero: Scalars["Boolean"];
|
7193
7646
|
/** Whether to add additional points to the estimate scale. */
|
@@ -7264,6 +7717,10 @@ export declare type TeamCyclesArgs = {
|
|
7264
7717
|
orderBy?: Maybe<PaginationOrderBy>;
|
7265
7718
|
};
|
7266
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. */
|
7267
7724
|
export declare type TeamIssuesArgs = {
|
7268
7725
|
after?: Maybe<Scalars["String"]>;
|
7269
7726
|
before?: Maybe<Scalars["String"]>;
|
@@ -7341,6 +7798,25 @@ export declare type TeamWebhooksArgs = {
|
|
7341
7798
|
last?: Maybe<Scalars["Int"]>;
|
7342
7799
|
orderBy?: Maybe<PaginationOrderBy>;
|
7343
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
|
+
};
|
7344
7820
|
export declare type TeamConnection = {
|
7345
7821
|
__typename?: "TeamConnection";
|
7346
7822
|
edges: Array<TeamEdge>;
|
@@ -7508,24 +7984,36 @@ export declare type TeamNotificationSubscription = Entity & Node & NotificationS
|
|
7508
7984
|
__typename?: "TeamNotificationSubscription";
|
7509
7985
|
/** The time at which the entity was archived. Null if the entity has not been archived. */
|
7510
7986
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
7987
|
+
/** The type of view to which the notification subscription context is associated with. */
|
7988
|
+
contextViewType?: Maybe<ContextViewType>;
|
7511
7989
|
/** The time at which the entity was created. */
|
7512
7990
|
createdAt: Scalars["DateTime"];
|
7513
|
-
/** The
|
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>;
|
7995
|
+
/** The unique identifier of the entity. */
|
7514
7996
|
id: Scalars["ID"];
|
7515
|
-
/**
|
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. */
|
7516
8002
|
project?: Maybe<Project>;
|
8003
|
+
/** The user that subscribed to receive notifications. */
|
8004
|
+
subscriber: User;
|
7517
8005
|
/** The team subscribed to. */
|
7518
8006
|
team: Team;
|
7519
|
-
/** The type of the subscription. */
|
7520
|
-
type: Scalars["String"];
|
7521
8007
|
/**
|
7522
8008
|
* The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
|
7523
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
|
7524
8010
|
* been updated after creation.
|
7525
8011
|
*/
|
7526
8012
|
updatedAt: Scalars["DateTime"];
|
7527
|
-
/** The user associated with notification
|
7528
|
-
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>;
|
7529
8017
|
};
|
7530
8018
|
export declare type TeamPayload = {
|
7531
8019
|
__typename?: "TeamPayload";
|
@@ -8031,6 +8519,9 @@ export declare type UserConnection = {
|
|
8031
8519
|
nodes: Array<User>;
|
8032
8520
|
pageInfo: PageInfo;
|
8033
8521
|
};
|
8522
|
+
export declare enum UserContextViewType {
|
8523
|
+
Assigned = "assigned"
|
8524
|
+
}
|
8034
8525
|
export declare type UserEdge = {
|
8035
8526
|
__typename?: "UserEdge";
|
8036
8527
|
/** Used in `before` and `after` args */
|
@@ -8080,6 +8571,7 @@ export declare enum UserFlagType {
|
|
8080
8571
|
EmptyBacklogDismissed = "emptyBacklogDismissed",
|
8081
8572
|
EmptyCustomViewsDismissed = "emptyCustomViewsDismissed",
|
8082
8573
|
EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
|
8574
|
+
FigmaPluginBannerDismissed = "figmaPluginBannerDismissed",
|
8083
8575
|
FigmaPromptDismissed = "figmaPromptDismissed",
|
8084
8576
|
ImportBannerDismissed = "importBannerDismissed",
|
8085
8577
|
InsightsHelpDismissed = "insightsHelpDismissed",
|
@@ -8091,13 +8583,15 @@ export declare enum UserFlagType {
|
|
8091
8583
|
MigrateThemePreference = "migrateThemePreference",
|
8092
8584
|
MilestoneOnboardingIsSeenAndDismissed = "milestoneOnboardingIsSeenAndDismissed",
|
8093
8585
|
ProjectBacklogWelcomeDismissed = "projectBacklogWelcomeDismissed",
|
8586
|
+
ProjectBoardOnboardingIsSeenAndDismissed = "projectBoardOnboardingIsSeenAndDismissed",
|
8094
8587
|
ProjectUpdatesWelcomeDismissed = "projectUpdatesWelcomeDismissed",
|
8095
8588
|
ProjectWelcomeDismissed = "projectWelcomeDismissed",
|
8096
8589
|
RewindBannerDismissed = "rewindBannerDismissed",
|
8097
8590
|
SlackCommentReactionTipShown = "slackCommentReactionTipShown",
|
8098
8591
|
TeamsPageIntroductionDismissed = "teamsPageIntroductionDismissed",
|
8099
8592
|
ThreadedCommentsNudgeIsSeen = "threadedCommentsNudgeIsSeen",
|
8100
|
-
TriageWelcomeDismissed = "triageWelcomeDismissed"
|
8593
|
+
TriageWelcomeDismissed = "triageWelcomeDismissed",
|
8594
|
+
UpdatedSlackThreadSyncIntegration = "updatedSlackThreadSyncIntegration"
|
8101
8595
|
}
|
8102
8596
|
/** Operations that can be applied to UserFlagType */
|
8103
8597
|
export declare enum UserFlagUpdateOperation {
|
@@ -8106,6 +8600,42 @@ export declare enum UserFlagUpdateOperation {
|
|
8106
8600
|
Incr = "incr",
|
8107
8601
|
Lock = "lock"
|
8108
8602
|
}
|
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
|
+
};
|
8109
8639
|
export declare type UserPayload = {
|
8110
8640
|
__typename?: "UserPayload";
|
8111
8641
|
/** The identifier of the last sync operation. */
|
@@ -8181,6 +8711,8 @@ export declare type UserSettingsUpdateInput = {
|
|
8181
8711
|
settings?: Maybe<Scalars["JSONObject"]>;
|
8182
8712
|
/** The types of emails the user has unsubscribed from. */
|
8183
8713
|
unsubscribedFrom?: Maybe<Array<Scalars["String"]>>;
|
8714
|
+
/** [Internal] The user's usage warning history. */
|
8715
|
+
usageWarningHistory?: Maybe<Scalars["JSONObject"]>;
|
8184
8716
|
};
|
8185
8717
|
/** View preferences. */
|
8186
8718
|
export declare type ViewPreferences = Node & {
|
@@ -8258,6 +8790,7 @@ export declare enum ViewType {
|
|
8258
8790
|
CompletedCycle = "completedCycle",
|
8259
8791
|
CustomRoadmap = "customRoadmap",
|
8260
8792
|
CustomView = "customView",
|
8793
|
+
CustomViews = "customViews",
|
8261
8794
|
Cycle = "cycle",
|
8262
8795
|
Inbox = "inbox",
|
8263
8796
|
Label = "label",
|
@@ -8422,10 +8955,16 @@ export declare type WorkflowDefinition = Node & {
|
|
8422
8955
|
archivedAt?: Maybe<Scalars["DateTime"]>;
|
8423
8956
|
/** The conditions that need to be match for the workflow to be triggered. */
|
8424
8957
|
conditions: Scalars["JSONObject"];
|
8958
|
+
/** The type of view to which this workflow's context is associated with. */
|
8959
|
+
contextViewType?: Maybe<ContextViewType>;
|
8425
8960
|
/** The time at which the entity was created. */
|
8426
8961
|
createdAt: Scalars["DateTime"];
|
8427
8962
|
/** The user who created the workflow. */
|
8428
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>;
|
8429
8968
|
/** The description of the workflow. */
|
8430
8969
|
description?: Maybe<Scalars["String"]>;
|
8431
8970
|
enabled: Scalars["Boolean"];
|
@@ -8433,8 +8972,12 @@ export declare type WorkflowDefinition = Node & {
|
|
8433
8972
|
groupName?: Maybe<Scalars["String"]>;
|
8434
8973
|
/** The unique identifier of the entity. */
|
8435
8974
|
id: Scalars["ID"];
|
8975
|
+
/** The contextual label view associated with the workflow. */
|
8976
|
+
label?: Maybe<IssueLabel>;
|
8436
8977
|
/** The name of the workflow. */
|
8437
8978
|
name: Scalars["String"];
|
8979
|
+
/** The contextual project view associated with the workflow. */
|
8980
|
+
project?: Maybe<Project>;
|
8438
8981
|
/** The sort order of the workflow definition within its siblings. */
|
8439
8982
|
sortOrder: Scalars["String"];
|
8440
8983
|
/** The team associated with the workflow. If not set, the workflow is associated with the entire organization. */
|
@@ -8451,6 +8994,10 @@ export declare type WorkflowDefinition = Node & {
|
|
8451
8994
|
* been updated after creation.
|
8452
8995
|
*/
|
8453
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>;
|
8454
9001
|
};
|
8455
9002
|
export declare type WorkflowDefinitionConnection = {
|
8456
9003
|
__typename?: "WorkflowDefinitionConnection";
|
@@ -8504,6 +9051,16 @@ export declare type WorkflowStateIssuesArgs = {
|
|
8504
9051
|
last?: Maybe<Scalars["Int"]>;
|
8505
9052
|
orderBy?: Maybe<PaginationOrderBy>;
|
8506
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
|
+
};
|
8507
9064
|
export declare type WorkflowStateConnection = {
|
8508
9065
|
__typename?: "WorkflowStateConnection";
|
8509
9066
|
edges: Array<WorkflowStateEdge>;
|
@@ -8589,7 +9146,8 @@ export declare enum WorkflowTriggerType {
|
|
8589
9146
|
}
|
8590
9147
|
export declare enum WorkflowType {
|
8591
9148
|
Custom = "custom",
|
8592
|
-
Sla = "sla"
|
9149
|
+
Sla = "sla",
|
9150
|
+
ViewSubscription = "viewSubscription"
|
8593
9151
|
}
|
8594
9152
|
/** [INTERNAL] Public information of the OAuth application, plus the userIds and scopes for those users. */
|
8595
9153
|
export declare type WorkspaceAuthorizedApplication = {
|
@@ -8649,9 +9207,18 @@ export declare type ZendeskSettingsInput = {
|
|
8649
9207
|
/** The URL of the connected Zendesk organization. */
|
8650
9208
|
url: Scalars["String"];
|
8651
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">;
|
8652
9216
|
declare type Entity_IssueNotification_Fragment = {
|
8653
9217
|
__typename: "IssueNotification";
|
8654
9218
|
} & Pick<IssueNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
9219
|
+
declare type Entity_LabelNotificationSubscription_Fragment = {
|
9220
|
+
__typename: "LabelNotificationSubscription";
|
9221
|
+
} & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
8655
9222
|
declare type Entity_OauthClientApprovalNotification_Fragment = {
|
8656
9223
|
__typename: "OauthClientApprovalNotification";
|
8657
9224
|
} & Pick<OauthClientApprovalNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
@@ -8664,7 +9231,10 @@ declare type Entity_ProjectNotificationSubscription_Fragment = {
|
|
8664
9231
|
declare type Entity_TeamNotificationSubscription_Fragment = {
|
8665
9232
|
__typename: "TeamNotificationSubscription";
|
8666
9233
|
} & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
|
8667
|
-
|
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;
|
8668
9238
|
export declare type CommentFragment = {
|
8669
9239
|
__typename: "Comment";
|
8670
9240
|
} & Pick<Comment, "url" | "reactionData" | "bodyData" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
|
@@ -8678,6 +9248,13 @@ export declare type CommentFragment = {
|
|
8678
9248
|
__typename?: "User";
|
8679
9249
|
} & Pick<User, "id">>;
|
8680
9250
|
};
|
9251
|
+
export declare type CompanyFragment = {
|
9252
|
+
__typename: "Company";
|
9253
|
+
} & Pick<Company, "externalId" | "logoUrl" | "name" | "websiteUrl" | "companyProperties" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
|
9254
|
+
creator: {
|
9255
|
+
__typename?: "User";
|
9256
|
+
} & Pick<User, "id">;
|
9257
|
+
};
|
8681
9258
|
export declare type EmojiFragment = {
|
8682
9259
|
__typename: "Emoji";
|
8683
9260
|
} & Pick<Emoji, "url" | "name" | "updatedAt" | "source" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -8685,6 +9262,31 @@ export declare type EmojiFragment = {
|
|
8685
9262
|
__typename?: "User";
|
8686
9263
|
} & Pick<User, "id">;
|
8687
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
|
+
};
|
8688
9290
|
export declare type CustomViewFragment = {
|
8689
9291
|
__typename: "CustomView";
|
8690
9292
|
} & Pick<CustomView, "color" | "description" | "filterData" | "filters" | "icon" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
|
@@ -8694,9 +9296,31 @@ export declare type CustomViewFragment = {
|
|
8694
9296
|
creator: {
|
8695
9297
|
__typename?: "User";
|
8696
9298
|
} & Pick<User, "id">;
|
8697
|
-
|
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: {
|
8698
9319
|
__typename?: "User";
|
8699
9320
|
} & Pick<User, "id">;
|
9321
|
+
user?: Maybe<{
|
9322
|
+
__typename?: "User";
|
9323
|
+
} & Pick<User, "id">>;
|
8700
9324
|
};
|
8701
9325
|
export declare type DocumentContentFragment = {
|
8702
9326
|
__typename: "DocumentContent";
|
@@ -8718,6 +9342,112 @@ export declare type DocumentFragment = {
|
|
8718
9342
|
__typename?: "User";
|
8719
9343
|
} & Pick<User, "id">;
|
8720
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
|
+
};
|
8721
9451
|
export declare type ProjectMilestoneFragment = {
|
8722
9452
|
__typename: "ProjectMilestone";
|
8723
9453
|
} & Pick<ProjectMilestone, "description" | "updatedAt" | "name" | "sortOrder" | "targetDate" | "archivedAt" | "createdAt" | "id"> & {
|
@@ -8758,16 +9488,28 @@ declare type Notification_ProjectNotification_Fragment = {
|
|
8758
9488
|
export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
|
8759
9489
|
export declare type ProjectNotificationSubscriptionFragment = {
|
8760
9490
|
__typename: "ProjectNotificationSubscription";
|
8761
|
-
} & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "
|
8762
|
-
|
8763
|
-
__typename?: "
|
8764
|
-
} & Pick<
|
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">>;
|
8765
9501
|
project: {
|
8766
9502
|
__typename?: "Project";
|
8767
9503
|
} & Pick<Project, "id">;
|
8768
|
-
|
9504
|
+
team?: Maybe<{
|
9505
|
+
__typename?: "Team";
|
9506
|
+
} & Pick<Team, "id">>;
|
9507
|
+
subscriber: {
|
8769
9508
|
__typename?: "User";
|
8770
9509
|
} & Pick<User, "id">;
|
9510
|
+
user?: Maybe<{
|
9511
|
+
__typename?: "User";
|
9512
|
+
} & Pick<User, "id">>;
|
8771
9513
|
};
|
8772
9514
|
export declare type ProjectNotificationFragment = {
|
8773
9515
|
__typename: "ProjectNotification";
|
@@ -8787,7 +9529,7 @@ export declare type ProjectNotificationFragment = {
|
|
8787
9529
|
};
|
8788
9530
|
export declare type ProjectFragment = {
|
8789
9531
|
__typename: "Project";
|
8790
|
-
} & 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"> & {
|
8791
9533
|
integrationsSettings?: Maybe<{
|
8792
9534
|
__typename?: "IntegrationsSettings";
|
8793
9535
|
} & Pick<IntegrationsSettings, "id">>;
|
@@ -8886,6 +9628,16 @@ export declare type RoadmapFragment = {
|
|
8886
9628
|
__typename?: "User";
|
8887
9629
|
} & Pick<User, "id">;
|
8888
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
|
+
};
|
8889
9641
|
export declare type CycleFragment = {
|
8890
9642
|
__typename: "Cycle";
|
8891
9643
|
} & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
|
@@ -8902,16 +9654,28 @@ export declare type WorkflowStateFragment = {
|
|
8902
9654
|
};
|
8903
9655
|
export declare type TeamNotificationSubscriptionFragment = {
|
8904
9656
|
__typename: "TeamNotificationSubscription";
|
8905
|
-
} & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "
|
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">>;
|
8906
9667
|
project?: Maybe<{
|
8907
9668
|
__typename?: "Project";
|
8908
9669
|
} & Pick<Project, "id">>;
|
8909
9670
|
team: {
|
8910
9671
|
__typename?: "Team";
|
8911
9672
|
} & Pick<Team, "id">;
|
8912
|
-
|
9673
|
+
subscriber: {
|
8913
9674
|
__typename?: "User";
|
8914
9675
|
} & Pick<User, "id">;
|
9676
|
+
user?: Maybe<{
|
9677
|
+
__typename?: "User";
|
9678
|
+
} & Pick<User, "id">>;
|
8915
9679
|
};
|
8916
9680
|
export declare type TemplateFragment = {
|
8917
9681
|
__typename: "Template";
|
@@ -8943,6 +9707,31 @@ export declare type UserAccountFragment = {
|
|
8943
9707
|
__typename?: "User";
|
8944
9708
|
} & UserFragment>;
|
8945
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
|
+
};
|
8946
9735
|
export declare type UserFragment = {
|
8947
9736
|
__typename: "User";
|
8948
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">;
|
@@ -9070,7 +9859,7 @@ export declare type OrganizationFragment = {
|
|
9070
9859
|
};
|
9071
9860
|
export declare type TeamFragment = {
|
9072
9861
|
__typename: "Team";
|
9073
|
-
} & 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"> & {
|
9074
9863
|
integrationsSettings?: Maybe<{
|
9075
9864
|
__typename?: "IntegrationsSettings";
|
9076
9865
|
} & Pick<IntegrationsSettings, "id">>;
|
@@ -9151,6 +9940,9 @@ export declare type ProjectUpdateInteractionFragment = {
|
|
9151
9940
|
__typename?: "User";
|
9152
9941
|
} & Pick<User, "id">;
|
9153
9942
|
};
|
9943
|
+
export declare type EmbedFragment = {
|
9944
|
+
__typename: "Embed";
|
9945
|
+
} & Pick<Embed, "html" | "thumbnailUrl" | "url" | "description" | "height" | "thumbnailHeight" | "authorName" | "providerName" | "type" | "width" | "thumbnailWidth" | "title">;
|
9154
9946
|
export declare type IntercomSettingsFragment = {
|
9155
9947
|
__typename: "IntercomSettings";
|
9156
9948
|
} & Pick<IntercomSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
|
@@ -9216,33 +10008,157 @@ export declare type JiraProjectDataFragment = {
|
|
9216
10008
|
export declare type GitHubSettingsFragment = {
|
9217
10009
|
__typename: "GitHubSettings";
|
9218
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
|
+
};
|
9219
10086
|
declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
|
9220
10087
|
__typename: "ProjectNotificationSubscription";
|
9221
|
-
} & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "
|
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">>;
|
9222
10098
|
project: {
|
9223
10099
|
__typename?: "Project";
|
9224
10100
|
} & Pick<Project, "id">;
|
9225
10101
|
team?: Maybe<{
|
9226
10102
|
__typename?: "Team";
|
9227
10103
|
} & Pick<Team, "id">>;
|
9228
|
-
|
10104
|
+
subscriber: {
|
9229
10105
|
__typename?: "User";
|
9230
10106
|
} & Pick<User, "id">;
|
10107
|
+
user?: Maybe<{
|
10108
|
+
__typename?: "User";
|
10109
|
+
} & Pick<User, "id">>;
|
9231
10110
|
};
|
9232
10111
|
declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
|
9233
10112
|
__typename: "TeamNotificationSubscription";
|
9234
|
-
} & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "
|
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">>;
|
9235
10123
|
project?: Maybe<{
|
9236
10124
|
__typename?: "Project";
|
9237
10125
|
} & Pick<Project, "id">>;
|
9238
10126
|
team: {
|
9239
10127
|
__typename?: "Team";
|
9240
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">;
|
9241
10157
|
user: {
|
9242
10158
|
__typename?: "User";
|
9243
10159
|
} & Pick<User, "id">;
|
9244
10160
|
};
|
9245
|
-
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;
|
9246
10162
|
export declare type NotionSettingsFragment = {
|
9247
10163
|
__typename: "NotionSettings";
|
9248
10164
|
} & Pick<NotionSettings, "workspaceId" | "workspaceName">;
|
@@ -9263,6 +10179,13 @@ export declare type UploadFileFragment = {
|
|
9263
10179
|
__typename?: "UploadFileHeader";
|
9264
10180
|
} & UploadFileHeaderFragment>;
|
9265
10181
|
};
|
10182
|
+
export declare type PagerDutySettingsFragment = {
|
10183
|
+
__typename: "PagerDutySettings";
|
10184
|
+
} & {
|
10185
|
+
scheduleMapping: Array<{
|
10186
|
+
__typename?: "PagerDutyScheduleMapping";
|
10187
|
+
} & PagerDutyScheduleMappingFragment>;
|
10188
|
+
};
|
9266
10189
|
export declare type UserAuthorizedApplicationFragment = {
|
9267
10190
|
__typename: "UserAuthorizedApplication";
|
9268
10191
|
} & Pick<UserAuthorizedApplication, "name" | "approvalErrorCode" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl" | "webhooksEnabled" | "createdByLinear" | "isAuthorized">;
|
@@ -9319,6 +10242,9 @@ export declare type IntegrationSettingsFragment = {
|
|
9319
10242
|
notion?: Maybe<{
|
9320
10243
|
__typename?: "NotionSettings";
|
9321
10244
|
} & NotionSettingsFragment>;
|
10245
|
+
pagerDuty?: Maybe<{
|
10246
|
+
__typename?: "PagerDutySettings";
|
10247
|
+
} & PagerDutySettingsFragment>;
|
9322
10248
|
sentry?: Maybe<{
|
9323
10249
|
__typename?: "SentrySettings";
|
9324
10250
|
} & SentrySettingsFragment>;
|
@@ -9355,6 +10281,9 @@ export declare type UserSettingsFragment = {
|
|
9355
10281
|
export declare type JiraLinearMappingFragment = {
|
9356
10282
|
__typename: "JiraLinearMapping";
|
9357
10283
|
} & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId">;
|
10284
|
+
export declare type PagerDutyScheduleMappingFragment = {
|
10285
|
+
__typename: "PagerDutyScheduleMapping";
|
10286
|
+
} & Pick<PagerDutyScheduleMapping, "scheduleId" | "scheduleName">;
|
9358
10287
|
export declare type FavoriteFragment = {
|
9359
10288
|
__typename: "Favorite";
|
9360
10289
|
} & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
|
@@ -9382,7 +10311,10 @@ export declare type FavoriteFragment = {
|
|
9382
10311
|
projectTeam?: Maybe<{
|
9383
10312
|
__typename?: "Team";
|
9384
10313
|
} & Pick<Team, "id">>;
|
9385
|
-
user
|
10314
|
+
user?: Maybe<{
|
10315
|
+
__typename?: "User";
|
10316
|
+
} & Pick<User, "id">>;
|
10317
|
+
owner: {
|
9386
10318
|
__typename?: "User";
|
9387
10319
|
} & Pick<User, "id">;
|
9388
10320
|
parent?: Maybe<{
|
@@ -9422,9 +10354,6 @@ export declare type ApiKeyPayloadFragment = {
|
|
9422
10354
|
__typename?: "ApiKey";
|
9423
10355
|
} & ApiKeyFragment;
|
9424
10356
|
};
|
9425
|
-
export declare type ArchivePayloadFragment = {
|
9426
|
-
__typename: "ArchivePayload";
|
9427
|
-
} & Pick<ArchivePayload, "lastSyncId" | "success">;
|
9428
10357
|
export declare type AttachmentConnectionFragment = {
|
9429
10358
|
__typename: "AttachmentConnection";
|
9430
10359
|
} & {
|
@@ -9482,6 +10411,16 @@ export declare type CommentPayloadFragment = {
|
|
9482
10411
|
__typename?: "Comment";
|
9483
10412
|
} & Pick<Comment, "id">;
|
9484
10413
|
};
|
10414
|
+
export declare type CompanyConnectionFragment = {
|
10415
|
+
__typename: "CompanyConnection";
|
10416
|
+
} & {
|
10417
|
+
nodes: Array<{
|
10418
|
+
__typename?: "Company";
|
10419
|
+
} & CompanyFragment>;
|
10420
|
+
pageInfo: {
|
10421
|
+
__typename?: "PageInfo";
|
10422
|
+
} & PageInfoFragment;
|
10423
|
+
};
|
9485
10424
|
export declare type ContactPayloadFragment = {
|
9486
10425
|
__typename: "ContactPayload";
|
9487
10426
|
} & Pick<ContactPayload, "success">;
|
@@ -9591,6 +10530,13 @@ export declare type EmailUnsubscribePayloadFragment = {
|
|
9591
10530
|
export declare type EmailUserAccountAuthChallengeResponseFragment = {
|
9592
10531
|
__typename: "EmailUserAccountAuthChallengeResponse";
|
9593
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
|
+
};
|
9594
10540
|
export declare type EmojiConnectionFragment = {
|
9595
10541
|
__typename: "EmojiConnection";
|
9596
10542
|
} & {
|
@@ -9608,9 +10554,6 @@ export declare type EmojiPayloadFragment = {
|
|
9608
10554
|
__typename?: "Emoji";
|
9609
10555
|
} & Pick<Emoji, "id">;
|
9610
10556
|
};
|
9611
|
-
export declare type EventPayloadFragment = {
|
9612
|
-
__typename: "EventPayload";
|
9613
|
-
} & Pick<EventPayload, "success">;
|
9614
10557
|
export declare type FavoriteConnectionFragment = {
|
9615
10558
|
__typename: "FavoriteConnection";
|
9616
10559
|
} & {
|
@@ -9635,6 +10578,16 @@ export declare type FigmaEmbedPayloadFragment = {
|
|
9635
10578
|
__typename?: "FigmaEmbed";
|
9636
10579
|
} & FigmaEmbedFragment>;
|
9637
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
|
+
};
|
9638
10591
|
export declare type FrontAttachmentPayloadFragment = {
|
9639
10592
|
__typename: "FrontAttachmentPayload";
|
9640
10593
|
} & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
|
@@ -9865,12 +10818,21 @@ declare type Node_AuditEntry_Fragment = {
|
|
9865
10818
|
declare type Node_Comment_Fragment = {
|
9866
10819
|
__typename: "Comment";
|
9867
10820
|
} & Pick<Comment, "id">;
|
10821
|
+
declare type Node_Company_Fragment = {
|
10822
|
+
__typename: "Company";
|
10823
|
+
} & Pick<Company, "id">;
|
9868
10824
|
declare type Node_CustomView_Fragment = {
|
9869
10825
|
__typename: "CustomView";
|
9870
10826
|
} & Pick<CustomView, "id">;
|
10827
|
+
declare type Node_CustomViewNotificationSubscription_Fragment = {
|
10828
|
+
__typename: "CustomViewNotificationSubscription";
|
10829
|
+
} & Pick<CustomViewNotificationSubscription, "id">;
|
9871
10830
|
declare type Node_Cycle_Fragment = {
|
9872
10831
|
__typename: "Cycle";
|
9873
10832
|
} & Pick<Cycle, "id">;
|
10833
|
+
declare type Node_CycleNotificationSubscription_Fragment = {
|
10834
|
+
__typename: "CycleNotificationSubscription";
|
10835
|
+
} & Pick<CycleNotificationSubscription, "id">;
|
9874
10836
|
declare type Node_Document_Fragment = {
|
9875
10837
|
__typename: "Document";
|
9876
10838
|
} & Pick<Document, "id">;
|
@@ -9889,6 +10851,9 @@ declare type Node_ExternalUser_Fragment = {
|
|
9889
10851
|
declare type Node_Favorite_Fragment = {
|
9890
10852
|
__typename: "Favorite";
|
9891
10853
|
} & Pick<Favorite, "id">;
|
10854
|
+
declare type Node_FirstResponderSchedule_Fragment = {
|
10855
|
+
__typename: "FirstResponderSchedule";
|
10856
|
+
} & Pick<FirstResponderSchedule, "id">;
|
9892
10857
|
declare type Node_Integration_Fragment = {
|
9893
10858
|
__typename: "Integration";
|
9894
10859
|
} & Pick<Integration, "id">;
|
@@ -9922,6 +10887,9 @@ declare type Node_IssueRelation_Fragment = {
|
|
9922
10887
|
declare type Node_IssueSearchResult_Fragment = {
|
9923
10888
|
__typename: "IssueSearchResult";
|
9924
10889
|
} & Pick<IssueSearchResult, "id">;
|
10890
|
+
declare type Node_LabelNotificationSubscription_Fragment = {
|
10891
|
+
__typename: "LabelNotificationSubscription";
|
10892
|
+
} & Pick<LabelNotificationSubscription, "id">;
|
9925
10893
|
declare type Node_OauthClient_Fragment = {
|
9926
10894
|
__typename: "OauthClient";
|
9927
10895
|
} & Pick<OauthClient, "id">;
|
@@ -9994,6 +10962,9 @@ declare type Node_Template_Fragment = {
|
|
9994
10962
|
declare type Node_User_Fragment = {
|
9995
10963
|
__typename: "User";
|
9996
10964
|
} & Pick<User, "id">;
|
10965
|
+
declare type Node_UserNotificationSubscription_Fragment = {
|
10966
|
+
__typename: "UserNotificationSubscription";
|
10967
|
+
} & Pick<UserNotificationSubscription, "id">;
|
9997
10968
|
declare type Node_UserSettings_Fragment = {
|
9998
10969
|
__typename: "UserSettings";
|
9999
10970
|
} & Pick<UserSettings, "id">;
|
@@ -10012,7 +10983,18 @@ declare type Node_WorkflowDefinition_Fragment = {
|
|
10012
10983
|
declare type Node_WorkflowState_Fragment = {
|
10013
10984
|
__typename: "WorkflowState";
|
10014
10985
|
} & Pick<WorkflowState, "id">;
|
10015
|
-
export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_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
|
+
};
|
10016
10998
|
export declare type NotificationConnectionFragment = {
|
10017
10999
|
__typename: "NotificationConnection";
|
10018
11000
|
} & {
|
@@ -10042,10 +11024,18 @@ export declare type NotificationSubscriptionConnectionFragment = {
|
|
10042
11024
|
__typename: "NotificationSubscriptionConnection";
|
10043
11025
|
} & {
|
10044
11026
|
nodes: Array<({
|
11027
|
+
__typename?: "CustomViewNotificationSubscription";
|
11028
|
+
} & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
|
11029
|
+
__typename?: "CycleNotificationSubscription";
|
11030
|
+
} & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
|
11031
|
+
__typename?: "LabelNotificationSubscription";
|
11032
|
+
} & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
|
10045
11033
|
__typename?: "ProjectNotificationSubscription";
|
10046
11034
|
} & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
|
10047
11035
|
__typename?: "TeamNotificationSubscription";
|
10048
|
-
} & NotificationSubscription_TeamNotificationSubscription_Fragment)
|
11036
|
+
} & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
|
11037
|
+
__typename?: "UserNotificationSubscription";
|
11038
|
+
} & NotificationSubscription_UserNotificationSubscription_Fragment)>;
|
10049
11039
|
pageInfo: {
|
10050
11040
|
__typename?: "PageInfo";
|
10051
11041
|
} & PageInfoFragment;
|
@@ -10054,10 +11044,18 @@ export declare type NotificationSubscriptionPayloadFragment = {
|
|
10054
11044
|
__typename: "NotificationSubscriptionPayload";
|
10055
11045
|
} & Pick<NotificationSubscriptionPayload, "lastSyncId" | "success"> & {
|
10056
11046
|
notificationSubscription: ({
|
11047
|
+
__typename?: "CustomViewNotificationSubscription";
|
11048
|
+
} & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
|
11049
|
+
__typename?: "CycleNotificationSubscription";
|
11050
|
+
} & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
|
11051
|
+
__typename?: "LabelNotificationSubscription";
|
11052
|
+
} & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
|
10057
11053
|
__typename?: "ProjectNotificationSubscription";
|
10058
11054
|
} & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
|
10059
11055
|
__typename?: "TeamNotificationSubscription";
|
10060
|
-
} & NotificationSubscription_TeamNotificationSubscription_Fragment)
|
11056
|
+
} & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
|
11057
|
+
__typename?: "UserNotificationSubscription";
|
11058
|
+
} & NotificationSubscription_UserNotificationSubscription_Fragment);
|
10061
11059
|
};
|
10062
11060
|
export declare type OauthClientConnectionFragment = {
|
10063
11061
|
__typename: "OauthClientConnection";
|
@@ -10176,7 +11174,7 @@ export declare type ProjectSearchPayloadFragment = {
|
|
10176
11174
|
};
|
10177
11175
|
export declare type ProjectSearchResultFragment = {
|
10178
11176
|
__typename: "ProjectSearchResult";
|
10179
|
-
} & 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"> & {
|
10180
11178
|
integrationsSettings?: Maybe<{
|
10181
11179
|
__typename?: "IntegrationsSettings";
|
10182
11180
|
} & Pick<IntegrationsSettings, "id">>;
|
@@ -10464,6 +11462,21 @@ export declare type WorkflowCronJobDefinitionConnectionFragment = {
|
|
10464
11462
|
export declare type WorkflowDefinitionFragment = {
|
10465
11463
|
__typename: "WorkflowDefinition";
|
10466
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">>;
|
10467
11480
|
team?: Maybe<{
|
10468
11481
|
__typename?: "Team";
|
10469
11482
|
} & Pick<Team, "id">>;
|
@@ -10525,8 +11538,8 @@ export declare type DeleteApiKeyMutation = {
|
|
10525
11538
|
__typename?: "Mutation";
|
10526
11539
|
} & {
|
10527
11540
|
apiKeyDelete: {
|
10528
|
-
__typename?: "
|
10529
|
-
} &
|
11541
|
+
__typename?: "DeletePayload";
|
11542
|
+
} & DeletePayloadFragment;
|
10530
11543
|
};
|
10531
11544
|
export declare type ArchiveAttachmentMutationVariables = Exact<{
|
10532
11545
|
id: Scalars["String"];
|
@@ -10535,8 +11548,8 @@ export declare type ArchiveAttachmentMutation = {
|
|
10535
11548
|
__typename?: "Mutation";
|
10536
11549
|
} & {
|
10537
11550
|
attachmentArchive: {
|
10538
|
-
__typename?: "
|
10539
|
-
} &
|
11551
|
+
__typename?: "AttachmentArchivePayload";
|
11552
|
+
} & AttachmentArchivePayloadFragment;
|
10540
11553
|
};
|
10541
11554
|
export declare type CreateAttachmentMutationVariables = Exact<{
|
10542
11555
|
input: AttachmentCreateInput;
|
@@ -10555,8 +11568,8 @@ export declare type DeleteAttachmentMutation = {
|
|
10555
11568
|
__typename?: "Mutation";
|
10556
11569
|
} & {
|
10557
11570
|
attachmentDelete: {
|
10558
|
-
__typename?: "
|
10559
|
-
} &
|
11571
|
+
__typename?: "DeletePayload";
|
11572
|
+
} & DeletePayloadFragment;
|
10560
11573
|
};
|
10561
11574
|
export declare type AttachmentLinkDiscordMutationVariables = Exact<{
|
10562
11575
|
channelId: Scalars["String"];
|
@@ -10604,6 +11617,22 @@ export declare type AttachmentLinkJiraIssueMutation = {
|
|
10604
11617
|
__typename?: "AttachmentPayload";
|
10605
11618
|
} & AttachmentPayloadFragment;
|
10606
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
|
+
};
|
10607
11636
|
export declare type AttachmentLinkUrlMutationVariables = Exact<{
|
10608
11637
|
id?: Maybe<Scalars["String"]>;
|
10609
11638
|
issueId: Scalars["String"];
|
@@ -10628,6 +11657,16 @@ export declare type AttachmentLinkZendeskMutation = {
|
|
10628
11657
|
__typename?: "AttachmentPayload";
|
10629
11658
|
} & AttachmentPayloadFragment;
|
10630
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
|
+
};
|
10631
11670
|
export declare type UpdateAttachmentMutationVariables = Exact<{
|
10632
11671
|
id: Scalars["String"];
|
10633
11672
|
input: AttachmentUpdateInput;
|
@@ -10656,8 +11695,8 @@ export declare type DeleteCommentMutation = {
|
|
10656
11695
|
__typename?: "Mutation";
|
10657
11696
|
} & {
|
10658
11697
|
commentDelete: {
|
10659
|
-
__typename?: "
|
10660
|
-
} &
|
11698
|
+
__typename?: "DeletePayload";
|
11699
|
+
} & DeletePayloadFragment;
|
10661
11700
|
};
|
10662
11701
|
export declare type UpdateCommentMutationVariables = Exact<{
|
10663
11702
|
id: Scalars["String"];
|
@@ -10718,8 +11757,8 @@ export declare type DeleteCustomViewMutation = {
|
|
10718
11757
|
__typename?: "Mutation";
|
10719
11758
|
} & {
|
10720
11759
|
customViewDelete: {
|
10721
|
-
__typename?: "
|
10722
|
-
} &
|
11760
|
+
__typename?: "DeletePayload";
|
11761
|
+
} & DeletePayloadFragment;
|
10723
11762
|
};
|
10724
11763
|
export declare type UpdateCustomViewMutationVariables = Exact<{
|
10725
11764
|
id: Scalars["String"];
|
@@ -10739,8 +11778,8 @@ export declare type ArchiveCycleMutation = {
|
|
10739
11778
|
__typename?: "Mutation";
|
10740
11779
|
} & {
|
10741
11780
|
cycleArchive: {
|
10742
|
-
__typename?: "
|
10743
|
-
} &
|
11781
|
+
__typename?: "CycleArchivePayload";
|
11782
|
+
} & CycleArchivePayloadFragment;
|
10744
11783
|
};
|
10745
11784
|
export declare type CreateCycleMutationVariables = Exact<{
|
10746
11785
|
input: CycleCreateInput;
|
@@ -10780,8 +11819,8 @@ export declare type DeleteDocumentMutation = {
|
|
10780
11819
|
__typename?: "Mutation";
|
10781
11820
|
} & {
|
10782
11821
|
documentDelete: {
|
10783
|
-
__typename?: "
|
10784
|
-
} &
|
11822
|
+
__typename?: "DeletePayload";
|
11823
|
+
} & DeletePayloadFragment;
|
10785
11824
|
};
|
10786
11825
|
export declare type UpdateDocumentMutationVariables = Exact<{
|
10787
11826
|
id: Scalars["String"];
|
@@ -10841,18 +11880,8 @@ export declare type DeleteEmojiMutation = {
|
|
10841
11880
|
__typename?: "Mutation";
|
10842
11881
|
} & {
|
10843
11882
|
emojiDelete: {
|
10844
|
-
__typename?: "
|
10845
|
-
} &
|
10846
|
-
};
|
10847
|
-
export declare type CreateEventMutationVariables = Exact<{
|
10848
|
-
input: EventCreateInput;
|
10849
|
-
}>;
|
10850
|
-
export declare type CreateEventMutation = {
|
10851
|
-
__typename?: "Mutation";
|
10852
|
-
} & {
|
10853
|
-
eventCreate: {
|
10854
|
-
__typename?: "EventPayload";
|
10855
|
-
} & EventPayloadFragment;
|
11883
|
+
__typename?: "DeletePayload";
|
11884
|
+
} & DeletePayloadFragment;
|
10856
11885
|
};
|
10857
11886
|
export declare type CreateFavoriteMutationVariables = Exact<{
|
10858
11887
|
input: FavoriteCreateInput;
|
@@ -10871,8 +11900,8 @@ export declare type DeleteFavoriteMutation = {
|
|
10871
11900
|
__typename?: "Mutation";
|
10872
11901
|
} & {
|
10873
11902
|
favoriteDelete: {
|
10874
|
-
__typename?: "
|
10875
|
-
} &
|
11903
|
+
__typename?: "DeletePayload";
|
11904
|
+
} & DeletePayloadFragment;
|
10876
11905
|
};
|
10877
11906
|
export declare type UpdateFavoriteMutationVariables = Exact<{
|
10878
11907
|
id: Scalars["String"];
|
@@ -10939,8 +11968,8 @@ export declare type DeleteIntegrationMutation = {
|
|
10939
11968
|
__typename?: "Mutation";
|
10940
11969
|
} & {
|
10941
11970
|
integrationDelete: {
|
10942
|
-
__typename?: "
|
10943
|
-
} &
|
11971
|
+
__typename?: "DeletePayload";
|
11972
|
+
} & DeletePayloadFragment;
|
10944
11973
|
};
|
10945
11974
|
export declare type IntegrationDiscordMutationVariables = Exact<{
|
10946
11975
|
code: Scalars["String"];
|
@@ -11092,25 +12121,25 @@ export declare type IntegrationSlackMutation = {
|
|
11092
12121
|
__typename?: "IntegrationPayload";
|
11093
12122
|
} & IntegrationPayloadFragment;
|
11094
12123
|
};
|
11095
|
-
export declare type
|
12124
|
+
export declare type IntegrationSlackAsksMutationVariables = Exact<{
|
11096
12125
|
code: Scalars["String"];
|
11097
12126
|
redirectUri: Scalars["String"];
|
11098
12127
|
}>;
|
11099
|
-
export declare type
|
12128
|
+
export declare type IntegrationSlackAsksMutation = {
|
11100
12129
|
__typename?: "Mutation";
|
11101
12130
|
} & {
|
11102
|
-
|
12131
|
+
integrationSlackAsks: {
|
11103
12132
|
__typename?: "IntegrationPayload";
|
11104
12133
|
} & IntegrationPayloadFragment;
|
11105
12134
|
};
|
11106
|
-
export declare type
|
12135
|
+
export declare type IntegrationSlackImportEmojisMutationVariables = Exact<{
|
11107
12136
|
code: Scalars["String"];
|
11108
12137
|
redirectUri: Scalars["String"];
|
11109
12138
|
}>;
|
11110
|
-
export declare type
|
12139
|
+
export declare type IntegrationSlackImportEmojisMutation = {
|
11111
12140
|
__typename?: "Mutation";
|
11112
12141
|
} & {
|
11113
|
-
|
12142
|
+
integrationSlackImportEmojis: {
|
11114
12143
|
__typename?: "IntegrationPayload";
|
11115
12144
|
} & IntegrationPayloadFragment;
|
11116
12145
|
};
|
@@ -11179,8 +12208,19 @@ export declare type DeleteIntegrationTemplateMutation = {
|
|
11179
12208
|
__typename?: "Mutation";
|
11180
12209
|
} & {
|
11181
12210
|
integrationTemplateDelete: {
|
11182
|
-
__typename?: "
|
11183
|
-
} &
|
12211
|
+
__typename?: "DeletePayload";
|
12212
|
+
} & DeletePayloadFragment;
|
12213
|
+
};
|
12214
|
+
export declare type IntegrationUpdateSlackMutationVariables = Exact<{
|
12215
|
+
code: Scalars["String"];
|
12216
|
+
redirectUri: Scalars["String"];
|
12217
|
+
}>;
|
12218
|
+
export declare type IntegrationUpdateSlackMutation = {
|
12219
|
+
__typename?: "Mutation";
|
12220
|
+
} & {
|
12221
|
+
integrationUpdateSlack: {
|
12222
|
+
__typename?: "IntegrationPayload";
|
12223
|
+
} & IntegrationPayloadFragment;
|
11184
12224
|
};
|
11185
12225
|
export declare type IntegrationZendeskMutationVariables = Exact<{
|
11186
12226
|
code: Scalars["String"];
|
@@ -11224,8 +12264,8 @@ export declare type ArchiveIssueMutation = {
|
|
11224
12264
|
__typename?: "Mutation";
|
11225
12265
|
} & {
|
11226
12266
|
issueArchive: {
|
11227
|
-
__typename?: "
|
11228
|
-
} &
|
12267
|
+
__typename?: "IssueArchivePayload";
|
12268
|
+
} & IssueArchivePayloadFragment;
|
11229
12269
|
};
|
11230
12270
|
export declare type UpdateIssueBatchMutationVariables = Exact<{
|
11231
12271
|
ids: Array<Scalars["UUID"]> | Scalars["UUID"];
|
@@ -11255,8 +12295,8 @@ export declare type DeleteIssueMutation = {
|
|
11255
12295
|
__typename?: "Mutation";
|
11256
12296
|
} & {
|
11257
12297
|
issueDelete: {
|
11258
|
-
__typename?: "
|
11259
|
-
} &
|
12298
|
+
__typename?: "IssueArchivePayload";
|
12299
|
+
} & IssueArchivePayloadFragment;
|
11260
12300
|
};
|
11261
12301
|
export declare type IssueImportCreateAsanaMutationVariables = Exact<{
|
11262
12302
|
asanaTeamName: Scalars["String"];
|
@@ -11378,16 +12418,6 @@ export declare type UpdateIssueImportMutation = {
|
|
11378
12418
|
__typename?: "IssueImportPayload";
|
11379
12419
|
} & IssueImportPayloadFragment;
|
11380
12420
|
};
|
11381
|
-
export declare type ArchiveIssueLabelMutationVariables = Exact<{
|
11382
|
-
id: Scalars["String"];
|
11383
|
-
}>;
|
11384
|
-
export declare type ArchiveIssueLabelMutation = {
|
11385
|
-
__typename?: "Mutation";
|
11386
|
-
} & {
|
11387
|
-
issueLabelArchive: {
|
11388
|
-
__typename?: "ArchivePayload";
|
11389
|
-
} & ArchivePayloadFragment;
|
11390
|
-
};
|
11391
12421
|
export declare type CreateIssueLabelMutationVariables = Exact<{
|
11392
12422
|
input: IssueLabelCreateInput;
|
11393
12423
|
replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
|
@@ -11406,8 +12436,8 @@ export declare type DeleteIssueLabelMutation = {
|
|
11406
12436
|
__typename?: "Mutation";
|
11407
12437
|
} & {
|
11408
12438
|
issueLabelDelete: {
|
11409
|
-
__typename?: "
|
11410
|
-
} &
|
12439
|
+
__typename?: "DeletePayload";
|
12440
|
+
} & DeletePayloadFragment;
|
11411
12441
|
};
|
11412
12442
|
export declare type UpdateIssueLabelMutationVariables = Exact<{
|
11413
12443
|
id: Scalars["String"];
|
@@ -11437,8 +12467,8 @@ export declare type DeleteIssueRelationMutation = {
|
|
11437
12467
|
__typename?: "Mutation";
|
11438
12468
|
} & {
|
11439
12469
|
issueRelationDelete: {
|
11440
|
-
__typename?: "
|
11441
|
-
} &
|
12470
|
+
__typename?: "DeletePayload";
|
12471
|
+
} & DeletePayloadFragment;
|
11442
12472
|
};
|
11443
12473
|
export declare type UpdateIssueRelationMutationVariables = Exact<{
|
11444
12474
|
id: Scalars["String"];
|
@@ -11469,8 +12499,8 @@ export declare type UnarchiveIssueMutation = {
|
|
11469
12499
|
__typename?: "Mutation";
|
11470
12500
|
} & {
|
11471
12501
|
issueUnarchive: {
|
11472
|
-
__typename?: "
|
11473
|
-
} &
|
12502
|
+
__typename?: "IssueArchivePayload";
|
12503
|
+
} & IssueArchivePayloadFragment;
|
11474
12504
|
};
|
11475
12505
|
export declare type UpdateIssueMutationVariables = Exact<{
|
11476
12506
|
id: Scalars["String"];
|
@@ -11520,8 +12550,50 @@ export declare type ArchiveNotificationMutation = {
|
|
11520
12550
|
__typename?: "Mutation";
|
11521
12551
|
} & {
|
11522
12552
|
notificationArchive: {
|
11523
|
-
__typename?: "
|
11524
|
-
} &
|
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;
|
11525
12597
|
};
|
11526
12598
|
export declare type CreateNotificationSubscriptionMutationVariables = Exact<{
|
11527
12599
|
input: NotificationSubscriptionCreateInput;
|
@@ -11540,8 +12612,8 @@ export declare type DeleteNotificationSubscriptionMutation = {
|
|
11540
12612
|
__typename?: "Mutation";
|
11541
12613
|
} & {
|
11542
12614
|
notificationSubscriptionDelete: {
|
11543
|
-
__typename?: "
|
11544
|
-
} &
|
12615
|
+
__typename?: "DeletePayload";
|
12616
|
+
} & DeletePayloadFragment;
|
11545
12617
|
};
|
11546
12618
|
export declare type UpdateNotificationSubscriptionMutationVariables = Exact<{
|
11547
12619
|
id: Scalars["String"];
|
@@ -11561,8 +12633,19 @@ export declare type UnarchiveNotificationMutation = {
|
|
11561
12633
|
__typename?: "Mutation";
|
11562
12634
|
} & {
|
11563
12635
|
notificationUnarchive: {
|
11564
|
-
__typename?: "
|
11565
|
-
} &
|
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;
|
11566
12649
|
};
|
11567
12650
|
export declare type UpdateNotificationMutationVariables = Exact<{
|
11568
12651
|
id: Scalars["String"];
|
@@ -11612,8 +12695,8 @@ export declare type DeleteOrganizationDomainMutation = {
|
|
11612
12695
|
__typename?: "Mutation";
|
11613
12696
|
} & {
|
11614
12697
|
organizationDomainDelete: {
|
11615
|
-
__typename?: "
|
11616
|
-
} &
|
12698
|
+
__typename?: "DeletePayload";
|
12699
|
+
} & DeletePayloadFragment;
|
11617
12700
|
};
|
11618
12701
|
export declare type CreateOrganizationInviteMutationVariables = Exact<{
|
11619
12702
|
input: OrganizationInviteCreateInput;
|
@@ -11632,8 +12715,8 @@ export declare type DeleteOrganizationInviteMutation = {
|
|
11632
12715
|
__typename?: "Mutation";
|
11633
12716
|
} & {
|
11634
12717
|
organizationInviteDelete: {
|
11635
|
-
__typename?: "
|
11636
|
-
} &
|
12718
|
+
__typename?: "DeletePayload";
|
12719
|
+
} & DeletePayloadFragment;
|
11637
12720
|
};
|
11638
12721
|
export declare type UpdateOrganizationInviteMutationVariables = Exact<{
|
11639
12722
|
id: Scalars["String"];
|
@@ -11673,8 +12756,8 @@ export declare type ArchiveProjectMutation = {
|
|
11673
12756
|
__typename?: "Mutation";
|
11674
12757
|
} & {
|
11675
12758
|
projectArchive: {
|
11676
|
-
__typename?: "
|
11677
|
-
} &
|
12759
|
+
__typename?: "ProjectArchivePayload";
|
12760
|
+
} & ProjectArchivePayloadFragment;
|
11678
12761
|
};
|
11679
12762
|
export declare type CreateProjectMutationVariables = Exact<{
|
11680
12763
|
input: ProjectCreateInput;
|
@@ -11693,8 +12776,8 @@ export declare type DeleteProjectMutation = {
|
|
11693
12776
|
__typename?: "Mutation";
|
11694
12777
|
} & {
|
11695
12778
|
projectDelete: {
|
11696
|
-
__typename?: "
|
11697
|
-
} &
|
12779
|
+
__typename?: "DeletePayload";
|
12780
|
+
} & DeletePayloadFragment;
|
11698
12781
|
};
|
11699
12782
|
export declare type CreateProjectLinkMutationVariables = Exact<{
|
11700
12783
|
input: ProjectLinkCreateInput;
|
@@ -11713,8 +12796,8 @@ export declare type DeleteProjectLinkMutation = {
|
|
11713
12796
|
__typename?: "Mutation";
|
11714
12797
|
} & {
|
11715
12798
|
projectLinkDelete: {
|
11716
|
-
__typename?: "
|
11717
|
-
} &
|
12799
|
+
__typename?: "DeletePayload";
|
12800
|
+
} & DeletePayloadFragment;
|
11718
12801
|
};
|
11719
12802
|
export declare type UpdateProjectLinkMutationVariables = Exact<{
|
11720
12803
|
id: Scalars["String"];
|
@@ -11744,8 +12827,8 @@ export declare type DeleteProjectMilestoneMutation = {
|
|
11744
12827
|
__typename?: "Mutation";
|
11745
12828
|
} & {
|
11746
12829
|
projectMilestoneDelete: {
|
11747
|
-
__typename?: "
|
11748
|
-
} &
|
12830
|
+
__typename?: "DeletePayload";
|
12831
|
+
} & DeletePayloadFragment;
|
11749
12832
|
};
|
11750
12833
|
export declare type UpdateProjectMilestoneMutationVariables = Exact<{
|
11751
12834
|
id: Scalars["String"];
|
@@ -11765,8 +12848,8 @@ export declare type UnarchiveProjectMutation = {
|
|
11765
12848
|
__typename?: "Mutation";
|
11766
12849
|
} & {
|
11767
12850
|
projectUnarchive: {
|
11768
|
-
__typename?: "
|
11769
|
-
} &
|
12851
|
+
__typename?: "ProjectArchivePayload";
|
12852
|
+
} & ProjectArchivePayloadFragment;
|
11770
12853
|
};
|
11771
12854
|
export declare type UpdateProjectMutationVariables = Exact<{
|
11772
12855
|
id: Scalars["String"];
|
@@ -11796,8 +12879,8 @@ export declare type DeleteProjectUpdateMutation = {
|
|
11796
12879
|
__typename?: "Mutation";
|
11797
12880
|
} & {
|
11798
12881
|
projectUpdateDelete: {
|
11799
|
-
__typename?: "
|
11800
|
-
} &
|
12882
|
+
__typename?: "DeletePayload";
|
12883
|
+
} & DeletePayloadFragment;
|
11801
12884
|
};
|
11802
12885
|
export declare type CreateProjectUpdateInteractionMutationVariables = Exact<{
|
11803
12886
|
input: ProjectUpdateInteractionCreateInput;
|
@@ -11867,8 +12950,8 @@ export declare type DeleteReactionMutation = {
|
|
11867
12950
|
__typename?: "Mutation";
|
11868
12951
|
} & {
|
11869
12952
|
reactionDelete: {
|
11870
|
-
__typename?: "
|
11871
|
-
} &
|
12953
|
+
__typename?: "DeletePayload";
|
12954
|
+
} & DeletePayloadFragment;
|
11872
12955
|
};
|
11873
12956
|
export declare type RefreshGoogleSheetsDataMutationVariables = Exact<{
|
11874
12957
|
id: Scalars["String"];
|
@@ -11887,8 +12970,8 @@ export declare type ResendOrganizationInviteMutation = {
|
|
11887
12970
|
__typename?: "Mutation";
|
11888
12971
|
} & {
|
11889
12972
|
resendOrganizationInvite: {
|
11890
|
-
__typename?: "
|
11891
|
-
} &
|
12973
|
+
__typename?: "DeletePayload";
|
12974
|
+
} & DeletePayloadFragment;
|
11892
12975
|
};
|
11893
12976
|
export declare type ArchiveRoadmapMutationVariables = Exact<{
|
11894
12977
|
id: Scalars["String"];
|
@@ -11897,8 +12980,8 @@ export declare type ArchiveRoadmapMutation = {
|
|
11897
12980
|
__typename?: "Mutation";
|
11898
12981
|
} & {
|
11899
12982
|
roadmapArchive: {
|
11900
|
-
__typename?: "
|
11901
|
-
} &
|
12983
|
+
__typename?: "RoadmapArchivePayload";
|
12984
|
+
} & RoadmapArchivePayloadFragment;
|
11902
12985
|
};
|
11903
12986
|
export declare type CreateRoadmapMutationVariables = Exact<{
|
11904
12987
|
input: RoadmapCreateInput;
|
@@ -11917,8 +13000,8 @@ export declare type DeleteRoadmapMutation = {
|
|
11917
13000
|
__typename?: "Mutation";
|
11918
13001
|
} & {
|
11919
13002
|
roadmapDelete: {
|
11920
|
-
__typename?: "
|
11921
|
-
} &
|
13003
|
+
__typename?: "DeletePayload";
|
13004
|
+
} & DeletePayloadFragment;
|
11922
13005
|
};
|
11923
13006
|
export declare type CreateRoadmapToProjectMutationVariables = Exact<{
|
11924
13007
|
input: RoadmapToProjectCreateInput;
|
@@ -11937,8 +13020,8 @@ export declare type DeleteRoadmapToProjectMutation = {
|
|
11937
13020
|
__typename?: "Mutation";
|
11938
13021
|
} & {
|
11939
13022
|
roadmapToProjectDelete: {
|
11940
|
-
__typename?: "
|
11941
|
-
} &
|
13023
|
+
__typename?: "DeletePayload";
|
13024
|
+
} & DeletePayloadFragment;
|
11942
13025
|
};
|
11943
13026
|
export declare type UpdateRoadmapToProjectMutationVariables = Exact<{
|
11944
13027
|
id: Scalars["String"];
|
@@ -11958,8 +13041,8 @@ export declare type UnarchiveRoadmapMutation = {
|
|
11958
13041
|
__typename?: "Mutation";
|
11959
13042
|
} & {
|
11960
13043
|
roadmapUnarchive: {
|
11961
|
-
__typename?: "
|
11962
|
-
} &
|
13044
|
+
__typename?: "RoadmapArchivePayload";
|
13045
|
+
} & RoadmapArchivePayloadFragment;
|
11963
13046
|
};
|
11964
13047
|
export declare type UpdateRoadmapMutationVariables = Exact<{
|
11965
13048
|
id: Scalars["String"];
|
@@ -12010,8 +13093,8 @@ export declare type DeleteTeamMutation = {
|
|
12010
13093
|
__typename?: "Mutation";
|
12011
13094
|
} & {
|
12012
13095
|
teamDelete: {
|
12013
|
-
__typename?: "
|
12014
|
-
} &
|
13096
|
+
__typename?: "DeletePayload";
|
13097
|
+
} & DeletePayloadFragment;
|
12015
13098
|
};
|
12016
13099
|
export declare type DeleteTeamKeyMutationVariables = Exact<{
|
12017
13100
|
id: Scalars["String"];
|
@@ -12020,8 +13103,8 @@ export declare type DeleteTeamKeyMutation = {
|
|
12020
13103
|
__typename?: "Mutation";
|
12021
13104
|
} & {
|
12022
13105
|
teamKeyDelete: {
|
12023
|
-
__typename?: "
|
12024
|
-
} &
|
13106
|
+
__typename?: "DeletePayload";
|
13107
|
+
} & DeletePayloadFragment;
|
12025
13108
|
};
|
12026
13109
|
export declare type CreateTeamMembershipMutationVariables = Exact<{
|
12027
13110
|
input: TeamMembershipCreateInput;
|
@@ -12040,8 +13123,8 @@ export declare type DeleteTeamMembershipMutation = {
|
|
12040
13123
|
__typename?: "Mutation";
|
12041
13124
|
} & {
|
12042
13125
|
teamMembershipDelete: {
|
12043
|
-
__typename?: "
|
12044
|
-
} &
|
13126
|
+
__typename?: "DeletePayload";
|
13127
|
+
} & DeletePayloadFragment;
|
12045
13128
|
};
|
12046
13129
|
export declare type UpdateTeamMembershipMutationVariables = Exact<{
|
12047
13130
|
id: Scalars["String"];
|
@@ -12082,8 +13165,8 @@ export declare type DeleteTemplateMutation = {
|
|
12082
13165
|
__typename?: "Mutation";
|
12083
13166
|
} & {
|
12084
13167
|
templateDelete: {
|
12085
|
-
__typename?: "
|
12086
|
-
} &
|
13168
|
+
__typename?: "DeletePayload";
|
13169
|
+
} & DeletePayloadFragment;
|
12087
13170
|
};
|
12088
13171
|
export declare type UpdateTemplateMutationVariables = Exact<{
|
12089
13172
|
id: Scalars["String"];
|
@@ -12277,8 +13360,8 @@ export declare type DeleteViewPreferencesMutation = {
|
|
12277
13360
|
__typename?: "Mutation";
|
12278
13361
|
} & {
|
12279
13362
|
viewPreferencesDelete: {
|
12280
|
-
__typename?: "
|
12281
|
-
} &
|
13363
|
+
__typename?: "DeletePayload";
|
13364
|
+
} & DeletePayloadFragment;
|
12282
13365
|
};
|
12283
13366
|
export declare type UpdateViewPreferencesMutationVariables = Exact<{
|
12284
13367
|
id: Scalars["String"];
|
@@ -12308,8 +13391,8 @@ export declare type DeleteWebhookMutation = {
|
|
12308
13391
|
__typename?: "Mutation";
|
12309
13392
|
} & {
|
12310
13393
|
webhookDelete: {
|
12311
|
-
__typename?: "
|
12312
|
-
} &
|
13394
|
+
__typename?: "DeletePayload";
|
13395
|
+
} & DeletePayloadFragment;
|
12313
13396
|
};
|
12314
13397
|
export declare type UpdateWebhookMutationVariables = Exact<{
|
12315
13398
|
id: Scalars["String"];
|
@@ -12329,8 +13412,8 @@ export declare type ArchiveWorkflowStateMutation = {
|
|
12329
13412
|
__typename?: "Mutation";
|
12330
13413
|
} & {
|
12331
13414
|
workflowStateArchive: {
|
12332
|
-
__typename?: "
|
12333
|
-
} &
|
13415
|
+
__typename?: "WorkflowStateArchivePayload";
|
13416
|
+
} & WorkflowStateArchivePayloadFragment;
|
12334
13417
|
};
|
12335
13418
|
export declare type CreateWorkflowStateMutationVariables = Exact<{
|
12336
13419
|
input: WorkflowStateCreateInput;
|
@@ -12852,6 +13935,30 @@ export declare type DocumentsQuery = {
|
|
12852
13935
|
__typename?: "DocumentConnection";
|
12853
13936
|
} & DocumentConnectionFragment;
|
12854
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
|
+
};
|
12855
13962
|
export declare type EmojiQueryVariables = Exact<{
|
12856
13963
|
id: Scalars["String"];
|
12857
13964
|
}>;
|
@@ -13334,6 +14441,23 @@ export declare type IssueRelationsQuery = {
|
|
13334
14441
|
__typename?: "IssueRelationConnection";
|
13335
14442
|
} & IssueRelationConnectionFragment;
|
13336
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
|
+
};
|
13337
14461
|
export declare type IssueVcsBranchSearchQueryVariables = Exact<{
|
13338
14462
|
branchName: Scalars["String"];
|
13339
14463
|
}>;
|
@@ -13547,10 +14671,18 @@ export declare type NotificationSubscriptionQuery = {
|
|
13547
14671
|
__typename?: "Query";
|
13548
14672
|
} & {
|
13549
14673
|
notificationSubscription: ({
|
14674
|
+
__typename?: "CustomViewNotificationSubscription";
|
14675
|
+
} & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
|
14676
|
+
__typename?: "CycleNotificationSubscription";
|
14677
|
+
} & NotificationSubscription_CycleNotificationSubscription_Fragment) | ({
|
14678
|
+
__typename?: "LabelNotificationSubscription";
|
14679
|
+
} & NotificationSubscription_LabelNotificationSubscription_Fragment) | ({
|
13550
14680
|
__typename?: "ProjectNotificationSubscription";
|
13551
14681
|
} & NotificationSubscription_ProjectNotificationSubscription_Fragment) | ({
|
13552
14682
|
__typename?: "TeamNotificationSubscription";
|
13553
|
-
} & NotificationSubscription_TeamNotificationSubscription_Fragment)
|
14683
|
+
} & NotificationSubscription_TeamNotificationSubscription_Fragment) | ({
|
14684
|
+
__typename?: "UserNotificationSubscription";
|
14685
|
+
} & NotificationSubscription_UserNotificationSubscription_Fragment);
|
13554
14686
|
};
|
13555
14687
|
export declare type NotificationSubscriptionsQueryVariables = Exact<{
|
13556
14688
|
after?: Maybe<Scalars["String"]>;
|
@@ -14464,6 +15596,16 @@ export declare type TemplatesQuery = {
|
|
14464
15596
|
__typename?: "Template";
|
14465
15597
|
} & TemplateFragment>;
|
14466
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
|
+
};
|
14467
15609
|
export declare type UserQueryVariables = Exact<{
|
14468
15610
|
id: Scalars["String"];
|
14469
15611
|
}>;
|
@@ -14746,12 +15888,30 @@ export declare type WorkflowStatesQuery = {
|
|
14746
15888
|
} & WorkflowStateConnectionFragment;
|
14747
15889
|
};
|
14748
15890
|
export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
|
15891
|
+
export declare const CustomViewNotificationSubscriptionFragmentDoc: DocumentNode<CustomViewNotificationSubscriptionFragment, unknown>;
|
15892
|
+
export declare const CycleNotificationSubscriptionFragmentDoc: DocumentNode<CycleNotificationSubscriptionFragment, unknown>;
|
14749
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>;
|
14750
15909
|
export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
|
14751
15910
|
export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
|
14752
15911
|
export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
|
14753
15912
|
export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
|
14754
15913
|
export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
|
15914
|
+
export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
|
14755
15915
|
export declare const SyncResponseFragmentDoc: DocumentNode<SyncResponseFragment, unknown>;
|
14756
15916
|
export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
|
14757
15917
|
export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
|
@@ -14767,6 +15927,8 @@ export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFra
|
|
14767
15927
|
export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
|
14768
15928
|
export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
|
14769
15929
|
export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
|
15930
|
+
export declare const PagerDutyScheduleMappingFragmentDoc: DocumentNode<PagerDutyScheduleMappingFragment, unknown>;
|
15931
|
+
export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
|
14770
15932
|
export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
|
14771
15933
|
export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
|
14772
15934
|
export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
|
@@ -14777,7 +15939,6 @@ export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
|
|
14777
15939
|
export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
|
14778
15940
|
export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
|
14779
15941
|
export declare const ApiKeyPayloadFragmentDoc: DocumentNode<ApiKeyPayloadFragment, unknown>;
|
14780
|
-
export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragment, unknown>;
|
14781
15942
|
export declare const AttachmentFragmentDoc: DocumentNode<AttachmentFragment, unknown>;
|
14782
15943
|
export declare const AttachmentConnectionFragmentDoc: DocumentNode<AttachmentConnectionFragment, unknown>;
|
14783
15944
|
export declare const AttachmentPayloadFragmentDoc: DocumentNode<AttachmentPayloadFragment, unknown>;
|
@@ -14790,6 +15951,8 @@ export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverR
|
|
14790
15951
|
export declare const CommentFragmentDoc: DocumentNode<CommentFragment, unknown>;
|
14791
15952
|
export declare const CommentConnectionFragmentDoc: DocumentNode<CommentConnectionFragment, unknown>;
|
14792
15953
|
export declare const CommentPayloadFragmentDoc: DocumentNode<CommentPayloadFragment, unknown>;
|
15954
|
+
export declare const CompanyFragmentDoc: DocumentNode<CompanyFragment, unknown>;
|
15955
|
+
export declare const CompanyConnectionFragmentDoc: DocumentNode<CompanyConnectionFragment, unknown>;
|
14793
15956
|
export declare const ContactPayloadFragmentDoc: DocumentNode<ContactPayloadFragment, unknown>;
|
14794
15957
|
export declare const CreateCsvExportReportPayloadFragmentDoc: DocumentNode<CreateCsvExportReportPayloadFragment, unknown>;
|
14795
15958
|
export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<CreateOrJoinOrganizationResponseFragment, unknown>;
|
@@ -14809,15 +15972,18 @@ export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSear
|
|
14809
15972
|
export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
|
14810
15973
|
export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
|
14811
15974
|
export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
|
15975
|
+
export declare const EmbedFragmentDoc: DocumentNode<EmbedFragment, unknown>;
|
15976
|
+
export declare const EmbedPayloadFragmentDoc: DocumentNode<EmbedPayloadFragment, unknown>;
|
14812
15977
|
export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
|
14813
15978
|
export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
|
14814
15979
|
export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
|
14815
|
-
export declare const EventPayloadFragmentDoc: DocumentNode<EventPayloadFragment, unknown>;
|
14816
15980
|
export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
|
14817
15981
|
export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
|
14818
15982
|
export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
|
14819
15983
|
export declare const FigmaEmbedFragmentDoc: DocumentNode<FigmaEmbedFragment, unknown>;
|
14820
15984
|
export declare const FigmaEmbedPayloadFragmentDoc: DocumentNode<FigmaEmbedPayloadFragment, unknown>;
|
15985
|
+
export declare const FirstResponderScheduleFragmentDoc: DocumentNode<FirstResponderScheduleFragment, unknown>;
|
15986
|
+
export declare const FirstResponderScheduleConnectionFragmentDoc: DocumentNode<FirstResponderScheduleConnectionFragment, unknown>;
|
14821
15987
|
export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
|
14822
15988
|
export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
|
14823
15989
|
export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
|
@@ -14855,11 +16021,7 @@ export declare const IssueSearchPayloadFragmentDoc: DocumentNode<IssueSearchPayl
|
|
14855
16021
|
export declare const IssueSearchResultConnectionFragmentDoc: DocumentNode<IssueSearchResultConnectionFragment, unknown>;
|
14856
16022
|
export declare const LogoutResponseFragmentDoc: DocumentNode<LogoutResponseFragment, unknown>;
|
14857
16023
|
export declare const NodeFragmentDoc: DocumentNode<NodeFragment, unknown>;
|
14858
|
-
export declare const
|
14859
|
-
export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
|
14860
|
-
export declare const OauthClientApprovalNotificationFragmentDoc: DocumentNode<OauthClientApprovalNotificationFragment, unknown>;
|
14861
|
-
export declare const ProjectNotificationFragmentDoc: DocumentNode<ProjectNotificationFragment, unknown>;
|
14862
|
-
export declare const NotificationFragmentDoc: DocumentNode<NotificationFragment, unknown>;
|
16024
|
+
export declare const NotificationBatchActionPayloadFragmentDoc: DocumentNode<NotificationBatchActionPayloadFragment, unknown>;
|
14863
16025
|
export declare const NotificationConnectionFragmentDoc: DocumentNode<NotificationConnectionFragment, unknown>;
|
14864
16026
|
export declare const NotificationPayloadFragmentDoc: DocumentNode<NotificationPayloadFragment, unknown>;
|
14865
16027
|
export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
|
@@ -14979,6 +16141,15 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
|
|
14979
16141
|
issueId: Scalars["String"];
|
14980
16142
|
jiraIssueId: Scalars["String"];
|
14981
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
|
+
}>>;
|
14982
16153
|
export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMutation, Exact<{
|
14983
16154
|
id?: Maybe<string> | undefined;
|
14984
16155
|
issueId: Scalars["String"];
|
@@ -14989,6 +16160,9 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
|
|
14989
16160
|
issueId: Scalars["String"];
|
14990
16161
|
ticketId: Scalars["String"];
|
14991
16162
|
}>>;
|
16163
|
+
export declare const AttachmentUnsyncSlackDocument: DocumentNode<AttachmentUnsyncSlackMutation, Exact<{
|
16164
|
+
id: Scalars["String"];
|
16165
|
+
}>>;
|
14992
16166
|
export declare const UpdateAttachmentDocument: DocumentNode<UpdateAttachmentMutation, Exact<{
|
14993
16167
|
id: Scalars["String"];
|
14994
16168
|
input: AttachmentUpdateInput;
|
@@ -15058,9 +16232,6 @@ export declare const CreateEmojiDocument: DocumentNode<CreateEmojiMutation, Exac
|
|
15058
16232
|
export declare const DeleteEmojiDocument: DocumentNode<DeleteEmojiMutation, Exact<{
|
15059
16233
|
id: Scalars["String"];
|
15060
16234
|
}>>;
|
15061
|
-
export declare const CreateEventDocument: DocumentNode<CreateEventMutation, Exact<{
|
15062
|
-
input: EventCreateInput;
|
15063
|
-
}>>;
|
15064
16235
|
export declare const CreateFavoriteDocument: DocumentNode<CreateFavoriteMutation, Exact<{
|
15065
16236
|
input: FavoriteCreateInput;
|
15066
16237
|
}>>;
|
@@ -15145,11 +16316,11 @@ export declare const IntegrationSlackDocument: DocumentNode<IntegrationSlackMuta
|
|
15145
16316
|
redirectUri: Scalars["String"];
|
15146
16317
|
shouldUseV2Auth?: Maybe<boolean> | undefined;
|
15147
16318
|
}>>;
|
15148
|
-
export declare const
|
16319
|
+
export declare const IntegrationSlackAsksDocument: DocumentNode<IntegrationSlackAsksMutation, Exact<{
|
15149
16320
|
code: Scalars["String"];
|
15150
16321
|
redirectUri: Scalars["String"];
|
15151
16322
|
}>>;
|
15152
|
-
export declare const
|
16323
|
+
export declare const IntegrationSlackImportEmojisDocument: DocumentNode<IntegrationSlackImportEmojisMutation, Exact<{
|
15153
16324
|
code: Scalars["String"];
|
15154
16325
|
redirectUri: Scalars["String"];
|
15155
16326
|
}>>;
|
@@ -15179,6 +16350,10 @@ export declare const CreateIntegrationTemplateDocument: DocumentNode<CreateInteg
|
|
15179
16350
|
export declare const DeleteIntegrationTemplateDocument: DocumentNode<DeleteIntegrationTemplateMutation, Exact<{
|
15180
16351
|
id: Scalars["String"];
|
15181
16352
|
}>>;
|
16353
|
+
export declare const IntegrationUpdateSlackDocument: DocumentNode<IntegrationUpdateSlackMutation, Exact<{
|
16354
|
+
code: Scalars["String"];
|
16355
|
+
redirectUri: Scalars["String"];
|
16356
|
+
}>>;
|
15182
16357
|
export declare const IntegrationZendeskDocument: DocumentNode<IntegrationZendeskMutation, Exact<{
|
15183
16358
|
code: Scalars["String"];
|
15184
16359
|
redirectUri: Scalars["String"];
|
@@ -15270,9 +16445,6 @@ export declare const UpdateIssueImportDocument: DocumentNode<UpdateIssueImportMu
|
|
15270
16445
|
id: Scalars["String"];
|
15271
16446
|
input: IssueImportUpdateInput;
|
15272
16447
|
}>>;
|
15273
|
-
export declare const ArchiveIssueLabelDocument: DocumentNode<ArchiveIssueLabelMutation, Exact<{
|
15274
|
-
id: Scalars["String"];
|
15275
|
-
}>>;
|
15276
16448
|
export declare const CreateIssueLabelDocument: DocumentNode<CreateIssueLabelMutation, Exact<{
|
15277
16449
|
input: IssueLabelCreateInput;
|
15278
16450
|
replaceTeamLabels?: Maybe<boolean> | undefined;
|
@@ -15317,6 +16489,20 @@ export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
|
|
15317
16489
|
export declare const ArchiveNotificationDocument: DocumentNode<ArchiveNotificationMutation, Exact<{
|
15318
16490
|
id: Scalars["String"];
|
15319
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
|
+
}>>;
|
15320
16506
|
export declare const CreateNotificationSubscriptionDocument: DocumentNode<CreateNotificationSubscriptionMutation, Exact<{
|
15321
16507
|
input: NotificationSubscriptionCreateInput;
|
15322
16508
|
}>>;
|
@@ -15330,6 +16516,10 @@ export declare const UpdateNotificationSubscriptionDocument: DocumentNode<Update
|
|
15330
16516
|
export declare const UnarchiveNotificationDocument: DocumentNode<UnarchiveNotificationMutation, Exact<{
|
15331
16517
|
id: Scalars["String"];
|
15332
16518
|
}>>;
|
16519
|
+
export declare const NotificationUnsnoozeAllDocument: DocumentNode<NotificationUnsnoozeAllMutation, Exact<{
|
16520
|
+
input: NotificationEntityInput;
|
16521
|
+
unsnoozedAt: Scalars["DateTime"];
|
16522
|
+
}>>;
|
15333
16523
|
export declare const UpdateNotificationDocument: DocumentNode<UpdateNotificationMutation, Exact<{
|
15334
16524
|
id: Scalars["String"];
|
15335
16525
|
input: NotificationUpdateInput;
|
@@ -15811,6 +17001,12 @@ export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
|
|
15811
17001
|
last?: Maybe<number> | undefined;
|
15812
17002
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
15813
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
|
+
}>>;
|
15814
17010
|
export declare const EmojiDocument: DocumentNode<EmojiQuery, Exact<{
|
15815
17011
|
id: Scalars["String"];
|
15816
17012
|
}>>;
|
@@ -16021,6 +17217,16 @@ export declare const IssueRelationsDocument: DocumentNode<IssueRelationsQuery, E
|
|
16021
17217
|
last?: Maybe<number> | undefined;
|
16022
17218
|
orderBy?: Maybe<PaginationOrderBy> | undefined;
|
16023
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
|
+
}>>;
|
16024
17230
|
export declare const IssueVcsBranchSearchDocument: DocumentNode<IssueVcsBranchSearchQuery, Exact<{
|
16025
17231
|
branchName: Scalars["String"];
|
16026
17232
|
}>>;
|
@@ -16526,6 +17732,9 @@ export declare const TemplateDocument: DocumentNode<TemplateQuery, Exact<{
|
|
16526
17732
|
export declare const TemplatesDocument: DocumentNode<TemplatesQuery, Exact<{
|
16527
17733
|
[key: string]: never;
|
16528
17734
|
}>>;
|
17735
|
+
export declare const TemplatesForIntegrationDocument: DocumentNode<TemplatesForIntegrationQuery, Exact<{
|
17736
|
+
integrationType: Scalars["String"];
|
17737
|
+
}>>;
|
16529
17738
|
export declare const UserDocument: DocumentNode<UserQuery, Exact<{
|
16530
17739
|
id: Scalars["String"];
|
16531
17740
|
}>>;
|