@linear/sdk 19.2.0 → 20.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.
@@ -538,6 +538,13 @@ export declare type AuthOrganizationDomain = {
538
538
  organizationId: Scalars["String"];
539
539
  verified: Scalars["Boolean"];
540
540
  };
541
+ export declare type AuthOrganizationExistsPayload = {
542
+ __typename?: "AuthOrganizationExistsPayload";
543
+ /** Whether the organization exists. */
544
+ exists: Scalars["Boolean"];
545
+ /** Whether the operation was successful. */
546
+ success: Scalars["Boolean"];
547
+ };
541
548
  /** An invitation to the organization that has been sent via email. */
542
549
  export declare type AuthOrganizationInvite = {
543
550
  __typename?: "AuthOrganizationInvite";
@@ -546,6 +553,19 @@ export declare type AuthOrganizationInvite = {
546
553
  /** The unique identifier of the entity. */
547
554
  id: Scalars["ID"];
548
555
  };
556
+ export declare type AuthOrganizationPayload = {
557
+ __typename?: "AuthOrganizationPayload";
558
+ /** The auth organization that was updated. */
559
+ authOrganization: AuthOrganization;
560
+ /** Whether the operation was successful. */
561
+ success: Scalars["Boolean"];
562
+ };
563
+ export declare type AuthOrganizationUpdateInput = {
564
+ /** The organization's unique invite hash. */
565
+ inviteHash?: Maybe<Scalars["String"]>;
566
+ /** The organization's unique URL key. */
567
+ urlKey?: Maybe<Scalars["String"]>;
568
+ };
549
569
  export declare type AuthResolverResponse = {
550
570
  __typename?: "AuthResolverResponse";
551
571
  /** Should the signup flow allow access for the domain. */
@@ -616,6 +636,8 @@ export declare type AuthenticationSession = {
616
636
  locationCountry?: Maybe<Scalars["String"]>;
617
637
  /** Location country code. */
618
638
  locationCountryCode?: Maybe<Scalars["String"]>;
639
+ /** Location region code. */
640
+ locationRegionCode?: Maybe<Scalars["String"]>;
619
641
  /** Name of the session, derived from the client and operating system */
620
642
  name: Scalars["String"];
621
643
  /** Operating system used for the session */
@@ -653,6 +675,8 @@ export declare type AuthenticationSessionResponse = {
653
675
  locationCountry?: Maybe<Scalars["String"]>;
654
676
  /** Location country code. */
655
677
  locationCountryCode?: Maybe<Scalars["String"]>;
678
+ /** Location region code. */
679
+ locationRegionCode?: Maybe<Scalars["String"]>;
656
680
  /** Name of the session, derived from the client and operating system */
657
681
  name: Scalars["String"];
658
682
  /** Operating system used for the session */
@@ -783,11 +807,13 @@ export declare type CommentCollectionFilter = {
783
807
  /** Comparator for the identifier. */
784
808
  id?: Maybe<IdComparator>;
785
809
  /** Filters that the comments issue must satisfy. */
786
- issue?: Maybe<IssueFilter>;
810
+ issue?: Maybe<NullableIssueFilter>;
787
811
  /** Comparator for the collection length. */
788
812
  length?: Maybe<NumberComparator>;
789
813
  /** Compound filters, one of which need to be matched by the comment. */
790
814
  or?: Maybe<Array<CommentCollectionFilter>>;
815
+ /** Filters that the comment parent must satisfy. */
816
+ parent?: Maybe<NullableCommentFilter>;
791
817
  /** Filters that the comments project update must satisfy. */
792
818
  projectUpdate?: Maybe<ProjectUpdateFilter>;
793
819
  /** Filters that needs to be matched by some comments. */
@@ -850,9 +876,11 @@ export declare type CommentFilter = {
850
876
  /** Comparator for the identifier. */
851
877
  id?: Maybe<IdComparator>;
852
878
  /** Filters that the comments issue must satisfy. */
853
- issue?: Maybe<IssueFilter>;
879
+ issue?: Maybe<NullableIssueFilter>;
854
880
  /** Compound filters, one of which need to be matched by the comment. */
855
881
  or?: Maybe<Array<CommentFilter>>;
882
+ /** Filters that the comment parent must satisfy. */
883
+ parent?: Maybe<NullableCommentFilter>;
856
884
  /** Filters that the comments project update must satisfy. */
857
885
  projectUpdate?: Maybe<ProjectUpdateFilter>;
858
886
  /** Comparator for the updated at date. */
@@ -1037,6 +1065,8 @@ export declare type CustomView = Node & {
1037
1065
  name: Scalars["String"];
1038
1066
  /** The organization of the custom view. */
1039
1067
  organization: Organization;
1068
+ /** The organizations default view preferences for this custom view. */
1069
+ organizationViewPreferences?: Maybe<ViewPreferences>;
1040
1070
  /** The user who owns the custom view. */
1041
1071
  owner: User;
1042
1072
  /** The filter applied to projects in the custom view. */
@@ -1053,6 +1083,10 @@ export declare type CustomView = Node & {
1053
1083
  updatedAt: Scalars["DateTime"];
1054
1084
  /** The user who last updated the custom view. */
1055
1085
  updatedBy: User;
1086
+ /** The current users view preferences for this custom view. */
1087
+ userViewPreferences?: Maybe<ViewPreferences>;
1088
+ /** The calculated view preferences values for this custom view. */
1089
+ viewPreferencesValues?: Maybe<ViewPreferencesValues>;
1056
1090
  };
1057
1091
  /** A custom view that has been saved by a user. */
1058
1092
  export declare type CustomViewIssuesArgs = {
@@ -1077,7 +1111,7 @@ export declare type CustomViewCreateInput = {
1077
1111
  /** The description of the custom view. */
1078
1112
  description?: Maybe<Scalars["String"]>;
1079
1113
  /** The filter applied to issues in the custom view. */
1080
- filterData?: Maybe<Scalars["JSONObject"]>;
1114
+ filterData?: Maybe<IssueFilter>;
1081
1115
  /** The filters applied to issues in the custom view. */
1082
1116
  filters?: Maybe<Scalars["JSONObject"]>;
1083
1117
  /** The icon of the custom view. */
@@ -1089,7 +1123,7 @@ export declare type CustomViewCreateInput = {
1089
1123
  /** The owner of the custom view. */
1090
1124
  ownerId?: Maybe<Scalars["String"]>;
1091
1125
  /** The project filter applied to issues in the custom view. */
1092
- projectFilterData?: Maybe<Scalars["JSONObject"]>;
1126
+ projectFilterData?: Maybe<ProjectFilter>;
1093
1127
  /** [Internal] The id of the project associated with the custom view. */
1094
1128
  projectId?: Maybe<Scalars["String"]>;
1095
1129
  /** Whether the custom view is shared with everyone in the organization. */
@@ -1170,7 +1204,7 @@ export declare type CustomViewUpdateInput = {
1170
1204
  /** The description of the custom view. */
1171
1205
  description?: Maybe<Scalars["String"]>;
1172
1206
  /** The filter applied to issues in the custom view. */
1173
- filterData?: Maybe<Scalars["JSONObject"]>;
1207
+ filterData?: Maybe<IssueFilter>;
1174
1208
  /** The filters applied to issues in the custom view. */
1175
1209
  filters?: Maybe<Scalars["JSONObject"]>;
1176
1210
  /** The icon of the custom view. */
@@ -1180,7 +1214,7 @@ export declare type CustomViewUpdateInput = {
1180
1214
  /** The owner of the custom view. */
1181
1215
  ownerId?: Maybe<Scalars["String"]>;
1182
1216
  /** The project filter applied to issues in the custom view. */
1183
- projectFilterData?: Maybe<Scalars["JSONObject"]>;
1217
+ projectFilterData?: Maybe<ProjectFilter>;
1184
1218
  /** [Internal] The id of the project associated with the custom view. */
1185
1219
  projectId?: Maybe<Scalars["String"]>;
1186
1220
  /** Whether the custom view is shared with everyone in the organization. */
@@ -1458,7 +1492,7 @@ export declare type DeletePayload = ArchivePayload & {
1458
1492
  /** Whether the operation was successful. */
1459
1493
  success: Scalars["Boolean"];
1460
1494
  };
1461
- /** A document for a project. */
1495
+ /** A document that can be attached to different entities. */
1462
1496
  export declare type Document = Node & {
1463
1497
  __typename?: "Document";
1464
1498
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -1484,13 +1518,15 @@ export declare type Document = Node & {
1484
1518
  icon?: Maybe<Scalars["String"]>;
1485
1519
  /** The unique identifier of the entity. */
1486
1520
  id: Scalars["ID"];
1521
+ /** [Internal] The initiative that the document is associated with. */
1522
+ initiative?: Maybe<Initiative>;
1487
1523
  /** The last template that was applied to this document. */
1488
1524
  lastAppliedTemplate?: Maybe<Template>;
1489
1525
  /** The project that the document is associated with. */
1490
- project: Project;
1526
+ project?: Maybe<Project>;
1491
1527
  /** The document's unique URL slug. */
1492
1528
  slugId: Scalars["String"];
1493
- /** The order of the item in the project resources list. */
1529
+ /** The order of the item in the resources list. */
1494
1530
  sortOrder: Scalars["Float"];
1495
1531
  /** The document title. */
1496
1532
  title: Scalars["String"];
@@ -1502,6 +1538,8 @@ export declare type Document = Node & {
1502
1538
  updatedAt: Scalars["DateTime"];
1503
1539
  /** The user who last updated the document. */
1504
1540
  updatedBy: User;
1541
+ /** The canonical url for the document. */
1542
+ url: Scalars["String"];
1505
1543
  };
1506
1544
  /** Document filtering options. */
1507
1545
  export declare type DocumentCollectionFilter = {
@@ -1556,6 +1594,8 @@ export declare type DocumentContent = Node & {
1556
1594
  document?: Maybe<Document>;
1557
1595
  /** The unique identifier of the entity. */
1558
1596
  id: Scalars["ID"];
1597
+ /** The initiative that the content is associated with. */
1598
+ initiative?: Maybe<Initiative>;
1559
1599
  /** The issue that the content is associated with. */
1560
1600
  issue?: Maybe<Issue>;
1561
1601
  /** The project that the content is associated with. */
@@ -1639,11 +1679,13 @@ export declare type DocumentCreateInput = {
1639
1679
  icon?: Maybe<Scalars["String"]>;
1640
1680
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1641
1681
  id?: Maybe<Scalars["String"]>;
1682
+ /** [Internal] Related initiative for the document. */
1683
+ initiativeId?: Maybe<Scalars["String"]>;
1642
1684
  /** The ID of the last template applied to the document. */
1643
1685
  lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1644
1686
  /** Related project for the document. */
1645
- projectId: Scalars["String"];
1646
- /** The order of the item in the project resources list. */
1687
+ projectId?: Maybe<Scalars["String"]>;
1688
+ /** The order of the item in the resources list. */
1647
1689
  sortOrder?: Maybe<Scalars["Float"]>;
1648
1690
  /** The title of the document. */
1649
1691
  title: Scalars["String"];
@@ -1675,6 +1717,43 @@ export declare type DocumentFilter = {
1675
1717
  /** Comparator for the updated at date. */
1676
1718
  updatedAt?: Maybe<DateComparator>;
1677
1719
  };
1720
+ /** A document related notification. */
1721
+ export declare type DocumentNotification = Entity & Node & Notification & {
1722
+ __typename?: "DocumentNotification";
1723
+ /** The user that caused the notification. */
1724
+ actor?: Maybe<User>;
1725
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
1726
+ archivedAt?: Maybe<Scalars["DateTime"]>;
1727
+ /** The bot that caused the notification. */
1728
+ botActor?: Maybe<ActorBot>;
1729
+ /** The time at which the entity was created. */
1730
+ createdAt: Scalars["DateTime"];
1731
+ /**
1732
+ * The time at when an email reminder for this notification was sent to the user. Null, if no email
1733
+ * reminder has been sent.
1734
+ */
1735
+ emailedAt?: Maybe<Scalars["DateTime"]>;
1736
+ /** The external user that caused the notification. */
1737
+ externalUserActor?: Maybe<ExternalUser>;
1738
+ /** The unique identifier of the entity. */
1739
+ id: Scalars["ID"];
1740
+ /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
1741
+ readAt?: Maybe<Scalars["DateTime"]>;
1742
+ /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
1743
+ snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
1744
+ /** Notification type. */
1745
+ type: Scalars["String"];
1746
+ /** The time at which a notification was unsnoozed.. */
1747
+ unsnoozedAt?: Maybe<Scalars["DateTime"]>;
1748
+ /**
1749
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1750
+ * 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
1751
+ * been updated after creation.
1752
+ */
1753
+ updatedAt: Scalars["DateTime"];
1754
+ /** The user that received the notification. */
1755
+ user: User;
1756
+ };
1678
1757
  export declare type DocumentPayload = {
1679
1758
  __typename?: "DocumentPayload";
1680
1759
  /** The document that was created or updated. */
@@ -1719,15 +1798,17 @@ export declare type DocumentSearchResult = Node & {
1719
1798
  icon?: Maybe<Scalars["String"]>;
1720
1799
  /** The unique identifier of the entity. */
1721
1800
  id: Scalars["ID"];
1801
+ /** [Internal] The initiative that the document is associated with. */
1802
+ initiative?: Maybe<Initiative>;
1722
1803
  /** The last template that was applied to this document. */
1723
1804
  lastAppliedTemplate?: Maybe<Template>;
1724
1805
  /** Metadata related to search result. */
1725
1806
  metadata: Scalars["JSONObject"];
1726
1807
  /** The project that the document is associated with. */
1727
- project: Project;
1808
+ project?: Maybe<Project>;
1728
1809
  /** The document's unique URL slug. */
1729
1810
  slugId: Scalars["String"];
1730
- /** The order of the item in the project resources list. */
1811
+ /** The order of the item in the resources list. */
1731
1812
  sortOrder: Scalars["Float"];
1732
1813
  /** The document title. */
1733
1814
  title: Scalars["String"];
@@ -1739,6 +1820,8 @@ export declare type DocumentSearchResult = Node & {
1739
1820
  updatedAt: Scalars["DateTime"];
1740
1821
  /** The user who last updated the document. */
1741
1822
  updatedBy: User;
1823
+ /** The canonical url for the document. */
1824
+ url: Scalars["String"];
1742
1825
  };
1743
1826
  export declare type DocumentSearchResultConnection = {
1744
1827
  __typename?: "DocumentSearchResultConnection";
@@ -1763,11 +1846,13 @@ export declare type DocumentUpdateInput = {
1763
1846
  hiddenAt?: Maybe<Scalars["DateTime"]>;
1764
1847
  /** The icon of the document. */
1765
1848
  icon?: Maybe<Scalars["String"]>;
1849
+ /** [Internal] Related initiative for the document. */
1850
+ initiativeId?: Maybe<Scalars["String"]>;
1766
1851
  /** The ID of the last template applied to the document. */
1767
1852
  lastAppliedTemplateId?: Maybe<Scalars["String"]>;
1768
1853
  /** Related project for the document. */
1769
1854
  projectId?: Maybe<Scalars["String"]>;
1770
- /** The order of the item in the project resources list. */
1855
+ /** The order of the item in the resources list. */
1771
1856
  sortOrder?: Maybe<Scalars["Float"]>;
1772
1857
  /** The title of the document. */
1773
1858
  title?: Maybe<Scalars["String"]>;
@@ -1850,6 +1935,8 @@ export declare type EmailUserAccountAuthChallengeInput = {
1850
1935
  inviteLink?: Maybe<Scalars["String"]>;
1851
1936
  /** Whether the login was requested from the desktop app. */
1852
1937
  isDesktop?: Maybe<Scalars["Boolean"]>;
1938
+ /** Whether to only return the login code. This is used by mobile apps to skip showing the login link. */
1939
+ loginCodeOnly?: Maybe<Scalars["Boolean"]>;
1853
1940
  /** Signup code. */
1854
1941
  signupCode?: Maybe<Scalars["String"]>;
1855
1942
  };
@@ -1930,6 +2017,73 @@ export declare type Entity = {
1930
2017
  */
1931
2018
  updatedAt: Scalars["DateTime"];
1932
2019
  };
2020
+ /** An external link for an entity like initiative, etc... */
2021
+ export declare type EntityExternalLink = Node & {
2022
+ __typename?: "EntityExternalLink";
2023
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2024
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2025
+ /** The time at which the entity was created. */
2026
+ createdAt: Scalars["DateTime"];
2027
+ /** The user who created the link. */
2028
+ creator: User;
2029
+ /** The unique identifier of the entity. */
2030
+ id: Scalars["ID"];
2031
+ /** The initiative that the link is associated with. */
2032
+ initiative: Initiative;
2033
+ /** The link's label. */
2034
+ label: Scalars["String"];
2035
+ /** The order of the item in the resources list. */
2036
+ sortOrder: Scalars["Float"];
2037
+ /**
2038
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2039
+ * 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
2040
+ * been updated after creation.
2041
+ */
2042
+ updatedAt: Scalars["DateTime"];
2043
+ /** The link's URL. */
2044
+ url: Scalars["String"];
2045
+ };
2046
+ export declare type EntityExternalLinkConnection = {
2047
+ __typename?: "EntityExternalLinkConnection";
2048
+ edges: Array<EntityExternalLinkEdge>;
2049
+ nodes: Array<EntityExternalLink>;
2050
+ pageInfo: PageInfo;
2051
+ };
2052
+ export declare type EntityExternalLinkCreateInput = {
2053
+ /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2054
+ id?: Maybe<Scalars["String"]>;
2055
+ /** Related initiative link. */
2056
+ initiativeId: Scalars["String"];
2057
+ /** The label for the link. */
2058
+ label: Scalars["String"];
2059
+ /** The order of the item in the entities resources list. */
2060
+ sortOrder?: Maybe<Scalars["Float"]>;
2061
+ /** The URL of the link. */
2062
+ url: Scalars["String"];
2063
+ };
2064
+ export declare type EntityExternalLinkEdge = {
2065
+ __typename?: "EntityExternalLinkEdge";
2066
+ /** Used in `before` and `after` args */
2067
+ cursor: Scalars["String"];
2068
+ node: EntityExternalLink;
2069
+ };
2070
+ export declare type EntityExternalLinkPayload = {
2071
+ __typename?: "EntityExternalLinkPayload";
2072
+ /** The link that was created or updated. */
2073
+ entityExternalLink: EntityExternalLink;
2074
+ /** The identifier of the last sync operation. */
2075
+ lastSyncId: Scalars["Float"];
2076
+ /** Whether the operation was successful. */
2077
+ success: Scalars["Boolean"];
2078
+ };
2079
+ export declare type EntityExternalLinkUpdateInput = {
2080
+ /** The label for the link. */
2081
+ label?: Maybe<Scalars["String"]>;
2082
+ /** The order of the item in the entities resources list. */
2083
+ sortOrder?: Maybe<Scalars["Float"]>;
2084
+ /** The URL of the link. */
2085
+ url?: Maybe<Scalars["String"]>;
2086
+ };
1933
2087
  /** Comparator for estimates. */
1934
2088
  export declare type EstimateComparator = {
1935
2089
  /** Compound filters, one of which need to be matched by the estimate. */
@@ -2495,10 +2649,12 @@ export declare type Initiative = Node & {
2495
2649
  createdAt: Scalars["DateTime"];
2496
2650
  /** The user who created the initiative. */
2497
2651
  creator: User;
2498
- /** The description of the initiative. */
2652
+ /** [Internal] The description of the initiative. */
2499
2653
  description?: Maybe<Scalars["String"]>;
2500
2654
  /** The unique identifier of the entity. */
2501
2655
  id: Scalars["ID"];
2656
+ /** Links associated with the initiative. */
2657
+ links: EntityExternalLinkConnection;
2502
2658
  /** The name of the initiative. */
2503
2659
  name: Scalars["String"];
2504
2660
  /** The organization of the initiative. */
@@ -2523,6 +2679,15 @@ export declare type Initiative = Node & {
2523
2679
  updatedAt: Scalars["DateTime"];
2524
2680
  };
2525
2681
  /** [INTERNAL] An initiative to group projects. */
2682
+ export declare type InitiativeLinksArgs = {
2683
+ after?: Maybe<Scalars["String"]>;
2684
+ before?: Maybe<Scalars["String"]>;
2685
+ first?: Maybe<Scalars["Int"]>;
2686
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2687
+ last?: Maybe<Scalars["Int"]>;
2688
+ orderBy?: Maybe<PaginationOrderBy>;
2689
+ };
2690
+ /** [INTERNAL] An initiative to group projects. */
2526
2691
  export declare type InitiativeProjectsArgs = {
2527
2692
  after?: Maybe<Scalars["String"]>;
2528
2693
  before?: Maybe<Scalars["String"]>;
@@ -2577,7 +2742,7 @@ export declare type InitiativeConnection = {
2577
2742
  export declare type InitiativeCreateInput = {
2578
2743
  /** The initiative's color. */
2579
2744
  color?: Maybe<Scalars["String"]>;
2580
- /** The description of the initiative. */
2745
+ /** [Internal] The description of the initiative. */
2581
2746
  description?: Maybe<Scalars["String"]>;
2582
2747
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2583
2748
  id?: Maybe<Scalars["String"]>;
@@ -2687,7 +2852,7 @@ export declare type InitiativeToProjectUpdateInput = {
2687
2852
  export declare type InitiativeUpdateInput = {
2688
2853
  /** The initiative's color. */
2689
2854
  color?: Maybe<Scalars["String"]>;
2690
- /** The description of the initiative. */
2855
+ /** [Internal] The description of the initiative. */
2691
2856
  description?: Maybe<Scalars["String"]>;
2692
2857
  /** The name of the initiative. */
2693
2858
  name?: Maybe<Scalars["String"]>;
@@ -3110,9 +3275,9 @@ export declare type Issue = Node & {
3110
3275
  projectMilestone?: Maybe<ProjectMilestone>;
3111
3276
  /** Relations associated with this issue. */
3112
3277
  relations: IssueRelationConnection;
3113
- /** [Internal] The time at which the issue's SLA will breach. */
3278
+ /** The time at which the issue's SLA will breach. */
3114
3279
  slaBreachesAt?: Maybe<Scalars["DateTime"]>;
3115
- /** [Internal] The time at which the issue's SLA began. */
3280
+ /** The time at which the issue's SLA began. */
3116
3281
  slaStartedAt?: Maybe<Scalars["DateTime"]>;
3117
3282
  /** The user who snoozed the issue. */
3118
3283
  snoozedBy?: Maybe<User>;
@@ -3654,6 +3819,7 @@ export declare type IssueHistory = Node & {
3654
3819
  toTitle?: Maybe<Scalars["String"]>;
3655
3820
  /** Whether the issue was trashed or un-trashed. */
3656
3821
  trashed?: Maybe<Scalars["Boolean"]>;
3822
+ triageResponsibilityNotifiedUsers?: Maybe<Array<User>>;
3657
3823
  /**
3658
3824
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
3659
3825
  * 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 +4296,9 @@ export declare type IssueSearchResult = Node & {
4130
4296
  projectMilestone?: Maybe<ProjectMilestone>;
4131
4297
  /** Relations associated with this issue. */
4132
4298
  relations: IssueRelationConnection;
4133
- /** [Internal] The time at which the issue's SLA will breach. */
4299
+ /** The time at which the issue's SLA will breach. */
4134
4300
  slaBreachesAt?: Maybe<Scalars["DateTime"]>;
4135
- /** [Internal] The time at which the issue's SLA began. */
4301
+ /** The time at which the issue's SLA began. */
4136
4302
  slaStartedAt?: Maybe<Scalars["DateTime"]>;
4137
4303
  /** The user who snoozed the issue. */
4138
4304
  snoozedBy?: Maybe<User>;
@@ -4589,6 +4755,12 @@ export declare type Mutation = {
4589
4755
  emojiCreate: EmojiPayload;
4590
4756
  /** Deletes an emoji. */
4591
4757
  emojiDelete: DeletePayload;
4758
+ /** Creates a new entity link. */
4759
+ entityExternalLinkCreate: EntityExternalLinkPayload;
4760
+ /** Deletes an entity link. */
4761
+ entityExternalLinkDelete: DeletePayload;
4762
+ /** Updates an entity link. */
4763
+ entityExternalLinkUpdate: EntityExternalLinkPayload;
4592
4764
  /** Creates a new favorite (project, cycle etc). */
4593
4765
  favoriteCreate: FavoritePayload;
4594
4766
  /** Deletes a favorite reference. */
@@ -4849,6 +5021,12 @@ export declare type Mutation = {
4849
5021
  projectMilestoneDelete: DeletePayload;
4850
5022
  /** Updates a project milestone. */
4851
5023
  projectMilestoneUpdate: ProjectMilestonePayload;
5024
+ /** [ALPHA] Creates a new project relation. */
5025
+ projectRelationCreate: ProjectRelationPayload;
5026
+ /** [ALPHA] Deletes a project relation. */
5027
+ projectRelationDelete: DeletePayload;
5028
+ /** [ALPHA] Updates a project relation. */
5029
+ projectRelationUpdate: ProjectRelationPayload;
4852
5030
  /** Unarchives a project. */
4853
5031
  projectUnarchive: ProjectArchivePayload;
4854
5032
  /** Updates a project. */
@@ -5062,6 +5240,7 @@ export declare type MutationAttachmentLinkSlackArgs = {
5062
5240
  id?: Maybe<Scalars["String"]>;
5063
5241
  issueId: Scalars["String"];
5064
5242
  latest?: Maybe<Scalars["String"]>;
5243
+ syncToCommentThread?: Maybe<Scalars["Boolean"]>;
5065
5244
  title?: Maybe<Scalars["String"]>;
5066
5245
  ts?: Maybe<Scalars["String"]>;
5067
5246
  url: Scalars["String"];
@@ -5181,6 +5360,16 @@ export declare type MutationEmojiCreateArgs = {
5181
5360
  export declare type MutationEmojiDeleteArgs = {
5182
5361
  id: Scalars["String"];
5183
5362
  };
5363
+ export declare type MutationEntityExternalLinkCreateArgs = {
5364
+ input: EntityExternalLinkCreateInput;
5365
+ };
5366
+ export declare type MutationEntityExternalLinkDeleteArgs = {
5367
+ id: Scalars["String"];
5368
+ };
5369
+ export declare type MutationEntityExternalLinkUpdateArgs = {
5370
+ id: Scalars["String"];
5371
+ input: EntityExternalLinkUpdateInput;
5372
+ };
5184
5373
  export declare type MutationFavoriteCreateArgs = {
5185
5374
  input: FavoriteCreateInput;
5186
5375
  };
@@ -5480,6 +5669,7 @@ export declare type MutationIssueLabelDeleteArgs = {
5480
5669
  export declare type MutationIssueLabelUpdateArgs = {
5481
5670
  id: Scalars["String"];
5482
5671
  input: IssueLabelUpdateInput;
5672
+ replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
5483
5673
  };
5484
5674
  export declare type MutationIssueRelationCreateArgs = {
5485
5675
  input: IssueRelationCreateInput;
@@ -5624,6 +5814,16 @@ export declare type MutationProjectMilestoneUpdateArgs = {
5624
5814
  id: Scalars["String"];
5625
5815
  input: ProjectMilestoneUpdateInput;
5626
5816
  };
5817
+ export declare type MutationProjectRelationCreateArgs = {
5818
+ input: ProjectRelationCreateInput;
5819
+ };
5820
+ export declare type MutationProjectRelationDeleteArgs = {
5821
+ id: Scalars["String"];
5822
+ };
5823
+ export declare type MutationProjectRelationUpdateArgs = {
5824
+ id: Scalars["String"];
5825
+ input: ProjectRelationUpdateInput;
5826
+ };
5627
5827
  export declare type MutationProjectUnarchiveArgs = {
5628
5828
  id: Scalars["String"];
5629
5829
  };
@@ -6033,6 +6233,33 @@ export declare type NotionSettingsInput = {
6033
6233
  /** The name of the Notion workspace being connected. */
6034
6234
  workspaceName: Scalars["String"];
6035
6235
  };
6236
+ /** Comment filtering options. */
6237
+ export declare type NullableCommentFilter = {
6238
+ /** Compound filters, all of which need to be matched by the comment. */
6239
+ and?: Maybe<Array<NullableCommentFilter>>;
6240
+ /** Comparator for the comments body. */
6241
+ body?: Maybe<StringComparator>;
6242
+ /** Comparator for the created at date. */
6243
+ createdAt?: Maybe<DateComparator>;
6244
+ /** Filters that the comments document content must satisfy. */
6245
+ documentContent?: Maybe<DocumentContentFilter>;
6246
+ /** Comparator for the identifier. */
6247
+ id?: Maybe<IdComparator>;
6248
+ /** Filters that the comments issue must satisfy. */
6249
+ issue?: Maybe<NullableIssueFilter>;
6250
+ /** Filter based on the existence of the relation. */
6251
+ null?: Maybe<Scalars["Boolean"]>;
6252
+ /** Compound filters, one of which need to be matched by the comment. */
6253
+ or?: Maybe<Array<NullableCommentFilter>>;
6254
+ /** Filters that the comment parent must satisfy. */
6255
+ parent?: Maybe<NullableCommentFilter>;
6256
+ /** Filters that the comments project update must satisfy. */
6257
+ projectUpdate?: Maybe<ProjectUpdateFilter>;
6258
+ /** Comparator for the updated at date. */
6259
+ updatedAt?: Maybe<DateComparator>;
6260
+ /** Filters that the comments creator must satisfy. */
6261
+ user?: Maybe<UserFilter>;
6262
+ };
6036
6263
  /** Cycle filtering options. */
6037
6264
  export declare type NullableCycleFilter = {
6038
6265
  /** Compound filters, one of which need to be matched by the cycle. */
@@ -6593,6 +6820,8 @@ export declare type OauthToken = {
6593
6820
  createdAt: Scalars["DateTime"];
6594
6821
  id: Scalars["Float"];
6595
6822
  revokedAt?: Maybe<Scalars["DateTime"]>;
6823
+ /** Scopes associated with the access token. */
6824
+ scope: Array<Scalars["String"]>;
6596
6825
  /** Auth user who authorized the OAuth application. */
6597
6826
  user: AuthUser;
6598
6827
  /** Id of the user who authorized the OAuth application. */
@@ -6649,6 +6878,8 @@ export declare type Organization = Node & {
6649
6878
  periodUploadVolume: Scalars["Float"];
6650
6879
  /** Previously used URL keys for the organization (last 3 are kept and redirected). */
6651
6880
  previousUrlKeys: Array<Scalars["String"]>;
6881
+ /** The organization's project statuses. */
6882
+ projectStatuses: Array<ProjectStatus>;
6652
6883
  /** The day at which to prompt for project updates. */
6653
6884
  projectUpdateRemindersDay: Day;
6654
6885
  /** The hour at which to prompt for project updates. */
@@ -6666,7 +6897,7 @@ export declare type Organization = Node & {
6666
6897
  /** Whether SCIM provisioning is enabled for organization. */
6667
6898
  scimEnabled: Scalars["Boolean"];
6668
6899
  /** Which day count to use for SLA calculations. */
6669
- slaDayCount: SlaDayCountType;
6900
+ slaDayCount: SLADayCountType;
6670
6901
  /** The organization's subscription to a paid plan. */
6671
6902
  subscription?: Maybe<PaidSubscription>;
6672
6903
  /** Teams associated with the organization. */
@@ -7002,7 +7233,7 @@ export declare type OrganizationUpdateInput = {
7002
7233
  /** Whether the organization is using roadmap. */
7003
7234
  roadmapEnabled?: Maybe<Scalars["Boolean"]>;
7004
7235
  /** Which day count to use for SLA calculation. */
7005
- slaDayCount?: Maybe<SlaDayCountType>;
7236
+ slaDayCount?: Maybe<SLADayCountType>;
7006
7237
  /** Internal. Whether SLAs have been enabled for the organization. */
7007
7238
  slaEnabled?: Maybe<Scalars["Boolean"]>;
7008
7239
  /** The URL key of the organization. */
@@ -7729,6 +7960,91 @@ export declare type ProjectPayload = {
7729
7960
  /** Whether the operation was successful. */
7730
7961
  success: Scalars["Boolean"];
7731
7962
  };
7963
+ /** A relation between two projects. */
7964
+ export declare type ProjectRelation = Node & {
7965
+ __typename?: "ProjectRelation";
7966
+ /** The type of anchor on the project end of the relation. */
7967
+ anchorType: Scalars["String"];
7968
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
7969
+ archivedAt?: Maybe<Scalars["DateTime"]>;
7970
+ /** The time at which the entity was created. */
7971
+ createdAt: Scalars["DateTime"];
7972
+ /** The unique identifier of the entity. */
7973
+ id: Scalars["ID"];
7974
+ /** The project whose relationship is being described. */
7975
+ project: Project;
7976
+ /** The milestone within the project whose relationship is being described. */
7977
+ projectMilestone?: Maybe<ProjectMilestone>;
7978
+ /** The type of anchor on the relatedProject end of the relation. */
7979
+ relatedAnchorType: Scalars["String"];
7980
+ /** The related project. */
7981
+ relatedProject: Project;
7982
+ /** The milestone within the related project whose relationship is being described. */
7983
+ relatedProjectMilestone?: Maybe<ProjectMilestone>;
7984
+ /** The relationship of the project with the related project. */
7985
+ type: Scalars["String"];
7986
+ /**
7987
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
7988
+ * 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
7989
+ * been updated after creation.
7990
+ */
7991
+ updatedAt: Scalars["DateTime"];
7992
+ };
7993
+ export declare type ProjectRelationConnection = {
7994
+ __typename?: "ProjectRelationConnection";
7995
+ edges: Array<ProjectRelationEdge>;
7996
+ nodes: Array<ProjectRelation>;
7997
+ pageInfo: PageInfo;
7998
+ };
7999
+ export declare type ProjectRelationCreateInput = {
8000
+ /** The type of the anchor for the project. */
8001
+ anchorType: Scalars["String"];
8002
+ /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
8003
+ id?: Maybe<Scalars["String"]>;
8004
+ /** The identifier of the project that is related to another project. */
8005
+ projectId: Scalars["String"];
8006
+ /** The identifier of the project milestone. */
8007
+ projectMilestoneId?: Maybe<Scalars["String"]>;
8008
+ /** The type of the anchor for the related project. */
8009
+ relatedAnchorType: Scalars["String"];
8010
+ /** The identifier of the related project. */
8011
+ relatedProjectId: Scalars["String"];
8012
+ /** The identifier of the related project milestone. */
8013
+ relatedProjectMilestoneId?: Maybe<Scalars["String"]>;
8014
+ /** The type of relation of the project to the related project. */
8015
+ type: Scalars["String"];
8016
+ };
8017
+ export declare type ProjectRelationEdge = {
8018
+ __typename?: "ProjectRelationEdge";
8019
+ /** Used in `before` and `after` args */
8020
+ cursor: Scalars["String"];
8021
+ node: ProjectRelation;
8022
+ };
8023
+ export declare type ProjectRelationPayload = {
8024
+ __typename?: "ProjectRelationPayload";
8025
+ /** The identifier of the last sync operation. */
8026
+ lastSyncId: Scalars["Float"];
8027
+ /** The project relation that was created or updated. */
8028
+ projectRelation: ProjectRelation;
8029
+ /** Whether the operation was successful. */
8030
+ success: Scalars["Boolean"];
8031
+ };
8032
+ export declare type ProjectRelationUpdateInput = {
8033
+ /** The type of the anchor for the project. */
8034
+ anchorType?: Maybe<Scalars["String"]>;
8035
+ /** The identifier of the project that is related to another project. */
8036
+ projectId?: Maybe<Scalars["String"]>;
8037
+ /** The identifier of the project milestone. */
8038
+ projectMilestoneId?: Maybe<Scalars["String"]>;
8039
+ /** The type of the anchor for the related project. */
8040
+ relatedAnchorType?: Maybe<Scalars["String"]>;
8041
+ /** The identifier of the related project. */
8042
+ relatedProjectId?: Maybe<Scalars["String"]>;
8043
+ /** The identifier of the related project milestone. */
8044
+ relatedProjectMilestoneId?: Maybe<Scalars["String"]>;
8045
+ /** The type of relation of the project to the related project. */
8046
+ type?: Maybe<Scalars["String"]>;
8047
+ };
7732
8048
  export declare type ProjectSearchPayload = {
7733
8049
  __typename?: "ProjectSearchPayload";
7734
8050
  /** Archived entities matching the search term along with all their dependencies. */
@@ -7928,7 +8244,7 @@ export declare type ProjectSort = {
7928
8244
  /** The order for the individual sort */
7929
8245
  order?: Maybe<PaginationSortOrder>;
7930
8246
  };
7931
- /** [ALPHA] A project status. */
8247
+ /** A project status. */
7932
8248
  export declare type ProjectStatus = Node & {
7933
8249
  __typename?: "ProjectStatus";
7934
8250
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -8015,6 +8331,8 @@ export declare type ProjectUpdate = Node & {
8015
8331
  body: Scalars["String"];
8016
8332
  /** [Internal] The content of the project update as a Prosemirror document. */
8017
8333
  bodyData: Scalars["String"];
8334
+ /** Comments associated with the project update. */
8335
+ comments: CommentConnection;
8018
8336
  /** The time at which the entity was created. */
8019
8337
  createdAt: Scalars["DateTime"];
8020
8338
  /** The diff between the current update and the previous one. */
@@ -8033,6 +8351,8 @@ export declare type ProjectUpdate = Node & {
8033
8351
  isDiffHidden: Scalars["Boolean"];
8034
8352
  /** The project that the update is associated with. */
8035
8353
  project: Project;
8354
+ /** Emoji reaction summary, grouped by emoji type. */
8355
+ reactionData: Scalars["JSONObject"];
8036
8356
  /**
8037
8357
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8038
8358
  * 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 +8364,16 @@ export declare type ProjectUpdate = Node & {
8044
8364
  /** The user who wrote the update. */
8045
8365
  user: User;
8046
8366
  };
8367
+ /** A update associated with an project. */
8368
+ export declare type ProjectUpdateCommentsArgs = {
8369
+ after?: Maybe<Scalars["String"]>;
8370
+ before?: Maybe<Scalars["String"]>;
8371
+ filter?: Maybe<CommentFilter>;
8372
+ first?: Maybe<Scalars["Int"]>;
8373
+ includeArchived?: Maybe<Scalars["Boolean"]>;
8374
+ last?: Maybe<Scalars["Int"]>;
8375
+ orderBy?: Maybe<PaginationOrderBy>;
8376
+ };
8047
8377
  export declare type ProjectUpdateConnection = {
8048
8378
  __typename?: "ProjectUpdateConnection";
8049
8379
  edges: Array<ProjectUpdateEdge>;
@@ -8365,6 +8695,8 @@ export declare type Query = {
8365
8695
  emoji: Emoji;
8366
8696
  /** All custom emojis. */
8367
8697
  emojis: EmojiConnection;
8698
+ /** One specific entity link. */
8699
+ entityExternalLink: EntityExternalLink;
8368
8700
  /** One specific external user. */
8369
8701
  externalUser: ExternalUser;
8370
8702
  /** All external users for the organization. */
@@ -8451,6 +8783,10 @@ export declare type Query = {
8451
8783
  projectMilestone: ProjectMilestone;
8452
8784
  /** All milestones for the project. */
8453
8785
  projectMilestones: ProjectMilestoneConnection;
8786
+ /** One specific project relation. */
8787
+ projectRelation: ProjectRelation;
8788
+ /** All project relationships. */
8789
+ projectRelations: ProjectRelationConnection;
8454
8790
  /** A specific project update. */
8455
8791
  projectUpdate: ProjectUpdate;
8456
8792
  /** A specific interaction on a project update. */
@@ -8662,6 +8998,9 @@ export declare type QueryEmojisArgs = {
8662
8998
  last?: Maybe<Scalars["Int"]>;
8663
8999
  orderBy?: Maybe<PaginationOrderBy>;
8664
9000
  };
9001
+ export declare type QueryEntityExternalLinkArgs = {
9002
+ id: Scalars["String"];
9003
+ };
8665
9004
  export declare type QueryExternalUserArgs = {
8666
9005
  id: Scalars["String"];
8667
9006
  };
@@ -8875,6 +9214,17 @@ export declare type QueryProjectMilestonesArgs = {
8875
9214
  last?: Maybe<Scalars["Int"]>;
8876
9215
  orderBy?: Maybe<PaginationOrderBy>;
8877
9216
  };
9217
+ export declare type QueryProjectRelationArgs = {
9218
+ id: Scalars["String"];
9219
+ };
9220
+ export declare type QueryProjectRelationsArgs = {
9221
+ after?: Maybe<Scalars["String"]>;
9222
+ before?: Maybe<Scalars["String"]>;
9223
+ first?: Maybe<Scalars["Int"]>;
9224
+ includeArchived?: Maybe<Scalars["Boolean"]>;
9225
+ last?: Maybe<Scalars["Int"]>;
9226
+ orderBy?: Maybe<PaginationOrderBy>;
9227
+ };
8878
9228
  export declare type QueryProjectUpdateArgs = {
8879
9229
  id: Scalars["String"];
8880
9230
  };
@@ -9192,6 +9542,8 @@ export declare type Roadmap = Node & {
9192
9542
  * been updated after creation.
9193
9543
  */
9194
9544
  updatedAt: Scalars["DateTime"];
9545
+ /** The canonical url for the roadmap. */
9546
+ url: Scalars["String"];
9195
9547
  };
9196
9548
  /** A roadmap for projects. */
9197
9549
  export declare type RoadmapProjectsArgs = {
@@ -9362,7 +9714,7 @@ export declare type RoadmapUpdateInput = {
9362
9714
  sortOrder?: Maybe<Scalars["Float"]>;
9363
9715
  };
9364
9716
  /** Which day count to use for SLA calculations. */
9365
- export declare enum SlaDayCountType {
9717
+ export declare enum SLADayCountType {
9366
9718
  All = "all",
9367
9719
  OnlyBusinessDays = "onlyBusinessDays"
9368
9720
  }
@@ -9503,7 +9855,7 @@ export declare type SlackChannelNameMapping = {
9503
9855
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
9504
9856
  /** 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
9857
  autoCreateTemplateId?: Maybe<Scalars["String"]>;
9506
- /** Whether or not we the Linear Asks bot has been added to this Slack channel. */
9858
+ /** Whether or not the Linear Asks bot has been added to this Slack channel. */
9507
9859
  botAdded?: Maybe<Scalars["Boolean"]>;
9508
9860
  /** The Slack channel ID. */
9509
9861
  id: Scalars["String"];
@@ -9513,6 +9865,8 @@ export declare type SlackChannelNameMapping = {
9513
9865
  isShared?: Maybe<Scalars["Boolean"]>;
9514
9866
  /** The Slack channel name. */
9515
9867
  name: Scalars["String"];
9868
+ /** Whether or not synced Slack threads should be updated with a message and emoji when their Ask is canceled. */
9869
+ postCancellationUpdates?: Maybe<Scalars["Boolean"]>;
9516
9870
  /** Which teams are connected to the channel and settings for those teams. */
9517
9871
  teams: Array<SlackAsksTeamSettings>;
9518
9872
  };
@@ -9525,7 +9879,7 @@ export declare type SlackChannelNameMappingInput = {
9525
9879
  autoCreateOnMessage?: Maybe<Scalars["Boolean"]>;
9526
9880
  /** 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
9881
  autoCreateTemplateId?: Maybe<Scalars["String"]>;
9528
- /** Whether or not we the Linear Asks bot has been added to this Slack channel. */
9882
+ /** Whether or not the Linear Asks bot has been added to this Slack channel. */
9529
9883
  botAdded?: Maybe<Scalars["Boolean"]>;
9530
9884
  /** The Slack channel ID. */
9531
9885
  id: Scalars["String"];
@@ -9535,6 +9889,8 @@ export declare type SlackChannelNameMappingInput = {
9535
9889
  isShared?: Maybe<Scalars["Boolean"]>;
9536
9890
  /** The Slack channel name. */
9537
9891
  name: Scalars["String"];
9892
+ /** Whether or not synced Slack threads should be updated with a message and emoji when their Ask is canceled. */
9893
+ postCancellationUpdates?: Maybe<Scalars["Boolean"]>;
9538
9894
  /** Which teams are connected to the channel and settings for those teams. */
9539
9895
  teams: Array<SlackAsksTeamSettingsInput>;
9540
9896
  };
@@ -9823,6 +10179,8 @@ export declare type Team = Node & {
9823
10179
  * @deprecated Use team.gitAutomationStates instead.
9824
10180
  */
9825
10181
  reviewWorkflowState?: Maybe<WorkflowState>;
10182
+ /** Whether the team is managed by SCIM. */
10183
+ scimManaged: Scalars["Boolean"];
9826
10184
  /** Where to move issues when changing state. */
9827
10185
  setIssueSortOrderOnStateChange: Scalars["String"];
9828
10186
  /** Whether to send new issue comment notifications to Slack. */
@@ -10910,10 +11268,12 @@ export declare enum UserFlagType {
10910
11268
  DesktopInstalled = "desktopInstalled",
10911
11269
  DesktopTabsOnboardingDismissed = "desktopTabsOnboardingDismissed",
10912
11270
  DueDateShortcutMigration = "dueDateShortcutMigration",
11271
+ EditorSlashCommandUsed = "editorSlashCommandUsed",
10913
11272
  EmptyActiveIssuesDismissed = "emptyActiveIssuesDismissed",
10914
11273
  EmptyBacklogDismissed = "emptyBacklogDismissed",
10915
11274
  EmptyCustomViewsDismissed = "emptyCustomViewsDismissed",
10916
11275
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
11276
+ EmptyParagraphSlashCommandTip = "emptyParagraphSlashCommandTip",
10917
11277
  FigmaPluginBannerDismissed = "figmaPluginBannerDismissed",
10918
11278
  FigmaPromptDismissed = "figmaPromptDismissed",
10919
11279
  HelpIslandFeatureInsightsDismissed = "helpIslandFeatureInsightsDismissed",
@@ -11121,6 +11481,8 @@ export declare type ViewPreferences = Node & {
11121
11481
  createdAt: Scalars["DateTime"];
11122
11482
  /** The unique identifier of the entity. */
11123
11483
  id: Scalars["ID"];
11484
+ /** The view preferences */
11485
+ preferences: ViewPreferencesValues;
11124
11486
  /** The view preference type. */
11125
11487
  type: Scalars["String"];
11126
11488
  /**
@@ -11180,6 +11542,15 @@ export declare type ViewPreferencesUpdateInput = {
11180
11542
  /** View preferences. */
11181
11543
  preferences?: Maybe<Scalars["JSONObject"]>;
11182
11544
  };
11545
+ export declare type ViewPreferencesValues = {
11546
+ __typename?: "ViewPreferencesValues";
11547
+ /** The issue grouping. */
11548
+ issueGrouping?: Maybe<Scalars["String"]>;
11549
+ /** Whether to show completed issues. */
11550
+ showCompletedIssues?: Maybe<Scalars["String"]>;
11551
+ /** The issue ordering. */
11552
+ viewOrdering?: Maybe<Scalars["String"]>;
11553
+ };
11183
11554
  /** The client view this custom view is targeting. */
11184
11555
  export declare enum ViewType {
11185
11556
  ActiveIssues = "activeIssues",
@@ -11201,6 +11572,7 @@ export declare enum ViewType {
11201
11572
  MyIssuesActivity = "myIssuesActivity",
11202
11573
  MyIssuesCreatedByMe = "myIssuesCreatedByMe",
11203
11574
  MyIssuesSubscribedTo = "myIssuesSubscribedTo",
11575
+ MyViews = "myViews",
11204
11576
  Project = "project",
11205
11577
  ProjectDocuments = "projectDocuments",
11206
11578
  Projects = "projects",
@@ -11632,6 +12004,9 @@ declare type Entity_CustomViewNotificationSubscription_Fragment = {
11632
12004
  declare type Entity_CycleNotificationSubscription_Fragment = {
11633
12005
  __typename: "CycleNotificationSubscription";
11634
12006
  } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12007
+ declare type Entity_DocumentNotification_Fragment = {
12008
+ __typename: "DocumentNotification";
12009
+ } & Pick<DocumentNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
11635
12010
  declare type Entity_IssueNotification_Fragment = {
11636
12011
  __typename: "IssueNotification";
11637
12012
  } & Pick<IssueNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -11653,7 +12028,7 @@ declare type Entity_TeamNotificationSubscription_Fragment = {
11653
12028
  declare type Entity_UserNotificationSubscription_Fragment = {
11654
12029
  __typename: "UserNotificationSubscription";
11655
12030
  } & 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;
12031
+ 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
12032
  export declare type ActorBotFragment = {
11658
12033
  __typename: "ActorBot";
11659
12034
  } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
@@ -11704,7 +12079,7 @@ export declare type EmojiFragment = {
11704
12079
  };
11705
12080
  export declare type CustomViewNotificationSubscriptionFragment = {
11706
12081
  __typename: "CustomViewNotificationSubscription";
11707
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
12082
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
11708
12083
  cycle?: Maybe<{
11709
12084
  __typename?: "Cycle";
11710
12085
  } & Pick<Cycle, "id">>;
@@ -11730,6 +12105,15 @@ export declare type CustomViewNotificationSubscriptionFragment = {
11730
12105
  export declare type CustomViewFragment = {
11731
12106
  __typename: "CustomView";
11732
12107
  } & Pick<CustomView, "color" | "description" | "filterData" | "projectFilterData" | "filters" | "icon" | "updatedAt" | "modelName" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
12108
+ viewPreferencesValues?: Maybe<{
12109
+ __typename?: "ViewPreferencesValues";
12110
+ } & ViewPreferencesValuesFragment>;
12111
+ userViewPreferences?: Maybe<{
12112
+ __typename?: "ViewPreferences";
12113
+ } & ViewPreferencesFragment>;
12114
+ organizationViewPreferences?: Maybe<{
12115
+ __typename?: "ViewPreferences";
12116
+ } & ViewPreferencesFragment>;
11733
12117
  team?: Maybe<{
11734
12118
  __typename?: "Team";
11735
12119
  } & Pick<Team, "id">>;
@@ -11745,7 +12129,7 @@ export declare type CustomViewFragment = {
11745
12129
  };
11746
12130
  export declare type CycleNotificationSubscriptionFragment = {
11747
12131
  __typename: "CycleNotificationSubscription";
11748
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
12132
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
11749
12133
  customView?: Maybe<{
11750
12134
  __typename?: "CustomView";
11751
12135
  } & Pick<CustomView, "id">>;
@@ -11791,15 +12175,31 @@ export declare type DocumentContentHistoryFragment = {
11791
12175
  __typename?: "DocumentContent";
11792
12176
  } & DocumentContentFragment;
11793
12177
  };
12178
+ export declare type DocumentNotificationFragment = {
12179
+ __typename: "DocumentNotification";
12180
+ } & Pick<DocumentNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
12181
+ botActor?: Maybe<{
12182
+ __typename?: "ActorBot";
12183
+ } & ActorBotFragment>;
12184
+ externalUserActor?: Maybe<{
12185
+ __typename?: "ExternalUser";
12186
+ } & Pick<ExternalUser, "id">>;
12187
+ actor?: Maybe<{
12188
+ __typename?: "User";
12189
+ } & Pick<User, "id">>;
12190
+ user: {
12191
+ __typename?: "User";
12192
+ } & Pick<User, "id">;
12193
+ };
11794
12194
  export declare type DocumentFragment = {
11795
12195
  __typename: "Document";
11796
- } & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
12196
+ } & Pick<Document, "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
11797
12197
  lastAppliedTemplate?: Maybe<{
11798
12198
  __typename?: "Template";
11799
12199
  } & Pick<Template, "id">>;
11800
- project: {
12200
+ project?: Maybe<{
11801
12201
  __typename?: "Project";
11802
- } & Pick<Project, "id">;
12202
+ } & Pick<Project, "id">>;
11803
12203
  creator: {
11804
12204
  __typename?: "User";
11805
12205
  } & Pick<User, "id">;
@@ -11835,6 +12235,8 @@ export declare type NotificationArchivePayloadFragment = {
11835
12235
  __typename: "NotificationArchivePayload";
11836
12236
  } & Pick<NotificationArchivePayload, "lastSyncId" | "success"> & {
11837
12237
  entity?: Maybe<({
12238
+ __typename?: "DocumentNotification";
12239
+ } & Notification_DocumentNotification_Fragment) | ({
11838
12240
  __typename?: "IssueNotification";
11839
12241
  } & Notification_IssueNotification_Fragment) | ({
11840
12242
  __typename?: "OauthClientApprovalNotification";
@@ -11906,7 +12308,7 @@ export declare type DeletePayloadFragment = {
11906
12308
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
11907
12309
  export declare type LabelNotificationSubscriptionFragment = {
11908
12310
  __typename: "LabelNotificationSubscription";
11909
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
12311
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
11910
12312
  customView?: Maybe<{
11911
12313
  __typename?: "CustomView";
11912
12314
  } & Pick<CustomView, "id">>;
@@ -11936,6 +12338,22 @@ export declare type ProjectMilestoneFragment = {
11936
12338
  __typename?: "Project";
11937
12339
  } & Pick<Project, "id">;
11938
12340
  };
12341
+ declare type Notification_DocumentNotification_Fragment = {
12342
+ __typename: "DocumentNotification";
12343
+ } & Pick<DocumentNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
12344
+ botActor?: Maybe<{
12345
+ __typename?: "ActorBot";
12346
+ } & ActorBotFragment>;
12347
+ externalUserActor?: Maybe<{
12348
+ __typename?: "ExternalUser";
12349
+ } & Pick<ExternalUser, "id">>;
12350
+ actor?: Maybe<{
12351
+ __typename?: "User";
12352
+ } & Pick<User, "id">>;
12353
+ user: {
12354
+ __typename?: "User";
12355
+ } & Pick<User, "id">;
12356
+ } & DocumentNotificationFragment;
11939
12357
  declare type Notification_IssueNotification_Fragment = {
11940
12358
  __typename: "IssueNotification";
11941
12359
  } & Pick<IssueNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
@@ -11984,10 +12402,10 @@ declare type Notification_ProjectNotification_Fragment = {
11984
12402
  __typename?: "User";
11985
12403
  } & Pick<User, "id">;
11986
12404
  } & ProjectNotificationFragment;
11987
- export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
12405
+ export declare type NotificationFragment = Notification_DocumentNotification_Fragment | Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
11988
12406
  export declare type ProjectNotificationSubscriptionFragment = {
11989
12407
  __typename: "ProjectNotificationSubscription";
11990
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
12408
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
11991
12409
  customView?: Maybe<{
11992
12410
  __typename?: "CustomView";
11993
12411
  } & Pick<CustomView, "id">>;
@@ -12032,6 +12450,9 @@ export declare type ProjectNotificationFragment = {
12032
12450
  __typename?: "User";
12033
12451
  } & Pick<User, "id">;
12034
12452
  };
12453
+ export declare type ProjectStatusFragment = {
12454
+ __typename: "ProjectStatus";
12455
+ } & Pick<ProjectStatus, "description" | "color" | "updatedAt" | "name" | "position" | "archivedAt" | "createdAt" | "type" | "id" | "indefinite">;
12035
12456
  export declare type ProjectFragment = {
12036
12457
  __typename: "Project";
12037
12458
  } & 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 +12468,9 @@ export declare type ProjectFragment = {
12047
12468
  convertedFromIssue?: Maybe<{
12048
12469
  __typename?: "Issue";
12049
12470
  } & Pick<Issue, "id">>;
12471
+ status: {
12472
+ __typename?: "ProjectStatus";
12473
+ } & ProjectStatusFragment;
12050
12474
  creator?: Maybe<{
12051
12475
  __typename?: "User";
12052
12476
  } & Pick<User, "id">>;
@@ -12136,6 +12560,9 @@ export declare type IssueHistoryFragment = {
12136
12560
  removedLabels?: Maybe<Array<{
12137
12561
  __typename?: "IssueLabel";
12138
12562
  } & IssueLabelFragment>>;
12563
+ triageResponsibilityNotifiedUsers?: Maybe<Array<{
12564
+ __typename?: "User";
12565
+ } & UserFragment>>;
12139
12566
  };
12140
12567
  export declare type IssueRelationFragment = {
12141
12568
  __typename: "IssueRelation";
@@ -12147,9 +12574,25 @@ export declare type IssueRelationFragment = {
12147
12574
  __typename?: "Issue";
12148
12575
  } & Pick<Issue, "id">;
12149
12576
  };
12577
+ export declare type ProjectRelationFragment = {
12578
+ __typename: "ProjectRelation";
12579
+ } & Pick<ProjectRelation, "updatedAt" | "type" | "archivedAt" | "createdAt" | "anchorType" | "relatedAnchorType" | "id"> & {
12580
+ projectMilestone?: Maybe<{
12581
+ __typename?: "ProjectMilestone";
12582
+ } & Pick<ProjectMilestone, "id">>;
12583
+ relatedProjectMilestone?: Maybe<{
12584
+ __typename?: "ProjectMilestone";
12585
+ } & Pick<ProjectMilestone, "id">>;
12586
+ project: {
12587
+ __typename?: "Project";
12588
+ } & Pick<Project, "id">;
12589
+ relatedProject: {
12590
+ __typename?: "Project";
12591
+ } & Pick<Project, "id">;
12592
+ };
12150
12593
  export declare type RoadmapFragment = {
12151
12594
  __typename: "Roadmap";
12152
- } & Pick<Roadmap, "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
12595
+ } & Pick<Roadmap, "url" | "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
12153
12596
  creator: {
12154
12597
  __typename?: "User";
12155
12598
  } & Pick<User, "id">;
@@ -12173,7 +12616,7 @@ export declare type WorkflowStateFragment = {
12173
12616
  };
12174
12617
  export declare type TeamNotificationSubscriptionFragment = {
12175
12618
  __typename: "TeamNotificationSubscription";
12176
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
12619
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12177
12620
  customView?: Maybe<{
12178
12621
  __typename?: "CustomView";
12179
12622
  } & Pick<CustomView, "id">>;
@@ -12198,7 +12641,7 @@ export declare type TeamNotificationSubscriptionFragment = {
12198
12641
  };
12199
12642
  export declare type TriageResponsibilityFragment = {
12200
12643
  __typename: "TriageResponsibility";
12201
- } & Pick<TriageResponsibility, "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
12644
+ } & Pick<TriageResponsibility, "action" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
12202
12645
  manualSelection?: Maybe<{
12203
12646
  __typename?: "TriageResponsibilityManualSelection";
12204
12647
  } & TriageResponsibilityManualSelectionFragment>;
@@ -12237,7 +12680,7 @@ export declare type TimeScheduleFragment = {
12237
12680
  };
12238
12681
  export declare type GitAutomationStateFragment = {
12239
12682
  __typename: "GitAutomationState";
12240
- } & Pick<GitAutomationState, "updatedAt" | "archivedAt" | "createdAt" | "id" | "branchPattern"> & {
12683
+ } & Pick<GitAutomationState, "event" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "branchPattern"> & {
12241
12684
  state?: Maybe<{
12242
12685
  __typename?: "WorkflowState";
12243
12686
  } & Pick<WorkflowState, "id">>;
@@ -12250,7 +12693,7 @@ export declare type GitAutomationStateFragment = {
12250
12693
  };
12251
12694
  export declare type ProjectUpdateFragment = {
12252
12695
  __typename: "ProjectUpdate";
12253
- } & Pick<ProjectUpdate, "url" | "diffMarkdown" | "diff" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
12696
+ } & Pick<ProjectUpdate, "reactionData" | "url" | "diffMarkdown" | "diff" | "health" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
12254
12697
  project: {
12255
12698
  __typename?: "Project";
12256
12699
  } & Pick<Project, "id">;
@@ -12263,7 +12706,7 @@ export declare type UserAccountFragment = {
12263
12706
  } & Pick<UserAccount, "service" | "id" | "archivedAt" | "createdAt" | "updatedAt" | "email" | "name" | "authTokenLinkDisabled">;
12264
12707
  export declare type UserNotificationSubscriptionFragment = {
12265
12708
  __typename: "UserNotificationSubscription";
12266
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "id" | "active"> & {
12709
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12267
12710
  customView?: Maybe<{
12268
12711
  __typename?: "CustomView";
12269
12712
  } & Pick<CustomView, "id">>;
@@ -12348,6 +12791,13 @@ export declare type ProjectLinkFragment = {
12348
12791
  __typename?: "User";
12349
12792
  } & Pick<User, "id">;
12350
12793
  };
12794
+ export declare type EntityExternalLinkFragment = {
12795
+ __typename: "EntityExternalLink";
12796
+ } & Pick<EntityExternalLink, "updatedAt" | "url" | "label" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
12797
+ creator: {
12798
+ __typename?: "User";
12799
+ } & Pick<User, "id">;
12800
+ };
12351
12801
  export declare type IssueImportFragment = {
12352
12802
  __typename: "IssueImport";
12353
12803
  } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
@@ -12366,7 +12816,7 @@ export declare type AuthOrganizationInviteFragment = {
12366
12816
  } & Pick<AuthOrganizationInvite, "expiresAt" | "id">;
12367
12817
  export declare type OrganizationInviteFragment = {
12368
12818
  __typename: "OrganizationInvite";
12369
- } & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id"> & {
12819
+ } & Pick<OrganizationInvite, "metadata" | "external" | "email" | "updatedAt" | "archivedAt" | "createdAt" | "acceptedAt" | "expiresAt" | "id" | "role"> & {
12370
12820
  inviter: {
12371
12821
  __typename?: "User";
12372
12822
  } & Pick<User, "id">;
@@ -12414,7 +12864,7 @@ export declare type IssueNotificationFragment = {
12414
12864
  };
12415
12865
  export declare type IssueFragment = {
12416
12866
  __typename: "Issue";
12417
- } & Pick<Issue, "trashed" | "labelIds" | "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"> & {
12867
+ } & 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
12868
  botActor?: Maybe<{
12419
12869
  __typename?: "ActorBot";
12420
12870
  } & ActorBotFragment>;
@@ -12479,17 +12929,20 @@ export declare type OauthClientApprovalNotificationFragment = {
12479
12929
  };
12480
12930
  export declare type OrganizationFragment = {
12481
12931
  __typename: "Organization";
12482
- } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersHour" | "updatedAt" | "fiscalYearStartMonth" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "allowMembersToInvite" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled"> & {
12932
+ } & 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"> & {
12933
+ projectStatuses: Array<{
12934
+ __typename?: "ProjectStatus";
12935
+ } & ProjectStatusFragment>;
12483
12936
  subscription?: Maybe<{
12484
12937
  __typename?: "PaidSubscription";
12485
12938
  } & PaidSubscriptionFragment>;
12486
12939
  };
12487
12940
  export declare type AuthOrganizationFragment = {
12488
12941
  __typename: "AuthOrganization";
12489
- } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
12942
+ } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
12490
12943
  export declare type TeamFragment = {
12491
12944
  __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"> & {
12945
+ } & 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
12946
  integrationsSettings?: Maybe<{
12494
12947
  __typename?: "IntegrationsSettings";
12495
12948
  } & Pick<IntegrationsSettings, "id">>;
@@ -12541,7 +12994,7 @@ export declare type AuthOauthClientWithMembershipsFragment = {
12541
12994
  } & Pick<AuthOauthClientWithMemberships, "name" | "imageUrl" | "appId" | "clientId" | "scope" | "webhookUrl" | "totalMembers">;
12542
12995
  export declare type AuthenticationSessionResponseFragment = {
12543
12996
  __typename: "AuthenticationSessionResponse";
12544
- } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
12997
+ } & Pick<AuthenticationSessionResponse, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "isCurrentSession" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
12545
12998
  export declare type ArchiveResponseFragment = {
12546
12999
  __typename: "ArchiveResponse";
12547
13000
  } & Pick<ArchiveResponse, "archive" | "totalCount" | "databaseVersion" | "includesDependencies">;
@@ -12557,7 +13010,7 @@ export declare type TeamMembershipFragment = {
12557
13010
  };
12558
13011
  export declare type OrganizationDomainFragment = {
12559
13012
  __typename: "OrganizationDomain";
12560
- } & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "claimed"> & {
13013
+ } & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "authType" | "claimed"> & {
12561
13014
  creator?: Maybe<{
12562
13015
  __typename?: "User";
12563
13016
  } & Pick<User, "id">>;
@@ -12677,7 +13130,7 @@ export declare type GitLabSettingsFragment = {
12677
13130
  } & Pick<GitLabSettings, "expiresAt" | "url" | "readonly">;
12678
13131
  declare type NotificationSubscription_CustomViewNotificationSubscription_Fragment = {
12679
13132
  __typename: "CustomViewNotificationSubscription";
12680
- } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
13133
+ } & Pick<CustomViewNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12681
13134
  customView: {
12682
13135
  __typename?: "CustomView";
12683
13136
  } & Pick<CustomView, "id">;
@@ -12702,7 +13155,7 @@ declare type NotificationSubscription_CustomViewNotificationSubscription_Fragmen
12702
13155
  };
12703
13156
  declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
12704
13157
  __typename: "CycleNotificationSubscription";
12705
- } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
13158
+ } & Pick<CycleNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12706
13159
  customView?: Maybe<{
12707
13160
  __typename?: "CustomView";
12708
13161
  } & Pick<CustomView, "id">>;
@@ -12727,7 +13180,7 @@ declare type NotificationSubscription_CycleNotificationSubscription_Fragment = {
12727
13180
  };
12728
13181
  declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
12729
13182
  __typename: "LabelNotificationSubscription";
12730
- } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
13183
+ } & Pick<LabelNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12731
13184
  customView?: Maybe<{
12732
13185
  __typename?: "CustomView";
12733
13186
  } & Pick<CustomView, "id">>;
@@ -12752,7 +13205,7 @@ declare type NotificationSubscription_LabelNotificationSubscription_Fragment = {
12752
13205
  };
12753
13206
  declare type NotificationSubscription_ProjectNotificationSubscription_Fragment = {
12754
13207
  __typename: "ProjectNotificationSubscription";
12755
- } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
13208
+ } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12756
13209
  customView?: Maybe<{
12757
13210
  __typename?: "CustomView";
12758
13211
  } & Pick<CustomView, "id">>;
@@ -12777,7 +13230,7 @@ declare type NotificationSubscription_ProjectNotificationSubscription_Fragment =
12777
13230
  };
12778
13231
  declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
12779
13232
  __typename: "TeamNotificationSubscription";
12780
- } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
13233
+ } & Pick<TeamNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12781
13234
  customView?: Maybe<{
12782
13235
  __typename?: "CustomView";
12783
13236
  } & Pick<CustomView, "id">>;
@@ -12802,7 +13255,7 @@ declare type NotificationSubscription_TeamNotificationSubscription_Fragment = {
12802
13255
  };
12803
13256
  declare type NotificationSubscription_UserNotificationSubscription_Fragment = {
12804
13257
  __typename: "UserNotificationSubscription";
12805
- } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id" | "active"> & {
13258
+ } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
12806
13259
  customView?: Maybe<{
12807
13260
  __typename?: "CustomView";
12808
13261
  } & Pick<CustomView, "id">>;
@@ -12838,7 +13291,7 @@ export declare type OauthClientFragment = {
12838
13291
  };
12839
13292
  export declare type SlackChannelNameMappingFragment = {
12840
13293
  __typename: "SlackChannelNameMapping";
12841
- } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateTemplateId" | "autoCreateOnBotMention" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji" | "botAdded"> & {
13294
+ } & Pick<SlackChannelNameMapping, "id" | "name" | "autoCreateTemplateId" | "autoCreateOnBotMention" | "postCancellationUpdates" | "botAdded" | "isPrivate" | "isShared" | "autoCreateOnMessage" | "autoCreateOnEmoji"> & {
12842
13295
  teams: Array<{
12843
13296
  __typename?: "SlackAsksTeamSettings";
12844
13297
  } & SlackAsksTeamSettingsFragment>;
@@ -12874,7 +13327,7 @@ export declare type GithubRepoFragment = {
12874
13327
  } & Pick<GithubRepo, "id" | "name">;
12875
13328
  export declare type OauthClientApprovalFragment = {
12876
13329
  __typename: "OauthClientApproval";
12877
- } & Pick<OauthClientApproval, "updatedAt" | "requesterId" | "responderId" | "requestReason" | "denyReason" | "scopes" | "archivedAt" | "createdAt" | "id" | "oauthClientId">;
13330
+ } & Pick<OauthClientApproval, "updatedAt" | "requesterId" | "responderId" | "requestReason" | "denyReason" | "scopes" | "status" | "archivedAt" | "createdAt" | "id" | "oauthClientId">;
12878
13331
  export declare type SentrySettingsFragment = {
12879
13332
  __typename: "SentrySettings";
12880
13333
  } & Pick<SentrySettings, "organizationSlug">;
@@ -12886,14 +13339,14 @@ export declare type SharedSlackSettingsFragment = {
12886
13339
  } & Pick<SharedSlackSettings, "enterpriseName" | "teamId" | "teamName" | "shouldUnfurl">;
12887
13340
  export declare type SlackAsksSettingsFragment = {
12888
13341
  __typename: "SlackAsksSettings";
12889
- } & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName" | "shouldUnfurl"> & {
13342
+ } & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName" | "canAdministrate" | "shouldUnfurl"> & {
12890
13343
  slackChannelMapping?: Maybe<Array<{
12891
13344
  __typename?: "SlackChannelNameMapping";
12892
13345
  } & SlackChannelNameMappingFragment>>;
12893
13346
  };
12894
13347
  export declare type SlackPostSettingsFragment = {
12895
13348
  __typename: "SlackPostSettings";
12896
- } & Pick<SlackPostSettings, "channel" | "channelId" | "configurationUrl">;
13349
+ } & Pick<SlackPostSettings, "channel" | "channelId" | "channelType" | "configurationUrl">;
12897
13350
  export declare type IntegrationsSettingsFragment = {
12898
13351
  __typename: "IntegrationsSettings";
12899
13352
  } & Pick<IntegrationsSettings, "updatedAt" | "archivedAt" | "createdAt" | "id" | "slackIssueNewComment" | "slackIssueAddedToTriage" | "slackIssueCreated" | "slackProjectUpdateCreated" | "slackIssueSlaHighRisk" | "slackIssueSlaBreached" | "slackIssueStatusChangedDone" | "slackIssueStatusChangedAll" | "slackProjectUpdateCreatedToTeam" | "slackProjectUpdateCreatedToWorkspace"> & {
@@ -12984,10 +13437,10 @@ export declare type SlackAsksTeamSettingsFragment = {
12984
13437
  } & Pick<SlackAsksTeamSettings, "id" | "hasDefaultAsk">;
12985
13438
  export declare type AuthenticationSessionFragment = {
12986
13439
  __typename: "AuthenticationSession";
12987
- } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "name" | "operatingSystem" | "userAgent" | "browserType" | "lastActiveAt" | "id">;
13440
+ } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
12988
13441
  export declare type FavoriteFragment = {
12989
13442
  __typename: "Favorite";
12990
- } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
13443
+ } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "projectTab" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
12991
13444
  customView?: Maybe<{
12992
13445
  __typename?: "CustomView";
12993
13446
  } & Pick<CustomView, "id">>;
@@ -13027,7 +13480,11 @@ export declare type FavoriteFragment = {
13027
13480
  };
13028
13481
  export declare type ViewPreferencesFragment = {
13029
13482
  __typename: "ViewPreferences";
13030
- } & Pick<ViewPreferences, "updatedAt" | "archivedAt" | "createdAt" | "id" | "type" | "viewType">;
13483
+ } & Pick<ViewPreferences, "updatedAt" | "archivedAt" | "createdAt" | "id" | "type" | "viewType"> & {
13484
+ preferences: {
13485
+ __typename?: "ViewPreferencesValues";
13486
+ } & ViewPreferencesValuesFragment;
13487
+ };
13031
13488
  export declare type AuditEntryFragment = {
13032
13489
  __typename: "AuditEntry";
13033
13490
  } & Pick<AuditEntry, "requestInformation" | "metadata" | "countryCode" | "ip" | "actorId" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "type"> & {
@@ -13126,7 +13583,17 @@ export declare type AuthOauthClientWithTokensFragment = {
13126
13583
  };
13127
13584
  export declare type AuthOrganizationDomainFragment = {
13128
13585
  __typename: "AuthOrganizationDomain";
13129
- } & Pick<AuthOrganizationDomain, "id" | "claimed" | "name" | "organizationId" | "verified">;
13586
+ } & Pick<AuthOrganizationDomain, "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
13587
+ export declare type AuthOrganizationExistsPayloadFragment = {
13588
+ __typename: "AuthOrganizationExistsPayload";
13589
+ } & Pick<AuthOrganizationExistsPayload, "success" | "exists">;
13590
+ export declare type AuthOrganizationPayloadFragment = {
13591
+ __typename: "AuthOrganizationPayload";
13592
+ } & Pick<AuthOrganizationPayload, "success"> & {
13593
+ authOrganization: {
13594
+ __typename?: "AuthOrganization";
13595
+ } & AuthOrganizationFragment;
13596
+ };
13130
13597
  export declare type AuthResolverResponseFragment = {
13131
13598
  __typename: "AuthResolverResponse";
13132
13599
  } & Pick<AuthResolverResponse, "token" | "email" | "lastUsedOrganizationId" | "allowDomainAccess" | "id"> & {
@@ -13271,13 +13738,13 @@ export declare type DocumentSearchPayloadFragment = {
13271
13738
  };
13272
13739
  export declare type DocumentSearchResultFragment = {
13273
13740
  __typename: "DocumentSearchResult";
13274
- } & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13741
+ } & Pick<DocumentSearchResult, "metadata" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13275
13742
  lastAppliedTemplate?: Maybe<{
13276
13743
  __typename?: "Template";
13277
13744
  } & Pick<Template, "id">>;
13278
- project: {
13745
+ project?: Maybe<{
13279
13746
  __typename?: "Project";
13280
- } & Pick<Project, "id">;
13747
+ } & Pick<Project, "id">>;
13281
13748
  creator: {
13282
13749
  __typename?: "User";
13283
13750
  } & Pick<User, "id">;
@@ -13325,6 +13792,23 @@ export declare type EmojiPayloadFragment = {
13325
13792
  __typename?: "Emoji";
13326
13793
  } & Pick<Emoji, "id">;
13327
13794
  };
13795
+ export declare type EntityExternalLinkConnectionFragment = {
13796
+ __typename: "EntityExternalLinkConnection";
13797
+ } & {
13798
+ nodes: Array<{
13799
+ __typename?: "EntityExternalLink";
13800
+ } & EntityExternalLinkFragment>;
13801
+ pageInfo: {
13802
+ __typename?: "PageInfo";
13803
+ } & PageInfoFragment;
13804
+ };
13805
+ export declare type EntityExternalLinkPayloadFragment = {
13806
+ __typename: "EntityExternalLinkPayload";
13807
+ } & Pick<EntityExternalLinkPayload, "lastSyncId" | "success"> & {
13808
+ entityExternalLink: {
13809
+ __typename?: "EntityExternalLink";
13810
+ } & Pick<EntityExternalLink, "id">;
13811
+ };
13328
13812
  export declare type ExternalUserConnectionFragment = {
13329
13813
  __typename: "ExternalUserConnection";
13330
13814
  } & {
@@ -13552,7 +14036,7 @@ export declare type IssueSearchPayloadFragment = {
13552
14036
  };
13553
14037
  export declare type IssueSearchResultFragment = {
13554
14038
  __typename: "IssueSearchResult";
13555
- } & Pick<IssueSearchResult, "trashed" | "labelIds" | "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"> & {
14039
+ } & 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
14040
  botActor?: Maybe<{
13557
14041
  __typename?: "ActorBot";
13558
14042
  } & ActorBotFragment>;
@@ -13645,6 +14129,9 @@ declare type Node_DocumentContent_Fragment = {
13645
14129
  declare type Node_DocumentContentHistory_Fragment = {
13646
14130
  __typename: "DocumentContentHistory";
13647
14131
  } & Pick<DocumentContentHistory, "id">;
14132
+ declare type Node_DocumentNotification_Fragment = {
14133
+ __typename: "DocumentNotification";
14134
+ } & Pick<DocumentNotification, "id">;
13648
14135
  declare type Node_DocumentSearchResult_Fragment = {
13649
14136
  __typename: "DocumentSearchResult";
13650
14137
  } & Pick<DocumentSearchResult, "id">;
@@ -13654,6 +14141,9 @@ declare type Node_EmailIntakeAddress_Fragment = {
13654
14141
  declare type Node_Emoji_Fragment = {
13655
14142
  __typename: "Emoji";
13656
14143
  } & Pick<Emoji, "id">;
14144
+ declare type Node_EntityExternalLink_Fragment = {
14145
+ __typename: "EntityExternalLink";
14146
+ } & Pick<EntityExternalLink, "id">;
13657
14147
  declare type Node_ExternalUser_Fragment = {
13658
14148
  __typename: "ExternalUser";
13659
14149
  } & Pick<ExternalUser, "id">;
@@ -13747,6 +14237,9 @@ declare type Node_ProjectNotification_Fragment = {
13747
14237
  declare type Node_ProjectNotificationSubscription_Fragment = {
13748
14238
  __typename: "ProjectNotificationSubscription";
13749
14239
  } & Pick<ProjectNotificationSubscription, "id">;
14240
+ declare type Node_ProjectRelation_Fragment = {
14241
+ __typename: "ProjectRelation";
14242
+ } & Pick<ProjectRelation, "id">;
13750
14243
  declare type Node_ProjectSearchResult_Fragment = {
13751
14244
  __typename: "ProjectSearchResult";
13752
14245
  } & Pick<ProjectSearchResult, "id">;
@@ -13813,11 +14306,13 @@ declare type Node_WorkflowDefinition_Fragment = {
13813
14306
  declare type Node_WorkflowState_Fragment = {
13814
14307
  __typename: "WorkflowState";
13815
14308
  } & 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;
14309
+ 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_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_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
14310
  export declare type NotificationBatchActionPayloadFragment = {
13818
14311
  __typename: "NotificationBatchActionPayload";
13819
14312
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
13820
14313
  notifications: Array<({
14314
+ __typename?: "DocumentNotification";
14315
+ } & Notification_DocumentNotification_Fragment) | ({
13821
14316
  __typename?: "IssueNotification";
13822
14317
  } & Notification_IssueNotification_Fragment) | ({
13823
14318
  __typename?: "OauthClientApprovalNotification";
@@ -13829,6 +14324,8 @@ export declare type NotificationConnectionFragment = {
13829
14324
  __typename: "NotificationConnection";
13830
14325
  } & {
13831
14326
  nodes: Array<({
14327
+ __typename?: "DocumentNotification";
14328
+ } & Notification_DocumentNotification_Fragment) | ({
13832
14329
  __typename?: "IssueNotification";
13833
14330
  } & Notification_IssueNotification_Fragment) | ({
13834
14331
  __typename?: "OauthClientApprovalNotification";
@@ -13843,6 +14340,8 @@ export declare type NotificationPayloadFragment = {
13843
14340
  __typename: "NotificationPayload";
13844
14341
  } & Pick<NotificationPayload, "lastSyncId" | "success"> & {
13845
14342
  notification: ({
14343
+ __typename?: "DocumentNotification";
14344
+ } & Notification_DocumentNotification_Fragment) | ({
13846
14345
  __typename?: "IssueNotification";
13847
14346
  } & Notification_IssueNotification_Fragment) | ({
13848
14347
  __typename?: "OauthClientApprovalNotification";
@@ -13899,7 +14398,7 @@ export declare type OauthClientConnectionFragment = {
13899
14398
  };
13900
14399
  export declare type OauthTokenFragment = {
13901
14400
  __typename: "OauthToken";
13902
- } & Pick<OauthToken, "userId" | "clientId" | "createdAt" | "id" | "revokedAt"> & {
14401
+ } & Pick<OauthToken, "userId" | "scope" | "clientId" | "createdAt" | "id" | "revokedAt"> & {
13903
14402
  user: {
13904
14403
  __typename?: "AuthUser";
13905
14404
  } & AuthUserFragment;
@@ -13907,6 +14406,9 @@ export declare type OauthTokenFragment = {
13907
14406
  __typename?: "AuthOauthClient";
13908
14407
  } & AuthOauthClientFragment;
13909
14408
  };
14409
+ export declare type OrganizationAcceptedOrExpiredInviteDetailsPayloadFragment = {
14410
+ __typename: "OrganizationAcceptedOrExpiredInviteDetailsPayload";
14411
+ } & Pick<OrganizationAcceptedOrExpiredInviteDetailsPayload, "status">;
13910
14412
  export declare type OrganizationCancelDeletePayloadFragment = {
13911
14413
  __typename: "OrganizationCancelDeletePayload";
13912
14414
  } & Pick<OrganizationCancelDeletePayload, "success">;
@@ -13928,7 +14430,7 @@ export declare type OrganizationInviteConnectionFragment = {
13928
14430
  };
13929
14431
  export declare type OrganizationInviteFullDetailsPayloadFragment = {
13930
14432
  __typename: "OrganizationInviteFullDetailsPayload";
13931
- } & Pick<OrganizationInviteFullDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
14433
+ } & Pick<OrganizationInviteFullDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "email" | "inviter" | "status" | "organizationLogoUrl" | "role" | "createdAt" | "accepted" | "expired">;
13932
14434
  export declare type OrganizationInviteLinkDetailsPayloadFragment = {
13933
14435
  __typename: "OrganizationInviteLinkDetailsPayload";
13934
14436
  } & Pick<OrganizationInviteLinkDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "organizationRegion" | "organizationUrlKey" | "organizationLogoUrl">;
@@ -14005,6 +14507,23 @@ export declare type ProjectPayloadFragment = {
14005
14507
  __typename?: "Project";
14006
14508
  } & Pick<Project, "id">>;
14007
14509
  };
14510
+ export declare type ProjectRelationConnectionFragment = {
14511
+ __typename: "ProjectRelationConnection";
14512
+ } & {
14513
+ nodes: Array<{
14514
+ __typename?: "ProjectRelation";
14515
+ } & ProjectRelationFragment>;
14516
+ pageInfo: {
14517
+ __typename?: "PageInfo";
14518
+ } & PageInfoFragment;
14519
+ };
14520
+ export declare type ProjectRelationPayloadFragment = {
14521
+ __typename: "ProjectRelationPayload";
14522
+ } & Pick<ProjectRelationPayload, "lastSyncId" | "success"> & {
14523
+ projectRelation: {
14524
+ __typename?: "ProjectRelation";
14525
+ } & Pick<ProjectRelation, "id">;
14526
+ };
14008
14527
  export declare type ProjectSearchPayloadFragment = {
14009
14528
  __typename: "ProjectSearchPayload";
14010
14529
  } & Pick<ProjectSearchPayload, "totalCount"> & {
@@ -14033,6 +14552,9 @@ export declare type ProjectSearchResultFragment = {
14033
14552
  convertedFromIssue?: Maybe<{
14034
14553
  __typename?: "Issue";
14035
14554
  } & Pick<Issue, "id">>;
14555
+ status: {
14556
+ __typename?: "ProjectStatus";
14557
+ } & ProjectStatusFragment;
14036
14558
  creator?: Maybe<{
14037
14559
  __typename?: "User";
14038
14560
  } & Pick<User, "id">>;
@@ -14050,6 +14572,16 @@ export declare type ProjectSearchResultConnectionFragment = {
14050
14572
  __typename?: "PageInfo";
14051
14573
  } & PageInfoFragment;
14052
14574
  };
14575
+ export declare type ProjectStatusConnectionFragment = {
14576
+ __typename: "ProjectStatusConnection";
14577
+ } & {
14578
+ nodes: Array<{
14579
+ __typename?: "ProjectStatus";
14580
+ } & ProjectStatusFragment>;
14581
+ pageInfo: {
14582
+ __typename?: "PageInfo";
14583
+ } & PageInfoFragment;
14584
+ };
14053
14585
  export declare type ProjectUpdateConnectionFragment = {
14054
14586
  __typename: "ProjectUpdateConnection";
14055
14587
  } & {
@@ -14331,6 +14863,9 @@ export declare type ViewPreferencesPayloadFragment = {
14331
14863
  __typename?: "ViewPreferences";
14332
14864
  } & ViewPreferencesFragment;
14333
14865
  };
14866
+ export declare type ViewPreferencesValuesFragment = {
14867
+ __typename: "ViewPreferencesValues";
14868
+ } & Pick<ViewPreferencesValues, "issueGrouping" | "viewOrdering" | "showCompletedIssues">;
14334
14869
  export declare type WebhookConnectionFragment = {
14335
14870
  __typename: "WebhookConnection";
14336
14871
  } & {
@@ -14370,7 +14905,7 @@ export declare type WorkflowCronJobDefinitionConnectionFragment = {
14370
14905
  };
14371
14906
  export declare type WorkflowDefinitionFragment = {
14372
14907
  __typename: "WorkflowDefinition";
14373
- } & Pick<WorkflowDefinition, "activities" | "conditions" | "description" | "updatedAt" | "groupName" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "id" | "enabled"> & {
14908
+ } & Pick<WorkflowDefinition, "activities" | "conditions" | "description" | "updatedAt" | "groupName" | "name" | "triggerType" | "sortOrder" | "archivedAt" | "createdAt" | "trigger" | "type" | "userContextViewType" | "contextViewType" | "id" | "enabled"> & {
14374
14909
  customView?: Maybe<{
14375
14910
  __typename?: "CustomView";
14376
14911
  } & Pick<CustomView, "id">>;
@@ -14867,6 +15402,84 @@ export declare type CustomView_IssuesQuery = {
14867
15402
  } & IssueConnectionFragment;
14868
15403
  };
14869
15404
  };
15405
+ export declare type CustomView_OrganizationViewPreferencesQueryVariables = Exact<{
15406
+ id: Scalars["String"];
15407
+ }>;
15408
+ export declare type CustomView_OrganizationViewPreferencesQuery = {
15409
+ __typename?: "Query";
15410
+ } & {
15411
+ customView: {
15412
+ __typename?: "CustomView";
15413
+ } & {
15414
+ organizationViewPreferences?: Maybe<{
15415
+ __typename?: "ViewPreferences";
15416
+ } & ViewPreferencesFragment>;
15417
+ };
15418
+ };
15419
+ export declare type CustomView_OrganizationViewPreferences_PreferencesQueryVariables = Exact<{
15420
+ id: Scalars["String"];
15421
+ }>;
15422
+ export declare type CustomView_OrganizationViewPreferences_PreferencesQuery = {
15423
+ __typename?: "Query";
15424
+ } & {
15425
+ customView: {
15426
+ __typename?: "CustomView";
15427
+ } & {
15428
+ organizationViewPreferences?: Maybe<{
15429
+ __typename?: "ViewPreferences";
15430
+ } & {
15431
+ preferences: {
15432
+ __typename?: "ViewPreferencesValues";
15433
+ } & ViewPreferencesValuesFragment;
15434
+ }>;
15435
+ };
15436
+ };
15437
+ export declare type CustomView_UserViewPreferencesQueryVariables = Exact<{
15438
+ id: Scalars["String"];
15439
+ }>;
15440
+ export declare type CustomView_UserViewPreferencesQuery = {
15441
+ __typename?: "Query";
15442
+ } & {
15443
+ customView: {
15444
+ __typename?: "CustomView";
15445
+ } & {
15446
+ userViewPreferences?: Maybe<{
15447
+ __typename?: "ViewPreferences";
15448
+ } & ViewPreferencesFragment>;
15449
+ };
15450
+ };
15451
+ export declare type CustomView_UserViewPreferences_PreferencesQueryVariables = Exact<{
15452
+ id: Scalars["String"];
15453
+ }>;
15454
+ export declare type CustomView_UserViewPreferences_PreferencesQuery = {
15455
+ __typename?: "Query";
15456
+ } & {
15457
+ customView: {
15458
+ __typename?: "CustomView";
15459
+ } & {
15460
+ userViewPreferences?: Maybe<{
15461
+ __typename?: "ViewPreferences";
15462
+ } & {
15463
+ preferences: {
15464
+ __typename?: "ViewPreferencesValues";
15465
+ } & ViewPreferencesValuesFragment;
15466
+ }>;
15467
+ };
15468
+ };
15469
+ export declare type CustomView_ViewPreferencesValuesQueryVariables = Exact<{
15470
+ id: Scalars["String"];
15471
+ }>;
15472
+ export declare type CustomView_ViewPreferencesValuesQuery = {
15473
+ __typename?: "Query";
15474
+ } & {
15475
+ customView: {
15476
+ __typename?: "CustomView";
15477
+ } & {
15478
+ viewPreferencesValues?: Maybe<{
15479
+ __typename?: "ViewPreferencesValues";
15480
+ } & ViewPreferencesValuesFragment>;
15481
+ };
15482
+ };
14870
15483
  export declare type CustomViewHasSubscribersQueryVariables = Exact<{
14871
15484
  id: Scalars["String"];
14872
15485
  }>;
@@ -15021,6 +15634,16 @@ export declare type EmojisQuery = {
15021
15634
  __typename?: "EmojiConnection";
15022
15635
  } & EmojiConnectionFragment;
15023
15636
  };
15637
+ export declare type EntityExternalLinkQueryVariables = Exact<{
15638
+ id: Scalars["String"];
15639
+ }>;
15640
+ export declare type EntityExternalLinkQuery = {
15641
+ __typename?: "Query";
15642
+ } & {
15643
+ entityExternalLink: {
15644
+ __typename?: "EntityExternalLink";
15645
+ } & EntityExternalLinkFragment;
15646
+ };
15024
15647
  export declare type ExternalUserQueryVariables = Exact<{
15025
15648
  id: Scalars["String"];
15026
15649
  }>;
@@ -15734,6 +16357,8 @@ export declare type NotificationQuery = {
15734
16357
  __typename?: "Query";
15735
16358
  } & {
15736
16359
  notification: ({
16360
+ __typename?: "DocumentNotification";
16361
+ } & Notification_DocumentNotification_Fragment) | ({
15737
16362
  __typename?: "IssueNotification";
15738
16363
  } & Notification_IssueNotification_Fragment) | ({
15739
16364
  __typename?: "OauthClientApprovalNotification";
@@ -16083,6 +16708,20 @@ export declare type Project_ProjectUpdatesQuery = {
16083
16708
  } & ProjectUpdateConnectionFragment;
16084
16709
  };
16085
16710
  };
16711
+ export declare type Project_StatusQueryVariables = Exact<{
16712
+ id: Scalars["String"];
16713
+ }>;
16714
+ export declare type Project_StatusQuery = {
16715
+ __typename?: "Query";
16716
+ } & {
16717
+ project: {
16718
+ __typename?: "Project";
16719
+ } & {
16720
+ status: {
16721
+ __typename?: "ProjectStatus";
16722
+ } & ProjectStatusFragment;
16723
+ };
16724
+ };
16086
16725
  export declare type Project_TeamsQueryVariables = Exact<{
16087
16726
  id: Scalars["String"];
16088
16727
  after?: Maybe<Scalars["String"]>;
@@ -16186,6 +16825,31 @@ export declare type ProjectMilestonesQuery = {
16186
16825
  __typename?: "ProjectMilestoneConnection";
16187
16826
  } & ProjectMilestoneConnectionFragment;
16188
16827
  };
16828
+ export declare type ProjectRelationQueryVariables = Exact<{
16829
+ id: Scalars["String"];
16830
+ }>;
16831
+ export declare type ProjectRelationQuery = {
16832
+ __typename?: "Query";
16833
+ } & {
16834
+ projectRelation: {
16835
+ __typename?: "ProjectRelation";
16836
+ } & ProjectRelationFragment;
16837
+ };
16838
+ export declare type ProjectRelationsQueryVariables = Exact<{
16839
+ after?: Maybe<Scalars["String"]>;
16840
+ before?: Maybe<Scalars["String"]>;
16841
+ first?: Maybe<Scalars["Int"]>;
16842
+ includeArchived?: Maybe<Scalars["Boolean"]>;
16843
+ last?: Maybe<Scalars["Int"]>;
16844
+ orderBy?: Maybe<PaginationOrderBy>;
16845
+ }>;
16846
+ export declare type ProjectRelationsQuery = {
16847
+ __typename?: "Query";
16848
+ } & {
16849
+ projectRelations: {
16850
+ __typename?: "ProjectRelationConnection";
16851
+ } & ProjectRelationConnectionFragment;
16852
+ };
16189
16853
  export declare type ProjectUpdateQueryVariables = Exact<{
16190
16854
  id: Scalars["String"];
16191
16855
  }>;
@@ -16196,6 +16860,27 @@ export declare type ProjectUpdateQuery = {
16196
16860
  __typename?: "ProjectUpdate";
16197
16861
  } & ProjectUpdateFragment;
16198
16862
  };
16863
+ export declare type ProjectUpdate_CommentsQueryVariables = Exact<{
16864
+ id: Scalars["String"];
16865
+ after?: Maybe<Scalars["String"]>;
16866
+ before?: Maybe<Scalars["String"]>;
16867
+ filter?: Maybe<CommentFilter>;
16868
+ first?: Maybe<Scalars["Int"]>;
16869
+ includeArchived?: Maybe<Scalars["Boolean"]>;
16870
+ last?: Maybe<Scalars["Int"]>;
16871
+ orderBy?: Maybe<PaginationOrderBy>;
16872
+ }>;
16873
+ export declare type ProjectUpdate_CommentsQuery = {
16874
+ __typename?: "Query";
16875
+ } & {
16876
+ projectUpdate: {
16877
+ __typename?: "ProjectUpdate";
16878
+ } & {
16879
+ comments: {
16880
+ __typename?: "CommentConnection";
16881
+ } & CommentConnectionFragment;
16882
+ };
16883
+ };
16199
16884
  export declare type ProjectUpdateInteractionQueryVariables = Exact<{
16200
16885
  id: Scalars["String"];
16201
16886
  }>;
@@ -17228,6 +17913,7 @@ export declare type AttachmentLinkSlackMutationVariables = Exact<{
17228
17913
  id?: Maybe<Scalars["String"]>;
17229
17914
  issueId: Scalars["String"];
17230
17915
  latest?: Maybe<Scalars["String"]>;
17916
+ syncToCommentThread?: Maybe<Scalars["Boolean"]>;
17231
17917
  title?: Maybe<Scalars["String"]>;
17232
17918
  ts?: Maybe<Scalars["String"]>;
17233
17919
  url: Scalars["String"];
@@ -17568,6 +18254,37 @@ export declare type DeleteEmojiMutation = {
17568
18254
  __typename?: "DeletePayload";
17569
18255
  } & DeletePayloadFragment;
17570
18256
  };
18257
+ export declare type CreateEntityExternalLinkMutationVariables = Exact<{
18258
+ input: EntityExternalLinkCreateInput;
18259
+ }>;
18260
+ export declare type CreateEntityExternalLinkMutation = {
18261
+ __typename?: "Mutation";
18262
+ } & {
18263
+ entityExternalLinkCreate: {
18264
+ __typename?: "EntityExternalLinkPayload";
18265
+ } & EntityExternalLinkPayloadFragment;
18266
+ };
18267
+ export declare type DeleteEntityExternalLinkMutationVariables = Exact<{
18268
+ id: Scalars["String"];
18269
+ }>;
18270
+ export declare type DeleteEntityExternalLinkMutation = {
18271
+ __typename?: "Mutation";
18272
+ } & {
18273
+ entityExternalLinkDelete: {
18274
+ __typename?: "DeletePayload";
18275
+ } & DeletePayloadFragment;
18276
+ };
18277
+ export declare type UpdateEntityExternalLinkMutationVariables = Exact<{
18278
+ id: Scalars["String"];
18279
+ input: EntityExternalLinkUpdateInput;
18280
+ }>;
18281
+ export declare type UpdateEntityExternalLinkMutation = {
18282
+ __typename?: "Mutation";
18283
+ } & {
18284
+ entityExternalLinkUpdate: {
18285
+ __typename?: "EntityExternalLinkPayload";
18286
+ } & EntityExternalLinkPayloadFragment;
18287
+ };
17571
18288
  export declare type CreateFavoriteMutationVariables = Exact<{
17572
18289
  input: FavoriteCreateInput;
17573
18290
  }>;
@@ -18242,6 +18959,7 @@ export declare type DeleteIssueLabelMutation = {
18242
18959
  export declare type UpdateIssueLabelMutationVariables = Exact<{
18243
18960
  id: Scalars["String"];
18244
18961
  input: IssueLabelUpdateInput;
18962
+ replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
18245
18963
  }>;
18246
18964
  export declare type UpdateIssueLabelMutation = {
18247
18965
  __typename?: "Mutation";
@@ -19292,6 +20010,7 @@ export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragmen
19292
20010
  export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<InitiativeArchivePayloadFragment, unknown>;
19293
20011
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
19294
20012
  export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
20013
+ export declare const DocumentNotificationFragmentDoc: DocumentNode<DocumentNotificationFragment, unknown>;
19295
20014
  export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
19296
20015
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
19297
20016
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
@@ -19313,6 +20032,7 @@ export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationF
19313
20032
  export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
19314
20033
  export declare const AuthEmailIntakeAddressFragmentDoc: DocumentNode<AuthEmailIntakeAddressFragment, unknown>;
19315
20034
  export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
20035
+ export declare const ProjectStatusFragmentDoc: DocumentNode<ProjectStatusFragment, unknown>;
19316
20036
  export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
19317
20037
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
19318
20038
  export declare const AuthOauthClientWithScopeFragmentDoc: DocumentNode<AuthOauthClientWithScopeFragment, unknown>;
@@ -19369,6 +20089,8 @@ export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFra
19369
20089
  export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
19370
20090
  export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
19371
20091
  export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
20092
+ export declare const AuthOrganizationExistsPayloadFragmentDoc: DocumentNode<AuthOrganizationExistsPayloadFragment, unknown>;
20093
+ export declare const AuthOrganizationPayloadFragmentDoc: DocumentNode<AuthOrganizationPayloadFragment, unknown>;
19372
20094
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
19373
20095
  export declare const AuthSuccessPayloadFragmentDoc: DocumentNode<AuthSuccessPayloadFragment, unknown>;
19374
20096
  export declare const AuthorizedApplicationBaseFragmentDoc: DocumentNode<AuthorizedApplicationBaseFragment, unknown>;
@@ -19380,6 +20102,8 @@ export declare const CompanyConnectionFragmentDoc: DocumentNode<CompanyConnectio
19380
20102
  export declare const ContactPayloadFragmentDoc: DocumentNode<ContactPayloadFragment, unknown>;
19381
20103
  export declare const CreateCsvExportReportPayloadFragmentDoc: DocumentNode<CreateCsvExportReportPayloadFragment, unknown>;
19382
20104
  export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<CreateOrJoinOrganizationResponseFragment, unknown>;
20105
+ export declare const ViewPreferencesValuesFragmentDoc: DocumentNode<ViewPreferencesValuesFragment, unknown>;
20106
+ export declare const ViewPreferencesFragmentDoc: DocumentNode<ViewPreferencesFragment, unknown>;
19383
20107
  export declare const CustomViewFragmentDoc: DocumentNode<CustomViewFragment, unknown>;
19384
20108
  export declare const CustomViewConnectionFragmentDoc: DocumentNode<CustomViewConnectionFragment, unknown>;
19385
20109
  export declare const CustomViewHasSubscribersPayloadFragmentDoc: DocumentNode<CustomViewHasSubscribersPayloadFragment, unknown>;
@@ -19404,6 +20128,9 @@ export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentN
19404
20128
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
19405
20129
  export declare const EmojiConnectionFragmentDoc: DocumentNode<EmojiConnectionFragment, unknown>;
19406
20130
  export declare const EmojiPayloadFragmentDoc: DocumentNode<EmojiPayloadFragment, unknown>;
20131
+ export declare const EntityExternalLinkFragmentDoc: DocumentNode<EntityExternalLinkFragment, unknown>;
20132
+ export declare const EntityExternalLinkConnectionFragmentDoc: DocumentNode<EntityExternalLinkConnectionFragment, unknown>;
20133
+ export declare const EntityExternalLinkPayloadFragmentDoc: DocumentNode<EntityExternalLinkPayloadFragment, unknown>;
19407
20134
  export declare const ExternalUserFragmentDoc: DocumentNode<ExternalUserFragment, unknown>;
19408
20135
  export declare const ExternalUserConnectionFragmentDoc: DocumentNode<ExternalUserConnectionFragment, unknown>;
19409
20136
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
@@ -19435,6 +20162,7 @@ export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<Issue
19435
20162
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
19436
20163
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
19437
20164
  export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
20165
+ export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
19438
20166
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
19439
20167
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
19440
20168
  export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
@@ -19459,6 +20187,7 @@ export declare const NotificationSubscriptionConnectionFragmentDoc: DocumentNode
19459
20187
  export declare const NotificationSubscriptionPayloadFragmentDoc: DocumentNode<NotificationSubscriptionPayloadFragment, unknown>;
19460
20188
  export declare const OauthClientFragmentDoc: DocumentNode<OauthClientFragment, unknown>;
19461
20189
  export declare const OauthClientConnectionFragmentDoc: DocumentNode<OauthClientConnectionFragment, unknown>;
20190
+ export declare const OrganizationAcceptedOrExpiredInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationAcceptedOrExpiredInviteDetailsPayloadFragment, unknown>;
19462
20191
  export declare const OrganizationCancelDeletePayloadFragmentDoc: DocumentNode<OrganizationCancelDeletePayloadFragment, unknown>;
19463
20192
  export declare const OrganizationDeletePayloadFragmentDoc: DocumentNode<OrganizationDeletePayloadFragment, unknown>;
19464
20193
  export declare const OrganizationExistsPayloadFragmentDoc: DocumentNode<OrganizationExistsPayloadFragment, unknown>;
@@ -19480,9 +20209,13 @@ export declare const ProjectMilestoneFragmentDoc: DocumentNode<ProjectMilestoneF
19480
20209
  export declare const ProjectMilestoneConnectionFragmentDoc: DocumentNode<ProjectMilestoneConnectionFragment, unknown>;
19481
20210
  export declare const ProjectMilestonePayloadFragmentDoc: DocumentNode<ProjectMilestonePayloadFragment, unknown>;
19482
20211
  export declare const ProjectPayloadFragmentDoc: DocumentNode<ProjectPayloadFragment, unknown>;
20212
+ export declare const ProjectRelationFragmentDoc: DocumentNode<ProjectRelationFragment, unknown>;
20213
+ export declare const ProjectRelationConnectionFragmentDoc: DocumentNode<ProjectRelationConnectionFragment, unknown>;
20214
+ export declare const ProjectRelationPayloadFragmentDoc: DocumentNode<ProjectRelationPayloadFragment, unknown>;
19483
20215
  export declare const ProjectSearchResultFragmentDoc: DocumentNode<ProjectSearchResultFragment, unknown>;
19484
20216
  export declare const ProjectSearchPayloadFragmentDoc: DocumentNode<ProjectSearchPayloadFragment, unknown>;
19485
20217
  export declare const ProjectSearchResultConnectionFragmentDoc: DocumentNode<ProjectSearchResultConnectionFragment, unknown>;
20218
+ export declare const ProjectStatusConnectionFragmentDoc: DocumentNode<ProjectStatusConnectionFragment, unknown>;
19486
20219
  export declare const ProjectUpdateFragmentDoc: DocumentNode<ProjectUpdateFragment, unknown>;
19487
20220
  export declare const ProjectUpdateConnectionFragmentDoc: DocumentNode<ProjectUpdateConnectionFragment, unknown>;
19488
20221
  export declare const ProjectUpdateInteractionFragmentDoc: DocumentNode<ProjectUpdateInteractionFragment, unknown>;
@@ -19531,13 +20264,11 @@ export declare const UploadFileHeaderFragmentDoc: DocumentNode<UploadFileHeaderF
19531
20264
  export declare const UploadFileFragmentDoc: DocumentNode<UploadFileFragment, unknown>;
19532
20265
  export declare const UploadPayloadFragmentDoc: DocumentNode<UploadPayloadFragment, unknown>;
19533
20266
  export declare const UserAdminPayloadFragmentDoc: DocumentNode<UserAdminPayloadFragment, unknown>;
19534
- export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
19535
20267
  export declare const UserConnectionFragmentDoc: DocumentNode<UserConnectionFragment, unknown>;
19536
20268
  export declare const UserPayloadFragmentDoc: DocumentNode<UserPayloadFragment, unknown>;
19537
20269
  export declare const UserSettingsFlagPayloadFragmentDoc: DocumentNode<UserSettingsFlagPayloadFragment, unknown>;
19538
20270
  export declare const UserSettingsFlagsResetPayloadFragmentDoc: DocumentNode<UserSettingsFlagsResetPayloadFragment, unknown>;
19539
20271
  export declare const UserSettingsPayloadFragmentDoc: DocumentNode<UserSettingsPayloadFragment, unknown>;
19540
- export declare const ViewPreferencesFragmentDoc: DocumentNode<ViewPreferencesFragment, unknown>;
19541
20272
  export declare const ViewPreferencesPayloadFragmentDoc: DocumentNode<ViewPreferencesPayloadFragment, unknown>;
19542
20273
  export declare const WebhookFragmentDoc: DocumentNode<WebhookFragment, unknown>;
19543
20274
  export declare const WebhookConnectionFragmentDoc: DocumentNode<WebhookConnectionFragment, unknown>;
@@ -19748,6 +20479,21 @@ export declare const CustomView_IssuesDocument: DocumentNode<CustomView_IssuesQu
19748
20479
  orderBy?: Maybe<PaginationOrderBy> | undefined;
19749
20480
  sort?: Maybe<IssueSortInput | IssueSortInput[]> | undefined;
19750
20481
  }>>;
20482
+ export declare const CustomView_OrganizationViewPreferencesDocument: DocumentNode<CustomView_OrganizationViewPreferencesQuery, Exact<{
20483
+ id: Scalars["String"];
20484
+ }>>;
20485
+ export declare const CustomView_OrganizationViewPreferences_PreferencesDocument: DocumentNode<CustomView_OrganizationViewPreferences_PreferencesQuery, Exact<{
20486
+ id: Scalars["String"];
20487
+ }>>;
20488
+ export declare const CustomView_UserViewPreferencesDocument: DocumentNode<CustomView_UserViewPreferencesQuery, Exact<{
20489
+ id: Scalars["String"];
20490
+ }>>;
20491
+ export declare const CustomView_UserViewPreferences_PreferencesDocument: DocumentNode<CustomView_UserViewPreferences_PreferencesQuery, Exact<{
20492
+ id: Scalars["String"];
20493
+ }>>;
20494
+ export declare const CustomView_ViewPreferencesValuesDocument: DocumentNode<CustomView_ViewPreferencesValuesQuery, Exact<{
20495
+ id: Scalars["String"];
20496
+ }>>;
19751
20497
  export declare const CustomViewHasSubscribersDocument: DocumentNode<CustomViewHasSubscribersQuery, Exact<{
19752
20498
  id: Scalars["String"];
19753
20499
  }>>;
@@ -19817,6 +20563,9 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
19817
20563
  last?: Maybe<number> | undefined;
19818
20564
  orderBy?: Maybe<PaginationOrderBy> | undefined;
19819
20565
  }>>;
20566
+ export declare const EntityExternalLinkDocument: DocumentNode<EntityExternalLinkQuery, Exact<{
20567
+ id: Scalars["String"];
20568
+ }>>;
19820
20569
  export declare const ExternalUserDocument: DocumentNode<ExternalUserQuery, Exact<{
19821
20570
  id: Scalars["String"];
19822
20571
  }>>;
@@ -20278,6 +21027,9 @@ export declare const Project_ProjectUpdatesDocument: DocumentNode<Project_Projec
20278
21027
  last?: Maybe<number> | undefined;
20279
21028
  orderBy?: Maybe<PaginationOrderBy> | undefined;
20280
21029
  }>>;
21030
+ export declare const Project_StatusDocument: DocumentNode<Project_StatusQuery, Exact<{
21031
+ id: Scalars["String"];
21032
+ }>>;
20281
21033
  export declare const Project_TeamsDocument: DocumentNode<Project_TeamsQuery, Exact<{
20282
21034
  id: Scalars["String"];
20283
21035
  after?: Maybe<string> | undefined;
@@ -20324,9 +21076,30 @@ export declare const ProjectMilestonesDocument: DocumentNode<ProjectMilestonesQu
20324
21076
  last?: Maybe<number> | undefined;
20325
21077
  orderBy?: Maybe<PaginationOrderBy> | undefined;
20326
21078
  }>>;
21079
+ export declare const ProjectRelationDocument: DocumentNode<ProjectRelationQuery, Exact<{
21080
+ id: Scalars["String"];
21081
+ }>>;
21082
+ export declare const ProjectRelationsDocument: DocumentNode<ProjectRelationsQuery, Exact<{
21083
+ after?: Maybe<string> | undefined;
21084
+ before?: Maybe<string> | undefined;
21085
+ first?: Maybe<number> | undefined;
21086
+ includeArchived?: Maybe<boolean> | undefined;
21087
+ last?: Maybe<number> | undefined;
21088
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
21089
+ }>>;
20327
21090
  export declare const ProjectUpdateDocument: DocumentNode<ProjectUpdateQuery, Exact<{
20328
21091
  id: Scalars["String"];
20329
21092
  }>>;
21093
+ export declare const ProjectUpdate_CommentsDocument: DocumentNode<ProjectUpdate_CommentsQuery, Exact<{
21094
+ id: Scalars["String"];
21095
+ after?: Maybe<string> | undefined;
21096
+ before?: Maybe<string> | undefined;
21097
+ filter?: Maybe<CommentFilter> | undefined;
21098
+ first?: Maybe<number> | undefined;
21099
+ includeArchived?: Maybe<boolean> | undefined;
21100
+ last?: Maybe<number> | undefined;
21101
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
21102
+ }>>;
20330
21103
  export declare const ProjectUpdateInteractionDocument: DocumentNode<ProjectUpdateInteractionQuery, Exact<{
20331
21104
  id: Scalars["String"];
20332
21105
  }>>;
@@ -20812,6 +21585,7 @@ export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSla
20812
21585
  id?: Maybe<string> | undefined;
20813
21586
  issueId: Scalars["String"];
20814
21587
  latest?: Maybe<string> | undefined;
21588
+ syncToCommentThread?: Maybe<boolean> | undefined;
20815
21589
  title?: Maybe<string> | undefined;
20816
21590
  ts?: Maybe<string> | undefined;
20817
21591
  url: Scalars["String"];
@@ -20928,6 +21702,16 @@ export declare const CreateEmojiDocument: DocumentNode<CreateEmojiMutation, Exac
20928
21702
  export declare const DeleteEmojiDocument: DocumentNode<DeleteEmojiMutation, Exact<{
20929
21703
  id: Scalars["String"];
20930
21704
  }>>;
21705
+ export declare const CreateEntityExternalLinkDocument: DocumentNode<CreateEntityExternalLinkMutation, Exact<{
21706
+ input: EntityExternalLinkCreateInput;
21707
+ }>>;
21708
+ export declare const DeleteEntityExternalLinkDocument: DocumentNode<DeleteEntityExternalLinkMutation, Exact<{
21709
+ id: Scalars["String"];
21710
+ }>>;
21711
+ export declare const UpdateEntityExternalLinkDocument: DocumentNode<UpdateEntityExternalLinkMutation, Exact<{
21712
+ id: Scalars["String"];
21713
+ input: EntityExternalLinkUpdateInput;
21714
+ }>>;
20931
21715
  export declare const CreateFavoriteDocument: DocumentNode<CreateFavoriteMutation, Exact<{
20932
21716
  input: FavoriteCreateInput;
20933
21717
  }>>;
@@ -21189,6 +21973,7 @@ export declare const DeleteIssueLabelDocument: DocumentNode<DeleteIssueLabelMuta
21189
21973
  export declare const UpdateIssueLabelDocument: DocumentNode<UpdateIssueLabelMutation, Exact<{
21190
21974
  id: Scalars["String"];
21191
21975
  input: IssueLabelUpdateInput;
21976
+ replaceTeamLabels?: Maybe<boolean> | undefined;
21192
21977
  }>>;
21193
21978
  export declare const CreateIssueRelationDocument: DocumentNode<CreateIssueRelationMutation, Exact<{
21194
21979
  input: IssueRelationCreateInput;