@linear/sdk 22.0.0 → 24.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -538,6 +538,15 @@ export declare type AuthOrganization = {
538
538
  urlKey: Scalars["String"];
539
539
  userCount: Scalars["Float"];
540
540
  };
541
+ export declare type AuthOrganizationBucketNamePayload = {
542
+ __typename?: "AuthOrganizationBucketNamePayload";
543
+ /** The imports bucket name for the organization. */
544
+ importsBucketName: Scalars["String"];
545
+ /** The region for the organization. */
546
+ region: Scalars["String"];
547
+ /** The uploads bucket name for the organization. */
548
+ uploadsBucketName: Scalars["String"];
549
+ };
541
550
  export declare type AuthOrganizationDomain = {
542
551
  __typename?: "AuthOrganizationDomain";
543
552
  authType: OrganizationDomainAuthType;
@@ -754,7 +763,7 @@ export declare type Comment = Node & {
754
763
  /** The comment content in markdown format. */
755
764
  body: Scalars["String"];
756
765
  /** [Internal] The comment content as a Prosemirror document. */
757
- bodyData: Scalars["String"];
766
+ bodyData?: Maybe<Scalars["String"]>;
758
767
  /** The bot that created the comment. */
759
768
  botActor?: Maybe<ActorBot>;
760
769
  /** The children of the comment. */
@@ -779,6 +788,8 @@ export declare type Comment = Node & {
779
788
  quotedText?: Maybe<Scalars["String"]>;
780
789
  /** Emoji reaction summary, grouped by emoji type. */
781
790
  reactionData: Scalars["JSONObject"];
791
+ /** Reactions associated with the comment. */
792
+ reactions: Array<Reaction>;
782
793
  /** The time the resolvingUser resolved the thread. */
783
794
  resolvedAt?: Maybe<Scalars["DateTime"]>;
784
795
  /** The comment that resolved the thread. */
@@ -832,6 +843,8 @@ export declare type CommentCollectionFilter = {
832
843
  parent?: Maybe<NullableCommentFilter>;
833
844
  /** Filters that the comments project update must satisfy. */
834
845
  projectUpdate?: Maybe<ProjectUpdateFilter>;
846
+ /** Filters that the comments reactions must satisfy. */
847
+ reactions?: Maybe<ReactionCollectionFilter>;
835
848
  /** Filters that needs to be matched by some comments. */
836
849
  some?: Maybe<CommentFilter>;
837
850
  /** Comparator for the updated at date. */
@@ -872,6 +885,8 @@ export declare type CommentCreateInput = {
872
885
  projectUpdateId?: Maybe<Scalars["String"]>;
873
886
  /** The text that this comment references. Only defined for inline comments. */
874
887
  quotedText?: Maybe<Scalars["String"]>;
888
+ /** [INTERNAL] The identifiers of the users subscribing to this comment thread. */
889
+ subscriberIds?: Maybe<Array<Scalars["String"]>>;
875
890
  };
876
891
  export declare type CommentEdge = {
877
892
  __typename?: "CommentEdge";
@@ -899,11 +914,21 @@ export declare type CommentFilter = {
899
914
  parent?: Maybe<NullableCommentFilter>;
900
915
  /** Filters that the comments project update must satisfy. */
901
916
  projectUpdate?: Maybe<ProjectUpdateFilter>;
917
+ /** Filters that the comments reactions must satisfy. */
918
+ reactions?: Maybe<ReactionCollectionFilter>;
902
919
  /** Comparator for the updated at date. */
903
920
  updatedAt?: Maybe<DateComparator>;
904
921
  /** Filters that the comments creator must satisfy. */
905
922
  user?: Maybe<UserFilter>;
906
923
  };
924
+ /** A comment related notification. */
925
+ export declare type CommentNotification = {
926
+ __typename?: "CommentNotification";
927
+ /** Related comment ID. Null if the notification is not related to a comment. */
928
+ commentId?: Maybe<Scalars["String"]>;
929
+ /** Related parent comment ID. Null if the notification is not related to a comment. */
930
+ parentCommentId?: Maybe<Scalars["String"]>;
931
+ };
907
932
  export declare type CommentPayload = {
908
933
  __typename?: "CommentPayload";
909
934
  /** The comment that was created or updated. */
@@ -918,12 +943,16 @@ export declare type CommentUpdateInput = {
918
943
  body?: Maybe<Scalars["String"]>;
919
944
  /** The comment content as a Prosemirror document. */
920
945
  bodyData?: Maybe<Scalars["JSON"]>;
946
+ /** [INTERNAL] Flag to prevent auto subscription to the issue the comment is updated on. */
947
+ doNotSubscribeToIssue?: Maybe<Scalars["Boolean"]>;
921
948
  /** The text that this comment references. Only defined for inline comments. */
922
949
  quotedText?: Maybe<Scalars["String"]>;
923
950
  /** [INTERNAL] The child comment that resolves this thread. */
924
951
  resolvingCommentId?: Maybe<Scalars["String"]>;
925
952
  /** [INTERNAL] The user who resolved this thread. */
926
953
  resolvingUserId?: Maybe<Scalars["String"]>;
954
+ /** [INTERNAL] The identifiers of the users subscribing to this comment. */
955
+ subscriberIds?: Maybe<Array<Scalars["String"]>>;
927
956
  };
928
957
  /** A company related to issue's origin. */
929
958
  export declare type Company = Node & {
@@ -1146,13 +1175,15 @@ export declare type CustomViewCreateInput = {
1146
1175
  icon?: Maybe<Scalars["String"]>;
1147
1176
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1148
1177
  id?: Maybe<Scalars["String"]>;
1178
+ /** The id of the initiative associated with the custom view. */
1179
+ initiativeId?: Maybe<Scalars["String"]>;
1149
1180
  /** The name of the custom view. */
1150
1181
  name: Scalars["String"];
1151
1182
  /** The owner of the custom view. */
1152
1183
  ownerId?: Maybe<Scalars["String"]>;
1153
1184
  /** The project filter applied to issues in the custom view. */
1154
1185
  projectFilterData?: Maybe<ProjectFilter>;
1155
- /** [Internal] The id of the project associated with the custom view. */
1186
+ /** The id of the project associated with the custom view. */
1156
1187
  projectId?: Maybe<Scalars["String"]>;
1157
1188
  /** Whether the custom view is shared with everyone in the organization. */
1158
1189
  shared?: Maybe<Scalars["Boolean"]>;
@@ -1237,6 +1268,8 @@ export declare type CustomViewUpdateInput = {
1237
1268
  filters?: Maybe<Scalars["JSONObject"]>;
1238
1269
  /** The icon of the custom view. */
1239
1270
  icon?: Maybe<Scalars["String"]>;
1271
+ /** [Internal] The id of the initiative associated with the custom view. */
1272
+ initiativeId?: Maybe<Scalars["String"]>;
1240
1273
  /** The name of the custom view. */
1241
1274
  name?: Maybe<Scalars["String"]>;
1242
1275
  /** The owner of the custom view. */
@@ -1526,7 +1559,7 @@ export declare type DiaryEntry = Node & {
1526
1559
  /** The time at which the entity was archived. Null if the entity has not been archived. */
1527
1560
  archivedAt?: Maybe<Scalars["DateTime"]>;
1528
1561
  /** [Internal] The entry content as a Prosemirror document. */
1529
- bodyData: Scalars["String"];
1562
+ bodyData?: Maybe<Scalars["String"]>;
1530
1563
  /** The time at which the entity was created. */
1531
1564
  createdAt: Scalars["DateTime"];
1532
1565
  /** The date for which the entry is created */
@@ -1554,7 +1587,7 @@ export declare type DiaryEntryCreateInput = {
1554
1587
  /** [Internal] The comment content as a Prosemirror diaryEntry. */
1555
1588
  bodyData?: Maybe<Scalars["JSON"]>;
1556
1589
  /** The date for which the entry is created. */
1557
- date?: Maybe<Scalars["TimelessDate"]>;
1590
+ date: Scalars["TimelessDate"];
1558
1591
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1559
1592
  id?: Maybe<Scalars["String"]>;
1560
1593
  };
@@ -1617,6 +1650,8 @@ export declare type Document = Node & {
1617
1650
  sortOrder: Scalars["Float"];
1618
1651
  /** The document title. */
1619
1652
  title: Scalars["String"];
1653
+ /** A flag that indicates whether the document is in the trash bin. */
1654
+ trashed?: Maybe<Scalars["Boolean"]>;
1620
1655
  /**
1621
1656
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1622
1657
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -1628,6 +1663,16 @@ export declare type Document = Node & {
1628
1663
  /** The canonical url for the document. */
1629
1664
  url: Scalars["String"];
1630
1665
  };
1666
+ /** A generic payload return from entity archive mutations. */
1667
+ export declare type DocumentArchivePayload = ArchivePayload & {
1668
+ __typename?: "DocumentArchivePayload";
1669
+ /** The archived/unarchived entity. Null if entity was deleted. */
1670
+ entity?: Maybe<Document>;
1671
+ /** The identifier of the last sync operation. */
1672
+ lastSyncId: Scalars["Float"];
1673
+ /** Whether the operation was successful. */
1674
+ success: Scalars["Boolean"];
1675
+ };
1631
1676
  /** Document filtering options. */
1632
1677
  export declare type DocumentCollectionFilter = {
1633
1678
  /** Compound filters, all of which need to be matched by the document. */
@@ -1738,7 +1783,7 @@ export declare type DocumentContentHistory = Node & {
1738
1783
  export declare type DocumentContentHistoryPayload = {
1739
1784
  __typename?: "DocumentContentHistoryPayload";
1740
1785
  /** The document content history entries. */
1741
- history?: Maybe<Array<DocumentContentHistoryType>>;
1786
+ history: Array<DocumentContentHistoryType>;
1742
1787
  /** Whether the operation was successful. */
1743
1788
  success: Scalars["Boolean"];
1744
1789
  };
@@ -1747,7 +1792,7 @@ export declare type DocumentContentHistoryType = {
1747
1792
  /** The ID of the author of the change. */
1748
1793
  actorIds?: Maybe<Array<Scalars["String"]>>;
1749
1794
  /** [Internal] The document content as Prosemirror document. */
1750
- contentData: Scalars["JSON"];
1795
+ contentData?: Maybe<Scalars["JSON"]>;
1751
1796
  /** The date when the document content history snapshot was taken. This can be different than createdAt since the content is captured from its state at the previously known updatedAt timestamp in the case of an update. On document create, these timestamps can be the same. */
1752
1797
  contentDataSnapshotAt: Scalars["DateTime"];
1753
1798
  /** The date when the document content history entry was created. */
@@ -1809,10 +1854,18 @@ export declare type DocumentNotification = Entity & Node & Notification & {
1809
1854
  __typename?: "DocumentNotification";
1810
1855
  /** The user that caused the notification. */
1811
1856
  actor?: Maybe<User>;
1857
+ /** [Internal] Notification actor initials if avatar is not available. */
1858
+ actorAvatarColor?: Maybe<Scalars["String"]>;
1859
+ /** [Internal] Notification avatar URL. */
1860
+ actorAvatarUrl?: Maybe<Scalars["String"]>;
1861
+ /** [Internal] Notification actor initials if avatar is not available. */
1862
+ actorInitials?: Maybe<Scalars["String"]>;
1812
1863
  /** The time at which the entity was archived. Null if the entity has not been archived. */
1813
1864
  archivedAt?: Maybe<Scalars["DateTime"]>;
1814
1865
  /** The bot that caused the notification. */
1815
1866
  botActor?: Maybe<ActorBot>;
1867
+ /** Related comment ID. Null if the notification is not related to a comment. */
1868
+ commentId?: Maybe<Scalars["String"]>;
1816
1869
  /** The time at which the entity was created. */
1817
1870
  createdAt: Scalars["DateTime"];
1818
1871
  /**
@@ -1822,12 +1875,26 @@ export declare type DocumentNotification = Entity & Node & Notification & {
1822
1875
  emailedAt?: Maybe<Scalars["DateTime"]>;
1823
1876
  /** The external user that caused the notification. */
1824
1877
  externalUserActor?: Maybe<ExternalUser>;
1878
+ /** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
1879
+ groupingKey: Scalars["String"];
1825
1880
  /** The unique identifier of the entity. */
1826
1881
  id: Scalars["ID"];
1882
+ /** [Internal] If notification actor was Linear. */
1883
+ isLinearActor?: Maybe<Scalars["Boolean"]>;
1884
+ /** [Internal] Issue's status type for issue notifications. */
1885
+ issueStatusType?: Maybe<Scalars["String"]>;
1886
+ /** Related parent comment ID. Null if the notification is not related to a comment. */
1887
+ parentCommentId?: Maybe<Scalars["String"]>;
1888
+ /** [Internal] Project update health for new updates. */
1889
+ projectUpdateHealth?: Maybe<Scalars["String"]>;
1827
1890
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
1828
1891
  readAt?: Maybe<Scalars["DateTime"]>;
1829
1892
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
1830
1893
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
1894
+ /** [Internal] Notification subtitle. */
1895
+ subtitle: Scalars["String"];
1896
+ /** [Internal] Notification title. */
1897
+ title: Scalars["String"];
1831
1898
  /** Notification type. */
1832
1899
  type: Scalars["String"];
1833
1900
  /** The time at which a notification was unsnoozed.. */
@@ -1838,6 +1905,8 @@ export declare type DocumentNotification = Entity & Node & Notification & {
1838
1905
  * been updated after creation.
1839
1906
  */
1840
1907
  updatedAt: Scalars["DateTime"];
1908
+ /** [Internal] URL to the target of the notification. */
1909
+ url: Scalars["String"];
1841
1910
  /** The user that received the notification. */
1842
1911
  user: User;
1843
1912
  };
@@ -1899,6 +1968,8 @@ export declare type DocumentSearchResult = Node & {
1899
1968
  sortOrder: Scalars["Float"];
1900
1969
  /** The document title. */
1901
1970
  title: Scalars["String"];
1971
+ /** A flag that indicates whether the document is in the trash bin. */
1972
+ trashed?: Maybe<Scalars["Boolean"]>;
1902
1973
  /**
1903
1974
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1904
1975
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -1943,6 +2014,40 @@ export declare type DocumentUpdateInput = {
1943
2014
  sortOrder?: Maybe<Scalars["Float"]>;
1944
2015
  /** The title of the document. */
1945
2016
  title?: Maybe<Scalars["String"]>;
2017
+ /** Whether the document has been trashed. */
2018
+ trashed?: Maybe<Scalars["Boolean"]>;
2019
+ };
2020
+ /** A general purpose draft. Used for comments, project updates, etc. */
2021
+ export declare type Draft = Node & {
2022
+ __typename?: "Draft";
2023
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2024
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2025
+ /** The text content as a Prosemirror document. */
2026
+ bodyData: Scalars["JSON"];
2027
+ /** The time at which the entity was created. */
2028
+ createdAt: Scalars["DateTime"];
2029
+ /** Additional properties for the draft. */
2030
+ data?: Maybe<Scalars["JSONObject"]>;
2031
+ /** The unique identifier of the entity. */
2032
+ id: Scalars["ID"];
2033
+ /** Whether the draft was autogenerated for the user. */
2034
+ isAutogenerated: Scalars["Boolean"];
2035
+ /** The issue for which this is a draft comment. */
2036
+ issue?: Maybe<Issue>;
2037
+ /** The comment for which this is a draft comment reply. */
2038
+ parentComment?: Maybe<Comment>;
2039
+ /** The project for which this is a draft project update. */
2040
+ project?: Maybe<Project>;
2041
+ /** The project update for which this is a draft comment. */
2042
+ projectUpdate?: Maybe<ProjectUpdate>;
2043
+ /**
2044
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2045
+ * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
2046
+ * been updated after creation.
2047
+ */
2048
+ updatedAt: Scalars["DateTime"];
2049
+ /** The user who created the draft. */
2050
+ user: User;
1946
2051
  };
1947
2052
  /** Issue due date sorting options. */
1948
2053
  export declare type DueDateSort = {
@@ -2256,6 +2361,18 @@ export declare type Facet = Node & {
2256
2361
  id: Scalars["ID"];
2257
2362
  /** The sort order of the facet. */
2258
2363
  sortOrder: Scalars["Float"];
2364
+ /** The owning initiative. */
2365
+ sourceInitiative?: Maybe<Initiative>;
2366
+ /** The owning organization. */
2367
+ sourceOrganization?: Maybe<Organization>;
2368
+ /** The owning page. */
2369
+ sourcePage?: Maybe<FacetPageSource>;
2370
+ /** The owning project. */
2371
+ sourceProject?: Maybe<Project>;
2372
+ /** The owning team. */
2373
+ sourceTeam?: Maybe<Team>;
2374
+ /** The targeted custom view. */
2375
+ targetCustomView?: Maybe<CustomView>;
2259
2376
  /**
2260
2377
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2261
2378
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -2275,6 +2392,9 @@ export declare type FacetEdge = {
2275
2392
  cursor: Scalars["String"];
2276
2393
  node: Facet;
2277
2394
  };
2395
+ export declare enum FacetPageSource {
2396
+ Projects = "projects"
2397
+ }
2278
2398
  /** User favorites presented in the sidebar. */
2279
2399
  export declare type Favorite = Node & {
2280
2400
  __typename?: "Favorite";
@@ -2290,10 +2410,14 @@ export declare type Favorite = Node & {
2290
2410
  cycle?: Maybe<Cycle>;
2291
2411
  /** The favorited document. */
2292
2412
  document?: Maybe<Document>;
2413
+ /** [INTERNAL] The favorited facet. */
2414
+ facet?: Maybe<Facet>;
2293
2415
  /** The name of the folder. Only applies to favorites of type folder. */
2294
2416
  folderName?: Maybe<Scalars["String"]>;
2295
2417
  /** The unique identifier of the entity. */
2296
2418
  id: Scalars["ID"];
2419
+ /** The targeted tab of the initiative. */
2420
+ initiativeTab?: Maybe<InitiativeTab>;
2297
2421
  /** The favorited issue. */
2298
2422
  issue?: Maybe<Issue>;
2299
2423
  /** The favorited label. */
@@ -2310,7 +2434,7 @@ export declare type Favorite = Node & {
2310
2434
  project?: Maybe<Project>;
2311
2435
  /** The targeted tab of the project. */
2312
2436
  projectTab?: Maybe<ProjectTab>;
2313
- /** The favorited team of the project. */
2437
+ /** [DEPRECATED] The favorited team of the project. */
2314
2438
  projectTeam?: Maybe<Team>;
2315
2439
  /** The favorited roadmap. */
2316
2440
  roadmap?: Maybe<Roadmap>;
@@ -2324,6 +2448,8 @@ export declare type Favorite = Node & {
2324
2448
  * been updated after creation.
2325
2449
  */
2326
2450
  updatedAt: Scalars["DateTime"];
2451
+ /** URL of the favorited entity. Folders return 'null' value. */
2452
+ url?: Maybe<Scalars["String"]>;
2327
2453
  /** The favorited user. */
2328
2454
  user?: Maybe<User>;
2329
2455
  };
@@ -2349,7 +2475,7 @@ export declare type FavoriteCreateInput = {
2349
2475
  cycleId?: Maybe<Scalars["String"]>;
2350
2476
  /** The identifier of the document to favorite. */
2351
2477
  documentId?: Maybe<Scalars["String"]>;
2352
- /** [INTERNAL] The identifier of the facet to favorite. */
2478
+ /** The identifier of the facet to favorite. */
2353
2479
  facetId?: Maybe<Scalars["String"]>;
2354
2480
  /** The name of the favorite folder. */
2355
2481
  folderName?: Maybe<Scalars["String"]>;
@@ -2357,6 +2483,8 @@ export declare type FavoriteCreateInput = {
2357
2483
  id?: Maybe<Scalars["String"]>;
2358
2484
  /** [INTERNAL] The identifier of the initiative to favorite. */
2359
2485
  initiativeId?: Maybe<Scalars["String"]>;
2486
+ /** The tab of the initiative to favorite. */
2487
+ initiativeTab?: Maybe<InitiativeTab>;
2360
2488
  /** The identifier of the issue to favorite. */
2361
2489
  issueId?: Maybe<Scalars["String"]>;
2362
2490
  /** The identifier of the label to favorite. */
@@ -2371,8 +2499,6 @@ export declare type FavoriteCreateInput = {
2371
2499
  projectId?: Maybe<Scalars["String"]>;
2372
2500
  /** The tab of the project to favorite. */
2373
2501
  projectTab?: Maybe<ProjectTab>;
2374
- /** The identifier of the project team to favorite. */
2375
- projectTeamId?: Maybe<Scalars["String"]>;
2376
2502
  /** The identifier of the roadmap to favorite. */
2377
2503
  roadmapId?: Maybe<Scalars["String"]>;
2378
2504
  /** The position of the item in the favorites list. */
@@ -2403,6 +2529,109 @@ export declare type FavoriteUpdateInput = {
2403
2529
  /** The position of the item in the favorites list. */
2404
2530
  sortOrder?: Maybe<Scalars["Float"]>;
2405
2531
  };
2532
+ /** A feature flag for a project. */
2533
+ export declare type FeatureFlag = Node & {
2534
+ __typename?: "FeatureFlag";
2535
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2536
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2537
+ /** The time at which the entity was created. */
2538
+ createdAt: Scalars["DateTime"];
2539
+ /** The user who created the feature flag. */
2540
+ creator?: Maybe<User>;
2541
+ /** The description of the feature flag. */
2542
+ description?: Maybe<Scalars["String"]>;
2543
+ /** Url to the feature flag provider's page about the feature flag. */
2544
+ externalUrl: Scalars["String"];
2545
+ /** The unique identifier of the entity. */
2546
+ id: Scalars["ID"];
2547
+ /** The integration providing the feature flag. */
2548
+ integration: Integration;
2549
+ /** Whether the feature flag is enabled. */
2550
+ isEnabled: Scalars["Boolean"];
2551
+ /** The unique key as defined by the feature flag provider. */
2552
+ key: Scalars["String"];
2553
+ /** The description of the feature flag. */
2554
+ lastStageUpdatedAt?: Maybe<Scalars["DateTime"]>;
2555
+ /** The user who last changed the stage of the feature flag. */
2556
+ lastStageUpdatedBy?: Maybe<User>;
2557
+ /** The organization of the feature flag. */
2558
+ organization: Organization;
2559
+ /** The pending rollout stage for the feature flag. */
2560
+ pendingRolloutStage?: Maybe<FeatureFlagRolloutStage>;
2561
+ /** The project the feature flag is associated with. */
2562
+ project?: Maybe<Project>;
2563
+ /** The rollout stage of the feature flag, should be defined for all feature flags in use. */
2564
+ rolloutStage: FeatureFlagRolloutStage;
2565
+ /** The status of the feature flag. */
2566
+ status: Scalars["String"];
2567
+ /**
2568
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2569
+ * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
2570
+ * been updated after creation.
2571
+ */
2572
+ updatedAt: Scalars["DateTime"];
2573
+ };
2574
+ export declare type FeatureFlagConnection = {
2575
+ __typename?: "FeatureFlagConnection";
2576
+ edges: Array<FeatureFlagEdge>;
2577
+ nodes: Array<FeatureFlag>;
2578
+ pageInfo: PageInfo;
2579
+ };
2580
+ export declare type FeatureFlagEdge = {
2581
+ __typename?: "FeatureFlagEdge";
2582
+ /** Used in `before` and `after` args */
2583
+ cursor: Scalars["String"];
2584
+ node: FeatureFlag;
2585
+ };
2586
+ /** A rollout stage for a feature flag. */
2587
+ export declare type FeatureFlagRolloutStage = Node & {
2588
+ __typename?: "FeatureFlagRolloutStage";
2589
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2590
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2591
+ /** The time at which the entity was created. */
2592
+ createdAt: Scalars["DateTime"];
2593
+ /** The description of the rollout stage. */
2594
+ description?: Maybe<Scalars["String"]>;
2595
+ /** The unique identifier of the entity. */
2596
+ id: Scalars["ID"];
2597
+ /** The integration providing the feature flag. */
2598
+ integration: Integration;
2599
+ /** The name of the rollout stage. */
2600
+ name: Scalars["String"];
2601
+ /** The organization of the feature flag rollout stage. */
2602
+ organization: Organization;
2603
+ /** Which feature flag provider segments this rollout stage is associated with. */
2604
+ segmentKeys: Array<Scalars["String"]>;
2605
+ /** The order of the rollout stages within an organization. */
2606
+ sortOrder: Scalars["Float"];
2607
+ /** The type of the feature flag rollout stage. */
2608
+ type: FeatureFlagRolloutStageType;
2609
+ /**
2610
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2611
+ * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
2612
+ * been updated after creation.
2613
+ */
2614
+ updatedAt: Scalars["DateTime"];
2615
+ };
2616
+ export declare type FeatureFlagRolloutStageConnection = {
2617
+ __typename?: "FeatureFlagRolloutStageConnection";
2618
+ edges: Array<FeatureFlagRolloutStageEdge>;
2619
+ nodes: Array<FeatureFlagRolloutStage>;
2620
+ pageInfo: PageInfo;
2621
+ };
2622
+ export declare type FeatureFlagRolloutStageEdge = {
2623
+ __typename?: "FeatureFlagRolloutStageEdge";
2624
+ /** Used in `before` and `after` args */
2625
+ cursor: Scalars["String"];
2626
+ node: FeatureFlagRolloutStage;
2627
+ };
2628
+ /** The type of a feature flag rollout stage. */
2629
+ export declare enum FeatureFlagRolloutStageType {
2630
+ Dev = "dev",
2631
+ Full = "full",
2632
+ Internal = "internal",
2633
+ Partial = "partial"
2634
+ }
2406
2635
  export declare type FrontAttachmentPayload = {
2407
2636
  __typename?: "FrontAttachmentPayload";
2408
2637
  /** The identifier of the last sync operation. */
@@ -2587,6 +2816,19 @@ export declare type GitHubCommitIntegrationPayload = {
2587
2816
  /** The webhook secret to provide to GitHub. */
2588
2817
  webhookSecret: Scalars["String"];
2589
2818
  };
2819
+ export declare type GitHubEnterpriseServerPayload = {
2820
+ __typename?: "GitHubEnterpriseServerPayload";
2821
+ /** The integration that was created or updated. */
2822
+ integration?: Maybe<Integration>;
2823
+ /** The identifier of the last sync operation. */
2824
+ lastSyncId: Scalars["Float"];
2825
+ /** The setup address. */
2826
+ setupUrl: Scalars["String"];
2827
+ /** Whether the operation was successful. */
2828
+ success: Scalars["Boolean"];
2829
+ /** The webhook secret to provide to GitHub. */
2830
+ webhookSecret: Scalars["String"];
2831
+ };
2590
2832
  /** Metadata and settings for a GitHub import integration. */
2591
2833
  export declare type GitHubImportSettings = {
2592
2834
  __typename?: "GitHubImportSettings";
@@ -2637,7 +2879,7 @@ export declare type GitHubRepoInput = {
2637
2879
  export declare type GitHubSettings = {
2638
2880
  __typename?: "GitHubSettings";
2639
2881
  /** The avatar URL for the GitHub organization. */
2640
- orgAvatarUrl: Scalars["String"];
2882
+ orgAvatarUrl?: Maybe<Scalars["String"]>;
2641
2883
  /** The GitHub organization's name. */
2642
2884
  orgLogin: Scalars["String"];
2643
2885
  /** The type of Github org */
@@ -2649,7 +2891,7 @@ export declare type GitHubSettings = {
2649
2891
  };
2650
2892
  export declare type GitHubSettingsInput = {
2651
2893
  /** The avatar URL for the GitHub organization. */
2652
- orgAvatarUrl: Scalars["String"];
2894
+ orgAvatarUrl?: Maybe<Scalars["String"]>;
2653
2895
  /** The GitHub organization's name. */
2654
2896
  orgLogin: Scalars["String"];
2655
2897
  /** The type of Github org */
@@ -2687,13 +2929,13 @@ export declare type GoogleSheetsSettings = {
2687
2929
  sheetId: Scalars["Float"];
2688
2930
  spreadsheetId: Scalars["String"];
2689
2931
  spreadsheetUrl: Scalars["String"];
2690
- updatedIssuesAt: Scalars["DateTime"];
2932
+ updatedIssuesAt?: Maybe<Scalars["DateTime"]>;
2691
2933
  };
2692
2934
  export declare type GoogleSheetsSettingsInput = {
2693
2935
  sheetId: Scalars["Float"];
2694
2936
  spreadsheetId: Scalars["String"];
2695
2937
  spreadsheetUrl: Scalars["String"];
2696
- updatedIssuesAt: Scalars["DateTime"];
2938
+ updatedIssuesAt?: Maybe<Scalars["DateTime"]>;
2697
2939
  };
2698
2940
  export declare type GoogleUserAccountAuthInput = {
2699
2941
  /** Code returned from Google's OAuth flow. */
@@ -2731,7 +2973,7 @@ export declare type ImageUploadFromUrlPayload = {
2731
2973
  /** The URL containing the image. */
2732
2974
  url?: Maybe<Scalars["String"]>;
2733
2975
  };
2734
- /** [INTERNAL] An initiative to group projects. */
2976
+ /** An initiative to group projects. */
2735
2977
  export declare type Initiative = Node & {
2736
2978
  __typename?: "Initiative";
2737
2979
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -2742,7 +2984,7 @@ export declare type Initiative = Node & {
2742
2984
  createdAt: Scalars["DateTime"];
2743
2985
  /** The user who created the initiative. */
2744
2986
  creator: User;
2745
- /** [Internal] The description of the initiative. */
2987
+ /** The description of the initiative. */
2746
2988
  description?: Maybe<Scalars["String"]>;
2747
2989
  /** The icon of the initiative. */
2748
2990
  icon?: Maybe<Scalars["String"]>;
@@ -2766,8 +3008,10 @@ export declare type Initiative = Node & {
2766
3008
  status: InitiativeStatus;
2767
3009
  /** The estimated completion date of the initiative. */
2768
3010
  targetDate?: Maybe<Scalars["TimelessDate"]>;
2769
- /** [INTERNAL] The resolution of the initiative's estimated completion date. */
3011
+ /** The resolution of the initiative's estimated completion date. */
2770
3012
  targetDateResolution?: Maybe<DateResolutionType>;
3013
+ /** A flag that indicates whether the initiative is in the trash bin. */
3014
+ trashed?: Maybe<Scalars["Boolean"]>;
2771
3015
  /**
2772
3016
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2773
3017
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -2775,7 +3019,7 @@ export declare type Initiative = Node & {
2775
3019
  */
2776
3020
  updatedAt: Scalars["DateTime"];
2777
3021
  };
2778
- /** [INTERNAL] An initiative to group projects. */
3022
+ /** An initiative to group projects. */
2779
3023
  export declare type InitiativeLinksArgs = {
2780
3024
  after?: Maybe<Scalars["String"]>;
2781
3025
  before?: Maybe<Scalars["String"]>;
@@ -2784,7 +3028,7 @@ export declare type InitiativeLinksArgs = {
2784
3028
  last?: Maybe<Scalars["Int"]>;
2785
3029
  orderBy?: Maybe<PaginationOrderBy>;
2786
3030
  };
2787
- /** [INTERNAL] An initiative to group projects. */
3031
+ /** An initiative to group projects. */
2788
3032
  export declare type InitiativeProjectsArgs = {
2789
3033
  after?: Maybe<Scalars["String"]>;
2790
3034
  before?: Maybe<Scalars["String"]>;
@@ -2835,11 +3079,11 @@ export declare type InitiativeConnection = {
2835
3079
  nodes: Array<Initiative>;
2836
3080
  pageInfo: PageInfo;
2837
3081
  };
2838
- /** [Internal] The properties of the initiative to create. */
3082
+ /** The properties of the initiative to create. */
2839
3083
  export declare type InitiativeCreateInput = {
2840
3084
  /** The initiative's color. */
2841
3085
  color?: Maybe<Scalars["String"]>;
2842
- /** [Internal] The description of the initiative. */
3086
+ /** The description of the initiative. */
2843
3087
  description?: Maybe<Scalars["String"]>;
2844
3088
  /** The initiative's icon. */
2845
3089
  icon?: Maybe<Scalars["String"]>;
@@ -2853,6 +3097,10 @@ export declare type InitiativeCreateInput = {
2853
3097
  sortOrder?: Maybe<Scalars["Float"]>;
2854
3098
  /** The initiative's status. */
2855
3099
  status?: Maybe<InitiativeStatus>;
3100
+ /** The estimated completion date of the initiative. */
3101
+ targetDate?: Maybe<Scalars["TimelessDate"]>;
3102
+ /** The resolution of the initiative's estimated completion date. */
3103
+ targetDateResolution?: Maybe<DateResolutionType>;
2856
3104
  };
2857
3105
  export declare type InitiativeEdge = {
2858
3106
  __typename?: "InitiativeEdge";
@@ -2884,10 +3132,18 @@ export declare type InitiativeNotification = Entity & Node & Notification & {
2884
3132
  __typename?: "InitiativeNotification";
2885
3133
  /** The user that caused the notification. */
2886
3134
  actor?: Maybe<User>;
3135
+ /** [Internal] Notification actor initials if avatar is not available. */
3136
+ actorAvatarColor?: Maybe<Scalars["String"]>;
3137
+ /** [Internal] Notification avatar URL. */
3138
+ actorAvatarUrl?: Maybe<Scalars["String"]>;
3139
+ /** [Internal] Notification actor initials if avatar is not available. */
3140
+ actorInitials?: Maybe<Scalars["String"]>;
2887
3141
  /** The time at which the entity was archived. Null if the entity has not been archived. */
2888
3142
  archivedAt?: Maybe<Scalars["DateTime"]>;
2889
3143
  /** The bot that caused the notification. */
2890
3144
  botActor?: Maybe<ActorBot>;
3145
+ /** Related comment ID. Null if the notification is not related to a comment. */
3146
+ commentId?: Maybe<Scalars["String"]>;
2891
3147
  /** The time at which the entity was created. */
2892
3148
  createdAt: Scalars["DateTime"];
2893
3149
  /**
@@ -2897,12 +3153,26 @@ export declare type InitiativeNotification = Entity & Node & Notification & {
2897
3153
  emailedAt?: Maybe<Scalars["DateTime"]>;
2898
3154
  /** The external user that caused the notification. */
2899
3155
  externalUserActor?: Maybe<ExternalUser>;
3156
+ /** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
3157
+ groupingKey: Scalars["String"];
2900
3158
  /** The unique identifier of the entity. */
2901
3159
  id: Scalars["ID"];
3160
+ /** [Internal] If notification actor was Linear. */
3161
+ isLinearActor?: Maybe<Scalars["Boolean"]>;
3162
+ /** [Internal] Issue's status type for issue notifications. */
3163
+ issueStatusType?: Maybe<Scalars["String"]>;
3164
+ /** Related parent comment ID. Null if the notification is not related to a comment. */
3165
+ parentCommentId?: Maybe<Scalars["String"]>;
3166
+ /** [Internal] Project update health for new updates. */
3167
+ projectUpdateHealth?: Maybe<Scalars["String"]>;
2902
3168
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
2903
3169
  readAt?: Maybe<Scalars["DateTime"]>;
2904
3170
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
2905
3171
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
3172
+ /** [Internal] Notification subtitle. */
3173
+ subtitle: Scalars["String"];
3174
+ /** [Internal] Notification title. */
3175
+ title: Scalars["String"];
2906
3176
  /** Notification type. */
2907
3177
  type: Scalars["String"];
2908
3178
  /** The time at which a notification was unsnoozed.. */
@@ -2913,10 +3183,12 @@ export declare type InitiativeNotification = Entity & Node & Notification & {
2913
3183
  * been updated after creation.
2914
3184
  */
2915
3185
  updatedAt: Scalars["DateTime"];
3186
+ /** [Internal] URL to the target of the notification. */
3187
+ url: Scalars["String"];
2916
3188
  /** The user that received the notification. */
2917
3189
  user: User;
2918
3190
  };
2919
- /** [Internal] The payload returned by the initiative mutations. */
3191
+ /** The payload returned by the initiative mutations. */
2920
3192
  export declare type InitiativePayload = {
2921
3193
  __typename?: "InitiativePayload";
2922
3194
  /** The initiative that was created or updated. */
@@ -2931,7 +3203,12 @@ export declare enum InitiativeStatus {
2931
3203
  Completed = "Completed",
2932
3204
  Planned = "Planned"
2933
3205
  }
2934
- /** [INTERNAL] Join table between projects and initiatives. */
3206
+ /** Different tabs available inside an initiative. */
3207
+ export declare enum InitiativeTab {
3208
+ Overview = "overview",
3209
+ Projects = "projects"
3210
+ }
3211
+ /** Join table between projects and initiatives. */
2935
3212
  export declare type InitiativeToProject = Node & {
2936
3213
  __typename?: "InitiativeToProject";
2937
3214
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -2959,7 +3236,7 @@ export declare type InitiativeToProjectConnection = {
2959
3236
  nodes: Array<InitiativeToProject>;
2960
3237
  pageInfo: PageInfo;
2961
3238
  };
2962
- /** [INTERNAL] The properties of the initiativeToProject to create. */
3239
+ /** The properties of the initiativeToProject to create. */
2963
3240
  export declare type InitiativeToProjectCreateInput = {
2964
3241
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2965
3242
  id?: Maybe<Scalars["String"]>;
@@ -2976,7 +3253,7 @@ export declare type InitiativeToProjectEdge = {
2976
3253
  cursor: Scalars["String"];
2977
3254
  node: InitiativeToProject;
2978
3255
  };
2979
- /** [INTERNAL] The result of a initiativeToProject mutation. */
3256
+ /** The result of a initiativeToProject mutation. */
2980
3257
  export declare type InitiativeToProjectPayload = {
2981
3258
  __typename?: "InitiativeToProjectPayload";
2982
3259
  /** The initiativeToProject that was created or updated. */
@@ -2986,16 +3263,16 @@ export declare type InitiativeToProjectPayload = {
2986
3263
  /** Whether the operation was successful. */
2987
3264
  success: Scalars["Boolean"];
2988
3265
  };
2989
- /** [INTERNAL] The properties of the initiativeToProject to update. */
3266
+ /** The properties of the initiativeToProject to update. */
2990
3267
  export declare type InitiativeToProjectUpdateInput = {
2991
3268
  /** The sort order for the project within its organization. */
2992
3269
  sortOrder?: Maybe<Scalars["Float"]>;
2993
3270
  };
2994
- /** [Internal] The properties of the initiative to update. */
3271
+ /** The properties of the initiative to update. */
2995
3272
  export declare type InitiativeUpdateInput = {
2996
3273
  /** The initiative's color. */
2997
3274
  color?: Maybe<Scalars["String"]>;
2998
- /** [Internal] The description of the initiative. */
3275
+ /** The description of the initiative. */
2999
3276
  description?: Maybe<Scalars["String"]>;
3000
3277
  /** The initiative's icon. */
3001
3278
  icon?: Maybe<Scalars["String"]>;
@@ -3009,6 +3286,10 @@ export declare type InitiativeUpdateInput = {
3009
3286
  status?: Maybe<InitiativeStatus>;
3010
3287
  /** The estimated completion date of the initiative. */
3011
3288
  targetDate?: Maybe<Scalars["TimelessDate"]>;
3289
+ /** The resolution of the initiative's estimated completion date. */
3290
+ targetDateResolution?: Maybe<DateResolutionType>;
3291
+ /** Whether the initiative has been trashed. */
3292
+ trashed?: Maybe<Scalars["Boolean"]>;
3012
3293
  };
3013
3294
  /** An integration with an external service. */
3014
3295
  export declare type Integration = Node & {
@@ -3083,6 +3364,7 @@ export declare enum IntegrationService {
3083
3364
  Front = "front",
3084
3365
  Github = "github",
3085
3366
  GithubCommit = "githubCommit",
3367
+ GithubEnterpriseServer = "githubEnterpriseServer",
3086
3368
  GithubImport = "githubImport",
3087
3369
  GithubPersonal = "githubPersonal",
3088
3370
  Gitlab = "gitlab",
@@ -3091,6 +3373,7 @@ export declare enum IntegrationService {
3091
3373
  Intercom = "intercom",
3092
3374
  Jira = "jira",
3093
3375
  JiraPersonal = "jiraPersonal",
3376
+ LaunchDarkly = "launchDarkly",
3094
3377
  Loom = "loom",
3095
3378
  Notion = "notion",
3096
3379
  Opsgenie = "opsgenie",
@@ -3118,6 +3401,7 @@ export declare type IntegrationSettings = {
3118
3401
  intercom?: Maybe<IntercomSettings>;
3119
3402
  jira?: Maybe<JiraSettings>;
3120
3403
  jiraPersonal?: Maybe<JiraPersonalSettings>;
3404
+ launchDarkly?: Maybe<LaunchDarklySettings>;
3121
3405
  notion?: Maybe<NotionSettings>;
3122
3406
  opsgenie?: Maybe<OpsgenieSettings>;
3123
3407
  pagerDuty?: Maybe<PagerDutySettings>;
@@ -3140,6 +3424,7 @@ export declare type IntegrationSettingsInput = {
3140
3424
  intercom?: Maybe<IntercomSettingsInput>;
3141
3425
  jira?: Maybe<JiraSettingsInput>;
3142
3426
  jiraPersonal?: Maybe<JiraPersonalSettingsInput>;
3427
+ launchDarkly?: Maybe<LaunchDarklySettingsInput>;
3143
3428
  notion?: Maybe<NotionSettingsInput>;
3144
3429
  opsgenie?: Maybe<OpsgenieInput>;
3145
3430
  pagerDuty?: Maybe<PagerDutyInput>;
@@ -3218,6 +3503,8 @@ export declare type IntegrationsSettings = Node & {
3218
3503
  project?: Maybe<Project>;
3219
3504
  /** Whether to send a Slack message when a new issue is added to triage. */
3220
3505
  slackIssueAddedToTriage?: Maybe<Scalars["Boolean"]>;
3506
+ /** Whether to send a Slack message when an issue is added to the custom view. */
3507
+ slackIssueAddedToView?: Maybe<Scalars["Boolean"]>;
3221
3508
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3222
3509
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3223
3510
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3258,6 +3545,8 @@ export declare type IntegrationsSettingsCreateInput = {
3258
3545
  projectId?: Maybe<Scalars["String"]>;
3259
3546
  /** Whether to send a Slack message when a new issue is added to triage. */
3260
3547
  slackIssueAddedToTriage?: Maybe<Scalars["Boolean"]>;
3548
+ /** Whether to send a Slack message when an issue is added to a view. */
3549
+ slackIssueAddedToView?: Maybe<Scalars["Boolean"]>;
3261
3550
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3262
3551
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3263
3552
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3297,6 +3586,8 @@ export declare type IntegrationsSettingsPayload = {
3297
3586
  export declare type IntegrationsSettingsUpdateInput = {
3298
3587
  /** Whether to send a Slack message when a new issue is added to triage. */
3299
3588
  slackIssueAddedToTriage?: Maybe<Scalars["Boolean"]>;
3589
+ /** Whether to send a Slack message when an issue is added to a view. */
3590
+ slackIssueAddedToView?: Maybe<Scalars["Boolean"]>;
3300
3591
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3301
3592
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3302
3593
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3427,6 +3718,10 @@ export declare type Issue = Node & {
3427
3718
  project?: Maybe<Project>;
3428
3719
  /** The projectMilestone that the issue is associated with. */
3429
3720
  projectMilestone?: Maybe<ProjectMilestone>;
3721
+ /** Emoji reaction summary, grouped by emoji type. */
3722
+ reactionData: Scalars["JSONObject"];
3723
+ /** Reactions associated with the issue. */
3724
+ reactions: Array<Reaction>;
3430
3725
  /** Relations associated with this issue. */
3431
3726
  relations: IssueRelationConnection;
3432
3727
  /** The time at which the issue's SLA will breach. */
@@ -3627,6 +3922,8 @@ export declare type IssueCollectionFilter = {
3627
3922
  project?: Maybe<NullableProjectFilter>;
3628
3923
  /** Filters that the issues project milestone must satisfy. */
3629
3924
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
3925
+ /** Filters that the issues reactions must satisfy. */
3926
+ reactions?: Maybe<ReactionCollectionFilter>;
3630
3927
  /** [Internal] Comparator for the issues content. */
3631
3928
  searchableContent?: Maybe<ContentComparator>;
3632
3929
  /** Comparator for the issues sla status. */
@@ -3726,7 +4023,7 @@ export declare type IssueDraft = Node & {
3726
4023
  /** The user assigned to the draft. */
3727
4024
  assigneeId?: Maybe<Scalars["String"]>;
3728
4025
  /** Serialized array of JSONs representing attachments. */
3729
- attachments: Scalars["JSONObject"];
4026
+ attachments?: Maybe<Scalars["JSONObject"]>;
3730
4027
  /** The time at which the entity was created. */
3731
4028
  createdAt: Scalars["DateTime"];
3732
4029
  /** The user who created the draft. */
@@ -3834,6 +4131,8 @@ export declare type IssueFilter = {
3834
4131
  project?: Maybe<NullableProjectFilter>;
3835
4132
  /** Filters that the issues project milestone must satisfy. */
3836
4133
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
4134
+ /** Filters that the issues reactions must satisfy. */
4135
+ reactions?: Maybe<ReactionCollectionFilter>;
3837
4136
  /** [Internal] Comparator for the issues content. */
3838
4137
  searchableContent?: Maybe<ContentComparator>;
3839
4138
  /** Comparator for the issues sla status. */
@@ -3867,7 +4166,10 @@ export declare type IssueFilterSuggestionPayload = {
3867
4166
  /** A record of changes to an issue. */
3868
4167
  export declare type IssueHistory = Node & {
3869
4168
  __typename?: "IssueHistory";
3870
- /** The user who made these changes. If null, possibly means that the change made by an integration. */
4169
+ /**
4170
+ * The actor that performed the actions. This field may be empty in the case of integrations or automations.
4171
+ * @deprecated Use actors instead.
4172
+ */
3871
4173
  actor?: Maybe<User>;
3872
4174
  /** The id of user who made these changes. If null, possibly means that the change made by an integration. */
3873
4175
  actorId?: Maybe<Scalars["String"]>;
@@ -3895,11 +4197,11 @@ export declare type IssueHistory = Node & {
3895
4197
  changes?: Maybe<Scalars["JSONObject"]>;
3896
4198
  /** The time at which the entity was created. */
3897
4199
  createdAt: Scalars["DateTime"];
3898
- /** The user from whom the issue was re-assigned from. */
4200
+ /** The user that was unassigned from the issue. */
3899
4201
  fromAssignee?: Maybe<User>;
3900
4202
  /** The id of user from whom the issue was re-assigned from. */
3901
4203
  fromAssigneeId?: Maybe<Scalars["String"]>;
3902
- /** The previous cycle of the issue. */
4204
+ /** The cycle that the issue was moved from. */
3903
4205
  fromCycle?: Maybe<Cycle>;
3904
4206
  /** The id of previous cycle of the issue. */
3905
4207
  fromCycleId?: Maybe<Scalars["String"]>;
@@ -3907,21 +4209,21 @@ export declare type IssueHistory = Node & {
3907
4209
  fromDueDate?: Maybe<Scalars["TimelessDate"]>;
3908
4210
  /** What the estimate was changed from. */
3909
4211
  fromEstimate?: Maybe<Scalars["Float"]>;
3910
- /** The previous parent of the issue. */
4212
+ /** The parent issue that the issue was moved from. */
3911
4213
  fromParent?: Maybe<Issue>;
3912
4214
  /** The id of previous parent of the issue. */
3913
4215
  fromParentId?: Maybe<Scalars["String"]>;
3914
4216
  /** What the priority was changed from. */
3915
4217
  fromPriority?: Maybe<Scalars["Float"]>;
3916
- /** The previous project of the issue. */
4218
+ /** The project that the issue was moved from. */
3917
4219
  fromProject?: Maybe<Project>;
3918
4220
  /** The id of previous project of the issue. */
3919
4221
  fromProjectId?: Maybe<Scalars["String"]>;
3920
- /** The previous workflow state of the issue. */
4222
+ /** The state that the issue was moved from. */
3921
4223
  fromState?: Maybe<WorkflowState>;
3922
4224
  /** The id of previous workflow state of the issue. */
3923
4225
  fromStateId?: Maybe<Scalars["String"]>;
3924
- /** The team from which the issue was moved from. */
4226
+ /** The team that the issue was moved from. */
3925
4227
  fromTeam?: Maybe<Team>;
3926
4228
  /** The id of team from which the issue was moved from. */
3927
4229
  fromTeamId?: Maybe<Scalars["String"]>;
@@ -3939,7 +4241,7 @@ export declare type IssueHistory = Node & {
3939
4241
  removedLabelIds?: Maybe<Array<Scalars["String"]>>;
3940
4242
  /** The labels that were removed from the issue. */
3941
4243
  removedLabels?: Maybe<Array<IssueLabel>>;
3942
- /** The user to whom the issue was assigned to. */
4244
+ /** The user that was assigned to the issue. */
3943
4245
  toAssignee?: Maybe<User>;
3944
4246
  /** The id of user to whom the issue was assigned to. */
3945
4247
  toAssigneeId?: Maybe<Scalars["String"]>;
@@ -3947,7 +4249,7 @@ export declare type IssueHistory = Node & {
3947
4249
  toConvertedProject?: Maybe<Project>;
3948
4250
  /** The id of new project created from the issue. */
3949
4251
  toConvertedProjectId?: Maybe<Scalars["String"]>;
3950
- /** The new cycle of the issue. */
4252
+ /** The cycle that the issue was moved to. */
3951
4253
  toCycle?: Maybe<Cycle>;
3952
4254
  /** The id of new cycle of the issue. */
3953
4255
  toCycleId?: Maybe<Scalars["String"]>;
@@ -3955,21 +4257,21 @@ export declare type IssueHistory = Node & {
3955
4257
  toDueDate?: Maybe<Scalars["TimelessDate"]>;
3956
4258
  /** What the estimate was changed to. */
3957
4259
  toEstimate?: Maybe<Scalars["Float"]>;
3958
- /** The new parent of the issue. */
4260
+ /** The parent issue that the issue was moved to. */
3959
4261
  toParent?: Maybe<Issue>;
3960
4262
  /** The id of new parent of the issue. */
3961
4263
  toParentId?: Maybe<Scalars["String"]>;
3962
4264
  /** What the priority was changed to. */
3963
4265
  toPriority?: Maybe<Scalars["Float"]>;
3964
- /** The new project of the issue. */
4266
+ /** The project that the issue was moved to. */
3965
4267
  toProject?: Maybe<Project>;
3966
4268
  /** The id of new project of the issue. */
3967
4269
  toProjectId?: Maybe<Scalars["String"]>;
3968
- /** The new workflow state of the issue. */
4270
+ /** The state that the issue was moved to. */
3969
4271
  toState?: Maybe<WorkflowState>;
3970
4272
  /** The id of new workflow state of the issue. */
3971
4273
  toStateId?: Maybe<Scalars["String"]>;
3972
- /** The team to which the issue was moved to. */
4274
+ /** The team that the issue was moved to. */
3973
4275
  toTeam?: Maybe<Team>;
3974
4276
  /** The id of team to which the issue was moved to. */
3975
4277
  toTeamId?: Maybe<Scalars["String"]>;
@@ -4011,6 +4313,8 @@ export declare type IssueImport = Node & {
4011
4313
  creatorId: Scalars["String"];
4012
4314
  /** File URL for the uploaded CSV for the import, if there is one. */
4013
4315
  csvFileUrl?: Maybe<Scalars["String"]>;
4316
+ /** The display name of the import service. */
4317
+ displayName: Scalars["String"];
4014
4318
  /** User readable error message, if one has occurred during the import. */
4015
4319
  error?: Maybe<Scalars["String"]>;
4016
4320
  /** Error code and metadata, if one has occurred during the import. */
@@ -4234,12 +4538,20 @@ export declare type IssueNotification = Entity & Node & Notification & {
4234
4538
  __typename?: "IssueNotification";
4235
4539
  /** The user that caused the notification. */
4236
4540
  actor?: Maybe<User>;
4541
+ /** [Internal] Notification actor initials if avatar is not available. */
4542
+ actorAvatarColor?: Maybe<Scalars["String"]>;
4543
+ /** [Internal] Notification avatar URL. */
4544
+ actorAvatarUrl?: Maybe<Scalars["String"]>;
4545
+ /** [Internal] Notification actor initials if avatar is not available. */
4546
+ actorInitials?: Maybe<Scalars["String"]>;
4237
4547
  /** The time at which the entity was archived. Null if the entity has not been archived. */
4238
4548
  archivedAt?: Maybe<Scalars["DateTime"]>;
4239
4549
  /** The bot that caused the notification. */
4240
4550
  botActor?: Maybe<ActorBot>;
4241
4551
  /** The comment related to the notification. */
4242
4552
  comment?: Maybe<Comment>;
4553
+ /** Related comment ID. Null if the notification is not related to a comment. */
4554
+ commentId?: Maybe<Scalars["String"]>;
4243
4555
  /** The time at which the entity was created. */
4244
4556
  createdAt: Scalars["DateTime"];
4245
4557
  /**
@@ -4249,10 +4561,22 @@ export declare type IssueNotification = Entity & Node & Notification & {
4249
4561
  emailedAt?: Maybe<Scalars["DateTime"]>;
4250
4562
  /** The external user that caused the notification. */
4251
4563
  externalUserActor?: Maybe<ExternalUser>;
4564
+ /** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
4565
+ groupingKey: Scalars["String"];
4252
4566
  /** The unique identifier of the entity. */
4253
4567
  id: Scalars["ID"];
4568
+ /** [Internal] If notification actor was Linear. */
4569
+ isLinearActor?: Maybe<Scalars["Boolean"]>;
4254
4570
  /** The issue related to the notification. */
4255
4571
  issue: Issue;
4572
+ /** [Internal] Issue's status type for issue notifications. */
4573
+ issueStatusType?: Maybe<Scalars["String"]>;
4574
+ /** The parent comment related to the notification, if a notification is a reply comment notification. */
4575
+ parentComment?: Maybe<Comment>;
4576
+ /** Related parent comment ID. Null if the notification is not related to a comment. */
4577
+ parentCommentId?: Maybe<Scalars["String"]>;
4578
+ /** [Internal] Project update health for new updates. */
4579
+ projectUpdateHealth?: Maybe<Scalars["String"]>;
4256
4580
  /** Name of the reaction emoji related to the notification. */
4257
4581
  reactionEmoji?: Maybe<Scalars["String"]>;
4258
4582
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
@@ -4261,8 +4585,12 @@ export declare type IssueNotification = Entity & Node & Notification & {
4261
4585
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
4262
4586
  /** The subscriptions related to the notification. */
4263
4587
  subscriptions?: Maybe<Array<NotificationSubscription>>;
4588
+ /** [Internal] Notification subtitle. */
4589
+ subtitle: Scalars["String"];
4264
4590
  /** The team related to the issue notification. */
4265
4591
  team: Team;
4592
+ /** [Internal] Notification title. */
4593
+ title: Scalars["String"];
4266
4594
  /** Notification type. */
4267
4595
  type: Scalars["String"];
4268
4596
  /** The time at which a notification was unsnoozed.. */
@@ -4273,6 +4601,8 @@ export declare type IssueNotification = Entity & Node & Notification & {
4273
4601
  * been updated after creation.
4274
4602
  */
4275
4603
  updatedAt: Scalars["DateTime"];
4604
+ /** [Internal] URL to the target of the notification. */
4605
+ url: Scalars["String"];
4276
4606
  /** The user that received the notification. */
4277
4607
  user: User;
4278
4608
  };
@@ -4463,6 +4793,10 @@ export declare type IssueSearchResult = Node & {
4463
4793
  project?: Maybe<Project>;
4464
4794
  /** The projectMilestone that the issue is associated with. */
4465
4795
  projectMilestone?: Maybe<ProjectMilestone>;
4796
+ /** Emoji reaction summary, grouped by emoji type. */
4797
+ reactionData: Scalars["JSONObject"];
4798
+ /** Reactions associated with the issue. */
4799
+ reactions: Array<Reaction>;
4466
4800
  /** Relations associated with this issue. */
4467
4801
  relations: IssueRelationConnection;
4468
4802
  /** The time at which the issue's SLA will breach. */
@@ -4822,6 +5156,20 @@ export declare type LabelSort = {
4822
5156
  /** The order for the individual sort */
4823
5157
  order?: Maybe<PaginationSortOrder>;
4824
5158
  };
5159
+ /** LaunchDarkly specific settings. */
5160
+ export declare type LaunchDarklySettings = {
5161
+ __typename?: "LaunchDarklySettings";
5162
+ /** The environment of the LaunchDarkly integration. */
5163
+ environment: Scalars["String"];
5164
+ /** The project key of the LaunchDarkly integration. */
5165
+ projectKey: Scalars["String"];
5166
+ };
5167
+ export declare type LaunchDarklySettingsInput = {
5168
+ /** The environment of the LaunchDarkly integration. */
5169
+ environment: Scalars["String"];
5170
+ /** The project key of the LaunchDarkly integration. */
5171
+ projectKey: Scalars["String"];
5172
+ };
4825
5173
  export declare type LogoutResponse = {
4826
5174
  __typename?: "LogoutResponse";
4827
5175
  /** Whether the operation was successful. */
@@ -4924,8 +5272,10 @@ export declare type Mutation = {
4924
5272
  diaryEntryUpdate: DiaryEntryPayload;
4925
5273
  /** Creates a new document. */
4926
5274
  documentCreate: DocumentPayload;
4927
- /** Deletes a document. */
4928
- documentDelete: DeletePayload;
5275
+ /** Deletes (trashes) a document. */
5276
+ documentDelete: DocumentArchivePayload;
5277
+ /** Restores a document. */
5278
+ documentUnarchive: DocumentArchivePayload;
4929
5279
  /** Updates a document. */
4930
5280
  documentUpdate: DocumentPayload;
4931
5281
  /** Creates a new email intake address. */
@@ -4978,21 +5328,21 @@ export declare type Mutation = {
4978
5328
  imageUploadFromUrl: ImageUploadFromUrlPayload;
4979
5329
  /** XHR request payload to upload a file for import, directly to Linear's cloud storage. */
4980
5330
  importFileUpload: UploadPayload;
4981
- /** [Internal] Archives a initiative. */
5331
+ /** Archives a initiative. */
4982
5332
  initiativeArchive: InitiativeArchivePayload;
4983
- /** [Internal] Creates a new initiative. */
5333
+ /** Creates a new initiative. */
4984
5334
  initiativeCreate: InitiativePayload;
4985
- /** [Internal] Deletes a initiative. */
5335
+ /** Deletes (trashes) an initiative. */
4986
5336
  initiativeDelete: DeletePayload;
4987
- /** [INTERNAL] Creates a new initiativeToProject join. */
5337
+ /** Creates a new initiativeToProject join. */
4988
5338
  initiativeToProjectCreate: InitiativeToProjectPayload;
4989
- /** [INTERNAL] Deletes a initiativeToProject. */
5339
+ /** Deletes a initiativeToProject. */
4990
5340
  initiativeToProjectDelete: DeletePayload;
4991
- /** [INTERNAL] Updates a initiativeToProject. */
5341
+ /** Updates a initiativeToProject. */
4992
5342
  initiativeToProjectUpdate: InitiativeToProjectPayload;
4993
- /** [Internal] Unarchives a initiative. */
5343
+ /** Unarchives a initiative. */
4994
5344
  initiativeUnarchive: InitiativeArchivePayload;
4995
- /** [Internal] Updates a initiative. */
5345
+ /** Updates a initiative. */
4996
5346
  initiativeUpdate: InitiativePayload;
4997
5347
  /** Archives an integration. */
4998
5348
  integrationArchive: DeletePayload;
@@ -5006,6 +5356,8 @@ export declare type Mutation = {
5006
5356
  integrationFigma: IntegrationPayload;
5007
5357
  /** Integrates the organization with Front. */
5008
5358
  integrationFront: IntegrationPayload;
5359
+ /** Connects the organization with a GitHub Enterprise Server. */
5360
+ integrationGitHubEnterpriseServerConnect: GitHubEnterpriseServerPayload;
5009
5361
  /** Connect your GitHub account to Linear. */
5010
5362
  integrationGitHubPersonal: IntegrationPayload;
5011
5363
  /** Generates a webhook for the GitHub commit integration. */
@@ -5033,6 +5385,8 @@ export declare type Mutation = {
5033
5385
  integrationJiraPersonal: IntegrationPayload;
5034
5386
  /** [INTERNAL] Updates a Jira Integration. */
5035
5387
  integrationJiraUpdate: IntegrationPayload;
5388
+ /** [INTERNAL] Integrates the organization with LaunchDarkly. */
5389
+ integrationLaunchDarklyConnect: IntegrationPayload;
5036
5390
  /**
5037
5391
  * Enables Loom integration for the organization.
5038
5392
  * @deprecated Not available.
@@ -5330,8 +5684,6 @@ export declare type Mutation = {
5330
5684
  userPromoteAdmin: UserAdminPayload;
5331
5685
  /** Makes user a regular user. Can only be called by an admin. */
5332
5686
  userPromoteMember: UserAdminPayload;
5333
- /** [Deprecated] Updates a user's settings flag. */
5334
- userSettingsFlagIncrement: UserSettingsFlagPayload;
5335
5687
  /** Resets user's setting flags. */
5336
5688
  userSettingsFlagsReset: UserSettingsFlagsResetPayload;
5337
5689
  /** Updates the user's settings. */
@@ -5546,6 +5898,9 @@ export declare type MutationDocumentCreateArgs = {
5546
5898
  export declare type MutationDocumentDeleteArgs = {
5547
5899
  id: Scalars["String"];
5548
5900
  };
5901
+ export declare type MutationDocumentUnarchiveArgs = {
5902
+ id: Scalars["String"];
5903
+ };
5549
5904
  export declare type MutationDocumentUpdateArgs = {
5550
5905
  id: Scalars["String"];
5551
5906
  input: DocumentUpdateInput;
@@ -5685,6 +6040,10 @@ export declare type MutationIntegrationFrontArgs = {
5685
6040
  code: Scalars["String"];
5686
6041
  redirectUri: Scalars["String"];
5687
6042
  };
6043
+ export declare type MutationIntegrationGitHubEnterpriseServerConnectArgs = {
6044
+ githubUrl: Scalars["String"];
6045
+ organizationName?: Maybe<Scalars["String"]>;
6046
+ };
5688
6047
  export declare type MutationIntegrationGitHubPersonalArgs = {
5689
6048
  code: Scalars["String"];
5690
6049
  };
@@ -5719,6 +6078,11 @@ export declare type MutationIntegrationJiraPersonalArgs = {
5719
6078
  export declare type MutationIntegrationJiraUpdateArgs = {
5720
6079
  input: JiraUpdateInput;
5721
6080
  };
6081
+ export declare type MutationIntegrationLaunchDarklyConnectArgs = {
6082
+ apiKey: Scalars["String"];
6083
+ environment: Scalars["String"];
6084
+ projectKey: Scalars["String"];
6085
+ };
5722
6086
  export declare type MutationIntegrationOpsgenieConnectArgs = {
5723
6087
  apiKey: Scalars["String"];
5724
6088
  };
@@ -5816,6 +6180,7 @@ export declare type MutationIssueCreateArgs = {
5816
6180
  };
5817
6181
  export declare type MutationIssueDeleteArgs = {
5818
6182
  id: Scalars["String"];
6183
+ permanentlyDelete?: Maybe<Scalars["Boolean"]>;
5819
6184
  };
5820
6185
  export declare type MutationIssueDescriptionUpdateFromFrontArgs = {
5821
6186
  description: Scalars["String"];
@@ -5859,7 +6224,7 @@ export declare type MutationIssueImportCreateGithubArgs = {
5859
6224
  githubToken?: Maybe<Scalars["String"]>;
5860
6225
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
5861
6226
  instantProcess?: Maybe<Scalars["Boolean"]>;
5862
- integrationId: Scalars["String"];
6227
+ integrationId?: Maybe<Scalars["String"]>;
5863
6228
  organizationId?: Maybe<Scalars["String"]>;
5864
6229
  teamId?: Maybe<Scalars["String"]>;
5865
6230
  teamName?: Maybe<Scalars["String"]>;
@@ -6232,9 +6597,6 @@ export declare type MutationUserPromoteAdminArgs = {
6232
6597
  export declare type MutationUserPromoteMemberArgs = {
6233
6598
  id: Scalars["String"];
6234
6599
  };
6235
- export declare type MutationUserSettingsFlagIncrementArgs = {
6236
- flag: Scalars["String"];
6237
- };
6238
6600
  export declare type MutationUserSettingsFlagsResetArgs = {
6239
6601
  flags?: Maybe<Array<UserFlagType>>;
6240
6602
  };
@@ -6290,6 +6652,12 @@ export declare type Node = {
6290
6652
  export declare type Notification = {
6291
6653
  /** The user that caused the notification. */
6292
6654
  actor?: Maybe<User>;
6655
+ /** [Internal] Notification actor initials if avatar is not available. */
6656
+ actorAvatarColor?: Maybe<Scalars["String"]>;
6657
+ /** [Internal] Notification avatar URL. */
6658
+ actorAvatarUrl?: Maybe<Scalars["String"]>;
6659
+ /** [Internal] Notification actor initials if avatar is not available. */
6660
+ actorInitials?: Maybe<Scalars["String"]>;
6293
6661
  /** The time at which the entity was archived. Null if the entity has not been archived. */
6294
6662
  archivedAt?: Maybe<Scalars["DateTime"]>;
6295
6663
  /** The bot that caused the notification. */
@@ -6303,12 +6671,24 @@ export declare type Notification = {
6303
6671
  emailedAt?: Maybe<Scalars["DateTime"]>;
6304
6672
  /** The external user that caused the notification. */
6305
6673
  externalUserActor?: Maybe<ExternalUser>;
6674
+ /** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
6675
+ groupingKey: Scalars["String"];
6306
6676
  /** The unique identifier of the entity. */
6307
6677
  id: Scalars["ID"];
6678
+ /** [Internal] If notification actor was Linear. */
6679
+ isLinearActor?: Maybe<Scalars["Boolean"]>;
6680
+ /** [Internal] Issue's status type for issue notifications. */
6681
+ issueStatusType?: Maybe<Scalars["String"]>;
6682
+ /** [Internal] Project update health for new updates. */
6683
+ projectUpdateHealth?: Maybe<Scalars["String"]>;
6308
6684
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
6309
6685
  readAt?: Maybe<Scalars["DateTime"]>;
6310
6686
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
6311
6687
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
6688
+ /** [Internal] Notification subtitle. */
6689
+ subtitle: Scalars["String"];
6690
+ /** [Internal] Notification title. */
6691
+ title: Scalars["String"];
6312
6692
  /** Notification type. */
6313
6693
  type: Scalars["String"];
6314
6694
  /** The time at which a notification was unsnoozed.. */
@@ -6319,6 +6699,8 @@ export declare type Notification = {
6319
6699
  * been updated after creation.
6320
6700
  */
6321
6701
  updatedAt: Scalars["DateTime"];
6702
+ /** [Internal] URL to the target of the notification. */
6703
+ url: Scalars["String"];
6322
6704
  /** The user that received the notification. */
6323
6705
  user: User;
6324
6706
  };
@@ -6359,13 +6741,13 @@ export declare type NotificationDeliveryPreferencesChannel = {
6359
6741
  /** Whether notifications are enabled for this channel. */
6360
6742
  notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6361
6743
  /** The schedule for notifications on this channel. */
6362
- schedule: NotificationDeliveryPreferencesSchedule;
6744
+ schedule?: Maybe<NotificationDeliveryPreferencesSchedule>;
6363
6745
  };
6364
6746
  export declare type NotificationDeliveryPreferencesChannelInput = {
6365
6747
  /** Whether notifications are enabled for this channel. */
6366
6748
  notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6367
6749
  /** The schedule for notifications on this channel. */
6368
- schedule: NotificationDeliveryPreferencesScheduleInput;
6750
+ schedule?: Maybe<NotificationDeliveryPreferencesScheduleInput>;
6369
6751
  };
6370
6752
  /** A user's notification delivery schedule for a particular day. */
6371
6753
  export declare type NotificationDeliveryPreferencesDay = {
@@ -6581,6 +6963,8 @@ export declare type NullableCommentFilter = {
6581
6963
  parent?: Maybe<NullableCommentFilter>;
6582
6964
  /** Filters that the comments project update must satisfy. */
6583
6965
  projectUpdate?: Maybe<ProjectUpdateFilter>;
6966
+ /** Filters that the comments reactions must satisfy. */
6967
+ reactions?: Maybe<ReactionCollectionFilter>;
6584
6968
  /** Comparator for the updated at date. */
6585
6969
  updatedAt?: Maybe<DateComparator>;
6586
6970
  /** Filters that the comments creator must satisfy. */
@@ -6744,6 +7128,8 @@ export declare type NullableIssueFilter = {
6744
7128
  project?: Maybe<NullableProjectFilter>;
6745
7129
  /** Filters that the issues project milestone must satisfy. */
6746
7130
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
7131
+ /** Filters that the issues reactions must satisfy. */
7132
+ reactions?: Maybe<ReactionCollectionFilter>;
6747
7133
  /** [Internal] Comparator for the issues content. */
6748
7134
  searchableContent?: Maybe<ContentComparator>;
6749
7135
  /** Comparator for the issues sla status. */
@@ -6804,6 +7190,16 @@ export declare type NullableProjectFilter = {
6804
7190
  createdAt?: Maybe<DateComparator>;
6805
7191
  /** Filters that the projects creator must satisfy. */
6806
7192
  creator?: Maybe<UserFilter>;
7193
+ /** Comparator for filtering projects which are blocked. */
7194
+ hasBlockedByRelations?: Maybe<RelationExistsComparator>;
7195
+ /** Comparator for filtering projects which are blocking. */
7196
+ hasBlockingRelations?: Maybe<RelationExistsComparator>;
7197
+ /** Comparator for filtering projects which this is depended on by. */
7198
+ hasDependedOnByRelations?: Maybe<RelationExistsComparator>;
7199
+ /** Comparator for filtering projects which this depends on. */
7200
+ hasDependsOnRelations?: Maybe<RelationExistsComparator>;
7201
+ /** Comparator for filtering projects with relations. */
7202
+ hasRelatedRelations?: Maybe<RelationExistsComparator>;
6807
7203
  /** Comparator for the project health. */
6808
7204
  health?: Maybe<StringComparator>;
6809
7205
  /** Comparator for the identifier. */
@@ -6828,6 +7224,8 @@ export declare type NullableProjectFilter = {
6828
7224
  or?: Maybe<Array<NullableProjectFilter>>;
6829
7225
  /** Filters that the project's milestones must satisfy. */
6830
7226
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
7227
+ /** Comparator for the project updates. */
7228
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
6831
7229
  /** Filters that the projects roadmaps must satisfy. */
6832
7230
  roadmaps?: Maybe<RoadmapCollectionFilter>;
6833
7231
  /** [Internal] Comparator for the project's content. */
@@ -6864,6 +7262,40 @@ export declare type NullableProjectMilestoneFilter = {
6864
7262
  /** Comparator for the updated at date. */
6865
7263
  updatedAt?: Maybe<DateComparator>;
6866
7264
  };
7265
+ /** Options for filtering projects by project updates. */
7266
+ export declare type NullableProjectUpdatesFilter = {
7267
+ /** Compound filters, all of which need to be matched by the project updates. */
7268
+ and?: Maybe<Array<NullableProjectUpdatesFilter>>;
7269
+ /** Comparator for the created at date. */
7270
+ createdAt?: Maybe<DateComparator>;
7271
+ /** Comparator for the identifier. */
7272
+ id?: Maybe<IdComparator>;
7273
+ /** Filter based on the existence of the relation. */
7274
+ null?: Maybe<Scalars["Boolean"]>;
7275
+ /** Compound filters, one of which need to be matched by the project updates. */
7276
+ or?: Maybe<Array<NullableProjectUpdatesFilter>>;
7277
+ /** Comparator for the updated at date. */
7278
+ updatedAt?: Maybe<DateComparator>;
7279
+ };
7280
+ /** Reaction filtering options. */
7281
+ export declare type NullableReactionFilter = {
7282
+ /** Compound filters, all of which need to be matched by the reaction. */
7283
+ and?: Maybe<Array<NullableReactionFilter>>;
7284
+ /** Comparator for the created at date. */
7285
+ createdAt?: Maybe<DateComparator>;
7286
+ /** Comparator for the reactions custom emoji. */
7287
+ customEmojiId?: Maybe<IdComparator>;
7288
+ /** Comparator for the reactions emoji. */
7289
+ emoji?: Maybe<StringComparator>;
7290
+ /** Comparator for the identifier. */
7291
+ id?: Maybe<IdComparator>;
7292
+ /** Filter based on the existence of the relation. */
7293
+ null?: Maybe<Scalars["Boolean"]>;
7294
+ /** Compound filters, one of which need to be matched by the reaction. */
7295
+ or?: Maybe<Array<NullableReactionFilter>>;
7296
+ /** Comparator for the updated at date. */
7297
+ updatedAt?: Maybe<DateComparator>;
7298
+ };
6867
7299
  /** Comparator for optional strings. */
6868
7300
  export declare type NullableStringComparator = {
6869
7301
  /** Contains constraint. Matches any values that contain the given string. */
@@ -7093,6 +7525,12 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
7093
7525
  __typename?: "OauthClientApprovalNotification";
7094
7526
  /** The user that caused the notification. */
7095
7527
  actor?: Maybe<User>;
7528
+ /** [Internal] Notification actor initials if avatar is not available. */
7529
+ actorAvatarColor?: Maybe<Scalars["String"]>;
7530
+ /** [Internal] Notification avatar URL. */
7531
+ actorAvatarUrl?: Maybe<Scalars["String"]>;
7532
+ /** [Internal] Notification actor initials if avatar is not available. */
7533
+ actorInitials?: Maybe<Scalars["String"]>;
7096
7534
  /** The time at which the entity was archived. Null if the entity has not been archived. */
7097
7535
  archivedAt?: Maybe<Scalars["DateTime"]>;
7098
7536
  /** The bot that caused the notification. */
@@ -7106,14 +7544,26 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
7106
7544
  emailedAt?: Maybe<Scalars["DateTime"]>;
7107
7545
  /** The external user that caused the notification. */
7108
7546
  externalUserActor?: Maybe<ExternalUser>;
7547
+ /** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
7548
+ groupingKey: Scalars["String"];
7109
7549
  /** The unique identifier of the entity. */
7110
7550
  id: Scalars["ID"];
7551
+ /** [Internal] If notification actor was Linear. */
7552
+ isLinearActor?: Maybe<Scalars["Boolean"]>;
7553
+ /** [Internal] Issue's status type for issue notifications. */
7554
+ issueStatusType?: Maybe<Scalars["String"]>;
7111
7555
  /** The OAuth client approval request related to the notification. */
7112
7556
  oauthClientApproval: OauthClientApproval;
7557
+ /** [Internal] Project update health for new updates. */
7558
+ projectUpdateHealth?: Maybe<Scalars["String"]>;
7113
7559
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
7114
7560
  readAt?: Maybe<Scalars["DateTime"]>;
7115
7561
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
7116
7562
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
7563
+ /** [Internal] Notification subtitle. */
7564
+ subtitle: Scalars["String"];
7565
+ /** [Internal] Notification title. */
7566
+ title: Scalars["String"];
7117
7567
  /** Notification type. */
7118
7568
  type: Scalars["String"];
7119
7569
  /** The time at which a notification was unsnoozed.. */
@@ -7124,6 +7574,8 @@ export declare type OauthClientApprovalNotification = Entity & Node & Notificati
7124
7574
  * been updated after creation.
7125
7575
  */
7126
7576
  updatedAt: Scalars["DateTime"];
7577
+ /** [Internal] URL to the target of the notification. */
7578
+ url: Scalars["String"];
7127
7579
  /** The user that received the notification. */
7128
7580
  user: User;
7129
7581
  };
@@ -7160,13 +7612,13 @@ export declare type OnboardingCustomerSurvey = {
7160
7612
  };
7161
7613
  export declare type OpsgenieInput = {
7162
7614
  /** The date when the Opsgenie API failed with an unauthorized error. */
7163
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7615
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7164
7616
  };
7165
7617
  /** Opsgenie specific settings. */
7166
7618
  export declare type OpsgenieSettings = {
7167
7619
  __typename?: "OpsgenieSettings";
7168
7620
  /** The date when the Opsgenie API failed with an unauthorized error. */
7169
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7621
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7170
7622
  };
7171
7623
  /** An organization. Organizations are root-level objects that contain user accounts and teams. */
7172
7624
  export declare type Organization = Node & {
@@ -7195,6 +7647,8 @@ export declare type Organization = Node & {
7195
7647
  id: Scalars["ID"];
7196
7648
  /** Integrations associated with the organization. */
7197
7649
  integrations: IntegrationConnection;
7650
+ /** IP restriction configurations. */
7651
+ ipRestrictions?: Maybe<Array<OrganizationIpRestriction>>;
7198
7652
  /** Labels associated with the organization. */
7199
7653
  labels: IssueLabelConnection;
7200
7654
  /** The organization's logo URL. */
@@ -7419,7 +7873,7 @@ export declare type OrganizationInvite = Node & {
7419
7873
  /** The user who created the invitation. */
7420
7874
  inviter: User;
7421
7875
  /** Extra metadata associated with the organization invite. */
7422
- metadata: Scalars["JSONObject"];
7876
+ metadata?: Maybe<Scalars["JSONObject"]>;
7423
7877
  /** The organization that the invite is associated with. */
7424
7878
  organization: Organization;
7425
7879
  /** The user role that the invitee will receive upon accepting the invite. */
@@ -7517,6 +7971,28 @@ export declare type OrganizationInviteUpdateInput = {
7517
7971
  /** The teams that the user has been invited to. */
7518
7972
  teamIds: Array<Scalars["String"]>;
7519
7973
  };
7974
+ export declare type OrganizationIpRestriction = {
7975
+ __typename?: "OrganizationIpRestriction";
7976
+ /** Optional restriction description. */
7977
+ description?: Maybe<Scalars["String"]>;
7978
+ /** Whether the restriction is enabled. */
7979
+ enabled: Scalars["Boolean"];
7980
+ /** IP range in CIDR format. */
7981
+ range: Scalars["String"];
7982
+ /** Restriction type. */
7983
+ type: Scalars["String"];
7984
+ };
7985
+ /** [INTERNAL] Organization IP restriction configuration. */
7986
+ export declare type OrganizationIpRestrictionInput = {
7987
+ /** Optional restriction description. */
7988
+ description?: Maybe<Scalars["String"]>;
7989
+ /** Whether the restriction is enabled. */
7990
+ enabled: Scalars["Boolean"];
7991
+ /** IP range in CIDR format. */
7992
+ range: Scalars["String"];
7993
+ /** Restriction type. */
7994
+ type: Scalars["String"];
7995
+ };
7520
7996
  export declare type OrganizationMeta = {
7521
7997
  __typename?: "OrganizationMeta";
7522
7998
  /** Allowed authentication providers, empty array means all are allowed. */
@@ -7558,8 +8034,8 @@ export declare type OrganizationUpdateInput = {
7558
8034
  gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
7559
8035
  /** Whether the Git integration linkback messages should be sent for public repositories. */
7560
8036
  gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
7561
- /** Linear Preview feature flags. */
7562
- linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
8037
+ /** IP restriction configurations controlling allowed access the workspace. */
8038
+ ipRestrictions?: Maybe<Array<OrganizationIpRestrictionInput>>;
7563
8039
  /** The logo of the organization. */
7564
8040
  logoUrl?: Maybe<Scalars["String"]>;
7565
8041
  /** The name of the organization. */
@@ -7572,7 +8048,7 @@ export declare type OrganizationUpdateInput = {
7572
8048
  projectUpdateRemindersDay?: Maybe<Day>;
7573
8049
  /** The hour at which project updates are sent. */
7574
8050
  projectUpdateRemindersHour?: Maybe<Scalars["Float"]>;
7575
- /** The frequency at which project updates are sent. */
8051
+ /** [DEPRECATED] The frequency at which project updates are sent. */
7576
8052
  projectUpdatesReminderFrequency?: Maybe<ProjectUpdateReminderFrequency>;
7577
8053
  /** Whether the organization has opted for reduced customer support attachment information. */
7578
8054
  reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
@@ -7600,13 +8076,13 @@ export declare type PageInfo = {
7600
8076
  };
7601
8077
  export declare type PagerDutyInput = {
7602
8078
  /** The date when the PagerDuty API failed with an unauthorized error. */
7603
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
8079
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7604
8080
  };
7605
8081
  /** PagerDuty specific settings. */
7606
8082
  export declare type PagerDutySettings = {
7607
8083
  __typename?: "PagerDutySettings";
7608
8084
  /** The date when the PagerDuty API failed with an unauthorized error. */
7609
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
8085
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7610
8086
  };
7611
8087
  /** How to treat NULL values, whether they should appear first or last */
7612
8088
  export declare enum PaginationNulls {
@@ -7631,7 +8107,7 @@ export declare type PaidSubscription = Node & {
7631
8107
  /** The date the subscription was canceled, if any. */
7632
8108
  canceledAt?: Maybe<Scalars["DateTime"]>;
7633
8109
  /** The collection method for this subscription, either automatically charged or invoiced. */
7634
- collectionMethod?: Maybe<Scalars["String"]>;
8110
+ collectionMethod: Scalars["String"];
7635
8111
  /** The time at which the entity was created. */
7636
8112
  createdAt: Scalars["DateTime"];
7637
8113
  /** The creator of the subscription. */
@@ -7905,6 +8381,16 @@ export declare type ProjectCollectionFilter = {
7905
8381
  creator?: Maybe<UserFilter>;
7906
8382
  /** Filters that needs to be matched by all projects. */
7907
8383
  every?: Maybe<ProjectFilter>;
8384
+ /** Comparator for filtering projects which are blocked. */
8385
+ hasBlockedByRelations?: Maybe<RelationExistsComparator>;
8386
+ /** Comparator for filtering projects which are blocking. */
8387
+ hasBlockingRelations?: Maybe<RelationExistsComparator>;
8388
+ /** Comparator for filtering projects which this is depended on by. */
8389
+ hasDependedOnByRelations?: Maybe<RelationExistsComparator>;
8390
+ /** Comparator for filtering projects which this depends on. */
8391
+ hasDependsOnRelations?: Maybe<RelationExistsComparator>;
8392
+ /** Comparator for filtering projects with relations. */
8393
+ hasRelatedRelations?: Maybe<RelationExistsComparator>;
7908
8394
  /** Comparator for the project health. */
7909
8395
  health?: Maybe<StringComparator>;
7910
8396
  /** Comparator for the identifier. */
@@ -7929,6 +8415,8 @@ export declare type ProjectCollectionFilter = {
7929
8415
  or?: Maybe<Array<ProjectCollectionFilter>>;
7930
8416
  /** Filters that the project's milestones must satisfy. */
7931
8417
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
8418
+ /** Comparator for the project updates. */
8419
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
7932
8420
  /** Filters that the projects roadmaps must satisfy. */
7933
8421
  roadmaps?: Maybe<RoadmapCollectionFilter>;
7934
8422
  /** [Internal] Comparator for the project's content. */
@@ -7990,21 +8478,6 @@ export declare type ProjectCreateInput = {
7990
8478
  /** The identifiers of the teams this project is associated with. */
7991
8479
  teamIds: Array<Scalars["String"]>;
7992
8480
  };
7993
- export declare type ProjectDetailSuggestionInput = {
7994
- /** The description for the project. */
7995
- description?: Maybe<Scalars["String"]>;
7996
- /** The content of the project as markdown. */
7997
- documentContent?: Maybe<Scalars["String"]>;
7998
- /** The name of the project. */
7999
- name: Scalars["String"];
8000
- };
8001
- export declare type ProjectDetailSuggestionPayload = {
8002
- __typename?: "ProjectDetailSuggestionPayload";
8003
- /** The suggested project color. */
8004
- color?: Maybe<Scalars["String"]>;
8005
- /** The suggested view icon. */
8006
- icon?: Maybe<Scalars["String"]>;
8007
- };
8008
8481
  export declare type ProjectEdge = {
8009
8482
  __typename?: "ProjectEdge";
8010
8483
  /** Used in `before` and `after` args */
@@ -8025,6 +8498,16 @@ export declare type ProjectFilter = {
8025
8498
  createdAt?: Maybe<DateComparator>;
8026
8499
  /** Filters that the projects creator must satisfy. */
8027
8500
  creator?: Maybe<UserFilter>;
8501
+ /** Comparator for filtering projects which are blocked. */
8502
+ hasBlockedByRelations?: Maybe<RelationExistsComparator>;
8503
+ /** Comparator for filtering projects which are blocking. */
8504
+ hasBlockingRelations?: Maybe<RelationExistsComparator>;
8505
+ /** Comparator for filtering projects which this is depended on by. */
8506
+ hasDependedOnByRelations?: Maybe<RelationExistsComparator>;
8507
+ /** Comparator for filtering projects which this depends on. */
8508
+ hasDependsOnRelations?: Maybe<RelationExistsComparator>;
8509
+ /** Comparator for filtering projects with relations. */
8510
+ hasRelatedRelations?: Maybe<RelationExistsComparator>;
8028
8511
  /** Comparator for the project health. */
8029
8512
  health?: Maybe<StringComparator>;
8030
8513
  /** Comparator for the identifier. */
@@ -8047,6 +8530,8 @@ export declare type ProjectFilter = {
8047
8530
  or?: Maybe<Array<ProjectFilter>>;
8048
8531
  /** Filters that the project's milestones must satisfy. */
8049
8532
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
8533
+ /** Comparator for the project updates. */
8534
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
8050
8535
  /** Filters that the projects roadmaps must satisfy. */
8051
8536
  roadmaps?: Maybe<RoadmapCollectionFilter>;
8052
8537
  /** [Internal] Comparator for the project's content. */
@@ -8275,10 +8760,20 @@ export declare type ProjectNotification = Entity & Node & Notification & {
8275
8760
  __typename?: "ProjectNotification";
8276
8761
  /** The user that caused the notification. */
8277
8762
  actor?: Maybe<User>;
8763
+ /** [Internal] Notification actor initials if avatar is not available. */
8764
+ actorAvatarColor?: Maybe<Scalars["String"]>;
8765
+ /** [Internal] Notification avatar URL. */
8766
+ actorAvatarUrl?: Maybe<Scalars["String"]>;
8767
+ /** [Internal] Notification actor initials if avatar is not available. */
8768
+ actorInitials?: Maybe<Scalars["String"]>;
8278
8769
  /** The time at which the entity was archived. Null if the entity has not been archived. */
8279
8770
  archivedAt?: Maybe<Scalars["DateTime"]>;
8280
8771
  /** The bot that caused the notification. */
8281
8772
  botActor?: Maybe<ActorBot>;
8773
+ /** The comment related to the notification. */
8774
+ comment?: Maybe<Comment>;
8775
+ /** Related comment ID. Null if the notification is not related to a comment. */
8776
+ commentId?: Maybe<Scalars["String"]>;
8282
8777
  /** The time at which the entity was created. */
8283
8778
  createdAt: Scalars["DateTime"];
8284
8779
  /**
@@ -8288,16 +8783,32 @@ export declare type ProjectNotification = Entity & Node & Notification & {
8288
8783
  emailedAt?: Maybe<Scalars["DateTime"]>;
8289
8784
  /** The external user that caused the notification. */
8290
8785
  externalUserActor?: Maybe<ExternalUser>;
8786
+ /** [ALPHA] Notifications with the same grouping key will be grouped together in the UI. */
8787
+ groupingKey: Scalars["String"];
8291
8788
  /** The unique identifier of the entity. */
8292
8789
  id: Scalars["ID"];
8790
+ /** [Internal] If notification actor was Linear. */
8791
+ isLinearActor?: Maybe<Scalars["Boolean"]>;
8792
+ /** [Internal] Issue's status type for issue notifications. */
8793
+ issueStatusType?: Maybe<Scalars["String"]>;
8794
+ /** The parent comment related to the notification, if a notification is a reply comment notification. */
8795
+ parentComment?: Maybe<Comment>;
8796
+ /** Related parent comment ID. Null if the notification is not related to a comment. */
8797
+ parentCommentId?: Maybe<Scalars["String"]>;
8293
8798
  /** The project related to the notification. */
8294
8799
  project: Project;
8295
8800
  /** The project update related to the notification. */
8296
8801
  projectUpdate?: Maybe<ProjectUpdate>;
8802
+ /** [Internal] Project update health for new updates. */
8803
+ projectUpdateHealth?: Maybe<Scalars["String"]>;
8297
8804
  /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
8298
8805
  readAt?: Maybe<Scalars["DateTime"]>;
8299
8806
  /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
8300
8807
  snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
8808
+ /** [Internal] Notification subtitle. */
8809
+ subtitle: Scalars["String"];
8810
+ /** [Internal] Notification title. */
8811
+ title: Scalars["String"];
8301
8812
  /** Notification type. */
8302
8813
  type: Scalars["String"];
8303
8814
  /** The time at which a notification was unsnoozed.. */
@@ -8308,6 +8819,8 @@ export declare type ProjectNotification = Entity & Node & Notification & {
8308
8819
  * been updated after creation.
8309
8820
  */
8310
8821
  updatedAt: Scalars["DateTime"];
8822
+ /** [Internal] URL to the target of the notification. */
8823
+ url: Scalars["String"];
8311
8824
  /** The user that received the notification. */
8312
8825
  user: User;
8313
8826
  };
@@ -8716,7 +9229,6 @@ export declare enum ProjectStatusType {
8716
9229
  }
8717
9230
  /** Different tabs available inside a project. */
8718
9231
  export declare enum ProjectTab {
8719
- Activity = "activity",
8720
9232
  Documents = "documents",
8721
9233
  Issues = "issues"
8722
9234
  }
@@ -8751,6 +9263,8 @@ export declare type ProjectUpdate = Node & {
8751
9263
  project: Project;
8752
9264
  /** Emoji reaction summary, grouped by emoji type. */
8753
9265
  reactionData: Scalars["JSONObject"];
9266
+ /** Reactions associated with the project update. */
9267
+ reactions: Array<Reaction>;
8754
9268
  /**
8755
9269
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8756
9270
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -8798,7 +9312,7 @@ export declare type ProjectUpdateEdge = {
8798
9312
  cursor: Scalars["String"];
8799
9313
  node: ProjectUpdate;
8800
9314
  };
8801
- /** ProjectUpdate filtering options. */
9315
+ /** Options for filtering project updates. */
8802
9316
  export declare type ProjectUpdateFilter = {
8803
9317
  /** Compound filters, all of which need to be matched by the ProjectUpdate. */
8804
9318
  and?: Maybe<Array<ProjectUpdateFilter>>;
@@ -8810,6 +9324,8 @@ export declare type ProjectUpdateFilter = {
8810
9324
  or?: Maybe<Array<ProjectUpdateFilter>>;
8811
9325
  /** Filters that the project update project must satisfy. */
8812
9326
  project?: Maybe<ProjectFilter>;
9327
+ /** Filters that the project updates reactions must satisfy. */
9328
+ reactions?: Maybe<ReactionCollectionFilter>;
8813
9329
  /** Comparator for the updated at date. */
8814
9330
  updatedAt?: Maybe<DateComparator>;
8815
9331
  /** Filters that the project update creator must satisfy. */
@@ -8866,6 +9382,8 @@ export declare type ProjectUpdateInput = {
8866
9382
  targetDateResolution?: Maybe<DateResolutionType>;
8867
9383
  /** The identifiers of the teams this project is associated with. */
8868
9384
  teamIds?: Maybe<Array<Scalars["String"]>>;
9385
+ /** Whether the project has been trashed. */
9386
+ trashed?: Maybe<Scalars["Boolean"]>;
8869
9387
  };
8870
9388
  /** Holds information about when a user has interacted with a project update. */
8871
9389
  export declare type ProjectUpdateInteraction = Node & {
@@ -8962,7 +9480,39 @@ export declare type ProjectUpdateWithInteractionPayload = {
8962
9480
  /** Whether the operation was successful. */
8963
9481
  success: Scalars["Boolean"];
8964
9482
  };
8965
- /** A user's web browser push notification subscription. */
9483
+ /** Collection filtering options for filtering projects by project updates. */
9484
+ export declare type ProjectUpdatesCollectionFilter = {
9485
+ /** Compound filters, all of which need to be matched by the project update. */
9486
+ and?: Maybe<Array<ProjectUpdatesCollectionFilter>>;
9487
+ /** Comparator for the created at date. */
9488
+ createdAt?: Maybe<DateComparator>;
9489
+ /** Filters that needs to be matched by all updates. */
9490
+ every?: Maybe<ProjectUpdatesFilter>;
9491
+ /** Comparator for the identifier. */
9492
+ id?: Maybe<IdComparator>;
9493
+ /** Comparator for the collection length. */
9494
+ length?: Maybe<NumberComparator>;
9495
+ /** Compound filters, one of which need to be matched by the update. */
9496
+ or?: Maybe<Array<ProjectUpdatesCollectionFilter>>;
9497
+ /** Filters that needs to be matched by some updates. */
9498
+ some?: Maybe<ProjectUpdatesFilter>;
9499
+ /** Comparator for the updated at date. */
9500
+ updatedAt?: Maybe<DateComparator>;
9501
+ };
9502
+ /** Options for filtering projects by project updates. */
9503
+ export declare type ProjectUpdatesFilter = {
9504
+ /** Compound filters, all of which need to be matched by the project updates. */
9505
+ and?: Maybe<Array<ProjectUpdatesFilter>>;
9506
+ /** Comparator for the created at date. */
9507
+ createdAt?: Maybe<DateComparator>;
9508
+ /** Comparator for the identifier. */
9509
+ id?: Maybe<IdComparator>;
9510
+ /** Compound filters, one of which need to be matched by the project updates. */
9511
+ or?: Maybe<Array<ProjectUpdatesFilter>>;
9512
+ /** Comparator for the updated at date. */
9513
+ updatedAt?: Maybe<DateComparator>;
9514
+ };
9515
+ /** A user's web or mobile push notification subscription. */
8966
9516
  export declare type PushSubscription = Node & {
8967
9517
  __typename?: "PushSubscription";
8968
9518
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -9105,13 +9655,13 @@ export declare type Query = {
9105
9655
  favorite: Favorite;
9106
9656
  /** The user's favorites. */
9107
9657
  favorites: FavoriteConnection;
9108
- /** [Internal] One specific initiative. */
9658
+ /** One specific initiative. */
9109
9659
  initiative: Initiative;
9110
- /** [INTERNAL] One specific initiativeToProject. */
9660
+ /** One specific initiativeToProject. */
9111
9661
  initiativeToProject: InitiativeToProject;
9112
- /** [INTERNAL] returns a list of initiative to project entities. */
9662
+ /** returns a list of initiative to project entities. */
9113
9663
  initiativeToProjects: InitiativeToProjectConnection;
9114
- /** [Internal] All initiatives in the workspace. */
9664
+ /** All initiatives in the workspace. */
9115
9665
  initiatives: InitiativeConnection;
9116
9666
  /** One specific integration. */
9117
9667
  integration: Integration;
@@ -9175,8 +9725,6 @@ export declare type Query = {
9175
9725
  organizationMeta?: Maybe<OrganizationMeta>;
9176
9726
  /** One specific project. */
9177
9727
  project: Project;
9178
- /** [INTERNAL] Suggests icon, color for a project based on its info while composing. */
9179
- projectDetailsSuggestion: ProjectDetailSuggestionPayload;
9180
9728
  /** Suggests filters for a project view based on a text prompt. */
9181
9729
  projectFilterSuggestion: ProjectFilterSuggestionPayload;
9182
9730
  /** One specific project link. */
@@ -9598,9 +10146,6 @@ export declare type QueryOrganizationMetaArgs = {
9598
10146
  export declare type QueryProjectArgs = {
9599
10147
  id: Scalars["String"];
9600
10148
  };
9601
- export declare type QueryProjectDetailsSuggestionArgs = {
9602
- project: ProjectDetailSuggestionInput;
9603
- };
9604
10149
  export declare type QueryProjectFilterSuggestionArgs = {
9605
10150
  prompt: Scalars["String"];
9606
10151
  };
@@ -9877,6 +10422,29 @@ export declare type Reaction = Node & {
9877
10422
  /** The user that created the reaction. */
9878
10423
  user?: Maybe<User>;
9879
10424
  };
10425
+ /** Reaction filtering options. */
10426
+ export declare type ReactionCollectionFilter = {
10427
+ /** Compound filters, all of which need to be matched by the reaction. */
10428
+ and?: Maybe<Array<ReactionCollectionFilter>>;
10429
+ /** Comparator for the created at date. */
10430
+ createdAt?: Maybe<DateComparator>;
10431
+ /** Comparator for the reactions custom emoji. */
10432
+ customEmojiId?: Maybe<IdComparator>;
10433
+ /** Comparator for the reactions emoji. */
10434
+ emoji?: Maybe<StringComparator>;
10435
+ /** Filters that needs to be matched by all reactions. */
10436
+ every?: Maybe<ReactionFilter>;
10437
+ /** Comparator for the identifier. */
10438
+ id?: Maybe<IdComparator>;
10439
+ /** Comparator for the collection length. */
10440
+ length?: Maybe<NumberComparator>;
10441
+ /** Compound filters, one of which need to be matched by the reaction. */
10442
+ or?: Maybe<Array<ReactionCollectionFilter>>;
10443
+ /** Filters that needs to be matched by some reactions. */
10444
+ some?: Maybe<ReactionFilter>;
10445
+ /** Comparator for the updated at date. */
10446
+ updatedAt?: Maybe<DateComparator>;
10447
+ };
9880
10448
  export declare type ReactionConnection = {
9881
10449
  __typename?: "ReactionConnection";
9882
10450
  edges: Array<ReactionEdge>;
@@ -9887,7 +10455,7 @@ export declare type ReactionCreateInput = {
9887
10455
  /** The comment to associate the reaction with. */
9888
10456
  commentId?: Maybe<Scalars["String"]>;
9889
10457
  /** The emoji the user reacted with. */
9890
- emoji?: Maybe<Scalars["String"]>;
10458
+ emoji: Scalars["String"];
9891
10459
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
9892
10460
  id?: Maybe<Scalars["String"]>;
9893
10461
  /** The issue to associate the reaction with. */
@@ -9901,6 +10469,23 @@ export declare type ReactionEdge = {
9901
10469
  cursor: Scalars["String"];
9902
10470
  node: Reaction;
9903
10471
  };
10472
+ /** Reaction filtering options. */
10473
+ export declare type ReactionFilter = {
10474
+ /** Compound filters, all of which need to be matched by the reaction. */
10475
+ and?: Maybe<Array<ReactionFilter>>;
10476
+ /** Comparator for the created at date. */
10477
+ createdAt?: Maybe<DateComparator>;
10478
+ /** Comparator for the reactions custom emoji. */
10479
+ customEmojiId?: Maybe<IdComparator>;
10480
+ /** Comparator for the reactions emoji. */
10481
+ emoji?: Maybe<StringComparator>;
10482
+ /** Comparator for the identifier. */
10483
+ id?: Maybe<IdComparator>;
10484
+ /** Compound filters, one of which need to be matched by the reaction. */
10485
+ or?: Maybe<Array<ReactionFilter>>;
10486
+ /** Comparator for the updated at date. */
10487
+ updatedAt?: Maybe<DateComparator>;
10488
+ };
9904
10489
  export declare type ReactionPayload = {
9905
10490
  __typename?: "ReactionPayload";
9906
10491
  /** The identifier of the last sync operation. */
@@ -10209,8 +10794,7 @@ export declare enum SlaStatus {
10209
10794
  Failed = "Failed",
10210
10795
  HighRisk = "HighRisk",
10211
10796
  LowRisk = "LowRisk",
10212
- MediumRisk = "MediumRisk",
10213
- Paused = "Paused"
10797
+ MediumRisk = "MediumRisk"
10214
10798
  }
10215
10799
  /** Comparator for sla status. */
10216
10800
  export declare type SlaStatusComparator = {
@@ -10920,7 +11504,7 @@ export declare type TeamMembership = Node & {
10920
11504
  /** The unique identifier of the entity. */
10921
11505
  id: Scalars["ID"];
10922
11506
  /** Whether the user is the owner of the team. */
10923
- owner?: Maybe<Scalars["Boolean"]>;
11507
+ owner: Scalars["Boolean"];
10924
11508
  /** The order of the item in the users team list. */
10925
11509
  sortOrder: Scalars["Float"];
10926
11510
  /** The team that the membership is associated with. */
@@ -11222,7 +11806,7 @@ export declare type TemplateUpdateInput = {
11222
11806
  /** The template data as JSON encoded attributes of the type of entity, such as an issue. */
11223
11807
  templateData?: Maybe<Scalars["JSON"]>;
11224
11808
  };
11225
- /** A text draft, used for comments and project updates. */
11809
+ /** [DEPRECATED] A text draft, used for comments and project updates. */
11226
11810
  export declare type TextDraft = Node & {
11227
11811
  __typename?: "TextDraft";
11228
11812
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -11231,6 +11815,8 @@ export declare type TextDraft = Node & {
11231
11815
  bodyData: Scalars["JSON"];
11232
11816
  /** The time at which the entity was created. */
11233
11817
  createdAt: Scalars["DateTime"];
11818
+ /** Additional properties for the draft. */
11819
+ data?: Maybe<Scalars["JSONObject"]>;
11234
11820
  /** The unique identifier of the entity. */
11235
11821
  id: Scalars["ID"];
11236
11822
  /** Whether the draft was autogenerated for the user. */
@@ -11260,7 +11846,7 @@ export declare type TimeSchedule = Node & {
11260
11846
  /** The time at which the entity was created. */
11261
11847
  createdAt: Scalars["DateTime"];
11262
11848
  /** The schedule entries. */
11263
- entries: Array<TimeScheduleEntry>;
11849
+ entries?: Maybe<Array<TimeScheduleEntry>>;
11264
11850
  /** The identifier of the external schedule. */
11265
11851
  externalId?: Maybe<Scalars["String"]>;
11266
11852
  /** The URL to the external schedule. */
@@ -11516,6 +12102,8 @@ export declare type User = Node & {
11516
12102
  archivedAt?: Maybe<Scalars["DateTime"]>;
11517
12103
  /** Issues assigned to the user. */
11518
12104
  assignedIssues: IssueConnection;
12105
+ /** The background color of the avatar for users without set avatar. */
12106
+ avatarBackgroundColor: Scalars["String"];
11519
12107
  /** An URL to the user's avatar image. */
11520
12108
  avatarUrl?: Maybe<Scalars["String"]>;
11521
12109
  /** [DEPRECATED] Hash for the user to be used in calendar URLs. */
@@ -11538,6 +12126,8 @@ export declare type User = Node & {
11538
12126
  guest: Scalars["Boolean"];
11539
12127
  /** The unique identifier of the entity. */
11540
12128
  id: Scalars["ID"];
12129
+ /** The initials of the user. */
12130
+ initials: Scalars["String"];
11541
12131
  /** Unique hash for the user to be used in invite URLs. */
11542
12132
  inviteHash: Scalars["String"];
11543
12133
  /** Whether the user is the currently authenticated user. */
@@ -11780,6 +12370,7 @@ export declare enum UserFlagType {
11780
12370
  FigmaPromptDismissed = "figmaPromptDismissed",
11781
12371
  HelpIslandFeatureInsightsDismissed = "helpIslandFeatureInsightsDismissed",
11782
12372
  ImportBannerDismissed = "importBannerDismissed",
12373
+ InitiativesBannerDismissed = "initiativesBannerDismissed",
11783
12374
  InsightsHelpDismissed = "insightsHelpDismissed",
11784
12375
  InsightsWelcomeDismissed = "insightsWelcomeDismissed",
11785
12376
  IssueLabelSuggestionUsed = "issueLabelSuggestionUsed",
@@ -11908,13 +12499,13 @@ export declare type UserSettings = Node & {
11908
12499
  export declare type UserSettingsFlagPayload = {
11909
12500
  __typename?: "UserSettingsFlagPayload";
11910
12501
  /** The flag key which was updated. */
11911
- flag: Scalars["String"];
12502
+ flag?: Maybe<Scalars["String"]>;
11912
12503
  /** The identifier of the last sync operation. */
11913
12504
  lastSyncId: Scalars["Float"];
11914
12505
  /** Whether the operation was successful. */
11915
12506
  success: Scalars["Boolean"];
11916
12507
  /** The flag value after update. */
11917
- value: Scalars["Int"];
12508
+ value?: Maybe<Scalars["Int"]>;
11918
12509
  };
11919
12510
  export declare type UserSettingsFlagsResetPayload = {
11920
12511
  __typename?: "UserSettingsFlagsResetPayload";
@@ -12068,12 +12659,11 @@ export declare enum ViewType {
12068
12659
  CustomRoadmap = "customRoadmap",
12069
12660
  CustomView = "customView",
12070
12661
  CustomViews = "customViews",
12071
- CustomViewsPersonal = "customViewsPersonal",
12072
12662
  Cycle = "cycle",
12073
12663
  Inbox = "inbox",
12074
12664
  Initiative = "initiative",
12665
+ InitiativeOverview = "initiativeOverview",
12075
12666
  Initiatives = "initiatives",
12076
- InitiativesAll = "initiativesAll",
12077
12667
  InitiativesCompleted = "initiativesCompleted",
12078
12668
  InitiativesPlanned = "initiativesPlanned",
12079
12669
  IssueIdentifiers = "issueIdentifiers",
@@ -12240,7 +12830,7 @@ export declare type WorkflowDefinition = Node & {
12240
12830
  /** The time at which the entity was archived. Null if the entity has not been archived. */
12241
12831
  archivedAt?: Maybe<Scalars["DateTime"]>;
12242
12832
  /** The conditions that need to be match for the workflow to be triggered. */
12243
- conditions: Scalars["JSONObject"];
12833
+ conditions?: Maybe<Scalars["JSONObject"]>;
12244
12834
  /** The type of view to which this workflow's context is associated with. */
12245
12835
  contextViewType?: Maybe<ContextViewType>;
12246
12836
  /** The time at which the entity was created. */
@@ -12547,6 +13137,9 @@ export declare type ActorBotFragment = {
12547
13137
  export declare type CommentFragment = {
12548
13138
  __typename: "Comment";
12549
13139
  } & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "quotedText" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
13140
+ reactions: Array<{
13141
+ __typename?: "Reaction";
13142
+ } & ReactionFragment>;
12550
13143
  botActor?: Maybe<{
12551
13144
  __typename?: "ActorBot";
12552
13145
  } & ActorBotFragment>;
@@ -12575,6 +13168,9 @@ export declare type CommentFragment = {
12575
13168
  __typename?: "User";
12576
13169
  } & Pick<User, "id">>;
12577
13170
  };
13171
+ export declare type CommentNotificationFragment = {
13172
+ __typename: "CommentNotification";
13173
+ } & Pick<CommentNotification, "commentId" | "parentCommentId">;
12578
13174
  export declare type CompanyFragment = {
12579
13175
  __typename: "Company";
12580
13176
  } & Pick<Company, "externalId" | "logoUrl" | "name" | "websiteUrl" | "companyProperties" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -12677,6 +13273,9 @@ export declare type DocumentContentFragment = {
12677
13273
  document?: Maybe<{
12678
13274
  __typename?: "Document";
12679
13275
  } & Pick<Document, "id">>;
13276
+ initiative?: Maybe<{
13277
+ __typename?: "Initiative";
13278
+ } & Pick<Initiative, "id">>;
12680
13279
  issue?: Maybe<{
12681
13280
  __typename?: "Issue";
12682
13281
  } & Pick<Issue, "id">>;
@@ -12696,7 +13295,7 @@ export declare type DocumentContentHistoryFragment = {
12696
13295
  };
12697
13296
  export declare type DocumentNotificationFragment = {
12698
13297
  __typename: "DocumentNotification";
12699
- } & Pick<DocumentNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
13298
+ } & Pick<DocumentNotification, "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
12700
13299
  botActor?: Maybe<{
12701
13300
  __typename?: "ActorBot";
12702
13301
  } & ActorBotFragment>;
@@ -12712,7 +13311,7 @@ export declare type DocumentNotificationFragment = {
12712
13311
  };
12713
13312
  export declare type DocumentFragment = {
12714
13313
  __typename: "Document";
12715
- } & Pick<Document, "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13314
+ } & Pick<Document, "trashed" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
12716
13315
  lastAppliedTemplate?: Maybe<{
12717
13316
  __typename?: "Template";
12718
13317
  } & Pick<Template, "id">>;
@@ -12728,24 +13327,89 @@ export declare type DocumentFragment = {
12728
13327
  };
12729
13328
  export declare type FacetFragment = {
12730
13329
  __typename: "Facet";
12731
- } & Pick<Facet, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id">;
12732
- export declare type AttachmentArchivePayloadFragment = {
12733
- __typename: "AttachmentArchivePayload";
12734
- } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
12735
- entity?: Maybe<{
12736
- __typename?: "Attachment";
12737
- } & Pick<Attachment, "id">>;
12738
- };
12739
- export declare type CycleArchivePayloadFragment = {
12740
- __typename: "CycleArchivePayload";
12741
- } & Pick<CycleArchivePayload, "lastSyncId" | "success"> & {
12742
- entity?: Maybe<{
13330
+ } & Pick<Facet, "updatedAt" | "sourcePage" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
13331
+ sourceInitiative?: Maybe<{
13332
+ __typename?: "Initiative";
13333
+ } & Pick<Initiative, "id">>;
13334
+ sourceProject?: Maybe<{
13335
+ __typename?: "Project";
13336
+ } & Pick<Project, "id">>;
13337
+ sourceTeam?: Maybe<{
13338
+ __typename?: "Team";
13339
+ } & Pick<Team, "id">>;
13340
+ targetCustomView?: Maybe<{
13341
+ __typename?: "CustomView";
13342
+ } & Pick<CustomView, "id">>;
13343
+ };
13344
+ export declare type FeatureFlagFragment = {
13345
+ __typename: "FeatureFlag";
13346
+ } & Pick<FeatureFlag, "description" | "lastStageUpdatedAt" | "updatedAt" | "status" | "archivedAt" | "createdAt" | "id" | "key" | "externalUrl" | "isEnabled"> & {
13347
+ integration: {
13348
+ __typename?: "Integration";
13349
+ } & Pick<Integration, "id">;
13350
+ pendingRolloutStage?: Maybe<{
13351
+ __typename?: "FeatureFlagRolloutStage";
13352
+ } & FeatureFlagRolloutStageFragment>;
13353
+ project?: Maybe<{
13354
+ __typename?: "Project";
13355
+ } & Pick<Project, "id">>;
13356
+ rolloutStage: {
13357
+ __typename?: "FeatureFlagRolloutStage";
13358
+ } & FeatureFlagRolloutStageFragment;
13359
+ creator?: Maybe<{
13360
+ __typename?: "User";
13361
+ } & Pick<User, "id">>;
13362
+ lastStageUpdatedBy?: Maybe<{
13363
+ __typename?: "User";
13364
+ } & Pick<User, "id">>;
13365
+ };
13366
+ export declare type DraftFragment = {
13367
+ __typename: "Draft";
13368
+ } & Pick<Draft, "data" | "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
13369
+ parentComment?: Maybe<{
13370
+ __typename?: "Comment";
13371
+ } & Pick<Comment, "id">>;
13372
+ issue?: Maybe<{
13373
+ __typename?: "Issue";
13374
+ } & Pick<Issue, "id">>;
13375
+ project?: Maybe<{
13376
+ __typename?: "Project";
13377
+ } & Pick<Project, "id">>;
13378
+ projectUpdate?: Maybe<{
13379
+ __typename?: "ProjectUpdate";
13380
+ } & Pick<ProjectUpdate, "id">>;
13381
+ user: {
13382
+ __typename?: "User";
13383
+ } & Pick<User, "id">;
13384
+ };
13385
+ export declare type AttachmentArchivePayloadFragment = {
13386
+ __typename: "AttachmentArchivePayload";
13387
+ } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
13388
+ entity?: Maybe<{
13389
+ __typename?: "Attachment";
13390
+ } & Pick<Attachment, "id">>;
13391
+ };
13392
+ export declare type CycleArchivePayloadFragment = {
13393
+ __typename: "CycleArchivePayload";
13394
+ } & Pick<CycleArchivePayload, "lastSyncId" | "success"> & {
13395
+ entity?: Maybe<{
12743
13396
  __typename?: "Cycle";
12744
13397
  } & Pick<Cycle, "id">>;
12745
13398
  };
13399
+ export declare type DocumentArchivePayloadFragment = {
13400
+ __typename: "DocumentArchivePayload";
13401
+ } & Pick<DocumentArchivePayload, "lastSyncId" | "success"> & {
13402
+ entity?: Maybe<{
13403
+ __typename?: "Document";
13404
+ } & Pick<Document, "id">>;
13405
+ };
12746
13406
  export declare type InitiativeArchivePayloadFragment = {
12747
13407
  __typename: "InitiativeArchivePayload";
12748
- } & Pick<InitiativeArchivePayload, "lastSyncId" | "success">;
13408
+ } & Pick<InitiativeArchivePayload, "lastSyncId" | "success"> & {
13409
+ entity?: Maybe<{
13410
+ __typename?: "Initiative";
13411
+ } & Pick<Initiative, "id">>;
13412
+ };
12749
13413
  export declare type IssueArchivePayloadFragment = {
12750
13414
  __typename: "IssueArchivePayload";
12751
13415
  } & Pick<IssueArchivePayload, "lastSyncId" | "success"> & {
@@ -12805,6 +13469,9 @@ declare type ArchivePayload_CycleArchivePayload_Fragment = {
12805
13469
  declare type ArchivePayload_DeletePayload_Fragment = {
12806
13470
  __typename: "DeletePayload";
12807
13471
  } & Pick<DeletePayload, "lastSyncId" | "success"> & DeletePayloadFragment;
13472
+ declare type ArchivePayload_DocumentArchivePayload_Fragment = {
13473
+ __typename: "DocumentArchivePayload";
13474
+ } & Pick<DocumentArchivePayload, "lastSyncId" | "success"> & DocumentArchivePayloadFragment;
12808
13475
  declare type ArchivePayload_InitiativeArchivePayload_Fragment = {
12809
13476
  __typename: "InitiativeArchivePayload";
12810
13477
  } & Pick<InitiativeArchivePayload, "lastSyncId" | "success"> & InitiativeArchivePayloadFragment;
@@ -12826,7 +13493,7 @@ declare type ArchivePayload_TeamArchivePayload_Fragment = {
12826
13493
  declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
12827
13494
  __typename: "WorkflowStateArchivePayload";
12828
13495
  } & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & WorkflowStateArchivePayloadFragment;
12829
- export declare type ArchivePayloadFragment = ArchivePayload_AttachmentArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_InitiativeArchivePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_TeamArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
13496
+ export declare type ArchivePayloadFragment = ArchivePayload_AttachmentArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_DocumentArchivePayload_Fragment | ArchivePayload_InitiativeArchivePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_TeamArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
12830
13497
  export declare type DeletePayloadFragment = {
12831
13498
  __typename: "DeletePayload";
12832
13499
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
@@ -12970,13 +13637,19 @@ export declare type ProjectNotificationSubscriptionFragment = {
12970
13637
  };
12971
13638
  export declare type ProjectNotificationFragment = {
12972
13639
  __typename: "ProjectNotification";
12973
- } & Pick<ProjectNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
13640
+ } & Pick<ProjectNotification, "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
12974
13641
  botActor?: Maybe<{
12975
13642
  __typename?: "ActorBot";
12976
13643
  } & ActorBotFragment>;
13644
+ comment?: Maybe<{
13645
+ __typename?: "Comment";
13646
+ } & Pick<Comment, "id">>;
12977
13647
  externalUserActor?: Maybe<{
12978
13648
  __typename?: "ExternalUser";
12979
13649
  } & Pick<ExternalUser, "id">>;
13650
+ parentComment?: Maybe<{
13651
+ __typename?: "Comment";
13652
+ } & Pick<Comment, "id">>;
12980
13653
  project: {
12981
13654
  __typename?: "Project";
12982
13655
  } & Pick<Project, "id">;
@@ -13040,12 +13713,21 @@ export declare type IssueHistoryFragment = {
13040
13713
  relationChanges?: Maybe<Array<{
13041
13714
  __typename?: "IssueRelationHistoryPayload";
13042
13715
  } & IssueRelationHistoryPayloadFragment>>;
13716
+ actor?: Maybe<{
13717
+ __typename?: "User";
13718
+ } & Pick<User, "id">>;
13043
13719
  actors: Array<{
13044
13720
  __typename?: "User";
13045
13721
  } & UserFragment>;
13046
13722
  botActor?: Maybe<{
13047
13723
  __typename?: "ActorBot";
13048
13724
  } & ActorBotFragment>;
13725
+ fromCycle?: Maybe<{
13726
+ __typename?: "Cycle";
13727
+ } & Pick<Cycle, "id">>;
13728
+ toCycle?: Maybe<{
13729
+ __typename?: "Cycle";
13730
+ } & Pick<Cycle, "id">>;
13049
13731
  issueImport?: Maybe<{
13050
13732
  __typename?: "IssueImport";
13051
13733
  } & IssueImportFragment>;
@@ -13061,46 +13743,37 @@ export declare type IssueHistoryFragment = {
13061
13743
  attachment?: Maybe<{
13062
13744
  __typename?: "Attachment";
13063
13745
  } & Pick<Attachment, "id">>;
13064
- toCycle?: Maybe<{
13065
- __typename?: "Cycle";
13066
- } & Pick<Cycle, "id">>;
13067
- toParent?: Maybe<{
13068
- __typename?: "Issue";
13069
- } & Pick<Issue, "id">>;
13070
13746
  toConvertedProject?: Maybe<{
13071
13747
  __typename?: "Project";
13072
13748
  } & Pick<Project, "id">>;
13073
- toProject?: Maybe<{
13074
- __typename?: "Project";
13075
- } & Pick<Project, "id">>;
13076
- toState?: Maybe<{
13077
- __typename?: "WorkflowState";
13078
- } & Pick<WorkflowState, "id">>;
13079
- fromCycle?: Maybe<{
13080
- __typename?: "Cycle";
13081
- } & Pick<Cycle, "id">>;
13082
13749
  fromParent?: Maybe<{
13083
13750
  __typename?: "Issue";
13084
13751
  } & Pick<Issue, "id">>;
13752
+ toParent?: Maybe<{
13753
+ __typename?: "Issue";
13754
+ } & Pick<Issue, "id">>;
13085
13755
  fromProject?: Maybe<{
13086
13756
  __typename?: "Project";
13087
13757
  } & Pick<Project, "id">>;
13758
+ toProject?: Maybe<{
13759
+ __typename?: "Project";
13760
+ } & Pick<Project, "id">>;
13088
13761
  fromState?: Maybe<{
13089
13762
  __typename?: "WorkflowState";
13090
13763
  } & Pick<WorkflowState, "id">>;
13764
+ toState?: Maybe<{
13765
+ __typename?: "WorkflowState";
13766
+ } & Pick<WorkflowState, "id">>;
13091
13767
  fromTeam?: Maybe<{
13092
13768
  __typename?: "Team";
13093
13769
  } & Pick<Team, "id">>;
13094
13770
  toTeam?: Maybe<{
13095
13771
  __typename?: "Team";
13096
13772
  } & Pick<Team, "id">>;
13097
- fromAssignee?: Maybe<{
13098
- __typename?: "User";
13099
- } & Pick<User, "id">>;
13100
13773
  toAssignee?: Maybe<{
13101
13774
  __typename?: "User";
13102
13775
  } & Pick<User, "id">>;
13103
- actor?: Maybe<{
13776
+ fromAssignee?: Maybe<{
13104
13777
  __typename?: "User";
13105
13778
  } & Pick<User, "id">>;
13106
13779
  triageResponsibilityNotifiedUsers?: Maybe<Array<{
@@ -13159,6 +13832,13 @@ export declare type RoadmapFragment = {
13159
13832
  __typename?: "User";
13160
13833
  } & Pick<User, "id">;
13161
13834
  };
13835
+ export declare type FeatureFlagRolloutStageFragment = {
13836
+ __typename: "FeatureFlagRolloutStage";
13837
+ } & Pick<FeatureFlagRolloutStage, "description" | "updatedAt" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "type" | "id" | "segmentKeys"> & {
13838
+ integration: {
13839
+ __typename?: "Integration";
13840
+ } & Pick<Integration, "id">;
13841
+ };
13162
13842
  export declare type CycleFragment = {
13163
13843
  __typename: "Cycle";
13164
13844
  } & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
@@ -13227,34 +13907,15 @@ export declare type TemplateFragment = {
13227
13907
  __typename?: "User";
13228
13908
  } & Pick<User, "id">>;
13229
13909
  };
13230
- export declare type TextDraftFragment = {
13231
- __typename: "TextDraft";
13232
- } & Pick<TextDraft, "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
13233
- parentComment?: Maybe<{
13234
- __typename?: "Comment";
13235
- } & Pick<Comment, "id">>;
13236
- issue?: Maybe<{
13237
- __typename?: "Issue";
13238
- } & Pick<Issue, "id">>;
13239
- project?: Maybe<{
13240
- __typename?: "Project";
13241
- } & Pick<Project, "id">>;
13242
- projectUpdate?: Maybe<{
13243
- __typename?: "ProjectUpdate";
13244
- } & Pick<ProjectUpdate, "id">>;
13245
- user: {
13246
- __typename?: "User";
13247
- } & Pick<User, "id">;
13248
- };
13249
13910
  export declare type TimeScheduleFragment = {
13250
13911
  __typename: "TimeSchedule";
13251
13912
  } & Pick<TimeSchedule, "externalUrl" | "externalId" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
13252
13913
  integration?: Maybe<{
13253
13914
  __typename?: "Integration";
13254
13915
  } & Pick<Integration, "id">>;
13255
- entries: Array<{
13916
+ entries?: Maybe<Array<{
13256
13917
  __typename?: "TimeScheduleEntry";
13257
- } & TimeScheduleEntryFragment>;
13918
+ } & TimeScheduleEntryFragment>>;
13258
13919
  };
13259
13920
  export declare type GitAutomationStateFragment = {
13260
13921
  __typename: "GitAutomationState";
@@ -13272,6 +13933,9 @@ export declare type GitAutomationStateFragment = {
13272
13933
  export declare type ProjectUpdateFragment = {
13273
13934
  __typename: "ProjectUpdate";
13274
13935
  } & Pick<ProjectUpdate, "reactionData" | "url" | "diffMarkdown" | "diff" | "health" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
13936
+ reactions: Array<{
13937
+ __typename?: "Reaction";
13938
+ } & ReactionFragment>;
13275
13939
  project: {
13276
13940
  __typename?: "Project";
13277
13941
  } & Pick<Project, "id">;
@@ -13316,7 +13980,7 @@ export declare type AuthUserFragment = {
13316
13980
  };
13317
13981
  export declare type UserFragment = {
13318
13982
  __typename: "User";
13319
- } & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "statusEmoji" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe" | "calendarHash">;
13983
+ } & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "avatarBackgroundColor" | "statusEmoji" | "initials" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe" | "calendarHash">;
13320
13984
  export declare type NotificationDeliveryPreferencesFragment = {
13321
13985
  __typename: "NotificationDeliveryPreferences";
13322
13986
  } & {
@@ -13327,9 +13991,9 @@ export declare type NotificationDeliveryPreferencesFragment = {
13327
13991
  export declare type NotificationDeliveryPreferencesChannelFragment = {
13328
13992
  __typename: "NotificationDeliveryPreferencesChannel";
13329
13993
  } & Pick<NotificationDeliveryPreferencesChannel, "notificationsDisabled"> & {
13330
- schedule: {
13994
+ schedule?: Maybe<{
13331
13995
  __typename?: "NotificationDeliveryPreferencesSchedule";
13332
- } & NotificationDeliveryPreferencesScheduleFragment;
13996
+ } & NotificationDeliveryPreferencesScheduleFragment>;
13333
13997
  };
13334
13998
  export declare type NotificationDeliveryPreferencesDayFragment = {
13335
13999
  __typename: "NotificationDeliveryPreferencesDay";
@@ -13414,16 +14078,19 @@ export declare type ProjectLinkFragment = {
13414
14078
  export declare type EntityExternalLinkFragment = {
13415
14079
  __typename: "EntityExternalLink";
13416
14080
  } & Pick<EntityExternalLink, "updatedAt" | "url" | "label" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
14081
+ initiative: {
14082
+ __typename?: "Initiative";
14083
+ } & Pick<Initiative, "id">;
13417
14084
  creator: {
13418
14085
  __typename?: "User";
13419
14086
  } & Pick<User, "id">;
13420
14087
  };
13421
14088
  export declare type IssueImportFragment = {
13422
14089
  __typename: "IssueImport";
13423
- } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "serviceMetadata" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
14090
+ } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "serviceMetadata" | "teamName" | "mapping" | "displayName" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
13424
14091
  export declare type InitiativeNotificationFragment = {
13425
14092
  __typename: "InitiativeNotification";
13426
- } & Pick<InitiativeNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
14093
+ } & Pick<InitiativeNotification, "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
13427
14094
  botActor?: Maybe<{
13428
14095
  __typename?: "ActorBot";
13429
14096
  } & ActorBotFragment>;
@@ -13437,6 +14104,16 @@ export declare type InitiativeNotificationFragment = {
13437
14104
  __typename?: "User";
13438
14105
  } & Pick<User, "id">;
13439
14106
  };
14107
+ export declare type InitiativeFragment = {
14108
+ __typename: "Initiative";
14109
+ } & Pick<Initiative, "trashed" | "description" | "targetDate" | "icon" | "color" | "slugId" | "updatedAt" | "name" | "targetDateResolution" | "sortOrder" | "status" | "archivedAt" | "createdAt" | "id"> & {
14110
+ creator: {
14111
+ __typename?: "User";
14112
+ } & Pick<User, "id">;
14113
+ owner: {
14114
+ __typename?: "User";
14115
+ } & Pick<User, "id">;
14116
+ };
13440
14117
  export declare type IntegrationFragment = {
13441
14118
  __typename: "Integration";
13442
14119
  } & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -13462,7 +14139,7 @@ export declare type OrganizationInviteFragment = {
13462
14139
  };
13463
14140
  export declare type IssueNotificationFragment = {
13464
14141
  __typename: "IssueNotification";
13465
- } & Pick<IssueNotification, "reactionEmoji" | "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
14142
+ } & Pick<IssueNotification, "reactionEmoji" | "type" | "commentId" | "parentCommentId" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
13466
14143
  botActor?: Maybe<{
13467
14144
  __typename?: "ActorBot";
13468
14145
  } & ActorBotFragment>;
@@ -13475,6 +14152,9 @@ export declare type IssueNotificationFragment = {
13475
14152
  issue: {
13476
14153
  __typename?: "Issue";
13477
14154
  } & Pick<Issue, "id">;
14155
+ parentComment?: Maybe<{
14156
+ __typename?: "Comment";
14157
+ } & Pick<Comment, "id">>;
13478
14158
  subscriptions?: Maybe<Array<({
13479
14159
  __typename?: "CustomViewNotificationSubscription";
13480
14160
  } & NotificationSubscription_CustomViewNotificationSubscription_Fragment) | ({
@@ -13500,7 +14180,10 @@ export declare type IssueNotificationFragment = {
13500
14180
  };
13501
14181
  export declare type IssueFragment = {
13502
14182
  __typename: "Issue";
13503
- } & Pick<Issue, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
14183
+ } & Pick<Issue, "trashed" | "reactionData" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
14184
+ reactions: Array<{
14185
+ __typename?: "Reaction";
14186
+ } & ReactionFragment>;
13504
14187
  botActor?: Maybe<{
13505
14188
  __typename?: "ActorBot";
13506
14189
  } & ActorBotFragment>;
@@ -13566,6 +14249,9 @@ export declare type OauthClientApprovalNotificationFragment = {
13566
14249
  export declare type OrganizationFragment = {
13567
14250
  __typename: "Organization";
13568
14251
  } & Pick<Organization, "allowedAuthServices" | "gitBranchFormat" | "userCount" | "createdIssueCount" | "previousUrlKeys" | "periodUploadVolume" | "projectUpdateRemindersDay" | "releaseChannel" | "projectUpdatesReminderFrequency" | "projectUpdateRemindersHour" | "updatedAt" | "fiscalYearStartMonth" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "archivedAt" | "createdAt" | "trialEndsAt" | "id" | "samlEnabled" | "scimEnabled" | "allowMembersToInvite" | "gitLinkbackMessagesEnabled" | "gitPublicLinkbackMessagesEnabled" | "roadmapEnabled" | "slaDayCount"> & {
14252
+ ipRestrictions?: Maybe<Array<{
14253
+ __typename?: "OrganizationIpRestriction";
14254
+ } & OrganizationIpRestrictionFragment>>;
13569
14255
  projectStatuses: Array<{
13570
14256
  __typename?: "ProjectStatus";
13571
14257
  } & ProjectStatusFragment>;
@@ -13702,6 +14388,16 @@ export declare type JiraSettingsFragment = {
13702
14388
  __typename?: "JiraLinearMapping";
13703
14389
  } & JiraLinearMappingFragment>>;
13704
14390
  };
14391
+ export declare type InitiativeToProjectFragment = {
14392
+ __typename: "InitiativeToProject";
14393
+ } & Pick<InitiativeToProject, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
14394
+ initiative: {
14395
+ __typename?: "Initiative";
14396
+ } & Pick<Initiative, "id">;
14397
+ project: {
14398
+ __typename?: "Project";
14399
+ } & Pick<Project, "id">;
14400
+ };
13705
14401
  export declare type RoadmapToProjectFragment = {
13706
14402
  __typename: "RoadmapToProject";
13707
14403
  } & Pick<RoadmapToProject, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
@@ -13735,6 +14431,9 @@ export declare type IssueLabelFragment = {
13735
14431
  __typename?: "User";
13736
14432
  } & Pick<User, "id">>;
13737
14433
  };
14434
+ export declare type LaunchDarklySettingsFragment = {
14435
+ __typename: "LaunchDarklySettings";
14436
+ } & Pick<LaunchDarklySettings, "environment" | "projectKey">;
13738
14437
  export declare type TeamRepoMappingFragment = {
13739
14438
  __typename: "TeamRepoMapping";
13740
14439
  } & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId" | "bidirectional" | "default">;
@@ -13978,7 +14677,7 @@ export declare type SlackPostSettingsFragment = {
13978
14677
  } & Pick<SlackPostSettings, "channel" | "channelId" | "channelType" | "configurationUrl">;
13979
14678
  export declare type IntegrationsSettingsFragment = {
13980
14679
  __typename: "IntegrationsSettings";
13981
- } & Pick<IntegrationsSettings, "updatedAt" | "archivedAt" | "createdAt" | "id" | "slackIssueNewComment" | "slackIssueAddedToTriage" | "slackIssueCreated" | "slackProjectUpdateCreated" | "slackIssueSlaHighRisk" | "slackIssueSlaBreached" | "slackIssueStatusChangedDone" | "slackIssueStatusChangedAll" | "slackProjectUpdateCreatedToTeam" | "slackProjectUpdateCreatedToWorkspace"> & {
14680
+ } & Pick<IntegrationsSettings, "updatedAt" | "archivedAt" | "createdAt" | "id" | "slackIssueNewComment" | "slackIssueAddedToTriage" | "slackIssueCreated" | "slackProjectUpdateCreated" | "slackIssueSlaHighRisk" | "slackIssueSlaBreached" | "slackIssueAddedToView" | "slackIssueStatusChangedDone" | "slackIssueStatusChangedAll" | "slackProjectUpdateCreatedToTeam" | "slackProjectUpdateCreatedToWorkspace"> & {
13982
14681
  project?: Maybe<{
13983
14682
  __typename?: "Project";
13984
14683
  } & Pick<Project, "id">>;
@@ -14016,6 +14715,9 @@ export declare type IntegrationSettingsFragment = {
14016
14715
  jiraPersonal?: Maybe<{
14017
14716
  __typename?: "JiraPersonalSettings";
14018
14717
  } & JiraPersonalSettingsFragment>;
14718
+ launchDarkly?: Maybe<{
14719
+ __typename?: "LaunchDarklySettings";
14720
+ } & LaunchDarklySettingsFragment>;
14019
14721
  notion?: Maybe<{
14020
14722
  __typename?: "NotionSettings";
14021
14723
  } & NotionSettingsFragment>;
@@ -14057,6 +14759,20 @@ export declare type PaidSubscriptionFragment = {
14057
14759
  __typename?: "User";
14058
14760
  } & Pick<User, "id">>;
14059
14761
  };
14762
+ export declare type InitiativePayloadFragment = {
14763
+ __typename: "InitiativePayload";
14764
+ } & Pick<InitiativePayload, "lastSyncId" | "success"> & {
14765
+ initiative: {
14766
+ __typename?: "Initiative";
14767
+ } & Pick<Initiative, "id">;
14768
+ };
14769
+ export declare type InitiativeToProjectPayloadFragment = {
14770
+ __typename: "InitiativeToProjectPayload";
14771
+ } & Pick<InitiativeToProjectPayload, "lastSyncId" | "success"> & {
14772
+ initiativeToProject: {
14773
+ __typename?: "InitiativeToProject";
14774
+ } & Pick<InitiativeToProject, "id">;
14775
+ };
14060
14776
  export declare type UserSettingsFragment = {
14061
14777
  __typename: "UserSettings";
14062
14778
  } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "subscribedToDPA" | "subscribedToChangelog" | "subscribedToInviteAccepted" | "subscribedToPrivacyLegalUpdates" | "subscribedToUnreadNotificationsReminder" | "showFullUserNames"> & {
@@ -14078,7 +14794,7 @@ export declare type AuthenticationSessionFragment = {
14078
14794
  } & Pick<AuthenticationSession, "client" | "countryCodes" | "createdAt" | "updatedAt" | "location" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "name" | "operatingSystem" | "userAgent" | "type" | "browserType" | "lastActiveAt" | "id">;
14079
14795
  export declare type FavoriteFragment = {
14080
14796
  __typename: "Favorite";
14081
- } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "projectTab" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id"> & {
14797
+ } & Pick<Favorite, "updatedAt" | "folderName" | "sortOrder" | "initiativeTab" | "projectTab" | "archivedAt" | "createdAt" | "predefinedViewType" | "type" | "id" | "url"> & {
14082
14798
  customView?: Maybe<{
14083
14799
  __typename?: "CustomView";
14084
14800
  } & Pick<CustomView, "id">>;
@@ -14100,9 +14816,6 @@ export declare type FavoriteFragment = {
14100
14816
  roadmap?: Maybe<{
14101
14817
  __typename?: "Roadmap";
14102
14818
  } & Pick<Roadmap, "id">>;
14103
- projectTeam?: Maybe<{
14104
- __typename?: "Team";
14105
- } & Pick<Team, "id">>;
14106
14819
  user?: Maybe<{
14107
14820
  __typename?: "User";
14108
14821
  } & Pick<User, "id">>;
@@ -14115,6 +14828,9 @@ export declare type FavoriteFragment = {
14115
14828
  predefinedViewTeam?: Maybe<{
14116
14829
  __typename?: "Team";
14117
14830
  } & Pick<Team, "id">>;
14831
+ projectTeam?: Maybe<{
14832
+ __typename?: "Team";
14833
+ } & Pick<Team, "id">>;
14118
14834
  };
14119
14835
  export declare type ViewPreferencesFragment = {
14120
14836
  __typename: "ViewPreferences";
@@ -14136,6 +14852,25 @@ export declare type AuditEntryFragment = {
14136
14852
  export declare type ZendeskSettingsFragment = {
14137
14853
  __typename: "ZendeskSettings";
14138
14854
  } & Pick<ZendeskSettings, "botUserId" | "url" | "subdomain" | "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
14855
+ export declare type TextDraftFragment = {
14856
+ __typename: "TextDraft";
14857
+ } & Pick<TextDraft, "data" | "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
14858
+ parentComment?: Maybe<{
14859
+ __typename?: "Comment";
14860
+ } & Pick<Comment, "id">>;
14861
+ issue?: Maybe<{
14862
+ __typename?: "Issue";
14863
+ } & Pick<Issue, "id">>;
14864
+ project?: Maybe<{
14865
+ __typename?: "Project";
14866
+ } & Pick<Project, "id">>;
14867
+ projectUpdate?: Maybe<{
14868
+ __typename?: "ProjectUpdate";
14869
+ } & Pick<ProjectUpdate, "id">>;
14870
+ user: {
14871
+ __typename?: "User";
14872
+ } & Pick<User, "id">;
14873
+ };
14139
14874
  export declare type ApiKeyConnectionFragment = {
14140
14875
  __typename: "ApiKeyConnection";
14141
14876
  } & {
@@ -14222,6 +14957,9 @@ export declare type AuthOauthClientWithTokensFragment = {
14222
14957
  __typename?: "OauthToken";
14223
14958
  } & OauthTokenFragment>;
14224
14959
  };
14960
+ export declare type AuthOrganizationBucketNamePayloadFragment = {
14961
+ __typename: "AuthOrganizationBucketNamePayload";
14962
+ } & Pick<AuthOrganizationBucketNamePayload, "importsBucketName" | "region" | "uploadsBucketName">;
14225
14963
  export declare type AuthOrganizationDomainFragment = {
14226
14964
  __typename: "AuthOrganizationDomain";
14227
14965
  } & Pick<AuthOrganizationDomain, "disableOrganizationCreation" | "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
@@ -14370,9 +15108,9 @@ export declare type DocumentConnectionFragment = {
14370
15108
  export declare type DocumentContentHistoryPayloadFragment = {
14371
15109
  __typename: "DocumentContentHistoryPayload";
14372
15110
  } & Pick<DocumentContentHistoryPayload, "success"> & {
14373
- history?: Maybe<Array<{
15111
+ history: Array<{
14374
15112
  __typename?: "DocumentContentHistoryType";
14375
- } & DocumentContentHistoryTypeFragment>>;
15113
+ } & DocumentContentHistoryTypeFragment>;
14376
15114
  };
14377
15115
  export declare type DocumentContentHistoryTypeFragment = {
14378
15116
  __typename: "DocumentContentHistoryType";
@@ -14399,7 +15137,7 @@ export declare type DocumentSearchPayloadFragment = {
14399
15137
  };
14400
15138
  export declare type DocumentSearchResultFragment = {
14401
15139
  __typename: "DocumentSearchResult";
14402
- } & Pick<DocumentSearchResult, "metadata" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
15140
+ } & Pick<DocumentSearchResult, "trashed" | "metadata" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
14403
15141
  lastAppliedTemplate?: Maybe<{
14404
15142
  __typename?: "Template";
14405
15143
  } & Pick<Template, "id">>;
@@ -14507,6 +15245,26 @@ export declare type FavoritePayloadFragment = {
14507
15245
  __typename?: "Favorite";
14508
15246
  } & Pick<Favorite, "id">;
14509
15247
  };
15248
+ export declare type FeatureFlagConnectionFragment = {
15249
+ __typename: "FeatureFlagConnection";
15250
+ } & {
15251
+ nodes: Array<{
15252
+ __typename?: "FeatureFlag";
15253
+ } & FeatureFlagFragment>;
15254
+ pageInfo: {
15255
+ __typename?: "PageInfo";
15256
+ } & PageInfoFragment;
15257
+ };
15258
+ export declare type FeatureFlagRolloutStageConnectionFragment = {
15259
+ __typename: "FeatureFlagRolloutStageConnection";
15260
+ } & {
15261
+ nodes: Array<{
15262
+ __typename?: "FeatureFlagRolloutStage";
15263
+ } & FeatureFlagRolloutStageFragment>;
15264
+ pageInfo: {
15265
+ __typename?: "PageInfo";
15266
+ } & PageInfoFragment;
15267
+ };
14510
15268
  export declare type FrontAttachmentPayloadFragment = {
14511
15269
  __typename: "FrontAttachmentPayload";
14512
15270
  } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
@@ -14541,9 +15299,36 @@ export declare type GitHubCommitIntegrationPayloadFragment = {
14541
15299
  __typename?: "Integration";
14542
15300
  } & Pick<Integration, "id">>;
14543
15301
  };
15302
+ export declare type GitHubEnterpriseServerPayloadFragment = {
15303
+ __typename: "GitHubEnterpriseServerPayload";
15304
+ } & Pick<GitHubEnterpriseServerPayload, "lastSyncId" | "setupUrl" | "webhookSecret" | "success"> & {
15305
+ integration?: Maybe<{
15306
+ __typename?: "Integration";
15307
+ } & Pick<Integration, "id">>;
15308
+ };
14544
15309
  export declare type ImageUploadFromUrlPayloadFragment = {
14545
15310
  __typename: "ImageUploadFromUrlPayload";
14546
15311
  } & Pick<ImageUploadFromUrlPayload, "url" | "lastSyncId" | "success">;
15312
+ export declare type InitiativeConnectionFragment = {
15313
+ __typename: "InitiativeConnection";
15314
+ } & {
15315
+ nodes: Array<{
15316
+ __typename?: "Initiative";
15317
+ } & InitiativeFragment>;
15318
+ pageInfo: {
15319
+ __typename?: "PageInfo";
15320
+ } & PageInfoFragment;
15321
+ };
15322
+ export declare type InitiativeToProjectConnectionFragment = {
15323
+ __typename: "InitiativeToProjectConnection";
15324
+ } & {
15325
+ nodes: Array<{
15326
+ __typename?: "InitiativeToProject";
15327
+ } & InitiativeToProjectFragment>;
15328
+ pageInfo: {
15329
+ __typename?: "PageInfo";
15330
+ } & PageInfoFragment;
15331
+ };
14547
15332
  export declare type IntegrationConnectionFragment = {
14548
15333
  __typename: "IntegrationConnection";
14549
15334
  } & {
@@ -14707,7 +15492,10 @@ export declare type IssueSearchPayloadFragment = {
14707
15492
  };
14708
15493
  export declare type IssueSearchResultFragment = {
14709
15494
  __typename: "IssueSearchResult";
14710
- } & Pick<IssueSearchResult, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "metadata" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
15495
+ } & Pick<IssueSearchResult, "trashed" | "reactionData" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "metadata" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
15496
+ reactions: Array<{
15497
+ __typename?: "Reaction";
15498
+ } & ReactionFragment>;
14711
15499
  botActor?: Maybe<{
14712
15500
  __typename?: "ActorBot";
14713
15501
  } & ActorBotFragment>;
@@ -14809,6 +15597,9 @@ declare type Node_DocumentNotification_Fragment = {
14809
15597
  declare type Node_DocumentSearchResult_Fragment = {
14810
15598
  __typename: "DocumentSearchResult";
14811
15599
  } & Pick<DocumentSearchResult, "id">;
15600
+ declare type Node_Draft_Fragment = {
15601
+ __typename: "Draft";
15602
+ } & Pick<Draft, "id">;
14812
15603
  declare type Node_EmailIntakeAddress_Fragment = {
14813
15604
  __typename: "EmailIntakeAddress";
14814
15605
  } & Pick<EmailIntakeAddress, "id">;
@@ -14827,6 +15618,12 @@ declare type Node_Facet_Fragment = {
14827
15618
  declare type Node_Favorite_Fragment = {
14828
15619
  __typename: "Favorite";
14829
15620
  } & Pick<Favorite, "id">;
15621
+ declare type Node_FeatureFlag_Fragment = {
15622
+ __typename: "FeatureFlag";
15623
+ } & Pick<FeatureFlag, "id">;
15624
+ declare type Node_FeatureFlagRolloutStage_Fragment = {
15625
+ __typename: "FeatureFlagRolloutStage";
15626
+ } & Pick<FeatureFlagRolloutStage, "id">;
14830
15627
  declare type Node_GitAutomationState_Fragment = {
14831
15628
  __typename: "GitAutomationState";
14832
15629
  } & Pick<GitAutomationState, "id">;
@@ -14989,7 +15786,7 @@ declare type Node_WorkflowDefinition_Fragment = {
14989
15786
  declare type Node_WorkflowState_Fragment = {
14990
15787
  __typename: "WorkflowState";
14991
15788
  } & Pick<WorkflowState, "id">;
14992
- export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeNotification_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TextDraft_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
15789
+ export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_Draft_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_FeatureFlag_Fragment | Node_FeatureFlagRolloutStage_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeNotification_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TextDraft_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
14993
15790
  export declare type NotificationBatchActionPayloadFragment = {
14994
15791
  __typename: "NotificationBatchActionPayload";
14995
15792
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
@@ -15130,6 +15927,9 @@ export declare type OrganizationInvitePayloadFragment = {
15130
15927
  __typename?: "OrganizationInvite";
15131
15928
  } & Pick<OrganizationInvite, "id">;
15132
15929
  };
15930
+ export declare type OrganizationIpRestrictionFragment = {
15931
+ __typename: "OrganizationIpRestriction";
15932
+ } & Pick<OrganizationIpRestriction, "range" | "description" | "type" | "enabled">;
15133
15933
  export declare type OrganizationMetaFragment = {
15134
15934
  __typename: "OrganizationMeta";
15135
15935
  } & Pick<OrganizationMeta, "allowedAuthServices" | "region">;
@@ -15158,9 +15958,6 @@ export declare type ProjectConnectionFragment = {
15158
15958
  __typename?: "PageInfo";
15159
15959
  } & PageInfoFragment;
15160
15960
  };
15161
- export declare type ProjectDetailSuggestionPayloadFragment = {
15162
- __typename: "ProjectDetailSuggestionPayload";
15163
- } & Pick<ProjectDetailSuggestionPayload, "color" | "icon">;
15164
15961
  export declare type ProjectFilterSuggestionPayloadFragment = {
15165
15962
  __typename: "ProjectFilterSuggestionPayload";
15166
15963
  } & Pick<ProjectFilterSuggestionPayload, "filter">;
@@ -16446,6 +17243,97 @@ export declare type FavoritesQuery = {
16446
17243
  __typename?: "FavoriteConnection";
16447
17244
  } & FavoriteConnectionFragment;
16448
17245
  };
17246
+ export declare type InitiativeQueryVariables = Exact<{
17247
+ id: Scalars["String"];
17248
+ }>;
17249
+ export declare type InitiativeQuery = {
17250
+ __typename?: "Query";
17251
+ } & {
17252
+ initiative: {
17253
+ __typename?: "Initiative";
17254
+ } & InitiativeFragment;
17255
+ };
17256
+ export declare type Initiative_LinksQueryVariables = Exact<{
17257
+ id: Scalars["String"];
17258
+ after?: Maybe<Scalars["String"]>;
17259
+ before?: Maybe<Scalars["String"]>;
17260
+ first?: Maybe<Scalars["Int"]>;
17261
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17262
+ last?: Maybe<Scalars["Int"]>;
17263
+ orderBy?: Maybe<PaginationOrderBy>;
17264
+ }>;
17265
+ export declare type Initiative_LinksQuery = {
17266
+ __typename?: "Query";
17267
+ } & {
17268
+ initiative: {
17269
+ __typename?: "Initiative";
17270
+ } & {
17271
+ links: {
17272
+ __typename?: "EntityExternalLinkConnection";
17273
+ } & EntityExternalLinkConnectionFragment;
17274
+ };
17275
+ };
17276
+ export declare type Initiative_ProjectsQueryVariables = Exact<{
17277
+ id: Scalars["String"];
17278
+ after?: Maybe<Scalars["String"]>;
17279
+ before?: Maybe<Scalars["String"]>;
17280
+ filter?: Maybe<ProjectFilter>;
17281
+ first?: Maybe<Scalars["Int"]>;
17282
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17283
+ last?: Maybe<Scalars["Int"]>;
17284
+ orderBy?: Maybe<PaginationOrderBy>;
17285
+ }>;
17286
+ export declare type Initiative_ProjectsQuery = {
17287
+ __typename?: "Query";
17288
+ } & {
17289
+ initiative: {
17290
+ __typename?: "Initiative";
17291
+ } & {
17292
+ projects: {
17293
+ __typename?: "ProjectConnection";
17294
+ } & ProjectConnectionFragment;
17295
+ };
17296
+ };
17297
+ export declare type InitiativeToProjectQueryVariables = Exact<{
17298
+ id: Scalars["String"];
17299
+ }>;
17300
+ export declare type InitiativeToProjectQuery = {
17301
+ __typename?: "Query";
17302
+ } & {
17303
+ initiativeToProject: {
17304
+ __typename?: "InitiativeToProject";
17305
+ } & InitiativeToProjectFragment;
17306
+ };
17307
+ export declare type InitiativeToProjectsQueryVariables = Exact<{
17308
+ after?: Maybe<Scalars["String"]>;
17309
+ before?: Maybe<Scalars["String"]>;
17310
+ first?: Maybe<Scalars["Int"]>;
17311
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17312
+ last?: Maybe<Scalars["Int"]>;
17313
+ orderBy?: Maybe<PaginationOrderBy>;
17314
+ }>;
17315
+ export declare type InitiativeToProjectsQuery = {
17316
+ __typename?: "Query";
17317
+ } & {
17318
+ initiativeToProjects: {
17319
+ __typename?: "InitiativeToProjectConnection";
17320
+ } & InitiativeToProjectConnectionFragment;
17321
+ };
17322
+ export declare type InitiativesQueryVariables = Exact<{
17323
+ after?: Maybe<Scalars["String"]>;
17324
+ before?: Maybe<Scalars["String"]>;
17325
+ first?: Maybe<Scalars["Int"]>;
17326
+ includeArchived?: Maybe<Scalars["Boolean"]>;
17327
+ last?: Maybe<Scalars["Int"]>;
17328
+ orderBy?: Maybe<PaginationOrderBy>;
17329
+ }>;
17330
+ export declare type InitiativesQuery = {
17331
+ __typename?: "Query";
17332
+ } & {
17333
+ initiatives: {
17334
+ __typename?: "InitiativeConnection";
17335
+ } & InitiativeConnectionFragment;
17336
+ };
16449
17337
  export declare type IntegrationQueryVariables = Exact<{
16450
17338
  id: Scalars["String"];
16451
17339
  }>;
@@ -18405,9 +19293,9 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18405
19293
  mobile?: Maybe<{
18406
19294
  __typename?: "NotificationDeliveryPreferencesChannel";
18407
19295
  } & {
18408
- schedule: {
19296
+ schedule?: Maybe<{
18409
19297
  __typename?: "NotificationDeliveryPreferencesSchedule";
18410
- } & NotificationDeliveryPreferencesScheduleFragment;
19298
+ } & NotificationDeliveryPreferencesScheduleFragment>;
18411
19299
  }>;
18412
19300
  };
18413
19301
  };
@@ -18427,13 +19315,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18427
19315
  mobile?: Maybe<{
18428
19316
  __typename?: "NotificationDeliveryPreferencesChannel";
18429
19317
  } & {
18430
- schedule: {
19318
+ schedule?: Maybe<{
18431
19319
  __typename?: "NotificationDeliveryPreferencesSchedule";
18432
19320
  } & {
18433
19321
  friday: {
18434
19322
  __typename?: "NotificationDeliveryPreferencesDay";
18435
19323
  } & NotificationDeliveryPreferencesDayFragment;
18436
- };
19324
+ }>;
18437
19325
  }>;
18438
19326
  };
18439
19327
  };
@@ -18453,13 +19341,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18453
19341
  mobile?: Maybe<{
18454
19342
  __typename?: "NotificationDeliveryPreferencesChannel";
18455
19343
  } & {
18456
- schedule: {
19344
+ schedule?: Maybe<{
18457
19345
  __typename?: "NotificationDeliveryPreferencesSchedule";
18458
19346
  } & {
18459
19347
  monday: {
18460
19348
  __typename?: "NotificationDeliveryPreferencesDay";
18461
19349
  } & NotificationDeliveryPreferencesDayFragment;
18462
- };
19350
+ }>;
18463
19351
  }>;
18464
19352
  };
18465
19353
  };
@@ -18479,13 +19367,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18479
19367
  mobile?: Maybe<{
18480
19368
  __typename?: "NotificationDeliveryPreferencesChannel";
18481
19369
  } & {
18482
- schedule: {
19370
+ schedule?: Maybe<{
18483
19371
  __typename?: "NotificationDeliveryPreferencesSchedule";
18484
19372
  } & {
18485
19373
  saturday: {
18486
19374
  __typename?: "NotificationDeliveryPreferencesDay";
18487
19375
  } & NotificationDeliveryPreferencesDayFragment;
18488
- };
19376
+ }>;
18489
19377
  }>;
18490
19378
  };
18491
19379
  };
@@ -18505,13 +19393,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18505
19393
  mobile?: Maybe<{
18506
19394
  __typename?: "NotificationDeliveryPreferencesChannel";
18507
19395
  } & {
18508
- schedule: {
19396
+ schedule?: Maybe<{
18509
19397
  __typename?: "NotificationDeliveryPreferencesSchedule";
18510
19398
  } & {
18511
19399
  sunday: {
18512
19400
  __typename?: "NotificationDeliveryPreferencesDay";
18513
19401
  } & NotificationDeliveryPreferencesDayFragment;
18514
- };
19402
+ }>;
18515
19403
  }>;
18516
19404
  };
18517
19405
  };
@@ -18531,13 +19419,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18531
19419
  mobile?: Maybe<{
18532
19420
  __typename?: "NotificationDeliveryPreferencesChannel";
18533
19421
  } & {
18534
- schedule: {
19422
+ schedule?: Maybe<{
18535
19423
  __typename?: "NotificationDeliveryPreferencesSchedule";
18536
19424
  } & {
18537
19425
  thursday: {
18538
19426
  __typename?: "NotificationDeliveryPreferencesDay";
18539
19427
  } & NotificationDeliveryPreferencesDayFragment;
18540
- };
19428
+ }>;
18541
19429
  }>;
18542
19430
  };
18543
19431
  };
@@ -18557,13 +19445,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18557
19445
  mobile?: Maybe<{
18558
19446
  __typename?: "NotificationDeliveryPreferencesChannel";
18559
19447
  } & {
18560
- schedule: {
19448
+ schedule?: Maybe<{
18561
19449
  __typename?: "NotificationDeliveryPreferencesSchedule";
18562
19450
  } & {
18563
19451
  tuesday: {
18564
19452
  __typename?: "NotificationDeliveryPreferencesDay";
18565
19453
  } & NotificationDeliveryPreferencesDayFragment;
18566
- };
19454
+ }>;
18567
19455
  }>;
18568
19456
  };
18569
19457
  };
@@ -18583,13 +19471,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18583
19471
  mobile?: Maybe<{
18584
19472
  __typename?: "NotificationDeliveryPreferencesChannel";
18585
19473
  } & {
18586
- schedule: {
19474
+ schedule?: Maybe<{
18587
19475
  __typename?: "NotificationDeliveryPreferencesSchedule";
18588
19476
  } & {
18589
19477
  wednesday: {
18590
19478
  __typename?: "NotificationDeliveryPreferencesDay";
18591
19479
  } & NotificationDeliveryPreferencesDayFragment;
18592
- };
19480
+ }>;
18593
19481
  }>;
18594
19482
  };
18595
19483
  };
@@ -19204,8 +20092,18 @@ export declare type DeleteDocumentMutation = {
19204
20092
  __typename?: "Mutation";
19205
20093
  } & {
19206
20094
  documentDelete: {
19207
- __typename?: "DeletePayload";
19208
- } & DeletePayloadFragment;
20095
+ __typename?: "DocumentArchivePayload";
20096
+ } & DocumentArchivePayloadFragment;
20097
+ };
20098
+ export declare type UnarchiveDocumentMutationVariables = Exact<{
20099
+ id: Scalars["String"];
20100
+ }>;
20101
+ export declare type UnarchiveDocumentMutation = {
20102
+ __typename?: "Mutation";
20103
+ } & {
20104
+ documentUnarchive: {
20105
+ __typename?: "DocumentArchivePayload";
20106
+ } & DocumentArchivePayloadFragment;
19209
20107
  };
19210
20108
  export declare type UpdateDocumentMutationVariables = Exact<{
19211
20109
  id: Scalars["String"];
@@ -19480,6 +20378,88 @@ export declare type ImportFileUploadMutation = {
19480
20378
  __typename?: "UploadPayload";
19481
20379
  } & UploadPayloadFragment;
19482
20380
  };
20381
+ export declare type ArchiveInitiativeMutationVariables = Exact<{
20382
+ id: Scalars["String"];
20383
+ }>;
20384
+ export declare type ArchiveInitiativeMutation = {
20385
+ __typename?: "Mutation";
20386
+ } & {
20387
+ initiativeArchive: {
20388
+ __typename?: "InitiativeArchivePayload";
20389
+ } & InitiativeArchivePayloadFragment;
20390
+ };
20391
+ export declare type CreateInitiativeMutationVariables = Exact<{
20392
+ input: InitiativeCreateInput;
20393
+ }>;
20394
+ export declare type CreateInitiativeMutation = {
20395
+ __typename?: "Mutation";
20396
+ } & {
20397
+ initiativeCreate: {
20398
+ __typename?: "InitiativePayload";
20399
+ } & InitiativePayloadFragment;
20400
+ };
20401
+ export declare type DeleteInitiativeMutationVariables = Exact<{
20402
+ id: Scalars["String"];
20403
+ }>;
20404
+ export declare type DeleteInitiativeMutation = {
20405
+ __typename?: "Mutation";
20406
+ } & {
20407
+ initiativeDelete: {
20408
+ __typename?: "DeletePayload";
20409
+ } & DeletePayloadFragment;
20410
+ };
20411
+ export declare type CreateInitiativeToProjectMutationVariables = Exact<{
20412
+ input: InitiativeToProjectCreateInput;
20413
+ }>;
20414
+ export declare type CreateInitiativeToProjectMutation = {
20415
+ __typename?: "Mutation";
20416
+ } & {
20417
+ initiativeToProjectCreate: {
20418
+ __typename?: "InitiativeToProjectPayload";
20419
+ } & InitiativeToProjectPayloadFragment;
20420
+ };
20421
+ export declare type DeleteInitiativeToProjectMutationVariables = Exact<{
20422
+ id: Scalars["String"];
20423
+ }>;
20424
+ export declare type DeleteInitiativeToProjectMutation = {
20425
+ __typename?: "Mutation";
20426
+ } & {
20427
+ initiativeToProjectDelete: {
20428
+ __typename?: "DeletePayload";
20429
+ } & DeletePayloadFragment;
20430
+ };
20431
+ export declare type UpdateInitiativeToProjectMutationVariables = Exact<{
20432
+ id: Scalars["String"];
20433
+ input: InitiativeToProjectUpdateInput;
20434
+ }>;
20435
+ export declare type UpdateInitiativeToProjectMutation = {
20436
+ __typename?: "Mutation";
20437
+ } & {
20438
+ initiativeToProjectUpdate: {
20439
+ __typename?: "InitiativeToProjectPayload";
20440
+ } & InitiativeToProjectPayloadFragment;
20441
+ };
20442
+ export declare type UnarchiveInitiativeMutationVariables = Exact<{
20443
+ id: Scalars["String"];
20444
+ }>;
20445
+ export declare type UnarchiveInitiativeMutation = {
20446
+ __typename?: "Mutation";
20447
+ } & {
20448
+ initiativeUnarchive: {
20449
+ __typename?: "InitiativeArchivePayload";
20450
+ } & InitiativeArchivePayloadFragment;
20451
+ };
20452
+ export declare type UpdateInitiativeMutationVariables = Exact<{
20453
+ id: Scalars["String"];
20454
+ input: InitiativeUpdateInput;
20455
+ }>;
20456
+ export declare type UpdateInitiativeMutation = {
20457
+ __typename?: "Mutation";
20458
+ } & {
20459
+ initiativeUpdate: {
20460
+ __typename?: "InitiativePayload";
20461
+ } & InitiativePayloadFragment;
20462
+ };
19483
20463
  export declare type ArchiveIntegrationMutationVariables = Exact<{
19484
20464
  id: Scalars["String"];
19485
20465
  }>;
@@ -19544,6 +20524,17 @@ export declare type IntegrationFrontMutation = {
19544
20524
  __typename?: "IntegrationPayload";
19545
20525
  } & IntegrationPayloadFragment;
19546
20526
  };
20527
+ export declare type IntegrationGitHubEnterpriseServerConnectMutationVariables = Exact<{
20528
+ githubUrl: Scalars["String"];
20529
+ organizationName?: Maybe<Scalars["String"]>;
20530
+ }>;
20531
+ export declare type IntegrationGitHubEnterpriseServerConnectMutation = {
20532
+ __typename?: "Mutation";
20533
+ } & {
20534
+ integrationGitHubEnterpriseServerConnect: {
20535
+ __typename?: "GitHubEnterpriseServerPayload";
20536
+ } & GitHubEnterpriseServerPayloadFragment;
20537
+ };
19547
20538
  export declare type IntegrationGitHubPersonalMutationVariables = Exact<{
19548
20539
  code: Scalars["String"];
19549
20540
  }>;
@@ -19884,6 +20875,7 @@ export declare type CreateIssueMutation = {
19884
20875
  };
19885
20876
  export declare type DeleteIssueMutationVariables = Exact<{
19886
20877
  id: Scalars["String"];
20878
+ permanentlyDelete?: Maybe<Scalars["Boolean"]>;
19887
20879
  }>;
19888
20880
  export declare type DeleteIssueMutation = {
19889
20881
  __typename?: "Mutation";
@@ -19951,7 +20943,7 @@ export declare type IssueImportCreateGithubMutationVariables = Exact<{
19951
20943
  githubToken?: Maybe<Scalars["String"]>;
19952
20944
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
19953
20945
  instantProcess?: Maybe<Scalars["Boolean"]>;
19954
- integrationId: Scalars["String"];
20946
+ integrationId?: Maybe<Scalars["String"]>;
19955
20947
  organizationId?: Maybe<Scalars["String"]>;
19956
20948
  teamId?: Maybe<Scalars["String"]>;
19957
20949
  teamName?: Maybe<Scalars["String"]>;
@@ -21007,16 +21999,6 @@ export declare type UserPromoteMemberMutation = {
21007
21999
  __typename?: "UserAdminPayload";
21008
22000
  } & UserAdminPayloadFragment;
21009
22001
  };
21010
- export declare type UserSettingsFlagIncrementMutationVariables = Exact<{
21011
- flag: Scalars["String"];
21012
- }>;
21013
- export declare type UserSettingsFlagIncrementMutation = {
21014
- __typename?: "Mutation";
21015
- } & {
21016
- userSettingsFlagIncrement: {
21017
- __typename?: "UserSettingsFlagPayload";
21018
- } & UserSettingsFlagPayloadFragment;
21019
- };
21020
22002
  export declare type UserSettingsFlagsResetMutationVariables = Exact<{
21021
22003
  flags?: Maybe<Array<UserFlagType> | UserFlagType>;
21022
22004
  }>;
@@ -21163,13 +22145,16 @@ export declare type UpdateWorkflowStateMutation = {
21163
22145
  } & WorkflowStatePayloadFragment;
21164
22146
  };
21165
22147
  export declare const EntityFragmentDoc: DocumentNode<EntityFragment, unknown>;
22148
+ export declare const CommentNotificationFragmentDoc: DocumentNode<CommentNotificationFragment, unknown>;
21166
22149
  export declare const CustomViewNotificationSubscriptionFragmentDoc: DocumentNode<CustomViewNotificationSubscriptionFragment, unknown>;
21167
22150
  export declare const CycleNotificationSubscriptionFragmentDoc: DocumentNode<CycleNotificationSubscriptionFragment, unknown>;
21168
22151
  export declare const DocumentContentFragmentDoc: DocumentNode<DocumentContentFragment, unknown>;
21169
22152
  export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentContentHistoryFragment, unknown>;
22153
+ export declare const DraftFragmentDoc: DocumentNode<DraftFragment, unknown>;
21170
22154
  export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
21171
22155
  export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
21172
22156
  export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
22157
+ export declare const DocumentArchivePayloadFragmentDoc: DocumentNode<DocumentArchivePayloadFragment, unknown>;
21173
22158
  export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<InitiativeArchivePayloadFragment, unknown>;
21174
22159
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
21175
22160
  export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
@@ -21191,13 +22176,13 @@ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<Labe
21191
22176
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
21192
22177
  export declare const ReminderFragmentDoc: DocumentNode<ReminderFragment, unknown>;
21193
22178
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
21194
- export declare const TextDraftFragmentDoc: DocumentNode<TextDraftFragment, unknown>;
21195
22179
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
21196
22180
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
21197
22181
  export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
21198
22182
  export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
21199
22183
  export declare const AuthEmailIntakeAddressFragmentDoc: DocumentNode<AuthEmailIntakeAddressFragment, unknown>;
21200
22184
  export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
22185
+ export declare const OrganizationIpRestrictionFragmentDoc: DocumentNode<OrganizationIpRestrictionFragment, unknown>;
21201
22186
  export declare const ProjectStatusFragmentDoc: DocumentNode<ProjectStatusFragment, unknown>;
21202
22187
  export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
21203
22188
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
@@ -21222,6 +22207,7 @@ export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFra
21222
22207
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
21223
22208
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
21224
22209
  export declare const JiraPersonalSettingsFragmentDoc: DocumentNode<JiraPersonalSettingsFragment, unknown>;
22210
+ export declare const LaunchDarklySettingsFragmentDoc: DocumentNode<LaunchDarklySettingsFragment, unknown>;
21225
22211
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
21226
22212
  export declare const OpsgenieSettingsFragmentDoc: DocumentNode<OpsgenieSettingsFragment, unknown>;
21227
22213
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
@@ -21233,6 +22219,8 @@ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSetting
21233
22219
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
21234
22220
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
21235
22221
  export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
22222
+ export declare const InitiativePayloadFragmentDoc: DocumentNode<InitiativePayloadFragment, unknown>;
22223
+ export declare const InitiativeToProjectPayloadFragmentDoc: DocumentNode<InitiativeToProjectPayloadFragment, unknown>;
21236
22224
  export declare const NotificationDeliveryPreferencesDayFragmentDoc: DocumentNode<NotificationDeliveryPreferencesDayFragment, unknown>;
21237
22225
  export declare const NotificationDeliveryPreferencesScheduleFragmentDoc: DocumentNode<NotificationDeliveryPreferencesScheduleFragment, unknown>;
21238
22226
  export declare const NotificationDeliveryPreferencesChannelFragmentDoc: DocumentNode<NotificationDeliveryPreferencesChannelFragment, unknown>;
@@ -21240,6 +22228,7 @@ export declare const NotificationDeliveryPreferencesFragmentDoc: DocumentNode<No
21240
22228
  export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
21241
22229
  export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
21242
22230
  export declare const IssueImportSyncCheckPayloadFragmentDoc: DocumentNode<IssueImportSyncCheckPayloadFragment, unknown>;
22231
+ export declare const TextDraftFragmentDoc: DocumentNode<TextDraftFragment, unknown>;
21243
22232
  export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
21244
22233
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
21245
22234
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
@@ -21258,12 +22247,14 @@ export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFra
21258
22247
  export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
21259
22248
  export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
21260
22249
  export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
22250
+ export declare const AuthOrganizationBucketNamePayloadFragmentDoc: DocumentNode<AuthOrganizationBucketNamePayloadFragment, unknown>;
21261
22251
  export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
21262
22252
  export declare const AuthOrganizationExistsPayloadFragmentDoc: DocumentNode<AuthOrganizationExistsPayloadFragment, unknown>;
21263
22253
  export declare const AuthOrganizationPayloadFragmentDoc: DocumentNode<AuthOrganizationPayloadFragment, unknown>;
21264
22254
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
21265
22255
  export declare const AuthSuccessPayloadFragmentDoc: DocumentNode<AuthSuccessPayloadFragment, unknown>;
21266
22256
  export declare const AuthorizedApplicationBaseFragmentDoc: DocumentNode<AuthorizedApplicationBaseFragment, unknown>;
22257
+ export declare const ReactionFragmentDoc: DocumentNode<ReactionFragment, unknown>;
21267
22258
  export declare const CommentFragmentDoc: DocumentNode<CommentFragment, unknown>;
21268
22259
  export declare const CommentConnectionFragmentDoc: DocumentNode<CommentConnectionFragment, unknown>;
21269
22260
  export declare const CommentPayloadFragmentDoc: DocumentNode<CommentPayloadFragment, unknown>;
@@ -21311,6 +22302,10 @@ export declare const FacetConnectionFragmentDoc: DocumentNode<FacetConnectionFra
21311
22302
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
21312
22303
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
21313
22304
  export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
22305
+ export declare const FeatureFlagRolloutStageFragmentDoc: DocumentNode<FeatureFlagRolloutStageFragment, unknown>;
22306
+ export declare const FeatureFlagFragmentDoc: DocumentNode<FeatureFlagFragment, unknown>;
22307
+ export declare const FeatureFlagConnectionFragmentDoc: DocumentNode<FeatureFlagConnectionFragment, unknown>;
22308
+ export declare const FeatureFlagRolloutStageConnectionFragmentDoc: DocumentNode<FeatureFlagRolloutStageConnectionFragment, unknown>;
21314
22309
  export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
21315
22310
  export declare const GitAutomationTargetBranchFragmentDoc: DocumentNode<GitAutomationTargetBranchFragment, unknown>;
21316
22311
  export declare const GitAutomationStateFragmentDoc: DocumentNode<GitAutomationStateFragment, unknown>;
@@ -21318,7 +22313,12 @@ export declare const GitAutomationStateConnectionFragmentDoc: DocumentNode<GitAu
21318
22313
  export declare const GitAutomationStatePayloadFragmentDoc: DocumentNode<GitAutomationStatePayloadFragment, unknown>;
21319
22314
  export declare const GitAutomationTargetBranchPayloadFragmentDoc: DocumentNode<GitAutomationTargetBranchPayloadFragment, unknown>;
21320
22315
  export declare const GitHubCommitIntegrationPayloadFragmentDoc: DocumentNode<GitHubCommitIntegrationPayloadFragment, unknown>;
22316
+ export declare const GitHubEnterpriseServerPayloadFragmentDoc: DocumentNode<GitHubEnterpriseServerPayloadFragment, unknown>;
21321
22317
  export declare const ImageUploadFromUrlPayloadFragmentDoc: DocumentNode<ImageUploadFromUrlPayloadFragment, unknown>;
22318
+ export declare const InitiativeFragmentDoc: DocumentNode<InitiativeFragment, unknown>;
22319
+ export declare const InitiativeConnectionFragmentDoc: DocumentNode<InitiativeConnectionFragment, unknown>;
22320
+ export declare const InitiativeToProjectFragmentDoc: DocumentNode<InitiativeToProjectFragment, unknown>;
22321
+ export declare const InitiativeToProjectConnectionFragmentDoc: DocumentNode<InitiativeToProjectConnectionFragment, unknown>;
21322
22322
  export declare const IntegrationFragmentDoc: DocumentNode<IntegrationFragment, unknown>;
21323
22323
  export declare const IntegrationConnectionFragmentDoc: DocumentNode<IntegrationConnectionFragment, unknown>;
21324
22324
  export declare const IntegrationHasScopesPayloadFragmentDoc: DocumentNode<IntegrationHasScopesPayloadFragment, unknown>;
@@ -21378,7 +22378,6 @@ export declare const OrganizationStartTrialPayloadFragmentDoc: DocumentNode<Orga
21378
22378
  export declare const PasskeyLoginStartResponseFragmentDoc: DocumentNode<PasskeyLoginStartResponseFragment, unknown>;
21379
22379
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
21380
22380
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
21381
- export declare const ProjectDetailSuggestionPayloadFragmentDoc: DocumentNode<ProjectDetailSuggestionPayloadFragment, unknown>;
21382
22381
  export declare const ProjectFilterSuggestionPayloadFragmentDoc: DocumentNode<ProjectFilterSuggestionPayloadFragment, unknown>;
21383
22382
  export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
21384
22383
  export declare const ProjectLinkConnectionFragmentDoc: DocumentNode<ProjectLinkConnectionFragment, unknown>;
@@ -21408,7 +22407,6 @@ export declare const PushSubscriptionPayloadFragmentDoc: DocumentNode<PushSubscr
21408
22407
  export declare const PushSubscriptionTestPayloadFragmentDoc: DocumentNode<PushSubscriptionTestPayloadFragment, unknown>;
21409
22408
  export declare const RateLimitResultPayloadFragmentDoc: DocumentNode<RateLimitResultPayloadFragment, unknown>;
21410
22409
  export declare const RateLimitPayloadFragmentDoc: DocumentNode<RateLimitPayloadFragment, unknown>;
21411
- export declare const ReactionFragmentDoc: DocumentNode<ReactionFragment, unknown>;
21412
22410
  export declare const ReactionConnectionFragmentDoc: DocumentNode<ReactionConnectionFragment, unknown>;
21413
22411
  export declare const ReactionPayloadFragmentDoc: DocumentNode<ReactionPayloadFragment, unknown>;
21414
22412
  export declare const RoadmapFragmentDoc: DocumentNode<RoadmapFragment, unknown>;
@@ -21789,6 +22787,47 @@ export declare const FavoritesDocument: DocumentNode<FavoritesQuery, Exact<{
21789
22787
  last?: Maybe<number> | undefined;
21790
22788
  orderBy?: Maybe<PaginationOrderBy> | undefined;
21791
22789
  }>>;
22790
+ export declare const InitiativeDocument: DocumentNode<InitiativeQuery, Exact<{
22791
+ id: Scalars["String"];
22792
+ }>>;
22793
+ export declare const Initiative_LinksDocument: DocumentNode<Initiative_LinksQuery, Exact<{
22794
+ id: Scalars["String"];
22795
+ after?: Maybe<string> | undefined;
22796
+ before?: Maybe<string> | undefined;
22797
+ first?: Maybe<number> | undefined;
22798
+ includeArchived?: Maybe<boolean> | undefined;
22799
+ last?: Maybe<number> | undefined;
22800
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
22801
+ }>>;
22802
+ export declare const Initiative_ProjectsDocument: DocumentNode<Initiative_ProjectsQuery, Exact<{
22803
+ id: Scalars["String"];
22804
+ after?: Maybe<string> | undefined;
22805
+ before?: Maybe<string> | undefined;
22806
+ filter?: Maybe<ProjectFilter> | undefined;
22807
+ first?: Maybe<number> | undefined;
22808
+ includeArchived?: Maybe<boolean> | undefined;
22809
+ last?: Maybe<number> | undefined;
22810
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
22811
+ }>>;
22812
+ export declare const InitiativeToProjectDocument: DocumentNode<InitiativeToProjectQuery, Exact<{
22813
+ id: Scalars["String"];
22814
+ }>>;
22815
+ export declare const InitiativeToProjectsDocument: DocumentNode<InitiativeToProjectsQuery, Exact<{
22816
+ after?: Maybe<string> | undefined;
22817
+ before?: Maybe<string> | undefined;
22818
+ first?: Maybe<number> | undefined;
22819
+ includeArchived?: Maybe<boolean> | undefined;
22820
+ last?: Maybe<number> | undefined;
22821
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
22822
+ }>>;
22823
+ export declare const InitiativesDocument: DocumentNode<InitiativesQuery, Exact<{
22824
+ after?: Maybe<string> | undefined;
22825
+ before?: Maybe<string> | undefined;
22826
+ first?: Maybe<number> | undefined;
22827
+ includeArchived?: Maybe<boolean> | undefined;
22828
+ last?: Maybe<number> | undefined;
22829
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
22830
+ }>>;
21792
22831
  export declare const IntegrationDocument: DocumentNode<IntegrationQuery, Exact<{
21793
22832
  id: Scalars["String"];
21794
22833
  }>>;
@@ -22924,6 +23963,9 @@ export declare const CreateDocumentDocument: DocumentNode<CreateDocumentMutation
22924
23963
  export declare const DeleteDocumentDocument: DocumentNode<DeleteDocumentMutation, Exact<{
22925
23964
  id: Scalars["String"];
22926
23965
  }>>;
23966
+ export declare const UnarchiveDocumentDocument: DocumentNode<UnarchiveDocumentMutation, Exact<{
23967
+ id: Scalars["String"];
23968
+ }>>;
22927
23969
  export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation, Exact<{
22928
23970
  id: Scalars["String"];
22929
23971
  input: DocumentUpdateInput;
@@ -23015,6 +24057,32 @@ export declare const ImportFileUploadDocument: DocumentNode<ImportFileUploadMuta
23015
24057
  metaData?: Maybe<Record<string, unknown>> | undefined;
23016
24058
  size: Scalars["Int"];
23017
24059
  }>>;
24060
+ export declare const ArchiveInitiativeDocument: DocumentNode<ArchiveInitiativeMutation, Exact<{
24061
+ id: Scalars["String"];
24062
+ }>>;
24063
+ export declare const CreateInitiativeDocument: DocumentNode<CreateInitiativeMutation, Exact<{
24064
+ input: InitiativeCreateInput;
24065
+ }>>;
24066
+ export declare const DeleteInitiativeDocument: DocumentNode<DeleteInitiativeMutation, Exact<{
24067
+ id: Scalars["String"];
24068
+ }>>;
24069
+ export declare const CreateInitiativeToProjectDocument: DocumentNode<CreateInitiativeToProjectMutation, Exact<{
24070
+ input: InitiativeToProjectCreateInput;
24071
+ }>>;
24072
+ export declare const DeleteInitiativeToProjectDocument: DocumentNode<DeleteInitiativeToProjectMutation, Exact<{
24073
+ id: Scalars["String"];
24074
+ }>>;
24075
+ export declare const UpdateInitiativeToProjectDocument: DocumentNode<UpdateInitiativeToProjectMutation, Exact<{
24076
+ id: Scalars["String"];
24077
+ input: InitiativeToProjectUpdateInput;
24078
+ }>>;
24079
+ export declare const UnarchiveInitiativeDocument: DocumentNode<UnarchiveInitiativeMutation, Exact<{
24080
+ id: Scalars["String"];
24081
+ }>>;
24082
+ export declare const UpdateInitiativeDocument: DocumentNode<UpdateInitiativeMutation, Exact<{
24083
+ id: Scalars["String"];
24084
+ input: InitiativeUpdateInput;
24085
+ }>>;
23018
24086
  export declare const ArchiveIntegrationDocument: DocumentNode<ArchiveIntegrationMutation, Exact<{
23019
24087
  id: Scalars["String"];
23020
24088
  }>>;
@@ -23037,6 +24105,10 @@ export declare const IntegrationFrontDocument: DocumentNode<IntegrationFrontMuta
23037
24105
  code: Scalars["String"];
23038
24106
  redirectUri: Scalars["String"];
23039
24107
  }>>;
24108
+ export declare const IntegrationGitHubEnterpriseServerConnectDocument: DocumentNode<IntegrationGitHubEnterpriseServerConnectMutation, Exact<{
24109
+ githubUrl: Scalars["String"];
24110
+ organizationName?: Maybe<string> | undefined;
24111
+ }>>;
23040
24112
  export declare const IntegrationGitHubPersonalDocument: DocumentNode<IntegrationGitHubPersonalMutation, Exact<{
23041
24113
  code: Scalars["String"];
23042
24114
  }>>;
@@ -23160,6 +24232,7 @@ export declare const CreateIssueDocument: DocumentNode<CreateIssueMutation, Exac
23160
24232
  }>>;
23161
24233
  export declare const DeleteIssueDocument: DocumentNode<DeleteIssueMutation, Exact<{
23162
24234
  id: Scalars["String"];
24235
+ permanentlyDelete?: Maybe<boolean> | undefined;
23163
24236
  }>>;
23164
24237
  export declare const IssueImportCreateAsanaDocument: DocumentNode<IssueImportCreateAsanaMutation, Exact<{
23165
24238
  asanaTeamName: Scalars["String"];
@@ -23199,7 +24272,7 @@ export declare const IssueImportCreateGithubDocument: DocumentNode<IssueImportCr
23199
24272
  githubToken?: Maybe<string> | undefined;
23200
24273
  includeClosedIssues?: Maybe<boolean> | undefined;
23201
24274
  instantProcess?: Maybe<boolean> | undefined;
23202
- integrationId: Scalars["String"];
24275
+ integrationId?: Maybe<string> | undefined;
23203
24276
  organizationId?: Maybe<string> | undefined;
23204
24277
  teamId?: Maybe<string> | undefined;
23205
24278
  teamName?: Maybe<string> | undefined;
@@ -23548,9 +24621,6 @@ export declare const UserPromoteAdminDocument: DocumentNode<UserPromoteAdminMuta
23548
24621
  export declare const UserPromoteMemberDocument: DocumentNode<UserPromoteMemberMutation, Exact<{
23549
24622
  id: Scalars["String"];
23550
24623
  }>>;
23551
- export declare const UserSettingsFlagIncrementDocument: DocumentNode<UserSettingsFlagIncrementMutation, Exact<{
23552
- flag: Scalars["String"];
23553
- }>>;
23554
24624
  export declare const UserSettingsFlagsResetDocument: DocumentNode<UserSettingsFlagsResetMutation, Exact<{
23555
24625
  flags?: Maybe<UserFlagType | UserFlagType[]> | undefined;
23556
24626
  }>>;