@linear/sdk 1.18.0 → 1.22.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.
@@ -18,14 +18,16 @@ export declare type Scalars = {
18
18
  Boolean: boolean;
19
19
  Int: number;
20
20
  Float: number;
21
- /** The javascript `Date` as string. Type represents date and time as the ISO Date string. */
21
+ /** Represents a date and time in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
22
22
  DateTime: Date;
23
23
  /** The `JSON` scalar type represents JSON values */
24
24
  JSON: Record<string, unknown>;
25
25
  /** The `JSONObject` scalar type represents JSON values as a string */
26
26
  JSONObject: Record<string, unknown>;
27
- /** The `TimelessDateScalar` scalar type represents Date values without a timestamp. It expects strings in the format YYYY-MM-DD */
28
- TimelessDateScalar: string;
27
+ /** Represents a date in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) */
28
+ TimelessDate: any;
29
+ /** A universally unique identifier as specified by RFC 4122. */
30
+ UUID: any;
29
31
  };
30
32
  /** An API key. Grants access to the user's resources. */
31
33
  export declare type ApiKey = Node & {
@@ -113,6 +115,8 @@ export declare type Attachment = Node & {
113
115
  archivedAt?: Maybe<Scalars["DateTime"]>;
114
116
  /** The time at which the entity was created. */
115
117
  createdAt: Scalars["DateTime"];
118
+ /** The creator of the attachment. */
119
+ creator?: Maybe<User>;
116
120
  /** Indicates if attachments for the same source application should be grouped in the Linear UI. */
117
121
  groupBySource: Scalars["Boolean"];
118
122
  /** The unique identifier of the entity. */
@@ -123,6 +127,8 @@ export declare type Attachment = Node & {
123
127
  metadata: Scalars["JSONObject"];
124
128
  /** Information about the source which created the attachment. */
125
129
  source?: Maybe<Scalars["JSONObject"]>;
130
+ /** An accessor helper to source.type, defines the source type of the attachment. */
131
+ sourceType?: Maybe<Scalars["JSONObject"]>;
126
132
  /** Content for the subtitle line in the Linear attachment widget. */
127
133
  subtitle?: Maybe<Scalars["String"]>;
128
134
  /** Content for the title line in the Linear attachment widget. */
@@ -142,6 +148,10 @@ export declare type AttachmentConnection = {
142
148
  pageInfo: PageInfo;
143
149
  };
144
150
  export declare type AttachmentCreateInput = {
151
+ /** Create a linked comment with markdown body. */
152
+ commentBody?: Maybe<Scalars["String"]>;
153
+ /** [Internal] Create a linked comment with Prosemirror body. Please use `commentBody` instead */
154
+ commentBodyData?: Maybe<Scalars["JSONObject"]>;
145
155
  /** Indicates if attachments for the same source application should be grouped in the Linear UI. */
146
156
  groupBySource?: Maybe<Scalars["Boolean"]>;
147
157
  /** An icon url to display with the attachment. Should be of jpg or png format. Maximum of 1MB in size. Dimensions should be 20x20px for optimal display quality. */
@@ -165,6 +175,25 @@ export declare type AttachmentEdge = {
165
175
  cursor: Scalars["String"];
166
176
  node: Attachment;
167
177
  };
178
+ /** [Alpha] Attachment filtering options. */
179
+ export declare type AttachmentFilter = {
180
+ /** Comparator for the created at date. */
181
+ createdAt?: Maybe<DateComparator>;
182
+ /** Filters that the attachments creator must satisfy. */
183
+ creator?: Maybe<NullableUserFilter>;
184
+ /** Comparator for the identifier. */
185
+ id?: Maybe<IdComparator>;
186
+ /** Comparator for the source type. */
187
+ sourceType?: Maybe<NestedStringComparator>;
188
+ /** Comparator for the subtitle. */
189
+ subtitle?: Maybe<NullableStringComparator>;
190
+ /** Comparator for the title. */
191
+ title?: Maybe<StringComparator>;
192
+ /** Comparator for the updated at date. */
193
+ updatedAt?: Maybe<DateComparator>;
194
+ /** Comparator for the url. */
195
+ url?: Maybe<StringComparator>;
196
+ };
168
197
  export declare type AttachmentPayload = {
169
198
  __typename?: "AttachmentPayload";
170
199
  /** The issue attachment that was created. */
@@ -184,6 +213,68 @@ export declare type AttachmentUpdateInput = {
184
213
  /** The attachment title. */
185
214
  title: Scalars["String"];
186
215
  };
216
+ /** Workspace audit log entry object. */
217
+ export declare type AuditEntry = Node & {
218
+ __typename?: "AuditEntry";
219
+ /** The user that caused the audit entry to be created. */
220
+ actor?: Maybe<User>;
221
+ /** The ID of the user that caused the audit entry to be created. */
222
+ actorId?: Maybe<Scalars["String"]>;
223
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
224
+ archivedAt?: Maybe<Scalars["DateTime"]>;
225
+ /** Country code of request resulting to audit entry. */
226
+ countryCode?: Maybe<Scalars["String"]>;
227
+ /** The time at which the entity was created. */
228
+ createdAt: Scalars["DateTime"];
229
+ /** The unique identifier of the entity. */
230
+ id: Scalars["ID"];
231
+ /** IP from actor when entry was recorded. */
232
+ ip?: Maybe<Scalars["String"]>;
233
+ /** Additional metadata related to the audit entry. */
234
+ metadata?: Maybe<Scalars["JSONObject"]>;
235
+ type: Scalars["String"];
236
+ /**
237
+ * The last time at which the entity was updated. This is the same as the creation time if the
238
+ * entity hasn't been update after creation.
239
+ */
240
+ updatedAt: Scalars["DateTime"];
241
+ };
242
+ export declare type AuditEntryConnection = {
243
+ __typename?: "AuditEntryConnection";
244
+ edges: Array<AuditEntryEdge>;
245
+ nodes: Array<AuditEntry>;
246
+ pageInfo: PageInfo;
247
+ };
248
+ export declare type AuditEntryEdge = {
249
+ __typename?: "AuditEntryEdge";
250
+ /** Used in `before` and `after` args */
251
+ cursor: Scalars["String"];
252
+ node: AuditEntry;
253
+ };
254
+ /** [Alpha] Audit entry filtering options. */
255
+ export declare type AuditEntryFilter = {
256
+ /** Filters that the audit entry actor must satisfy. */
257
+ actor?: Maybe<NullableUserFilter>;
258
+ /** Comparator for the country code. */
259
+ countryCode?: Maybe<StringComparator>;
260
+ /** Comparator for the created at date. */
261
+ createdAt?: Maybe<DateComparator>;
262
+ /** Comparator for the identifier. */
263
+ id?: Maybe<IdComparator>;
264
+ /** Comparator for the IP address. */
265
+ ip?: Maybe<StringComparator>;
266
+ /** Comparator for the type. */
267
+ type?: Maybe<StringComparator>;
268
+ /** Comparator for the updated at date. */
269
+ updatedAt?: Maybe<DateComparator>;
270
+ };
271
+ export declare type AuditEntryType = {
272
+ __typename?: "AuditEntryType";
273
+ /** Description of the audit entry type. */
274
+ description: Scalars["String"];
275
+ /** The audit entry type. */
276
+ type: Scalars["String"];
277
+ };
187
278
  export declare type AuthResolverResponse = {
188
279
  __typename?: "AuthResolverResponse";
189
280
  /** Should the signup flow allow access for the domain. */
@@ -220,6 +311,17 @@ export declare type AuthorizedApplication = {
220
311
  name: Scalars["String"];
221
312
  /** Scopes that are authorized for this application for a given user. */
222
313
  scope: Array<Scalars["String"]>;
314
+ /** Whether or not webhooks are enabled for the application. */
315
+ webhooksEnabled: Scalars["Boolean"];
316
+ };
317
+ /** Relation load request. */
318
+ export declare type BatchRequest = {
319
+ /** The indexed key to load models for. */
320
+ indexedKey: Scalars["String"];
321
+ /** The value of the indexed key to load models for. */
322
+ keyValue: Scalars["String"];
323
+ /** The class name of the model to load. */
324
+ modelClass: Scalars["String"];
223
325
  };
224
326
  export declare type BillingDetailsPayload = {
225
327
  __typename?: "BillingDetailsPayload";
@@ -243,6 +345,11 @@ export declare type BillingEmailUpdateInput = {
243
345
  /** The email address to which to send invoices. */
244
346
  email: Scalars["String"];
245
347
  };
348
+ /** Comparator for booleans. */
349
+ export declare type BooleanComparator = {
350
+ /** Equals constraint. */
351
+ eq?: Maybe<Scalars["Boolean"]>;
352
+ };
246
353
  export declare type Card = {
247
354
  __typename?: "Card";
248
355
  /** The brand of the card, e.g. Visa. */
@@ -292,6 +399,29 @@ export declare type Comment = Node & {
292
399
  /** The user who wrote the comment. */
293
400
  user: User;
294
401
  };
402
+ /** [Alpha] Comment filtering options. */
403
+ export declare type CommentCollectionFilter = {
404
+ /** Compound filters, all of which need to be matched by the comment. */
405
+ and?: Maybe<Array<CommentFilter>>;
406
+ /** Comparator for the comments body. */
407
+ body?: Maybe<StringComparator>;
408
+ /** Comparator for the created at date. */
409
+ createdAt?: Maybe<DateComparator>;
410
+ /** Filters that needs to be matched by all comments. */
411
+ every?: Maybe<CommentFilter>;
412
+ /** Comparator for the identifier. */
413
+ id?: Maybe<IdComparator>;
414
+ /** Filters that the comments issue must satisfy. */
415
+ issue?: Maybe<IssueFilter>;
416
+ /** Compound filters, one of which need to be matched by the comment. */
417
+ or?: Maybe<Array<CommentFilter>>;
418
+ /** Filters that needs to be matched by some comments. */
419
+ some?: Maybe<CommentFilter>;
420
+ /** Comparator for the updated at date. */
421
+ updatedAt?: Maybe<DateComparator>;
422
+ /** Filters that the comments creator must satisfy. */
423
+ user?: Maybe<UserFilter>;
424
+ };
295
425
  export declare type CommentConnection = {
296
426
  __typename?: "CommentConnection";
297
427
  edges: Array<CommentEdge>;
@@ -314,6 +444,25 @@ export declare type CommentEdge = {
314
444
  cursor: Scalars["String"];
315
445
  node: Comment;
316
446
  };
447
+ /** [Alpha] Comment filtering options. */
448
+ export declare type CommentFilter = {
449
+ /** Compound filters, all of which need to be matched by the comment. */
450
+ and?: Maybe<Array<CommentFilter>>;
451
+ /** Comparator for the comments body. */
452
+ body?: Maybe<StringComparator>;
453
+ /** Comparator for the created at date. */
454
+ createdAt?: Maybe<DateComparator>;
455
+ /** Comparator for the identifier. */
456
+ id?: Maybe<IdComparator>;
457
+ /** Filters that the comments issue must satisfy. */
458
+ issue?: Maybe<IssueFilter>;
459
+ /** Compound filters, one of which need to be matched by the comment. */
460
+ or?: Maybe<Array<CommentFilter>>;
461
+ /** Comparator for the updated at date. */
462
+ updatedAt?: Maybe<DateComparator>;
463
+ /** Filters that the comments creator must satisfy. */
464
+ user?: Maybe<UserFilter>;
465
+ };
317
466
  export declare type CommentPayload = {
318
467
  __typename?: "CommentPayload";
319
468
  /** The comment that was created or updated. */
@@ -394,7 +543,12 @@ export declare type CustomView = Node & {
394
543
  creator: User;
395
544
  /** The description of the custom view. */
396
545
  description?: Maybe<Scalars["String"]>;
397
- /** The filters applied to issues in the custom view. */
546
+ /** [Alpha] The filter applied to issues in the custom view. */
547
+ filterData: Scalars["JSONObject"];
548
+ /**
549
+ * The filters applied to issues in the custom view.
550
+ * @deprecated Will be replaced by `filterData` in a future update
551
+ */
398
552
  filters: Scalars["JSONObject"];
399
553
  /** The icon of the custom view. */
400
554
  icon?: Maybe<Scalars["String"]>;
@@ -425,6 +579,8 @@ export declare type CustomViewCreateInput = {
425
579
  color?: Maybe<Scalars["String"]>;
426
580
  /** The description of the custom view. */
427
581
  description?: Maybe<Scalars["String"]>;
582
+ /** The filter applied to issues in the custom view. */
583
+ filterData?: Maybe<Scalars["JSONObject"]>;
428
584
  /** The filters applied to issues in the custom view. */
429
585
  filters?: Maybe<Scalars["JSONObject"]>;
430
586
  /** The icon of the custom view. */
@@ -458,6 +614,8 @@ export declare type CustomViewUpdateInput = {
458
614
  color?: Maybe<Scalars["String"]>;
459
615
  /** The description of the custom view. */
460
616
  description?: Maybe<Scalars["String"]>;
617
+ /** The filter applied to issues in the custom view. */
618
+ filterData?: Maybe<Scalars["JSONObject"]>;
461
619
  /** The filters applied to issues in the custom view. */
462
620
  filters?: Maybe<Scalars["JSONObject"]>;
463
621
  /** The icon of the custom view. */
@@ -516,6 +674,7 @@ export declare type Cycle = Node & {
516
674
  export declare type CycleIssuesArgs = {
517
675
  after?: Maybe<Scalars["String"]>;
518
676
  before?: Maybe<Scalars["String"]>;
677
+ filter?: Maybe<IssueFilter>;
519
678
  first?: Maybe<Scalars["Int"]>;
520
679
  includeArchived?: Maybe<Scalars["Boolean"]>;
521
680
  last?: Maybe<Scalars["Int"]>;
@@ -525,6 +684,7 @@ export declare type CycleIssuesArgs = {
525
684
  export declare type CycleUncompletedIssuesUponCloseArgs = {
526
685
  after?: Maybe<Scalars["String"]>;
527
686
  before?: Maybe<Scalars["String"]>;
687
+ filter?: Maybe<IssueFilter>;
528
688
  first?: Maybe<Scalars["Int"]>;
529
689
  includeArchived?: Maybe<Scalars["Boolean"]>;
530
690
  last?: Maybe<Scalars["Int"]>;
@@ -556,6 +716,33 @@ export declare type CycleEdge = {
556
716
  cursor: Scalars["String"];
557
717
  node: Cycle;
558
718
  };
719
+ /** [Alpha] Project filtering options. */
720
+ export declare type CycleFilter = {
721
+ /** Compound filters, all of which need to be matched by the cycle. */
722
+ and?: Maybe<Array<CycleFilter>>;
723
+ /** Comparator for the cycle completed at date. */
724
+ completedAt?: Maybe<DateComparator>;
725
+ /** Comparator for the created at date. */
726
+ createdAt?: Maybe<DateComparator>;
727
+ /** Comparator for the cycle ends at date. */
728
+ endsAt?: Maybe<DateComparator>;
729
+ /** Comparator for the identifier. */
730
+ id?: Maybe<IdComparator>;
731
+ /** Filters that the cycles issues must satisfy. */
732
+ issues?: Maybe<IssueCollectionFilter>;
733
+ /** Comparator for the cycle name. */
734
+ name?: Maybe<StringComparator>;
735
+ /** Comparator for the cycle number. */
736
+ number?: Maybe<NumberComparator>;
737
+ /** Compound filters, one of which need to be matched by the cycle. */
738
+ or?: Maybe<Array<CycleFilter>>;
739
+ /** Comparator for the cycle start date. */
740
+ startsAt?: Maybe<DateComparator>;
741
+ /** Filters that the cycles team must satisfy. */
742
+ team?: Maybe<TeamFilter>;
743
+ /** Comparator for the updated at date. */
744
+ updatedAt?: Maybe<DateComparator>;
745
+ };
559
746
  export declare type CyclePayload = {
560
747
  __typename?: "CyclePayload";
561
748
  /** The Cycle that was created or updated. */
@@ -575,6 +762,25 @@ export declare type CycleUpdateInput = {
575
762
  /** The start date of the cycle. */
576
763
  startsAt?: Maybe<Scalars["DateTime"]>;
577
764
  };
765
+ /** Comparator for dates. */
766
+ export declare type DateComparator = {
767
+ /** Equals constraint. */
768
+ eq?: Maybe<Scalars["DateTime"]>;
769
+ /** Greater-than constraint. Matches any values that are greater than the given value. */
770
+ gt?: Maybe<Scalars["DateTime"]>;
771
+ /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
772
+ gte?: Maybe<Scalars["DateTime"]>;
773
+ /** In-array constraint. */
774
+ in?: Maybe<Array<Scalars["DateTime"]>>;
775
+ /** Less-than constraint. Matches any values that are less than the given value. */
776
+ lt?: Maybe<Scalars["DateTime"]>;
777
+ /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
778
+ lte?: Maybe<Scalars["DateTime"]>;
779
+ /** Not-equals constraint. */
780
+ neq?: Maybe<Scalars["DateTime"]>;
781
+ /** Not-in-array constraint. */
782
+ nin?: Maybe<Array<Scalars["DateTime"]>>;
783
+ };
578
784
  export declare type DebugPayload = {
579
785
  __typename?: "DebugPayload";
580
786
  /** Whether the operation was successful. */
@@ -587,9 +793,79 @@ export declare type DeleteOrganizationInput = {
587
793
  /** Contains the requested dependencies. */
588
794
  export declare type DependencyResponse = {
589
795
  __typename?: "DependencyResponse";
590
- /** A JSON serialized collection of model objects loaded from the archive */
796
+ /** A JSON serialized collection of dependencies. */
591
797
  dependencies: Scalars["String"];
592
798
  };
799
+ /** A document for a project. */
800
+ export declare type Document = Node & {
801
+ __typename?: "Document";
802
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
803
+ archivedAt?: Maybe<Scalars["DateTime"]>;
804
+ /** The color of the icon. */
805
+ color?: Maybe<Scalars["String"]>;
806
+ /** The document content in markdown format. */
807
+ content?: Maybe<Scalars["String"]>;
808
+ /** The document content as JSON. */
809
+ contentData?: Maybe<Scalars["JSONObject"]>;
810
+ /** The time at which the entity was created. */
811
+ createdAt: Scalars["DateTime"];
812
+ /** The user who created the document. */
813
+ creator: User;
814
+ /** The icon of the document. */
815
+ icon?: Maybe<Scalars["String"]>;
816
+ /** The unique identifier of the entity. */
817
+ id: Scalars["ID"];
818
+ /** The project that the document is associated with. */
819
+ project: Project;
820
+ /** The document's unique URL slug. */
821
+ slugId: Scalars["String"];
822
+ /** The document title. */
823
+ title: Scalars["String"];
824
+ /**
825
+ * The last time at which the entity was updated. This is the same as the creation time if the
826
+ * entity hasn't been update after creation.
827
+ */
828
+ updatedAt: Scalars["DateTime"];
829
+ /** The user who last updated the document. */
830
+ updatedBy: User;
831
+ };
832
+ export declare type DocumentConnection = {
833
+ __typename?: "DocumentConnection";
834
+ edges: Array<DocumentEdge>;
835
+ nodes: Array<Document>;
836
+ pageInfo: PageInfo;
837
+ };
838
+ export declare type DocumentCreateInput = {
839
+ /** The color of the icon. */
840
+ color?: Maybe<Scalars["String"]>;
841
+ /** The document content as markdown. */
842
+ content?: Maybe<Scalars["String"]>;
843
+ /** [Internal] The document content as a Prosemirror document. */
844
+ contentData?: Maybe<Scalars["JSONObject"]>;
845
+ /** The icon of the document. */
846
+ icon?: Maybe<Scalars["String"]>;
847
+ /** The identifier. If none is provided, the backend will generate one. */
848
+ id?: Maybe<Scalars["String"]>;
849
+ /** Related project for the document. */
850
+ projectId: Scalars["String"];
851
+ /** The title of the document. */
852
+ title: Scalars["String"];
853
+ };
854
+ export declare type DocumentEdge = {
855
+ __typename?: "DocumentEdge";
856
+ /** Used in `before` and `after` args */
857
+ cursor: Scalars["String"];
858
+ node: Document;
859
+ };
860
+ export declare type DocumentPayload = {
861
+ __typename?: "DocumentPayload";
862
+ /** The document that was created or updated. */
863
+ document: Document;
864
+ /** The identifier of the last sync operation. */
865
+ lastSyncId: Scalars["Float"];
866
+ /** Whether the operation was successful. */
867
+ success: Scalars["Boolean"];
868
+ };
593
869
  /** Collaborative editing steps for documents. */
594
870
  export declare type DocumentStep = Node & {
595
871
  __typename?: "DocumentStep";
@@ -611,6 +887,66 @@ export declare type DocumentStep = Node & {
611
887
  /** Step version. */
612
888
  version: Scalars["Float"];
613
889
  };
890
+ export declare type DocumentUpdateInput = {
891
+ /** The color of the icon. */
892
+ color?: Maybe<Scalars["String"]>;
893
+ /** The document content as markdown. */
894
+ content?: Maybe<Scalars["String"]>;
895
+ /** [Internal] The document content as a Prosemirror document. */
896
+ contentData?: Maybe<Scalars["JSONObject"]>;
897
+ /** The icon of the document. */
898
+ icon?: Maybe<Scalars["String"]>;
899
+ /** Related project for the document. */
900
+ projectId?: Maybe<Scalars["String"]>;
901
+ /** The title of the document. */
902
+ title?: Maybe<Scalars["String"]>;
903
+ };
904
+ /** A version of a document. */
905
+ export declare type DocumentVersion = Node & {
906
+ __typename?: "DocumentVersion";
907
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
908
+ archivedAt?: Maybe<Scalars["DateTime"]>;
909
+ /** The document's content in markdown format. */
910
+ content?: Maybe<Scalars["String"]>;
911
+ /** The time at which the entity was created. */
912
+ createdAt: Scalars["DateTime"];
913
+ /** The user who created the version. */
914
+ creator: User;
915
+ /** The unique identifier of the entity. */
916
+ id: Scalars["ID"];
917
+ /** The project that the document is associated with. */
918
+ project: Project;
919
+ /** The version revision number. */
920
+ revision: Scalars["Float"];
921
+ /** The document's title. */
922
+ title: Scalars["String"];
923
+ /**
924
+ * The last time at which the entity was updated. This is the same as the creation time if the
925
+ * entity hasn't been update after creation.
926
+ */
927
+ updatedAt: Scalars["DateTime"];
928
+ };
929
+ export declare type DocumentVersionConnection = {
930
+ __typename?: "DocumentVersionConnection";
931
+ edges: Array<DocumentVersionEdge>;
932
+ nodes: Array<DocumentVersion>;
933
+ pageInfo: PageInfo;
934
+ };
935
+ export declare type DocumentVersionEdge = {
936
+ __typename?: "DocumentVersionEdge";
937
+ /** Used in `before` and `after` args */
938
+ cursor: Scalars["String"];
939
+ node: DocumentVersion;
940
+ };
941
+ export declare type EmailSubscribeInput = {
942
+ /** Email to subscribe. */
943
+ email: Scalars["String"];
944
+ };
945
+ export declare type EmailSubscribePayload = {
946
+ __typename?: "EmailSubscribePayload";
947
+ /** Whether the operation was successful. */
948
+ success: Scalars["Boolean"];
949
+ };
614
950
  export declare type EmailUnsubscribeInput = {
615
951
  /** The user's email validation token. */
616
952
  token: Scalars["String"];
@@ -717,20 +1053,30 @@ export declare type Favorite = Node & {
717
1053
  __typename?: "Favorite";
718
1054
  /** The time at which the entity was archived. Null if the entity has not been archived. */
719
1055
  archivedAt?: Maybe<Scalars["DateTime"]>;
1056
+ /** Children of the favorite. Only applies to favorites of type folder. */
1057
+ children: FavoriteConnection;
720
1058
  /** The time at which the entity was created. */
721
1059
  createdAt: Scalars["DateTime"];
722
- /** Favorited cycle. */
1060
+ /** The favorited custom view. */
1061
+ customView?: Maybe<CustomView>;
1062
+ /** The favorited cycle. */
723
1063
  cycle?: Maybe<Cycle>;
1064
+ /** The favorited document. */
1065
+ document?: Maybe<Document>;
1066
+ /** The name of the folder. Only applies to favorites of type folder. */
1067
+ folderName?: Maybe<Scalars["String"]>;
724
1068
  /** The unique identifier of the entity. */
725
1069
  id: Scalars["ID"];
726
- /** Favorited issue. */
1070
+ /** The favorited issue. */
727
1071
  issue?: Maybe<Issue>;
728
- /** Favorited issue label. */
1072
+ /** The favorited label. */
729
1073
  label?: Maybe<IssueLabel>;
730
- /** Favorited project. */
1074
+ /** The parent folder of the favorite. */
1075
+ parent?: Maybe<Favorite>;
1076
+ /** The favorited project. */
731
1077
  project?: Maybe<Project>;
732
- /** Favorited project team. */
733
- projectTeam?: Maybe<Project>;
1078
+ /** The favorited team of the project. */
1079
+ projectTeam?: Maybe<Team>;
734
1080
  /** The order of the item in the favorites list. */
735
1081
  sortOrder: Scalars["Float"];
736
1082
  /** The type of the favorite. */
@@ -743,6 +1089,15 @@ export declare type Favorite = Node & {
743
1089
  /** The owner of the favorite. */
744
1090
  user: User;
745
1091
  };
1092
+ /** User favorites presented in the sidebar. */
1093
+ export declare type FavoriteChildrenArgs = {
1094
+ after?: Maybe<Scalars["String"]>;
1095
+ before?: Maybe<Scalars["String"]>;
1096
+ first?: Maybe<Scalars["Int"]>;
1097
+ includeArchived?: Maybe<Scalars["Boolean"]>;
1098
+ last?: Maybe<Scalars["Int"]>;
1099
+ orderBy?: Maybe<PaginationOrderBy>;
1100
+ };
746
1101
  export declare type FavoriteConnection = {
747
1102
  __typename?: "FavoriteConnection";
748
1103
  edges: Array<FavoriteEdge>;
@@ -754,12 +1109,18 @@ export declare type FavoriteCreateInput = {
754
1109
  customViewId?: Maybe<Scalars["String"]>;
755
1110
  /** The identifier of the cycle to favorite. */
756
1111
  cycleId?: Maybe<Scalars["String"]>;
1112
+ /** The identifier of the document to favorite. */
1113
+ documentId?: Maybe<Scalars["String"]>;
1114
+ /** The name of the favorite folder. */
1115
+ folderName?: Maybe<Scalars["String"]>;
757
1116
  /** The identifier. If none is provided, the backend will generate one. */
758
1117
  id?: Maybe<Scalars["String"]>;
759
1118
  /** The identifier of the issue to favorite. */
760
1119
  issueId?: Maybe<Scalars["String"]>;
761
1120
  /** The identifier of the label to favorite. */
762
1121
  labelId?: Maybe<Scalars["String"]>;
1122
+ /** The parent folder of the favorite. */
1123
+ parentId?: Maybe<Scalars["String"]>;
763
1124
  /** The identifier of the project to favorite. */
764
1125
  projectId?: Maybe<Scalars["String"]>;
765
1126
  /** The identifier of the project team to favorite. */
@@ -783,6 +1144,8 @@ export declare type FavoritePayload = {
783
1144
  success: Scalars["Boolean"];
784
1145
  };
785
1146
  export declare type FavoriteUpdateInput = {
1147
+ /** The id of the folder to move the favorite under. */
1148
+ parentId?: Maybe<Scalars["String"]>;
786
1149
  /** The position of the item in the favorites list. */
787
1150
  sortOrder?: Maybe<Scalars["Float"]>;
788
1151
  };
@@ -816,6 +1179,24 @@ export declare type FigmaEmbedPayload = {
816
1179
  /** Whether the operation was successful. */
817
1180
  success: Scalars["Boolean"];
818
1181
  };
1182
+ export declare type FrontAttachmentPayload = {
1183
+ __typename?: "FrontAttachmentPayload";
1184
+ /** The identifier of the last sync operation. */
1185
+ lastSyncId: Scalars["Float"];
1186
+ /** Whether the operation was successful. */
1187
+ success: Scalars["Boolean"];
1188
+ };
1189
+ export declare type GitHubCommitIntegrationPayload = {
1190
+ __typename?: "GitHubCommitIntegrationPayload";
1191
+ /** The integration that was created or updated. */
1192
+ integration?: Maybe<Integration>;
1193
+ /** The identifier of the last sync operation. */
1194
+ lastSyncId: Scalars["Float"];
1195
+ /** Whether the operation was successful. */
1196
+ success: Scalars["Boolean"];
1197
+ /** The webhook secret to provide to GitHub. */
1198
+ webhookSecret: Scalars["String"];
1199
+ };
819
1200
  /** GitHub OAuth token, plus information about the organizations the user is a member of. */
820
1201
  export declare type GithubOAuthTokenPayload = {
821
1202
  __typename?: "GithubOAuthTokenPayload";
@@ -852,6 +1233,12 @@ export declare type GoogleSheetsSettings = {
852
1233
  spreadsheetUrl: Scalars["String"];
853
1234
  updatedIssuesAt: Scalars["DateTime"];
854
1235
  };
1236
+ export declare type GoogleSheetsSettingsInput = {
1237
+ sheetId: Scalars["Float"];
1238
+ spreadsheetId: Scalars["String"];
1239
+ spreadsheetUrl: Scalars["String"];
1240
+ updatedIssuesAt: Scalars["DateTime"];
1241
+ };
855
1242
  export declare type GoogleUserAccountAuthInput = {
856
1243
  /** Code returned from Google's OAuth flow. */
857
1244
  code: Scalars["String"];
@@ -864,6 +1251,17 @@ export declare type GoogleUserAccountAuthInput = {
864
1251
  /** The timezone of the user's browser. */
865
1252
  timezone: Scalars["String"];
866
1253
  };
1254
+ /** Comparator for identifiers. */
1255
+ export declare type IdComparator = {
1256
+ /** Equals constraint. */
1257
+ eq?: Maybe<Scalars["ID"]>;
1258
+ /** In-array constraint. */
1259
+ in?: Maybe<Array<Scalars["ID"]>>;
1260
+ /** Not-equals constraint. */
1261
+ neq?: Maybe<Scalars["ID"]>;
1262
+ /** Not-in-array constraint. */
1263
+ nin?: Maybe<Array<Scalars["ID"]>>;
1264
+ };
867
1265
  export declare type ImageUploadFromUrlPayload = {
868
1266
  __typename?: "ImageUploadFromUrlPayload";
869
1267
  /** The identifier of the last sync operation. */
@@ -973,11 +1371,21 @@ export declare type IntegrationSettings = {
973
1371
  __typename?: "IntegrationSettings";
974
1372
  googleSheets?: Maybe<GoogleSheetsSettings>;
975
1373
  intercom?: Maybe<IntercomSettings>;
1374
+ jira?: Maybe<JiraSettings>;
976
1375
  sentry?: Maybe<SentrySettings>;
977
1376
  slackPost?: Maybe<SlackPostSettings>;
978
1377
  slackProjectPost?: Maybe<SlackPostSettings>;
979
1378
  zendesk?: Maybe<ZendeskSettings>;
980
1379
  };
1380
+ export declare type IntegrationSettingsInput = {
1381
+ googleSheets?: Maybe<GoogleSheetsSettingsInput>;
1382
+ intercom?: Maybe<IntercomSettingsInput>;
1383
+ jira?: Maybe<JiraSettingsInput>;
1384
+ sentry?: Maybe<SentrySettingsInput>;
1385
+ slackPost?: Maybe<SlackPostSettingsInput>;
1386
+ slackProjectPost?: Maybe<SlackPostSettingsInput>;
1387
+ zendesk?: Maybe<ZendeskSettingsInput>;
1388
+ };
981
1389
  /** Intercom specific settings. */
982
1390
  export declare type IntercomSettings = {
983
1391
  __typename?: "IntercomSettings";
@@ -992,38 +1400,12 @@ export declare type IntercomSettingsInput = {
992
1400
  /** Whether an internal message should be added when a Linear issue changes status (for status types except completed or canceled). */
993
1401
  sendNoteOnStatusChange?: Maybe<Scalars["Boolean"]>;
994
1402
  };
995
- export declare type InviteData = {
996
- __typename?: "InviteData";
997
- /** Avatar URLs for the invitees. */
998
- avatarURLs: Array<Scalars["String"]>;
999
- /** The name of the inviter. */
1000
- inviterName: Scalars["String"];
1001
- /** The domain of the organization the users were invited to. */
1002
- organizationDomain: Scalars["String"];
1003
- /** The logo of the organization the users were invited to. */
1004
- organizationLogoUrl?: Maybe<Scalars["String"]>;
1005
- /** The name of the organization the users were invited to. */
1006
- organizationName: Scalars["String"];
1007
- /** Team identifiers for the invitees. */
1008
- teamIds: Array<Scalars["String"]>;
1009
- /** Team names for the invitees. */
1010
- teamNames: Array<Scalars["String"]>;
1011
- /** The user count of the organization. */
1012
- userCount: Scalars["Float"];
1013
- };
1014
- export declare type InvitePagePayload = {
1015
- __typename?: "InvitePagePayload";
1016
- /** Invite data. */
1017
- inviteData?: Maybe<InviteData>;
1018
- /** Whether the operation was successful. */
1019
- success: Scalars["Boolean"];
1020
- };
1021
1403
  export declare type Invoice = {
1022
1404
  __typename?: "Invoice";
1023
1405
  /** The creation date of the invoice. */
1024
1406
  created: Scalars["DateTime"];
1025
1407
  /** The due date of the invoice. */
1026
- dueDate?: Maybe<Scalars["TimelessDateScalar"]>;
1408
+ dueDate?: Maybe<Scalars["TimelessDate"]>;
1027
1409
  /** The status of the invoice. */
1028
1410
  status: Scalars["String"];
1029
1411
  /** The invoice total, in cents. */
@@ -1044,7 +1426,10 @@ export declare type Issue = Node & {
1044
1426
  autoArchivedAt?: Maybe<Scalars["DateTime"]>;
1045
1427
  /** The time at which the issue was automatically closed by the auto pruning process. */
1046
1428
  autoClosedAt?: Maybe<Scalars["DateTime"]>;
1047
- /** The order of the item in its column on the board. */
1429
+ /**
1430
+ * The order of the item in its column on the board.
1431
+ * @deprecated Will be removed in near future, please use `sortOrder` instead
1432
+ */
1048
1433
  boardOrder: Scalars["Float"];
1049
1434
  /** Suggested branch name for the issue. */
1050
1435
  branchName: Scalars["String"];
@@ -1067,7 +1452,7 @@ export declare type Issue = Node & {
1067
1452
  /** The issue's description in markdown format. */
1068
1453
  description?: Maybe<Scalars["String"]>;
1069
1454
  /** The date at which the issue is due. */
1070
- dueDate?: Maybe<Scalars["TimelessDateScalar"]>;
1455
+ dueDate?: Maybe<Scalars["TimelessDate"]>;
1071
1456
  /** The estimate of the complexity of the issue.. */
1072
1457
  estimate?: Maybe<Scalars["Float"]>;
1073
1458
  /** History entries associated with the issue. */
@@ -1100,6 +1485,8 @@ export declare type Issue = Node & {
1100
1485
  snoozedBy?: Maybe<User>;
1101
1486
  /** The time until an issue will be snoozed in Triage view. */
1102
1487
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
1488
+ /** The order of the item in relation to other items in the organization. */
1489
+ sortOrder: Scalars["Float"];
1103
1490
  /** The time at which the issue was moved into started state. */
1104
1491
  startedAt?: Maybe<Scalars["DateTime"]>;
1105
1492
  /** The workflow state that the issue is associated with. */
@@ -1126,6 +1513,7 @@ export declare type Issue = Node & {
1126
1513
  export declare type IssueAttachmentsArgs = {
1127
1514
  after?: Maybe<Scalars["String"]>;
1128
1515
  before?: Maybe<Scalars["String"]>;
1516
+ filter?: Maybe<AttachmentFilter>;
1129
1517
  first?: Maybe<Scalars["Int"]>;
1130
1518
  includeArchived?: Maybe<Scalars["Boolean"]>;
1131
1519
  last?: Maybe<Scalars["Int"]>;
@@ -1135,6 +1523,7 @@ export declare type IssueAttachmentsArgs = {
1135
1523
  export declare type IssueChildrenArgs = {
1136
1524
  after?: Maybe<Scalars["String"]>;
1137
1525
  before?: Maybe<Scalars["String"]>;
1526
+ filter?: Maybe<IssueFilter>;
1138
1527
  first?: Maybe<Scalars["Int"]>;
1139
1528
  includeArchived?: Maybe<Scalars["Boolean"]>;
1140
1529
  last?: Maybe<Scalars["Int"]>;
@@ -1144,6 +1533,7 @@ export declare type IssueChildrenArgs = {
1144
1533
  export declare type IssueCommentsArgs = {
1145
1534
  after?: Maybe<Scalars["String"]>;
1146
1535
  before?: Maybe<Scalars["String"]>;
1536
+ filter?: Maybe<CommentFilter>;
1147
1537
  first?: Maybe<Scalars["Int"]>;
1148
1538
  includeArchived?: Maybe<Scalars["Boolean"]>;
1149
1539
  last?: Maybe<Scalars["Int"]>;
@@ -1180,6 +1570,7 @@ export declare type IssueInverseRelationsArgs = {
1180
1570
  export declare type IssueLabelsArgs = {
1181
1571
  after?: Maybe<Scalars["String"]>;
1182
1572
  before?: Maybe<Scalars["String"]>;
1573
+ filter?: Maybe<IssueLabelFilter>;
1183
1574
  first?: Maybe<Scalars["Int"]>;
1184
1575
  includeArchived?: Maybe<Scalars["Boolean"]>;
1185
1576
  last?: Maybe<Scalars["Int"]>;
@@ -1198,12 +1589,85 @@ export declare type IssueRelationsArgs = {
1198
1589
  export declare type IssueSubscribersArgs = {
1199
1590
  after?: Maybe<Scalars["String"]>;
1200
1591
  before?: Maybe<Scalars["String"]>;
1592
+ filter?: Maybe<UserFilter>;
1201
1593
  first?: Maybe<Scalars["Int"]>;
1202
1594
  includeArchived?: Maybe<Scalars["Boolean"]>;
1203
1595
  includeDisabled?: Maybe<Scalars["Boolean"]>;
1204
1596
  last?: Maybe<Scalars["Int"]>;
1205
1597
  orderBy?: Maybe<PaginationOrderBy>;
1206
1598
  };
1599
+ export declare type IssueBatchPayload = {
1600
+ __typename?: "IssueBatchPayload";
1601
+ /** The issues that were updated. */
1602
+ issues: Array<Issue>;
1603
+ /** The identifier of the last sync operation. */
1604
+ lastSyncId: Scalars["Float"];
1605
+ /** Whether the operation was successful. */
1606
+ success: Scalars["Boolean"];
1607
+ };
1608
+ /** [Alpha] Issue filtering options. */
1609
+ export declare type IssueCollectionFilter = {
1610
+ /** Compound filters, all of which need to be matched by the issue. */
1611
+ and?: Maybe<Array<IssueFilter>>;
1612
+ /** Filters that the issues assignee must satisfy. */
1613
+ assignee?: Maybe<NullableUserFilter>;
1614
+ /** Filters that the issues attachments must satisfy. */
1615
+ attachments?: Maybe<AttachmentFilter>;
1616
+ /** Comparator for the issues auto archived at date. */
1617
+ autoArchivedAt?: Maybe<NullableDateComparator>;
1618
+ /** Comparator for the issues auto closed at date. */
1619
+ autoClosedAt?: Maybe<NullableDateComparator>;
1620
+ /** Comparator for the issues canceled at date. */
1621
+ canceledAt?: Maybe<NullableDateComparator>;
1622
+ /** Filters that the child issues must satisfy. */
1623
+ children?: Maybe<IssueCollectionFilter>;
1624
+ /** Filters that the issues comments must satisfy. */
1625
+ comments?: Maybe<CommentCollectionFilter>;
1626
+ /** Comparator for the issues completed at date. */
1627
+ completedAt?: Maybe<NullableDateComparator>;
1628
+ /** Comparator for the created at date. */
1629
+ createdAt?: Maybe<DateComparator>;
1630
+ /** Filters that the issues creator must satisfy. */
1631
+ creator?: Maybe<UserFilter>;
1632
+ /** Filters that the issues cycle must satisfy. */
1633
+ cycle?: Maybe<NullableCycleFilter>;
1634
+ /** Comparator for the issues description. */
1635
+ description?: Maybe<NullableStringComparator>;
1636
+ /** Comparator for the issues due date. */
1637
+ dueDate?: Maybe<NullableTimelessDateComparator>;
1638
+ /** Comparator for the issues estimate. */
1639
+ estimate?: Maybe<NumberComparator>;
1640
+ /** Filters that needs to be matched by all issues. */
1641
+ every?: Maybe<IssueFilter>;
1642
+ /** Comparator for the identifier. */
1643
+ id?: Maybe<IdComparator>;
1644
+ /** Filters that issue labels must satisfy. */
1645
+ labels?: Maybe<IssueLabelCollectionFilter>;
1646
+ /** Comparator for the issues number. */
1647
+ number?: Maybe<NumberComparator>;
1648
+ /** Compound filters, one of which need to be matched by the issue. */
1649
+ or?: Maybe<Array<IssueFilter>>;
1650
+ /** Comparator for the issues priority. */
1651
+ priority?: Maybe<NullableNumberComparator>;
1652
+ /** Filters that the issues project must satisfy. */
1653
+ project?: Maybe<NullableProjectFilter>;
1654
+ /** Filters that the issues snoozer must satisfy. */
1655
+ snoozedBy?: Maybe<NullableUserFilter>;
1656
+ /** Comparator for the issues snoozed until date. */
1657
+ snoozedUntilAt?: Maybe<NullableDateComparator>;
1658
+ /** Filters that needs to be matched by some issues. */
1659
+ some?: Maybe<IssueFilter>;
1660
+ /** Comparator for the issues started at date. */
1661
+ startedAt?: Maybe<NullableDateComparator>;
1662
+ /** Filters that the issues state must satisfy. */
1663
+ state?: Maybe<WorkflowStateFilter>;
1664
+ /** Filters that the issues team must satisfy. */
1665
+ team?: Maybe<TeamFilter>;
1666
+ /** Comparator for the issues title. */
1667
+ title?: Maybe<StringComparator>;
1668
+ /** Comparator for the updated at date. */
1669
+ updatedAt?: Maybe<DateComparator>;
1670
+ };
1207
1671
  export declare type IssueConnection = {
1208
1672
  __typename?: "IssueConnection";
1209
1673
  edges: Array<IssueEdge>;
@@ -1222,7 +1686,7 @@ export declare type IssueCreateInput = {
1222
1686
  /** The issue description as a Prosemirror document. */
1223
1687
  descriptionData?: Maybe<Scalars["JSON"]>;
1224
1688
  /** The date at which the issue is due. */
1225
- dueDate?: Maybe<Scalars["TimelessDateScalar"]>;
1689
+ dueDate?: Maybe<Scalars["TimelessDate"]>;
1226
1690
  /** The estimated complexity of the issue. */
1227
1691
  estimate?: Maybe<Scalars["Int"]>;
1228
1692
  /** The identifier. If none is provided, the backend will generate one. */
@@ -1237,6 +1701,8 @@ export declare type IssueCreateInput = {
1237
1701
  projectId?: Maybe<Scalars["String"]>;
1238
1702
  /** The comment the issue is referencing. */
1239
1703
  referenceCommentId?: Maybe<Scalars["String"]>;
1704
+ /** The position of the issue related to other issues. */
1705
+ sortOrder?: Maybe<Scalars["Float"]>;
1240
1706
  /** The team state of the issue. */
1241
1707
  stateId?: Maybe<Scalars["String"]>;
1242
1708
  /** The position of the issue in parent's sub-issue list. */
@@ -1274,6 +1740,65 @@ export declare type IssueEdge = {
1274
1740
  cursor: Scalars["String"];
1275
1741
  node: Issue;
1276
1742
  };
1743
+ /** [Alpha] Issue filtering options. */
1744
+ export declare type IssueFilter = {
1745
+ /** Compound filters, all of which need to be matched by the issue. */
1746
+ and?: Maybe<Array<IssueFilter>>;
1747
+ /** Filters that the issues assignee must satisfy. */
1748
+ assignee?: Maybe<NullableUserFilter>;
1749
+ /** Filters that the issues attachments must satisfy. */
1750
+ attachments?: Maybe<AttachmentFilter>;
1751
+ /** Comparator for the issues auto archived at date. */
1752
+ autoArchivedAt?: Maybe<NullableDateComparator>;
1753
+ /** Comparator for the issues auto closed at date. */
1754
+ autoClosedAt?: Maybe<NullableDateComparator>;
1755
+ /** Comparator for the issues canceled at date. */
1756
+ canceledAt?: Maybe<NullableDateComparator>;
1757
+ /** Filters that the child issues must satisfy. */
1758
+ children?: Maybe<IssueCollectionFilter>;
1759
+ /** Filters that the issues comments must satisfy. */
1760
+ comments?: Maybe<CommentCollectionFilter>;
1761
+ /** Comparator for the issues completed at date. */
1762
+ completedAt?: Maybe<NullableDateComparator>;
1763
+ /** Comparator for the created at date. */
1764
+ createdAt?: Maybe<DateComparator>;
1765
+ /** Filters that the issues creator must satisfy. */
1766
+ creator?: Maybe<UserFilter>;
1767
+ /** Filters that the issues cycle must satisfy. */
1768
+ cycle?: Maybe<NullableCycleFilter>;
1769
+ /** Comparator for the issues description. */
1770
+ description?: Maybe<NullableStringComparator>;
1771
+ /** Comparator for the issues due date. */
1772
+ dueDate?: Maybe<NullableTimelessDateComparator>;
1773
+ /** Comparator for the issues estimate. */
1774
+ estimate?: Maybe<NumberComparator>;
1775
+ /** Comparator for the identifier. */
1776
+ id?: Maybe<IdComparator>;
1777
+ /** Filters that issue labels must satisfy. */
1778
+ labels?: Maybe<IssueLabelCollectionFilter>;
1779
+ /** Comparator for the issues number. */
1780
+ number?: Maybe<NumberComparator>;
1781
+ /** Compound filters, one of which need to be matched by the issue. */
1782
+ or?: Maybe<Array<IssueFilter>>;
1783
+ /** Comparator for the issues priority. */
1784
+ priority?: Maybe<NullableNumberComparator>;
1785
+ /** Filters that the issues project must satisfy. */
1786
+ project?: Maybe<NullableProjectFilter>;
1787
+ /** Filters that the issues snoozer must satisfy. */
1788
+ snoozedBy?: Maybe<NullableUserFilter>;
1789
+ /** Comparator for the issues snoozed until date. */
1790
+ snoozedUntilAt?: Maybe<NullableDateComparator>;
1791
+ /** Comparator for the issues started at date. */
1792
+ startedAt?: Maybe<NullableDateComparator>;
1793
+ /** Filters that the issues state must satisfy. */
1794
+ state?: Maybe<WorkflowStateFilter>;
1795
+ /** Filters that the issues team must satisfy. */
1796
+ team?: Maybe<TeamFilter>;
1797
+ /** Comparator for the issues title. */
1798
+ title?: Maybe<StringComparator>;
1799
+ /** Comparator for the updated at date. */
1800
+ updatedAt?: Maybe<DateComparator>;
1801
+ };
1277
1802
  /** A record of changes to an issue. */
1278
1803
  export declare type IssueHistory = Node & {
1279
1804
  __typename?: "IssueHistory";
@@ -1294,7 +1819,7 @@ export declare type IssueHistory = Node & {
1294
1819
  /** The previous cycle of the issue. */
1295
1820
  fromCycle?: Maybe<Cycle>;
1296
1821
  /** What the due date was changed from */
1297
- fromDueDate?: Maybe<Scalars["TimelessDateScalar"]>;
1822
+ fromDueDate?: Maybe<Scalars["TimelessDate"]>;
1298
1823
  /** What the estimate was changed from. */
1299
1824
  fromEstimate?: Maybe<Scalars["Float"]>;
1300
1825
  /** The previous parent of the issue. */
@@ -1326,7 +1851,7 @@ export declare type IssueHistory = Node & {
1326
1851
  /** The new cycle of the issue. */
1327
1852
  toCycle?: Maybe<Cycle>;
1328
1853
  /** What the due date was changed to */
1329
- toDueDate?: Maybe<Scalars["TimelessDateScalar"]>;
1854
+ toDueDate?: Maybe<Scalars["TimelessDate"]>;
1330
1855
  /** What the estimate was changed to. */
1331
1856
  toEstimate?: Maybe<Scalars["Float"]>;
1332
1857
  /** The new parent of the issue. */
@@ -1415,6 +1940,10 @@ export declare type IssueImportPayload = {
1415
1940
  /** Whether the operation was successful. */
1416
1941
  success: Scalars["Boolean"];
1417
1942
  };
1943
+ export declare type IssueImportUpdateInput = {
1944
+ /** The mapping configuration for the import. */
1945
+ mapping: Scalars["JSONObject"];
1946
+ };
1418
1947
  /** Labels that can be associated with issues. */
1419
1948
  export declare type IssueLabel = Node & {
1420
1949
  __typename?: "IssueLabel";
@@ -1434,8 +1963,10 @@ export declare type IssueLabel = Node & {
1434
1963
  issues: IssueConnection;
1435
1964
  /** The label's name. */
1436
1965
  name: Scalars["String"];
1437
- /** The team to which the label belongs to. */
1438
- team: Team;
1966
+ /** @deprecated Workspace labels are identified by their team being null. */
1967
+ organization?: Maybe<Organization>;
1968
+ /** The team that the label is associated with. If null, the label is associated with the global workspace.. */
1969
+ team?: Maybe<Team>;
1439
1970
  /**
1440
1971
  * The last time at which the entity was updated. This is the same as the creation time if the
1441
1972
  * entity hasn't been update after creation.
@@ -1446,11 +1977,35 @@ export declare type IssueLabel = Node & {
1446
1977
  export declare type IssueLabelIssuesArgs = {
1447
1978
  after?: Maybe<Scalars["String"]>;
1448
1979
  before?: Maybe<Scalars["String"]>;
1980
+ filter?: Maybe<IssueFilter>;
1449
1981
  first?: Maybe<Scalars["Int"]>;
1450
1982
  includeArchived?: Maybe<Scalars["Boolean"]>;
1451
1983
  last?: Maybe<Scalars["Int"]>;
1452
1984
  orderBy?: Maybe<PaginationOrderBy>;
1453
1985
  };
1986
+ /** [Alpha] Issue label filtering options. */
1987
+ export declare type IssueLabelCollectionFilter = {
1988
+ /** Compound filters, all of which need to be matched by the label. */
1989
+ and?: Maybe<Array<IssueLabelFilter>>;
1990
+ /** Comparator for the created at date. */
1991
+ createdAt?: Maybe<DateComparator>;
1992
+ /** Filters that the issue labels creator must satisfy. */
1993
+ creator?: Maybe<NullableUserFilter>;
1994
+ /** Filters that needs to be matched by all issue labels. */
1995
+ every?: Maybe<IssueLabelFilter>;
1996
+ /** Comparator for the identifier. */
1997
+ id?: Maybe<IdComparator>;
1998
+ /** Comparator for the name. */
1999
+ name?: Maybe<StringComparator>;
2000
+ /** Compound filters, one of which need to be matched by the label. */
2001
+ or?: Maybe<Array<IssueLabelFilter>>;
2002
+ /** Filters that needs to be matched by some issue labels. */
2003
+ some?: Maybe<IssueLabelFilter>;
2004
+ /** Filters that the issue labels team must satisfy. */
2005
+ team?: Maybe<TeamFilter>;
2006
+ /** Comparator for the updated at date. */
2007
+ updatedAt?: Maybe<DateComparator>;
2008
+ };
1454
2009
  export declare type IssueLabelConnection = {
1455
2010
  __typename?: "IssueLabelConnection";
1456
2011
  edges: Array<IssueLabelEdge>;
@@ -1466,8 +2021,8 @@ export declare type IssueLabelCreateInput = {
1466
2021
  id?: Maybe<Scalars["String"]>;
1467
2022
  /** The name of the label. */
1468
2023
  name: Scalars["String"];
1469
- /** The team associated with the label. */
1470
- teamId: Scalars["String"];
2024
+ /** The team associated with the label. If not given, the label will be associated with the entire workspace. */
2025
+ teamId?: Maybe<Scalars["String"]>;
1471
2026
  };
1472
2027
  export declare type IssueLabelEdge = {
1473
2028
  __typename?: "IssueLabelEdge";
@@ -1475,6 +2030,25 @@ export declare type IssueLabelEdge = {
1475
2030
  cursor: Scalars["String"];
1476
2031
  node: IssueLabel;
1477
2032
  };
2033
+ /** [Alpha] Issue label filtering options. */
2034
+ export declare type IssueLabelFilter = {
2035
+ /** Compound filters, all of which need to be matched by the label. */
2036
+ and?: Maybe<Array<IssueLabelFilter>>;
2037
+ /** Comparator for the created at date. */
2038
+ createdAt?: Maybe<DateComparator>;
2039
+ /** Filters that the issue labels creator must satisfy. */
2040
+ creator?: Maybe<NullableUserFilter>;
2041
+ /** Comparator for the identifier. */
2042
+ id?: Maybe<IdComparator>;
2043
+ /** Comparator for the name. */
2044
+ name?: Maybe<StringComparator>;
2045
+ /** Compound filters, one of which need to be matched by the label. */
2046
+ or?: Maybe<Array<IssueLabelFilter>>;
2047
+ /** Filters that the issue labels team must satisfy. */
2048
+ team?: Maybe<TeamFilter>;
2049
+ /** Comparator for the updated at date. */
2050
+ updatedAt?: Maybe<DateComparator>;
2051
+ };
1478
2052
  export declare type IssueLabelPayload = {
1479
2053
  __typename?: "IssueLabelPayload";
1480
2054
  /** The label that was created or updated. */
@@ -1596,7 +2170,7 @@ export declare type IssueUpdateInput = {
1596
2170
  /** [DEPRECATED] Document version for backwards compatibility. */
1597
2171
  documentVersion?: Maybe<Scalars["Int"]>;
1598
2172
  /** The date at which the issue is due. */
1599
- dueDate?: Maybe<Scalars["TimelessDateScalar"]>;
2173
+ dueDate?: Maybe<Scalars["TimelessDate"]>;
1600
2174
  /** The estimated complexity of the issue. */
1601
2175
  estimate?: Maybe<Scalars["Int"]>;
1602
2176
  /** The identifiers of the issue labels associated with this ticket. */
@@ -1611,6 +2185,8 @@ export declare type IssueUpdateInput = {
1611
2185
  snoozedById?: Maybe<Scalars["String"]>;
1612
2186
  /** The time until an issue will be snoozed in Triage view. */
1613
2187
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
2188
+ /** The position of the issue related to other issues. */
2189
+ sortOrder?: Maybe<Scalars["Float"]>;
1614
2190
  /** The team state of the issue. */
1615
2191
  stateId?: Maybe<Scalars["String"]>;
1616
2192
  /** The position of the issue in parent's sub-issue list. */
@@ -1624,6 +2200,62 @@ export declare type IssueUpdateInput = {
1624
2200
  /** Wether the issue has been trashed. */
1625
2201
  trashed?: Maybe<Scalars["Boolean"]>;
1626
2202
  };
2203
+ export declare type JiraConfigurationInput = {
2204
+ /** The Jira personal access token. */
2205
+ accessToken: Scalars["String"];
2206
+ /** The Jira user's email address. */
2207
+ email: Scalars["String"];
2208
+ /** The Jira installation hostname. */
2209
+ hostname: Scalars["String"];
2210
+ /** The Jira project keys to scope the integration to. */
2211
+ project?: Maybe<Scalars["String"]>;
2212
+ };
2213
+ /** Tuple for mapping Jira projects to Linear teams. */
2214
+ export declare type JiraLinearMapping = {
2215
+ __typename?: "JiraLinearMapping";
2216
+ /** The Jira id for this project. */
2217
+ jiraProjectId: Scalars["String"];
2218
+ /** The Linear team id to map to the given project. */
2219
+ linearTeamId: Scalars["String"];
2220
+ };
2221
+ export declare type JiraLinearMappingInput = {
2222
+ /** The Jira id for this project. */
2223
+ jiraProjectId: Scalars["String"];
2224
+ /** The Linear team id to map to the given project. */
2225
+ linearTeamId: Scalars["String"];
2226
+ };
2227
+ /** Metadata about a Jira project. */
2228
+ export declare type JiraProjectData = {
2229
+ __typename?: "JiraProjectData";
2230
+ /** The Jira id for this project. */
2231
+ id: Scalars["String"];
2232
+ /** The Jira key for this project, such as ENG. */
2233
+ key: Scalars["String"];
2234
+ /** The Jira name for this project, such as Engineering. */
2235
+ name: Scalars["String"];
2236
+ };
2237
+ export declare type JiraProjectDataInput = {
2238
+ /** The Jira id for this project. */
2239
+ id: Scalars["String"];
2240
+ /** The Jira key for this project, such as ENG. */
2241
+ key: Scalars["String"];
2242
+ /** The Jira name for this project, such as Engineering. */
2243
+ name: Scalars["String"];
2244
+ };
2245
+ /** Jira specific settings. */
2246
+ export declare type JiraSettings = {
2247
+ __typename?: "JiraSettings";
2248
+ /** The mapping of Jira project id => Linear team id. */
2249
+ projectMapping?: Maybe<Array<JiraLinearMapping>>;
2250
+ /** The Jira projects for the organization. */
2251
+ projects: Array<JiraProjectData>;
2252
+ };
2253
+ export declare type JiraSettingsInput = {
2254
+ /** The mapping of Jira project id => Linear team id. */
2255
+ projectMapping?: Maybe<Array<JiraLinearMappingInput>>;
2256
+ /** The Jira projects for the organization. */
2257
+ projects: Array<JiraProjectDataInput>;
2258
+ };
1627
2259
  export declare type JoinOrganizationInput = {
1628
2260
  /** The identifier of the organization. */
1629
2261
  organizationId: Scalars["String"];
@@ -1655,6 +2287,7 @@ export declare type Milestone = Node & {
1655
2287
  export declare type MilestoneProjectsArgs = {
1656
2288
  after?: Maybe<Scalars["String"]>;
1657
2289
  before?: Maybe<Scalars["String"]>;
2290
+ filter?: Maybe<ProjectFilter>;
1658
2291
  first?: Maybe<Scalars["Int"]>;
1659
2292
  includeArchived?: Maybe<Scalars["Boolean"]>;
1660
2293
  last?: Maybe<Scalars["Int"]>;
@@ -1680,6 +2313,25 @@ export declare type MilestoneEdge = {
1680
2313
  cursor: Scalars["String"];
1681
2314
  node: Milestone;
1682
2315
  };
2316
+ /** [Alpha] Milestone filtering options. */
2317
+ export declare type MilestoneFilter = {
2318
+ /** Compound filters, all of which need to be matched by the milestone. */
2319
+ and?: Maybe<Array<MilestoneFilter>>;
2320
+ /** Comparator for the created at date. */
2321
+ createdAt?: Maybe<DateComparator>;
2322
+ /** Comparator for the identifier. */
2323
+ id?: Maybe<IdComparator>;
2324
+ /** Comparator for the milestone name. */
2325
+ name?: Maybe<StringComparator>;
2326
+ /** Compound filters, one of which need to be matched by the milestone. */
2327
+ or?: Maybe<Array<MilestoneFilter>>;
2328
+ /** Filters that the milestones projects must satisfy. */
2329
+ projects?: Maybe<ProjectCollectionFilter>;
2330
+ /** Comparator for the milestone sort order. */
2331
+ sortOrder?: Maybe<NumberComparator>;
2332
+ /** Comparator for the updated at date. */
2333
+ updatedAt?: Maybe<DateComparator>;
2334
+ };
1683
2335
  export declare type MilestonePayload = {
1684
2336
  __typename?: "MilestonePayload";
1685
2337
  /** The identifier of the last sync operation. */
@@ -1711,9 +2363,11 @@ export declare type Mutation = {
1711
2363
  /** [Alpha] Deletes an issue attachment. */
1712
2364
  attachmentDelete: ArchivePayload;
1713
2365
  /** Link an existing Front conversation to an issue. */
1714
- attachmentLinkFront: AttachmentPayload;
2366
+ attachmentLinkFront: FrontAttachmentPayload;
1715
2367
  /** Link an existing Intercom conversation to an issue. */
1716
2368
  attachmentLinkIntercom: AttachmentPayload;
2369
+ /** Link an existing Jira issue to an issue. */
2370
+ attachmentLinkJiraIssue: AttachmentPayload;
1717
2371
  /** Link any url to an issue. */
1718
2372
  attachmentLinkURL: AttachmentPayload;
1719
2373
  /** Link an existing Zendesk ticket to an issue. */
@@ -1748,12 +2402,24 @@ export declare type Mutation = {
1748
2402
  cycleCreate: CyclePayload;
1749
2403
  /** Updates a cycle. */
1750
2404
  cycleUpdate: CyclePayload;
1751
- /** Create the SAML test organization in development. */
2405
+ /** [Internal] Create the OAuth test applications in development. */
2406
+ debugCreateOAuthApps: DebugPayload;
2407
+ /** [Internal] Create the SAML test organization in development. */
1752
2408
  debugCreateSAMLOrg: DebugPayload;
2409
+ /** [Internal] Create test subscription in development. */
2410
+ debugCreateSubscription: DebugPayload;
1753
2411
  /** Always fails with internal error. Used to debug logging. */
1754
2412
  debugFailWithInternalError: DebugPayload;
1755
- /** Always logs an error to Sentry as warning. Used to debug logging. */
2413
+ /** [Internal] Always logs an error to Sentry as warning. Used to debug logging. */
1756
2414
  debugFailWithWarning: DebugPayload;
2415
+ /** Creates a new document. */
2416
+ documentCreate: DocumentPayload;
2417
+ /** Deletes a document. */
2418
+ documentDelete: ArchivePayload;
2419
+ /** Updates a document. */
2420
+ documentUpdate: DocumentPayload;
2421
+ /** Subscribes the email to the newsletter. */
2422
+ emailSubscribe: EmailSubscribePayload;
1757
2423
  /** Authenticates a user account via email and authentication token. */
1758
2424
  emailTokenUserAccountAuth: AuthResolverResponse;
1759
2425
  /** Unsubscribes the user from one type of emails. */
@@ -1786,6 +2452,8 @@ export declare type Mutation = {
1786
2452
  integrationFigma: IntegrationPayload;
1787
2453
  /** Integrates the organization with Front. */
1788
2454
  integrationFront: IntegrationPayload;
2455
+ /** Generates a webhook for the GitHub commit integration. */
2456
+ integrationGithubCommitCreate: GitHubCommitIntegrationPayload;
1789
2457
  /** Connects the organization with the GitHub App. */
1790
2458
  integrationGithubConnect: IntegrationPayload;
1791
2459
  /** Connects the organization with a GitLab Access Token. */
@@ -1796,7 +2464,10 @@ export declare type Mutation = {
1796
2464
  integrationIntercom: IntegrationPayload;
1797
2465
  /** Disconnects the organization from Intercom. */
1798
2466
  integrationIntercomDelete: IntegrationPayload;
1799
- /** Updates settings on the Intercom integration. */
2467
+ /**
2468
+ * [DEPRECATED] Updates settings on the Intercom integration.
2469
+ * @deprecated This mutation is deprecated, please use `integrationSettingsUpdate` instead
2470
+ */
1800
2471
  integrationIntercomSettingsUpdate: IntegrationPayload;
1801
2472
  /** Enables Loom integration for the organization. */
1802
2473
  integrationLoom: IntegrationPayload;
@@ -1804,6 +2475,8 @@ export declare type Mutation = {
1804
2475
  integrationResourceArchive: ArchivePayload;
1805
2476
  /** Integrates the organization with Sentry. */
1806
2477
  integrationSentryConnect: IntegrationPayload;
2478
+ /** [INTERNAL] Updates the integration. */
2479
+ integrationSettingsUpdate: IntegrationPayload;
1807
2480
  /** Integrates the organization with Slack. */
1808
2481
  integrationSlack: IntegrationPayload;
1809
2482
  /** Imports custom emojis from your Slack workspace. */
@@ -1818,6 +2491,8 @@ export declare type Mutation = {
1818
2491
  integrationZendesk: IntegrationPayload;
1819
2492
  /** Archives an issue. */
1820
2493
  issueArchive: ArchivePayload;
2494
+ /** Updates multiple issues at once. */
2495
+ issueBatchUpdate: IssueBatchPayload;
1821
2496
  /** Creates a new issue. */
1822
2497
  issueCreate: IssuePayload;
1823
2498
  /** Deletes (trashes) an issue. */
@@ -1834,6 +2509,8 @@ export declare type Mutation = {
1834
2509
  issueImportDelete: IssueImportDeletePayload;
1835
2510
  /** Kicks off import processing. */
1836
2511
  issueImportProcess: IssueImportPayload;
2512
+ /** Updates the mapping for the issue import. */
2513
+ issueImportUpdate: IssueImportPayload;
1837
2514
  /** Archives an issue label. */
1838
2515
  issueLabelArchive: ArchivePayload;
1839
2516
  /** Creates a new label. */
@@ -1850,6 +2527,8 @@ export declare type Mutation = {
1850
2527
  issueUnarchive: ArchivePayload;
1851
2528
  /** Updates an issue. */
1852
2529
  issueUpdate: IssuePayload;
2530
+ /** [INTERNAL] Connects the organization with a Jira Personal Access Token. */
2531
+ jiraIntegrationConnect: IntegrationPayload;
1853
2532
  /** Join an organization from onboarding. */
1854
2533
  joinOrganizationFromOnboarding: CreateOrJoinOrganizationResponse;
1855
2534
  /** Leave an organization. */
@@ -1914,6 +2593,8 @@ export declare type Mutation = {
1914
2593
  projectLinkCreate: ProjectLinkPayload;
1915
2594
  /** Deletes a project link. */
1916
2595
  projectLinkDelete: ArchivePayload;
2596
+ /** Updates a project link. */
2597
+ projectLinkUpdate: ProjectLinkPayload;
1917
2598
  /** Unarchives a project. */
1918
2599
  projectUnarchive: ArchivePayload;
1919
2600
  /** Updates a project. */
@@ -1929,18 +2610,18 @@ export declare type Mutation = {
1929
2610
  /** Manually update Google Sheets data. */
1930
2611
  refreshGoogleSheetsData: IntegrationPayload;
1931
2612
  /** Re-send an organization invite. */
1932
- resentOrganizationInvite: ArchivePayload;
2613
+ resendOrganizationInvite: ArchivePayload;
1933
2614
  /** Authenticates a user account via email and authentication token for SAML. */
1934
2615
  samlTokenUserAccountAuth: AuthResolverResponse;
1935
- /** Archives a subscription. */
2616
+ /** [Internal] Archives a subscription. */
1936
2617
  subscriptionArchive: ArchivePayload;
1937
- /** Creates a subscription session. Used internally to integrate with Stripe. */
2618
+ /** [Internal] Creates a subscription session. Used internally to integrate with Stripe. */
1938
2619
  subscriptionSessionCreate: SubscriptionSessionPayload;
1939
- /** Updates a subscription. */
2620
+ /** [Internal] Updates a subscription. */
1940
2621
  subscriptionUpdate: SubscriptionPayload;
1941
- /** Creates a subscription update session. Used internally to integrate with Stripe. */
2622
+ /** [Internal] Creates a subscription update session. Used internally to integrate with Stripe. */
1942
2623
  subscriptionUpdateSessionCreate: SubscriptionSessionPayload;
1943
- /** Upgrades a subscription plan. */
2624
+ /** [Internal] Upgrades a subscription plan. */
1944
2625
  subscriptionUpgrade: SubscriptionPayload;
1945
2626
  /** Creates a new team. The user who creates the team will automatically be added as a member to the newly created team. */
1946
2627
  teamCreate: TeamPayload;
@@ -2024,6 +2705,10 @@ export declare type MutationAttachmentLinkIntercomArgs = {
2024
2705
  conversationId: Scalars["String"];
2025
2706
  issueId: Scalars["String"];
2026
2707
  };
2708
+ export declare type MutationAttachmentLinkJiraIssueArgs = {
2709
+ issueId: Scalars["String"];
2710
+ jiraIssueId: Scalars["String"];
2711
+ };
2027
2712
  export declare type MutationAttachmentLinkUrlArgs = {
2028
2713
  issueId: Scalars["String"];
2029
2714
  title?: Maybe<Scalars["String"]>;
@@ -2083,6 +2768,22 @@ export declare type MutationCycleUpdateArgs = {
2083
2768
  id: Scalars["String"];
2084
2769
  input: CycleUpdateInput;
2085
2770
  };
2771
+ export declare type MutationDebugCreateSubscriptionArgs = {
2772
+ subscriptionType: Scalars["String"];
2773
+ };
2774
+ export declare type MutationDocumentCreateArgs = {
2775
+ input: DocumentCreateInput;
2776
+ };
2777
+ export declare type MutationDocumentDeleteArgs = {
2778
+ id: Scalars["String"];
2779
+ };
2780
+ export declare type MutationDocumentUpdateArgs = {
2781
+ id: Scalars["String"];
2782
+ input: DocumentUpdateInput;
2783
+ };
2784
+ export declare type MutationEmailSubscribeArgs = {
2785
+ input: EmailSubscribeInput;
2786
+ };
2086
2787
  export declare type MutationEmailTokenUserAccountAuthArgs = {
2087
2788
  input: TokenUserAccountAuthInput;
2088
2789
  };
@@ -2162,6 +2863,10 @@ export declare type MutationIntegrationSentryConnectArgs = {
2162
2863
  installationId: Scalars["String"];
2163
2864
  organizationSlug: Scalars["String"];
2164
2865
  };
2866
+ export declare type MutationIntegrationSettingsUpdateArgs = {
2867
+ id: Scalars["String"];
2868
+ input: IntegrationSettingsInput;
2869
+ };
2165
2870
  export declare type MutationIntegrationSlackArgs = {
2166
2871
  code: Scalars["String"];
2167
2872
  redirectUri: Scalars["String"];
@@ -2196,6 +2901,10 @@ export declare type MutationIssueArchiveArgs = {
2196
2901
  id: Scalars["String"];
2197
2902
  trash?: Maybe<Scalars["Boolean"]>;
2198
2903
  };
2904
+ export declare type MutationIssueBatchUpdateArgs = {
2905
+ ids: Array<Scalars["UUID"]>;
2906
+ input: IssueUpdateInput;
2907
+ };
2199
2908
  export declare type MutationIssueCreateArgs = {
2200
2909
  input: IssueCreateInput;
2201
2910
  };
@@ -2206,6 +2915,7 @@ export declare type MutationIssueImportCreateAsanaArgs = {
2206
2915
  asanaTeamName: Scalars["String"];
2207
2916
  asanaToken: Scalars["String"];
2208
2917
  id?: Maybe<Scalars["String"]>;
2918
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
2209
2919
  instantProcess?: Maybe<Scalars["Boolean"]>;
2210
2920
  teamId: Scalars["String"];
2211
2921
  };
@@ -2213,6 +2923,7 @@ export declare type MutationIssueImportCreateClubhouseArgs = {
2213
2923
  clubhouseTeamName: Scalars["String"];
2214
2924
  clubhouseToken: Scalars["String"];
2215
2925
  id?: Maybe<Scalars["String"]>;
2926
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
2216
2927
  instantProcess?: Maybe<Scalars["Boolean"]>;
2217
2928
  teamId: Scalars["String"];
2218
2929
  };
@@ -2222,11 +2933,13 @@ export declare type MutationIssueImportCreateGithubArgs = {
2222
2933
  githubShouldImportOrgProjects?: Maybe<Scalars["Boolean"]>;
2223
2934
  githubToken: Scalars["String"];
2224
2935
  id?: Maybe<Scalars["String"]>;
2936
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
2225
2937
  instantProcess?: Maybe<Scalars["Boolean"]>;
2226
2938
  teamId: Scalars["String"];
2227
2939
  };
2228
2940
  export declare type MutationIssueImportCreateJiraArgs = {
2229
2941
  id?: Maybe<Scalars["String"]>;
2942
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
2230
2943
  instantProcess?: Maybe<Scalars["Boolean"]>;
2231
2944
  jiraEmail: Scalars["String"];
2232
2945
  jiraHostname: Scalars["String"];
@@ -2241,11 +2954,16 @@ export declare type MutationIssueImportProcessArgs = {
2241
2954
  issueImportId: Scalars["String"];
2242
2955
  mapping: Scalars["JSONObject"];
2243
2956
  };
2957
+ export declare type MutationIssueImportUpdateArgs = {
2958
+ id: Scalars["String"];
2959
+ input: IssueImportUpdateInput;
2960
+ };
2244
2961
  export declare type MutationIssueLabelArchiveArgs = {
2245
2962
  id: Scalars["String"];
2246
2963
  };
2247
2964
  export declare type MutationIssueLabelCreateArgs = {
2248
2965
  input: IssueLabelCreateInput;
2966
+ replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
2249
2967
  };
2250
2968
  export declare type MutationIssueLabelUpdateArgs = {
2251
2969
  id: Scalars["String"];
@@ -2268,6 +2986,9 @@ export declare type MutationIssueUpdateArgs = {
2268
2986
  id: Scalars["String"];
2269
2987
  input: IssueUpdateInput;
2270
2988
  };
2989
+ export declare type MutationJiraIntegrationConnectArgs = {
2990
+ input: JiraConfigurationInput;
2991
+ };
2271
2992
  export declare type MutationJoinOrganizationFromOnboardingArgs = {
2272
2993
  input: JoinOrganizationInput;
2273
2994
  };
@@ -2366,6 +3087,10 @@ export declare type MutationProjectLinkCreateArgs = {
2366
3087
  export declare type MutationProjectLinkDeleteArgs = {
2367
3088
  id: Scalars["String"];
2368
3089
  };
3090
+ export declare type MutationProjectLinkUpdateArgs = {
3091
+ id: Scalars["String"];
3092
+ input: ProjectLinkUpdateInput;
3093
+ };
2369
3094
  export declare type MutationProjectUnarchiveArgs = {
2370
3095
  id: Scalars["String"];
2371
3096
  };
@@ -2388,7 +3113,7 @@ export declare type MutationReactionDeleteArgs = {
2388
3113
  export declare type MutationRefreshGoogleSheetsDataArgs = {
2389
3114
  id: Scalars["String"];
2390
3115
  };
2391
- export declare type MutationResentOrganizationInviteArgs = {
3116
+ export declare type MutationResendOrganizationInviteArgs = {
2392
3117
  id: Scalars["String"];
2393
3118
  };
2394
3119
  export declare type MutationSamlTokenUserAccountAuthArgs = {
@@ -2398,6 +3123,7 @@ export declare type MutationSubscriptionArchiveArgs = {
2398
3123
  id: Scalars["String"];
2399
3124
  };
2400
3125
  export declare type MutationSubscriptionSessionCreateArgs = {
3126
+ coupon?: Maybe<Scalars["String"]>;
2401
3127
  plan: Scalars["String"];
2402
3128
  };
2403
3129
  export declare type MutationSubscriptionUpdateArgs = {
@@ -2499,6 +3225,37 @@ export declare type MutationWorkflowStateUpdateArgs = {
2499
3225
  id: Scalars["String"];
2500
3226
  input: WorkflowStateUpdateInput;
2501
3227
  };
3228
+ /** Comparator for strings. */
3229
+ export declare type NestedStringComparator = {
3230
+ /** Contains constraint. Matches any values that contain the given string. */
3231
+ contains?: Maybe<Scalars["String"]>;
3232
+ /** Contains case insensitive constraint. Matches any values that contain the given string case insensitive. */
3233
+ containsIgnoreCase?: Maybe<Scalars["String"]>;
3234
+ /** Ends with constraint. Matches any values that end with the given string. */
3235
+ endsWith?: Maybe<Scalars["String"]>;
3236
+ /** Equals constraint. */
3237
+ eq?: Maybe<Scalars["String"]>;
3238
+ /** Equals case insensitive. Matches any values that matches the given string case insensitive. */
3239
+ eqIgnoreCase?: Maybe<Scalars["String"]>;
3240
+ /** In-array constraint. */
3241
+ in?: Maybe<Array<Scalars["String"]>>;
3242
+ /** Not-equals constraint. */
3243
+ neq?: Maybe<Scalars["String"]>;
3244
+ /** Not-equals case insensitive. Matches any values that don't match the given string case insensitive. */
3245
+ neqIgnoreCase?: Maybe<Scalars["String"]>;
3246
+ /** Not-in-array constraint. */
3247
+ nin?: Maybe<Array<Scalars["String"]>>;
3248
+ /** Doesn't contain constraint. Matches any values that don't contain the given string. */
3249
+ notContains?: Maybe<Scalars["String"]>;
3250
+ /** Doesn't contain case insensitive constraint. Matches any values that don't contain the given string case insensitive. */
3251
+ notContainsIgnoreCase?: Maybe<Scalars["String"]>;
3252
+ /** Doesn't end with constraint. Matches any values that don't end with the given string. */
3253
+ notEndsWith?: Maybe<Scalars["String"]>;
3254
+ /** Doesn't start with constraint. Matches any values that don't start with the given string. */
3255
+ notStartsWith?: Maybe<Scalars["String"]>;
3256
+ /** Starts with constraint. Matches any values that start with the given string. */
3257
+ startsWith?: Maybe<Scalars["String"]>;
3258
+ };
2502
3259
  export declare type Node = {
2503
3260
  /** The unique identifier of the entity. */
2504
3261
  id: Scalars["ID"];
@@ -2618,6 +3375,228 @@ export declare type NotificationUpdateInput = {
2618
3375
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
2619
3376
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
2620
3377
  };
3378
+ /** [Alpha] Cycle filtering options. */
3379
+ export declare type NullableCycleFilter = {
3380
+ /** Compound filters, all of which need to be matched by the cycle. */
3381
+ and?: Maybe<Array<CycleFilter>>;
3382
+ /** Comparator for the cycle completed at date. */
3383
+ completedAt?: Maybe<DateComparator>;
3384
+ /** Comparator for the created at date. */
3385
+ createdAt?: Maybe<DateComparator>;
3386
+ /** Comparator for the cycle ends at date. */
3387
+ endsAt?: Maybe<DateComparator>;
3388
+ /** Comparator for the identifier. */
3389
+ id?: Maybe<IdComparator>;
3390
+ /** Filters that the cycles issues must satisfy. */
3391
+ issues?: Maybe<IssueCollectionFilter>;
3392
+ /** Comparator for the cycle name. */
3393
+ name?: Maybe<StringComparator>;
3394
+ /** Filter based on the existence of the relation. */
3395
+ null?: Maybe<Scalars["Boolean"]>;
3396
+ /** Comparator for the cycle number. */
3397
+ number?: Maybe<NumberComparator>;
3398
+ /** Compound filters, one of which need to be matched by the cycle. */
3399
+ or?: Maybe<Array<CycleFilter>>;
3400
+ /** Comparator for the cycle start date. */
3401
+ startsAt?: Maybe<DateComparator>;
3402
+ /** Filters that the cycles team must satisfy. */
3403
+ team?: Maybe<TeamFilter>;
3404
+ /** Comparator for the updated at date. */
3405
+ updatedAt?: Maybe<DateComparator>;
3406
+ };
3407
+ /** Comparator for optional dates. */
3408
+ export declare type NullableDateComparator = {
3409
+ /** Equals constraint. */
3410
+ eq?: Maybe<Scalars["DateTime"]>;
3411
+ /** Greater-than constraint. Matches any values that are greater than the given value. */
3412
+ gt?: Maybe<Scalars["DateTime"]>;
3413
+ /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
3414
+ gte?: Maybe<Scalars["DateTime"]>;
3415
+ /** In-array constraint. */
3416
+ in?: Maybe<Array<Scalars["DateTime"]>>;
3417
+ /** Less-than constraint. Matches any values that are less than the given value. */
3418
+ lt?: Maybe<Scalars["DateTime"]>;
3419
+ /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
3420
+ lte?: Maybe<Scalars["DateTime"]>;
3421
+ /** Not-equals constraint. */
3422
+ neq?: Maybe<Scalars["DateTime"]>;
3423
+ /** Not-in-array constraint. */
3424
+ nin?: Maybe<Array<Scalars["DateTime"]>>;
3425
+ /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
3426
+ null?: Maybe<Scalars["Boolean"]>;
3427
+ };
3428
+ /** [Alpha] User filtering options. */
3429
+ export declare type NullableMilestoneFilter = {
3430
+ /** Compound filters, all of which need to be matched by the milestone. */
3431
+ and?: Maybe<Array<MilestoneFilter>>;
3432
+ /** Comparator for the created at date. */
3433
+ createdAt?: Maybe<DateComparator>;
3434
+ /** Comparator for the identifier. */
3435
+ id?: Maybe<IdComparator>;
3436
+ /** Comparator for the milestone name. */
3437
+ name?: Maybe<StringComparator>;
3438
+ /** Filter based on the existence of the relation. */
3439
+ null?: Maybe<Scalars["Boolean"]>;
3440
+ /** Compound filters, one of which need to be matched by the milestone. */
3441
+ or?: Maybe<Array<MilestoneFilter>>;
3442
+ /** Filters that the milestones projects must satisfy. */
3443
+ projects?: Maybe<ProjectCollectionFilter>;
3444
+ /** Comparator for the milestone sort order. */
3445
+ sortOrder?: Maybe<NumberComparator>;
3446
+ /** Comparator for the updated at date. */
3447
+ updatedAt?: Maybe<DateComparator>;
3448
+ };
3449
+ /** Comparator for optional numbers. */
3450
+ export declare type NullableNumberComparator = {
3451
+ /** Equals constraint. */
3452
+ eq?: Maybe<Scalars["Float"]>;
3453
+ /** Greater-than constraint. Matches any values that are greater than the given value. */
3454
+ gt?: Maybe<Scalars["Float"]>;
3455
+ /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
3456
+ gte?: Maybe<Scalars["Float"]>;
3457
+ /** In-array constraint. */
3458
+ in?: Maybe<Array<Scalars["Float"]>>;
3459
+ /** Less-than constraint. Matches any values that are less than the given value. */
3460
+ lt?: Maybe<Scalars["Float"]>;
3461
+ /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
3462
+ lte?: Maybe<Scalars["Float"]>;
3463
+ /** Not-equals constraint. */
3464
+ neq?: Maybe<Scalars["Float"]>;
3465
+ /** Not-in-array constraint. */
3466
+ nin?: Maybe<Array<Scalars["Float"]>>;
3467
+ /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
3468
+ null?: Maybe<Scalars["Boolean"]>;
3469
+ };
3470
+ /** [Alpha] Project filtering options. */
3471
+ export declare type NullableProjectFilter = {
3472
+ /** Compound filters, all of which need to be matched by the project. */
3473
+ and?: Maybe<Array<ProjectFilter>>;
3474
+ /** Comparator for the created at date. */
3475
+ createdAt?: Maybe<DateComparator>;
3476
+ /** Filters that the projects creator must satisfy. */
3477
+ creator?: Maybe<UserFilter>;
3478
+ /** Comparator for the identifier. */
3479
+ id?: Maybe<IdComparator>;
3480
+ /** Filters that the projects issues must satisfy. */
3481
+ issues?: Maybe<IssueCollectionFilter>;
3482
+ /** Filters that the projects lead must satisfy. */
3483
+ lead?: Maybe<NullableUserFilter>;
3484
+ /** Filters that the projects members must satisfy. */
3485
+ members?: Maybe<UserFilter>;
3486
+ /** Filters that the projects milestones must satisfy. */
3487
+ milestone?: Maybe<NullableMilestoneFilter>;
3488
+ /** Comparator for the project name. */
3489
+ name?: Maybe<StringComparator>;
3490
+ /** Filter based on the existence of the relation. */
3491
+ null?: Maybe<Scalars["Boolean"]>;
3492
+ /** Compound filters, one of which need to be matched by the project. */
3493
+ or?: Maybe<Array<ProjectFilter>>;
3494
+ /** Comparator for the project start date. */
3495
+ startDate?: Maybe<NullableDateComparator>;
3496
+ /** Comparator for the project state. */
3497
+ state?: Maybe<StringComparator>;
3498
+ /** Comparator for the project target date. */
3499
+ targetDate?: Maybe<NullableDateComparator>;
3500
+ /** Comparator for the updated at date. */
3501
+ updatedAt?: Maybe<DateComparator>;
3502
+ };
3503
+ /** Comparator for optional strings. */
3504
+ export declare type NullableStringComparator = {
3505
+ /** Contains constraint. Matches any values that contain the given string. */
3506
+ contains?: Maybe<Scalars["String"]>;
3507
+ /** Contains case insensitive constraint. Matches any values that contain the given string case insensitive. */
3508
+ containsIgnoreCase?: Maybe<Scalars["String"]>;
3509
+ /** Ends with constraint. Matches any values that end with the given string. */
3510
+ endsWith?: Maybe<Scalars["String"]>;
3511
+ /** Equals constraint. */
3512
+ eq?: Maybe<Scalars["String"]>;
3513
+ /** Equals case insensitive. Matches any values that matches the given string case insensitive. */
3514
+ eqIgnoreCase?: Maybe<Scalars["String"]>;
3515
+ /** In-array constraint. */
3516
+ in?: Maybe<Array<Scalars["String"]>>;
3517
+ /** Not-equals constraint. */
3518
+ neq?: Maybe<Scalars["String"]>;
3519
+ /** Not-equals case insensitive. Matches any values that don't match the given string case insensitive. */
3520
+ neqIgnoreCase?: Maybe<Scalars["String"]>;
3521
+ /** Not-in-array constraint. */
3522
+ nin?: Maybe<Array<Scalars["String"]>>;
3523
+ /** Doesn't contain constraint. Matches any values that don't contain the given string. */
3524
+ notContains?: Maybe<Scalars["String"]>;
3525
+ /** Doesn't contain case insensitive constraint. Matches any values that don't contain the given string case insensitive. */
3526
+ notContainsIgnoreCase?: Maybe<Scalars["String"]>;
3527
+ /** Doesn't end with constraint. Matches any values that don't end with the given string. */
3528
+ notEndsWith?: Maybe<Scalars["String"]>;
3529
+ /** Doesn't start with constraint. Matches any values that don't start with the given string. */
3530
+ notStartsWith?: Maybe<Scalars["String"]>;
3531
+ /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
3532
+ null?: Maybe<Scalars["Boolean"]>;
3533
+ /** Starts with constraint. Matches any values that start with the given string. */
3534
+ startsWith?: Maybe<Scalars["String"]>;
3535
+ };
3536
+ export declare type NullableTimelessDateComparator = {
3537
+ /** Equals constraint. */
3538
+ eq?: Maybe<Scalars["TimelessDate"]>;
3539
+ /** Greater-than constraint. Matches any values that are greater than the given value. */
3540
+ gt?: Maybe<Scalars["TimelessDate"]>;
3541
+ /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
3542
+ gte?: Maybe<Scalars["TimelessDate"]>;
3543
+ /** In-array constraint. */
3544
+ in?: Maybe<Array<Scalars["TimelessDate"]>>;
3545
+ /** Less-than constraint. Matches any values that are less than the given value. */
3546
+ lt?: Maybe<Scalars["TimelessDate"]>;
3547
+ /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
3548
+ lte?: Maybe<Scalars["TimelessDate"]>;
3549
+ /** Not-equals constraint. */
3550
+ neq?: Maybe<Scalars["TimelessDate"]>;
3551
+ /** Not-in-array constraint. */
3552
+ nin?: Maybe<Array<Scalars["TimelessDate"]>>;
3553
+ /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
3554
+ null?: Maybe<Scalars["Boolean"]>;
3555
+ };
3556
+ /** [Alpha] User filtering options. */
3557
+ export declare type NullableUserFilter = {
3558
+ /** Compound filters, all of which need to be matched by the user. */
3559
+ and?: Maybe<Array<UserFilter>>;
3560
+ /** Filters that the users assigned issues must satisfy. */
3561
+ assignedIssues?: Maybe<IssueCollectionFilter>;
3562
+ /** Comparator for the created at date. */
3563
+ createdAt?: Maybe<DateComparator>;
3564
+ /** Comparator for the users display name. */
3565
+ displayName?: Maybe<StringComparator>;
3566
+ /** Comparator for the users email. */
3567
+ email?: Maybe<StringComparator>;
3568
+ /** Comparator for the identifier. */
3569
+ id?: Maybe<IdComparator>;
3570
+ /** Filter based on the currently authenticated user. Set to true to filter for the authenticated user, false for any other user. */
3571
+ isMe?: Maybe<BooleanComparator>;
3572
+ /** Comparator for the users name. */
3573
+ name?: Maybe<StringComparator>;
3574
+ /** Filter based on the existence of the relation. */
3575
+ null?: Maybe<Scalars["Boolean"]>;
3576
+ /** Compound filters, one of which need to be matched by the user. */
3577
+ or?: Maybe<Array<UserFilter>>;
3578
+ /** Comparator for the updated at date. */
3579
+ updatedAt?: Maybe<DateComparator>;
3580
+ };
3581
+ /** Comparator for numbers. */
3582
+ export declare type NumberComparator = {
3583
+ /** Equals constraint. */
3584
+ eq?: Maybe<Scalars["Float"]>;
3585
+ /** Greater-than constraint. Matches any values that are greater than the given value. */
3586
+ gt?: Maybe<Scalars["Float"]>;
3587
+ /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
3588
+ gte?: Maybe<Scalars["Float"]>;
3589
+ /** In-array constraint. */
3590
+ in?: Maybe<Array<Scalars["Float"]>>;
3591
+ /** Less-than constraint. Matches any values that are less than the given value. */
3592
+ lt?: Maybe<Scalars["Float"]>;
3593
+ /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
3594
+ lte?: Maybe<Scalars["Float"]>;
3595
+ /** Not-equals constraint. */
3596
+ neq?: Maybe<Scalars["Float"]>;
3597
+ /** Not-in-array constraint. */
3598
+ nin?: Maybe<Array<Scalars["Float"]>>;
3599
+ };
2621
3600
  export declare type OauthAuthStringAuthorizePayload = {
2622
3601
  __typename?: "OauthAuthStringAuthorizePayload";
2623
3602
  /** Whether the operation was successful. */
@@ -2669,6 +3648,10 @@ export declare type OauthClient = Node & {
2669
3648
  * entity hasn't been update after creation.
2670
3649
  */
2671
3650
  updatedAt: Scalars["DateTime"];
3651
+ /** The resource types to request when creating new webhooks. */
3652
+ webhookResourceTypes: Array<Scalars["String"]>;
3653
+ /** Webhook URL */
3654
+ webhookUrl?: Maybe<Scalars["String"]>;
2672
3655
  };
2673
3656
  export declare type OauthClientCreateInput = {
2674
3657
  /** User facing description of the application. */
@@ -2687,6 +3670,10 @@ export declare type OauthClientCreateInput = {
2687
3670
  publicEnabled?: Maybe<Scalars["Boolean"]>;
2688
3671
  /** List of allowed redirect URIs for the application. */
2689
3672
  redirectUris: Array<Scalars["String"]>;
3673
+ /** List of resources the webhooks should subscribe to. */
3674
+ webhookResourceTypes: Array<Scalars["String"]>;
3675
+ /** The URL that will be called on data changes. */
3676
+ webhookUrl?: Maybe<Scalars["String"]>;
2690
3677
  };
2691
3678
  export declare type OauthClientPayload = {
2692
3679
  __typename?: "OauthClientPayload";
@@ -2712,6 +3699,10 @@ export declare type OauthClientUpdateInput = {
2712
3699
  publicEnabled?: Maybe<Scalars["Boolean"]>;
2713
3700
  /** List of allowed redirect URIs for the application. */
2714
3701
  redirectUris?: Maybe<Array<Scalars["String"]>>;
3702
+ /** List of resources the webhooks should subscribe to. */
3703
+ webhookResourceTypes?: Maybe<Array<Scalars["String"]>>;
3704
+ /** The URL that will be called on data changes. */
3705
+ webhookUrl?: Maybe<Scalars["String"]>;
2715
3706
  };
2716
3707
  export declare type OauthTokenRevokePayload = {
2717
3708
  __typename?: "OauthTokenRevokePayload";
@@ -2745,6 +3736,8 @@ export declare type Organization = Node & {
2745
3736
  id: Scalars["ID"];
2746
3737
  /** Integrations associated with the organization. */
2747
3738
  integrations: IntegrationConnection;
3739
+ /** Labels associated with the organization. */
3740
+ labels: IssueLabelConnection;
2748
3741
  /** The organization's logo URL. */
2749
3742
  logoUrl?: Maybe<Scalars["String"]>;
2750
3743
  /** Milestones associated with the organization. */
@@ -2761,6 +3754,8 @@ export declare type Organization = Node & {
2761
3754
  subscription?: Maybe<Subscription>;
2762
3755
  /** Teams associated with the organization. */
2763
3756
  teams: TeamConnection;
3757
+ /** Templates associated with the organization. */
3758
+ templates: TemplateConnection;
2764
3759
  /**
2765
3760
  * The last time at which the entity was updated. This is the same as the creation time if the
2766
3761
  * entity hasn't been update after creation.
@@ -2783,9 +3778,20 @@ export declare type OrganizationIntegrationsArgs = {
2783
3778
  orderBy?: Maybe<PaginationOrderBy>;
2784
3779
  };
2785
3780
  /** An organization. Organizations are root-level objects that contain user accounts and teams. */
3781
+ export declare type OrganizationLabelsArgs = {
3782
+ after?: Maybe<Scalars["String"]>;
3783
+ before?: Maybe<Scalars["String"]>;
3784
+ filter?: Maybe<IssueLabelFilter>;
3785
+ first?: Maybe<Scalars["Int"]>;
3786
+ includeArchived?: Maybe<Scalars["Boolean"]>;
3787
+ last?: Maybe<Scalars["Int"]>;
3788
+ orderBy?: Maybe<PaginationOrderBy>;
3789
+ };
3790
+ /** An organization. Organizations are root-level objects that contain user accounts and teams. */
2786
3791
  export declare type OrganizationMilestonesArgs = {
2787
3792
  after?: Maybe<Scalars["String"]>;
2788
3793
  before?: Maybe<Scalars["String"]>;
3794
+ filter?: Maybe<MilestoneFilter>;
2789
3795
  first?: Maybe<Scalars["Int"]>;
2790
3796
  includeArchived?: Maybe<Scalars["Boolean"]>;
2791
3797
  last?: Maybe<Scalars["Int"]>;
@@ -2793,6 +3799,16 @@ export declare type OrganizationMilestonesArgs = {
2793
3799
  };
2794
3800
  /** An organization. Organizations are root-level objects that contain user accounts and teams. */
2795
3801
  export declare type OrganizationTeamsArgs = {
3802
+ after?: Maybe<Scalars["String"]>;
3803
+ before?: Maybe<Scalars["String"]>;
3804
+ filter?: Maybe<TeamFilter>;
3805
+ first?: Maybe<Scalars["Int"]>;
3806
+ includeArchived?: Maybe<Scalars["Boolean"]>;
3807
+ last?: Maybe<Scalars["Int"]>;
3808
+ orderBy?: Maybe<PaginationOrderBy>;
3809
+ };
3810
+ /** An organization. Organizations are root-level objects that contain user accounts and teams. */
3811
+ export declare type OrganizationTemplatesArgs = {
2796
3812
  after?: Maybe<Scalars["String"]>;
2797
3813
  before?: Maybe<Scalars["String"]>;
2798
3814
  first?: Maybe<Scalars["Int"]>;
@@ -2850,8 +3866,6 @@ export declare type OrganizationDomainCreateInput = {
2850
3866
  name: Scalars["String"];
2851
3867
  /** The email address to which to send the verification code. */
2852
3868
  verificationEmail: Scalars["String"];
2853
- /** Is the domain verified. */
2854
- verified: Scalars["Boolean"];
2855
3869
  };
2856
3870
  export declare type OrganizationDomainPayload = {
2857
3871
  __typename?: "OrganizationDomainPayload";
@@ -2925,6 +3939,25 @@ export declare type OrganizationInviteCreateInput = {
2925
3939
  /** The teams that the user has been invited to. */
2926
3940
  teamIds?: Maybe<Array<Scalars["String"]>>;
2927
3941
  };
3942
+ export declare type OrganizationInviteDetailsPayload = {
3943
+ __typename?: "OrganizationInviteDetailsPayload";
3944
+ /** Whether the invite has already been accepted. */
3945
+ accepted: Scalars["Boolean"];
3946
+ /** When the invite was created. */
3947
+ createdAt: Scalars["DateTime"];
3948
+ /** The email of the invitee */
3949
+ email: Scalars["String"];
3950
+ /** Whether the invite has expired. */
3951
+ expired: Scalars["Boolean"];
3952
+ /** The name of the inviter */
3953
+ inviter: Scalars["String"];
3954
+ /** ID of the workspace the invite is for. */
3955
+ organizationId: Scalars["String"];
3956
+ /** URL of the workspace logo the invite is for. */
3957
+ organizationLogoUrl?: Maybe<Scalars["String"]>;
3958
+ /** Name of the workspace the invite is for. */
3959
+ organizationName: Scalars["String"];
3960
+ };
2928
3961
  export declare type OrganizationInviteEdge = {
2929
3962
  __typename?: "OrganizationInviteEdge";
2930
3963
  /** Used in `before` and `after` args */
@@ -2988,6 +4021,8 @@ export declare type Project = Node & {
2988
4021
  creator: User;
2989
4022
  /** The project's description. */
2990
4023
  description: Scalars["String"];
4024
+ /** Documents associated with the project. */
4025
+ documents: DocumentConnection;
2991
4026
  /** The icon of the project. */
2992
4027
  icon?: Maybe<Scalars["String"]>;
2993
4028
  /** The unique identifier of the entity. */
@@ -3021,13 +4056,13 @@ export declare type Project = Node & {
3021
4056
  /** The sort order for the project within its milestone. */
3022
4057
  sortOrder: Scalars["Float"];
3023
4058
  /** [Internal] The estimated start date of the project. */
3024
- startDate?: Maybe<Scalars["TimelessDateScalar"]>;
4059
+ startDate?: Maybe<Scalars["TimelessDate"]>;
3025
4060
  /** The time at which the project was moved into started state. */
3026
4061
  startedAt?: Maybe<Scalars["DateTime"]>;
3027
4062
  /** The type of the state. */
3028
4063
  state: Scalars["String"];
3029
4064
  /** The estimated completion date of the project. */
3030
- targetDate?: Maybe<Scalars["TimelessDateScalar"]>;
4065
+ targetDate?: Maybe<Scalars["TimelessDate"]>;
3031
4066
  /** Teams associated with this project. */
3032
4067
  teams: TeamConnection;
3033
4068
  /**
@@ -3039,9 +4074,19 @@ export declare type Project = Node & {
3039
4074
  url: Scalars["String"];
3040
4075
  };
3041
4076
  /** A project. */
4077
+ export declare type ProjectDocumentsArgs = {
4078
+ after?: Maybe<Scalars["String"]>;
4079
+ before?: Maybe<Scalars["String"]>;
4080
+ first?: Maybe<Scalars["Int"]>;
4081
+ includeArchived?: Maybe<Scalars["Boolean"]>;
4082
+ last?: Maybe<Scalars["Int"]>;
4083
+ orderBy?: Maybe<PaginationOrderBy>;
4084
+ };
4085
+ /** A project. */
3042
4086
  export declare type ProjectIssuesArgs = {
3043
4087
  after?: Maybe<Scalars["String"]>;
3044
4088
  before?: Maybe<Scalars["String"]>;
4089
+ filter?: Maybe<IssueFilter>;
3045
4090
  first?: Maybe<Scalars["Int"]>;
3046
4091
  includeArchived?: Maybe<Scalars["Boolean"]>;
3047
4092
  last?: Maybe<Scalars["Int"]>;
@@ -3060,6 +4105,7 @@ export declare type ProjectLinksArgs = {
3060
4105
  export declare type ProjectMembersArgs = {
3061
4106
  after?: Maybe<Scalars["String"]>;
3062
4107
  before?: Maybe<Scalars["String"]>;
4108
+ filter?: Maybe<UserFilter>;
3063
4109
  first?: Maybe<Scalars["Int"]>;
3064
4110
  includeArchived?: Maybe<Scalars["Boolean"]>;
3065
4111
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -3070,10 +4116,46 @@ export declare type ProjectMembersArgs = {
3070
4116
  export declare type ProjectTeamsArgs = {
3071
4117
  after?: Maybe<Scalars["String"]>;
3072
4118
  before?: Maybe<Scalars["String"]>;
3073
- first?: Maybe<Scalars["Int"]>;
3074
- includeArchived?: Maybe<Scalars["Boolean"]>;
3075
- last?: Maybe<Scalars["Int"]>;
3076
- orderBy?: Maybe<PaginationOrderBy>;
4119
+ filter?: Maybe<TeamFilter>;
4120
+ first?: Maybe<Scalars["Int"]>;
4121
+ includeArchived?: Maybe<Scalars["Boolean"]>;
4122
+ last?: Maybe<Scalars["Int"]>;
4123
+ orderBy?: Maybe<PaginationOrderBy>;
4124
+ };
4125
+ /** [Alpha] Project filtering options. */
4126
+ export declare type ProjectCollectionFilter = {
4127
+ /** Compound filters, all of which need to be matched by the project. */
4128
+ and?: Maybe<Array<ProjectFilter>>;
4129
+ /** Comparator for the created at date. */
4130
+ createdAt?: Maybe<DateComparator>;
4131
+ /** Filters that the projects creator must satisfy. */
4132
+ creator?: Maybe<UserFilter>;
4133
+ /** Filters that needs to be matched by all projects. */
4134
+ every?: Maybe<ProjectFilter>;
4135
+ /** Comparator for the identifier. */
4136
+ id?: Maybe<IdComparator>;
4137
+ /** Filters that the projects issues must satisfy. */
4138
+ issues?: Maybe<IssueCollectionFilter>;
4139
+ /** Filters that the projects lead must satisfy. */
4140
+ lead?: Maybe<NullableUserFilter>;
4141
+ /** Filters that the projects members must satisfy. */
4142
+ members?: Maybe<UserFilter>;
4143
+ /** Filters that the projects milestones must satisfy. */
4144
+ milestone?: Maybe<NullableMilestoneFilter>;
4145
+ /** Comparator for the project name. */
4146
+ name?: Maybe<StringComparator>;
4147
+ /** Compound filters, one of which need to be matched by the project. */
4148
+ or?: Maybe<Array<ProjectFilter>>;
4149
+ /** Filters that needs to be matched by some projects. */
4150
+ some?: Maybe<ProjectFilter>;
4151
+ /** Comparator for the project start date. */
4152
+ startDate?: Maybe<NullableDateComparator>;
4153
+ /** Comparator for the project state. */
4154
+ state?: Maybe<StringComparator>;
4155
+ /** Comparator for the project target date. */
4156
+ targetDate?: Maybe<NullableDateComparator>;
4157
+ /** Comparator for the updated at date. */
4158
+ updatedAt?: Maybe<DateComparator>;
3077
4159
  };
3078
4160
  export declare type ProjectConnection = {
3079
4161
  __typename?: "ProjectConnection";
@@ -3101,11 +4183,11 @@ export declare type ProjectCreateInput = {
3101
4183
  /** The sort order for the project within its milestone. */
3102
4184
  sortOrder?: Maybe<Scalars["Float"]>;
3103
4185
  /** [Internal] The planned start date of the project. */
3104
- startDate?: Maybe<Scalars["TimelessDateScalar"]>;
4186
+ startDate?: Maybe<Scalars["TimelessDate"]>;
3105
4187
  /** The state of the project. */
3106
4188
  state?: Maybe<Scalars["String"]>;
3107
4189
  /** The planned target date of the project. */
3108
- targetDate?: Maybe<Scalars["TimelessDateScalar"]>;
4190
+ targetDate?: Maybe<Scalars["TimelessDate"]>;
3109
4191
  /** The identifiers of the teams this project is associated with. */
3110
4192
  teamIds: Array<Scalars["String"]>;
3111
4193
  };
@@ -3115,6 +4197,37 @@ export declare type ProjectEdge = {
3115
4197
  cursor: Scalars["String"];
3116
4198
  node: Project;
3117
4199
  };
4200
+ /** [Alpha] Project filtering options. */
4201
+ export declare type ProjectFilter = {
4202
+ /** Compound filters, all of which need to be matched by the project. */
4203
+ and?: Maybe<Array<ProjectFilter>>;
4204
+ /** Comparator for the created at date. */
4205
+ createdAt?: Maybe<DateComparator>;
4206
+ /** Filters that the projects creator must satisfy. */
4207
+ creator?: Maybe<UserFilter>;
4208
+ /** Comparator for the identifier. */
4209
+ id?: Maybe<IdComparator>;
4210
+ /** Filters that the projects issues must satisfy. */
4211
+ issues?: Maybe<IssueCollectionFilter>;
4212
+ /** Filters that the projects lead must satisfy. */
4213
+ lead?: Maybe<NullableUserFilter>;
4214
+ /** Filters that the projects members must satisfy. */
4215
+ members?: Maybe<UserFilter>;
4216
+ /** Filters that the projects milestones must satisfy. */
4217
+ milestone?: Maybe<NullableMilestoneFilter>;
4218
+ /** Comparator for the project name. */
4219
+ name?: Maybe<StringComparator>;
4220
+ /** Compound filters, one of which need to be matched by the project. */
4221
+ or?: Maybe<Array<ProjectFilter>>;
4222
+ /** Comparator for the project start date. */
4223
+ startDate?: Maybe<NullableDateComparator>;
4224
+ /** Comparator for the project state. */
4225
+ state?: Maybe<StringComparator>;
4226
+ /** Comparator for the project target date. */
4227
+ targetDate?: Maybe<NullableDateComparator>;
4228
+ /** Comparator for the updated at date. */
4229
+ updatedAt?: Maybe<DateComparator>;
4230
+ };
3118
4231
  /** An external link for a project. */
3119
4232
  export declare type ProjectLink = Node & {
3120
4233
  __typename?: "ProjectLink";
@@ -3169,6 +4282,12 @@ export declare type ProjectLinkPayload = {
3169
4282
  /** Whether the operation was successful. */
3170
4283
  success: Scalars["Boolean"];
3171
4284
  };
4285
+ export declare type ProjectLinkUpdateInput = {
4286
+ /** The label for the link. */
4287
+ label?: Maybe<Scalars["String"]>;
4288
+ /** The URL of the link. */
4289
+ url?: Maybe<Scalars["String"]>;
4290
+ };
3172
4291
  export declare type ProjectPayload = {
3173
4292
  __typename?: "ProjectPayload";
3174
4293
  /** The identifier of the last sync operation. */
@@ -3206,11 +4325,11 @@ export declare type ProjectUpdateInput = {
3206
4325
  /** The sort order for the project within its milestone. */
3207
4326
  sortOrder?: Maybe<Scalars["Float"]>;
3208
4327
  /** [Internal] The planned start date of the project. */
3209
- startDate?: Maybe<Scalars["TimelessDateScalar"]>;
4328
+ startDate?: Maybe<Scalars["TimelessDate"]>;
3210
4329
  /** The state of the project. */
3211
4330
  state?: Maybe<Scalars["String"]>;
3212
4331
  /** The planned target date of the project. */
3213
- targetDate?: Maybe<Scalars["TimelessDateScalar"]>;
4332
+ targetDate?: Maybe<Scalars["TimelessDate"]>;
3214
4333
  /** The identifiers of the teams this project is associated with. */
3215
4334
  teamIds?: Maybe<Array<Scalars["String"]>>;
3216
4335
  };
@@ -3282,6 +4401,8 @@ export declare type PushSubscriptionTestPayload = {
3282
4401
  };
3283
4402
  export declare type Query = {
3284
4403
  __typename?: "Query";
4404
+ /** All teams you the user can administrate. Administrable teams are teams whose settings the user can change, but to whose issues the user doesn't necessarily have access to. */
4405
+ administrableTeams: TeamConnection;
3285
4406
  /** [Internal] All API keys for the user. */
3286
4407
  apiKeys: ApiKeyConnection;
3287
4408
  /** Get information for an application and whether a user has approved it for the given scopes. */
@@ -3308,6 +4429,10 @@ export declare type Query = {
3308
4429
  attachments: AttachmentConnection;
3309
4430
  /** [Alpha] Returns issue attachments for a given `url`. */
3310
4431
  attachmentsForURL: AttachmentConnection;
4432
+ /** All audit log entries. */
4433
+ auditEntries: AuditEntryConnection;
4434
+ /** List of audit entry types. */
4435
+ auditEntryTypes: Array<AuditEntryType>;
3311
4436
  /** Get all authorized applications for a user */
3312
4437
  authorizedApplications: Array<AuthorizedApplication>;
3313
4438
  /** Fetch users belonging to this user account. */
@@ -3330,6 +4455,10 @@ export declare type Query = {
3330
4455
  cycles: CycleConnection;
3331
4456
  /** [Internal] Fetches the dependencies of a model. */
3332
4457
  dependentModelSync: DependencyResponse;
4458
+ /** One specific document. */
4459
+ document: Document;
4460
+ /** All documents for the project. */
4461
+ documents: DocumentConnection;
3333
4462
  /** A specific emoji. */
3334
4463
  emoji: Emoji;
3335
4464
  /** All custom emojis. */
@@ -3348,8 +4477,6 @@ export declare type Query = {
3348
4477
  integrationResources: IntegrationResourceConnection;
3349
4478
  /** All integrations. */
3350
4479
  integrations: IntegrationConnection;
3351
- /** Retrieves information for the public invite page. */
3352
- inviteInfo: InvitePagePayload;
3353
4480
  /** One specific issue. */
3354
4481
  issue: Issue;
3355
4482
  /** [Internal] The history of issue descriptions. */
@@ -3387,7 +4514,9 @@ export declare type Query = {
3387
4514
  /** Does the organization exist. */
3388
4515
  organizationExists: OrganizationExistsPayload;
3389
4516
  /** One specific organization invite. */
3390
- organizationInvite: IssueLabel;
4517
+ organizationInvite: OrganizationInvite;
4518
+ /** One specific organization invite. */
4519
+ organizationInviteDetails: OrganizationInviteDetailsPayload;
3391
4520
  /** All invites for the organization. */
3392
4521
  organizationInvites: OrganizationInviteConnection;
3393
4522
  /** One specific project. */
@@ -3404,12 +4533,12 @@ export declare type Query = {
3404
4533
  reaction: Reaction;
3405
4534
  /** All comment emoji reactions. */
3406
4535
  reactions: ReactionConnection;
3407
- /** [Internal] Search in Linear. This query is for internal purposes only and is subject to change without notice. */
3408
- search: SearchResultPayload;
3409
4536
  /** Fetch SSO login URL for the email provided. */
3410
4537
  ssoUrlFromEmail: SsoUrlFromEmailResponse;
3411
4538
  /** The organization's subscription. */
3412
4539
  subscription?: Maybe<Subscription>;
4540
+ /** [Internal] Syncs a batch of models. */
4541
+ syncBatch: SyncBatchResponse;
3413
4542
  /** [Internal] Fetch data to catch up the client to the state of the world. */
3414
4543
  syncBootstrap: SyncResponse;
3415
4544
  /** [Internal] Fetches delta sync packets. */
@@ -3420,7 +4549,7 @@ export declare type Query = {
3420
4549
  teamMembership: TeamMembership;
3421
4550
  /** All team memberships. */
3422
4551
  teamMemberships: TeamMembershipConnection;
3423
- /** All teams. */
4552
+ /** All teams whose issues can be accessed by the user. This might be different from `administrableTeams`, which also includes teams whose settings can be changed by the user. */
3424
4553
  teams: TeamConnection;
3425
4554
  /** A specific template. */
3426
4555
  template: Template;
@@ -3443,6 +4572,15 @@ export declare type Query = {
3443
4572
  /** All issue workflow states. */
3444
4573
  workflowStates: WorkflowStateConnection;
3445
4574
  };
4575
+ export declare type QueryAdministrableTeamsArgs = {
4576
+ after?: Maybe<Scalars["String"]>;
4577
+ before?: Maybe<Scalars["String"]>;
4578
+ filter?: Maybe<TeamFilter>;
4579
+ first?: Maybe<Scalars["Int"]>;
4580
+ includeArchived?: Maybe<Scalars["Boolean"]>;
4581
+ last?: Maybe<Scalars["Int"]>;
4582
+ orderBy?: Maybe<PaginationOrderBy>;
4583
+ };
3446
4584
  export declare type QueryApiKeysArgs = {
3447
4585
  after?: Maybe<Scalars["String"]>;
3448
4586
  before?: Maybe<Scalars["String"]>;
@@ -3476,6 +4614,7 @@ export declare type QueryAttachmentIssueArgs = {
3476
4614
  export declare type QueryAttachmentsArgs = {
3477
4615
  after?: Maybe<Scalars["String"]>;
3478
4616
  before?: Maybe<Scalars["String"]>;
4617
+ filter?: Maybe<AttachmentFilter>;
3479
4618
  first?: Maybe<Scalars["Int"]>;
3480
4619
  includeArchived?: Maybe<Scalars["Boolean"]>;
3481
4620
  last?: Maybe<Scalars["Int"]>;
@@ -3490,6 +4629,15 @@ export declare type QueryAttachmentsForUrlArgs = {
3490
4629
  orderBy?: Maybe<PaginationOrderBy>;
3491
4630
  url: Scalars["String"];
3492
4631
  };
4632
+ export declare type QueryAuditEntriesArgs = {
4633
+ after?: Maybe<Scalars["String"]>;
4634
+ before?: Maybe<Scalars["String"]>;
4635
+ filter?: Maybe<AuditEntryFilter>;
4636
+ first?: Maybe<Scalars["Int"]>;
4637
+ includeArchived?: Maybe<Scalars["Boolean"]>;
4638
+ last?: Maybe<Scalars["Int"]>;
4639
+ orderBy?: Maybe<PaginationOrderBy>;
4640
+ };
3493
4641
  export declare type QueryCollaborativeDocumentJoinArgs = {
3494
4642
  clientId: Scalars["String"];
3495
4643
  issueId: Scalars["String"];
@@ -3501,6 +4649,7 @@ export declare type QueryCommentArgs = {
3501
4649
  export declare type QueryCommentsArgs = {
3502
4650
  after?: Maybe<Scalars["String"]>;
3503
4651
  before?: Maybe<Scalars["String"]>;
4652
+ filter?: Maybe<CommentFilter>;
3504
4653
  first?: Maybe<Scalars["Int"]>;
3505
4654
  includeArchived?: Maybe<Scalars["Boolean"]>;
3506
4655
  last?: Maybe<Scalars["Int"]>;
@@ -3523,6 +4672,7 @@ export declare type QueryCycleArgs = {
3523
4672
  export declare type QueryCyclesArgs = {
3524
4673
  after?: Maybe<Scalars["String"]>;
3525
4674
  before?: Maybe<Scalars["String"]>;
4675
+ filter?: Maybe<CycleFilter>;
3526
4676
  first?: Maybe<Scalars["Int"]>;
3527
4677
  includeArchived?: Maybe<Scalars["Boolean"]>;
3528
4678
  last?: Maybe<Scalars["Int"]>;
@@ -3532,6 +4682,17 @@ export declare type QueryDependentModelSyncArgs = {
3532
4682
  identifier: Scalars["String"];
3533
4683
  modelClass: Scalars["String"];
3534
4684
  };
4685
+ export declare type QueryDocumentArgs = {
4686
+ id: Scalars["String"];
4687
+ };
4688
+ export declare type QueryDocumentsArgs = {
4689
+ after?: Maybe<Scalars["String"]>;
4690
+ before?: Maybe<Scalars["String"]>;
4691
+ first?: Maybe<Scalars["Int"]>;
4692
+ includeArchived?: Maybe<Scalars["Boolean"]>;
4693
+ last?: Maybe<Scalars["Int"]>;
4694
+ orderBy?: Maybe<PaginationOrderBy>;
4695
+ };
3535
4696
  export declare type QueryEmojiArgs = {
3536
4697
  id: Scalars["String"];
3537
4698
  };
@@ -3580,10 +4741,6 @@ export declare type QueryIntegrationsArgs = {
3580
4741
  last?: Maybe<Scalars["Int"]>;
3581
4742
  orderBy?: Maybe<PaginationOrderBy>;
3582
4743
  };
3583
- export declare type QueryInviteInfoArgs = {
3584
- teamHash?: Maybe<Scalars["String"]>;
3585
- userHash: Scalars["String"];
3586
- };
3587
4744
  export declare type QueryIssueArgs = {
3588
4745
  id: Scalars["String"];
3589
4746
  };
@@ -3599,6 +4756,7 @@ export declare type QueryIssueLabelArgs = {
3599
4756
  export declare type QueryIssueLabelsArgs = {
3600
4757
  after?: Maybe<Scalars["String"]>;
3601
4758
  before?: Maybe<Scalars["String"]>;
4759
+ filter?: Maybe<IssueLabelFilter>;
3602
4760
  first?: Maybe<Scalars["Int"]>;
3603
4761
  includeArchived?: Maybe<Scalars["Boolean"]>;
3604
4762
  last?: Maybe<Scalars["Int"]>;
@@ -3618,6 +4776,7 @@ export declare type QueryIssueRelationsArgs = {
3618
4776
  export declare type QueryIssueSearchArgs = {
3619
4777
  after?: Maybe<Scalars["String"]>;
3620
4778
  before?: Maybe<Scalars["String"]>;
4779
+ filter?: Maybe<IssueFilter>;
3621
4780
  first?: Maybe<Scalars["Int"]>;
3622
4781
  includeArchived?: Maybe<Scalars["Boolean"]>;
3623
4782
  last?: Maybe<Scalars["Int"]>;
@@ -3627,6 +4786,7 @@ export declare type QueryIssueSearchArgs = {
3627
4786
  export declare type QueryIssuesArgs = {
3628
4787
  after?: Maybe<Scalars["String"]>;
3629
4788
  before?: Maybe<Scalars["String"]>;
4789
+ filter?: Maybe<IssueFilter>;
3630
4790
  first?: Maybe<Scalars["Int"]>;
3631
4791
  includeArchived?: Maybe<Scalars["Boolean"]>;
3632
4792
  last?: Maybe<Scalars["Int"]>;
@@ -3638,6 +4798,7 @@ export declare type QueryMilestoneArgs = {
3638
4798
  export declare type QueryMilestonesArgs = {
3639
4799
  after?: Maybe<Scalars["String"]>;
3640
4800
  before?: Maybe<Scalars["String"]>;
4801
+ filter?: Maybe<MilestoneFilter>;
3641
4802
  first?: Maybe<Scalars["Int"]>;
3642
4803
  includeArchived?: Maybe<Scalars["Boolean"]>;
3643
4804
  last?: Maybe<Scalars["Int"]>;
@@ -3671,6 +4832,9 @@ export declare type QueryOrganizationExistsArgs = {
3671
4832
  export declare type QueryOrganizationInviteArgs = {
3672
4833
  id: Scalars["String"];
3673
4834
  };
4835
+ export declare type QueryOrganizationInviteDetailsArgs = {
4836
+ id: Scalars["String"];
4837
+ };
3674
4838
  export declare type QueryOrganizationInvitesArgs = {
3675
4839
  after?: Maybe<Scalars["String"]>;
3676
4840
  before?: Maybe<Scalars["String"]>;
@@ -3696,6 +4860,7 @@ export declare type QueryProjectLinksArgs = {
3696
4860
  export declare type QueryProjectsArgs = {
3697
4861
  after?: Maybe<Scalars["String"]>;
3698
4862
  before?: Maybe<Scalars["String"]>;
4863
+ filter?: Maybe<ProjectFilter>;
3699
4864
  first?: Maybe<Scalars["Int"]>;
3700
4865
  includeArchived?: Maybe<Scalars["Boolean"]>;
3701
4866
  last?: Maybe<Scalars["Int"]>;
@@ -3712,14 +4877,13 @@ export declare type QueryReactionsArgs = {
3712
4877
  last?: Maybe<Scalars["Int"]>;
3713
4878
  orderBy?: Maybe<PaginationOrderBy>;
3714
4879
  };
3715
- export declare type QuerySearchArgs = {
3716
- from?: Maybe<Scalars["Int"]>;
3717
- term: Scalars["String"];
3718
- };
3719
4880
  export declare type QuerySsoUrlFromEmailArgs = {
3720
4881
  email: Scalars["String"];
3721
4882
  isDesktop?: Maybe<Scalars["Boolean"]>;
3722
4883
  };
4884
+ export declare type QuerySyncBatchArgs = {
4885
+ requests: Array<BatchRequest>;
4886
+ };
3723
4887
  export declare type QuerySyncBootstrapArgs = {
3724
4888
  newVersion?: Maybe<Scalars["Boolean"]>;
3725
4889
  onlyModels?: Maybe<Array<Scalars["String"]>>;
@@ -3747,6 +4911,7 @@ export declare type QueryTeamMembershipsArgs = {
3747
4911
  export declare type QueryTeamsArgs = {
3748
4912
  after?: Maybe<Scalars["String"]>;
3749
4913
  before?: Maybe<Scalars["String"]>;
4914
+ filter?: Maybe<TeamFilter>;
3750
4915
  first?: Maybe<Scalars["Int"]>;
3751
4916
  includeArchived?: Maybe<Scalars["Boolean"]>;
3752
4917
  last?: Maybe<Scalars["Int"]>;
@@ -3761,6 +4926,7 @@ export declare type QueryUserArgs = {
3761
4926
  export declare type QueryUsersArgs = {
3762
4927
  after?: Maybe<Scalars["String"]>;
3763
4928
  before?: Maybe<Scalars["String"]>;
4929
+ filter?: Maybe<UserFilter>;
3764
4930
  first?: Maybe<Scalars["Int"]>;
3765
4931
  includeArchived?: Maybe<Scalars["Boolean"]>;
3766
4932
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -3784,6 +4950,7 @@ export declare type QueryWorkflowStateArgs = {
3784
4950
  export declare type QueryWorkflowStatesArgs = {
3785
4951
  after?: Maybe<Scalars["String"]>;
3786
4952
  before?: Maybe<Scalars["String"]>;
4953
+ filter?: Maybe<WorkflowStateFilter>;
3787
4954
  first?: Maybe<Scalars["Int"]>;
3788
4955
  includeArchived?: Maybe<Scalars["Boolean"]>;
3789
4956
  last?: Maybe<Scalars["Int"]>;
@@ -3849,6 +5016,8 @@ export declare type SamlConfiguration = {
3849
5016
  __typename?: "SamlConfiguration";
3850
5017
  /** List of allowed email domains for SAML authentication. */
3851
5018
  allowedDomains?: Maybe<Array<Scalars["String"]>>;
5019
+ /** The issuer's custom entity ID. */
5020
+ issuerEntityId?: Maybe<Scalars["String"]>;
3852
5021
  /** Binding method for authentication call. Can be either `post` (default) or `redirect`. */
3853
5022
  ssoBinding?: Maybe<Scalars["String"]>;
3854
5023
  /** Sign in endpoint URL for the identity provider. */
@@ -3861,6 +5030,8 @@ export declare type SamlConfiguration = {
3861
5030
  export declare type SamlConfigurationInput = {
3862
5031
  /** List of allowed email domains for SAML authentication. */
3863
5032
  allowedDomains?: Maybe<Array<Scalars["String"]>>;
5033
+ /** The issuer's custom entity ID. */
5034
+ issuerEntityId?: Maybe<Scalars["String"]>;
3864
5035
  /** Binding method for authentication call. Can be either `post` (default) or `redirect`. */
3865
5036
  ssoBinding?: Maybe<Scalars["String"]>;
3866
5037
  /** Sign in endpoint URL for the identity provider. */
@@ -3870,15 +5041,6 @@ export declare type SamlConfigurationInput = {
3870
5041
  /** X.509 Signing Certificate in string form. */
3871
5042
  ssoSigningCert?: Maybe<Scalars["String"]>;
3872
5043
  };
3873
- export declare type SearchResultPayload = {
3874
- __typename?: "SearchResultPayload";
3875
- /** Archived issues matching the search term along with all their dependencies. */
3876
- archivePayload: ArchiveResponse;
3877
- /** Active issue IDs returned matching the search term. */
3878
- issueIds: Array<Scalars["String"]>;
3879
- /** Total number of search results. */
3880
- totalCount: Scalars["Int"];
3881
- };
3882
5044
  /** Sentry issue data */
3883
5045
  export declare type SentryIssuePayload = {
3884
5046
  __typename?: "SentryIssuePayload";
@@ -3911,6 +5073,10 @@ export declare type SentrySettings = {
3911
5073
  /** The slug of the Sentry organization being connected. */
3912
5074
  organizationSlug: Scalars["String"];
3913
5075
  };
5076
+ export declare type SentrySettingsInput = {
5077
+ /** The slug of the Sentry organization being connected. */
5078
+ organizationSlug: Scalars["String"];
5079
+ };
3914
5080
  /** Slack notification specific settings. */
3915
5081
  export declare type SlackPostSettings = {
3916
5082
  __typename?: "SlackPostSettings";
@@ -3918,6 +5084,11 @@ export declare type SlackPostSettings = {
3918
5084
  channelId: Scalars["String"];
3919
5085
  configurationUrl: Scalars["String"];
3920
5086
  };
5087
+ export declare type SlackPostSettingsInput = {
5088
+ channel: Scalars["String"];
5089
+ channelId: Scalars["String"];
5090
+ configurationUrl: Scalars["String"];
5091
+ };
3921
5092
  export declare type SsoUrlFromEmailResponse = {
3922
5093
  __typename?: "SsoUrlFromEmailResponse";
3923
5094
  /** SAML SSO sign-in URL. */
@@ -3934,6 +5105,37 @@ export declare type StepsResponse = {
3934
5105
  /** Client's document version. */
3935
5106
  version: Scalars["Int"];
3936
5107
  };
5108
+ /** Comparator for strings. */
5109
+ export declare type StringComparator = {
5110
+ /** Contains constraint. Matches any values that contain the given string. */
5111
+ contains?: Maybe<Scalars["String"]>;
5112
+ /** Contains case insensitive constraint. Matches any values that contain the given string case insensitive. */
5113
+ containsIgnoreCase?: Maybe<Scalars["String"]>;
5114
+ /** Ends with constraint. Matches any values that end with the given string. */
5115
+ endsWith?: Maybe<Scalars["String"]>;
5116
+ /** Equals constraint. */
5117
+ eq?: Maybe<Scalars["String"]>;
5118
+ /** Equals case insensitive. Matches any values that matches the given string case insensitive. */
5119
+ eqIgnoreCase?: Maybe<Scalars["String"]>;
5120
+ /** In-array constraint. */
5121
+ in?: Maybe<Array<Scalars["String"]>>;
5122
+ /** Not-equals constraint. */
5123
+ neq?: Maybe<Scalars["String"]>;
5124
+ /** Not-equals case insensitive. Matches any values that don't match the given string case insensitive. */
5125
+ neqIgnoreCase?: Maybe<Scalars["String"]>;
5126
+ /** Not-in-array constraint. */
5127
+ nin?: Maybe<Array<Scalars["String"]>>;
5128
+ /** Doesn't contain constraint. Matches any values that don't contain the given string. */
5129
+ notContains?: Maybe<Scalars["String"]>;
5130
+ /** Doesn't contain case insensitive constraint. Matches any values that don't contain the given string case insensitive. */
5131
+ notContainsIgnoreCase?: Maybe<Scalars["String"]>;
5132
+ /** Doesn't end with constraint. Matches any values that don't end with the given string. */
5133
+ notEndsWith?: Maybe<Scalars["String"]>;
5134
+ /** Doesn't start with constraint. Matches any values that don't start with the given string. */
5135
+ notStartsWith?: Maybe<Scalars["String"]>;
5136
+ /** Starts with constraint. Matches any values that start with the given string. */
5137
+ startsWith?: Maybe<Scalars["String"]>;
5138
+ };
3937
5139
  /** The subscription of an organization. */
3938
5140
  export declare type Subscription = Node & {
3939
5141
  __typename?: "Subscription";
@@ -3985,6 +5187,12 @@ export declare type SubscriptionUpdateInput = {
3985
5187
  /** The subscription type of a pending change. Null if no change pending. */
3986
5188
  pendingChangeType?: Maybe<Scalars["String"]>;
3987
5189
  };
5190
+ /** Contains the requested relations. */
5191
+ export declare type SyncBatchResponse = {
5192
+ __typename?: "SyncBatchResponse";
5193
+ /** A JSON serialized collection of relations model object. */
5194
+ models: Scalars["String"];
5195
+ };
3988
5196
  /** Contains a delta sync. */
3989
5197
  export declare type SyncDeltaResponse = {
3990
5198
  __typename?: "SyncDeltaResponse";
@@ -4030,15 +5238,17 @@ export declare type Team = Node & {
4030
5238
  activeCycle?: Maybe<Cycle>;
4031
5239
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4032
5240
  archivedAt?: Maybe<Scalars["DateTime"]>;
4033
- /** Period after which automatically closed and completed issues are automatically archived in months. Null/undefined means disabled. */
4034
- autoArchivePeriod?: Maybe<Scalars["Float"]>;
5241
+ /** Period after which automatically closed and completed issues are automatically archived in months. */
5242
+ autoArchivePeriod: Scalars["Float"];
4035
5243
  /** Period after which issues are automatically closed in months. Null/undefined means disabled. */
4036
5244
  autoClosePeriod?: Maybe<Scalars["Float"]>;
4037
5245
  /** The canceled workflow state which auto closed issues will be set to. Defaults to the first canceled state. */
4038
5246
  autoCloseStateId?: Maybe<Scalars["String"]>;
5247
+ /** The team's color. */
5248
+ color?: Maybe<Scalars["String"]>;
4039
5249
  /** The time at which the entity was created. */
4040
5250
  createdAt: Scalars["DateTime"];
4041
- /** Calender feed (iCal) for cycles. */
5251
+ /** Calendar feed URL (iCal) for cycles. */
4042
5252
  cycleCalenderUrl: Scalars["String"];
4043
5253
  /** The cooldown time after each cycle in weeks. */
4044
5254
  cycleCooldownTime: Scalars["Float"];
@@ -4061,8 +5271,18 @@ export declare type Team = Node & {
4061
5271
  /** The default workflow state into which issues are set when they are opened by team members. */
4062
5272
  defaultIssueState?: Maybe<WorkflowState>;
4063
5273
  /** The default template to use for new issues created by members of the team. */
5274
+ defaultTemplateForMembers?: Maybe<Template>;
5275
+ /**
5276
+ * The id of the default template to use for new issues created by members of the team.
5277
+ * @deprecated Use defaultTemplateForMembers instead
5278
+ */
4064
5279
  defaultTemplateForMembersId?: Maybe<Scalars["String"]>;
4065
5280
  /** The default template to use for new issues created by non-members of the team. */
5281
+ defaultTemplateForNonMembers?: Maybe<Template>;
5282
+ /**
5283
+ * The id of the default template to use for new issues created by non-members of the team.
5284
+ * @deprecated Use defaultTemplateForNonMembers instead
5285
+ */
4066
5286
  defaultTemplateForNonMembersId?: Maybe<Scalars["String"]>;
4067
5287
  /** The team's description. */
4068
5288
  description?: Maybe<Scalars["String"]>;
@@ -4070,6 +5290,8 @@ export declare type Team = Node & {
4070
5290
  draftWorkflowState?: Maybe<WorkflowState>;
4071
5291
  /** Whether to group recent issue history entries. */
4072
5292
  groupIssueHistory: Scalars["Boolean"];
5293
+ /** The icon of the team. */
5294
+ icon?: Maybe<Scalars["String"]>;
4073
5295
  /** The unique identifier of the entity. */
4074
5296
  id: Scalars["ID"];
4075
5297
  /** Unique hash for the team to be used in invite URLs. */
@@ -4138,6 +5360,7 @@ export declare type Team = Node & {
4138
5360
  export declare type TeamCyclesArgs = {
4139
5361
  after?: Maybe<Scalars["String"]>;
4140
5362
  before?: Maybe<Scalars["String"]>;
5363
+ filter?: Maybe<CycleFilter>;
4141
5364
  first?: Maybe<Scalars["Int"]>;
4142
5365
  includeArchived?: Maybe<Scalars["Boolean"]>;
4143
5366
  last?: Maybe<Scalars["Int"]>;
@@ -4147,6 +5370,7 @@ export declare type TeamCyclesArgs = {
4147
5370
  export declare type TeamIssuesArgs = {
4148
5371
  after?: Maybe<Scalars["String"]>;
4149
5372
  before?: Maybe<Scalars["String"]>;
5373
+ filter?: Maybe<IssueFilter>;
4150
5374
  first?: Maybe<Scalars["Int"]>;
4151
5375
  includeArchived?: Maybe<Scalars["Boolean"]>;
4152
5376
  last?: Maybe<Scalars["Int"]>;
@@ -4156,6 +5380,7 @@ export declare type TeamIssuesArgs = {
4156
5380
  export declare type TeamLabelsArgs = {
4157
5381
  after?: Maybe<Scalars["String"]>;
4158
5382
  before?: Maybe<Scalars["String"]>;
5383
+ filter?: Maybe<IssueLabelFilter>;
4159
5384
  first?: Maybe<Scalars["Int"]>;
4160
5385
  includeArchived?: Maybe<Scalars["Boolean"]>;
4161
5386
  last?: Maybe<Scalars["Int"]>;
@@ -4165,6 +5390,7 @@ export declare type TeamLabelsArgs = {
4165
5390
  export declare type TeamMembersArgs = {
4166
5391
  after?: Maybe<Scalars["String"]>;
4167
5392
  before?: Maybe<Scalars["String"]>;
5393
+ filter?: Maybe<UserFilter>;
4168
5394
  first?: Maybe<Scalars["Int"]>;
4169
5395
  includeArchived?: Maybe<Scalars["Boolean"]>;
4170
5396
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -4184,6 +5410,7 @@ export declare type TeamMembershipsArgs = {
4184
5410
  export declare type TeamProjectsArgs = {
4185
5411
  after?: Maybe<Scalars["String"]>;
4186
5412
  before?: Maybe<Scalars["String"]>;
5413
+ filter?: Maybe<ProjectFilter>;
4187
5414
  first?: Maybe<Scalars["Int"]>;
4188
5415
  includeArchived?: Maybe<Scalars["Boolean"]>;
4189
5416
  last?: Maybe<Scalars["Int"]>;
@@ -4193,6 +5420,7 @@ export declare type TeamProjectsArgs = {
4193
5420
  export declare type TeamStatesArgs = {
4194
5421
  after?: Maybe<Scalars["String"]>;
4195
5422
  before?: Maybe<Scalars["String"]>;
5423
+ filter?: Maybe<WorkflowStateFilter>;
4196
5424
  first?: Maybe<Scalars["Int"]>;
4197
5425
  includeArchived?: Maybe<Scalars["Boolean"]>;
4198
5426
  last?: Maybe<Scalars["Int"]>;
@@ -4229,6 +5457,8 @@ export declare type TeamCreateInput = {
4229
5457
  autoClosePeriod?: Maybe<Scalars["Float"]>;
4230
5458
  /** The canceled workflow state which auto closed issues will be set to. */
4231
5459
  autoCloseStateId?: Maybe<Scalars["String"]>;
5460
+ /** The color of the team. */
5461
+ color?: Maybe<Scalars["String"]>;
4232
5462
  /** The cooldown time after each cycle in weeks. */
4233
5463
  cycleCooldownTime?: Maybe<Scalars["Int"]>;
4234
5464
  /** The duration of each cycle in weeks. */
@@ -4253,6 +5483,8 @@ export declare type TeamCreateInput = {
4253
5483
  description?: Maybe<Scalars["String"]>;
4254
5484
  /** Whether to group recent issue history entries. */
4255
5485
  groupIssueHistory?: Maybe<Scalars["Boolean"]>;
5486
+ /** The icon of the team. */
5487
+ icon?: Maybe<Scalars["String"]>;
4256
5488
  /** The identifier. If none is provided, the backend will generate one. */
4257
5489
  id?: Maybe<Scalars["String"]>;
4258
5490
  /** Whether to allow zeros in issues estimates. */
@@ -4286,6 +5518,27 @@ export declare type TeamEdge = {
4286
5518
  cursor: Scalars["String"];
4287
5519
  node: Team;
4288
5520
  };
5521
+ /** [Alpha] Project filtering options. */
5522
+ export declare type TeamFilter = {
5523
+ /** Compound filters, all of which need to be matched by the team. */
5524
+ and?: Maybe<Array<TeamFilter>>;
5525
+ /** Comparator for the created at date. */
5526
+ createdAt?: Maybe<DateComparator>;
5527
+ /** Comparator for the team description. */
5528
+ description?: Maybe<NullableStringComparator>;
5529
+ /** Comparator for the identifier. */
5530
+ id?: Maybe<IdComparator>;
5531
+ /** Filters that the teams issues must satisfy. */
5532
+ issues?: Maybe<IssueCollectionFilter>;
5533
+ /** Comparator for the team key. */
5534
+ key?: Maybe<StringComparator>;
5535
+ /** Comparator for the team name. */
5536
+ name?: Maybe<StringComparator>;
5537
+ /** Compound filters, one of which need to be matched by the team. */
5538
+ or?: Maybe<Array<TeamFilter>>;
5539
+ /** Comparator for the updated at date. */
5540
+ updatedAt?: Maybe<DateComparator>;
5541
+ };
4289
5542
  /** Defines the membership of a user to a team. */
4290
5543
  export declare type TeamMembership = Node & {
4291
5544
  __typename?: "TeamMembership";
@@ -4358,10 +5611,14 @@ export declare type TeamUpdateInput = {
4358
5611
  autoClosePeriod?: Maybe<Scalars["Float"]>;
4359
5612
  /** The canceled workflow state which auto closed issues will be set to. */
4360
5613
  autoCloseStateId?: Maybe<Scalars["String"]>;
5614
+ /** The color of the team. */
5615
+ color?: Maybe<Scalars["String"]>;
4361
5616
  /** The cooldown time after each cycle in weeks. */
4362
5617
  cycleCooldownTime?: Maybe<Scalars["Int"]>;
4363
5618
  /** The duration of each cycle in weeks. */
4364
5619
  cycleDuration?: Maybe<Scalars["Int"]>;
5620
+ /** Whether the first cycle should start in the current or the next week. */
5621
+ cycleEnabledStartWeek?: Maybe<Scalars["String"]>;
4365
5622
  /** Auto assign completed issues to current active cycle setting. */
4366
5623
  cycleIssueAutoAssignCompleted?: Maybe<Scalars["Boolean"]>;
4367
5624
  /** Auto assign started issues to current active cycle setting. */
@@ -4386,6 +5643,8 @@ export declare type TeamUpdateInput = {
4386
5643
  draftWorkflowStateId?: Maybe<Scalars["String"]>;
4387
5644
  /** Whether to group recent issue history entries. */
4388
5645
  groupIssueHistory?: Maybe<Scalars["Boolean"]>;
5646
+ /** The icon of the team. */
5647
+ icon?: Maybe<Scalars["String"]>;
4389
5648
  /** Whether to allow zeros in issues estimates. */
4390
5649
  issueEstimationAllowZero?: Maybe<Scalars["Boolean"]>;
4391
5650
  /** Whether to add additional points to the estimate scale. */
@@ -4421,7 +5680,7 @@ export declare type TeamUpdateInput = {
4421
5680
  /** How many upcoming cycles to create. */
4422
5681
  upcomingCycleCount?: Maybe<Scalars["Float"]>;
4423
5682
  };
4424
- /** A template object used for creating new issues faster. */
5683
+ /** A template object used for creating entities faster. */
4425
5684
  export declare type Template = Node & {
4426
5685
  __typename?: "Template";
4427
5686
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -4436,8 +5695,10 @@ export declare type Template = Node & {
4436
5695
  id: Scalars["ID"];
4437
5696
  /** The name of the template. */
4438
5697
  name: Scalars["String"];
4439
- /** The team that the template is associated with. */
4440
- team: Team;
5698
+ /** The organization that the template is associated with. If null, the template is associated with a particular team. */
5699
+ organization?: Maybe<Organization>;
5700
+ /** The team that the template is associated with. If null, the template is global to the workspace. */
5701
+ team?: Maybe<Team>;
4441
5702
  /** Template data. */
4442
5703
  templateData: Scalars["JSON"];
4443
5704
  /** The entity type this template is for. */
@@ -4461,8 +5722,8 @@ export declare type TemplateCreateInput = {
4461
5722
  id?: Maybe<Scalars["String"]>;
4462
5723
  /** The template name. */
4463
5724
  name: Scalars["String"];
4464
- /** The identifier or key of the team associated with the template. */
4465
- teamId: Scalars["String"];
5725
+ /** The identifier or key of the team associated with the template. If not given, the template will be shared across all teams. */
5726
+ teamId?: Maybe<Scalars["String"]>;
4466
5727
  /** The template data as JSON encoded attributes of the type of entity, such as an issue. */
4467
5728
  templateData: Scalars["JSON"];
4468
5729
  /** The template type, e.g. 'issue'. */
@@ -4488,9 +5749,30 @@ export declare type TemplateUpdateInput = {
4488
5749
  description?: Maybe<Scalars["String"]>;
4489
5750
  /** The template name. */
4490
5751
  name?: Maybe<Scalars["String"]>;
5752
+ /** The identifier or key of the team associated with the template. If set to null, the template will be shared across all teams. */
5753
+ teamId?: Maybe<Scalars["String"]>;
4491
5754
  /** The template data as JSON encoded attributes of the type of entity, such as an issue. */
4492
5755
  templateData?: Maybe<Scalars["JSON"]>;
4493
5756
  };
5757
+ /** Comparator for timeless dates. */
5758
+ export declare type TimelessDateComparator = {
5759
+ /** Equals constraint. */
5760
+ eq?: Maybe<Scalars["TimelessDate"]>;
5761
+ /** Greater-than constraint. Matches any values that are greater than the given value. */
5762
+ gt?: Maybe<Scalars["TimelessDate"]>;
5763
+ /** Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. */
5764
+ gte?: Maybe<Scalars["TimelessDate"]>;
5765
+ /** In-array constraint. */
5766
+ in?: Maybe<Array<Scalars["TimelessDate"]>>;
5767
+ /** Less-than constraint. Matches any values that are less than the given value. */
5768
+ lt?: Maybe<Scalars["TimelessDate"]>;
5769
+ /** Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. */
5770
+ lte?: Maybe<Scalars["TimelessDate"]>;
5771
+ /** Not-equals constraint. */
5772
+ neq?: Maybe<Scalars["TimelessDate"]>;
5773
+ /** Not-in-array constraint. */
5774
+ nin?: Maybe<Array<Scalars["TimelessDate"]>>;
5775
+ };
4494
5776
  export declare type TokenUserAccountAuthInput = {
4495
5777
  /** The email which to login via the magic login code. */
4496
5778
  email: Scalars["String"];
@@ -4523,6 +5805,8 @@ export declare type UpdateOrganizationInput = {
4523
5805
  /** The name of the organization. */
4524
5806
  name?: Maybe<Scalars["String"]>;
4525
5807
  /** Whether the organization is using project milestones. */
5808
+ reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
5809
+ /** Whether the organization is using project milestones. */
4526
5810
  roadmapEnabled?: Maybe<Scalars["Boolean"]>;
4527
5811
  /** The URL key of the organization. */
4528
5812
  urlKey?: Maybe<Scalars["String"]>;
@@ -4534,12 +5818,22 @@ export declare type UpdateUserInput = {
4534
5818
  admin?: Maybe<Scalars["Boolean"]>;
4535
5819
  /** The avatar image URL of the user. */
4536
5820
  avatarUrl?: Maybe<Scalars["String"]>;
5821
+ /** The user description or a short bio. */
5822
+ description?: Maybe<Scalars["String"]>;
4537
5823
  /** Reason for deactivation. */
4538
5824
  disableReason?: Maybe<Scalars["String"]>;
4539
5825
  /** The display name of the user. */
4540
5826
  displayName?: Maybe<Scalars["String"]>;
4541
5827
  /** The name of the user. */
4542
5828
  name?: Maybe<Scalars["String"]>;
5829
+ /** The emoji part of the user status. */
5830
+ statusEmoji?: Maybe<Scalars["String"]>;
5831
+ /** The label part of the user status. */
5832
+ statusLabel?: Maybe<Scalars["String"]>;
5833
+ /** When the user status should be cleared. */
5834
+ statusUntilAt?: Maybe<Scalars["DateTime"]>;
5835
+ /** The local timezone of the user. */
5836
+ timezone?: Maybe<Scalars["String"]>;
4543
5837
  };
4544
5838
  /** Object representing Google Cloud upload policy, plus additional data. */
4545
5839
  export declare type UploadFile = {
@@ -4592,6 +5886,8 @@ export declare type User = Node & {
4592
5886
  createdIssueCount: Scalars["Int"];
4593
5887
  /** Issues created by the user. */
4594
5888
  createdIssues: IssueConnection;
5889
+ /** A short description of the user, either its title or bio. */
5890
+ description?: Maybe<Scalars["String"]>;
4595
5891
  /** Reason why is the account disabled. */
4596
5892
  disableReason?: Maybe<Scalars["String"]>;
4597
5893
  /** The user's display (nick) name. Unique within each organization. */
@@ -4602,16 +5898,26 @@ export declare type User = Node & {
4602
5898
  id: Scalars["ID"];
4603
5899
  /** Unique hash for the user to be used in invite URLs. */
4604
5900
  inviteHash: Scalars["String"];
5901
+ /** Whether the user is the currently authenticated user. */
5902
+ isMe: Scalars["Boolean"];
4605
5903
  /** The last time the user was seen online. If null, the user is currently online. */
4606
5904
  lastSeen?: Maybe<Scalars["DateTime"]>;
4607
5905
  /** The user's full name. */
4608
5906
  name: Scalars["String"];
4609
- /** Organization in which the user belongs to. */
5907
+ /** Organization the user belongs to. */
4610
5908
  organization: Organization;
5909
+ /** The emoji to represent the user current status. */
5910
+ statusEmoji?: Maybe<Scalars["String"]>;
5911
+ /** The label of the user current status. */
5912
+ statusLabel?: Maybe<Scalars["String"]>;
5913
+ /** A date at which the user current status should be cleared. */
5914
+ statusUntilAt?: Maybe<Scalars["DateTime"]>;
4611
5915
  /** Memberships associated with the user. For easier access of the same data, use `teams` query. */
4612
5916
  teamMemberships: TeamMembershipConnection;
4613
5917
  /** Teams the user is part of. */
4614
5918
  teams: TeamConnection;
5919
+ /** The local timezone of the user. */
5920
+ timezone?: Maybe<Scalars["String"]>;
4615
5921
  /**
4616
5922
  * The last time at which the entity was updated. This is the same as the creation time if the
4617
5923
  * entity hasn't been update after creation.
@@ -4624,6 +5930,7 @@ export declare type User = Node & {
4624
5930
  export declare type UserAssignedIssuesArgs = {
4625
5931
  after?: Maybe<Scalars["String"]>;
4626
5932
  before?: Maybe<Scalars["String"]>;
5933
+ filter?: Maybe<IssueFilter>;
4627
5934
  first?: Maybe<Scalars["Int"]>;
4628
5935
  includeArchived?: Maybe<Scalars["Boolean"]>;
4629
5936
  last?: Maybe<Scalars["Int"]>;
@@ -4633,6 +5940,7 @@ export declare type UserAssignedIssuesArgs = {
4633
5940
  export declare type UserCreatedIssuesArgs = {
4634
5941
  after?: Maybe<Scalars["String"]>;
4635
5942
  before?: Maybe<Scalars["String"]>;
5943
+ filter?: Maybe<IssueFilter>;
4636
5944
  first?: Maybe<Scalars["Int"]>;
4637
5945
  includeArchived?: Maybe<Scalars["Boolean"]>;
4638
5946
  last?: Maybe<Scalars["Int"]>;
@@ -4651,6 +5959,7 @@ export declare type UserTeamMembershipsArgs = {
4651
5959
  export declare type UserTeamsArgs = {
4652
5960
  after?: Maybe<Scalars["String"]>;
4653
5961
  before?: Maybe<Scalars["String"]>;
5962
+ filter?: Maybe<TeamFilter>;
4654
5963
  first?: Maybe<Scalars["Int"]>;
4655
5964
  includeArchived?: Maybe<Scalars["Boolean"]>;
4656
5965
  last?: Maybe<Scalars["Int"]>;
@@ -4686,7 +5995,7 @@ export declare type UserAuthorizedApplication = {
4686
5995
  __typename?: "UserAuthorizedApplication";
4687
5996
  /** OAuth application's client ID. */
4688
5997
  clientId: Scalars["String"];
4689
- /** Whether the application was created by Linear */
5998
+ /** Whether the application was created by Linear. */
4690
5999
  createdByLinear: Scalars["Boolean"];
4691
6000
  /** Information about the application. */
4692
6001
  description?: Maybe<Scalars["String"]>;
@@ -4700,6 +6009,8 @@ export declare type UserAuthorizedApplication = {
4700
6009
  isAuthorized: Scalars["Boolean"];
4701
6010
  /** Application name. */
4702
6011
  name: Scalars["String"];
6012
+ /** Whether or not webhooks are enabled for the application. */
6013
+ webhooksEnabled: Scalars["Boolean"];
4703
6014
  };
4704
6015
  export declare type UserConnection = {
4705
6016
  __typename?: "UserConnection";
@@ -4713,10 +6024,34 @@ export declare type UserEdge = {
4713
6024
  cursor: Scalars["String"];
4714
6025
  node: User;
4715
6026
  };
6027
+ /** [Alpha] User filtering options. */
6028
+ export declare type UserFilter = {
6029
+ /** Compound filters, all of which need to be matched by the user. */
6030
+ and?: Maybe<Array<UserFilter>>;
6031
+ /** Filters that the users assigned issues must satisfy. */
6032
+ assignedIssues?: Maybe<IssueCollectionFilter>;
6033
+ /** Comparator for the created at date. */
6034
+ createdAt?: Maybe<DateComparator>;
6035
+ /** Comparator for the users display name. */
6036
+ displayName?: Maybe<StringComparator>;
6037
+ /** Comparator for the users email. */
6038
+ email?: Maybe<StringComparator>;
6039
+ /** Comparator for the identifier. */
6040
+ id?: Maybe<IdComparator>;
6041
+ /** Filter based on the currently authenticated user. Set to true to filter for the authenticated user, false for any other user. */
6042
+ isMe?: Maybe<BooleanComparator>;
6043
+ /** Comparator for the users name. */
6044
+ name?: Maybe<StringComparator>;
6045
+ /** Compound filters, one of which need to be matched by the user. */
6046
+ or?: Maybe<Array<UserFilter>>;
6047
+ /** Comparator for the updated at date. */
6048
+ updatedAt?: Maybe<DateComparator>;
6049
+ };
4716
6050
  /** The types of flags that the user can have. */
4717
6051
  export declare enum UserFlagType {
4718
6052
  AnalyticsWelcomeDismissed = "analyticsWelcomeDismissed",
4719
6053
  CanPlaySnake = "canPlaySnake",
6054
+ CanPlayTetris = "canPlayTetris",
4720
6055
  CompletedOnboarding = "completedOnboarding",
4721
6056
  CycleWelcomeDismissed = "cycleWelcomeDismissed",
4722
6057
  DesktopDownloadToastDismissed = "desktopDownloadToastDismissed",
@@ -4728,9 +6063,11 @@ export declare enum UserFlagType {
4728
6063
  EmptyMyIssuesDismissed = "emptyMyIssuesDismissed",
4729
6064
  FigmaPromptDismissed = "figmaPromptDismissed",
4730
6065
  ImportBannerDismissed = "importBannerDismissed",
6066
+ IssueMovePromptCompleted = "issueMovePromptCompleted",
4731
6067
  ListSelectionTip = "listSelectionTip",
4732
6068
  MigrateThemePreference = "migrateThemePreference",
4733
6069
  ProjectWelcomeDismissed = "projectWelcomeDismissed",
6070
+ SlackCommentReactionTipShown = "slackCommentReactionTipShown",
4734
6071
  TriageWelcomeDismissed = "triageWelcomeDismissed"
4735
6072
  }
4736
6073
  /** Operations that can be applied to UserFlagType */
@@ -4910,7 +6247,10 @@ export declare type Webhook = Node & {
4910
6247
  secret?: Maybe<Scalars["String"]>;
4911
6248
  /** The team that the webhook is associated with. */
4912
6249
  team: Team;
4913
- /** The ids of teams that the webhook is associated with. */
6250
+ /**
6251
+ * The ids of teams that the webhook is associated with.
6252
+ * @deprecated This field will no longer be used, and will return an empty array.
6253
+ */
4914
6254
  teamIds: Array<Scalars["String"]>;
4915
6255
  /**
4916
6256
  * The last time at which the entity was updated. This is the same as the creation time if the
@@ -4918,7 +6258,7 @@ export declare type Webhook = Node & {
4918
6258
  */
4919
6259
  updatedAt: Scalars["DateTime"];
4920
6260
  /** Webhook URL */
4921
- url: Scalars["String"];
6261
+ url?: Maybe<Scalars["String"]>;
4922
6262
  };
4923
6263
  export declare type WebhookConnection = {
4924
6264
  __typename?: "WebhookConnection";
@@ -4927,6 +6267,8 @@ export declare type WebhookConnection = {
4927
6267
  pageInfo: PageInfo;
4928
6268
  };
4929
6269
  export declare type WebhookCreateInput = {
6270
+ /** Whether this webhook is enabled for all public teams. */
6271
+ allPublicTeams?: Maybe<Scalars["Boolean"]>;
4930
6272
  /** Whether this webhook is enabled. */
4931
6273
  enabled?: Maybe<Scalars["Boolean"]>;
4932
6274
  /** The identifier. If none is provided, the backend will generate one. */
@@ -4938,7 +6280,7 @@ export declare type WebhookCreateInput = {
4938
6280
  /** An optional secret token used to sign the webhook payload. */
4939
6281
  secret?: Maybe<Scalars["String"]>;
4940
6282
  /** The identifier or key of the team associated with the Webhook. */
4941
- teamId: Scalars["String"];
6283
+ teamId?: Maybe<Scalars["String"]>;
4942
6284
  /** The URL that will be called on data changes. */
4943
6285
  url: Scalars["String"];
4944
6286
  };
@@ -5002,6 +6344,7 @@ export declare type WorkflowState = Node & {
5002
6344
  export declare type WorkflowStateIssuesArgs = {
5003
6345
  after?: Maybe<Scalars["String"]>;
5004
6346
  before?: Maybe<Scalars["String"]>;
6347
+ filter?: Maybe<IssueFilter>;
5005
6348
  first?: Maybe<Scalars["Int"]>;
5006
6349
  includeArchived?: Maybe<Scalars["Boolean"]>;
5007
6350
  last?: Maybe<Scalars["Int"]>;
@@ -5035,6 +6378,31 @@ export declare type WorkflowStateEdge = {
5035
6378
  cursor: Scalars["String"];
5036
6379
  node: WorkflowState;
5037
6380
  };
6381
+ /** [Alpha] Workflow state filtering options. */
6382
+ export declare type WorkflowStateFilter = {
6383
+ /** Compound filters, all of which need to be matched by the workflow state. */
6384
+ and?: Maybe<Array<WorkflowStateFilter>>;
6385
+ /** Comparator for the created at date. */
6386
+ createdAt?: Maybe<DateComparator>;
6387
+ /** Comparator for the workflow state description. */
6388
+ description?: Maybe<StringComparator>;
6389
+ /** Comparator for the identifier. */
6390
+ id?: Maybe<IdComparator>;
6391
+ /** Filters that the workflow states issues must satisfy. */
6392
+ issues?: Maybe<IssueCollectionFilter>;
6393
+ /** Comparator for the workflow state name. */
6394
+ name?: Maybe<StringComparator>;
6395
+ /** Compound filters, one of which need to be matched by the workflow state. */
6396
+ or?: Maybe<Array<WorkflowStateFilter>>;
6397
+ /** Comparator for the workflow state position. */
6398
+ position?: Maybe<NumberComparator>;
6399
+ /** Filters that the workflow states team must satisfy. */
6400
+ team?: Maybe<TeamFilter>;
6401
+ /** Comparator for the workflow state type. */
6402
+ type?: Maybe<StringComparator>;
6403
+ /** Comparator for the updated at date. */
6404
+ updatedAt?: Maybe<DateComparator>;
6405
+ };
5038
6406
  export declare type WorkflowStatePayload = {
5039
6407
  __typename?: "WorkflowStatePayload";
5040
6408
  /** The identifier of the last sync operation. */
@@ -5064,6 +6432,14 @@ export declare type ZendeskSettings = {
5064
6432
  /** The URL of the connected Zendesk organization. */
5065
6433
  url: Scalars["String"];
5066
6434
  };
6435
+ export declare type ZendeskSettingsInput = {
6436
+ /** The ID of the Linear bot user. */
6437
+ botUserId: Scalars["String"];
6438
+ /** The subdomain of the Zendesk organization being connected. */
6439
+ subdomain: Scalars["String"];
6440
+ /** The URL of the connected Zendesk organization. */
6441
+ url: Scalars["String"];
6442
+ };
5067
6443
  export declare type CommentFragment = {
5068
6444
  __typename?: "Comment";
5069
6445
  } & Pick<Comment, "url" | "body" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id"> & {
@@ -5083,7 +6459,7 @@ export declare type EmojiFragment = {
5083
6459
  };
5084
6460
  export declare type CustomViewFragment = {
5085
6461
  __typename?: "CustomView";
5086
- } & Pick<CustomView, "color" | "description" | "filters" | "icon" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "shared"> & {
6462
+ } & Pick<CustomView, "color" | "description" | "filters" | "icon" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id" | "shared" | "filterData"> & {
5087
6463
  team?: Maybe<{
5088
6464
  __typename?: "Team";
5089
6465
  } & Pick<Team, "id">>;
@@ -5091,6 +6467,19 @@ export declare type CustomViewFragment = {
5091
6467
  __typename?: "User";
5092
6468
  } & Pick<User, "id">;
5093
6469
  };
6470
+ export declare type DocumentFragment = {
6471
+ __typename?: "Document";
6472
+ } & Pick<Document, "color" | "contentData" | "content" | "title" | "slugId" | "icon" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
6473
+ project: {
6474
+ __typename?: "Project";
6475
+ } & Pick<Project, "id">;
6476
+ creator: {
6477
+ __typename?: "User";
6478
+ } & Pick<User, "id">;
6479
+ updatedBy: {
6480
+ __typename?: "User";
6481
+ } & Pick<User, "id">;
6482
+ };
5094
6483
  export declare type MilestoneFragment = {
5095
6484
  __typename?: "Milestone";
5096
6485
  } & Pick<Milestone, "updatedAt" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "id">;
@@ -5212,9 +6601,9 @@ export declare type WorkflowStateFragment = {
5212
6601
  export declare type TemplateFragment = {
5213
6602
  __typename?: "Template";
5214
6603
  } & Pick<Template, "templateData" | "description" | "type" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
5215
- team: {
6604
+ team?: Maybe<{
5216
6605
  __typename?: "Team";
5217
- } & Pick<Team, "id">;
6606
+ } & Pick<Team, "id">>;
5218
6607
  creator?: Maybe<{
5219
6608
  __typename?: "User";
5220
6609
  } & Pick<User, "id">>;
@@ -5228,10 +6617,20 @@ export declare type UserAccountFragment = {
5228
6617
  };
5229
6618
  export declare type UserFragment = {
5230
6619
  __typename?: "User";
5231
- } & Pick<User, "avatarUrl" | "createdIssueCount" | "disableReason" | "updatedAt" | "lastSeen" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "admin">;
6620
+ } & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "statusEmoji" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "admin" | "isMe">;
5232
6621
  export declare type PushSubscriptionFragment = {
5233
6622
  __typename?: "PushSubscription";
5234
6623
  } & Pick<PushSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
6624
+ export declare type DocumentVersionFragment = {
6625
+ __typename?: "DocumentVersion";
6626
+ } & Pick<DocumentVersion, "content" | "title" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "revision"> & {
6627
+ project: {
6628
+ __typename?: "Project";
6629
+ } & Pick<Project, "id">;
6630
+ creator: {
6631
+ __typename?: "User";
6632
+ } & Pick<User, "id">;
6633
+ };
5235
6634
  export declare type WebhookFragment = {
5236
6635
  __typename?: "Webhook";
5237
6636
  } & Pick<Webhook, "secret" | "teamIds" | "updatedAt" | "resourceTypes" | "archivedAt" | "createdAt" | "id" | "url" | "label" | "allPublicTeams" | "enabled"> & {
@@ -5296,7 +6695,7 @@ export declare type OrganizationInviteFragment = {
5296
6695
  };
5297
6696
  export declare type IssueFragment = {
5298
6697
  __typename?: "Issue";
5299
- } & Pick<Issue, "trashed" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
6698
+ } & Pick<Issue, "trashed" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "snoozedUntilAt" | "id"> & {
5300
6699
  cycle?: Maybe<{
5301
6700
  __typename?: "Cycle";
5302
6701
  } & Pick<Cycle, "id">>;
@@ -5327,10 +6726,16 @@ export declare type OrganizationFragment = {
5327
6726
  } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "periodUploadVolume" | "updatedAt" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "id" | "samlEnabled" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled">;
5328
6727
  export declare type TeamFragment = {
5329
6728
  __typename?: "Team";
5330
- } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "cycleLockToActive" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "cycleDuration" | "issueEstimationType" | "updatedAt" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled"> & {
6729
+ } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "cycleLockToActive" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "issueOrderingNoPriorityFirst" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled"> & {
5331
6730
  activeCycle?: Maybe<{
5332
6731
  __typename?: "Cycle";
5333
6732
  } & Pick<Cycle, "id">>;
6733
+ defaultTemplateForMembers?: Maybe<{
6734
+ __typename?: "Template";
6735
+ } & Pick<Template, "id">>;
6736
+ defaultTemplateForNonMembers?: Maybe<{
6737
+ __typename?: "Template";
6738
+ } & Pick<Template, "id">>;
5334
6739
  defaultIssueState?: Maybe<{
5335
6740
  __typename?: "WorkflowState";
5336
6741
  } & Pick<WorkflowState, "id">>;
@@ -5368,6 +6773,9 @@ export declare type ArchiveResponseFragment = {
5368
6773
  export declare type DependencyResponseFragment = {
5369
6774
  __typename?: "DependencyResponse";
5370
6775
  } & Pick<DependencyResponse, "dependencies">;
6776
+ export declare type SyncBatchResponseFragment = {
6777
+ __typename?: "SyncBatchResponse";
6778
+ } & Pick<SyncBatchResponse, "models">;
5371
6779
  export declare type TeamMembershipFragment = {
5372
6780
  __typename?: "TeamMembership";
5373
6781
  } & Pick<TeamMembership, "updatedAt" | "archivedAt" | "createdAt" | "id" | "owner"> & {
@@ -5420,16 +6828,29 @@ export declare type IntercomSettingsFragment = {
5420
6828
  export declare type IssueRelationHistoryPayloadFragment = {
5421
6829
  __typename?: "IssueRelationHistoryPayload";
5422
6830
  } & Pick<IssueRelationHistoryPayload, "identifier" | "type">;
6831
+ export declare type JiraSettingsFragment = {
6832
+ __typename?: "JiraSettings";
6833
+ } & {
6834
+ projects: Array<{
6835
+ __typename?: "JiraProjectData";
6836
+ } & JiraProjectDataFragment>;
6837
+ projectMapping?: Maybe<Array<{
6838
+ __typename?: "JiraLinearMapping";
6839
+ } & JiraLinearMappingFragment>>;
6840
+ };
5423
6841
  export declare type IssueLabelFragment = {
5424
6842
  __typename?: "IssueLabel";
5425
6843
  } & Pick<IssueLabel, "color" | "description" | "name" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
5426
- team: {
6844
+ team?: Maybe<{
5427
6845
  __typename?: "Team";
5428
- } & Pick<Team, "id">;
6846
+ } & Pick<Team, "id">>;
5429
6847
  creator?: Maybe<{
5430
6848
  __typename?: "User";
5431
6849
  } & Pick<User, "id">>;
5432
6850
  };
6851
+ export declare type JiraProjectDataFragment = {
6852
+ __typename?: "JiraProjectData";
6853
+ } & Pick<JiraProjectData, "id" | "key" | "name">;
5433
6854
  export declare type NotificationSubscriptionFragment = {
5434
6855
  __typename?: "NotificationSubscription";
5435
6856
  } & Pick<NotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "type" | "id"> & {
@@ -5445,7 +6866,7 @@ export declare type NotificationSubscriptionFragment = {
5445
6866
  };
5446
6867
  export declare type OauthClientFragment = {
5447
6868
  __typename?: "OauthClient";
5448
- } & Pick<OauthClient, "imageUrl" | "description" | "redirectUris" | "developer" | "clientId" | "name" | "clientSecret" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "developerUrl" | "publicEnabled">;
6869
+ } & Pick<OauthClient, "imageUrl" | "description" | "redirectUris" | "developer" | "clientId" | "name" | "clientSecret" | "updatedAt" | "webhookResourceTypes" | "archivedAt" | "createdAt" | "id" | "developerUrl" | "webhookUrl" | "publicEnabled">;
5449
6870
  export declare type FigmaEmbedFragment = {
5450
6871
  __typename?: "FigmaEmbed";
5451
6872
  } & Pick<FigmaEmbed, "lastModified" | "name" | "url" | "nodeName">;
@@ -5458,10 +6879,10 @@ export declare type UploadFileFragment = {
5458
6879
  };
5459
6880
  export declare type AuthorizedApplicationFragment = {
5460
6881
  __typename?: "AuthorizedApplication";
5461
- } & Pick<AuthorizedApplication, "name" | "imageUrl" | "description" | "developer" | "appId" | "clientId" | "scope" | "developerUrl">;
6882
+ } & Pick<AuthorizedApplication, "name" | "imageUrl" | "description" | "developer" | "appId" | "clientId" | "scope" | "developerUrl" | "webhooksEnabled">;
5462
6883
  export declare type UserAuthorizedApplicationFragment = {
5463
6884
  __typename?: "UserAuthorizedApplication";
5464
- } & Pick<UserAuthorizedApplication, "name" | "imageUrl" | "description" | "developer" | "clientId" | "developerUrl" | "createdByLinear" | "isAuthorized">;
6885
+ } & Pick<UserAuthorizedApplication, "name" | "imageUrl" | "description" | "developer" | "clientId" | "developerUrl" | "webhooksEnabled" | "createdByLinear" | "isAuthorized">;
5465
6886
  export declare type ApplicationFragment = {
5466
6887
  __typename?: "Application";
5467
6888
  } & Pick<Application, "name" | "imageUrl" | "description" | "developer" | "clientId" | "developerUrl">;
@@ -5496,6 +6917,9 @@ export declare type IntegrationSettingsFragment = {
5496
6917
  intercom?: Maybe<{
5497
6918
  __typename?: "IntercomSettings";
5498
6919
  } & IntercomSettingsFragment>;
6920
+ jira?: Maybe<{
6921
+ __typename?: "JiraSettings";
6922
+ } & JiraSettingsFragment>;
5499
6923
  sentry?: Maybe<{
5500
6924
  __typename?: "SentrySettings";
5501
6925
  } & SentrySettingsFragment>;
@@ -5511,7 +6935,7 @@ export declare type IntegrationSettingsFragment = {
5511
6935
  };
5512
6936
  export declare type SamlConfigurationFragment = {
5513
6937
  __typename?: "SamlConfiguration";
5514
- } & Pick<SamlConfiguration, "ssoBinding" | "allowedDomains" | "ssoEndpoint" | "ssoSignAlgo" | "ssoSigningCert">;
6938
+ } & Pick<SamlConfiguration, "ssoBinding" | "allowedDomains" | "ssoEndpoint" | "ssoSignAlgo" | "issuerEntityId" | "ssoSigningCert">;
5515
6939
  export declare type UserSettingsFragment = {
5516
6940
  __typename?: "UserSettings";
5517
6941
  } & Pick<UserSettings, "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id"> & {
@@ -5526,37 +6950,59 @@ export declare type SubscriptionFragment = {
5526
6950
  __typename?: "User";
5527
6951
  } & Pick<User, "id">>;
5528
6952
  };
6953
+ export declare type JiraLinearMappingFragment = {
6954
+ __typename?: "JiraLinearMapping";
6955
+ } & Pick<JiraLinearMapping, "jiraProjectId" | "linearTeamId">;
5529
6956
  export declare type FavoriteFragment = {
5530
6957
  __typename?: "Favorite";
5531
- } & Pick<Favorite, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "type" | "id"> & {
6958
+ } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "archivedAt" | "createdAt" | "type" | "id"> & {
6959
+ customView?: Maybe<{
6960
+ __typename?: "CustomView";
6961
+ } & Pick<CustomView, "id">>;
5532
6962
  cycle?: Maybe<{
5533
6963
  __typename?: "Cycle";
5534
6964
  } & Pick<Cycle, "id">>;
5535
- label?: Maybe<{
5536
- __typename?: "IssueLabel";
5537
- } & Pick<IssueLabel, "id">>;
6965
+ document?: Maybe<{
6966
+ __typename?: "Document";
6967
+ } & Pick<Document, "id">>;
5538
6968
  issue?: Maybe<{
5539
6969
  __typename?: "Issue";
5540
6970
  } & Pick<Issue, "id">>;
5541
- projectTeam?: Maybe<{
5542
- __typename?: "Project";
5543
- } & Pick<Project, "id">>;
6971
+ label?: Maybe<{
6972
+ __typename?: "IssueLabel";
6973
+ } & Pick<IssueLabel, "id">>;
5544
6974
  project?: Maybe<{
5545
6975
  __typename?: "Project";
5546
6976
  } & Pick<Project, "id">>;
6977
+ projectTeam?: Maybe<{
6978
+ __typename?: "Team";
6979
+ } & Pick<Team, "id">>;
5547
6980
  user: {
5548
6981
  __typename?: "User";
5549
6982
  } & Pick<User, "id">;
6983
+ parent?: Maybe<{
6984
+ __typename?: "Favorite";
6985
+ } & Pick<Favorite, "id">>;
5550
6986
  };
5551
6987
  export declare type ViewPreferencesFragment = {
5552
6988
  __typename?: "ViewPreferences";
5553
6989
  } & Pick<ViewPreferences, "updatedAt" | "archivedAt" | "createdAt" | "id" | "type" | "viewType">;
6990
+ export declare type AuditEntryFragment = {
6991
+ __typename?: "AuditEntry";
6992
+ } & Pick<AuditEntry, "metadata" | "countryCode" | "ip" | "actorId" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "type"> & {
6993
+ actor?: Maybe<{
6994
+ __typename?: "User";
6995
+ } & Pick<User, "id">>;
6996
+ };
5554
6997
  export declare type ZendeskSettingsFragment = {
5555
6998
  __typename?: "ZendeskSettings";
5556
6999
  } & Pick<ZendeskSettings, "botUserId" | "url" | "subdomain">;
5557
7000
  export declare type AttachmentFragment = {
5558
7001
  __typename?: "Attachment";
5559
- } & Pick<Attachment, "subtitle" | "title" | "metadata" | "groupBySource" | "source" | "url" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
7002
+ } & Pick<Attachment, "sourceType" | "subtitle" | "title" | "metadata" | "groupBySource" | "source" | "url" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
7003
+ creator?: Maybe<{
7004
+ __typename?: "User";
7005
+ } & Pick<User, "id">>;
5560
7006
  issue: {
5561
7007
  __typename?: "Issue";
5562
7008
  } & Pick<Issue, "id">;
@@ -5598,6 +7044,19 @@ export declare type AttachmentPayloadFragment = {
5598
7044
  __typename?: "Attachment";
5599
7045
  } & Pick<Attachment, "id">;
5600
7046
  };
7047
+ export declare type AuditEntryConnectionFragment = {
7048
+ __typename?: "AuditEntryConnection";
7049
+ } & {
7050
+ nodes: Array<{
7051
+ __typename?: "AuditEntry";
7052
+ } & AuditEntryFragment>;
7053
+ pageInfo: {
7054
+ __typename?: "PageInfo";
7055
+ } & PageInfoFragment;
7056
+ };
7057
+ export declare type AuditEntryTypeFragment = {
7058
+ __typename?: "AuditEntryType";
7059
+ } & Pick<AuditEntryType, "description" | "type">;
5601
7060
  export declare type AuthResolverResponseFragment = {
5602
7061
  __typename?: "AuthResolverResponse";
5603
7062
  } & Pick<AuthResolverResponse, "email" | "lastUsedOrganizationId" | "token" | "allowDomainAccess" | "id"> & {
@@ -5698,6 +7157,36 @@ export declare type CyclePayloadFragment = {
5698
7157
  export declare type DebugPayloadFragment = {
5699
7158
  __typename?: "DebugPayload";
5700
7159
  } & Pick<DebugPayload, "success">;
7160
+ export declare type DocumentConnectionFragment = {
7161
+ __typename?: "DocumentConnection";
7162
+ } & {
7163
+ nodes: Array<{
7164
+ __typename?: "Document";
7165
+ } & DocumentFragment>;
7166
+ pageInfo: {
7167
+ __typename?: "PageInfo";
7168
+ } & PageInfoFragment;
7169
+ };
7170
+ export declare type DocumentPayloadFragment = {
7171
+ __typename?: "DocumentPayload";
7172
+ } & Pick<DocumentPayload, "lastSyncId" | "success"> & {
7173
+ document: {
7174
+ __typename?: "Document";
7175
+ } & Pick<Document, "id">;
7176
+ };
7177
+ export declare type DocumentVersionConnectionFragment = {
7178
+ __typename?: "DocumentVersionConnection";
7179
+ } & {
7180
+ nodes: Array<{
7181
+ __typename?: "DocumentVersion";
7182
+ } & DocumentVersionFragment>;
7183
+ pageInfo: {
7184
+ __typename?: "PageInfo";
7185
+ } & PageInfoFragment;
7186
+ };
7187
+ export declare type EmailSubscribePayloadFragment = {
7188
+ __typename?: "EmailSubscribePayload";
7189
+ } & Pick<EmailSubscribePayload, "success">;
5701
7190
  export declare type EmailUnsubscribePayloadFragment = {
5702
7191
  __typename?: "EmailUnsubscribePayload";
5703
7192
  } & Pick<EmailUnsubscribePayload, "success">;
@@ -5751,6 +7240,16 @@ export declare type FigmaEmbedPayloadFragment = {
5751
7240
  __typename?: "FigmaEmbed";
5752
7241
  } & FigmaEmbedFragment>;
5753
7242
  };
7243
+ export declare type FrontAttachmentPayloadFragment = {
7244
+ __typename?: "FrontAttachmentPayload";
7245
+ } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
7246
+ export declare type GitHubCommitIntegrationPayloadFragment = {
7247
+ __typename?: "GitHubCommitIntegrationPayload";
7248
+ } & Pick<GitHubCommitIntegrationPayload, "lastSyncId" | "webhookSecret" | "success"> & {
7249
+ integration?: Maybe<{
7250
+ __typename?: "Integration";
7251
+ } & Pick<Integration, "id">>;
7252
+ };
5754
7253
  export declare type ImageUploadFromUrlPayloadFragment = {
5755
7254
  __typename?: "ImageUploadFromUrlPayload";
5756
7255
  } & Pick<ImageUploadFromUrlPayload, "url" | "lastSyncId" | "success">;
@@ -5781,19 +7280,16 @@ export declare type IntegrationResourceConnectionFragment = {
5781
7280
  __typename?: "PageInfo";
5782
7281
  } & PageInfoFragment;
5783
7282
  };
5784
- export declare type InviteDataFragment = {
5785
- __typename?: "InviteData";
5786
- } & Pick<InviteData, "avatarURLs" | "teamIds" | "teamNames" | "organizationDomain" | "organizationLogoUrl" | "inviterName" | "organizationName" | "userCount">;
5787
- export declare type InvitePagePayloadFragment = {
5788
- __typename?: "InvitePagePayload";
5789
- } & Pick<InvitePagePayload, "success"> & {
5790
- inviteData?: Maybe<{
5791
- __typename?: "InviteData";
5792
- } & InviteDataFragment>;
5793
- };
5794
7283
  export declare type InvoiceFragment = {
5795
7284
  __typename?: "Invoice";
5796
7285
  } & Pick<Invoice, "url" | "created" | "dueDate" | "total" | "status">;
7286
+ export declare type IssueBatchPayloadFragment = {
7287
+ __typename?: "IssueBatchPayload";
7288
+ } & Pick<IssueBatchPayload, "lastSyncId" | "success"> & {
7289
+ issues: Array<{
7290
+ __typename?: "Issue";
7291
+ } & IssueFragment>;
7292
+ };
5797
7293
  export declare type IssueConnectionFragment = {
5798
7294
  __typename?: "IssueConnection";
5799
7295
  } & {
@@ -5981,12 +7477,15 @@ export declare type OrganizationInviteConnectionFragment = {
5981
7477
  __typename?: "PageInfo";
5982
7478
  } & PageInfoFragment;
5983
7479
  };
7480
+ export declare type OrganizationInviteDetailsPayloadFragment = {
7481
+ __typename?: "OrganizationInviteDetailsPayload";
7482
+ } & Pick<OrganizationInviteDetailsPayload, "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
5984
7483
  export declare type OrganizationInvitePayloadFragment = {
5985
7484
  __typename?: "OrganizationInvitePayload";
5986
7485
  } & Pick<OrganizationInvitePayload, "lastSyncId" | "success"> & {
5987
7486
  organizationInvite: {
5988
7487
  __typename?: "OrganizationInvite";
5989
- } & OrganizationInviteFragment;
7488
+ } & Pick<OrganizationInvite, "id">;
5990
7489
  };
5991
7490
  export declare type OrganizationPayloadFragment = {
5992
7491
  __typename?: "OrganizationPayload";
@@ -6064,13 +7563,6 @@ export declare type ReactionPayloadFragment = {
6064
7563
  export declare type RotateSecretPayloadFragment = {
6065
7564
  __typename?: "RotateSecretPayload";
6066
7565
  } & Pick<RotateSecretPayload, "lastSyncId" | "success">;
6067
- export declare type SearchResultPayloadFragment = {
6068
- __typename?: "SearchResultPayload";
6069
- } & Pick<SearchResultPayload, "issueIds" | "totalCount"> & {
6070
- archivePayload: {
6071
- __typename?: "ArchiveResponse";
6072
- } & ArchiveResponseFragment;
6073
- };
6074
7566
  export declare type SsoUrlFromEmailResponseFragment = {
6075
7567
  __typename?: "SsoUrlFromEmailResponse";
6076
7568
  } & Pick<SsoUrlFromEmailResponse, "samlSsoUrl" | "success">;
@@ -6217,6 +7709,22 @@ export declare type WorkflowStatePayloadFragment = {
6217
7709
  __typename?: "WorkflowState";
6218
7710
  } & Pick<WorkflowState, "id">;
6219
7711
  };
7712
+ export declare type AdministrableTeamsQueryVariables = Exact<{
7713
+ after?: Maybe<Scalars["String"]>;
7714
+ before?: Maybe<Scalars["String"]>;
7715
+ filter?: Maybe<TeamFilter>;
7716
+ first?: Maybe<Scalars["Int"]>;
7717
+ includeArchived?: Maybe<Scalars["Boolean"]>;
7718
+ last?: Maybe<Scalars["Int"]>;
7719
+ orderBy?: Maybe<PaginationOrderBy>;
7720
+ }>;
7721
+ export declare type AdministrableTeamsQuery = {
7722
+ __typename?: "Query";
7723
+ } & {
7724
+ administrableTeams: {
7725
+ __typename?: "TeamConnection";
7726
+ } & TeamConnectionFragment;
7727
+ };
6220
7728
  export declare type ApplicationWithAuthorizationQueryVariables = Exact<{
6221
7729
  clientId: Scalars["String"];
6222
7730
  redirectUri?: Maybe<Scalars["String"]>;
@@ -6253,6 +7761,7 @@ export declare type AttachmentIssue_AttachmentsQueryVariables = Exact<{
6253
7761
  id: Scalars["String"];
6254
7762
  after?: Maybe<Scalars["String"]>;
6255
7763
  before?: Maybe<Scalars["String"]>;
7764
+ filter?: Maybe<AttachmentFilter>;
6256
7765
  first?: Maybe<Scalars["Int"]>;
6257
7766
  includeArchived?: Maybe<Scalars["Boolean"]>;
6258
7767
  last?: Maybe<Scalars["Int"]>;
@@ -6273,6 +7782,7 @@ export declare type AttachmentIssue_ChildrenQueryVariables = Exact<{
6273
7782
  id: Scalars["String"];
6274
7783
  after?: Maybe<Scalars["String"]>;
6275
7784
  before?: Maybe<Scalars["String"]>;
7785
+ filter?: Maybe<IssueFilter>;
6276
7786
  first?: Maybe<Scalars["Int"]>;
6277
7787
  includeArchived?: Maybe<Scalars["Boolean"]>;
6278
7788
  last?: Maybe<Scalars["Int"]>;
@@ -6293,6 +7803,7 @@ export declare type AttachmentIssue_CommentsQueryVariables = Exact<{
6293
7803
  id: Scalars["String"];
6294
7804
  after?: Maybe<Scalars["String"]>;
6295
7805
  before?: Maybe<Scalars["String"]>;
7806
+ filter?: Maybe<CommentFilter>;
6296
7807
  first?: Maybe<Scalars["Int"]>;
6297
7808
  includeArchived?: Maybe<Scalars["Boolean"]>;
6298
7809
  last?: Maybe<Scalars["Int"]>;
@@ -6353,6 +7864,7 @@ export declare type AttachmentIssue_LabelsQueryVariables = Exact<{
6353
7864
  id: Scalars["String"];
6354
7865
  after?: Maybe<Scalars["String"]>;
6355
7866
  before?: Maybe<Scalars["String"]>;
7867
+ filter?: Maybe<IssueLabelFilter>;
6356
7868
  first?: Maybe<Scalars["Int"]>;
6357
7869
  includeArchived?: Maybe<Scalars["Boolean"]>;
6358
7870
  last?: Maybe<Scalars["Int"]>;
@@ -6393,6 +7905,7 @@ export declare type AttachmentIssue_SubscribersQueryVariables = Exact<{
6393
7905
  id: Scalars["String"];
6394
7906
  after?: Maybe<Scalars["String"]>;
6395
7907
  before?: Maybe<Scalars["String"]>;
7908
+ filter?: Maybe<UserFilter>;
6396
7909
  first?: Maybe<Scalars["Int"]>;
6397
7910
  includeArchived?: Maybe<Scalars["Boolean"]>;
6398
7911
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -6413,6 +7926,7 @@ export declare type AttachmentIssue_SubscribersQuery = {
6413
7926
  export declare type AttachmentsQueryVariables = Exact<{
6414
7927
  after?: Maybe<Scalars["String"]>;
6415
7928
  before?: Maybe<Scalars["String"]>;
7929
+ filter?: Maybe<AttachmentFilter>;
6416
7930
  first?: Maybe<Scalars["Int"]>;
6417
7931
  includeArchived?: Maybe<Scalars["Boolean"]>;
6418
7932
  last?: Maybe<Scalars["Int"]>;
@@ -6441,6 +7955,32 @@ export declare type AttachmentsForUrlQuery = {
6441
7955
  __typename?: "AttachmentConnection";
6442
7956
  } & AttachmentConnectionFragment;
6443
7957
  };
7958
+ export declare type AuditEntriesQueryVariables = Exact<{
7959
+ after?: Maybe<Scalars["String"]>;
7960
+ before?: Maybe<Scalars["String"]>;
7961
+ filter?: Maybe<AuditEntryFilter>;
7962
+ first?: Maybe<Scalars["Int"]>;
7963
+ includeArchived?: Maybe<Scalars["Boolean"]>;
7964
+ last?: Maybe<Scalars["Int"]>;
7965
+ orderBy?: Maybe<PaginationOrderBy>;
7966
+ }>;
7967
+ export declare type AuditEntriesQuery = {
7968
+ __typename?: "Query";
7969
+ } & {
7970
+ auditEntries: {
7971
+ __typename?: "AuditEntryConnection";
7972
+ } & AuditEntryConnectionFragment;
7973
+ };
7974
+ export declare type AuditEntryTypesQueryVariables = Exact<{
7975
+ [key: string]: never;
7976
+ }>;
7977
+ export declare type AuditEntryTypesQuery = {
7978
+ __typename?: "Query";
7979
+ } & {
7980
+ auditEntryTypes: Array<{
7981
+ __typename?: "AuditEntryType";
7982
+ } & AuditEntryTypeFragment>;
7983
+ };
6444
7984
  export declare type AuthorizedApplicationsQueryVariables = Exact<{
6445
7985
  [key: string]: never;
6446
7986
  }>;
@@ -6526,6 +8066,7 @@ export declare type CommentQuery = {
6526
8066
  export declare type CommentsQueryVariables = Exact<{
6527
8067
  after?: Maybe<Scalars["String"]>;
6528
8068
  before?: Maybe<Scalars["String"]>;
8069
+ filter?: Maybe<CommentFilter>;
6529
8070
  first?: Maybe<Scalars["Int"]>;
6530
8071
  includeArchived?: Maybe<Scalars["Boolean"]>;
6531
8072
  last?: Maybe<Scalars["Int"]>;
@@ -6577,6 +8118,7 @@ export declare type Cycle_IssuesQueryVariables = Exact<{
6577
8118
  id: Scalars["String"];
6578
8119
  after?: Maybe<Scalars["String"]>;
6579
8120
  before?: Maybe<Scalars["String"]>;
8121
+ filter?: Maybe<IssueFilter>;
6580
8122
  first?: Maybe<Scalars["Int"]>;
6581
8123
  includeArchived?: Maybe<Scalars["Boolean"]>;
6582
8124
  last?: Maybe<Scalars["Int"]>;
@@ -6597,6 +8139,7 @@ export declare type Cycle_UncompletedIssuesUponCloseQueryVariables = Exact<{
6597
8139
  id: Scalars["String"];
6598
8140
  after?: Maybe<Scalars["String"]>;
6599
8141
  before?: Maybe<Scalars["String"]>;
8142
+ filter?: Maybe<IssueFilter>;
6600
8143
  first?: Maybe<Scalars["Int"]>;
6601
8144
  includeArchived?: Maybe<Scalars["Boolean"]>;
6602
8145
  last?: Maybe<Scalars["Int"]>;
@@ -6616,6 +8159,7 @@ export declare type Cycle_UncompletedIssuesUponCloseQuery = {
6616
8159
  export declare type CyclesQueryVariables = Exact<{
6617
8160
  after?: Maybe<Scalars["String"]>;
6618
8161
  before?: Maybe<Scalars["String"]>;
8162
+ filter?: Maybe<CycleFilter>;
6619
8163
  first?: Maybe<Scalars["Int"]>;
6620
8164
  includeArchived?: Maybe<Scalars["Boolean"]>;
6621
8165
  last?: Maybe<Scalars["Int"]>;
@@ -6628,6 +8172,31 @@ export declare type CyclesQuery = {
6628
8172
  __typename?: "CycleConnection";
6629
8173
  } & CycleConnectionFragment;
6630
8174
  };
8175
+ export declare type DocumentQueryVariables = Exact<{
8176
+ id: Scalars["String"];
8177
+ }>;
8178
+ export declare type DocumentQuery = {
8179
+ __typename?: "Query";
8180
+ } & {
8181
+ document: {
8182
+ __typename?: "Document";
8183
+ } & DocumentFragment;
8184
+ };
8185
+ export declare type DocumentsQueryVariables = Exact<{
8186
+ after?: Maybe<Scalars["String"]>;
8187
+ before?: Maybe<Scalars["String"]>;
8188
+ first?: Maybe<Scalars["Int"]>;
8189
+ includeArchived?: Maybe<Scalars["Boolean"]>;
8190
+ last?: Maybe<Scalars["Int"]>;
8191
+ orderBy?: Maybe<PaginationOrderBy>;
8192
+ }>;
8193
+ export declare type DocumentsQuery = {
8194
+ __typename?: "Query";
8195
+ } & {
8196
+ documents: {
8197
+ __typename?: "DocumentConnection";
8198
+ } & DocumentConnectionFragment;
8199
+ };
6631
8200
  export declare type EmojiQueryVariables = Exact<{
6632
8201
  id: Scalars["String"];
6633
8202
  }>;
@@ -6663,6 +8232,26 @@ export declare type FavoriteQuery = {
6663
8232
  __typename?: "Favorite";
6664
8233
  } & FavoriteFragment;
6665
8234
  };
8235
+ export declare type Favorite_ChildrenQueryVariables = Exact<{
8236
+ id: Scalars["String"];
8237
+ after?: Maybe<Scalars["String"]>;
8238
+ before?: Maybe<Scalars["String"]>;
8239
+ first?: Maybe<Scalars["Int"]>;
8240
+ includeArchived?: Maybe<Scalars["Boolean"]>;
8241
+ last?: Maybe<Scalars["Int"]>;
8242
+ orderBy?: Maybe<PaginationOrderBy>;
8243
+ }>;
8244
+ export declare type Favorite_ChildrenQuery = {
8245
+ __typename?: "Query";
8246
+ } & {
8247
+ favorite: {
8248
+ __typename?: "Favorite";
8249
+ } & {
8250
+ children: {
8251
+ __typename?: "FavoriteConnection";
8252
+ } & FavoriteConnectionFragment;
8253
+ };
8254
+ };
6666
8255
  export declare type FavoritesQueryVariables = Exact<{
6667
8256
  after?: Maybe<Scalars["String"]>;
6668
8257
  before?: Maybe<Scalars["String"]>;
@@ -6729,32 +8318,6 @@ export declare type IntegrationsQuery = {
6729
8318
  __typename?: "IntegrationConnection";
6730
8319
  } & IntegrationConnectionFragment;
6731
8320
  };
6732
- export declare type InviteInfoQueryVariables = Exact<{
6733
- teamHash?: Maybe<Scalars["String"]>;
6734
- userHash: Scalars["String"];
6735
- }>;
6736
- export declare type InviteInfoQuery = {
6737
- __typename?: "Query";
6738
- } & {
6739
- inviteInfo: {
6740
- __typename?: "InvitePagePayload";
6741
- } & InvitePagePayloadFragment;
6742
- };
6743
- export declare type InviteInfo_InviteDataQueryVariables = Exact<{
6744
- teamHash?: Maybe<Scalars["String"]>;
6745
- userHash: Scalars["String"];
6746
- }>;
6747
- export declare type InviteInfo_InviteDataQuery = {
6748
- __typename?: "Query";
6749
- } & {
6750
- inviteInfo: {
6751
- __typename?: "InvitePagePayload";
6752
- } & {
6753
- inviteData?: Maybe<{
6754
- __typename?: "InviteData";
6755
- } & InviteDataFragment>;
6756
- };
6757
- };
6758
8321
  export declare type IssueQueryVariables = Exact<{
6759
8322
  id: Scalars["String"];
6760
8323
  }>;
@@ -6769,6 +8332,7 @@ export declare type Issue_AttachmentsQueryVariables = Exact<{
6769
8332
  id: Scalars["String"];
6770
8333
  after?: Maybe<Scalars["String"]>;
6771
8334
  before?: Maybe<Scalars["String"]>;
8335
+ filter?: Maybe<AttachmentFilter>;
6772
8336
  first?: Maybe<Scalars["Int"]>;
6773
8337
  includeArchived?: Maybe<Scalars["Boolean"]>;
6774
8338
  last?: Maybe<Scalars["Int"]>;
@@ -6789,6 +8353,7 @@ export declare type Issue_ChildrenQueryVariables = Exact<{
6789
8353
  id: Scalars["String"];
6790
8354
  after?: Maybe<Scalars["String"]>;
6791
8355
  before?: Maybe<Scalars["String"]>;
8356
+ filter?: Maybe<IssueFilter>;
6792
8357
  first?: Maybe<Scalars["Int"]>;
6793
8358
  includeArchived?: Maybe<Scalars["Boolean"]>;
6794
8359
  last?: Maybe<Scalars["Int"]>;
@@ -6809,6 +8374,7 @@ export declare type Issue_CommentsQueryVariables = Exact<{
6809
8374
  id: Scalars["String"];
6810
8375
  after?: Maybe<Scalars["String"]>;
6811
8376
  before?: Maybe<Scalars["String"]>;
8377
+ filter?: Maybe<CommentFilter>;
6812
8378
  first?: Maybe<Scalars["Int"]>;
6813
8379
  includeArchived?: Maybe<Scalars["Boolean"]>;
6814
8380
  last?: Maybe<Scalars["Int"]>;
@@ -6869,6 +8435,7 @@ export declare type Issue_LabelsQueryVariables = Exact<{
6869
8435
  id: Scalars["String"];
6870
8436
  after?: Maybe<Scalars["String"]>;
6871
8437
  before?: Maybe<Scalars["String"]>;
8438
+ filter?: Maybe<IssueLabelFilter>;
6872
8439
  first?: Maybe<Scalars["Int"]>;
6873
8440
  includeArchived?: Maybe<Scalars["Boolean"]>;
6874
8441
  last?: Maybe<Scalars["Int"]>;
@@ -6909,6 +8476,7 @@ export declare type Issue_SubscribersQueryVariables = Exact<{
6909
8476
  id: Scalars["String"];
6910
8477
  after?: Maybe<Scalars["String"]>;
6911
8478
  before?: Maybe<Scalars["String"]>;
8479
+ filter?: Maybe<UserFilter>;
6912
8480
  first?: Maybe<Scalars["Int"]>;
6913
8481
  includeArchived?: Maybe<Scalars["Boolean"]>;
6914
8482
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -6950,6 +8518,7 @@ export declare type IssueLabel_IssuesQueryVariables = Exact<{
6950
8518
  id: Scalars["String"];
6951
8519
  after?: Maybe<Scalars["String"]>;
6952
8520
  before?: Maybe<Scalars["String"]>;
8521
+ filter?: Maybe<IssueFilter>;
6953
8522
  first?: Maybe<Scalars["Int"]>;
6954
8523
  includeArchived?: Maybe<Scalars["Boolean"]>;
6955
8524
  last?: Maybe<Scalars["Int"]>;
@@ -6969,6 +8538,7 @@ export declare type IssueLabel_IssuesQuery = {
6969
8538
  export declare type IssueLabelsQueryVariables = Exact<{
6970
8539
  after?: Maybe<Scalars["String"]>;
6971
8540
  before?: Maybe<Scalars["String"]>;
8541
+ filter?: Maybe<IssueLabelFilter>;
6972
8542
  first?: Maybe<Scalars["Int"]>;
6973
8543
  includeArchived?: Maybe<Scalars["Boolean"]>;
6974
8544
  last?: Maybe<Scalars["Int"]>;
@@ -7019,6 +8589,7 @@ export declare type IssueRelationsQuery = {
7019
8589
  export declare type IssueSearchQueryVariables = Exact<{
7020
8590
  after?: Maybe<Scalars["String"]>;
7021
8591
  before?: Maybe<Scalars["String"]>;
8592
+ filter?: Maybe<IssueFilter>;
7022
8593
  first?: Maybe<Scalars["Int"]>;
7023
8594
  includeArchived?: Maybe<Scalars["Boolean"]>;
7024
8595
  last?: Maybe<Scalars["Int"]>;
@@ -7035,6 +8606,7 @@ export declare type IssueSearchQuery = {
7035
8606
  export declare type IssuesQueryVariables = Exact<{
7036
8607
  after?: Maybe<Scalars["String"]>;
7037
8608
  before?: Maybe<Scalars["String"]>;
8609
+ filter?: Maybe<IssueFilter>;
7038
8610
  first?: Maybe<Scalars["Int"]>;
7039
8611
  includeArchived?: Maybe<Scalars["Boolean"]>;
7040
8612
  last?: Maybe<Scalars["Int"]>;
@@ -7061,6 +8633,7 @@ export declare type Milestone_ProjectsQueryVariables = Exact<{
7061
8633
  id: Scalars["String"];
7062
8634
  after?: Maybe<Scalars["String"]>;
7063
8635
  before?: Maybe<Scalars["String"]>;
8636
+ filter?: Maybe<ProjectFilter>;
7064
8637
  first?: Maybe<Scalars["Int"]>;
7065
8638
  includeArchived?: Maybe<Scalars["Boolean"]>;
7066
8639
  last?: Maybe<Scalars["Int"]>;
@@ -7080,6 +8653,7 @@ export declare type Milestone_ProjectsQuery = {
7080
8653
  export declare type MilestonesQueryVariables = Exact<{
7081
8654
  after?: Maybe<Scalars["String"]>;
7082
8655
  before?: Maybe<Scalars["String"]>;
8656
+ filter?: Maybe<MilestoneFilter>;
7083
8657
  first?: Maybe<Scalars["Int"]>;
7084
8658
  includeArchived?: Maybe<Scalars["Boolean"]>;
7085
8659
  last?: Maybe<Scalars["Int"]>;
@@ -7150,30 +8724,51 @@ export declare type OrganizationQuery = {
7150
8724
  } & {
7151
8725
  organization: {
7152
8726
  __typename?: "Organization";
7153
- } & OrganizationFragment;
8727
+ } & OrganizationFragment;
8728
+ };
8729
+ export declare type Organization_IntegrationsQueryVariables = Exact<{
8730
+ after?: Maybe<Scalars["String"]>;
8731
+ before?: Maybe<Scalars["String"]>;
8732
+ first?: Maybe<Scalars["Int"]>;
8733
+ includeArchived?: Maybe<Scalars["Boolean"]>;
8734
+ last?: Maybe<Scalars["Int"]>;
8735
+ orderBy?: Maybe<PaginationOrderBy>;
8736
+ }>;
8737
+ export declare type Organization_IntegrationsQuery = {
8738
+ __typename?: "Query";
8739
+ } & {
8740
+ organization: {
8741
+ __typename?: "Organization";
8742
+ } & {
8743
+ integrations: {
8744
+ __typename?: "IntegrationConnection";
8745
+ } & IntegrationConnectionFragment;
8746
+ };
7154
8747
  };
7155
- export declare type Organization_IntegrationsQueryVariables = Exact<{
8748
+ export declare type Organization_LabelsQueryVariables = Exact<{
7156
8749
  after?: Maybe<Scalars["String"]>;
7157
8750
  before?: Maybe<Scalars["String"]>;
8751
+ filter?: Maybe<IssueLabelFilter>;
7158
8752
  first?: Maybe<Scalars["Int"]>;
7159
8753
  includeArchived?: Maybe<Scalars["Boolean"]>;
7160
8754
  last?: Maybe<Scalars["Int"]>;
7161
8755
  orderBy?: Maybe<PaginationOrderBy>;
7162
8756
  }>;
7163
- export declare type Organization_IntegrationsQuery = {
8757
+ export declare type Organization_LabelsQuery = {
7164
8758
  __typename?: "Query";
7165
8759
  } & {
7166
8760
  organization: {
7167
8761
  __typename?: "Organization";
7168
8762
  } & {
7169
- integrations: {
7170
- __typename?: "IntegrationConnection";
7171
- } & IntegrationConnectionFragment;
8763
+ labels: {
8764
+ __typename?: "IssueLabelConnection";
8765
+ } & IssueLabelConnectionFragment;
7172
8766
  };
7173
8767
  };
7174
8768
  export declare type Organization_MilestonesQueryVariables = Exact<{
7175
8769
  after?: Maybe<Scalars["String"]>;
7176
8770
  before?: Maybe<Scalars["String"]>;
8771
+ filter?: Maybe<MilestoneFilter>;
7177
8772
  first?: Maybe<Scalars["Int"]>;
7178
8773
  includeArchived?: Maybe<Scalars["Boolean"]>;
7179
8774
  last?: Maybe<Scalars["Int"]>;
@@ -7193,6 +8788,7 @@ export declare type Organization_MilestonesQuery = {
7193
8788
  export declare type Organization_TeamsQueryVariables = Exact<{
7194
8789
  after?: Maybe<Scalars["String"]>;
7195
8790
  before?: Maybe<Scalars["String"]>;
8791
+ filter?: Maybe<TeamFilter>;
7196
8792
  first?: Maybe<Scalars["Int"]>;
7197
8793
  includeArchived?: Maybe<Scalars["Boolean"]>;
7198
8794
  last?: Maybe<Scalars["Int"]>;
@@ -7209,6 +8805,25 @@ export declare type Organization_TeamsQuery = {
7209
8805
  } & TeamConnectionFragment;
7210
8806
  };
7211
8807
  };
8808
+ export declare type Organization_TemplatesQueryVariables = Exact<{
8809
+ after?: Maybe<Scalars["String"]>;
8810
+ before?: Maybe<Scalars["String"]>;
8811
+ first?: Maybe<Scalars["Int"]>;
8812
+ includeArchived?: Maybe<Scalars["Boolean"]>;
8813
+ last?: Maybe<Scalars["Int"]>;
8814
+ orderBy?: Maybe<PaginationOrderBy>;
8815
+ }>;
8816
+ export declare type Organization_TemplatesQuery = {
8817
+ __typename?: "Query";
8818
+ } & {
8819
+ organization: {
8820
+ __typename?: "Organization";
8821
+ } & {
8822
+ templates: {
8823
+ __typename?: "TemplateConnection";
8824
+ } & TemplateConnectionFragment;
8825
+ };
8826
+ };
7212
8827
  export declare type Organization_UsersQueryVariables = Exact<{
7213
8828
  after?: Maybe<Scalars["String"]>;
7214
8829
  before?: Maybe<Scalars["String"]>;
@@ -7246,28 +8861,18 @@ export declare type OrganizationInviteQuery = {
7246
8861
  __typename?: "Query";
7247
8862
  } & {
7248
8863
  organizationInvite: {
7249
- __typename?: "IssueLabel";
7250
- } & IssueLabelFragment;
8864
+ __typename?: "OrganizationInvite";
8865
+ } & OrganizationInviteFragment;
7251
8866
  };
7252
- export declare type OrganizationInvite_IssuesQueryVariables = Exact<{
8867
+ export declare type OrganizationInviteDetailsQueryVariables = Exact<{
7253
8868
  id: Scalars["String"];
7254
- after?: Maybe<Scalars["String"]>;
7255
- before?: Maybe<Scalars["String"]>;
7256
- first?: Maybe<Scalars["Int"]>;
7257
- includeArchived?: Maybe<Scalars["Boolean"]>;
7258
- last?: Maybe<Scalars["Int"]>;
7259
- orderBy?: Maybe<PaginationOrderBy>;
7260
8869
  }>;
7261
- export declare type OrganizationInvite_IssuesQuery = {
8870
+ export declare type OrganizationInviteDetailsQuery = {
7262
8871
  __typename?: "Query";
7263
8872
  } & {
7264
- organizationInvite: {
7265
- __typename?: "IssueLabel";
7266
- } & {
7267
- issues: {
7268
- __typename?: "IssueConnection";
7269
- } & IssueConnectionFragment;
7270
- };
8873
+ organizationInviteDetails: {
8874
+ __typename?: "OrganizationInviteDetailsPayload";
8875
+ } & OrganizationInviteDetailsPayloadFragment;
7271
8876
  };
7272
8877
  export declare type OrganizationInvitesQueryVariables = Exact<{
7273
8878
  after?: Maybe<Scalars["String"]>;
@@ -7294,10 +8899,31 @@ export declare type ProjectQuery = {
7294
8899
  __typename?: "Project";
7295
8900
  } & ProjectFragment;
7296
8901
  };
8902
+ export declare type Project_DocumentsQueryVariables = Exact<{
8903
+ id: Scalars["String"];
8904
+ after?: Maybe<Scalars["String"]>;
8905
+ before?: Maybe<Scalars["String"]>;
8906
+ first?: Maybe<Scalars["Int"]>;
8907
+ includeArchived?: Maybe<Scalars["Boolean"]>;
8908
+ last?: Maybe<Scalars["Int"]>;
8909
+ orderBy?: Maybe<PaginationOrderBy>;
8910
+ }>;
8911
+ export declare type Project_DocumentsQuery = {
8912
+ __typename?: "Query";
8913
+ } & {
8914
+ project: {
8915
+ __typename?: "Project";
8916
+ } & {
8917
+ documents: {
8918
+ __typename?: "DocumentConnection";
8919
+ } & DocumentConnectionFragment;
8920
+ };
8921
+ };
7297
8922
  export declare type Project_IssuesQueryVariables = Exact<{
7298
8923
  id: Scalars["String"];
7299
8924
  after?: Maybe<Scalars["String"]>;
7300
8925
  before?: Maybe<Scalars["String"]>;
8926
+ filter?: Maybe<IssueFilter>;
7301
8927
  first?: Maybe<Scalars["Int"]>;
7302
8928
  includeArchived?: Maybe<Scalars["Boolean"]>;
7303
8929
  last?: Maybe<Scalars["Int"]>;
@@ -7338,6 +8964,7 @@ export declare type Project_MembersQueryVariables = Exact<{
7338
8964
  id: Scalars["String"];
7339
8965
  after?: Maybe<Scalars["String"]>;
7340
8966
  before?: Maybe<Scalars["String"]>;
8967
+ filter?: Maybe<UserFilter>;
7341
8968
  first?: Maybe<Scalars["Int"]>;
7342
8969
  includeArchived?: Maybe<Scalars["Boolean"]>;
7343
8970
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -7359,6 +8986,7 @@ export declare type Project_TeamsQueryVariables = Exact<{
7359
8986
  id: Scalars["String"];
7360
8987
  after?: Maybe<Scalars["String"]>;
7361
8988
  before?: Maybe<Scalars["String"]>;
8989
+ filter?: Maybe<TeamFilter>;
7362
8990
  first?: Maybe<Scalars["Int"]>;
7363
8991
  includeArchived?: Maybe<Scalars["Boolean"]>;
7364
8992
  last?: Maybe<Scalars["Int"]>;
@@ -7403,6 +9031,7 @@ export declare type ProjectLinksQuery = {
7403
9031
  export declare type ProjectsQueryVariables = Exact<{
7404
9032
  after?: Maybe<Scalars["String"]>;
7405
9033
  before?: Maybe<Scalars["String"]>;
9034
+ filter?: Maybe<ProjectFilter>;
7406
9035
  first?: Maybe<Scalars["Int"]>;
7407
9036
  includeArchived?: Maybe<Scalars["Boolean"]>;
7408
9037
  last?: Maybe<Scalars["Int"]>;
@@ -7485,6 +9114,7 @@ export declare type Team_CyclesQueryVariables = Exact<{
7485
9114
  id: Scalars["String"];
7486
9115
  after?: Maybe<Scalars["String"]>;
7487
9116
  before?: Maybe<Scalars["String"]>;
9117
+ filter?: Maybe<CycleFilter>;
7488
9118
  first?: Maybe<Scalars["Int"]>;
7489
9119
  includeArchived?: Maybe<Scalars["Boolean"]>;
7490
9120
  last?: Maybe<Scalars["Int"]>;
@@ -7505,6 +9135,7 @@ export declare type Team_IssuesQueryVariables = Exact<{
7505
9135
  id: Scalars["String"];
7506
9136
  after?: Maybe<Scalars["String"]>;
7507
9137
  before?: Maybe<Scalars["String"]>;
9138
+ filter?: Maybe<IssueFilter>;
7508
9139
  first?: Maybe<Scalars["Int"]>;
7509
9140
  includeArchived?: Maybe<Scalars["Boolean"]>;
7510
9141
  last?: Maybe<Scalars["Int"]>;
@@ -7525,6 +9156,7 @@ export declare type Team_LabelsQueryVariables = Exact<{
7525
9156
  id: Scalars["String"];
7526
9157
  after?: Maybe<Scalars["String"]>;
7527
9158
  before?: Maybe<Scalars["String"]>;
9159
+ filter?: Maybe<IssueLabelFilter>;
7528
9160
  first?: Maybe<Scalars["Int"]>;
7529
9161
  includeArchived?: Maybe<Scalars["Boolean"]>;
7530
9162
  last?: Maybe<Scalars["Int"]>;
@@ -7545,6 +9177,7 @@ export declare type Team_MembersQueryVariables = Exact<{
7545
9177
  id: Scalars["String"];
7546
9178
  after?: Maybe<Scalars["String"]>;
7547
9179
  before?: Maybe<Scalars["String"]>;
9180
+ filter?: Maybe<UserFilter>;
7548
9181
  first?: Maybe<Scalars["Int"]>;
7549
9182
  includeArchived?: Maybe<Scalars["Boolean"]>;
7550
9183
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -7586,6 +9219,7 @@ export declare type Team_ProjectsQueryVariables = Exact<{
7586
9219
  id: Scalars["String"];
7587
9220
  after?: Maybe<Scalars["String"]>;
7588
9221
  before?: Maybe<Scalars["String"]>;
9222
+ filter?: Maybe<ProjectFilter>;
7589
9223
  first?: Maybe<Scalars["Int"]>;
7590
9224
  includeArchived?: Maybe<Scalars["Boolean"]>;
7591
9225
  last?: Maybe<Scalars["Int"]>;
@@ -7606,6 +9240,7 @@ export declare type Team_StatesQueryVariables = Exact<{
7606
9240
  id: Scalars["String"];
7607
9241
  after?: Maybe<Scalars["String"]>;
7608
9242
  before?: Maybe<Scalars["String"]>;
9243
+ filter?: Maybe<WorkflowStateFilter>;
7609
9244
  first?: Maybe<Scalars["Int"]>;
7610
9245
  includeArchived?: Maybe<Scalars["Boolean"]>;
7611
9246
  last?: Maybe<Scalars["Int"]>;
@@ -7690,6 +9325,7 @@ export declare type TeamMembershipsQuery = {
7690
9325
  export declare type TeamsQueryVariables = Exact<{
7691
9326
  after?: Maybe<Scalars["String"]>;
7692
9327
  before?: Maybe<Scalars["String"]>;
9328
+ filter?: Maybe<TeamFilter>;
7693
9329
  first?: Maybe<Scalars["Int"]>;
7694
9330
  includeArchived?: Maybe<Scalars["Boolean"]>;
7695
9331
  last?: Maybe<Scalars["Int"]>;
@@ -7736,6 +9372,7 @@ export declare type User_AssignedIssuesQueryVariables = Exact<{
7736
9372
  id: Scalars["String"];
7737
9373
  after?: Maybe<Scalars["String"]>;
7738
9374
  before?: Maybe<Scalars["String"]>;
9375
+ filter?: Maybe<IssueFilter>;
7739
9376
  first?: Maybe<Scalars["Int"]>;
7740
9377
  includeArchived?: Maybe<Scalars["Boolean"]>;
7741
9378
  last?: Maybe<Scalars["Int"]>;
@@ -7756,6 +9393,7 @@ export declare type User_CreatedIssuesQueryVariables = Exact<{
7756
9393
  id: Scalars["String"];
7757
9394
  after?: Maybe<Scalars["String"]>;
7758
9395
  before?: Maybe<Scalars["String"]>;
9396
+ filter?: Maybe<IssueFilter>;
7759
9397
  first?: Maybe<Scalars["Int"]>;
7760
9398
  includeArchived?: Maybe<Scalars["Boolean"]>;
7761
9399
  last?: Maybe<Scalars["Int"]>;
@@ -7796,6 +9434,7 @@ export declare type User_TeamsQueryVariables = Exact<{
7796
9434
  id: Scalars["String"];
7797
9435
  after?: Maybe<Scalars["String"]>;
7798
9436
  before?: Maybe<Scalars["String"]>;
9437
+ filter?: Maybe<TeamFilter>;
7799
9438
  first?: Maybe<Scalars["Int"]>;
7800
9439
  includeArchived?: Maybe<Scalars["Boolean"]>;
7801
9440
  last?: Maybe<Scalars["Int"]>;
@@ -7825,6 +9464,7 @@ export declare type UserSettingsQuery = {
7825
9464
  export declare type UsersQueryVariables = Exact<{
7826
9465
  after?: Maybe<Scalars["String"]>;
7827
9466
  before?: Maybe<Scalars["String"]>;
9467
+ filter?: Maybe<UserFilter>;
7828
9468
  first?: Maybe<Scalars["Int"]>;
7829
9469
  includeArchived?: Maybe<Scalars["Boolean"]>;
7830
9470
  includeDisabled?: Maybe<Scalars["Boolean"]>;
@@ -7851,6 +9491,7 @@ export declare type ViewerQuery = {
7851
9491
  export declare type Viewer_AssignedIssuesQueryVariables = Exact<{
7852
9492
  after?: Maybe<Scalars["String"]>;
7853
9493
  before?: Maybe<Scalars["String"]>;
9494
+ filter?: Maybe<IssueFilter>;
7854
9495
  first?: Maybe<Scalars["Int"]>;
7855
9496
  includeArchived?: Maybe<Scalars["Boolean"]>;
7856
9497
  last?: Maybe<Scalars["Int"]>;
@@ -7870,6 +9511,7 @@ export declare type Viewer_AssignedIssuesQuery = {
7870
9511
  export declare type Viewer_CreatedIssuesQueryVariables = Exact<{
7871
9512
  after?: Maybe<Scalars["String"]>;
7872
9513
  before?: Maybe<Scalars["String"]>;
9514
+ filter?: Maybe<IssueFilter>;
7873
9515
  first?: Maybe<Scalars["Int"]>;
7874
9516
  includeArchived?: Maybe<Scalars["Boolean"]>;
7875
9517
  last?: Maybe<Scalars["Int"]>;
@@ -7908,6 +9550,7 @@ export declare type Viewer_TeamMembershipsQuery = {
7908
9550
  export declare type Viewer_TeamsQueryVariables = Exact<{
7909
9551
  after?: Maybe<Scalars["String"]>;
7910
9552
  before?: Maybe<Scalars["String"]>;
9553
+ filter?: Maybe<TeamFilter>;
7911
9554
  first?: Maybe<Scalars["Int"]>;
7912
9555
  includeArchived?: Maybe<Scalars["Boolean"]>;
7913
9556
  last?: Maybe<Scalars["Int"]>;
@@ -7963,6 +9606,7 @@ export declare type WorkflowState_IssuesQueryVariables = Exact<{
7963
9606
  id: Scalars["String"];
7964
9607
  after?: Maybe<Scalars["String"]>;
7965
9608
  before?: Maybe<Scalars["String"]>;
9609
+ filter?: Maybe<IssueFilter>;
7966
9610
  first?: Maybe<Scalars["Int"]>;
7967
9611
  includeArchived?: Maybe<Scalars["Boolean"]>;
7968
9612
  last?: Maybe<Scalars["Int"]>;
@@ -7982,6 +9626,7 @@ export declare type WorkflowState_IssuesQuery = {
7982
9626
  export declare type WorkflowStatesQueryVariables = Exact<{
7983
9627
  after?: Maybe<Scalars["String"]>;
7984
9628
  before?: Maybe<Scalars["String"]>;
9629
+ filter?: Maybe<WorkflowStateFilter>;
7985
9630
  first?: Maybe<Scalars["Int"]>;
7986
9631
  includeArchived?: Maybe<Scalars["Boolean"]>;
7987
9632
  last?: Maybe<Scalars["Int"]>;
@@ -8032,8 +9677,8 @@ export declare type AttachmentLinkFrontMutation = {
8032
9677
  __typename?: "Mutation";
8033
9678
  } & {
8034
9679
  attachmentLinkFront: {
8035
- __typename?: "AttachmentPayload";
8036
- } & AttachmentPayloadFragment;
9680
+ __typename?: "FrontAttachmentPayload";
9681
+ } & FrontAttachmentPayloadFragment;
8037
9682
  };
8038
9683
  export declare type AttachmentLinkIntercomMutationVariables = Exact<{
8039
9684
  conversationId: Scalars["String"];
@@ -8046,6 +9691,17 @@ export declare type AttachmentLinkIntercomMutation = {
8046
9691
  __typename?: "AttachmentPayload";
8047
9692
  } & AttachmentPayloadFragment;
8048
9693
  };
9694
+ export declare type AttachmentLinkJiraIssueMutationVariables = Exact<{
9695
+ issueId: Scalars["String"];
9696
+ jiraIssueId: Scalars["String"];
9697
+ }>;
9698
+ export declare type AttachmentLinkJiraIssueMutation = {
9699
+ __typename?: "Mutation";
9700
+ } & {
9701
+ attachmentLinkJiraIssue: {
9702
+ __typename?: "AttachmentPayload";
9703
+ } & AttachmentPayloadFragment;
9704
+ };
8049
9705
  export declare type AttachmentLinkUrlMutationVariables = Exact<{
8050
9706
  issueId: Scalars["String"];
8051
9707
  title?: Maybe<Scalars["String"]>;
@@ -8224,35 +9880,56 @@ export declare type CycleUpdateMutation = {
8224
9880
  __typename?: "CyclePayload";
8225
9881
  } & CyclePayloadFragment;
8226
9882
  };
8227
- export declare type DebugCreateSamlOrgMutationVariables = Exact<{
9883
+ export declare type DebugFailWithInternalErrorMutationVariables = Exact<{
8228
9884
  [key: string]: never;
8229
9885
  }>;
8230
- export declare type DebugCreateSamlOrgMutation = {
9886
+ export declare type DebugFailWithInternalErrorMutation = {
8231
9887
  __typename?: "Mutation";
8232
9888
  } & {
8233
- debugCreateSAMLOrg: {
9889
+ debugFailWithInternalError: {
8234
9890
  __typename?: "DebugPayload";
8235
9891
  } & DebugPayloadFragment;
8236
9892
  };
8237
- export declare type DebugFailWithInternalErrorMutationVariables = Exact<{
8238
- [key: string]: never;
9893
+ export declare type DocumentCreateMutationVariables = Exact<{
9894
+ input: DocumentCreateInput;
8239
9895
  }>;
8240
- export declare type DebugFailWithInternalErrorMutation = {
9896
+ export declare type DocumentCreateMutation = {
8241
9897
  __typename?: "Mutation";
8242
9898
  } & {
8243
- debugFailWithInternalError: {
8244
- __typename?: "DebugPayload";
8245
- } & DebugPayloadFragment;
9899
+ documentCreate: {
9900
+ __typename?: "DocumentPayload";
9901
+ } & DocumentPayloadFragment;
8246
9902
  };
8247
- export declare type DebugFailWithWarningMutationVariables = Exact<{
8248
- [key: string]: never;
9903
+ export declare type DocumentDeleteMutationVariables = Exact<{
9904
+ id: Scalars["String"];
8249
9905
  }>;
8250
- export declare type DebugFailWithWarningMutation = {
9906
+ export declare type DocumentDeleteMutation = {
8251
9907
  __typename?: "Mutation";
8252
9908
  } & {
8253
- debugFailWithWarning: {
8254
- __typename?: "DebugPayload";
8255
- } & DebugPayloadFragment;
9909
+ documentDelete: {
9910
+ __typename?: "ArchivePayload";
9911
+ } & ArchivePayloadFragment;
9912
+ };
9913
+ export declare type DocumentUpdateMutationVariables = Exact<{
9914
+ id: Scalars["String"];
9915
+ input: DocumentUpdateInput;
9916
+ }>;
9917
+ export declare type DocumentUpdateMutation = {
9918
+ __typename?: "Mutation";
9919
+ } & {
9920
+ documentUpdate: {
9921
+ __typename?: "DocumentPayload";
9922
+ } & DocumentPayloadFragment;
9923
+ };
9924
+ export declare type EmailSubscribeMutationVariables = Exact<{
9925
+ input: EmailSubscribeInput;
9926
+ }>;
9927
+ export declare type EmailSubscribeMutation = {
9928
+ __typename?: "Mutation";
9929
+ } & {
9930
+ emailSubscribe: {
9931
+ __typename?: "EmailSubscribePayload";
9932
+ } & EmailSubscribePayloadFragment;
8256
9933
  };
8257
9934
  export declare type EmailTokenUserAccountAuthMutationVariables = Exact<{
8258
9935
  input: TokenUserAccountAuthInput;
@@ -8420,6 +10097,16 @@ export declare type IntegrationFrontMutation = {
8420
10097
  __typename?: "IntegrationPayload";
8421
10098
  } & IntegrationPayloadFragment;
8422
10099
  };
10100
+ export declare type IntegrationGithubCommitCreateMutationVariables = Exact<{
10101
+ [key: string]: never;
10102
+ }>;
10103
+ export declare type IntegrationGithubCommitCreateMutation = {
10104
+ __typename?: "Mutation";
10105
+ } & {
10106
+ integrationGithubCommitCreate: {
10107
+ __typename?: "GitHubCommitIntegrationPayload";
10108
+ } & GitHubCommitIntegrationPayloadFragment;
10109
+ };
8423
10110
  export declare type IntegrationGithubConnectMutationVariables = Exact<{
8424
10111
  installationId: Scalars["String"];
8425
10112
  }>;
@@ -8514,6 +10201,17 @@ export declare type IntegrationSentryConnectMutation = {
8514
10201
  __typename?: "IntegrationPayload";
8515
10202
  } & IntegrationPayloadFragment;
8516
10203
  };
10204
+ export declare type IntegrationSettingsUpdateMutationVariables = Exact<{
10205
+ id: Scalars["String"];
10206
+ input: IntegrationSettingsInput;
10207
+ }>;
10208
+ export declare type IntegrationSettingsUpdateMutation = {
10209
+ __typename?: "Mutation";
10210
+ } & {
10211
+ integrationSettingsUpdate: {
10212
+ __typename?: "IntegrationPayload";
10213
+ } & IntegrationPayloadFragment;
10214
+ };
8517
10215
  export declare type IntegrationSlackMutationVariables = Exact<{
8518
10216
  code: Scalars["String"];
8519
10217
  redirectUri: Scalars["String"];
@@ -8597,6 +10295,17 @@ export declare type IssueArchiveMutation = {
8597
10295
  __typename?: "ArchivePayload";
8598
10296
  } & ArchivePayloadFragment;
8599
10297
  };
10298
+ export declare type IssueBatchUpdateMutationVariables = Exact<{
10299
+ ids: Array<Scalars["UUID"]> | Scalars["UUID"];
10300
+ input: IssueUpdateInput;
10301
+ }>;
10302
+ export declare type IssueBatchUpdateMutation = {
10303
+ __typename?: "Mutation";
10304
+ } & {
10305
+ issueBatchUpdate: {
10306
+ __typename?: "IssueBatchPayload";
10307
+ } & IssueBatchPayloadFragment;
10308
+ };
8600
10309
  export declare type IssueCreateMutationVariables = Exact<{
8601
10310
  input: IssueCreateInput;
8602
10311
  }>;
@@ -8621,6 +10330,7 @@ export declare type IssueImportCreateAsanaMutationVariables = Exact<{
8621
10330
  asanaTeamName: Scalars["String"];
8622
10331
  asanaToken: Scalars["String"];
8623
10332
  id?: Maybe<Scalars["String"]>;
10333
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
8624
10334
  instantProcess?: Maybe<Scalars["Boolean"]>;
8625
10335
  teamId: Scalars["String"];
8626
10336
  }>;
@@ -8635,6 +10345,7 @@ export declare type IssueImportCreateClubhouseMutationVariables = Exact<{
8635
10345
  clubhouseTeamName: Scalars["String"];
8636
10346
  clubhouseToken: Scalars["String"];
8637
10347
  id?: Maybe<Scalars["String"]>;
10348
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
8638
10349
  instantProcess?: Maybe<Scalars["Boolean"]>;
8639
10350
  teamId: Scalars["String"];
8640
10351
  }>;
@@ -8651,6 +10362,7 @@ export declare type IssueImportCreateGithubMutationVariables = Exact<{
8651
10362
  githubShouldImportOrgProjects?: Maybe<Scalars["Boolean"]>;
8652
10363
  githubToken: Scalars["String"];
8653
10364
  id?: Maybe<Scalars["String"]>;
10365
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
8654
10366
  instantProcess?: Maybe<Scalars["Boolean"]>;
8655
10367
  teamId: Scalars["String"];
8656
10368
  }>;
@@ -8663,6 +10375,7 @@ export declare type IssueImportCreateGithubMutation = {
8663
10375
  };
8664
10376
  export declare type IssueImportCreateJiraMutationVariables = Exact<{
8665
10377
  id?: Maybe<Scalars["String"]>;
10378
+ includeClosedIssues?: Maybe<Scalars["Boolean"]>;
8666
10379
  instantProcess?: Maybe<Scalars["Boolean"]>;
8667
10380
  jiraEmail: Scalars["String"];
8668
10381
  jiraHostname: Scalars["String"];
@@ -8698,6 +10411,17 @@ export declare type IssueImportProcessMutation = {
8698
10411
  __typename?: "IssueImportPayload";
8699
10412
  } & IssueImportPayloadFragment;
8700
10413
  };
10414
+ export declare type IssueImportUpdateMutationVariables = Exact<{
10415
+ id: Scalars["String"];
10416
+ input: IssueImportUpdateInput;
10417
+ }>;
10418
+ export declare type IssueImportUpdateMutation = {
10419
+ __typename?: "Mutation";
10420
+ } & {
10421
+ issueImportUpdate: {
10422
+ __typename?: "IssueImportPayload";
10423
+ } & IssueImportPayloadFragment;
10424
+ };
8701
10425
  export declare type IssueLabelArchiveMutationVariables = Exact<{
8702
10426
  id: Scalars["String"];
8703
10427
  }>;
@@ -8710,6 +10434,7 @@ export declare type IssueLabelArchiveMutation = {
8710
10434
  };
8711
10435
  export declare type IssueLabelCreateMutationVariables = Exact<{
8712
10436
  input: IssueLabelCreateInput;
10437
+ replaceTeamLabels?: Maybe<Scalars["Boolean"]>;
8713
10438
  }>;
8714
10439
  export declare type IssueLabelCreateMutation = {
8715
10440
  __typename?: "Mutation";
@@ -8781,6 +10506,16 @@ export declare type IssueUpdateMutation = {
8781
10506
  __typename?: "IssuePayload";
8782
10507
  } & IssuePayloadFragment;
8783
10508
  };
10509
+ export declare type JiraIntegrationConnectMutationVariables = Exact<{
10510
+ input: JiraConfigurationInput;
10511
+ }>;
10512
+ export declare type JiraIntegrationConnectMutation = {
10513
+ __typename?: "Mutation";
10514
+ } & {
10515
+ jiraIntegrationConnect: {
10516
+ __typename?: "IntegrationPayload";
10517
+ } & IntegrationPayloadFragment;
10518
+ };
8784
10519
  export declare type JoinOrganizationFromOnboardingMutationVariables = Exact<{
8785
10520
  input: JoinOrganizationInput;
8786
10521
  }>;
@@ -9076,6 +10811,17 @@ export declare type ProjectLinkDeleteMutation = {
9076
10811
  __typename?: "ArchivePayload";
9077
10812
  } & ArchivePayloadFragment;
9078
10813
  };
10814
+ export declare type ProjectLinkUpdateMutationVariables = Exact<{
10815
+ id: Scalars["String"];
10816
+ input: ProjectLinkUpdateInput;
10817
+ }>;
10818
+ export declare type ProjectLinkUpdateMutation = {
10819
+ __typename?: "Mutation";
10820
+ } & {
10821
+ projectLinkUpdate: {
10822
+ __typename?: "ProjectLinkPayload";
10823
+ } & ProjectLinkPayloadFragment;
10824
+ };
9079
10825
  export declare type ProjectUnarchiveMutationVariables = Exact<{
9080
10826
  id: Scalars["String"];
9081
10827
  }>;
@@ -9147,13 +10893,13 @@ export declare type RefreshGoogleSheetsDataMutation = {
9147
10893
  __typename?: "IntegrationPayload";
9148
10894
  } & IntegrationPayloadFragment;
9149
10895
  };
9150
- export declare type ResentOrganizationInviteMutationVariables = Exact<{
10896
+ export declare type ResendOrganizationInviteMutationVariables = Exact<{
9151
10897
  id: Scalars["String"];
9152
10898
  }>;
9153
- export declare type ResentOrganizationInviteMutation = {
10899
+ export declare type ResendOrganizationInviteMutation = {
9154
10900
  __typename?: "Mutation";
9155
10901
  } & {
9156
- resentOrganizationInvite: {
10902
+ resendOrganizationInvite: {
9157
10903
  __typename?: "ArchivePayload";
9158
10904
  } & ArchivePayloadFragment;
9159
10905
  };
@@ -9167,58 +10913,6 @@ export declare type SamlTokenUserAccountAuthMutation = {
9167
10913
  __typename?: "AuthResolverResponse";
9168
10914
  } & AuthResolverResponseFragment;
9169
10915
  };
9170
- export declare type SubscriptionArchiveMutationVariables = Exact<{
9171
- id: Scalars["String"];
9172
- }>;
9173
- export declare type SubscriptionArchiveMutation = {
9174
- __typename?: "Mutation";
9175
- } & {
9176
- subscriptionArchive: {
9177
- __typename?: "ArchivePayload";
9178
- } & ArchivePayloadFragment;
9179
- };
9180
- export declare type SubscriptionSessionCreateMutationVariables = Exact<{
9181
- plan: Scalars["String"];
9182
- }>;
9183
- export declare type SubscriptionSessionCreateMutation = {
9184
- __typename?: "Mutation";
9185
- } & {
9186
- subscriptionSessionCreate: {
9187
- __typename?: "SubscriptionSessionPayload";
9188
- } & SubscriptionSessionPayloadFragment;
9189
- };
9190
- export declare type SubscriptionUpdateMutationVariables = Exact<{
9191
- id: Scalars["String"];
9192
- input: SubscriptionUpdateInput;
9193
- }>;
9194
- export declare type SubscriptionUpdateMutation = {
9195
- __typename?: "Mutation";
9196
- } & {
9197
- subscriptionUpdate: {
9198
- __typename?: "SubscriptionPayload";
9199
- } & SubscriptionPayloadFragment;
9200
- };
9201
- export declare type SubscriptionUpdateSessionCreateMutationVariables = Exact<{
9202
- [key: string]: never;
9203
- }>;
9204
- export declare type SubscriptionUpdateSessionCreateMutation = {
9205
- __typename?: "Mutation";
9206
- } & {
9207
- subscriptionUpdateSessionCreate: {
9208
- __typename?: "SubscriptionSessionPayload";
9209
- } & SubscriptionSessionPayloadFragment;
9210
- };
9211
- export declare type SubscriptionUpgradeMutationVariables = Exact<{
9212
- id: Scalars["String"];
9213
- type: Scalars["String"];
9214
- }>;
9215
- export declare type SubscriptionUpgradeMutation = {
9216
- __typename?: "Mutation";
9217
- } & {
9218
- subscriptionUpgrade: {
9219
- __typename?: "SubscriptionPayload";
9220
- } & SubscriptionPayloadFragment;
9221
- };
9222
10916
  export declare type TeamCreateMutationVariables = Exact<{
9223
10917
  copySettingsFromTeamId?: Maybe<Scalars["String"]>;
9224
10918
  input: TeamCreateInput;
@@ -9525,7 +11219,9 @@ export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, u
9525
11219
  export declare const DocumentStepFragmentDoc: DocumentNode<DocumentStepFragment, unknown>;
9526
11220
  export declare const SyncDeltaResponseFragmentDoc: DocumentNode<SyncDeltaResponseFragment, unknown>;
9527
11221
  export declare const SyncResponseFragmentDoc: DocumentNode<SyncResponseFragment, unknown>;
11222
+ export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFragment, unknown>;
9528
11223
  export declare const DependencyResponseFragmentDoc: DocumentNode<DependencyResponseFragment, unknown>;
11224
+ export declare const SyncBatchResponseFragmentDoc: DocumentNode<SyncBatchResponseFragment, unknown>;
9529
11225
  export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
9530
11226
  export declare const GithubOrgFragmentDoc: DocumentNode<GithubOrgFragment, unknown>;
9531
11227
  export declare const GithubOAuthTokenPayloadFragmentDoc: DocumentNode<GithubOAuthTokenPayloadFragment, unknown>;
@@ -9534,6 +11230,9 @@ export declare const UserAuthorizedApplicationFragmentDoc: DocumentNode<UserAuth
9534
11230
  export declare const ApplicationFragmentDoc: DocumentNode<ApplicationFragment, unknown>;
9535
11231
  export declare const GoogleSheetsSettingsFragmentDoc: DocumentNode<GoogleSheetsSettingsFragment, unknown>;
9536
11232
  export declare const IntercomSettingsFragmentDoc: DocumentNode<IntercomSettingsFragment, unknown>;
11233
+ export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFragment, unknown>;
11234
+ export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
11235
+ export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
9537
11236
  export declare const SentrySettingsFragmentDoc: DocumentNode<SentrySettingsFragment, unknown>;
9538
11237
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
9539
11238
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
@@ -9549,6 +11248,9 @@ export declare const ArchivePayloadFragmentDoc: DocumentNode<ArchivePayloadFragm
9549
11248
  export declare const AttachmentFragmentDoc: DocumentNode<AttachmentFragment, unknown>;
9550
11249
  export declare const AttachmentConnectionFragmentDoc: DocumentNode<AttachmentConnectionFragment, unknown>;
9551
11250
  export declare const AttachmentPayloadFragmentDoc: DocumentNode<AttachmentPayloadFragment, unknown>;
11251
+ export declare const AuditEntryFragmentDoc: DocumentNode<AuditEntryFragment, unknown>;
11252
+ export declare const AuditEntryConnectionFragmentDoc: DocumentNode<AuditEntryConnectionFragment, unknown>;
11253
+ export declare const AuditEntryTypeFragmentDoc: DocumentNode<AuditEntryTypeFragment, unknown>;
9552
11254
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
9553
11255
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
9554
11256
  export declare const InvoiceFragmentDoc: DocumentNode<InvoiceFragment, unknown>;
@@ -9570,6 +11272,12 @@ export declare const CycleFragmentDoc: DocumentNode<CycleFragment, unknown>;
9570
11272
  export declare const CycleConnectionFragmentDoc: DocumentNode<CycleConnectionFragment, unknown>;
9571
11273
  export declare const CyclePayloadFragmentDoc: DocumentNode<CyclePayloadFragment, unknown>;
9572
11274
  export declare const DebugPayloadFragmentDoc: DocumentNode<DebugPayloadFragment, unknown>;
11275
+ export declare const DocumentFragmentDoc: DocumentNode<DocumentFragment, unknown>;
11276
+ export declare const DocumentConnectionFragmentDoc: DocumentNode<DocumentConnectionFragment, unknown>;
11277
+ export declare const DocumentPayloadFragmentDoc: DocumentNode<DocumentPayloadFragment, unknown>;
11278
+ export declare const DocumentVersionFragmentDoc: DocumentNode<DocumentVersionFragment, unknown>;
11279
+ export declare const DocumentVersionConnectionFragmentDoc: DocumentNode<DocumentVersionConnectionFragment, unknown>;
11280
+ export declare const EmailSubscribePayloadFragmentDoc: DocumentNode<EmailSubscribePayloadFragment, unknown>;
9573
11281
  export declare const EmailUnsubscribePayloadFragmentDoc: DocumentNode<EmailUnsubscribePayloadFragment, unknown>;
9574
11282
  export declare const EmailUserAccountAuthChallengeResponseFragmentDoc: DocumentNode<EmailUserAccountAuthChallengeResponseFragment, unknown>;
9575
11283
  export declare const EmojiFragmentDoc: DocumentNode<EmojiFragment, unknown>;
@@ -9582,6 +11290,8 @@ export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFra
9582
11290
  export declare const FeedbackPayloadFragmentDoc: DocumentNode<FeedbackPayloadFragment, unknown>;
9583
11291
  export declare const FigmaEmbedFragmentDoc: DocumentNode<FigmaEmbedFragment, unknown>;
9584
11292
  export declare const FigmaEmbedPayloadFragmentDoc: DocumentNode<FigmaEmbedPayloadFragment, unknown>;
11293
+ export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
11294
+ export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
9585
11295
  export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
9586
11296
  export declare const IntegrationFragmentDoc: DocumentNode<IntegrationFragment, unknown>;
9587
11297
  export declare const IntegrationConnectionFragmentDoc: DocumentNode<IntegrationConnectionFragment, unknown>;
@@ -9592,9 +11302,8 @@ export declare const SentryIssuePayloadFragmentDoc: DocumentNode<SentryIssuePayl
9592
11302
  export declare const IntegrationResourceDataFragmentDoc: DocumentNode<IntegrationResourceDataFragment, unknown>;
9593
11303
  export declare const IntegrationResourceFragmentDoc: DocumentNode<IntegrationResourceFragment, unknown>;
9594
11304
  export declare const IntegrationResourceConnectionFragmentDoc: DocumentNode<IntegrationResourceConnectionFragment, unknown>;
9595
- export declare const InviteDataFragmentDoc: DocumentNode<InviteDataFragment, unknown>;
9596
- export declare const InvitePagePayloadFragmentDoc: DocumentNode<InvitePagePayloadFragment, unknown>;
9597
11305
  export declare const IssueFragmentDoc: DocumentNode<IssueFragment, unknown>;
11306
+ export declare const IssueBatchPayloadFragmentDoc: DocumentNode<IssueBatchPayloadFragment, unknown>;
9598
11307
  export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFragment, unknown>;
9599
11308
  export declare const IssueDescriptionHistoryFragmentDoc: DocumentNode<IssueDescriptionHistoryFragment, unknown>;
9600
11309
  export declare const IssueDescriptionHistoryPayloadFragmentDoc: DocumentNode<IssueDescriptionHistoryPayloadFragment, unknown>;
@@ -9635,6 +11344,7 @@ export declare const OrganizationDomainSimplePayloadFragmentDoc: DocumentNode<Or
9635
11344
  export declare const OrganizationExistsPayloadFragmentDoc: DocumentNode<OrganizationExistsPayloadFragment, unknown>;
9636
11345
  export declare const OrganizationInviteFragmentDoc: DocumentNode<OrganizationInviteFragment, unknown>;
9637
11346
  export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<OrganizationInviteConnectionFragment, unknown>;
11347
+ export declare const OrganizationInviteDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteDetailsPayloadFragment, unknown>;
9638
11348
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
9639
11349
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
9640
11350
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
@@ -9651,8 +11361,6 @@ export declare const ReactionFragmentDoc: DocumentNode<ReactionFragment, unknown
9651
11361
  export declare const ReactionConnectionFragmentDoc: DocumentNode<ReactionConnectionFragment, unknown>;
9652
11362
  export declare const ReactionPayloadFragmentDoc: DocumentNode<ReactionPayloadFragment, unknown>;
9653
11363
  export declare const RotateSecretPayloadFragmentDoc: DocumentNode<RotateSecretPayloadFragment, unknown>;
9654
- export declare const ArchiveResponseFragmentDoc: DocumentNode<ArchiveResponseFragment, unknown>;
9655
- export declare const SearchResultPayloadFragmentDoc: DocumentNode<SearchResultPayloadFragment, unknown>;
9656
11364
  export declare const SsoUrlFromEmailResponseFragmentDoc: DocumentNode<SsoUrlFromEmailResponseFragment, unknown>;
9657
11365
  export declare const SubscriptionPayloadFragmentDoc: DocumentNode<SubscriptionPayloadFragment, unknown>;
9658
11366
  export declare const SubscriptionSessionPayloadFragmentDoc: DocumentNode<SubscriptionSessionPayloadFragment, unknown>;
@@ -9683,6 +11391,15 @@ export declare const WebhookPayloadFragmentDoc: DocumentNode<WebhookPayloadFragm
9683
11391
  export declare const WorkflowStateFragmentDoc: DocumentNode<WorkflowStateFragment, unknown>;
9684
11392
  export declare const WorkflowStateConnectionFragmentDoc: DocumentNode<WorkflowStateConnectionFragment, unknown>;
9685
11393
  export declare const WorkflowStatePayloadFragmentDoc: DocumentNode<WorkflowStatePayloadFragment, unknown>;
11394
+ export declare const AdministrableTeamsDocument: DocumentNode<AdministrableTeamsQuery, Exact<{
11395
+ after?: Maybe<string> | undefined;
11396
+ before?: Maybe<string> | undefined;
11397
+ filter?: Maybe<TeamFilter> | undefined;
11398
+ first?: Maybe<number> | undefined;
11399
+ includeArchived?: Maybe<boolean> | undefined;
11400
+ last?: Maybe<number> | undefined;
11401
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
11402
+ }>>;
9686
11403
  export declare const ApplicationWithAuthorizationDocument: DocumentNode<ApplicationWithAuthorizationQuery, Exact<{
9687
11404
  clientId: Scalars["String"];
9688
11405
  redirectUri?: Maybe<string> | undefined;
@@ -9698,6 +11415,7 @@ export declare const AttachmentIssue_AttachmentsDocument: DocumentNode<Attachmen
9698
11415
  id: Scalars["String"];
9699
11416
  after?: Maybe<string> | undefined;
9700
11417
  before?: Maybe<string> | undefined;
11418
+ filter?: Maybe<AttachmentFilter> | undefined;
9701
11419
  first?: Maybe<number> | undefined;
9702
11420
  includeArchived?: Maybe<boolean> | undefined;
9703
11421
  last?: Maybe<number> | undefined;
@@ -9707,6 +11425,7 @@ export declare const AttachmentIssue_ChildrenDocument: DocumentNode<AttachmentIs
9707
11425
  id: Scalars["String"];
9708
11426
  after?: Maybe<string> | undefined;
9709
11427
  before?: Maybe<string> | undefined;
11428
+ filter?: Maybe<IssueFilter> | undefined;
9710
11429
  first?: Maybe<number> | undefined;
9711
11430
  includeArchived?: Maybe<boolean> | undefined;
9712
11431
  last?: Maybe<number> | undefined;
@@ -9716,6 +11435,7 @@ export declare const AttachmentIssue_CommentsDocument: DocumentNode<AttachmentIs
9716
11435
  id: Scalars["String"];
9717
11436
  after?: Maybe<string> | undefined;
9718
11437
  before?: Maybe<string> | undefined;
11438
+ filter?: Maybe<CommentFilter> | undefined;
9719
11439
  first?: Maybe<number> | undefined;
9720
11440
  includeArchived?: Maybe<boolean> | undefined;
9721
11441
  last?: Maybe<number> | undefined;
@@ -9743,6 +11463,7 @@ export declare const AttachmentIssue_LabelsDocument: DocumentNode<AttachmentIssu
9743
11463
  id: Scalars["String"];
9744
11464
  after?: Maybe<string> | undefined;
9745
11465
  before?: Maybe<string> | undefined;
11466
+ filter?: Maybe<IssueLabelFilter> | undefined;
9746
11467
  first?: Maybe<number> | undefined;
9747
11468
  includeArchived?: Maybe<boolean> | undefined;
9748
11469
  last?: Maybe<number> | undefined;
@@ -9761,6 +11482,7 @@ export declare const AttachmentIssue_SubscribersDocument: DocumentNode<Attachmen
9761
11482
  id: Scalars["String"];
9762
11483
  after?: Maybe<string> | undefined;
9763
11484
  before?: Maybe<string> | undefined;
11485
+ filter?: Maybe<UserFilter> | undefined;
9764
11486
  first?: Maybe<number> | undefined;
9765
11487
  includeArchived?: Maybe<boolean> | undefined;
9766
11488
  includeDisabled?: Maybe<boolean> | undefined;
@@ -9770,6 +11492,7 @@ export declare const AttachmentIssue_SubscribersDocument: DocumentNode<Attachmen
9770
11492
  export declare const AttachmentsDocument: DocumentNode<AttachmentsQuery, Exact<{
9771
11493
  after?: Maybe<string> | undefined;
9772
11494
  before?: Maybe<string> | undefined;
11495
+ filter?: Maybe<AttachmentFilter> | undefined;
9773
11496
  first?: Maybe<number> | undefined;
9774
11497
  includeArchived?: Maybe<boolean> | undefined;
9775
11498
  last?: Maybe<number> | undefined;
@@ -9784,6 +11507,18 @@ export declare const AttachmentsForUrlDocument: DocumentNode<AttachmentsForUrlQu
9784
11507
  orderBy?: Maybe<PaginationOrderBy> | undefined;
9785
11508
  url: Scalars["String"];
9786
11509
  }>>;
11510
+ export declare const AuditEntriesDocument: DocumentNode<AuditEntriesQuery, Exact<{
11511
+ after?: Maybe<string> | undefined;
11512
+ before?: Maybe<string> | undefined;
11513
+ filter?: Maybe<AuditEntryFilter> | undefined;
11514
+ first?: Maybe<number> | undefined;
11515
+ includeArchived?: Maybe<boolean> | undefined;
11516
+ last?: Maybe<number> | undefined;
11517
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
11518
+ }>>;
11519
+ export declare const AuditEntryTypesDocument: DocumentNode<AuditEntryTypesQuery, Exact<{
11520
+ [key: string]: never;
11521
+ }>>;
9787
11522
  export declare const AuthorizedApplicationsDocument: DocumentNode<AuthorizedApplicationsQuery, Exact<{
9788
11523
  [key: string]: never;
9789
11524
  }>>;
@@ -9812,6 +11547,7 @@ export declare const CommentDocument: DocumentNode<CommentQuery, Exact<{
9812
11547
  export declare const CommentsDocument: DocumentNode<CommentsQuery, Exact<{
9813
11548
  after?: Maybe<string> | undefined;
9814
11549
  before?: Maybe<string> | undefined;
11550
+ filter?: Maybe<CommentFilter> | undefined;
9815
11551
  first?: Maybe<number> | undefined;
9816
11552
  includeArchived?: Maybe<boolean> | undefined;
9817
11553
  last?: Maybe<number> | undefined;
@@ -9835,6 +11571,7 @@ export declare const Cycle_IssuesDocument: DocumentNode<Cycle_IssuesQuery, Exact
9835
11571
  id: Scalars["String"];
9836
11572
  after?: Maybe<string> | undefined;
9837
11573
  before?: Maybe<string> | undefined;
11574
+ filter?: Maybe<IssueFilter> | undefined;
9838
11575
  first?: Maybe<number> | undefined;
9839
11576
  includeArchived?: Maybe<boolean> | undefined;
9840
11577
  last?: Maybe<number> | undefined;
@@ -9844,12 +11581,25 @@ export declare const Cycle_UncompletedIssuesUponCloseDocument: DocumentNode<Cycl
9844
11581
  id: Scalars["String"];
9845
11582
  after?: Maybe<string> | undefined;
9846
11583
  before?: Maybe<string> | undefined;
11584
+ filter?: Maybe<IssueFilter> | undefined;
9847
11585
  first?: Maybe<number> | undefined;
9848
11586
  includeArchived?: Maybe<boolean> | undefined;
9849
11587
  last?: Maybe<number> | undefined;
9850
11588
  orderBy?: Maybe<PaginationOrderBy> | undefined;
9851
11589
  }>>;
9852
11590
  export declare const CyclesDocument: DocumentNode<CyclesQuery, Exact<{
11591
+ after?: Maybe<string> | undefined;
11592
+ before?: Maybe<string> | undefined;
11593
+ filter?: Maybe<CycleFilter> | undefined;
11594
+ first?: Maybe<number> | undefined;
11595
+ includeArchived?: Maybe<boolean> | undefined;
11596
+ last?: Maybe<number> | undefined;
11597
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
11598
+ }>>;
11599
+ export declare const DocumentDocument: DocumentNode<DocumentQuery, Exact<{
11600
+ id: Scalars["String"];
11601
+ }>>;
11602
+ export declare const DocumentsDocument: DocumentNode<DocumentsQuery, Exact<{
9853
11603
  after?: Maybe<string> | undefined;
9854
11604
  before?: Maybe<string> | undefined;
9855
11605
  first?: Maybe<number> | undefined;
@@ -9871,6 +11621,15 @@ export declare const EmojisDocument: DocumentNode<EmojisQuery, Exact<{
9871
11621
  export declare const FavoriteDocument: DocumentNode<FavoriteQuery, Exact<{
9872
11622
  id: Scalars["String"];
9873
11623
  }>>;
11624
+ export declare const Favorite_ChildrenDocument: DocumentNode<Favorite_ChildrenQuery, Exact<{
11625
+ id: Scalars["String"];
11626
+ after?: Maybe<string> | undefined;
11627
+ before?: Maybe<string> | undefined;
11628
+ first?: Maybe<number> | undefined;
11629
+ includeArchived?: Maybe<boolean> | undefined;
11630
+ last?: Maybe<number> | undefined;
11631
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
11632
+ }>>;
9874
11633
  export declare const FavoritesDocument: DocumentNode<FavoritesQuery, Exact<{
9875
11634
  after?: Maybe<string> | undefined;
9876
11635
  before?: Maybe<string> | undefined;
@@ -9898,14 +11657,6 @@ export declare const IntegrationsDocument: DocumentNode<IntegrationsQuery, Exact
9898
11657
  last?: Maybe<number> | undefined;
9899
11658
  orderBy?: Maybe<PaginationOrderBy> | undefined;
9900
11659
  }>>;
9901
- export declare const InviteInfoDocument: DocumentNode<InviteInfoQuery, Exact<{
9902
- teamHash?: Maybe<string> | undefined;
9903
- userHash: Scalars["String"];
9904
- }>>;
9905
- export declare const InviteInfo_InviteDataDocument: DocumentNode<InviteInfo_InviteDataQuery, Exact<{
9906
- teamHash?: Maybe<string> | undefined;
9907
- userHash: Scalars["String"];
9908
- }>>;
9909
11660
  export declare const IssueDocument: DocumentNode<IssueQuery, Exact<{
9910
11661
  id: Scalars["String"];
9911
11662
  }>>;
@@ -9913,6 +11664,7 @@ export declare const Issue_AttachmentsDocument: DocumentNode<Issue_AttachmentsQu
9913
11664
  id: Scalars["String"];
9914
11665
  after?: Maybe<string> | undefined;
9915
11666
  before?: Maybe<string> | undefined;
11667
+ filter?: Maybe<AttachmentFilter> | undefined;
9916
11668
  first?: Maybe<number> | undefined;
9917
11669
  includeArchived?: Maybe<boolean> | undefined;
9918
11670
  last?: Maybe<number> | undefined;
@@ -9922,6 +11674,7 @@ export declare const Issue_ChildrenDocument: DocumentNode<Issue_ChildrenQuery, E
9922
11674
  id: Scalars["String"];
9923
11675
  after?: Maybe<string> | undefined;
9924
11676
  before?: Maybe<string> | undefined;
11677
+ filter?: Maybe<IssueFilter> | undefined;
9925
11678
  first?: Maybe<number> | undefined;
9926
11679
  includeArchived?: Maybe<boolean> | undefined;
9927
11680
  last?: Maybe<number> | undefined;
@@ -9931,6 +11684,7 @@ export declare const Issue_CommentsDocument: DocumentNode<Issue_CommentsQuery, E
9931
11684
  id: Scalars["String"];
9932
11685
  after?: Maybe<string> | undefined;
9933
11686
  before?: Maybe<string> | undefined;
11687
+ filter?: Maybe<CommentFilter> | undefined;
9934
11688
  first?: Maybe<number> | undefined;
9935
11689
  includeArchived?: Maybe<boolean> | undefined;
9936
11690
  last?: Maybe<number> | undefined;
@@ -9958,6 +11712,7 @@ export declare const Issue_LabelsDocument: DocumentNode<Issue_LabelsQuery, Exact
9958
11712
  id: Scalars["String"];
9959
11713
  after?: Maybe<string> | undefined;
9960
11714
  before?: Maybe<string> | undefined;
11715
+ filter?: Maybe<IssueLabelFilter> | undefined;
9961
11716
  first?: Maybe<number> | undefined;
9962
11717
  includeArchived?: Maybe<boolean> | undefined;
9963
11718
  last?: Maybe<number> | undefined;
@@ -9976,6 +11731,7 @@ export declare const Issue_SubscribersDocument: DocumentNode<Issue_SubscribersQu
9976
11731
  id: Scalars["String"];
9977
11732
  after?: Maybe<string> | undefined;
9978
11733
  before?: Maybe<string> | undefined;
11734
+ filter?: Maybe<UserFilter> | undefined;
9979
11735
  first?: Maybe<number> | undefined;
9980
11736
  includeArchived?: Maybe<boolean> | undefined;
9981
11737
  includeDisabled?: Maybe<boolean> | undefined;
@@ -9992,6 +11748,7 @@ export declare const IssueLabel_IssuesDocument: DocumentNode<IssueLabel_IssuesQu
9992
11748
  id: Scalars["String"];
9993
11749
  after?: Maybe<string> | undefined;
9994
11750
  before?: Maybe<string> | undefined;
11751
+ filter?: Maybe<IssueFilter> | undefined;
9995
11752
  first?: Maybe<number> | undefined;
9996
11753
  includeArchived?: Maybe<boolean> | undefined;
9997
11754
  last?: Maybe<number> | undefined;
@@ -10000,6 +11757,7 @@ export declare const IssueLabel_IssuesDocument: DocumentNode<IssueLabel_IssuesQu
10000
11757
  export declare const IssueLabelsDocument: DocumentNode<IssueLabelsQuery, Exact<{
10001
11758
  after?: Maybe<string> | undefined;
10002
11759
  before?: Maybe<string> | undefined;
11760
+ filter?: Maybe<IssueLabelFilter> | undefined;
10003
11761
  first?: Maybe<number> | undefined;
10004
11762
  includeArchived?: Maybe<boolean> | undefined;
10005
11763
  last?: Maybe<number> | undefined;
@@ -10022,6 +11780,7 @@ export declare const IssueRelationsDocument: DocumentNode<IssueRelationsQuery, E
10022
11780
  export declare const IssueSearchDocument: DocumentNode<IssueSearchQuery, Exact<{
10023
11781
  after?: Maybe<string> | undefined;
10024
11782
  before?: Maybe<string> | undefined;
11783
+ filter?: Maybe<IssueFilter> | undefined;
10025
11784
  first?: Maybe<number> | undefined;
10026
11785
  includeArchived?: Maybe<boolean> | undefined;
10027
11786
  last?: Maybe<number> | undefined;
@@ -10031,6 +11790,7 @@ export declare const IssueSearchDocument: DocumentNode<IssueSearchQuery, Exact<{
10031
11790
  export declare const IssuesDocument: DocumentNode<IssuesQuery, Exact<{
10032
11791
  after?: Maybe<string> | undefined;
10033
11792
  before?: Maybe<string> | undefined;
11793
+ filter?: Maybe<IssueFilter> | undefined;
10034
11794
  first?: Maybe<number> | undefined;
10035
11795
  includeArchived?: Maybe<boolean> | undefined;
10036
11796
  last?: Maybe<number> | undefined;
@@ -10043,6 +11803,7 @@ export declare const Milestone_ProjectsDocument: DocumentNode<Milestone_Projects
10043
11803
  id: Scalars["String"];
10044
11804
  after?: Maybe<string> | undefined;
10045
11805
  before?: Maybe<string> | undefined;
11806
+ filter?: Maybe<ProjectFilter> | undefined;
10046
11807
  first?: Maybe<number> | undefined;
10047
11808
  includeArchived?: Maybe<boolean> | undefined;
10048
11809
  last?: Maybe<number> | undefined;
@@ -10051,6 +11812,7 @@ export declare const Milestone_ProjectsDocument: DocumentNode<Milestone_Projects
10051
11812
  export declare const MilestonesDocument: DocumentNode<MilestonesQuery, Exact<{
10052
11813
  after?: Maybe<string> | undefined;
10053
11814
  before?: Maybe<string> | undefined;
11815
+ filter?: Maybe<MilestoneFilter> | undefined;
10054
11816
  first?: Maybe<number> | undefined;
10055
11817
  includeArchived?: Maybe<boolean> | undefined;
10056
11818
  last?: Maybe<number> | undefined;
@@ -10089,15 +11851,34 @@ export declare const Organization_IntegrationsDocument: DocumentNode<Organizatio
10089
11851
  last?: Maybe<number> | undefined;
10090
11852
  orderBy?: Maybe<PaginationOrderBy> | undefined;
10091
11853
  }>>;
11854
+ export declare const Organization_LabelsDocument: DocumentNode<Organization_LabelsQuery, Exact<{
11855
+ after?: Maybe<string> | undefined;
11856
+ before?: Maybe<string> | undefined;
11857
+ filter?: Maybe<IssueLabelFilter> | undefined;
11858
+ first?: Maybe<number> | undefined;
11859
+ includeArchived?: Maybe<boolean> | undefined;
11860
+ last?: Maybe<number> | undefined;
11861
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
11862
+ }>>;
10092
11863
  export declare const Organization_MilestonesDocument: DocumentNode<Organization_MilestonesQuery, Exact<{
10093
11864
  after?: Maybe<string> | undefined;
10094
11865
  before?: Maybe<string> | undefined;
11866
+ filter?: Maybe<MilestoneFilter> | undefined;
10095
11867
  first?: Maybe<number> | undefined;
10096
11868
  includeArchived?: Maybe<boolean> | undefined;
10097
11869
  last?: Maybe<number> | undefined;
10098
11870
  orderBy?: Maybe<PaginationOrderBy> | undefined;
10099
11871
  }>>;
10100
11872
  export declare const Organization_TeamsDocument: DocumentNode<Organization_TeamsQuery, Exact<{
11873
+ after?: Maybe<string> | undefined;
11874
+ before?: Maybe<string> | undefined;
11875
+ filter?: Maybe<TeamFilter> | undefined;
11876
+ first?: Maybe<number> | undefined;
11877
+ includeArchived?: Maybe<boolean> | undefined;
11878
+ last?: Maybe<number> | undefined;
11879
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
11880
+ }>>;
11881
+ export declare const Organization_TemplatesDocument: DocumentNode<Organization_TemplatesQuery, Exact<{
10101
11882
  after?: Maybe<string> | undefined;
10102
11883
  before?: Maybe<string> | undefined;
10103
11884
  first?: Maybe<number> | undefined;
@@ -10120,8 +11901,10 @@ export declare const OrganizationExistsDocument: DocumentNode<OrganizationExists
10120
11901
  export declare const OrganizationInviteDocument: DocumentNode<OrganizationInviteQuery, Exact<{
10121
11902
  id: Scalars["String"];
10122
11903
  }>>;
10123
- export declare const OrganizationInvite_IssuesDocument: DocumentNode<OrganizationInvite_IssuesQuery, Exact<{
11904
+ export declare const OrganizationInviteDetailsDocument: DocumentNode<OrganizationInviteDetailsQuery, Exact<{
10124
11905
  id: Scalars["String"];
11906
+ }>>;
11907
+ export declare const OrganizationInvitesDocument: DocumentNode<OrganizationInvitesQuery, Exact<{
10125
11908
  after?: Maybe<string> | undefined;
10126
11909
  before?: Maybe<string> | undefined;
10127
11910
  first?: Maybe<number> | undefined;
@@ -10129,7 +11912,11 @@ export declare const OrganizationInvite_IssuesDocument: DocumentNode<Organizatio
10129
11912
  last?: Maybe<number> | undefined;
10130
11913
  orderBy?: Maybe<PaginationOrderBy> | undefined;
10131
11914
  }>>;
10132
- export declare const OrganizationInvitesDocument: DocumentNode<OrganizationInvitesQuery, Exact<{
11915
+ export declare const ProjectDocument: DocumentNode<ProjectQuery, Exact<{
11916
+ id: Scalars["String"];
11917
+ }>>;
11918
+ export declare const Project_DocumentsDocument: DocumentNode<Project_DocumentsQuery, Exact<{
11919
+ id: Scalars["String"];
10133
11920
  after?: Maybe<string> | undefined;
10134
11921
  before?: Maybe<string> | undefined;
10135
11922
  first?: Maybe<number> | undefined;
@@ -10137,13 +11924,11 @@ export declare const OrganizationInvitesDocument: DocumentNode<OrganizationInvit
10137
11924
  last?: Maybe<number> | undefined;
10138
11925
  orderBy?: Maybe<PaginationOrderBy> | undefined;
10139
11926
  }>>;
10140
- export declare const ProjectDocument: DocumentNode<ProjectQuery, Exact<{
10141
- id: Scalars["String"];
10142
- }>>;
10143
11927
  export declare const Project_IssuesDocument: DocumentNode<Project_IssuesQuery, Exact<{
10144
11928
  id: Scalars["String"];
10145
11929
  after?: Maybe<string> | undefined;
10146
11930
  before?: Maybe<string> | undefined;
11931
+ filter?: Maybe<IssueFilter> | undefined;
10147
11932
  first?: Maybe<number> | undefined;
10148
11933
  includeArchived?: Maybe<boolean> | undefined;
10149
11934
  last?: Maybe<number> | undefined;
@@ -10162,6 +11947,7 @@ export declare const Project_MembersDocument: DocumentNode<Project_MembersQuery,
10162
11947
  id: Scalars["String"];
10163
11948
  after?: Maybe<string> | undefined;
10164
11949
  before?: Maybe<string> | undefined;
11950
+ filter?: Maybe<UserFilter> | undefined;
10165
11951
  first?: Maybe<number> | undefined;
10166
11952
  includeArchived?: Maybe<boolean> | undefined;
10167
11953
  includeDisabled?: Maybe<boolean> | undefined;
@@ -10172,6 +11958,7 @@ export declare const Project_TeamsDocument: DocumentNode<Project_TeamsQuery, Exa
10172
11958
  id: Scalars["String"];
10173
11959
  after?: Maybe<string> | undefined;
10174
11960
  before?: Maybe<string> | undefined;
11961
+ filter?: Maybe<TeamFilter> | undefined;
10175
11962
  first?: Maybe<number> | undefined;
10176
11963
  includeArchived?: Maybe<boolean> | undefined;
10177
11964
  last?: Maybe<number> | undefined;
@@ -10191,6 +11978,7 @@ export declare const ProjectLinksDocument: DocumentNode<ProjectLinksQuery, Exact
10191
11978
  export declare const ProjectsDocument: DocumentNode<ProjectsQuery, Exact<{
10192
11979
  after?: Maybe<string> | undefined;
10193
11980
  before?: Maybe<string> | undefined;
11981
+ filter?: Maybe<ProjectFilter> | undefined;
10194
11982
  first?: Maybe<number> | undefined;
10195
11983
  includeArchived?: Maybe<boolean> | undefined;
10196
11984
  last?: Maybe<number> | undefined;
@@ -10224,6 +12012,7 @@ export declare const Team_CyclesDocument: DocumentNode<Team_CyclesQuery, Exact<{
10224
12012
  id: Scalars["String"];
10225
12013
  after?: Maybe<string> | undefined;
10226
12014
  before?: Maybe<string> | undefined;
12015
+ filter?: Maybe<CycleFilter> | undefined;
10227
12016
  first?: Maybe<number> | undefined;
10228
12017
  includeArchived?: Maybe<boolean> | undefined;
10229
12018
  last?: Maybe<number> | undefined;
@@ -10233,6 +12022,7 @@ export declare const Team_IssuesDocument: DocumentNode<Team_IssuesQuery, Exact<{
10233
12022
  id: Scalars["String"];
10234
12023
  after?: Maybe<string> | undefined;
10235
12024
  before?: Maybe<string> | undefined;
12025
+ filter?: Maybe<IssueFilter> | undefined;
10236
12026
  first?: Maybe<number> | undefined;
10237
12027
  includeArchived?: Maybe<boolean> | undefined;
10238
12028
  last?: Maybe<number> | undefined;
@@ -10242,6 +12032,7 @@ export declare const Team_LabelsDocument: DocumentNode<Team_LabelsQuery, Exact<{
10242
12032
  id: Scalars["String"];
10243
12033
  after?: Maybe<string> | undefined;
10244
12034
  before?: Maybe<string> | undefined;
12035
+ filter?: Maybe<IssueLabelFilter> | undefined;
10245
12036
  first?: Maybe<number> | undefined;
10246
12037
  includeArchived?: Maybe<boolean> | undefined;
10247
12038
  last?: Maybe<number> | undefined;
@@ -10251,6 +12042,7 @@ export declare const Team_MembersDocument: DocumentNode<Team_MembersQuery, Exact
10251
12042
  id: Scalars["String"];
10252
12043
  after?: Maybe<string> | undefined;
10253
12044
  before?: Maybe<string> | undefined;
12045
+ filter?: Maybe<UserFilter> | undefined;
10254
12046
  first?: Maybe<number> | undefined;
10255
12047
  includeArchived?: Maybe<boolean> | undefined;
10256
12048
  includeDisabled?: Maybe<boolean> | undefined;
@@ -10270,6 +12062,7 @@ export declare const Team_ProjectsDocument: DocumentNode<Team_ProjectsQuery, Exa
10270
12062
  id: Scalars["String"];
10271
12063
  after?: Maybe<string> | undefined;
10272
12064
  before?: Maybe<string> | undefined;
12065
+ filter?: Maybe<ProjectFilter> | undefined;
10273
12066
  first?: Maybe<number> | undefined;
10274
12067
  includeArchived?: Maybe<boolean> | undefined;
10275
12068
  last?: Maybe<number> | undefined;
@@ -10279,6 +12072,7 @@ export declare const Team_StatesDocument: DocumentNode<Team_StatesQuery, Exact<{
10279
12072
  id: Scalars["String"];
10280
12073
  after?: Maybe<string> | undefined;
10281
12074
  before?: Maybe<string> | undefined;
12075
+ filter?: Maybe<WorkflowStateFilter> | undefined;
10282
12076
  first?: Maybe<number> | undefined;
10283
12077
  includeArchived?: Maybe<boolean> | undefined;
10284
12078
  last?: Maybe<number> | undefined;
@@ -10316,6 +12110,7 @@ export declare const TeamMembershipsDocument: DocumentNode<TeamMembershipsQuery,
10316
12110
  export declare const TeamsDocument: DocumentNode<TeamsQuery, Exact<{
10317
12111
  after?: Maybe<string> | undefined;
10318
12112
  before?: Maybe<string> | undefined;
12113
+ filter?: Maybe<TeamFilter> | undefined;
10319
12114
  first?: Maybe<number> | undefined;
10320
12115
  includeArchived?: Maybe<boolean> | undefined;
10321
12116
  last?: Maybe<number> | undefined;
@@ -10334,6 +12129,7 @@ export declare const User_AssignedIssuesDocument: DocumentNode<User_AssignedIssu
10334
12129
  id: Scalars["String"];
10335
12130
  after?: Maybe<string> | undefined;
10336
12131
  before?: Maybe<string> | undefined;
12132
+ filter?: Maybe<IssueFilter> | undefined;
10337
12133
  first?: Maybe<number> | undefined;
10338
12134
  includeArchived?: Maybe<boolean> | undefined;
10339
12135
  last?: Maybe<number> | undefined;
@@ -10343,6 +12139,7 @@ export declare const User_CreatedIssuesDocument: DocumentNode<User_CreatedIssues
10343
12139
  id: Scalars["String"];
10344
12140
  after?: Maybe<string> | undefined;
10345
12141
  before?: Maybe<string> | undefined;
12142
+ filter?: Maybe<IssueFilter> | undefined;
10346
12143
  first?: Maybe<number> | undefined;
10347
12144
  includeArchived?: Maybe<boolean> | undefined;
10348
12145
  last?: Maybe<number> | undefined;
@@ -10361,6 +12158,7 @@ export declare const User_TeamsDocument: DocumentNode<User_TeamsQuery, Exact<{
10361
12158
  id: Scalars["String"];
10362
12159
  after?: Maybe<string> | undefined;
10363
12160
  before?: Maybe<string> | undefined;
12161
+ filter?: Maybe<TeamFilter> | undefined;
10364
12162
  first?: Maybe<number> | undefined;
10365
12163
  includeArchived?: Maybe<boolean> | undefined;
10366
12164
  last?: Maybe<number> | undefined;
@@ -10372,6 +12170,7 @@ export declare const UserSettingsDocument: DocumentNode<UserSettingsQuery, Exact
10372
12170
  export declare const UsersDocument: DocumentNode<UsersQuery, Exact<{
10373
12171
  after?: Maybe<string> | undefined;
10374
12172
  before?: Maybe<string> | undefined;
12173
+ filter?: Maybe<UserFilter> | undefined;
10375
12174
  first?: Maybe<number> | undefined;
10376
12175
  includeArchived?: Maybe<boolean> | undefined;
10377
12176
  includeDisabled?: Maybe<boolean> | undefined;
@@ -10384,6 +12183,7 @@ export declare const ViewerDocument: DocumentNode<ViewerQuery, Exact<{
10384
12183
  export declare const Viewer_AssignedIssuesDocument: DocumentNode<Viewer_AssignedIssuesQuery, Exact<{
10385
12184
  after?: Maybe<string> | undefined;
10386
12185
  before?: Maybe<string> | undefined;
12186
+ filter?: Maybe<IssueFilter> | undefined;
10387
12187
  first?: Maybe<number> | undefined;
10388
12188
  includeArchived?: Maybe<boolean> | undefined;
10389
12189
  last?: Maybe<number> | undefined;
@@ -10392,6 +12192,7 @@ export declare const Viewer_AssignedIssuesDocument: DocumentNode<Viewer_Assigned
10392
12192
  export declare const Viewer_CreatedIssuesDocument: DocumentNode<Viewer_CreatedIssuesQuery, Exact<{
10393
12193
  after?: Maybe<string> | undefined;
10394
12194
  before?: Maybe<string> | undefined;
12195
+ filter?: Maybe<IssueFilter> | undefined;
10395
12196
  first?: Maybe<number> | undefined;
10396
12197
  includeArchived?: Maybe<boolean> | undefined;
10397
12198
  last?: Maybe<number> | undefined;
@@ -10408,6 +12209,7 @@ export declare const Viewer_TeamMembershipsDocument: DocumentNode<Viewer_TeamMem
10408
12209
  export declare const Viewer_TeamsDocument: DocumentNode<Viewer_TeamsQuery, Exact<{
10409
12210
  after?: Maybe<string> | undefined;
10410
12211
  before?: Maybe<string> | undefined;
12212
+ filter?: Maybe<TeamFilter> | undefined;
10411
12213
  first?: Maybe<number> | undefined;
10412
12214
  includeArchived?: Maybe<boolean> | undefined;
10413
12215
  last?: Maybe<number> | undefined;
@@ -10431,6 +12233,7 @@ export declare const WorkflowState_IssuesDocument: DocumentNode<WorkflowState_Is
10431
12233
  id: Scalars["String"];
10432
12234
  after?: Maybe<string> | undefined;
10433
12235
  before?: Maybe<string> | undefined;
12236
+ filter?: Maybe<IssueFilter> | undefined;
10434
12237
  first?: Maybe<number> | undefined;
10435
12238
  includeArchived?: Maybe<boolean> | undefined;
10436
12239
  last?: Maybe<number> | undefined;
@@ -10439,6 +12242,7 @@ export declare const WorkflowState_IssuesDocument: DocumentNode<WorkflowState_Is
10439
12242
  export declare const WorkflowStatesDocument: DocumentNode<WorkflowStatesQuery, Exact<{
10440
12243
  after?: Maybe<string> | undefined;
10441
12244
  before?: Maybe<string> | undefined;
12245
+ filter?: Maybe<WorkflowStateFilter> | undefined;
10442
12246
  first?: Maybe<number> | undefined;
10443
12247
  includeArchived?: Maybe<boolean> | undefined;
10444
12248
  last?: Maybe<number> | undefined;
@@ -10461,6 +12265,10 @@ export declare const AttachmentLinkIntercomDocument: DocumentNode<AttachmentLink
10461
12265
  conversationId: Scalars["String"];
10462
12266
  issueId: Scalars["String"];
10463
12267
  }>>;
12268
+ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLinkJiraIssueMutation, Exact<{
12269
+ issueId: Scalars["String"];
12270
+ jiraIssueId: Scalars["String"];
12271
+ }>>;
10464
12272
  export declare const AttachmentLinkUrlDocument: DocumentNode<AttachmentLinkUrlMutation, Exact<{
10465
12273
  issueId: Scalars["String"];
10466
12274
  title?: Maybe<string> | undefined;
@@ -10520,14 +12328,21 @@ export declare const CycleUpdateDocument: DocumentNode<CycleUpdateMutation, Exac
10520
12328
  id: Scalars["String"];
10521
12329
  input: CycleUpdateInput;
10522
12330
  }>>;
10523
- export declare const DebugCreateSamlOrgDocument: DocumentNode<DebugCreateSamlOrgMutation, Exact<{
10524
- [key: string]: never;
10525
- }>>;
10526
12331
  export declare const DebugFailWithInternalErrorDocument: DocumentNode<DebugFailWithInternalErrorMutation, Exact<{
10527
12332
  [key: string]: never;
10528
12333
  }>>;
10529
- export declare const DebugFailWithWarningDocument: DocumentNode<DebugFailWithWarningMutation, Exact<{
10530
- [key: string]: never;
12334
+ export declare const DocumentCreateDocument: DocumentNode<DocumentCreateMutation, Exact<{
12335
+ input: DocumentCreateInput;
12336
+ }>>;
12337
+ export declare const DocumentDeleteDocument: DocumentNode<DocumentDeleteMutation, Exact<{
12338
+ id: Scalars["String"];
12339
+ }>>;
12340
+ export declare const DocumentUpdateDocument: DocumentNode<DocumentUpdateMutation, Exact<{
12341
+ id: Scalars["String"];
12342
+ input: DocumentUpdateInput;
12343
+ }>>;
12344
+ export declare const EmailSubscribeDocument: DocumentNode<EmailSubscribeMutation, Exact<{
12345
+ input: EmailSubscribeInput;
10531
12346
  }>>;
10532
12347
  export declare const EmailTokenUserAccountAuthDocument: DocumentNode<EmailTokenUserAccountAuthMutation, Exact<{
10533
12348
  input: TokenUserAccountAuthInput;
@@ -10583,6 +12398,9 @@ export declare const IntegrationFrontDocument: DocumentNode<IntegrationFrontMuta
10583
12398
  code: Scalars["String"];
10584
12399
  redirectUri: Scalars["String"];
10585
12400
  }>>;
12401
+ export declare const IntegrationGithubCommitCreateDocument: DocumentNode<IntegrationGithubCommitCreateMutation, Exact<{
12402
+ [key: string]: never;
12403
+ }>>;
10586
12404
  export declare const IntegrationGithubConnectDocument: DocumentNode<IntegrationGithubConnectMutation, Exact<{
10587
12405
  installationId: Scalars["String"];
10588
12406
  }>>;
@@ -10614,6 +12432,10 @@ export declare const IntegrationSentryConnectDocument: DocumentNode<IntegrationS
10614
12432
  installationId: Scalars["String"];
10615
12433
  organizationSlug: Scalars["String"];
10616
12434
  }>>;
12435
+ export declare const IntegrationSettingsUpdateDocument: DocumentNode<IntegrationSettingsUpdateMutation, Exact<{
12436
+ id: Scalars["String"];
12437
+ input: IntegrationSettingsInput;
12438
+ }>>;
10617
12439
  export declare const IntegrationSlackDocument: DocumentNode<IntegrationSlackMutation, Exact<{
10618
12440
  code: Scalars["String"];
10619
12441
  redirectUri: Scalars["String"];
@@ -10648,6 +12470,10 @@ export declare const IssueArchiveDocument: DocumentNode<IssueArchiveMutation, Ex
10648
12470
  id: Scalars["String"];
10649
12471
  trash?: Maybe<boolean> | undefined;
10650
12472
  }>>;
12473
+ export declare const IssueBatchUpdateDocument: DocumentNode<IssueBatchUpdateMutation, Exact<{
12474
+ ids: Array<Scalars["UUID"]> | Scalars["UUID"];
12475
+ input: IssueUpdateInput;
12476
+ }>>;
10651
12477
  export declare const IssueCreateDocument: DocumentNode<IssueCreateMutation, Exact<{
10652
12478
  input: IssueCreateInput;
10653
12479
  }>>;
@@ -10658,6 +12484,7 @@ export declare const IssueImportCreateAsanaDocument: DocumentNode<IssueImportCre
10658
12484
  asanaTeamName: Scalars["String"];
10659
12485
  asanaToken: Scalars["String"];
10660
12486
  id?: Maybe<string> | undefined;
12487
+ includeClosedIssues?: Maybe<boolean> | undefined;
10661
12488
  instantProcess?: Maybe<boolean> | undefined;
10662
12489
  teamId: Scalars["String"];
10663
12490
  }>>;
@@ -10665,6 +12492,7 @@ export declare const IssueImportCreateClubhouseDocument: DocumentNode<IssueImpor
10665
12492
  clubhouseTeamName: Scalars["String"];
10666
12493
  clubhouseToken: Scalars["String"];
10667
12494
  id?: Maybe<string> | undefined;
12495
+ includeClosedIssues?: Maybe<boolean> | undefined;
10668
12496
  instantProcess?: Maybe<boolean> | undefined;
10669
12497
  teamId: Scalars["String"];
10670
12498
  }>>;
@@ -10674,11 +12502,13 @@ export declare const IssueImportCreateGithubDocument: DocumentNode<IssueImportCr
10674
12502
  githubShouldImportOrgProjects?: Maybe<boolean> | undefined;
10675
12503
  githubToken: Scalars["String"];
10676
12504
  id?: Maybe<string> | undefined;
12505
+ includeClosedIssues?: Maybe<boolean> | undefined;
10677
12506
  instantProcess?: Maybe<boolean> | undefined;
10678
12507
  teamId: Scalars["String"];
10679
12508
  }>>;
10680
12509
  export declare const IssueImportCreateJiraDocument: DocumentNode<IssueImportCreateJiraMutation, Exact<{
10681
12510
  id?: Maybe<string> | undefined;
12511
+ includeClosedIssues?: Maybe<boolean> | undefined;
10682
12512
  instantProcess?: Maybe<boolean> | undefined;
10683
12513
  jiraEmail: Scalars["String"];
10684
12514
  jiraHostname: Scalars["String"];
@@ -10693,11 +12523,16 @@ export declare const IssueImportProcessDocument: DocumentNode<IssueImportProcess
10693
12523
  issueImportId: Scalars["String"];
10694
12524
  mapping: Scalars["JSONObject"];
10695
12525
  }>>;
12526
+ export declare const IssueImportUpdateDocument: DocumentNode<IssueImportUpdateMutation, Exact<{
12527
+ id: Scalars["String"];
12528
+ input: IssueImportUpdateInput;
12529
+ }>>;
10696
12530
  export declare const IssueLabelArchiveDocument: DocumentNode<IssueLabelArchiveMutation, Exact<{
10697
12531
  id: Scalars["String"];
10698
12532
  }>>;
10699
12533
  export declare const IssueLabelCreateDocument: DocumentNode<IssueLabelCreateMutation, Exact<{
10700
12534
  input: IssueLabelCreateInput;
12535
+ replaceTeamLabels?: Maybe<boolean> | undefined;
10701
12536
  }>>;
10702
12537
  export declare const IssueLabelUpdateDocument: DocumentNode<IssueLabelUpdateMutation, Exact<{
10703
12538
  id: Scalars["String"];
@@ -10720,6 +12555,9 @@ export declare const IssueUpdateDocument: DocumentNode<IssueUpdateMutation, Exac
10720
12555
  id: Scalars["String"];
10721
12556
  input: IssueUpdateInput;
10722
12557
  }>>;
12558
+ export declare const JiraIntegrationConnectDocument: DocumentNode<JiraIntegrationConnectMutation, Exact<{
12559
+ input: JiraConfigurationInput;
12560
+ }>>;
10723
12561
  export declare const JoinOrganizationFromOnboardingDocument: DocumentNode<JoinOrganizationFromOnboardingMutation, Exact<{
10724
12562
  input: JoinOrganizationInput;
10725
12563
  }>>;
@@ -10812,6 +12650,10 @@ export declare const ProjectLinkCreateDocument: DocumentNode<ProjectLinkCreateMu
10812
12650
  export declare const ProjectLinkDeleteDocument: DocumentNode<ProjectLinkDeleteMutation, Exact<{
10813
12651
  id: Scalars["String"];
10814
12652
  }>>;
12653
+ export declare const ProjectLinkUpdateDocument: DocumentNode<ProjectLinkUpdateMutation, Exact<{
12654
+ id: Scalars["String"];
12655
+ input: ProjectLinkUpdateInput;
12656
+ }>>;
10815
12657
  export declare const ProjectUnarchiveDocument: DocumentNode<ProjectUnarchiveMutation, Exact<{
10816
12658
  id: Scalars["String"];
10817
12659
  }>>;
@@ -10834,29 +12676,12 @@ export declare const ReactionDeleteDocument: DocumentNode<ReactionDeleteMutation
10834
12676
  export declare const RefreshGoogleSheetsDataDocument: DocumentNode<RefreshGoogleSheetsDataMutation, Exact<{
10835
12677
  id: Scalars["String"];
10836
12678
  }>>;
10837
- export declare const ResentOrganizationInviteDocument: DocumentNode<ResentOrganizationInviteMutation, Exact<{
12679
+ export declare const ResendOrganizationInviteDocument: DocumentNode<ResendOrganizationInviteMutation, Exact<{
10838
12680
  id: Scalars["String"];
10839
12681
  }>>;
10840
12682
  export declare const SamlTokenUserAccountAuthDocument: DocumentNode<SamlTokenUserAccountAuthMutation, Exact<{
10841
12683
  input: TokenUserAccountAuthInput;
10842
12684
  }>>;
10843
- export declare const SubscriptionArchiveDocument: DocumentNode<SubscriptionArchiveMutation, Exact<{
10844
- id: Scalars["String"];
10845
- }>>;
10846
- export declare const SubscriptionSessionCreateDocument: DocumentNode<SubscriptionSessionCreateMutation, Exact<{
10847
- plan: Scalars["String"];
10848
- }>>;
10849
- export declare const SubscriptionUpdateDocument: DocumentNode<SubscriptionUpdateMutation, Exact<{
10850
- id: Scalars["String"];
10851
- input: SubscriptionUpdateInput;
10852
- }>>;
10853
- export declare const SubscriptionUpdateSessionCreateDocument: DocumentNode<SubscriptionUpdateSessionCreateMutation, Exact<{
10854
- [key: string]: never;
10855
- }>>;
10856
- export declare const SubscriptionUpgradeDocument: DocumentNode<SubscriptionUpgradeMutation, Exact<{
10857
- id: Scalars["String"];
10858
- type: Scalars["String"];
10859
- }>>;
10860
12685
  export declare const TeamCreateDocument: DocumentNode<TeamCreateMutation, Exact<{
10861
12686
  copySettingsFromTeamId?: Maybe<string> | undefined;
10862
12687
  input: TeamCreateInput;