@linear/sdk 3.0.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";
@@ -585,6 +597,8 @@ export declare type CustomView = Node & {
585
597
  name: Scalars["String"];
586
598
  /** The organization of the custom view. */
587
599
  organization: Organization;
600
+ /** The user who owns the custom view. */
601
+ owner: User;
588
602
  /** [ALPHA] The filter applied to projects in the custom view. */
589
603
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
590
604
  /** Whether the custom view is shared with everyone in the organization. */
@@ -619,6 +633,8 @@ export declare type CustomViewCreateInput = {
619
633
  id?: Maybe<Scalars["String"]>;
620
634
  /** The name of the custom view. */
621
635
  name: Scalars["String"];
636
+ /** The owner of the custom view */
637
+ ownerId?: Maybe<Scalars["String"]>;
622
638
  /** [ALPHA] The project filter applied to issues in the custom view. */
623
639
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
624
640
  /** Whether the custom view is shared with everyone in the organization. */
@@ -644,11 +660,11 @@ export declare type CustomViewPayload = {
644
660
  export declare type CustomViewSuggestionPayload = {
645
661
  __typename?: "CustomViewSuggestionPayload";
646
662
  /** The suggested view description. */
647
- suggestedDescription?: Maybe<Scalars["String"]>;
663
+ description?: Maybe<Scalars["String"]>;
648
664
  /** The suggested view icon. */
649
- suggestedIcon?: Maybe<Scalars["String"]>;
665
+ icon?: Maybe<Scalars["String"]>;
650
666
  /** The suggested view name. */
651
- suggestedName?: Maybe<Scalars["String"]>;
667
+ name?: Maybe<Scalars["String"]>;
652
668
  };
653
669
  export declare type CustomViewUpdateInput = {
654
670
  /** The color of the icon of the custom view. */
@@ -663,6 +679,8 @@ export declare type CustomViewUpdateInput = {
663
679
  icon?: Maybe<Scalars["String"]>;
664
680
  /** The name of the custom view. */
665
681
  name?: Maybe<Scalars["String"]>;
682
+ /** The owner of the custom view */
683
+ ownerId?: Maybe<Scalars["String"]>;
666
684
  /** [ALPHA] The project filter applied to issues in the custom view. */
667
685
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
668
686
  /** Whether the custom view is shared with everyone in the organization. */
@@ -897,6 +915,28 @@ export declare type DocumentConnection = {
897
915
  nodes: Array<Document>;
898
916
  pageInfo: PageInfo;
899
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
+ };
900
940
  export declare type DocumentCreateInput = {
901
941
  /** The color of the icon. */
902
942
  color?: Maybe<Scalars["String"]>;
@@ -928,6 +968,63 @@ export declare type DocumentPayload = {
928
968
  /** Whether the operation was successful. */
929
969
  success: Scalars["Boolean"];
930
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
+ };
931
1028
  export declare type DocumentUpdateInput = {
932
1029
  /** The color of the icon. */
933
1030
  color?: Maybe<Scalars["String"]>;
@@ -1158,9 +1255,9 @@ export declare type Favorite = Node & {
1158
1255
  label?: Maybe<IssueLabel>;
1159
1256
  /** The parent folder of the favorite. */
1160
1257
  parent?: Maybe<Favorite>;
1161
- /** The team of the favorited predefiend view. */
1258
+ /** The team of the favorited predefined view. */
1162
1259
  predefinedViewTeam?: Maybe<Team>;
1163
- /** The type of favorited predefiend view. */
1260
+ /** The type of favorited predefined view. */
1164
1261
  predefinedViewType?: Maybe<Scalars["String"]>;
1165
1262
  /** The favorited project. */
1166
1263
  project?: Maybe<Project>;
@@ -1718,6 +1815,8 @@ export declare type Issue = Node & {
1718
1815
  estimate?: Maybe<Scalars["Float"]>;
1719
1816
  /** [ALPHA] The external user who created the issue. */
1720
1817
  externalUserCreator?: Maybe<ExternalUser>;
1818
+ /** The users favorite associated with this issue. */
1819
+ favorite?: Maybe<Favorite>;
1721
1820
  /** History entries associated with the issue. */
1722
1821
  history: IssueHistoryConnection;
1723
1822
  /** The unique identifier of the entity. */
@@ -2146,6 +2245,11 @@ export declare type IssueFilter = {
2146
2245
  /** Comparator for the updated at date. */
2147
2246
  updatedAt?: Maybe<DateComparator>;
2148
2247
  };
2248
+ export declare type IssueFilterSuggestionPayload = {
2249
+ __typename?: "IssueFilterSuggestionPayload";
2250
+ /** The json filter that is suggested. */
2251
+ filter?: Maybe<Scalars["JSONObject"]>;
2252
+ };
2149
2253
  /** A record of changes to an issue. */
2150
2254
  export declare type IssueHistory = Node & {
2151
2255
  __typename?: "IssueHistory";
@@ -2281,8 +2385,12 @@ export declare type IssueImport = Node & {
2281
2385
  createdAt: Scalars["DateTime"];
2282
2386
  /** The id for the user that started the job. */
2283
2387
  creatorId: Scalars["String"];
2388
+ /** File URL for the uploaded CSV for the import, if there is one. */
2389
+ csvFileUrl?: Maybe<Scalars["String"]>;
2284
2390
  /** User readable error message, if one has occurred during the import. */
2285
2391
  error?: Maybe<Scalars["String"]>;
2392
+ /** Error code and metadata, if one has occurred during the import */
2393
+ errorMetadata?: Maybe<Scalars["JSONObject"]>;
2286
2394
  /** The unique identifier of the entity. */
2287
2395
  id: Scalars["ID"];
2288
2396
  /** The data mapping configuration for the import job. */
@@ -2302,6 +2410,11 @@ export declare type IssueImport = Node & {
2302
2410
  */
2303
2411
  updatedAt: Scalars["DateTime"];
2304
2412
  };
2413
+ export declare type IssueImportCheckPayload = {
2414
+ __typename?: "IssueImportCheckPayload";
2415
+ /** Whether the operation was successful. */
2416
+ success: Scalars["Boolean"];
2417
+ };
2305
2418
  export declare type IssueImportDeletePayload = {
2306
2419
  __typename?: "IssueImportDeletePayload";
2307
2420
  /** The import job that was deleted. */
@@ -2483,7 +2596,7 @@ export declare type IssueLabelUpdateInput = {
2483
2596
  /** An issue related notification */
2484
2597
  export declare type IssueNotification = Entity & Node & Notification & {
2485
2598
  __typename?: "IssueNotification";
2486
- /** The user that caused the notification. If empty it's Linear itself. */
2599
+ /** The user that caused the notification. */
2487
2600
  actor?: Maybe<User>;
2488
2601
  /** The time at which the entity was archived. Null if the entity has not been archived. */
2489
2602
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -2496,6 +2609,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
2496
2609
  * reminder has been sent.
2497
2610
  */
2498
2611
  emailedAt?: Maybe<Scalars["DateTime"]>;
2612
+ /** The external user that caused the notification. */
2613
+ externalUserActor?: Maybe<ExternalUser>;
2499
2614
  /** The unique identifier of the entity. */
2500
2615
  id: Scalars["ID"];
2501
2616
  /** The issue related to the notification. */
@@ -2612,6 +2727,210 @@ export declare type IssueRelationUpdateInput = {
2612
2727
  /** The type of relation of the issue to the related issue. */
2613
2728
  type?: Maybe<Scalars["String"]>;
2614
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
+ };
2615
2934
  export declare type IssueUpdateInput = {
2616
2935
  /** The identifier of the user to assign the issue to. */
2617
2936
  assigneeId?: Maybe<Scalars["String"]>;
@@ -2812,6 +3131,8 @@ export declare type Mutation = {
2812
3131
  googleUserAccountAuth: AuthResolverResponse;
2813
3132
  /** Upload an image from an URL to Linear. */
2814
3133
  imageUploadFromUrl: ImageUploadFromUrlPayload;
3134
+ /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
3135
+ importFileUpload: UploadPayload;
2815
3136
  /** Deletes an integration. */
2816
3137
  integrationDelete: ArchivePayload;
2817
3138
  /** Integrates the organization with Discord. */
@@ -2884,6 +3205,8 @@ export declare type Mutation = {
2884
3205
  issueDescriptionUpdateFromFront: IssuePayload;
2885
3206
  /** Kicks off an Asana import job. */
2886
3207
  issueImportCreateAsana: IssueImportPayload;
3208
+ /** Kicks off a Jira import job from a CSV. */
3209
+ issueImportCreateCSVJira: IssueImportPayload;
2887
3210
  /** Kicks off a Shortcut (formerly Clubhouse) import job. */
2888
3211
  issueImportCreateClubhouse: IssueImportPayload;
2889
3212
  /** Kicks off a GitHub import job. */
@@ -3246,6 +3569,12 @@ export declare type MutationGoogleUserAccountAuthArgs = {
3246
3569
  export declare type MutationImageUploadFromUrlArgs = {
3247
3570
  url: Scalars["String"];
3248
3571
  };
3572
+ export declare type MutationImportFileUploadArgs = {
3573
+ contentType: Scalars["String"];
3574
+ filename: Scalars["String"];
3575
+ metaData?: Maybe<Scalars["JSON"]>;
3576
+ size: Scalars["Int"];
3577
+ };
3249
3578
  export declare type MutationIntegrationDeleteArgs = {
3250
3579
  id: Scalars["String"];
3251
3580
  };
@@ -3371,8 +3700,17 @@ export declare type MutationIssueImportCreateAsanaArgs = {
3371
3700
  teamId?: Maybe<Scalars["String"]>;
3372
3701
  teamName?: Maybe<Scalars["String"]>;
3373
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
+ };
3374
3712
  export declare type MutationIssueImportCreateClubhouseArgs = {
3375
- clubhouseTeamName: Scalars["String"];
3713
+ clubhouseGroupName: Scalars["String"];
3376
3714
  clubhouseToken: Scalars["String"];
3377
3715
  id?: Maybe<Scalars["String"]>;
3378
3716
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
@@ -3730,7 +4068,7 @@ export declare type Node = {
3730
4068
  };
3731
4069
  /** A notification sent to a user. */
3732
4070
  export declare type Notification = {
3733
- /** The user that caused the notification. If empty it's Linear itself. */
4071
+ /** The user that caused the notification. */
3734
4072
  actor?: Maybe<User>;
3735
4073
  /** The time at which the entity was archived. Null if the entity has not been archived. */
3736
4074
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -3741,6 +4079,8 @@ export declare type Notification = {
3741
4079
  * reminder has been sent.
3742
4080
  */
3743
4081
  emailedAt?: Maybe<Scalars["DateTime"]>;
4082
+ /** The external user that caused the notification. */
4083
+ externalUserActor?: Maybe<ExternalUser>;
3744
4084
  /** The unique identifier of the entity. */
3745
4085
  id: Scalars["ID"];
3746
4086
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
@@ -4031,6 +4371,8 @@ export declare type NullableNumberComparator = {
4031
4371
  export declare type NullableProjectFilter = {
4032
4372
  /** Compound filters, all of which need to be matched by the project. */
4033
4373
  and?: Maybe<Array<NullableProjectFilter>>;
4374
+ /** Comparator for the project completion date. */
4375
+ completedAt?: Maybe<NullableDateComparator>;
4034
4376
  /** Comparator for the created at date. */
4035
4377
  createdAt?: Maybe<DateComparator>;
4036
4378
  /** Filters that the projects creator must satisfy. */
@@ -4051,6 +4393,8 @@ export declare type NullableProjectFilter = {
4051
4393
  or?: Maybe<Array<NullableProjectFilter>>;
4052
4394
  /** Filters that the projects roadmaps must satisfy. */
4053
4395
  roadmaps?: Maybe<RoadmapCollectionFilter>;
4396
+ /** [Internal] Comparator for the projects content. */
4397
+ searchableContent?: Maybe<ContentComparator>;
4054
4398
  /** Comparator for the project slug ID. */
4055
4399
  slugId?: Maybe<StringComparator>;
4056
4400
  /** Comparator for the project start date. */
@@ -4109,6 +4453,8 @@ export declare type NullableStringComparator = {
4109
4453
  null?: Maybe<Scalars["Boolean"]>;
4110
4454
  /** Starts with constraint. Matches any values that start with the given string. */
4111
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"]>;
4112
4458
  };
4113
4459
  export declare type NullableTimelessDateComparator = {
4114
4460
  /** Equals constraint. */
@@ -4261,7 +4607,7 @@ export declare type OauthClientApproval = Node & {
4261
4607
  /** An oauth client approval related notification */
4262
4608
  export declare type OauthClientApprovalNotification = Entity & Node & Notification & {
4263
4609
  __typename?: "OauthClientApprovalNotification";
4264
- /** The user that caused the notification. If empty it's Linear itself. */
4610
+ /** The user that caused the notification. */
4265
4611
  actor?: Maybe<User>;
4266
4612
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4267
4613
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -4272,6 +4618,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
4272
4618
  * reminder has been sent.
4273
4619
  */
4274
4620
  emailedAt?: Maybe<Scalars["DateTime"]>;
4621
+ /** The external user that caused the notification. */
4622
+ externalUserActor?: Maybe<ExternalUser>;
4275
4623
  /** The unique identifier of the entity. */
4276
4624
  id: Scalars["ID"];
4277
4625
  /** The OAuth client approval request related to the notification. */
@@ -4667,26 +5015,6 @@ export declare type PaidSubscription = Node & {
4667
5015
  */
4668
5016
  updatedAt: Scalars["DateTime"];
4669
5017
  };
4670
- /** A personal note for a user */
4671
- export declare type PersonalNote = Node & {
4672
- __typename?: "PersonalNote";
4673
- /** The time at which the entity was archived. Null if the entity has not been archived. */
4674
- archivedAt?: Maybe<Scalars["DateTime"]>;
4675
- /** The note content as JSON. */
4676
- contentData?: Maybe<Scalars["JSONObject"]>;
4677
- /** The time at which the entity was created. */
4678
- createdAt: Scalars["DateTime"];
4679
- /** The unique identifier of the entity. */
4680
- id: Scalars["ID"];
4681
- /**
4682
- * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
4683
- * 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
4684
- * been updated after creation.
4685
- */
4686
- updatedAt: Scalars["DateTime"];
4687
- /** The user that owns the note. */
4688
- user: User;
4689
- };
4690
5018
  /** A project. */
4691
5019
  export declare type Project = Node & {
4692
5020
  __typename?: "Project";
@@ -4846,6 +5174,8 @@ export declare type ProjectTeamsArgs = {
4846
5174
  export declare type ProjectCollectionFilter = {
4847
5175
  /** Compound filters, all of which need to be matched by the project. */
4848
5176
  and?: Maybe<Array<ProjectCollectionFilter>>;
5177
+ /** Comparator for the project completion date. */
5178
+ completedAt?: Maybe<NullableDateComparator>;
4849
5179
  /** Comparator for the created at date. */
4850
5180
  createdAt?: Maybe<DateComparator>;
4851
5181
  /** Filters that the projects creator must satisfy. */
@@ -4868,6 +5198,8 @@ export declare type ProjectCollectionFilter = {
4868
5198
  or?: Maybe<Array<ProjectCollectionFilter>>;
4869
5199
  /** Filters that the projects roadmaps must satisfy. */
4870
5200
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5201
+ /** [Internal] Comparator for the projects content. */
5202
+ searchableContent?: Maybe<ContentComparator>;
4871
5203
  /** Comparator for the project slug ID. */
4872
5204
  slugId?: Maybe<StringComparator>;
4873
5205
  /** Filters that needs to be matched by some projects. */
@@ -4925,6 +5257,8 @@ export declare type ProjectEdge = {
4925
5257
  export declare type ProjectFilter = {
4926
5258
  /** Compound filters, all of which need to be matched by the project. */
4927
5259
  and?: Maybe<Array<ProjectFilter>>;
5260
+ /** Comparator for the project completion date. */
5261
+ completedAt?: Maybe<NullableDateComparator>;
4928
5262
  /** Comparator for the created at date. */
4929
5263
  createdAt?: Maybe<DateComparator>;
4930
5264
  /** Filters that the projects creator must satisfy. */
@@ -4943,6 +5277,8 @@ export declare type ProjectFilter = {
4943
5277
  or?: Maybe<Array<ProjectFilter>>;
4944
5278
  /** Filters that the projects roadmaps must satisfy. */
4945
5279
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5280
+ /** [Internal] Comparator for the projects content. */
5281
+ searchableContent?: Maybe<ContentComparator>;
4946
5282
  /** Comparator for the project slug ID. */
4947
5283
  slugId?: Maybe<StringComparator>;
4948
5284
  /** Comparator for the project start date. */
@@ -4954,6 +5290,11 @@ export declare type ProjectFilter = {
4954
5290
  /** Comparator for the updated at date. */
4955
5291
  updatedAt?: Maybe<DateComparator>;
4956
5292
  };
5293
+ export declare type ProjectFilterSuggestionPayload = {
5294
+ __typename?: "ProjectFilterSuggestionPayload";
5295
+ /** The json filter that is suggested. */
5296
+ filter?: Maybe<Scalars["JSONObject"]>;
5297
+ };
4957
5298
  /** An external link for a project. */
4958
5299
  export declare type ProjectLink = Node & {
4959
5300
  __typename?: "ProjectLink";
@@ -5091,7 +5432,7 @@ export declare type ProjectMilestoneUpdateInput = {
5091
5432
  /** A project related notification */
5092
5433
  export declare type ProjectNotification = Entity & Node & Notification & {
5093
5434
  __typename?: "ProjectNotification";
5094
- /** The user that caused the notification. If empty it's Linear itself. */
5435
+ /** The user that caused the notification. */
5095
5436
  actor?: Maybe<User>;
5096
5437
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5097
5438
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -5102,6 +5443,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5102
5443
  * reminder has been sent.
5103
5444
  */
5104
5445
  emailedAt?: Maybe<Scalars["DateTime"]>;
5446
+ /** The external user that caused the notification. */
5447
+ externalUserActor?: Maybe<ExternalUser>;
5105
5448
  /** The unique identifier of the entity. */
5106
5449
  id: Scalars["ID"];
5107
5450
  /** The project related to the notification. */
@@ -5166,6 +5509,177 @@ export declare type ProjectPayload = {
5166
5509
  /** Whether the operation was successful. */
5167
5510
  success: Scalars["Boolean"];
5168
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"];
5610
+ };
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>;
5618
+ };
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;
5682
+ };
5169
5683
  /** A update associated with an project. */
5170
5684
  export declare type ProjectUpdate = Node & {
5171
5685
  __typename?: "ProjectUpdate";
@@ -5451,7 +5965,7 @@ export declare type Query = {
5451
5965
  /** One specific custom view. */
5452
5966
  customView: CustomView;
5453
5967
  /** [INTERNAL] Suggests metadata for a view based on it's filters. */
5454
- customViewSuggestion: CustomViewSuggestionPayload;
5968
+ customViewDetailsSuggestion: CustomViewSuggestionPayload;
5455
5969
  /** Custom views for the user. */
5456
5970
  customViews: CustomViewConnection;
5457
5971
  /** One specific cycle. */
@@ -5488,6 +6002,12 @@ export declare type Query = {
5488
6002
  integrationsSettings: IntegrationsSettings;
5489
6003
  /** One specific issue. */
5490
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;
5491
6011
  /** Fetches the GitHub token, completing the OAuth flow. */
5492
6012
  issueImportFinishGithubOAuth: GithubOAuthTokenPayload;
5493
6013
  /** One specific label. */
@@ -5528,6 +6048,8 @@ export declare type Query = {
5528
6048
  organizationInvites: OrganizationInviteConnection;
5529
6049
  /** One specific project. */
5530
6050
  project: Project;
6051
+ /** Suggests filters for a project view based on a text prompt. */
6052
+ projectFilterSuggestion: ProjectFilterSuggestionPayload;
5531
6053
  /** One specific project link. */
5532
6054
  projectLink: ProjectLink;
5533
6055
  /** All links for the project. */
@@ -5554,6 +6076,12 @@ export declare type Query = {
5554
6076
  roadmapToProjects: RoadmapToProjectConnection;
5555
6077
  /** All roadmaps in the workspace. */
5556
6078
  roadmaps: RoadmapConnection;
6079
+ /** Search documents. */
6080
+ searchDocuments: DocumentSearchPayload;
6081
+ /** Search issues. */
6082
+ searchIssues: IssueSearchPayload;
6083
+ /** Search projects. */
6084
+ searchProjects: ProjectSearchPayload;
5557
6085
  /** Fetch SSO login URL for the email provided. */
5558
6086
  ssoUrlFromEmail: SsoUrlFromEmailResponse;
5559
6087
  /** One specific team. */
@@ -5677,7 +6205,7 @@ export declare type QueryCommentsArgs = {
5677
6205
  export declare type QueryCustomViewArgs = {
5678
6206
  id: Scalars["String"];
5679
6207
  };
5680
- export declare type QueryCustomViewSuggestionArgs = {
6208
+ export declare type QueryCustomViewDetailsSuggestionArgs = {
5681
6209
  filter: Scalars["JSONObject"];
5682
6210
  };
5683
6211
  export declare type QueryCustomViewsArgs = {
@@ -5776,6 +6304,22 @@ export declare type QueryIntegrationsSettingsArgs = {
5776
6304
  export declare type QueryIssueArgs = {
5777
6305
  id: Scalars["String"];
5778
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
+ };
5779
6323
  export declare type QueryIssueImportFinishGithubOAuthArgs = {
5780
6324
  code: Scalars["String"];
5781
6325
  };
@@ -5869,6 +6413,9 @@ export declare type QueryOrganizationInvitesArgs = {
5869
6413
  export declare type QueryProjectArgs = {
5870
6414
  id: Scalars["String"];
5871
6415
  };
6416
+ export declare type QueryProjectFilterSuggestionArgs = {
6417
+ prompt: Scalars["String"];
6418
+ };
5872
6419
  export declare type QueryProjectLinkArgs = {
5873
6420
  id: Scalars["String"];
5874
6421
  };
@@ -5933,6 +6480,34 @@ export declare type QueryRoadmapsArgs = {
5933
6480
  last?: Maybe<Scalars["Int"]>;
5934
6481
  orderBy?: Maybe<PaginationOrderBy>;
5935
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
+ };
5936
6511
  export declare type QuerySsoUrlFromEmailArgs = {
5937
6512
  email: Scalars["String"];
5938
6513
  isDesktop?: Maybe<Scalars["Boolean"]>;
@@ -6391,6 +6966,8 @@ export declare type SourceTypeComparator = {
6391
6966
  notStartsWith?: Maybe<Scalars["String"]>;
6392
6967
  /** Starts with constraint. Matches any values that start with the given string. */
6393
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"]>;
6394
6971
  };
6395
6972
  export declare type SsoUrlFromEmailResponse = {
6396
6973
  __typename?: "SsoUrlFromEmailResponse";
@@ -6429,6 +7006,8 @@ export declare type StringComparator = {
6429
7006
  notStartsWith?: Maybe<Scalars["String"]>;
6430
7007
  /** Starts with constraint. Matches any values that start with the given string. */
6431
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"]>;
6432
7011
  };
6433
7012
  /**
6434
7013
  * Contains either the full serialized state of the application or delta packets that the requester can
@@ -7544,6 +8123,8 @@ export declare type ViewPreferencesCreateInput = {
7544
8123
  cycleId?: Maybe<Scalars["String"]>;
7545
8124
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
7546
8125
  id?: Maybe<Scalars["String"]>;
8126
+ /** The default parameters for the insight on that view. */
8127
+ insights?: Maybe<Scalars["JSONObject"]>;
7547
8128
  /** The label these view preferences are associated with. */
7548
8129
  labelId?: Maybe<Scalars["String"]>;
7549
8130
  /** View preferences object. */
@@ -7576,8 +8157,10 @@ export declare enum ViewPreferencesType {
7576
8157
  User = "user"
7577
8158
  }
7578
8159
  export declare type ViewPreferencesUpdateInput = {
8160
+ /** The default parameters for the insight on that view. */
8161
+ insights?: Maybe<Scalars["JSONObject"]>;
7579
8162
  /** View preferences. */
7580
- preferences: Scalars["JSONObject"];
8163
+ preferences?: Maybe<Scalars["JSONObject"]>;
7581
8164
  };
7582
8165
  /** The client view this custom view is targeting. */
7583
8166
  export declare enum ViewType {
@@ -7601,6 +8184,7 @@ export declare enum ViewType {
7601
8184
  ProjectsAll = "projectsAll",
7602
8185
  ProjectsBacklog = "projectsBacklog",
7603
8186
  ProjectsClosed = "projectsClosed",
8187
+ QuickView = "quickView",
7604
8188
  Roadmap = "roadmap",
7605
8189
  RoadmapAll = "roadmapAll",
7606
8190
  RoadmapBacklog = "roadmapBacklog",
@@ -8024,6 +8608,16 @@ export declare type CustomViewFragment = {
8024
8608
  creator: {
8025
8609
  __typename?: "User";
8026
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">>;
8027
8621
  };
8028
8622
  export declare type DocumentFragment = {
8029
8623
  __typename: "Document";
@@ -8076,13 +8670,6 @@ declare type Notification_ProjectNotification_Fragment = {
8076
8670
  } & Pick<User, "id">;
8077
8671
  } & ProjectNotificationFragment;
8078
8672
  export declare type NotificationFragment = Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
8079
- export declare type PersonalNoteFragment = {
8080
- __typename: "PersonalNote";
8081
- } & Pick<PersonalNote, "updatedAt" | "contentData" | "archivedAt" | "createdAt" | "id"> & {
8082
- user: {
8083
- __typename?: "User";
8084
- } & Pick<User, "id">;
8085
- };
8086
8673
  export declare type ProjectNotificationSubscriptionFragment = {
8087
8674
  __typename: "ProjectNotificationSubscription";
8088
8675
  } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
@@ -8301,7 +8888,7 @@ export declare type ProjectLinkFragment = {
8301
8888
  };
8302
8889
  export declare type IssueImportFragment = {
8303
8890
  __typename: "IssueImport";
8304
- } & 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">;
8305
8892
  export declare type IntegrationFragment = {
8306
8893
  __typename: "Integration";
8307
8894
  } & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -8368,6 +8955,9 @@ export declare type IssueFragment = {
8368
8955
  snoozedBy?: Maybe<{
8369
8956
  __typename?: "User";
8370
8957
  } & Pick<User, "id">>;
8958
+ favorite?: Maybe<{
8959
+ __typename?: "Favorite";
8960
+ } & Pick<Favorite, "id">>;
8371
8961
  state: {
8372
8962
  __typename?: "WorkflowState";
8373
8963
  } & Pick<WorkflowState, "id">;
@@ -8432,6 +9022,9 @@ export declare type TeamFragment = {
8432
9022
  export declare type SyncResponseFragment = {
8433
9023
  __typename: "SyncResponse";
8434
9024
  } & Pick<SyncResponse, "delta" | "state" | "lastSyncId" | "subscribedSyncGroups" | "databaseVersion">;
9025
+ export declare type ArchiveResponseFragment = {
9026
+ __typename: "ArchiveResponse";
9027
+ } & Pick<ArchiveResponse, "archive" | "totalCount" | "databaseVersion" | "includesDependencies">;
8435
9028
  export declare type TeamMembershipFragment = {
8436
9029
  __typename: "TeamMembership";
8437
9030
  } & Pick<TeamMembership, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id" | "owner"> & {
@@ -8835,7 +9428,7 @@ export declare type CustomViewPayloadFragment = {
8835
9428
  };
8836
9429
  export declare type CustomViewSuggestionPayloadFragment = {
8837
9430
  __typename: "CustomViewSuggestionPayload";
8838
- } & Pick<CustomViewSuggestionPayload, "suggestedDescription" | "suggestedIcon" | "suggestedName">;
9431
+ } & Pick<CustomViewSuggestionPayload, "description" | "icon" | "name">;
8839
9432
  export declare type CycleConnectionFragment = {
8840
9433
  __typename: "CycleConnection";
8841
9434
  } & {
@@ -8870,6 +9463,42 @@ export declare type DocumentPayloadFragment = {
8870
9463
  __typename?: "Document";
8871
9464
  } & Pick<Document, "id">;
8872
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
+ };
8873
9502
  export declare type EmailUnsubscribePayloadFragment = {
8874
9503
  __typename: "EmailUnsubscribePayload";
8875
9504
  } & Pick<EmailUnsubscribePayload, "success">;
@@ -9004,6 +9633,9 @@ export declare type IssueConnectionFragment = {
9004
9633
  __typename?: "PageInfo";
9005
9634
  } & PageInfoFragment;
9006
9635
  };
9636
+ export declare type IssueFilterSuggestionPayloadFragment = {
9637
+ __typename: "IssueFilterSuggestionPayload";
9638
+ } & Pick<IssueFilterSuggestionPayload, "filter">;
9007
9639
  export declare type IssueHistoryConnectionFragment = {
9008
9640
  __typename: "IssueHistoryConnection";
9009
9641
  } & {
@@ -9014,6 +9646,9 @@ export declare type IssueHistoryConnectionFragment = {
9014
9646
  __typename?: "PageInfo";
9015
9647
  } & PageInfoFragment;
9016
9648
  };
9649
+ export declare type IssueImportCheckPayloadFragment = {
9650
+ __typename: "IssueImportCheckPayload";
9651
+ } & Pick<IssueImportCheckPayload, "success">;
9017
9652
  export declare type IssueImportDeletePayloadFragment = {
9018
9653
  __typename: "IssueImportDeletePayload";
9019
9654
  } & Pick<IssueImportDeletePayload, "lastSyncId" | "success"> & {
@@ -9052,26 +9687,83 @@ export declare type IssuePayloadFragment = {
9052
9687
  __typename?: "Issue";
9053
9688
  } & Pick<Issue, "id">>;
9054
9689
  };
9055
- export declare type IssuePriorityValueFragment = {
9056
- __typename: "IssuePriorityValue";
9057
- } & Pick<IssuePriorityValue, "label" | "priority">;
9058
- export declare type IssueRelationConnectionFragment = {
9059
- __typename: "IssueRelationConnection";
9690
+ export declare type IssuePriorityValueFragment = {
9691
+ __typename: "IssuePriorityValue";
9692
+ } & Pick<IssuePriorityValue, "label" | "priority">;
9693
+ export declare type IssueRelationConnectionFragment = {
9694
+ __typename: "IssueRelationConnection";
9695
+ } & {
9696
+ nodes: Array<{
9697
+ __typename?: "IssueRelation";
9698
+ } & IssueRelationFragment>;
9699
+ pageInfo: {
9700
+ __typename?: "PageInfo";
9701
+ } & PageInfoFragment;
9702
+ };
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";
9060
9759
  } & {
9061
9760
  nodes: Array<{
9062
- __typename?: "IssueRelation";
9063
- } & IssueRelationFragment>;
9761
+ __typename?: "IssueSearchResult";
9762
+ } & IssueSearchResultFragment>;
9064
9763
  pageInfo: {
9065
9764
  __typename?: "PageInfo";
9066
9765
  } & PageInfoFragment;
9067
9766
  };
9068
- export declare type IssueRelationPayloadFragment = {
9069
- __typename: "IssueRelationPayload";
9070
- } & Pick<IssueRelationPayload, "lastSyncId" | "success"> & {
9071
- issueRelation: {
9072
- __typename?: "IssueRelation";
9073
- } & Pick<IssueRelation, "id">;
9074
- };
9075
9767
  export declare type LogoutResponseFragment = {
9076
9768
  __typename: "LogoutResponse";
9077
9769
  } & Pick<LogoutResponse, "success">;
@@ -9096,6 +9788,12 @@ declare type Node_Cycle_Fragment = {
9096
9788
  declare type Node_Document_Fragment = {
9097
9789
  __typename: "Document";
9098
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">;
9099
9797
  declare type Node_Emoji_Fragment = {
9100
9798
  __typename: "Emoji";
9101
9799
  } & Pick<Emoji, "id">;
@@ -9135,6 +9833,9 @@ declare type Node_IssueNotification_Fragment = {
9135
9833
  declare type Node_IssueRelation_Fragment = {
9136
9834
  __typename: "IssueRelation";
9137
9835
  } & Pick<IssueRelation, "id">;
9836
+ declare type Node_IssueSearchResult_Fragment = {
9837
+ __typename: "IssueSearchResult";
9838
+ } & Pick<IssueSearchResult, "id">;
9138
9839
  declare type Node_OauthClient_Fragment = {
9139
9840
  __typename: "OauthClient";
9140
9841
  } & Pick<OauthClient, "id">;
@@ -9156,9 +9857,6 @@ declare type Node_OrganizationInvite_Fragment = {
9156
9857
  declare type Node_PaidSubscription_Fragment = {
9157
9858
  __typename: "PaidSubscription";
9158
9859
  } & Pick<PaidSubscription, "id">;
9159
- declare type Node_PersonalNote_Fragment = {
9160
- __typename: "PersonalNote";
9161
- } & Pick<PersonalNote, "id">;
9162
9860
  declare type Node_Project_Fragment = {
9163
9861
  __typename: "Project";
9164
9862
  } & Pick<Project, "id">;
@@ -9174,6 +9872,9 @@ declare type Node_ProjectNotification_Fragment = {
9174
9872
  declare type Node_ProjectNotificationSubscription_Fragment = {
9175
9873
  __typename: "ProjectNotificationSubscription";
9176
9874
  } & Pick<ProjectNotificationSubscription, "id">;
9875
+ declare type Node_ProjectSearchResult_Fragment = {
9876
+ __typename: "ProjectSearchResult";
9877
+ } & Pick<ProjectSearchResult, "id">;
9177
9878
  declare type Node_ProjectUpdate_Fragment = {
9178
9879
  __typename: "ProjectUpdate";
9179
9880
  } & Pick<ProjectUpdate, "id">;
@@ -9225,7 +9926,7 @@ declare type Node_WorkflowDefinition_Fragment = {
9225
9926
  declare type Node_WorkflowState_Fragment = {
9226
9927
  __typename: "WorkflowState";
9227
9928
  } & Pick<WorkflowState, "id">;
9228
- 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_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_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;
9229
9930
  export declare type NotificationConnectionFragment = {
9230
9931
  __typename: "NotificationConnection";
9231
9932
  } & {
@@ -9330,6 +10031,9 @@ export declare type ProjectConnectionFragment = {
9330
10031
  __typename?: "PageInfo";
9331
10032
  } & PageInfoFragment;
9332
10033
  };
10034
+ export declare type ProjectFilterSuggestionPayloadFragment = {
10035
+ __typename: "ProjectFilterSuggestionPayload";
10036
+ } & Pick<ProjectFilterSuggestionPayload, "filter">;
9333
10037
  export declare type ProjectLinkConnectionFragment = {
9334
10038
  __typename: "ProjectLinkConnection";
9335
10039
  } & {
@@ -9371,6 +10075,45 @@ export declare type ProjectPayloadFragment = {
9371
10075
  __typename?: "Project";
9372
10076
  } & Pick<Project, "id">>;
9373
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
+ };
9374
10117
  export declare type ProjectUpdateConnectionFragment = {
9375
10118
  __typename: "ProjectUpdateConnection";
9376
10119
  } & {
@@ -10090,6 +10833,19 @@ export declare type ImageUploadFromUrlMutation = {
10090
10833
  __typename?: "ImageUploadFromUrlPayload";
10091
10834
  } & ImageUploadFromUrlPayloadFragment;
10092
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
+ };
10093
10849
  export declare type DeleteIntegrationMutationVariables = Exact<{
10094
10850
  id: Scalars["String"];
10095
10851
  }>;
@@ -10433,8 +11189,24 @@ export declare type IssueImportCreateAsanaMutation = {
10433
11189
  __typename?: "IssueImportPayload";
10434
11190
  } & IssueImportPayloadFragment;
10435
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
+ };
10436
11208
  export declare type IssueImportCreateClubhouseMutationVariables = Exact<{
10437
- clubhouseTeamName: Scalars["String"];
11209
+ clubhouseGroupName: Scalars["String"];
10438
11210
  clubhouseToken: Scalars["String"];
10439
11211
  id?: Maybe<Scalars["String"]>;
10440
11212
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
@@ -12008,46 +12780,6 @@ export declare type EmojisQuery = {
12008
12780
  __typename?: "EmojiConnection";
12009
12781
  } & EmojiConnectionFragment;
12010
12782
  };
12011
- export declare type ExternalUserQueryVariables = Exact<{
12012
- id: Scalars["String"];
12013
- }>;
12014
- export declare type ExternalUserQuery = {
12015
- __typename?: "Query";
12016
- } & {
12017
- externalUser: {
12018
- __typename?: "ExternalUser";
12019
- } & Pick<ExternalUser, "archivedAt" | "avatarUrl" | "createdAt" | "displayName" | "email" | "id" | "lastSeen" | "name" | "updatedAt"> & {
12020
- organization: {
12021
- __typename?: "Organization";
12022
- } & OrganizationFragment;
12023
- };
12024
- };
12025
- export declare type ExternalUsersQueryVariables = Exact<{
12026
- after?: Maybe<Scalars["String"]>;
12027
- before?: Maybe<Scalars["String"]>;
12028
- first?: Maybe<Scalars["Int"]>;
12029
- includeArchived?: Maybe<Scalars["Boolean"]>;
12030
- last?: Maybe<Scalars["Int"]>;
12031
- orderBy?: Maybe<PaginationOrderBy>;
12032
- }>;
12033
- export declare type ExternalUsersQuery = {
12034
- __typename?: "Query";
12035
- } & {
12036
- externalUsers: {
12037
- __typename?: "ExternalUserConnection";
12038
- } & {
12039
- nodes: Array<{
12040
- __typename?: "ExternalUser";
12041
- } & Pick<ExternalUser, "archivedAt" | "avatarUrl" | "createdAt" | "displayName" | "email" | "id" | "lastSeen" | "name" | "updatedAt"> & {
12042
- organization: {
12043
- __typename?: "Organization";
12044
- } & OrganizationFragment;
12045
- }>;
12046
- pageInfo: {
12047
- __typename?: "PageInfo";
12048
- } & PageInfoFragment;
12049
- };
12050
- };
12051
12783
  export declare type FavoriteQueryVariables = Exact<{
12052
12784
  id: Scalars["String"];
12053
12785
  }>;
@@ -12355,6 +13087,43 @@ export declare type Issue_SubscribersQuery = {
12355
13087
  } & UserConnectionFragment;
12356
13088
  };
12357
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
+ };
12358
13127
  export declare type IssueImportFinishGithubOAuthQueryVariables = Exact<{
12359
13128
  code: Scalars["String"];
12360
13129
  }>;
@@ -13037,6 +13806,16 @@ export declare type Project_TeamsQuery = {
13037
13806
  } & TeamConnectionFragment;
13038
13807
  };
13039
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
+ };
13040
13819
  export declare type ProjectLinkQueryVariables = Exact<{
13041
13820
  id: Scalars["String"];
13042
13821
  }>;
@@ -13219,6 +13998,116 @@ export declare type RoadmapsQuery = {
13219
13998
  __typename?: "RoadmapConnection";
13220
13999
  } & RoadmapConnectionFragment;
13221
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
+ };
13222
14111
  export declare type SsoUrlFromEmailQueryVariables = Exact<{
13223
14112
  email: Scalars["String"];
13224
14113
  isDesktop?: Maybe<Scalars["Boolean"]>;
@@ -13770,7 +14659,7 @@ export declare type WorkflowStatesQuery = {
13770
14659
  } & WorkflowStateConnectionFragment;
13771
14660
  };
13772
14661
  export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
13773
- export declare const PersonalNoteFragmentDoc: DocumentNode<PersonalNoteFragment, unknown>;
14662
+ export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
13774
14663
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
13775
14664
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
13776
14665
  export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
@@ -13827,6 +14716,10 @@ export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment,
13827
14716
  export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
13828
14717
  export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
13829
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>;
13830
14723
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
13831
14724
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
13832
14725
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
@@ -13854,10 +14747,12 @@ export declare const IntegrationsSettingsPayloadFragmentDoc: DocumentNode<Integr
13854
14747
  export declare const IssueFragmentDoc: DocumentNode<IssueFragment, unknown>;
13855
14748
  export declare const IssueBatchPayloadFragmentDoc: DocumentNode<IssueBatchPayloadFragment, unknown>;
13856
14749
  export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFragment, unknown>;
14750
+ export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<IssueFilterSuggestionPayloadFragment, unknown>;
13857
14751
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
13858
14752
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
13859
14753
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
13860
14754
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
14755
+ export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
13861
14756
  export declare const IssueImportDeletePayloadFragmentDoc: DocumentNode<IssueImportDeletePayloadFragment, unknown>;
13862
14757
  export declare const IssueImportPayloadFragmentDoc: DocumentNode<IssueImportPayloadFragment, unknown>;
13863
14758
  export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
@@ -13868,6 +14763,9 @@ export declare const IssuePriorityValueFragmentDoc: DocumentNode<IssuePriorityVa
13868
14763
  export declare const IssueRelationFragmentDoc: DocumentNode<IssueRelationFragment, unknown>;
13869
14764
  export declare const IssueRelationConnectionFragmentDoc: DocumentNode<IssueRelationConnectionFragment, unknown>;
13870
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>;
13871
14769
  export declare const LogoutResponseFragmentDoc: DocumentNode<LogoutResponseFragment, unknown>;
13872
14770
  export declare const NodeFragmentDoc: DocumentNode<NodeFragment, unknown>;
13873
14771
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
@@ -13893,6 +14791,7 @@ export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPa
13893
14791
  export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
13894
14792
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
13895
14793
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
14794
+ export declare const ProjectFilterSuggestionPayloadFragmentDoc: DocumentNode<ProjectFilterSuggestionPayloadFragment, unknown>;
13896
14795
  export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
13897
14796
  export declare const ProjectLinkConnectionFragmentDoc: DocumentNode<ProjectLinkConnectionFragment, unknown>;
13898
14797
  export declare const ProjectLinkPayloadFragmentDoc: DocumentNode<ProjectLinkPayloadFragment, unknown>;
@@ -13900,6 +14799,9 @@ export declare const ProjectMilestoneFragmentDoc: DocumentNode<ProjectMilestoneF
13900
14799
  export declare const ProjectMilestoneConnectionFragmentDoc: DocumentNode<ProjectMilestoneConnectionFragment, unknown>;
13901
14800
  export declare const ProjectMilestonePayloadFragmentDoc: DocumentNode<ProjectMilestonePayloadFragment, unknown>;
13902
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>;
13903
14805
  export declare const ProjectUpdateFragmentDoc: DocumentNode<ProjectUpdateFragment, unknown>;
13904
14806
  export declare const ProjectUpdateConnectionFragmentDoc: DocumentNode<ProjectUpdateConnectionFragment, unknown>;
13905
14807
  export declare const ProjectUpdateInteractionFragmentDoc: DocumentNode<ProjectUpdateInteractionFragment, unknown>;
@@ -14095,6 +14997,12 @@ export declare const GoogleUserAccountAuthDocument: DocumentNode<GoogleUserAccou
14095
14997
  export declare const ImageUploadFromUrlDocument: DocumentNode<ImageUploadFromUrlMutation, Exact<{
14096
14998
  url: Scalars["String"];
14097
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
+ }>>;
14098
15006
  export declare const DeleteIntegrationDocument: DocumentNode<DeleteIntegrationMutation, Exact<{
14099
15007
  id: Scalars["String"];
14100
15008
  }>>;
@@ -14221,8 +15129,17 @@ export declare const IssueImportCreateAsanaDocument: DocumentNode<IssueImportCre
14221
15129
  teamId?: Maybe<string> | undefined;
14222
15130
  teamName?: Maybe<string> | undefined;
14223
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
+ }>>;
14224
15141
  export declare const IssueImportCreateClubhouseDocument: DocumentNode<IssueImportCreateClubhouseMutation, Exact<{
14225
- clubhouseTeamName: Scalars["String"];
15142
+ clubhouseGroupName: Scalars["String"];
14226
15143
  clubhouseToken: Scalars["String"];
14227
15144
  id?: Maybe<string> | undefined;
14228
15145
  includeClosedIssues?: Maybe<boolean> | undefined;
@@ -14814,17 +15731,6 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
14814
15731
  last?: Maybe<number> | undefined;
14815
15732
  orderBy?: Maybe<PaginationOrderBy> | undefined;
14816
15733
  }>>;
14817
- export declare const ExternalUserDocument: DocumentNode<ExternalUserQuery, Exact<{
14818
- id: Scalars["String"];
14819
- }>>;
14820
- export declare const ExternalUsersDocument: DocumentNode<ExternalUsersQuery, Exact<{
14821
- after?: Maybe<string> | undefined;
14822
- before?: Maybe<string> | undefined;
14823
- first?: Maybe<number> | undefined;
14824
- includeArchived?: Maybe<boolean> | undefined;
14825
- last?: Maybe<number> | undefined;
14826
- orderBy?: Maybe<PaginationOrderBy> | undefined;
14827
- }>>;
14828
15734
  export declare const FavoriteDocument: DocumentNode<FavoriteQuery, Exact<{
14829
15735
  id: Scalars["String"];
14830
15736
  }>>;
@@ -14959,6 +15865,22 @@ export declare const Issue_SubscribersDocument: DocumentNode<Issue_SubscribersQu
14959
15865
  last?: Maybe<number> | undefined;
14960
15866
  orderBy?: Maybe<PaginationOrderBy> | undefined;
14961
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
+ }>>;
14962
15884
  export declare const IssueImportFinishGithubOAuthDocument: DocumentNode<IssueImportFinishGithubOAuthQuery, Exact<{
14963
15885
  code: Scalars["String"];
14964
15886
  }>>;
@@ -15256,6 +16178,9 @@ export declare const Project_TeamsDocument: DocumentNode<Project_TeamsQuery, Exa
15256
16178
  last?: Maybe<number> | undefined;
15257
16179
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15258
16180
  }>>;
16181
+ export declare const ProjectFilterSuggestionDocument: DocumentNode<ProjectFilterSuggestionQuery, Exact<{
16182
+ prompt: Scalars["String"];
16183
+ }>>;
15259
16184
  export declare const ProjectLinkDocument: DocumentNode<ProjectLinkQuery, Exact<{
15260
16185
  id: Scalars["String"];
15261
16186
  }>>;
@@ -15336,6 +16261,62 @@ export declare const RoadmapsDocument: DocumentNode<RoadmapsQuery, Exact<{
15336
16261
  last?: Maybe<number> | undefined;
15337
16262
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15338
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
+ }>>;
15339
16320
  export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery, Exact<{
15340
16321
  email: Scalars["String"];
15341
16322
  isDesktop?: Maybe<boolean> | undefined;