@linear/sdk 3.0.0 → 5.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"]>;
@@ -1105,7 +1202,7 @@ export declare type ExternalUser = Node & {
1105
1202
  /** The external user's display name. Unique within each organization. Can match the display name of an actual user. */
1106
1203
  displayName: Scalars["String"];
1107
1204
  /** The external user's email address. */
1108
- email: Scalars["String"];
1205
+ email?: Maybe<Scalars["String"]>;
1109
1206
  /** The unique identifier of the entity. */
1110
1207
  id: Scalars["ID"];
1111
1208
  /** The last time the external user was seen interacting with Linear. */
@@ -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. */
@@ -3064,6 +3387,8 @@ export declare type Mutation = {
3064
3387
  userGitHubConnect: UserPayload;
3065
3388
  /** Connects the Google Calendar to the user to this Linear account via OAuth2. */
3066
3389
  userGoogleCalendarConnect: UserPayload;
3390
+ /** Connects the Jira user to this Linear account via OAuth2. */
3391
+ userJiraConnect: UserPayload;
3067
3392
  /** Makes user an admin. Can only be called by an admin. */
3068
3393
  userPromoteAdmin: UserAdminPayload;
3069
3394
  /** Makes user a regular user. Can only be called by an admin. */
@@ -3246,6 +3571,12 @@ export declare type MutationGoogleUserAccountAuthArgs = {
3246
3571
  export declare type MutationImageUploadFromUrlArgs = {
3247
3572
  url: Scalars["String"];
3248
3573
  };
3574
+ export declare type MutationImportFileUploadArgs = {
3575
+ contentType: Scalars["String"];
3576
+ filename: Scalars["String"];
3577
+ metaData?: Maybe<Scalars["JSON"]>;
3578
+ size: Scalars["Int"];
3579
+ };
3249
3580
  export declare type MutationIntegrationDeleteArgs = {
3250
3581
  id: Scalars["String"];
3251
3582
  };
@@ -3371,8 +3702,17 @@ export declare type MutationIssueImportCreateAsanaArgs = {
3371
3702
  teamId?: Maybe<Scalars["String"]>;
3372
3703
  teamName?: Maybe<Scalars["String"]>;
3373
3704
  };
3705
+ export declare type MutationIssueImportCreateCsvJiraArgs = {
3706
+ csvUrl: Scalars["String"];
3707
+ jiraEmail?: Maybe<Scalars["String"]>;
3708
+ jiraHostname?: Maybe<Scalars["String"]>;
3709
+ jiraToken?: Maybe<Scalars["String"]>;
3710
+ organizationId?: Maybe<Scalars["String"]>;
3711
+ teamId?: Maybe<Scalars["String"]>;
3712
+ teamName?: Maybe<Scalars["String"]>;
3713
+ };
3374
3714
  export declare type MutationIssueImportCreateClubhouseArgs = {
3375
- clubhouseTeamName: Scalars["String"];
3715
+ clubhouseGroupName: Scalars["String"];
3376
3716
  clubhouseToken: Scalars["String"];
3377
3717
  id?: Maybe<Scalars["String"]>;
3378
3718
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
@@ -3668,6 +4008,9 @@ export declare type MutationUserGitHubConnectArgs = {
3668
4008
  export declare type MutationUserGoogleCalendarConnectArgs = {
3669
4009
  code: Scalars["String"];
3670
4010
  };
4011
+ export declare type MutationUserJiraConnectArgs = {
4012
+ code: Scalars["String"];
4013
+ };
3671
4014
  export declare type MutationUserPromoteAdminArgs = {
3672
4015
  id: Scalars["String"];
3673
4016
  };
@@ -3730,7 +4073,7 @@ export declare type Node = {
3730
4073
  };
3731
4074
  /** A notification sent to a user. */
3732
4075
  export declare type Notification = {
3733
- /** The user that caused the notification. If empty it's Linear itself. */
4076
+ /** The user that caused the notification. */
3734
4077
  actor?: Maybe<User>;
3735
4078
  /** The time at which the entity was archived. Null if the entity has not been archived. */
3736
4079
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -3741,6 +4084,8 @@ export declare type Notification = {
3741
4084
  * reminder has been sent.
3742
4085
  */
3743
4086
  emailedAt?: Maybe<Scalars["DateTime"]>;
4087
+ /** The external user that caused the notification. */
4088
+ externalUserActor?: Maybe<ExternalUser>;
3744
4089
  /** The unique identifier of the entity. */
3745
4090
  id: Scalars["ID"];
3746
4091
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
@@ -4031,6 +4376,10 @@ export declare type NullableNumberComparator = {
4031
4376
  export declare type NullableProjectFilter = {
4032
4377
  /** Compound filters, all of which need to be matched by the project. */
4033
4378
  and?: Maybe<Array<NullableProjectFilter>>;
4379
+ /** Comparator for the project completion date. */
4380
+ completedAt?: Maybe<NullableDateComparator>;
4381
+ /** Filters that the project's completed milestones must satisfy. */
4382
+ completedProjectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4034
4383
  /** Comparator for the created at date. */
4035
4384
  createdAt?: Maybe<DateComparator>;
4036
4385
  /** Filters that the projects creator must satisfy. */
@@ -4045,12 +4394,18 @@ export declare type NullableProjectFilter = {
4045
4394
  members?: Maybe<UserFilter>;
4046
4395
  /** Comparator for the project name. */
4047
4396
  name?: Maybe<StringComparator>;
4397
+ /** Filters that the project's next milestone must satisfy. */
4398
+ nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
4048
4399
  /** Filter based on the existence of the relation. */
4049
4400
  null?: Maybe<Scalars["Boolean"]>;
4050
4401
  /** Compound filters, one of which need to be matched by the project. */
4051
4402
  or?: Maybe<Array<NullableProjectFilter>>;
4403
+ /** Filters that the project's milestones must satisfy. */
4404
+ projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4052
4405
  /** Filters that the projects roadmaps must satisfy. */
4053
4406
  roadmaps?: Maybe<RoadmapCollectionFilter>;
4407
+ /** [Internal] Comparator for the projects content. */
4408
+ searchableContent?: Maybe<ContentComparator>;
4054
4409
  /** Comparator for the project slug ID. */
4055
4410
  slugId?: Maybe<StringComparator>;
4056
4411
  /** Comparator for the project start date. */
@@ -4070,10 +4425,14 @@ export declare type NullableProjectMilestoneFilter = {
4070
4425
  createdAt?: Maybe<DateComparator>;
4071
4426
  /** Comparator for the identifier. */
4072
4427
  id?: Maybe<IdComparator>;
4428
+ /** Comparator for the project milestone name. */
4429
+ name?: Maybe<StringComparator>;
4073
4430
  /** Filter based on the existence of the relation. */
4074
4431
  null?: Maybe<Scalars["Boolean"]>;
4075
4432
  /** Compound filters, one of which need to be matched by the project milestone. */
4076
4433
  or?: Maybe<Array<NullableProjectMilestoneFilter>>;
4434
+ /** Comparator for the project milestone target date. */
4435
+ targetDate?: Maybe<NullableDateComparator>;
4077
4436
  /** Comparator for the updated at date. */
4078
4437
  updatedAt?: Maybe<DateComparator>;
4079
4438
  };
@@ -4109,6 +4468,8 @@ export declare type NullableStringComparator = {
4109
4468
  null?: Maybe<Scalars["Boolean"]>;
4110
4469
  /** Starts with constraint. Matches any values that start with the given string. */
4111
4470
  startsWith?: Maybe<Scalars["String"]>;
4471
+ /** Starts with case insensitive constraint. Matches any values that start with the given string. */
4472
+ startsWithIgnoreCase?: Maybe<Scalars["String"]>;
4112
4473
  };
4113
4474
  export declare type NullableTimelessDateComparator = {
4114
4475
  /** Equals constraint. */
@@ -4261,7 +4622,7 @@ export declare type OauthClientApproval = Node & {
4261
4622
  /** An oauth client approval related notification */
4262
4623
  export declare type OauthClientApprovalNotification = Entity & Node & Notification & {
4263
4624
  __typename?: "OauthClientApprovalNotification";
4264
- /** The user that caused the notification. If empty it's Linear itself. */
4625
+ /** The user that caused the notification. */
4265
4626
  actor?: Maybe<User>;
4266
4627
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4267
4628
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -4272,6 +4633,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
4272
4633
  * reminder has been sent.
4273
4634
  */
4274
4635
  emailedAt?: Maybe<Scalars["DateTime"]>;
4636
+ /** The external user that caused the notification. */
4637
+ externalUserActor?: Maybe<ExternalUser>;
4275
4638
  /** The unique identifier of the entity. */
4276
4639
  id: Scalars["ID"];
4277
4640
  /** The OAuth client approval request related to the notification. */
@@ -4425,6 +4788,11 @@ export declare type OrganizationUsersArgs = {
4425
4788
  last?: Maybe<Scalars["Int"]>;
4426
4789
  orderBy?: Maybe<PaginationOrderBy>;
4427
4790
  };
4791
+ export declare type OrganizationAcceptedOrExpiredInviteDetailsPayload = {
4792
+ __typename?: "OrganizationAcceptedOrExpiredInviteDetailsPayload";
4793
+ /** The status of the invite */
4794
+ status: OrganizationInviteStatus;
4795
+ };
4428
4796
  export declare type OrganizationCancelDeletePayload = {
4429
4797
  __typename?: "OrganizationCancelDeletePayload";
4430
4798
  /** Whether the operation was successful. */
@@ -4563,8 +4931,15 @@ export declare type OrganizationInviteCreateInput = {
4563
4931
  /** The teams that the user has been invited to. */
4564
4932
  teamIds?: Maybe<Array<Scalars["String"]>>;
4565
4933
  };
4566
- export declare type OrganizationInviteDetailsPayload = {
4567
- __typename?: "OrganizationInviteDetailsPayload";
4934
+ export declare type OrganizationInviteDetailsPayload = OrganizationAcceptedOrExpiredInviteDetailsPayload | OrganizationInviteFullDetailsPayload;
4935
+ export declare type OrganizationInviteEdge = {
4936
+ __typename?: "OrganizationInviteEdge";
4937
+ /** Used in `before` and `after` args */
4938
+ cursor: Scalars["String"];
4939
+ node: OrganizationInvite;
4940
+ };
4941
+ export declare type OrganizationInviteFullDetailsPayload = {
4942
+ __typename?: "OrganizationInviteFullDetailsPayload";
4568
4943
  /** Whether the invite has already been accepted. */
4569
4944
  accepted: Scalars["Boolean"];
4570
4945
  /** When the invite was created. */
@@ -4583,12 +4958,8 @@ export declare type OrganizationInviteDetailsPayload = {
4583
4958
  organizationName: Scalars["String"];
4584
4959
  /** What user role the invite should grant. */
4585
4960
  role: UserRoleType;
4586
- };
4587
- export declare type OrganizationInviteEdge = {
4588
- __typename?: "OrganizationInviteEdge";
4589
- /** Used in `before` and `after` args */
4590
- cursor: Scalars["String"];
4591
- node: OrganizationInvite;
4961
+ /** The status of the invite */
4962
+ status: OrganizationInviteStatus;
4592
4963
  };
4593
4964
  export declare type OrganizationInvitePayload = {
4594
4965
  __typename?: "OrganizationInvitePayload";
@@ -4599,6 +4970,12 @@ export declare type OrganizationInvitePayload = {
4599
4970
  /** Whether the operation was successful. */
4600
4971
  success: Scalars["Boolean"];
4601
4972
  };
4973
+ /** The different statuses possible for an organization invite. */
4974
+ export declare enum OrganizationInviteStatus {
4975
+ Accepted = "accepted",
4976
+ Expired = "expired",
4977
+ Pending = "pending"
4978
+ }
4602
4979
  export declare type OrganizationInviteUpdateInput = {
4603
4980
  /** The teams that the user has been invited to. */
4604
4981
  teamIds: Array<Scalars["String"]>;
@@ -4667,26 +5044,6 @@ export declare type PaidSubscription = Node & {
4667
5044
  */
4668
5045
  updatedAt: Scalars["DateTime"];
4669
5046
  };
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
5047
  /** A project. */
4691
5048
  export declare type Project = Node & {
4692
5049
  __typename?: "Project";
@@ -4846,6 +5203,10 @@ export declare type ProjectTeamsArgs = {
4846
5203
  export declare type ProjectCollectionFilter = {
4847
5204
  /** Compound filters, all of which need to be matched by the project. */
4848
5205
  and?: Maybe<Array<ProjectCollectionFilter>>;
5206
+ /** Comparator for the project completion date. */
5207
+ completedAt?: Maybe<NullableDateComparator>;
5208
+ /** Filters that the project's completed milestones must satisfy. */
5209
+ completedProjectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4849
5210
  /** Comparator for the created at date. */
4850
5211
  createdAt?: Maybe<DateComparator>;
4851
5212
  /** Filters that the projects creator must satisfy. */
@@ -4864,10 +5225,16 @@ export declare type ProjectCollectionFilter = {
4864
5225
  members?: Maybe<UserFilter>;
4865
5226
  /** Comparator for the project name. */
4866
5227
  name?: Maybe<StringComparator>;
5228
+ /** Filters that the project's next milestone must satisfy. */
5229
+ nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
4867
5230
  /** Compound filters, one of which need to be matched by the project. */
4868
5231
  or?: Maybe<Array<ProjectCollectionFilter>>;
5232
+ /** Filters that the project's milestones must satisfy. */
5233
+ projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4869
5234
  /** Filters that the projects roadmaps must satisfy. */
4870
5235
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5236
+ /** [Internal] Comparator for the projects content. */
5237
+ searchableContent?: Maybe<ContentComparator>;
4871
5238
  /** Comparator for the project slug ID. */
4872
5239
  slugId?: Maybe<StringComparator>;
4873
5240
  /** Filters that needs to be matched by some projects. */
@@ -4925,6 +5292,10 @@ export declare type ProjectEdge = {
4925
5292
  export declare type ProjectFilter = {
4926
5293
  /** Compound filters, all of which need to be matched by the project. */
4927
5294
  and?: Maybe<Array<ProjectFilter>>;
5295
+ /** Comparator for the project completion date. */
5296
+ completedAt?: Maybe<NullableDateComparator>;
5297
+ /** Filters that the project's completed milestones must satisfy. */
5298
+ completedProjectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4928
5299
  /** Comparator for the created at date. */
4929
5300
  createdAt?: Maybe<DateComparator>;
4930
5301
  /** Filters that the projects creator must satisfy. */
@@ -4939,10 +5310,16 @@ export declare type ProjectFilter = {
4939
5310
  members?: Maybe<UserFilter>;
4940
5311
  /** Comparator for the project name. */
4941
5312
  name?: Maybe<StringComparator>;
5313
+ /** Filters that the project's next milestone must satisfy. */
5314
+ nextProjectMilestone?: Maybe<ProjectMilestoneFilter>;
4942
5315
  /** Compound filters, one of which need to be matched by the project. */
4943
5316
  or?: Maybe<Array<ProjectFilter>>;
5317
+ /** Filters that the project's milestones must satisfy. */
5318
+ projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
4944
5319
  /** Filters that the projects roadmaps must satisfy. */
4945
5320
  roadmaps?: Maybe<RoadmapCollectionFilter>;
5321
+ /** [Internal] Comparator for the projects content. */
5322
+ searchableContent?: Maybe<ContentComparator>;
4946
5323
  /** Comparator for the project slug ID. */
4947
5324
  slugId?: Maybe<StringComparator>;
4948
5325
  /** Comparator for the project start date. */
@@ -4954,6 +5331,11 @@ export declare type ProjectFilter = {
4954
5331
  /** Comparator for the updated at date. */
4955
5332
  updatedAt?: Maybe<DateComparator>;
4956
5333
  };
5334
+ export declare type ProjectFilterSuggestionPayload = {
5335
+ __typename?: "ProjectFilterSuggestionPayload";
5336
+ /** The json filter that is suggested. */
5337
+ filter?: Maybe<Scalars["JSONObject"]>;
5338
+ };
4957
5339
  /** An external link for a project. */
4958
5340
  export declare type ProjectLink = Node & {
4959
5341
  __typename?: "ProjectLink";
@@ -5041,6 +5423,29 @@ export declare type ProjectMilestone = Node & {
5041
5423
  */
5042
5424
  updatedAt: Scalars["DateTime"];
5043
5425
  };
5426
+ /** Milestone collection filtering options. */
5427
+ export declare type ProjectMilestoneCollectionFilter = {
5428
+ /** Compound filters, all of which need to be matched by the milestone. */
5429
+ and?: Maybe<Array<ProjectMilestoneCollectionFilter>>;
5430
+ /** Comparator for the created at date. */
5431
+ createdAt?: Maybe<DateComparator>;
5432
+ /** Filters that needs to be matched by all milestones. */
5433
+ every?: Maybe<ProjectMilestoneFilter>;
5434
+ /** Comparator for the identifier. */
5435
+ id?: Maybe<IdComparator>;
5436
+ /** Comparator for the collection length. */
5437
+ length?: Maybe<NumberComparator>;
5438
+ /** Comparator for the project milestone name. */
5439
+ name?: Maybe<StringComparator>;
5440
+ /** Compound filters, one of which need to be matched by the milestone. */
5441
+ or?: Maybe<Array<ProjectMilestoneCollectionFilter>>;
5442
+ /** Filters that needs to be matched by some milestones. */
5443
+ some?: Maybe<ProjectMilestoneFilter>;
5444
+ /** Comparator for the project milestone target date. */
5445
+ targetDate?: Maybe<NullableDateComparator>;
5446
+ /** Comparator for the updated at date. */
5447
+ updatedAt?: Maybe<DateComparator>;
5448
+ };
5044
5449
  export declare type ProjectMilestoneConnection = {
5045
5450
  __typename?: "ProjectMilestoneConnection";
5046
5451
  edges: Array<ProjectMilestoneEdge>;
@@ -5067,6 +5472,23 @@ export declare type ProjectMilestoneEdge = {
5067
5472
  cursor: Scalars["String"];
5068
5473
  node: ProjectMilestone;
5069
5474
  };
5475
+ /** Project milestone filtering options. */
5476
+ export declare type ProjectMilestoneFilter = {
5477
+ /** Compound filters, all of which need to be matched by the project milestone. */
5478
+ and?: Maybe<Array<ProjectMilestoneFilter>>;
5479
+ /** Comparator for the created at date. */
5480
+ createdAt?: Maybe<DateComparator>;
5481
+ /** Comparator for the identifier. */
5482
+ id?: Maybe<IdComparator>;
5483
+ /** Comparator for the project milestone name. */
5484
+ name?: Maybe<StringComparator>;
5485
+ /** Compound filters, one of which need to be matched by the project milestone. */
5486
+ or?: Maybe<Array<ProjectMilestoneFilter>>;
5487
+ /** Comparator for the project milestone target date. */
5488
+ targetDate?: Maybe<NullableDateComparator>;
5489
+ /** Comparator for the updated at date. */
5490
+ updatedAt?: Maybe<DateComparator>;
5491
+ };
5070
5492
  export declare type ProjectMilestonePayload = {
5071
5493
  __typename?: "ProjectMilestonePayload";
5072
5494
  /** The identifier of the last sync operation. */
@@ -5091,7 +5513,7 @@ export declare type ProjectMilestoneUpdateInput = {
5091
5513
  /** A project related notification */
5092
5514
  export declare type ProjectNotification = Entity & Node & Notification & {
5093
5515
  __typename?: "ProjectNotification";
5094
- /** The user that caused the notification. If empty it's Linear itself. */
5516
+ /** The user that caused the notification. */
5095
5517
  actor?: Maybe<User>;
5096
5518
  /** The time at which the entity was archived. Null if the entity has not been archived. */
5097
5519
  archivedAt?: Maybe<Scalars["DateTime"]>;
@@ -5102,6 +5524,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
5102
5524
  * reminder has been sent.
5103
5525
  */
5104
5526
  emailedAt?: Maybe<Scalars["DateTime"]>;
5527
+ /** The external user that caused the notification. */
5528
+ externalUserActor?: Maybe<ExternalUser>;
5105
5529
  /** The unique identifier of the entity. */
5106
5530
  id: Scalars["ID"];
5107
5531
  /** The project related to the notification. */
@@ -5134,37 +5558,208 @@ export declare type ProjectNotificationSubscription = Entity & Node & Notificati
5134
5558
  createdAt: Scalars["DateTime"];
5135
5559
  /** The unique identifier of the entity. */
5136
5560
  id: Scalars["ID"];
5137
- /** The project subscribed to. */
5138
- project: Project;
5139
- /** The type of the project subscription. */
5140
- projectNotificationSubscriptionType: ProjectNotificationSubscriptionType;
5141
- /** Subscribed team. */
5142
- team?: Maybe<Team>;
5143
- /** The type of the subscription. */
5144
- type: Scalars["String"];
5561
+ /** The project subscribed to. */
5562
+ project: Project;
5563
+ /** The type of the project subscription. */
5564
+ projectNotificationSubscriptionType: ProjectNotificationSubscriptionType;
5565
+ /** Subscribed team. */
5566
+ team?: Maybe<Team>;
5567
+ /** The type of the subscription. */
5568
+ type: Scalars["String"];
5569
+ /**
5570
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5571
+ * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
5572
+ * been updated after creation.
5573
+ */
5574
+ updatedAt: Scalars["DateTime"];
5575
+ /** The user associated with notification subscriptions. */
5576
+ user: User;
5577
+ };
5578
+ /** The type of a project notification subscription. */
5579
+ export declare enum ProjectNotificationSubscriptionType {
5580
+ All = "all",
5581
+ Custom = "custom",
5582
+ ImportantOnly = "importantOnly"
5583
+ }
5584
+ export declare type ProjectPayload = {
5585
+ __typename?: "ProjectPayload";
5586
+ /** The identifier of the last sync operation. */
5587
+ lastSyncId: Scalars["Float"];
5588
+ /** The project that was created or updated. */
5589
+ project?: Maybe<Project>;
5590
+ /** Whether the operation was successful. */
5591
+ success: Scalars["Boolean"];
5592
+ };
5593
+ export declare type ProjectSearchPayload = {
5594
+ __typename?: "ProjectSearchPayload";
5595
+ /** Archived entities matching the search term along with all their dependencies. */
5596
+ archivePayload: ArchiveResponse;
5597
+ edges: Array<ProjectSearchResultEdge>;
5598
+ nodes: Array<ProjectSearchResult>;
5599
+ pageInfo: PageInfo;
5600
+ /** Total number of results for query without filters applied. */
5601
+ totalCount: Scalars["Float"];
5602
+ };
5603
+ export declare type ProjectSearchResult = Node & {
5604
+ __typename?: "ProjectSearchResult";
5605
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
5606
+ archivedAt?: Maybe<Scalars["DateTime"]>;
5607
+ /** The time at which the project was automatically archived by the auto pruning process. */
5608
+ autoArchivedAt?: Maybe<Scalars["DateTime"]>;
5609
+ /** The time at which the project was moved into canceled state. */
5610
+ canceledAt?: Maybe<Scalars["DateTime"]>;
5611
+ /** The project's color. */
5612
+ color: Scalars["String"];
5613
+ /** The time at which the project was moved into completed state. */
5614
+ completedAt?: Maybe<Scalars["DateTime"]>;
5615
+ /** The number of completed issues in the project after each week. */
5616
+ completedIssueCountHistory: Array<Scalars["Float"]>;
5617
+ /** The number of completed estimation points after each week. */
5618
+ completedScopeHistory: Array<Scalars["Float"]>;
5619
+ /** The project was created based on this issue. */
5620
+ convertedFromIssue?: Maybe<Issue>;
5621
+ /** The time at which the entity was created. */
5622
+ createdAt: Scalars["DateTime"];
5623
+ /** The user who created the project. */
5624
+ creator: User;
5625
+ /** The project's description. */
5626
+ description: Scalars["String"];
5627
+ /** Documents associated with the project. */
5628
+ documents: DocumentConnection;
5629
+ /** The icon of the project. */
5630
+ icon?: Maybe<Scalars["String"]>;
5631
+ /** The unique identifier of the entity. */
5632
+ id: Scalars["ID"];
5633
+ /** The number of in progress estimation points after each week. */
5634
+ inProgressScopeHistory: Array<Scalars["Float"]>;
5635
+ /** Settings for all integrations associated with that project. */
5636
+ integrationsSettings?: Maybe<IntegrationsSettings>;
5637
+ /** The total number of issues in the project after each week. */
5638
+ issueCountHistory: Array<Scalars["Float"]>;
5639
+ /** Issues associated with the project. */
5640
+ issues: IssueConnection;
5641
+ /** The project lead. */
5642
+ lead?: Maybe<User>;
5643
+ /** Links associated with the project. */
5644
+ links: ProjectLinkConnection;
5645
+ /** Users that are members of the project. */
5646
+ members: UserConnection;
5647
+ /** Metadata related to search result */
5648
+ metadata: Scalars["JSONObject"];
5649
+ /** The project's name. */
5650
+ name: Scalars["String"];
5651
+ /** The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points. */
5652
+ progress: Scalars["Float"];
5653
+ /** Milestones associated with the project. */
5654
+ projectMilestones: ProjectMilestoneConnection;
5655
+ /** The time until which project update reminders are paused. */
5656
+ projectUpdateRemindersPausedUntilAt?: Maybe<Scalars["DateTime"]>;
5657
+ /** Project updates associated with the project. */
5658
+ projectUpdates: ProjectUpdateConnection;
5659
+ /** The overall scope (total estimate points) of the project. */
5660
+ scope: Scalars["Float"];
5661
+ /** The total number of estimation points after each week. */
5662
+ scopeHistory: Array<Scalars["Float"]>;
5663
+ /** Whether to send new issue comment notifications to Slack. */
5664
+ slackIssueComments: Scalars["Boolean"];
5665
+ /** Whether to send new issue status updates to Slack. */
5666
+ slackIssueStatuses: Scalars["Boolean"];
5667
+ /** Whether to send new issue notifications to Slack. */
5668
+ slackNewIssue: Scalars["Boolean"];
5669
+ /** The project's unique URL slug. */
5670
+ slugId: Scalars["String"];
5671
+ /** The sort order for the project within the organization. */
5672
+ sortOrder: Scalars["Float"];
5673
+ /** [Internal] The estimated start date of the project. */
5674
+ startDate?: Maybe<Scalars["TimelessDate"]>;
5675
+ /** The time at which the project was moved into started state. */
5676
+ startedAt?: Maybe<Scalars["DateTime"]>;
5677
+ /** The type of the state. */
5678
+ state: Scalars["String"];
5679
+ /** The estimated completion date of the project. */
5680
+ targetDate?: Maybe<Scalars["TimelessDate"]>;
5681
+ /** Teams associated with this project. */
5682
+ teams: TeamConnection;
5145
5683
  /**
5146
5684
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
5147
5685
  * 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
5148
5686
  * been updated after creation.
5149
5687
  */
5150
5688
  updatedAt: Scalars["DateTime"];
5151
- /** The user associated with notification subscriptions. */
5152
- user: User;
5689
+ /** Project URL. */
5690
+ url: Scalars["String"];
5153
5691
  };
5154
- /** The type of a project notification subscription. */
5155
- export declare enum ProjectNotificationSubscriptionType {
5156
- All = "all",
5157
- Custom = "custom",
5158
- ImportantOnly = "importantOnly"
5159
- }
5160
- export declare type ProjectPayload = {
5161
- __typename?: "ProjectPayload";
5162
- /** The identifier of the last sync operation. */
5163
- lastSyncId: Scalars["Float"];
5164
- /** The project that was created or updated. */
5165
- project?: Maybe<Project>;
5166
- /** Whether the operation was successful. */
5167
- success: Scalars["Boolean"];
5692
+ export declare type ProjectSearchResultDocumentsArgs = {
5693
+ after?: Maybe<Scalars["String"]>;
5694
+ before?: Maybe<Scalars["String"]>;
5695
+ first?: Maybe<Scalars["Int"]>;
5696
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5697
+ last?: Maybe<Scalars["Int"]>;
5698
+ orderBy?: Maybe<PaginationOrderBy>;
5699
+ };
5700
+ export declare type ProjectSearchResultIssuesArgs = {
5701
+ after?: Maybe<Scalars["String"]>;
5702
+ before?: Maybe<Scalars["String"]>;
5703
+ filter?: Maybe<IssueFilter>;
5704
+ first?: Maybe<Scalars["Int"]>;
5705
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5706
+ last?: Maybe<Scalars["Int"]>;
5707
+ orderBy?: Maybe<PaginationOrderBy>;
5708
+ };
5709
+ export declare type ProjectSearchResultLinksArgs = {
5710
+ after?: Maybe<Scalars["String"]>;
5711
+ before?: Maybe<Scalars["String"]>;
5712
+ first?: Maybe<Scalars["Int"]>;
5713
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5714
+ last?: Maybe<Scalars["Int"]>;
5715
+ orderBy?: Maybe<PaginationOrderBy>;
5716
+ };
5717
+ export declare type ProjectSearchResultMembersArgs = {
5718
+ after?: Maybe<Scalars["String"]>;
5719
+ before?: Maybe<Scalars["String"]>;
5720
+ filter?: Maybe<UserFilter>;
5721
+ first?: Maybe<Scalars["Int"]>;
5722
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5723
+ includeDisabled?: Maybe<Scalars["Boolean"]>;
5724
+ last?: Maybe<Scalars["Int"]>;
5725
+ orderBy?: Maybe<PaginationOrderBy>;
5726
+ };
5727
+ export declare type ProjectSearchResultProjectMilestonesArgs = {
5728
+ after?: Maybe<Scalars["String"]>;
5729
+ before?: Maybe<Scalars["String"]>;
5730
+ first?: Maybe<Scalars["Int"]>;
5731
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5732
+ last?: Maybe<Scalars["Int"]>;
5733
+ orderBy?: Maybe<PaginationOrderBy>;
5734
+ };
5735
+ export declare type ProjectSearchResultProjectUpdatesArgs = {
5736
+ after?: Maybe<Scalars["String"]>;
5737
+ before?: Maybe<Scalars["String"]>;
5738
+ first?: Maybe<Scalars["Int"]>;
5739
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5740
+ last?: Maybe<Scalars["Int"]>;
5741
+ orderBy?: Maybe<PaginationOrderBy>;
5742
+ };
5743
+ export declare type ProjectSearchResultTeamsArgs = {
5744
+ after?: Maybe<Scalars["String"]>;
5745
+ before?: Maybe<Scalars["String"]>;
5746
+ filter?: Maybe<TeamFilter>;
5747
+ first?: Maybe<Scalars["Int"]>;
5748
+ includeArchived?: Maybe<Scalars["Boolean"]>;
5749
+ last?: Maybe<Scalars["Int"]>;
5750
+ orderBy?: Maybe<PaginationOrderBy>;
5751
+ };
5752
+ export declare type ProjectSearchResultConnection = {
5753
+ __typename?: "ProjectSearchResultConnection";
5754
+ edges: Array<ProjectSearchResultEdge>;
5755
+ nodes: Array<ProjectSearchResult>;
5756
+ pageInfo: PageInfo;
5757
+ };
5758
+ export declare type ProjectSearchResultEdge = {
5759
+ __typename?: "ProjectSearchResultEdge";
5760
+ /** Used in `before` and `after` args */
5761
+ cursor: Scalars["String"];
5762
+ node: ProjectSearchResult;
5168
5763
  };
5169
5764
  /** A update associated with an project. */
5170
5765
  export declare type ProjectUpdate = Node & {
@@ -5181,6 +5776,8 @@ export declare type ProjectUpdate = Node & {
5181
5776
  health: ProjectUpdateHealthType;
5182
5777
  /** The unique identifier of the entity. */
5183
5778
  id: Scalars["ID"];
5779
+ /** [Internal] Serialized JSON representing current state of the project properties when posting the project update. */
5780
+ infoSnapshot?: Maybe<Scalars["JSONObject"]>;
5184
5781
  /** The project that the update is associated with. */
5185
5782
  project: Project;
5186
5783
  /**
@@ -5451,7 +6048,7 @@ export declare type Query = {
5451
6048
  /** One specific custom view. */
5452
6049
  customView: CustomView;
5453
6050
  /** [INTERNAL] Suggests metadata for a view based on it's filters. */
5454
- customViewSuggestion: CustomViewSuggestionPayload;
6051
+ customViewDetailsSuggestion: CustomViewSuggestionPayload;
5455
6052
  /** Custom views for the user. */
5456
6053
  customViews: CustomViewConnection;
5457
6054
  /** One specific cycle. */
@@ -5488,6 +6085,12 @@ export declare type Query = {
5488
6085
  integrationsSettings: IntegrationsSettings;
5489
6086
  /** One specific issue. */
5490
6087
  issue: Issue;
6088
+ /** Find issues that are related to a given Figma file key. */
6089
+ issueFigmaFileKeySearch: IssueConnection;
6090
+ /** Suggests filters for an issue view based on a text prompt. */
6091
+ issueFilterSuggestion: IssueFilterSuggestionPayload;
6092
+ /** Checks a CSV file validity against a specific import service. */
6093
+ issueImportCheckCSV: IssueImportCheckPayload;
5491
6094
  /** Fetches the GitHub token, completing the OAuth flow. */
5492
6095
  issueImportFinishGithubOAuth: GithubOAuthTokenPayload;
5493
6096
  /** One specific label. */
@@ -5528,6 +6131,8 @@ export declare type Query = {
5528
6131
  organizationInvites: OrganizationInviteConnection;
5529
6132
  /** One specific project. */
5530
6133
  project: Project;
6134
+ /** Suggests filters for a project view based on a text prompt. */
6135
+ projectFilterSuggestion: ProjectFilterSuggestionPayload;
5531
6136
  /** One specific project link. */
5532
6137
  projectLink: ProjectLink;
5533
6138
  /** All links for the project. */
@@ -5554,6 +6159,12 @@ export declare type Query = {
5554
6159
  roadmapToProjects: RoadmapToProjectConnection;
5555
6160
  /** All roadmaps in the workspace. */
5556
6161
  roadmaps: RoadmapConnection;
6162
+ /** Search documents. */
6163
+ searchDocuments: DocumentSearchPayload;
6164
+ /** Search issues. */
6165
+ searchIssues: IssueSearchPayload;
6166
+ /** Search projects. */
6167
+ searchProjects: ProjectSearchPayload;
5557
6168
  /** Fetch SSO login URL for the email provided. */
5558
6169
  ssoUrlFromEmail: SsoUrlFromEmailResponse;
5559
6170
  /** One specific team. */
@@ -5595,6 +6206,7 @@ export declare type QueryProjectMilestoneArgs = {
5595
6206
  export declare type QueryProjectMilestonesArgs = {
5596
6207
  after?: Maybe<Scalars["String"]>;
5597
6208
  before?: Maybe<Scalars["String"]>;
6209
+ filter?: Maybe<ProjectMilestoneFilter>;
5598
6210
  first?: Maybe<Scalars["Int"]>;
5599
6211
  includeArchived?: Maybe<Scalars["Boolean"]>;
5600
6212
  last?: Maybe<Scalars["Int"]>;
@@ -5677,7 +6289,7 @@ export declare type QueryCommentsArgs = {
5677
6289
  export declare type QueryCustomViewArgs = {
5678
6290
  id: Scalars["String"];
5679
6291
  };
5680
- export declare type QueryCustomViewSuggestionArgs = {
6292
+ export declare type QueryCustomViewDetailsSuggestionArgs = {
5681
6293
  filter: Scalars["JSONObject"];
5682
6294
  };
5683
6295
  export declare type QueryCustomViewsArgs = {
@@ -5776,6 +6388,22 @@ export declare type QueryIntegrationsSettingsArgs = {
5776
6388
  export declare type QueryIssueArgs = {
5777
6389
  id: Scalars["String"];
5778
6390
  };
6391
+ export declare type QueryIssueFigmaFileKeySearchArgs = {
6392
+ after?: Maybe<Scalars["String"]>;
6393
+ before?: Maybe<Scalars["String"]>;
6394
+ fileKey: Scalars["String"];
6395
+ first?: Maybe<Scalars["Int"]>;
6396
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6397
+ last?: Maybe<Scalars["Int"]>;
6398
+ orderBy?: Maybe<PaginationOrderBy>;
6399
+ };
6400
+ export declare type QueryIssueFilterSuggestionArgs = {
6401
+ prompt: Scalars["String"];
6402
+ };
6403
+ export declare type QueryIssueImportCheckCsvArgs = {
6404
+ csvUrl: Scalars["String"];
6405
+ service: Scalars["String"];
6406
+ };
5779
6407
  export declare type QueryIssueImportFinishGithubOAuthArgs = {
5780
6408
  code: Scalars["String"];
5781
6409
  };
@@ -5869,6 +6497,9 @@ export declare type QueryOrganizationInvitesArgs = {
5869
6497
  export declare type QueryProjectArgs = {
5870
6498
  id: Scalars["String"];
5871
6499
  };
6500
+ export declare type QueryProjectFilterSuggestionArgs = {
6501
+ prompt: Scalars["String"];
6502
+ };
5872
6503
  export declare type QueryProjectLinkArgs = {
5873
6504
  id: Scalars["String"];
5874
6505
  };
@@ -5933,6 +6564,34 @@ export declare type QueryRoadmapsArgs = {
5933
6564
  last?: Maybe<Scalars["Int"]>;
5934
6565
  orderBy?: Maybe<PaginationOrderBy>;
5935
6566
  };
6567
+ export declare type QuerySearchDocumentsArgs = {
6568
+ after?: Maybe<Scalars["String"]>;
6569
+ before?: Maybe<Scalars["String"]>;
6570
+ first?: Maybe<Scalars["Int"]>;
6571
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6572
+ last?: Maybe<Scalars["Int"]>;
6573
+ orderBy?: Maybe<PaginationOrderBy>;
6574
+ term: Scalars["String"];
6575
+ };
6576
+ export declare type QuerySearchIssuesArgs = {
6577
+ after?: Maybe<Scalars["String"]>;
6578
+ before?: Maybe<Scalars["String"]>;
6579
+ filter?: Maybe<IssueFilter>;
6580
+ first?: Maybe<Scalars["Int"]>;
6581
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6582
+ last?: Maybe<Scalars["Int"]>;
6583
+ orderBy?: Maybe<PaginationOrderBy>;
6584
+ term: Scalars["String"];
6585
+ };
6586
+ export declare type QuerySearchProjectsArgs = {
6587
+ after?: Maybe<Scalars["String"]>;
6588
+ before?: Maybe<Scalars["String"]>;
6589
+ first?: Maybe<Scalars["Int"]>;
6590
+ includeArchived?: Maybe<Scalars["Boolean"]>;
6591
+ last?: Maybe<Scalars["Int"]>;
6592
+ orderBy?: Maybe<PaginationOrderBy>;
6593
+ term: Scalars["String"];
6594
+ };
5936
6595
  export declare type QuerySsoUrlFromEmailArgs = {
5937
6596
  email: Scalars["String"];
5938
6597
  isDesktop?: Maybe<Scalars["Boolean"]>;
@@ -6391,6 +7050,8 @@ export declare type SourceTypeComparator = {
6391
7050
  notStartsWith?: Maybe<Scalars["String"]>;
6392
7051
  /** Starts with constraint. Matches any values that start with the given string. */
6393
7052
  startsWith?: Maybe<Scalars["String"]>;
7053
+ /** Starts with case insensitive constraint. Matches any values that start with the given string. */
7054
+ startsWithIgnoreCase?: Maybe<Scalars["String"]>;
6394
7055
  };
6395
7056
  export declare type SsoUrlFromEmailResponse = {
6396
7057
  __typename?: "SsoUrlFromEmailResponse";
@@ -6429,6 +7090,8 @@ export declare type StringComparator = {
6429
7090
  notStartsWith?: Maybe<Scalars["String"]>;
6430
7091
  /** Starts with constraint. Matches any values that start with the given string. */
6431
7092
  startsWith?: Maybe<Scalars["String"]>;
7093
+ /** Starts with case insensitive constraint. Matches any values that start with the given string. */
7094
+ startsWithIgnoreCase?: Maybe<Scalars["String"]>;
6432
7095
  };
6433
7096
  /**
6434
7097
  * Contains either the full serialized state of the application or delta packets that the requester can
@@ -6529,7 +7192,7 @@ export declare type Team = Node & {
6529
7192
  issueEstimationAllowZero: Scalars["Boolean"];
6530
7193
  /** Whether to add additional points to the estimate scale. */
6531
7194
  issueEstimationExtended: Scalars["Boolean"];
6532
- /** The issue estimation type to use. */
7195
+ /** The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt". */
6533
7196
  issueEstimationType: Scalars["String"];
6534
7197
  /** Whether issues without priority should be sorted first. */
6535
7198
  issueOrderingNoPriorityFirst: Scalars["Boolean"];
@@ -6725,7 +7388,7 @@ export declare type TeamCreateInput = {
6725
7388
  issueEstimationAllowZero?: Maybe<Scalars["Boolean"]>;
6726
7389
  /** Whether to add additional points to the estimate scale. */
6727
7390
  issueEstimationExtended?: Maybe<Scalars["Boolean"]>;
6728
- /** The issue estimation type to use. */
7391
+ /** The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt". */
6729
7392
  issueEstimationType?: Maybe<Scalars["String"]>;
6730
7393
  /** Whether issues without priority should be sorted first. */
6731
7394
  issueOrderingNoPriorityFirst?: Maybe<Scalars["Boolean"]>;
@@ -6918,7 +7581,7 @@ export declare type TeamUpdateInput = {
6918
7581
  issueEstimationAllowZero?: Maybe<Scalars["Boolean"]>;
6919
7582
  /** Whether to add additional points to the estimate scale. */
6920
7583
  issueEstimationExtended?: Maybe<Scalars["Boolean"]>;
6921
- /** The issue estimation type to use. */
7584
+ /** The issue estimation type to use. Must be one of "notUsed", "exponential", "fibonacci", "linear", "tShirt". */
6922
7585
  issueEstimationType?: Maybe<Scalars["String"]>;
6923
7586
  /** Whether issues without priority should be sorted first. */
6924
7587
  issueOrderingNoPriorityFirst?: Maybe<Scalars["Boolean"]>;
@@ -7471,6 +8134,8 @@ export declare type UserSettings = Node & {
7471
8134
  id: Scalars["ID"];
7472
8135
  /** The notification channel settings the user has selected. */
7473
8136
  notificationPreferences: Scalars["JSONObject"];
8137
+ /** Whether to show full user names instead of display names. */
8138
+ showFullUserNames: Scalars["Boolean"];
7474
8139
  /** The email types the user has unsubscribed from. */
7475
8140
  unsubscribedFrom: Array<Scalars["String"]>;
7476
8141
  /**
@@ -7544,6 +8209,8 @@ export declare type ViewPreferencesCreateInput = {
7544
8209
  cycleId?: Maybe<Scalars["String"]>;
7545
8210
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
7546
8211
  id?: Maybe<Scalars["String"]>;
8212
+ /** The default parameters for the insight on that view. */
8213
+ insights?: Maybe<Scalars["JSONObject"]>;
7547
8214
  /** The label these view preferences are associated with. */
7548
8215
  labelId?: Maybe<Scalars["String"]>;
7549
8216
  /** View preferences object. */
@@ -7576,8 +8243,10 @@ export declare enum ViewPreferencesType {
7576
8243
  User = "user"
7577
8244
  }
7578
8245
  export declare type ViewPreferencesUpdateInput = {
8246
+ /** The default parameters for the insight on that view. */
8247
+ insights?: Maybe<Scalars["JSONObject"]>;
7579
8248
  /** View preferences. */
7580
- preferences: Scalars["JSONObject"];
8249
+ preferences?: Maybe<Scalars["JSONObject"]>;
7581
8250
  };
7582
8251
  /** The client view this custom view is targeting. */
7583
8252
  export declare enum ViewType {
@@ -7601,6 +8270,7 @@ export declare enum ViewType {
7601
8270
  ProjectsAll = "projectsAll",
7602
8271
  ProjectsBacklog = "projectsBacklog",
7603
8272
  ProjectsClosed = "projectsClosed",
8273
+ QuickView = "quickView",
7604
8274
  Roadmap = "roadmap",
7605
8275
  RoadmapAll = "roadmapAll",
7606
8276
  RoadmapBacklog = "roadmapBacklog",
@@ -8024,6 +8694,16 @@ export declare type CustomViewFragment = {
8024
8694
  creator: {
8025
8695
  __typename?: "User";
8026
8696
  } & Pick<User, "id">;
8697
+ owner: {
8698
+ __typename?: "User";
8699
+ } & Pick<User, "id">;
8700
+ };
8701
+ export declare type DocumentContentFragment = {
8702
+ __typename: "DocumentContent";
8703
+ } & Pick<DocumentContent, "contentData" | "content" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
8704
+ issue?: Maybe<{
8705
+ __typename?: "Issue";
8706
+ } & Pick<Issue, "id">>;
8027
8707
  };
8028
8708
  export declare type DocumentFragment = {
8029
8709
  __typename: "Document";
@@ -8076,13 +8756,6 @@ declare type Notification_ProjectNotification_Fragment = {
8076
8756
  } & Pick<User, "id">;
8077
8757
  } & ProjectNotificationFragment;
8078
8758
  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
8759
  export declare type ProjectNotificationSubscriptionFragment = {
8087
8760
  __typename: "ProjectNotificationSubscription";
8088
8761
  } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
@@ -8301,7 +8974,7 @@ export declare type ProjectLinkFragment = {
8301
8974
  };
8302
8975
  export declare type IssueImportFragment = {
8303
8976
  __typename: "IssueImport";
8304
- } & Pick<IssueImport, "progress" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
8977
+ } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
8305
8978
  export declare type IntegrationFragment = {
8306
8979
  __typename: "Integration";
8307
8980
  } & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -8368,6 +9041,9 @@ export declare type IssueFragment = {
8368
9041
  snoozedBy?: Maybe<{
8369
9042
  __typename?: "User";
8370
9043
  } & Pick<User, "id">>;
9044
+ favorite?: Maybe<{
9045
+ __typename?: "Favorite";
9046
+ } & Pick<Favorite, "id">>;
8371
9047
  state: {
8372
9048
  __typename?: "WorkflowState";
8373
9049
  } & Pick<WorkflowState, "id">;
@@ -8432,6 +9108,9 @@ export declare type TeamFragment = {
8432
9108
  export declare type SyncResponseFragment = {
8433
9109
  __typename: "SyncResponse";
8434
9110
  } & Pick<SyncResponse, "delta" | "state" | "lastSyncId" | "subscribedSyncGroups" | "databaseVersion">;
9111
+ export declare type ArchiveResponseFragment = {
9112
+ __typename: "ArchiveResponse";
9113
+ } & Pick<ArchiveResponse, "archive" | "totalCount" | "databaseVersion" | "includesDependencies">;
8435
9114
  export declare type TeamMembershipFragment = {
8436
9115
  __typename: "TeamMembership";
8437
9116
  } & Pick<TeamMembership, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id" | "owner"> & {
@@ -8668,7 +9347,7 @@ export declare type PaidSubscriptionFragment = {
8668
9347
  };
8669
9348
  export declare type UserSettingsFragment = {
8670
9349
  __typename: "UserSettings";
8671
- } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
9350
+ } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "showFullUserNames"> & {
8672
9351
  user: {
8673
9352
  __typename?: "User";
8674
9353
  } & Pick<User, "id">;
@@ -8835,7 +9514,7 @@ export declare type CustomViewPayloadFragment = {
8835
9514
  };
8836
9515
  export declare type CustomViewSuggestionPayloadFragment = {
8837
9516
  __typename: "CustomViewSuggestionPayload";
8838
- } & Pick<CustomViewSuggestionPayload, "suggestedDescription" | "suggestedIcon" | "suggestedName">;
9517
+ } & Pick<CustomViewSuggestionPayload, "description" | "icon" | "name">;
8839
9518
  export declare type CycleConnectionFragment = {
8840
9519
  __typename: "CycleConnection";
8841
9520
  } & {
@@ -8870,6 +9549,42 @@ export declare type DocumentPayloadFragment = {
8870
9549
  __typename?: "Document";
8871
9550
  } & Pick<Document, "id">;
8872
9551
  };
9552
+ export declare type DocumentSearchPayloadFragment = {
9553
+ __typename: "DocumentSearchPayload";
9554
+ } & Pick<DocumentSearchPayload, "totalCount"> & {
9555
+ archivePayload: {
9556
+ __typename?: "ArchiveResponse";
9557
+ } & ArchiveResponseFragment;
9558
+ nodes: Array<{
9559
+ __typename?: "DocumentSearchResult";
9560
+ } & DocumentSearchResultFragment>;
9561
+ pageInfo: {
9562
+ __typename?: "PageInfo";
9563
+ } & PageInfoFragment;
9564
+ };
9565
+ export declare type DocumentSearchResultFragment = {
9566
+ __typename: "DocumentSearchResult";
9567
+ } & Pick<DocumentSearchResult, "metadata" | "color" | "contentData" | "content" | "title" | "slugId" | "icon" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
9568
+ project: {
9569
+ __typename?: "Project";
9570
+ } & Pick<Project, "id">;
9571
+ creator: {
9572
+ __typename?: "User";
9573
+ } & Pick<User, "id">;
9574
+ updatedBy: {
9575
+ __typename?: "User";
9576
+ } & Pick<User, "id">;
9577
+ };
9578
+ export declare type DocumentSearchResultConnectionFragment = {
9579
+ __typename: "DocumentSearchResultConnection";
9580
+ } & {
9581
+ nodes: Array<{
9582
+ __typename?: "DocumentSearchResult";
9583
+ } & DocumentSearchResultFragment>;
9584
+ pageInfo: {
9585
+ __typename?: "PageInfo";
9586
+ } & PageInfoFragment;
9587
+ };
8873
9588
  export declare type EmailUnsubscribePayloadFragment = {
8874
9589
  __typename: "EmailUnsubscribePayload";
8875
9590
  } & Pick<EmailUnsubscribePayload, "success">;
@@ -9004,6 +9719,9 @@ export declare type IssueConnectionFragment = {
9004
9719
  __typename?: "PageInfo";
9005
9720
  } & PageInfoFragment;
9006
9721
  };
9722
+ export declare type IssueFilterSuggestionPayloadFragment = {
9723
+ __typename: "IssueFilterSuggestionPayload";
9724
+ } & Pick<IssueFilterSuggestionPayload, "filter">;
9007
9725
  export declare type IssueHistoryConnectionFragment = {
9008
9726
  __typename: "IssueHistoryConnection";
9009
9727
  } & {
@@ -9014,6 +9732,9 @@ export declare type IssueHistoryConnectionFragment = {
9014
9732
  __typename?: "PageInfo";
9015
9733
  } & PageInfoFragment;
9016
9734
  };
9735
+ export declare type IssueImportCheckPayloadFragment = {
9736
+ __typename: "IssueImportCheckPayload";
9737
+ } & Pick<IssueImportCheckPayload, "success">;
9017
9738
  export declare type IssueImportDeletePayloadFragment = {
9018
9739
  __typename: "IssueImportDeletePayload";
9019
9740
  } & Pick<IssueImportDeletePayload, "lastSyncId" | "success"> & {
@@ -9059,19 +9780,76 @@ export declare type IssueRelationConnectionFragment = {
9059
9780
  __typename: "IssueRelationConnection";
9060
9781
  } & {
9061
9782
  nodes: Array<{
9062
- __typename?: "IssueRelation";
9063
- } & IssueRelationFragment>;
9783
+ __typename?: "IssueRelation";
9784
+ } & IssueRelationFragment>;
9785
+ pageInfo: {
9786
+ __typename?: "PageInfo";
9787
+ } & PageInfoFragment;
9788
+ };
9789
+ export declare type IssueRelationPayloadFragment = {
9790
+ __typename: "IssueRelationPayload";
9791
+ } & Pick<IssueRelationPayload, "lastSyncId" | "success"> & {
9792
+ issueRelation: {
9793
+ __typename?: "IssueRelation";
9794
+ } & Pick<IssueRelation, "id">;
9795
+ };
9796
+ export declare type IssueSearchPayloadFragment = {
9797
+ __typename: "IssueSearchPayload";
9798
+ } & Pick<IssueSearchPayload, "totalCount"> & {
9799
+ archivePayload: {
9800
+ __typename?: "ArchiveResponse";
9801
+ } & ArchiveResponseFragment;
9802
+ nodes: Array<{
9803
+ __typename?: "IssueSearchResult";
9804
+ } & IssueSearchResultFragment>;
9805
+ pageInfo: {
9806
+ __typename?: "PageInfo";
9807
+ } & PageInfoFragment;
9808
+ };
9809
+ export declare type IssueSearchResultFragment = {
9810
+ __typename: "IssueSearchResult";
9811
+ } & 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"> & {
9812
+ cycle?: Maybe<{
9813
+ __typename?: "Cycle";
9814
+ } & Pick<Cycle, "id">>;
9815
+ parent?: Maybe<{
9816
+ __typename?: "Issue";
9817
+ } & Pick<Issue, "id">>;
9818
+ project?: Maybe<{
9819
+ __typename?: "Project";
9820
+ } & Pick<Project, "id">>;
9821
+ projectMilestone?: Maybe<{
9822
+ __typename?: "ProjectMilestone";
9823
+ } & Pick<ProjectMilestone, "id">>;
9824
+ team: {
9825
+ __typename?: "Team";
9826
+ } & Pick<Team, "id">;
9827
+ assignee?: Maybe<{
9828
+ __typename?: "User";
9829
+ } & Pick<User, "id">>;
9830
+ creator?: Maybe<{
9831
+ __typename?: "User";
9832
+ } & Pick<User, "id">>;
9833
+ snoozedBy?: Maybe<{
9834
+ __typename?: "User";
9835
+ } & Pick<User, "id">>;
9836
+ favorite?: Maybe<{
9837
+ __typename?: "Favorite";
9838
+ } & Pick<Favorite, "id">>;
9839
+ state: {
9840
+ __typename?: "WorkflowState";
9841
+ } & Pick<WorkflowState, "id">;
9842
+ };
9843
+ export declare type IssueSearchResultConnectionFragment = {
9844
+ __typename: "IssueSearchResultConnection";
9845
+ } & {
9846
+ nodes: Array<{
9847
+ __typename?: "IssueSearchResult";
9848
+ } & IssueSearchResultFragment>;
9064
9849
  pageInfo: {
9065
9850
  __typename?: "PageInfo";
9066
9851
  } & PageInfoFragment;
9067
9852
  };
9068
- export declare type IssueRelationPayloadFragment = {
9069
- __typename: "IssueRelationPayload";
9070
- } & Pick<IssueRelationPayload, "lastSyncId" | "success"> & {
9071
- issueRelation: {
9072
- __typename?: "IssueRelation";
9073
- } & Pick<IssueRelation, "id">;
9074
- };
9075
9853
  export declare type LogoutResponseFragment = {
9076
9854
  __typename: "LogoutResponse";
9077
9855
  } & Pick<LogoutResponse, "success">;
@@ -9096,6 +9874,12 @@ declare type Node_Cycle_Fragment = {
9096
9874
  declare type Node_Document_Fragment = {
9097
9875
  __typename: "Document";
9098
9876
  } & Pick<Document, "id">;
9877
+ declare type Node_DocumentContent_Fragment = {
9878
+ __typename: "DocumentContent";
9879
+ } & Pick<DocumentContent, "id">;
9880
+ declare type Node_DocumentSearchResult_Fragment = {
9881
+ __typename: "DocumentSearchResult";
9882
+ } & Pick<DocumentSearchResult, "id">;
9099
9883
  declare type Node_Emoji_Fragment = {
9100
9884
  __typename: "Emoji";
9101
9885
  } & Pick<Emoji, "id">;
@@ -9135,6 +9919,9 @@ declare type Node_IssueNotification_Fragment = {
9135
9919
  declare type Node_IssueRelation_Fragment = {
9136
9920
  __typename: "IssueRelation";
9137
9921
  } & Pick<IssueRelation, "id">;
9922
+ declare type Node_IssueSearchResult_Fragment = {
9923
+ __typename: "IssueSearchResult";
9924
+ } & Pick<IssueSearchResult, "id">;
9138
9925
  declare type Node_OauthClient_Fragment = {
9139
9926
  __typename: "OauthClient";
9140
9927
  } & Pick<OauthClient, "id">;
@@ -9156,9 +9943,6 @@ declare type Node_OrganizationInvite_Fragment = {
9156
9943
  declare type Node_PaidSubscription_Fragment = {
9157
9944
  __typename: "PaidSubscription";
9158
9945
  } & Pick<PaidSubscription, "id">;
9159
- declare type Node_PersonalNote_Fragment = {
9160
- __typename: "PersonalNote";
9161
- } & Pick<PersonalNote, "id">;
9162
9946
  declare type Node_Project_Fragment = {
9163
9947
  __typename: "Project";
9164
9948
  } & Pick<Project, "id">;
@@ -9174,6 +9958,9 @@ declare type Node_ProjectNotification_Fragment = {
9174
9958
  declare type Node_ProjectNotificationSubscription_Fragment = {
9175
9959
  __typename: "ProjectNotificationSubscription";
9176
9960
  } & Pick<ProjectNotificationSubscription, "id">;
9961
+ declare type Node_ProjectSearchResult_Fragment = {
9962
+ __typename: "ProjectSearchResult";
9963
+ } & Pick<ProjectSearchResult, "id">;
9177
9964
  declare type Node_ProjectUpdate_Fragment = {
9178
9965
  __typename: "ProjectUpdate";
9179
9966
  } & Pick<ProjectUpdate, "id">;
@@ -9225,7 +10012,7 @@ declare type Node_WorkflowDefinition_Fragment = {
9225
10012
  declare type Node_WorkflowState_Fragment = {
9226
10013
  __typename: "WorkflowState";
9227
10014
  } & 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;
10015
+ export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_CustomView_Fragment | Node_Cycle_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentSearchResult_Fragment | Node_Emoji_Fragment | Node_ExternalUser_Fragment | Node_Favorite_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_User_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
9229
10016
  export declare type NotificationConnectionFragment = {
9230
10017
  __typename: "NotificationConnection";
9231
10018
  } & {
@@ -9301,9 +10088,9 @@ export declare type OrganizationInviteConnectionFragment = {
9301
10088
  __typename?: "PageInfo";
9302
10089
  } & PageInfoFragment;
9303
10090
  };
9304
- export declare type OrganizationInviteDetailsPayloadFragment = {
9305
- __typename: "OrganizationInviteDetailsPayload";
9306
- } & Pick<OrganizationInviteDetailsPayload, "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
10091
+ export declare type OrganizationInviteFullDetailsPayloadFragment = {
10092
+ __typename: "OrganizationInviteFullDetailsPayload";
10093
+ } & Pick<OrganizationInviteFullDetailsPayload, "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
9307
10094
  export declare type OrganizationInvitePayloadFragment = {
9308
10095
  __typename: "OrganizationInvitePayload";
9309
10096
  } & Pick<OrganizationInvitePayload, "lastSyncId" | "success"> & {
@@ -9330,6 +10117,9 @@ export declare type ProjectConnectionFragment = {
9330
10117
  __typename?: "PageInfo";
9331
10118
  } & PageInfoFragment;
9332
10119
  };
10120
+ export declare type ProjectFilterSuggestionPayloadFragment = {
10121
+ __typename: "ProjectFilterSuggestionPayload";
10122
+ } & Pick<ProjectFilterSuggestionPayload, "filter">;
9333
10123
  export declare type ProjectLinkConnectionFragment = {
9334
10124
  __typename: "ProjectLinkConnection";
9335
10125
  } & {
@@ -9371,6 +10161,45 @@ export declare type ProjectPayloadFragment = {
9371
10161
  __typename?: "Project";
9372
10162
  } & Pick<Project, "id">>;
9373
10163
  };
10164
+ export declare type ProjectSearchPayloadFragment = {
10165
+ __typename: "ProjectSearchPayload";
10166
+ } & Pick<ProjectSearchPayload, "totalCount"> & {
10167
+ archivePayload: {
10168
+ __typename?: "ArchiveResponse";
10169
+ } & ArchiveResponseFragment;
10170
+ nodes: Array<{
10171
+ __typename?: "ProjectSearchResult";
10172
+ } & ProjectSearchResultFragment>;
10173
+ pageInfo: {
10174
+ __typename?: "PageInfo";
10175
+ } & PageInfoFragment;
10176
+ };
10177
+ export declare type ProjectSearchResultFragment = {
10178
+ __typename: "ProjectSearchResult";
10179
+ } & Pick<ProjectSearchResult, "metadata" | "url" | "targetDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
10180
+ integrationsSettings?: Maybe<{
10181
+ __typename?: "IntegrationsSettings";
10182
+ } & Pick<IntegrationsSettings, "id">>;
10183
+ lead?: Maybe<{
10184
+ __typename?: "User";
10185
+ } & Pick<User, "id">>;
10186
+ convertedFromIssue?: Maybe<{
10187
+ __typename?: "Issue";
10188
+ } & Pick<Issue, "id">>;
10189
+ creator: {
10190
+ __typename?: "User";
10191
+ } & Pick<User, "id">;
10192
+ };
10193
+ export declare type ProjectSearchResultConnectionFragment = {
10194
+ __typename: "ProjectSearchResultConnection";
10195
+ } & {
10196
+ nodes: Array<{
10197
+ __typename?: "ProjectSearchResult";
10198
+ } & ProjectSearchResultFragment>;
10199
+ pageInfo: {
10200
+ __typename?: "PageInfo";
10201
+ } & PageInfoFragment;
10202
+ };
9374
10203
  export declare type ProjectUpdateConnectionFragment = {
9375
10204
  __typename: "ProjectUpdateConnection";
9376
10205
  } & {
@@ -10090,6 +10919,19 @@ export declare type ImageUploadFromUrlMutation = {
10090
10919
  __typename?: "ImageUploadFromUrlPayload";
10091
10920
  } & ImageUploadFromUrlPayloadFragment;
10092
10921
  };
10922
+ export declare type ImportFileUploadMutationVariables = Exact<{
10923
+ contentType: Scalars["String"];
10924
+ filename: Scalars["String"];
10925
+ metaData?: Maybe<Scalars["JSON"]>;
10926
+ size: Scalars["Int"];
10927
+ }>;
10928
+ export declare type ImportFileUploadMutation = {
10929
+ __typename?: "Mutation";
10930
+ } & {
10931
+ importFileUpload: {
10932
+ __typename?: "UploadPayload";
10933
+ } & UploadPayloadFragment;
10934
+ };
10093
10935
  export declare type DeleteIntegrationMutationVariables = Exact<{
10094
10936
  id: Scalars["String"];
10095
10937
  }>;
@@ -10433,8 +11275,24 @@ export declare type IssueImportCreateAsanaMutation = {
10433
11275
  __typename?: "IssueImportPayload";
10434
11276
  } & IssueImportPayloadFragment;
10435
11277
  };
11278
+ export declare type IssueImportCreateCsvJiraMutationVariables = Exact<{
11279
+ csvUrl: Scalars["String"];
11280
+ jiraEmail?: Maybe<Scalars["String"]>;
11281
+ jiraHostname?: Maybe<Scalars["String"]>;
11282
+ jiraToken?: Maybe<Scalars["String"]>;
11283
+ organizationId?: Maybe<Scalars["String"]>;
11284
+ teamId?: Maybe<Scalars["String"]>;
11285
+ teamName?: Maybe<Scalars["String"]>;
11286
+ }>;
11287
+ export declare type IssueImportCreateCsvJiraMutation = {
11288
+ __typename?: "Mutation";
11289
+ } & {
11290
+ issueImportCreateCSVJira: {
11291
+ __typename?: "IssueImportPayload";
11292
+ } & IssueImportPayloadFragment;
11293
+ };
10436
11294
  export declare type IssueImportCreateClubhouseMutationVariables = Exact<{
10437
- clubhouseTeamName: Scalars["String"];
11295
+ clubhouseGroupName: Scalars["String"];
10438
11296
  clubhouseToken: Scalars["String"];
10439
11297
  id?: Maybe<Scalars["String"]>;
10440
11298
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
@@ -11310,6 +12168,16 @@ export declare type UserGoogleCalendarConnectMutation = {
11310
12168
  __typename?: "UserPayload";
11311
12169
  } & UserPayloadFragment;
11312
12170
  };
12171
+ export declare type UserJiraConnectMutationVariables = Exact<{
12172
+ code: Scalars["String"];
12173
+ }>;
12174
+ export declare type UserJiraConnectMutation = {
12175
+ __typename?: "Mutation";
12176
+ } & {
12177
+ userJiraConnect: {
12178
+ __typename?: "UserPayload";
12179
+ } & UserPayloadFragment;
12180
+ };
11313
12181
  export declare type UserPromoteAdminMutationVariables = Exact<{
11314
12182
  id: Scalars["String"];
11315
12183
  }>;
@@ -11498,6 +12366,7 @@ export declare type ProjectMilestoneQuery = {
11498
12366
  export declare type ProjectMilestonesQueryVariables = Exact<{
11499
12367
  after?: Maybe<Scalars["String"]>;
11500
12368
  before?: Maybe<Scalars["String"]>;
12369
+ filter?: Maybe<ProjectMilestoneFilter>;
11501
12370
  first?: Maybe<Scalars["Int"]>;
11502
12371
  includeArchived?: Maybe<Scalars["Boolean"]>;
11503
12372
  last?: Maybe<Scalars["Int"]>;
@@ -12008,46 +12877,6 @@ export declare type EmojisQuery = {
12008
12877
  __typename?: "EmojiConnection";
12009
12878
  } & EmojiConnectionFragment;
12010
12879
  };
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
12880
  export declare type FavoriteQueryVariables = Exact<{
12052
12881
  id: Scalars["String"];
12053
12882
  }>;
@@ -12355,6 +13184,43 @@ export declare type Issue_SubscribersQuery = {
12355
13184
  } & UserConnectionFragment;
12356
13185
  };
12357
13186
  };
13187
+ export declare type IssueFigmaFileKeySearchQueryVariables = Exact<{
13188
+ after?: Maybe<Scalars["String"]>;
13189
+ before?: Maybe<Scalars["String"]>;
13190
+ fileKey: Scalars["String"];
13191
+ first?: Maybe<Scalars["Int"]>;
13192
+ includeArchived?: Maybe<Scalars["Boolean"]>;
13193
+ last?: Maybe<Scalars["Int"]>;
13194
+ orderBy?: Maybe<PaginationOrderBy>;
13195
+ }>;
13196
+ export declare type IssueFigmaFileKeySearchQuery = {
13197
+ __typename?: "Query";
13198
+ } & {
13199
+ issueFigmaFileKeySearch: {
13200
+ __typename?: "IssueConnection";
13201
+ } & IssueConnectionFragment;
13202
+ };
13203
+ export declare type IssueFilterSuggestionQueryVariables = Exact<{
13204
+ prompt: Scalars["String"];
13205
+ }>;
13206
+ export declare type IssueFilterSuggestionQuery = {
13207
+ __typename?: "Query";
13208
+ } & {
13209
+ issueFilterSuggestion: {
13210
+ __typename?: "IssueFilterSuggestionPayload";
13211
+ } & IssueFilterSuggestionPayloadFragment;
13212
+ };
13213
+ export declare type IssueImportCheckCsvQueryVariables = Exact<{
13214
+ csvUrl: Scalars["String"];
13215
+ service: Scalars["String"];
13216
+ }>;
13217
+ export declare type IssueImportCheckCsvQuery = {
13218
+ __typename?: "Query";
13219
+ } & {
13220
+ issueImportCheckCSV: {
13221
+ __typename?: "IssueImportCheckPayload";
13222
+ } & IssueImportCheckPayloadFragment;
13223
+ };
12358
13224
  export declare type IssueImportFinishGithubOAuthQueryVariables = Exact<{
12359
13225
  code: Scalars["String"];
12360
13226
  }>;
@@ -12858,16 +13724,6 @@ export declare type OrganizationInviteQuery = {
12858
13724
  __typename?: "OrganizationInvite";
12859
13725
  } & OrganizationInviteFragment;
12860
13726
  };
12861
- export declare type OrganizationInviteDetailsQueryVariables = Exact<{
12862
- id: Scalars["String"];
12863
- }>;
12864
- export declare type OrganizationInviteDetailsQuery = {
12865
- __typename?: "Query";
12866
- } & {
12867
- organizationInviteDetails: {
12868
- __typename?: "OrganizationInviteDetailsPayload";
12869
- } & OrganizationInviteDetailsPayloadFragment;
12870
- };
12871
13727
  export declare type OrganizationInvitesQueryVariables = Exact<{
12872
13728
  after?: Maybe<Scalars["String"]>;
12873
13729
  before?: Maybe<Scalars["String"]>;
@@ -13037,6 +13893,16 @@ export declare type Project_TeamsQuery = {
13037
13893
  } & TeamConnectionFragment;
13038
13894
  };
13039
13895
  };
13896
+ export declare type ProjectFilterSuggestionQueryVariables = Exact<{
13897
+ prompt: Scalars["String"];
13898
+ }>;
13899
+ export declare type ProjectFilterSuggestionQuery = {
13900
+ __typename?: "Query";
13901
+ } & {
13902
+ projectFilterSuggestion: {
13903
+ __typename?: "ProjectFilterSuggestionPayload";
13904
+ } & ProjectFilterSuggestionPayloadFragment;
13905
+ };
13040
13906
  export declare type ProjectLinkQueryVariables = Exact<{
13041
13907
  id: Scalars["String"];
13042
13908
  }>;
@@ -13219,6 +14085,116 @@ export declare type RoadmapsQuery = {
13219
14085
  __typename?: "RoadmapConnection";
13220
14086
  } & RoadmapConnectionFragment;
13221
14087
  };
14088
+ export declare type SearchDocumentsQueryVariables = Exact<{
14089
+ after?: Maybe<Scalars["String"]>;
14090
+ before?: Maybe<Scalars["String"]>;
14091
+ first?: Maybe<Scalars["Int"]>;
14092
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14093
+ last?: Maybe<Scalars["Int"]>;
14094
+ orderBy?: Maybe<PaginationOrderBy>;
14095
+ term: Scalars["String"];
14096
+ }>;
14097
+ export declare type SearchDocumentsQuery = {
14098
+ __typename?: "Query";
14099
+ } & {
14100
+ searchDocuments: {
14101
+ __typename?: "DocumentSearchPayload";
14102
+ } & DocumentSearchPayloadFragment;
14103
+ };
14104
+ export declare type SearchDocuments_ArchivePayloadQueryVariables = Exact<{
14105
+ after?: Maybe<Scalars["String"]>;
14106
+ before?: Maybe<Scalars["String"]>;
14107
+ first?: Maybe<Scalars["Int"]>;
14108
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14109
+ last?: Maybe<Scalars["Int"]>;
14110
+ orderBy?: Maybe<PaginationOrderBy>;
14111
+ term: Scalars["String"];
14112
+ }>;
14113
+ export declare type SearchDocuments_ArchivePayloadQuery = {
14114
+ __typename?: "Query";
14115
+ } & {
14116
+ searchDocuments: {
14117
+ __typename?: "DocumentSearchPayload";
14118
+ } & {
14119
+ archivePayload: {
14120
+ __typename?: "ArchiveResponse";
14121
+ } & ArchiveResponseFragment;
14122
+ };
14123
+ };
14124
+ export declare type SearchIssuesQueryVariables = Exact<{
14125
+ after?: Maybe<Scalars["String"]>;
14126
+ before?: Maybe<Scalars["String"]>;
14127
+ filter?: Maybe<IssueFilter>;
14128
+ first?: Maybe<Scalars["Int"]>;
14129
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14130
+ last?: Maybe<Scalars["Int"]>;
14131
+ orderBy?: Maybe<PaginationOrderBy>;
14132
+ term: Scalars["String"];
14133
+ }>;
14134
+ export declare type SearchIssuesQuery = {
14135
+ __typename?: "Query";
14136
+ } & {
14137
+ searchIssues: {
14138
+ __typename?: "IssueSearchPayload";
14139
+ } & IssueSearchPayloadFragment;
14140
+ };
14141
+ export declare type SearchIssues_ArchivePayloadQueryVariables = Exact<{
14142
+ after?: Maybe<Scalars["String"]>;
14143
+ before?: Maybe<Scalars["String"]>;
14144
+ filter?: Maybe<IssueFilter>;
14145
+ first?: Maybe<Scalars["Int"]>;
14146
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14147
+ last?: Maybe<Scalars["Int"]>;
14148
+ orderBy?: Maybe<PaginationOrderBy>;
14149
+ term: Scalars["String"];
14150
+ }>;
14151
+ export declare type SearchIssues_ArchivePayloadQuery = {
14152
+ __typename?: "Query";
14153
+ } & {
14154
+ searchIssues: {
14155
+ __typename?: "IssueSearchPayload";
14156
+ } & {
14157
+ archivePayload: {
14158
+ __typename?: "ArchiveResponse";
14159
+ } & ArchiveResponseFragment;
14160
+ };
14161
+ };
14162
+ export declare type SearchProjectsQueryVariables = Exact<{
14163
+ after?: Maybe<Scalars["String"]>;
14164
+ before?: Maybe<Scalars["String"]>;
14165
+ first?: Maybe<Scalars["Int"]>;
14166
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14167
+ last?: Maybe<Scalars["Int"]>;
14168
+ orderBy?: Maybe<PaginationOrderBy>;
14169
+ term: Scalars["String"];
14170
+ }>;
14171
+ export declare type SearchProjectsQuery = {
14172
+ __typename?: "Query";
14173
+ } & {
14174
+ searchProjects: {
14175
+ __typename?: "ProjectSearchPayload";
14176
+ } & ProjectSearchPayloadFragment;
14177
+ };
14178
+ export declare type SearchProjects_ArchivePayloadQueryVariables = Exact<{
14179
+ after?: Maybe<Scalars["String"]>;
14180
+ before?: Maybe<Scalars["String"]>;
14181
+ first?: Maybe<Scalars["Int"]>;
14182
+ includeArchived?: Maybe<Scalars["Boolean"]>;
14183
+ last?: Maybe<Scalars["Int"]>;
14184
+ orderBy?: Maybe<PaginationOrderBy>;
14185
+ term: Scalars["String"];
14186
+ }>;
14187
+ export declare type SearchProjects_ArchivePayloadQuery = {
14188
+ __typename?: "Query";
14189
+ } & {
14190
+ searchProjects: {
14191
+ __typename?: "ProjectSearchPayload";
14192
+ } & {
14193
+ archivePayload: {
14194
+ __typename?: "ArchiveResponse";
14195
+ } & ArchiveResponseFragment;
14196
+ };
14197
+ };
13222
14198
  export declare type SsoUrlFromEmailQueryVariables = Exact<{
13223
14199
  email: Scalars["String"];
13224
14200
  isDesktop?: Maybe<Scalars["Boolean"]>;
@@ -13770,7 +14746,7 @@ export declare type WorkflowStatesQuery = {
13770
14746
  } & WorkflowStateConnectionFragment;
13771
14747
  };
13772
14748
  export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
13773
- export declare const PersonalNoteFragmentDoc: DocumentNode<PersonalNoteFragment, unknown>;
14749
+ export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
13774
14750
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
13775
14751
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
13776
14752
  export declare const TemplateFragmentDoc: DocumentNode<TemplateFragment, unknown>;
@@ -13827,6 +14803,10 @@ export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment,
13827
14803
  export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
13828
14804
  export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
13829
14805
  export declare const DocumentPayloadFragmentDoc: DocumentNode<DocumentPayloadFragment, unknown>;
14806
+ export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFragment, unknown>;
14807
+ export declare const DocumentSearchResultFragmentDoc: DocumentNode<DocumentSearchResultFragment, unknown>;
14808
+ export declare const DocumentSearchPayloadFragmentDoc: DocumentNode<DocumentSearchPayloadFragment, unknown>;
14809
+ export declare const DocumentSearchResultConnectionFragmentDoc: DocumentNode<DocumentSearchResultConnectionFragment, unknown>;
13830
14810
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
13831
14811
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
13832
14812
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
@@ -13854,10 +14834,12 @@ export declare const IntegrationsSettingsPayloadFragmentDoc: DocumentNode<Integr
13854
14834
  export declare const IssueFragmentDoc: DocumentNode<IssueFragment, unknown>;
13855
14835
  export declare const IssueBatchPayloadFragmentDoc: DocumentNode<IssueBatchPayloadFragment, unknown>;
13856
14836
  export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFragment, unknown>;
14837
+ export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<IssueFilterSuggestionPayloadFragment, unknown>;
13857
14838
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
13858
14839
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
13859
14840
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
13860
14841
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
14842
+ export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
13861
14843
  export declare const IssueImportDeletePayloadFragmentDoc: DocumentNode<IssueImportDeletePayloadFragment, unknown>;
13862
14844
  export declare const IssueImportPayloadFragmentDoc: DocumentNode<IssueImportPayloadFragment, unknown>;
13863
14845
  export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
@@ -13868,6 +14850,9 @@ export declare const IssuePriorityValueFragmentDoc: DocumentNode<IssuePriorityVa
13868
14850
  export declare const IssueRelationFragmentDoc: DocumentNode<IssueRelationFragment, unknown>;
13869
14851
  export declare const IssueRelationConnectionFragmentDoc: DocumentNode<IssueRelationConnectionFragment, unknown>;
13870
14852
  export declare const IssueRelationPayloadFragmentDoc: DocumentNode<IssueRelationPayloadFragment, unknown>;
14853
+ export declare const IssueSearchResultFragmentDoc: DocumentNode<IssueSearchResultFragment, unknown>;
14854
+ export declare const IssueSearchPayloadFragmentDoc: DocumentNode<IssueSearchPayloadFragment, unknown>;
14855
+ export declare const IssueSearchResultConnectionFragmentDoc: DocumentNode<IssueSearchResultConnectionFragment, unknown>;
13871
14856
  export declare const LogoutResponseFragmentDoc: DocumentNode<LogoutResponseFragment, unknown>;
13872
14857
  export declare const NodeFragmentDoc: DocumentNode<NodeFragment, unknown>;
13873
14858
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
@@ -13887,12 +14872,13 @@ export declare const OrganizationDeletePayloadFragmentDoc: DocumentNode<Organiza
13887
14872
  export declare const OrganizationExistsPayloadFragmentDoc: DocumentNode<OrganizationExistsPayloadFragment, unknown>;
13888
14873
  export declare const OrganizationInviteFragmentDoc: DocumentNode<OrganizationInviteFragment, unknown>;
13889
14874
  export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<OrganizationInviteConnectionFragment, unknown>;
13890
- export declare const OrganizationInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteDetailsPayloadFragment, unknown>;
14875
+ export declare const OrganizationInviteFullDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteFullDetailsPayloadFragment, unknown>;
13891
14876
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
13892
14877
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
13893
14878
  export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
13894
14879
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
13895
14880
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
14881
+ export declare const ProjectFilterSuggestionPayloadFragmentDoc: DocumentNode<ProjectFilterSuggestionPayloadFragment, unknown>;
13896
14882
  export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
13897
14883
  export declare const ProjectLinkConnectionFragmentDoc: DocumentNode<ProjectLinkConnectionFragment, unknown>;
13898
14884
  export declare const ProjectLinkPayloadFragmentDoc: DocumentNode<ProjectLinkPayloadFragment, unknown>;
@@ -13900,6 +14886,9 @@ export declare const ProjectMilestoneFragmentDoc: DocumentNode<ProjectMilestoneF
13900
14886
  export declare const ProjectMilestoneConnectionFragmentDoc: DocumentNode<ProjectMilestoneConnectionFragment, unknown>;
13901
14887
  export declare const ProjectMilestonePayloadFragmentDoc: DocumentNode<ProjectMilestonePayloadFragment, unknown>;
13902
14888
  export declare const ProjectPayloadFragmentDoc: DocumentNode<ProjectPayloadFragment, unknown>;
14889
+ export declare const ProjectSearchResultFragmentDoc: DocumentNode<ProjectSearchResultFragment, unknown>;
14890
+ export declare const ProjectSearchPayloadFragmentDoc: DocumentNode<ProjectSearchPayloadFragment, unknown>;
14891
+ export declare const ProjectSearchResultConnectionFragmentDoc: DocumentNode<ProjectSearchResultConnectionFragment, unknown>;
13903
14892
  export declare const ProjectUpdateFragmentDoc: DocumentNode<ProjectUpdateFragment, unknown>;
13904
14893
  export declare const ProjectUpdateConnectionFragmentDoc: DocumentNode<ProjectUpdateConnectionFragment, unknown>;
13905
14894
  export declare const ProjectUpdateInteractionFragmentDoc: DocumentNode<ProjectUpdateInteractionFragment, unknown>;
@@ -14095,6 +15084,12 @@ export declare const GoogleUserAccountAuthDocument: DocumentNode<GoogleUserAccou
14095
15084
  export declare const ImageUploadFromUrlDocument: DocumentNode<ImageUploadFromUrlMutation, Exact<{
14096
15085
  url: Scalars["String"];
14097
15086
  }>>;
15087
+ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMutation, Exact<{
15088
+ contentType: Scalars["String"];
15089
+ filename: Scalars["String"];
15090
+ metaData?: Maybe<Record<string, unknown>> | undefined;
15091
+ size: Scalars["Int"];
15092
+ }>>;
14098
15093
  export declare const DeleteIntegrationDocument: DocumentNode<DeleteIntegrationMutation, Exact<{
14099
15094
  id: Scalars["String"];
14100
15095
  }>>;
@@ -14221,8 +15216,17 @@ export declare const IssueImportCreateAsanaDocument: DocumentNode<IssueImportCre
14221
15216
  teamId?: Maybe<string> | undefined;
14222
15217
  teamName?: Maybe<string> | undefined;
14223
15218
  }>>;
15219
+ export declare const IssueImportCreateCsvJiraDocument: DocumentNode<IssueImportCreateCsvJiraMutation, Exact<{
15220
+ csvUrl: Scalars["String"];
15221
+ jiraEmail?: Maybe<string> | undefined;
15222
+ jiraHostname?: Maybe<string> | undefined;
15223
+ jiraToken?: Maybe<string> | undefined;
15224
+ organizationId?: Maybe<string> | undefined;
15225
+ teamId?: Maybe<string> | undefined;
15226
+ teamName?: Maybe<string> | undefined;
15227
+ }>>;
14224
15228
  export declare const IssueImportCreateClubhouseDocument: DocumentNode<IssueImportCreateClubhouseMutation, Exact<{
14225
- clubhouseTeamName: Scalars["String"];
15229
+ clubhouseGroupName: Scalars["String"];
14226
15230
  clubhouseToken: Scalars["String"];
14227
15231
  id?: Maybe<string> | undefined;
14228
15232
  includeClosedIssues?: Maybe<boolean> | undefined;
@@ -14517,6 +15521,9 @@ export declare const UserGitHubConnectDocument: DocumentNode<UserGitHubConnectMu
14517
15521
  export declare const UserGoogleCalendarConnectDocument: DocumentNode<UserGoogleCalendarConnectMutation, Exact<{
14518
15522
  code: Scalars["String"];
14519
15523
  }>>;
15524
+ export declare const UserJiraConnectDocument: DocumentNode<UserJiraConnectMutation, Exact<{
15525
+ code: Scalars["String"];
15526
+ }>>;
14520
15527
  export declare const UserPromoteAdminDocument: DocumentNode<UserPromoteAdminMutation, Exact<{
14521
15528
  id: Scalars["String"];
14522
15529
  }>>;
@@ -14579,6 +15586,7 @@ export declare const ProjectMilestoneDocument: DocumentNode<ProjectMilestoneQuer
14579
15586
  export declare const ProjectMilestonesDocument: DocumentNode<ProjectMilestonesQuery, Exact<{
14580
15587
  after?: Maybe<string> | undefined;
14581
15588
  before?: Maybe<string> | undefined;
15589
+ filter?: Maybe<ProjectMilestoneFilter> | undefined;
14582
15590
  first?: Maybe<number> | undefined;
14583
15591
  includeArchived?: Maybe<boolean> | undefined;
14584
15592
  last?: Maybe<number> | undefined;
@@ -14814,17 +15822,6 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
14814
15822
  last?: Maybe<number> | undefined;
14815
15823
  orderBy?: Maybe<PaginationOrderBy> | undefined;
14816
15824
  }>>;
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
15825
  export declare const FavoriteDocument: DocumentNode<FavoriteQuery, Exact<{
14829
15826
  id: Scalars["String"];
14830
15827
  }>>;
@@ -14959,6 +15956,22 @@ export declare const Issue_SubscribersDocument: DocumentNode<Issue_SubscribersQu
14959
15956
  last?: Maybe<number> | undefined;
14960
15957
  orderBy?: Maybe<PaginationOrderBy> | undefined;
14961
15958
  }>>;
15959
+ export declare const IssueFigmaFileKeySearchDocument: DocumentNode<IssueFigmaFileKeySearchQuery, Exact<{
15960
+ after?: Maybe<string> | undefined;
15961
+ before?: Maybe<string> | undefined;
15962
+ fileKey: Scalars["String"];
15963
+ first?: Maybe<number> | undefined;
15964
+ includeArchived?: Maybe<boolean> | undefined;
15965
+ last?: Maybe<number> | undefined;
15966
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
15967
+ }>>;
15968
+ export declare const IssueFilterSuggestionDocument: DocumentNode<IssueFilterSuggestionQuery, Exact<{
15969
+ prompt: Scalars["String"];
15970
+ }>>;
15971
+ export declare const IssueImportCheckCsvDocument: DocumentNode<IssueImportCheckCsvQuery, Exact<{
15972
+ csvUrl: Scalars["String"];
15973
+ service: Scalars["String"];
15974
+ }>>;
14962
15975
  export declare const IssueImportFinishGithubOAuthDocument: DocumentNode<IssueImportFinishGithubOAuthQuery, Exact<{
14963
15976
  code: Scalars["String"];
14964
15977
  }>>;
@@ -15175,9 +16188,6 @@ export declare const OrganizationExistsDocument: DocumentNode<OrganizationExists
15175
16188
  export declare const OrganizationInviteDocument: DocumentNode<OrganizationInviteQuery, Exact<{
15176
16189
  id: Scalars["String"];
15177
16190
  }>>;
15178
- export declare const OrganizationInviteDetailsDocument: DocumentNode<OrganizationInviteDetailsQuery, Exact<{
15179
- id: Scalars["String"];
15180
- }>>;
15181
16191
  export declare const OrganizationInvitesDocument: DocumentNode<OrganizationInvitesQuery, Exact<{
15182
16192
  after?: Maybe<string> | undefined;
15183
16193
  before?: Maybe<string> | undefined;
@@ -15256,6 +16266,9 @@ export declare const Project_TeamsDocument: DocumentNode<Project_TeamsQuery, Exa
15256
16266
  last?: Maybe<number> | undefined;
15257
16267
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15258
16268
  }>>;
16269
+ export declare const ProjectFilterSuggestionDocument: DocumentNode<ProjectFilterSuggestionQuery, Exact<{
16270
+ prompt: Scalars["String"];
16271
+ }>>;
15259
16272
  export declare const ProjectLinkDocument: DocumentNode<ProjectLinkQuery, Exact<{
15260
16273
  id: Scalars["String"];
15261
16274
  }>>;
@@ -15336,6 +16349,62 @@ export declare const RoadmapsDocument: DocumentNode<RoadmapsQuery, Exact<{
15336
16349
  last?: Maybe<number> | undefined;
15337
16350
  orderBy?: Maybe<PaginationOrderBy> | undefined;
15338
16351
  }>>;
16352
+ export declare const SearchDocumentsDocument: DocumentNode<SearchDocumentsQuery, Exact<{
16353
+ after?: Maybe<string> | undefined;
16354
+ before?: Maybe<string> | undefined;
16355
+ first?: Maybe<number> | undefined;
16356
+ includeArchived?: Maybe<boolean> | undefined;
16357
+ last?: Maybe<number> | undefined;
16358
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16359
+ term: Scalars["String"];
16360
+ }>>;
16361
+ export declare const SearchDocuments_ArchivePayloadDocument: DocumentNode<SearchDocuments_ArchivePayloadQuery, Exact<{
16362
+ after?: Maybe<string> | undefined;
16363
+ before?: Maybe<string> | undefined;
16364
+ first?: Maybe<number> | undefined;
16365
+ includeArchived?: Maybe<boolean> | undefined;
16366
+ last?: Maybe<number> | undefined;
16367
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16368
+ term: Scalars["String"];
16369
+ }>>;
16370
+ export declare const SearchIssuesDocument: DocumentNode<SearchIssuesQuery, Exact<{
16371
+ after?: Maybe<string> | undefined;
16372
+ before?: Maybe<string> | undefined;
16373
+ filter?: Maybe<IssueFilter> | undefined;
16374
+ first?: Maybe<number> | undefined;
16375
+ includeArchived?: Maybe<boolean> | undefined;
16376
+ last?: Maybe<number> | undefined;
16377
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16378
+ term: Scalars["String"];
16379
+ }>>;
16380
+ export declare const SearchIssues_ArchivePayloadDocument: DocumentNode<SearchIssues_ArchivePayloadQuery, Exact<{
16381
+ after?: Maybe<string> | undefined;
16382
+ before?: Maybe<string> | undefined;
16383
+ filter?: Maybe<IssueFilter> | undefined;
16384
+ first?: Maybe<number> | undefined;
16385
+ includeArchived?: Maybe<boolean> | undefined;
16386
+ last?: Maybe<number> | undefined;
16387
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16388
+ term: Scalars["String"];
16389
+ }>>;
16390
+ export declare const SearchProjectsDocument: DocumentNode<SearchProjectsQuery, Exact<{
16391
+ after?: Maybe<string> | undefined;
16392
+ before?: Maybe<string> | undefined;
16393
+ first?: Maybe<number> | undefined;
16394
+ includeArchived?: Maybe<boolean> | undefined;
16395
+ last?: Maybe<number> | undefined;
16396
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16397
+ term: Scalars["String"];
16398
+ }>>;
16399
+ export declare const SearchProjects_ArchivePayloadDocument: DocumentNode<SearchProjects_ArchivePayloadQuery, Exact<{
16400
+ after?: Maybe<string> | undefined;
16401
+ before?: Maybe<string> | undefined;
16402
+ first?: Maybe<number> | undefined;
16403
+ includeArchived?: Maybe<boolean> | undefined;
16404
+ last?: Maybe<number> | undefined;
16405
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
16406
+ term: Scalars["String"];
16407
+ }>>;
15339
16408
  export declare const SsoUrlFromEmailDocument: DocumentNode<SsoUrlFromEmailQuery, Exact<{
15340
16409
  email: Scalars["String"];
15341
16410
  isDesktop?: Maybe<boolean> | undefined;