@linear/sdk 22.0.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.
@@ -538,6 +538,13 @@ export declare type AuthOrganization = {
538
538
  urlKey: Scalars["String"];
539
539
  userCount: Scalars["Float"];
540
540
  };
541
+ export declare type AuthOrganizationBucketNamePayload = {
542
+ __typename?: "AuthOrganizationBucketNamePayload";
543
+ /** The imports bucket name for the organization. */
544
+ importsBucketName: Scalars["String"];
545
+ /** The uploads bucket name for the organization. */
546
+ uploadsBucketName: Scalars["String"];
547
+ };
541
548
  export declare type AuthOrganizationDomain = {
542
549
  __typename?: "AuthOrganizationDomain";
543
550
  authType: OrganizationDomainAuthType;
@@ -754,7 +761,7 @@ export declare type Comment = Node & {
754
761
  /** The comment content in markdown format. */
755
762
  body: Scalars["String"];
756
763
  /** [Internal] The comment content as a Prosemirror document. */
757
- bodyData: Scalars["String"];
764
+ bodyData?: Maybe<Scalars["String"]>;
758
765
  /** The bot that created the comment. */
759
766
  botActor?: Maybe<ActorBot>;
760
767
  /** The children of the comment. */
@@ -779,6 +786,8 @@ export declare type Comment = Node & {
779
786
  quotedText?: Maybe<Scalars["String"]>;
780
787
  /** Emoji reaction summary, grouped by emoji type. */
781
788
  reactionData: Scalars["JSONObject"];
789
+ /** Reactions associated with the comment. */
790
+ reactions: Array<Reaction>;
782
791
  /** The time the resolvingUser resolved the thread. */
783
792
  resolvedAt?: Maybe<Scalars["DateTime"]>;
784
793
  /** The comment that resolved the thread. */
@@ -832,6 +841,8 @@ export declare type CommentCollectionFilter = {
832
841
  parent?: Maybe<NullableCommentFilter>;
833
842
  /** Filters that the comments project update must satisfy. */
834
843
  projectUpdate?: Maybe<ProjectUpdateFilter>;
844
+ /** Filters that the comments reactions must satisfy. */
845
+ reactions?: Maybe<ReactionCollectionFilter>;
835
846
  /** Filters that needs to be matched by some comments. */
836
847
  some?: Maybe<CommentFilter>;
837
848
  /** Comparator for the updated at date. */
@@ -872,6 +883,8 @@ export declare type CommentCreateInput = {
872
883
  projectUpdateId?: Maybe<Scalars["String"]>;
873
884
  /** The text that this comment references. Only defined for inline comments. */
874
885
  quotedText?: Maybe<Scalars["String"]>;
886
+ /** [INTERNAL] The identifiers of the users subscribing to this comment thread. */
887
+ subscriberIds?: Maybe<Array<Scalars["String"]>>;
875
888
  };
876
889
  export declare type CommentEdge = {
877
890
  __typename?: "CommentEdge";
@@ -899,6 +912,8 @@ export declare type CommentFilter = {
899
912
  parent?: Maybe<NullableCommentFilter>;
900
913
  /** Filters that the comments project update must satisfy. */
901
914
  projectUpdate?: Maybe<ProjectUpdateFilter>;
915
+ /** Filters that the comments reactions must satisfy. */
916
+ reactions?: Maybe<ReactionCollectionFilter>;
902
917
  /** Comparator for the updated at date. */
903
918
  updatedAt?: Maybe<DateComparator>;
904
919
  /** Filters that the comments creator must satisfy. */
@@ -918,12 +933,16 @@ export declare type CommentUpdateInput = {
918
933
  body?: Maybe<Scalars["String"]>;
919
934
  /** The comment content as a Prosemirror document. */
920
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"]>;
921
938
  /** The text that this comment references. Only defined for inline comments. */
922
939
  quotedText?: Maybe<Scalars["String"]>;
923
940
  /** [INTERNAL] The child comment that resolves this thread. */
924
941
  resolvingCommentId?: Maybe<Scalars["String"]>;
925
942
  /** [INTERNAL] The user who resolved this thread. */
926
943
  resolvingUserId?: Maybe<Scalars["String"]>;
944
+ /** [INTERNAL] The identifiers of the users subscribing to this comment. */
945
+ subscriberIds?: Maybe<Array<Scalars["String"]>>;
927
946
  };
928
947
  /** A company related to issue's origin. */
929
948
  export declare type Company = Node & {
@@ -1526,7 +1545,7 @@ export declare type DiaryEntry = Node & {
1526
1545
  /** The time at which the entity was archived. Null if the entity has not been archived. */
1527
1546
  archivedAt?: Maybe<Scalars["DateTime"]>;
1528
1547
  /** [Internal] The entry content as a Prosemirror document. */
1529
- bodyData: Scalars["String"];
1548
+ bodyData?: Maybe<Scalars["String"]>;
1530
1549
  /** The time at which the entity was created. */
1531
1550
  createdAt: Scalars["DateTime"];
1532
1551
  /** The date for which the entry is created */
@@ -1554,7 +1573,7 @@ export declare type DiaryEntryCreateInput = {
1554
1573
  /** [Internal] The comment content as a Prosemirror diaryEntry. */
1555
1574
  bodyData?: Maybe<Scalars["JSON"]>;
1556
1575
  /** The date for which the entry is created. */
1557
- date?: Maybe<Scalars["TimelessDate"]>;
1576
+ date: Scalars["TimelessDate"];
1558
1577
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
1559
1578
  id?: Maybe<Scalars["String"]>;
1560
1579
  };
@@ -1617,6 +1636,8 @@ export declare type Document = Node & {
1617
1636
  sortOrder: Scalars["Float"];
1618
1637
  /** The document title. */
1619
1638
  title: Scalars["String"];
1639
+ /** A flag that indicates whether the document is in the trash bin. */
1640
+ trashed?: Maybe<Scalars["Boolean"]>;
1620
1641
  /**
1621
1642
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1622
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
@@ -1628,6 +1649,16 @@ export declare type Document = Node & {
1628
1649
  /** The canonical url for the document. */
1629
1650
  url: Scalars["String"];
1630
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
+ };
1631
1662
  /** Document filtering options. */
1632
1663
  export declare type DocumentCollectionFilter = {
1633
1664
  /** Compound filters, all of which need to be matched by the document. */
@@ -1738,7 +1769,7 @@ export declare type DocumentContentHistory = Node & {
1738
1769
  export declare type DocumentContentHistoryPayload = {
1739
1770
  __typename?: "DocumentContentHistoryPayload";
1740
1771
  /** The document content history entries. */
1741
- history?: Maybe<Array<DocumentContentHistoryType>>;
1772
+ history: Array<DocumentContentHistoryType>;
1742
1773
  /** Whether the operation was successful. */
1743
1774
  success: Scalars["Boolean"];
1744
1775
  };
@@ -1747,7 +1778,7 @@ export declare type DocumentContentHistoryType = {
1747
1778
  /** The ID of the author of the change. */
1748
1779
  actorIds?: Maybe<Array<Scalars["String"]>>;
1749
1780
  /** [Internal] The document content as Prosemirror document. */
1750
- contentData: Scalars["JSON"];
1781
+ contentData?: Maybe<Scalars["JSON"]>;
1751
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. */
1752
1783
  contentDataSnapshotAt: Scalars["DateTime"];
1753
1784
  /** The date when the document content history entry was created. */
@@ -1899,6 +1930,8 @@ export declare type DocumentSearchResult = Node & {
1899
1930
  sortOrder: Scalars["Float"];
1900
1931
  /** The document title. */
1901
1932
  title: Scalars["String"];
1933
+ /** A flag that indicates whether the document is in the trash bin. */
1934
+ trashed?: Maybe<Scalars["Boolean"]>;
1902
1935
  /**
1903
1936
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
1904
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
@@ -2256,6 +2289,18 @@ export declare type Facet = Node & {
2256
2289
  id: Scalars["ID"];
2257
2290
  /** The sort order of the facet. */
2258
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>;
2259
2304
  /**
2260
2305
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2261
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
@@ -2275,6 +2320,9 @@ export declare type FacetEdge = {
2275
2320
  cursor: Scalars["String"];
2276
2321
  node: Facet;
2277
2322
  };
2323
+ export declare enum FacetPageSource {
2324
+ Projects = "projects"
2325
+ }
2278
2326
  /** User favorites presented in the sidebar. */
2279
2327
  export declare type Favorite = Node & {
2280
2328
  __typename?: "Favorite";
@@ -2290,6 +2338,8 @@ export declare type Favorite = Node & {
2290
2338
  cycle?: Maybe<Cycle>;
2291
2339
  /** The favorited document. */
2292
2340
  document?: Maybe<Document>;
2341
+ /** [INTERNAL] The favorited facet. */
2342
+ facet?: Maybe<Facet>;
2293
2343
  /** The name of the folder. Only applies to favorites of type folder. */
2294
2344
  folderName?: Maybe<Scalars["String"]>;
2295
2345
  /** The unique identifier of the entity. */
@@ -2349,7 +2399,7 @@ export declare type FavoriteCreateInput = {
2349
2399
  cycleId?: Maybe<Scalars["String"]>;
2350
2400
  /** The identifier of the document to favorite. */
2351
2401
  documentId?: Maybe<Scalars["String"]>;
2352
- /** [INTERNAL] The identifier of the facet to favorite. */
2402
+ /** The identifier of the facet to favorite. */
2353
2403
  facetId?: Maybe<Scalars["String"]>;
2354
2404
  /** The name of the favorite folder. */
2355
2405
  folderName?: Maybe<Scalars["String"]>;
@@ -2403,6 +2453,109 @@ export declare type FavoriteUpdateInput = {
2403
2453
  /** The position of the item in the favorites list. */
2404
2454
  sortOrder?: Maybe<Scalars["Float"]>;
2405
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
+ }
2406
2559
  export declare type FrontAttachmentPayload = {
2407
2560
  __typename?: "FrontAttachmentPayload";
2408
2561
  /** The identifier of the last sync operation. */
@@ -2687,13 +2840,13 @@ export declare type GoogleSheetsSettings = {
2687
2840
  sheetId: Scalars["Float"];
2688
2841
  spreadsheetId: Scalars["String"];
2689
2842
  spreadsheetUrl: Scalars["String"];
2690
- updatedIssuesAt: Scalars["DateTime"];
2843
+ updatedIssuesAt?: Maybe<Scalars["DateTime"]>;
2691
2844
  };
2692
2845
  export declare type GoogleSheetsSettingsInput = {
2693
2846
  sheetId: Scalars["Float"];
2694
2847
  spreadsheetId: Scalars["String"];
2695
2848
  spreadsheetUrl: Scalars["String"];
2696
- updatedIssuesAt: Scalars["DateTime"];
2849
+ updatedIssuesAt?: Maybe<Scalars["DateTime"]>;
2697
2850
  };
2698
2851
  export declare type GoogleUserAccountAuthInput = {
2699
2852
  /** Code returned from Google's OAuth flow. */
@@ -2768,6 +2921,8 @@ export declare type Initiative = Node & {
2768
2921
  targetDate?: Maybe<Scalars["TimelessDate"]>;
2769
2922
  /** [INTERNAL] The resolution of the initiative's estimated completion date. */
2770
2923
  targetDateResolution?: Maybe<DateResolutionType>;
2924
+ /** A flag that indicates whether the initiative is in the trash bin. */
2925
+ trashed?: Maybe<Scalars["Boolean"]>;
2771
2926
  /**
2772
2927
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2773
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
@@ -2853,6 +3008,10 @@ export declare type InitiativeCreateInput = {
2853
3008
  sortOrder?: Maybe<Scalars["Float"]>;
2854
3009
  /** The initiative's status. */
2855
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>;
2856
3015
  };
2857
3016
  export declare type InitiativeEdge = {
2858
3017
  __typename?: "InitiativeEdge";
@@ -3009,6 +3168,8 @@ export declare type InitiativeUpdateInput = {
3009
3168
  status?: Maybe<InitiativeStatus>;
3010
3169
  /** The estimated completion date of the initiative. */
3011
3170
  targetDate?: Maybe<Scalars["TimelessDate"]>;
3171
+ /** The resolution of the initiative's estimated completion date. */
3172
+ targetDateResolution?: Maybe<DateResolutionType>;
3012
3173
  };
3013
3174
  /** An integration with an external service. */
3014
3175
  export declare type Integration = Node & {
@@ -3091,6 +3252,7 @@ export declare enum IntegrationService {
3091
3252
  Intercom = "intercom",
3092
3253
  Jira = "jira",
3093
3254
  JiraPersonal = "jiraPersonal",
3255
+ LaunchDarkly = "launchDarkly",
3094
3256
  Loom = "loom",
3095
3257
  Notion = "notion",
3096
3258
  Opsgenie = "opsgenie",
@@ -3118,6 +3280,7 @@ export declare type IntegrationSettings = {
3118
3280
  intercom?: Maybe<IntercomSettings>;
3119
3281
  jira?: Maybe<JiraSettings>;
3120
3282
  jiraPersonal?: Maybe<JiraPersonalSettings>;
3283
+ launchDarkly?: Maybe<LaunchDarklySettings>;
3121
3284
  notion?: Maybe<NotionSettings>;
3122
3285
  opsgenie?: Maybe<OpsgenieSettings>;
3123
3286
  pagerDuty?: Maybe<PagerDutySettings>;
@@ -3140,6 +3303,7 @@ export declare type IntegrationSettingsInput = {
3140
3303
  intercom?: Maybe<IntercomSettingsInput>;
3141
3304
  jira?: Maybe<JiraSettingsInput>;
3142
3305
  jiraPersonal?: Maybe<JiraPersonalSettingsInput>;
3306
+ launchDarkly?: Maybe<LaunchDarklySettingsInput>;
3143
3307
  notion?: Maybe<NotionSettingsInput>;
3144
3308
  opsgenie?: Maybe<OpsgenieInput>;
3145
3309
  pagerDuty?: Maybe<PagerDutyInput>;
@@ -3218,6 +3382,8 @@ export declare type IntegrationsSettings = Node & {
3218
3382
  project?: Maybe<Project>;
3219
3383
  /** Whether to send a Slack message when a new issue is added to triage. */
3220
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"]>;
3221
3387
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3222
3388
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3223
3389
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3258,6 +3424,8 @@ export declare type IntegrationsSettingsCreateInput = {
3258
3424
  projectId?: Maybe<Scalars["String"]>;
3259
3425
  /** Whether to send a Slack message when a new issue is added to triage. */
3260
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"]>;
3261
3429
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3262
3430
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3263
3431
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3297,6 +3465,8 @@ export declare type IntegrationsSettingsPayload = {
3297
3465
  export declare type IntegrationsSettingsUpdateInput = {
3298
3466
  /** Whether to send a Slack message when a new issue is added to triage. */
3299
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"]>;
3300
3470
  /** Whether to send a Slack message when a new issue is created for the project or the team. */
3301
3471
  slackIssueCreated?: Maybe<Scalars["Boolean"]>;
3302
3472
  /** Whether to send a Slack message when a comment is created on any of the project or team's issues. */
@@ -3427,6 +3597,10 @@ export declare type Issue = Node & {
3427
3597
  project?: Maybe<Project>;
3428
3598
  /** The projectMilestone that the issue is associated with. */
3429
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>;
3430
3604
  /** Relations associated with this issue. */
3431
3605
  relations: IssueRelationConnection;
3432
3606
  /** The time at which the issue's SLA will breach. */
@@ -3627,6 +3801,8 @@ export declare type IssueCollectionFilter = {
3627
3801
  project?: Maybe<NullableProjectFilter>;
3628
3802
  /** Filters that the issues project milestone must satisfy. */
3629
3803
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
3804
+ /** Filters that the issues reactions must satisfy. */
3805
+ reactions?: Maybe<ReactionCollectionFilter>;
3630
3806
  /** [Internal] Comparator for the issues content. */
3631
3807
  searchableContent?: Maybe<ContentComparator>;
3632
3808
  /** Comparator for the issues sla status. */
@@ -3726,7 +3902,7 @@ export declare type IssueDraft = Node & {
3726
3902
  /** The user assigned to the draft. */
3727
3903
  assigneeId?: Maybe<Scalars["String"]>;
3728
3904
  /** Serialized array of JSONs representing attachments. */
3729
- attachments: Scalars["JSONObject"];
3905
+ attachments?: Maybe<Scalars["JSONObject"]>;
3730
3906
  /** The time at which the entity was created. */
3731
3907
  createdAt: Scalars["DateTime"];
3732
3908
  /** The user who created the draft. */
@@ -3834,6 +4010,8 @@ export declare type IssueFilter = {
3834
4010
  project?: Maybe<NullableProjectFilter>;
3835
4011
  /** Filters that the issues project milestone must satisfy. */
3836
4012
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
4013
+ /** Filters that the issues reactions must satisfy. */
4014
+ reactions?: Maybe<ReactionCollectionFilter>;
3837
4015
  /** [Internal] Comparator for the issues content. */
3838
4016
  searchableContent?: Maybe<ContentComparator>;
3839
4017
  /** Comparator for the issues sla status. */
@@ -3867,7 +4045,10 @@ export declare type IssueFilterSuggestionPayload = {
3867
4045
  /** A record of changes to an issue. */
3868
4046
  export declare type IssueHistory = Node & {
3869
4047
  __typename?: "IssueHistory";
3870
- /** 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
+ */
3871
4052
  actor?: Maybe<User>;
3872
4053
  /** The id of user who made these changes. If null, possibly means that the change made by an integration. */
3873
4054
  actorId?: Maybe<Scalars["String"]>;
@@ -3895,11 +4076,11 @@ export declare type IssueHistory = Node & {
3895
4076
  changes?: Maybe<Scalars["JSONObject"]>;
3896
4077
  /** The time at which the entity was created. */
3897
4078
  createdAt: Scalars["DateTime"];
3898
- /** The user from whom the issue was re-assigned from. */
4079
+ /** The user that was unassigned from the issue. */
3899
4080
  fromAssignee?: Maybe<User>;
3900
4081
  /** The id of user from whom the issue was re-assigned from. */
3901
4082
  fromAssigneeId?: Maybe<Scalars["String"]>;
3902
- /** The previous cycle of the issue. */
4083
+ /** The cycle that the issue was moved from. */
3903
4084
  fromCycle?: Maybe<Cycle>;
3904
4085
  /** The id of previous cycle of the issue. */
3905
4086
  fromCycleId?: Maybe<Scalars["String"]>;
@@ -3907,21 +4088,21 @@ export declare type IssueHistory = Node & {
3907
4088
  fromDueDate?: Maybe<Scalars["TimelessDate"]>;
3908
4089
  /** What the estimate was changed from. */
3909
4090
  fromEstimate?: Maybe<Scalars["Float"]>;
3910
- /** The previous parent of the issue. */
4091
+ /** The parent issue that the issue was moved from. */
3911
4092
  fromParent?: Maybe<Issue>;
3912
4093
  /** The id of previous parent of the issue. */
3913
4094
  fromParentId?: Maybe<Scalars["String"]>;
3914
4095
  /** What the priority was changed from. */
3915
4096
  fromPriority?: Maybe<Scalars["Float"]>;
3916
- /** The previous project of the issue. */
4097
+ /** The project that the issue was moved from. */
3917
4098
  fromProject?: Maybe<Project>;
3918
4099
  /** The id of previous project of the issue. */
3919
4100
  fromProjectId?: Maybe<Scalars["String"]>;
3920
- /** The previous workflow state of the issue. */
4101
+ /** The state that the issue was moved from. */
3921
4102
  fromState?: Maybe<WorkflowState>;
3922
4103
  /** The id of previous workflow state of the issue. */
3923
4104
  fromStateId?: Maybe<Scalars["String"]>;
3924
- /** The team from which the issue was moved from. */
4105
+ /** The team that the issue was moved from. */
3925
4106
  fromTeam?: Maybe<Team>;
3926
4107
  /** The id of team from which the issue was moved from. */
3927
4108
  fromTeamId?: Maybe<Scalars["String"]>;
@@ -3939,7 +4120,7 @@ export declare type IssueHistory = Node & {
3939
4120
  removedLabelIds?: Maybe<Array<Scalars["String"]>>;
3940
4121
  /** The labels that were removed from the issue. */
3941
4122
  removedLabels?: Maybe<Array<IssueLabel>>;
3942
- /** The user to whom the issue was assigned to. */
4123
+ /** The user that was assigned to the issue. */
3943
4124
  toAssignee?: Maybe<User>;
3944
4125
  /** The id of user to whom the issue was assigned to. */
3945
4126
  toAssigneeId?: Maybe<Scalars["String"]>;
@@ -3947,7 +4128,7 @@ export declare type IssueHistory = Node & {
3947
4128
  toConvertedProject?: Maybe<Project>;
3948
4129
  /** The id of new project created from the issue. */
3949
4130
  toConvertedProjectId?: Maybe<Scalars["String"]>;
3950
- /** The new cycle of the issue. */
4131
+ /** The cycle that the issue was moved to. */
3951
4132
  toCycle?: Maybe<Cycle>;
3952
4133
  /** The id of new cycle of the issue. */
3953
4134
  toCycleId?: Maybe<Scalars["String"]>;
@@ -3955,21 +4136,21 @@ export declare type IssueHistory = Node & {
3955
4136
  toDueDate?: Maybe<Scalars["TimelessDate"]>;
3956
4137
  /** What the estimate was changed to. */
3957
4138
  toEstimate?: Maybe<Scalars["Float"]>;
3958
- /** The new parent of the issue. */
4139
+ /** The parent issue that the issue was moved to. */
3959
4140
  toParent?: Maybe<Issue>;
3960
4141
  /** The id of new parent of the issue. */
3961
4142
  toParentId?: Maybe<Scalars["String"]>;
3962
4143
  /** What the priority was changed to. */
3963
4144
  toPriority?: Maybe<Scalars["Float"]>;
3964
- /** The new project of the issue. */
4145
+ /** The project that the issue was moved to. */
3965
4146
  toProject?: Maybe<Project>;
3966
4147
  /** The id of new project of the issue. */
3967
4148
  toProjectId?: Maybe<Scalars["String"]>;
3968
- /** The new workflow state of the issue. */
4149
+ /** The state that the issue was moved to. */
3969
4150
  toState?: Maybe<WorkflowState>;
3970
4151
  /** The id of new workflow state of the issue. */
3971
4152
  toStateId?: Maybe<Scalars["String"]>;
3972
- /** The team to which the issue was moved to. */
4153
+ /** The team that the issue was moved to. */
3973
4154
  toTeam?: Maybe<Team>;
3974
4155
  /** The id of team to which the issue was moved to. */
3975
4156
  toTeamId?: Maybe<Scalars["String"]>;
@@ -4463,6 +4644,10 @@ export declare type IssueSearchResult = Node & {
4463
4644
  project?: Maybe<Project>;
4464
4645
  /** The projectMilestone that the issue is associated with. */
4465
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>;
4466
4651
  /** Relations associated with this issue. */
4467
4652
  relations: IssueRelationConnection;
4468
4653
  /** The time at which the issue's SLA will breach. */
@@ -4822,6 +5007,20 @@ export declare type LabelSort = {
4822
5007
  /** The order for the individual sort */
4823
5008
  order?: Maybe<PaginationSortOrder>;
4824
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
+ };
4825
5024
  export declare type LogoutResponse = {
4826
5025
  __typename?: "LogoutResponse";
4827
5026
  /** Whether the operation was successful. */
@@ -4924,8 +5123,10 @@ export declare type Mutation = {
4924
5123
  diaryEntryUpdate: DiaryEntryPayload;
4925
5124
  /** Creates a new document. */
4926
5125
  documentCreate: DocumentPayload;
4927
- /** Deletes a document. */
4928
- documentDelete: DeletePayload;
5126
+ /** Deletes (trashes) a document. */
5127
+ documentDelete: DocumentArchivePayload;
5128
+ /** Restores a document. */
5129
+ documentUnarchive: DocumentArchivePayload;
4929
5130
  /** Updates a document. */
4930
5131
  documentUpdate: DocumentPayload;
4931
5132
  /** Creates a new email intake address. */
@@ -4982,7 +5183,7 @@ export declare type Mutation = {
4982
5183
  initiativeArchive: InitiativeArchivePayload;
4983
5184
  /** [Internal] Creates a new initiative. */
4984
5185
  initiativeCreate: InitiativePayload;
4985
- /** [Internal] Deletes a initiative. */
5186
+ /** [Internal] Deletes (trashes) an initiative. */
4986
5187
  initiativeDelete: DeletePayload;
4987
5188
  /** [INTERNAL] Creates a new initiativeToProject join. */
4988
5189
  initiativeToProjectCreate: InitiativeToProjectPayload;
@@ -5033,6 +5234,8 @@ export declare type Mutation = {
5033
5234
  integrationJiraPersonal: IntegrationPayload;
5034
5235
  /** [INTERNAL] Updates a Jira Integration. */
5035
5236
  integrationJiraUpdate: IntegrationPayload;
5237
+ /** [INTERNAL] Integrates the organization with LaunchDarkly. */
5238
+ integrationLaunchDarklyConnect: IntegrationPayload;
5036
5239
  /**
5037
5240
  * Enables Loom integration for the organization.
5038
5241
  * @deprecated Not available.
@@ -5330,8 +5533,6 @@ export declare type Mutation = {
5330
5533
  userPromoteAdmin: UserAdminPayload;
5331
5534
  /** Makes user a regular user. Can only be called by an admin. */
5332
5535
  userPromoteMember: UserAdminPayload;
5333
- /** [Deprecated] Updates a user's settings flag. */
5334
- userSettingsFlagIncrement: UserSettingsFlagPayload;
5335
5536
  /** Resets user's setting flags. */
5336
5537
  userSettingsFlagsReset: UserSettingsFlagsResetPayload;
5337
5538
  /** Updates the user's settings. */
@@ -5546,6 +5747,9 @@ export declare type MutationDocumentCreateArgs = {
5546
5747
  export declare type MutationDocumentDeleteArgs = {
5547
5748
  id: Scalars["String"];
5548
5749
  };
5750
+ export declare type MutationDocumentUnarchiveArgs = {
5751
+ id: Scalars["String"];
5752
+ };
5549
5753
  export declare type MutationDocumentUpdateArgs = {
5550
5754
  id: Scalars["String"];
5551
5755
  input: DocumentUpdateInput;
@@ -5719,6 +5923,11 @@ export declare type MutationIntegrationJiraPersonalArgs = {
5719
5923
  export declare type MutationIntegrationJiraUpdateArgs = {
5720
5924
  input: JiraUpdateInput;
5721
5925
  };
5926
+ export declare type MutationIntegrationLaunchDarklyConnectArgs = {
5927
+ apiKey: Scalars["String"];
5928
+ environment: Scalars["String"];
5929
+ projectKey: Scalars["String"];
5930
+ };
5722
5931
  export declare type MutationIntegrationOpsgenieConnectArgs = {
5723
5932
  apiKey: Scalars["String"];
5724
5933
  };
@@ -6232,9 +6441,6 @@ export declare type MutationUserPromoteAdminArgs = {
6232
6441
  export declare type MutationUserPromoteMemberArgs = {
6233
6442
  id: Scalars["String"];
6234
6443
  };
6235
- export declare type MutationUserSettingsFlagIncrementArgs = {
6236
- flag: Scalars["String"];
6237
- };
6238
6444
  export declare type MutationUserSettingsFlagsResetArgs = {
6239
6445
  flags?: Maybe<Array<UserFlagType>>;
6240
6446
  };
@@ -6359,13 +6565,13 @@ export declare type NotificationDeliveryPreferencesChannel = {
6359
6565
  /** Whether notifications are enabled for this channel. */
6360
6566
  notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6361
6567
  /** The schedule for notifications on this channel. */
6362
- schedule: NotificationDeliveryPreferencesSchedule;
6568
+ schedule?: Maybe<NotificationDeliveryPreferencesSchedule>;
6363
6569
  };
6364
6570
  export declare type NotificationDeliveryPreferencesChannelInput = {
6365
6571
  /** Whether notifications are enabled for this channel. */
6366
6572
  notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6367
6573
  /** The schedule for notifications on this channel. */
6368
- schedule: NotificationDeliveryPreferencesScheduleInput;
6574
+ schedule?: Maybe<NotificationDeliveryPreferencesScheduleInput>;
6369
6575
  };
6370
6576
  /** A user's notification delivery schedule for a particular day. */
6371
6577
  export declare type NotificationDeliveryPreferencesDay = {
@@ -6581,6 +6787,8 @@ export declare type NullableCommentFilter = {
6581
6787
  parent?: Maybe<NullableCommentFilter>;
6582
6788
  /** Filters that the comments project update must satisfy. */
6583
6789
  projectUpdate?: Maybe<ProjectUpdateFilter>;
6790
+ /** Filters that the comments reactions must satisfy. */
6791
+ reactions?: Maybe<ReactionCollectionFilter>;
6584
6792
  /** Comparator for the updated at date. */
6585
6793
  updatedAt?: Maybe<DateComparator>;
6586
6794
  /** Filters that the comments creator must satisfy. */
@@ -6744,6 +6952,8 @@ export declare type NullableIssueFilter = {
6744
6952
  project?: Maybe<NullableProjectFilter>;
6745
6953
  /** Filters that the issues project milestone must satisfy. */
6746
6954
  projectMilestone?: Maybe<NullableProjectMilestoneFilter>;
6955
+ /** Filters that the issues reactions must satisfy. */
6956
+ reactions?: Maybe<ReactionCollectionFilter>;
6747
6957
  /** [Internal] Comparator for the issues content. */
6748
6958
  searchableContent?: Maybe<ContentComparator>;
6749
6959
  /** Comparator for the issues sla status. */
@@ -6804,6 +7014,16 @@ export declare type NullableProjectFilter = {
6804
7014
  createdAt?: Maybe<DateComparator>;
6805
7015
  /** Filters that the projects creator must satisfy. */
6806
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>;
6807
7027
  /** Comparator for the project health. */
6808
7028
  health?: Maybe<StringComparator>;
6809
7029
  /** Comparator for the identifier. */
@@ -6828,6 +7048,8 @@ export declare type NullableProjectFilter = {
6828
7048
  or?: Maybe<Array<NullableProjectFilter>>;
6829
7049
  /** Filters that the project's milestones must satisfy. */
6830
7050
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
7051
+ /** Comparator for the project updates. */
7052
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
6831
7053
  /** Filters that the projects roadmaps must satisfy. */
6832
7054
  roadmaps?: Maybe<RoadmapCollectionFilter>;
6833
7055
  /** [Internal] Comparator for the project's content. */
@@ -6864,6 +7086,40 @@ export declare type NullableProjectMilestoneFilter = {
6864
7086
  /** Comparator for the updated at date. */
6865
7087
  updatedAt?: Maybe<DateComparator>;
6866
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
+ };
6867
7123
  /** Comparator for optional strings. */
6868
7124
  export declare type NullableStringComparator = {
6869
7125
  /** Contains constraint. Matches any values that contain the given string. */
@@ -7160,13 +7416,13 @@ export declare type OnboardingCustomerSurvey = {
7160
7416
  };
7161
7417
  export declare type OpsgenieInput = {
7162
7418
  /** The date when the Opsgenie API failed with an unauthorized error. */
7163
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7419
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7164
7420
  };
7165
7421
  /** Opsgenie specific settings. */
7166
7422
  export declare type OpsgenieSettings = {
7167
7423
  __typename?: "OpsgenieSettings";
7168
7424
  /** The date when the Opsgenie API failed with an unauthorized error. */
7169
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7425
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7170
7426
  };
7171
7427
  /** An organization. Organizations are root-level objects that contain user accounts and teams. */
7172
7428
  export declare type Organization = Node & {
@@ -7195,6 +7451,8 @@ export declare type Organization = Node & {
7195
7451
  id: Scalars["ID"];
7196
7452
  /** Integrations associated with the organization. */
7197
7453
  integrations: IntegrationConnection;
7454
+ /** IP restriction configurations. */
7455
+ ipRestrictions?: Maybe<Array<OrganizationIpRestriction>>;
7198
7456
  /** Labels associated with the organization. */
7199
7457
  labels: IssueLabelConnection;
7200
7458
  /** The organization's logo URL. */
@@ -7419,7 +7677,7 @@ export declare type OrganizationInvite = Node & {
7419
7677
  /** The user who created the invitation. */
7420
7678
  inviter: User;
7421
7679
  /** Extra metadata associated with the organization invite. */
7422
- metadata: Scalars["JSONObject"];
7680
+ metadata?: Maybe<Scalars["JSONObject"]>;
7423
7681
  /** The organization that the invite is associated with. */
7424
7682
  organization: Organization;
7425
7683
  /** The user role that the invitee will receive upon accepting the invite. */
@@ -7517,6 +7775,28 @@ export declare type OrganizationInviteUpdateInput = {
7517
7775
  /** The teams that the user has been invited to. */
7518
7776
  teamIds: Array<Scalars["String"]>;
7519
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
+ };
7520
7800
  export declare type OrganizationMeta = {
7521
7801
  __typename?: "OrganizationMeta";
7522
7802
  /** Allowed authentication providers, empty array means all are allowed. */
@@ -7558,8 +7838,8 @@ export declare type OrganizationUpdateInput = {
7558
7838
  gitLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
7559
7839
  /** Whether the Git integration linkback messages should be sent for public repositories. */
7560
7840
  gitPublicLinkbackMessagesEnabled?: Maybe<Scalars["Boolean"]>;
7561
- /** Linear Preview feature flags. */
7562
- linearPreviewFlags?: Maybe<Scalars["JSONObject"]>;
7841
+ /** IP restriction configurations controlling allowed access the workspace. */
7842
+ ipRestrictions?: Maybe<Array<OrganizationIpRestrictionInput>>;
7563
7843
  /** The logo of the organization. */
7564
7844
  logoUrl?: Maybe<Scalars["String"]>;
7565
7845
  /** The name of the organization. */
@@ -7572,7 +7852,7 @@ export declare type OrganizationUpdateInput = {
7572
7852
  projectUpdateRemindersDay?: Maybe<Day>;
7573
7853
  /** The hour at which project updates are sent. */
7574
7854
  projectUpdateRemindersHour?: Maybe<Scalars["Float"]>;
7575
- /** The frequency at which project updates are sent. */
7855
+ /** [DEPRECATED] The frequency at which project updates are sent. */
7576
7856
  projectUpdatesReminderFrequency?: Maybe<ProjectUpdateReminderFrequency>;
7577
7857
  /** Whether the organization has opted for reduced customer support attachment information. */
7578
7858
  reducedPersonalInformation?: Maybe<Scalars["Boolean"]>;
@@ -7600,13 +7880,13 @@ export declare type PageInfo = {
7600
7880
  };
7601
7881
  export declare type PagerDutyInput = {
7602
7882
  /** The date when the PagerDuty API failed with an unauthorized error. */
7603
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7883
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7604
7884
  };
7605
7885
  /** PagerDuty specific settings. */
7606
7886
  export declare type PagerDutySettings = {
7607
7887
  __typename?: "PagerDutySettings";
7608
7888
  /** The date when the PagerDuty API failed with an unauthorized error. */
7609
- apiFailedWithUnauthorizedErrorAt: Scalars["DateTime"];
7889
+ apiFailedWithUnauthorizedErrorAt?: Maybe<Scalars["DateTime"]>;
7610
7890
  };
7611
7891
  /** How to treat NULL values, whether they should appear first or last */
7612
7892
  export declare enum PaginationNulls {
@@ -7631,7 +7911,7 @@ export declare type PaidSubscription = Node & {
7631
7911
  /** The date the subscription was canceled, if any. */
7632
7912
  canceledAt?: Maybe<Scalars["DateTime"]>;
7633
7913
  /** The collection method for this subscription, either automatically charged or invoiced. */
7634
- collectionMethod?: Maybe<Scalars["String"]>;
7914
+ collectionMethod: Scalars["String"];
7635
7915
  /** The time at which the entity was created. */
7636
7916
  createdAt: Scalars["DateTime"];
7637
7917
  /** The creator of the subscription. */
@@ -7905,6 +8185,16 @@ export declare type ProjectCollectionFilter = {
7905
8185
  creator?: Maybe<UserFilter>;
7906
8186
  /** Filters that needs to be matched by all projects. */
7907
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>;
7908
8198
  /** Comparator for the project health. */
7909
8199
  health?: Maybe<StringComparator>;
7910
8200
  /** Comparator for the identifier. */
@@ -7929,6 +8219,8 @@ export declare type ProjectCollectionFilter = {
7929
8219
  or?: Maybe<Array<ProjectCollectionFilter>>;
7930
8220
  /** Filters that the project's milestones must satisfy. */
7931
8221
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
8222
+ /** Comparator for the project updates. */
8223
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
7932
8224
  /** Filters that the projects roadmaps must satisfy. */
7933
8225
  roadmaps?: Maybe<RoadmapCollectionFilter>;
7934
8226
  /** [Internal] Comparator for the project's content. */
@@ -7990,21 +8282,6 @@ export declare type ProjectCreateInput = {
7990
8282
  /** The identifiers of the teams this project is associated with. */
7991
8283
  teamIds: Array<Scalars["String"]>;
7992
8284
  };
7993
- export declare type ProjectDetailSuggestionInput = {
7994
- /** The description for the project. */
7995
- description?: Maybe<Scalars["String"]>;
7996
- /** The content of the project as markdown. */
7997
- documentContent?: Maybe<Scalars["String"]>;
7998
- /** The name of the project. */
7999
- name: Scalars["String"];
8000
- };
8001
- export declare type ProjectDetailSuggestionPayload = {
8002
- __typename?: "ProjectDetailSuggestionPayload";
8003
- /** The suggested project color. */
8004
- color?: Maybe<Scalars["String"]>;
8005
- /** The suggested view icon. */
8006
- icon?: Maybe<Scalars["String"]>;
8007
- };
8008
8285
  export declare type ProjectEdge = {
8009
8286
  __typename?: "ProjectEdge";
8010
8287
  /** Used in `before` and `after` args */
@@ -8025,6 +8302,16 @@ export declare type ProjectFilter = {
8025
8302
  createdAt?: Maybe<DateComparator>;
8026
8303
  /** Filters that the projects creator must satisfy. */
8027
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>;
8028
8315
  /** Comparator for the project health. */
8029
8316
  health?: Maybe<StringComparator>;
8030
8317
  /** Comparator for the identifier. */
@@ -8047,6 +8334,8 @@ export declare type ProjectFilter = {
8047
8334
  or?: Maybe<Array<ProjectFilter>>;
8048
8335
  /** Filters that the project's milestones must satisfy. */
8049
8336
  projectMilestones?: Maybe<ProjectMilestoneCollectionFilter>;
8337
+ /** Comparator for the project updates. */
8338
+ projectUpdates?: Maybe<ProjectUpdatesCollectionFilter>;
8050
8339
  /** Filters that the projects roadmaps must satisfy. */
8051
8340
  roadmaps?: Maybe<RoadmapCollectionFilter>;
8052
8341
  /** [Internal] Comparator for the project's content. */
@@ -8716,7 +9005,6 @@ export declare enum ProjectStatusType {
8716
9005
  }
8717
9006
  /** Different tabs available inside a project. */
8718
9007
  export declare enum ProjectTab {
8719
- Activity = "activity",
8720
9008
  Documents = "documents",
8721
9009
  Issues = "issues"
8722
9010
  }
@@ -8751,6 +9039,8 @@ export declare type ProjectUpdate = Node & {
8751
9039
  project: Project;
8752
9040
  /** Emoji reaction summary, grouped by emoji type. */
8753
9041
  reactionData: Scalars["JSONObject"];
9042
+ /** Reactions associated with the project update. */
9043
+ reactions: Array<Reaction>;
8754
9044
  /**
8755
9045
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
8756
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
@@ -8798,7 +9088,7 @@ export declare type ProjectUpdateEdge = {
8798
9088
  cursor: Scalars["String"];
8799
9089
  node: ProjectUpdate;
8800
9090
  };
8801
- /** ProjectUpdate filtering options. */
9091
+ /** Options for filtering project updates. */
8802
9092
  export declare type ProjectUpdateFilter = {
8803
9093
  /** Compound filters, all of which need to be matched by the ProjectUpdate. */
8804
9094
  and?: Maybe<Array<ProjectUpdateFilter>>;
@@ -8810,6 +9100,8 @@ export declare type ProjectUpdateFilter = {
8810
9100
  or?: Maybe<Array<ProjectUpdateFilter>>;
8811
9101
  /** Filters that the project update project must satisfy. */
8812
9102
  project?: Maybe<ProjectFilter>;
9103
+ /** Filters that the project updates reactions must satisfy. */
9104
+ reactions?: Maybe<ReactionCollectionFilter>;
8813
9105
  /** Comparator for the updated at date. */
8814
9106
  updatedAt?: Maybe<DateComparator>;
8815
9107
  /** Filters that the project update creator must satisfy. */
@@ -8962,6 +9254,38 @@ export declare type ProjectUpdateWithInteractionPayload = {
8962
9254
  /** Whether the operation was successful. */
8963
9255
  success: Scalars["Boolean"];
8964
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
+ };
8965
9289
  /** A user's web browser push notification subscription. */
8966
9290
  export declare type PushSubscription = Node & {
8967
9291
  __typename?: "PushSubscription";
@@ -9175,8 +9499,6 @@ export declare type Query = {
9175
9499
  organizationMeta?: Maybe<OrganizationMeta>;
9176
9500
  /** One specific project. */
9177
9501
  project: Project;
9178
- /** [INTERNAL] Suggests icon, color for a project based on its info while composing. */
9179
- projectDetailsSuggestion: ProjectDetailSuggestionPayload;
9180
9502
  /** Suggests filters for a project view based on a text prompt. */
9181
9503
  projectFilterSuggestion: ProjectFilterSuggestionPayload;
9182
9504
  /** One specific project link. */
@@ -9598,9 +9920,6 @@ export declare type QueryOrganizationMetaArgs = {
9598
9920
  export declare type QueryProjectArgs = {
9599
9921
  id: Scalars["String"];
9600
9922
  };
9601
- export declare type QueryProjectDetailsSuggestionArgs = {
9602
- project: ProjectDetailSuggestionInput;
9603
- };
9604
9923
  export declare type QueryProjectFilterSuggestionArgs = {
9605
9924
  prompt: Scalars["String"];
9606
9925
  };
@@ -9877,6 +10196,29 @@ export declare type Reaction = Node & {
9877
10196
  /** The user that created the reaction. */
9878
10197
  user?: Maybe<User>;
9879
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
+ };
9880
10222
  export declare type ReactionConnection = {
9881
10223
  __typename?: "ReactionConnection";
9882
10224
  edges: Array<ReactionEdge>;
@@ -9887,7 +10229,7 @@ export declare type ReactionCreateInput = {
9887
10229
  /** The comment to associate the reaction with. */
9888
10230
  commentId?: Maybe<Scalars["String"]>;
9889
10231
  /** The emoji the user reacted with. */
9890
- emoji?: Maybe<Scalars["String"]>;
10232
+ emoji: Scalars["String"];
9891
10233
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
9892
10234
  id?: Maybe<Scalars["String"]>;
9893
10235
  /** The issue to associate the reaction with. */
@@ -9901,6 +10243,23 @@ export declare type ReactionEdge = {
9901
10243
  cursor: Scalars["String"];
9902
10244
  node: Reaction;
9903
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
+ };
9904
10263
  export declare type ReactionPayload = {
9905
10264
  __typename?: "ReactionPayload";
9906
10265
  /** The identifier of the last sync operation. */
@@ -10209,8 +10568,7 @@ export declare enum SlaStatus {
10209
10568
  Failed = "Failed",
10210
10569
  HighRisk = "HighRisk",
10211
10570
  LowRisk = "LowRisk",
10212
- MediumRisk = "MediumRisk",
10213
- Paused = "Paused"
10571
+ MediumRisk = "MediumRisk"
10214
10572
  }
10215
10573
  /** Comparator for sla status. */
10216
10574
  export declare type SlaStatusComparator = {
@@ -10920,7 +11278,7 @@ export declare type TeamMembership = Node & {
10920
11278
  /** The unique identifier of the entity. */
10921
11279
  id: Scalars["ID"];
10922
11280
  /** Whether the user is the owner of the team. */
10923
- owner?: Maybe<Scalars["Boolean"]>;
11281
+ owner: Scalars["Boolean"];
10924
11282
  /** The order of the item in the users team list. */
10925
11283
  sortOrder: Scalars["Float"];
10926
11284
  /** The team that the membership is associated with. */
@@ -11260,7 +11618,7 @@ export declare type TimeSchedule = Node & {
11260
11618
  /** The time at which the entity was created. */
11261
11619
  createdAt: Scalars["DateTime"];
11262
11620
  /** The schedule entries. */
11263
- entries: Array<TimeScheduleEntry>;
11621
+ entries?: Maybe<Array<TimeScheduleEntry>>;
11264
11622
  /** The identifier of the external schedule. */
11265
11623
  externalId?: Maybe<Scalars["String"]>;
11266
11624
  /** The URL to the external schedule. */
@@ -11908,13 +12266,13 @@ export declare type UserSettings = Node & {
11908
12266
  export declare type UserSettingsFlagPayload = {
11909
12267
  __typename?: "UserSettingsFlagPayload";
11910
12268
  /** The flag key which was updated. */
11911
- flag: Scalars["String"];
12269
+ flag?: Maybe<Scalars["String"]>;
11912
12270
  /** The identifier of the last sync operation. */
11913
12271
  lastSyncId: Scalars["Float"];
11914
12272
  /** Whether the operation was successful. */
11915
12273
  success: Scalars["Boolean"];
11916
12274
  /** The flag value after update. */
11917
- value: Scalars["Int"];
12275
+ value?: Maybe<Scalars["Int"]>;
11918
12276
  };
11919
12277
  export declare type UserSettingsFlagsResetPayload = {
11920
12278
  __typename?: "UserSettingsFlagsResetPayload";
@@ -12068,12 +12426,11 @@ export declare enum ViewType {
12068
12426
  CustomRoadmap = "customRoadmap",
12069
12427
  CustomView = "customView",
12070
12428
  CustomViews = "customViews",
12071
- CustomViewsPersonal = "customViewsPersonal",
12072
12429
  Cycle = "cycle",
12073
12430
  Inbox = "inbox",
12074
12431
  Initiative = "initiative",
12432
+ InitiativeOverview = "initiativeOverview",
12075
12433
  Initiatives = "initiatives",
12076
- InitiativesAll = "initiativesAll",
12077
12434
  InitiativesCompleted = "initiativesCompleted",
12078
12435
  InitiativesPlanned = "initiativesPlanned",
12079
12436
  IssueIdentifiers = "issueIdentifiers",
@@ -12240,7 +12597,7 @@ export declare type WorkflowDefinition = Node & {
12240
12597
  /** The time at which the entity was archived. Null if the entity has not been archived. */
12241
12598
  archivedAt?: Maybe<Scalars["DateTime"]>;
12242
12599
  /** The conditions that need to be match for the workflow to be triggered. */
12243
- conditions: Scalars["JSONObject"];
12600
+ conditions?: Maybe<Scalars["JSONObject"]>;
12244
12601
  /** The type of view to which this workflow's context is associated with. */
12245
12602
  contextViewType?: Maybe<ContextViewType>;
12246
12603
  /** The time at which the entity was created. */
@@ -12547,6 +12904,9 @@ export declare type ActorBotFragment = {
12547
12904
  export declare type CommentFragment = {
12548
12905
  __typename: "Comment";
12549
12906
  } & Pick<Comment, "url" | "reactionData" | "body" | "updatedAt" | "quotedText" | "archivedAt" | "createdAt" | "resolvedAt" | "editedAt" | "id"> & {
12907
+ reactions: Array<{
12908
+ __typename?: "Reaction";
12909
+ } & ReactionFragment>;
12550
12910
  botActor?: Maybe<{
12551
12911
  __typename?: "ActorBot";
12552
12912
  } & ActorBotFragment>;
@@ -12712,7 +13072,7 @@ export declare type DocumentNotificationFragment = {
12712
13072
  };
12713
13073
  export declare type DocumentFragment = {
12714
13074
  __typename: "Document";
12715
- } & 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"> & {
12716
13076
  lastAppliedTemplate?: Maybe<{
12717
13077
  __typename?: "Template";
12718
13078
  } & Pick<Template, "id">>;
@@ -12728,7 +13088,39 @@ export declare type DocumentFragment = {
12728
13088
  };
12729
13089
  export declare type FacetFragment = {
12730
13090
  __typename: "Facet";
12731
- } & Pick<Facet, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id">;
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
+ };
12732
13124
  export declare type AttachmentArchivePayloadFragment = {
12733
13125
  __typename: "AttachmentArchivePayload";
12734
13126
  } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
@@ -12743,6 +13135,13 @@ export declare type CycleArchivePayloadFragment = {
12743
13135
  __typename?: "Cycle";
12744
13136
  } & Pick<Cycle, "id">>;
12745
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
+ };
12746
13145
  export declare type InitiativeArchivePayloadFragment = {
12747
13146
  __typename: "InitiativeArchivePayload";
12748
13147
  } & Pick<InitiativeArchivePayload, "lastSyncId" | "success">;
@@ -12805,6 +13204,9 @@ declare type ArchivePayload_CycleArchivePayload_Fragment = {
12805
13204
  declare type ArchivePayload_DeletePayload_Fragment = {
12806
13205
  __typename: "DeletePayload";
12807
13206
  } & Pick<DeletePayload, "lastSyncId" | "success"> & DeletePayloadFragment;
13207
+ declare type ArchivePayload_DocumentArchivePayload_Fragment = {
13208
+ __typename: "DocumentArchivePayload";
13209
+ } & Pick<DocumentArchivePayload, "lastSyncId" | "success"> & DocumentArchivePayloadFragment;
12808
13210
  declare type ArchivePayload_InitiativeArchivePayload_Fragment = {
12809
13211
  __typename: "InitiativeArchivePayload";
12810
13212
  } & Pick<InitiativeArchivePayload, "lastSyncId" | "success"> & InitiativeArchivePayloadFragment;
@@ -12826,7 +13228,7 @@ declare type ArchivePayload_TeamArchivePayload_Fragment = {
12826
13228
  declare type ArchivePayload_WorkflowStateArchivePayload_Fragment = {
12827
13229
  __typename: "WorkflowStateArchivePayload";
12828
13230
  } & Pick<WorkflowStateArchivePayload, "lastSyncId" | "success"> & WorkflowStateArchivePayloadFragment;
12829
- export declare type ArchivePayloadFragment = ArchivePayload_AttachmentArchivePayload_Fragment | ArchivePayload_CycleArchivePayload_Fragment | ArchivePayload_DeletePayload_Fragment | ArchivePayload_InitiativeArchivePayload_Fragment | ArchivePayload_IssueArchivePayload_Fragment | ArchivePayload_NotificationArchivePayload_Fragment | ArchivePayload_ProjectArchivePayload_Fragment | ArchivePayload_RoadmapArchivePayload_Fragment | ArchivePayload_TeamArchivePayload_Fragment | ArchivePayload_WorkflowStateArchivePayload_Fragment;
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;
12830
13232
  export declare type DeletePayloadFragment = {
12831
13233
  __typename: "DeletePayload";
12832
13234
  } & Pick<DeletePayload, "entityId" | "lastSyncId" | "success">;
@@ -13040,12 +13442,21 @@ export declare type IssueHistoryFragment = {
13040
13442
  relationChanges?: Maybe<Array<{
13041
13443
  __typename?: "IssueRelationHistoryPayload";
13042
13444
  } & IssueRelationHistoryPayloadFragment>>;
13445
+ actor?: Maybe<{
13446
+ __typename?: "User";
13447
+ } & Pick<User, "id">>;
13043
13448
  actors: Array<{
13044
13449
  __typename?: "User";
13045
13450
  } & UserFragment>;
13046
13451
  botActor?: Maybe<{
13047
13452
  __typename?: "ActorBot";
13048
13453
  } & ActorBotFragment>;
13454
+ fromCycle?: Maybe<{
13455
+ __typename?: "Cycle";
13456
+ } & Pick<Cycle, "id">>;
13457
+ toCycle?: Maybe<{
13458
+ __typename?: "Cycle";
13459
+ } & Pick<Cycle, "id">>;
13049
13460
  issueImport?: Maybe<{
13050
13461
  __typename?: "IssueImport";
13051
13462
  } & IssueImportFragment>;
@@ -13061,46 +13472,37 @@ export declare type IssueHistoryFragment = {
13061
13472
  attachment?: Maybe<{
13062
13473
  __typename?: "Attachment";
13063
13474
  } & Pick<Attachment, "id">>;
13064
- toCycle?: Maybe<{
13065
- __typename?: "Cycle";
13066
- } & Pick<Cycle, "id">>;
13067
- toParent?: Maybe<{
13068
- __typename?: "Issue";
13069
- } & Pick<Issue, "id">>;
13070
13475
  toConvertedProject?: Maybe<{
13071
13476
  __typename?: "Project";
13072
13477
  } & Pick<Project, "id">>;
13073
- toProject?: Maybe<{
13074
- __typename?: "Project";
13075
- } & Pick<Project, "id">>;
13076
- toState?: Maybe<{
13077
- __typename?: "WorkflowState";
13078
- } & Pick<WorkflowState, "id">>;
13079
- fromCycle?: Maybe<{
13080
- __typename?: "Cycle";
13081
- } & Pick<Cycle, "id">>;
13082
13478
  fromParent?: Maybe<{
13083
13479
  __typename?: "Issue";
13084
13480
  } & Pick<Issue, "id">>;
13481
+ toParent?: Maybe<{
13482
+ __typename?: "Issue";
13483
+ } & Pick<Issue, "id">>;
13085
13484
  fromProject?: Maybe<{
13086
13485
  __typename?: "Project";
13087
13486
  } & Pick<Project, "id">>;
13487
+ toProject?: Maybe<{
13488
+ __typename?: "Project";
13489
+ } & Pick<Project, "id">>;
13088
13490
  fromState?: Maybe<{
13089
13491
  __typename?: "WorkflowState";
13090
13492
  } & Pick<WorkflowState, "id">>;
13493
+ toState?: Maybe<{
13494
+ __typename?: "WorkflowState";
13495
+ } & Pick<WorkflowState, "id">>;
13091
13496
  fromTeam?: Maybe<{
13092
13497
  __typename?: "Team";
13093
13498
  } & Pick<Team, "id">>;
13094
13499
  toTeam?: Maybe<{
13095
13500
  __typename?: "Team";
13096
13501
  } & Pick<Team, "id">>;
13097
- fromAssignee?: Maybe<{
13098
- __typename?: "User";
13099
- } & Pick<User, "id">>;
13100
13502
  toAssignee?: Maybe<{
13101
13503
  __typename?: "User";
13102
13504
  } & Pick<User, "id">>;
13103
- actor?: Maybe<{
13505
+ fromAssignee?: Maybe<{
13104
13506
  __typename?: "User";
13105
13507
  } & Pick<User, "id">>;
13106
13508
  triageResponsibilityNotifiedUsers?: Maybe<Array<{
@@ -13159,6 +13561,13 @@ export declare type RoadmapFragment = {
13159
13561
  __typename?: "User";
13160
13562
  } & Pick<User, "id">;
13161
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
+ };
13162
13571
  export declare type CycleFragment = {
13163
13572
  __typename: "Cycle";
13164
13573
  } & Pick<Cycle, "completedAt" | "name" | "description" | "endsAt" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "number" | "progress" | "startsAt" | "autoArchivedAt" | "archivedAt" | "createdAt" | "scopeHistory" | "issueCountHistory" | "id"> & {
@@ -13252,9 +13661,9 @@ export declare type TimeScheduleFragment = {
13252
13661
  integration?: Maybe<{
13253
13662
  __typename?: "Integration";
13254
13663
  } & Pick<Integration, "id">>;
13255
- entries: Array<{
13664
+ entries?: Maybe<Array<{
13256
13665
  __typename?: "TimeScheduleEntry";
13257
- } & TimeScheduleEntryFragment>;
13666
+ } & TimeScheduleEntryFragment>>;
13258
13667
  };
13259
13668
  export declare type GitAutomationStateFragment = {
13260
13669
  __typename: "GitAutomationState";
@@ -13272,6 +13681,9 @@ export declare type GitAutomationStateFragment = {
13272
13681
  export declare type ProjectUpdateFragment = {
13273
13682
  __typename: "ProjectUpdate";
13274
13683
  } & Pick<ProjectUpdate, "reactionData" | "url" | "diffMarkdown" | "diff" | "health" | "updatedAt" | "archivedAt" | "createdAt" | "editedAt" | "id" | "body" | "isDiffHidden"> & {
13684
+ reactions: Array<{
13685
+ __typename?: "Reaction";
13686
+ } & ReactionFragment>;
13275
13687
  project: {
13276
13688
  __typename?: "Project";
13277
13689
  } & Pick<Project, "id">;
@@ -13327,9 +13739,9 @@ export declare type NotificationDeliveryPreferencesFragment = {
13327
13739
  export declare type NotificationDeliveryPreferencesChannelFragment = {
13328
13740
  __typename: "NotificationDeliveryPreferencesChannel";
13329
13741
  } & Pick<NotificationDeliveryPreferencesChannel, "notificationsDisabled"> & {
13330
- schedule: {
13742
+ schedule?: Maybe<{
13331
13743
  __typename?: "NotificationDeliveryPreferencesSchedule";
13332
- } & NotificationDeliveryPreferencesScheduleFragment;
13744
+ } & NotificationDeliveryPreferencesScheduleFragment>;
13333
13745
  };
13334
13746
  export declare type NotificationDeliveryPreferencesDayFragment = {
13335
13747
  __typename: "NotificationDeliveryPreferencesDay";
@@ -13500,7 +13912,10 @@ export declare type IssueNotificationFragment = {
13500
13912
  };
13501
13913
  export declare type IssueFragment = {
13502
13914
  __typename: "Issue";
13503
- } & Pick<Issue, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
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>;
13504
13919
  botActor?: Maybe<{
13505
13920
  __typename?: "ActorBot";
13506
13921
  } & ActorBotFragment>;
@@ -13566,6 +13981,9 @@ export declare type OauthClientApprovalNotificationFragment = {
13566
13981
  export declare type OrganizationFragment = {
13567
13982
  __typename: "Organization";
13568
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>>;
13569
13987
  projectStatuses: Array<{
13570
13988
  __typename?: "ProjectStatus";
13571
13989
  } & ProjectStatusFragment>;
@@ -13735,6 +14153,9 @@ export declare type IssueLabelFragment = {
13735
14153
  __typename?: "User";
13736
14154
  } & Pick<User, "id">>;
13737
14155
  };
14156
+ export declare type LaunchDarklySettingsFragment = {
14157
+ __typename: "LaunchDarklySettings";
14158
+ } & Pick<LaunchDarklySettings, "environment" | "projectKey">;
13738
14159
  export declare type TeamRepoMappingFragment = {
13739
14160
  __typename: "TeamRepoMapping";
13740
14161
  } & Pick<TeamRepoMapping, "gitHubRepoId" | "linearTeamId" | "bidirectional" | "default">;
@@ -13978,7 +14399,7 @@ export declare type SlackPostSettingsFragment = {
13978
14399
  } & Pick<SlackPostSettings, "channel" | "channelId" | "channelType" | "configurationUrl">;
13979
14400
  export declare type IntegrationsSettingsFragment = {
13980
14401
  __typename: "IntegrationsSettings";
13981
- } & 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"> & {
13982
14403
  project?: Maybe<{
13983
14404
  __typename?: "Project";
13984
14405
  } & Pick<Project, "id">>;
@@ -14016,6 +14437,9 @@ export declare type IntegrationSettingsFragment = {
14016
14437
  jiraPersonal?: Maybe<{
14017
14438
  __typename?: "JiraPersonalSettings";
14018
14439
  } & JiraPersonalSettingsFragment>;
14440
+ launchDarkly?: Maybe<{
14441
+ __typename?: "LaunchDarklySettings";
14442
+ } & LaunchDarklySettingsFragment>;
14019
14443
  notion?: Maybe<{
14020
14444
  __typename?: "NotionSettings";
14021
14445
  } & NotionSettingsFragment>;
@@ -14222,6 +14646,9 @@ export declare type AuthOauthClientWithTokensFragment = {
14222
14646
  __typename?: "OauthToken";
14223
14647
  } & OauthTokenFragment>;
14224
14648
  };
14649
+ export declare type AuthOrganizationBucketNamePayloadFragment = {
14650
+ __typename: "AuthOrganizationBucketNamePayload";
14651
+ } & Pick<AuthOrganizationBucketNamePayload, "importsBucketName" | "uploadsBucketName">;
14225
14652
  export declare type AuthOrganizationDomainFragment = {
14226
14653
  __typename: "AuthOrganizationDomain";
14227
14654
  } & Pick<AuthOrganizationDomain, "disableOrganizationCreation" | "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
@@ -14370,9 +14797,9 @@ export declare type DocumentConnectionFragment = {
14370
14797
  export declare type DocumentContentHistoryPayloadFragment = {
14371
14798
  __typename: "DocumentContentHistoryPayload";
14372
14799
  } & Pick<DocumentContentHistoryPayload, "success"> & {
14373
- history?: Maybe<Array<{
14800
+ history: Array<{
14374
14801
  __typename?: "DocumentContentHistoryType";
14375
- } & DocumentContentHistoryTypeFragment>>;
14802
+ } & DocumentContentHistoryTypeFragment>;
14376
14803
  };
14377
14804
  export declare type DocumentContentHistoryTypeFragment = {
14378
14805
  __typename: "DocumentContentHistoryType";
@@ -14399,7 +14826,7 @@ export declare type DocumentSearchPayloadFragment = {
14399
14826
  };
14400
14827
  export declare type DocumentSearchResultFragment = {
14401
14828
  __typename: "DocumentSearchResult";
14402
- } & 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"> & {
14403
14830
  lastAppliedTemplate?: Maybe<{
14404
14831
  __typename?: "Template";
14405
14832
  } & Pick<Template, "id">>;
@@ -14507,6 +14934,26 @@ export declare type FavoritePayloadFragment = {
14507
14934
  __typename?: "Favorite";
14508
14935
  } & Pick<Favorite, "id">;
14509
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
+ };
14510
14957
  export declare type FrontAttachmentPayloadFragment = {
14511
14958
  __typename: "FrontAttachmentPayload";
14512
14959
  } & Pick<FrontAttachmentPayload, "lastSyncId" | "success">;
@@ -14707,7 +15154,10 @@ export declare type IssueSearchPayloadFragment = {
14707
15154
  };
14708
15155
  export declare type IssueSearchResultFragment = {
14709
15156
  __typename: "IssueSearchResult";
14710
- } & Pick<IssueSearchResult, "trashed" | "labelIds" | "integrationSourceType" | "url" | "identifier" | "priorityLabel" | "metadata" | "previousIdentifiers" | "customerTicketCount" | "branchName" | "dueDate" | "estimate" | "description" | "title" | "number" | "updatedAt" | "boardOrder" | "sortOrder" | "subIssueSortOrder" | "priority" | "archivedAt" | "createdAt" | "startedTriageAt" | "triagedAt" | "autoArchivedAt" | "autoClosedAt" | "canceledAt" | "completedAt" | "startedAt" | "slaStartedAt" | "slaBreachesAt" | "snoozedUntilAt" | "id"> & {
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>;
14711
15161
  botActor?: Maybe<{
14712
15162
  __typename?: "ActorBot";
14713
15163
  } & ActorBotFragment>;
@@ -14827,6 +15277,12 @@ declare type Node_Facet_Fragment = {
14827
15277
  declare type Node_Favorite_Fragment = {
14828
15278
  __typename: "Favorite";
14829
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">;
14830
15286
  declare type Node_GitAutomationState_Fragment = {
14831
15287
  __typename: "GitAutomationState";
14832
15288
  } & Pick<GitAutomationState, "id">;
@@ -14989,7 +15445,7 @@ declare type Node_WorkflowDefinition_Fragment = {
14989
15445
  declare type Node_WorkflowState_Fragment = {
14990
15446
  __typename: "WorkflowState";
14991
15447
  } & Pick<WorkflowState, "id">;
14992
- export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeNotification_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TextDraft_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
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;
14993
15449
  export declare type NotificationBatchActionPayloadFragment = {
14994
15450
  __typename: "NotificationBatchActionPayload";
14995
15451
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
@@ -15130,6 +15586,9 @@ export declare type OrganizationInvitePayloadFragment = {
15130
15586
  __typename?: "OrganizationInvite";
15131
15587
  } & Pick<OrganizationInvite, "id">;
15132
15588
  };
15589
+ export declare type OrganizationIpRestrictionFragment = {
15590
+ __typename: "OrganizationIpRestriction";
15591
+ } & Pick<OrganizationIpRestriction, "range" | "description" | "type" | "enabled">;
15133
15592
  export declare type OrganizationMetaFragment = {
15134
15593
  __typename: "OrganizationMeta";
15135
15594
  } & Pick<OrganizationMeta, "allowedAuthServices" | "region">;
@@ -15158,9 +15617,6 @@ export declare type ProjectConnectionFragment = {
15158
15617
  __typename?: "PageInfo";
15159
15618
  } & PageInfoFragment;
15160
15619
  };
15161
- export declare type ProjectDetailSuggestionPayloadFragment = {
15162
- __typename: "ProjectDetailSuggestionPayload";
15163
- } & Pick<ProjectDetailSuggestionPayload, "color" | "icon">;
15164
15620
  export declare type ProjectFilterSuggestionPayloadFragment = {
15165
15621
  __typename: "ProjectFilterSuggestionPayload";
15166
15622
  } & Pick<ProjectFilterSuggestionPayload, "filter">;
@@ -18405,9 +18861,9 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18405
18861
  mobile?: Maybe<{
18406
18862
  __typename?: "NotificationDeliveryPreferencesChannel";
18407
18863
  } & {
18408
- schedule: {
18864
+ schedule?: Maybe<{
18409
18865
  __typename?: "NotificationDeliveryPreferencesSchedule";
18410
- } & NotificationDeliveryPreferencesScheduleFragment;
18866
+ } & NotificationDeliveryPreferencesScheduleFragment>;
18411
18867
  }>;
18412
18868
  };
18413
18869
  };
@@ -18427,13 +18883,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18427
18883
  mobile?: Maybe<{
18428
18884
  __typename?: "NotificationDeliveryPreferencesChannel";
18429
18885
  } & {
18430
- schedule: {
18886
+ schedule?: Maybe<{
18431
18887
  __typename?: "NotificationDeliveryPreferencesSchedule";
18432
18888
  } & {
18433
18889
  friday: {
18434
18890
  __typename?: "NotificationDeliveryPreferencesDay";
18435
18891
  } & NotificationDeliveryPreferencesDayFragment;
18436
- };
18892
+ }>;
18437
18893
  }>;
18438
18894
  };
18439
18895
  };
@@ -18453,13 +18909,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18453
18909
  mobile?: Maybe<{
18454
18910
  __typename?: "NotificationDeliveryPreferencesChannel";
18455
18911
  } & {
18456
- schedule: {
18912
+ schedule?: Maybe<{
18457
18913
  __typename?: "NotificationDeliveryPreferencesSchedule";
18458
18914
  } & {
18459
18915
  monday: {
18460
18916
  __typename?: "NotificationDeliveryPreferencesDay";
18461
18917
  } & NotificationDeliveryPreferencesDayFragment;
18462
- };
18918
+ }>;
18463
18919
  }>;
18464
18920
  };
18465
18921
  };
@@ -18479,13 +18935,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18479
18935
  mobile?: Maybe<{
18480
18936
  __typename?: "NotificationDeliveryPreferencesChannel";
18481
18937
  } & {
18482
- schedule: {
18938
+ schedule?: Maybe<{
18483
18939
  __typename?: "NotificationDeliveryPreferencesSchedule";
18484
18940
  } & {
18485
18941
  saturday: {
18486
18942
  __typename?: "NotificationDeliveryPreferencesDay";
18487
18943
  } & NotificationDeliveryPreferencesDayFragment;
18488
- };
18944
+ }>;
18489
18945
  }>;
18490
18946
  };
18491
18947
  };
@@ -18505,13 +18961,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18505
18961
  mobile?: Maybe<{
18506
18962
  __typename?: "NotificationDeliveryPreferencesChannel";
18507
18963
  } & {
18508
- schedule: {
18964
+ schedule?: Maybe<{
18509
18965
  __typename?: "NotificationDeliveryPreferencesSchedule";
18510
18966
  } & {
18511
18967
  sunday: {
18512
18968
  __typename?: "NotificationDeliveryPreferencesDay";
18513
18969
  } & NotificationDeliveryPreferencesDayFragment;
18514
- };
18970
+ }>;
18515
18971
  }>;
18516
18972
  };
18517
18973
  };
@@ -18531,13 +18987,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18531
18987
  mobile?: Maybe<{
18532
18988
  __typename?: "NotificationDeliveryPreferencesChannel";
18533
18989
  } & {
18534
- schedule: {
18990
+ schedule?: Maybe<{
18535
18991
  __typename?: "NotificationDeliveryPreferencesSchedule";
18536
18992
  } & {
18537
18993
  thursday: {
18538
18994
  __typename?: "NotificationDeliveryPreferencesDay";
18539
18995
  } & NotificationDeliveryPreferencesDayFragment;
18540
- };
18996
+ }>;
18541
18997
  }>;
18542
18998
  };
18543
18999
  };
@@ -18557,13 +19013,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18557
19013
  mobile?: Maybe<{
18558
19014
  __typename?: "NotificationDeliveryPreferencesChannel";
18559
19015
  } & {
18560
- schedule: {
19016
+ schedule?: Maybe<{
18561
19017
  __typename?: "NotificationDeliveryPreferencesSchedule";
18562
19018
  } & {
18563
19019
  tuesday: {
18564
19020
  __typename?: "NotificationDeliveryPreferencesDay";
18565
19021
  } & NotificationDeliveryPreferencesDayFragment;
18566
- };
19022
+ }>;
18567
19023
  }>;
18568
19024
  };
18569
19025
  };
@@ -18583,13 +19039,13 @@ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule
18583
19039
  mobile?: Maybe<{
18584
19040
  __typename?: "NotificationDeliveryPreferencesChannel";
18585
19041
  } & {
18586
- schedule: {
19042
+ schedule?: Maybe<{
18587
19043
  __typename?: "NotificationDeliveryPreferencesSchedule";
18588
19044
  } & {
18589
19045
  wednesday: {
18590
19046
  __typename?: "NotificationDeliveryPreferencesDay";
18591
19047
  } & NotificationDeliveryPreferencesDayFragment;
18592
- };
19048
+ }>;
18593
19049
  }>;
18594
19050
  };
18595
19051
  };
@@ -19204,8 +19660,18 @@ export declare type DeleteDocumentMutation = {
19204
19660
  __typename?: "Mutation";
19205
19661
  } & {
19206
19662
  documentDelete: {
19207
- __typename?: "DeletePayload";
19208
- } & DeletePayloadFragment;
19663
+ __typename?: "DocumentArchivePayload";
19664
+ } & DocumentArchivePayloadFragment;
19665
+ };
19666
+ export declare type UnarchiveDocumentMutationVariables = Exact<{
19667
+ id: Scalars["String"];
19668
+ }>;
19669
+ export declare type UnarchiveDocumentMutation = {
19670
+ __typename?: "Mutation";
19671
+ } & {
19672
+ documentUnarchive: {
19673
+ __typename?: "DocumentArchivePayload";
19674
+ } & DocumentArchivePayloadFragment;
19209
19675
  };
19210
19676
  export declare type UpdateDocumentMutationVariables = Exact<{
19211
19677
  id: Scalars["String"];
@@ -21007,16 +21473,6 @@ export declare type UserPromoteMemberMutation = {
21007
21473
  __typename?: "UserAdminPayload";
21008
21474
  } & UserAdminPayloadFragment;
21009
21475
  };
21010
- export declare type UserSettingsFlagIncrementMutationVariables = Exact<{
21011
- flag: Scalars["String"];
21012
- }>;
21013
- export declare type UserSettingsFlagIncrementMutation = {
21014
- __typename?: "Mutation";
21015
- } & {
21016
- userSettingsFlagIncrement: {
21017
- __typename?: "UserSettingsFlagPayload";
21018
- } & UserSettingsFlagPayloadFragment;
21019
- };
21020
21476
  export declare type UserSettingsFlagsResetMutationVariables = Exact<{
21021
21477
  flags?: Maybe<Array<UserFlagType> | UserFlagType>;
21022
21478
  }>;
@@ -21170,6 +21626,7 @@ export declare const DocumentContentHistoryFragmentDoc: DocumentNode<DocumentCon
21170
21626
  export declare const AttachmentArchivePayloadFragmentDoc: DocumentNode<AttachmentArchivePayloadFragment, unknown>;
21171
21627
  export declare const CycleArchivePayloadFragmentDoc: DocumentNode<CycleArchivePayloadFragment, unknown>;
21172
21628
  export declare const DeletePayloadFragmentDoc: DocumentNode<DeletePayloadFragment, unknown>;
21629
+ export declare const DocumentArchivePayloadFragmentDoc: DocumentNode<DocumentArchivePayloadFragment, unknown>;
21173
21630
  export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<InitiativeArchivePayloadFragment, unknown>;
21174
21631
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
21175
21632
  export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
@@ -21198,6 +21655,7 @@ export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationF
21198
21655
  export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
21199
21656
  export declare const AuthEmailIntakeAddressFragmentDoc: DocumentNode<AuthEmailIntakeAddressFragment, unknown>;
21200
21657
  export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
21658
+ export declare const OrganizationIpRestrictionFragmentDoc: DocumentNode<OrganizationIpRestrictionFragment, unknown>;
21201
21659
  export declare const ProjectStatusFragmentDoc: DocumentNode<ProjectStatusFragment, unknown>;
21202
21660
  export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
21203
21661
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
@@ -21222,6 +21680,7 @@ export declare const JiraProjectDataFragmentDoc: DocumentNode<JiraProjectDataFra
21222
21680
  export declare const JiraLinearMappingFragmentDoc: DocumentNode<JiraLinearMappingFragment, unknown>;
21223
21681
  export declare const JiraSettingsFragmentDoc: DocumentNode<JiraSettingsFragment, unknown>;
21224
21682
  export declare const JiraPersonalSettingsFragmentDoc: DocumentNode<JiraPersonalSettingsFragment, unknown>;
21683
+ export declare const LaunchDarklySettingsFragmentDoc: DocumentNode<LaunchDarklySettingsFragment, unknown>;
21225
21684
  export declare const NotionSettingsFragmentDoc: DocumentNode<NotionSettingsFragment, unknown>;
21226
21685
  export declare const OpsgenieSettingsFragmentDoc: DocumentNode<OpsgenieSettingsFragment, unknown>;
21227
21686
  export declare const PagerDutySettingsFragmentDoc: DocumentNode<PagerDutySettingsFragment, unknown>;
@@ -21258,12 +21717,14 @@ export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFra
21258
21717
  export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
21259
21718
  export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
21260
21719
  export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
21720
+ export declare const AuthOrganizationBucketNamePayloadFragmentDoc: DocumentNode<AuthOrganizationBucketNamePayloadFragment, unknown>;
21261
21721
  export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
21262
21722
  export declare const AuthOrganizationExistsPayloadFragmentDoc: DocumentNode<AuthOrganizationExistsPayloadFragment, unknown>;
21263
21723
  export declare const AuthOrganizationPayloadFragmentDoc: DocumentNode<AuthOrganizationPayloadFragment, unknown>;
21264
21724
  export declare const AuthResolverResponseFragmentDoc: DocumentNode<AuthResolverResponseFragment, unknown>;
21265
21725
  export declare const AuthSuccessPayloadFragmentDoc: DocumentNode<AuthSuccessPayloadFragment, unknown>;
21266
21726
  export declare const AuthorizedApplicationBaseFragmentDoc: DocumentNode<AuthorizedApplicationBaseFragment, unknown>;
21727
+ export declare const ReactionFragmentDoc: DocumentNode<ReactionFragment, unknown>;
21267
21728
  export declare const CommentFragmentDoc: DocumentNode<CommentFragment, unknown>;
21268
21729
  export declare const CommentConnectionFragmentDoc: DocumentNode<CommentConnectionFragment, unknown>;
21269
21730
  export declare const CommentPayloadFragmentDoc: DocumentNode<CommentPayloadFragment, unknown>;
@@ -21311,6 +21772,10 @@ export declare const FacetConnectionFragmentDoc: DocumentNode<FacetConnectionFra
21311
21772
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
21312
21773
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
21313
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>;
21314
21779
  export declare const FrontAttachmentPayloadFragmentDoc: DocumentNode<FrontAttachmentPayloadFragment, unknown>;
21315
21780
  export declare const GitAutomationTargetBranchFragmentDoc: DocumentNode<GitAutomationTargetBranchFragment, unknown>;
21316
21781
  export declare const GitAutomationStateFragmentDoc: DocumentNode<GitAutomationStateFragment, unknown>;
@@ -21378,7 +21843,6 @@ export declare const OrganizationStartTrialPayloadFragmentDoc: DocumentNode<Orga
21378
21843
  export declare const PasskeyLoginStartResponseFragmentDoc: DocumentNode<PasskeyLoginStartResponseFragment, unknown>;
21379
21844
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
21380
21845
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
21381
- export declare const ProjectDetailSuggestionPayloadFragmentDoc: DocumentNode<ProjectDetailSuggestionPayloadFragment, unknown>;
21382
21846
  export declare const ProjectFilterSuggestionPayloadFragmentDoc: DocumentNode<ProjectFilterSuggestionPayloadFragment, unknown>;
21383
21847
  export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
21384
21848
  export declare const ProjectLinkConnectionFragmentDoc: DocumentNode<ProjectLinkConnectionFragment, unknown>;
@@ -21408,7 +21872,6 @@ export declare const PushSubscriptionPayloadFragmentDoc: DocumentNode<PushSubscr
21408
21872
  export declare const PushSubscriptionTestPayloadFragmentDoc: DocumentNode<PushSubscriptionTestPayloadFragment, unknown>;
21409
21873
  export declare const RateLimitResultPayloadFragmentDoc: DocumentNode<RateLimitResultPayloadFragment, unknown>;
21410
21874
  export declare const RateLimitPayloadFragmentDoc: DocumentNode<RateLimitPayloadFragment, unknown>;
21411
- export declare const ReactionFragmentDoc: DocumentNode<ReactionFragment, unknown>;
21412
21875
  export declare const ReactionConnectionFragmentDoc: DocumentNode<ReactionConnectionFragment, unknown>;
21413
21876
  export declare const ReactionPayloadFragmentDoc: DocumentNode<ReactionPayloadFragment, unknown>;
21414
21877
  export declare const RoadmapFragmentDoc: DocumentNode<RoadmapFragment, unknown>;
@@ -22924,6 +23387,9 @@ export declare const CreateDocumentDocument: DocumentNode<CreateDocumentMutation
22924
23387
  export declare const DeleteDocumentDocument: DocumentNode<DeleteDocumentMutation, Exact<{
22925
23388
  id: Scalars["String"];
22926
23389
  }>>;
23390
+ export declare const UnarchiveDocumentDocument: DocumentNode<UnarchiveDocumentMutation, Exact<{
23391
+ id: Scalars["String"];
23392
+ }>>;
22927
23393
  export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation, Exact<{
22928
23394
  id: Scalars["String"];
22929
23395
  input: DocumentUpdateInput;
@@ -23548,9 +24014,6 @@ export declare const UserPromoteAdminDocument: DocumentNode<UserPromoteAdminMuta
23548
24014
  export declare const UserPromoteMemberDocument: DocumentNode<UserPromoteMemberMutation, Exact<{
23549
24015
  id: Scalars["String"];
23550
24016
  }>>;
23551
- export declare const UserSettingsFlagIncrementDocument: DocumentNode<UserSettingsFlagIncrementMutation, Exact<{
23552
- flag: Scalars["String"];
23553
- }>>;
23554
24017
  export declare const UserSettingsFlagsResetDocument: DocumentNode<UserSettingsFlagsResetMutation, Exact<{
23555
24018
  flags?: Maybe<UserFlagType | UserFlagType[]> | undefined;
23556
24019
  }>>;