@linear/sdk 2.6.0 → 4.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.
@@ -105,6 +105,18 @@ export declare type ArchivePayload = {
105
105
  /** Whether the operation was successful. */
106
106
  success: Scalars["Boolean"];
107
107
  };
108
+ /** Contains requested archived model objects. */
109
+ export declare type ArchiveResponse = {
110
+ __typename?: "ArchiveResponse";
111
+ /** A JSON serialized collection of model objects loaded from the archive */
112
+ archive: Scalars["String"];
113
+ /** The version of the remote database. Incremented by 1 for each migration run on the database. */
114
+ databaseVersion: Scalars["Float"];
115
+ /** Whether the dependencies for the model objects are included in the archive. */
116
+ includesDependencies: Scalars["Boolean"];
117
+ /** The total number of entities in the archive. */
118
+ totalCount: Scalars["Float"];
119
+ };
108
120
  /** Issue attachment (e.g. support ticket, pull request). */
109
121
  export declare type Attachment = Node & {
110
122
  __typename?: "Attachment";
@@ -125,7 +137,7 @@ export declare type Attachment = Node & {
125
137
  /** Information about the source which created the attachment. */
126
138
  source?: Maybe<Scalars["JSONObject"]>;
127
139
  /** An accessor helper to source.type, defines the source type of the attachment. */
128
- sourceType?: Maybe<Scalars["JSONObject"]>;
140
+ sourceType?: Maybe<Scalars["String"]>;
129
141
  /** Content for the subtitle line in the Linear attachment widget. */
130
142
  subtitle?: Maybe<Scalars["String"]>;
131
143
  /** Content for the title line in the Linear attachment widget. */
@@ -376,6 +388,8 @@ export declare type Comment = Node & {
376
388
  createdAt: Scalars["DateTime"];
377
389
  /** The time user edited the comment. */
378
390
  editedAt?: Maybe<Scalars["DateTime"]>;
391
+ /** [ALPHA] The external user who wrote the comment. */
392
+ externalUser?: Maybe<ExternalUser>;
379
393
  /** The unique identifier of the entity. */
380
394
  id: Scalars["ID"];
381
395
  /** The issue that the comment is associated with. */
@@ -583,6 +597,10 @@ export declare type CustomView = Node & {
583
597
  name: Scalars["String"];
584
598
  /** The organization of the custom view. */
585
599
  organization: Organization;
600
+ /** The user who owns the custom view. */
601
+ owner: User;
602
+ /** [ALPHA] The filter applied to projects in the custom view. */
603
+ projectFilterData?: Maybe<Scalars["JSONObject"]>;
586
604
  /** Whether the custom view is shared with everyone in the organization. */
587
605
  shared: Scalars["Boolean"];
588
606
  /** The team associated with the custom view. */
@@ -615,6 +633,10 @@ export declare type CustomViewCreateInput = {
615
633
  id?: Maybe<Scalars["String"]>;
616
634
  /** The name of the custom view. */
617
635
  name: Scalars["String"];
636
+ /** The owner of the custom view */
637
+ ownerId?: Maybe<Scalars["String"]>;
638
+ /** [ALPHA] The project filter applied to issues in the custom view. */
639
+ projectFilterData?: Maybe<Scalars["JSONObject"]>;
618
640
  /** Whether the custom view is shared with everyone in the organization. */
619
641
  shared?: Maybe<Scalars["Boolean"]>;
620
642
  /** The id of the team associated with the custom view. */
@@ -635,6 +657,15 @@ export declare type CustomViewPayload = {
635
657
  /** Whether the operation was successful. */
636
658
  success: Scalars["Boolean"];
637
659
  };
660
+ export declare type CustomViewSuggestionPayload = {
661
+ __typename?: "CustomViewSuggestionPayload";
662
+ /** The suggested view description. */
663
+ description?: Maybe<Scalars["String"]>;
664
+ /** The suggested view icon. */
665
+ icon?: Maybe<Scalars["String"]>;
666
+ /** The suggested view name. */
667
+ name?: Maybe<Scalars["String"]>;
668
+ };
638
669
  export declare type CustomViewUpdateInput = {
639
670
  /** The color of the icon of the custom view. */
640
671
  color?: Maybe<Scalars["String"]>;
@@ -648,6 +679,10 @@ export declare type CustomViewUpdateInput = {
648
679
  icon?: Maybe<Scalars["String"]>;
649
680
  /** The name of the custom view. */
650
681
  name?: Maybe<Scalars["String"]>;
682
+ /** The owner of the custom view */
683
+ ownerId?: Maybe<Scalars["String"]>;
684
+ /** [ALPHA] The project filter applied to issues in the custom view. */
685
+ projectFilterData?: Maybe<Scalars["JSONObject"]>;
651
686
  /** Whether the custom view is shared with everyone in the organization. */
652
687
  shared?: Maybe<Scalars["Boolean"]>;
653
688
  /** The id of the team associated with the custom view. */
@@ -880,6 +915,28 @@ export declare type DocumentConnection = {
880
915
  nodes: Array<Document>;
881
916
  pageInfo: PageInfo;
882
917
  };
918
+ /** A document content for a project. */
919
+ export declare type DocumentContent = Node & {
920
+ __typename?: "DocumentContent";
921
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
922
+ archivedAt?: Maybe<Scalars["DateTime"]>;
923
+ /** The document content in markdown format. */
924
+ content?: Maybe<Scalars["String"]>;
925
+ /** The document content as JSON. */
926
+ contentData?: Maybe<Scalars["JSONObject"]>;
927
+ /** The time at which the entity was created. */
928
+ createdAt: Scalars["DateTime"];
929
+ /** The unique identifier of the entity. */
930
+ id: Scalars["ID"];
931
+ /** The issue that the document is associated with. */
932
+ issue?: Maybe<Issue>;
933
+ /**
934
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
935
+ * 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
936
+ * been updated after creation.
937
+ */
938
+ updatedAt: Scalars["DateTime"];
939
+ };
883
940
  export declare type DocumentCreateInput = {
884
941
  /** The color of the icon. */
885
942
  color?: Maybe<Scalars["String"]>;
@@ -911,6 +968,63 @@ export declare type DocumentPayload = {
911
968
  /** Whether the operation was successful. */
912
969
  success: Scalars["Boolean"];
913
970
  };
971
+ export declare type DocumentSearchPayload = {
972
+ __typename?: "DocumentSearchPayload";
973
+ /** Archived entities matching the search term along with all their dependencies. */
974
+ archivePayload: ArchiveResponse;
975
+ edges: Array<DocumentSearchResultEdge>;
976
+ nodes: Array<DocumentSearchResult>;
977
+ pageInfo: PageInfo;
978
+ /** Total number of results for query without filters applied. */
979
+ totalCount: Scalars["Float"];
980
+ };
981
+ export declare type DocumentSearchResult = Node & {
982
+ __typename?: "DocumentSearchResult";
983
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
984
+ archivedAt?: Maybe<Scalars["DateTime"]>;
985
+ /** The color of the icon. */
986
+ color?: Maybe<Scalars["String"]>;
987
+ /** The document content in markdown format. */
988
+ content?: Maybe<Scalars["String"]>;
989
+ /** The document content as JSON. */
990
+ contentData?: Maybe<Scalars["JSONObject"]>;
991
+ /** The time at which the entity was created. */
992
+ createdAt: Scalars["DateTime"];
993
+ /** The user who created the document. */
994
+ creator: User;
995
+ /** The icon of the document. */
996
+ icon?: Maybe<Scalars["String"]>;
997
+ /** The unique identifier of the entity. */
998
+ id: Scalars["ID"];
999
+ /** Metadata related to search result */
1000
+ metadata: Scalars["JSONObject"];
1001
+ /** The project that the document is associated with. */
1002
+ project: Project;
1003
+ /** The document's unique URL slug. */
1004
+ slugId: Scalars["String"];
1005
+ /** The document title. */
1006
+ title: Scalars["String"];
1007
+ /**
1008
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1009
+ * 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
1010
+ * been updated after creation.
1011
+ */
1012
+ updatedAt: Scalars["DateTime"];
1013
+ /** The user who last updated the document. */
1014
+ updatedBy: User;
1015
+ };
1016
+ export declare type DocumentSearchResultConnection = {
1017
+ __typename?: "DocumentSearchResultConnection";
1018
+ edges: Array<DocumentSearchResultEdge>;
1019
+ nodes: Array<DocumentSearchResult>;
1020
+ pageInfo: PageInfo;
1021
+ };
1022
+ export declare type DocumentSearchResultEdge = {
1023
+ __typename?: "DocumentSearchResultEdge";
1024
+ /** Used in `before` and `after` args */
1025
+ cursor: Scalars["String"];
1026
+ node: DocumentSearchResult;
1027
+ };
914
1028
  export declare type DocumentUpdateInput = {
915
1029
  /** The color of the icon. */
916
1030
  color?: Maybe<Scalars["String"]>;
@@ -1076,6 +1190,46 @@ export declare type EventPayload = {
1076
1190
  /** Whether the operation was successful. */
1077
1191
  success: Scalars["Boolean"];
1078
1192
  };
1193
+ /** [ALPHA] An external authenticated (e.g., through Slack) user which doesn't have a Linear account, but can create and update entities in Linear from the external system that authenticated them. */
1194
+ export declare type ExternalUser = Node & {
1195
+ __typename?: "ExternalUser";
1196
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
1197
+ archivedAt?: Maybe<Scalars["DateTime"]>;
1198
+ /** An URL to the external user's avatar image. */
1199
+ avatarUrl?: Maybe<Scalars["String"]>;
1200
+ /** The time at which the entity was created. */
1201
+ createdAt: Scalars["DateTime"];
1202
+ /** The external user's display name. Unique within each organization. Can match the display name of an actual user. */
1203
+ displayName: Scalars["String"];
1204
+ /** The external user's email address. */
1205
+ email: Scalars["String"];
1206
+ /** The unique identifier of the entity. */
1207
+ id: Scalars["ID"];
1208
+ /** The last time the external user was seen interacting with Linear. */
1209
+ lastSeen?: Maybe<Scalars["DateTime"]>;
1210
+ /** The external user's full name. */
1211
+ name: Scalars["String"];
1212
+ /** Organization the external user belongs to. */
1213
+ organization: Organization;
1214
+ /**
1215
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1216
+ * 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
1217
+ * been updated after creation.
1218
+ */
1219
+ updatedAt: Scalars["DateTime"];
1220
+ };
1221
+ export declare type ExternalUserConnection = {
1222
+ __typename?: "ExternalUserConnection";
1223
+ edges: Array<ExternalUserEdge>;
1224
+ nodes: Array<ExternalUser>;
1225
+ pageInfo: PageInfo;
1226
+ };
1227
+ export declare type ExternalUserEdge = {
1228
+ __typename?: "ExternalUserEdge";
1229
+ /** Used in `before` and `after` args */
1230
+ cursor: Scalars["String"];
1231
+ node: ExternalUser;
1232
+ };
1079
1233
  /** User favorites presented in the sidebar. */
1080
1234
  export declare type Favorite = Node & {
1081
1235
  __typename?: "Favorite";
@@ -1101,9 +1255,9 @@ export declare type Favorite = Node & {
1101
1255
  label?: Maybe<IssueLabel>;
1102
1256
  /** The parent folder of the favorite. */
1103
1257
  parent?: Maybe<Favorite>;
1104
- /** The team of the favorited predefiend view. */
1258
+ /** The team of the favorited predefined view. */
1105
1259
  predefinedViewTeam?: Maybe<Team>;
1106
- /** The type of favorited predefiend view. */
1260
+ /** The type of favorited predefined view. */
1107
1261
  predefinedViewType?: Maybe<Scalars["String"]>;
1108
1262
  /** The favorited project. */
1109
1263
  project?: Maybe<Project>;
@@ -1659,6 +1813,10 @@ export declare type Issue = Node & {
1659
1813
  dueDate?: Maybe<Scalars["TimelessDate"]>;
1660
1814
  /** The estimate of the complexity of the issue.. */
1661
1815
  estimate?: Maybe<Scalars["Float"]>;
1816
+ /** [ALPHA] The external user who created the issue. */
1817
+ externalUserCreator?: Maybe<ExternalUser>;
1818
+ /** The users favorite associated with this issue. */
1819
+ favorite?: Maybe<Favorite>;
1662
1820
  /** History entries associated with the issue. */
1663
1821
  history: IssueHistoryConnection;
1664
1822
  /** The unique identifier of the entity. */
@@ -1675,13 +1833,13 @@ export declare type Issue = Node & {
1675
1833
  parent?: Maybe<Issue>;
1676
1834
  /** Previous identifiers of the issue if it has been moved between teams. */
1677
1835
  previousIdentifiers: Array<Scalars["String"]>;
1678
- /** The priority of the issue. */
1836
+ /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
1679
1837
  priority: Scalars["Float"];
1680
1838
  /** Label for the priority. */
1681
1839
  priorityLabel: Scalars["String"];
1682
1840
  /** The project that the issue is associated with. */
1683
1841
  project?: Maybe<Project>;
1684
- /** [ALPHA] The projectMilestone that the issue is associated with. */
1842
+ /** The projectMilestone that the issue is associated with. */
1685
1843
  projectMilestone?: Maybe<ProjectMilestone>;
1686
1844
  /** Relations associated with this issue. */
1687
1845
  relations: IssueRelationConnection;
@@ -1867,7 +2025,7 @@ export declare type IssueCollectionFilter = {
1867
2025
  priority?: Maybe<NullableNumberComparator>;
1868
2026
  /** Filters that the issues project must satisfy. */
1869
2027
  project?: Maybe<NullableProjectFilter>;
1870
- /** [ALPHA] Filters that the issues project milestone must satisfy. */
2028
+ /** Filters that the issues project milestone must satisfy. */
1871
2029
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
1872
2030
  /** [Internal] Comparator for the issues content. */
1873
2031
  searchableContent?: Maybe<ContentComparator>;
@@ -1889,6 +2047,8 @@ export declare type IssueCollectionFilter = {
1889
2047
  team?: Maybe<TeamFilter>;
1890
2048
  /** Comparator for the issues title. */
1891
2049
  title?: Maybe<StringComparator>;
2050
+ /** Comparator for the issues triaged at date. */
2051
+ triagedAt?: Maybe<NullableDateComparator>;
1892
2052
  /** Comparator for the updated at date. */
1893
2053
  updatedAt?: Maybe<DateComparator>;
1894
2054
  };
@@ -1925,11 +2085,11 @@ export declare type IssueCreateInput = {
1925
2085
  labelIds?: Maybe<Array<Scalars["String"]>>;
1926
2086
  /** The identifier of the parent issue. */
1927
2087
  parentId?: Maybe<Scalars["String"]>;
1928
- /** The priority of the issue. */
2088
+ /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
1929
2089
  priority?: Maybe<Scalars["Int"]>;
1930
2090
  /** The project associated with the issue. */
1931
2091
  projectId?: Maybe<Scalars["String"]>;
1932
- /** [ALPHA] The project milestone associated with the issue. */
2092
+ /** The project milestone associated with the issue. */
1933
2093
  projectMilestoneId?: Maybe<Scalars["String"]>;
1934
2094
  /** The comment the issue is referencing. */
1935
2095
  referenceCommentId?: Maybe<Scalars["String"]>;
@@ -1983,6 +2143,8 @@ export declare type IssueDraft = Node & {
1983
2143
  priorityLabel: Scalars["String"];
1984
2144
  /** The project associated with the draft. */
1985
2145
  projectId?: Maybe<Scalars["String"]>;
2146
+ /** The project milestone associated with the draft. */
2147
+ projectMilestoneId?: Maybe<Scalars["String"]>;
1986
2148
  /** The workflow state associated with the draft. */
1987
2149
  stateId: Scalars["String"];
1988
2150
  /** The order of items in the sub-draft list. Only set if the draft has `parent` set. */
@@ -2058,7 +2220,7 @@ export declare type IssueFilter = {
2058
2220
  priority?: Maybe<NullableNumberComparator>;
2059
2221
  /** Filters that the issues project must satisfy. */
2060
2222
  project?: Maybe<NullableProjectFilter>;
2061
- /** [ALPHA] Filters that the issues project milestone must satisfy. */
2223
+ /** Filters that the issues project milestone must satisfy. */
2062
2224
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
2063
2225
  /** [Internal] Comparator for the issues content. */
2064
2226
  searchableContent?: Maybe<ContentComparator>;
@@ -2078,9 +2240,16 @@ export declare type IssueFilter = {
2078
2240
  team?: Maybe<TeamFilter>;
2079
2241
  /** Comparator for the issues title. */
2080
2242
  title?: Maybe<StringComparator>;
2243
+ /** Comparator for the issues triaged at date. */
2244
+ triagedAt?: Maybe<NullableDateComparator>;
2081
2245
  /** Comparator for the updated at date. */
2082
2246
  updatedAt?: Maybe<DateComparator>;
2083
2247
  };
2248
+ export declare type IssueFilterSuggestionPayload = {
2249
+ __typename?: "IssueFilterSuggestionPayload";
2250
+ /** The json filter that is suggested. */
2251
+ filter?: Maybe<Scalars["JSONObject"]>;
2252
+ };
2084
2253
  /** A record of changes to an issue. */
2085
2254
  export declare type IssueHistory = Node & {
2086
2255
  __typename?: "IssueHistory";
@@ -2216,8 +2385,12 @@ export declare type IssueImport = Node & {
2216
2385
  createdAt: Scalars["DateTime"];
2217
2386
  /** The id for the user that started the job. */
2218
2387
  creatorId: Scalars["String"];
2388
+ /** File URL for the uploaded CSV for the import, if there is one. */
2389
+ csvFileUrl?: Maybe<Scalars["String"]>;
2219
2390
  /** User readable error message, if one has occurred during the import. */
2220
2391
  error?: Maybe<Scalars["String"]>;
2392
+ /** Error code and metadata, if one has occurred during the import */
2393
+ errorMetadata?: Maybe<Scalars["JSONObject"]>;
2221
2394
  /** The unique identifier of the entity. */
2222
2395
  id: Scalars["ID"];
2223
2396
  /** The data mapping configuration for the import job. */
@@ -2237,6 +2410,11 @@ export declare type IssueImport = Node & {
2237
2410
  */
2238
2411
  updatedAt: Scalars["DateTime"];
2239
2412
  };
2413
+ export declare type IssueImportCheckPayload = {
2414
+ __typename?: "IssueImportCheckPayload";
2415
+ /** Whether the operation was successful. */
2416
+ success: Scalars["Boolean"];
2417
+ };
2240
2418
  export declare type IssueImportDeletePayload = {
2241
2419
  __typename?: "IssueImportDeletePayload";
2242
2420
  /** The import job that was deleted. */
@@ -2418,7 +2596,7 @@ export declare type IssueLabelUpdateInput = {
2418
2596
  /** An issue related notification */
2419
2597
  export declare type IssueNotification = Entity & Node & Notification & {
2420
2598
  __typename?: "IssueNotification";
2421
- /** The user that caused the notification. If empty it's Linear itself. */
2599
+ /** The user that caused the notification. */
2422
2600
  actor?: Maybe<User>;
2423
2601
  /** The time at which the entity was archived. Null if the entity has not been archived. */
2424
2602
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -2431,6 +2609,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
2431
2609
  * reminder has been sent.
2432
2610
  */
2433
2611
  emailedAt?: Maybe<Scalars["DateTime"]>;
2612
+ /** The external user that caused the notification. */
2613
+ externalUserActor?: Maybe<ExternalUser>;
2434
2614
  /** The unique identifier of the entity. */
2435
2615
  id: Scalars["ID"];
2436
2616
  /** The issue related to the notification. */
@@ -2547,6 +2727,210 @@ export declare type IssueRelationUpdateInput = {
2547
2727
  /** The type of relation of the issue to the related issue. */
2548
2728
  type?: Maybe<Scalars["String"]>;
2549
2729
  };
2730
+ export declare type IssueSearchPayload = {
2731
+ __typename?: "IssueSearchPayload";
2732
+ /** Archived entities matching the search term along with all their dependencies. */
2733
+ archivePayload: ArchiveResponse;
2734
+ edges: Array<IssueSearchResultEdge>;
2735
+ nodes: Array<IssueSearchResult>;
2736
+ pageInfo: PageInfo;
2737
+ /** Total number of results for query without filters applied. */
2738
+ totalCount: Scalars["Float"];
2739
+ };
2740
+ export declare type IssueSearchResult = Node & {
2741
+ __typename?: "IssueSearchResult";
2742
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2743
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2744
+ /** The user to whom the issue is assigned to. */
2745
+ assignee?: Maybe<User>;
2746
+ /** Attachments associated with the issue. */
2747
+ attachments: AttachmentConnection;
2748
+ /** The time at which the issue was automatically archived by the auto pruning process. */
2749
+ autoArchivedAt?: Maybe<Scalars["DateTime"]>;
2750
+ /** The time at which the issue was automatically closed by the auto pruning process. */
2751
+ autoClosedAt?: Maybe<Scalars["DateTime"]>;
2752
+ /**
2753
+ * The order of the item in its column on the board.
2754
+ * @deprecated Will be removed in near future, please use `sortOrder` instead
2755
+ */
2756
+ boardOrder: Scalars["Float"];
2757
+ /** Suggested branch name for the issue. */
2758
+ branchName: Scalars["String"];
2759
+ /** The time at which the issue was moved into canceled state. */
2760
+ canceledAt?: Maybe<Scalars["DateTime"]>;
2761
+ /** Children of the issue. */
2762
+ children: IssueConnection;
2763
+ /** Comments associated with the issue. */
2764
+ comments: CommentConnection;
2765
+ /** The time at which the issue was moved into completed state. */
2766
+ completedAt?: Maybe<Scalars["DateTime"]>;
2767
+ /** The time at which the entity was created. */
2768
+ createdAt: Scalars["DateTime"];
2769
+ /** The user who created the issue. */
2770
+ creator?: Maybe<User>;
2771
+ /** Returns the number of Attachment resources which are created by customer support ticketing systems (e.g. Zendesk). */
2772
+ customerTicketCount: Scalars["Int"];
2773
+ /** The cycle that the issue is associated with. */
2774
+ cycle?: Maybe<Cycle>;
2775
+ /** The issue's description in markdown format. */
2776
+ description?: Maybe<Scalars["String"]>;
2777
+ /** [Internal] The issue's description as a Prosemirror document. */
2778
+ descriptionData?: Maybe<Scalars["JSON"]>;
2779
+ /** The date at which the issue is due. */
2780
+ dueDate?: Maybe<Scalars["TimelessDate"]>;
2781
+ /** The estimate of the complexity of the issue.. */
2782
+ estimate?: Maybe<Scalars["Float"]>;
2783
+ /** [ALPHA] The external user who created the issue. */
2784
+ externalUserCreator?: Maybe<ExternalUser>;
2785
+ /** The users favorite associated with this issue. */
2786
+ favorite?: Maybe<Favorite>;
2787
+ /** History entries associated with the issue. */
2788
+ history: IssueHistoryConnection;
2789
+ /** The unique identifier of the entity. */
2790
+ id: Scalars["ID"];
2791
+ /** Issue's human readable identifier (e.g. ENG-123). */
2792
+ identifier: Scalars["String"];
2793
+ /** Inverse relations associated with this issue. */
2794
+ inverseRelations: IssueRelationConnection;
2795
+ /** Labels associated with this issue. */
2796
+ labels: IssueLabelConnection;
2797
+ /** Metadata related to search result */
2798
+ metadata: Scalars["JSONObject"];
2799
+ /** The issue's unique number. */
2800
+ number: Scalars["Float"];
2801
+ /** The parent of the issue. */
2802
+ parent?: Maybe<Issue>;
2803
+ /** Previous identifiers of the issue if it has been moved between teams. */
2804
+ previousIdentifiers: Array<Scalars["String"]>;
2805
+ /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
2806
+ priority: Scalars["Float"];
2807
+ /** Label for the priority. */
2808
+ priorityLabel: Scalars["String"];
2809
+ /** The project that the issue is associated with. */
2810
+ project?: Maybe<Project>;
2811
+ /** The projectMilestone that the issue is associated with. */
2812
+ projectMilestone?: Maybe<ProjectMilestone>;
2813
+ /** Relations associated with this issue. */
2814
+ relations: IssueRelationConnection;
2815
+ /** [Internal] The time at which the issue's SLA will breach. */
2816
+ slaBreachesAt?: Maybe<Scalars["DateTime"]>;
2817
+ /** [Internal] The time at which the issue's SLA began. */
2818
+ slaStartedAt?: Maybe<Scalars["DateTime"]>;
2819
+ /** The user who snoozed the issue. */
2820
+ snoozedBy?: Maybe<User>;
2821
+ /** The time until an issue will be snoozed in Triage view. */
2822
+ snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
2823
+ /** The order of the item in relation to other items in the organization. */
2824
+ sortOrder: Scalars["Float"];
2825
+ /** The time at which the issue was moved into started state. */
2826
+ startedAt?: Maybe<Scalars["DateTime"]>;
2827
+ /** The time at which the issue entered triage. */
2828
+ startedTriageAt?: Maybe<Scalars["DateTime"]>;
2829
+ /** The workflow state that the issue is associated with. */
2830
+ state: WorkflowState;
2831
+ /** The order of the item in the sub-issue list. Only set if the issue has a parent. */
2832
+ subIssueSortOrder?: Maybe<Scalars["Float"]>;
2833
+ /** Users who are subscribed to the issue. */
2834
+ subscribers: UserConnection;
2835
+ /** The team that the issue is associated with. */
2836
+ team: Team;
2837
+ /** The issue's title. */
2838
+ title: Scalars["String"];
2839
+ /** A flag that indicates whether the issue is in the trash bin. */
2840
+ trashed?: Maybe<Scalars["Boolean"]>;
2841
+ /** The time at which the issue left triage. */
2842
+ triagedAt?: Maybe<Scalars["DateTime"]>;
2843
+ /**
2844
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2845
+ * 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
2846
+ * been updated after creation.
2847
+ */
2848
+ updatedAt: Scalars["DateTime"];
2849
+ /** Issue URL. */
2850
+ url: Scalars["String"];
2851
+ };
2852
+ export declare type IssueSearchResultAttachmentsArgs = {
2853
+ after?: Maybe<Scalars["String"]>;
2854
+ before?: Maybe<Scalars["String"]>;
2855
+ filter?: Maybe<AttachmentFilter>;
2856
+ first?: Maybe<Scalars["Int"]>;
2857
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2858
+ last?: Maybe<Scalars["Int"]>;
2859
+ orderBy?: Maybe<PaginationOrderBy>;
2860
+ };
2861
+ export declare type IssueSearchResultChildrenArgs = {
2862
+ after?: Maybe<Scalars["String"]>;
2863
+ before?: Maybe<Scalars["String"]>;
2864
+ filter?: Maybe<IssueFilter>;
2865
+ first?: Maybe<Scalars["Int"]>;
2866
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2867
+ last?: Maybe<Scalars["Int"]>;
2868
+ orderBy?: Maybe<PaginationOrderBy>;
2869
+ };
2870
+ export declare type IssueSearchResultCommentsArgs = {
2871
+ after?: Maybe<Scalars["String"]>;
2872
+ before?: Maybe<Scalars["String"]>;
2873
+ filter?: Maybe<CommentFilter>;
2874
+ first?: Maybe<Scalars["Int"]>;
2875
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2876
+ last?: Maybe<Scalars["Int"]>;
2877
+ orderBy?: Maybe<PaginationOrderBy>;
2878
+ };
2879
+ export declare type IssueSearchResultHistoryArgs = {
2880
+ after?: Maybe<Scalars["String"]>;
2881
+ before?: Maybe<Scalars["String"]>;
2882
+ first?: Maybe<Scalars["Int"]>;
2883
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2884
+ last?: Maybe<Scalars["Int"]>;
2885
+ orderBy?: Maybe<PaginationOrderBy>;
2886
+ };
2887
+ export declare type IssueSearchResultInverseRelationsArgs = {
2888
+ after?: Maybe<Scalars["String"]>;
2889
+ before?: Maybe<Scalars["String"]>;
2890
+ first?: Maybe<Scalars["Int"]>;
2891
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2892
+ last?: Maybe<Scalars["Int"]>;
2893
+ orderBy?: Maybe<PaginationOrderBy>;
2894
+ };
2895
+ export declare type IssueSearchResultLabelsArgs = {
2896
+ after?: Maybe<Scalars["String"]>;
2897
+ before?: Maybe<Scalars["String"]>;
2898
+ filter?: Maybe<IssueLabelFilter>;
2899
+ first?: Maybe<Scalars["Int"]>;
2900
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2901
+ last?: Maybe<Scalars["Int"]>;
2902
+ orderBy?: Maybe<PaginationOrderBy>;
2903
+ };
2904
+ export declare type IssueSearchResultRelationsArgs = {
2905
+ after?: Maybe<Scalars["String"]>;
2906
+ before?: Maybe<Scalars["String"]>;
2907
+ first?: Maybe<Scalars["Int"]>;
2908
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2909
+ last?: Maybe<Scalars["Int"]>;
2910
+ orderBy?: Maybe<PaginationOrderBy>;
2911
+ };
2912
+ export declare type IssueSearchResultSubscribersArgs = {
2913
+ after?: Maybe<Scalars["String"]>;
2914
+ before?: Maybe<Scalars["String"]>;
2915
+ filter?: Maybe<UserFilter>;
2916
+ first?: Maybe<Scalars["Int"]>;
2917
+ includeArchived?: Maybe<Scalars["Boolean"]>;
2918
+ includeDisabled?: Maybe<Scalars["Boolean"]>;
2919
+ last?: Maybe<Scalars["Int"]>;
2920
+ orderBy?: Maybe<PaginationOrderBy>;
2921
+ };
2922
+ export declare type IssueSearchResultConnection = {
2923
+ __typename?: "IssueSearchResultConnection";
2924
+ edges: Array<IssueSearchResultEdge>;
2925
+ nodes: Array<IssueSearchResult>;
2926
+ pageInfo: PageInfo;
2927
+ };
2928
+ export declare type IssueSearchResultEdge = {
2929
+ __typename?: "IssueSearchResultEdge";
2930
+ /** Used in `before` and `after` args */
2931
+ cursor: Scalars["String"];
2932
+ node: IssueSearchResult;
2933
+ };
2550
2934
  export declare type IssueUpdateInput = {
2551
2935
  /** The identifier of the user to assign the issue to. */
2552
2936
  assigneeId?: Maybe<Scalars["String"]>;
@@ -2566,11 +2950,11 @@ export declare type IssueUpdateInput = {
2566
2950
  labelIds?: Maybe<Array<Scalars["String"]>>;
2567
2951
  /** The identifier of the parent issue. */
2568
2952
  parentId?: Maybe<Scalars["String"]>;
2569
- /** The priority of the issue. */
2953
+ /** The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low. */
2570
2954
  priority?: Maybe<Scalars["Int"]>;
2571
2955
  /** The project associated with the issue. */
2572
2956
  projectId?: Maybe<Scalars["String"]>;
2573
- /** [ALPHA] The project milestone associated with the issue. */
2957
+ /** The project milestone associated with the issue. */
2574
2958
  projectMilestoneId?: Maybe<Scalars["String"]>;
2575
2959
  /** [Internal] The timestamp at which an issue will be considered in breach of SLA. */
2576
2960
  slaBreachesAt?: Maybe<Scalars["DateTime"]>;
@@ -2747,6 +3131,8 @@ export declare type Mutation = {
2747
3131
  googleUserAccountAuth: AuthResolverResponse;
2748
3132
  /** Upload an image from an URL to Linear. */
2749
3133
  imageUploadFromUrl: ImageUploadFromUrlPayload;
3134
+ /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
3135
+ importFileUpload: UploadPayload;
2750
3136
  /** Deletes an integration. */
2751
3137
  integrationDelete: ArchivePayload;
2752
3138
  /** Integrates the organization with Discord. */
@@ -2819,6 +3205,8 @@ export declare type Mutation = {
2819
3205
  issueDescriptionUpdateFromFront: IssuePayload;
2820
3206
  /** Kicks off an Asana import job. */
2821
3207
  issueImportCreateAsana: IssueImportPayload;
3208
+ /** Kicks off a Jira import job from a CSV. */
3209
+ issueImportCreateCSVJira: IssueImportPayload;
2822
3210
  /** Kicks off a Shortcut (formerly Clubhouse) import job. */
2823
3211
  issueImportCreateClubhouse: IssueImportPayload;
2824
3212
  /** Kicks off a GitHub import job. */
@@ -2894,6 +3282,8 @@ export declare type Mutation = {
2894
3282
  organizationInviteDelete: ArchivePayload;
2895
3283
  /** Updates an organization invite. */
2896
3284
  organizationInviteUpdate: OrganizationInvitePayload;
3285
+ /** Starts a plus trial for the organization. Administrator privileges required. */
3286
+ organizationStartPlusTrial: OrganizationStartPlusTrialPayload;
2897
3287
  /** Updates the user's organization. */
2898
3288
  organizationUpdate: OrganizationPayload;
2899
3289
  /**
@@ -2943,6 +3333,8 @@ export declare type Mutation = {
2943
3333
  refreshGoogleSheetsData: IntegrationPayload;
2944
3334
  /** Re-send an organization invite. */
2945
3335
  resendOrganizationInvite: ArchivePayload;
3336
+ /** Archives a roadmap. */
3337
+ roadmapArchive: ArchivePayload;
2946
3338
  /** Creates a new roadmap. */
2947
3339
  roadmapCreate: RoadmapPayload;
2948
3340
  /** Deletes a roadmap. */
@@ -2953,6 +3345,8 @@ export declare type Mutation = {
2953
3345
  roadmapToProjectDelete: ArchivePayload;
2954
3346
  /** Updates a roadmapToProject. */
2955
3347
  roadmapToProjectUpdate: RoadmapToProjectPayload;
3348
+ /** Unarchives a roadmap. */
3349
+ roadmapUnarchive: ArchivePayload;
2956
3350
  /** Updates a roadmap. */
2957
3351
  roadmapUpdate: RoadmapPayload;
2958
3352
  /** Authenticates a user account via email and authentication token for SAML. */
@@ -3175,6 +3569,12 @@ export declare type MutationGoogleUserAccountAuthArgs = {
3175
3569
  export declare type MutationImageUploadFromUrlArgs = {
3176
3570
  url: Scalars["String"];
3177
3571
  };
3572
+ export declare type MutationImportFileUploadArgs = {
3573
+ contentType: Scalars["String"];
3574
+ filename: Scalars["String"];
3575
+ metaData?: Maybe<Scalars["JSON"]>;
3576
+ size: Scalars["Int"];
3577
+ };
3178
3578
  export declare type MutationIntegrationDeleteArgs = {
3179
3579
  id: Scalars["String"];
3180
3580
  };
@@ -3300,8 +3700,17 @@ export declare type MutationIssueImportCreateAsanaArgs = {
3300
3700
  teamId?: Maybe<Scalars["String"]>;
3301
3701
  teamName?: Maybe<Scalars["String"]>;
3302
3702
  };
3703
+ export declare type MutationIssueImportCreateCsvJiraArgs = {
3704
+ csvUrl: Scalars["String"];
3705
+ jiraEmail?: Maybe<Scalars["String"]>;
3706
+ jiraHostname?: Maybe<Scalars["String"]>;
3707
+ jiraToken?: Maybe<Scalars["String"]>;
3708
+ organizationId?: Maybe<Scalars["String"]>;
3709
+ teamId?: Maybe<Scalars["String"]>;
3710
+ teamName?: Maybe<Scalars["String"]>;
3711
+ };
3303
3712
  export declare type MutationIssueImportCreateClubhouseArgs = {
3304
- clubhouseTeamName: Scalars["String"];
3713
+ clubhouseGroupName: Scalars["String"];
3305
3714
  clubhouseToken: Scalars["String"];
3306
3715
  id?: Maybe<Scalars["String"]>;
3307
3716
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
@@ -3508,6 +3917,9 @@ export declare type MutationRefreshGoogleSheetsDataArgs = {
3508
3917
  export declare type MutationResendOrganizationInviteArgs = {
3509
3918
  id: Scalars["String"];
3510
3919
  };
3920
+ export declare type MutationRoadmapArchiveArgs = {
3921
+ id: Scalars["String"];
3922
+ };
3511
3923
  export declare type MutationRoadmapCreateArgs = {
3512
3924
  input: RoadmapCreateInput;
3513
3925
  };
@@ -3524,6 +3936,9 @@ export declare type MutationRoadmapToProjectUpdateArgs = {
3524
3936
  id: Scalars["String"];
3525
3937
  input: RoadmapToProjectUpdateInput;
3526
3938
  };
3939
+ export declare type MutationRoadmapUnarchiveArgs = {
3940
+ id: Scalars["String"];
3941
+ };
3527
3942
  export declare type MutationRoadmapUpdateArgs = {
3528
3943
  id: Scalars["String"];
3529
3944
  input: RoadmapUpdateInput;
@@ -3653,7 +4068,7 @@ export declare type Node = {
3653
4068
  };
3654
4069
  /** A notification sent to a user. */
3655
4070
  export declare type Notification = {
3656
- /** The user that caused the notification. If empty it's Linear itself. */
4071
+ /** The user that caused the notification. */
3657
4072
  actor?: Maybe<User>;
3658
4073
  /** The time at which the entity was archived. Null if the entity has not been archived. */
3659
4074
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -3664,6 +4079,8 @@ export declare type Notification = {
3664
4079
  * reminder has been sent.
3665
4080
  */
3666
4081
  emailedAt?: Maybe<Scalars["DateTime"]>;
4082
+ /** The external user that caused the notification. */
4083
+ externalUserActor?: Maybe<ExternalUser>;
3667
4084
  /** The unique identifier of the entity. */
3668
4085
  id: Scalars["ID"];
3669
4086
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
@@ -3904,7 +4321,7 @@ export declare type NullableIssueFilter = {
3904
4321
  priority?: Maybe<NullableNumberComparator>;
3905
4322
  /** Filters that the issues project must satisfy. */
3906
4323
  project?: Maybe<NullableProjectFilter>;
3907
- /** [ALPHA] Filters that the issues project milestone must satisfy. */
4324
+ /** Filters that the issues project milestone must satisfy. */
3908
4325
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
3909
4326
  /** [Internal] Comparator for the issues content. */
3910
4327
  searchableContent?: Maybe<ContentComparator>;
@@ -3924,6 +4341,8 @@ export declare type NullableIssueFilter = {
3924
4341
  team?: Maybe<TeamFilter>;
3925
4342
  /** Comparator for the issues title. */
3926
4343
  title?: Maybe<StringComparator>;
4344
+ /** Comparator for the issues triaged at date. */
4345
+ triagedAt?: Maybe<NullableDateComparator>;
3927
4346
  /** Comparator for the updated at date. */
3928
4347
  updatedAt?: Maybe<DateComparator>;
3929
4348
  };
@@ -3952,6 +4371,8 @@ export declare type NullableNumberComparator = {
3952
4371
  export declare type NullableProjectFilter = {
3953
4372
  /** Compound filters, all of which need to be matched by the project. */
3954
4373
  and?: Maybe<Array<NullableProjectFilter>>;
4374
+ /** Comparator for the project completion date. */
4375
+ completedAt?: Maybe<NullableDateComparator>;
3955
4376
  /** Comparator for the created at date. */
3956
4377
  createdAt?: Maybe<DateComparator>;
3957
4378
  /** Filters that the projects creator must satisfy. */
@@ -3972,6 +4393,8 @@ export declare type NullableProjectFilter = {
3972
4393
  or?: Maybe<Array<NullableProjectFilter>>;
3973
4394
  /** Filters that the projects roadmaps must satisfy. */
3974
4395
  roadmaps?: Maybe<RoadmapCollectionFilter>;
4396
+ /** [Internal] Comparator for the projects content. */
4397
+ searchableContent?: Maybe<ContentComparator>;
3975
4398
  /** Comparator for the project slug ID. */
3976
4399
  slugId?: Maybe<StringComparator>;
3977
4400
  /** Comparator for the project start date. */
@@ -3983,7 +4406,7 @@ export declare type NullableProjectFilter = {
3983
4406
  /** Comparator for the updated at date. */
3984
4407
  updatedAt?: Maybe<DateComparator>;
3985
4408
  };
3986
- /** [ALPHA] Project milestone filtering options. */
4409
+ /** Project milestone filtering options. */
3987
4410
  export declare type NullableProjectMilestoneFilter = {
3988
4411
  /** Compound filters, all of which need to be matched by the project milestone. */
3989
4412
  and?: Maybe<Array<NullableProjectMilestoneFilter>>;
@@ -4030,6 +4453,8 @@ export declare type NullableStringComparator = {
4030
4453
  null?: Maybe<Scalars["Boolean"]>;
4031
4454
  /** Starts with constraint. Matches any values that start with the given string. */
4032
4455
  startsWith?: Maybe<Scalars["String"]>;
4456
+ /** Starts with case insensitive constraint. Matches any values that start with the given string. */
4457
+ startsWithIgnoreCase?: Maybe<Scalars["String"]>;
4033
4458
  };
4034
4459
  export declare type NullableTimelessDateComparator = {
4035
4460
  /** Equals constraint. */
@@ -4182,7 +4607,7 @@ export declare type OauthClientApproval = Node & {
4182
4607
  /** An oauth client approval related notification */
4183
4608
  export declare type OauthClientApprovalNotification = Entity & Node & Notification & {
4184
4609
  __typename?: "OauthClientApprovalNotification";
4185
- /** The user that caused the notification. If empty it's Linear itself. */
4610
+ /** The user that caused the notification. */
4186
4611
  actor?: Maybe<User>;
4187
4612
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4188
4613
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -4193,6 +4618,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
4193
4618
  * reminder has been sent.
4194
4619
  */
4195
4620
  emailedAt?: Maybe<Scalars["DateTime"]>;
4621
+ /** The external user that caused the notification. */
4622
+ externalUserActor?: Maybe<ExternalUser>;
4196
4623
  /** The unique identifier of the entity. */
4197
4624
  id: Scalars["ID"];
4198
4625
  /** The OAuth client approval request related to the notification. */
@@ -4533,6 +4960,11 @@ export declare type OrganizationPayload = {
4533
4960
  /** Whether the operation was successful. */
4534
4961
  success: Scalars["Boolean"];
4535
4962
  };
4963
+ export declare type OrganizationStartPlusTrialPayload = {
4964
+ __typename?: "OrganizationStartPlusTrialPayload";
4965
+ /** Whether the operation was successful. */
4966
+ success: Scalars["Boolean"];
4967
+ };
4536
4968
  export declare type PageInfo = {
4537
4969
  __typename?: "PageInfo";
4538
4970
  /** Cursor representing the last result in the paginated results. */
@@ -4583,26 +5015,6 @@ export declare type PaidSubscription = Node & {
4583
5015
  */
4584
5016
  updatedAt: Scalars["DateTime"];
4585
5017
  };
4586
- /** A personal note for a user */
4587
- export declare type PersonalNote = Node & {
4588
- __typename?: "PersonalNote";
4589
- /** The time at which the entity was archived. Null if the entity has not been archived. */
4590
- archivedAt?: Maybe<Scalars["DateTime"]>;
4591
- /** The note content as JSON. */
4592
- contentData?: Maybe<Scalars["JSONObject"]>;
4593
- /** The time at which the entity was created. */
4594
- createdAt: Scalars["DateTime"];
4595
- /** The unique identifier of the entity. */
4596
- id: Scalars["ID"];
4597
- /**
4598
- * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
4599
- * 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
4600
- * been updated after creation.
4601
- */
4602
- updatedAt: Scalars["DateTime"];
4603
- /** The user that owns the note. */
4604
- user: User;
4605
- };
4606
5018
  /** A project. */
4607
5019
  export declare type Project = Node & {
4608
5020
  __typename?: "Project";
@@ -4652,7 +5064,7 @@ export declare type Project = Node & {
4652
5064
  name: Scalars["String"];
4653
5065
  /** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
4654
5066
  progress: Scalars["Float"];
4655
- /** [ALPHA] Milestones associated with the project. */
5067
+ /** Milestones associated with the project. */
4656
5068
  projectMilestones: ProjectMilestoneConnection;
4657
5069
  /** The time until which project update reminders are paused. */
4658
5070
  projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
@@ -4670,7 +5082,7 @@ export declare type Project = Node & {
4670
5082
  slackNewIssue: Scalars["Boolean"];
4671
5083
  /** The project's unique URL slug. */
4672
5084
  slugId: Scalars["String"];
4673
- /** The sort order for the project within the organizion. */
5085
+ /** The sort order for the project within the organization. */
4674
5086
  sortOrder: Scalars["Float"];
4675
5087
  /** [Internal] The estimated start date of the project. */
4676
5088
  startDate?: Maybe<Scalars["TimelessDate"]>;
@@ -4762,6 +5174,8 @@ export declare type ProjectTeamsArgs = {
4762
5174
  export declare type ProjectCollectionFilter = {
4763
5175
  /** Compound filters, all of which need to be matched by the project. */
4764
5176
  and?: Maybe<Array<ProjectCollectionFilter>>;
5177
+ /** Comparator for the project completion date. */
5178
+ completedAt?: Maybe<NullableDateComparator>;
4765
5179
  /** Comparator for the created at date. */
4766
5180
  createdAt?: Maybe<DateComparator>;
4767
5181
  /** Filters that the projects creator must satisfy. */
@@ -4784,6 +5198,8 @@ export declare type ProjectCollectionFilter = {
4784
5198
  or?: Maybe<Array<ProjectCollectionFilter>>;
4785
5199
  /** Filters that the projects roadmaps must satisfy. */
4786
5200
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5201
+ /** [Internal] Comparator for the projects content. */
5202
+ searchableContent?: Maybe<ContentComparator>;
4787
5203
  /** Comparator for the project slug ID. */
4788
5204
  slugId?: Maybe<StringComparator>;
4789
5205
  /** Filters that needs to be matched by some projects. */
@@ -4841,6 +5257,8 @@ export declare type ProjectEdge = {
4841
5257
  export declare type ProjectFilter = {
4842
5258
  /** Compound filters, all of which need to be matched by the project. */
4843
5259
  and?: Maybe<Array<ProjectFilter>>;
5260
+ /** Comparator for the project completion date. */
5261
+ completedAt?: Maybe<NullableDateComparator>;
4844
5262
  /** Comparator for the created at date. */
4845
5263
  createdAt?: Maybe<DateComparator>;
4846
5264
  /** Filters that the projects creator must satisfy. */
@@ -4859,6 +5277,8 @@ export declare type ProjectFilter = {
4859
5277
  or?: Maybe<Array<ProjectFilter>>;
4860
5278
  /** Filters that the projects roadmaps must satisfy. */
4861
5279
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5280
+ /** [Internal] Comparator for the projects content. */
5281
+ searchableContent?: Maybe<ContentComparator>;
4862
5282
  /** Comparator for the project slug ID. */
4863
5283
  slugId?: Maybe<StringComparator>;
4864
5284
  /** Comparator for the project start date. */
@@ -4870,6 +5290,11 @@ export declare type ProjectFilter = {
4870
5290
  /** Comparator for the updated at date. */
4871
5291
  updatedAt?: Maybe<DateComparator>;
4872
5292
  };
5293
+ export declare type ProjectFilterSuggestionPayload = {
5294
+ __typename?: "ProjectFilterSuggestionPayload";
5295
+ /** The json filter that is suggested. */
5296
+ filter?: Maybe<Scalars["JSONObject"]>;
5297
+ };
4873
5298
  /** An external link for a project. */
4874
5299
  export declare type ProjectLink = Node & {
4875
5300
  __typename?: "ProjectLink";
@@ -5007,7 +5432,7 @@ export declare type ProjectMilestoneUpdateInput = {
5007
5432
  /** A project related notification */
5008
5433
  export declare type ProjectNotification = Entity & Node & Notification & {
5009
5434
  __typename?: "ProjectNotification";
5010
- /** The user that caused the notification. If empty it's Linear itself. */
5435
+ /** The user that caused the notification. */
5011
5436
  actor?: Maybe<User>;
5012
5437
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5013
5438
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -5018,6 +5443,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5018
5443
  * reminder has been sent.
5019
5444
  */
5020
5445
  emailedAt?: Maybe<Scalars["DateTime"]>;
5446
+ /** The external user that caused the notification. */
5447
+ externalUserActor?: Maybe<ExternalUser>;
5021
5448
  /** The unique identifier of the entity. */
5022
5449
  id: Scalars["ID"];
5023
5450
  /** The project related to the notification. */
@@ -5038,49 +5465,220 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5038
5465
  * been updated after creation.
5039
5466
  */
5040
5467
  updatedAt: Scalars["DateTime"];
5041
- /** The user that received the notification. */
5042
- user: User;
5468
+ /** The user that received the notification. */
5469
+ user: User;
5470
+ };
5471
+ /** A project notification subscription. */
5472
+ export declare type ProjectNotificationSubscription = Entity & Node & NotificationSubscription & {
5473
+ __typename?: "ProjectNotificationSubscription";
5474
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
5475
+ archivedAt?: Maybe<Scalars["DateTime"]>;
5476
+ /** The time at which the entity was created. */
5477
+ createdAt: Scalars["DateTime"];
5478
+ /** The unique identifier of the entity. */
5479
+ id: Scalars["ID"];
5480
+ /** The project subscribed to. */
5481
+ project: Project;
5482
+ /** The type of the project subscription. */
5483
+ projectNotificationSubscriptionType: ProjectNotificationSubscriptionType;
5484
+ /** Subscribed team. */
5485
+ team?: Maybe<Team>;
5486
+ /** The type of the subscription. */
5487
+ type: Scalars["String"];
5488
+ /**
5489
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5490
+ * 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
5491
+ * been updated after creation.
5492
+ */
5493
+ updatedAt: Scalars["DateTime"];
5494
+ /** The user associated with notification subscriptions. */
5495
+ user: User;
5496
+ };
5497
+ /** The type of a project notification subscription. */
5498
+ export declare enum ProjectNotificationSubscriptionType {
5499
+ All = "all",
5500
+ Custom = "custom",
5501
+ ImportantOnly = "importantOnly"
5502
+ }
5503
+ export declare type ProjectPayload = {
5504
+ __typename?: "ProjectPayload";
5505
+ /** The identifier of the last sync operation. */
5506
+ lastSyncId: Scalars["Float"];
5507
+ /** The project that was created or updated. */
5508
+ project?: Maybe<Project>;
5509
+ /** Whether the operation was successful. */
5510
+ success: Scalars["Boolean"];
5511
+ };
5512
+ export declare type ProjectSearchPayload = {
5513
+ __typename?: "ProjectSearchPayload";
5514
+ /** Archived entities matching the search term along with all their dependencies. */
5515
+ archivePayload: ArchiveResponse;
5516
+ edges: Array<ProjectSearchResultEdge>;
5517
+ nodes: Array<ProjectSearchResult>;
5518
+ pageInfo: PageInfo;
5519
+ /** Total number of results for query without filters applied. */
5520
+ totalCount: Scalars["Float"];
5521
+ };
5522
+ export declare type ProjectSearchResult = Node & {
5523
+ __typename?: "ProjectSearchResult";
5524
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
5525
+ archivedAt?: Maybe<Scalars["DateTime"]>;
5526
+ /** The time at which the project was automatically archived by the auto pruning process. */
5527
+ autoArchivedAt?: Maybe<Scalars["DateTime"]>;
5528
+ /** The time at which the project was moved into canceled state. */
5529
+ canceledAt?: Maybe<Scalars["DateTime"]>;
5530
+ /** The project's color. */
5531
+ color: Scalars["String"];
5532
+ /** The time at which the project was moved into completed state. */
5533
+ completedAt?: Maybe<Scalars["DateTime"]>;
5534
+ /** The number of completed issues in the project after each week. */
5535
+ completedIssueCountHistory: Array<Scalars["Float"]>;
5536
+ /** The number of completed estimation points after each week. */
5537
+ completedScopeHistory: Array<Scalars["Float"]>;
5538
+ /** The project was created based on this issue. */
5539
+ convertedFromIssue?: Maybe<Issue>;
5540
+ /** The time at which the entity was created. */
5541
+ createdAt: Scalars["DateTime"];
5542
+ /** The user who created the project. */
5543
+ creator: User;
5544
+ /** The project's description. */
5545
+ description: Scalars["String"];
5546
+ /** Documents associated with the project. */
5547
+ documents: DocumentConnection;
5548
+ /** The icon of the project. */
5549
+ icon?: Maybe<Scalars["String"]>;
5550
+ /** The unique identifier of the entity. */
5551
+ id: Scalars["ID"];
5552
+ /** The number of in progress estimation points after each week. */
5553
+ inProgressScopeHistory: Array<Scalars["Float"]>;
5554
+ /** Settings for all integrations associated with that project. */
5555
+ integrationsSettings?: Maybe<IntegrationsSettings>;
5556
+ /** The total number of issues in the project after each week. */
5557
+ issueCountHistory: Array<Scalars["Float"]>;
5558
+ /** Issues associated with the project. */
5559
+ issues: IssueConnection;
5560
+ /** The project lead. */
5561
+ lead?: Maybe<User>;
5562
+ /** Links associated with the project. */
5563
+ links: ProjectLinkConnection;
5564
+ /** Users that are members of the project. */
5565
+ members: UserConnection;
5566
+ /** Metadata related to search result */
5567
+ metadata: Scalars["JSONObject"];
5568
+ /** The project's name. */
5569
+ name: Scalars["String"];
5570
+ /** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
5571
+ progress: Scalars["Float"];
5572
+ /** Milestones associated with the project. */
5573
+ projectMilestones: ProjectMilestoneConnection;
5574
+ /** The time until which project update reminders are paused. */
5575
+ projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
5576
+ /** Project updates associated with the project. */
5577
+ projectUpdates: ProjectUpdateConnection;
5578
+ /** The overall scope (total estimate points) of the project. */
5579
+ scope: Scalars["Float"];
5580
+ /** The total number of estimation points after each week. */
5581
+ scopeHistory: Array<Scalars["Float"]>;
5582
+ /** Whether to send new issue comment notifications to Slack. */
5583
+ slackIssueComments: Scalars["Boolean"];
5584
+ /** Whether to send new issue status updates to Slack. */
5585
+ slackIssueStatuses: Scalars["Boolean"];
5586
+ /** Whether to send new issue notifications to Slack. */
5587
+ slackNewIssue: Scalars["Boolean"];
5588
+ /** The project's unique URL slug. */
5589
+ slugId: Scalars["String"];
5590
+ /** The sort order for the project within the organization. */
5591
+ sortOrder: Scalars["Float"];
5592
+ /** [Internal] The estimated start date of the project. */
5593
+ startDate?: Maybe<Scalars["TimelessDate"]>;
5594
+ /** The time at which the project was moved into started state. */
5595
+ startedAt?: Maybe<Scalars["DateTime"]>;
5596
+ /** The type of the state. */
5597
+ state: Scalars["String"];
5598
+ /** The estimated completion date of the project. */
5599
+ targetDate?: Maybe<Scalars["TimelessDate"]>;
5600
+ /** Teams associated with this project. */
5601
+ teams: TeamConnection;
5602
+ /**
5603
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5604
+ * 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
5605
+ * been updated after creation.
5606
+ */
5607
+ updatedAt: Scalars["DateTime"];
5608
+ /** Project URL. */
5609
+ url: Scalars["String"];
5043
5610
  };
5044
- /** A project notification subscription. */
5045
- export declare type ProjectNotificationSubscription = Entity & Node & NotificationSubscription & {
5046
- __typename?: "ProjectNotificationSubscription";
5047
- /** The time at which the entity was archived. Null if the entity has not been archived. */
5048
- archivedAt?: Maybe<Scalars["DateTime"]>;
5049
- /** The time at which the entity was created. */
5050
- createdAt: Scalars["DateTime"];
5051
- /** The unique identifier of the entity. */
5052
- id: Scalars["ID"];
5053
- /** The project subscribed to. */
5054
- project: Project;
5055
- /** The type of the project subscription. */
5056
- projectNotificationSubscriptionType: ProjectNotificationSubscriptionType;
5057
- /** Subscribed team. */
5058
- team?: Maybe<Team>;
5059
- /** The type of the subscription. */
5060
- type: Scalars["String"];
5061
- /**
5062
- * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5063
- * 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
5064
- * been updated after creation.
5065
- */
5066
- updatedAt: Scalars["DateTime"];
5067
- /** The user associated with notification subscriptions. */
5068
- user: User;
5611
+ export declare type ProjectSearchResultDocumentsArgs = {
5612
+ after?: Maybe<Scalars["String"]>;
5613
+ before?: Maybe<Scalars["String"]>;
5614
+ first?: Maybe<Scalars["Int"]>;
5615
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5616
+ last?: Maybe<Scalars["Int"]>;
5617
+ orderBy?: Maybe<PaginationOrderBy>;
5069
5618
  };
5070
- /** The type of a project notification subscription. */
5071
- export declare enum ProjectNotificationSubscriptionType {
5072
- All = "all",
5073
- Custom = "custom",
5074
- ImportantOnly = "importantOnly"
5075
- }
5076
- export declare type ProjectPayload = {
5077
- __typename?: "ProjectPayload";
5078
- /** The identifier of the last sync operation. */
5079
- lastSyncId: Scalars["Float"];
5080
- /** The project that was created or updated. */
5081
- project?: Maybe<Project>;
5082
- /** Whether the operation was successful. */
5083
- success: Scalars["Boolean"];
5619
+ export declare type ProjectSearchResultIssuesArgs = {
5620
+ after?: Maybe<Scalars["String"]>;
5621
+ before?: Maybe<Scalars["String"]>;
5622
+ filter?: Maybe<IssueFilter>;
5623
+ first?: Maybe<Scalars["Int"]>;
5624
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5625
+ last?: Maybe<Scalars["Int"]>;
5626
+ orderBy?: Maybe<PaginationOrderBy>;
5627
+ };
5628
+ export declare type ProjectSearchResultLinksArgs = {
5629
+ after?: Maybe<Scalars["String"]>;
5630
+ before?: Maybe<Scalars["String"]>;
5631
+ first?: Maybe<Scalars["Int"]>;
5632
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5633
+ last?: Maybe<Scalars["Int"]>;
5634
+ orderBy?: Maybe<PaginationOrderBy>;
5635
+ };
5636
+ export declare type ProjectSearchResultMembersArgs = {
5637
+ after?: Maybe<Scalars["String"]>;
5638
+ before?: Maybe<Scalars["String"]>;
5639
+ filter?: Maybe<UserFilter>;
5640
+ first?: Maybe<Scalars["Int"]>;
5641
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5642
+ includeDisabled?: Maybe<Scalars["Boolean"]>;
5643
+ last?: Maybe<Scalars["Int"]>;
5644
+ orderBy?: Maybe<PaginationOrderBy>;
5645
+ };
5646
+ export declare type ProjectSearchResultProjectMilestonesArgs = {
5647
+ after?: Maybe<Scalars["String"]>;
5648
+ before?: Maybe<Scalars["String"]>;
5649
+ first?: Maybe<Scalars["Int"]>;
5650
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5651
+ last?: Maybe<Scalars["Int"]>;
5652
+ orderBy?: Maybe<PaginationOrderBy>;
5653
+ };
5654
+ export declare type ProjectSearchResultProjectUpdatesArgs = {
5655
+ after?: Maybe<Scalars["String"]>;
5656
+ before?: Maybe<Scalars["String"]>;
5657
+ first?: Maybe<Scalars["Int"]>;
5658
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5659
+ last?: Maybe<Scalars["Int"]>;
5660
+ orderBy?: Maybe<PaginationOrderBy>;
5661
+ };
5662
+ export declare type ProjectSearchResultTeamsArgs = {
5663
+ after?: Maybe<Scalars["String"]>;
5664
+ before?: Maybe<Scalars["String"]>;
5665
+ filter?: Maybe<TeamFilter>;
5666
+ first?: Maybe<Scalars["Int"]>;
5667
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5668
+ last?: Maybe<Scalars["Int"]>;
5669
+ orderBy?: Maybe<PaginationOrderBy>;
5670
+ };
5671
+ export declare type ProjectSearchResultConnection = {
5672
+ __typename?: "ProjectSearchResultConnection";
5673
+ edges: Array<ProjectSearchResultEdge>;
5674
+ nodes: Array<ProjectSearchResult>;
5675
+ pageInfo: PageInfo;
5676
+ };
5677
+ export declare type ProjectSearchResultEdge = {
5678
+ __typename?: "ProjectSearchResultEdge";
5679
+ /** Used in `before` and `after` args */
5680
+ cursor: Scalars["String"];
5681
+ node: ProjectSearchResult;
5084
5682
  };
5085
5683
  /** A update associated with an project. */
5086
5684
  export declare type ProjectUpdate = Node & {
@@ -5366,6 +5964,8 @@ export declare type Query = {
5366
5964
  comments: CommentConnection;
5367
5965
  /** One specific custom view. */
5368
5966
  customView: CustomView;
5967
+ /** [INTERNAL] Suggests metadata for a view based on it's filters. */
5968
+ customViewDetailsSuggestion: CustomViewSuggestionPayload;
5369
5969
  /** Custom views for the user. */
5370
5970
  customViews: CustomViewConnection;
5371
5971
  /** One specific cycle. */
@@ -5380,6 +5980,10 @@ export declare type Query = {
5380
5980
  emoji: Emoji;
5381
5981
  /** All custom emojis. */
5382
5982
  emojis: EmojiConnection;
5983
+ /** One specific external user. */
5984
+ externalUser: ExternalUser;
5985
+ /** All external users for the organization. */
5986
+ externalUsers: ExternalUserConnection;
5383
5987
  /** One specific favorite. */
5384
5988
  favorite: Favorite;
5385
5989
  /** The user's favorites. */
@@ -5398,6 +6002,12 @@ export declare type Query = {
5398
6002
  integrationsSettings: IntegrationsSettings;
5399
6003
  /** One specific issue. */
5400
6004
  issue: Issue;
6005
+ /** Find issues that are related to a given Figma file key. */
6006
+ issueFigmaFileKeySearch: IssueConnection;
6007
+ /** Suggests filters for an issue view based on a text prompt. */
6008
+ issueFilterSuggestion: IssueFilterSuggestionPayload;
6009
+ /** Checks a CSV file validity against a specific import service. */
6010
+ issueImportCheckCSV: IssueImportCheckPayload;
5401
6011
  /** Fetches the GitHub token, completing the OAuth flow. */
5402
6012
  issueImportFinishGithubOAuth: GithubOAuthTokenPayload;
5403
6013
  /** One specific label. */
@@ -5438,6 +6048,8 @@ export declare type Query = {
5438
6048
  organizationInvites: OrganizationInviteConnection;
5439
6049
  /** One specific project. */
5440
6050
  project: Project;
6051
+ /** Suggests filters for a project view based on a text prompt. */
6052
+ projectFilterSuggestion: ProjectFilterSuggestionPayload;
5441
6053
  /** One specific project link. */
5442
6054
  projectLink: ProjectLink;
5443
6055
  /** All links for the project. */
@@ -5464,6 +6076,12 @@ export declare type Query = {
5464
6076
  roadmapToProjects: RoadmapToProjectConnection;
5465
6077
  /** All roadmaps in the workspace. */
5466
6078
  roadmaps: RoadmapConnection;
6079
+ /** Search documents. */
6080
+ searchDocuments: DocumentSearchPayload;
6081
+ /** Search issues. */
6082
+ searchIssues: IssueSearchPayload;
6083
+ /** Search projects. */
6084
+ searchProjects: ProjectSearchPayload;
5467
6085
  /** Fetch SSO login URL for the email provided. */
5468
6086
  ssoUrlFromEmail: SsoUrlFromEmailResponse;
5469
6087
  /** One specific team. */
@@ -5587,6 +6205,9 @@ export declare type QueryCommentsArgs = {
5587
6205
  export declare type QueryCustomViewArgs = {
5588
6206
  id: Scalars["String"];
5589
6207
  };
6208
+ export declare type QueryCustomViewDetailsSuggestionArgs = {
6209
+ filter: Scalars["JSONObject"];
6210
+ };
5590
6211
  export declare type QueryCustomViewsArgs = {
5591
6212
  after?: Maybe<Scalars["String"]>;
5592
6213
  before?: Maybe<Scalars["String"]>;
@@ -5629,6 +6250,17 @@ export declare type QueryEmojisArgs = {
5629
6250
  last?: Maybe<Scalars["Int"]>;
5630
6251
  orderBy?: Maybe<PaginationOrderBy>;
5631
6252
  };
6253
+ export declare type QueryExternalUserArgs = {
6254
+ id: Scalars["String"];
6255
+ };
6256
+ export declare type QueryExternalUsersArgs = {
6257
+ after?: Maybe<Scalars["String"]>;
6258
+ before?: Maybe<Scalars["String"]>;
6259
+ first?: Maybe<Scalars["Int"]>;
6260
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6261
+ last?: Maybe<Scalars["Int"]>;
6262
+ orderBy?: Maybe<PaginationOrderBy>;
6263
+ };
5632
6264
  export declare type QueryFavoriteArgs = {
5633
6265
  id: Scalars["String"];
5634
6266
  };
@@ -5672,6 +6304,22 @@ export declare type QueryIntegrationsSettingsArgs = {
5672
6304
  export declare type QueryIssueArgs = {
5673
6305
  id: Scalars["String"];
5674
6306
  };
6307
+ export declare type QueryIssueFigmaFileKeySearchArgs = {
6308
+ after?: Maybe<Scalars["String"]>;
6309
+ before?: Maybe<Scalars["String"]>;
6310
+ fileKey: Scalars["String"];
6311
+ first?: Maybe<Scalars["Int"]>;
6312
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6313
+ last?: Maybe<Scalars["Int"]>;
6314
+ orderBy?: Maybe<PaginationOrderBy>;
6315
+ };
6316
+ export declare type QueryIssueFilterSuggestionArgs = {
6317
+ prompt: Scalars["String"];
6318
+ };
6319
+ export declare type QueryIssueImportCheckCsvArgs = {
6320
+ csvUrl: Scalars["String"];
6321
+ service: Scalars["String"];
6322
+ };
5675
6323
  export declare type QueryIssueImportFinishGithubOAuthArgs = {
5676
6324
  code: Scalars["String"];
5677
6325
  };
@@ -5765,6 +6413,9 @@ export declare type QueryOrganizationInvitesArgs = {
5765
6413
  export declare type QueryProjectArgs = {
5766
6414
  id: Scalars["String"];
5767
6415
  };
6416
+ export declare type QueryProjectFilterSuggestionArgs = {
6417
+ prompt: Scalars["String"];
6418
+ };
5768
6419
  export declare type QueryProjectLinkArgs = {
5769
6420
  id: Scalars["String"];
5770
6421
  };
@@ -5829,6 +6480,34 @@ export declare type QueryRoadmapsArgs = {
5829
6480
  last?: Maybe<Scalars["Int"]>;
5830
6481
  orderBy?: Maybe<PaginationOrderBy>;
5831
6482
  };
6483
+ export declare type QuerySearchDocumentsArgs = {
6484
+ after?: Maybe<Scalars["String"]>;
6485
+ before?: Maybe<Scalars["String"]>;
6486
+ first?: Maybe<Scalars["Int"]>;
6487
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6488
+ last?: Maybe<Scalars["Int"]>;
6489
+ orderBy?: Maybe<PaginationOrderBy>;
6490
+ term: Scalars["String"];
6491
+ };
6492
+ export declare type QuerySearchIssuesArgs = {
6493
+ after?: Maybe<Scalars["String"]>;
6494
+ before?: Maybe<Scalars["String"]>;
6495
+ filter?: Maybe<IssueFilter>;
6496
+ first?: Maybe<Scalars["Int"]>;
6497
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6498
+ last?: Maybe<Scalars["Int"]>;
6499
+ orderBy?: Maybe<PaginationOrderBy>;
6500
+ term: Scalars["String"];
6501
+ };
6502
+ export declare type QuerySearchProjectsArgs = {
6503
+ after?: Maybe<Scalars["String"]>;
6504
+ before?: Maybe<Scalars["String"]>;
6505
+ first?: Maybe<Scalars["Int"]>;
6506
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6507
+ last?: Maybe<Scalars["Int"]>;
6508
+ orderBy?: Maybe<PaginationOrderBy>;
6509
+ term: Scalars["String"];
6510
+ };
5832
6511
  export declare type QuerySsoUrlFromEmailArgs = {
5833
6512
  email: Scalars["String"];
5834
6513
  isDesktop?: Maybe<Scalars["Boolean"]>;
@@ -5940,7 +6619,7 @@ export declare type Reaction = Node & {
5940
6619
  */
5941
6620
  updatedAt: Scalars["DateTime"];
5942
6621
  /** The user who reacted. */
5943
- user: User;
6622
+ user?: Maybe<User>;
5944
6623
  };
5945
6624
  export declare type ReactionConnection = {
5946
6625
  __typename?: "ReactionConnection";
@@ -5990,6 +6669,8 @@ export declare type Roadmap = Node & {
5990
6669
  __typename?: "Roadmap";
5991
6670
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5992
6671
  archivedAt?: Maybe<Scalars["DateTime"]>;
6672
+ /** The roadmap's color. */
6673
+ color?: Maybe<Scalars["String"]>;
5993
6674
  /** The time at which the entity was created. */
5994
6675
  createdAt: Scalars["DateTime"];
5995
6676
  /** The user who created the roadmap. */
@@ -6008,6 +6689,8 @@ export declare type Roadmap = Node & {
6008
6689
  projects: ProjectConnection;
6009
6690
  /** The roadmap's unique URL slug. */
6010
6691
  slugId: Scalars["String"];
6692
+ /** The sort order of the roadmap within the organization. */
6693
+ sortOrder: Scalars["Float"];
6011
6694
  /**
6012
6695
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
6013
6696
  * 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
@@ -6057,6 +6740,8 @@ export declare type RoadmapConnection = {
6057
6740
  pageInfo: PageInfo;
6058
6741
  };
6059
6742
  export declare type RoadmapCreateInput = {
6743
+ /** The roadmap's color. */
6744
+ color?: Maybe<Scalars["String"]>;
6060
6745
  /** The description of the roadmap. */
6061
6746
  description?: Maybe<Scalars["String"]>;
6062
6747
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
@@ -6065,6 +6750,8 @@ export declare type RoadmapCreateInput = {
6065
6750
  name: Scalars["String"];
6066
6751
  /** The owner of the roadmap */
6067
6752
  ownerId?: Maybe<Scalars["String"]>;
6753
+ /** The sort order of the roadmap within the organization. */
6754
+ sortOrder?: Maybe<Scalars["Float"]>;
6068
6755
  };
6069
6756
  export declare type RoadmapEdge = {
6070
6757
  __typename?: "RoadmapEdge";
@@ -6158,12 +6845,16 @@ export declare type RoadmapToProjectUpdateInput = {
6158
6845
  sortOrder?: Maybe<Scalars["Float"]>;
6159
6846
  };
6160
6847
  export declare type RoadmapUpdateInput = {
6848
+ /** The roadmap's color. */
6849
+ color?: Maybe<Scalars["String"]>;
6161
6850
  /** The description of the roadmap. */
6162
6851
  description?: Maybe<Scalars["String"]>;
6163
6852
  /** The name of the roadmap. */
6164
6853
  name?: Maybe<Scalars["String"]>;
6165
6854
  /** The owner of the roadmap */
6166
6855
  ownerId?: Maybe<Scalars["String"]>;
6856
+ /** The sort order of the roadmap within the organization. */
6857
+ sortOrder?: Maybe<Scalars["Float"]>;
6167
6858
  };
6168
6859
  export declare type SamlConfiguration = {
6169
6860
  __typename?: "SamlConfiguration";
@@ -6215,6 +6906,7 @@ export declare type SentrySettingsInput = {
6215
6906
  export declare enum SlaStatus {
6216
6907
  Breached = "Breached",
6217
6908
  Completed = "Completed",
6909
+ Failed = "Failed",
6218
6910
  HighRisk = "HighRisk",
6219
6911
  LowRisk = "LowRisk",
6220
6912
  MediumRisk = "MediumRisk"
@@ -6274,6 +6966,8 @@ export declare type SourceTypeComparator = {
6274
6966
  notStartsWith?: Maybe<Scalars["String"]>;
6275
6967
  /** Starts with constraint. Matches any values that start with the given string. */
6276
6968
  startsWith?: Maybe<Scalars["String"]>;
6969
+ /** Starts with case insensitive constraint. Matches any values that start with the given string. */
6970
+ startsWithIgnoreCase?: Maybe<Scalars["String"]>;
6277
6971
  };
6278
6972
  export declare type SsoUrlFromEmailResponse = {
6279
6973
  __typename?: "SsoUrlFromEmailResponse";
@@ -6312,6 +7006,8 @@ export declare type StringComparator = {
6312
7006
  notStartsWith?: Maybe<Scalars["String"]>;
6313
7007
  /** Starts with constraint. Matches any values that start with the given string. */
6314
7008
  startsWith?: Maybe<Scalars["String"]>;
7009
+ /** Starts with case insensitive constraint. Matches any values that start with the given string. */
7010
+ startsWithIgnoreCase?: Maybe<Scalars["String"]>;
6315
7011
  };
6316
7012
  /**
6317
7013
  * Contains either the full serialized state of the application or delta packets that the requester can
@@ -7043,7 +7739,7 @@ export declare type User = Node & {
7043
7739
  assignedIssues: IssueConnection;
7044
7740
  /** An URL to the user's avatar image. */
7045
7741
  avatarUrl?: Maybe<Scalars["String"]>;
7046
- /** Hash for the user to be used in calendar URLs. */
7742
+ /** [DEPRECATED] Hash for the user to be used in calendar URLs. */
7047
7743
  calendarHash?: Maybe<Scalars["String"]>;
7048
7744
  /** The time at which the entity was created. */
7049
7745
  createdAt: Scalars["DateTime"];
@@ -7294,6 +7990,7 @@ export declare enum UserFlagType {
7294
7990
  CycleWelcomeDismissed = "cycleWelcomeDismissed",
7295
7991
  DesktopDownloadToastDismissed = "desktopDownloadToastDismissed",
7296
7992
  DesktopInstalled = "desktopInstalled",
7993
+ DesktopTabsOnboardingDismissed = "desktopTabsOnboardingDismissed",
7297
7994
  DueDateShortcutMigration = "dueDateShortcutMigration",
7298
7995
  EmptyActiveIssuesDismissed = "emptyActiveIssuesDismissed",
7299
7996
  EmptyBacklogDismissed = "emptyBacklogDismissed",
@@ -7301,12 +7998,14 @@ export declare enum UserFlagType {
7301
7998
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
7302
7999
  FigmaPromptDismissed = "figmaPromptDismissed",
7303
8000
  ImportBannerDismissed = "importBannerDismissed",
8001
+ InsightsHelpDismissed = "insightsHelpDismissed",
7304
8002
  InsightsWelcomeDismissed = "insightsWelcomeDismissed",
7305
8003
  IssueLabelSuggestionUsed = "issueLabelSuggestionUsed",
7306
8004
  IssueMovePromptCompleted = "issueMovePromptCompleted",
7307
8005
  JoinTeamIntroductionDismissed = "joinTeamIntroductionDismissed",
7308
8006
  ListSelectionTip = "listSelectionTip",
7309
8007
  MigrateThemePreference = "migrateThemePreference",
8008
+ MilestoneOnboardingIsSeenAndDismissed = "milestoneOnboardingIsSeenAndDismissed",
7310
8009
  ProjectBacklogWelcomeDismissed = "projectBacklogWelcomeDismissed",
7311
8010
  ProjectUpdatesWelcomeDismissed = "projectUpdatesWelcomeDismissed",
7312
8011
  ProjectWelcomeDismissed = "projectWelcomeDismissed",
@@ -7343,6 +8042,8 @@ export declare type UserSettings = Node & {
7343
8042
  __typename?: "UserSettings";
7344
8043
  /** The time at which the entity was archived. Null if the entity has not been archived. */
7345
8044
  archivedAt?: Maybe<Scalars["DateTime"]>;
8045
+ /** Hash for the user to be used in calendar URLs. */
8046
+ calendarHash?: Maybe<Scalars["String"]>;
7346
8047
  /** The time at which the entity was created. */
7347
8048
  createdAt: Scalars["DateTime"];
7348
8049
  /** The unique identifier of the entity. */
@@ -7422,6 +8123,8 @@ export declare type ViewPreferencesCreateInput = {
7422
8123
  cycleId?: Maybe<Scalars["String"]>;
7423
8124
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
7424
8125
  id?: Maybe<Scalars["String"]>;
8126
+ /** The default parameters for the insight on that view. */
8127
+ insights?: Maybe<Scalars["JSONObject"]>;
7425
8128
  /** The label these view preferences are associated with. */
7426
8129
  labelId?: Maybe<Scalars["String"]>;
7427
8130
  /** View preferences object. */
@@ -7454,8 +8157,10 @@ export declare enum ViewPreferencesType {
7454
8157
  User = "user"
7455
8158
  }
7456
8159
  export declare type ViewPreferencesUpdateInput = {
8160
+ /** The default parameters for the insight on that view. */
8161
+ insights?: Maybe<Scalars["JSONObject"]>;
7457
8162
  /** View preferences. */
7458
- preferences: Scalars["JSONObject"];
8163
+ preferences?: Maybe<Scalars["JSONObject"]>;
7459
8164
  };
7460
8165
  /** The client view this custom view is targeting. */
7461
8166
  export declare enum ViewType {
@@ -7479,10 +8184,12 @@ export declare enum ViewType {
7479
8184
  ProjectsAll = "projectsAll",
7480
8185
  ProjectsBacklog = "projectsBacklog",
7481
8186
  ProjectsClosed = "projectsClosed",
8187
+ QuickView = "quickView",
7482
8188
  Roadmap = "roadmap",
7483
8189
  RoadmapAll = "roadmapAll",
7484
8190
  RoadmapBacklog = "roadmapBacklog",
7485
8191
  RoadmapClosed = "roadmapClosed",
8192
+ Roadmaps = "roadmaps",
7486
8193
  Search = "search",
7487
8194
  Teams = "teams",
7488
8195
  Triage = "triage",
@@ -7901,6 +8608,16 @@ export declare type CustomViewFragment = {
7901
8608
  creator: {
7902
8609
  __typename?: "User";
7903
8610
  } & Pick<User, "id">;
8611
+ owner: {
8612
+ __typename?: "User";
8613
+ } & Pick<User, "id">;
8614
+ };
8615
+ export declare type DocumentContentFragment = {
8616
+ __typename: "DocumentContent";
8617
+ } & Pick<DocumentContent, "contentData" | "content" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
8618
+ issue?: Maybe<{
8619
+ __typename?: "Issue";
8620
+ } & Pick<Issue, "id">>;
7904
8621
  };
7905
8622
  export declare type DocumentFragment = {
7906
8623
  __typename: "Document";
@@ -7953,13 +8670,6 @@ declare type Notification_ProjectNotification_Fragment = {
7953
8670
  } & Pick<User, "id">;
7954
8671
  } & ProjectNotificationFragment;
7955
8672
  export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
7956
- export declare type PersonalNoteFragment = {
7957
- __typename: "PersonalNote";
7958
- } & Pick<PersonalNote, "updatedAt" | "contentData" | "archivedAt" | "createdAt" | "id"> & {
7959
- user: {
7960
- __typename?: "User";
7961
- } & Pick<User, "id">;
7962
- };
7963
8673
  export declare type ProjectNotificationSubscriptionFragment = {
7964
8674
  __typename: "ProjectNotificationSubscription";
7965
8675
  } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
@@ -8008,9 +8718,9 @@ export declare type ProjectFragment = {
8008
8718
  export declare type ReactionFragment = {
8009
8719
  __typename: "Reaction";
8010
8720
  } & Pick<Reaction, "emoji" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
8011
- user: {
8721
+ user?: Maybe<{
8012
8722
  __typename?: "User";
8013
- } & Pick<User, "id">;
8723
+ } & Pick<User, "id">>;
8014
8724
  };
8015
8725
  export declare type IssueHistoryFragment = {
8016
8726
  __typename: "IssueHistory";
@@ -8082,7 +8792,7 @@ export declare type IssueRelationFragment = {
8082
8792
  };
8083
8793
  export declare type RoadmapFragment = {
8084
8794
  __typename: "Roadmap";
8085
- } & Pick<Roadmap, "description" | "updatedAt" | "name" | "slugId" | "archivedAt" | "createdAt" | "id"> & {
8795
+ } & Pick<Roadmap, "description" | "updatedAt" | "name" | "color" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
8086
8796
  creator: {
8087
8797
  __typename?: "User";
8088
8798
  } & Pick<User, "id">;
@@ -8149,7 +8859,7 @@ export declare type UserAccountFragment = {
8149
8859
  };
8150
8860
  export declare type UserFragment = {
8151
8861
  __typename: "User";
8152
- } & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "calendarHash" | "createdIssueCount" | "disableReason" | "statusEmoji" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe">;
8862
+ } & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "statusEmoji" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe" | "calendarHash">;
8153
8863
  export declare type PushSubscriptionFragment = {
8154
8864
  __typename: "PushSubscription";
8155
8865
  } & Pick<PushSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -8178,7 +8888,7 @@ export declare type ProjectLinkFragment = {
8178
8888
  };
8179
8889
  export declare type IssueImportFragment = {
8180
8890
  __typename: "IssueImport";
8181
- } & Pick<IssueImport, "progress" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
8891
+ } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
8182
8892
  export declare type IntegrationFragment = {
8183
8893
  __typename: "Integration";
8184
8894
  } & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -8230,6 +8940,9 @@ export declare type IssueFragment = {
8230
8940
  project?: Maybe<{
8231
8941
  __typename?: "Project";
8232
8942
  } & Pick<Project, "id">>;
8943
+ projectMilestone?: Maybe<{
8944
+ __typename?: "ProjectMilestone";
8945
+ } & Pick<ProjectMilestone, "id">>;
8233
8946
  team: {
8234
8947
  __typename?: "Team";
8235
8948
  } & Pick<Team, "id">;
@@ -8242,6 +8955,9 @@ export declare type IssueFragment = {
8242
8955
  snoozedBy?: Maybe<{
8243
8956
  __typename?: "User";
8244
8957
  } & Pick<User, "id">>;
8958
+ favorite?: Maybe<{
8959
+ __typename?: "Favorite";
8960
+ } & Pick<Favorite, "id">>;
8245
8961
  state: {
8246
8962
  __typename?: "WorkflowState";
8247
8963
  } & Pick<WorkflowState, "id">;
@@ -8306,6 +9022,9 @@ export declare type TeamFragment = {
8306
9022
  export declare type SyncResponseFragment = {
8307
9023
  __typename: "SyncResponse";
8308
9024
  } & Pick<SyncResponse, "delta" | "state" | "lastSyncId" | "subscribedSyncGroups" | "databaseVersion">;
9025
+ export declare type ArchiveResponseFragment = {
9026
+ __typename: "ArchiveResponse";
9027
+ } & Pick<ArchiveResponse, "archive" | "totalCount" | "databaseVersion" | "includesDependencies">;
8309
9028
  export declare type TeamMembershipFragment = {
8310
9029
  __typename: "TeamMembership";
8311
9030
  } & Pick<TeamMembership, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id" | "owner"> & {
@@ -8542,7 +9261,7 @@ export declare type PaidSubscriptionFragment = {
8542
9261
  };
8543
9262
  export declare type UserSettingsFragment = {
8544
9263
  __typename: "UserSettings";
8545
- } & Pick<UserSettings, "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
9264
+ } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
8546
9265
  user: {
8547
9266
  __typename?: "User";
8548
9267
  } & Pick<User, "id">;
@@ -8707,6 +9426,9 @@ export declare type CustomViewPayloadFragment = {
8707
9426
  __typename?: "CustomView";
8708
9427
  } & Pick<CustomView, "id">;
8709
9428
  };
9429
+ export declare type CustomViewSuggestionPayloadFragment = {
9430
+ __typename: "CustomViewSuggestionPayload";
9431
+ } & Pick<CustomViewSuggestionPayload, "description" | "icon" | "name">;
8710
9432
  export declare type CycleConnectionFragment = {
8711
9433
  __typename: "CycleConnection";
8712
9434
  } & {
@@ -8741,6 +9463,42 @@ export declare type DocumentPayloadFragment = {
8741
9463
  __typename?: "Document";
8742
9464
  } & Pick<Document, "id">;
8743
9465
  };
9466
+ export declare type DocumentSearchPayloadFragment = {
9467
+ __typename: "DocumentSearchPayload";
9468
+ } & Pick<DocumentSearchPayload, "totalCount"> & {
9469
+ archivePayload: {
9470
+ __typename?: "ArchiveResponse";
9471
+ } & ArchiveResponseFragment;
9472
+ nodes: Array<{
9473
+ __typename?: "DocumentSearchResult";
9474
+ } & DocumentSearchResultFragment>;
9475
+ pageInfo: {
9476
+ __typename?: "PageInfo";
9477
+ } & PageInfoFragment;
9478
+ };
9479
+ export declare type DocumentSearchResultFragment = {
9480
+ __typename: "DocumentSearchResult";
9481
+ } & Pick<DocumentSearchResult, "metadata" | "color" | "contentData" | "content" | "title" | "slugId" | "icon" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9482
+ project: {
9483
+ __typename?: "Project";
9484
+ } & Pick<Project, "id">;
9485
+ creator: {
9486
+ __typename?: "User";
9487
+ } & Pick<User, "id">;
9488
+ updatedBy: {
9489
+ __typename?: "User";
9490
+ } & Pick<User, "id">;
9491
+ };
9492
+ export declare type DocumentSearchResultConnectionFragment = {
9493
+ __typename: "DocumentSearchResultConnection";
9494
+ } & {
9495
+ nodes: Array<{
9496
+ __typename?: "DocumentSearchResult";
9497
+ } & DocumentSearchResultFragment>;
9498
+ pageInfo: {
9499
+ __typename?: "PageInfo";
9500
+ } & PageInfoFragment;
9501
+ };
8744
9502
  export declare type EmailUnsubscribePayloadFragment = {
8745
9503
  __typename: "EmailUnsubscribePayload";
8746
9504
  } & Pick<EmailUnsubscribePayload, "success">;
@@ -8875,6 +9633,9 @@ export declare type IssueConnectionFragment = {
8875
9633
  __typename?: "PageInfo";
8876
9634
  } & PageInfoFragment;
8877
9635
  };
9636
+ export declare type IssueFilterSuggestionPayloadFragment = {
9637
+ __typename: "IssueFilterSuggestionPayload";
9638
+ } & Pick<IssueFilterSuggestionPayload, "filter">;
8878
9639
  export declare type IssueHistoryConnectionFragment = {
8879
9640
  __typename: "IssueHistoryConnection";
8880
9641
  } & {
@@ -8885,6 +9646,9 @@ export declare type IssueHistoryConnectionFragment = {
8885
9646
  __typename?: "PageInfo";
8886
9647
  } & PageInfoFragment;
8887
9648
  };
9649
+ export declare type IssueImportCheckPayloadFragment = {
9650
+ __typename: "IssueImportCheckPayload";
9651
+ } & Pick<IssueImportCheckPayload, "success">;
8888
9652
  export declare type IssueImportDeletePayloadFragment = {
8889
9653
  __typename: "IssueImportDeletePayload";
8890
9654
  } & Pick<IssueImportDeletePayload, "lastSyncId" | "success"> & {
@@ -8936,13 +9700,70 @@ export declare type IssueRelationConnectionFragment = {
8936
9700
  __typename?: "PageInfo";
8937
9701
  } & PageInfoFragment;
8938
9702
  };
8939
- export declare type IssueRelationPayloadFragment = {
8940
- __typename: "IssueRelationPayload";
8941
- } & Pick<IssueRelationPayload, "lastSyncId" | "success"> & {
8942
- issueRelation: {
8943
- __typename?: "IssueRelation";
8944
- } & Pick<IssueRelation, "id">;
8945
- };
9703
+ export declare type IssueRelationPayloadFragment = {
9704
+ __typename: "IssueRelationPayload";
9705
+ } & Pick<IssueRelationPayload, "lastSyncId" | "success"> & {
9706
+ issueRelation: {
9707
+ __typename?: "IssueRelation";
9708
+ } & Pick<IssueRelation, "id">;
9709
+ };
9710
+ export declare type IssueSearchPayloadFragment = {
9711
+ __typename: "IssueSearchPayload";
9712
+ } & Pick<IssueSearchPayload, "totalCount"> & {
9713
+ archivePayload: {
9714
+ __typename?: "ArchiveResponse";
9715
+ } & ArchiveResponseFragment;
9716
+ nodes: Array<{
9717
+ __typename?: "IssueSearchResult";
9718
+ } & IssueSearchResultFragment>;
9719
+ pageInfo: {
9720
+ __typename?: "PageInfo";
9721
+ } & PageInfoFragment;
9722
+ };
9723
+ export declare type IssueSearchResultFragment = {
9724
+ __typename: "IssueSearchResult";
9725
+ } & Pick<IssueSearchResult, "trashed" | "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"> & {
9726
+ cycle?: Maybe<{
9727
+ __typename?: "Cycle";
9728
+ } & Pick<Cycle, "id">>;
9729
+ parent?: Maybe<{
9730
+ __typename?: "Issue";
9731
+ } & Pick<Issue, "id">>;
9732
+ project?: Maybe<{
9733
+ __typename?: "Project";
9734
+ } & Pick<Project, "id">>;
9735
+ projectMilestone?: Maybe<{
9736
+ __typename?: "ProjectMilestone";
9737
+ } & Pick<ProjectMilestone, "id">>;
9738
+ team: {
9739
+ __typename?: "Team";
9740
+ } & Pick<Team, "id">;
9741
+ assignee?: Maybe<{
9742
+ __typename?: "User";
9743
+ } & Pick<User, "id">>;
9744
+ creator?: Maybe<{
9745
+ __typename?: "User";
9746
+ } & Pick<User, "id">>;
9747
+ snoozedBy?: Maybe<{
9748
+ __typename?: "User";
9749
+ } & Pick<User, "id">>;
9750
+ favorite?: Maybe<{
9751
+ __typename?: "Favorite";
9752
+ } & Pick<Favorite, "id">>;
9753
+ state: {
9754
+ __typename?: "WorkflowState";
9755
+ } & Pick<WorkflowState, "id">;
9756
+ };
9757
+ export declare type IssueSearchResultConnectionFragment = {
9758
+ __typename: "IssueSearchResultConnection";
9759
+ } & {
9760
+ nodes: Array<{
9761
+ __typename?: "IssueSearchResult";
9762
+ } & IssueSearchResultFragment>;
9763
+ pageInfo: {
9764
+ __typename?: "PageInfo";
9765
+ } & PageInfoFragment;
9766
+ };
8946
9767
  export declare type LogoutResponseFragment = {
8947
9768
  __typename: "LogoutResponse";
8948
9769
  } & Pick<LogoutResponse, "success">;
@@ -8967,9 +9788,18 @@ declare type Node_Cycle_Fragment = {
8967
9788
  declare type Node_Document_Fragment = {
8968
9789
  __typename: "Document";
8969
9790
  } & Pick<Document, "id">;
9791
+ declare type Node_DocumentContent_Fragment = {
9792
+ __typename: "DocumentContent";
9793
+ } & Pick<DocumentContent, "id">;
9794
+ declare type Node_DocumentSearchResult_Fragment = {
9795
+ __typename: "DocumentSearchResult";
9796
+ } & Pick<DocumentSearchResult, "id">;
8970
9797
  declare type Node_Emoji_Fragment = {
8971
9798
  __typename: "Emoji";
8972
9799
  } & Pick<Emoji, "id">;
9800
+ declare type Node_ExternalUser_Fragment = {
9801
+ __typename: "ExternalUser";
9802
+ } & Pick<ExternalUser, "id">;
8973
9803
  declare type Node_Favorite_Fragment = {
8974
9804
  __typename: "Favorite";
8975
9805
  } & Pick<Favorite, "id">;
@@ -9003,6 +9833,9 @@ declare type Node_IssueNotification_Fragment = {
9003
9833
  declare type Node_IssueRelation_Fragment = {
9004
9834
  __typename: "IssueRelation";
9005
9835
  } & Pick<IssueRelation, "id">;
9836
+ declare type Node_IssueSearchResult_Fragment = {
9837
+ __typename: "IssueSearchResult";
9838
+ } & Pick<IssueSearchResult, "id">;
9006
9839
  declare type Node_OauthClient_Fragment = {
9007
9840
  __typename: "OauthClient";
9008
9841
  } & Pick<OauthClient, "id">;
@@ -9024,9 +9857,6 @@ declare type Node_OrganizationInvite_Fragment = {
9024
9857
  declare type Node_PaidSubscription_Fragment = {
9025
9858
  __typename: "PaidSubscription";
9026
9859
  } & Pick<PaidSubscription, "id">;
9027
- declare type Node_PersonalNote_Fragment = {
9028
- __typename: "PersonalNote";
9029
- } & Pick<PersonalNote, "id">;
9030
9860
  declare type Node_Project_Fragment = {
9031
9861
  __typename: "Project";
9032
9862
  } & Pick<Project, "id">;
@@ -9042,6 +9872,9 @@ declare type Node_ProjectNotification_Fragment = {
9042
9872
  declare type Node_ProjectNotificationSubscription_Fragment = {
9043
9873
  __typename: "ProjectNotificationSubscription";
9044
9874
  } & Pick<ProjectNotificationSubscription, "id">;
9875
+ declare type Node_ProjectSearchResult_Fragment = {
9876
+ __typename: "ProjectSearchResult";
9877
+ } & Pick<ProjectSearchResult, "id">;
9045
9878
  declare type Node_ProjectUpdate_Fragment = {
9046
9879
  __typename: "ProjectUpdate";
9047
9880
  } & Pick<ProjectUpdate, "id">;
@@ -9093,7 +9926,7 @@ declare type Node_WorkflowDefinition_Fragment = {
9093
9926
  declare type Node_WorkflowState_Fragment = {
9094
9927
  __typename: "WorkflowState";
9095
9928
  } & Pick<WorkflowState, "id">;
9096
- export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_Emoji_Fragment | Node_Favorite_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_PersonalNote_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_User_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
9929
+ export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentSearchResult_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Favorite_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_User_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
9097
9930
  export declare type NotificationConnectionFragment = {
9098
9931
  __typename: "NotificationConnection";
9099
9932
  } & {
@@ -9182,6 +10015,9 @@ export declare type OrganizationInvitePayloadFragment = {
9182
10015
  export declare type OrganizationPayloadFragment = {
9183
10016
  __typename: "OrganizationPayload";
9184
10017
  } & Pick<OrganizationPayload, "lastSyncId" | "success">;
10018
+ export declare type OrganizationStartPlusTrialPayloadFragment = {
10019
+ __typename: "OrganizationStartPlusTrialPayload";
10020
+ } & Pick<OrganizationStartPlusTrialPayload, "success">;
9185
10021
  export declare type PageInfoFragment = {
9186
10022
  __typename: "PageInfo";
9187
10023
  } & Pick<PageInfo, "startCursor" | "endCursor" | "hasPreviousPage" | "hasNextPage">;
@@ -9195,6 +10031,9 @@ export declare type ProjectConnectionFragment = {
9195
10031
  __typename?: "PageInfo";
9196
10032
  } & PageInfoFragment;
9197
10033
  };
10034
+ export declare type ProjectFilterSuggestionPayloadFragment = {
10035
+ __typename: "ProjectFilterSuggestionPayload";
10036
+ } & Pick<ProjectFilterSuggestionPayload, "filter">;
9198
10037
  export declare type ProjectLinkConnectionFragment = {
9199
10038
  __typename: "ProjectLinkConnection";
9200
10039
  } & {
@@ -9236,6 +10075,45 @@ export declare type ProjectPayloadFragment = {
9236
10075
  __typename?: "Project";
9237
10076
  } & Pick<Project, "id">>;
9238
10077
  };
10078
+ export declare type ProjectSearchPayloadFragment = {
10079
+ __typename: "ProjectSearchPayload";
10080
+ } & Pick<ProjectSearchPayload, "totalCount"> & {
10081
+ archivePayload: {
10082
+ __typename?: "ArchiveResponse";
10083
+ } & ArchiveResponseFragment;
10084
+ nodes: Array<{
10085
+ __typename?: "ProjectSearchResult";
10086
+ } & ProjectSearchResultFragment>;
10087
+ pageInfo: {
10088
+ __typename?: "PageInfo";
10089
+ } & PageInfoFragment;
10090
+ };
10091
+ export declare type ProjectSearchResultFragment = {
10092
+ __typename: "ProjectSearchResult";
10093
+ } & Pick<ProjectSearchResult, "metadata" | "url" | "targetDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
10094
+ integrationsSettings?: Maybe<{
10095
+ __typename?: "IntegrationsSettings";
10096
+ } & Pick<IntegrationsSettings, "id">>;
10097
+ lead?: Maybe<{
10098
+ __typename?: "User";
10099
+ } & Pick<User, "id">>;
10100
+ convertedFromIssue?: Maybe<{
10101
+ __typename?: "Issue";
10102
+ } & Pick<Issue, "id">>;
10103
+ creator: {
10104
+ __typename?: "User";
10105
+ } & Pick<User, "id">;
10106
+ };
10107
+ export declare type ProjectSearchResultConnectionFragment = {
10108
+ __typename: "ProjectSearchResultConnection";
10109
+ } & {
10110
+ nodes: Array<{
10111
+ __typename?: "ProjectSearchResult";
10112
+ } & ProjectSearchResultFragment>;
10113
+ pageInfo: {
10114
+ __typename?: "PageInfo";
10115
+ } & PageInfoFragment;
10116
+ };
9239
10117
  export declare type ProjectUpdateConnectionFragment = {
9240
10118
  __typename: "ProjectUpdateConnection";
9241
10119
  } & {
@@ -9955,6 +10833,19 @@ export declare type ImageUploadFromUrlMutation = {
9955
10833
  __typename?: "ImageUploadFromUrlPayload";
9956
10834
  } & ImageUploadFromUrlPayloadFragment;
9957
10835
  };
10836
+ export declare type ImportFileUploadMutationVariables = Exact<{
10837
+ contentType: Scalars["String"];
10838
+ filename: Scalars["String"];
10839
+ metaData?: Maybe<Scalars["JSON"]>;
10840
+ size: Scalars["Int"];
10841
+ }>;
10842
+ export declare type ImportFileUploadMutation = {
10843
+ __typename?: "Mutation";
10844
+ } & {
10845
+ importFileUpload: {
10846
+ __typename?: "UploadPayload";
10847
+ } & UploadPayloadFragment;
10848
+ };
9958
10849
  export declare type DeleteIntegrationMutationVariables = Exact<{
9959
10850
  id: Scalars["String"];
9960
10851
  }>;
@@ -10298,8 +11189,24 @@ export declare type IssueImportCreateAsanaMutation = {
10298
11189
  __typename?: "IssueImportPayload";
10299
11190
  } & IssueImportPayloadFragment;
10300
11191
  };
11192
+ export declare type IssueImportCreateCsvJiraMutationVariables = Exact<{
11193
+ csvUrl: Scalars["String"];
11194
+ jiraEmail?: Maybe<Scalars["String"]>;
11195
+ jiraHostname?: Maybe<Scalars["String"]>;
11196
+ jiraToken?: Maybe<Scalars["String"]>;
11197
+ organizationId?: Maybe<Scalars["String"]>;
11198
+ teamId?: Maybe<Scalars["String"]>;
11199
+ teamName?: Maybe<Scalars["String"]>;
11200
+ }>;
11201
+ export declare type IssueImportCreateCsvJiraMutation = {
11202
+ __typename?: "Mutation";
11203
+ } & {
11204
+ issueImportCreateCSVJira: {
11205
+ __typename?: "IssueImportPayload";
11206
+ } & IssueImportPayloadFragment;
11207
+ };
10301
11208
  export declare type IssueImportCreateClubhouseMutationVariables = Exact<{
10302
- clubhouseTeamName: Scalars["String"];
11209
+ clubhouseGroupName: Scalars["String"];
10303
11210
  clubhouseToken: Scalars["String"];
10304
11211
  id?: Maybe<Scalars["String"]>;
10305
11212
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
@@ -10653,6 +11560,16 @@ export declare type UpdateOrganizationInviteMutation = {
10653
11560
  __typename?: "OrganizationInvitePayload";
10654
11561
  } & OrganizationInvitePayloadFragment;
10655
11562
  };
11563
+ export declare type OrganizationStartPlusTrialMutationVariables = Exact<{
11564
+ [key: string]: never;
11565
+ }>;
11566
+ export declare type OrganizationStartPlusTrialMutation = {
11567
+ __typename?: "Mutation";
11568
+ } & {
11569
+ organizationStartPlusTrial: {
11570
+ __typename?: "OrganizationStartPlusTrialPayload";
11571
+ } & OrganizationStartPlusTrialPayloadFragment;
11572
+ };
10656
11573
  export declare type UpdateOrganizationMutationVariables = Exact<{
10657
11574
  input: UpdateOrganizationInput;
10658
11575
  }>;
@@ -10887,6 +11804,16 @@ export declare type ResendOrganizationInviteMutation = {
10887
11804
  __typename?: "ArchivePayload";
10888
11805
  } & ArchivePayloadFragment;
10889
11806
  };
11807
+ export declare type ArchiveRoadmapMutationVariables = Exact<{
11808
+ id: Scalars["String"];
11809
+ }>;
11810
+ export declare type ArchiveRoadmapMutation = {
11811
+ __typename?: "Mutation";
11812
+ } & {
11813
+ roadmapArchive: {
11814
+ __typename?: "ArchivePayload";
11815
+ } & ArchivePayloadFragment;
11816
+ };
10890
11817
  export declare type CreateRoadmapMutationVariables = Exact<{
10891
11818
  input: RoadmapCreateInput;
10892
11819
  }>;
@@ -10938,6 +11865,16 @@ export declare type UpdateRoadmapToProjectMutation = {
10938
11865
  __typename?: "RoadmapToProjectPayload";
10939
11866
  } & RoadmapToProjectPayloadFragment;
10940
11867
  };
11868
+ export declare type UnarchiveRoadmapMutationVariables = Exact<{
11869
+ id: Scalars["String"];
11870
+ }>;
11871
+ export declare type UnarchiveRoadmapMutation = {
11872
+ __typename?: "Mutation";
11873
+ } & {
11874
+ roadmapUnarchive: {
11875
+ __typename?: "ArchivePayload";
11876
+ } & ArchivePayloadFragment;
11877
+ };
10941
11878
  export declare type UpdateRoadmapMutationVariables = Exact<{
10942
11879
  id: Scalars["String"];
10943
11880
  input: RoadmapUpdateInput;
@@ -12150,6 +13087,43 @@ export declare type Issue_SubscribersQuery = {
12150
13087
  } & UserConnectionFragment;
12151
13088
  };
12152
13089
  };
13090
+ export declare type IssueFigmaFileKeySearchQueryVariables = Exact<{
13091
+ after?: Maybe<Scalars["String"]>;
13092
+ before?: Maybe<Scalars["String"]>;
13093
+ fileKey: Scalars["String"];
13094
+ first?: Maybe<Scalars["Int"]>;
13095
+ includeArchived?: Maybe<Scalars["Boolean"]>;
13096
+ last?: Maybe<Scalars["Int"]>;
13097
+ orderBy?: Maybe<PaginationOrderBy>;
13098
+ }>;
13099
+ export declare type IssueFigmaFileKeySearchQuery = {
13100
+ __typename?: "Query";
13101
+ } & {
13102
+ issueFigmaFileKeySearch: {
13103
+ __typename?: "IssueConnection";
13104
+ } & IssueConnectionFragment;
13105
+ };
13106
+ export declare type IssueFilterSuggestionQueryVariables = Exact<{
13107
+ prompt: Scalars["String"];
13108
+ }>;
13109
+ export declare type IssueFilterSuggestionQuery = {
13110
+ __typename?: "Query";
13111
+ } & {
13112
+ issueFilterSuggestion: {
13113
+ __typename?: "IssueFilterSuggestionPayload";
13114
+ } & IssueFilterSuggestionPayloadFragment;
13115
+ };
13116
+ export declare type IssueImportCheckCsvQueryVariables = Exact<{
13117
+ csvUrl: Scalars["String"];
13118
+ service: Scalars["String"];
13119
+ }>;
13120
+ export declare type IssueImportCheckCsvQuery = {
13121
+ __typename?: "Query";
13122
+ } & {
13123
+ issueImportCheckCSV: {
13124
+ __typename?: "IssueImportCheckPayload";
13125
+ } & IssueImportCheckPayloadFragment;
13126
+ };
12153
13127
  export declare type IssueImportFinishGithubOAuthQueryVariables = Exact<{
12154
13128
  code: Scalars["String"];
12155
13129
  }>;
@@ -12771,6 +13745,26 @@ export declare type Project_MembersQuery = {
12771
13745
  } & UserConnectionFragment;
12772
13746
  };
12773
13747
  };
13748
+ export declare type Project_ProjectMilestonesQueryVariables = Exact<{
13749
+ id: Scalars["String"];
13750
+ after?: Maybe<Scalars["String"]>;
13751
+ before?: Maybe<Scalars["String"]>;
13752
+ first?: Maybe<Scalars["Int"]>;
13753
+ includeArchived?: Maybe<Scalars["Boolean"]>;
13754
+ last?: Maybe<Scalars["Int"]>;
13755
+ orderBy?: Maybe<PaginationOrderBy>;
13756
+ }>;
13757
+ export declare type Project_ProjectMilestonesQuery = {
13758
+ __typename?: "Query";
13759
+ } & {
13760
+ project: {
13761
+ __typename?: "Project";
13762
+ } & {
13763
+ projectMilestones: {
13764
+ __typename?: "ProjectMilestoneConnection";
13765
+ } & ProjectMilestoneConnectionFragment;
13766
+ };
13767
+ };
12774
13768
  export declare type Project_ProjectUpdatesQueryVariables = Exact<{
12775
13769
  id: Scalars["String"];
12776
13770
  after?: Maybe<Scalars["String"]>;
@@ -12812,6 +13806,16 @@ export declare type Project_TeamsQuery = {
12812
13806
  } & TeamConnectionFragment;
12813
13807
  };
12814
13808
  };
13809
+ export declare type ProjectFilterSuggestionQueryVariables = Exact<{
13810
+ prompt: Scalars["String"];
13811
+ }>;
13812
+ export declare type ProjectFilterSuggestionQuery = {
13813
+ __typename?: "Query";
13814
+ } & {
13815
+ projectFilterSuggestion: {
13816
+ __typename?: "ProjectFilterSuggestionPayload";
13817
+ } & ProjectFilterSuggestionPayloadFragment;
13818
+ };
12815
13819
  export declare type ProjectLinkQueryVariables = Exact<{
12816
13820
  id: Scalars["String"];
12817
13821
  }>;
@@ -12994,6 +13998,116 @@ export declare type RoadmapsQuery = {
12994
13998
  __typename?: "RoadmapConnection";
12995
13999
  } & RoadmapConnectionFragment;
12996
14000
  };
14001
+ export declare type SearchDocumentsQueryVariables = Exact<{
14002
+ after?: Maybe<Scalars["String"]>;
14003
+ before?: Maybe<Scalars["String"]>;
14004
+ first?: Maybe<Scalars["Int"]>;
14005
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14006
+ last?: Maybe<Scalars["Int"]>;
14007
+ orderBy?: Maybe<PaginationOrderBy>;
14008
+ term: Scalars["String"];
14009
+ }>;
14010
+ export declare type SearchDocumentsQuery = {
14011
+ __typename?: "Query";
14012
+ } & {
14013
+ searchDocuments: {
14014
+ __typename?: "DocumentSearchPayload";
14015
+ } & DocumentSearchPayloadFragment;
14016
+ };
14017
+ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
14018
+ after?: Maybe<Scalars["String"]>;
14019
+ before?: Maybe<Scalars["String"]>;
14020
+ first?: Maybe<Scalars["Int"]>;
14021
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14022
+ last?: Maybe<Scalars["Int"]>;
14023
+ orderBy?: Maybe<PaginationOrderBy>;
14024
+ term: Scalars["String"];
14025
+ }>;
14026
+ export declare type SearchDocuments_ArchivePayloadQuery = {
14027
+ __typename?: "Query";
14028
+ } & {
14029
+ searchDocuments: {
14030
+ __typename?: "DocumentSearchPayload";
14031
+ } & {
14032
+ archivePayload: {
14033
+ __typename?: "ArchiveResponse";
14034
+ } & ArchiveResponseFragment;
14035
+ };
14036
+ };
14037
+ export declare type SearchIssuesQueryVariables = Exact<{
14038
+ after?: Maybe<Scalars["String"]>;
14039
+ before?: Maybe<Scalars["String"]>;
14040
+ filter?: Maybe<IssueFilter>;
14041
+ first?: Maybe<Scalars["Int"]>;
14042
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14043
+ last?: Maybe<Scalars["Int"]>;
14044
+ orderBy?: Maybe<PaginationOrderBy>;
14045
+ term: Scalars["String"];
14046
+ }>;
14047
+ export declare type SearchIssuesQuery = {
14048
+ __typename?: "Query";
14049
+ } & {
14050
+ searchIssues: {
14051
+ __typename?: "IssueSearchPayload";
14052
+ } & IssueSearchPayloadFragment;
14053
+ };
14054
+ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
14055
+ after?: Maybe<Scalars["String"]>;
14056
+ before?: Maybe<Scalars["String"]>;
14057
+ filter?: Maybe<IssueFilter>;
14058
+ first?: Maybe<Scalars["Int"]>;
14059
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14060
+ last?: Maybe<Scalars["Int"]>;
14061
+ orderBy?: Maybe<PaginationOrderBy>;
14062
+ term: Scalars["String"];
14063
+ }>;
14064
+ export declare type SearchIssues_ArchivePayloadQuery = {
14065
+ __typename?: "Query";
14066
+ } & {
14067
+ searchIssues: {
14068
+ __typename?: "IssueSearchPayload";
14069
+ } & {
14070
+ archivePayload: {
14071
+ __typename?: "ArchiveResponse";
14072
+ } & ArchiveResponseFragment;
14073
+ };
14074
+ };
14075
+ export declare type SearchProjectsQueryVariables = Exact<{
14076
+ after?: Maybe<Scalars["String"]>;
14077
+ before?: Maybe<Scalars["String"]>;
14078
+ first?: Maybe<Scalars["Int"]>;
14079
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14080
+ last?: Maybe<Scalars["Int"]>;
14081
+ orderBy?: Maybe<PaginationOrderBy>;
14082
+ term: Scalars["String"];
14083
+ }>;
14084
+ export declare type SearchProjectsQuery = {
14085
+ __typename?: "Query";
14086
+ } & {
14087
+ searchProjects: {
14088
+ __typename?: "ProjectSearchPayload";
14089
+ } & ProjectSearchPayloadFragment;
14090
+ };
14091
+ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
14092
+ after?: Maybe<Scalars["String"]>;
14093
+ before?: Maybe<Scalars["String"]>;
14094
+ first?: Maybe<Scalars["Int"]>;
14095
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14096
+ last?: Maybe<Scalars["Int"]>;
14097
+ orderBy?: Maybe<PaginationOrderBy>;
14098
+ term: Scalars["String"];
14099
+ }>;
14100
+ export declare type SearchProjects_ArchivePayloadQuery = {
14101
+ __typename?: "Query";
14102
+ } & {
14103
+ searchProjects: {
14104
+ __typename?: "ProjectSearchPayload";
14105
+ } & {
14106
+ archivePayload: {
14107
+ __typename?: "ArchiveResponse";
14108
+ } & ArchiveResponseFragment;
14109
+ };
14110
+ };
12997
14111
  export declare type SsoUrlFromEmailQueryVariables = Exact<{
12998
14112
  email: Scalars["String"];
12999
14113
  isDesktop?: Maybe<Scalars["Boolean"]>;
@@ -13545,7 +14659,7 @@ export declare type WorkflowStatesQuery = {
13545
14659
  } & WorkflowStateConnectionFragment;
13546
14660
  };
13547
14661
  export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
13548
- export declare const PersonalNoteFragmentDoc: DocumentNode<PersonalNoteFragment, unknown>;
14662
+ export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
13549
14663
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
13550
14664
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
13551
14665
  export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
@@ -13595,12 +14709,17 @@ export declare const CreateOrJoinOrganizationResponseFragmentDoc: DocumentNode<C
13595
14709
  export declare const CustomViewFragmentDoc: DocumentNode<CustomViewFragment, unknown>;
13596
14710
  export declare const CustomViewConnectionFragmentDoc: DocumentNode<CustomViewConnectionFragment, unknown>;
13597
14711
  export declare const CustomViewPayloadFragmentDoc: DocumentNode<CustomViewPayloadFragment, unknown>;
14712
+ export declare const CustomViewSuggestionPayloadFragmentDoc: DocumentNode<CustomViewSuggestionPayloadFragment, unknown>;
13598
14713
  export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
13599
14714
  export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFragment, unknown>;
13600
14715
  export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
13601
14716
  export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
13602
14717
  export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
13603
14718
  export declare const DocumentPayloadFragmentDoc: DocumentNode<DocumentPayloadFragment, unknown>;
14719
+ export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFragment, unknown>;
14720
+ export declare const DocumentSearchResultFragmentDoc: DocumentNode<DocumentSearchResultFragment, unknown>;
14721
+ export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSearchPayloadFragment, unknown>;
14722
+ export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
13604
14723
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
13605
14724
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
13606
14725
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
@@ -13628,10 +14747,12 @@ export declare const IntegrationsSettingsPayloadFragmentDoc: DocumentNode<Integr
13628
14747
  export declare const IssueFragmentDoc: DocumentNode<IssueFragment, unknown>;
13629
14748
  export declare const IssueBatchPayloadFragmentDoc: DocumentNode<IssueBatchPayloadFragment, unknown>;
13630
14749
  export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFragment, unknown>;
14750
+ export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<IssueFilterSuggestionPayloadFragment, unknown>;
13631
14751
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
13632
14752
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
13633
14753
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
13634
14754
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
14755
+ export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
13635
14756
  export declare const IssueImportDeletePayloadFragmentDoc: DocumentNode<IssueImportDeletePayloadFragment, unknown>;
13636
14757
  export declare const IssueImportPayloadFragmentDoc: DocumentNode<IssueImportPayloadFragment, unknown>;
13637
14758
  export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
@@ -13642,6 +14763,9 @@ export declare const IssuePriorityValueFragmentDoc: DocumentNode<IssuePriorityVa
13642
14763
  export declare const IssueRelationFragmentDoc: DocumentNode<IssueRelationFragment, unknown>;
13643
14764
  export declare const IssueRelationConnectionFragmentDoc: DocumentNode<IssueRelationConnectionFragment, unknown>;
13644
14765
  export declare const IssueRelationPayloadFragmentDoc: DocumentNode<IssueRelationPayloadFragment, unknown>;
14766
+ export declare const IssueSearchResultFragmentDoc: DocumentNode<IssueSearchResultFragment, unknown>;
14767
+ export declare const IssueSearchPayloadFragmentDoc: DocumentNode<IssueSearchPayloadFragment, unknown>;
14768
+ export declare const IssueSearchResultConnectionFragmentDoc: DocumentNode<IssueSearchResultConnectionFragment, unknown>;
13645
14769
  export declare const LogoutResponseFragmentDoc: DocumentNode<LogoutResponseFragment, unknown>;
13646
14770
  export declare const NodeFragmentDoc: DocumentNode<NodeFragment, unknown>;
13647
14771
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
@@ -13664,8 +14788,10 @@ export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<Organ
13664
14788
  export declare const OrganizationInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteDetailsPayloadFragment, unknown>;
13665
14789
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
13666
14790
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
14791
+ export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
13667
14792
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
13668
14793
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
14794
+ export declare const ProjectFilterSuggestionPayloadFragmentDoc: DocumentNode<ProjectFilterSuggestionPayloadFragment, unknown>;
13669
14795
  export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
13670
14796
  export declare const ProjectLinkConnectionFragmentDoc: DocumentNode<ProjectLinkConnectionFragment, unknown>;
13671
14797
  export declare const ProjectLinkPayloadFragmentDoc: DocumentNode<ProjectLinkPayloadFragment, unknown>;
@@ -13673,6 +14799,9 @@ export declare const ProjectMilestoneFragmentDoc: DocumentNode<ProjectMilestoneF
13673
14799
  export declare const ProjectMilestoneConnectionFragmentDoc: DocumentNode<ProjectMilestoneConnectionFragment, unknown>;
13674
14800
  export declare const ProjectMilestonePayloadFragmentDoc: DocumentNode<ProjectMilestonePayloadFragment, unknown>;
13675
14801
  export declare const ProjectPayloadFragmentDoc: DocumentNode<ProjectPayloadFragment, unknown>;
14802
+ export declare const ProjectSearchResultFragmentDoc: DocumentNode<ProjectSearchResultFragment, unknown>;
14803
+ export declare const ProjectSearchPayloadFragmentDoc: DocumentNode<ProjectSearchPayloadFragment, unknown>;
14804
+ export declare const ProjectSearchResultConnectionFragmentDoc: DocumentNode<ProjectSearchResultConnectionFragment, unknown>;
13676
14805
  export declare const ProjectUpdateFragmentDoc: DocumentNode<ProjectUpdateFragment, unknown>;
13677
14806
  export declare const ProjectUpdateConnectionFragmentDoc: DocumentNode<ProjectUpdateConnectionFragment, unknown>;
13678
14807
  export declare const ProjectUpdateInteractionFragmentDoc: DocumentNode<ProjectUpdateInteractionFragment, unknown>;
@@ -13868,6 +14997,12 @@ export declare const GoogleUserAccountAuthDocument: DocumentNode<GoogleUserAccou
13868
14997
  export declare const ImageUploadFromUrlDocument: DocumentNode<ImageUploadFromUrlMutation, Exact<{
13869
14998
  url: Scalars["String"];
13870
14999
  }>>;
15000
+ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMutation, Exact<{
15001
+ contentType: Scalars["String"];
15002
+ filename: Scalars["String"];
15003
+ metaData?: Maybe<Record<string, unknown>> | undefined;
15004
+ size: Scalars["Int"];
15005
+ }>>;
13871
15006
  export declare const DeleteIntegrationDocument: DocumentNode<DeleteIntegrationMutation, Exact<{
13872
15007
  id: Scalars["String"];
13873
15008
  }>>;
@@ -13994,8 +15129,17 @@ export declare const IssueImportCreateAsanaDocument: DocumentNode<IssueImportCre
13994
15129
  teamId?: Maybe<string> | undefined;
13995
15130
  teamName?: Maybe<string> | undefined;
13996
15131
  }>>;
15132
+ export declare const IssueImportCreateCsvJiraDocument: DocumentNode<IssueImportCreateCsvJiraMutation, Exact<{
15133
+ csvUrl: Scalars["String"];
15134
+ jiraEmail?: Maybe<string> | undefined;
15135
+ jiraHostname?: Maybe<string> | undefined;
15136
+ jiraToken?: Maybe<string> | undefined;
15137
+ organizationId?: Maybe<string> | undefined;
15138
+ teamId?: Maybe<string> | undefined;
15139
+ teamName?: Maybe<string> | undefined;
15140
+ }>>;
13997
15141
  export declare const IssueImportCreateClubhouseDocument: DocumentNode<IssueImportCreateClubhouseMutation, Exact<{
13998
- clubhouseTeamName: Scalars["String"];
15142
+ clubhouseGroupName: Scalars["String"];
13999
15143
  clubhouseToken: Scalars["String"];
14000
15144
  id?: Maybe<string> | undefined;
14001
15145
  includeClosedIssues?: Maybe<boolean> | undefined;
@@ -14125,6 +15269,9 @@ export declare const UpdateOrganizationInviteDocument: DocumentNode<UpdateOrgani
14125
15269
  id: Scalars["String"];
14126
15270
  input: OrganizationInviteUpdateInput;
14127
15271
  }>>;
15272
+ export declare const OrganizationStartPlusTrialDocument: DocumentNode<OrganizationStartPlusTrialMutation, Exact<{
15273
+ [key: string]: never;
15274
+ }>>;
14128
15275
  export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, Exact<{
14129
15276
  input: UpdateOrganizationInput;
14130
15277
  }>>;
@@ -14198,6 +15345,9 @@ export declare const RefreshGoogleSheetsDataDocument: DocumentNode<RefreshGoogle
14198
15345
  export declare const ResendOrganizationInviteDocument: DocumentNode<ResendOrganizationInviteMutation, Exact<{
14199
15346
  id: Scalars["String"];
14200
15347
  }>>;
15348
+ export declare const ArchiveRoadmapDocument: DocumentNode<ArchiveRoadmapMutation, Exact<{
15349
+ id: Scalars["String"];
15350
+ }>>;
14201
15351
  export declare const CreateRoadmapDocument: DocumentNode<CreateRoadmapMutation, Exact<{
14202
15352
  input: RoadmapCreateInput;
14203
15353
  }>>;
@@ -14214,6 +15364,9 @@ export declare const UpdateRoadmapToProjectDocument: DocumentNode<UpdateRoadmapT
14214
15364
  id: Scalars["String"];
14215
15365
  input: RoadmapToProjectUpdateInput;
14216
15366
  }>>;
15367
+ export declare const UnarchiveRoadmapDocument: DocumentNode<UnarchiveRoadmapMutation, Exact<{
15368
+ id: Scalars["String"];
15369
+ }>>;
14217
15370
  export declare const UpdateRoadmapDocument: DocumentNode<UpdateRoadmapMutation, Exact<{
14218
15371
  id: Scalars["String"];
14219
15372
  input: RoadmapUpdateInput;
@@ -14712,6 +15865,22 @@ export declare const Issue_SubscribersDocument: DocumentNode<Issue_SubscribersQu
14712
15865
  last?: Maybe<number> | undefined;
14713
15866
  orderBy?: Maybe<PaginationOrderBy> | undefined;
14714
15867
  }>>;
15868
+ export declare const IssueFigmaFileKeySearchDocument: DocumentNode<IssueFigmaFileKeySearchQuery, Exact<{
15869
+ after?: Maybe<string> | undefined;
15870
+ before?: Maybe<string> | undefined;
15871
+ fileKey: Scalars["String"];
15872
+ first?: Maybe<number> | undefined;
15873
+ includeArchived?: Maybe<boolean> | undefined;
15874
+ last?: Maybe<number> | undefined;
15875
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
15876
+ }>>;
15877
+ export declare const IssueFilterSuggestionDocument: DocumentNode<IssueFilterSuggestionQuery, Exact<{
15878
+ prompt: Scalars["String"];
15879
+ }>>;
15880
+ export declare const IssueImportCheckCsvDocument: DocumentNode<IssueImportCheckCsvQuery, Exact<{
15881
+ csvUrl: Scalars["String"];
15882
+ service: Scalars["String"];
15883
+ }>>;
14715
15884
  export declare const IssueImportFinishGithubOAuthDocument: DocumentNode<IssueImportFinishGithubOAuthQuery, Exact<{
14716
15885
  code: Scalars["String"];
14717
15886
  }>>;
@@ -14981,6 +16150,15 @@ export declare const Project_MembersDocument: DocumentNode<Project_MembersQuery,
14981
16150
  last?: Maybe<number> | undefined;
14982
16151
  orderBy?: Maybe<PaginationOrderBy> | undefined;
14983
16152
  }>>;
16153
+ export declare const Project_ProjectMilestonesDocument: DocumentNode<Project_ProjectMilestonesQuery, Exact<{
16154
+ id: Scalars["String"];
16155
+ after?: Maybe<string> | undefined;
16156
+ before?: Maybe<string> | undefined;
16157
+ first?: Maybe<number> | undefined;
16158
+ includeArchived?: Maybe<boolean> | undefined;
16159
+ last?: Maybe<number> | undefined;
16160
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16161
+ }>>;
14984
16162
  export declare const Project_ProjectUpdatesDocument: DocumentNode<Project_ProjectUpdatesQuery, Exact<{
14985
16163
  id: Scalars["String"];
14986
16164
  after?: Maybe<string> | undefined;
@@ -15000,6 +16178,9 @@ export declare const Project_TeamsDocument: DocumentNode<Project_TeamsQuery, Exa
15000
16178
  last?: Maybe<number> | undefined;
15001
16179
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15002
16180
  }>>;
16181
+ export declare const ProjectFilterSuggestionDocument: DocumentNode<ProjectFilterSuggestionQuery, Exact<{
16182
+ prompt: Scalars["String"];
16183
+ }>>;
15003
16184
  export declare const ProjectLinkDocument: DocumentNode<ProjectLinkQuery, Exact<{
15004
16185
  id: Scalars["String"];
15005
16186
  }>>;
@@ -15080,6 +16261,62 @@ export declare const RoadmapsDocument: DocumentNode<RoadmapsQuery, Exact<{
15080
16261
  last?: Maybe<number> | undefined;
15081
16262
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15082
16263
  }>>;
16264
+ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery, Exact<{
16265
+ after?: Maybe<string> | undefined;
16266
+ before?: Maybe<string> | undefined;
16267
+ first?: Maybe<number> | undefined;
16268
+ includeArchived?: Maybe<boolean> | undefined;
16269
+ last?: Maybe<number> | undefined;
16270
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16271
+ term: Scalars["String"];
16272
+ }>>;
16273
+ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<SearchDocuments_ArchivePayloadQuery, Exact<{
16274
+ after?: Maybe<string> | undefined;
16275
+ before?: Maybe<string> | undefined;
16276
+ first?: Maybe<number> | undefined;
16277
+ includeArchived?: Maybe<boolean> | undefined;
16278
+ last?: Maybe<number> | undefined;
16279
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16280
+ term: Scalars["String"];
16281
+ }>>;
16282
+ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact<{
16283
+ after?: Maybe<string> | undefined;
16284
+ before?: Maybe<string> | undefined;
16285
+ filter?: Maybe<IssueFilter> | undefined;
16286
+ first?: Maybe<number> | undefined;
16287
+ includeArchived?: Maybe<boolean> | undefined;
16288
+ last?: Maybe<number> | undefined;
16289
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16290
+ term: Scalars["String"];
16291
+ }>>;
16292
+ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIssues_ArchivePayloadQuery, Exact<{
16293
+ after?: Maybe<string> | undefined;
16294
+ before?: Maybe<string> | undefined;
16295
+ filter?: Maybe<IssueFilter> | undefined;
16296
+ first?: Maybe<number> | undefined;
16297
+ includeArchived?: Maybe<boolean> | undefined;
16298
+ last?: Maybe<number> | undefined;
16299
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16300
+ term: Scalars["String"];
16301
+ }>>;
16302
+ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, Exact<{
16303
+ after?: Maybe<string> | undefined;
16304
+ before?: Maybe<string> | undefined;
16305
+ first?: Maybe<number> | undefined;
16306
+ includeArchived?: Maybe<boolean> | undefined;
16307
+ last?: Maybe<number> | undefined;
16308
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16309
+ term: Scalars["String"];
16310
+ }>>;
16311
+ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchProjects_ArchivePayloadQuery, Exact<{
16312
+ after?: Maybe<string> | undefined;
16313
+ before?: Maybe<string> | undefined;
16314
+ first?: Maybe<number> | undefined;
16315
+ includeArchived?: Maybe<boolean> | undefined;
16316
+ last?: Maybe<number> | undefined;
16317
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16318
+ term: Scalars["String"];
16319
+ }>>;
15083
16320
  export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery, Exact<{
15084
16321
  email: Scalars["String"];
15085
16322
  isDesktop?: Maybe<boolean> | undefined;