@linear/sdk 21.1.0 → 23.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.
@@ -455,6 +455,10 @@ export declare type AuthOauthClient = {
455
455
  publicEnabled: Scalars["Boolean"];
456
456
  /** List of allowed redirect URIs for the application. */
457
457
  redirectUris: Array<Scalars["String"]>;
458
+ /** The resource types to request when creating new webhooks. */
459
+ webhookResourceTypes: Array<Scalars["String"]>;
460
+ /** Webhook secret */
461
+ webhookSecret?: Maybe<Scalars["String"]>;
458
462
  /** Webhook URL */
459
463
  webhookUrl?: Maybe<Scalars["String"]>;
460
464
  };
@@ -508,6 +512,8 @@ export declare type AuthOrganization = {
508
512
  allowedAuthServices: Array<Scalars["String"]>;
509
513
  /** The time at which deletion of the organization was requested. */
510
514
  deletionRequestedAt?: Maybe<Scalars["DateTime"]>;
515
+ /** Whether the organization is enabled. Used as a superuser tool to lock down the org. */
516
+ enabled: Scalars["Boolean"];
511
517
  /** The unique identifier of the entity. */
512
518
  id: Scalars["ID"];
513
519
  /** The organization's logo URL. */
@@ -532,10 +538,19 @@ export declare type AuthOrganization = {
532
538
  urlKey: Scalars["String"];
533
539
  userCount: Scalars["Float"];
534
540
  };
541
+ export declare type AuthOrganizationBucketNamePayload = {
542
+ __typename?: "AuthOrganizationBucketNamePayload";
543
+ /** The imports bucket name for the organization. */
544
+ importsBucketName: Scalars["String"];
545
+ /** The uploads bucket name for the organization. */
546
+ uploadsBucketName: Scalars["String"];
547
+ };
535
548
  export declare type AuthOrganizationDomain = {
536
549
  __typename?: "AuthOrganizationDomain";
537
550
  authType: OrganizationDomainAuthType;
538
551
  claimed?: Maybe<Scalars["Boolean"]>;
552
+ /** Prevent users with this domain to create new workspaces. */
553
+ disableOrganizationCreation?: Maybe<Scalars["Boolean"]>;
539
554
  /** The unique identifier of the entity. */
540
555
  id: Scalars["ID"];
541
556
  name: Scalars["String"];
@@ -584,6 +599,8 @@ export declare type AuthResolverResponse = {
584
599
  lastUsedOrganizationId?: Maybe<Scalars["String"]>;
585
600
  /** List of organization available to this user account but locked due to the current auth method. */
586
601
  lockedOrganizations?: Maybe<Array<AuthOrganization>>;
602
+ /** List of locked users that are locked by login restrictions */
603
+ lockedUsers: Array<AuthUser>;
587
604
  /**
588
605
  * Application token.
589
606
  * @deprecated Deprecated and not used anymore. Never populated.
@@ -613,6 +630,8 @@ export declare type AuthUser = {
613
630
  name: Scalars["String"];
614
631
  /** Organization the user belongs to. */
615
632
  organization: AuthOrganization;
633
+ /** Whether the user is an organization admin or guest on a database level. */
634
+ role: UserRoleType;
616
635
  /** User account ID the user belongs to. */
617
636
  userAccountId: Scalars["String"];
618
637
  };
@@ -742,7 +761,7 @@ export declare type Comment = Node & {
742
761
  /** The comment content in markdown format. */
743
762
  body: Scalars["String"];
744
763
  /** [Internal] The comment content as a Prosemirror document. */
745
- bodyData: Scalars["String"];
764
+ bodyData?: Maybe<Scalars["String"]>;
746
765
  /** The bot that created the comment. */
747
766
  botActor?: Maybe<ActorBot>;
748
767
  /** The children of the comment. */
@@ -767,6 +786,8 @@ export declare type Comment = Node & {
767
786
  quotedText?: Maybe<Scalars["String"]>;
768
787
  /** Emoji reaction summary, grouped by emoji type. */
769
788
  reactionData: Scalars["JSONObject"];
789
+ /** Reactions associated with the comment. */
790
+ reactions: Array<Reaction>;
770
791
  /** The time the resolvingUser resolved the thread. */
771
792
  resolvedAt?: Maybe<Scalars["DateTime"]>;
772
793
  /** The comment that resolved the thread. */
@@ -820,6 +841,8 @@ export declare type CommentCollectionFilter = {
820
841
  parent?: Maybe<NullableCommentFilter>;
821
842
  /** Filters that the comments project update must satisfy. */
822
843
  projectUpdate?: Maybe<ProjectUpdateFilter>;
844
+ /** Filters that the comments reactions must satisfy. */
845
+ reactions?: Maybe<ReactionCollectionFilter>;
823
846
  /** Filters that needs to be matched by some comments. */
824
847
  some?: Maybe<CommentFilter>;
825
848
  /** Comparator for the updated at date. */
@@ -860,6 +883,8 @@ export declare type CommentCreateInput = {
860
883
  projectUpdateId?: Maybe<Scalars["String"]>;
861
884
  /** The text that this comment references. Only defined for inline comments. */
862
885
  quotedText?: Maybe<Scalars["String"]>;
886
+ /** [INTERNAL] The identifiers of the users subscribing to this comment thread. */
887
+ subscriberIds?: Maybe<Array<Scalars["String"]>>;
863
888
  };
864
889
  export declare type CommentEdge = {
865
890
  __typename?: "CommentEdge";
@@ -887,6 +912,8 @@ export declare type CommentFilter = {
887
912
  parent?: Maybe<NullableCommentFilter>;
888
913
  /** Filters that the comments project update must satisfy. */
889
914
  projectUpdate?: Maybe<ProjectUpdateFilter>;
915
+ /** Filters that the comments reactions must satisfy. */
916
+ reactions?: Maybe<ReactionCollectionFilter>;
890
917
  /** Comparator for the updated at date. */
891
918
  updatedAt?: Maybe<DateComparator>;
892
919
  /** Filters that the comments creator must satisfy. */
@@ -906,12 +933,16 @@ export declare type CommentUpdateInput = {
906
933
  body?: Maybe<Scalars["String"]>;
907
934
  /** The comment content as a Prosemirror document. */
908
935
  bodyData?: Maybe<Scalars["JSON"]>;
936
+ /** [INTERNAL] Flag to prevent auto subscription to the issue the comment is updated on. */
937
+ doNotSubscribeToIssue?: Maybe<Scalars["Boolean"]>;
909
938
  /** The text that this comment references. Only defined for inline comments. */
910
939
  quotedText?: Maybe<Scalars["String"]>;
911
940
  /** [INTERNAL] The child comment that resolves this thread. */
912
941
  resolvingCommentId?: Maybe<Scalars["String"]>;
913
942
  /** [INTERNAL] The user who resolved this thread. */
914
943
  resolvingUserId?: Maybe<Scalars["String"]>;
944
+ /** [INTERNAL] The identifiers of the users subscribing to this comment. */
945
+ subscriberIds?: Maybe<Array<Scalars["String"]>>;
915
946
  };
916
947
  /** A company related to issue's origin. */
917
948
  export declare type Company = Node & {
@@ -1075,6 +1106,8 @@ export declare type CustomView = Node & {
1075
1106
  owner: User;
1076
1107
  /** The filter applied to projects in the custom view. */
1077
1108
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
1109
+ /** Projects associated with the custom view. */
1110
+ projects: ProjectConnection;
1078
1111
  /** Whether the custom view is shared with everyone in the organization. */
1079
1112
  shared: Scalars["Boolean"];
1080
1113
  /** The team associated with the custom view. */
@@ -1103,6 +1136,16 @@ export declare type CustomViewIssuesArgs = {
1103
1136
  orderBy?: Maybe<PaginationOrderBy>;
1104
1137
  sort?: Maybe<Array<IssueSortInput>>;
1105
1138
  };
1139
+ /** A custom view that has been saved by a user. */
1140
+ export declare type CustomViewProjectsArgs = {
1141
+ after?: Maybe<Scalars["String"]>;
1142
+ before?: Maybe<Scalars["String"]>;
1143
+ filter?: Maybe<ProjectFilter>;
1144
+ first?: Maybe<Scalars["Int"]>;
1145
+ includeArchived?: Maybe<Scalars["Boolean"]>;
1146
+ last?: Maybe<Scalars["Int"]>;
1147
+ orderBy?: Maybe<PaginationOrderBy>;
1148
+ };
1106
1149
  export declare type CustomViewConnection = {
1107
1150
  __typename?: "CustomViewConnection";
1108
1151
  edges: Array<CustomViewEdge>;
@@ -1502,7 +1545,7 @@ export declare type DiaryEntry = Node & {
1502
1545
  /** The time at which the entity was archived. Null if the entity has not been archived. */
1503
1546
  archivedAt?: Maybe<Scalars["DateTime"]>;
1504
1547
  /** [Internal] The entry content as a Prosemirror document. */
1505
- bodyData: Scalars["String"];
1548
+ bodyData?: Maybe<Scalars["String"]>;
1506
1549
  /** The time at which the entity was created. */
1507
1550
  createdAt: Scalars["DateTime"];
1508
1551
  /** The date for which the entry is created */
@@ -1530,7 +1573,7 @@ export declare type DiaryEntryCreateInput = {
1530
1573
  /** [Internal] The comment content as a Prosemirror diaryEntry. */
1531
1574
  bodyData?: Maybe<Scalars["JSON"]>;
1532
1575
  /** The date for which the entry is created. */
1533
- date?: Maybe<Scalars["TimelessDate"]>;
1576
+ date: Scalars["TimelessDate"];
1534
1577
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1535
1578
  id?: Maybe<Scalars["String"]>;
1536
1579
  };
@@ -1593,6 +1636,8 @@ export declare type Document = Node & {
1593
1636
  sortOrder: Scalars["Float"];
1594
1637
  /** The document title. */
1595
1638
  title: Scalars["String"];
1639
+ /** A flag that indicates whether the document is in the trash bin. */
1640
+ trashed?: Maybe<Scalars["Boolean"]>;
1596
1641
  /**
1597
1642
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1598
1643
  * 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
@@ -1604,6 +1649,16 @@ export declare type Document = Node & {
1604
1649
  /** The canonical url for the document. */
1605
1650
  url: Scalars["String"];
1606
1651
  };
1652
+ /** A generic payload return from entity archive mutations. */
1653
+ export declare type DocumentArchivePayload = ArchivePayload & {
1654
+ __typename?: "DocumentArchivePayload";
1655
+ /** The archived/unarchived entity. Null if entity was deleted. */
1656
+ entity?: Maybe<Document>;
1657
+ /** The identifier of the last sync operation. */
1658
+ lastSyncId: Scalars["Float"];
1659
+ /** Whether the operation was successful. */
1660
+ success: Scalars["Boolean"];
1661
+ };
1607
1662
  /** Document filtering options. */
1608
1663
  export declare type DocumentCollectionFilter = {
1609
1664
  /** Compound filters, all of which need to be matched by the document. */
@@ -1714,7 +1769,7 @@ export declare type DocumentContentHistory = Node & {
1714
1769
  export declare type DocumentContentHistoryPayload = {
1715
1770
  __typename?: "DocumentContentHistoryPayload";
1716
1771
  /** The document content history entries. */
1717
- history?: Maybe<Array<DocumentContentHistoryType>>;
1772
+ history: Array<DocumentContentHistoryType>;
1718
1773
  /** Whether the operation was successful. */
1719
1774
  success: Scalars["Boolean"];
1720
1775
  };
@@ -1723,7 +1778,7 @@ export declare type DocumentContentHistoryType = {
1723
1778
  /** The ID of the author of the change. */
1724
1779
  actorIds?: Maybe<Array<Scalars["String"]>>;
1725
1780
  /** [Internal] The document content as Prosemirror document. */
1726
- contentData: Scalars["JSON"];
1781
+ contentData?: Maybe<Scalars["JSON"]>;
1727
1782
  /** 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. */
1728
1783
  contentDataSnapshotAt: Scalars["DateTime"];
1729
1784
  /** The date when the document content history entry was created. */
@@ -1875,6 +1930,8 @@ export declare type DocumentSearchResult = Node & {
1875
1930
  sortOrder: Scalars["Float"];
1876
1931
  /** The document title. */
1877
1932
  title: Scalars["String"];
1933
+ /** A flag that indicates whether the document is in the trash bin. */
1934
+ trashed?: Maybe<Scalars["Boolean"]>;
1878
1935
  /**
1879
1936
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1880
1937
  * 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
@@ -2116,9 +2173,11 @@ export declare type EntityExternalLinkCreateInput = {
2116
2173
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2117
2174
  id?: Maybe<Scalars["String"]>;
2118
2175
  /** Related initiative link. */
2119
- initiativeId: Scalars["String"];
2176
+ initiativeId?: Maybe<Scalars["String"]>;
2120
2177
  /** The label for the link. */
2121
2178
  label: Scalars["String"];
2179
+ /** Related project link. */
2180
+ projectId?: Maybe<Scalars["String"]>;
2122
2181
  /** The order of the item in the entities resources list. */
2123
2182
  sortOrder?: Maybe<Scalars["Float"]>;
2124
2183
  /** The URL of the link. */
@@ -2219,7 +2278,7 @@ export declare type ExternalUserEdge = {
2219
2278
  cursor: Scalars["String"];
2220
2279
  node: ExternalUser;
2221
2280
  };
2222
- /** [ALPHA] A facet. Facets are joins between entities. A facet can tie a custom view to a project, or a a project to a roadmap for example. */
2281
+ /** A facet. Facets are joins between entities. A facet can tie a custom view to a project, or a a project to a roadmap for example. */
2223
2282
  export declare type Facet = Node & {
2224
2283
  __typename?: "Facet";
2225
2284
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -2230,6 +2289,18 @@ export declare type Facet = Node & {
2230
2289
  id: Scalars["ID"];
2231
2290
  /** The sort order of the facet. */
2232
2291
  sortOrder: Scalars["Float"];
2292
+ /** The owning initiative. */
2293
+ sourceInitiative?: Maybe<Initiative>;
2294
+ /** The owning organization. */
2295
+ sourceOrganization?: Maybe<Organization>;
2296
+ /** The owning page. */
2297
+ sourcePage?: Maybe<FacetPageSource>;
2298
+ /** The owning project. */
2299
+ sourceProject?: Maybe<Project>;
2300
+ /** The owning team. */
2301
+ sourceTeam?: Maybe<Team>;
2302
+ /** The targeted custom view. */
2303
+ targetCustomView?: Maybe<CustomView>;
2233
2304
  /**
2234
2305
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2235
2306
  * 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
@@ -2249,6 +2320,9 @@ export declare type FacetEdge = {
2249
2320
  cursor: Scalars["String"];
2250
2321
  node: Facet;
2251
2322
  };
2323
+ export declare enum FacetPageSource {
2324
+ Projects = "projects"
2325
+ }
2252
2326
  /** User favorites presented in the sidebar. */
2253
2327
  export declare type Favorite = Node & {
2254
2328
  __typename?: "Favorite";
@@ -2264,6 +2338,8 @@ export declare type Favorite = Node & {
2264
2338
  cycle?: Maybe<Cycle>;
2265
2339
  /** The favorited document. */
2266
2340
  document?: Maybe<Document>;
2341
+ /** [INTERNAL] The favorited facet. */
2342
+ facet?: Maybe<Facet>;
2267
2343
  /** The name of the folder. Only applies to favorites of type folder. */
2268
2344
  folderName?: Maybe<Scalars["String"]>;
2269
2345
  /** The unique identifier of the entity. */
@@ -2323,7 +2399,7 @@ export declare type FavoriteCreateInput = {
2323
2399
  cycleId?: Maybe<Scalars["String"]>;
2324
2400
  /** The identifier of the document to favorite. */
2325
2401
  documentId?: Maybe<Scalars["String"]>;
2326
- /** [INTERNAL] The identifier of the facet to favorite. */
2402
+ /** The identifier of the facet to favorite. */
2327
2403
  facetId?: Maybe<Scalars["String"]>;
2328
2404
  /** The name of the favorite folder. */
2329
2405
  folderName?: Maybe<Scalars["String"]>;
@@ -2377,6 +2453,109 @@ export declare type FavoriteUpdateInput = {
2377
2453
  /** The position of the item in the favorites list. */
2378
2454
  sortOrder?: Maybe<Scalars["Float"]>;
2379
2455
  };
2456
+ /** A feature flag for a project. */
2457
+ export declare type FeatureFlag = Node & {
2458
+ __typename?: "FeatureFlag";
2459
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2460
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2461
+ /** The time at which the entity was created. */
2462
+ createdAt: Scalars["DateTime"];
2463
+ /** The user who created the feature flag. */
2464
+ creator?: Maybe<User>;
2465
+ /** The description of the feature flag. */
2466
+ description?: Maybe<Scalars["String"]>;
2467
+ /** Url to the feature flag provider's page about the feature flag. */
2468
+ externalUrl: Scalars["String"];
2469
+ /** The unique identifier of the entity. */
2470
+ id: Scalars["ID"];
2471
+ /** The integration providing the feature flag. */
2472
+ integration: Integration;
2473
+ /** Whether the feature flag is enabled. */
2474
+ isEnabled: Scalars["Boolean"];
2475
+ /** The unique key as defined by the feature flag provider. */
2476
+ key: Scalars["String"];
2477
+ /** The description of the feature flag. */
2478
+ lastStageUpdatedAt?: Maybe<Scalars["DateTime"]>;
2479
+ /** The user who last changed the stage of the feature flag. */
2480
+ lastStageUpdatedBy?: Maybe<User>;
2481
+ /** The organization of the feature flag. */
2482
+ organization: Organization;
2483
+ /** The pending rollout stage for the feature flag. */
2484
+ pendingRolloutStage?: Maybe<FeatureFlagRolloutStage>;
2485
+ /** The project the feature flag is associated with. */
2486
+ project?: Maybe<Project>;
2487
+ /** The rollout stage of the feature flag, should be defined for all feature flags in use. */
2488
+ rolloutStage: FeatureFlagRolloutStage;
2489
+ /** The status of the feature flag. */
2490
+ status: Scalars["String"];
2491
+ /**
2492
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2493
+ * 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
2494
+ * been updated after creation.
2495
+ */
2496
+ updatedAt: Scalars["DateTime"];
2497
+ };
2498
+ export declare type FeatureFlagConnection = {
2499
+ __typename?: "FeatureFlagConnection";
2500
+ edges: Array<FeatureFlagEdge>;
2501
+ nodes: Array<FeatureFlag>;
2502
+ pageInfo: PageInfo;
2503
+ };
2504
+ export declare type FeatureFlagEdge = {
2505
+ __typename?: "FeatureFlagEdge";
2506
+ /** Used in `before` and `after` args */
2507
+ cursor: Scalars["String"];
2508
+ node: FeatureFlag;
2509
+ };
2510
+ /** A rollout stage for a feature flag. */
2511
+ export declare type FeatureFlagRolloutStage = Node & {
2512
+ __typename?: "FeatureFlagRolloutStage";
2513
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2514
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2515
+ /** The time at which the entity was created. */
2516
+ createdAt: Scalars["DateTime"];
2517
+ /** The description of the rollout stage. */
2518
+ description?: Maybe<Scalars["String"]>;
2519
+ /** The unique identifier of the entity. */
2520
+ id: Scalars["ID"];
2521
+ /** The integration providing the feature flag. */
2522
+ integration: Integration;
2523
+ /** The name of the rollout stage. */
2524
+ name: Scalars["String"];
2525
+ /** The organization of the feature flag rollout stage. */
2526
+ organization: Organization;
2527
+ /** Which feature flag provider segments this rollout stage is associated with. */
2528
+ segmentKeys: Array<Scalars["String"]>;
2529
+ /** The order of the rollout stages within an organization. */
2530
+ sortOrder: Scalars["Float"];
2531
+ /** The type of the feature flag rollout stage. */
2532
+ type: FeatureFlagRolloutStageType;
2533
+ /**
2534
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2535
+ * 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
2536
+ * been updated after creation.
2537
+ */
2538
+ updatedAt: Scalars["DateTime"];
2539
+ };
2540
+ export declare type FeatureFlagRolloutStageConnection = {
2541
+ __typename?: "FeatureFlagRolloutStageConnection";
2542
+ edges: Array<FeatureFlagRolloutStageEdge>;
2543
+ nodes: Array<FeatureFlagRolloutStage>;
2544
+ pageInfo: PageInfo;
2545
+ };
2546
+ export declare type FeatureFlagRolloutStageEdge = {
2547
+ __typename?: "FeatureFlagRolloutStageEdge";
2548
+ /** Used in `before` and `after` args */
2549
+ cursor: Scalars["String"];
2550
+ node: FeatureFlagRolloutStage;
2551
+ };
2552
+ /** The type of a feature flag rollout stage. */
2553
+ export declare enum FeatureFlagRolloutStageType {
2554
+ Dev = "dev",
2555
+ Full = "full",
2556
+ Internal = "internal",
2557
+ Partial = "partial"
2558
+ }
2380
2559
  export declare type FrontAttachmentPayload = {
2381
2560
  __typename?: "FrontAttachmentPayload";
2382
2561
  /** The identifier of the last sync operation. */
@@ -2561,6 +2740,28 @@ export declare type GitHubCommitIntegrationPayload = {
2561
2740
  /** The webhook secret to provide to GitHub. */
2562
2741
  webhookSecret: Scalars["String"];
2563
2742
  };
2743
+ /** Metadata and settings for a GitHub import integration. */
2744
+ export declare type GitHubImportSettings = {
2745
+ __typename?: "GitHubImportSettings";
2746
+ /** The avatar URL for the GitHub organization. */
2747
+ orgAvatarUrl: Scalars["String"];
2748
+ /** The GitHub organization's name. */
2749
+ orgLogin: Scalars["String"];
2750
+ /** The type of Github org */
2751
+ orgType: GithubOrgType;
2752
+ /** The names of the repositories connected for the GitHub integration. */
2753
+ repositories: Array<GitHubRepo>;
2754
+ };
2755
+ export declare type GitHubImportSettingsInput = {
2756
+ /** The avatar URL for the GitHub organization. */
2757
+ orgAvatarUrl: Scalars["String"];
2758
+ /** The GitHub organization's name. */
2759
+ orgLogin: Scalars["String"];
2760
+ /** The type of Github org */
2761
+ orgType: GithubOrgType;
2762
+ /** The names of the repositories connected for the GitHub integration. */
2763
+ repositories: Array<GitHubRepoInput>;
2764
+ };
2564
2765
  /** Metadata and settings for a GitHub Personal integration. */
2565
2766
  export declare type GitHubPersonalSettings = {
2566
2767
  __typename?: "GitHubPersonalSettings";
@@ -2592,6 +2793,8 @@ export declare type GitHubSettings = {
2592
2793
  orgAvatarUrl: Scalars["String"];
2593
2794
  /** The GitHub organization's name. */
2594
2795
  orgLogin: Scalars["String"];
2796
+ /** The type of Github org */
2797
+ orgType?: Maybe<GithubOrgType>;
2595
2798
  /** The names of the repositories connected for the GitHub integration. */
2596
2799
  repositories?: Maybe<Array<GitHubRepo>>;
2597
2800
  /** Mapping of team to repository for syncing. */
@@ -2602,6 +2805,8 @@ export declare type GitHubSettingsInput = {
2602
2805
  orgAvatarUrl: Scalars["String"];
2603
2806
  /** The GitHub organization's name. */
2604
2807
  orgLogin: Scalars["String"];
2808
+ /** The type of Github org */
2809
+ orgType?: Maybe<GithubOrgType>;
2605
2810
  /** The names of the repositories connected for the GitHub integration. */
2606
2811
  repositories?: Maybe<Array<GitHubRepoInput>>;
2607
2812
  /** Mapping of team to repository for syncing. */
@@ -2625,51 +2830,29 @@ export declare type GitLabSettingsInput = {
2625
2830
  /** The self-hosted URL of the GitLab instance. */
2626
2831
  url?: Maybe<Scalars["String"]>;
2627
2832
  };
2628
- /** GitHub OAuth token, plus information about the organizations the user is a member of. */
2629
- export declare type GithubOAuthTokenPayload = {
2630
- __typename?: "GithubOAuthTokenPayload";
2631
- /** A list of the GitHub organizations the user is a member of with attached repositories. */
2632
- organizations?: Maybe<Array<GithubOrg>>;
2633
- /** The OAuth token if the operation to fetch it was successful. */
2634
- token?: Maybe<Scalars["String"]>;
2635
- };
2636
- /** Relevant information for the GitHub organization. */
2637
- export declare type GithubOrg = {
2638
- __typename?: "GithubOrg";
2639
- /** GitHub organization id. */
2640
- id: Scalars["String"];
2641
- /** Whether or not this org is the user's personal repositories. */
2642
- isPersonal?: Maybe<Scalars["Boolean"]>;
2643
- /** The login for the GitHub organization. */
2644
- login: Scalars["String"];
2645
- /** Repositories that the organization owns. */
2646
- repositories: Array<GithubRepo>;
2647
- };
2648
- /** Relevant information for the GitHub repository. */
2649
- export declare type GithubRepo = {
2650
- __typename?: "GithubRepo";
2651
- /** The id of the GitHub repository. */
2652
- id: Scalars["String"];
2653
- /** The name of the GitHub repository. */
2654
- name: Scalars["String"];
2655
- };
2833
+ export declare enum GithubOrgType {
2834
+ Organization = "organization",
2835
+ User = "user"
2836
+ }
2656
2837
  /** Google Sheets specific settings. */
2657
2838
  export declare type GoogleSheetsSettings = {
2658
2839
  __typename?: "GoogleSheetsSettings";
2659
2840
  sheetId: Scalars["Float"];
2660
2841
  spreadsheetId: Scalars["String"];
2661
2842
  spreadsheetUrl: Scalars["String"];
2662
- updatedIssuesAt: Scalars["DateTime"];
2843
+ updatedIssuesAt?: Maybe<Scalars["DateTime"]>;
2663
2844
  };
2664
2845
  export declare type GoogleSheetsSettingsInput = {
2665
2846
  sheetId: Scalars["Float"];
2666
2847
  spreadsheetId: Scalars["String"];
2667
2848
  spreadsheetUrl: Scalars["String"];
2668
- updatedIssuesAt: Scalars["DateTime"];
2849
+ updatedIssuesAt?: Maybe<Scalars["DateTime"]>;
2669
2850
  };
2670
2851
  export declare type GoogleUserAccountAuthInput = {
2671
2852
  /** Code returned from Google's OAuth flow. */
2672
2853
  code: Scalars["String"];
2854
+ /** An optional parameter to disable new user signup and force login. Default: false. */
2855
+ disallowSignup?: Maybe<Scalars["Boolean"]>;
2673
2856
  /** An optional invite link for an organization used to populate available organizations. */
2674
2857
  inviteLink?: Maybe<Scalars["String"]>;
2675
2858
  /** The URI to redirect the user to. */
@@ -2714,6 +2897,8 @@ export declare type Initiative = Node & {
2714
2897
  creator: User;
2715
2898
  /** [Internal] The description of the initiative. */
2716
2899
  description?: Maybe<Scalars["String"]>;
2900
+ /** The icon of the initiative. */
2901
+ icon?: Maybe<Scalars["String"]>;
2717
2902
  /** The unique identifier of the entity. */
2718
2903
  id: Scalars["ID"];
2719
2904
  /** Links associated with the initiative. */
@@ -2730,10 +2915,14 @@ export declare type Initiative = Node & {
2730
2915
  slugId: Scalars["String"];
2731
2916
  /** The sort order of the initiative within the organization. */
2732
2917
  sortOrder: Scalars["Float"];
2918
+ /** The status of the initiative. One of Planned, Active, Completed */
2919
+ status: InitiativeStatus;
2733
2920
  /** The estimated completion date of the initiative. */
2734
2921
  targetDate?: Maybe<Scalars["TimelessDate"]>;
2735
2922
  /** [INTERNAL] The resolution of the initiative's estimated completion date. */
2736
2923
  targetDateResolution?: Maybe<DateResolutionType>;
2924
+ /** A flag that indicates whether the initiative is in the trash bin. */
2925
+ trashed?: Maybe<Scalars["Boolean"]>;
2737
2926
  /**
2738
2927
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2739
2928
  * 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
@@ -2807,6 +2996,8 @@ export declare type InitiativeCreateInput = {
2807
2996
  color?: Maybe<Scalars["String"]>;
2808
2997
  /** [Internal] The description of the initiative. */
2809
2998
  description?: Maybe<Scalars["String"]>;
2999
+ /** The initiative's icon. */
3000
+ icon?: Maybe<Scalars["String"]>;
2810
3001
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2811
3002
  id?: Maybe<Scalars["String"]>;
2812
3003
  /** The name of the initiative. */
@@ -2815,6 +3006,12 @@ export declare type InitiativeCreateInput = {
2815
3006
  ownerId?: Maybe<Scalars["String"]>;
2816
3007
  /** The sort order of the initiative within the organization. */
2817
3008
  sortOrder?: Maybe<Scalars["Float"]>;
3009
+ /** The initiative's status. */
3010
+ status?: Maybe<InitiativeStatus>;
3011
+ /** The estimated completion date of the initiative. */
3012
+ targetDate?: Maybe<Scalars["TimelessDate"]>;
3013
+ /** The resolution of the initiative's estimated completion date. */
3014
+ targetDateResolution?: Maybe<DateResolutionType>;
2818
3015
  };
2819
3016
  export declare type InitiativeEdge = {
2820
3017
  __typename?: "InitiativeEdge";
@@ -2841,6 +3038,43 @@ export declare type InitiativeFilter = {
2841
3038
  /** Comparator for the updated at date. */
2842
3039
  updatedAt?: Maybe<DateComparator>;
2843
3040
  };
3041
+ /** An initiative related notification. */
3042
+ export declare type InitiativeNotification = Entity & Node & Notification & {
3043
+ __typename?: "InitiativeNotification";
3044
+ /** The user that caused the notification. */
3045
+ actor?: Maybe<User>;
3046
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
3047
+ archivedAt?: Maybe<Scalars["DateTime"]>;
3048
+ /** The bot that caused the notification. */
3049
+ botActor?: Maybe<ActorBot>;
3050
+ /** The time at which the entity was created. */
3051
+ createdAt: Scalars["DateTime"];
3052
+ /**
3053
+ * The time at when an email reminder for this notification was sent to the user. Null, if no email
3054
+ * reminder has been sent.
3055
+ */
3056
+ emailedAt?: Maybe<Scalars["DateTime"]>;
3057
+ /** The external user that caused the notification. */
3058
+ externalUserActor?: Maybe<ExternalUser>;
3059
+ /** The unique identifier of the entity. */
3060
+ id: Scalars["ID"];
3061
+ /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
3062
+ readAt?: Maybe<Scalars["DateTime"]>;
3063
+ /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
3064
+ snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
3065
+ /** Notification type. */
3066
+ type: Scalars["String"];
3067
+ /** The time at which a notification was unsnoozed.. */
3068
+ unsnoozedAt?: Maybe<Scalars["DateTime"]>;
3069
+ /**
3070
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
3071
+ * 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
3072
+ * been updated after creation.
3073
+ */
3074
+ updatedAt: Scalars["DateTime"];
3075
+ /** The user that received the notification. */
3076
+ user: User;
3077
+ };
2844
3078
  /** [Internal] The payload returned by the initiative mutations. */
2845
3079
  export declare type InitiativePayload = {
2846
3080
  __typename?: "InitiativePayload";
@@ -2851,6 +3085,11 @@ export declare type InitiativePayload = {
2851
3085
  /** Whether the operation was successful. */
2852
3086
  success: Scalars["Boolean"];
2853
3087
  };
3088
+ export declare enum InitiativeStatus {
3089
+ Active = "Active",
3090
+ Completed = "Completed",
3091
+ Planned = "Planned"
3092
+ }
2854
3093
  /** [INTERNAL] Join table between projects and initiatives. */
2855
3094
  export declare type InitiativeToProject = Node & {
2856
3095
  __typename?: "InitiativeToProject";
@@ -2917,14 +3156,20 @@ export declare type InitiativeUpdateInput = {
2917
3156
  color?: Maybe<Scalars["String"]>;
2918
3157
  /** [Internal] The description of the initiative. */
2919
3158
  description?: Maybe<Scalars["String"]>;
3159
+ /** The initiative's icon. */
3160
+ icon?: Maybe<Scalars["String"]>;
2920
3161
  /** The name of the initiative. */
2921
3162
  name?: Maybe<Scalars["String"]>;
2922
3163
  /** The owner of the initiative. */
2923
3164
  ownerId?: Maybe<Scalars["String"]>;
2924
3165
  /** The sort order of the initiative within the organization. */
2925
3166
  sortOrder?: Maybe<Scalars["Float"]>;
3167
+ /** The initiative's status. */
3168
+ status?: Maybe<InitiativeStatus>;
2926
3169
  /** The estimated completion date of the initiative. */
2927
3170
  targetDate?: Maybe<Scalars["TimelessDate"]>;
3171
+ /** The resolution of the initiative's estimated completion date. */
3172
+ targetDateResolution?: Maybe<DateResolutionType>;
2928
3173
  };
2929
3174
  /** An integration with an external service. */
2930
3175
  export declare type Integration = Node & {
@@ -2993,11 +3238,13 @@ export declare type IntegrationRequestPayload = {
2993
3238
  export declare enum IntegrationService {
2994
3239
  Airbyte = "airbyte",
2995
3240
  Discord = "discord",
3241
+ Email = "email",
2996
3242
  Figma = "figma",
2997
3243
  FigmaPlugin = "figmaPlugin",
2998
3244
  Front = "front",
2999
3245
  Github = "github",
3000
3246
  GithubCommit = "githubCommit",
3247
+ GithubImport = "githubImport",
3001
3248
  GithubPersonal = "githubPersonal",
3002
3249
  Gitlab = "gitlab",
3003
3250
  GoogleCalendarPersonal = "googleCalendarPersonal",
@@ -3005,6 +3252,7 @@ export declare enum IntegrationService {
3005
3252
  Intercom = "intercom",
3006
3253
  Jira = "jira",
3007
3254
  JiraPersonal = "jiraPersonal",
3255
+ LaunchDarkly = "launchDarkly",
3008
3256
  Loom = "loom",
3009
3257
  Notion = "notion",
3010
3258
  Opsgenie = "opsgenie",
@@ -3012,6 +3260,7 @@ export declare enum IntegrationService {
3012
3260
  Sentry = "sentry",
3013
3261
  Slack = "slack",
3014
3262
  SlackAsks = "slackAsks",
3263
+ SlackCustomViewNotifications = "slackCustomViewNotifications",
3015
3264
  SlackOrgProjectUpdatesPost = "slackOrgProjectUpdatesPost",
3016
3265
  SlackPersonal = "slackPersonal",
3017
3266
  SlackPost = "slackPost",
@@ -3024,18 +3273,21 @@ export declare type IntegrationSettings = {
3024
3273
  __typename?: "IntegrationSettings";
3025
3274
  front?: Maybe<FrontSettings>;
3026
3275
  gitHub?: Maybe<GitHubSettings>;
3276
+ gitHubImport?: Maybe<GitHubImportSettings>;
3027
3277
  gitHubPersonal?: Maybe<GitHubPersonalSettings>;
3028
3278
  gitLab?: Maybe<GitLabSettings>;
3029
3279
  googleSheets?: Maybe<GoogleSheetsSettings>;
3030
3280
  intercom?: Maybe<IntercomSettings>;
3031
3281
  jira?: Maybe<JiraSettings>;
3032
3282
  jiraPersonal?: Maybe<JiraPersonalSettings>;
3283
+ launchDarkly?: Maybe<LaunchDarklySettings>;
3033
3284
  notion?: Maybe<NotionSettings>;
3034
3285
  opsgenie?: Maybe<OpsgenieSettings>;
3035
3286
  pagerDuty?: Maybe<PagerDutySettings>;
3036
3287
  sentry?: Maybe<SentrySettings>;
3037
3288
  slack?: Maybe<SlackSettings>;
3038
3289
  slackAsks?: Maybe<SlackAsksSettings>;
3290
+ slackCustomViewNotifications?: Maybe<SlackPostSettings>;
3039
3291
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
3040
3292
  slackPost?: Maybe<SlackPostSettings>;
3041
3293
  slackProjectPost?: Maybe<SlackPostSettings>;
@@ -3044,18 +3296,21 @@ export declare type IntegrationSettings = {
3044
3296
  export declare type IntegrationSettingsInput = {
3045
3297
  front?: Maybe<FrontSettingsInput>;
3046
3298
  gitHub?: Maybe<GitHubSettingsInput>;
3299
+ gitHubImport?: Maybe<GitHubImportSettingsInput>;
3047
3300
  gitHubPersonal?: Maybe<GitHubPersonalSettingsInput>;
3048
3301
  gitLab?: Maybe<GitLabSettingsInput>;
3049
3302
  googleSheets?: Maybe<GoogleSheetsSettingsInput>;
3050
3303
  intercom?: Maybe<IntercomSettingsInput>;
3051
3304
  jira?: Maybe<JiraSettingsInput>;
3052
3305
  jiraPersonal?: Maybe<JiraPersonalSettingsInput>;
3306
+ launchDarkly?: Maybe<LaunchDarklySettingsInput>;
3053
3307
  notion?: Maybe<NotionSettingsInput>;
3054
3308
  opsgenie?: Maybe<OpsgenieInput>;
3055
3309
  pagerDuty?: Maybe<PagerDutyInput>;
3056
3310
  sentry?: Maybe<SentrySettingsInput>;
3057
3311
  slack?: Maybe<SlackSettingsInput>;
3058
3312
  slackAsks?: Maybe<SlackAsksSettingsInput>;
3313
+ slackCustomViewNotifications?: Maybe<SlackPostSettingsInput>;
3059
3314
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
3060
3315
  slackPost?: Maybe<SlackPostSettingsInput>;
3061
3316
  slackProjectPost?: Maybe<SlackPostSettingsInput>;
@@ -3127,6 +3382,8 @@ export declare type IntegrationsSettings = Node & {
3127
3382
  project?: Maybe<Project>;
3128
3383
  /** Whether to send a Slack message when a new issue is added to triage. */
3129
3384
  slackIssueAddedToTriage?: Maybe<Scalars["Boolean"]>;
3385
+ /** Whether to send a Slack message when an issue is added to the custom view. */
3386
+ slackIssueAddedToView?: Maybe<Scalars["Boolean"]>;
3130
3387
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3131
3388
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3132
3389
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3167,6 +3424,8 @@ export declare type IntegrationsSettingsCreateInput = {
3167
3424
  projectId?: Maybe<Scalars["String"]>;
3168
3425
  /** Whether to send a Slack message when a new issue is added to triage. */
3169
3426
  slackIssueAddedToTriage?: Maybe<Scalars["Boolean"]>;
3427
+ /** Whether to send a Slack message when an issue is added to a view. */
3428
+ slackIssueAddedToView?: Maybe<Scalars["Boolean"]>;
3170
3429
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3171
3430
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3172
3431
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3206,6 +3465,8 @@ export declare type IntegrationsSettingsPayload = {
3206
3465
  export declare type IntegrationsSettingsUpdateInput = {
3207
3466
  /** Whether to send a Slack message when a new issue is added to triage. */
3208
3467
  slackIssueAddedToTriage?: Maybe<Scalars["Boolean"]>;
3468
+ /** Whether to send a Slack message when an issue is added to a view. */
3469
+ slackIssueAddedToView?: Maybe<Scalars["Boolean"]>;
3209
3470
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3210
3471
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3211
3472
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3336,6 +3597,10 @@ export declare type Issue = Node & {
3336
3597
  project?: Maybe<Project>;
3337
3598
  /** The projectMilestone that the issue is associated with. */
3338
3599
  projectMilestone?: Maybe<ProjectMilestone>;
3600
+ /** Emoji reaction summary, grouped by emoji type. */
3601
+ reactionData: Scalars["JSONObject"];
3602
+ /** Reactions associated with the issue. */
3603
+ reactions: Array<Reaction>;
3339
3604
  /** Relations associated with this issue. */
3340
3605
  relations: IssueRelationConnection;
3341
3606
  /** The time at which the issue's SLA will breach. */
@@ -3536,6 +3801,8 @@ export declare type IssueCollectionFilter = {
3536
3801
  project?: Maybe<NullableProjectFilter>;
3537
3802
  /** Filters that the issues project milestone must satisfy. */
3538
3803
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
3804
+ /** Filters that the issues reactions must satisfy. */
3805
+ reactions?: Maybe<ReactionCollectionFilter>;
3539
3806
  /** [Internal] Comparator for the issues content. */
3540
3807
  searchableContent?: Maybe<ContentComparator>;
3541
3808
  /** Comparator for the issues sla status. */
@@ -3635,7 +3902,7 @@ export declare type IssueDraft = Node & {
3635
3902
  /** The user assigned to the draft. */
3636
3903
  assigneeId?: Maybe<Scalars["String"]>;
3637
3904
  /** Serialized array of JSONs representing attachments. */
3638
- attachments: Scalars["JSONObject"];
3905
+ attachments?: Maybe<Scalars["JSONObject"]>;
3639
3906
  /** The time at which the entity was created. */
3640
3907
  createdAt: Scalars["DateTime"];
3641
3908
  /** The user who created the draft. */
@@ -3743,6 +4010,8 @@ export declare type IssueFilter = {
3743
4010
  project?: Maybe<NullableProjectFilter>;
3744
4011
  /** Filters that the issues project milestone must satisfy. */
3745
4012
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
4013
+ /** Filters that the issues reactions must satisfy. */
4014
+ reactions?: Maybe<ReactionCollectionFilter>;
3746
4015
  /** [Internal] Comparator for the issues content. */
3747
4016
  searchableContent?: Maybe<ContentComparator>;
3748
4017
  /** Comparator for the issues sla status. */
@@ -3776,12 +4045,18 @@ export declare type IssueFilterSuggestionPayload = {
3776
4045
  /** A record of changes to an issue. */
3777
4046
  export declare type IssueHistory = Node & {
3778
4047
  __typename?: "IssueHistory";
3779
- /** The user who made these changes. If null, possibly means that the change made by an integration. */
4048
+ /**
4049
+ * The actor that performed the actions. This field may be empty in the case of integrations or automations.
4050
+ * @deprecated Use actors instead.
4051
+ */
3780
4052
  actor?: Maybe<User>;
3781
4053
  /** The id of user who made these changes. If null, possibly means that the change made by an integration. */
3782
4054
  actorId?: Maybe<Scalars["String"]>;
4055
+ /** The actors that performed the actions. This field may be empty in the case of integrations or automations. */
4056
+ actors: Array<User>;
3783
4057
  /** ID's of labels that were added. */
3784
4058
  addedLabelIds?: Maybe<Array<Scalars["String"]>>;
4059
+ /** The labels that were added to the issue. */
3785
4060
  addedLabels?: Maybe<Array<IssueLabel>>;
3786
4061
  /** Whether the issue is archived at the time of this history entry. */
3787
4062
  archived?: Maybe<Scalars["Boolean"]>;
@@ -3801,11 +4076,11 @@ export declare type IssueHistory = Node & {
3801
4076
  changes?: Maybe<Scalars["JSONObject"]>;
3802
4077
  /** The time at which the entity was created. */
3803
4078
  createdAt: Scalars["DateTime"];
3804
- /** The user from whom the issue was re-assigned from. */
4079
+ /** The user that was unassigned from the issue. */
3805
4080
  fromAssignee?: Maybe<User>;
3806
4081
  /** The id of user from whom the issue was re-assigned from. */
3807
4082
  fromAssigneeId?: Maybe<Scalars["String"]>;
3808
- /** The previous cycle of the issue. */
4083
+ /** The cycle that the issue was moved from. */
3809
4084
  fromCycle?: Maybe<Cycle>;
3810
4085
  /** The id of previous cycle of the issue. */
3811
4086
  fromCycleId?: Maybe<Scalars["String"]>;
@@ -3813,21 +4088,21 @@ export declare type IssueHistory = Node & {
3813
4088
  fromDueDate?: Maybe<Scalars["TimelessDate"]>;
3814
4089
  /** What the estimate was changed from. */
3815
4090
  fromEstimate?: Maybe<Scalars["Float"]>;
3816
- /** The previous parent of the issue. */
4091
+ /** The parent issue that the issue was moved from. */
3817
4092
  fromParent?: Maybe<Issue>;
3818
4093
  /** The id of previous parent of the issue. */
3819
4094
  fromParentId?: Maybe<Scalars["String"]>;
3820
4095
  /** What the priority was changed from. */
3821
4096
  fromPriority?: Maybe<Scalars["Float"]>;
3822
- /** The previous project of the issue. */
4097
+ /** The project that the issue was moved from. */
3823
4098
  fromProject?: Maybe<Project>;
3824
4099
  /** The id of previous project of the issue. */
3825
4100
  fromProjectId?: Maybe<Scalars["String"]>;
3826
- /** The previous workflow state of the issue. */
4101
+ /** The state that the issue was moved from. */
3827
4102
  fromState?: Maybe<WorkflowState>;
3828
4103
  /** The id of previous workflow state of the issue. */
3829
4104
  fromStateId?: Maybe<Scalars["String"]>;
3830
- /** The team from which the issue was moved from. */
4105
+ /** The team that the issue was moved from. */
3831
4106
  fromTeam?: Maybe<Team>;
3832
4107
  /** The id of team from which the issue was moved from. */
3833
4108
  fromTeamId?: Maybe<Scalars["String"]>;
@@ -3843,8 +4118,9 @@ export declare type IssueHistory = Node & {
3843
4118
  relationChanges?: Maybe<Array<IssueRelationHistoryPayload>>;
3844
4119
  /** ID's of labels that were removed. */
3845
4120
  removedLabelIds?: Maybe<Array<Scalars["String"]>>;
4121
+ /** The labels that were removed from the issue. */
3846
4122
  removedLabels?: Maybe<Array<IssueLabel>>;
3847
- /** The user to whom the issue was assigned to. */
4123
+ /** The user that was assigned to the issue. */
3848
4124
  toAssignee?: Maybe<User>;
3849
4125
  /** The id of user to whom the issue was assigned to. */
3850
4126
  toAssigneeId?: Maybe<Scalars["String"]>;
@@ -3852,7 +4128,7 @@ export declare type IssueHistory = Node & {
3852
4128
  toConvertedProject?: Maybe<Project>;
3853
4129
  /** The id of new project created from the issue. */
3854
4130
  toConvertedProjectId?: Maybe<Scalars["String"]>;
3855
- /** The new cycle of the issue. */
4131
+ /** The cycle that the issue was moved to. */
3856
4132
  toCycle?: Maybe<Cycle>;
3857
4133
  /** The id of new cycle of the issue. */
3858
4134
  toCycleId?: Maybe<Scalars["String"]>;
@@ -3860,21 +4136,21 @@ export declare type IssueHistory = Node & {
3860
4136
  toDueDate?: Maybe<Scalars["TimelessDate"]>;
3861
4137
  /** What the estimate was changed to. */
3862
4138
  toEstimate?: Maybe<Scalars["Float"]>;
3863
- /** The new parent of the issue. */
4139
+ /** The parent issue that the issue was moved to. */
3864
4140
  toParent?: Maybe<Issue>;
3865
4141
  /** The id of new parent of the issue. */
3866
4142
  toParentId?: Maybe<Scalars["String"]>;
3867
4143
  /** What the priority was changed to. */
3868
4144
  toPriority?: Maybe<Scalars["Float"]>;
3869
- /** The new project of the issue. */
4145
+ /** The project that the issue was moved to. */
3870
4146
  toProject?: Maybe<Project>;
3871
4147
  /** The id of new project of the issue. */
3872
4148
  toProjectId?: Maybe<Scalars["String"]>;
3873
- /** The new workflow state of the issue. */
4149
+ /** The state that the issue was moved to. */
3874
4150
  toState?: Maybe<WorkflowState>;
3875
4151
  /** The id of new workflow state of the issue. */
3876
4152
  toStateId?: Maybe<Scalars["String"]>;
3877
- /** The team to which the issue was moved to. */
4153
+ /** The team that the issue was moved to. */
3878
4154
  toTeam?: Maybe<Team>;
3879
4155
  /** The id of team to which the issue was moved to. */
3880
4156
  toTeamId?: Maybe<Scalars["String"]>;
@@ -3882,6 +4158,7 @@ export declare type IssueHistory = Node & {
3882
4158
  toTitle?: Maybe<Scalars["String"]>;
3883
4159
  /** Whether the issue was trashed or un-trashed. */
3884
4160
  trashed?: Maybe<Scalars["Boolean"]>;
4161
+ /** The users that were notified of the issue. */
3885
4162
  triageResponsibilityNotifiedUsers?: Maybe<Array<User>>;
3886
4163
  /**
3887
4164
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
@@ -3927,6 +4204,8 @@ export declare type IssueImport = Node & {
3927
4204
  progress?: Maybe<Scalars["Float"]>;
3928
4205
  /** The service from which data will be imported. */
3929
4206
  service: Scalars["String"];
4207
+ /** Metadata related to import service. */
4208
+ serviceMetadata?: Maybe<Scalars["JSONObject"]>;
3930
4209
  /** The status for the import job. */
3931
4210
  status: Scalars["String"];
3932
4211
  /** New team's name in cases when teamId not set. */
@@ -3970,6 +4249,14 @@ export declare type IssueImportPayload = {
3970
4249
  /** Whether the operation was successful. */
3971
4250
  success: Scalars["Boolean"];
3972
4251
  };
4252
+ /** Whether an issue import can be synced at the end of an import or not */
4253
+ export declare type IssueImportSyncCheckPayload = {
4254
+ __typename?: "IssueImportSyncCheckPayload";
4255
+ /** Returns true if the import can be synced, false otherwise */
4256
+ canSync: Scalars["Boolean"];
4257
+ /** An error message with a root cause of why the import cannot be synced */
4258
+ error?: Maybe<Scalars["String"]>;
4259
+ };
3973
4260
  export declare type IssueImportUpdateInput = {
3974
4261
  /** The mapping configuration for the import. */
3975
4262
  mapping: Scalars["JSONObject"];
@@ -4357,6 +4644,10 @@ export declare type IssueSearchResult = Node & {
4357
4644
  project?: Maybe<Project>;
4358
4645
  /** The projectMilestone that the issue is associated with. */
4359
4646
  projectMilestone?: Maybe<ProjectMilestone>;
4647
+ /** Emoji reaction summary, grouped by emoji type. */
4648
+ reactionData: Scalars["JSONObject"];
4649
+ /** Reactions associated with the issue. */
4650
+ reactions: Array<Reaction>;
4360
4651
  /** Relations associated with this issue. */
4361
4652
  relations: IssueRelationConnection;
4362
4653
  /** The time at which the issue's SLA will breach. */
@@ -4572,7 +4863,9 @@ export declare type JiraConfigurationInput = {
4572
4863
  email: Scalars["String"];
4573
4864
  /** The Jira installation hostname. */
4574
4865
  hostname: Scalars["String"];
4575
- /** The Jira project keys to scope the integration to. */
4866
+ /** Whether this integration will be setup using the manual webhook flow. */
4867
+ manualSetup?: Maybe<Scalars["Boolean"]>;
4868
+ /** [DEPRECATED] The Jira project keys to scope the integration to. */
4576
4869
  project?: Maybe<Scalars["String"]>;
4577
4870
  };
4578
4871
  /** Tuple for mapping Jira projects to Linear teams. */
@@ -4630,26 +4923,38 @@ export declare type JiraSettings = {
4630
4923
  __typename?: "JiraSettings";
4631
4924
  /** Whether this integration is for Jira Server or not. */
4632
4925
  isJiraServer?: Maybe<Scalars["Boolean"]>;
4926
+ /** Whether this integration is using a manual setup flow. */
4927
+ manualSetup?: Maybe<Scalars["Boolean"]>;
4633
4928
  /** The mapping of Jira project id => Linear team id. */
4634
4929
  projectMapping?: Maybe<Array<JiraLinearMapping>>;
4635
4930
  /** The Jira projects for the organization. */
4636
4931
  projects: Array<JiraProjectData>;
4932
+ /** Whether the user needs to provide setup information about the webhook to complete the integration setup. Only relevant for integrations that use a manual setup flow */
4933
+ setupPending?: Maybe<Scalars["Boolean"]>;
4637
4934
  };
4638
4935
  export declare type JiraSettingsInput = {
4639
4936
  /** Whether this integration is for Jira Server or not. */
4640
4937
  isJiraServer?: Maybe<Scalars["Boolean"]>;
4938
+ /** Whether this integration is using a manual setup flow. */
4939
+ manualSetup?: Maybe<Scalars["Boolean"]>;
4641
4940
  /** The mapping of Jira project id => Linear team id. */
4642
4941
  projectMapping?: Maybe<Array<JiraLinearMappingInput>>;
4643
4942
  /** The Jira projects for the organization. */
4644
4943
  projects: Array<JiraProjectDataInput>;
4944
+ /** Whether the user needs to provide setup information about the webhook to complete the integration setup. Only relevant for integrations that use a manual setup flow */
4945
+ setupPending?: Maybe<Scalars["Boolean"]>;
4645
4946
  };
4646
4947
  export declare type JiraUpdateInput = {
4948
+ /** Whether to delete the current manual webhook configuration. */
4949
+ deleteWebhook?: Maybe<Scalars["Boolean"]>;
4647
4950
  /** The id of the integration to update. */
4648
4951
  id: Scalars["String"];
4649
4952
  /** Whether to refresh Jira metadata for the integration. */
4650
4953
  updateMetadata?: Maybe<Scalars["Boolean"]>;
4651
4954
  /** Whether to refresh Jira Projects for the integration. */
4652
4955
  updateProjects?: Maybe<Scalars["Boolean"]>;
4956
+ /** Webhook secret for a new manual configuration. */
4957
+ webhookSecret?: Maybe<Scalars["String"]>;
4653
4958
  };
4654
4959
  export declare type JoinOrganizationInput = {
4655
4960
  /** An optional invite link for an organization. */
@@ -4702,6 +5007,20 @@ export declare type LabelSort = {
4702
5007
  /** The order for the individual sort */
4703
5008
  order?: Maybe<PaginationSortOrder>;
4704
5009
  };
5010
+ /** LaunchDarkly specific settings. */
5011
+ export declare type LaunchDarklySettings = {
5012
+ __typename?: "LaunchDarklySettings";
5013
+ /** The environment of the LaunchDarkly integration. */
5014
+ environment: Scalars["String"];
5015
+ /** The project key of the LaunchDarkly integration. */
5016
+ projectKey: Scalars["String"];
5017
+ };
5018
+ export declare type LaunchDarklySettingsInput = {
5019
+ /** The environment of the LaunchDarkly integration. */
5020
+ environment: Scalars["String"];
5021
+ /** The project key of the LaunchDarkly integration. */
5022
+ projectKey: Scalars["String"];
5023
+ };
4705
5024
  export declare type LogoutResponse = {
4706
5025
  __typename?: "LogoutResponse";
4707
5026
  /** Whether the operation was successful. */
@@ -4725,9 +5044,9 @@ export declare type Mutation = {
4725
5044
  __typename?: "Mutation";
4726
5045
  /** Creates an integration api key for Airbyte to connect with Linear. */
4727
5046
  airbyteIntegrationConnect: IntegrationPayload;
4728
- /** Creates a new API key. */
5047
+ /** [INTERNAL] Creates a new API key. */
4729
5048
  apiKeyCreate: ApiKeyPayload;
4730
- /** Deletes an API key. */
5049
+ /** [INTERNAL] Deletes an API key. */
4731
5050
  apiKeyDelete: DeletePayload;
4732
5051
  /**
4733
5052
  * [DEPRECATED] Archives an issue attachment.
@@ -4758,6 +5077,8 @@ export declare type Mutation = {
4758
5077
  attachmentLinkURL: AttachmentPayload;
4759
5078
  /** Link an existing Zendesk ticket to an issue. */
4760
5079
  attachmentLinkZendesk: AttachmentPayload;
5080
+ /** Begin syncing the thread for an existing Slack message attachment with a comment thread on its issue. */
5081
+ attachmentSyncToSlack: AttachmentPayload;
4761
5082
  /** Updates an existing issue attachment. */
4762
5083
  attachmentUpdate: AttachmentPayload;
4763
5084
  /** Creates a new comment. */
@@ -4802,10 +5123,10 @@ export declare type Mutation = {
4802
5123
  diaryEntryUpdate: DiaryEntryPayload;
4803
5124
  /** Creates a new document. */
4804
5125
  documentCreate: DocumentPayload;
4805
- /** Deletes a document. */
4806
- documentDelete: DeletePayload;
4807
- /** Adds a document reminder. Will cause a notification to be sent when the issue reminder time is reached. */
4808
- documentReminder: DocumentPayload;
5126
+ /** Deletes (trashes) a document. */
5127
+ documentDelete: DocumentArchivePayload;
5128
+ /** Restores a document. */
5129
+ documentUnarchive: DocumentArchivePayload;
4809
5130
  /** Updates a document. */
4810
5131
  documentUpdate: DocumentPayload;
4811
5132
  /** Creates a new email intake address. */
@@ -4862,7 +5183,7 @@ export declare type Mutation = {
4862
5183
  initiativeArchive: InitiativeArchivePayload;
4863
5184
  /** [Internal] Creates a new initiative. */
4864
5185
  initiativeCreate: InitiativePayload;
4865
- /** [Internal] Deletes a initiative. */
5186
+ /** [Internal] Deletes (trashes) an initiative. */
4866
5187
  initiativeDelete: DeletePayload;
4867
5188
  /** [INTERNAL] Creates a new initiativeToProject join. */
4868
5189
  initiativeToProjectCreate: InitiativeToProjectPayload;
@@ -4892,6 +5213,8 @@ export declare type Mutation = {
4892
5213
  integrationGithubCommitCreate: GitHubCommitIntegrationPayload;
4893
5214
  /** Connects the organization with the GitHub App. */
4894
5215
  integrationGithubConnect: IntegrationPayload;
5216
+ /** Connects the organization with the GitHub Import App. */
5217
+ integrationGithubImportConnect: IntegrationPayload;
4895
5218
  /** Connects the organization with a GitLab Access Token. */
4896
5219
  integrationGitlabConnect: IntegrationPayload;
4897
5220
  /** [Internal] Connects the Google Calendar to the user to this Linear account via OAuth2. */
@@ -4911,6 +5234,8 @@ export declare type Mutation = {
4911
5234
  integrationJiraPersonal: IntegrationPayload;
4912
5235
  /** [INTERNAL] Updates a Jira Integration. */
4913
5236
  integrationJiraUpdate: IntegrationPayload;
5237
+ /** [INTERNAL] Integrates the organization with LaunchDarkly. */
5238
+ integrationLaunchDarklyConnect: IntegrationPayload;
4914
5239
  /**
4915
5240
  * Enables Loom integration for the organization.
4916
5241
  * @deprecated Not available.
@@ -4934,6 +5259,8 @@ export declare type Mutation = {
4934
5259
  integrationSlack: IntegrationPayload;
4935
5260
  /** Integrates the organization with the Slack Asks app. */
4936
5261
  integrationSlackAsks: IntegrationPayload;
5262
+ /** Slack integration for custom view notifications. */
5263
+ integrationSlackCustomViewNotifications: SlackChannelConnectPayload;
4937
5264
  /** Imports custom emojis from your Slack workspace. */
4938
5265
  integrationSlackImportEmojis: IntegrationPayload;
4939
5266
  /** Slack integration for organization level project update notifications. */
@@ -4978,6 +5305,8 @@ export declare type Mutation = {
4978
5305
  issueImportCreateGithub: IssueImportPayload;
4979
5306
  /** Kicks off a Jira import job. */
4980
5307
  issueImportCreateJira: IssueImportPayload;
5308
+ /** [INTERNAL] Kicks off a Linear to Linear import job. */
5309
+ issueImportCreateLinearV2: IssueImportPayload;
4981
5310
  /** Deletes an import job. */
4982
5311
  issueImportDelete: IssueImportDeletePayload;
4983
5312
  /** Kicks off import processing. */
@@ -5059,6 +5388,8 @@ export declare type Mutation = {
5059
5388
  organizationDomainCreate: OrganizationDomainPayload;
5060
5389
  /** Deletes a domain. */
5061
5390
  organizationDomainDelete: DeletePayload;
5391
+ /** [INTERNAL] Updates an organization domain settings. */
5392
+ organizationDomainUpdate: OrganizationDomainPayload;
5062
5393
  /** [INTERNAL] Verifies a domain to be added to an organization. */
5063
5394
  organizationDomainVerify: OrganizationDomainPayload;
5064
5395
  /** Creates a new organization invite. */
@@ -5067,10 +5398,14 @@ export declare type Mutation = {
5067
5398
  organizationInviteDelete: DeletePayload;
5068
5399
  /** Updates an organization invite. */
5069
5400
  organizationInviteUpdate: OrganizationInvitePayload;
5070
- /** Starts a plus trial for the organization. Administrator privileges required. */
5071
- organizationStartPlusTrial: OrganizationStartPlusTrialPayload;
5401
+ /** Starts a trial for the organization. Administrator privileges required. */
5402
+ organizationStartTrial: OrganizationStartTrialPayload;
5072
5403
  /** Updates the user's organization. */
5073
5404
  organizationUpdate: OrganizationPayload;
5405
+ /** [INTERNAL] Finish passkey login process. */
5406
+ passkeyLoginFinish: AuthResolverResponse;
5407
+ /** [INTERNAL] Starts passkey login process. */
5408
+ passkeyLoginStart: PasskeyLoginStartResponse;
5074
5409
  /**
5075
5410
  * Archives a project.
5076
5411
  * @deprecated Deprecated in favor of projectDelete.
@@ -5092,6 +5427,8 @@ export declare type Mutation = {
5092
5427
  projectMilestoneDelete: DeletePayload;
5093
5428
  /** Updates a project milestone. */
5094
5429
  projectMilestoneUpdate: ProjectMilestonePayload;
5430
+ /** [INTERNAL] Updates all projects currently assigned to to a project status to a new project status. */
5431
+ projectReassignStatus: SuccessPayload;
5095
5432
  /** [ALPHA] Creates a new project relation. */
5096
5433
  projectRelationCreate: ProjectRelationPayload;
5097
5434
  /** [ALPHA] Deletes a project relation. */
@@ -5196,8 +5533,6 @@ export declare type Mutation = {
5196
5533
  userPromoteAdmin: UserAdminPayload;
5197
5534
  /** Makes user a regular user. Can only be called by an admin. */
5198
5535
  userPromoteMember: UserAdminPayload;
5199
- /** [Deprecated] Updates a user's settings flag. */
5200
- userSettingsFlagIncrement: UserSettingsFlagPayload;
5201
5536
  /** Resets user's setting flags. */
5202
5537
  userSettingsFlagsReset: UserSettingsFlagsResetPayload;
5203
5538
  /** Updates the user's settings. */
@@ -5332,6 +5667,9 @@ export declare type MutationAttachmentLinkZendeskArgs = {
5332
5667
  ticketId: Scalars["String"];
5333
5668
  title?: Maybe<Scalars["String"]>;
5334
5669
  };
5670
+ export declare type MutationAttachmentSyncToSlackArgs = {
5671
+ id: Scalars["String"];
5672
+ };
5335
5673
  export declare type MutationAttachmentUpdateArgs = {
5336
5674
  id: Scalars["String"];
5337
5675
  input: AttachmentUpdateInput;
@@ -5409,9 +5747,8 @@ export declare type MutationDocumentCreateArgs = {
5409
5747
  export declare type MutationDocumentDeleteArgs = {
5410
5748
  id: Scalars["String"];
5411
5749
  };
5412
- export declare type MutationDocumentReminderArgs = {
5750
+ export declare type MutationDocumentUnarchiveArgs = {
5413
5751
  id: Scalars["String"];
5414
- reminderAt: Scalars["DateTime"];
5415
5752
  };
5416
5753
  export declare type MutationDocumentUpdateArgs = {
5417
5754
  id: Scalars["String"];
@@ -5558,6 +5895,9 @@ export declare type MutationIntegrationGitHubPersonalArgs = {
5558
5895
  export declare type MutationIntegrationGithubConnectArgs = {
5559
5896
  installationId: Scalars["String"];
5560
5897
  };
5898
+ export declare type MutationIntegrationGithubImportConnectArgs = {
5899
+ installationId: Scalars["String"];
5900
+ };
5561
5901
  export declare type MutationIntegrationGitlabConnectArgs = {
5562
5902
  accessToken: Scalars["String"];
5563
5903
  gitlabUrl: Scalars["String"];
@@ -5583,6 +5923,11 @@ export declare type MutationIntegrationJiraPersonalArgs = {
5583
5923
  export declare type MutationIntegrationJiraUpdateArgs = {
5584
5924
  input: JiraUpdateInput;
5585
5925
  };
5926
+ export declare type MutationIntegrationLaunchDarklyConnectArgs = {
5927
+ apiKey: Scalars["String"];
5928
+ environment: Scalars["String"];
5929
+ projectKey: Scalars["String"];
5930
+ };
5586
5931
  export declare type MutationIntegrationOpsgenieConnectArgs = {
5587
5932
  apiKey: Scalars["String"];
5588
5933
  };
@@ -5611,6 +5956,11 @@ export declare type MutationIntegrationSlackAsksArgs = {
5611
5956
  code: Scalars["String"];
5612
5957
  redirectUri: Scalars["String"];
5613
5958
  };
5959
+ export declare type MutationIntegrationSlackCustomViewNotificationsArgs = {
5960
+ code: Scalars["String"];
5961
+ customViewId: Scalars["String"];
5962
+ redirectUri: Scalars["String"];
5963
+ };
5614
5964
  export declare type MutationIntegrationSlackImportEmojisArgs = {
5615
5965
  code: Scalars["String"];
5616
5966
  redirectUri: Scalars["String"];
@@ -5710,13 +6060,15 @@ export declare type MutationIssueImportCreateClubhouseArgs = {
5710
6060
  teamName?: Maybe<Scalars["String"]>;
5711
6061
  };
5712
6062
  export declare type MutationIssueImportCreateGithubArgs = {
5713
- githubRepoName: Scalars["String"];
5714
- githubRepoOwner: Scalars["String"];
6063
+ githubRepoId?: Maybe<Scalars["String"]>;
6064
+ githubRepoIds?: Maybe<Array<Scalars["Int"]>>;
6065
+ githubRepoName?: Maybe<Scalars["String"]>;
6066
+ githubRepoOwner?: Maybe<Scalars["String"]>;
5715
6067
  githubShouldImportOrgProjects?: Maybe<Scalars["Boolean"]>;
5716
- githubToken: Scalars["String"];
5717
- id?: Maybe<Scalars["String"]>;
6068
+ githubToken?: Maybe<Scalars["String"]>;
5718
6069
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
5719
6070
  instantProcess?: Maybe<Scalars["Boolean"]>;
6071
+ integrationId: Scalars["String"];
5720
6072
  organizationId?: Maybe<Scalars["String"]>;
5721
6073
  teamId?: Maybe<Scalars["String"]>;
5722
6074
  teamName?: Maybe<Scalars["String"]>;
@@ -5733,6 +6085,10 @@ export declare type MutationIssueImportCreateJiraArgs = {
5733
6085
  teamId?: Maybe<Scalars["String"]>;
5734
6086
  teamName?: Maybe<Scalars["String"]>;
5735
6087
  };
6088
+ export declare type MutationIssueImportCreateLinearV2Args = {
6089
+ id?: Maybe<Scalars["String"]>;
6090
+ linearSourceOrganizationId: Scalars["String"];
6091
+ };
5736
6092
  export declare type MutationIssueImportDeleteArgs = {
5737
6093
  issueImportId: Scalars["String"];
5738
6094
  };
@@ -5758,6 +6114,7 @@ export declare type MutationIssueLabelUpdateArgs = {
5758
6114
  };
5759
6115
  export declare type MutationIssueRelationCreateArgs = {
5760
6116
  input: IssueRelationCreateInput;
6117
+ overrideCreatedAt?: Maybe<Scalars["DateTime"]>;
5761
6118
  };
5762
6119
  export declare type MutationIssueRelationDeleteArgs = {
5763
6120
  id: Scalars["String"];
@@ -5852,6 +6209,10 @@ export declare type MutationOrganizationDomainCreateArgs = {
5852
6209
  export declare type MutationOrganizationDomainDeleteArgs = {
5853
6210
  id: Scalars["String"];
5854
6211
  };
6212
+ export declare type MutationOrganizationDomainUpdateArgs = {
6213
+ id: Scalars["String"];
6214
+ input: OrganizationDomainUpdateInput;
6215
+ };
5855
6216
  export declare type MutationOrganizationDomainVerifyArgs = {
5856
6217
  input: OrganizationDomainVerificationInput;
5857
6218
  };
@@ -5868,6 +6229,13 @@ export declare type MutationOrganizationInviteUpdateArgs = {
5868
6229
  export declare type MutationOrganizationUpdateArgs = {
5869
6230
  input: OrganizationUpdateInput;
5870
6231
  };
6232
+ export declare type MutationPasskeyLoginFinishArgs = {
6233
+ authId: Scalars["String"];
6234
+ response: Scalars["JSONObject"];
6235
+ };
6236
+ export declare type MutationPasskeyLoginStartArgs = {
6237
+ authId: Scalars["String"];
6238
+ };
5871
6239
  export declare type MutationProjectArchiveArgs = {
5872
6240
  id: Scalars["String"];
5873
6241
  trash?: Maybe<Scalars["Boolean"]>;
@@ -5899,6 +6267,10 @@ export declare type MutationProjectMilestoneUpdateArgs = {
5899
6267
  id: Scalars["String"];
5900
6268
  input: ProjectMilestoneUpdateInput;
5901
6269
  };
6270
+ export declare type MutationProjectReassignStatusArgs = {
6271
+ newProjectStatusId: Scalars["String"];
6272
+ originalProjectStatusId: Scalars["String"];
6273
+ };
5902
6274
  export declare type MutationProjectRelationCreateArgs = {
5903
6275
  input: ProjectRelationCreateInput;
5904
6276
  };
@@ -6069,9 +6441,6 @@ export declare type MutationUserPromoteAdminArgs = {
6069
6441
  export declare type MutationUserPromoteMemberArgs = {
6070
6442
  id: Scalars["String"];
6071
6443
  };
6072
- export declare type MutationUserSettingsFlagIncrementArgs = {
6073
- flag: Scalars["String"];
6074
- };
6075
6444
  export declare type MutationUserSettingsFlagsResetArgs = {
6076
6445
  flags?: Maybe<Array<UserFlagType>>;
6077
6446
  };
@@ -6184,6 +6553,82 @@ export declare type NotificationConnection = {
6184
6553
  nodes: Array<Notification>;
6185
6554
  pageInfo: PageInfo;
6186
6555
  };
6556
+ /** A user's notification delivery preferences. */
6557
+ export declare type NotificationDeliveryPreferences = {
6558
+ __typename?: "NotificationDeliveryPreferences";
6559
+ /** The delivery preferences for the mobile channel. */
6560
+ mobile?: Maybe<NotificationDeliveryPreferencesChannel>;
6561
+ };
6562
+ /** A user's notification delivery preferences. */
6563
+ export declare type NotificationDeliveryPreferencesChannel = {
6564
+ __typename?: "NotificationDeliveryPreferencesChannel";
6565
+ /** Whether notifications are enabled for this channel. */
6566
+ notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6567
+ /** The schedule for notifications on this channel. */
6568
+ schedule?: Maybe<NotificationDeliveryPreferencesSchedule>;
6569
+ };
6570
+ export declare type NotificationDeliveryPreferencesChannelInput = {
6571
+ /** Whether notifications are enabled for this channel. */
6572
+ notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6573
+ /** The schedule for notifications on this channel. */
6574
+ schedule?: Maybe<NotificationDeliveryPreferencesScheduleInput>;
6575
+ };
6576
+ /** A user's notification delivery schedule for a particular day. */
6577
+ export declare type NotificationDeliveryPreferencesDay = {
6578
+ __typename?: "NotificationDeliveryPreferencesDay";
6579
+ /** The time notifications end. */
6580
+ end?: Maybe<Scalars["String"]>;
6581
+ /** The time notifications start. */
6582
+ start?: Maybe<Scalars["String"]>;
6583
+ };
6584
+ export declare type NotificationDeliveryPreferencesDayInput = {
6585
+ /** The time notifications end. */
6586
+ end?: Maybe<Scalars["String"]>;
6587
+ /** The time notifications start. */
6588
+ start?: Maybe<Scalars["String"]>;
6589
+ };
6590
+ export declare type NotificationDeliveryPreferencesInput = {
6591
+ /** The delivery preferences for the mobile channel. */
6592
+ mobile?: Maybe<NotificationDeliveryPreferencesChannelInput>;
6593
+ };
6594
+ /** A user's notification delivery schedule for a particular day. */
6595
+ export declare type NotificationDeliveryPreferencesSchedule = {
6596
+ __typename?: "NotificationDeliveryPreferencesSchedule";
6597
+ /** Whether the schedule is disabled. */
6598
+ disabled?: Maybe<Scalars["Boolean"]>;
6599
+ /** Delivery preferences for Friday. */
6600
+ friday: NotificationDeliveryPreferencesDay;
6601
+ /** Delivery preferences for Monday. */
6602
+ monday: NotificationDeliveryPreferencesDay;
6603
+ /** Delivery preferences for Saturday. */
6604
+ saturday: NotificationDeliveryPreferencesDay;
6605
+ /** Delivery preferences for Sunday. */
6606
+ sunday: NotificationDeliveryPreferencesDay;
6607
+ /** Delivery preferences for Thursday. */
6608
+ thursday: NotificationDeliveryPreferencesDay;
6609
+ /** Delivery preferences for Tuesday. */
6610
+ tuesday: NotificationDeliveryPreferencesDay;
6611
+ /** Delivery preferences for Wednesday. */
6612
+ wednesday: NotificationDeliveryPreferencesDay;
6613
+ };
6614
+ export declare type NotificationDeliveryPreferencesScheduleInput = {
6615
+ /** Whether the schedule is disabled. */
6616
+ disabled?: Maybe<Scalars["Boolean"]>;
6617
+ /** Delivery preferences for Friday. */
6618
+ friday: NotificationDeliveryPreferencesDayInput;
6619
+ /** Delivery preferences for Monday. */
6620
+ monday: NotificationDeliveryPreferencesDayInput;
6621
+ /** Delivery preferences for Saturday. */
6622
+ saturday: NotificationDeliveryPreferencesDayInput;
6623
+ /** Delivery preferences for Sunday. */
6624
+ sunday: NotificationDeliveryPreferencesDayInput;
6625
+ /** Delivery preferences for Thursday. */
6626
+ thursday: NotificationDeliveryPreferencesDayInput;
6627
+ /** Delivery preferences for Tuesday. */
6628
+ tuesday: NotificationDeliveryPreferencesDayInput;
6629
+ /** Delivery preferences for Wednesday. */
6630
+ wednesday: NotificationDeliveryPreferencesDayInput;
6631
+ };
6187
6632
  export declare type NotificationEdge = {
6188
6633
  __typename?: "NotificationEdge";
6189
6634
  /** Used in `before` and `after` args */
@@ -6192,6 +6637,8 @@ export declare type NotificationEdge = {
6192
6637
  };
6193
6638
  /** Describes the type and id of the entity to target for notifications. */
6194
6639
  export declare type NotificationEntityInput = {
6640
+ /** The id of the initiative related to the notification. */
6641
+ initiativeId?: Maybe<Scalars["String"]>;
6195
6642
  /** The id of the issue related to the notification. */
6196
6643
  issueId?: Maybe<Scalars["String"]>;
6197
6644
  /** The id of the OAuth client approval related to the notification. */
@@ -6340,6 +6787,8 @@ export declare type NullableCommentFilter = {
6340
6787
  parent?: Maybe<NullableCommentFilter>;
6341
6788
  /** Filters that the comments project update must satisfy. */
6342
6789
  projectUpdate?: Maybe<ProjectUpdateFilter>;
6790
+ /** Filters that the comments reactions must satisfy. */
6791
+ reactions?: Maybe<ReactionCollectionFilter>;
6343
6792
  /** Comparator for the updated at date. */
6344
6793
  updatedAt?: Maybe<DateComparator>;
6345
6794
  /** Filters that the comments creator must satisfy. */
@@ -6503,6 +6952,8 @@ export declare type NullableIssueFilter = {
6503
6952
  project?: Maybe<NullableProjectFilter>;
6504
6953
  /** Filters that the issues project milestone must satisfy. */
6505
6954
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
6955
+ /** Filters that the issues reactions must satisfy. */
6956
+ reactions?: Maybe<ReactionCollectionFilter>;
6506
6957
  /** [Internal] Comparator for the issues content. */
6507
6958
  searchableContent?: Maybe<ContentComparator>;
6508
6959
  /** Comparator for the issues sla status. */
@@ -6563,6 +7014,16 @@ export declare type NullableProjectFilter = {
6563
7014
  createdAt?: Maybe<DateComparator>;
6564
7015
  /** Filters that the projects creator must satisfy. */
6565
7016
  creator?: Maybe<UserFilter>;
7017
+ /** Comparator for filtering projects which are blocked. */
7018
+ hasBlockedByRelations?: Maybe<RelationExistsComparator>;
7019
+ /** Comparator for filtering projects which are blocking. */
7020
+ hasBlockingRelations?: Maybe<RelationExistsComparator>;
7021
+ /** Comparator for filtering projects which this is depended on by. */
7022
+ hasDependedOnByRelations?: Maybe<RelationExistsComparator>;
7023
+ /** Comparator for filtering projects which this depends on. */
7024
+ hasDependsOnRelations?: Maybe<RelationExistsComparator>;
7025
+ /** Comparator for filtering projects with relations. */
7026
+ hasRelatedRelations?: Maybe<RelationExistsComparator>;
6566
7027
  /** Comparator for the project health. */
6567
7028
  health?: Maybe<StringComparator>;
6568
7029
  /** Comparator for the identifier. */
@@ -6587,6 +7048,8 @@ export declare type NullableProjectFilter = {
6587
7048
  or?: Maybe<Array<NullableProjectFilter>>;
6588
7049
  /** Filters that the project's milestones must satisfy. */
6589
7050
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
7051
+ /** Comparator for the project updates. */
7052
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
6590
7053
  /** Filters that the projects roadmaps must satisfy. */
6591
7054
  roadmaps?: Maybe<RoadmapCollectionFilter>;
6592
7055
  /** [Internal] Comparator for the project's content. */
@@ -6623,6 +7086,40 @@ export declare type NullableProjectMilestoneFilter = {
6623
7086
  /** Comparator for the updated at date. */
6624
7087
  updatedAt?: Maybe<DateComparator>;
6625
7088
  };
7089
+ /** Options for filtering projects by project updates. */
7090
+ export declare type NullableProjectUpdatesFilter = {
7091
+ /** Compound filters, all of which need to be matched by the project updates. */
7092
+ and?: Maybe<Array<NullableProjectUpdatesFilter>>;
7093
+ /** Comparator for the created at date. */
7094
+ createdAt?: Maybe<DateComparator>;
7095
+ /** Comparator for the identifier. */
7096
+ id?: Maybe<IdComparator>;
7097
+ /** Filter based on the existence of the relation. */
7098
+ null?: Maybe<Scalars["Boolean"]>;
7099
+ /** Compound filters, one of which need to be matched by the project updates. */
7100
+ or?: Maybe<Array<NullableProjectUpdatesFilter>>;
7101
+ /** Comparator for the updated at date. */
7102
+ updatedAt?: Maybe<DateComparator>;
7103
+ };
7104
+ /** Reaction filtering options. */
7105
+ export declare type NullableReactionFilter = {
7106
+ /** Compound filters, all of which need to be matched by the reaction. */
7107
+ and?: Maybe<Array<NullableReactionFilter>>;
7108
+ /** Comparator for the created at date. */
7109
+ createdAt?: Maybe<DateComparator>;
7110
+ /** Comparator for the reactions custom emoji. */
7111
+ customEmojiId?: Maybe<IdComparator>;
7112
+ /** Comparator for the reactions emoji. */
7113
+ emoji?: Maybe<StringComparator>;
7114
+ /** Comparator for the identifier. */
7115
+ id?: Maybe<IdComparator>;
7116
+ /** Filter based on the existence of the relation. */
7117
+ null?: Maybe<Scalars["Boolean"]>;
7118
+ /** Compound filters, one of which need to be matched by the reaction. */
7119
+ or?: Maybe<Array<NullableReactionFilter>>;
7120
+ /** Comparator for the updated at date. */
7121
+ updatedAt?: Maybe<DateComparator>;
7122
+ };
6626
7123
  /** Comparator for optional strings. */
6627
7124
  export declare type NullableStringComparator = {
6628
7125
  /** Contains constraint. Matches any values that contain the given string. */
@@ -6919,13 +7416,13 @@ export declare type OnboardingCustomerSurvey = {
6919
7416
  };
6920
7417
  export declare type OpsgenieInput = {
6921
7418
  /** The date when the Opsgenie API failed with an unauthorized error. */
6922
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7419
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
6923
7420
  };
6924
7421
  /** Opsgenie specific settings. */
6925
7422
  export declare type OpsgenieSettings = {
6926
7423
  __typename?: "OpsgenieSettings";
6927
7424
  /** The date when the Opsgenie API failed with an unauthorized error. */
6928
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7425
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
6929
7426
  };
6930
7427
  /** An organization. Organizations are root-level objects that contain user accounts and teams. */
6931
7428
  export declare type Organization = Node & {
@@ -6954,6 +7451,8 @@ export declare type Organization = Node & {
6954
7451
  id: Scalars["ID"];
6955
7452
  /** Integrations associated with the organization. */
6956
7453
  integrations: IntegrationConnection;
7454
+ /** IP restriction configurations. */
7455
+ ipRestrictions?: Maybe<Array<OrganizationIpRestriction>>;
6957
7456
  /** Labels associated with the organization. */
6958
7457
  labels: IssueLabelConnection;
6959
7458
  /** The organization's logo URL. */
@@ -6966,6 +7465,8 @@ export declare type Organization = Node & {
6966
7465
  previousUrlKeys: Array<Scalars["String"]>;
6967
7466
  /** The organization's project statuses. */
6968
7467
  projectStatuses: Array<ProjectStatus>;
7468
+ /** [ALPHA] The n-weekly frequency at which to prompt for project updates. When not set, reminders are off. */
7469
+ projectUpdateReminderFrequencyInWeeks?: Maybe<Scalars["Float"]>;
6969
7470
  /** The day at which to prompt for project updates. */
6970
7471
  projectUpdateRemindersDay: Day;
6971
7472
  /** The hour at which to prompt for project updates. */
@@ -6992,7 +7493,7 @@ export declare type Organization = Node & {
6992
7493
  templates: TemplateConnection;
6993
7494
  /** [ALPHA] Theme settings for the organization. */
6994
7495
  themeSettings?: Maybe<Scalars["JSONObject"]>;
6995
- /** The time at which the trial of the plus plan will end. */
7496
+ /** The time at which the trial will end. */
6996
7497
  trialEndsAt?: Maybe<Scalars["DateTime"]>;
6997
7498
  /**
6998
7499
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
@@ -7083,6 +7584,8 @@ export declare type OrganizationDomain = Node & {
7083
7584
  createdAt: Scalars["DateTime"];
7084
7585
  /** The user who added the domain. */
7085
7586
  creator?: Maybe<User>;
7587
+ /** Prevent users with this domain to create new workspaces. */
7588
+ disableOrganizationCreation?: Maybe<Scalars["Boolean"]>;
7086
7589
  /** The unique identifier of the entity. */
7087
7590
  id: Scalars["ID"];
7088
7591
  /** Domain name. */
@@ -7135,6 +7638,10 @@ export declare type OrganizationDomainSimplePayload = {
7135
7638
  /** Whether the operation was successful. */
7136
7639
  success: Scalars["Boolean"];
7137
7640
  };
7641
+ export declare type OrganizationDomainUpdateInput = {
7642
+ /** Prevent users with this domain to create new workspaces. Only allowed to set on claimed domains! */
7643
+ disableOrganizationCreation?: Maybe<Scalars["Boolean"]>;
7644
+ };
7138
7645
  export declare type OrganizationDomainVerificationInput = {
7139
7646
  /** The identifier in UUID v4 format of the domain being verified. */
7140
7647
  organizationDomainId: Scalars["String"];
@@ -7170,7 +7677,7 @@ export declare type OrganizationInvite = Node & {
7170
7677
  /** The user who created the invitation. */
7171
7678
  inviter: User;
7172
7679
  /** Extra metadata associated with the organization invite. */
7173
- metadata: Scalars["JSONObject"];
7680
+ metadata?: Maybe<Scalars["JSONObject"]>;
7174
7681
  /** The organization that the invite is associated with. */
7175
7682
  organization: Organization;
7176
7683
  /** The user role that the invitee will receive upon accepting the invite. */
@@ -7268,6 +7775,35 @@ export declare type OrganizationInviteUpdateInput = {
7268
7775
  /** The teams that the user has been invited to. */
7269
7776
  teamIds: Array<Scalars["String"]>;
7270
7777
  };
7778
+ export declare type OrganizationIpRestriction = {
7779
+ __typename?: "OrganizationIpRestriction";
7780
+ /** Optional restriction description. */
7781
+ description?: Maybe<Scalars["String"]>;
7782
+ /** Whether the restriction is enabled. */
7783
+ enabled: Scalars["Boolean"];
7784
+ /** IP range in CIDR format. */
7785
+ range: Scalars["String"];
7786
+ /** Restriction type. */
7787
+ type: Scalars["String"];
7788
+ };
7789
+ /** [INTERNAL] Organization IP restriction configuration. */
7790
+ export declare type OrganizationIpRestrictionInput = {
7791
+ /** Optional restriction description. */
7792
+ description?: Maybe<Scalars["String"]>;
7793
+ /** Whether the restriction is enabled. */
7794
+ enabled: Scalars["Boolean"];
7795
+ /** IP range in CIDR format. */
7796
+ range: Scalars["String"];
7797
+ /** Restriction type. */
7798
+ type: Scalars["String"];
7799
+ };
7800
+ export declare type OrganizationMeta = {
7801
+ __typename?: "OrganizationMeta";
7802
+ /** Allowed authentication providers, empty array means all are allowed. */
7803
+ allowedAuthServices: Array<Scalars["String"]>;
7804
+ /** The region the organization is hosted in. */
7805
+ region: Scalars["String"];
7806
+ };
7271
7807
  export declare type OrganizationPayload = {
7272
7808
  __typename?: "OrganizationPayload";
7273
7809
  /** The identifier of the last sync operation. */
@@ -7284,8 +7820,8 @@ export declare type OrganizationRegionResponse = {
7284
7820
  /** Whether the operation was successful. */
7285
7821
  success: Scalars["Boolean"];
7286
7822
  };
7287
- export declare type OrganizationStartPlusTrialPayload = {
7288
- __typename?: "OrganizationStartPlusTrialPayload";
7823
+ export declare type OrganizationStartTrialPayload = {
7824
+ __typename?: "OrganizationStartTrialPayload";
7289
7825
  /** Whether the operation was successful. */
7290
7826
  success: Scalars["Boolean"];
7291
7827
  };
@@ -7302,19 +7838,21 @@ export declare type OrganizationUpdateInput = {
7302
7838
  gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
7303
7839
  /** Whether the Git integration linkback messages should be sent for public repositories. */
7304
7840
  gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
7305
- /** Linear Preview feature flags. */
7306
- linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
7841
+ /** IP restriction configurations controlling allowed access the workspace. */
7842
+ ipRestrictions?: Maybe<Array<OrganizationIpRestrictionInput>>;
7307
7843
  /** The logo of the organization. */
7308
7844
  logoUrl?: Maybe<Scalars["String"]>;
7309
7845
  /** The name of the organization. */
7310
7846
  name?: Maybe<Scalars["String"]>;
7311
7847
  /** Whether the organization has opted for having to approve all OAuth applications for install. */
7312
7848
  oauthAppReview?: Maybe<Scalars["Boolean"]>;
7849
+ /** [ALPHA] The n-weekly frequency at which to prompt for project updates. */
7850
+ projectUpdateReminderFrequencyInWeeks?: Maybe<Scalars["Float"]>;
7313
7851
  /** The day at which project updates are sent. */
7314
7852
  projectUpdateRemindersDay?: Maybe<Day>;
7315
7853
  /** The hour at which project updates are sent. */
7316
7854
  projectUpdateRemindersHour?: Maybe<Scalars["Float"]>;
7317
- /** The frequency at which project updates are sent. */
7855
+ /** [DEPRECATED] The frequency at which project updates are sent. */
7318
7856
  projectUpdatesReminderFrequency?: Maybe<ProjectUpdateReminderFrequency>;
7319
7857
  /** Whether the organization has opted for reduced customer support attachment information. */
7320
7858
  reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
@@ -7342,13 +7880,13 @@ export declare type PageInfo = {
7342
7880
  };
7343
7881
  export declare type PagerDutyInput = {
7344
7882
  /** The date when the PagerDuty API failed with an unauthorized error. */
7345
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7883
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7346
7884
  };
7347
7885
  /** PagerDuty specific settings. */
7348
7886
  export declare type PagerDutySettings = {
7349
7887
  __typename?: "PagerDutySettings";
7350
7888
  /** The date when the PagerDuty API failed with an unauthorized error. */
7351
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7889
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7352
7890
  };
7353
7891
  /** How to treat NULL values, whether they should appear first or last */
7354
7892
  export declare enum PaginationNulls {
@@ -7373,7 +7911,7 @@ export declare type PaidSubscription = Node & {
7373
7911
  /** The date the subscription was canceled, if any. */
7374
7912
  canceledAt?: Maybe<Scalars["DateTime"]>;
7375
7913
  /** The collection method for this subscription, either automatically charged or invoiced. */
7376
- collectionMethod?: Maybe<Scalars["String"]>;
7914
+ collectionMethod: Scalars["String"];
7377
7915
  /** The time at which the entity was created. */
7378
7916
  createdAt: Scalars["DateTime"];
7379
7917
  /** The creator of the subscription. */
@@ -7401,6 +7939,41 @@ export declare type PaidSubscription = Node & {
7401
7939
  */
7402
7940
  updatedAt: Scalars["DateTime"];
7403
7941
  };
7942
+ /** Registered passkey for authentication. */
7943
+ export declare type Passkey = {
7944
+ __typename?: "Passkey";
7945
+ aaguid: Scalars["String"];
7946
+ /** Used web browser. Only set on creation. */
7947
+ browserType?: Maybe<Scalars["String"]>;
7948
+ /** Type of application used to create. */
7949
+ clientType: AuthenticationSessionType;
7950
+ /** The time at which the entity was created. */
7951
+ createdAt: Scalars["DateTime"];
7952
+ id: Scalars["String"];
7953
+ /** IP address. Only set on creation. */
7954
+ ip?: Maybe<Scalars["String"]>;
7955
+ label: Scalars["String"];
7956
+ /** The time when the passkey was last used. */
7957
+ lastUsedAt: Scalars["DateTime"];
7958
+ lastUsedSessionId?: Maybe<Scalars["String"]>;
7959
+ /** Location city name. Only set on creation. */
7960
+ locationCity?: Maybe<Scalars["String"]>;
7961
+ /** Location country name. Only set on creation. */
7962
+ locationCountry?: Maybe<Scalars["String"]>;
7963
+ /** Location country code. Only set on creation. */
7964
+ locationCountryCode?: Maybe<Scalars["String"]>;
7965
+ /** Location region code. Only set on creation. */
7966
+ locationRegionCode?: Maybe<Scalars["String"]>;
7967
+ /** Date when the passkey was last updated. */
7968
+ updatedAt: Scalars["DateTime"];
7969
+ /** Creating session's user-agent. Only set on creation. */
7970
+ userAgent?: Maybe<Scalars["String"]>;
7971
+ };
7972
+ export declare type PasskeyLoginStartResponse = {
7973
+ __typename?: "PasskeyLoginStartResponse";
7974
+ options: Scalars["JSONObject"];
7975
+ success: Scalars["Boolean"];
7976
+ };
7404
7977
  /** Issue priority sorting options. */
7405
7978
  export declare type PrioritySort = {
7406
7979
  /** Whether to consider no priority as the highest or lowest priority */
@@ -7612,6 +8185,16 @@ export declare type ProjectCollectionFilter = {
7612
8185
  creator?: Maybe<UserFilter>;
7613
8186
  /** Filters that needs to be matched by all projects. */
7614
8187
  every?: Maybe<ProjectFilter>;
8188
+ /** Comparator for filtering projects which are blocked. */
8189
+ hasBlockedByRelations?: Maybe<RelationExistsComparator>;
8190
+ /** Comparator for filtering projects which are blocking. */
8191
+ hasBlockingRelations?: Maybe<RelationExistsComparator>;
8192
+ /** Comparator for filtering projects which this is depended on by. */
8193
+ hasDependedOnByRelations?: Maybe<RelationExistsComparator>;
8194
+ /** Comparator for filtering projects which this depends on. */
8195
+ hasDependsOnRelations?: Maybe<RelationExistsComparator>;
8196
+ /** Comparator for filtering projects with relations. */
8197
+ hasRelatedRelations?: Maybe<RelationExistsComparator>;
7615
8198
  /** Comparator for the project health. */
7616
8199
  health?: Maybe<StringComparator>;
7617
8200
  /** Comparator for the identifier. */
@@ -7636,6 +8219,8 @@ export declare type ProjectCollectionFilter = {
7636
8219
  or?: Maybe<Array<ProjectCollectionFilter>>;
7637
8220
  /** Filters that the project's milestones must satisfy. */
7638
8221
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
8222
+ /** Comparator for the project updates. */
8223
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
7639
8224
  /** Filters that the projects roadmaps must satisfy. */
7640
8225
  roadmaps?: Maybe<RoadmapCollectionFilter>;
7641
8226
  /** [Internal] Comparator for the project's content. */
@@ -7717,6 +8302,16 @@ export declare type ProjectFilter = {
7717
8302
  createdAt?: Maybe<DateComparator>;
7718
8303
  /** Filters that the projects creator must satisfy. */
7719
8304
  creator?: Maybe<UserFilter>;
8305
+ /** Comparator for filtering projects which are blocked. */
8306
+ hasBlockedByRelations?: Maybe<RelationExistsComparator>;
8307
+ /** Comparator for filtering projects which are blocking. */
8308
+ hasBlockingRelations?: Maybe<RelationExistsComparator>;
8309
+ /** Comparator for filtering projects which this is depended on by. */
8310
+ hasDependedOnByRelations?: Maybe<RelationExistsComparator>;
8311
+ /** Comparator for filtering projects which this depends on. */
8312
+ hasDependsOnRelations?: Maybe<RelationExistsComparator>;
8313
+ /** Comparator for filtering projects with relations. */
8314
+ hasRelatedRelations?: Maybe<RelationExistsComparator>;
7720
8315
  /** Comparator for the project health. */
7721
8316
  health?: Maybe<StringComparator>;
7722
8317
  /** Comparator for the identifier. */
@@ -7739,6 +8334,8 @@ export declare type ProjectFilter = {
7739
8334
  or?: Maybe<Array<ProjectFilter>>;
7740
8335
  /** Filters that the project's milestones must satisfy. */
7741
8336
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
8337
+ /** Comparator for the project updates. */
8338
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
7742
8339
  /** Filters that the projects roadmaps must satisfy. */
7743
8340
  roadmaps?: Maybe<RoadmapCollectionFilter>;
7744
8341
  /** [Internal] Comparator for the project's content. */
@@ -8408,7 +9005,6 @@ export declare enum ProjectStatusType {
8408
9005
  }
8409
9006
  /** Different tabs available inside a project. */
8410
9007
  export declare enum ProjectTab {
8411
- Activity = "activity",
8412
9008
  Documents = "documents",
8413
9009
  Issues = "issues"
8414
9010
  }
@@ -8443,6 +9039,8 @@ export declare type ProjectUpdate = Node & {
8443
9039
  project: Project;
8444
9040
  /** Emoji reaction summary, grouped by emoji type. */
8445
9041
  reactionData: Scalars["JSONObject"];
9042
+ /** Reactions associated with the project update. */
9043
+ reactions: Array<Reaction>;
8446
9044
  /**
8447
9045
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8448
9046
  * 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
@@ -8490,7 +9088,7 @@ export declare type ProjectUpdateEdge = {
8490
9088
  cursor: Scalars["String"];
8491
9089
  node: ProjectUpdate;
8492
9090
  };
8493
- /** ProjectUpdate filtering options. */
9091
+ /** Options for filtering project updates. */
8494
9092
  export declare type ProjectUpdateFilter = {
8495
9093
  /** Compound filters, all of which need to be matched by the ProjectUpdate. */
8496
9094
  and?: Maybe<Array<ProjectUpdateFilter>>;
@@ -8502,6 +9100,8 @@ export declare type ProjectUpdateFilter = {
8502
9100
  or?: Maybe<Array<ProjectUpdateFilter>>;
8503
9101
  /** Filters that the project update project must satisfy. */
8504
9102
  project?: Maybe<ProjectFilter>;
9103
+ /** Filters that the project updates reactions must satisfy. */
9104
+ reactions?: Maybe<ReactionCollectionFilter>;
8505
9105
  /** Comparator for the updated at date. */
8506
9106
  updatedAt?: Maybe<DateComparator>;
8507
9107
  /** Filters that the project update creator must satisfy. */
@@ -8654,6 +9254,38 @@ export declare type ProjectUpdateWithInteractionPayload = {
8654
9254
  /** Whether the operation was successful. */
8655
9255
  success: Scalars["Boolean"];
8656
9256
  };
9257
+ /** Collection filtering options for filtering projects by project updates. */
9258
+ export declare type ProjectUpdatesCollectionFilter = {
9259
+ /** Compound filters, all of which need to be matched by the project update. */
9260
+ and?: Maybe<Array<ProjectUpdatesCollectionFilter>>;
9261
+ /** Comparator for the created at date. */
9262
+ createdAt?: Maybe<DateComparator>;
9263
+ /** Filters that needs to be matched by all updates. */
9264
+ every?: Maybe<ProjectUpdatesFilter>;
9265
+ /** Comparator for the identifier. */
9266
+ id?: Maybe<IdComparator>;
9267
+ /** Comparator for the collection length. */
9268
+ length?: Maybe<NumberComparator>;
9269
+ /** Compound filters, one of which need to be matched by the update. */
9270
+ or?: Maybe<Array<ProjectUpdatesCollectionFilter>>;
9271
+ /** Filters that needs to be matched by some updates. */
9272
+ some?: Maybe<ProjectUpdatesFilter>;
9273
+ /** Comparator for the updated at date. */
9274
+ updatedAt?: Maybe<DateComparator>;
9275
+ };
9276
+ /** Options for filtering projects by project updates. */
9277
+ export declare type ProjectUpdatesFilter = {
9278
+ /** Compound filters, all of which need to be matched by the project updates. */
9279
+ and?: Maybe<Array<ProjectUpdatesFilter>>;
9280
+ /** Comparator for the created at date. */
9281
+ createdAt?: Maybe<DateComparator>;
9282
+ /** Comparator for the identifier. */
9283
+ id?: Maybe<IdComparator>;
9284
+ /** Compound filters, one of which need to be matched by the project updates. */
9285
+ or?: Maybe<Array<ProjectUpdatesFilter>>;
9286
+ /** Comparator for the updated at date. */
9287
+ updatedAt?: Maybe<DateComparator>;
9288
+ };
8657
9289
  /** A user's web browser push notification subscription. */
8658
9290
  export declare type PushSubscription = Node & {
8659
9291
  __typename?: "PushSubscription";
@@ -8825,8 +9457,8 @@ export declare type Query = {
8825
9457
  issueFilterSuggestion: IssueFilterSuggestionPayload;
8826
9458
  /** Checks a CSV file validity against a specific import service. */
8827
9459
  issueImportCheckCSV: IssueImportCheckPayload;
8828
- /** Fetches the GitHub token, completing the OAuth flow. */
8829
- issueImportFinishGithubOAuth: GithubOAuthTokenPayload;
9460
+ /** Checks whether it will be possible to setup sync for this project or repository at the end of import */
9461
+ issueImportCheckSync: IssueImportSyncCheckPayload;
8830
9462
  /** One specific label. */
8831
9463
  issueLabel: IssueLabel;
8832
9464
  /** All issue labels. */
@@ -8863,6 +9495,8 @@ export declare type Query = {
8863
9495
  organizationInviteDetails: OrganizationInviteDetailsPayload;
8864
9496
  /** All invites for the organization. */
8865
9497
  organizationInvites: OrganizationInviteConnection;
9498
+ /** [INTERNAL] Get organization metadata by urlKey or organization id. */
9499
+ organizationMeta?: Maybe<OrganizationMeta>;
8866
9500
  /** One specific project. */
8867
9501
  project: Project;
8868
9502
  /** Suggests filters for a project view based on a text prompt. */
@@ -9189,8 +9823,8 @@ export declare type QueryIssueImportCheckCsvArgs = {
9189
9823
  csvUrl: Scalars["String"];
9190
9824
  service: Scalars["String"];
9191
9825
  };
9192
- export declare type QueryIssueImportFinishGithubOAuthArgs = {
9193
- code: Scalars["String"];
9826
+ export declare type QueryIssueImportCheckSyncArgs = {
9827
+ issueImportId: Scalars["String"];
9194
9828
  };
9195
9829
  export declare type QueryIssueLabelArgs = {
9196
9830
  id: Scalars["String"];
@@ -9280,6 +9914,9 @@ export declare type QueryOrganizationInvitesArgs = {
9280
9914
  last?: Maybe<Scalars["Int"]>;
9281
9915
  orderBy?: Maybe<PaginationOrderBy>;
9282
9916
  };
9917
+ export declare type QueryOrganizationMetaArgs = {
9918
+ urlKey: Scalars["String"];
9919
+ };
9283
9920
  export declare type QueryProjectArgs = {
9284
9921
  id: Scalars["String"];
9285
9922
  };
@@ -9559,6 +10196,29 @@ export declare type Reaction = Node & {
9559
10196
  /** The user that created the reaction. */
9560
10197
  user?: Maybe<User>;
9561
10198
  };
10199
+ /** Reaction filtering options. */
10200
+ export declare type ReactionCollectionFilter = {
10201
+ /** Compound filters, all of which need to be matched by the reaction. */
10202
+ and?: Maybe<Array<ReactionCollectionFilter>>;
10203
+ /** Comparator for the created at date. */
10204
+ createdAt?: Maybe<DateComparator>;
10205
+ /** Comparator for the reactions custom emoji. */
10206
+ customEmojiId?: Maybe<IdComparator>;
10207
+ /** Comparator for the reactions emoji. */
10208
+ emoji?: Maybe<StringComparator>;
10209
+ /** Filters that needs to be matched by all reactions. */
10210
+ every?: Maybe<ReactionFilter>;
10211
+ /** Comparator for the identifier. */
10212
+ id?: Maybe<IdComparator>;
10213
+ /** Comparator for the collection length. */
10214
+ length?: Maybe<NumberComparator>;
10215
+ /** Compound filters, one of which need to be matched by the reaction. */
10216
+ or?: Maybe<Array<ReactionCollectionFilter>>;
10217
+ /** Filters that needs to be matched by some reactions. */
10218
+ some?: Maybe<ReactionFilter>;
10219
+ /** Comparator for the updated at date. */
10220
+ updatedAt?: Maybe<DateComparator>;
10221
+ };
9562
10222
  export declare type ReactionConnection = {
9563
10223
  __typename?: "ReactionConnection";
9564
10224
  edges: Array<ReactionEdge>;
@@ -9569,7 +10229,7 @@ export declare type ReactionCreateInput = {
9569
10229
  /** The comment to associate the reaction with. */
9570
10230
  commentId?: Maybe<Scalars["String"]>;
9571
10231
  /** The emoji the user reacted with. */
9572
- emoji?: Maybe<Scalars["String"]>;
10232
+ emoji: Scalars["String"];
9573
10233
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
9574
10234
  id?: Maybe<Scalars["String"]>;
9575
10235
  /** The issue to associate the reaction with. */
@@ -9583,6 +10243,23 @@ export declare type ReactionEdge = {
9583
10243
  cursor: Scalars["String"];
9584
10244
  node: Reaction;
9585
10245
  };
10246
+ /** Reaction filtering options. */
10247
+ export declare type ReactionFilter = {
10248
+ /** Compound filters, all of which need to be matched by the reaction. */
10249
+ and?: Maybe<Array<ReactionFilter>>;
10250
+ /** Comparator for the created at date. */
10251
+ createdAt?: Maybe<DateComparator>;
10252
+ /** Comparator for the reactions custom emoji. */
10253
+ customEmojiId?: Maybe<IdComparator>;
10254
+ /** Comparator for the reactions emoji. */
10255
+ emoji?: Maybe<StringComparator>;
10256
+ /** Comparator for the identifier. */
10257
+ id?: Maybe<IdComparator>;
10258
+ /** Compound filters, one of which need to be matched by the reaction. */
10259
+ or?: Maybe<Array<ReactionFilter>>;
10260
+ /** Comparator for the updated at date. */
10261
+ updatedAt?: Maybe<DateComparator>;
10262
+ };
9586
10263
  export declare type ReactionPayload = {
9587
10264
  __typename?: "ReactionPayload";
9588
10265
  /** The identifier of the last sync operation. */
@@ -9621,8 +10298,10 @@ export declare type Reminder = Node & {
9621
10298
  issueId?: Maybe<Issue>;
9622
10299
  /** The project that the reminder is associated with. */
9623
10300
  projectId?: Maybe<Project>;
9624
- /** The time when a reminder triggers a notification in users inbox. */
9625
- remindAt: Scalars["DateTime"];
10301
+ /** The time when a reminder triggers a notification in the user's inbox. */
10302
+ remindAt?: Maybe<Scalars["DateTime"]>;
10303
+ /** Scheduling settings for recurring reminders. */
10304
+ schedule?: Maybe<Scalars["JSONObject"]>;
9626
10305
  /**
9627
10306
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
9628
10307
  * 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
@@ -9860,6 +10539,8 @@ export declare type SentrySettingsInput = {
9860
10539
  /** Shared Slack integration settings. */
9861
10540
  export declare type SharedSlackSettings = {
9862
10541
  __typename?: "SharedSlackSettings";
10542
+ /** Enterprise id of the connected Slack enterprise */
10543
+ enterpriseId?: Maybe<Scalars["String"]>;
9863
10544
  /** Enterprise name of the connected Slack enterprise */
9864
10545
  enterpriseName?: Maybe<Scalars["String"]>;
9865
10546
  /** Whether to show unfurl previews in Slack */
@@ -9870,6 +10551,8 @@ export declare type SharedSlackSettings = {
9870
10551
  teamName?: Maybe<Scalars["String"]>;
9871
10552
  };
9872
10553
  export declare type SharedSlackSettingsInput = {
10554
+ /** Enterprise id of the connected Slack enterprise */
10555
+ enterpriseId?: Maybe<Scalars["String"]>;
9873
10556
  /** Enterprise name of the connected Slack enterprise */
9874
10557
  enterpriseName?: Maybe<Scalars["String"]>;
9875
10558
  /** Whether to show unfurl previews in Slack */
@@ -9885,8 +10568,7 @@ export declare enum SlaStatus {
9885
10568
  Failed = "Failed",
9886
10569
  HighRisk = "HighRisk",
9887
10570
  LowRisk = "LowRisk",
9888
- MediumRisk = "MediumRisk",
9889
- Paused = "Paused"
10571
+ MediumRisk = "MediumRisk"
9890
10572
  }
9891
10573
  /** Comparator for sla status. */
9892
10574
  export declare type SlaStatusComparator = {
@@ -9913,6 +10595,8 @@ export declare type SlackAsksSettings = {
9913
10595
  __typename?: "SlackAsksSettings";
9914
10596
  /** The user role type that is allowed to manage Asks settings. */
9915
10597
  canAdministrate: UserRoleType;
10598
+ /** Enterprise id of the connected Slack enterprise */
10599
+ enterpriseId?: Maybe<Scalars["String"]>;
9916
10600
  /** Enterprise name of the connected Slack enterprise */
9917
10601
  enterpriseName?: Maybe<Scalars["String"]>;
9918
10602
  /** Whether to show unfurl previews in Slack */
@@ -9927,6 +10611,8 @@ export declare type SlackAsksSettings = {
9927
10611
  export declare type SlackAsksSettingsInput = {
9928
10612
  /** The user role type that is allowed to manage Asks settings. */
9929
10613
  canAdministrate: UserRoleType;
10614
+ /** Enterprise id of the connected Slack enterprise */
10615
+ enterpriseId?: Maybe<Scalars["String"]>;
9930
10616
  /** Enterprise name of the connected Slack enterprise */
9931
10617
  enterpriseName?: Maybe<Scalars["String"]>;
9932
10618
  /** Whether to show unfurl previews in Slack */
@@ -10040,6 +10726,8 @@ export declare type SlackPostSettingsInput = {
10040
10726
  /** Settings for the regular Slack integration. */
10041
10727
  export declare type SlackSettings = {
10042
10728
  __typename?: "SlackSettings";
10729
+ /** Enterprise id of the connected Slack enterprise */
10730
+ enterpriseId?: Maybe<Scalars["String"]>;
10043
10731
  /** Enterprise name of the connected Slack enterprise */
10044
10732
  enterpriseName?: Maybe<Scalars["String"]>;
10045
10733
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
@@ -10052,6 +10740,8 @@ export declare type SlackSettings = {
10052
10740
  teamName?: Maybe<Scalars["String"]>;
10053
10741
  };
10054
10742
  export declare type SlackSettingsInput = {
10743
+ /** Enterprise id of the connected Slack enterprise */
10744
+ enterpriseId?: Maybe<Scalars["String"]>;
10055
10745
  /** Enterprise name of the connected Slack enterprise */
10056
10746
  enterpriseName?: Maybe<Scalars["String"]>;
10057
10747
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
@@ -10164,6 +10854,13 @@ export declare type SubTypeComparator = {
10164
10854
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
10165
10855
  null?: Maybe<Scalars["Boolean"]>;
10166
10856
  };
10857
+ export declare type SuccessPayload = {
10858
+ __typename?: "SuccessPayload";
10859
+ /** The identifier of the last sync operation. */
10860
+ lastSyncId: Scalars["Float"];
10861
+ /** Whether the operation was successful. */
10862
+ success: Scalars["Boolean"];
10863
+ };
10167
10864
  export declare type SummaryPayload = {
10168
10865
  __typename?: "SummaryPayload";
10169
10866
  /** Summary for project updates. */
@@ -10581,7 +11278,7 @@ export declare type TeamMembership = Node & {
10581
11278
  /** The unique identifier of the entity. */
10582
11279
  id: Scalars["ID"];
10583
11280
  /** Whether the user is the owner of the team. */
10584
- owner?: Maybe<Scalars["Boolean"]>;
11281
+ owner: Scalars["Boolean"];
10585
11282
  /** The order of the item in the users team list. */
10586
11283
  sortOrder: Scalars["Float"];
10587
11284
  /** The team that the membership is associated with. */
@@ -10883,6 +11580,36 @@ export declare type TemplateUpdateInput = {
10883
11580
  /** The template data as JSON encoded attributes of the type of entity, such as an issue. */
10884
11581
  templateData?: Maybe<Scalars["JSON"]>;
10885
11582
  };
11583
+ /** A text draft, used for comments and project updates. */
11584
+ export declare type TextDraft = Node & {
11585
+ __typename?: "TextDraft";
11586
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
11587
+ archivedAt?: Maybe<Scalars["DateTime"]>;
11588
+ /** The text content as a Prosemirror document. */
11589
+ bodyData: Scalars["JSON"];
11590
+ /** The time at which the entity was created. */
11591
+ createdAt: Scalars["DateTime"];
11592
+ /** The unique identifier of the entity. */
11593
+ id: Scalars["ID"];
11594
+ /** Whether the draft was autogenerated for the user. */
11595
+ isAutogenerated: Scalars["Boolean"];
11596
+ /** The issue for which this is a draft comment. */
11597
+ issue?: Maybe<Issue>;
11598
+ /** The comment for which this is a draft comment reply. */
11599
+ parentComment?: Maybe<Comment>;
11600
+ /** The project for which this is a draft project update. */
11601
+ project?: Maybe<Project>;
11602
+ /** The project update for which this is a draft comment. */
11603
+ projectUpdate?: Maybe<ProjectUpdate>;
11604
+ /**
11605
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
11606
+ * 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
11607
+ * been updated after creation.
11608
+ */
11609
+ updatedAt: Scalars["DateTime"];
11610
+ /** The user who created the draft. */
11611
+ user: User;
11612
+ };
10886
11613
  /** A time schedule. */
10887
11614
  export declare type TimeSchedule = Node & {
10888
11615
  __typename?: "TimeSchedule";
@@ -10891,7 +11618,7 @@ export declare type TimeSchedule = Node & {
10891
11618
  /** The time at which the entity was created. */
10892
11619
  createdAt: Scalars["DateTime"];
10893
11620
  /** The schedule entries. */
10894
- entries: Array<TimeScheduleEntry>;
11621
+ entries?: Maybe<Array<TimeScheduleEntry>>;
10895
11622
  /** The identifier of the external schedule. */
10896
11623
  externalId?: Maybe<Scalars["String"]>;
10897
11624
  /** The URL to the external schedule. */
@@ -11189,6 +11916,8 @@ export declare type User = Node & {
11189
11916
  teamMemberships: TeamMembershipConnection;
11190
11917
  /** Teams the user is part of. */
11191
11918
  teams: TeamConnection;
11919
+ /** [Internal] Text drafts created by the user. */
11920
+ textDrafts: Array<TextDraft>;
11192
11921
  /** The local timezone of the user. */
11193
11922
  timezone?: Maybe<Scalars["String"]>;
11194
11923
  /**
@@ -11504,6 +12233,8 @@ export declare type UserSettings = Node & {
11504
12233
  createdAt: Scalars["DateTime"];
11505
12234
  /** The unique identifier of the entity. */
11506
12235
  id: Scalars["ID"];
12236
+ /** The notification delivery preferences for the user. */
12237
+ notificationDeliveryPreferences: NotificationDeliveryPreferences;
11507
12238
  /** The notification channel settings the user has selected. */
11508
12239
  notificationPreferences: Scalars["JSONObject"];
11509
12240
  /** Whether to show full user names instead of display names. */
@@ -11535,13 +12266,13 @@ export declare type UserSettings = Node & {
11535
12266
  export declare type UserSettingsFlagPayload = {
11536
12267
  __typename?: "UserSettingsFlagPayload";
11537
12268
  /** The flag key which was updated. */
11538
- flag: Scalars["String"];
12269
+ flag?: Maybe<Scalars["String"]>;
11539
12270
  /** The identifier of the last sync operation. */
11540
12271
  lastSyncId: Scalars["Float"];
11541
12272
  /** Whether the operation was successful. */
11542
12273
  success: Scalars["Boolean"];
11543
12274
  /** The flag value after update. */
11544
- value: Scalars["Int"];
12275
+ value?: Maybe<Scalars["Int"]>;
11545
12276
  };
11546
12277
  export declare type UserSettingsFlagsResetPayload = {
11547
12278
  __typename?: "UserSettingsFlagsResetPayload";
@@ -11560,6 +12291,8 @@ export declare type UserSettingsPayload = {
11560
12291
  userSettings: UserSettings;
11561
12292
  };
11562
12293
  export declare type UserSettingsUpdateInput = {
12294
+ /** The user's notification delivery preferences. */
12295
+ notificationDeliveryPreferences?: Maybe<NotificationDeliveryPreferencesInput>;
11563
12296
  /** The user's notification preferences. */
11564
12297
  notificationPreferences?: Maybe<Scalars["JSONObject"]>;
11565
12298
  /** The user's settings. */
@@ -11696,14 +12429,16 @@ export declare enum ViewType {
11696
12429
  Cycle = "cycle",
11697
12430
  Inbox = "inbox",
11698
12431
  Initiative = "initiative",
12432
+ InitiativeOverview = "initiativeOverview",
11699
12433
  Initiatives = "initiatives",
12434
+ InitiativesCompleted = "initiativesCompleted",
12435
+ InitiativesPlanned = "initiativesPlanned",
11700
12436
  IssueIdentifiers = "issueIdentifiers",
11701
12437
  Label = "label",
11702
12438
  MyIssues = "myIssues",
11703
12439
  MyIssuesActivity = "myIssuesActivity",
11704
12440
  MyIssuesCreatedByMe = "myIssuesCreatedByMe",
11705
12441
  MyIssuesSubscribedTo = "myIssuesSubscribedTo",
11706
- MyViews = "myViews",
11707
12442
  Project = "project",
11708
12443
  ProjectDocuments = "projectDocuments",
11709
12444
  Projects = "projects",
@@ -11862,7 +12597,7 @@ export declare type WorkflowDefinition = Node & {
11862
12597
  /** The time at which the entity was archived. Null if the entity has not been archived. */
11863
12598
  archivedAt?: Maybe<Scalars["DateTime"]>;
11864
12599
  /** The conditions that need to be match for the workflow to be triggered. */
11865
- conditions: Scalars["JSONObject"];
12600
+ conditions?: Maybe<Scalars["JSONObject"]>;
11866
12601
  /** The type of view to which this workflow's context is associated with. */
11867
12602
  contextViewType?: Maybe<ContextViewType>;
11868
12603
  /** The time at which the entity was created. */
@@ -12138,6 +12873,9 @@ declare type Entity_CycleNotificationSubscription_Fragment = {
12138
12873
  declare type Entity_DocumentNotification_Fragment = {
12139
12874
  __typename: "DocumentNotification";
12140
12875
  } & Pick<DocumentNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12876
+ declare type Entity_InitiativeNotification_Fragment = {
12877
+ __typename: "InitiativeNotification";
12878
+ } & Pick<InitiativeNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12141
12879
  declare type Entity_IssueNotification_Fragment = {
12142
12880
  __typename: "IssueNotification";
12143
12881
  } & Pick<IssueNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -12159,13 +12897,16 @@ declare type Entity_TeamNotificationSubscription_Fragment = {
12159
12897
  declare type Entity_UserNotificationSubscription_Fragment = {
12160
12898
  __typename: "UserNotificationSubscription";
12161
12899
  } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12162
- export declare type EntityFragment = Entity_CustomViewNotificationSubscription_Fragment | Entity_CycleNotificationSubscription_Fragment | Entity_DocumentNotification_Fragment | Entity_IssueNotification_Fragment | Entity_LabelNotificationSubscription_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment | Entity_UserNotificationSubscription_Fragment;
12900
+ export declare type EntityFragment = Entity_CustomViewNotificationSubscription_Fragment | Entity_CycleNotificationSubscription_Fragment | Entity_DocumentNotification_Fragment | Entity_InitiativeNotification_Fragment | Entity_IssueNotification_Fragment | Entity_LabelNotificationSubscription_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment | Entity_UserNotificationSubscription_Fragment;
12163
12901
  export declare type ActorBotFragment = {
12164
12902
  __typename: "ActorBot";
12165
12903
  } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
12166
12904
  export declare type CommentFragment = {
12167
12905
  __typename: "Comment";
12168
12906
  } & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "quotedText" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
12907
+ reactions: Array<{
12908
+ __typename?: "Reaction";
12909
+ } & ReactionFragment>;
12169
12910
  botActor?: Maybe<{
12170
12911
  __typename?: "ActorBot";
12171
12912
  } & ActorBotFragment>;
@@ -12331,7 +13072,7 @@ export declare type DocumentNotificationFragment = {
12331
13072
  };
12332
13073
  export declare type DocumentFragment = {
12333
13074
  __typename: "Document";
12334
- } & Pick<Document, "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13075
+ } & Pick<Document, "trashed" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
12335
13076
  lastAppliedTemplate?: Maybe<{
12336
13077
  __typename?: "Template";
12337
13078
  } & Pick<Template, "id">>;
@@ -12345,6 +13086,41 @@ export declare type DocumentFragment = {
12345
13086
  __typename?: "User";
12346
13087
  } & Pick<User, "id">;
12347
13088
  };
13089
+ export declare type FacetFragment = {
13090
+ __typename: "Facet";
13091
+ } & Pick<Facet, "updatedAt" | "sourcePage" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
13092
+ sourceProject?: Maybe<{
13093
+ __typename?: "Project";
13094
+ } & Pick<Project, "id">>;
13095
+ sourceTeam?: Maybe<{
13096
+ __typename?: "Team";
13097
+ } & Pick<Team, "id">>;
13098
+ targetCustomView?: Maybe<{
13099
+ __typename?: "CustomView";
13100
+ } & Pick<CustomView, "id">>;
13101
+ };
13102
+ export declare type FeatureFlagFragment = {
13103
+ __typename: "FeatureFlag";
13104
+ } & Pick<FeatureFlag, "description" | "lastStageUpdatedAt" | "updatedAt" | "status" | "archivedAt" | "createdAt" | "id" | "key" | "externalUrl" | "isEnabled"> & {
13105
+ integration: {
13106
+ __typename?: "Integration";
13107
+ } & Pick<Integration, "id">;
13108
+ pendingRolloutStage?: Maybe<{
13109
+ __typename?: "FeatureFlagRolloutStage";
13110
+ } & FeatureFlagRolloutStageFragment>;
13111
+ project?: Maybe<{
13112
+ __typename?: "Project";
13113
+ } & Pick<Project, "id">>;
13114
+ rolloutStage: {
13115
+ __typename?: "FeatureFlagRolloutStage";
13116
+ } & FeatureFlagRolloutStageFragment;
13117
+ creator?: Maybe<{
13118
+ __typename?: "User";
13119
+ } & Pick<User, "id">>;
13120
+ lastStageUpdatedBy?: Maybe<{
13121
+ __typename?: "User";
13122
+ } & Pick<User, "id">>;
13123
+ };
12348
13124
  export declare type AttachmentArchivePayloadFragment = {
12349
13125
  __typename: "AttachmentArchivePayload";
12350
13126
  } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
@@ -12359,6 +13135,13 @@ export declare type CycleArchivePayloadFragment = {
12359
13135
  __typename?: "Cycle";
12360
13136
  } & Pick<Cycle, "id">>;
12361
13137
  };
13138
+ export declare type DocumentArchivePayloadFragment = {
13139
+ __typename: "DocumentArchivePayload";
13140
+ } & Pick<DocumentArchivePayload, "lastSyncId" | "success"> & {
13141
+ entity?: Maybe<{
13142
+ __typename?: "Document";
13143
+ } & Pick<Document, "id">>;
13144
+ };
12362
13145
  export declare type InitiativeArchivePayloadFragment = {
12363
13146
  __typename: "InitiativeArchivePayload";
12364
13147
  } & Pick<InitiativeArchivePayload, "lastSyncId" | "success">;
@@ -12375,6 +13158,8 @@ export declare type NotificationArchivePayloadFragment = {
12375
13158
  entity?: Maybe<({
12376
13159
  __typename?: "DocumentNotification";
12377
13160
  } & Notification_DocumentNotification_Fragment) | ({
13161
+ __typename?: "InitiativeNotification";
13162
+ } & Notification_InitiativeNotification_Fragment) | ({
12378
13163
  __typename?: "IssueNotification";
12379
13164
  } & Notification_IssueNotification_Fragment) | ({
12380
13165
  __typename?: "OauthClientApprovalNotification";
@@ -12419,6 +13204,9 @@ declare type ArchivePayload_CycleArchivePayload_Fragment = {
12419
13204
  declare type ArchivePayload_DeletePayload_Fragment = {
12420
13205
  __typename: "DeletePayload";
12421
13206
  } & Pick<DeletePayload, "lastSyncId" | "success"> & DeletePayloadFragment;
13207
+ declare type ArchivePayload_DocumentArchivePayload_Fragment = {
13208
+ __typename: "DocumentArchivePayload";
13209
+ } & Pick<DocumentArchivePayload, "lastSyncId" | "success"> & DocumentArchivePayloadFragment;
12422
13210
  declare type ArchivePayload_InitiativeArchivePayload_Fragment = {
12423
13211
  __typename: "InitiativeArchivePayload";
12424
13212
  } & Pick<InitiativeArchivePayload, "lastSyncId" | "success"> & InitiativeArchivePayloadFragment;
@@ -12440,7 +13228,7 @@ declare type ArchivePayload_TeamArchivePayload_Fragment = {
12440
13228
  declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
12441
13229
  __typename: "WorkflowStateArchivePayload";
12442
13230
  } & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & WorkflowStateArchivePayloadFragment;
12443
- 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;
13231
+ 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;
12444
13232
  export declare type DeletePayloadFragment = {
12445
13233
  __typename: "DeletePayload";
12446
13234
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
@@ -12492,6 +13280,22 @@ declare type Notification_DocumentNotification_Fragment = {
12492
13280
  __typename?: "User";
12493
13281
  } & Pick<User, "id">;
12494
13282
  } & DocumentNotificationFragment;
13283
+ declare type Notification_InitiativeNotification_Fragment = {
13284
+ __typename: "InitiativeNotification";
13285
+ } & Pick<InitiativeNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
13286
+ botActor?: Maybe<{
13287
+ __typename?: "ActorBot";
13288
+ } & ActorBotFragment>;
13289
+ externalUserActor?: Maybe<{
13290
+ __typename?: "ExternalUser";
13291
+ } & Pick<ExternalUser, "id">>;
13292
+ actor?: Maybe<{
13293
+ __typename?: "User";
13294
+ } & Pick<User, "id">>;
13295
+ user: {
13296
+ __typename?: "User";
13297
+ } & Pick<User, "id">;
13298
+ } & InitiativeNotificationFragment;
12495
13299
  declare type Notification_IssueNotification_Fragment = {
12496
13300
  __typename: "IssueNotification";
12497
13301
  } & Pick<IssueNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
@@ -12540,7 +13344,7 @@ declare type Notification_ProjectNotification_Fragment = {
12540
13344
  __typename?: "User";
12541
13345
  } & Pick<User, "id">;
12542
13346
  } & ProjectNotificationFragment;
12543
- export declare type NotificationFragment = Notification_DocumentNotification_Fragment | Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
13347
+ export declare type NotificationFragment = Notification_DocumentNotification_Fragment | Notification_InitiativeNotification_Fragment | Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
12544
13348
  export declare type ProjectNotificationSubscriptionFragment = {
12545
13349
  __typename: "ProjectNotificationSubscription";
12546
13350
  } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
@@ -12638,66 +13442,69 @@ export declare type IssueHistoryFragment = {
12638
13442
  relationChanges?: Maybe<Array<{
12639
13443
  __typename?: "IssueRelationHistoryPayload";
12640
13444
  } & IssueRelationHistoryPayloadFragment>>;
13445
+ actor?: Maybe<{
13446
+ __typename?: "User";
13447
+ } & Pick<User, "id">>;
13448
+ actors: Array<{
13449
+ __typename?: "User";
13450
+ } & UserFragment>;
12641
13451
  botActor?: Maybe<{
12642
13452
  __typename?: "ActorBot";
12643
13453
  } & ActorBotFragment>;
13454
+ fromCycle?: Maybe<{
13455
+ __typename?: "Cycle";
13456
+ } & Pick<Cycle, "id">>;
13457
+ toCycle?: Maybe<{
13458
+ __typename?: "Cycle";
13459
+ } & Pick<Cycle, "id">>;
12644
13460
  issueImport?: Maybe<{
12645
13461
  __typename?: "IssueImport";
12646
13462
  } & IssueImportFragment>;
12647
13463
  issue: {
12648
13464
  __typename?: "Issue";
12649
13465
  } & Pick<Issue, "id">;
13466
+ addedLabels?: Maybe<Array<{
13467
+ __typename?: "IssueLabel";
13468
+ } & IssueLabelFragment>>;
13469
+ removedLabels?: Maybe<Array<{
13470
+ __typename?: "IssueLabel";
13471
+ } & IssueLabelFragment>>;
12650
13472
  attachment?: Maybe<{
12651
13473
  __typename?: "Attachment";
12652
13474
  } & Pick<Attachment, "id">>;
12653
- toCycle?: Maybe<{
12654
- __typename?: "Cycle";
12655
- } & Pick<Cycle, "id">>;
12656
- toParent?: Maybe<{
12657
- __typename?: "Issue";
12658
- } & Pick<Issue, "id">>;
12659
13475
  toConvertedProject?: Maybe<{
12660
13476
  __typename?: "Project";
12661
13477
  } & Pick<Project, "id">>;
12662
- toProject?: Maybe<{
12663
- __typename?: "Project";
12664
- } & Pick<Project, "id">>;
12665
- toState?: Maybe<{
12666
- __typename?: "WorkflowState";
12667
- } & Pick<WorkflowState, "id">>;
12668
- fromCycle?: Maybe<{
12669
- __typename?: "Cycle";
12670
- } & Pick<Cycle, "id">>;
12671
13478
  fromParent?: Maybe<{
12672
13479
  __typename?: "Issue";
12673
13480
  } & Pick<Issue, "id">>;
13481
+ toParent?: Maybe<{
13482
+ __typename?: "Issue";
13483
+ } & Pick<Issue, "id">>;
12674
13484
  fromProject?: Maybe<{
12675
13485
  __typename?: "Project";
12676
13486
  } & Pick<Project, "id">>;
13487
+ toProject?: Maybe<{
13488
+ __typename?: "Project";
13489
+ } & Pick<Project, "id">>;
12677
13490
  fromState?: Maybe<{
12678
13491
  __typename?: "WorkflowState";
12679
13492
  } & Pick<WorkflowState, "id">>;
13493
+ toState?: Maybe<{
13494
+ __typename?: "WorkflowState";
13495
+ } & Pick<WorkflowState, "id">>;
12680
13496
  fromTeam?: Maybe<{
12681
13497
  __typename?: "Team";
12682
13498
  } & Pick<Team, "id">>;
12683
13499
  toTeam?: Maybe<{
12684
13500
  __typename?: "Team";
12685
13501
  } & Pick<Team, "id">>;
12686
- fromAssignee?: Maybe<{
12687
- __typename?: "User";
12688
- } & Pick<User, "id">>;
12689
13502
  toAssignee?: Maybe<{
12690
13503
  __typename?: "User";
12691
13504
  } & Pick<User, "id">>;
12692
- actor?: Maybe<{
13505
+ fromAssignee?: Maybe<{
12693
13506
  __typename?: "User";
12694
13507
  } & Pick<User, "id">>;
12695
- addedLabels?: Maybe<Array<{
12696
- __typename?: "IssueLabel";
12697
- } & IssueLabelFragment>>;
12698
- removedLabels?: Maybe<Array<{
12699
- __typename?: "IssueLabel";
12700
- } & IssueLabelFragment>>;
12701
13508
  triageResponsibilityNotifiedUsers?: Maybe<Array<{
12702
13509
  __typename?: "User";
12703
13510
  } & UserFragment>>;
@@ -12730,7 +13537,7 @@ export declare type ProjectRelationFragment = {
12730
13537
  };
12731
13538
  export declare type ReminderFragment = {
12732
13539
  __typename: "Reminder";
12733
- } & Pick<Reminder, "updatedAt" | "comment" | "archivedAt" | "createdAt" | "remindAt" | "id"> & {
13540
+ } & Pick<Reminder, "schedule" | "updatedAt" | "comment" | "archivedAt" | "createdAt" | "remindAt" | "id"> & {
12734
13541
  documentId?: Maybe<{
12735
13542
  __typename?: "Document";
12736
13543
  } & Pick<Document, "id">>;
@@ -12754,6 +13561,13 @@ export declare type RoadmapFragment = {
12754
13561
  __typename?: "User";
12755
13562
  } & Pick<User, "id">;
12756
13563
  };
13564
+ export declare type FeatureFlagRolloutStageFragment = {
13565
+ __typename: "FeatureFlagRolloutStage";
13566
+ } & Pick<FeatureFlagRolloutStage, "description" | "updatedAt" | "name" | "sortOrder" | "archivedAt" | "createdAt" | "type" | "id" | "segmentKeys"> & {
13567
+ integration: {
13568
+ __typename?: "Integration";
13569
+ } & Pick<Integration, "id">;
13570
+ };
12757
13571
  export declare type CycleFragment = {
12758
13572
  __typename: "Cycle";
12759
13573
  } & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
@@ -12822,15 +13636,34 @@ export declare type TemplateFragment = {
12822
13636
  __typename?: "User";
12823
13637
  } & Pick<User, "id">>;
12824
13638
  };
13639
+ export declare type TextDraftFragment = {
13640
+ __typename: "TextDraft";
13641
+ } & Pick<TextDraft, "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
13642
+ parentComment?: Maybe<{
13643
+ __typename?: "Comment";
13644
+ } & Pick<Comment, "id">>;
13645
+ issue?: Maybe<{
13646
+ __typename?: "Issue";
13647
+ } & Pick<Issue, "id">>;
13648
+ project?: Maybe<{
13649
+ __typename?: "Project";
13650
+ } & Pick<Project, "id">>;
13651
+ projectUpdate?: Maybe<{
13652
+ __typename?: "ProjectUpdate";
13653
+ } & Pick<ProjectUpdate, "id">>;
13654
+ user: {
13655
+ __typename?: "User";
13656
+ } & Pick<User, "id">;
13657
+ };
12825
13658
  export declare type TimeScheduleFragment = {
12826
13659
  __typename: "TimeSchedule";
12827
13660
  } & Pick<TimeSchedule, "externalUrl" | "externalId" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
12828
13661
  integration?: Maybe<{
12829
13662
  __typename?: "Integration";
12830
13663
  } & Pick<Integration, "id">>;
12831
- entries: Array<{
13664
+ entries?: Maybe<Array<{
12832
13665
  __typename?: "TimeScheduleEntry";
12833
- } & TimeScheduleEntryFragment>;
13666
+ } & TimeScheduleEntryFragment>>;
12834
13667
  };
12835
13668
  export declare type GitAutomationStateFragment = {
12836
13669
  __typename: "GitAutomationState";
@@ -12848,6 +13681,9 @@ export declare type GitAutomationStateFragment = {
12848
13681
  export declare type ProjectUpdateFragment = {
12849
13682
  __typename: "ProjectUpdate";
12850
13683
  } & Pick<ProjectUpdate, "reactionData" | "url" | "diffMarkdown" | "diff" | "health" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
13684
+ reactions: Array<{
13685
+ __typename?: "Reaction";
13686
+ } & ReactionFragment>;
12851
13687
  project: {
12852
13688
  __typename?: "Project";
12853
13689
  } & Pick<Project, "id">;
@@ -12885,7 +13721,7 @@ export declare type UserNotificationSubscriptionFragment = {
12885
13721
  };
12886
13722
  export declare type AuthUserFragment = {
12887
13723
  __typename: "AuthUser";
12888
- } & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "userAccountId" | "active" | "id"> & {
13724
+ } & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "userAccountId" | "active" | "role" | "id"> & {
12889
13725
  organization: {
12890
13726
  __typename?: "AuthOrganization";
12891
13727
  } & AuthOrganizationFragment;
@@ -12893,6 +13729,48 @@ export declare type AuthUserFragment = {
12893
13729
  export declare type UserFragment = {
12894
13730
  __typename: "User";
12895
13731
  } & 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">;
13732
+ export declare type NotificationDeliveryPreferencesFragment = {
13733
+ __typename: "NotificationDeliveryPreferences";
13734
+ } & {
13735
+ mobile?: Maybe<{
13736
+ __typename?: "NotificationDeliveryPreferencesChannel";
13737
+ } & NotificationDeliveryPreferencesChannelFragment>;
13738
+ };
13739
+ export declare type NotificationDeliveryPreferencesChannelFragment = {
13740
+ __typename: "NotificationDeliveryPreferencesChannel";
13741
+ } & Pick<NotificationDeliveryPreferencesChannel, "notificationsDisabled"> & {
13742
+ schedule?: Maybe<{
13743
+ __typename?: "NotificationDeliveryPreferencesSchedule";
13744
+ } & NotificationDeliveryPreferencesScheduleFragment>;
13745
+ };
13746
+ export declare type NotificationDeliveryPreferencesDayFragment = {
13747
+ __typename: "NotificationDeliveryPreferencesDay";
13748
+ } & Pick<NotificationDeliveryPreferencesDay, "end" | "start">;
13749
+ export declare type NotificationDeliveryPreferencesScheduleFragment = {
13750
+ __typename: "NotificationDeliveryPreferencesSchedule";
13751
+ } & Pick<NotificationDeliveryPreferencesSchedule, "disabled"> & {
13752
+ friday: {
13753
+ __typename?: "NotificationDeliveryPreferencesDay";
13754
+ } & NotificationDeliveryPreferencesDayFragment;
13755
+ monday: {
13756
+ __typename?: "NotificationDeliveryPreferencesDay";
13757
+ } & NotificationDeliveryPreferencesDayFragment;
13758
+ saturday: {
13759
+ __typename?: "NotificationDeliveryPreferencesDay";
13760
+ } & NotificationDeliveryPreferencesDayFragment;
13761
+ sunday: {
13762
+ __typename?: "NotificationDeliveryPreferencesDay";
13763
+ } & NotificationDeliveryPreferencesDayFragment;
13764
+ thursday: {
13765
+ __typename?: "NotificationDeliveryPreferencesDay";
13766
+ } & NotificationDeliveryPreferencesDayFragment;
13767
+ tuesday: {
13768
+ __typename?: "NotificationDeliveryPreferencesDay";
13769
+ } & NotificationDeliveryPreferencesDayFragment;
13770
+ wednesday: {
13771
+ __typename?: "NotificationDeliveryPreferencesDay";
13772
+ } & NotificationDeliveryPreferencesDayFragment;
13773
+ };
12896
13774
  export declare type PushSubscriptionFragment = {
12897
13775
  __typename: "PushSubscription";
12898
13776
  } & Pick<PushSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -12952,9 +13830,25 @@ export declare type EntityExternalLinkFragment = {
12952
13830
  __typename?: "User";
12953
13831
  } & Pick<User, "id">;
12954
13832
  };
12955
- export declare type IssueImportFragment = {
12956
- __typename: "IssueImport";
12957
- } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
13833
+ export declare type IssueImportFragment = {
13834
+ __typename: "IssueImport";
13835
+ } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "serviceMetadata" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
13836
+ export declare type InitiativeNotificationFragment = {
13837
+ __typename: "InitiativeNotification";
13838
+ } & Pick<InitiativeNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
13839
+ botActor?: Maybe<{
13840
+ __typename?: "ActorBot";
13841
+ } & ActorBotFragment>;
13842
+ externalUserActor?: Maybe<{
13843
+ __typename?: "ExternalUser";
13844
+ } & Pick<ExternalUser, "id">>;
13845
+ actor?: Maybe<{
13846
+ __typename?: "User";
13847
+ } & Pick<User, "id">>;
13848
+ user: {
13849
+ __typename?: "User";
13850
+ } & Pick<User, "id">;
13851
+ };
12958
13852
  export declare type IntegrationFragment = {
12959
13853
  __typename: "Integration";
12960
13854
  } & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -13018,7 +13912,10 @@ export declare type IssueNotificationFragment = {
13018
13912
  };
13019
13913
  export declare type IssueFragment = {
13020
13914
  __typename: "Issue";
13021
- } & 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"> & {
13915
+ } & 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"> & {
13916
+ reactions: Array<{
13917
+ __typename?: "Reaction";
13918
+ } & ReactionFragment>;
13022
13919
  botActor?: Maybe<{
13023
13920
  __typename?: "ActorBot";
13024
13921
  } & ActorBotFragment>;
@@ -13084,6 +13981,9 @@ export declare type OauthClientApprovalNotificationFragment = {
13084
13981
  export declare type OrganizationFragment = {
13085
13982
  __typename: "Organization";
13086
13983
  } & 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"> & {
13984
+ ipRestrictions?: Maybe<Array<{
13985
+ __typename?: "OrganizationIpRestriction";
13986
+ } & OrganizationIpRestrictionFragment>>;
13087
13987
  projectStatuses: Array<{
13088
13988
  __typename?: "ProjectStatus";
13089
13989
  } & ProjectStatusFragment>;
@@ -13093,7 +13993,7 @@ export declare type OrganizationFragment = {
13093
13993
  };
13094
13994
  export declare type AuthOrganizationFragment = {
13095
13995
  __typename: "AuthOrganization";
13096
- } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
13996
+ } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "enabled" | "userCount">;
13097
13997
  export declare type TeamFragment = {
13098
13998
  __typename: "Team";
13099
13999
  } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "scimManaged" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
@@ -13164,7 +14064,7 @@ export declare type TeamMembershipFragment = {
13164
14064
  };
13165
14065
  export declare type OrganizationDomainFragment = {
13166
14066
  __typename: "OrganizationDomain";
13167
- } & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "authType" | "claimed"> & {
14067
+ } & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "disableOrganizationCreation" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "authType" | "claimed"> & {
13168
14068
  creator?: Maybe<{
13169
14069
  __typename?: "User";
13170
14070
  } & Pick<User, "id">>;
@@ -13172,13 +14072,6 @@ export declare type OrganizationDomainFragment = {
13172
14072
  export declare type FrontSettingsFragment = {
13173
14073
  __typename: "FrontSettings";
13174
14074
  } & Pick<FrontSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
13175
- export declare type GithubOAuthTokenPayloadFragment = {
13176
- __typename: "GithubOAuthTokenPayload";
13177
- } & Pick<GithubOAuthTokenPayload, "token"> & {
13178
- organizations?: Maybe<Array<{
13179
- __typename?: "GithubOrg";
13180
- } & GithubOrgFragment>>;
13181
- };
13182
14075
  export declare type GitHubRepoFragment = {
13183
14076
  __typename: "GitHubRepo";
13184
14077
  } & Pick<GitHubRepo, "id" | "fullName">;
@@ -13219,7 +14112,7 @@ export declare type JiraPersonalSettingsFragment = {
13219
14112
  } & Pick<JiraPersonalSettings, "siteName">;
13220
14113
  export declare type JiraSettingsFragment = {
13221
14114
  __typename: "JiraSettings";
13222
- } & Pick<JiraSettings, "isJiraServer"> & {
14115
+ } & Pick<JiraSettings, "setupPending" | "isJiraServer" | "manualSetup"> & {
13223
14116
  projects: Array<{
13224
14117
  __typename?: "JiraProjectData";
13225
14118
  } & JiraProjectDataFragment>;
@@ -13260,6 +14153,9 @@ export declare type IssueLabelFragment = {
13260
14153
  __typename?: "User";
13261
14154
  } & Pick<User, "id">>;
13262
14155
  };
14156
+ export declare type LaunchDarklySettingsFragment = {
14157
+ __typename: "LaunchDarklySettings";
14158
+ } & Pick<LaunchDarklySettings, "environment" | "projectKey">;
13263
14159
  export declare type TeamRepoMappingFragment = {
13264
14160
  __typename: "TeamRepoMapping";
13265
14161
  } & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId" | "bidirectional" | "default">;
@@ -13269,9 +14165,16 @@ export declare type JiraProjectDataFragment = {
13269
14165
  export declare type GitHubPersonalSettingsFragment = {
13270
14166
  __typename: "GitHubPersonalSettings";
13271
14167
  } & Pick<GitHubPersonalSettings, "login">;
14168
+ export declare type GitHubImportSettingsFragment = {
14169
+ __typename: "GitHubImportSettings";
14170
+ } & Pick<GitHubImportSettings, "orgLogin" | "orgAvatarUrl" | "orgType"> & {
14171
+ repositories: Array<{
14172
+ __typename?: "GitHubRepo";
14173
+ } & GitHubRepoFragment>;
14174
+ };
13272
14175
  export declare type GitHubSettingsFragment = {
13273
14176
  __typename: "GitHubSettings";
13274
- } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl"> & {
14177
+ } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl" | "orgType"> & {
13275
14178
  repositoriesMapping?: Maybe<Array<{
13276
14179
  __typename?: "TeamRepoMapping";
13277
14180
  } & TeamRepoMappingFragment>>;
@@ -13469,16 +14372,9 @@ export declare type UserAuthorizedApplicationFragment = {
13469
14372
  export declare type ApplicationFragment = {
13470
14373
  __typename: "Application";
13471
14374
  } & Pick<Application, "name" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl">;
13472
- export declare type GithubOrgFragment = {
13473
- __typename: "GithubOrg";
13474
- } & Pick<GithubOrg, "id" | "login" | "isPersonal"> & {
13475
- repositories: Array<{
13476
- __typename?: "GithubRepo";
13477
- } & GithubRepoFragment>;
13478
- };
13479
- export declare type GithubRepoFragment = {
13480
- __typename: "GithubRepo";
13481
- } & Pick<GithubRepo, "id" | "name">;
14375
+ export declare type PasskeyFragment = {
14376
+ __typename: "Passkey";
14377
+ } & Pick<Passkey, "userAgent" | "updatedAt" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "createdAt" | "lastUsedAt" | "clientType" | "browserType" | "aaguid" | "id" | "label" | "lastUsedSessionId">;
13482
14378
  export declare type OauthClientApprovalFragment = {
13483
14379
  __typename: "OauthClientApproval";
13484
14380
  } & Pick<OauthClientApproval, "updatedAt" | "requesterId" | "responderId" | "requestReason" | "denyReason" | "scopes" | "status" | "archivedAt" | "createdAt" | "id" | "oauthClientId">;
@@ -13487,13 +14383,13 @@ export declare type SentrySettingsFragment = {
13487
14383
  } & Pick<SentrySettings, "organizationSlug">;
13488
14384
  export declare type SlackSettingsFragment = {
13489
14385
  __typename: "SlackSettings";
13490
- } & Pick<SlackSettings, "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention" | "shouldUnfurl">;
14386
+ } & Pick<SlackSettings, "enterpriseId" | "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention" | "shouldUnfurl">;
13491
14387
  export declare type SharedSlackSettingsFragment = {
13492
14388
  __typename: "SharedSlackSettings";
13493
- } & Pick<SharedSlackSettings, "enterpriseName" | "teamId" | "teamName" | "shouldUnfurl">;
14389
+ } & Pick<SharedSlackSettings, "enterpriseId" | "enterpriseName" | "teamId" | "teamName" | "shouldUnfurl">;
13494
14390
  export declare type SlackAsksSettingsFragment = {
13495
14391
  __typename: "SlackAsksSettings";
13496
- } & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName" | "canAdministrate" | "shouldUnfurl"> & {
14392
+ } & Pick<SlackAsksSettings, "enterpriseId" | "enterpriseName" | "teamId" | "teamName" | "canAdministrate" | "shouldUnfurl"> & {
13497
14393
  slackChannelMapping?: Maybe<Array<{
13498
14394
  __typename?: "SlackChannelNameMapping";
13499
14395
  } & SlackChannelNameMappingFragment>>;
@@ -13503,7 +14399,7 @@ export declare type SlackPostSettingsFragment = {
13503
14399
  } & Pick<SlackPostSettings, "channel" | "channelId" | "channelType" | "configurationUrl">;
13504
14400
  export declare type IntegrationsSettingsFragment = {
13505
14401
  __typename: "IntegrationsSettings";
13506
- } & Pick<IntegrationsSettings, "updatedAt" | "archivedAt" | "createdAt" | "id" | "slackIssueNewComment" | "slackIssueAddedToTriage" | "slackIssueCreated" | "slackProjectUpdateCreated" | "slackIssueSlaHighRisk" | "slackIssueSlaBreached" | "slackIssueStatusChangedDone" | "slackIssueStatusChangedAll" | "slackProjectUpdateCreatedToTeam" | "slackProjectUpdateCreatedToWorkspace"> & {
14402
+ } & Pick<IntegrationsSettings, "updatedAt" | "archivedAt" | "createdAt" | "id" | "slackIssueNewComment" | "slackIssueAddedToTriage" | "slackIssueCreated" | "slackProjectUpdateCreated" | "slackIssueSlaHighRisk" | "slackIssueSlaBreached" | "slackIssueAddedToView" | "slackIssueStatusChangedDone" | "slackIssueStatusChangedAll" | "slackProjectUpdateCreatedToTeam" | "slackProjectUpdateCreatedToWorkspace"> & {
13507
14403
  project?: Maybe<{
13508
14404
  __typename?: "Project";
13509
14405
  } & Pick<Project, "id">>;
@@ -13520,6 +14416,9 @@ export declare type IntegrationSettingsFragment = {
13520
14416
  gitHub?: Maybe<{
13521
14417
  __typename?: "GitHubSettings";
13522
14418
  } & GitHubSettingsFragment>;
14419
+ gitHubImport?: Maybe<{
14420
+ __typename?: "GitHubImportSettings";
14421
+ } & GitHubImportSettingsFragment>;
13523
14422
  gitHubPersonal?: Maybe<{
13524
14423
  __typename?: "GitHubPersonalSettings";
13525
14424
  } & GitHubPersonalSettingsFragment>;
@@ -13538,6 +14437,9 @@ export declare type IntegrationSettingsFragment = {
13538
14437
  jiraPersonal?: Maybe<{
13539
14438
  __typename?: "JiraPersonalSettings";
13540
14439
  } & JiraPersonalSettingsFragment>;
14440
+ launchDarkly?: Maybe<{
14441
+ __typename?: "LaunchDarklySettings";
14442
+ } & LaunchDarklySettingsFragment>;
13541
14443
  notion?: Maybe<{
13542
14444
  __typename?: "NotionSettings";
13543
14445
  } & NotionSettingsFragment>;
@@ -13556,6 +14458,9 @@ export declare type IntegrationSettingsFragment = {
13556
14458
  slackAsks?: Maybe<{
13557
14459
  __typename?: "SlackAsksSettings";
13558
14460
  } & SlackAsksSettingsFragment>;
14461
+ slackCustomViewNotifications?: Maybe<{
14462
+ __typename?: "SlackPostSettings";
14463
+ } & SlackPostSettingsFragment>;
13559
14464
  slackOrgProjectUpdatesPost?: Maybe<{
13560
14465
  __typename?: "SlackPostSettings";
13561
14466
  } & SlackPostSettingsFragment>;
@@ -13579,6 +14484,9 @@ export declare type PaidSubscriptionFragment = {
13579
14484
  export declare type UserSettingsFragment = {
13580
14485
  __typename: "UserSettings";
13581
14486
  } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "subscribedToDPA" | "subscribedToChangelog" | "subscribedToInviteAccepted" | "subscribedToPrivacyLegalUpdates" | "subscribedToUnreadNotificationsReminder" | "showFullUserNames"> & {
14487
+ notificationDeliveryPreferences: {
14488
+ __typename?: "NotificationDeliveryPreferences";
14489
+ } & NotificationDeliveryPreferencesFragment;
13582
14490
  user: {
13583
14491
  __typename?: "User";
13584
14492
  } & Pick<User, "id">;
@@ -13639,6 +14547,9 @@ export declare type ViewPreferencesFragment = {
13639
14547
  __typename?: "ViewPreferencesValues";
13640
14548
  } & ViewPreferencesValuesFragment;
13641
14549
  };
14550
+ export declare type IssueImportSyncCheckPayloadFragment = {
14551
+ __typename: "IssueImportSyncCheckPayload";
14552
+ } & Pick<IssueImportSyncCheckPayload, "error" | "canSync">;
13642
14553
  export declare type AuditEntryFragment = {
13643
14554
  __typename: "AuditEntry";
13644
14555
  } & Pick<AuditEntry, "requestInformation" | "metadata" | "countryCode" | "ip" | "actorId" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "type"> & {
@@ -13724,7 +14635,7 @@ export declare type AuthIntegrationFragment = {
13724
14635
  } & Pick<AuthIntegration, "id">;
13725
14636
  export declare type AuthOauthClientFragment = {
13726
14637
  __typename: "AuthOauthClient";
13727
- } & Pick<AuthOauthClient, "imageUrl" | "description" | "redirectUris" | "developer" | "clientId" | "name" | "clientSecret" | "creatorId" | "organizationId" | "id" | "developerUrl" | "webhookUrl" | "publicEnabled" | "archivedAt">;
14638
+ } & Pick<AuthOauthClient, "imageUrl" | "description" | "redirectUris" | "developer" | "clientId" | "name" | "clientSecret" | "creatorId" | "organizationId" | "webhookResourceTypes" | "id" | "developerUrl" | "webhookUrl" | "webhookSecret" | "publicEnabled" | "archivedAt">;
13728
14639
  export declare type AuthOauthClientWithTokensFragment = {
13729
14640
  __typename: "AuthOauthClientWithTokens";
13730
14641
  } & {
@@ -13735,9 +14646,12 @@ export declare type AuthOauthClientWithTokensFragment = {
13735
14646
  __typename?: "OauthToken";
13736
14647
  } & OauthTokenFragment>;
13737
14648
  };
14649
+ export declare type AuthOrganizationBucketNamePayloadFragment = {
14650
+ __typename: "AuthOrganizationBucketNamePayload";
14651
+ } & Pick<AuthOrganizationBucketNamePayload, "importsBucketName" | "uploadsBucketName">;
13738
14652
  export declare type AuthOrganizationDomainFragment = {
13739
14653
  __typename: "AuthOrganizationDomain";
13740
- } & Pick<AuthOrganizationDomain, "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
14654
+ } & Pick<AuthOrganizationDomain, "disableOrganizationCreation" | "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
13741
14655
  export declare type AuthOrganizationExistsPayloadFragment = {
13742
14656
  __typename: "AuthOrganizationExistsPayload";
13743
14657
  } & Pick<AuthOrganizationExistsPayload, "success" | "exists">;
@@ -13754,6 +14668,9 @@ export declare type AuthResolverResponseFragment = {
13754
14668
  users: Array<{
13755
14669
  __typename?: "AuthUser";
13756
14670
  } & AuthUserFragment>;
14671
+ lockedUsers: Array<{
14672
+ __typename?: "AuthUser";
14673
+ } & AuthUserFragment>;
13757
14674
  lockedOrganizations?: Maybe<Array<{
13758
14675
  __typename?: "AuthOrganization";
13759
14676
  } & AuthOrganizationFragment>>;
@@ -13880,9 +14797,9 @@ export declare type DocumentConnectionFragment = {
13880
14797
  export declare type DocumentContentHistoryPayloadFragment = {
13881
14798
  __typename: "DocumentContentHistoryPayload";
13882
14799
  } & Pick<DocumentContentHistoryPayload, "success"> & {
13883
- history?: Maybe<Array<{
14800
+ history: Array<{
13884
14801
  __typename?: "DocumentContentHistoryType";
13885
- } & DocumentContentHistoryTypeFragment>>;
14802
+ } & DocumentContentHistoryTypeFragment>;
13886
14803
  };
13887
14804
  export declare type DocumentContentHistoryTypeFragment = {
13888
14805
  __typename: "DocumentContentHistoryType";
@@ -13909,7 +14826,7 @@ export declare type DocumentSearchPayloadFragment = {
13909
14826
  };
13910
14827
  export declare type DocumentSearchResultFragment = {
13911
14828
  __typename: "DocumentSearchResult";
13912
- } & Pick<DocumentSearchResult, "metadata" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
14829
+ } & Pick<DocumentSearchResult, "trashed" | "metadata" | "url" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13913
14830
  lastAppliedTemplate?: Maybe<{
13914
14831
  __typename?: "Template";
13915
14832
  } & Pick<Template, "id">>;
@@ -13990,6 +14907,16 @@ export declare type ExternalUserConnectionFragment = {
13990
14907
  __typename?: "PageInfo";
13991
14908
  } & PageInfoFragment;
13992
14909
  };
14910
+ export declare type FacetConnectionFragment = {
14911
+ __typename: "FacetConnection";
14912
+ } & {
14913
+ nodes: Array<{
14914
+ __typename?: "Facet";
14915
+ } & FacetFragment>;
14916
+ pageInfo: {
14917
+ __typename?: "PageInfo";
14918
+ } & PageInfoFragment;
14919
+ };
13993
14920
  export declare type FavoriteConnectionFragment = {
13994
14921
  __typename: "FavoriteConnection";
13995
14922
  } & {
@@ -14007,6 +14934,26 @@ export declare type FavoritePayloadFragment = {
14007
14934
  __typename?: "Favorite";
14008
14935
  } & Pick<Favorite, "id">;
14009
14936
  };
14937
+ export declare type FeatureFlagConnectionFragment = {
14938
+ __typename: "FeatureFlagConnection";
14939
+ } & {
14940
+ nodes: Array<{
14941
+ __typename?: "FeatureFlag";
14942
+ } & FeatureFlagFragment>;
14943
+ pageInfo: {
14944
+ __typename?: "PageInfo";
14945
+ } & PageInfoFragment;
14946
+ };
14947
+ export declare type FeatureFlagRolloutStageConnectionFragment = {
14948
+ __typename: "FeatureFlagRolloutStageConnection";
14949
+ } & {
14950
+ nodes: Array<{
14951
+ __typename?: "FeatureFlagRolloutStage";
14952
+ } & FeatureFlagRolloutStageFragment>;
14953
+ pageInfo: {
14954
+ __typename?: "PageInfo";
14955
+ } & PageInfoFragment;
14956
+ };
14010
14957
  export declare type FrontAttachmentPayloadFragment = {
14011
14958
  __typename: "FrontAttachmentPayload";
14012
14959
  } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
@@ -14207,7 +15154,10 @@ export declare type IssueSearchPayloadFragment = {
14207
15154
  };
14208
15155
  export declare type IssueSearchResultFragment = {
14209
15156
  __typename: "IssueSearchResult";
14210
- } & 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"> & {
15157
+ } & 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"> & {
15158
+ reactions: Array<{
15159
+ __typename?: "Reaction";
15160
+ } & ReactionFragment>;
14211
15161
  botActor?: Maybe<{
14212
15162
  __typename?: "ActorBot";
14213
15163
  } & ActorBotFragment>;
@@ -14327,6 +15277,12 @@ declare type Node_Facet_Fragment = {
14327
15277
  declare type Node_Favorite_Fragment = {
14328
15278
  __typename: "Favorite";
14329
15279
  } & Pick<Favorite, "id">;
15280
+ declare type Node_FeatureFlag_Fragment = {
15281
+ __typename: "FeatureFlag";
15282
+ } & Pick<FeatureFlag, "id">;
15283
+ declare type Node_FeatureFlagRolloutStage_Fragment = {
15284
+ __typename: "FeatureFlagRolloutStage";
15285
+ } & Pick<FeatureFlagRolloutStage, "id">;
14330
15286
  declare type Node_GitAutomationState_Fragment = {
14331
15287
  __typename: "GitAutomationState";
14332
15288
  } & Pick<GitAutomationState, "id">;
@@ -14336,6 +15292,9 @@ declare type Node_GitAutomationTargetBranch_Fragment = {
14336
15292
  declare type Node_Initiative_Fragment = {
14337
15293
  __typename: "Initiative";
14338
15294
  } & Pick<Initiative, "id">;
15295
+ declare type Node_InitiativeNotification_Fragment = {
15296
+ __typename: "InitiativeNotification";
15297
+ } & Pick<InitiativeNotification, "id">;
14339
15298
  declare type Node_InitiativeToProject_Fragment = {
14340
15299
  __typename: "InitiativeToProject";
14341
15300
  } & Pick<InitiativeToProject, "id">;
@@ -14453,6 +15412,9 @@ declare type Node_TeamNotificationSubscription_Fragment = {
14453
15412
  declare type Node_Template_Fragment = {
14454
15413
  __typename: "Template";
14455
15414
  } & Pick<Template, "id">;
15415
+ declare type Node_TextDraft_Fragment = {
15416
+ __typename: "TextDraft";
15417
+ } & Pick<TextDraft, "id">;
14456
15418
  declare type Node_TimeSchedule_Fragment = {
14457
15419
  __typename: "TimeSchedule";
14458
15420
  } & Pick<TimeSchedule, "id">;
@@ -14483,13 +15445,15 @@ declare type Node_WorkflowDefinition_Fragment = {
14483
15445
  declare type Node_WorkflowState_Fragment = {
14484
15446
  __typename: "WorkflowState";
14485
15447
  } & Pick<WorkflowState, "id">;
14486
- 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_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_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;
15448
+ 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_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;
14487
15449
  export declare type NotificationBatchActionPayloadFragment = {
14488
15450
  __typename: "NotificationBatchActionPayload";
14489
15451
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
14490
15452
  notifications: Array<({
14491
15453
  __typename?: "DocumentNotification";
14492
15454
  } & Notification_DocumentNotification_Fragment) | ({
15455
+ __typename?: "InitiativeNotification";
15456
+ } & Notification_InitiativeNotification_Fragment) | ({
14493
15457
  __typename?: "IssueNotification";
14494
15458
  } & Notification_IssueNotification_Fragment) | ({
14495
15459
  __typename?: "OauthClientApprovalNotification";
@@ -14503,6 +15467,8 @@ export declare type NotificationConnectionFragment = {
14503
15467
  nodes: Array<({
14504
15468
  __typename?: "DocumentNotification";
14505
15469
  } & Notification_DocumentNotification_Fragment) | ({
15470
+ __typename?: "InitiativeNotification";
15471
+ } & Notification_InitiativeNotification_Fragment) | ({
14506
15472
  __typename?: "IssueNotification";
14507
15473
  } & Notification_IssueNotification_Fragment) | ({
14508
15474
  __typename?: "OauthClientApprovalNotification";
@@ -14519,6 +15485,8 @@ export declare type NotificationPayloadFragment = {
14519
15485
  notification: ({
14520
15486
  __typename?: "DocumentNotification";
14521
15487
  } & Notification_DocumentNotification_Fragment) | ({
15488
+ __typename?: "InitiativeNotification";
15489
+ } & Notification_InitiativeNotification_Fragment) | ({
14522
15490
  __typename?: "IssueNotification";
14523
15491
  } & Notification_IssueNotification_Fragment) | ({
14524
15492
  __typename?: "OauthClientApprovalNotification";
@@ -14618,18 +15586,27 @@ export declare type OrganizationInvitePayloadFragment = {
14618
15586
  __typename?: "OrganizationInvite";
14619
15587
  } & Pick<OrganizationInvite, "id">;
14620
15588
  };
15589
+ export declare type OrganizationIpRestrictionFragment = {
15590
+ __typename: "OrganizationIpRestriction";
15591
+ } & Pick<OrganizationIpRestriction, "range" | "description" | "type" | "enabled">;
15592
+ export declare type OrganizationMetaFragment = {
15593
+ __typename: "OrganizationMeta";
15594
+ } & Pick<OrganizationMeta, "allowedAuthServices" | "region">;
14621
15595
  export declare type OrganizationPayloadFragment = {
14622
15596
  __typename: "OrganizationPayload";
14623
15597
  } & Pick<OrganizationPayload, "lastSyncId" | "success">;
14624
15598
  export declare type OrganizationRegionResponseFragment = {
14625
15599
  __typename: "OrganizationRegionResponse";
14626
15600
  } & Pick<OrganizationRegionResponse, "region" | "success">;
14627
- export declare type OrganizationStartPlusTrialPayloadFragment = {
14628
- __typename: "OrganizationStartPlusTrialPayload";
14629
- } & Pick<OrganizationStartPlusTrialPayload, "success">;
15601
+ export declare type OrganizationStartTrialPayloadFragment = {
15602
+ __typename: "OrganizationStartTrialPayload";
15603
+ } & Pick<OrganizationStartTrialPayload, "success">;
14630
15604
  export declare type PageInfoFragment = {
14631
15605
  __typename: "PageInfo";
14632
15606
  } & Pick<PageInfo, "startCursor" | "endCursor" | "hasPreviousPage" | "hasNextPage">;
15607
+ export declare type PasskeyLoginStartResponseFragment = {
15608
+ __typename: "PasskeyLoginStartResponse";
15609
+ } & Pick<PasskeyLoginStartResponse, "options" | "success">;
14633
15610
  export declare type ProjectConnectionFragment = {
14634
15611
  __typename: "ProjectConnection";
14635
15612
  } & {
@@ -14897,6 +15874,9 @@ export declare type SlackChannelConnectPayloadFragment = {
14897
15874
  export declare type SsoUrlFromEmailResponseFragment = {
14898
15875
  __typename: "SsoUrlFromEmailResponse";
14899
15876
  } & Pick<SsoUrlFromEmailResponse, "samlSsoUrl" | "success">;
15877
+ export declare type SuccessPayloadFragment = {
15878
+ __typename: "SuccessPayload";
15879
+ } & Pick<SuccessPayload, "lastSyncId" | "success">;
14900
15880
  export declare type SummaryPayloadFragment = {
14901
15881
  __typename: "SummaryPayload";
14902
15882
  } & Pick<SummaryPayload, "summary">;
@@ -15611,6 +16591,27 @@ export declare type CustomView_OrganizationViewPreferences_PreferencesQuery = {
15611
16591
  }>;
15612
16592
  };
15613
16593
  };
16594
+ export declare type CustomView_ProjectsQueryVariables = Exact<{
16595
+ id: Scalars["String"];
16596
+ after?: Maybe<Scalars["String"]>;
16597
+ before?: Maybe<Scalars["String"]>;
16598
+ filter?: Maybe<ProjectFilter>;
16599
+ first?: Maybe<Scalars["Int"]>;
16600
+ includeArchived?: Maybe<Scalars["Boolean"]>;
16601
+ last?: Maybe<Scalars["Int"]>;
16602
+ orderBy?: Maybe<PaginationOrderBy>;
16603
+ }>;
16604
+ export declare type CustomView_ProjectsQuery = {
16605
+ __typename?: "Query";
16606
+ } & {
16607
+ customView: {
16608
+ __typename?: "CustomView";
16609
+ } & {
16610
+ projects: {
16611
+ __typename?: "ProjectConnection";
16612
+ } & ProjectConnectionFragment;
16613
+ };
16614
+ };
15614
16615
  export declare type CustomView_UserViewPreferencesQueryVariables = Exact<{
15615
16616
  id: Scalars["String"];
15616
16617
  }>;
@@ -16200,15 +17201,15 @@ export declare type IssueImportCheckCsvQuery = {
16200
17201
  __typename?: "IssueImportCheckPayload";
16201
17202
  } & IssueImportCheckPayloadFragment;
16202
17203
  };
16203
- export declare type IssueImportFinishGithubOAuthQueryVariables = Exact<{
16204
- code: Scalars["String"];
17204
+ export declare type IssueImportCheckSyncQueryVariables = Exact<{
17205
+ issueImportId: Scalars["String"];
16205
17206
  }>;
16206
- export declare type IssueImportFinishGithubOAuthQuery = {
17207
+ export declare type IssueImportCheckSyncQuery = {
16207
17208
  __typename?: "Query";
16208
17209
  } & {
16209
- issueImportFinishGithubOAuth: {
16210
- __typename?: "GithubOAuthTokenPayload";
16211
- } & GithubOAuthTokenPayloadFragment;
17210
+ issueImportCheckSync: {
17211
+ __typename?: "IssueImportSyncCheckPayload";
17212
+ } & IssueImportSyncCheckPayloadFragment;
16212
17213
  };
16213
17214
  export declare type IssueLabelQueryVariables = Exact<{
16214
17215
  id: Scalars["String"];
@@ -16546,6 +17547,8 @@ export declare type NotificationQuery = {
16546
17547
  notification: ({
16547
17548
  __typename?: "DocumentNotification";
16548
17549
  } & Notification_DocumentNotification_Fragment) | ({
17550
+ __typename?: "InitiativeNotification";
17551
+ } & Notification_InitiativeNotification_Fragment) | ({
16549
17552
  __typename?: "IssueNotification";
16550
17553
  } & Notification_IssueNotification_Fragment) | ({
16551
17554
  __typename?: "OauthClientApprovalNotification";
@@ -17811,6 +18814,242 @@ export declare type UserSettingsQuery = {
17811
18814
  __typename?: "UserSettings";
17812
18815
  } & UserSettingsFragment;
17813
18816
  };
18817
+ export declare type UserSettings_NotificationDeliveryPreferencesQueryVariables = Exact<{
18818
+ [key: string]: never;
18819
+ }>;
18820
+ export declare type UserSettings_NotificationDeliveryPreferencesQuery = {
18821
+ __typename?: "Query";
18822
+ } & {
18823
+ userSettings: {
18824
+ __typename?: "UserSettings";
18825
+ } & {
18826
+ notificationDeliveryPreferences: {
18827
+ __typename?: "NotificationDeliveryPreferences";
18828
+ } & NotificationDeliveryPreferencesFragment;
18829
+ };
18830
+ };
18831
+ export declare type UserSettings_NotificationDeliveryPreferences_MobileQueryVariables = Exact<{
18832
+ [key: string]: never;
18833
+ }>;
18834
+ export declare type UserSettings_NotificationDeliveryPreferences_MobileQuery = {
18835
+ __typename?: "Query";
18836
+ } & {
18837
+ userSettings: {
18838
+ __typename?: "UserSettings";
18839
+ } & {
18840
+ notificationDeliveryPreferences: {
18841
+ __typename?: "NotificationDeliveryPreferences";
18842
+ } & {
18843
+ mobile?: Maybe<{
18844
+ __typename?: "NotificationDeliveryPreferencesChannel";
18845
+ } & NotificationDeliveryPreferencesChannelFragment>;
18846
+ };
18847
+ };
18848
+ };
18849
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQueryVariables = Exact<{
18850
+ [key: string]: never;
18851
+ }>;
18852
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQuery = {
18853
+ __typename?: "Query";
18854
+ } & {
18855
+ userSettings: {
18856
+ __typename?: "UserSettings";
18857
+ } & {
18858
+ notificationDeliveryPreferences: {
18859
+ __typename?: "NotificationDeliveryPreferences";
18860
+ } & {
18861
+ mobile?: Maybe<{
18862
+ __typename?: "NotificationDeliveryPreferencesChannel";
18863
+ } & {
18864
+ schedule?: Maybe<{
18865
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18866
+ } & NotificationDeliveryPreferencesScheduleFragment>;
18867
+ }>;
18868
+ };
18869
+ };
18870
+ };
18871
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQueryVariables = Exact<{
18872
+ [key: string]: never;
18873
+ }>;
18874
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQuery = {
18875
+ __typename?: "Query";
18876
+ } & {
18877
+ userSettings: {
18878
+ __typename?: "UserSettings";
18879
+ } & {
18880
+ notificationDeliveryPreferences: {
18881
+ __typename?: "NotificationDeliveryPreferences";
18882
+ } & {
18883
+ mobile?: Maybe<{
18884
+ __typename?: "NotificationDeliveryPreferencesChannel";
18885
+ } & {
18886
+ schedule?: Maybe<{
18887
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18888
+ } & {
18889
+ friday: {
18890
+ __typename?: "NotificationDeliveryPreferencesDay";
18891
+ } & NotificationDeliveryPreferencesDayFragment;
18892
+ }>;
18893
+ }>;
18894
+ };
18895
+ };
18896
+ };
18897
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQueryVariables = Exact<{
18898
+ [key: string]: never;
18899
+ }>;
18900
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQuery = {
18901
+ __typename?: "Query";
18902
+ } & {
18903
+ userSettings: {
18904
+ __typename?: "UserSettings";
18905
+ } & {
18906
+ notificationDeliveryPreferences: {
18907
+ __typename?: "NotificationDeliveryPreferences";
18908
+ } & {
18909
+ mobile?: Maybe<{
18910
+ __typename?: "NotificationDeliveryPreferencesChannel";
18911
+ } & {
18912
+ schedule?: Maybe<{
18913
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18914
+ } & {
18915
+ monday: {
18916
+ __typename?: "NotificationDeliveryPreferencesDay";
18917
+ } & NotificationDeliveryPreferencesDayFragment;
18918
+ }>;
18919
+ }>;
18920
+ };
18921
+ };
18922
+ };
18923
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQueryVariables = Exact<{
18924
+ [key: string]: never;
18925
+ }>;
18926
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQuery = {
18927
+ __typename?: "Query";
18928
+ } & {
18929
+ userSettings: {
18930
+ __typename?: "UserSettings";
18931
+ } & {
18932
+ notificationDeliveryPreferences: {
18933
+ __typename?: "NotificationDeliveryPreferences";
18934
+ } & {
18935
+ mobile?: Maybe<{
18936
+ __typename?: "NotificationDeliveryPreferencesChannel";
18937
+ } & {
18938
+ schedule?: Maybe<{
18939
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18940
+ } & {
18941
+ saturday: {
18942
+ __typename?: "NotificationDeliveryPreferencesDay";
18943
+ } & NotificationDeliveryPreferencesDayFragment;
18944
+ }>;
18945
+ }>;
18946
+ };
18947
+ };
18948
+ };
18949
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQueryVariables = Exact<{
18950
+ [key: string]: never;
18951
+ }>;
18952
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQuery = {
18953
+ __typename?: "Query";
18954
+ } & {
18955
+ userSettings: {
18956
+ __typename?: "UserSettings";
18957
+ } & {
18958
+ notificationDeliveryPreferences: {
18959
+ __typename?: "NotificationDeliveryPreferences";
18960
+ } & {
18961
+ mobile?: Maybe<{
18962
+ __typename?: "NotificationDeliveryPreferencesChannel";
18963
+ } & {
18964
+ schedule?: Maybe<{
18965
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18966
+ } & {
18967
+ sunday: {
18968
+ __typename?: "NotificationDeliveryPreferencesDay";
18969
+ } & NotificationDeliveryPreferencesDayFragment;
18970
+ }>;
18971
+ }>;
18972
+ };
18973
+ };
18974
+ };
18975
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQueryVariables = Exact<{
18976
+ [key: string]: never;
18977
+ }>;
18978
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQuery = {
18979
+ __typename?: "Query";
18980
+ } & {
18981
+ userSettings: {
18982
+ __typename?: "UserSettings";
18983
+ } & {
18984
+ notificationDeliveryPreferences: {
18985
+ __typename?: "NotificationDeliveryPreferences";
18986
+ } & {
18987
+ mobile?: Maybe<{
18988
+ __typename?: "NotificationDeliveryPreferencesChannel";
18989
+ } & {
18990
+ schedule?: Maybe<{
18991
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18992
+ } & {
18993
+ thursday: {
18994
+ __typename?: "NotificationDeliveryPreferencesDay";
18995
+ } & NotificationDeliveryPreferencesDayFragment;
18996
+ }>;
18997
+ }>;
18998
+ };
18999
+ };
19000
+ };
19001
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQueryVariables = Exact<{
19002
+ [key: string]: never;
19003
+ }>;
19004
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQuery = {
19005
+ __typename?: "Query";
19006
+ } & {
19007
+ userSettings: {
19008
+ __typename?: "UserSettings";
19009
+ } & {
19010
+ notificationDeliveryPreferences: {
19011
+ __typename?: "NotificationDeliveryPreferences";
19012
+ } & {
19013
+ mobile?: Maybe<{
19014
+ __typename?: "NotificationDeliveryPreferencesChannel";
19015
+ } & {
19016
+ schedule?: Maybe<{
19017
+ __typename?: "NotificationDeliveryPreferencesSchedule";
19018
+ } & {
19019
+ tuesday: {
19020
+ __typename?: "NotificationDeliveryPreferencesDay";
19021
+ } & NotificationDeliveryPreferencesDayFragment;
19022
+ }>;
19023
+ }>;
19024
+ };
19025
+ };
19026
+ };
19027
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQueryVariables = Exact<{
19028
+ [key: string]: never;
19029
+ }>;
19030
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQuery = {
19031
+ __typename?: "Query";
19032
+ } & {
19033
+ userSettings: {
19034
+ __typename?: "UserSettings";
19035
+ } & {
19036
+ notificationDeliveryPreferences: {
19037
+ __typename?: "NotificationDeliveryPreferences";
19038
+ } & {
19039
+ mobile?: Maybe<{
19040
+ __typename?: "NotificationDeliveryPreferencesChannel";
19041
+ } & {
19042
+ schedule?: Maybe<{
19043
+ __typename?: "NotificationDeliveryPreferencesSchedule";
19044
+ } & {
19045
+ wednesday: {
19046
+ __typename?: "NotificationDeliveryPreferencesDay";
19047
+ } & NotificationDeliveryPreferencesDayFragment;
19048
+ }>;
19049
+ }>;
19050
+ };
19051
+ };
19052
+ };
17814
19053
  export declare type UsersQueryVariables = Exact<{
17815
19054
  after?: Maybe<Scalars["String"]>;
17816
19055
  before?: Maybe<Scalars["String"]>;
@@ -17999,26 +19238,6 @@ export declare type AirbyteIntegrationConnectMutation = {
17999
19238
  __typename?: "IntegrationPayload";
18000
19239
  } & IntegrationPayloadFragment;
18001
19240
  };
18002
- export declare type CreateApiKeyMutationVariables = Exact<{
18003
- input: ApiKeyCreateInput;
18004
- }>;
18005
- export declare type CreateApiKeyMutation = {
18006
- __typename?: "Mutation";
18007
- } & {
18008
- apiKeyCreate: {
18009
- __typename?: "ApiKeyPayload";
18010
- } & ApiKeyPayloadFragment;
18011
- };
18012
- export declare type DeleteApiKeyMutationVariables = Exact<{
18013
- id: Scalars["String"];
18014
- }>;
18015
- export declare type DeleteApiKeyMutation = {
18016
- __typename?: "Mutation";
18017
- } & {
18018
- apiKeyDelete: {
18019
- __typename?: "DeletePayload";
18020
- } & DeletePayloadFragment;
18021
- };
18022
19241
  export declare type ArchiveAttachmentMutationVariables = Exact<{
18023
19242
  id: Scalars["String"];
18024
19243
  }>;
@@ -18206,6 +19425,16 @@ export declare type AttachmentLinkZendeskMutation = {
18206
19425
  __typename?: "AttachmentPayload";
18207
19426
  } & AttachmentPayloadFragment;
18208
19427
  };
19428
+ export declare type AttachmentSyncToSlackMutationVariables = Exact<{
19429
+ id: Scalars["String"];
19430
+ }>;
19431
+ export declare type AttachmentSyncToSlackMutation = {
19432
+ __typename?: "Mutation";
19433
+ } & {
19434
+ attachmentSyncToSlack: {
19435
+ __typename?: "AttachmentPayload";
19436
+ } & AttachmentPayloadFragment;
19437
+ };
18209
19438
  export declare type UpdateAttachmentMutationVariables = Exact<{
18210
19439
  id: Scalars["String"];
18211
19440
  input: AttachmentUpdateInput;
@@ -18431,19 +19660,18 @@ export declare type DeleteDocumentMutation = {
18431
19660
  __typename?: "Mutation";
18432
19661
  } & {
18433
19662
  documentDelete: {
18434
- __typename?: "DeletePayload";
18435
- } & DeletePayloadFragment;
19663
+ __typename?: "DocumentArchivePayload";
19664
+ } & DocumentArchivePayloadFragment;
18436
19665
  };
18437
- export declare type DocumentReminderMutationVariables = Exact<{
19666
+ export declare type UnarchiveDocumentMutationVariables = Exact<{
18438
19667
  id: Scalars["String"];
18439
- reminderAt: Scalars["DateTime"];
18440
19668
  }>;
18441
- export declare type DocumentReminderMutation = {
19669
+ export declare type UnarchiveDocumentMutation = {
18442
19670
  __typename?: "Mutation";
18443
19671
  } & {
18444
- documentReminder: {
18445
- __typename?: "DocumentPayload";
18446
- } & DocumentPayloadFragment;
19672
+ documentUnarchive: {
19673
+ __typename?: "DocumentArchivePayload";
19674
+ } & DocumentArchivePayloadFragment;
18447
19675
  };
18448
19676
  export declare type UpdateDocumentMutationVariables = Exact<{
18449
19677
  id: Scalars["String"];
@@ -18812,6 +20040,16 @@ export declare type IntegrationGithubConnectMutation = {
18812
20040
  __typename?: "IntegrationPayload";
18813
20041
  } & IntegrationPayloadFragment;
18814
20042
  };
20043
+ export declare type IntegrationGithubImportConnectMutationVariables = Exact<{
20044
+ installationId: Scalars["String"];
20045
+ }>;
20046
+ export declare type IntegrationGithubImportConnectMutation = {
20047
+ __typename?: "Mutation";
20048
+ } & {
20049
+ integrationGithubImportConnect: {
20050
+ __typename?: "IntegrationPayload";
20051
+ } & IntegrationPayloadFragment;
20052
+ };
18815
20053
  export declare type IntegrationGitlabConnectMutationVariables = Exact<{
18816
20054
  accessToken: Scalars["String"];
18817
20055
  gitlabUrl: Scalars["String"];
@@ -18931,6 +20169,18 @@ export declare type IntegrationSlackAsksMutation = {
18931
20169
  __typename?: "IntegrationPayload";
18932
20170
  } & IntegrationPayloadFragment;
18933
20171
  };
20172
+ export declare type IntegrationSlackCustomViewNotificationsMutationVariables = Exact<{
20173
+ code: Scalars["String"];
20174
+ customViewId: Scalars["String"];
20175
+ redirectUri: Scalars["String"];
20176
+ }>;
20177
+ export declare type IntegrationSlackCustomViewNotificationsMutation = {
20178
+ __typename?: "Mutation";
20179
+ } & {
20180
+ integrationSlackCustomViewNotifications: {
20181
+ __typename?: "SlackChannelConnectPayload";
20182
+ } & SlackChannelConnectPayloadFragment;
20183
+ };
18934
20184
  export declare type IntegrationSlackImportEmojisMutationVariables = Exact<{
18935
20185
  code: Scalars["String"];
18936
20186
  redirectUri: Scalars["String"];
@@ -19159,13 +20409,15 @@ export declare type IssueImportCreateClubhouseMutation = {
19159
20409
  } & IssueImportPayloadFragment;
19160
20410
  };
19161
20411
  export declare type IssueImportCreateGithubMutationVariables = Exact<{
19162
- githubRepoName: Scalars["String"];
19163
- githubRepoOwner: Scalars["String"];
20412
+ githubRepoId?: Maybe<Scalars["String"]>;
20413
+ githubRepoIds?: Maybe<Array<Scalars["Int"]> | Scalars["Int"]>;
20414
+ githubRepoName?: Maybe<Scalars["String"]>;
20415
+ githubRepoOwner?: Maybe<Scalars["String"]>;
19164
20416
  githubShouldImportOrgProjects?: Maybe<Scalars["Boolean"]>;
19165
- githubToken: Scalars["String"];
19166
- id?: Maybe<Scalars["String"]>;
20417
+ githubToken?: Maybe<Scalars["String"]>;
19167
20418
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
19168
20419
  instantProcess?: Maybe<Scalars["Boolean"]>;
20420
+ integrationId: Scalars["String"];
19169
20421
  organizationId?: Maybe<Scalars["String"]>;
19170
20422
  teamId?: Maybe<Scalars["String"]>;
19171
20423
  teamName?: Maybe<Scalars["String"]>;
@@ -19263,6 +20515,7 @@ export declare type UpdateIssueLabelMutation = {
19263
20515
  };
19264
20516
  export declare type CreateIssueRelationMutationVariables = Exact<{
19265
20517
  input: IssueRelationCreateInput;
20518
+ overrideCreatedAt?: Maybe<Scalars["DateTime"]>;
19266
20519
  }>;
19267
20520
  export declare type CreateIssueRelationMutation = {
19268
20521
  __typename?: "Mutation";
@@ -19603,15 +20856,15 @@ export declare type UpdateOrganizationInviteMutation = {
19603
20856
  __typename?: "OrganizationInvitePayload";
19604
20857
  } & OrganizationInvitePayloadFragment;
19605
20858
  };
19606
- export declare type OrganizationStartPlusTrialMutationVariables = Exact<{
20859
+ export declare type OrganizationStartTrialMutationVariables = Exact<{
19607
20860
  [key: string]: never;
19608
20861
  }>;
19609
- export declare type OrganizationStartPlusTrialMutation = {
20862
+ export declare type OrganizationStartTrialMutation = {
19610
20863
  __typename?: "Mutation";
19611
20864
  } & {
19612
- organizationStartPlusTrial: {
19613
- __typename?: "OrganizationStartPlusTrialPayload";
19614
- } & OrganizationStartPlusTrialPayloadFragment;
20865
+ organizationStartTrial: {
20866
+ __typename?: "OrganizationStartTrialPayload";
20867
+ } & OrganizationStartTrialPayloadFragment;
19615
20868
  };
19616
20869
  export declare type UpdateOrganizationMutationVariables = Exact<{
19617
20870
  input: OrganizationUpdateInput;
@@ -20220,16 +21473,6 @@ export declare type UserPromoteMemberMutation = {
20220
21473
  __typename?: "UserAdminPayload";
20221
21474
  } & UserAdminPayloadFragment;
20222
21475
  };
20223
- export declare type UserSettingsFlagIncrementMutationVariables = Exact<{
20224
- flag: Scalars["String"];
20225
- }>;
20226
- export declare type UserSettingsFlagIncrementMutation = {
20227
- __typename?: "Mutation";
20228
- } & {
20229
- userSettingsFlagIncrement: {
20230
- __typename?: "UserSettingsFlagPayload";
20231
- } & UserSettingsFlagPayloadFragment;
20232
- };
20233
21476
  export declare type UserSettingsFlagsResetMutationVariables = Exact<{
20234
21477
  flags?: Maybe<Array<UserFlagType> | UserFlagType>;
20235
21478
  }>;
@@ -20383,10 +21626,12 @@ export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentCon
20383
21626
  export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
20384
21627
  export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
20385
21628
  export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
21629
+ export declare const DocumentArchivePayloadFragmentDoc: DocumentNode<DocumentArchivePayloadFragment, unknown>;
20386
21630
  export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<InitiativeArchivePayloadFragment, unknown>;
20387
21631
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
20388
21632
  export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
20389
21633
  export declare const DocumentNotificationFragmentDoc: DocumentNode<DocumentNotificationFragment, unknown>;
21634
+ export declare const InitiativeNotificationFragmentDoc: DocumentNode<InitiativeNotificationFragment, unknown>;
20390
21635
  export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
20391
21636
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
20392
21637
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
@@ -20403,12 +21648,14 @@ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<Labe
20403
21648
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
20404
21649
  export declare const ReminderFragmentDoc: DocumentNode<ReminderFragment, unknown>;
20405
21650
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
21651
+ export declare const TextDraftFragmentDoc: DocumentNode<TextDraftFragment, unknown>;
20406
21652
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
20407
21653
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
20408
21654
  export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
20409
21655
  export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
20410
21656
  export declare const AuthEmailIntakeAddressFragmentDoc: DocumentNode<AuthEmailIntakeAddressFragment, unknown>;
20411
21657
  export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
21658
+ export declare const OrganizationIpRestrictionFragmentDoc: DocumentNode<OrganizationIpRestrictionFragment, unknown>;
20412
21659
  export declare const ProjectStatusFragmentDoc: DocumentNode<ProjectStatusFragment, unknown>;
20413
21660
  export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
20414
21661
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
@@ -20416,16 +21663,15 @@ export declare const AuthOauthClientWithScopeFragmentDoc: DocumentNode<AuthOauth
20416
21663
  export declare const AuthOauthClientWithMembershipsFragmentDoc: DocumentNode<AuthOauthClientWithMembershipsFragment, unknown>;
20417
21664
  export declare const AuthenticationSessionResponseFragmentDoc: DocumentNode<AuthenticationSessionResponseFragment, unknown>;
20418
21665
  export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
20419
- export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
20420
- export declare const GithubOrgFragmentDoc: DocumentNode<GithubOrgFragment, unknown>;
20421
- export declare const GithubOAuthTokenPayloadFragmentDoc: DocumentNode<GithubOAuthTokenPayloadFragment, unknown>;
20422
21666
  export declare const UserAuthorizedApplicationFragmentDoc: DocumentNode<UserAuthorizedApplicationFragment, unknown>;
20423
21667
  export declare const ApplicationFragmentDoc: DocumentNode<ApplicationFragment, unknown>;
21668
+ export declare const PasskeyFragmentDoc: DocumentNode<PasskeyFragment, unknown>;
20424
21669
  export declare const SharedSlackSettingsFragmentDoc: DocumentNode<SharedSlackSettingsFragment, unknown>;
20425
21670
  export declare const FrontSettingsFragmentDoc: DocumentNode<FrontSettingsFragment, unknown>;
20426
21671
  export declare const TeamRepoMappingFragmentDoc: DocumentNode<TeamRepoMappingFragment, unknown>;
20427
21672
  export declare const GitHubRepoFragmentDoc: DocumentNode<GitHubRepoFragment, unknown>;
20428
21673
  export declare const GitHubSettingsFragmentDoc: DocumentNode<GitHubSettingsFragment, unknown>;
21674
+ export declare const GitHubImportSettingsFragmentDoc: DocumentNode<GitHubImportSettingsFragment, unknown>;
20429
21675
  export declare const GitHubPersonalSettingsFragmentDoc: DocumentNode<GitHubPersonalSettingsFragment, unknown>;
20430
21676
  export declare const GitLabSettingsFragmentDoc: DocumentNode<GitLabSettingsFragment, unknown>;
20431
21677
  export declare const GoogleSheetsSettingsFragmentDoc: DocumentNode<GoogleSheetsSettingsFragment, unknown>;
@@ -20434,6 +21680,7 @@ export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFra
20434
21680
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
20435
21681
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
20436
21682
  export declare const JiraPersonalSettingsFragmentDoc: DocumentNode<JiraPersonalSettingsFragment, unknown>;
21683
+ export declare const LaunchDarklySettingsFragmentDoc: DocumentNode<LaunchDarklySettingsFragment, unknown>;
20437
21684
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
20438
21685
  export declare const OpsgenieSettingsFragmentDoc: DocumentNode<OpsgenieSettingsFragment, unknown>;
20439
21686
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
@@ -20445,8 +21692,13 @@ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSetting
20445
21692
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
20446
21693
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
20447
21694
  export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
21695
+ export declare const NotificationDeliveryPreferencesDayFragmentDoc: DocumentNode<NotificationDeliveryPreferencesDayFragment, unknown>;
21696
+ export declare const NotificationDeliveryPreferencesScheduleFragmentDoc: DocumentNode<NotificationDeliveryPreferencesScheduleFragment, unknown>;
21697
+ export declare const NotificationDeliveryPreferencesChannelFragmentDoc: DocumentNode<NotificationDeliveryPreferencesChannelFragment, unknown>;
21698
+ export declare const NotificationDeliveryPreferencesFragmentDoc: DocumentNode<NotificationDeliveryPreferencesFragment, unknown>;
20448
21699
  export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
20449
21700
  export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
21701
+ export declare const IssueImportSyncCheckPayloadFragmentDoc: DocumentNode<IssueImportSyncCheckPayloadFragment, unknown>;
20450
21702
  export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
20451
21703
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
20452
21704
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
@@ -20465,12 +21717,14 @@ export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFra
20465
21717
  export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
20466
21718
  export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
20467
21719
  export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
21720
+ export declare const AuthOrganizationBucketNamePayloadFragmentDoc: DocumentNode<AuthOrganizationBucketNamePayloadFragment, unknown>;
20468
21721
  export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
20469
21722
  export declare const AuthOrganizationExistsPayloadFragmentDoc: DocumentNode<AuthOrganizationExistsPayloadFragment, unknown>;
20470
21723
  export declare const AuthOrganizationPayloadFragmentDoc: DocumentNode<AuthOrganizationPayloadFragment, unknown>;
20471
21724
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
20472
21725
  export declare const AuthSuccessPayloadFragmentDoc: DocumentNode<AuthSuccessPayloadFragment, unknown>;
20473
21726
  export declare const AuthorizedApplicationBaseFragmentDoc: DocumentNode<AuthorizedApplicationBaseFragment, unknown>;
21727
+ export declare const ReactionFragmentDoc: DocumentNode<ReactionFragment, unknown>;
20474
21728
  export declare const CommentFragmentDoc: DocumentNode<CommentFragment, unknown>;
20475
21729
  export declare const CommentConnectionFragmentDoc: DocumentNode<CommentConnectionFragment, unknown>;
20476
21730
  export declare const CommentPayloadFragmentDoc: DocumentNode<CommentPayloadFragment, unknown>;
@@ -20513,9 +21767,15 @@ export declare const EntityExternalLinkConnectionFragmentDoc: DocumentNode<Entit
20513
21767
  export declare const EntityExternalLinkPayloadFragmentDoc: DocumentNode<EntityExternalLinkPayloadFragment, unknown>;
20514
21768
  export declare const ExternalUserFragmentDoc: DocumentNode<ExternalUserFragment, unknown>;
20515
21769
  export declare const ExternalUserConnectionFragmentDoc: DocumentNode<ExternalUserConnectionFragment, unknown>;
21770
+ export declare const FacetFragmentDoc: DocumentNode<FacetFragment, unknown>;
21771
+ export declare const FacetConnectionFragmentDoc: DocumentNode<FacetConnectionFragment, unknown>;
20516
21772
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
20517
21773
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
20518
21774
  export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
21775
+ export declare const FeatureFlagRolloutStageFragmentDoc: DocumentNode<FeatureFlagRolloutStageFragment, unknown>;
21776
+ export declare const FeatureFlagFragmentDoc: DocumentNode<FeatureFlagFragment, unknown>;
21777
+ export declare const FeatureFlagConnectionFragmentDoc: DocumentNode<FeatureFlagConnectionFragment, unknown>;
21778
+ export declare const FeatureFlagRolloutStageConnectionFragmentDoc: DocumentNode<FeatureFlagRolloutStageConnectionFragment, unknown>;
20519
21779
  export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
20520
21780
  export declare const GitAutomationTargetBranchFragmentDoc: DocumentNode<GitAutomationTargetBranchFragment, unknown>;
20521
21781
  export declare const GitAutomationStateFragmentDoc: DocumentNode<GitAutomationStateFragment, unknown>;
@@ -20540,9 +21800,9 @@ export declare const IssueBatchPayloadFragmentDoc: DocumentNode<IssueBatchPayloa
20540
21800
  export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFragment, unknown>;
20541
21801
  export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<IssueFilterSuggestionPayloadFragment, unknown>;
20542
21802
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
21803
+ export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
20543
21804
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
20544
21805
  export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
20545
- export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
20546
21806
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
20547
21807
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
20548
21808
  export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
@@ -20576,9 +21836,11 @@ export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<Organ
20576
21836
  export declare const OrganizationInviteFullDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteFullDetailsPayloadFragment, unknown>;
20577
21837
  export declare const OrganizationInviteLinkDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteLinkDetailsPayloadFragment, unknown>;
20578
21838
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
21839
+ export declare const OrganizationMetaFragmentDoc: DocumentNode<OrganizationMetaFragment, unknown>;
20579
21840
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
20580
21841
  export declare const OrganizationRegionResponseFragmentDoc: DocumentNode<OrganizationRegionResponseFragment, unknown>;
20581
- export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
21842
+ export declare const OrganizationStartTrialPayloadFragmentDoc: DocumentNode<OrganizationStartTrialPayloadFragment, unknown>;
21843
+ export declare const PasskeyLoginStartResponseFragmentDoc: DocumentNode<PasskeyLoginStartResponseFragment, unknown>;
20582
21844
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
20583
21845
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
20584
21846
  export declare const ProjectFilterSuggestionPayloadFragmentDoc: DocumentNode<ProjectFilterSuggestionPayloadFragment, unknown>;
@@ -20610,7 +21872,6 @@ export declare const PushSubscriptionPayloadFragmentDoc: DocumentNode<PushSubscr
20610
21872
  export declare const PushSubscriptionTestPayloadFragmentDoc: DocumentNode<PushSubscriptionTestPayloadFragment, unknown>;
20611
21873
  export declare const RateLimitResultPayloadFragmentDoc: DocumentNode<RateLimitResultPayloadFragment, unknown>;
20612
21874
  export declare const RateLimitPayloadFragmentDoc: DocumentNode<RateLimitPayloadFragment, unknown>;
20613
- export declare const ReactionFragmentDoc: DocumentNode<ReactionFragment, unknown>;
20614
21875
  export declare const ReactionConnectionFragmentDoc: DocumentNode<ReactionConnectionFragment, unknown>;
20615
21876
  export declare const ReactionPayloadFragmentDoc: DocumentNode<ReactionPayloadFragment, unknown>;
20616
21877
  export declare const RoadmapFragmentDoc: DocumentNode<RoadmapFragment, unknown>;
@@ -20621,6 +21882,7 @@ export declare const RoadmapToProjectConnectionFragmentDoc: DocumentNode<Roadmap
20621
21882
  export declare const RoadmapToProjectPayloadFragmentDoc: DocumentNode<RoadmapToProjectPayloadFragment, unknown>;
20622
21883
  export declare const SlackChannelConnectPayloadFragmentDoc: DocumentNode<SlackChannelConnectPayloadFragment, unknown>;
20623
21884
  export declare const SsoUrlFromEmailResponseFragmentDoc: DocumentNode<SsoUrlFromEmailResponseFragment, unknown>;
21885
+ export declare const SuccessPayloadFragmentDoc: DocumentNode<SuccessPayloadFragment, unknown>;
20624
21886
  export declare const SummaryPayloadFragmentDoc: DocumentNode<SummaryPayloadFragment, unknown>;
20625
21887
  export declare const SynchronizedPayloadFragmentDoc: DocumentNode<SynchronizedPayloadFragment, unknown>;
20626
21888
  export declare const TeamFragmentDoc: DocumentNode<TeamFragment, unknown>;
@@ -20865,6 +22127,16 @@ export declare const CustomView_OrganizationViewPreferencesDocument: DocumentNod
20865
22127
  export declare const CustomView_OrganizationViewPreferences_PreferencesDocument: DocumentNode<CustomView_OrganizationViewPreferences_PreferencesQuery, Exact<{
20866
22128
  id: Scalars["String"];
20867
22129
  }>>;
22130
+ export declare const CustomView_ProjectsDocument: DocumentNode<CustomView_ProjectsQuery, Exact<{
22131
+ id: Scalars["String"];
22132
+ after?: Maybe<string> | undefined;
22133
+ before?: Maybe<string> | undefined;
22134
+ filter?: Maybe<ProjectFilter> | undefined;
22135
+ first?: Maybe<number> | undefined;
22136
+ includeArchived?: Maybe<boolean> | undefined;
22137
+ last?: Maybe<number> | undefined;
22138
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
22139
+ }>>;
20868
22140
  export declare const CustomView_UserViewPreferencesDocument: DocumentNode<CustomView_UserViewPreferencesQuery, Exact<{
20869
22141
  id: Scalars["String"];
20870
22142
  }>>;
@@ -21110,8 +22382,8 @@ export declare const IssueImportCheckCsvDocument: DocumentNode<IssueImportCheckC
21110
22382
  csvUrl: Scalars["String"];
21111
22383
  service: Scalars["String"];
21112
22384
  }>>;
21113
- export declare const IssueImportFinishGithubOAuthDocument: DocumentNode<IssueImportFinishGithubOAuthQuery, Exact<{
21114
- code: Scalars["String"];
22385
+ export declare const IssueImportCheckSyncDocument: DocumentNode<IssueImportCheckSyncQuery, Exact<{
22386
+ issueImportId: Scalars["String"];
21115
22387
  }>>;
21116
22388
  export declare const IssueLabelDocument: DocumentNode<IssueLabelQuery, Exact<{
21117
22389
  id: Scalars["String"];
@@ -21828,6 +23100,36 @@ export declare const User_TeamsDocument: DocumentNode<User_TeamsQuery, Exact<{
21828
23100
  export declare const UserSettingsDocument: DocumentNode<UserSettingsQuery, Exact<{
21829
23101
  [key: string]: never;
21830
23102
  }>>;
23103
+ export declare const UserSettings_NotificationDeliveryPreferencesDocument: DocumentNode<UserSettings_NotificationDeliveryPreferencesQuery, Exact<{
23104
+ [key: string]: never;
23105
+ }>>;
23106
+ export declare const UserSettings_NotificationDeliveryPreferences_MobileDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_MobileQuery, Exact<{
23107
+ [key: string]: never;
23108
+ }>>;
23109
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQuery, Exact<{
23110
+ [key: string]: never;
23111
+ }>>;
23112
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQuery, Exact<{
23113
+ [key: string]: never;
23114
+ }>>;
23115
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQuery, Exact<{
23116
+ [key: string]: never;
23117
+ }>>;
23118
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQuery, Exact<{
23119
+ [key: string]: never;
23120
+ }>>;
23121
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQuery, Exact<{
23122
+ [key: string]: never;
23123
+ }>>;
23124
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQuery, Exact<{
23125
+ [key: string]: never;
23126
+ }>>;
23127
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQuery, Exact<{
23128
+ [key: string]: never;
23129
+ }>>;
23130
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQuery, Exact<{
23131
+ [key: string]: never;
23132
+ }>>;
21831
23133
  export declare const UsersDocument: DocumentNode<UsersQuery, Exact<{
21832
23134
  after?: Maybe<string> | undefined;
21833
23135
  before?: Maybe<string> | undefined;
@@ -21912,12 +23214,6 @@ export declare const WorkflowStatesDocument: DocumentNode<WorkflowStatesQuery, E
21912
23214
  export declare const AirbyteIntegrationConnectDocument: DocumentNode<AirbyteIntegrationConnectMutation, Exact<{
21913
23215
  input: AirbyteConfigurationInput;
21914
23216
  }>>;
21915
- export declare const CreateApiKeyDocument: DocumentNode<CreateApiKeyMutation, Exact<{
21916
- input: ApiKeyCreateInput;
21917
- }>>;
21918
- export declare const DeleteApiKeyDocument: DocumentNode<DeleteApiKeyMutation, Exact<{
21919
- id: Scalars["String"];
21920
- }>>;
21921
23217
  export declare const ArchiveAttachmentDocument: DocumentNode<ArchiveAttachmentMutation, Exact<{
21922
23218
  id: Scalars["String"];
21923
23219
  }>>;
@@ -22014,6 +23310,9 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
22014
23310
  ticketId: Scalars["String"];
22015
23311
  title?: Maybe<string> | undefined;
22016
23312
  }>>;
23313
+ export declare const AttachmentSyncToSlackDocument: DocumentNode<AttachmentSyncToSlackMutation, Exact<{
23314
+ id: Scalars["String"];
23315
+ }>>;
22017
23316
  export declare const UpdateAttachmentDocument: DocumentNode<UpdateAttachmentMutation, Exact<{
22018
23317
  id: Scalars["String"];
22019
23318
  input: AttachmentUpdateInput;
@@ -22088,9 +23387,8 @@ export declare const CreateDocumentDocument: DocumentNode<CreateDocumentMutation
22088
23387
  export declare const DeleteDocumentDocument: DocumentNode<DeleteDocumentMutation, Exact<{
22089
23388
  id: Scalars["String"];
22090
23389
  }>>;
22091
- export declare const DocumentReminderDocument: DocumentNode<DocumentReminderMutation, Exact<{
23390
+ export declare const UnarchiveDocumentDocument: DocumentNode<UnarchiveDocumentMutation, Exact<{
22092
23391
  id: Scalars["String"];
22093
- reminderAt: Scalars["DateTime"];
22094
23392
  }>>;
22095
23393
  export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation, Exact<{
22096
23394
  id: Scalars["String"];
@@ -22214,6 +23512,9 @@ export declare const CreateIntegrationGithubCommitDocument: DocumentNode<CreateI
22214
23512
  export declare const IntegrationGithubConnectDocument: DocumentNode<IntegrationGithubConnectMutation, Exact<{
22215
23513
  installationId: Scalars["String"];
22216
23514
  }>>;
23515
+ export declare const IntegrationGithubImportConnectDocument: DocumentNode<IntegrationGithubImportConnectMutation, Exact<{
23516
+ installationId: Scalars["String"];
23517
+ }>>;
22217
23518
  export declare const IntegrationGitlabConnectDocument: DocumentNode<IntegrationGitlabConnectMutation, Exact<{
22218
23519
  accessToken: Scalars["String"];
22219
23520
  gitlabUrl: Scalars["String"];
@@ -22256,6 +23557,11 @@ export declare const IntegrationSlackAsksDocument: DocumentNode<IntegrationSlack
22256
23557
  code: Scalars["String"];
22257
23558
  redirectUri: Scalars["String"];
22258
23559
  }>>;
23560
+ export declare const IntegrationSlackCustomViewNotificationsDocument: DocumentNode<IntegrationSlackCustomViewNotificationsMutation, Exact<{
23561
+ code: Scalars["String"];
23562
+ customViewId: Scalars["String"];
23563
+ redirectUri: Scalars["String"];
23564
+ }>>;
22259
23565
  export declare const IntegrationSlackImportEmojisDocument: DocumentNode<IntegrationSlackImportEmojisMutation, Exact<{
22260
23566
  code: Scalars["String"];
22261
23567
  redirectUri: Scalars["String"];
@@ -22351,13 +23657,15 @@ export declare const IssueImportCreateClubhouseDocument: DocumentNode<IssueImpor
22351
23657
  teamName?: Maybe<string> | undefined;
22352
23658
  }>>;
22353
23659
  export declare const IssueImportCreateGithubDocument: DocumentNode<IssueImportCreateGithubMutation, Exact<{
22354
- githubRepoName: Scalars["String"];
22355
- githubRepoOwner: Scalars["String"];
23660
+ githubRepoId?: Maybe<string> | undefined;
23661
+ githubRepoIds?: Maybe<number | number[]> | undefined;
23662
+ githubRepoName?: Maybe<string> | undefined;
23663
+ githubRepoOwner?: Maybe<string> | undefined;
22356
23664
  githubShouldImportOrgProjects?: Maybe<boolean> | undefined;
22357
- githubToken: Scalars["String"];
22358
- id?: Maybe<string> | undefined;
23665
+ githubToken?: Maybe<string> | undefined;
22359
23666
  includeClosedIssues?: Maybe<boolean> | undefined;
22360
23667
  instantProcess?: Maybe<boolean> | undefined;
23668
+ integrationId: Scalars["String"];
22361
23669
  organizationId?: Maybe<string> | undefined;
22362
23670
  teamId?: Maybe<string> | undefined;
22363
23671
  teamName?: Maybe<string> | undefined;
@@ -22399,6 +23707,7 @@ export declare const UpdateIssueLabelDocument: DocumentNode<UpdateIssueLabelMuta
22399
23707
  }>>;
22400
23708
  export declare const CreateIssueRelationDocument: DocumentNode<CreateIssueRelationMutation, Exact<{
22401
23709
  input: IssueRelationCreateInput;
23710
+ overrideCreatedAt?: Maybe<Date> | undefined;
22402
23711
  }>>;
22403
23712
  export declare const DeleteIssueRelationDocument: DocumentNode<DeleteIssueRelationMutation, Exact<{
22404
23713
  id: Scalars["String"];
@@ -22508,7 +23817,7 @@ export declare const UpdateOrganizationInviteDocument: DocumentNode<UpdateOrgani
22508
23817
  id: Scalars["String"];
22509
23818
  input: OrganizationInviteUpdateInput;
22510
23819
  }>>;
22511
- export declare const OrganizationStartPlusTrialDocument: DocumentNode<OrganizationStartPlusTrialMutation, Exact<{
23820
+ export declare const OrganizationStartTrialDocument: DocumentNode<OrganizationStartTrialMutation, Exact<{
22512
23821
  [key: string]: never;
22513
23822
  }>>;
22514
23823
  export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, Exact<{
@@ -22705,9 +24014,6 @@ export declare const UserPromoteAdminDocument: DocumentNode<UserPromoteAdminMuta
22705
24014
  export declare const UserPromoteMemberDocument: DocumentNode<UserPromoteMemberMutation, Exact<{
22706
24015
  id: Scalars["String"];
22707
24016
  }>>;
22708
- export declare const UserSettingsFlagIncrementDocument: DocumentNode<UserSettingsFlagIncrementMutation, Exact<{
22709
- flag: Scalars["String"];
22710
- }>>;
22711
24017
  export declare const UserSettingsFlagsResetDocument: DocumentNode<UserSettingsFlagsResetMutation, Exact<{
22712
24018
  flags?: Maybe<UserFlagType | UserFlagType[]> | undefined;
22713
24019
  }>>;