@linear/sdk 19.3.0 → 21.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.
@@ -20,12 +20,16 @@ export declare type Scalars = {
20
20
  Float: number;
21
21
  /** Represents a date and time in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
22
22
  DateTime: Date;
23
+ /** Represents a date and time in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
24
+ DateTimeOrDuration: any;
23
25
  /** The `JSON` scalar type represents arbitrary values as *stringified* JSON */
24
26
  JSON: Record<string, unknown>;
25
27
  /** The `JSONObject` scalar type represents arbitrary values as *embedded* JSON */
26
28
  JSONObject: any;
27
29
  /** Represents a date in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
28
30
  TimelessDate: any;
31
+ /** Represents a date in ISO 8601 format or a duration. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings (e.g '-P2W1D'), which are not converted to dates. */
32
+ TimelessDateOrDuration: any;
29
33
  /** A universally unique identifier as specified by RFC 4122. */
30
34
  UUID: any;
31
35
  };
@@ -538,6 +542,13 @@ export declare type AuthOrganizationDomain = {
538
542
  organizationId: Scalars["String"];
539
543
  verified: Scalars["Boolean"];
540
544
  };
545
+ export declare type AuthOrganizationExistsPayload = {
546
+ __typename?: "AuthOrganizationExistsPayload";
547
+ /** Whether the organization exists. */
548
+ exists: Scalars["Boolean"];
549
+ /** Whether the operation was successful. */
550
+ success: Scalars["Boolean"];
551
+ };
541
552
  /** An invitation to the organization that has been sent via email. */
542
553
  export declare type AuthOrganizationInvite = {
543
554
  __typename?: "AuthOrganizationInvite";
@@ -546,6 +557,19 @@ export declare type AuthOrganizationInvite = {
546
557
  /** The unique identifier of the entity. */
547
558
  id: Scalars["ID"];
548
559
  };
560
+ export declare type AuthOrganizationPayload = {
561
+ __typename?: "AuthOrganizationPayload";
562
+ /** The auth organization that was updated. */
563
+ authOrganization: AuthOrganization;
564
+ /** Whether the operation was successful. */
565
+ success: Scalars["Boolean"];
566
+ };
567
+ export declare type AuthOrganizationUpdateInput = {
568
+ /** The organization's unique invite hash. */
569
+ inviteHash?: Maybe<Scalars["String"]>;
570
+ /** The organization's unique URL key. */
571
+ urlKey?: Maybe<Scalars["String"]>;
572
+ };
549
573
  export declare type AuthResolverResponse = {
550
574
  __typename?: "AuthResolverResponse";
551
575
  /** Should the signup flow allow access for the domain. */
@@ -616,6 +640,8 @@ export declare type AuthenticationSession = {
616
640
  locationCountry?: Maybe<Scalars["String"]>;
617
641
  /** Location country code. */
618
642
  locationCountryCode?: Maybe<Scalars["String"]>;
643
+ /** Location region code. */
644
+ locationRegionCode?: Maybe<Scalars["String"]>;
619
645
  /** Name of the session, derived from the client and operating system */
620
646
  name: Scalars["String"];
621
647
  /** Operating system used for the session */
@@ -653,6 +679,8 @@ export declare type AuthenticationSessionResponse = {
653
679
  locationCountry?: Maybe<Scalars["String"]>;
654
680
  /** Location country code. */
655
681
  locationCountryCode?: Maybe<Scalars["String"]>;
682
+ /** Location region code. */
683
+ locationRegionCode?: Maybe<Scalars["String"]>;
656
684
  /** Name of the session, derived from the client and operating system */
657
685
  name: Scalars["String"];
658
686
  /** Operating system used for the session */
@@ -783,11 +811,13 @@ export declare type CommentCollectionFilter = {
783
811
  /** Comparator for the identifier. */
784
812
  id?: Maybe<IdComparator>;
785
813
  /** Filters that the comments issue must satisfy. */
786
- issue?: Maybe<IssueFilter>;
814
+ issue?: Maybe<NullableIssueFilter>;
787
815
  /** Comparator for the collection length. */
788
816
  length?: Maybe<NumberComparator>;
789
817
  /** Compound filters, one of which need to be matched by the comment. */
790
818
  or?: Maybe<Array<CommentCollectionFilter>>;
819
+ /** Filters that the comment parent must satisfy. */
820
+ parent?: Maybe<NullableCommentFilter>;
791
821
  /** Filters that the comments project update must satisfy. */
792
822
  projectUpdate?: Maybe<ProjectUpdateFilter>;
793
823
  /** Filters that needs to be matched by some comments. */
@@ -850,9 +880,11 @@ export declare type CommentFilter = {
850
880
  /** Comparator for the identifier. */
851
881
  id?: Maybe<IdComparator>;
852
882
  /** Filters that the comments issue must satisfy. */
853
- issue?: Maybe<IssueFilter>;
883
+ issue?: Maybe<NullableIssueFilter>;
854
884
  /** Compound filters, one of which need to be matched by the comment. */
855
885
  or?: Maybe<Array<CommentFilter>>;
886
+ /** Filters that the comment parent must satisfy. */
887
+ parent?: Maybe<NullableCommentFilter>;
856
888
  /** Filters that the comments project update must satisfy. */
857
889
  projectUpdate?: Maybe<ProjectUpdateFilter>;
858
890
  /** Comparator for the updated at date. */
@@ -1037,6 +1069,8 @@ export declare type CustomView = Node & {
1037
1069
  name: Scalars["String"];
1038
1070
  /** The organization of the custom view. */
1039
1071
  organization: Organization;
1072
+ /** The organizations default view preferences for this custom view. */
1073
+ organizationViewPreferences?: Maybe<ViewPreferences>;
1040
1074
  /** The user who owns the custom view. */
1041
1075
  owner: User;
1042
1076
  /** The filter applied to projects in the custom view. */
@@ -1053,6 +1087,10 @@ export declare type CustomView = Node & {
1053
1087
  updatedAt: Scalars["DateTime"];
1054
1088
  /** The user who last updated the custom view. */
1055
1089
  updatedBy: User;
1090
+ /** The current users view preferences for this custom view. */
1091
+ userViewPreferences?: Maybe<ViewPreferences>;
1092
+ /** The calculated view preferences values for this custom view. */
1093
+ viewPreferencesValues?: Maybe<ViewPreferencesValues>;
1056
1094
  };
1057
1095
  /** A custom view that has been saved by a user. */
1058
1096
  export declare type CustomViewIssuesArgs = {
@@ -1077,7 +1115,7 @@ export declare type CustomViewCreateInput = {
1077
1115
  /** The description of the custom view. */
1078
1116
  description?: Maybe<Scalars["String"]>;
1079
1117
  /** The filter applied to issues in the custom view. */
1080
- filterData?: Maybe<Scalars["JSONObject"]>;
1118
+ filterData?: Maybe<IssueFilter>;
1081
1119
  /** The filters applied to issues in the custom view. */
1082
1120
  filters?: Maybe<Scalars["JSONObject"]>;
1083
1121
  /** The icon of the custom view. */
@@ -1089,7 +1127,7 @@ export declare type CustomViewCreateInput = {
1089
1127
  /** The owner of the custom view. */
1090
1128
  ownerId?: Maybe<Scalars["String"]>;
1091
1129
  /** The project filter applied to issues in the custom view. */
1092
- projectFilterData?: Maybe<Scalars["JSONObject"]>;
1130
+ projectFilterData?: Maybe<ProjectFilter>;
1093
1131
  /** [Internal] The id of the project associated with the custom view. */
1094
1132
  projectId?: Maybe<Scalars["String"]>;
1095
1133
  /** Whether the custom view is shared with everyone in the organization. */
@@ -1170,7 +1208,7 @@ export declare type CustomViewUpdateInput = {
1170
1208
  /** The description of the custom view. */
1171
1209
  description?: Maybe<Scalars["String"]>;
1172
1210
  /** The filter applied to issues in the custom view. */
1173
- filterData?: Maybe<Scalars["JSONObject"]>;
1211
+ filterData?: Maybe<IssueFilter>;
1174
1212
  /** The filters applied to issues in the custom view. */
1175
1213
  filters?: Maybe<Scalars["JSONObject"]>;
1176
1214
  /** The icon of the custom view. */
@@ -1180,7 +1218,7 @@ export declare type CustomViewUpdateInput = {
1180
1218
  /** The owner of the custom view. */
1181
1219
  ownerId?: Maybe<Scalars["String"]>;
1182
1220
  /** The project filter applied to issues in the custom view. */
1183
- projectFilterData?: Maybe<Scalars["JSONObject"]>;
1221
+ projectFilterData?: Maybe<ProjectFilter>;
1184
1222
  /** [Internal] The id of the project associated with the custom view. */
1185
1223
  projectId?: Maybe<Scalars["String"]>;
1186
1224
  /** Whether the custom view is shared with everyone in the organization. */
@@ -1411,21 +1449,21 @@ export declare type CycleUpdateInput = {
1411
1449
  /** Comparator for dates. */
1412
1450
  export declare type DateComparator = {
1413
1451
  /** Equals constraint. */
1414
- eq?: Maybe<Scalars["DateTime"]>;
1452
+ eq?: Maybe<Scalars["DateTimeOrDuration"]>;
1415
1453
  /** Greater-than constraint. Matches any values that are greater than the given value. */
1416
- gt?: Maybe<Scalars["DateTime"]>;
1454
+ gt?: Maybe<Scalars["DateTimeOrDuration"]>;
1417
1455
  /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
1418
- gte?: Maybe<Scalars["DateTime"]>;
1456
+ gte?: Maybe<Scalars["DateTimeOrDuration"]>;
1419
1457
  /** In-array constraint. */
1420
- in?: Maybe<Array<Scalars["DateTime"]>>;
1458
+ in?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
1421
1459
  /** Less-than constraint. Matches any values that are less than the given value. */
1422
- lt?: Maybe<Scalars["DateTime"]>;
1460
+ lt?: Maybe<Scalars["DateTimeOrDuration"]>;
1423
1461
  /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
1424
- lte?: Maybe<Scalars["DateTime"]>;
1462
+ lte?: Maybe<Scalars["DateTimeOrDuration"]>;
1425
1463
  /** Not-equals constraint. */
1426
- neq?: Maybe<Scalars["DateTime"]>;
1464
+ neq?: Maybe<Scalars["DateTimeOrDuration"]>;
1427
1465
  /** Not-in-array constraint. */
1428
- nin?: Maybe<Array<Scalars["DateTime"]>>;
1466
+ nin?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
1429
1467
  };
1430
1468
  /** [INTERNAL] By which resolution is a date defined. */
1431
1469
  export declare enum DateResolutionType {
@@ -1458,7 +1496,66 @@ export declare type DeletePayload = ArchivePayload & {
1458
1496
  /** Whether the operation was successful. */
1459
1497
  success: Scalars["Boolean"];
1460
1498
  };
1461
- /** A document for a project. */
1499
+ /** A diary entry */
1500
+ export declare type DiaryEntry = Node & {
1501
+ __typename?: "DiaryEntry";
1502
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
1503
+ archivedAt?: Maybe<Scalars["DateTime"]>;
1504
+ /** [Internal] The entry content as a Prosemirror document. */
1505
+ bodyData: Scalars["String"];
1506
+ /** The time at which the entity was created. */
1507
+ createdAt: Scalars["DateTime"];
1508
+ /** The date for which the entry is created */
1509
+ date: Scalars["TimelessDate"];
1510
+ /** The unique identifier of the entity. */
1511
+ id: Scalars["ID"];
1512
+ /**
1513
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1514
+ * 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
1515
+ * been updated after creation.
1516
+ */
1517
+ updatedAt: Scalars["DateTime"];
1518
+ /** The canonical url for the DiaryEntry. */
1519
+ url: Scalars["String"];
1520
+ /** The user who the diary belongs to. */
1521
+ user: User;
1522
+ };
1523
+ export declare type DiaryEntryConnection = {
1524
+ __typename?: "DiaryEntryConnection";
1525
+ edges: Array<DiaryEntryEdge>;
1526
+ nodes: Array<DiaryEntry>;
1527
+ pageInfo: PageInfo;
1528
+ };
1529
+ export declare type DiaryEntryCreateInput = {
1530
+ /** [Internal] The comment content as a Prosemirror diaryEntry. */
1531
+ bodyData?: Maybe<Scalars["JSON"]>;
1532
+ /** The date for which the entry is created. */
1533
+ date?: Maybe<Scalars["TimelessDate"]>;
1534
+ /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1535
+ id?: Maybe<Scalars["String"]>;
1536
+ };
1537
+ export declare type DiaryEntryEdge = {
1538
+ __typename?: "DiaryEntryEdge";
1539
+ /** Used in `before` and `after` args */
1540
+ cursor: Scalars["String"];
1541
+ node: DiaryEntry;
1542
+ };
1543
+ export declare type DiaryEntryPayload = {
1544
+ __typename?: "DiaryEntryPayload";
1545
+ /** The diary entry that was created or updated. */
1546
+ diaryEntry: DiaryEntry;
1547
+ /** The identifier of the last sync operation. */
1548
+ lastSyncId: Scalars["Float"];
1549
+ /** Whether the operation was successful. */
1550
+ success: Scalars["Boolean"];
1551
+ };
1552
+ export declare type DiaryEntryUpdateInput = {
1553
+ /** [Internal] The comment content as a Prosemirror diaryEntry. */
1554
+ bodyData?: Maybe<Scalars["JSON"]>;
1555
+ /** The date for which the entry is created. */
1556
+ date?: Maybe<Scalars["TimelessDate"]>;
1557
+ };
1558
+ /** A document that can be attached to different entities. */
1462
1559
  export declare type Document = Node & {
1463
1560
  __typename?: "Document";
1464
1561
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -1484,13 +1581,15 @@ export declare type Document = Node & {
1484
1581
  icon?: Maybe<Scalars["String"]>;
1485
1582
  /** The unique identifier of the entity. */
1486
1583
  id: Scalars["ID"];
1584
+ /** [Internal] The initiative that the document is associated with. */
1585
+ initiative?: Maybe<Initiative>;
1487
1586
  /** The last template that was applied to this document. */
1488
1587
  lastAppliedTemplate?: Maybe<Template>;
1489
1588
  /** The project that the document is associated with. */
1490
- project: Project;
1589
+ project?: Maybe<Project>;
1491
1590
  /** The document's unique URL slug. */
1492
1591
  slugId: Scalars["String"];
1493
- /** The order of the item in the project resources list. */
1592
+ /** The order of the item in the resources list. */
1494
1593
  sortOrder: Scalars["Float"];
1495
1594
  /** The document title. */
1496
1595
  title: Scalars["String"];
@@ -1502,6 +1601,8 @@ export declare type Document = Node & {
1502
1601
  updatedAt: Scalars["DateTime"];
1503
1602
  /** The user who last updated the document. */
1504
1603
  updatedBy: User;
1604
+ /** The canonical url for the document. */
1605
+ url: Scalars["String"];
1505
1606
  };
1506
1607
  /** Document filtering options. */
1507
1608
  export declare type DocumentCollectionFilter = {
@@ -1556,6 +1657,8 @@ export declare type DocumentContent = Node & {
1556
1657
  document?: Maybe<Document>;
1557
1658
  /** The unique identifier of the entity. */
1558
1659
  id: Scalars["ID"];
1660
+ /** The initiative that the content is associated with. */
1661
+ initiative?: Maybe<Initiative>;
1559
1662
  /** The issue that the content is associated with. */
1560
1663
  issue?: Maybe<Issue>;
1561
1664
  /** The project that the content is associated with. */
@@ -1639,11 +1742,13 @@ export declare type DocumentCreateInput = {
1639
1742
  icon?: Maybe<Scalars["String"]>;
1640
1743
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1641
1744
  id?: Maybe<Scalars["String"]>;
1745
+ /** [Internal] Related initiative for the document. */
1746
+ initiativeId?: Maybe<Scalars["String"]>;
1642
1747
  /** The ID of the last template applied to the document. */
1643
1748
  lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1644
1749
  /** Related project for the document. */
1645
- projectId: Scalars["String"];
1646
- /** The order of the item in the project resources list. */
1750
+ projectId?: Maybe<Scalars["String"]>;
1751
+ /** The order of the item in the resources list. */
1647
1752
  sortOrder?: Maybe<Scalars["Float"]>;
1648
1753
  /** The title of the document. */
1649
1754
  title: Scalars["String"];
@@ -1675,6 +1780,43 @@ export declare type DocumentFilter = {
1675
1780
  /** Comparator for the updated at date. */
1676
1781
  updatedAt?: Maybe<DateComparator>;
1677
1782
  };
1783
+ /** A document related notification. */
1784
+ export declare type DocumentNotification = Entity & Node & Notification & {
1785
+ __typename?: "DocumentNotification";
1786
+ /** The user that caused the notification. */
1787
+ actor?: Maybe<User>;
1788
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
1789
+ archivedAt?: Maybe<Scalars["DateTime"]>;
1790
+ /** The bot that caused the notification. */
1791
+ botActor?: Maybe<ActorBot>;
1792
+ /** The time at which the entity was created. */
1793
+ createdAt: Scalars["DateTime"];
1794
+ /**
1795
+ * The time at when an email reminder for this notification was sent to the user. Null, if no email
1796
+ * reminder has been sent.
1797
+ */
1798
+ emailedAt?: Maybe<Scalars["DateTime"]>;
1799
+ /** The external user that caused the notification. */
1800
+ externalUserActor?: Maybe<ExternalUser>;
1801
+ /** The unique identifier of the entity. */
1802
+ id: Scalars["ID"];
1803
+ /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
1804
+ readAt?: Maybe<Scalars["DateTime"]>;
1805
+ /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
1806
+ snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
1807
+ /** Notification type. */
1808
+ type: Scalars["String"];
1809
+ /** The time at which a notification was unsnoozed.. */
1810
+ unsnoozedAt?: Maybe<Scalars["DateTime"]>;
1811
+ /**
1812
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1813
+ * 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
1814
+ * been updated after creation.
1815
+ */
1816
+ updatedAt: Scalars["DateTime"];
1817
+ /** The user that received the notification. */
1818
+ user: User;
1819
+ };
1678
1820
  export declare type DocumentPayload = {
1679
1821
  __typename?: "DocumentPayload";
1680
1822
  /** The document that was created or updated. */
@@ -1719,15 +1861,17 @@ export declare type DocumentSearchResult = Node & {
1719
1861
  icon?: Maybe<Scalars["String"]>;
1720
1862
  /** The unique identifier of the entity. */
1721
1863
  id: Scalars["ID"];
1864
+ /** [Internal] The initiative that the document is associated with. */
1865
+ initiative?: Maybe<Initiative>;
1722
1866
  /** The last template that was applied to this document. */
1723
1867
  lastAppliedTemplate?: Maybe<Template>;
1724
1868
  /** Metadata related to search result. */
1725
1869
  metadata: Scalars["JSONObject"];
1726
1870
  /** The project that the document is associated with. */
1727
- project: Project;
1871
+ project?: Maybe<Project>;
1728
1872
  /** The document's unique URL slug. */
1729
1873
  slugId: Scalars["String"];
1730
- /** The order of the item in the project resources list. */
1874
+ /** The order of the item in the resources list. */
1731
1875
  sortOrder: Scalars["Float"];
1732
1876
  /** The document title. */
1733
1877
  title: Scalars["String"];
@@ -1739,6 +1883,8 @@ export declare type DocumentSearchResult = Node & {
1739
1883
  updatedAt: Scalars["DateTime"];
1740
1884
  /** The user who last updated the document. */
1741
1885
  updatedBy: User;
1886
+ /** The canonical url for the document. */
1887
+ url: Scalars["String"];
1742
1888
  };
1743
1889
  export declare type DocumentSearchResultConnection = {
1744
1890
  __typename?: "DocumentSearchResultConnection";
@@ -1763,11 +1909,13 @@ export declare type DocumentUpdateInput = {
1763
1909
  hiddenAt?: Maybe<Scalars["DateTime"]>;
1764
1910
  /** The icon of the document. */
1765
1911
  icon?: Maybe<Scalars["String"]>;
1912
+ /** [Internal] Related initiative for the document. */
1913
+ initiativeId?: Maybe<Scalars["String"]>;
1766
1914
  /** The ID of the last template applied to the document. */
1767
1915
  lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1768
1916
  /** Related project for the document. */
1769
1917
  projectId?: Maybe<Scalars["String"]>;
1770
- /** The order of the item in the project resources list. */
1918
+ /** The order of the item in the resources list. */
1771
1919
  sortOrder?: Maybe<Scalars["Float"]>;
1772
1920
  /** The title of the document. */
1773
1921
  title?: Maybe<Scalars["String"]>;
@@ -1850,6 +1998,8 @@ export declare type EmailUserAccountAuthChallengeInput = {
1850
1998
  inviteLink?: Maybe<Scalars["String"]>;
1851
1999
  /** Whether the login was requested from the desktop app. */
1852
2000
  isDesktop?: Maybe<Scalars["Boolean"]>;
2001
+ /** Whether to only return the login code. This is used by mobile apps to skip showing the login link. */
2002
+ loginCodeOnly?: Maybe<Scalars["Boolean"]>;
1853
2003
  /** Signup code. */
1854
2004
  signupCode?: Maybe<Scalars["String"]>;
1855
2005
  };
@@ -1930,6 +2080,73 @@ export declare type Entity = {
1930
2080
  */
1931
2081
  updatedAt: Scalars["DateTime"];
1932
2082
  };
2083
+ /** An external link for an entity like initiative, etc... */
2084
+ export declare type EntityExternalLink = Node & {
2085
+ __typename?: "EntityExternalLink";
2086
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2087
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2088
+ /** The time at which the entity was created. */
2089
+ createdAt: Scalars["DateTime"];
2090
+ /** The user who created the link. */
2091
+ creator: User;
2092
+ /** The unique identifier of the entity. */
2093
+ id: Scalars["ID"];
2094
+ /** The initiative that the link is associated with. */
2095
+ initiative: Initiative;
2096
+ /** The link's label. */
2097
+ label: Scalars["String"];
2098
+ /** The order of the item in the resources list. */
2099
+ sortOrder: Scalars["Float"];
2100
+ /**
2101
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2102
+ * 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
2103
+ * been updated after creation.
2104
+ */
2105
+ updatedAt: Scalars["DateTime"];
2106
+ /** The link's URL. */
2107
+ url: Scalars["String"];
2108
+ };
2109
+ export declare type EntityExternalLinkConnection = {
2110
+ __typename?: "EntityExternalLinkConnection";
2111
+ edges: Array<EntityExternalLinkEdge>;
2112
+ nodes: Array<EntityExternalLink>;
2113
+ pageInfo: PageInfo;
2114
+ };
2115
+ export declare type EntityExternalLinkCreateInput = {
2116
+ /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2117
+ id?: Maybe<Scalars["String"]>;
2118
+ /** Related initiative link. */
2119
+ initiativeId: Scalars["String"];
2120
+ /** The label for the link. */
2121
+ label: Scalars["String"];
2122
+ /** The order of the item in the entities resources list. */
2123
+ sortOrder?: Maybe<Scalars["Float"]>;
2124
+ /** The URL of the link. */
2125
+ url: Scalars["String"];
2126
+ };
2127
+ export declare type EntityExternalLinkEdge = {
2128
+ __typename?: "EntityExternalLinkEdge";
2129
+ /** Used in `before` and `after` args */
2130
+ cursor: Scalars["String"];
2131
+ node: EntityExternalLink;
2132
+ };
2133
+ export declare type EntityExternalLinkPayload = {
2134
+ __typename?: "EntityExternalLinkPayload";
2135
+ /** The link that was created or updated. */
2136
+ entityExternalLink: EntityExternalLink;
2137
+ /** The identifier of the last sync operation. */
2138
+ lastSyncId: Scalars["Float"];
2139
+ /** Whether the operation was successful. */
2140
+ success: Scalars["Boolean"];
2141
+ };
2142
+ export declare type EntityExternalLinkUpdateInput = {
2143
+ /** The label for the link. */
2144
+ label?: Maybe<Scalars["String"]>;
2145
+ /** The order of the item in the entities resources list. */
2146
+ sortOrder?: Maybe<Scalars["Float"]>;
2147
+ /** The URL of the link. */
2148
+ url?: Maybe<Scalars["String"]>;
2149
+ };
1933
2150
  /** Comparator for estimates. */
1934
2151
  export declare type EstimateComparator = {
1935
2152
  /** Compound filters, one of which need to be matched by the estimate. */
@@ -2495,10 +2712,12 @@ export declare type Initiative = Node & {
2495
2712
  createdAt: Scalars["DateTime"];
2496
2713
  /** The user who created the initiative. */
2497
2714
  creator: User;
2498
- /** The description of the initiative. */
2715
+ /** [Internal] The description of the initiative. */
2499
2716
  description?: Maybe<Scalars["String"]>;
2500
2717
  /** The unique identifier of the entity. */
2501
2718
  id: Scalars["ID"];
2719
+ /** Links associated with the initiative. */
2720
+ links: EntityExternalLinkConnection;
2502
2721
  /** The name of the initiative. */
2503
2722
  name: Scalars["String"];
2504
2723
  /** The organization of the initiative. */
@@ -2523,6 +2742,15 @@ export declare type Initiative = Node & {
2523
2742
  updatedAt: Scalars["DateTime"];
2524
2743
  };
2525
2744
  /** [INTERNAL] An initiative to group projects. */
2745
+ export declare type InitiativeLinksArgs = {
2746
+ after?: Maybe<Scalars["String"]>;
2747
+ before?: Maybe<Scalars["String"]>;
2748
+ first?: Maybe<Scalars["Int"]>;
2749
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2750
+ last?: Maybe<Scalars["Int"]>;
2751
+ orderBy?: Maybe<PaginationOrderBy>;
2752
+ };
2753
+ /** [INTERNAL] An initiative to group projects. */
2526
2754
  export declare type InitiativeProjectsArgs = {
2527
2755
  after?: Maybe<Scalars["String"]>;
2528
2756
  before?: Maybe<Scalars["String"]>;
@@ -2577,7 +2805,7 @@ export declare type InitiativeConnection = {
2577
2805
  export declare type InitiativeCreateInput = {
2578
2806
  /** The initiative's color. */
2579
2807
  color?: Maybe<Scalars["String"]>;
2580
- /** The description of the initiative. */
2808
+ /** [Internal] The description of the initiative. */
2581
2809
  description?: Maybe<Scalars["String"]>;
2582
2810
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2583
2811
  id?: Maybe<Scalars["String"]>;
@@ -2687,7 +2915,7 @@ export declare type InitiativeToProjectUpdateInput = {
2687
2915
  export declare type InitiativeUpdateInput = {
2688
2916
  /** The initiative's color. */
2689
2917
  color?: Maybe<Scalars["String"]>;
2690
- /** The description of the initiative. */
2918
+ /** [Internal] The description of the initiative. */
2691
2919
  description?: Maybe<Scalars["String"]>;
2692
2920
  /** The name of the initiative. */
2693
2921
  name?: Maybe<Scalars["String"]>;
@@ -3110,9 +3338,9 @@ export declare type Issue = Node & {
3110
3338
  projectMilestone?: Maybe<ProjectMilestone>;
3111
3339
  /** Relations associated with this issue. */
3112
3340
  relations: IssueRelationConnection;
3113
- /** [Internal] The time at which the issue's SLA will breach. */
3341
+ /** The time at which the issue's SLA will breach. */
3114
3342
  slaBreachesAt?: Maybe<Scalars["DateTime"]>;
3115
- /** [Internal] The time at which the issue's SLA began. */
3343
+ /** The time at which the issue's SLA began. */
3116
3344
  slaStartedAt?: Maybe<Scalars["DateTime"]>;
3117
3345
  /** The user who snoozed the issue. */
3118
3346
  snoozedBy?: Maybe<User>;
@@ -3654,6 +3882,7 @@ export declare type IssueHistory = Node & {
3654
3882
  toTitle?: Maybe<Scalars["String"]>;
3655
3883
  /** Whether the issue was trashed or un-trashed. */
3656
3884
  trashed?: Maybe<Scalars["Boolean"]>;
3885
+ triageResponsibilityNotifiedUsers?: Maybe<Array<User>>;
3657
3886
  /**
3658
3887
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
3659
3888
  * 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
@@ -4130,9 +4359,9 @@ export declare type IssueSearchResult = Node & {
4130
4359
  projectMilestone?: Maybe<ProjectMilestone>;
4131
4360
  /** Relations associated with this issue. */
4132
4361
  relations: IssueRelationConnection;
4133
- /** [Internal] The time at which the issue's SLA will breach. */
4362
+ /** The time at which the issue's SLA will breach. */
4134
4363
  slaBreachesAt?: Maybe<Scalars["DateTime"]>;
4135
- /** [Internal] The time at which the issue's SLA began. */
4364
+ /** The time at which the issue's SLA began. */
4136
4365
  slaStartedAt?: Maybe<Scalars["DateTime"]>;
4137
4366
  /** The user who snoozed the issue. */
4138
4367
  snoozedBy?: Maybe<User>;
@@ -4565,10 +4794,18 @@ export declare type Mutation = {
4565
4794
  cycleShiftAll: CyclePayload;
4566
4795
  /** Updates a cycle. */
4567
4796
  cycleUpdate: CyclePayload;
4797
+ /** Creates a new diary entry. */
4798
+ diaryEntryCreate: DiaryEntryPayload;
4799
+ /** Deletes a diaryEntry. */
4800
+ diaryEntryDelete: DeletePayload;
4801
+ /** Updates a diaryEntry. */
4802
+ diaryEntryUpdate: DiaryEntryPayload;
4568
4803
  /** Creates a new document. */
4569
4804
  documentCreate: DocumentPayload;
4570
4805
  /** Deletes a document. */
4571
4806
  documentDelete: DeletePayload;
4807
+ /** Adds a document reminder. Will cause a notification to be sent when the issue reminder time is reached. */
4808
+ documentReminder: DocumentPayload;
4572
4809
  /** Updates a document. */
4573
4810
  documentUpdate: DocumentPayload;
4574
4811
  /** Creates a new email intake address. */
@@ -4589,6 +4826,12 @@ export declare type Mutation = {
4589
4826
  emojiCreate: EmojiPayload;
4590
4827
  /** Deletes an emoji. */
4591
4828
  emojiDelete: DeletePayload;
4829
+ /** Creates a new entity link. */
4830
+ entityExternalLinkCreate: EntityExternalLinkPayload;
4831
+ /** Deletes an entity link. */
4832
+ entityExternalLinkDelete: DeletePayload;
4833
+ /** Updates an entity link. */
4834
+ entityExternalLinkUpdate: EntityExternalLinkPayload;
4592
4835
  /** Creates a new favorite (project, cycle etc). */
4593
4836
  favoriteCreate: FavoritePayload;
4594
4837
  /** Deletes a favorite reference. */
@@ -4849,6 +5092,12 @@ export declare type Mutation = {
4849
5092
  projectMilestoneDelete: DeletePayload;
4850
5093
  /** Updates a project milestone. */
4851
5094
  projectMilestoneUpdate: ProjectMilestonePayload;
5095
+ /** [ALPHA] Creates a new project relation. */
5096
+ projectRelationCreate: ProjectRelationPayload;
5097
+ /** [ALPHA] Deletes a project relation. */
5098
+ projectRelationDelete: DeletePayload;
5099
+ /** [ALPHA] Updates a project relation. */
5100
+ projectRelationUpdate: ProjectRelationPayload;
4852
5101
  /** Unarchives a project. */
4853
5102
  projectUnarchive: ProjectArchivePayload;
4854
5103
  /** Updates a project. */
@@ -4917,21 +5166,21 @@ export declare type Mutation = {
4917
5166
  templateDelete: DeletePayload;
4918
5167
  /** Updates an existing template. */
4919
5168
  templateUpdate: TemplatePayload;
4920
- /** [ALPHA] Creates a new time schedule. */
5169
+ /** Creates a new time schedule. */
4921
5170
  timeScheduleCreate: TimeSchedulePayload;
4922
- /** [ALPHA] Deletes a time schedule. */
5171
+ /** Deletes a time schedule. */
4923
5172
  timeScheduleDelete: DeletePayload;
4924
- /** [ALPHA] Refresh the integration schedule information. */
5173
+ /** Refresh the integration schedule information. */
4925
5174
  timeScheduleRefreshIntegrationSchedule: TimeSchedulePayload;
4926
- /** [ALPHA] Updates a time schedule. */
5175
+ /** Updates a time schedule. */
4927
5176
  timeScheduleUpdate: TimeSchedulePayload;
4928
- /** [ALPHA] Upsert an external time schedule. */
5177
+ /** Upsert an external time schedule. */
4929
5178
  timeScheduleUpsertExternal: TimeSchedulePayload;
4930
- /** [ALPHA] Creates a new triage responsibility. */
5179
+ /** Creates a new triage responsibility. */
4931
5180
  triageResponsibilityCreate: TriageResponsibilityPayload;
4932
- /** [ALPHA] Deletes a triage responsibility. */
5181
+ /** Deletes a triage responsibility. */
4933
5182
  triageResponsibilityDelete: DeletePayload;
4934
- /** [ALPHA] Updates an existing triage responsibility. */
5183
+ /** Updates an existing triage responsibility. */
4935
5184
  triageResponsibilityUpdate: TriageResponsibilityPayload;
4936
5185
  /** Makes user a regular user. Can only be called by an admin. */
4937
5186
  userDemoteAdmin: UserAdminPayload;
@@ -5062,6 +5311,7 @@ export declare type MutationAttachmentLinkSlackArgs = {
5062
5311
  id?: Maybe<Scalars["String"]>;
5063
5312
  issueId: Scalars["String"];
5064
5313
  latest?: Maybe<Scalars["String"]>;
5314
+ syncToCommentThread?: Maybe<Scalars["Boolean"]>;
5065
5315
  title?: Maybe<Scalars["String"]>;
5066
5316
  ts?: Maybe<Scalars["String"]>;
5067
5317
  url: Scalars["String"];
@@ -5143,12 +5393,26 @@ export declare type MutationCycleUpdateArgs = {
5143
5393
  id: Scalars["String"];
5144
5394
  input: CycleUpdateInput;
5145
5395
  };
5396
+ export declare type MutationDiaryEntryCreateArgs = {
5397
+ input: DiaryEntryCreateInput;
5398
+ };
5399
+ export declare type MutationDiaryEntryDeleteArgs = {
5400
+ id: Scalars["String"];
5401
+ };
5402
+ export declare type MutationDiaryEntryUpdateArgs = {
5403
+ id: Scalars["String"];
5404
+ input: DiaryEntryUpdateInput;
5405
+ };
5146
5406
  export declare type MutationDocumentCreateArgs = {
5147
5407
  input: DocumentCreateInput;
5148
5408
  };
5149
5409
  export declare type MutationDocumentDeleteArgs = {
5150
5410
  id: Scalars["String"];
5151
5411
  };
5412
+ export declare type MutationDocumentReminderArgs = {
5413
+ id: Scalars["String"];
5414
+ reminderAt: Scalars["DateTime"];
5415
+ };
5152
5416
  export declare type MutationDocumentUpdateArgs = {
5153
5417
  id: Scalars["String"];
5154
5418
  input: DocumentUpdateInput;
@@ -5181,6 +5445,16 @@ export declare type MutationEmojiCreateArgs = {
5181
5445
  export declare type MutationEmojiDeleteArgs = {
5182
5446
  id: Scalars["String"];
5183
5447
  };
5448
+ export declare type MutationEntityExternalLinkCreateArgs = {
5449
+ input: EntityExternalLinkCreateInput;
5450
+ };
5451
+ export declare type MutationEntityExternalLinkDeleteArgs = {
5452
+ id: Scalars["String"];
5453
+ };
5454
+ export declare type MutationEntityExternalLinkUpdateArgs = {
5455
+ id: Scalars["String"];
5456
+ input: EntityExternalLinkUpdateInput;
5457
+ };
5184
5458
  export declare type MutationFavoriteCreateArgs = {
5185
5459
  input: FavoriteCreateInput;
5186
5460
  };
@@ -5480,6 +5754,7 @@ export declare type MutationIssueLabelDeleteArgs = {
5480
5754
  export declare type MutationIssueLabelUpdateArgs = {
5481
5755
  id: Scalars["String"];
5482
5756
  input: IssueLabelUpdateInput;
5757
+ replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
5483
5758
  };
5484
5759
  export declare type MutationIssueRelationCreateArgs = {
5485
5760
  input: IssueRelationCreateInput;
@@ -5624,6 +5899,16 @@ export declare type MutationProjectMilestoneUpdateArgs = {
5624
5899
  id: Scalars["String"];
5625
5900
  input: ProjectMilestoneUpdateInput;
5626
5901
  };
5902
+ export declare type MutationProjectRelationCreateArgs = {
5903
+ input: ProjectRelationCreateInput;
5904
+ };
5905
+ export declare type MutationProjectRelationDeleteArgs = {
5906
+ id: Scalars["String"];
5907
+ };
5908
+ export declare type MutationProjectRelationUpdateArgs = {
5909
+ id: Scalars["String"];
5910
+ input: ProjectRelationUpdateInput;
5911
+ };
5627
5912
  export declare type MutationProjectUnarchiveArgs = {
5628
5913
  id: Scalars["String"];
5629
5914
  };
@@ -6033,6 +6318,33 @@ export declare type NotionSettingsInput = {
6033
6318
  /** The name of the Notion workspace being connected. */
6034
6319
  workspaceName: Scalars["String"];
6035
6320
  };
6321
+ /** Comment filtering options. */
6322
+ export declare type NullableCommentFilter = {
6323
+ /** Compound filters, all of which need to be matched by the comment. */
6324
+ and?: Maybe<Array<NullableCommentFilter>>;
6325
+ /** Comparator for the comments body. */
6326
+ body?: Maybe<StringComparator>;
6327
+ /** Comparator for the created at date. */
6328
+ createdAt?: Maybe<DateComparator>;
6329
+ /** Filters that the comments document content must satisfy. */
6330
+ documentContent?: Maybe<DocumentContentFilter>;
6331
+ /** Comparator for the identifier. */
6332
+ id?: Maybe<IdComparator>;
6333
+ /** Filters that the comments issue must satisfy. */
6334
+ issue?: Maybe<NullableIssueFilter>;
6335
+ /** Filter based on the existence of the relation. */
6336
+ null?: Maybe<Scalars["Boolean"]>;
6337
+ /** Compound filters, one of which need to be matched by the comment. */
6338
+ or?: Maybe<Array<NullableCommentFilter>>;
6339
+ /** Filters that the comment parent must satisfy. */
6340
+ parent?: Maybe<NullableCommentFilter>;
6341
+ /** Filters that the comments project update must satisfy. */
6342
+ projectUpdate?: Maybe<ProjectUpdateFilter>;
6343
+ /** Comparator for the updated at date. */
6344
+ updatedAt?: Maybe<DateComparator>;
6345
+ /** Filters that the comments creator must satisfy. */
6346
+ user?: Maybe<UserFilter>;
6347
+ };
6036
6348
  /** Cycle filtering options. */
6037
6349
  export declare type NullableCycleFilter = {
6038
6350
  /** Compound filters, one of which need to be matched by the cycle. */
@@ -6077,21 +6389,21 @@ export declare type NullableCycleFilter = {
6077
6389
  /** Comparator for optional dates. */
6078
6390
  export declare type NullableDateComparator = {
6079
6391
  /** Equals constraint. */
6080
- eq?: Maybe<Scalars["DateTime"]>;
6392
+ eq?: Maybe<Scalars["DateTimeOrDuration"]>;
6081
6393
  /** Greater-than constraint. Matches any values that are greater than the given value. */
6082
- gt?: Maybe<Scalars["DateTime"]>;
6394
+ gt?: Maybe<Scalars["DateTimeOrDuration"]>;
6083
6395
  /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
6084
- gte?: Maybe<Scalars["DateTime"]>;
6396
+ gte?: Maybe<Scalars["DateTimeOrDuration"]>;
6085
6397
  /** In-array constraint. */
6086
- in?: Maybe<Array<Scalars["DateTime"]>>;
6398
+ in?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
6087
6399
  /** Less-than constraint. Matches any values that are less than the given value. */
6088
- lt?: Maybe<Scalars["DateTime"]>;
6400
+ lt?: Maybe<Scalars["DateTimeOrDuration"]>;
6089
6401
  /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
6090
- lte?: Maybe<Scalars["DateTime"]>;
6402
+ lte?: Maybe<Scalars["DateTimeOrDuration"]>;
6091
6403
  /** Not-equals constraint. */
6092
- neq?: Maybe<Scalars["DateTime"]>;
6404
+ neq?: Maybe<Scalars["DateTimeOrDuration"]>;
6093
6405
  /** Not-in-array constraint. */
6094
- nin?: Maybe<Array<Scalars["DateTime"]>>;
6406
+ nin?: Maybe<Array<Scalars["DateTimeOrDuration"]>>;
6095
6407
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
6096
6408
  null?: Maybe<Scalars["Boolean"]>;
6097
6409
  };
@@ -6386,23 +6698,24 @@ export declare type NullableTemplateFilter = {
6386
6698
  /** Comparator for the updated at date. */
6387
6699
  updatedAt?: Maybe<DateComparator>;
6388
6700
  };
6701
+ /** Comparator for optional timeless dates. */
6389
6702
  export declare type NullableTimelessDateComparator = {
6390
6703
  /** Equals constraint. */
6391
- eq?: Maybe<Scalars["TimelessDate"]>;
6704
+ eq?: Maybe<Scalars["TimelessDateOrDuration"]>;
6392
6705
  /** Greater-than constraint. Matches any values that are greater than the given value. */
6393
- gt?: Maybe<Scalars["TimelessDate"]>;
6706
+ gt?: Maybe<Scalars["TimelessDateOrDuration"]>;
6394
6707
  /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
6395
- gte?: Maybe<Scalars["TimelessDate"]>;
6708
+ gte?: Maybe<Scalars["TimelessDateOrDuration"]>;
6396
6709
  /** In-array constraint. */
6397
- in?: Maybe<Array<Scalars["TimelessDate"]>>;
6710
+ in?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
6398
6711
  /** Less-than constraint. Matches any values that are less than the given value. */
6399
- lt?: Maybe<Scalars["TimelessDate"]>;
6712
+ lt?: Maybe<Scalars["TimelessDateOrDuration"]>;
6400
6713
  /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
6401
- lte?: Maybe<Scalars["TimelessDate"]>;
6714
+ lte?: Maybe<Scalars["TimelessDateOrDuration"]>;
6402
6715
  /** Not-equals constraint. */
6403
- neq?: Maybe<Scalars["TimelessDate"]>;
6716
+ neq?: Maybe<Scalars["TimelessDateOrDuration"]>;
6404
6717
  /** Not-in-array constraint. */
6405
- nin?: Maybe<Array<Scalars["TimelessDate"]>>;
6718
+ nin?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
6406
6719
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
6407
6720
  null?: Maybe<Scalars["Boolean"]>;
6408
6721
  };
@@ -6593,6 +6906,8 @@ export declare type OauthToken = {
6593
6906
  createdAt: Scalars["DateTime"];
6594
6907
  id: Scalars["Float"];
6595
6908
  revokedAt?: Maybe<Scalars["DateTime"]>;
6909
+ /** Scopes associated with the access token. */
6910
+ scope: Array<Scalars["String"]>;
6596
6911
  /** Auth user who authorized the OAuth application. */
6597
6912
  user: AuthUser;
6598
6913
  /** Id of the user who authorized the OAuth application. */
@@ -6649,6 +6964,8 @@ export declare type Organization = Node & {
6649
6964
  periodUploadVolume: Scalars["Float"];
6650
6965
  /** Previously used URL keys for the organization (last 3 are kept and redirected). */
6651
6966
  previousUrlKeys: Array<Scalars["String"]>;
6967
+ /** The organization's project statuses. */
6968
+ projectStatuses: Array<ProjectStatus>;
6652
6969
  /** The day at which to prompt for project updates. */
6653
6970
  projectUpdateRemindersDay: Day;
6654
6971
  /** The hour at which to prompt for project updates. */
@@ -6673,6 +6990,8 @@ export declare type Organization = Node & {
6673
6990
  teams: TeamConnection;
6674
6991
  /** Templates associated with the organization. */
6675
6992
  templates: TemplateConnection;
6993
+ /** [ALPHA] Theme settings for the organization. */
6994
+ themeSettings?: Maybe<Scalars["JSONObject"]>;
6676
6995
  /** The time at which the trial of the plus plan will end. */
6677
6996
  trialEndsAt?: Maybe<Scalars["DateTime"]>;
6678
6997
  /**
@@ -7005,6 +7324,8 @@ export declare type OrganizationUpdateInput = {
7005
7324
  slaDayCount?: Maybe<SLADayCountType>;
7006
7325
  /** Internal. Whether SLAs have been enabled for the organization. */
7007
7326
  slaEnabled?: Maybe<Scalars["Boolean"]>;
7327
+ /** [ALPHA] Theme settings for the organization. */
7328
+ themeSettings?: Maybe<Scalars["JSONObject"]>;
7008
7329
  /** The URL key of the organization. */
7009
7330
  urlKey?: Maybe<Scalars["String"]>;
7010
7331
  };
@@ -7729,6 +8050,91 @@ export declare type ProjectPayload = {
7729
8050
  /** Whether the operation was successful. */
7730
8051
  success: Scalars["Boolean"];
7731
8052
  };
8053
+ /** A relation between two projects. */
8054
+ export declare type ProjectRelation = Node & {
8055
+ __typename?: "ProjectRelation";
8056
+ /** The type of anchor on the project end of the relation. */
8057
+ anchorType: Scalars["String"];
8058
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
8059
+ archivedAt?: Maybe<Scalars["DateTime"]>;
8060
+ /** The time at which the entity was created. */
8061
+ createdAt: Scalars["DateTime"];
8062
+ /** The unique identifier of the entity. */
8063
+ id: Scalars["ID"];
8064
+ /** The project whose relationship is being described. */
8065
+ project: Project;
8066
+ /** The milestone within the project whose relationship is being described. */
8067
+ projectMilestone?: Maybe<ProjectMilestone>;
8068
+ /** The type of anchor on the relatedProject end of the relation. */
8069
+ relatedAnchorType: Scalars["String"];
8070
+ /** The related project. */
8071
+ relatedProject: Project;
8072
+ /** The milestone within the related project whose relationship is being described. */
8073
+ relatedProjectMilestone?: Maybe<ProjectMilestone>;
8074
+ /** The relationship of the project with the related project. */
8075
+ type: Scalars["String"];
8076
+ /**
8077
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8078
+ * 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
8079
+ * been updated after creation.
8080
+ */
8081
+ updatedAt: Scalars["DateTime"];
8082
+ };
8083
+ export declare type ProjectRelationConnection = {
8084
+ __typename?: "ProjectRelationConnection";
8085
+ edges: Array<ProjectRelationEdge>;
8086
+ nodes: Array<ProjectRelation>;
8087
+ pageInfo: PageInfo;
8088
+ };
8089
+ export declare type ProjectRelationCreateInput = {
8090
+ /** The type of the anchor for the project. */
8091
+ anchorType: Scalars["String"];
8092
+ /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
8093
+ id?: Maybe<Scalars["String"]>;
8094
+ /** The identifier of the project that is related to another project. */
8095
+ projectId: Scalars["String"];
8096
+ /** The identifier of the project milestone. */
8097
+ projectMilestoneId?: Maybe<Scalars["String"]>;
8098
+ /** The type of the anchor for the related project. */
8099
+ relatedAnchorType: Scalars["String"];
8100
+ /** The identifier of the related project. */
8101
+ relatedProjectId: Scalars["String"];
8102
+ /** The identifier of the related project milestone. */
8103
+ relatedProjectMilestoneId?: Maybe<Scalars["String"]>;
8104
+ /** The type of relation of the project to the related project. */
8105
+ type: Scalars["String"];
8106
+ };
8107
+ export declare type ProjectRelationEdge = {
8108
+ __typename?: "ProjectRelationEdge";
8109
+ /** Used in `before` and `after` args */
8110
+ cursor: Scalars["String"];
8111
+ node: ProjectRelation;
8112
+ };
8113
+ export declare type ProjectRelationPayload = {
8114
+ __typename?: "ProjectRelationPayload";
8115
+ /** The identifier of the last sync operation. */
8116
+ lastSyncId: Scalars["Float"];
8117
+ /** The project relation that was created or updated. */
8118
+ projectRelation: ProjectRelation;
8119
+ /** Whether the operation was successful. */
8120
+ success: Scalars["Boolean"];
8121
+ };
8122
+ export declare type ProjectRelationUpdateInput = {
8123
+ /** The type of the anchor for the project. */
8124
+ anchorType?: Maybe<Scalars["String"]>;
8125
+ /** The identifier of the project that is related to another project. */
8126
+ projectId?: Maybe<Scalars["String"]>;
8127
+ /** The identifier of the project milestone. */
8128
+ projectMilestoneId?: Maybe<Scalars["String"]>;
8129
+ /** The type of the anchor for the related project. */
8130
+ relatedAnchorType?: Maybe<Scalars["String"]>;
8131
+ /** The identifier of the related project. */
8132
+ relatedProjectId?: Maybe<Scalars["String"]>;
8133
+ /** The identifier of the related project milestone. */
8134
+ relatedProjectMilestoneId?: Maybe<Scalars["String"]>;
8135
+ /** The type of relation of the project to the related project. */
8136
+ type?: Maybe<Scalars["String"]>;
8137
+ };
7732
8138
  export declare type ProjectSearchPayload = {
7733
8139
  __typename?: "ProjectSearchPayload";
7734
8140
  /** Archived entities matching the search term along with all their dependencies. */
@@ -7928,7 +8334,7 @@ export declare type ProjectSort = {
7928
8334
  /** The order for the individual sort */
7929
8335
  order?: Maybe<PaginationSortOrder>;
7930
8336
  };
7931
- /** [ALPHA] A project status. */
8337
+ /** A project status. */
7932
8338
  export declare type ProjectStatus = Node & {
7933
8339
  __typename?: "ProjectStatus";
7934
8340
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -8015,6 +8421,8 @@ export declare type ProjectUpdate = Node & {
8015
8421
  body: Scalars["String"];
8016
8422
  /** [Internal] The content of the project update as a Prosemirror document. */
8017
8423
  bodyData: Scalars["String"];
8424
+ /** Comments associated with the project update. */
8425
+ comments: CommentConnection;
8018
8426
  /** The time at which the entity was created. */
8019
8427
  createdAt: Scalars["DateTime"];
8020
8428
  /** The diff between the current update and the previous one. */
@@ -8033,6 +8441,8 @@ export declare type ProjectUpdate = Node & {
8033
8441
  isDiffHidden: Scalars["Boolean"];
8034
8442
  /** The project that the update is associated with. */
8035
8443
  project: Project;
8444
+ /** Emoji reaction summary, grouped by emoji type. */
8445
+ reactionData: Scalars["JSONObject"];
8036
8446
  /**
8037
8447
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8038
8448
  * 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
@@ -8044,6 +8454,16 @@ export declare type ProjectUpdate = Node & {
8044
8454
  /** The user who wrote the update. */
8045
8455
  user: User;
8046
8456
  };
8457
+ /** A update associated with an project. */
8458
+ export declare type ProjectUpdateCommentsArgs = {
8459
+ after?: Maybe<Scalars["String"]>;
8460
+ before?: Maybe<Scalars["String"]>;
8461
+ filter?: Maybe<CommentFilter>;
8462
+ first?: Maybe<Scalars["Int"]>;
8463
+ includeArchived?: Maybe<Scalars["Boolean"]>;
8464
+ last?: Maybe<Scalars["Int"]>;
8465
+ orderBy?: Maybe<PaginationOrderBy>;
8466
+ };
8047
8467
  export declare type ProjectUpdateConnection = {
8048
8468
  __typename?: "ProjectUpdateConnection";
8049
8469
  edges: Array<ProjectUpdateEdge>;
@@ -8355,6 +8775,8 @@ export declare type Query = {
8355
8775
  cycle: Cycle;
8356
8776
  /** All cycles. */
8357
8777
  cycles: CycleConnection;
8778
+ /** One specific diary entry. */
8779
+ diaryEntry: DiaryEntry;
8358
8780
  /** One specific document. */
8359
8781
  document: Document;
8360
8782
  /** A collection of document content history entries. */
@@ -8365,6 +8787,8 @@ export declare type Query = {
8365
8787
  emoji: Emoji;
8366
8788
  /** All custom emojis. */
8367
8789
  emojis: EmojiConnection;
8790
+ /** One specific entity link. */
8791
+ entityExternalLink: EntityExternalLink;
8368
8792
  /** One specific external user. */
8369
8793
  externalUser: ExternalUser;
8370
8794
  /** All external users for the organization. */
@@ -8451,6 +8875,10 @@ export declare type Query = {
8451
8875
  projectMilestone: ProjectMilestone;
8452
8876
  /** All milestones for the project. */
8453
8877
  projectMilestones: ProjectMilestoneConnection;
8878
+ /** One specific project relation. */
8879
+ projectRelation: ProjectRelation;
8880
+ /** All project relationships. */
8881
+ projectRelations: ProjectRelationConnection;
8454
8882
  /** A specific project update. */
8455
8883
  projectUpdate: ProjectUpdate;
8456
8884
  /** A specific interaction on a project update. */
@@ -8497,13 +8925,13 @@ export declare type Query = {
8497
8925
  templates: Array<Template>;
8498
8926
  /** Returns all templates that are associated with the integration type. */
8499
8927
  templatesForIntegration: Array<Template>;
8500
- /** [ALPHA] A specific time schedule. */
8928
+ /** A specific time schedule. */
8501
8929
  timeSchedule: TimeSchedule;
8502
- /** [ALPHA] All time schedules. */
8930
+ /** All time schedules. */
8503
8931
  timeSchedules: TimeScheduleConnection;
8504
- /** [ALPHA] All triage responsibilities. */
8932
+ /** All triage responsibilities. */
8505
8933
  triageResponsibilities: TriageResponsibilityConnection;
8506
- /** [ALPHA] A specific triage responsibility. */
8934
+ /** A specific triage responsibility. */
8507
8935
  triageResponsibility: TriageResponsibility;
8508
8936
  /** One specific user. */
8509
8937
  user: User;
@@ -8636,6 +9064,9 @@ export declare type QueryCyclesArgs = {
8636
9064
  last?: Maybe<Scalars["Int"]>;
8637
9065
  orderBy?: Maybe<PaginationOrderBy>;
8638
9066
  };
9067
+ export declare type QueryDiaryEntryArgs = {
9068
+ id: Scalars["String"];
9069
+ };
8639
9070
  export declare type QueryDocumentArgs = {
8640
9071
  id: Scalars["String"];
8641
9072
  };
@@ -8662,6 +9093,9 @@ export declare type QueryEmojisArgs = {
8662
9093
  last?: Maybe<Scalars["Int"]>;
8663
9094
  orderBy?: Maybe<PaginationOrderBy>;
8664
9095
  };
9096
+ export declare type QueryEntityExternalLinkArgs = {
9097
+ id: Scalars["String"];
9098
+ };
8665
9099
  export declare type QueryExternalUserArgs = {
8666
9100
  id: Scalars["String"];
8667
9101
  };
@@ -8875,6 +9309,17 @@ export declare type QueryProjectMilestonesArgs = {
8875
9309
  last?: Maybe<Scalars["Int"]>;
8876
9310
  orderBy?: Maybe<PaginationOrderBy>;
8877
9311
  };
9312
+ export declare type QueryProjectRelationArgs = {
9313
+ id: Scalars["String"];
9314
+ };
9315
+ export declare type QueryProjectRelationsArgs = {
9316
+ after?: Maybe<Scalars["String"]>;
9317
+ before?: Maybe<Scalars["String"]>;
9318
+ first?: Maybe<Scalars["Int"]>;
9319
+ includeArchived?: Maybe<Scalars["Boolean"]>;
9320
+ last?: Maybe<Scalars["Int"]>;
9321
+ orderBy?: Maybe<PaginationOrderBy>;
9322
+ };
8878
9323
  export declare type QueryProjectUpdateArgs = {
8879
9324
  id: Scalars["String"];
8880
9325
  };
@@ -9159,16 +9604,44 @@ export declare enum ReleaseChannel {
9159
9604
  PreRelease = "preRelease",
9160
9605
  Public = "public"
9161
9606
  }
9162
- /** A roadmap for projects. */
9163
- export declare type Roadmap = Node & {
9164
- __typename?: "Roadmap";
9607
+ /** A reminder that can be attached to different entities. */
9608
+ export declare type Reminder = Node & {
9609
+ __typename?: "Reminder";
9165
9610
  /** The time at which the entity was archived. Null if the entity has not been archived. */
9166
9611
  archivedAt?: Maybe<Scalars["DateTime"]>;
9167
- /** The roadmap's color. */
9168
- color?: Maybe<Scalars["String"]>;
9612
+ /** The reminder's comment. */
9613
+ comment?: Maybe<Scalars["String"]>;
9169
9614
  /** The time at which the entity was created. */
9170
9615
  createdAt: Scalars["DateTime"];
9171
- /** The user who created the roadmap. */
9616
+ /** The document that the reminder is associated with. */
9617
+ documentId?: Maybe<Document>;
9618
+ /** The unique identifier of the entity. */
9619
+ id: Scalars["ID"];
9620
+ /** The issue that the reminder is associated with. */
9621
+ issueId?: Maybe<Issue>;
9622
+ /** The project that the reminder is associated with. */
9623
+ projectId?: Maybe<Project>;
9624
+ /** The time when a reminder triggers a notification in users inbox. */
9625
+ remindAt: Scalars["DateTime"];
9626
+ /**
9627
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
9628
+ * 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
9629
+ * been updated after creation.
9630
+ */
9631
+ updatedAt: Scalars["DateTime"];
9632
+ /** The user that created a reminder. */
9633
+ user: User;
9634
+ };
9635
+ /** A roadmap for projects. */
9636
+ export declare type Roadmap = Node & {
9637
+ __typename?: "Roadmap";
9638
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
9639
+ archivedAt?: Maybe<Scalars["DateTime"]>;
9640
+ /** The roadmap's color. */
9641
+ color?: Maybe<Scalars["String"]>;
9642
+ /** The time at which the entity was created. */
9643
+ createdAt: Scalars["DateTime"];
9644
+ /** The user who created the roadmap. */
9172
9645
  creator: User;
9173
9646
  /** The description of the roadmap. */
9174
9647
  description?: Maybe<Scalars["String"]>;
@@ -9192,6 +9665,8 @@ export declare type Roadmap = Node & {
9192
9665
  * been updated after creation.
9193
9666
  */
9194
9667
  updatedAt: Scalars["DateTime"];
9668
+ /** The canonical url for the roadmap. */
9669
+ url: Scalars["String"];
9195
9670
  };
9196
9671
  /** A roadmap for projects. */
9197
9672
  export declare type RoadmapProjectsArgs = {
@@ -9503,7 +9978,7 @@ export declare type SlackChannelNameMapping = {
9503
9978
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
9504
9979
  /** The optional template ID to use for Asks auto-created in this channel. If not set, auto-created Asks won't use any template. */
9505
9980
  autoCreateTemplateId?: Maybe<Scalars["String"]>;
9506
- /** Whether or not we the Linear Asks bot has been added to this Slack channel. */
9981
+ /** Whether or not the Linear Asks bot has been added to this Slack channel. */
9507
9982
  botAdded?: Maybe<Scalars["Boolean"]>;
9508
9983
  /** The Slack channel ID. */
9509
9984
  id: Scalars["String"];
@@ -9513,6 +9988,8 @@ export declare type SlackChannelNameMapping = {
9513
9988
  isShared?: Maybe<Scalars["Boolean"]>;
9514
9989
  /** The Slack channel name. */
9515
9990
  name: Scalars["String"];
9991
+ /** Whether or not synced Slack threads should be updated with a message and emoji when their Ask is canceled. */
9992
+ postCancellationUpdates?: Maybe<Scalars["Boolean"]>;
9516
9993
  /** Which teams are connected to the channel and settings for those teams. */
9517
9994
  teams: Array<SlackAsksTeamSettings>;
9518
9995
  };
@@ -9525,7 +10002,7 @@ export declare type SlackChannelNameMappingInput = {
9525
10002
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
9526
10003
  /** The optional template ID to use for Asks auto-created in this channel. If not set, auto-created Asks won't use any template. */
9527
10004
  autoCreateTemplateId?: Maybe<Scalars["String"]>;
9528
- /** Whether or not we the Linear Asks bot has been added to this Slack channel. */
10005
+ /** Whether or not the Linear Asks bot has been added to this Slack channel. */
9529
10006
  botAdded?: Maybe<Scalars["Boolean"]>;
9530
10007
  /** The Slack channel ID. */
9531
10008
  id: Scalars["String"];
@@ -9535,6 +10012,8 @@ export declare type SlackChannelNameMappingInput = {
9535
10012
  isShared?: Maybe<Scalars["Boolean"]>;
9536
10013
  /** The Slack channel name. */
9537
10014
  name: Scalars["String"];
10015
+ /** Whether or not synced Slack threads should be updated with a message and emoji when their Ask is canceled. */
10016
+ postCancellationUpdates?: Maybe<Scalars["Boolean"]>;
9538
10017
  /** Which teams are connected to the channel and settings for those teams. */
9539
10018
  teams: Array<SlackAsksTeamSettingsInput>;
9540
10019
  };
@@ -9823,6 +10302,8 @@ export declare type Team = Node & {
9823
10302
  * @deprecated Use team.gitAutomationStates instead.
9824
10303
  */
9825
10304
  reviewWorkflowState?: Maybe<WorkflowState>;
10305
+ /** Whether the team is managed by SCIM integration. */
10306
+ scimManaged: Scalars["Boolean"];
9826
10307
  /** Where to move issues when changing state. */
9827
10308
  setIssueSortOrderOnStateChange: Scalars["String"];
9828
10309
  /** Whether to send new issue comment notifications to Slack. */
@@ -10300,6 +10781,8 @@ export declare type TeamUpdateInput = {
10300
10781
  requirePriorityToLeaveTriage?: Maybe<Scalars["Boolean"]>;
10301
10782
  /** The workflow state into which issues are moved when a review has been requested for the PR. */
10302
10783
  reviewWorkflowStateId?: Maybe<Scalars["String"]>;
10784
+ /** Whether the team is managed by SCIM integration. Mutation restricted to workspace admins and only unsetting is allowed! */
10785
+ scimManaged?: Maybe<Scalars["Boolean"]>;
10303
10786
  /** Whether to move issues to bottom of the column when changing state. */
10304
10787
  setIssueSortOrderOnStateChange?: Maybe<Scalars["String"]>;
10305
10788
  /** Whether to send new issue comment notifications to Slack. */
@@ -10336,6 +10819,8 @@ export declare type Template = Node & {
10336
10819
  name: Scalars["String"];
10337
10820
  /** The organization that the template is associated with. If null, the template is associated with a particular team. */
10338
10821
  organization?: Maybe<Organization>;
10822
+ /** The sort order of the template. */
10823
+ sortOrder: Scalars["Float"];
10339
10824
  /** The team that the template is associated with. If null, the template is global to the workspace. */
10340
10825
  team?: Maybe<Team>;
10341
10826
  /** Template data. */
@@ -10362,6 +10847,8 @@ export declare type TemplateCreateInput = {
10362
10847
  id?: Maybe<Scalars["String"]>;
10363
10848
  /** The template name. */
10364
10849
  name: Scalars["String"];
10850
+ /** The position of the template in the templates list. */
10851
+ sortOrder?: Maybe<Scalars["Float"]>;
10365
10852
  /** The identifier or key of the team associated with the template. If not given, the template will be shared across all teams. */
10366
10853
  teamId?: Maybe<Scalars["String"]>;
10367
10854
  /** The template data as JSON encoded attributes of the type of entity, such as an issue. */
@@ -10389,6 +10876,8 @@ export declare type TemplateUpdateInput = {
10389
10876
  description?: Maybe<Scalars["String"]>;
10390
10877
  /** The template name. */
10391
10878
  name?: Maybe<Scalars["String"]>;
10879
+ /** The position of the template in the templates list. */
10880
+ sortOrder?: Maybe<Scalars["Float"]>;
10392
10881
  /** The identifier or key of the team associated with the template. If set to null, the template will be shared across all teams. */
10393
10882
  teamId?: Maybe<Scalars["String"]>;
10394
10883
  /** The template data as JSON encoded attributes of the type of entity, such as an issue. */
@@ -10488,21 +10977,21 @@ export declare type TimeScheduleUpdateInput = {
10488
10977
  /** Comparator for timeless dates. */
10489
10978
  export declare type TimelessDateComparator = {
10490
10979
  /** Equals constraint. */
10491
- eq?: Maybe<Scalars["TimelessDate"]>;
10980
+ eq?: Maybe<Scalars["TimelessDateOrDuration"]>;
10492
10981
  /** Greater-than constraint. Matches any values that are greater than the given value. */
10493
- gt?: Maybe<Scalars["TimelessDate"]>;
10982
+ gt?: Maybe<Scalars["TimelessDateOrDuration"]>;
10494
10983
  /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
10495
- gte?: Maybe<Scalars["TimelessDate"]>;
10984
+ gte?: Maybe<Scalars["TimelessDateOrDuration"]>;
10496
10985
  /** In-array constraint. */
10497
- in?: Maybe<Array<Scalars["TimelessDate"]>>;
10986
+ in?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
10498
10987
  /** Less-than constraint. Matches any values that are less than the given value. */
10499
- lt?: Maybe<Scalars["TimelessDate"]>;
10988
+ lt?: Maybe<Scalars["TimelessDateOrDuration"]>;
10500
10989
  /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
10501
- lte?: Maybe<Scalars["TimelessDate"]>;
10990
+ lte?: Maybe<Scalars["TimelessDateOrDuration"]>;
10502
10991
  /** Not-equals constraint. */
10503
- neq?: Maybe<Scalars["TimelessDate"]>;
10992
+ neq?: Maybe<Scalars["TimelessDateOrDuration"]>;
10504
10993
  /** Not-in-array constraint. */
10505
- nin?: Maybe<Array<Scalars["TimelessDate"]>>;
10994
+ nin?: Maybe<Array<Scalars["TimelessDateOrDuration"]>>;
10506
10995
  };
10507
10996
  /** Issue title sorting options. */
10508
10997
  export declare type TitleSort = {
@@ -10910,10 +11399,12 @@ export declare enum UserFlagType {
10910
11399
  DesktopInstalled = "desktopInstalled",
10911
11400
  DesktopTabsOnboardingDismissed = "desktopTabsOnboardingDismissed",
10912
11401
  DueDateShortcutMigration = "dueDateShortcutMigration",
11402
+ EditorSlashCommandUsed = "editorSlashCommandUsed",
10913
11403
  EmptyActiveIssuesDismissed = "emptyActiveIssuesDismissed",
10914
11404
  EmptyBacklogDismissed = "emptyBacklogDismissed",
10915
11405
  EmptyCustomViewsDismissed = "emptyCustomViewsDismissed",
10916
11406
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
11407
+ EmptyParagraphSlashCommandTip = "emptyParagraphSlashCommandTip",
10917
11408
  FigmaPluginBannerDismissed = "figmaPluginBannerDismissed",
10918
11409
  FigmaPromptDismissed = "figmaPromptDismissed",
10919
11410
  HelpIslandFeatureInsightsDismissed = "helpIslandFeatureInsightsDismissed",
@@ -11121,6 +11612,8 @@ export declare type ViewPreferences = Node & {
11121
11612
  createdAt: Scalars["DateTime"];
11122
11613
  /** The unique identifier of the entity. */
11123
11614
  id: Scalars["ID"];
11615
+ /** The view preferences */
11616
+ preferences: ViewPreferencesValues;
11124
11617
  /** The view preference type. */
11125
11618
  type: Scalars["String"];
11126
11619
  /**
@@ -11180,6 +11673,15 @@ export declare type ViewPreferencesUpdateInput = {
11180
11673
  /** View preferences. */
11181
11674
  preferences?: Maybe<Scalars["JSONObject"]>;
11182
11675
  };
11676
+ export declare type ViewPreferencesValues = {
11677
+ __typename?: "ViewPreferencesValues";
11678
+ /** The issue grouping. */
11679
+ issueGrouping?: Maybe<Scalars["String"]>;
11680
+ /** Whether to show completed issues. */
11681
+ showCompletedIssues?: Maybe<Scalars["String"]>;
11682
+ /** The issue ordering. */
11683
+ viewOrdering?: Maybe<Scalars["String"]>;
11684
+ };
11183
11685
  /** The client view this custom view is targeting. */
11184
11686
  export declare enum ViewType {
11185
11687
  ActiveIssues = "activeIssues",
@@ -11201,6 +11703,7 @@ export declare enum ViewType {
11201
11703
  MyIssuesActivity = "myIssuesActivity",
11202
11704
  MyIssuesCreatedByMe = "myIssuesCreatedByMe",
11203
11705
  MyIssuesSubscribedTo = "myIssuesSubscribedTo",
11706
+ MyViews = "myViews",
11204
11707
  Project = "project",
11205
11708
  ProjectDocuments = "projectDocuments",
11206
11709
  Projects = "projects",
@@ -11632,6 +12135,9 @@ declare type Entity_CustomViewNotificationSubscription_Fragment = {
11632
12135
  declare type Entity_CycleNotificationSubscription_Fragment = {
11633
12136
  __typename: "CycleNotificationSubscription";
11634
12137
  } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12138
+ declare type Entity_DocumentNotification_Fragment = {
12139
+ __typename: "DocumentNotification";
12140
+ } & Pick<DocumentNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
11635
12141
  declare type Entity_IssueNotification_Fragment = {
11636
12142
  __typename: "IssueNotification";
11637
12143
  } & Pick<IssueNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -11653,7 +12159,7 @@ declare type Entity_TeamNotificationSubscription_Fragment = {
11653
12159
  declare type Entity_UserNotificationSubscription_Fragment = {
11654
12160
  __typename: "UserNotificationSubscription";
11655
12161
  } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
11656
- 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;
12162
+ export declare type EntityFragment = Entity_CustomViewNotificationSubscription_Fragment | Entity_CycleNotificationSubscription_Fragment | Entity_DocumentNotification_Fragment | Entity_IssueNotification_Fragment | Entity_LabelNotificationSubscription_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment | Entity_UserNotificationSubscription_Fragment;
11657
12163
  export declare type ActorBotFragment = {
11658
12164
  __typename: "ActorBot";
11659
12165
  } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
@@ -11730,6 +12236,15 @@ export declare type CustomViewNotificationSubscriptionFragment = {
11730
12236
  export declare type CustomViewFragment = {
11731
12237
  __typename: "CustomView";
11732
12238
  } & Pick<CustomView, "color" | "description" | "filterData" | "projectFilterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
12239
+ viewPreferencesValues?: Maybe<{
12240
+ __typename?: "ViewPreferencesValues";
12241
+ } & ViewPreferencesValuesFragment>;
12242
+ userViewPreferences?: Maybe<{
12243
+ __typename?: "ViewPreferences";
12244
+ } & ViewPreferencesFragment>;
12245
+ organizationViewPreferences?: Maybe<{
12246
+ __typename?: "ViewPreferences";
12247
+ } & ViewPreferencesFragment>;
11733
12248
  team?: Maybe<{
11734
12249
  __typename?: "Team";
11735
12250
  } & Pick<Team, "id">>;
@@ -11768,6 +12283,13 @@ export declare type CycleNotificationSubscriptionFragment = {
11768
12283
  __typename?: "User";
11769
12284
  } & Pick<User, "id">>;
11770
12285
  };
12286
+ export declare type DiaryEntryFragment = {
12287
+ __typename: "DiaryEntry";
12288
+ } & Pick<DiaryEntry, "url" | "date" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
12289
+ user: {
12290
+ __typename?: "User";
12291
+ } & Pick<User, "id">;
12292
+ };
11771
12293
  export declare type DocumentContentFragment = {
11772
12294
  __typename: "DocumentContent";
11773
12295
  } & Pick<DocumentContent, "content" | "contentState" | "updatedAt" | "restoredAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -11791,15 +12313,31 @@ export declare type DocumentContentHistoryFragment = {
11791
12313
  __typename?: "DocumentContent";
11792
12314
  } & DocumentContentFragment;
11793
12315
  };
12316
+ export declare type DocumentNotificationFragment = {
12317
+ __typename: "DocumentNotification";
12318
+ } & Pick<DocumentNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
12319
+ botActor?: Maybe<{
12320
+ __typename?: "ActorBot";
12321
+ } & ActorBotFragment>;
12322
+ externalUserActor?: Maybe<{
12323
+ __typename?: "ExternalUser";
12324
+ } & Pick<ExternalUser, "id">>;
12325
+ actor?: Maybe<{
12326
+ __typename?: "User";
12327
+ } & Pick<User, "id">>;
12328
+ user: {
12329
+ __typename?: "User";
12330
+ } & Pick<User, "id">;
12331
+ };
11794
12332
  export declare type DocumentFragment = {
11795
12333
  __typename: "Document";
11796
- } & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
12334
+ } & Pick<Document, "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
11797
12335
  lastAppliedTemplate?: Maybe<{
11798
12336
  __typename?: "Template";
11799
12337
  } & Pick<Template, "id">>;
11800
- project: {
12338
+ project?: Maybe<{
11801
12339
  __typename?: "Project";
11802
- } & Pick<Project, "id">;
12340
+ } & Pick<Project, "id">>;
11803
12341
  creator: {
11804
12342
  __typename?: "User";
11805
12343
  } & Pick<User, "id">;
@@ -11835,6 +12373,8 @@ export declare type NotificationArchivePayloadFragment = {
11835
12373
  __typename: "NotificationArchivePayload";
11836
12374
  } & Pick<NotificationArchivePayload, "lastSyncId" | "success"> & {
11837
12375
  entity?: Maybe<({
12376
+ __typename?: "DocumentNotification";
12377
+ } & Notification_DocumentNotification_Fragment) | ({
11838
12378
  __typename?: "IssueNotification";
11839
12379
  } & Notification_IssueNotification_Fragment) | ({
11840
12380
  __typename?: "OauthClientApprovalNotification";
@@ -11936,6 +12476,22 @@ export declare type ProjectMilestoneFragment = {
11936
12476
  __typename?: "Project";
11937
12477
  } & Pick<Project, "id">;
11938
12478
  };
12479
+ declare type Notification_DocumentNotification_Fragment = {
12480
+ __typename: "DocumentNotification";
12481
+ } & Pick<DocumentNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
12482
+ botActor?: Maybe<{
12483
+ __typename?: "ActorBot";
12484
+ } & ActorBotFragment>;
12485
+ externalUserActor?: Maybe<{
12486
+ __typename?: "ExternalUser";
12487
+ } & Pick<ExternalUser, "id">>;
12488
+ actor?: Maybe<{
12489
+ __typename?: "User";
12490
+ } & Pick<User, "id">>;
12491
+ user: {
12492
+ __typename?: "User";
12493
+ } & Pick<User, "id">;
12494
+ } & DocumentNotificationFragment;
11939
12495
  declare type Notification_IssueNotification_Fragment = {
11940
12496
  __typename: "IssueNotification";
11941
12497
  } & Pick<IssueNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
@@ -11984,7 +12540,7 @@ declare type Notification_ProjectNotification_Fragment = {
11984
12540
  __typename?: "User";
11985
12541
  } & Pick<User, "id">;
11986
12542
  } & ProjectNotificationFragment;
11987
- export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
12543
+ export declare type NotificationFragment = Notification_DocumentNotification_Fragment | Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
11988
12544
  export declare type ProjectNotificationSubscriptionFragment = {
11989
12545
  __typename: "ProjectNotificationSubscription";
11990
12546
  } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
@@ -12032,6 +12588,9 @@ export declare type ProjectNotificationFragment = {
12032
12588
  __typename?: "User";
12033
12589
  } & Pick<User, "id">;
12034
12590
  };
12591
+ export declare type ProjectStatusFragment = {
12592
+ __typename: "ProjectStatus";
12593
+ } & Pick<ProjectStatus, "description" | "color" | "updatedAt" | "name" | "position" | "archivedAt" | "createdAt" | "type" | "id" | "indefinite">;
12035
12594
  export declare type ProjectFragment = {
12036
12595
  __typename: "Project";
12037
12596
  } & Pick<Project, "trashed" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "state"> & {
@@ -12047,6 +12606,9 @@ export declare type ProjectFragment = {
12047
12606
  convertedFromIssue?: Maybe<{
12048
12607
  __typename?: "Issue";
12049
12608
  } & Pick<Issue, "id">>;
12609
+ status: {
12610
+ __typename?: "ProjectStatus";
12611
+ } & ProjectStatusFragment;
12050
12612
  creator?: Maybe<{
12051
12613
  __typename?: "User";
12052
12614
  } & Pick<User, "id">>;
@@ -12136,6 +12698,9 @@ export declare type IssueHistoryFragment = {
12136
12698
  removedLabels?: Maybe<Array<{
12137
12699
  __typename?: "IssueLabel";
12138
12700
  } & IssueLabelFragment>>;
12701
+ triageResponsibilityNotifiedUsers?: Maybe<Array<{
12702
+ __typename?: "User";
12703
+ } & UserFragment>>;
12139
12704
  };
12140
12705
  export declare type IssueRelationFragment = {
12141
12706
  __typename: "IssueRelation";
@@ -12147,9 +12712,41 @@ export declare type IssueRelationFragment = {
12147
12712
  __typename?: "Issue";
12148
12713
  } & Pick<Issue, "id">;
12149
12714
  };
12715
+ export declare type ProjectRelationFragment = {
12716
+ __typename: "ProjectRelation";
12717
+ } & Pick<ProjectRelation, "updatedAt" | "type" | "archivedAt" | "createdAt" | "anchorType" | "relatedAnchorType" | "id"> & {
12718
+ projectMilestone?: Maybe<{
12719
+ __typename?: "ProjectMilestone";
12720
+ } & Pick<ProjectMilestone, "id">>;
12721
+ relatedProjectMilestone?: Maybe<{
12722
+ __typename?: "ProjectMilestone";
12723
+ } & Pick<ProjectMilestone, "id">>;
12724
+ project: {
12725
+ __typename?: "Project";
12726
+ } & Pick<Project, "id">;
12727
+ relatedProject: {
12728
+ __typename?: "Project";
12729
+ } & Pick<Project, "id">;
12730
+ };
12731
+ export declare type ReminderFragment = {
12732
+ __typename: "Reminder";
12733
+ } & Pick<Reminder, "updatedAt" | "comment" | "archivedAt" | "createdAt" | "remindAt" | "id"> & {
12734
+ documentId?: Maybe<{
12735
+ __typename?: "Document";
12736
+ } & Pick<Document, "id">>;
12737
+ issueId?: Maybe<{
12738
+ __typename?: "Issue";
12739
+ } & Pick<Issue, "id">>;
12740
+ projectId?: Maybe<{
12741
+ __typename?: "Project";
12742
+ } & Pick<Project, "id">>;
12743
+ user: {
12744
+ __typename?: "User";
12745
+ } & Pick<User, "id">;
12746
+ };
12150
12747
  export declare type RoadmapFragment = {
12151
12748
  __typename: "Roadmap";
12152
- } & Pick<Roadmap, "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
12749
+ } & Pick<Roadmap, "url" | "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
12153
12750
  creator: {
12154
12751
  __typename?: "User";
12155
12752
  } & Pick<User, "id">;
@@ -12214,7 +12811,7 @@ export declare type TriageResponsibilityFragment = {
12214
12811
  };
12215
12812
  export declare type TemplateFragment = {
12216
12813
  __typename: "Template";
12217
- } & Pick<Template, "templateData" | "description" | "type" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
12814
+ } & Pick<Template, "templateData" | "description" | "type" | "updatedAt" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
12218
12815
  team?: Maybe<{
12219
12816
  __typename?: "Team";
12220
12817
  } & Pick<Team, "id">>;
@@ -12250,7 +12847,7 @@ export declare type GitAutomationStateFragment = {
12250
12847
  };
12251
12848
  export declare type ProjectUpdateFragment = {
12252
12849
  __typename: "ProjectUpdate";
12253
- } & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "health" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
12850
+ } & Pick<ProjectUpdate, "reactionData" | "url" | "diffMarkdown" | "diff" | "health" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
12254
12851
  project: {
12255
12852
  __typename?: "Project";
12256
12853
  } & Pick<Project, "id">;
@@ -12348,6 +12945,13 @@ export declare type ProjectLinkFragment = {
12348
12945
  __typename?: "User";
12349
12946
  } & Pick<User, "id">;
12350
12947
  };
12948
+ export declare type EntityExternalLinkFragment = {
12949
+ __typename: "EntityExternalLink";
12950
+ } & Pick<EntityExternalLink, "updatedAt" | "url" | "label" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
12951
+ creator: {
12952
+ __typename?: "User";
12953
+ } & Pick<User, "id">;
12954
+ };
12351
12955
  export declare type IssueImportFragment = {
12352
12956
  __typename: "IssueImport";
12353
12957
  } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
@@ -12414,7 +13018,7 @@ export declare type IssueNotificationFragment = {
12414
13018
  };
12415
13019
  export declare type IssueFragment = {
12416
13020
  __typename: "Issue";
12417
- } & Pick<Issue, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
13021
+ } & Pick<Issue, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
12418
13022
  botActor?: Maybe<{
12419
13023
  __typename?: "ActorBot";
12420
13024
  } & ActorBotFragment>;
@@ -12480,6 +13084,9 @@ export declare type OauthClientApprovalNotificationFragment = {
12480
13084
  export declare type OrganizationFragment = {
12481
13085
  __typename: "Organization";
12482
13086
  } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersDay" | "releaseChannel" | "projectUpdatesReminderFrequency" | "projectUpdateRemindersHour" | "updatedAt" | "fiscalYearStartMonth" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "allowMembersToInvite" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled" | "slaDayCount"> & {
13087
+ projectStatuses: Array<{
13088
+ __typename?: "ProjectStatus";
13089
+ } & ProjectStatusFragment>;
12483
13090
  subscription?: Maybe<{
12484
13091
  __typename?: "PaidSubscription";
12485
13092
  } & PaidSubscriptionFragment>;
@@ -12489,7 +13096,7 @@ export declare type AuthOrganizationFragment = {
12489
13096
  } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
12490
13097
  export declare type TeamFragment = {
12491
13098
  __typename: "Team";
12492
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
13099
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "scimManaged" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
12493
13100
  integrationsSettings?: Maybe<{
12494
13101
  __typename?: "IntegrationsSettings";
12495
13102
  } & Pick<IntegrationsSettings, "id">>;
@@ -12541,7 +13148,7 @@ export declare type AuthOauthClientWithMembershipsFragment = {
12541
13148
  } & Pick<AuthOauthClientWithMemberships, "name" | "imageUrl" | "appId" | "clientId" | "scope" | "webhookUrl" | "totalMembers">;
12542
13149
  export declare type AuthenticationSessionResponseFragment = {
12543
13150
  __typename: "AuthenticationSessionResponse";
12544
- } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
13151
+ } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
12545
13152
  export declare type ArchiveResponseFragment = {
12546
13153
  __typename: "ArchiveResponse";
12547
13154
  } & Pick<ArchiveResponse, "archive" | "totalCount" | "databaseVersion" | "includesDependencies">;
@@ -12838,7 +13445,7 @@ export declare type OauthClientFragment = {
12838
13445
  };
12839
13446
  export declare type SlackChannelNameMappingFragment = {
12840
13447
  __typename: "SlackChannelNameMapping";
12841
- } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateTemplateId" | "autoCreateOnBotMention" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji" | "botAdded"> & {
13448
+ } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateTemplateId" | "autoCreateOnBotMention" | "postCancellationUpdates" | "botAdded" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji"> & {
12842
13449
  teams: Array<{
12843
13450
  __typename?: "SlackAsksTeamSettings";
12844
13451
  } & SlackAsksTeamSettingsFragment>;
@@ -12984,7 +13591,7 @@ export declare type SlackAsksTeamSettingsFragment = {
12984
13591
  } & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
12985
13592
  export declare type AuthenticationSessionFragment = {
12986
13593
  __typename: "AuthenticationSession";
12987
- } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
13594
+ } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
12988
13595
  export declare type FavoriteFragment = {
12989
13596
  __typename: "Favorite";
12990
13597
  } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "projectTab" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
@@ -13027,7 +13634,11 @@ export declare type FavoriteFragment = {
13027
13634
  };
13028
13635
  export declare type ViewPreferencesFragment = {
13029
13636
  __typename: "ViewPreferences";
13030
- } & Pick<ViewPreferences, "updatedAt" | "archivedAt" | "createdAt" | "id" | "type" | "viewType">;
13637
+ } & Pick<ViewPreferences, "updatedAt" | "archivedAt" | "createdAt" | "id" | "type" | "viewType"> & {
13638
+ preferences: {
13639
+ __typename?: "ViewPreferencesValues";
13640
+ } & ViewPreferencesValuesFragment;
13641
+ };
13031
13642
  export declare type AuditEntryFragment = {
13032
13643
  __typename: "AuditEntry";
13033
13644
  } & Pick<AuditEntry, "requestInformation" | "metadata" | "countryCode" | "ip" | "actorId" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "type"> & {
@@ -13127,6 +13738,16 @@ export declare type AuthOauthClientWithTokensFragment = {
13127
13738
  export declare type AuthOrganizationDomainFragment = {
13128
13739
  __typename: "AuthOrganizationDomain";
13129
13740
  } & Pick<AuthOrganizationDomain, "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
13741
+ export declare type AuthOrganizationExistsPayloadFragment = {
13742
+ __typename: "AuthOrganizationExistsPayload";
13743
+ } & Pick<AuthOrganizationExistsPayload, "success" | "exists">;
13744
+ export declare type AuthOrganizationPayloadFragment = {
13745
+ __typename: "AuthOrganizationPayload";
13746
+ } & Pick<AuthOrganizationPayload, "success"> & {
13747
+ authOrganization: {
13748
+ __typename?: "AuthOrganization";
13749
+ } & AuthOrganizationFragment;
13750
+ };
13130
13751
  export declare type AuthResolverResponseFragment = {
13131
13752
  __typename: "AuthResolverResponse";
13132
13753
  } & Pick<AuthResolverResponse, "token" | "email" | "lastUsedOrganizationId" | "allowDomainAccess" | "id"> & {
@@ -13229,6 +13850,23 @@ export declare type CyclePayloadFragment = {
13229
13850
  __typename?: "Cycle";
13230
13851
  } & Pick<Cycle, "id">>;
13231
13852
  };
13853
+ export declare type DiaryEntryConnectionFragment = {
13854
+ __typename: "DiaryEntryConnection";
13855
+ } & {
13856
+ nodes: Array<{
13857
+ __typename?: "DiaryEntry";
13858
+ } & DiaryEntryFragment>;
13859
+ pageInfo: {
13860
+ __typename?: "PageInfo";
13861
+ } & PageInfoFragment;
13862
+ };
13863
+ export declare type DiaryEntryPayloadFragment = {
13864
+ __typename: "DiaryEntryPayload";
13865
+ } & Pick<DiaryEntryPayload, "lastSyncId" | "success"> & {
13866
+ diaryEntry: {
13867
+ __typename?: "DiaryEntry";
13868
+ } & Pick<DiaryEntry, "id">;
13869
+ };
13232
13870
  export declare type DocumentConnectionFragment = {
13233
13871
  __typename: "DocumentConnection";
13234
13872
  } & {
@@ -13271,13 +13909,13 @@ export declare type DocumentSearchPayloadFragment = {
13271
13909
  };
13272
13910
  export declare type DocumentSearchResultFragment = {
13273
13911
  __typename: "DocumentSearchResult";
13274
- } & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13912
+ } & Pick<DocumentSearchResult, "metadata" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13275
13913
  lastAppliedTemplate?: Maybe<{
13276
13914
  __typename?: "Template";
13277
13915
  } & Pick<Template, "id">>;
13278
- project: {
13916
+ project?: Maybe<{
13279
13917
  __typename?: "Project";
13280
- } & Pick<Project, "id">;
13918
+ } & Pick<Project, "id">>;
13281
13919
  creator: {
13282
13920
  __typename?: "User";
13283
13921
  } & Pick<User, "id">;
@@ -13325,6 +13963,23 @@ export declare type EmojiPayloadFragment = {
13325
13963
  __typename?: "Emoji";
13326
13964
  } & Pick<Emoji, "id">;
13327
13965
  };
13966
+ export declare type EntityExternalLinkConnectionFragment = {
13967
+ __typename: "EntityExternalLinkConnection";
13968
+ } & {
13969
+ nodes: Array<{
13970
+ __typename?: "EntityExternalLink";
13971
+ } & EntityExternalLinkFragment>;
13972
+ pageInfo: {
13973
+ __typename?: "PageInfo";
13974
+ } & PageInfoFragment;
13975
+ };
13976
+ export declare type EntityExternalLinkPayloadFragment = {
13977
+ __typename: "EntityExternalLinkPayload";
13978
+ } & Pick<EntityExternalLinkPayload, "lastSyncId" | "success"> & {
13979
+ entityExternalLink: {
13980
+ __typename?: "EntityExternalLink";
13981
+ } & Pick<EntityExternalLink, "id">;
13982
+ };
13328
13983
  export declare type ExternalUserConnectionFragment = {
13329
13984
  __typename: "ExternalUserConnection";
13330
13985
  } & {
@@ -13552,7 +14207,7 @@ export declare type IssueSearchPayloadFragment = {
13552
14207
  };
13553
14208
  export declare type IssueSearchResultFragment = {
13554
14209
  __typename: "IssueSearchResult";
13555
- } & Pick<IssueSearchResult, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "metadata" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
14210
+ } & Pick<IssueSearchResult, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "metadata" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
13556
14211
  botActor?: Maybe<{
13557
14212
  __typename?: "ActorBot";
13558
14213
  } & ActorBotFragment>;
@@ -13636,6 +14291,9 @@ declare type Node_Cycle_Fragment = {
13636
14291
  declare type Node_CycleNotificationSubscription_Fragment = {
13637
14292
  __typename: "CycleNotificationSubscription";
13638
14293
  } & Pick<CycleNotificationSubscription, "id">;
14294
+ declare type Node_DiaryEntry_Fragment = {
14295
+ __typename: "DiaryEntry";
14296
+ } & Pick<DiaryEntry, "id">;
13639
14297
  declare type Node_Document_Fragment = {
13640
14298
  __typename: "Document";
13641
14299
  } & Pick<Document, "id">;
@@ -13645,6 +14303,9 @@ declare type Node_DocumentContent_Fragment = {
13645
14303
  declare type Node_DocumentContentHistory_Fragment = {
13646
14304
  __typename: "DocumentContentHistory";
13647
14305
  } & Pick<DocumentContentHistory, "id">;
14306
+ declare type Node_DocumentNotification_Fragment = {
14307
+ __typename: "DocumentNotification";
14308
+ } & Pick<DocumentNotification, "id">;
13648
14309
  declare type Node_DocumentSearchResult_Fragment = {
13649
14310
  __typename: "DocumentSearchResult";
13650
14311
  } & Pick<DocumentSearchResult, "id">;
@@ -13654,6 +14315,9 @@ declare type Node_EmailIntakeAddress_Fragment = {
13654
14315
  declare type Node_Emoji_Fragment = {
13655
14316
  __typename: "Emoji";
13656
14317
  } & Pick<Emoji, "id">;
14318
+ declare type Node_EntityExternalLink_Fragment = {
14319
+ __typename: "EntityExternalLink";
14320
+ } & Pick<EntityExternalLink, "id">;
13657
14321
  declare type Node_ExternalUser_Fragment = {
13658
14322
  __typename: "ExternalUser";
13659
14323
  } & Pick<ExternalUser, "id">;
@@ -13747,6 +14411,9 @@ declare type Node_ProjectNotification_Fragment = {
13747
14411
  declare type Node_ProjectNotificationSubscription_Fragment = {
13748
14412
  __typename: "ProjectNotificationSubscription";
13749
14413
  } & Pick<ProjectNotificationSubscription, "id">;
14414
+ declare type Node_ProjectRelation_Fragment = {
14415
+ __typename: "ProjectRelation";
14416
+ } & Pick<ProjectRelation, "id">;
13750
14417
  declare type Node_ProjectSearchResult_Fragment = {
13751
14418
  __typename: "ProjectSearchResult";
13752
14419
  } & Pick<ProjectSearchResult, "id">;
@@ -13765,6 +14432,9 @@ declare type Node_PushSubscription_Fragment = {
13765
14432
  declare type Node_Reaction_Fragment = {
13766
14433
  __typename: "Reaction";
13767
14434
  } & Pick<Reaction, "id">;
14435
+ declare type Node_Reminder_Fragment = {
14436
+ __typename: "Reminder";
14437
+ } & Pick<Reminder, "id">;
13768
14438
  declare type Node_Roadmap_Fragment = {
13769
14439
  __typename: "Roadmap";
13770
14440
  } & Pick<Roadmap, "id">;
@@ -13813,11 +14483,13 @@ declare type Node_WorkflowDefinition_Fragment = {
13813
14483
  declare type Node_WorkflowState_Fragment = {
13814
14484
  __typename: "WorkflowState";
13815
14485
  } & Pick<WorkflowState, "id">;
13816
- export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeToProject_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_ProjectStatus_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_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
14486
+ 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_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeToProject_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_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
13817
14487
  export declare type NotificationBatchActionPayloadFragment = {
13818
14488
  __typename: "NotificationBatchActionPayload";
13819
14489
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
13820
14490
  notifications: Array<({
14491
+ __typename?: "DocumentNotification";
14492
+ } & Notification_DocumentNotification_Fragment) | ({
13821
14493
  __typename?: "IssueNotification";
13822
14494
  } & Notification_IssueNotification_Fragment) | ({
13823
14495
  __typename?: "OauthClientApprovalNotification";
@@ -13829,6 +14501,8 @@ export declare type NotificationConnectionFragment = {
13829
14501
  __typename: "NotificationConnection";
13830
14502
  } & {
13831
14503
  nodes: Array<({
14504
+ __typename?: "DocumentNotification";
14505
+ } & Notification_DocumentNotification_Fragment) | ({
13832
14506
  __typename?: "IssueNotification";
13833
14507
  } & Notification_IssueNotification_Fragment) | ({
13834
14508
  __typename?: "OauthClientApprovalNotification";
@@ -13843,6 +14517,8 @@ export declare type NotificationPayloadFragment = {
13843
14517
  __typename: "NotificationPayload";
13844
14518
  } & Pick<NotificationPayload, "lastSyncId" | "success"> & {
13845
14519
  notification: ({
14520
+ __typename?: "DocumentNotification";
14521
+ } & Notification_DocumentNotification_Fragment) | ({
13846
14522
  __typename?: "IssueNotification";
13847
14523
  } & Notification_IssueNotification_Fragment) | ({
13848
14524
  __typename?: "OauthClientApprovalNotification";
@@ -13899,7 +14575,7 @@ export declare type OauthClientConnectionFragment = {
13899
14575
  };
13900
14576
  export declare type OauthTokenFragment = {
13901
14577
  __typename: "OauthToken";
13902
- } & Pick<OauthToken, "userId" | "clientId" | "createdAt" | "id" | "revokedAt"> & {
14578
+ } & Pick<OauthToken, "userId" | "scope" | "clientId" | "createdAt" | "id" | "revokedAt"> & {
13903
14579
  user: {
13904
14580
  __typename?: "AuthUser";
13905
14581
  } & AuthUserFragment;
@@ -14008,6 +14684,23 @@ export declare type ProjectPayloadFragment = {
14008
14684
  __typename?: "Project";
14009
14685
  } & Pick<Project, "id">>;
14010
14686
  };
14687
+ export declare type ProjectRelationConnectionFragment = {
14688
+ __typename: "ProjectRelationConnection";
14689
+ } & {
14690
+ nodes: Array<{
14691
+ __typename?: "ProjectRelation";
14692
+ } & ProjectRelationFragment>;
14693
+ pageInfo: {
14694
+ __typename?: "PageInfo";
14695
+ } & PageInfoFragment;
14696
+ };
14697
+ export declare type ProjectRelationPayloadFragment = {
14698
+ __typename: "ProjectRelationPayload";
14699
+ } & Pick<ProjectRelationPayload, "lastSyncId" | "success"> & {
14700
+ projectRelation: {
14701
+ __typename?: "ProjectRelation";
14702
+ } & Pick<ProjectRelation, "id">;
14703
+ };
14011
14704
  export declare type ProjectSearchPayloadFragment = {
14012
14705
  __typename: "ProjectSearchPayload";
14013
14706
  } & Pick<ProjectSearchPayload, "totalCount"> & {
@@ -14036,6 +14729,9 @@ export declare type ProjectSearchResultFragment = {
14036
14729
  convertedFromIssue?: Maybe<{
14037
14730
  __typename?: "Issue";
14038
14731
  } & Pick<Issue, "id">>;
14732
+ status: {
14733
+ __typename?: "ProjectStatus";
14734
+ } & ProjectStatusFragment;
14039
14735
  creator?: Maybe<{
14040
14736
  __typename?: "User";
14041
14737
  } & Pick<User, "id">>;
@@ -14053,6 +14749,16 @@ export declare type ProjectSearchResultConnectionFragment = {
14053
14749
  __typename?: "PageInfo";
14054
14750
  } & PageInfoFragment;
14055
14751
  };
14752
+ export declare type ProjectStatusConnectionFragment = {
14753
+ __typename: "ProjectStatusConnection";
14754
+ } & {
14755
+ nodes: Array<{
14756
+ __typename?: "ProjectStatus";
14757
+ } & ProjectStatusFragment>;
14758
+ pageInfo: {
14759
+ __typename?: "PageInfo";
14760
+ } & PageInfoFragment;
14761
+ };
14056
14762
  export declare type ProjectUpdateConnectionFragment = {
14057
14763
  __typename: "ProjectUpdateConnection";
14058
14764
  } & {
@@ -14334,6 +15040,9 @@ export declare type ViewPreferencesPayloadFragment = {
14334
15040
  __typename?: "ViewPreferences";
14335
15041
  } & ViewPreferencesFragment;
14336
15042
  };
15043
+ export declare type ViewPreferencesValuesFragment = {
15044
+ __typename: "ViewPreferencesValues";
15045
+ } & Pick<ViewPreferencesValues, "issueGrouping" | "viewOrdering" | "showCompletedIssues">;
14337
15046
  export declare type WebhookConnectionFragment = {
14338
15047
  __typename: "WebhookConnection";
14339
15048
  } & {
@@ -14870,6 +15579,84 @@ export declare type CustomView_IssuesQuery = {
14870
15579
  } & IssueConnectionFragment;
14871
15580
  };
14872
15581
  };
15582
+ export declare type CustomView_OrganizationViewPreferencesQueryVariables = Exact<{
15583
+ id: Scalars["String"];
15584
+ }>;
15585
+ export declare type CustomView_OrganizationViewPreferencesQuery = {
15586
+ __typename?: "Query";
15587
+ } & {
15588
+ customView: {
15589
+ __typename?: "CustomView";
15590
+ } & {
15591
+ organizationViewPreferences?: Maybe<{
15592
+ __typename?: "ViewPreferences";
15593
+ } & ViewPreferencesFragment>;
15594
+ };
15595
+ };
15596
+ export declare type CustomView_OrganizationViewPreferences_PreferencesQueryVariables = Exact<{
15597
+ id: Scalars["String"];
15598
+ }>;
15599
+ export declare type CustomView_OrganizationViewPreferences_PreferencesQuery = {
15600
+ __typename?: "Query";
15601
+ } & {
15602
+ customView: {
15603
+ __typename?: "CustomView";
15604
+ } & {
15605
+ organizationViewPreferences?: Maybe<{
15606
+ __typename?: "ViewPreferences";
15607
+ } & {
15608
+ preferences: {
15609
+ __typename?: "ViewPreferencesValues";
15610
+ } & ViewPreferencesValuesFragment;
15611
+ }>;
15612
+ };
15613
+ };
15614
+ export declare type CustomView_UserViewPreferencesQueryVariables = Exact<{
15615
+ id: Scalars["String"];
15616
+ }>;
15617
+ export declare type CustomView_UserViewPreferencesQuery = {
15618
+ __typename?: "Query";
15619
+ } & {
15620
+ customView: {
15621
+ __typename?: "CustomView";
15622
+ } & {
15623
+ userViewPreferences?: Maybe<{
15624
+ __typename?: "ViewPreferences";
15625
+ } & ViewPreferencesFragment>;
15626
+ };
15627
+ };
15628
+ export declare type CustomView_UserViewPreferences_PreferencesQueryVariables = Exact<{
15629
+ id: Scalars["String"];
15630
+ }>;
15631
+ export declare type CustomView_UserViewPreferences_PreferencesQuery = {
15632
+ __typename?: "Query";
15633
+ } & {
15634
+ customView: {
15635
+ __typename?: "CustomView";
15636
+ } & {
15637
+ userViewPreferences?: Maybe<{
15638
+ __typename?: "ViewPreferences";
15639
+ } & {
15640
+ preferences: {
15641
+ __typename?: "ViewPreferencesValues";
15642
+ } & ViewPreferencesValuesFragment;
15643
+ }>;
15644
+ };
15645
+ };
15646
+ export declare type CustomView_ViewPreferencesValuesQueryVariables = Exact<{
15647
+ id: Scalars["String"];
15648
+ }>;
15649
+ export declare type CustomView_ViewPreferencesValuesQuery = {
15650
+ __typename?: "Query";
15651
+ } & {
15652
+ customView: {
15653
+ __typename?: "CustomView";
15654
+ } & {
15655
+ viewPreferencesValues?: Maybe<{
15656
+ __typename?: "ViewPreferencesValues";
15657
+ } & ViewPreferencesValuesFragment>;
15658
+ };
15659
+ };
14873
15660
  export declare type CustomViewHasSubscribersQueryVariables = Exact<{
14874
15661
  id: Scalars["String"];
14875
15662
  }>;
@@ -14963,6 +15750,16 @@ export declare type CyclesQuery = {
14963
15750
  __typename?: "CycleConnection";
14964
15751
  } & CycleConnectionFragment;
14965
15752
  };
15753
+ export declare type DiaryEntryQueryVariables = Exact<{
15754
+ id: Scalars["String"];
15755
+ }>;
15756
+ export declare type DiaryEntryQuery = {
15757
+ __typename?: "Query";
15758
+ } & {
15759
+ diaryEntry: {
15760
+ __typename?: "DiaryEntry";
15761
+ } & DiaryEntryFragment;
15762
+ };
14966
15763
  export declare type DocumentQueryVariables = Exact<{
14967
15764
  id: Scalars["String"];
14968
15765
  }>;
@@ -15024,6 +15821,16 @@ export declare type EmojisQuery = {
15024
15821
  __typename?: "EmojiConnection";
15025
15822
  } & EmojiConnectionFragment;
15026
15823
  };
15824
+ export declare type EntityExternalLinkQueryVariables = Exact<{
15825
+ id: Scalars["String"];
15826
+ }>;
15827
+ export declare type EntityExternalLinkQuery = {
15828
+ __typename?: "Query";
15829
+ } & {
15830
+ entityExternalLink: {
15831
+ __typename?: "EntityExternalLink";
15832
+ } & EntityExternalLinkFragment;
15833
+ };
15027
15834
  export declare type ExternalUserQueryVariables = Exact<{
15028
15835
  id: Scalars["String"];
15029
15836
  }>;
@@ -15737,6 +16544,8 @@ export declare type NotificationQuery = {
15737
16544
  __typename?: "Query";
15738
16545
  } & {
15739
16546
  notification: ({
16547
+ __typename?: "DocumentNotification";
16548
+ } & Notification_DocumentNotification_Fragment) | ({
15740
16549
  __typename?: "IssueNotification";
15741
16550
  } & Notification_IssueNotification_Fragment) | ({
15742
16551
  __typename?: "OauthClientApprovalNotification";
@@ -16086,6 +16895,20 @@ export declare type Project_ProjectUpdatesQuery = {
16086
16895
  } & ProjectUpdateConnectionFragment;
16087
16896
  };
16088
16897
  };
16898
+ export declare type Project_StatusQueryVariables = Exact<{
16899
+ id: Scalars["String"];
16900
+ }>;
16901
+ export declare type Project_StatusQuery = {
16902
+ __typename?: "Query";
16903
+ } & {
16904
+ project: {
16905
+ __typename?: "Project";
16906
+ } & {
16907
+ status: {
16908
+ __typename?: "ProjectStatus";
16909
+ } & ProjectStatusFragment;
16910
+ };
16911
+ };
16089
16912
  export declare type Project_TeamsQueryVariables = Exact<{
16090
16913
  id: Scalars["String"];
16091
16914
  after?: Maybe<Scalars["String"]>;
@@ -16189,6 +17012,31 @@ export declare type ProjectMilestonesQuery = {
16189
17012
  __typename?: "ProjectMilestoneConnection";
16190
17013
  } & ProjectMilestoneConnectionFragment;
16191
17014
  };
17015
+ export declare type ProjectRelationQueryVariables = Exact<{
17016
+ id: Scalars["String"];
17017
+ }>;
17018
+ export declare type ProjectRelationQuery = {
17019
+ __typename?: "Query";
17020
+ } & {
17021
+ projectRelation: {
17022
+ __typename?: "ProjectRelation";
17023
+ } & ProjectRelationFragment;
17024
+ };
17025
+ export declare type ProjectRelationsQueryVariables = Exact<{
17026
+ after?: Maybe<Scalars["String"]>;
17027
+ before?: Maybe<Scalars["String"]>;
17028
+ first?: Maybe<Scalars["Int"]>;
17029
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17030
+ last?: Maybe<Scalars["Int"]>;
17031
+ orderBy?: Maybe<PaginationOrderBy>;
17032
+ }>;
17033
+ export declare type ProjectRelationsQuery = {
17034
+ __typename?: "Query";
17035
+ } & {
17036
+ projectRelations: {
17037
+ __typename?: "ProjectRelationConnection";
17038
+ } & ProjectRelationConnectionFragment;
17039
+ };
16192
17040
  export declare type ProjectUpdateQueryVariables = Exact<{
16193
17041
  id: Scalars["String"];
16194
17042
  }>;
@@ -16199,6 +17047,27 @@ export declare type ProjectUpdateQuery = {
16199
17047
  __typename?: "ProjectUpdate";
16200
17048
  } & ProjectUpdateFragment;
16201
17049
  };
17050
+ export declare type ProjectUpdate_CommentsQueryVariables = Exact<{
17051
+ id: Scalars["String"];
17052
+ after?: Maybe<Scalars["String"]>;
17053
+ before?: Maybe<Scalars["String"]>;
17054
+ filter?: Maybe<CommentFilter>;
17055
+ first?: Maybe<Scalars["Int"]>;
17056
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17057
+ last?: Maybe<Scalars["Int"]>;
17058
+ orderBy?: Maybe<PaginationOrderBy>;
17059
+ }>;
17060
+ export declare type ProjectUpdate_CommentsQuery = {
17061
+ __typename?: "Query";
17062
+ } & {
17063
+ projectUpdate: {
17064
+ __typename?: "ProjectUpdate";
17065
+ } & {
17066
+ comments: {
17067
+ __typename?: "CommentConnection";
17068
+ } & CommentConnectionFragment;
17069
+ };
17070
+ };
16202
17071
  export declare type ProjectUpdateInteractionQueryVariables = Exact<{
16203
17072
  id: Scalars["String"];
16204
17073
  }>;
@@ -16775,6 +17644,70 @@ export declare type TemplatesForIntegrationQuery = {
16775
17644
  __typename?: "Template";
16776
17645
  } & TemplateFragment>;
16777
17646
  };
17647
+ export declare type TimeScheduleQueryVariables = Exact<{
17648
+ id: Scalars["String"];
17649
+ }>;
17650
+ export declare type TimeScheduleQuery = {
17651
+ __typename?: "Query";
17652
+ } & {
17653
+ timeSchedule: {
17654
+ __typename?: "TimeSchedule";
17655
+ } & TimeScheduleFragment;
17656
+ };
17657
+ export declare type TimeSchedulesQueryVariables = Exact<{
17658
+ after?: Maybe<Scalars["String"]>;
17659
+ before?: Maybe<Scalars["String"]>;
17660
+ first?: Maybe<Scalars["Int"]>;
17661
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17662
+ last?: Maybe<Scalars["Int"]>;
17663
+ orderBy?: Maybe<PaginationOrderBy>;
17664
+ }>;
17665
+ export declare type TimeSchedulesQuery = {
17666
+ __typename?: "Query";
17667
+ } & {
17668
+ timeSchedules: {
17669
+ __typename?: "TimeScheduleConnection";
17670
+ } & TimeScheduleConnectionFragment;
17671
+ };
17672
+ export declare type TriageResponsibilitiesQueryVariables = Exact<{
17673
+ after?: Maybe<Scalars["String"]>;
17674
+ before?: Maybe<Scalars["String"]>;
17675
+ first?: Maybe<Scalars["Int"]>;
17676
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17677
+ last?: Maybe<Scalars["Int"]>;
17678
+ orderBy?: Maybe<PaginationOrderBy>;
17679
+ }>;
17680
+ export declare type TriageResponsibilitiesQuery = {
17681
+ __typename?: "Query";
17682
+ } & {
17683
+ triageResponsibilities: {
17684
+ __typename?: "TriageResponsibilityConnection";
17685
+ } & TriageResponsibilityConnectionFragment;
17686
+ };
17687
+ export declare type TriageResponsibilityQueryVariables = Exact<{
17688
+ id: Scalars["String"];
17689
+ }>;
17690
+ export declare type TriageResponsibilityQuery = {
17691
+ __typename?: "Query";
17692
+ } & {
17693
+ triageResponsibility: {
17694
+ __typename?: "TriageResponsibility";
17695
+ } & TriageResponsibilityFragment;
17696
+ };
17697
+ export declare type TriageResponsibility_ManualSelectionQueryVariables = Exact<{
17698
+ id: Scalars["String"];
17699
+ }>;
17700
+ export declare type TriageResponsibility_ManualSelectionQuery = {
17701
+ __typename?: "Query";
17702
+ } & {
17703
+ triageResponsibility: {
17704
+ __typename?: "TriageResponsibility";
17705
+ } & {
17706
+ manualSelection?: Maybe<{
17707
+ __typename?: "TriageResponsibilityManualSelection";
17708
+ } & TriageResponsibilityManualSelectionFragment>;
17709
+ };
17710
+ };
16778
17711
  export declare type UserQueryVariables = Exact<{
16779
17712
  id: Scalars["String"];
16780
17713
  }>;
@@ -17231,6 +18164,7 @@ export declare type AttachmentLinkSlackMutationVariables = Exact<{
17231
18164
  id?: Maybe<Scalars["String"]>;
17232
18165
  issueId: Scalars["String"];
17233
18166
  latest?: Maybe<Scalars["String"]>;
18167
+ syncToCommentThread?: Maybe<Scalars["Boolean"]>;
17234
18168
  title?: Maybe<Scalars["String"]>;
17235
18169
  ts?: Maybe<Scalars["String"]>;
17236
18170
  url: Scalars["String"];
@@ -17449,6 +18383,37 @@ export declare type UpdateCycleMutation = {
17449
18383
  __typename?: "CyclePayload";
17450
18384
  } & CyclePayloadFragment;
17451
18385
  };
18386
+ export declare type CreateDiaryEntryMutationVariables = Exact<{
18387
+ input: DiaryEntryCreateInput;
18388
+ }>;
18389
+ export declare type CreateDiaryEntryMutation = {
18390
+ __typename?: "Mutation";
18391
+ } & {
18392
+ diaryEntryCreate: {
18393
+ __typename?: "DiaryEntryPayload";
18394
+ } & DiaryEntryPayloadFragment;
18395
+ };
18396
+ export declare type DeleteDiaryEntryMutationVariables = Exact<{
18397
+ id: Scalars["String"];
18398
+ }>;
18399
+ export declare type DeleteDiaryEntryMutation = {
18400
+ __typename?: "Mutation";
18401
+ } & {
18402
+ diaryEntryDelete: {
18403
+ __typename?: "DeletePayload";
18404
+ } & DeletePayloadFragment;
18405
+ };
18406
+ export declare type UpdateDiaryEntryMutationVariables = Exact<{
18407
+ id: Scalars["String"];
18408
+ input: DiaryEntryUpdateInput;
18409
+ }>;
18410
+ export declare type UpdateDiaryEntryMutation = {
18411
+ __typename?: "Mutation";
18412
+ } & {
18413
+ diaryEntryUpdate: {
18414
+ __typename?: "DiaryEntryPayload";
18415
+ } & DiaryEntryPayloadFragment;
18416
+ };
17452
18417
  export declare type CreateDocumentMutationVariables = Exact<{
17453
18418
  input: DocumentCreateInput;
17454
18419
  }>;
@@ -17469,6 +18434,17 @@ export declare type DeleteDocumentMutation = {
17469
18434
  __typename?: "DeletePayload";
17470
18435
  } & DeletePayloadFragment;
17471
18436
  };
18437
+ export declare type DocumentReminderMutationVariables = Exact<{
18438
+ id: Scalars["String"];
18439
+ reminderAt: Scalars["DateTime"];
18440
+ }>;
18441
+ export declare type DocumentReminderMutation = {
18442
+ __typename?: "Mutation";
18443
+ } & {
18444
+ documentReminder: {
18445
+ __typename?: "DocumentPayload";
18446
+ } & DocumentPayloadFragment;
18447
+ };
17472
18448
  export declare type UpdateDocumentMutationVariables = Exact<{
17473
18449
  id: Scalars["String"];
17474
18450
  input: DocumentUpdateInput;
@@ -17571,6 +18547,37 @@ export declare type DeleteEmojiMutation = {
17571
18547
  __typename?: "DeletePayload";
17572
18548
  } & DeletePayloadFragment;
17573
18549
  };
18550
+ export declare type CreateEntityExternalLinkMutationVariables = Exact<{
18551
+ input: EntityExternalLinkCreateInput;
18552
+ }>;
18553
+ export declare type CreateEntityExternalLinkMutation = {
18554
+ __typename?: "Mutation";
18555
+ } & {
18556
+ entityExternalLinkCreate: {
18557
+ __typename?: "EntityExternalLinkPayload";
18558
+ } & EntityExternalLinkPayloadFragment;
18559
+ };
18560
+ export declare type DeleteEntityExternalLinkMutationVariables = Exact<{
18561
+ id: Scalars["String"];
18562
+ }>;
18563
+ export declare type DeleteEntityExternalLinkMutation = {
18564
+ __typename?: "Mutation";
18565
+ } & {
18566
+ entityExternalLinkDelete: {
18567
+ __typename?: "DeletePayload";
18568
+ } & DeletePayloadFragment;
18569
+ };
18570
+ export declare type UpdateEntityExternalLinkMutationVariables = Exact<{
18571
+ id: Scalars["String"];
18572
+ input: EntityExternalLinkUpdateInput;
18573
+ }>;
18574
+ export declare type UpdateEntityExternalLinkMutation = {
18575
+ __typename?: "Mutation";
18576
+ } & {
18577
+ entityExternalLinkUpdate: {
18578
+ __typename?: "EntityExternalLinkPayload";
18579
+ } & EntityExternalLinkPayloadFragment;
18580
+ };
17574
18581
  export declare type CreateFavoriteMutationVariables = Exact<{
17575
18582
  input: FavoriteCreateInput;
17576
18583
  }>;
@@ -18245,6 +19252,7 @@ export declare type DeleteIssueLabelMutation = {
18245
19252
  export declare type UpdateIssueLabelMutationVariables = Exact<{
18246
19253
  id: Scalars["String"];
18247
19254
  input: IssueLabelUpdateInput;
19255
+ replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
18248
19256
  }>;
18249
19257
  export declare type UpdateIssueLabelMutation = {
18250
19258
  __typename?: "Mutation";
@@ -19057,6 +20065,89 @@ export declare type UpdateTemplateMutation = {
19057
20065
  __typename?: "TemplatePayload";
19058
20066
  } & TemplatePayloadFragment;
19059
20067
  };
20068
+ export declare type CreateTimeScheduleMutationVariables = Exact<{
20069
+ input: TimeScheduleCreateInput;
20070
+ }>;
20071
+ export declare type CreateTimeScheduleMutation = {
20072
+ __typename?: "Mutation";
20073
+ } & {
20074
+ timeScheduleCreate: {
20075
+ __typename?: "TimeSchedulePayload";
20076
+ } & TimeSchedulePayloadFragment;
20077
+ };
20078
+ export declare type DeleteTimeScheduleMutationVariables = Exact<{
20079
+ id: Scalars["String"];
20080
+ }>;
20081
+ export declare type DeleteTimeScheduleMutation = {
20082
+ __typename?: "Mutation";
20083
+ } & {
20084
+ timeScheduleDelete: {
20085
+ __typename?: "DeletePayload";
20086
+ } & DeletePayloadFragment;
20087
+ };
20088
+ export declare type TimeScheduleRefreshIntegrationScheduleMutationVariables = Exact<{
20089
+ id: Scalars["String"];
20090
+ }>;
20091
+ export declare type TimeScheduleRefreshIntegrationScheduleMutation = {
20092
+ __typename?: "Mutation";
20093
+ } & {
20094
+ timeScheduleRefreshIntegrationSchedule: {
20095
+ __typename?: "TimeSchedulePayload";
20096
+ } & TimeSchedulePayloadFragment;
20097
+ };
20098
+ export declare type UpdateTimeScheduleMutationVariables = Exact<{
20099
+ id: Scalars["String"];
20100
+ input: TimeScheduleUpdateInput;
20101
+ }>;
20102
+ export declare type UpdateTimeScheduleMutation = {
20103
+ __typename?: "Mutation";
20104
+ } & {
20105
+ timeScheduleUpdate: {
20106
+ __typename?: "TimeSchedulePayload";
20107
+ } & TimeSchedulePayloadFragment;
20108
+ };
20109
+ export declare type TimeScheduleUpsertExternalMutationVariables = Exact<{
20110
+ externalId: Scalars["String"];
20111
+ input: TimeScheduleUpdateInput;
20112
+ }>;
20113
+ export declare type TimeScheduleUpsertExternalMutation = {
20114
+ __typename?: "Mutation";
20115
+ } & {
20116
+ timeScheduleUpsertExternal: {
20117
+ __typename?: "TimeSchedulePayload";
20118
+ } & TimeSchedulePayloadFragment;
20119
+ };
20120
+ export declare type CreateTriageResponsibilityMutationVariables = Exact<{
20121
+ input: TriageResponsibilityCreateInput;
20122
+ }>;
20123
+ export declare type CreateTriageResponsibilityMutation = {
20124
+ __typename?: "Mutation";
20125
+ } & {
20126
+ triageResponsibilityCreate: {
20127
+ __typename?: "TriageResponsibilityPayload";
20128
+ } & TriageResponsibilityPayloadFragment;
20129
+ };
20130
+ export declare type DeleteTriageResponsibilityMutationVariables = Exact<{
20131
+ id: Scalars["String"];
20132
+ }>;
20133
+ export declare type DeleteTriageResponsibilityMutation = {
20134
+ __typename?: "Mutation";
20135
+ } & {
20136
+ triageResponsibilityDelete: {
20137
+ __typename?: "DeletePayload";
20138
+ } & DeletePayloadFragment;
20139
+ };
20140
+ export declare type UpdateTriageResponsibilityMutationVariables = Exact<{
20141
+ id: Scalars["String"];
20142
+ input: TriageResponsibilityUpdateInput;
20143
+ }>;
20144
+ export declare type UpdateTriageResponsibilityMutation = {
20145
+ __typename?: "Mutation";
20146
+ } & {
20147
+ triageResponsibilityUpdate: {
20148
+ __typename?: "TriageResponsibilityPayload";
20149
+ } & TriageResponsibilityPayloadFragment;
20150
+ };
19060
20151
  export declare type UserDemoteAdminMutationVariables = Exact<{
19061
20152
  id: Scalars["String"];
19062
20153
  }>;
@@ -19295,6 +20386,7 @@ export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragmen
19295
20386
  export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<InitiativeArchivePayloadFragment, unknown>;
19296
20387
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
19297
20388
  export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
20389
+ export declare const DocumentNotificationFragmentDoc: DocumentNode<DocumentNotificationFragment, unknown>;
19298
20390
  export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
19299
20391
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
19300
20392
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
@@ -19309,6 +20401,7 @@ export declare const WorkflowStateArchivePayloadFragmentDoc: DocumentNode<Workfl
19309
20401
  export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragment, unknown>;
19310
20402
  export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<LabelNotificationSubscriptionFragment, unknown>;
19311
20403
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
20404
+ export declare const ReminderFragmentDoc: DocumentNode<ReminderFragment, unknown>;
19312
20405
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
19313
20406
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
19314
20407
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
@@ -19316,6 +20409,7 @@ export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationF
19316
20409
  export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
19317
20410
  export declare const AuthEmailIntakeAddressFragmentDoc: DocumentNode<AuthEmailIntakeAddressFragment, unknown>;
19318
20411
  export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
20412
+ export declare const ProjectStatusFragmentDoc: DocumentNode<ProjectStatusFragment, unknown>;
19319
20413
  export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
19320
20414
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
19321
20415
  export declare const AuthOauthClientWithScopeFragmentDoc: DocumentNode<AuthOauthClientWithScopeFragment, unknown>;
@@ -19372,6 +20466,8 @@ export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFra
19372
20466
  export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
19373
20467
  export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
19374
20468
  export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
20469
+ export declare const AuthOrganizationExistsPayloadFragmentDoc: DocumentNode<AuthOrganizationExistsPayloadFragment, unknown>;
20470
+ export declare const AuthOrganizationPayloadFragmentDoc: DocumentNode<AuthOrganizationPayloadFragment, unknown>;
19375
20471
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
19376
20472
  export declare const AuthSuccessPayloadFragmentDoc: DocumentNode<AuthSuccessPayloadFragment, unknown>;
19377
20473
  export declare const AuthorizedApplicationBaseFragmentDoc: DocumentNode<AuthorizedApplicationBaseFragment, unknown>;
@@ -19383,6 +20479,8 @@ export declare const CompanyConnectionFragmentDoc: DocumentNode<CompanyConnectio
19383
20479
  export declare const ContactPayloadFragmentDoc: DocumentNode<ContactPayloadFragment, unknown>;
19384
20480
  export declare const CreateCsvExportReportPayloadFragmentDoc: DocumentNode<CreateCsvExportReportPayloadFragment, unknown>;
19385
20481
  export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<CreateOrJoinOrganizationResponseFragment, unknown>;
20482
+ export declare const ViewPreferencesValuesFragmentDoc: DocumentNode<ViewPreferencesValuesFragment, unknown>;
20483
+ export declare const ViewPreferencesFragmentDoc: DocumentNode<ViewPreferencesFragment, unknown>;
19386
20484
  export declare const CustomViewFragmentDoc: DocumentNode<CustomViewFragment, unknown>;
19387
20485
  export declare const CustomViewConnectionFragmentDoc: DocumentNode<CustomViewConnectionFragment, unknown>;
19388
20486
  export declare const CustomViewHasSubscribersPayloadFragmentDoc: DocumentNode<CustomViewHasSubscribersPayloadFragment, unknown>;
@@ -19391,6 +20489,9 @@ export declare const CustomViewSuggestionPayloadFragmentDoc: DocumentNode<Custom
19391
20489
  export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
19392
20490
  export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFragment, unknown>;
19393
20491
  export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
20492
+ export declare const DiaryEntryFragmentDoc: DocumentNode<DiaryEntryFragment, unknown>;
20493
+ export declare const DiaryEntryConnectionFragmentDoc: DocumentNode<DiaryEntryConnectionFragment, unknown>;
20494
+ export declare const DiaryEntryPayloadFragmentDoc: DocumentNode<DiaryEntryPayloadFragment, unknown>;
19394
20495
  export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
19395
20496
  export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
19396
20497
  export declare const DocumentContentHistoryTypeFragmentDoc: DocumentNode<DocumentContentHistoryTypeFragment, unknown>;
@@ -19407,6 +20508,9 @@ export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentN
19407
20508
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
19408
20509
  export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
19409
20510
  export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
20511
+ export declare const EntityExternalLinkFragmentDoc: DocumentNode<EntityExternalLinkFragment, unknown>;
20512
+ export declare const EntityExternalLinkConnectionFragmentDoc: DocumentNode<EntityExternalLinkConnectionFragment, unknown>;
20513
+ export declare const EntityExternalLinkPayloadFragmentDoc: DocumentNode<EntityExternalLinkPayloadFragment, unknown>;
19410
20514
  export declare const ExternalUserFragmentDoc: DocumentNode<ExternalUserFragment, unknown>;
19411
20515
  export declare const ExternalUserConnectionFragmentDoc: DocumentNode<ExternalUserConnectionFragment, unknown>;
19412
20516
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
@@ -19438,6 +20542,7 @@ export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<Issue
19438
20542
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
19439
20543
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
19440
20544
  export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
20545
+ export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
19441
20546
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
19442
20547
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
19443
20548
  export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
@@ -19484,9 +20589,13 @@ export declare const ProjectMilestoneFragmentDoc: DocumentNode<ProjectMilestoneF
19484
20589
  export declare const ProjectMilestoneConnectionFragmentDoc: DocumentNode<ProjectMilestoneConnectionFragment, unknown>;
19485
20590
  export declare const ProjectMilestonePayloadFragmentDoc: DocumentNode<ProjectMilestonePayloadFragment, unknown>;
19486
20591
  export declare const ProjectPayloadFragmentDoc: DocumentNode<ProjectPayloadFragment, unknown>;
20592
+ export declare const ProjectRelationFragmentDoc: DocumentNode<ProjectRelationFragment, unknown>;
20593
+ export declare const ProjectRelationConnectionFragmentDoc: DocumentNode<ProjectRelationConnectionFragment, unknown>;
20594
+ export declare const ProjectRelationPayloadFragmentDoc: DocumentNode<ProjectRelationPayloadFragment, unknown>;
19487
20595
  export declare const ProjectSearchResultFragmentDoc: DocumentNode<ProjectSearchResultFragment, unknown>;
19488
20596
  export declare const ProjectSearchPayloadFragmentDoc: DocumentNode<ProjectSearchPayloadFragment, unknown>;
19489
20597
  export declare const ProjectSearchResultConnectionFragmentDoc: DocumentNode<ProjectSearchResultConnectionFragment, unknown>;
20598
+ export declare const ProjectStatusConnectionFragmentDoc: DocumentNode<ProjectStatusConnectionFragment, unknown>;
19490
20599
  export declare const ProjectUpdateFragmentDoc: DocumentNode<ProjectUpdateFragment, unknown>;
19491
20600
  export declare const ProjectUpdateConnectionFragmentDoc: DocumentNode<ProjectUpdateConnectionFragment, unknown>;
19492
20601
  export declare const ProjectUpdateInteractionFragmentDoc: DocumentNode<ProjectUpdateInteractionFragment, unknown>;
@@ -19535,13 +20644,11 @@ export declare const UploadFileHeaderFragmentDoc: DocumentNode<UploadFileHeaderF
19535
20644
  export declare const UploadFileFragmentDoc: DocumentNode<UploadFileFragment, unknown>;
19536
20645
  export declare const UploadPayloadFragmentDoc: DocumentNode<UploadPayloadFragment, unknown>;
19537
20646
  export declare const UserAdminPayloadFragmentDoc: DocumentNode<UserAdminPayloadFragment, unknown>;
19538
- export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
19539
20647
  export declare const UserConnectionFragmentDoc: DocumentNode<UserConnectionFragment, unknown>;
19540
20648
  export declare const UserPayloadFragmentDoc: DocumentNode<UserPayloadFragment, unknown>;
19541
20649
  export declare const UserSettingsFlagPayloadFragmentDoc: DocumentNode<UserSettingsFlagPayloadFragment, unknown>;
19542
20650
  export declare const UserSettingsFlagsResetPayloadFragmentDoc: DocumentNode<UserSettingsFlagsResetPayloadFragment, unknown>;
19543
20651
  export declare const UserSettingsPayloadFragmentDoc: DocumentNode<UserSettingsPayloadFragment, unknown>;
19544
- export declare const ViewPreferencesFragmentDoc: DocumentNode<ViewPreferencesFragment, unknown>;
19545
20652
  export declare const ViewPreferencesPayloadFragmentDoc: DocumentNode<ViewPreferencesPayloadFragment, unknown>;
19546
20653
  export declare const WebhookFragmentDoc: DocumentNode<WebhookFragment, unknown>;
19547
20654
  export declare const WebhookConnectionFragmentDoc: DocumentNode<WebhookConnectionFragment, unknown>;
@@ -19752,6 +20859,21 @@ export declare const CustomView_IssuesDocument: DocumentNode<CustomView_IssuesQu
19752
20859
  orderBy?: Maybe<PaginationOrderBy> | undefined;
19753
20860
  sort?: Maybe<IssueSortInput | IssueSortInput[]> | undefined;
19754
20861
  }>>;
20862
+ export declare const CustomView_OrganizationViewPreferencesDocument: DocumentNode<CustomView_OrganizationViewPreferencesQuery, Exact<{
20863
+ id: Scalars["String"];
20864
+ }>>;
20865
+ export declare const CustomView_OrganizationViewPreferences_PreferencesDocument: DocumentNode<CustomView_OrganizationViewPreferences_PreferencesQuery, Exact<{
20866
+ id: Scalars["String"];
20867
+ }>>;
20868
+ export declare const CustomView_UserViewPreferencesDocument: DocumentNode<CustomView_UserViewPreferencesQuery, Exact<{
20869
+ id: Scalars["String"];
20870
+ }>>;
20871
+ export declare const CustomView_UserViewPreferences_PreferencesDocument: DocumentNode<CustomView_UserViewPreferences_PreferencesQuery, Exact<{
20872
+ id: Scalars["String"];
20873
+ }>>;
20874
+ export declare const CustomView_ViewPreferencesValuesDocument: DocumentNode<CustomView_ViewPreferencesValuesQuery, Exact<{
20875
+ id: Scalars["String"];
20876
+ }>>;
19755
20877
  export declare const CustomViewHasSubscribersDocument: DocumentNode<CustomViewHasSubscribersQuery, Exact<{
19756
20878
  id: Scalars["String"];
19757
20879
  }>>;
@@ -19795,6 +20917,9 @@ export declare const CyclesDocument: DocumentNode<CyclesQuery, Exact<{
19795
20917
  last?: Maybe<number> | undefined;
19796
20918
  orderBy?: Maybe<PaginationOrderBy> | undefined;
19797
20919
  }>>;
20920
+ export declare const DiaryEntryDocument: DocumentNode<DiaryEntryQuery, Exact<{
20921
+ id: Scalars["String"];
20922
+ }>>;
19798
20923
  export declare const DocumentDocument: DocumentNode<DocumentQuery, Exact<{
19799
20924
  id: Scalars["String"];
19800
20925
  }>>;
@@ -19821,6 +20946,9 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
19821
20946
  last?: Maybe<number> | undefined;
19822
20947
  orderBy?: Maybe<PaginationOrderBy> | undefined;
19823
20948
  }>>;
20949
+ export declare const EntityExternalLinkDocument: DocumentNode<EntityExternalLinkQuery, Exact<{
20950
+ id: Scalars["String"];
20951
+ }>>;
19824
20952
  export declare const ExternalUserDocument: DocumentNode<ExternalUserQuery, Exact<{
19825
20953
  id: Scalars["String"];
19826
20954
  }>>;
@@ -20282,6 +21410,9 @@ export declare const Project_ProjectUpdatesDocument: DocumentNode<Project_Projec
20282
21410
  last?: Maybe<number> | undefined;
20283
21411
  orderBy?: Maybe<PaginationOrderBy> | undefined;
20284
21412
  }>>;
21413
+ export declare const Project_StatusDocument: DocumentNode<Project_StatusQuery, Exact<{
21414
+ id: Scalars["String"];
21415
+ }>>;
20285
21416
  export declare const Project_TeamsDocument: DocumentNode<Project_TeamsQuery, Exact<{
20286
21417
  id: Scalars["String"];
20287
21418
  after?: Maybe<string> | undefined;
@@ -20328,9 +21459,30 @@ export declare const ProjectMilestonesDocument: DocumentNode<ProjectMilestonesQu
20328
21459
  last?: Maybe<number> | undefined;
20329
21460
  orderBy?: Maybe<PaginationOrderBy> | undefined;
20330
21461
  }>>;
21462
+ export declare const ProjectRelationDocument: DocumentNode<ProjectRelationQuery, Exact<{
21463
+ id: Scalars["String"];
21464
+ }>>;
21465
+ export declare const ProjectRelationsDocument: DocumentNode<ProjectRelationsQuery, Exact<{
21466
+ after?: Maybe<string> | undefined;
21467
+ before?: Maybe<string> | undefined;
21468
+ first?: Maybe<number> | undefined;
21469
+ includeArchived?: Maybe<boolean> | undefined;
21470
+ last?: Maybe<number> | undefined;
21471
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
21472
+ }>>;
20331
21473
  export declare const ProjectUpdateDocument: DocumentNode<ProjectUpdateQuery, Exact<{
20332
21474
  id: Scalars["String"];
20333
21475
  }>>;
21476
+ export declare const ProjectUpdate_CommentsDocument: DocumentNode<ProjectUpdate_CommentsQuery, Exact<{
21477
+ id: Scalars["String"];
21478
+ after?: Maybe<string> | undefined;
21479
+ before?: Maybe<string> | undefined;
21480
+ filter?: Maybe<CommentFilter> | undefined;
21481
+ first?: Maybe<number> | undefined;
21482
+ includeArchived?: Maybe<boolean> | undefined;
21483
+ last?: Maybe<number> | undefined;
21484
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
21485
+ }>>;
20334
21486
  export declare const ProjectUpdateInteractionDocument: DocumentNode<ProjectUpdateInteractionQuery, Exact<{
20335
21487
  id: Scalars["String"];
20336
21488
  }>>;
@@ -20606,6 +21758,31 @@ export declare const TemplatesDocument: DocumentNode<TemplatesQuery, Exact<{
20606
21758
  export declare const TemplatesForIntegrationDocument: DocumentNode<TemplatesForIntegrationQuery, Exact<{
20607
21759
  integrationType: Scalars["String"];
20608
21760
  }>>;
21761
+ export declare const TimeScheduleDocument: DocumentNode<TimeScheduleQuery, Exact<{
21762
+ id: Scalars["String"];
21763
+ }>>;
21764
+ export declare const TimeSchedulesDocument: DocumentNode<TimeSchedulesQuery, Exact<{
21765
+ after?: Maybe<string> | undefined;
21766
+ before?: Maybe<string> | undefined;
21767
+ first?: Maybe<number> | undefined;
21768
+ includeArchived?: Maybe<boolean> | undefined;
21769
+ last?: Maybe<number> | undefined;
21770
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
21771
+ }>>;
21772
+ export declare const TriageResponsibilitiesDocument: DocumentNode<TriageResponsibilitiesQuery, Exact<{
21773
+ after?: Maybe<string> | undefined;
21774
+ before?: Maybe<string> | undefined;
21775
+ first?: Maybe<number> | undefined;
21776
+ includeArchived?: Maybe<boolean> | undefined;
21777
+ last?: Maybe<number> | undefined;
21778
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
21779
+ }>>;
21780
+ export declare const TriageResponsibilityDocument: DocumentNode<TriageResponsibilityQuery, Exact<{
21781
+ id: Scalars["String"];
21782
+ }>>;
21783
+ export declare const TriageResponsibility_ManualSelectionDocument: DocumentNode<TriageResponsibility_ManualSelectionQuery, Exact<{
21784
+ id: Scalars["String"];
21785
+ }>>;
20609
21786
  export declare const UserDocument: DocumentNode<UserQuery, Exact<{
20610
21787
  id: Scalars["String"];
20611
21788
  }>>;
@@ -20816,6 +21993,7 @@ export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSla
20816
21993
  id?: Maybe<string> | undefined;
20817
21994
  issueId: Scalars["String"];
20818
21995
  latest?: Maybe<string> | undefined;
21996
+ syncToCommentThread?: Maybe<boolean> | undefined;
20819
21997
  title?: Maybe<string> | undefined;
20820
21998
  ts?: Maybe<string> | undefined;
20821
21999
  url: Scalars["String"];
@@ -20894,12 +22072,26 @@ export declare const UpdateCycleDocument: DocumentNode<UpdateCycleMutation, Exac
20894
22072
  id: Scalars["String"];
20895
22073
  input: CycleUpdateInput;
20896
22074
  }>>;
22075
+ export declare const CreateDiaryEntryDocument: DocumentNode<CreateDiaryEntryMutation, Exact<{
22076
+ input: DiaryEntryCreateInput;
22077
+ }>>;
22078
+ export declare const DeleteDiaryEntryDocument: DocumentNode<DeleteDiaryEntryMutation, Exact<{
22079
+ id: Scalars["String"];
22080
+ }>>;
22081
+ export declare const UpdateDiaryEntryDocument: DocumentNode<UpdateDiaryEntryMutation, Exact<{
22082
+ id: Scalars["String"];
22083
+ input: DiaryEntryUpdateInput;
22084
+ }>>;
20897
22085
  export declare const CreateDocumentDocument: DocumentNode<CreateDocumentMutation, Exact<{
20898
22086
  input: DocumentCreateInput;
20899
22087
  }>>;
20900
22088
  export declare const DeleteDocumentDocument: DocumentNode<DeleteDocumentMutation, Exact<{
20901
22089
  id: Scalars["String"];
20902
22090
  }>>;
22091
+ export declare const DocumentReminderDocument: DocumentNode<DocumentReminderMutation, Exact<{
22092
+ id: Scalars["String"];
22093
+ reminderAt: Scalars["DateTime"];
22094
+ }>>;
20903
22095
  export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation, Exact<{
20904
22096
  id: Scalars["String"];
20905
22097
  input: DocumentUpdateInput;
@@ -20932,6 +22124,16 @@ export declare const CreateEmojiDocument: DocumentNode<CreateEmojiMutation, Exac
20932
22124
  export declare const DeleteEmojiDocument: DocumentNode<DeleteEmojiMutation, Exact<{
20933
22125
  id: Scalars["String"];
20934
22126
  }>>;
22127
+ export declare const CreateEntityExternalLinkDocument: DocumentNode<CreateEntityExternalLinkMutation, Exact<{
22128
+ input: EntityExternalLinkCreateInput;
22129
+ }>>;
22130
+ export declare const DeleteEntityExternalLinkDocument: DocumentNode<DeleteEntityExternalLinkMutation, Exact<{
22131
+ id: Scalars["String"];
22132
+ }>>;
22133
+ export declare const UpdateEntityExternalLinkDocument: DocumentNode<UpdateEntityExternalLinkMutation, Exact<{
22134
+ id: Scalars["String"];
22135
+ input: EntityExternalLinkUpdateInput;
22136
+ }>>;
20935
22137
  export declare const CreateFavoriteDocument: DocumentNode<CreateFavoriteMutation, Exact<{
20936
22138
  input: FavoriteCreateInput;
20937
22139
  }>>;
@@ -21193,6 +22395,7 @@ export declare const DeleteIssueLabelDocument: DocumentNode<DeleteIssueLabelMuta
21193
22395
  export declare const UpdateIssueLabelDocument: DocumentNode<UpdateIssueLabelMutation, Exact<{
21194
22396
  id: Scalars["String"];
21195
22397
  input: IssueLabelUpdateInput;
22398
+ replaceTeamLabels?: Maybe<boolean> | undefined;
21196
22399
  }>>;
21197
22400
  export declare const CreateIssueRelationDocument: DocumentNode<CreateIssueRelationMutation, Exact<{
21198
22401
  input: IssueRelationCreateInput;
@@ -21452,6 +22655,33 @@ export declare const UpdateTemplateDocument: DocumentNode<UpdateTemplateMutation
21452
22655
  id: Scalars["String"];
21453
22656
  input: TemplateUpdateInput;
21454
22657
  }>>;
22658
+ export declare const CreateTimeScheduleDocument: DocumentNode<CreateTimeScheduleMutation, Exact<{
22659
+ input: TimeScheduleCreateInput;
22660
+ }>>;
22661
+ export declare const DeleteTimeScheduleDocument: DocumentNode<DeleteTimeScheduleMutation, Exact<{
22662
+ id: Scalars["String"];
22663
+ }>>;
22664
+ export declare const TimeScheduleRefreshIntegrationScheduleDocument: DocumentNode<TimeScheduleRefreshIntegrationScheduleMutation, Exact<{
22665
+ id: Scalars["String"];
22666
+ }>>;
22667
+ export declare const UpdateTimeScheduleDocument: DocumentNode<UpdateTimeScheduleMutation, Exact<{
22668
+ id: Scalars["String"];
22669
+ input: TimeScheduleUpdateInput;
22670
+ }>>;
22671
+ export declare const TimeScheduleUpsertExternalDocument: DocumentNode<TimeScheduleUpsertExternalMutation, Exact<{
22672
+ externalId: Scalars["String"];
22673
+ input: TimeScheduleUpdateInput;
22674
+ }>>;
22675
+ export declare const CreateTriageResponsibilityDocument: DocumentNode<CreateTriageResponsibilityMutation, Exact<{
22676
+ input: TriageResponsibilityCreateInput;
22677
+ }>>;
22678
+ export declare const DeleteTriageResponsibilityDocument: DocumentNode<DeleteTriageResponsibilityMutation, Exact<{
22679
+ id: Scalars["String"];
22680
+ }>>;
22681
+ export declare const UpdateTriageResponsibilityDocument: DocumentNode<UpdateTriageResponsibilityMutation, Exact<{
22682
+ id: Scalars["String"];
22683
+ input: TriageResponsibilityUpdateInput;
22684
+ }>>;
21455
22685
  export declare const UserDemoteAdminDocument: DocumentNode<UserDemoteAdminMutation, Exact<{
21456
22686
  id: Scalars["String"];
21457
22687
  }>>;