@linear/sdk 21.1.0 → 22.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -455,6 +455,10 @@ export declare type AuthOauthClient = {
455
455
  publicEnabled: Scalars["Boolean"];
456
456
  /** List of allowed redirect URIs for the application. */
457
457
  redirectUris: Array<Scalars["String"]>;
458
+ /** The resource types to request when creating new webhooks. */
459
+ webhookResourceTypes: Array<Scalars["String"]>;
460
+ /** Webhook secret */
461
+ webhookSecret?: Maybe<Scalars["String"]>;
458
462
  /** Webhook URL */
459
463
  webhookUrl?: Maybe<Scalars["String"]>;
460
464
  };
@@ -508,6 +512,8 @@ export declare type AuthOrganization = {
508
512
  allowedAuthServices: Array<Scalars["String"]>;
509
513
  /** The time at which deletion of the organization was requested. */
510
514
  deletionRequestedAt?: Maybe<Scalars["DateTime"]>;
515
+ /** Whether the organization is enabled. Used as a superuser tool to lock down the org. */
516
+ enabled: Scalars["Boolean"];
511
517
  /** The unique identifier of the entity. */
512
518
  id: Scalars["ID"];
513
519
  /** The organization's logo URL. */
@@ -536,6 +542,8 @@ export declare type AuthOrganizationDomain = {
536
542
  __typename?: "AuthOrganizationDomain";
537
543
  authType: OrganizationDomainAuthType;
538
544
  claimed?: Maybe<Scalars["Boolean"]>;
545
+ /** Prevent users with this domain to create new workspaces. */
546
+ disableOrganizationCreation?: Maybe<Scalars["Boolean"]>;
539
547
  /** The unique identifier of the entity. */
540
548
  id: Scalars["ID"];
541
549
  name: Scalars["String"];
@@ -584,6 +592,8 @@ export declare type AuthResolverResponse = {
584
592
  lastUsedOrganizationId?: Maybe<Scalars["String"]>;
585
593
  /** List of organization available to this user account but locked due to the current auth method. */
586
594
  lockedOrganizations?: Maybe<Array<AuthOrganization>>;
595
+ /** List of locked users that are locked by login restrictions */
596
+ lockedUsers: Array<AuthUser>;
587
597
  /**
588
598
  * Application token.
589
599
  * @deprecated Deprecated and not used anymore. Never populated.
@@ -613,6 +623,8 @@ export declare type AuthUser = {
613
623
  name: Scalars["String"];
614
624
  /** Organization the user belongs to. */
615
625
  organization: AuthOrganization;
626
+ /** Whether the user is an organization admin or guest on a database level. */
627
+ role: UserRoleType;
616
628
  /** User account ID the user belongs to. */
617
629
  userAccountId: Scalars["String"];
618
630
  };
@@ -1075,6 +1087,8 @@ export declare type CustomView = Node & {
1075
1087
  owner: User;
1076
1088
  /** The filter applied to projects in the custom view. */
1077
1089
  projectFilterData?: Maybe<Scalars["JSONObject"]>;
1090
+ /** Projects associated with the custom view. */
1091
+ projects: ProjectConnection;
1078
1092
  /** Whether the custom view is shared with everyone in the organization. */
1079
1093
  shared: Scalars["Boolean"];
1080
1094
  /** The team associated with the custom view. */
@@ -1103,6 +1117,16 @@ export declare type CustomViewIssuesArgs = {
1103
1117
  orderBy?: Maybe<PaginationOrderBy>;
1104
1118
  sort?: Maybe<Array<IssueSortInput>>;
1105
1119
  };
1120
+ /** A custom view that has been saved by a user. */
1121
+ export declare type CustomViewProjectsArgs = {
1122
+ after?: Maybe<Scalars["String"]>;
1123
+ before?: Maybe<Scalars["String"]>;
1124
+ filter?: Maybe<ProjectFilter>;
1125
+ first?: Maybe<Scalars["Int"]>;
1126
+ includeArchived?: Maybe<Scalars["Boolean"]>;
1127
+ last?: Maybe<Scalars["Int"]>;
1128
+ orderBy?: Maybe<PaginationOrderBy>;
1129
+ };
1106
1130
  export declare type CustomViewConnection = {
1107
1131
  __typename?: "CustomViewConnection";
1108
1132
  edges: Array<CustomViewEdge>;
@@ -2116,9 +2140,11 @@ export declare type EntityExternalLinkCreateInput = {
2116
2140
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2117
2141
  id?: Maybe<Scalars["String"]>;
2118
2142
  /** Related initiative link. */
2119
- initiativeId: Scalars["String"];
2143
+ initiativeId?: Maybe<Scalars["String"]>;
2120
2144
  /** The label for the link. */
2121
2145
  label: Scalars["String"];
2146
+ /** Related project link. */
2147
+ projectId?: Maybe<Scalars["String"]>;
2122
2148
  /** The order of the item in the entities resources list. */
2123
2149
  sortOrder?: Maybe<Scalars["Float"]>;
2124
2150
  /** The URL of the link. */
@@ -2219,7 +2245,7 @@ export declare type ExternalUserEdge = {
2219
2245
  cursor: Scalars["String"];
2220
2246
  node: ExternalUser;
2221
2247
  };
2222
- /** [ALPHA] A facet. Facets are joins between entities. A facet can tie a custom view to a project, or a a project to a roadmap for example. */
2248
+ /** A facet. Facets are joins between entities. A facet can tie a custom view to a project, or a a project to a roadmap for example. */
2223
2249
  export declare type Facet = Node & {
2224
2250
  __typename?: "Facet";
2225
2251
  /** The time at which the entity was archived. Null if the entity has not been archived. */
@@ -2561,6 +2587,28 @@ export declare type GitHubCommitIntegrationPayload = {
2561
2587
  /** The webhook secret to provide to GitHub. */
2562
2588
  webhookSecret: Scalars["String"];
2563
2589
  };
2590
+ /** Metadata and settings for a GitHub import integration. */
2591
+ export declare type GitHubImportSettings = {
2592
+ __typename?: "GitHubImportSettings";
2593
+ /** The avatar URL for the GitHub organization. */
2594
+ orgAvatarUrl: Scalars["String"];
2595
+ /** The GitHub organization's name. */
2596
+ orgLogin: Scalars["String"];
2597
+ /** The type of Github org */
2598
+ orgType: GithubOrgType;
2599
+ /** The names of the repositories connected for the GitHub integration. */
2600
+ repositories: Array<GitHubRepo>;
2601
+ };
2602
+ export declare type GitHubImportSettingsInput = {
2603
+ /** The avatar URL for the GitHub organization. */
2604
+ orgAvatarUrl: Scalars["String"];
2605
+ /** The GitHub organization's name. */
2606
+ orgLogin: Scalars["String"];
2607
+ /** The type of Github org */
2608
+ orgType: GithubOrgType;
2609
+ /** The names of the repositories connected for the GitHub integration. */
2610
+ repositories: Array<GitHubRepoInput>;
2611
+ };
2564
2612
  /** Metadata and settings for a GitHub Personal integration. */
2565
2613
  export declare type GitHubPersonalSettings = {
2566
2614
  __typename?: "GitHubPersonalSettings";
@@ -2592,6 +2640,8 @@ export declare type GitHubSettings = {
2592
2640
  orgAvatarUrl: Scalars["String"];
2593
2641
  /** The GitHub organization's name. */
2594
2642
  orgLogin: Scalars["String"];
2643
+ /** The type of Github org */
2644
+ orgType?: Maybe<GithubOrgType>;
2595
2645
  /** The names of the repositories connected for the GitHub integration. */
2596
2646
  repositories?: Maybe<Array<GitHubRepo>>;
2597
2647
  /** Mapping of team to repository for syncing. */
@@ -2602,6 +2652,8 @@ export declare type GitHubSettingsInput = {
2602
2652
  orgAvatarUrl: Scalars["String"];
2603
2653
  /** The GitHub organization's name. */
2604
2654
  orgLogin: Scalars["String"];
2655
+ /** The type of Github org */
2656
+ orgType?: Maybe<GithubOrgType>;
2605
2657
  /** The names of the repositories connected for the GitHub integration. */
2606
2658
  repositories?: Maybe<Array<GitHubRepoInput>>;
2607
2659
  /** Mapping of team to repository for syncing. */
@@ -2625,34 +2677,10 @@ export declare type GitLabSettingsInput = {
2625
2677
  /** The self-hosted URL of the GitLab instance. */
2626
2678
  url?: Maybe<Scalars["String"]>;
2627
2679
  };
2628
- /** GitHub OAuth token, plus information about the organizations the user is a member of. */
2629
- export declare type GithubOAuthTokenPayload = {
2630
- __typename?: "GithubOAuthTokenPayload";
2631
- /** A list of the GitHub organizations the user is a member of with attached repositories. */
2632
- organizations?: Maybe<Array<GithubOrg>>;
2633
- /** The OAuth token if the operation to fetch it was successful. */
2634
- token?: Maybe<Scalars["String"]>;
2635
- };
2636
- /** Relevant information for the GitHub organization. */
2637
- export declare type GithubOrg = {
2638
- __typename?: "GithubOrg";
2639
- /** GitHub organization id. */
2640
- id: Scalars["String"];
2641
- /** Whether or not this org is the user's personal repositories. */
2642
- isPersonal?: Maybe<Scalars["Boolean"]>;
2643
- /** The login for the GitHub organization. */
2644
- login: Scalars["String"];
2645
- /** Repositories that the organization owns. */
2646
- repositories: Array<GithubRepo>;
2647
- };
2648
- /** Relevant information for the GitHub repository. */
2649
- export declare type GithubRepo = {
2650
- __typename?: "GithubRepo";
2651
- /** The id of the GitHub repository. */
2652
- id: Scalars["String"];
2653
- /** The name of the GitHub repository. */
2654
- name: Scalars["String"];
2655
- };
2680
+ export declare enum GithubOrgType {
2681
+ Organization = "organization",
2682
+ User = "user"
2683
+ }
2656
2684
  /** Google Sheets specific settings. */
2657
2685
  export declare type GoogleSheetsSettings = {
2658
2686
  __typename?: "GoogleSheetsSettings";
@@ -2670,6 +2698,8 @@ export declare type GoogleSheetsSettingsInput = {
2670
2698
  export declare type GoogleUserAccountAuthInput = {
2671
2699
  /** Code returned from Google's OAuth flow. */
2672
2700
  code: Scalars["String"];
2701
+ /** An optional parameter to disable new user signup and force login. Default: false. */
2702
+ disallowSignup?: Maybe<Scalars["Boolean"]>;
2673
2703
  /** An optional invite link for an organization used to populate available organizations. */
2674
2704
  inviteLink?: Maybe<Scalars["String"]>;
2675
2705
  /** The URI to redirect the user to. */
@@ -2714,6 +2744,8 @@ export declare type Initiative = Node & {
2714
2744
  creator: User;
2715
2745
  /** [Internal] The description of the initiative. */
2716
2746
  description?: Maybe<Scalars["String"]>;
2747
+ /** The icon of the initiative. */
2748
+ icon?: Maybe<Scalars["String"]>;
2717
2749
  /** The unique identifier of the entity. */
2718
2750
  id: Scalars["ID"];
2719
2751
  /** Links associated with the initiative. */
@@ -2730,6 +2762,8 @@ export declare type Initiative = Node & {
2730
2762
  slugId: Scalars["String"];
2731
2763
  /** The sort order of the initiative within the organization. */
2732
2764
  sortOrder: Scalars["Float"];
2765
+ /** The status of the initiative. One of Planned, Active, Completed */
2766
+ status: InitiativeStatus;
2733
2767
  /** The estimated completion date of the initiative. */
2734
2768
  targetDate?: Maybe<Scalars["TimelessDate"]>;
2735
2769
  /** [INTERNAL] The resolution of the initiative's estimated completion date. */
@@ -2807,6 +2841,8 @@ export declare type InitiativeCreateInput = {
2807
2841
  color?: Maybe<Scalars["String"]>;
2808
2842
  /** [Internal] The description of the initiative. */
2809
2843
  description?: Maybe<Scalars["String"]>;
2844
+ /** The initiative's icon. */
2845
+ icon?: Maybe<Scalars["String"]>;
2810
2846
  /** The identifier in UUID v4 format. If none is provided, the backend will generate one. */
2811
2847
  id?: Maybe<Scalars["String"]>;
2812
2848
  /** The name of the initiative. */
@@ -2815,6 +2851,8 @@ export declare type InitiativeCreateInput = {
2815
2851
  ownerId?: Maybe<Scalars["String"]>;
2816
2852
  /** The sort order of the initiative within the organization. */
2817
2853
  sortOrder?: Maybe<Scalars["Float"]>;
2854
+ /** The initiative's status. */
2855
+ status?: Maybe<InitiativeStatus>;
2818
2856
  };
2819
2857
  export declare type InitiativeEdge = {
2820
2858
  __typename?: "InitiativeEdge";
@@ -2841,6 +2879,43 @@ export declare type InitiativeFilter = {
2841
2879
  /** Comparator for the updated at date. */
2842
2880
  updatedAt?: Maybe<DateComparator>;
2843
2881
  };
2882
+ /** An initiative related notification. */
2883
+ export declare type InitiativeNotification = Entity & Node & Notification & {
2884
+ __typename?: "InitiativeNotification";
2885
+ /** The user that caused the notification. */
2886
+ actor?: Maybe<User>;
2887
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
2888
+ archivedAt?: Maybe<Scalars["DateTime"]>;
2889
+ /** The bot that caused the notification. */
2890
+ botActor?: Maybe<ActorBot>;
2891
+ /** The time at which the entity was created. */
2892
+ createdAt: Scalars["DateTime"];
2893
+ /**
2894
+ * The time at when an email reminder for this notification was sent to the user. Null, if no email
2895
+ * reminder has been sent.
2896
+ */
2897
+ emailedAt?: Maybe<Scalars["DateTime"]>;
2898
+ /** The external user that caused the notification. */
2899
+ externalUserActor?: Maybe<ExternalUser>;
2900
+ /** The unique identifier of the entity. */
2901
+ id: Scalars["ID"];
2902
+ /** The time at when the user marked the notification as read. Null, if the the user hasn't read the notification */
2903
+ readAt?: Maybe<Scalars["DateTime"]>;
2904
+ /** The time until a notification will be snoozed. After that it will appear in the inbox again. */
2905
+ snoozedUntilAt?: Maybe<Scalars["DateTime"]>;
2906
+ /** Notification type. */
2907
+ type: Scalars["String"];
2908
+ /** The time at which a notification was unsnoozed.. */
2909
+ unsnoozedAt?: Maybe<Scalars["DateTime"]>;
2910
+ /**
2911
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
2912
+ * 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
2913
+ * been updated after creation.
2914
+ */
2915
+ updatedAt: Scalars["DateTime"];
2916
+ /** The user that received the notification. */
2917
+ user: User;
2918
+ };
2844
2919
  /** [Internal] The payload returned by the initiative mutations. */
2845
2920
  export declare type InitiativePayload = {
2846
2921
  __typename?: "InitiativePayload";
@@ -2851,6 +2926,11 @@ export declare type InitiativePayload = {
2851
2926
  /** Whether the operation was successful. */
2852
2927
  success: Scalars["Boolean"];
2853
2928
  };
2929
+ export declare enum InitiativeStatus {
2930
+ Active = "Active",
2931
+ Completed = "Completed",
2932
+ Planned = "Planned"
2933
+ }
2854
2934
  /** [INTERNAL] Join table between projects and initiatives. */
2855
2935
  export declare type InitiativeToProject = Node & {
2856
2936
  __typename?: "InitiativeToProject";
@@ -2917,12 +2997,16 @@ export declare type InitiativeUpdateInput = {
2917
2997
  color?: Maybe<Scalars["String"]>;
2918
2998
  /** [Internal] The description of the initiative. */
2919
2999
  description?: Maybe<Scalars["String"]>;
3000
+ /** The initiative's icon. */
3001
+ icon?: Maybe<Scalars["String"]>;
2920
3002
  /** The name of the initiative. */
2921
3003
  name?: Maybe<Scalars["String"]>;
2922
3004
  /** The owner of the initiative. */
2923
3005
  ownerId?: Maybe<Scalars["String"]>;
2924
3006
  /** The sort order of the initiative within the organization. */
2925
3007
  sortOrder?: Maybe<Scalars["Float"]>;
3008
+ /** The initiative's status. */
3009
+ status?: Maybe<InitiativeStatus>;
2926
3010
  /** The estimated completion date of the initiative. */
2927
3011
  targetDate?: Maybe<Scalars["TimelessDate"]>;
2928
3012
  };
@@ -2993,11 +3077,13 @@ export declare type IntegrationRequestPayload = {
2993
3077
  export declare enum IntegrationService {
2994
3078
  Airbyte = "airbyte",
2995
3079
  Discord = "discord",
3080
+ Email = "email",
2996
3081
  Figma = "figma",
2997
3082
  FigmaPlugin = "figmaPlugin",
2998
3083
  Front = "front",
2999
3084
  Github = "github",
3000
3085
  GithubCommit = "githubCommit",
3086
+ GithubImport = "githubImport",
3001
3087
  GithubPersonal = "githubPersonal",
3002
3088
  Gitlab = "gitlab",
3003
3089
  GoogleCalendarPersonal = "googleCalendarPersonal",
@@ -3012,6 +3098,7 @@ export declare enum IntegrationService {
3012
3098
  Sentry = "sentry",
3013
3099
  Slack = "slack",
3014
3100
  SlackAsks = "slackAsks",
3101
+ SlackCustomViewNotifications = "slackCustomViewNotifications",
3015
3102
  SlackOrgProjectUpdatesPost = "slackOrgProjectUpdatesPost",
3016
3103
  SlackPersonal = "slackPersonal",
3017
3104
  SlackPost = "slackPost",
@@ -3024,6 +3111,7 @@ export declare type IntegrationSettings = {
3024
3111
  __typename?: "IntegrationSettings";
3025
3112
  front?: Maybe<FrontSettings>;
3026
3113
  gitHub?: Maybe<GitHubSettings>;
3114
+ gitHubImport?: Maybe<GitHubImportSettings>;
3027
3115
  gitHubPersonal?: Maybe<GitHubPersonalSettings>;
3028
3116
  gitLab?: Maybe<GitLabSettings>;
3029
3117
  googleSheets?: Maybe<GoogleSheetsSettings>;
@@ -3036,6 +3124,7 @@ export declare type IntegrationSettings = {
3036
3124
  sentry?: Maybe<SentrySettings>;
3037
3125
  slack?: Maybe<SlackSettings>;
3038
3126
  slackAsks?: Maybe<SlackAsksSettings>;
3127
+ slackCustomViewNotifications?: Maybe<SlackPostSettings>;
3039
3128
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettings>;
3040
3129
  slackPost?: Maybe<SlackPostSettings>;
3041
3130
  slackProjectPost?: Maybe<SlackPostSettings>;
@@ -3044,6 +3133,7 @@ export declare type IntegrationSettings = {
3044
3133
  export declare type IntegrationSettingsInput = {
3045
3134
  front?: Maybe<FrontSettingsInput>;
3046
3135
  gitHub?: Maybe<GitHubSettingsInput>;
3136
+ gitHubImport?: Maybe<GitHubImportSettingsInput>;
3047
3137
  gitHubPersonal?: Maybe<GitHubPersonalSettingsInput>;
3048
3138
  gitLab?: Maybe<GitLabSettingsInput>;
3049
3139
  googleSheets?: Maybe<GoogleSheetsSettingsInput>;
@@ -3056,6 +3146,7 @@ export declare type IntegrationSettingsInput = {
3056
3146
  sentry?: Maybe<SentrySettingsInput>;
3057
3147
  slack?: Maybe<SlackSettingsInput>;
3058
3148
  slackAsks?: Maybe<SlackAsksSettingsInput>;
3149
+ slackCustomViewNotifications?: Maybe<SlackPostSettingsInput>;
3059
3150
  slackOrgProjectUpdatesPost?: Maybe<SlackPostSettingsInput>;
3060
3151
  slackPost?: Maybe<SlackPostSettingsInput>;
3061
3152
  slackProjectPost?: Maybe<SlackPostSettingsInput>;
@@ -3780,8 +3871,11 @@ export declare type IssueHistory = Node & {
3780
3871
  actor?: Maybe<User>;
3781
3872
  /** The id of user who made these changes. If null, possibly means that the change made by an integration. */
3782
3873
  actorId?: Maybe<Scalars["String"]>;
3874
+ /** The actors that performed the actions. This field may be empty in the case of integrations or automations. */
3875
+ actors: Array<User>;
3783
3876
  /** ID's of labels that were added. */
3784
3877
  addedLabelIds?: Maybe<Array<Scalars["String"]>>;
3878
+ /** The labels that were added to the issue. */
3785
3879
  addedLabels?: Maybe<Array<IssueLabel>>;
3786
3880
  /** Whether the issue is archived at the time of this history entry. */
3787
3881
  archived?: Maybe<Scalars["Boolean"]>;
@@ -3843,6 +3937,7 @@ export declare type IssueHistory = Node & {
3843
3937
  relationChanges?: Maybe<Array<IssueRelationHistoryPayload>>;
3844
3938
  /** ID's of labels that were removed. */
3845
3939
  removedLabelIds?: Maybe<Array<Scalars["String"]>>;
3940
+ /** The labels that were removed from the issue. */
3846
3941
  removedLabels?: Maybe<Array<IssueLabel>>;
3847
3942
  /** The user to whom the issue was assigned to. */
3848
3943
  toAssignee?: Maybe<User>;
@@ -3882,6 +3977,7 @@ export declare type IssueHistory = Node & {
3882
3977
  toTitle?: Maybe<Scalars["String"]>;
3883
3978
  /** Whether the issue was trashed or un-trashed. */
3884
3979
  trashed?: Maybe<Scalars["Boolean"]>;
3980
+ /** The users that were notified of the issue. */
3885
3981
  triageResponsibilityNotifiedUsers?: Maybe<Array<User>>;
3886
3982
  /**
3887
3983
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
@@ -3927,6 +4023,8 @@ export declare type IssueImport = Node & {
3927
4023
  progress?: Maybe<Scalars["Float"]>;
3928
4024
  /** The service from which data will be imported. */
3929
4025
  service: Scalars["String"];
4026
+ /** Metadata related to import service. */
4027
+ serviceMetadata?: Maybe<Scalars["JSONObject"]>;
3930
4028
  /** The status for the import job. */
3931
4029
  status: Scalars["String"];
3932
4030
  /** New team's name in cases when teamId not set. */
@@ -3970,6 +4068,14 @@ export declare type IssueImportPayload = {
3970
4068
  /** Whether the operation was successful. */
3971
4069
  success: Scalars["Boolean"];
3972
4070
  };
4071
+ /** Whether an issue import can be synced at the end of an import or not */
4072
+ export declare type IssueImportSyncCheckPayload = {
4073
+ __typename?: "IssueImportSyncCheckPayload";
4074
+ /** Returns true if the import can be synced, false otherwise */
4075
+ canSync: Scalars["Boolean"];
4076
+ /** An error message with a root cause of why the import cannot be synced */
4077
+ error?: Maybe<Scalars["String"]>;
4078
+ };
3973
4079
  export declare type IssueImportUpdateInput = {
3974
4080
  /** The mapping configuration for the import. */
3975
4081
  mapping: Scalars["JSONObject"];
@@ -4572,7 +4678,9 @@ export declare type JiraConfigurationInput = {
4572
4678
  email: Scalars["String"];
4573
4679
  /** The Jira installation hostname. */
4574
4680
  hostname: Scalars["String"];
4575
- /** The Jira project keys to scope the integration to. */
4681
+ /** Whether this integration will be setup using the manual webhook flow. */
4682
+ manualSetup?: Maybe<Scalars["Boolean"]>;
4683
+ /** [DEPRECATED] The Jira project keys to scope the integration to. */
4576
4684
  project?: Maybe<Scalars["String"]>;
4577
4685
  };
4578
4686
  /** Tuple for mapping Jira projects to Linear teams. */
@@ -4630,26 +4738,38 @@ export declare type JiraSettings = {
4630
4738
  __typename?: "JiraSettings";
4631
4739
  /** Whether this integration is for Jira Server or not. */
4632
4740
  isJiraServer?: Maybe<Scalars["Boolean"]>;
4741
+ /** Whether this integration is using a manual setup flow. */
4742
+ manualSetup?: Maybe<Scalars["Boolean"]>;
4633
4743
  /** The mapping of Jira project id => Linear team id. */
4634
4744
  projectMapping?: Maybe<Array<JiraLinearMapping>>;
4635
4745
  /** The Jira projects for the organization. */
4636
4746
  projects: Array<JiraProjectData>;
4747
+ /** Whether the user needs to provide setup information about the webhook to complete the integration setup. Only relevant for integrations that use a manual setup flow */
4748
+ setupPending?: Maybe<Scalars["Boolean"]>;
4637
4749
  };
4638
4750
  export declare type JiraSettingsInput = {
4639
4751
  /** Whether this integration is for Jira Server or not. */
4640
4752
  isJiraServer?: Maybe<Scalars["Boolean"]>;
4753
+ /** Whether this integration is using a manual setup flow. */
4754
+ manualSetup?: Maybe<Scalars["Boolean"]>;
4641
4755
  /** The mapping of Jira project id => Linear team id. */
4642
4756
  projectMapping?: Maybe<Array<JiraLinearMappingInput>>;
4643
4757
  /** The Jira projects for the organization. */
4644
4758
  projects: Array<JiraProjectDataInput>;
4759
+ /** Whether the user needs to provide setup information about the webhook to complete the integration setup. Only relevant for integrations that use a manual setup flow */
4760
+ setupPending?: Maybe<Scalars["Boolean"]>;
4645
4761
  };
4646
4762
  export declare type JiraUpdateInput = {
4763
+ /** Whether to delete the current manual webhook configuration. */
4764
+ deleteWebhook?: Maybe<Scalars["Boolean"]>;
4647
4765
  /** The id of the integration to update. */
4648
4766
  id: Scalars["String"];
4649
4767
  /** Whether to refresh Jira metadata for the integration. */
4650
4768
  updateMetadata?: Maybe<Scalars["Boolean"]>;
4651
4769
  /** Whether to refresh Jira Projects for the integration. */
4652
4770
  updateProjects?: Maybe<Scalars["Boolean"]>;
4771
+ /** Webhook secret for a new manual configuration. */
4772
+ webhookSecret?: Maybe<Scalars["String"]>;
4653
4773
  };
4654
4774
  export declare type JoinOrganizationInput = {
4655
4775
  /** An optional invite link for an organization. */
@@ -4725,9 +4845,9 @@ export declare type Mutation = {
4725
4845
  __typename?: "Mutation";
4726
4846
  /** Creates an integration api key for Airbyte to connect with Linear. */
4727
4847
  airbyteIntegrationConnect: IntegrationPayload;
4728
- /** Creates a new API key. */
4848
+ /** [INTERNAL] Creates a new API key. */
4729
4849
  apiKeyCreate: ApiKeyPayload;
4730
- /** Deletes an API key. */
4850
+ /** [INTERNAL] Deletes an API key. */
4731
4851
  apiKeyDelete: DeletePayload;
4732
4852
  /**
4733
4853
  * [DEPRECATED] Archives an issue attachment.
@@ -4758,6 +4878,8 @@ export declare type Mutation = {
4758
4878
  attachmentLinkURL: AttachmentPayload;
4759
4879
  /** Link an existing Zendesk ticket to an issue. */
4760
4880
  attachmentLinkZendesk: AttachmentPayload;
4881
+ /** Begin syncing the thread for an existing Slack message attachment with a comment thread on its issue. */
4882
+ attachmentSyncToSlack: AttachmentPayload;
4761
4883
  /** Updates an existing issue attachment. */
4762
4884
  attachmentUpdate: AttachmentPayload;
4763
4885
  /** Creates a new comment. */
@@ -4804,8 +4926,6 @@ export declare type Mutation = {
4804
4926
  documentCreate: DocumentPayload;
4805
4927
  /** Deletes a document. */
4806
4928
  documentDelete: DeletePayload;
4807
- /** Adds a document reminder. Will cause a notification to be sent when the issue reminder time is reached. */
4808
- documentReminder: DocumentPayload;
4809
4929
  /** Updates a document. */
4810
4930
  documentUpdate: DocumentPayload;
4811
4931
  /** Creates a new email intake address. */
@@ -4892,6 +5012,8 @@ export declare type Mutation = {
4892
5012
  integrationGithubCommitCreate: GitHubCommitIntegrationPayload;
4893
5013
  /** Connects the organization with the GitHub App. */
4894
5014
  integrationGithubConnect: IntegrationPayload;
5015
+ /** Connects the organization with the GitHub Import App. */
5016
+ integrationGithubImportConnect: IntegrationPayload;
4895
5017
  /** Connects the organization with a GitLab Access Token. */
4896
5018
  integrationGitlabConnect: IntegrationPayload;
4897
5019
  /** [Internal] Connects the Google Calendar to the user to this Linear account via OAuth2. */
@@ -4934,6 +5056,8 @@ export declare type Mutation = {
4934
5056
  integrationSlack: IntegrationPayload;
4935
5057
  /** Integrates the organization with the Slack Asks app. */
4936
5058
  integrationSlackAsks: IntegrationPayload;
5059
+ /** Slack integration for custom view notifications. */
5060
+ integrationSlackCustomViewNotifications: SlackChannelConnectPayload;
4937
5061
  /** Imports custom emojis from your Slack workspace. */
4938
5062
  integrationSlackImportEmojis: IntegrationPayload;
4939
5063
  /** Slack integration for organization level project update notifications. */
@@ -4978,6 +5102,8 @@ export declare type Mutation = {
4978
5102
  issueImportCreateGithub: IssueImportPayload;
4979
5103
  /** Kicks off a Jira import job. */
4980
5104
  issueImportCreateJira: IssueImportPayload;
5105
+ /** [INTERNAL] Kicks off a Linear to Linear import job. */
5106
+ issueImportCreateLinearV2: IssueImportPayload;
4981
5107
  /** Deletes an import job. */
4982
5108
  issueImportDelete: IssueImportDeletePayload;
4983
5109
  /** Kicks off import processing. */
@@ -5059,6 +5185,8 @@ export declare type Mutation = {
5059
5185
  organizationDomainCreate: OrganizationDomainPayload;
5060
5186
  /** Deletes a domain. */
5061
5187
  organizationDomainDelete: DeletePayload;
5188
+ /** [INTERNAL] Updates an organization domain settings. */
5189
+ organizationDomainUpdate: OrganizationDomainPayload;
5062
5190
  /** [INTERNAL] Verifies a domain to be added to an organization. */
5063
5191
  organizationDomainVerify: OrganizationDomainPayload;
5064
5192
  /** Creates a new organization invite. */
@@ -5067,10 +5195,14 @@ export declare type Mutation = {
5067
5195
  organizationInviteDelete: DeletePayload;
5068
5196
  /** Updates an organization invite. */
5069
5197
  organizationInviteUpdate: OrganizationInvitePayload;
5070
- /** Starts a plus trial for the organization. Administrator privileges required. */
5071
- organizationStartPlusTrial: OrganizationStartPlusTrialPayload;
5198
+ /** Starts a trial for the organization. Administrator privileges required. */
5199
+ organizationStartTrial: OrganizationStartTrialPayload;
5072
5200
  /** Updates the user's organization. */
5073
5201
  organizationUpdate: OrganizationPayload;
5202
+ /** [INTERNAL] Finish passkey login process. */
5203
+ passkeyLoginFinish: AuthResolverResponse;
5204
+ /** [INTERNAL] Starts passkey login process. */
5205
+ passkeyLoginStart: PasskeyLoginStartResponse;
5074
5206
  /**
5075
5207
  * Archives a project.
5076
5208
  * @deprecated Deprecated in favor of projectDelete.
@@ -5092,6 +5224,8 @@ export declare type Mutation = {
5092
5224
  projectMilestoneDelete: DeletePayload;
5093
5225
  /** Updates a project milestone. */
5094
5226
  projectMilestoneUpdate: ProjectMilestonePayload;
5227
+ /** [INTERNAL] Updates all projects currently assigned to to a project status to a new project status. */
5228
+ projectReassignStatus: SuccessPayload;
5095
5229
  /** [ALPHA] Creates a new project relation. */
5096
5230
  projectRelationCreate: ProjectRelationPayload;
5097
5231
  /** [ALPHA] Deletes a project relation. */
@@ -5332,6 +5466,9 @@ export declare type MutationAttachmentLinkZendeskArgs = {
5332
5466
  ticketId: Scalars["String"];
5333
5467
  title?: Maybe<Scalars["String"]>;
5334
5468
  };
5469
+ export declare type MutationAttachmentSyncToSlackArgs = {
5470
+ id: Scalars["String"];
5471
+ };
5335
5472
  export declare type MutationAttachmentUpdateArgs = {
5336
5473
  id: Scalars["String"];
5337
5474
  input: AttachmentUpdateInput;
@@ -5409,10 +5546,6 @@ export declare type MutationDocumentCreateArgs = {
5409
5546
  export declare type MutationDocumentDeleteArgs = {
5410
5547
  id: Scalars["String"];
5411
5548
  };
5412
- export declare type MutationDocumentReminderArgs = {
5413
- id: Scalars["String"];
5414
- reminderAt: Scalars["DateTime"];
5415
- };
5416
5549
  export declare type MutationDocumentUpdateArgs = {
5417
5550
  id: Scalars["String"];
5418
5551
  input: DocumentUpdateInput;
@@ -5558,6 +5691,9 @@ export declare type MutationIntegrationGitHubPersonalArgs = {
5558
5691
  export declare type MutationIntegrationGithubConnectArgs = {
5559
5692
  installationId: Scalars["String"];
5560
5693
  };
5694
+ export declare type MutationIntegrationGithubImportConnectArgs = {
5695
+ installationId: Scalars["String"];
5696
+ };
5561
5697
  export declare type MutationIntegrationGitlabConnectArgs = {
5562
5698
  accessToken: Scalars["String"];
5563
5699
  gitlabUrl: Scalars["String"];
@@ -5611,6 +5747,11 @@ export declare type MutationIntegrationSlackAsksArgs = {
5611
5747
  code: Scalars["String"];
5612
5748
  redirectUri: Scalars["String"];
5613
5749
  };
5750
+ export declare type MutationIntegrationSlackCustomViewNotificationsArgs = {
5751
+ code: Scalars["String"];
5752
+ customViewId: Scalars["String"];
5753
+ redirectUri: Scalars["String"];
5754
+ };
5614
5755
  export declare type MutationIntegrationSlackImportEmojisArgs = {
5615
5756
  code: Scalars["String"];
5616
5757
  redirectUri: Scalars["String"];
@@ -5710,13 +5851,15 @@ export declare type MutationIssueImportCreateClubhouseArgs = {
5710
5851
  teamName?: Maybe<Scalars["String"]>;
5711
5852
  };
5712
5853
  export declare type MutationIssueImportCreateGithubArgs = {
5713
- githubRepoName: Scalars["String"];
5714
- githubRepoOwner: Scalars["String"];
5854
+ githubRepoId?: Maybe<Scalars["String"]>;
5855
+ githubRepoIds?: Maybe<Array<Scalars["Int"]>>;
5856
+ githubRepoName?: Maybe<Scalars["String"]>;
5857
+ githubRepoOwner?: Maybe<Scalars["String"]>;
5715
5858
  githubShouldImportOrgProjects?: Maybe<Scalars["Boolean"]>;
5716
- githubToken: Scalars["String"];
5717
- id?: Maybe<Scalars["String"]>;
5859
+ githubToken?: Maybe<Scalars["String"]>;
5718
5860
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
5719
5861
  instantProcess?: Maybe<Scalars["Boolean"]>;
5862
+ integrationId: Scalars["String"];
5720
5863
  organizationId?: Maybe<Scalars["String"]>;
5721
5864
  teamId?: Maybe<Scalars["String"]>;
5722
5865
  teamName?: Maybe<Scalars["String"]>;
@@ -5733,6 +5876,10 @@ export declare type MutationIssueImportCreateJiraArgs = {
5733
5876
  teamId?: Maybe<Scalars["String"]>;
5734
5877
  teamName?: Maybe<Scalars["String"]>;
5735
5878
  };
5879
+ export declare type MutationIssueImportCreateLinearV2Args = {
5880
+ id?: Maybe<Scalars["String"]>;
5881
+ linearSourceOrganizationId: Scalars["String"];
5882
+ };
5736
5883
  export declare type MutationIssueImportDeleteArgs = {
5737
5884
  issueImportId: Scalars["String"];
5738
5885
  };
@@ -5758,6 +5905,7 @@ export declare type MutationIssueLabelUpdateArgs = {
5758
5905
  };
5759
5906
  export declare type MutationIssueRelationCreateArgs = {
5760
5907
  input: IssueRelationCreateInput;
5908
+ overrideCreatedAt?: Maybe<Scalars["DateTime"]>;
5761
5909
  };
5762
5910
  export declare type MutationIssueRelationDeleteArgs = {
5763
5911
  id: Scalars["String"];
@@ -5852,6 +6000,10 @@ export declare type MutationOrganizationDomainCreateArgs = {
5852
6000
  export declare type MutationOrganizationDomainDeleteArgs = {
5853
6001
  id: Scalars["String"];
5854
6002
  };
6003
+ export declare type MutationOrganizationDomainUpdateArgs = {
6004
+ id: Scalars["String"];
6005
+ input: OrganizationDomainUpdateInput;
6006
+ };
5855
6007
  export declare type MutationOrganizationDomainVerifyArgs = {
5856
6008
  input: OrganizationDomainVerificationInput;
5857
6009
  };
@@ -5868,6 +6020,13 @@ export declare type MutationOrganizationInviteUpdateArgs = {
5868
6020
  export declare type MutationOrganizationUpdateArgs = {
5869
6021
  input: OrganizationUpdateInput;
5870
6022
  };
6023
+ export declare type MutationPasskeyLoginFinishArgs = {
6024
+ authId: Scalars["String"];
6025
+ response: Scalars["JSONObject"];
6026
+ };
6027
+ export declare type MutationPasskeyLoginStartArgs = {
6028
+ authId: Scalars["String"];
6029
+ };
5871
6030
  export declare type MutationProjectArchiveArgs = {
5872
6031
  id: Scalars["String"];
5873
6032
  trash?: Maybe<Scalars["Boolean"]>;
@@ -5899,6 +6058,10 @@ export declare type MutationProjectMilestoneUpdateArgs = {
5899
6058
  id: Scalars["String"];
5900
6059
  input: ProjectMilestoneUpdateInput;
5901
6060
  };
6061
+ export declare type MutationProjectReassignStatusArgs = {
6062
+ newProjectStatusId: Scalars["String"];
6063
+ originalProjectStatusId: Scalars["String"];
6064
+ };
5902
6065
  export declare type MutationProjectRelationCreateArgs = {
5903
6066
  input: ProjectRelationCreateInput;
5904
6067
  };
@@ -6184,6 +6347,82 @@ export declare type NotificationConnection = {
6184
6347
  nodes: Array<Notification>;
6185
6348
  pageInfo: PageInfo;
6186
6349
  };
6350
+ /** A user's notification delivery preferences. */
6351
+ export declare type NotificationDeliveryPreferences = {
6352
+ __typename?: "NotificationDeliveryPreferences";
6353
+ /** The delivery preferences for the mobile channel. */
6354
+ mobile?: Maybe<NotificationDeliveryPreferencesChannel>;
6355
+ };
6356
+ /** A user's notification delivery preferences. */
6357
+ export declare type NotificationDeliveryPreferencesChannel = {
6358
+ __typename?: "NotificationDeliveryPreferencesChannel";
6359
+ /** Whether notifications are enabled for this channel. */
6360
+ notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6361
+ /** The schedule for notifications on this channel. */
6362
+ schedule: NotificationDeliveryPreferencesSchedule;
6363
+ };
6364
+ export declare type NotificationDeliveryPreferencesChannelInput = {
6365
+ /** Whether notifications are enabled for this channel. */
6366
+ notificationsDisabled?: Maybe<Scalars["Boolean"]>;
6367
+ /** The schedule for notifications on this channel. */
6368
+ schedule: NotificationDeliveryPreferencesScheduleInput;
6369
+ };
6370
+ /** A user's notification delivery schedule for a particular day. */
6371
+ export declare type NotificationDeliveryPreferencesDay = {
6372
+ __typename?: "NotificationDeliveryPreferencesDay";
6373
+ /** The time notifications end. */
6374
+ end?: Maybe<Scalars["String"]>;
6375
+ /** The time notifications start. */
6376
+ start?: Maybe<Scalars["String"]>;
6377
+ };
6378
+ export declare type NotificationDeliveryPreferencesDayInput = {
6379
+ /** The time notifications end. */
6380
+ end?: Maybe<Scalars["String"]>;
6381
+ /** The time notifications start. */
6382
+ start?: Maybe<Scalars["String"]>;
6383
+ };
6384
+ export declare type NotificationDeliveryPreferencesInput = {
6385
+ /** The delivery preferences for the mobile channel. */
6386
+ mobile?: Maybe<NotificationDeliveryPreferencesChannelInput>;
6387
+ };
6388
+ /** A user's notification delivery schedule for a particular day. */
6389
+ export declare type NotificationDeliveryPreferencesSchedule = {
6390
+ __typename?: "NotificationDeliveryPreferencesSchedule";
6391
+ /** Whether the schedule is disabled. */
6392
+ disabled?: Maybe<Scalars["Boolean"]>;
6393
+ /** Delivery preferences for Friday. */
6394
+ friday: NotificationDeliveryPreferencesDay;
6395
+ /** Delivery preferences for Monday. */
6396
+ monday: NotificationDeliveryPreferencesDay;
6397
+ /** Delivery preferences for Saturday. */
6398
+ saturday: NotificationDeliveryPreferencesDay;
6399
+ /** Delivery preferences for Sunday. */
6400
+ sunday: NotificationDeliveryPreferencesDay;
6401
+ /** Delivery preferences for Thursday. */
6402
+ thursday: NotificationDeliveryPreferencesDay;
6403
+ /** Delivery preferences for Tuesday. */
6404
+ tuesday: NotificationDeliveryPreferencesDay;
6405
+ /** Delivery preferences for Wednesday. */
6406
+ wednesday: NotificationDeliveryPreferencesDay;
6407
+ };
6408
+ export declare type NotificationDeliveryPreferencesScheduleInput = {
6409
+ /** Whether the schedule is disabled. */
6410
+ disabled?: Maybe<Scalars["Boolean"]>;
6411
+ /** Delivery preferences for Friday. */
6412
+ friday: NotificationDeliveryPreferencesDayInput;
6413
+ /** Delivery preferences for Monday. */
6414
+ monday: NotificationDeliveryPreferencesDayInput;
6415
+ /** Delivery preferences for Saturday. */
6416
+ saturday: NotificationDeliveryPreferencesDayInput;
6417
+ /** Delivery preferences for Sunday. */
6418
+ sunday: NotificationDeliveryPreferencesDayInput;
6419
+ /** Delivery preferences for Thursday. */
6420
+ thursday: NotificationDeliveryPreferencesDayInput;
6421
+ /** Delivery preferences for Tuesday. */
6422
+ tuesday: NotificationDeliveryPreferencesDayInput;
6423
+ /** Delivery preferences for Wednesday. */
6424
+ wednesday: NotificationDeliveryPreferencesDayInput;
6425
+ };
6187
6426
  export declare type NotificationEdge = {
6188
6427
  __typename?: "NotificationEdge";
6189
6428
  /** Used in `before` and `after` args */
@@ -6192,6 +6431,8 @@ export declare type NotificationEdge = {
6192
6431
  };
6193
6432
  /** Describes the type and id of the entity to target for notifications. */
6194
6433
  export declare type NotificationEntityInput = {
6434
+ /** The id of the initiative related to the notification. */
6435
+ initiativeId?: Maybe<Scalars["String"]>;
6195
6436
  /** The id of the issue related to the notification. */
6196
6437
  issueId?: Maybe<Scalars["String"]>;
6197
6438
  /** The id of the OAuth client approval related to the notification. */
@@ -6966,6 +7207,8 @@ export declare type Organization = Node & {
6966
7207
  previousUrlKeys: Array<Scalars["String"]>;
6967
7208
  /** The organization's project statuses. */
6968
7209
  projectStatuses: Array<ProjectStatus>;
7210
+ /** [ALPHA] The n-weekly frequency at which to prompt for project updates. When not set, reminders are off. */
7211
+ projectUpdateReminderFrequencyInWeeks?: Maybe<Scalars["Float"]>;
6969
7212
  /** The day at which to prompt for project updates. */
6970
7213
  projectUpdateRemindersDay: Day;
6971
7214
  /** The hour at which to prompt for project updates. */
@@ -6992,7 +7235,7 @@ export declare type Organization = Node & {
6992
7235
  templates: TemplateConnection;
6993
7236
  /** [ALPHA] Theme settings for the organization. */
6994
7237
  themeSettings?: Maybe<Scalars["JSONObject"]>;
6995
- /** The time at which the trial of the plus plan will end. */
7238
+ /** The time at which the trial will end. */
6996
7239
  trialEndsAt?: Maybe<Scalars["DateTime"]>;
6997
7240
  /**
6998
7241
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
@@ -7083,6 +7326,8 @@ export declare type OrganizationDomain = Node & {
7083
7326
  createdAt: Scalars["DateTime"];
7084
7327
  /** The user who added the domain. */
7085
7328
  creator?: Maybe<User>;
7329
+ /** Prevent users with this domain to create new workspaces. */
7330
+ disableOrganizationCreation?: Maybe<Scalars["Boolean"]>;
7086
7331
  /** The unique identifier of the entity. */
7087
7332
  id: Scalars["ID"];
7088
7333
  /** Domain name. */
@@ -7135,6 +7380,10 @@ export declare type OrganizationDomainSimplePayload = {
7135
7380
  /** Whether the operation was successful. */
7136
7381
  success: Scalars["Boolean"];
7137
7382
  };
7383
+ export declare type OrganizationDomainUpdateInput = {
7384
+ /** Prevent users with this domain to create new workspaces. Only allowed to set on claimed domains! */
7385
+ disableOrganizationCreation?: Maybe<Scalars["Boolean"]>;
7386
+ };
7138
7387
  export declare type OrganizationDomainVerificationInput = {
7139
7388
  /** The identifier in UUID v4 format of the domain being verified. */
7140
7389
  organizationDomainId: Scalars["String"];
@@ -7268,6 +7517,13 @@ export declare type OrganizationInviteUpdateInput = {
7268
7517
  /** The teams that the user has been invited to. */
7269
7518
  teamIds: Array<Scalars["String"]>;
7270
7519
  };
7520
+ export declare type OrganizationMeta = {
7521
+ __typename?: "OrganizationMeta";
7522
+ /** Allowed authentication providers, empty array means all are allowed. */
7523
+ allowedAuthServices: Array<Scalars["String"]>;
7524
+ /** The region the organization is hosted in. */
7525
+ region: Scalars["String"];
7526
+ };
7271
7527
  export declare type OrganizationPayload = {
7272
7528
  __typename?: "OrganizationPayload";
7273
7529
  /** The identifier of the last sync operation. */
@@ -7284,8 +7540,8 @@ export declare type OrganizationRegionResponse = {
7284
7540
  /** Whether the operation was successful. */
7285
7541
  success: Scalars["Boolean"];
7286
7542
  };
7287
- export declare type OrganizationStartPlusTrialPayload = {
7288
- __typename?: "OrganizationStartPlusTrialPayload";
7543
+ export declare type OrganizationStartTrialPayload = {
7544
+ __typename?: "OrganizationStartTrialPayload";
7289
7545
  /** Whether the operation was successful. */
7290
7546
  success: Scalars["Boolean"];
7291
7547
  };
@@ -7310,6 +7566,8 @@ export declare type OrganizationUpdateInput = {
7310
7566
  name?: Maybe<Scalars["String"]>;
7311
7567
  /** Whether the organization has opted for having to approve all OAuth applications for install. */
7312
7568
  oauthAppReview?: Maybe<Scalars["Boolean"]>;
7569
+ /** [ALPHA] The n-weekly frequency at which to prompt for project updates. */
7570
+ projectUpdateReminderFrequencyInWeeks?: Maybe<Scalars["Float"]>;
7313
7571
  /** The day at which project updates are sent. */
7314
7572
  projectUpdateRemindersDay?: Maybe<Day>;
7315
7573
  /** The hour at which project updates are sent. */
@@ -7401,6 +7659,41 @@ export declare type PaidSubscription = Node & {
7401
7659
  */
7402
7660
  updatedAt: Scalars["DateTime"];
7403
7661
  };
7662
+ /** Registered passkey for authentication. */
7663
+ export declare type Passkey = {
7664
+ __typename?: "Passkey";
7665
+ aaguid: Scalars["String"];
7666
+ /** Used web browser. Only set on creation. */
7667
+ browserType?: Maybe<Scalars["String"]>;
7668
+ /** Type of application used to create. */
7669
+ clientType: AuthenticationSessionType;
7670
+ /** The time at which the entity was created. */
7671
+ createdAt: Scalars["DateTime"];
7672
+ id: Scalars["String"];
7673
+ /** IP address. Only set on creation. */
7674
+ ip?: Maybe<Scalars["String"]>;
7675
+ label: Scalars["String"];
7676
+ /** The time when the passkey was last used. */
7677
+ lastUsedAt: Scalars["DateTime"];
7678
+ lastUsedSessionId?: Maybe<Scalars["String"]>;
7679
+ /** Location city name. Only set on creation. */
7680
+ locationCity?: Maybe<Scalars["String"]>;
7681
+ /** Location country name. Only set on creation. */
7682
+ locationCountry?: Maybe<Scalars["String"]>;
7683
+ /** Location country code. Only set on creation. */
7684
+ locationCountryCode?: Maybe<Scalars["String"]>;
7685
+ /** Location region code. Only set on creation. */
7686
+ locationRegionCode?: Maybe<Scalars["String"]>;
7687
+ /** Date when the passkey was last updated. */
7688
+ updatedAt: Scalars["DateTime"];
7689
+ /** Creating session's user-agent. Only set on creation. */
7690
+ userAgent?: Maybe<Scalars["String"]>;
7691
+ };
7692
+ export declare type PasskeyLoginStartResponse = {
7693
+ __typename?: "PasskeyLoginStartResponse";
7694
+ options: Scalars["JSONObject"];
7695
+ success: Scalars["Boolean"];
7696
+ };
7404
7697
  /** Issue priority sorting options. */
7405
7698
  export declare type PrioritySort = {
7406
7699
  /** Whether to consider no priority as the highest or lowest priority */
@@ -7697,6 +7990,21 @@ export declare type ProjectCreateInput = {
7697
7990
  /** The identifiers of the teams this project is associated with. */
7698
7991
  teamIds: Array<Scalars["String"]>;
7699
7992
  };
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
+ };
7700
8008
  export declare type ProjectEdge = {
7701
8009
  __typename?: "ProjectEdge";
7702
8010
  /** Used in `before` and `after` args */
@@ -8825,8 +9133,8 @@ export declare type Query = {
8825
9133
  issueFilterSuggestion: IssueFilterSuggestionPayload;
8826
9134
  /** Checks a CSV file validity against a specific import service. */
8827
9135
  issueImportCheckCSV: IssueImportCheckPayload;
8828
- /** Fetches the GitHub token, completing the OAuth flow. */
8829
- issueImportFinishGithubOAuth: GithubOAuthTokenPayload;
9136
+ /** Checks whether it will be possible to setup sync for this project or repository at the end of import */
9137
+ issueImportCheckSync: IssueImportSyncCheckPayload;
8830
9138
  /** One specific label. */
8831
9139
  issueLabel: IssueLabel;
8832
9140
  /** All issue labels. */
@@ -8863,8 +9171,12 @@ export declare type Query = {
8863
9171
  organizationInviteDetails: OrganizationInviteDetailsPayload;
8864
9172
  /** All invites for the organization. */
8865
9173
  organizationInvites: OrganizationInviteConnection;
9174
+ /** [INTERNAL] Get organization metadata by urlKey or organization id. */
9175
+ organizationMeta?: Maybe<OrganizationMeta>;
8866
9176
  /** One specific project. */
8867
9177
  project: Project;
9178
+ /** [INTERNAL] Suggests icon, color for a project based on its info while composing. */
9179
+ projectDetailsSuggestion: ProjectDetailSuggestionPayload;
8868
9180
  /** Suggests filters for a project view based on a text prompt. */
8869
9181
  projectFilterSuggestion: ProjectFilterSuggestionPayload;
8870
9182
  /** One specific project link. */
@@ -9189,8 +9501,8 @@ export declare type QueryIssueImportCheckCsvArgs = {
9189
9501
  csvUrl: Scalars["String"];
9190
9502
  service: Scalars["String"];
9191
9503
  };
9192
- export declare type QueryIssueImportFinishGithubOAuthArgs = {
9193
- code: Scalars["String"];
9504
+ export declare type QueryIssueImportCheckSyncArgs = {
9505
+ issueImportId: Scalars["String"];
9194
9506
  };
9195
9507
  export declare type QueryIssueLabelArgs = {
9196
9508
  id: Scalars["String"];
@@ -9280,9 +9592,15 @@ export declare type QueryOrganizationInvitesArgs = {
9280
9592
  last?: Maybe<Scalars["Int"]>;
9281
9593
  orderBy?: Maybe<PaginationOrderBy>;
9282
9594
  };
9595
+ export declare type QueryOrganizationMetaArgs = {
9596
+ urlKey: Scalars["String"];
9597
+ };
9283
9598
  export declare type QueryProjectArgs = {
9284
9599
  id: Scalars["String"];
9285
9600
  };
9601
+ export declare type QueryProjectDetailsSuggestionArgs = {
9602
+ project: ProjectDetailSuggestionInput;
9603
+ };
9286
9604
  export declare type QueryProjectFilterSuggestionArgs = {
9287
9605
  prompt: Scalars["String"];
9288
9606
  };
@@ -9621,8 +9939,10 @@ export declare type Reminder = Node & {
9621
9939
  issueId?: Maybe<Issue>;
9622
9940
  /** The project that the reminder is associated with. */
9623
9941
  projectId?: Maybe<Project>;
9624
- /** The time when a reminder triggers a notification in users inbox. */
9625
- remindAt: Scalars["DateTime"];
9942
+ /** The time when a reminder triggers a notification in the user's inbox. */
9943
+ remindAt?: Maybe<Scalars["DateTime"]>;
9944
+ /** Scheduling settings for recurring reminders. */
9945
+ schedule?: Maybe<Scalars["JSONObject"]>;
9626
9946
  /**
9627
9947
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
9628
9948
  * for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't
@@ -9860,6 +10180,8 @@ export declare type SentrySettingsInput = {
9860
10180
  /** Shared Slack integration settings. */
9861
10181
  export declare type SharedSlackSettings = {
9862
10182
  __typename?: "SharedSlackSettings";
10183
+ /** Enterprise id of the connected Slack enterprise */
10184
+ enterpriseId?: Maybe<Scalars["String"]>;
9863
10185
  /** Enterprise name of the connected Slack enterprise */
9864
10186
  enterpriseName?: Maybe<Scalars["String"]>;
9865
10187
  /** Whether to show unfurl previews in Slack */
@@ -9870,6 +10192,8 @@ export declare type SharedSlackSettings = {
9870
10192
  teamName?: Maybe<Scalars["String"]>;
9871
10193
  };
9872
10194
  export declare type SharedSlackSettingsInput = {
10195
+ /** Enterprise id of the connected Slack enterprise */
10196
+ enterpriseId?: Maybe<Scalars["String"]>;
9873
10197
  /** Enterprise name of the connected Slack enterprise */
9874
10198
  enterpriseName?: Maybe<Scalars["String"]>;
9875
10199
  /** Whether to show unfurl previews in Slack */
@@ -9913,6 +10237,8 @@ export declare type SlackAsksSettings = {
9913
10237
  __typename?: "SlackAsksSettings";
9914
10238
  /** The user role type that is allowed to manage Asks settings. */
9915
10239
  canAdministrate: UserRoleType;
10240
+ /** Enterprise id of the connected Slack enterprise */
10241
+ enterpriseId?: Maybe<Scalars["String"]>;
9916
10242
  /** Enterprise name of the connected Slack enterprise */
9917
10243
  enterpriseName?: Maybe<Scalars["String"]>;
9918
10244
  /** Whether to show unfurl previews in Slack */
@@ -9927,6 +10253,8 @@ export declare type SlackAsksSettings = {
9927
10253
  export declare type SlackAsksSettingsInput = {
9928
10254
  /** The user role type that is allowed to manage Asks settings. */
9929
10255
  canAdministrate: UserRoleType;
10256
+ /** Enterprise id of the connected Slack enterprise */
10257
+ enterpriseId?: Maybe<Scalars["String"]>;
9930
10258
  /** Enterprise name of the connected Slack enterprise */
9931
10259
  enterpriseName?: Maybe<Scalars["String"]>;
9932
10260
  /** Whether to show unfurl previews in Slack */
@@ -10040,6 +10368,8 @@ export declare type SlackPostSettingsInput = {
10040
10368
  /** Settings for the regular Slack integration. */
10041
10369
  export declare type SlackSettings = {
10042
10370
  __typename?: "SlackSettings";
10371
+ /** Enterprise id of the connected Slack enterprise */
10372
+ enterpriseId?: Maybe<Scalars["String"]>;
10043
10373
  /** Enterprise name of the connected Slack enterprise */
10044
10374
  enterpriseName?: Maybe<Scalars["String"]>;
10045
10375
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
@@ -10052,6 +10382,8 @@ export declare type SlackSettings = {
10052
10382
  teamName?: Maybe<Scalars["String"]>;
10053
10383
  };
10054
10384
  export declare type SlackSettingsInput = {
10385
+ /** Enterprise id of the connected Slack enterprise */
10386
+ enterpriseId?: Maybe<Scalars["String"]>;
10055
10387
  /** Enterprise name of the connected Slack enterprise */
10056
10388
  enterpriseName?: Maybe<Scalars["String"]>;
10057
10389
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
@@ -10164,6 +10496,13 @@ export declare type SubTypeComparator = {
10164
10496
  /** Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values. */
10165
10497
  null?: Maybe<Scalars["Boolean"]>;
10166
10498
  };
10499
+ export declare type SuccessPayload = {
10500
+ __typename?: "SuccessPayload";
10501
+ /** The identifier of the last sync operation. */
10502
+ lastSyncId: Scalars["Float"];
10503
+ /** Whether the operation was successful. */
10504
+ success: Scalars["Boolean"];
10505
+ };
10167
10506
  export declare type SummaryPayload = {
10168
10507
  __typename?: "SummaryPayload";
10169
10508
  /** Summary for project updates. */
@@ -10883,6 +11222,36 @@ export declare type TemplateUpdateInput = {
10883
11222
  /** The template data as JSON encoded attributes of the type of entity, such as an issue. */
10884
11223
  templateData?: Maybe<Scalars["JSON"]>;
10885
11224
  };
11225
+ /** A text draft, used for comments and project updates. */
11226
+ export declare type TextDraft = Node & {
11227
+ __typename?: "TextDraft";
11228
+ /** The time at which the entity was archived. Null if the entity has not been archived. */
11229
+ archivedAt?: Maybe<Scalars["DateTime"]>;
11230
+ /** The text content as a Prosemirror document. */
11231
+ bodyData: Scalars["JSON"];
11232
+ /** The time at which the entity was created. */
11233
+ createdAt: Scalars["DateTime"];
11234
+ /** The unique identifier of the entity. */
11235
+ id: Scalars["ID"];
11236
+ /** Whether the draft was autogenerated for the user. */
11237
+ isAutogenerated: Scalars["Boolean"];
11238
+ /** The issue for which this is a draft comment. */
11239
+ issue?: Maybe<Issue>;
11240
+ /** The comment for which this is a draft comment reply. */
11241
+ parentComment?: Maybe<Comment>;
11242
+ /** The project for which this is a draft project update. */
11243
+ project?: Maybe<Project>;
11244
+ /** The project update for which this is a draft comment. */
11245
+ projectUpdate?: Maybe<ProjectUpdate>;
11246
+ /**
11247
+ * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
11248
+ * 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
11249
+ * been updated after creation.
11250
+ */
11251
+ updatedAt: Scalars["DateTime"];
11252
+ /** The user who created the draft. */
11253
+ user: User;
11254
+ };
10886
11255
  /** A time schedule. */
10887
11256
  export declare type TimeSchedule = Node & {
10888
11257
  __typename?: "TimeSchedule";
@@ -11189,6 +11558,8 @@ export declare type User = Node & {
11189
11558
  teamMemberships: TeamMembershipConnection;
11190
11559
  /** Teams the user is part of. */
11191
11560
  teams: TeamConnection;
11561
+ /** [Internal] Text drafts created by the user. */
11562
+ textDrafts: Array<TextDraft>;
11192
11563
  /** The local timezone of the user. */
11193
11564
  timezone?: Maybe<Scalars["String"]>;
11194
11565
  /**
@@ -11504,6 +11875,8 @@ export declare type UserSettings = Node & {
11504
11875
  createdAt: Scalars["DateTime"];
11505
11876
  /** The unique identifier of the entity. */
11506
11877
  id: Scalars["ID"];
11878
+ /** The notification delivery preferences for the user. */
11879
+ notificationDeliveryPreferences: NotificationDeliveryPreferences;
11507
11880
  /** The notification channel settings the user has selected. */
11508
11881
  notificationPreferences: Scalars["JSONObject"];
11509
11882
  /** Whether to show full user names instead of display names. */
@@ -11560,6 +11933,8 @@ export declare type UserSettingsPayload = {
11560
11933
  userSettings: UserSettings;
11561
11934
  };
11562
11935
  export declare type UserSettingsUpdateInput = {
11936
+ /** The user's notification delivery preferences. */
11937
+ notificationDeliveryPreferences?: Maybe<NotificationDeliveryPreferencesInput>;
11563
11938
  /** The user's notification preferences. */
11564
11939
  notificationPreferences?: Maybe<Scalars["JSONObject"]>;
11565
11940
  /** The user's settings. */
@@ -11693,17 +12068,20 @@ export declare enum ViewType {
11693
12068
  CustomRoadmap = "customRoadmap",
11694
12069
  CustomView = "customView",
11695
12070
  CustomViews = "customViews",
12071
+ CustomViewsPersonal = "customViewsPersonal",
11696
12072
  Cycle = "cycle",
11697
12073
  Inbox = "inbox",
11698
12074
  Initiative = "initiative",
11699
12075
  Initiatives = "initiatives",
12076
+ InitiativesAll = "initiativesAll",
12077
+ InitiativesCompleted = "initiativesCompleted",
12078
+ InitiativesPlanned = "initiativesPlanned",
11700
12079
  IssueIdentifiers = "issueIdentifiers",
11701
12080
  Label = "label",
11702
12081
  MyIssues = "myIssues",
11703
12082
  MyIssuesActivity = "myIssuesActivity",
11704
12083
  MyIssuesCreatedByMe = "myIssuesCreatedByMe",
11705
12084
  MyIssuesSubscribedTo = "myIssuesSubscribedTo",
11706
- MyViews = "myViews",
11707
12085
  Project = "project",
11708
12086
  ProjectDocuments = "projectDocuments",
11709
12087
  Projects = "projects",
@@ -12138,6 +12516,9 @@ declare type Entity_CycleNotificationSubscription_Fragment = {
12138
12516
  declare type Entity_DocumentNotification_Fragment = {
12139
12517
  __typename: "DocumentNotification";
12140
12518
  } & Pick<DocumentNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12519
+ declare type Entity_InitiativeNotification_Fragment = {
12520
+ __typename: "InitiativeNotification";
12521
+ } & Pick<InitiativeNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12141
12522
  declare type Entity_IssueNotification_Fragment = {
12142
12523
  __typename: "IssueNotification";
12143
12524
  } & Pick<IssueNotification, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -12159,7 +12540,7 @@ declare type Entity_TeamNotificationSubscription_Fragment = {
12159
12540
  declare type Entity_UserNotificationSubscription_Fragment = {
12160
12541
  __typename: "UserNotificationSubscription";
12161
12542
  } & Pick<UserNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
12162
- export declare type EntityFragment = Entity_CustomViewNotificationSubscription_Fragment | Entity_CycleNotificationSubscription_Fragment | Entity_DocumentNotification_Fragment | Entity_IssueNotification_Fragment | Entity_LabelNotificationSubscription_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment | Entity_UserNotificationSubscription_Fragment;
12543
+ export declare type EntityFragment = Entity_CustomViewNotificationSubscription_Fragment | Entity_CycleNotificationSubscription_Fragment | Entity_DocumentNotification_Fragment | Entity_InitiativeNotification_Fragment | Entity_IssueNotification_Fragment | Entity_LabelNotificationSubscription_Fragment | Entity_OauthClientApprovalNotification_Fragment | Entity_ProjectNotification_Fragment | Entity_ProjectNotificationSubscription_Fragment | Entity_TeamNotificationSubscription_Fragment | Entity_UserNotificationSubscription_Fragment;
12163
12544
  export declare type ActorBotFragment = {
12164
12545
  __typename: "ActorBot";
12165
12546
  } & Pick<ActorBot, "avatarUrl" | "name" | "userDisplayName" | "subType" | "type" | "id">;
@@ -12345,6 +12726,9 @@ export declare type DocumentFragment = {
12345
12726
  __typename?: "User";
12346
12727
  } & Pick<User, "id">;
12347
12728
  };
12729
+ export declare type FacetFragment = {
12730
+ __typename: "Facet";
12731
+ } & Pick<Facet, "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id">;
12348
12732
  export declare type AttachmentArchivePayloadFragment = {
12349
12733
  __typename: "AttachmentArchivePayload";
12350
12734
  } & Pick<AttachmentArchivePayload, "lastSyncId" | "success"> & {
@@ -12375,6 +12759,8 @@ export declare type NotificationArchivePayloadFragment = {
12375
12759
  entity?: Maybe<({
12376
12760
  __typename?: "DocumentNotification";
12377
12761
  } & Notification_DocumentNotification_Fragment) | ({
12762
+ __typename?: "InitiativeNotification";
12763
+ } & Notification_InitiativeNotification_Fragment) | ({
12378
12764
  __typename?: "IssueNotification";
12379
12765
  } & Notification_IssueNotification_Fragment) | ({
12380
12766
  __typename?: "OauthClientApprovalNotification";
@@ -12492,6 +12878,22 @@ declare type Notification_DocumentNotification_Fragment = {
12492
12878
  __typename?: "User";
12493
12879
  } & Pick<User, "id">;
12494
12880
  } & DocumentNotificationFragment;
12881
+ declare type Notification_InitiativeNotification_Fragment = {
12882
+ __typename: "InitiativeNotification";
12883
+ } & Pick<InitiativeNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
12884
+ botActor?: Maybe<{
12885
+ __typename?: "ActorBot";
12886
+ } & ActorBotFragment>;
12887
+ externalUserActor?: Maybe<{
12888
+ __typename?: "ExternalUser";
12889
+ } & Pick<ExternalUser, "id">>;
12890
+ actor?: Maybe<{
12891
+ __typename?: "User";
12892
+ } & Pick<User, "id">>;
12893
+ user: {
12894
+ __typename?: "User";
12895
+ } & Pick<User, "id">;
12896
+ } & InitiativeNotificationFragment;
12495
12897
  declare type Notification_IssueNotification_Fragment = {
12496
12898
  __typename: "IssueNotification";
12497
12899
  } & Pick<IssueNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
@@ -12540,7 +12942,7 @@ declare type Notification_ProjectNotification_Fragment = {
12540
12942
  __typename?: "User";
12541
12943
  } & Pick<User, "id">;
12542
12944
  } & ProjectNotificationFragment;
12543
- export declare type NotificationFragment = Notification_DocumentNotification_Fragment | Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
12945
+ export declare type NotificationFragment = Notification_DocumentNotification_Fragment | Notification_InitiativeNotification_Fragment | Notification_IssueNotification_Fragment | Notification_OauthClientApprovalNotification_Fragment | Notification_ProjectNotification_Fragment;
12544
12946
  export declare type ProjectNotificationSubscriptionFragment = {
12545
12947
  __typename: "ProjectNotificationSubscription";
12546
12948
  } & Pick<ProjectNotificationSubscription, "updatedAt" | "archivedAt" | "createdAt" | "notificationSubscriptionTypes" | "userContextViewType" | "contextViewType" | "id" | "active"> & {
@@ -12638,6 +13040,9 @@ export declare type IssueHistoryFragment = {
12638
13040
  relationChanges?: Maybe<Array<{
12639
13041
  __typename?: "IssueRelationHistoryPayload";
12640
13042
  } & IssueRelationHistoryPayloadFragment>>;
13043
+ actors: Array<{
13044
+ __typename?: "User";
13045
+ } & UserFragment>;
12641
13046
  botActor?: Maybe<{
12642
13047
  __typename?: "ActorBot";
12643
13048
  } & ActorBotFragment>;
@@ -12647,6 +13052,12 @@ export declare type IssueHistoryFragment = {
12647
13052
  issue: {
12648
13053
  __typename?: "Issue";
12649
13054
  } & Pick<Issue, "id">;
13055
+ addedLabels?: Maybe<Array<{
13056
+ __typename?: "IssueLabel";
13057
+ } & IssueLabelFragment>>;
13058
+ removedLabels?: Maybe<Array<{
13059
+ __typename?: "IssueLabel";
13060
+ } & IssueLabelFragment>>;
12650
13061
  attachment?: Maybe<{
12651
13062
  __typename?: "Attachment";
12652
13063
  } & Pick<Attachment, "id">>;
@@ -12692,12 +13103,6 @@ export declare type IssueHistoryFragment = {
12692
13103
  actor?: Maybe<{
12693
13104
  __typename?: "User";
12694
13105
  } & Pick<User, "id">>;
12695
- addedLabels?: Maybe<Array<{
12696
- __typename?: "IssueLabel";
12697
- } & IssueLabelFragment>>;
12698
- removedLabels?: Maybe<Array<{
12699
- __typename?: "IssueLabel";
12700
- } & IssueLabelFragment>>;
12701
13106
  triageResponsibilityNotifiedUsers?: Maybe<Array<{
12702
13107
  __typename?: "User";
12703
13108
  } & UserFragment>>;
@@ -12730,7 +13135,7 @@ export declare type ProjectRelationFragment = {
12730
13135
  };
12731
13136
  export declare type ReminderFragment = {
12732
13137
  __typename: "Reminder";
12733
- } & Pick<Reminder, "updatedAt" | "comment" | "archivedAt" | "createdAt" | "remindAt" | "id"> & {
13138
+ } & Pick<Reminder, "schedule" | "updatedAt" | "comment" | "archivedAt" | "createdAt" | "remindAt" | "id"> & {
12734
13139
  documentId?: Maybe<{
12735
13140
  __typename?: "Document";
12736
13141
  } & Pick<Document, "id">>;
@@ -12822,6 +13227,25 @@ export declare type TemplateFragment = {
12822
13227
  __typename?: "User";
12823
13228
  } & Pick<User, "id">>;
12824
13229
  };
13230
+ export declare type TextDraftFragment = {
13231
+ __typename: "TextDraft";
13232
+ } & Pick<TextDraft, "updatedAt" | "bodyData" | "archivedAt" | "createdAt" | "id" | "isAutogenerated"> & {
13233
+ parentComment?: Maybe<{
13234
+ __typename?: "Comment";
13235
+ } & Pick<Comment, "id">>;
13236
+ issue?: Maybe<{
13237
+ __typename?: "Issue";
13238
+ } & Pick<Issue, "id">>;
13239
+ project?: Maybe<{
13240
+ __typename?: "Project";
13241
+ } & Pick<Project, "id">>;
13242
+ projectUpdate?: Maybe<{
13243
+ __typename?: "ProjectUpdate";
13244
+ } & Pick<ProjectUpdate, "id">>;
13245
+ user: {
13246
+ __typename?: "User";
13247
+ } & Pick<User, "id">;
13248
+ };
12825
13249
  export declare type TimeScheduleFragment = {
12826
13250
  __typename: "TimeSchedule";
12827
13251
  } & Pick<TimeSchedule, "externalUrl" | "externalId" | "updatedAt" | "name" | "archivedAt" | "createdAt" | "id"> & {
@@ -12885,7 +13309,7 @@ export declare type UserNotificationSubscriptionFragment = {
12885
13309
  };
12886
13310
  export declare type AuthUserFragment = {
12887
13311
  __typename: "AuthUser";
12888
- } & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "userAccountId" | "active" | "id"> & {
13312
+ } & Pick<AuthUser, "avatarUrl" | "displayName" | "email" | "name" | "userAccountId" | "active" | "role" | "id"> & {
12889
13313
  organization: {
12890
13314
  __typename?: "AuthOrganization";
12891
13315
  } & AuthOrganizationFragment;
@@ -12893,6 +13317,48 @@ export declare type AuthUserFragment = {
12893
13317
  export declare type UserFragment = {
12894
13318
  __typename: "User";
12895
13319
  } & Pick<User, "statusUntilAt" | "description" | "avatarUrl" | "createdIssueCount" | "disableReason" | "statusEmoji" | "statusLabel" | "updatedAt" | "lastSeen" | "timezone" | "archivedAt" | "createdAt" | "id" | "displayName" | "email" | "name" | "inviteHash" | "url" | "active" | "guest" | "admin" | "isMe" | "calendarHash">;
13320
+ export declare type NotificationDeliveryPreferencesFragment = {
13321
+ __typename: "NotificationDeliveryPreferences";
13322
+ } & {
13323
+ mobile?: Maybe<{
13324
+ __typename?: "NotificationDeliveryPreferencesChannel";
13325
+ } & NotificationDeliveryPreferencesChannelFragment>;
13326
+ };
13327
+ export declare type NotificationDeliveryPreferencesChannelFragment = {
13328
+ __typename: "NotificationDeliveryPreferencesChannel";
13329
+ } & Pick<NotificationDeliveryPreferencesChannel, "notificationsDisabled"> & {
13330
+ schedule: {
13331
+ __typename?: "NotificationDeliveryPreferencesSchedule";
13332
+ } & NotificationDeliveryPreferencesScheduleFragment;
13333
+ };
13334
+ export declare type NotificationDeliveryPreferencesDayFragment = {
13335
+ __typename: "NotificationDeliveryPreferencesDay";
13336
+ } & Pick<NotificationDeliveryPreferencesDay, "end" | "start">;
13337
+ export declare type NotificationDeliveryPreferencesScheduleFragment = {
13338
+ __typename: "NotificationDeliveryPreferencesSchedule";
13339
+ } & Pick<NotificationDeliveryPreferencesSchedule, "disabled"> & {
13340
+ friday: {
13341
+ __typename?: "NotificationDeliveryPreferencesDay";
13342
+ } & NotificationDeliveryPreferencesDayFragment;
13343
+ monday: {
13344
+ __typename?: "NotificationDeliveryPreferencesDay";
13345
+ } & NotificationDeliveryPreferencesDayFragment;
13346
+ saturday: {
13347
+ __typename?: "NotificationDeliveryPreferencesDay";
13348
+ } & NotificationDeliveryPreferencesDayFragment;
13349
+ sunday: {
13350
+ __typename?: "NotificationDeliveryPreferencesDay";
13351
+ } & NotificationDeliveryPreferencesDayFragment;
13352
+ thursday: {
13353
+ __typename?: "NotificationDeliveryPreferencesDay";
13354
+ } & NotificationDeliveryPreferencesDayFragment;
13355
+ tuesday: {
13356
+ __typename?: "NotificationDeliveryPreferencesDay";
13357
+ } & NotificationDeliveryPreferencesDayFragment;
13358
+ wednesday: {
13359
+ __typename?: "NotificationDeliveryPreferencesDay";
13360
+ } & NotificationDeliveryPreferencesDayFragment;
13361
+ };
12896
13362
  export declare type PushSubscriptionFragment = {
12897
13363
  __typename: "PushSubscription";
12898
13364
  } & Pick<PushSubscription, "updatedAt" | "archivedAt" | "createdAt" | "id">;
@@ -12954,7 +13420,23 @@ export declare type EntityExternalLinkFragment = {
12954
13420
  };
12955
13421
  export declare type IssueImportFragment = {
12956
13422
  __typename: "IssueImport";
12957
- } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
13423
+ } & Pick<IssueImport, "progress" | "errorMetadata" | "csvFileUrl" | "serviceMetadata" | "teamName" | "mapping" | "creatorId" | "updatedAt" | "service" | "status" | "archivedAt" | "createdAt" | "id" | "error">;
13424
+ export declare type InitiativeNotificationFragment = {
13425
+ __typename: "InitiativeNotification";
13426
+ } & Pick<InitiativeNotification, "type" | "updatedAt" | "emailedAt" | "readAt" | "unsnoozedAt" | "archivedAt" | "createdAt" | "snoozedUntilAt" | "id"> & {
13427
+ botActor?: Maybe<{
13428
+ __typename?: "ActorBot";
13429
+ } & ActorBotFragment>;
13430
+ externalUserActor?: Maybe<{
13431
+ __typename?: "ExternalUser";
13432
+ } & Pick<ExternalUser, "id">>;
13433
+ actor?: Maybe<{
13434
+ __typename?: "User";
13435
+ } & Pick<User, "id">>;
13436
+ user: {
13437
+ __typename?: "User";
13438
+ } & Pick<User, "id">;
13439
+ };
12958
13440
  export declare type IntegrationFragment = {
12959
13441
  __typename: "Integration";
12960
13442
  } & Pick<Integration, "service" | "updatedAt" | "archivedAt" | "createdAt" | "id"> & {
@@ -13093,7 +13575,7 @@ export declare type OrganizationFragment = {
13093
13575
  };
13094
13576
  export declare type AuthOrganizationFragment = {
13095
13577
  __typename: "AuthOrganization";
13096
- } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
13578
+ } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "releaseChannel" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "enabled" | "userCount">;
13097
13579
  export declare type TeamFragment = {
13098
13580
  __typename: "Team";
13099
13581
  } & Pick<Team, "cycleIssueAutoAssignCompleted" | "cycleLockToActive" | "cycleIssueAutoAssignStarted" | "cycleCalenderUrl" | "upcomingCycleCount" | "issueCount" | "autoArchivePeriod" | "autoClosePeriod" | "autoCloseStateId" | "cycleCooldownTime" | "cycleStartDay" | "cycleDuration" | "icon" | "defaultTemplateForMembersId" | "defaultTemplateForNonMembersId" | "issueEstimationType" | "updatedAt" | "color" | "description" | "name" | "key" | "archivedAt" | "createdAt" | "timezone" | "id" | "inviteHash" | "defaultIssueEstimate" | "setIssueSortOrderOnStateChange" | "requirePriorityToLeaveTriage" | "issueOrderingNoPriorityFirst" | "scimManaged" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
@@ -13164,7 +13646,7 @@ export declare type TeamMembershipFragment = {
13164
13646
  };
13165
13647
  export declare type OrganizationDomainFragment = {
13166
13648
  __typename: "OrganizationDomain";
13167
- } & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "authType" | "claimed"> & {
13649
+ } & Pick<OrganizationDomain, "name" | "verificationEmail" | "verified" | "disableOrganizationCreation" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "authType" | "claimed"> & {
13168
13650
  creator?: Maybe<{
13169
13651
  __typename?: "User";
13170
13652
  } & Pick<User, "id">>;
@@ -13172,13 +13654,6 @@ export declare type OrganizationDomainFragment = {
13172
13654
  export declare type FrontSettingsFragment = {
13173
13655
  __typename: "FrontSettings";
13174
13656
  } & Pick<FrontSettings, "automateTicketReopeningOnComment" | "automateTicketReopeningOnCancellation" | "automateTicketReopeningOnCompletion" | "sendNoteOnStatusChange" | "sendNoteOnComment">;
13175
- export declare type GithubOAuthTokenPayloadFragment = {
13176
- __typename: "GithubOAuthTokenPayload";
13177
- } & Pick<GithubOAuthTokenPayload, "token"> & {
13178
- organizations?: Maybe<Array<{
13179
- __typename?: "GithubOrg";
13180
- } & GithubOrgFragment>>;
13181
- };
13182
13657
  export declare type GitHubRepoFragment = {
13183
13658
  __typename: "GitHubRepo";
13184
13659
  } & Pick<GitHubRepo, "id" | "fullName">;
@@ -13219,7 +13694,7 @@ export declare type JiraPersonalSettingsFragment = {
13219
13694
  } & Pick<JiraPersonalSettings, "siteName">;
13220
13695
  export declare type JiraSettingsFragment = {
13221
13696
  __typename: "JiraSettings";
13222
- } & Pick<JiraSettings, "isJiraServer"> & {
13697
+ } & Pick<JiraSettings, "setupPending" | "isJiraServer" | "manualSetup"> & {
13223
13698
  projects: Array<{
13224
13699
  __typename?: "JiraProjectData";
13225
13700
  } & JiraProjectDataFragment>;
@@ -13269,9 +13744,16 @@ export declare type JiraProjectDataFragment = {
13269
13744
  export declare type GitHubPersonalSettingsFragment = {
13270
13745
  __typename: "GitHubPersonalSettings";
13271
13746
  } & Pick<GitHubPersonalSettings, "login">;
13747
+ export declare type GitHubImportSettingsFragment = {
13748
+ __typename: "GitHubImportSettings";
13749
+ } & Pick<GitHubImportSettings, "orgLogin" | "orgAvatarUrl" | "orgType"> & {
13750
+ repositories: Array<{
13751
+ __typename?: "GitHubRepo";
13752
+ } & GitHubRepoFragment>;
13753
+ };
13272
13754
  export declare type GitHubSettingsFragment = {
13273
13755
  __typename: "GitHubSettings";
13274
- } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl"> & {
13756
+ } & Pick<GitHubSettings, "orgLogin" | "orgAvatarUrl" | "orgType"> & {
13275
13757
  repositoriesMapping?: Maybe<Array<{
13276
13758
  __typename?: "TeamRepoMapping";
13277
13759
  } & TeamRepoMappingFragment>>;
@@ -13469,16 +13951,9 @@ export declare type UserAuthorizedApplicationFragment = {
13469
13951
  export declare type ApplicationFragment = {
13470
13952
  __typename: "Application";
13471
13953
  } & Pick<Application, "name" | "imageUrl" | "description" | "developer" | "id" | "clientId" | "developerUrl">;
13472
- export declare type GithubOrgFragment = {
13473
- __typename: "GithubOrg";
13474
- } & Pick<GithubOrg, "id" | "login" | "isPersonal"> & {
13475
- repositories: Array<{
13476
- __typename?: "GithubRepo";
13477
- } & GithubRepoFragment>;
13478
- };
13479
- export declare type GithubRepoFragment = {
13480
- __typename: "GithubRepo";
13481
- } & Pick<GithubRepo, "id" | "name">;
13954
+ export declare type PasskeyFragment = {
13955
+ __typename: "Passkey";
13956
+ } & Pick<Passkey, "userAgent" | "updatedAt" | "ip" | "locationCity" | "locationCountryCode" | "locationCountry" | "locationRegionCode" | "createdAt" | "lastUsedAt" | "clientType" | "browserType" | "aaguid" | "id" | "label" | "lastUsedSessionId">;
13482
13957
  export declare type OauthClientApprovalFragment = {
13483
13958
  __typename: "OauthClientApproval";
13484
13959
  } & Pick<OauthClientApproval, "updatedAt" | "requesterId" | "responderId" | "requestReason" | "denyReason" | "scopes" | "status" | "archivedAt" | "createdAt" | "id" | "oauthClientId">;
@@ -13487,13 +13962,13 @@ export declare type SentrySettingsFragment = {
13487
13962
  } & Pick<SentrySettings, "organizationSlug">;
13488
13963
  export declare type SlackSettingsFragment = {
13489
13964
  __typename: "SlackSettings";
13490
- } & Pick<SlackSettings, "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention" | "shouldUnfurl">;
13965
+ } & Pick<SlackSettings, "enterpriseId" | "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention" | "shouldUnfurl">;
13491
13966
  export declare type SharedSlackSettingsFragment = {
13492
13967
  __typename: "SharedSlackSettings";
13493
- } & Pick<SharedSlackSettings, "enterpriseName" | "teamId" | "teamName" | "shouldUnfurl">;
13968
+ } & Pick<SharedSlackSettings, "enterpriseId" | "enterpriseName" | "teamId" | "teamName" | "shouldUnfurl">;
13494
13969
  export declare type SlackAsksSettingsFragment = {
13495
13970
  __typename: "SlackAsksSettings";
13496
- } & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName" | "canAdministrate" | "shouldUnfurl"> & {
13971
+ } & Pick<SlackAsksSettings, "enterpriseId" | "enterpriseName" | "teamId" | "teamName" | "canAdministrate" | "shouldUnfurl"> & {
13497
13972
  slackChannelMapping?: Maybe<Array<{
13498
13973
  __typename?: "SlackChannelNameMapping";
13499
13974
  } & SlackChannelNameMappingFragment>>;
@@ -13520,6 +13995,9 @@ export declare type IntegrationSettingsFragment = {
13520
13995
  gitHub?: Maybe<{
13521
13996
  __typename?: "GitHubSettings";
13522
13997
  } & GitHubSettingsFragment>;
13998
+ gitHubImport?: Maybe<{
13999
+ __typename?: "GitHubImportSettings";
14000
+ } & GitHubImportSettingsFragment>;
13523
14001
  gitHubPersonal?: Maybe<{
13524
14002
  __typename?: "GitHubPersonalSettings";
13525
14003
  } & GitHubPersonalSettingsFragment>;
@@ -13556,6 +14034,9 @@ export declare type IntegrationSettingsFragment = {
13556
14034
  slackAsks?: Maybe<{
13557
14035
  __typename?: "SlackAsksSettings";
13558
14036
  } & SlackAsksSettingsFragment>;
14037
+ slackCustomViewNotifications?: Maybe<{
14038
+ __typename?: "SlackPostSettings";
14039
+ } & SlackPostSettingsFragment>;
13559
14040
  slackOrgProjectUpdatesPost?: Maybe<{
13560
14041
  __typename?: "SlackPostSettings";
13561
14042
  } & SlackPostSettingsFragment>;
@@ -13579,6 +14060,9 @@ export declare type PaidSubscriptionFragment = {
13579
14060
  export declare type UserSettingsFragment = {
13580
14061
  __typename: "UserSettings";
13581
14062
  } & Pick<UserSettings, "calendarHash" | "unsubscribedFrom" | "updatedAt" | "notificationPreferences" | "archivedAt" | "createdAt" | "id" | "subscribedToDPA" | "subscribedToChangelog" | "subscribedToInviteAccepted" | "subscribedToPrivacyLegalUpdates" | "subscribedToUnreadNotificationsReminder" | "showFullUserNames"> & {
14063
+ notificationDeliveryPreferences: {
14064
+ __typename?: "NotificationDeliveryPreferences";
14065
+ } & NotificationDeliveryPreferencesFragment;
13582
14066
  user: {
13583
14067
  __typename?: "User";
13584
14068
  } & Pick<User, "id">;
@@ -13639,6 +14123,9 @@ export declare type ViewPreferencesFragment = {
13639
14123
  __typename?: "ViewPreferencesValues";
13640
14124
  } & ViewPreferencesValuesFragment;
13641
14125
  };
14126
+ export declare type IssueImportSyncCheckPayloadFragment = {
14127
+ __typename: "IssueImportSyncCheckPayload";
14128
+ } & Pick<IssueImportSyncCheckPayload, "error" | "canSync">;
13642
14129
  export declare type AuditEntryFragment = {
13643
14130
  __typename: "AuditEntry";
13644
14131
  } & Pick<AuditEntry, "requestInformation" | "metadata" | "countryCode" | "ip" | "actorId" | "updatedAt" | "archivedAt" | "createdAt" | "id" | "type"> & {
@@ -13724,7 +14211,7 @@ export declare type AuthIntegrationFragment = {
13724
14211
  } & Pick<AuthIntegration, "id">;
13725
14212
  export declare type AuthOauthClientFragment = {
13726
14213
  __typename: "AuthOauthClient";
13727
- } & Pick<AuthOauthClient, "imageUrl" | "description" | "redirectUris" | "developer" | "clientId" | "name" | "clientSecret" | "creatorId" | "organizationId" | "id" | "developerUrl" | "webhookUrl" | "publicEnabled" | "archivedAt">;
14214
+ } & Pick<AuthOauthClient, "imageUrl" | "description" | "redirectUris" | "developer" | "clientId" | "name" | "clientSecret" | "creatorId" | "organizationId" | "webhookResourceTypes" | "id" | "developerUrl" | "webhookUrl" | "webhookSecret" | "publicEnabled" | "archivedAt">;
13728
14215
  export declare type AuthOauthClientWithTokensFragment = {
13729
14216
  __typename: "AuthOauthClientWithTokens";
13730
14217
  } & {
@@ -13737,7 +14224,7 @@ export declare type AuthOauthClientWithTokensFragment = {
13737
14224
  };
13738
14225
  export declare type AuthOrganizationDomainFragment = {
13739
14226
  __typename: "AuthOrganizationDomain";
13740
- } & Pick<AuthOrganizationDomain, "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
14227
+ } & Pick<AuthOrganizationDomain, "disableOrganizationCreation" | "id" | "authType" | "claimed" | "name" | "organizationId" | "verified">;
13741
14228
  export declare type AuthOrganizationExistsPayloadFragment = {
13742
14229
  __typename: "AuthOrganizationExistsPayload";
13743
14230
  } & Pick<AuthOrganizationExistsPayload, "success" | "exists">;
@@ -13754,6 +14241,9 @@ export declare type AuthResolverResponseFragment = {
13754
14241
  users: Array<{
13755
14242
  __typename?: "AuthUser";
13756
14243
  } & AuthUserFragment>;
14244
+ lockedUsers: Array<{
14245
+ __typename?: "AuthUser";
14246
+ } & AuthUserFragment>;
13757
14247
  lockedOrganizations?: Maybe<Array<{
13758
14248
  __typename?: "AuthOrganization";
13759
14249
  } & AuthOrganizationFragment>>;
@@ -13990,6 +14480,16 @@ export declare type ExternalUserConnectionFragment = {
13990
14480
  __typename?: "PageInfo";
13991
14481
  } & PageInfoFragment;
13992
14482
  };
14483
+ export declare type FacetConnectionFragment = {
14484
+ __typename: "FacetConnection";
14485
+ } & {
14486
+ nodes: Array<{
14487
+ __typename?: "Facet";
14488
+ } & FacetFragment>;
14489
+ pageInfo: {
14490
+ __typename?: "PageInfo";
14491
+ } & PageInfoFragment;
14492
+ };
13993
14493
  export declare type FavoriteConnectionFragment = {
13994
14494
  __typename: "FavoriteConnection";
13995
14495
  } & {
@@ -14336,6 +14836,9 @@ declare type Node_GitAutomationTargetBranch_Fragment = {
14336
14836
  declare type Node_Initiative_Fragment = {
14337
14837
  __typename: "Initiative";
14338
14838
  } & Pick<Initiative, "id">;
14839
+ declare type Node_InitiativeNotification_Fragment = {
14840
+ __typename: "InitiativeNotification";
14841
+ } & Pick<InitiativeNotification, "id">;
14339
14842
  declare type Node_InitiativeToProject_Fragment = {
14340
14843
  __typename: "InitiativeToProject";
14341
14844
  } & Pick<InitiativeToProject, "id">;
@@ -14453,6 +14956,9 @@ declare type Node_TeamNotificationSubscription_Fragment = {
14453
14956
  declare type Node_Template_Fragment = {
14454
14957
  __typename: "Template";
14455
14958
  } & Pick<Template, "id">;
14959
+ declare type Node_TextDraft_Fragment = {
14960
+ __typename: "TextDraft";
14961
+ } & Pick<TextDraft, "id">;
14456
14962
  declare type Node_TimeSchedule_Fragment = {
14457
14963
  __typename: "TimeSchedule";
14458
14964
  } & Pick<TimeSchedule, "id">;
@@ -14483,13 +14989,15 @@ declare type Node_WorkflowDefinition_Fragment = {
14483
14989
  declare type Node_WorkflowState_Fragment = {
14484
14990
  __typename: "WorkflowState";
14485
14991
  } & Pick<WorkflowState, "id">;
14486
- export declare type NodeFragment = Node_ApiKey_Fragment | Node_Attachment_Fragment | Node_AuditEntry_Fragment | Node_Comment_Fragment | Node_Company_Fragment | Node_CustomView_Fragment | Node_CustomViewNotificationSubscription_Fragment | Node_Cycle_Fragment | Node_CycleNotificationSubscription_Fragment | Node_DiaryEntry_Fragment | Node_Document_Fragment | Node_DocumentContent_Fragment | Node_DocumentContentHistory_Fragment | Node_DocumentNotification_Fragment | Node_DocumentSearchResult_Fragment | Node_EmailIntakeAddress_Fragment | Node_Emoji_Fragment | Node_EntityExternalLink_Fragment | Node_ExternalUser_Fragment | Node_Facet_Fragment | Node_Favorite_Fragment | Node_GitAutomationState_Fragment | Node_GitAutomationTargetBranch_Fragment | Node_Initiative_Fragment | Node_InitiativeToProject_Fragment | Node_Integration_Fragment | Node_IntegrationTemplate_Fragment | Node_IntegrationsSettings_Fragment | Node_Issue_Fragment | Node_IssueDraft_Fragment | Node_IssueHistory_Fragment | Node_IssueImport_Fragment | Node_IssueLabel_Fragment | Node_IssueNotification_Fragment | Node_IssueRelation_Fragment | Node_IssueSearchResult_Fragment | Node_LabelNotificationSubscription_Fragment | Node_OauthClient_Fragment | Node_OauthClientApproval_Fragment | Node_OauthClientApprovalNotification_Fragment | Node_Organization_Fragment | Node_OrganizationDomain_Fragment | Node_OrganizationInvite_Fragment | Node_PaidSubscription_Fragment | Node_Project_Fragment | Node_ProjectLink_Fragment | Node_ProjectMilestone_Fragment | Node_ProjectNotification_Fragment | Node_ProjectNotificationSubscription_Fragment | Node_ProjectRelation_Fragment | Node_ProjectSearchResult_Fragment | Node_ProjectStatus_Fragment | Node_ProjectUpdate_Fragment | Node_ProjectUpdateInteraction_Fragment | Node_PushSubscription_Fragment | Node_Reaction_Fragment | Node_Reminder_Fragment | Node_Roadmap_Fragment | Node_RoadmapToProject_Fragment | Node_Team_Fragment | Node_TeamMembership_Fragment | Node_TeamNotificationSubscription_Fragment | Node_Template_Fragment | Node_TimeSchedule_Fragment | Node_TriageResponsibility_Fragment | Node_User_Fragment | Node_UserNotificationSubscription_Fragment | Node_UserSettings_Fragment | Node_ViewPreferences_Fragment | Node_Webhook_Fragment | Node_WorkflowCronJobDefinition_Fragment | Node_WorkflowDefinition_Fragment | Node_WorkflowState_Fragment;
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;
14487
14993
  export declare type NotificationBatchActionPayloadFragment = {
14488
14994
  __typename: "NotificationBatchActionPayload";
14489
14995
  } & Pick<NotificationBatchActionPayload, "lastSyncId" | "success"> & {
14490
14996
  notifications: Array<({
14491
14997
  __typename?: "DocumentNotification";
14492
14998
  } & Notification_DocumentNotification_Fragment) | ({
14999
+ __typename?: "InitiativeNotification";
15000
+ } & Notification_InitiativeNotification_Fragment) | ({
14493
15001
  __typename?: "IssueNotification";
14494
15002
  } & Notification_IssueNotification_Fragment) | ({
14495
15003
  __typename?: "OauthClientApprovalNotification";
@@ -14503,6 +15011,8 @@ export declare type NotificationConnectionFragment = {
14503
15011
  nodes: Array<({
14504
15012
  __typename?: "DocumentNotification";
14505
15013
  } & Notification_DocumentNotification_Fragment) | ({
15014
+ __typename?: "InitiativeNotification";
15015
+ } & Notification_InitiativeNotification_Fragment) | ({
14506
15016
  __typename?: "IssueNotification";
14507
15017
  } & Notification_IssueNotification_Fragment) | ({
14508
15018
  __typename?: "OauthClientApprovalNotification";
@@ -14519,6 +15029,8 @@ export declare type NotificationPayloadFragment = {
14519
15029
  notification: ({
14520
15030
  __typename?: "DocumentNotification";
14521
15031
  } & Notification_DocumentNotification_Fragment) | ({
15032
+ __typename?: "InitiativeNotification";
15033
+ } & Notification_InitiativeNotification_Fragment) | ({
14522
15034
  __typename?: "IssueNotification";
14523
15035
  } & Notification_IssueNotification_Fragment) | ({
14524
15036
  __typename?: "OauthClientApprovalNotification";
@@ -14618,18 +15130,24 @@ export declare type OrganizationInvitePayloadFragment = {
14618
15130
  __typename?: "OrganizationInvite";
14619
15131
  } & Pick<OrganizationInvite, "id">;
14620
15132
  };
15133
+ export declare type OrganizationMetaFragment = {
15134
+ __typename: "OrganizationMeta";
15135
+ } & Pick<OrganizationMeta, "allowedAuthServices" | "region">;
14621
15136
  export declare type OrganizationPayloadFragment = {
14622
15137
  __typename: "OrganizationPayload";
14623
15138
  } & Pick<OrganizationPayload, "lastSyncId" | "success">;
14624
15139
  export declare type OrganizationRegionResponseFragment = {
14625
15140
  __typename: "OrganizationRegionResponse";
14626
15141
  } & Pick<OrganizationRegionResponse, "region" | "success">;
14627
- export declare type OrganizationStartPlusTrialPayloadFragment = {
14628
- __typename: "OrganizationStartPlusTrialPayload";
14629
- } & Pick<OrganizationStartPlusTrialPayload, "success">;
15142
+ export declare type OrganizationStartTrialPayloadFragment = {
15143
+ __typename: "OrganizationStartTrialPayload";
15144
+ } & Pick<OrganizationStartTrialPayload, "success">;
14630
15145
  export declare type PageInfoFragment = {
14631
15146
  __typename: "PageInfo";
14632
15147
  } & Pick<PageInfo, "startCursor" | "endCursor" | "hasPreviousPage" | "hasNextPage">;
15148
+ export declare type PasskeyLoginStartResponseFragment = {
15149
+ __typename: "PasskeyLoginStartResponse";
15150
+ } & Pick<PasskeyLoginStartResponse, "options" | "success">;
14633
15151
  export declare type ProjectConnectionFragment = {
14634
15152
  __typename: "ProjectConnection";
14635
15153
  } & {
@@ -14640,6 +15158,9 @@ export declare type ProjectConnectionFragment = {
14640
15158
  __typename?: "PageInfo";
14641
15159
  } & PageInfoFragment;
14642
15160
  };
15161
+ export declare type ProjectDetailSuggestionPayloadFragment = {
15162
+ __typename: "ProjectDetailSuggestionPayload";
15163
+ } & Pick<ProjectDetailSuggestionPayload, "color" | "icon">;
14643
15164
  export declare type ProjectFilterSuggestionPayloadFragment = {
14644
15165
  __typename: "ProjectFilterSuggestionPayload";
14645
15166
  } & Pick<ProjectFilterSuggestionPayload, "filter">;
@@ -14897,6 +15418,9 @@ export declare type SlackChannelConnectPayloadFragment = {
14897
15418
  export declare type SsoUrlFromEmailResponseFragment = {
14898
15419
  __typename: "SsoUrlFromEmailResponse";
14899
15420
  } & Pick<SsoUrlFromEmailResponse, "samlSsoUrl" | "success">;
15421
+ export declare type SuccessPayloadFragment = {
15422
+ __typename: "SuccessPayload";
15423
+ } & Pick<SuccessPayload, "lastSyncId" | "success">;
14900
15424
  export declare type SummaryPayloadFragment = {
14901
15425
  __typename: "SummaryPayload";
14902
15426
  } & Pick<SummaryPayload, "summary">;
@@ -15611,6 +16135,27 @@ export declare type CustomView_OrganizationViewPreferences_PreferencesQuery = {
15611
16135
  }>;
15612
16136
  };
15613
16137
  };
16138
+ export declare type CustomView_ProjectsQueryVariables = Exact<{
16139
+ id: Scalars["String"];
16140
+ after?: Maybe<Scalars["String"]>;
16141
+ before?: Maybe<Scalars["String"]>;
16142
+ filter?: Maybe<ProjectFilter>;
16143
+ first?: Maybe<Scalars["Int"]>;
16144
+ includeArchived?: Maybe<Scalars["Boolean"]>;
16145
+ last?: Maybe<Scalars["Int"]>;
16146
+ orderBy?: Maybe<PaginationOrderBy>;
16147
+ }>;
16148
+ export declare type CustomView_ProjectsQuery = {
16149
+ __typename?: "Query";
16150
+ } & {
16151
+ customView: {
16152
+ __typename?: "CustomView";
16153
+ } & {
16154
+ projects: {
16155
+ __typename?: "ProjectConnection";
16156
+ } & ProjectConnectionFragment;
16157
+ };
16158
+ };
15614
16159
  export declare type CustomView_UserViewPreferencesQueryVariables = Exact<{
15615
16160
  id: Scalars["String"];
15616
16161
  }>;
@@ -16200,15 +16745,15 @@ export declare type IssueImportCheckCsvQuery = {
16200
16745
  __typename?: "IssueImportCheckPayload";
16201
16746
  } & IssueImportCheckPayloadFragment;
16202
16747
  };
16203
- export declare type IssueImportFinishGithubOAuthQueryVariables = Exact<{
16204
- code: Scalars["String"];
16748
+ export declare type IssueImportCheckSyncQueryVariables = Exact<{
16749
+ issueImportId: Scalars["String"];
16205
16750
  }>;
16206
- export declare type IssueImportFinishGithubOAuthQuery = {
16751
+ export declare type IssueImportCheckSyncQuery = {
16207
16752
  __typename?: "Query";
16208
16753
  } & {
16209
- issueImportFinishGithubOAuth: {
16210
- __typename?: "GithubOAuthTokenPayload";
16211
- } & GithubOAuthTokenPayloadFragment;
16754
+ issueImportCheckSync: {
16755
+ __typename?: "IssueImportSyncCheckPayload";
16756
+ } & IssueImportSyncCheckPayloadFragment;
16212
16757
  };
16213
16758
  export declare type IssueLabelQueryVariables = Exact<{
16214
16759
  id: Scalars["String"];
@@ -16546,6 +17091,8 @@ export declare type NotificationQuery = {
16546
17091
  notification: ({
16547
17092
  __typename?: "DocumentNotification";
16548
17093
  } & Notification_DocumentNotification_Fragment) | ({
17094
+ __typename?: "InitiativeNotification";
17095
+ } & Notification_InitiativeNotification_Fragment) | ({
16549
17096
  __typename?: "IssueNotification";
16550
17097
  } & Notification_IssueNotification_Fragment) | ({
16551
17098
  __typename?: "OauthClientApprovalNotification";
@@ -17811,6 +18358,242 @@ export declare type UserSettingsQuery = {
17811
18358
  __typename?: "UserSettings";
17812
18359
  } & UserSettingsFragment;
17813
18360
  };
18361
+ export declare type UserSettings_NotificationDeliveryPreferencesQueryVariables = Exact<{
18362
+ [key: string]: never;
18363
+ }>;
18364
+ export declare type UserSettings_NotificationDeliveryPreferencesQuery = {
18365
+ __typename?: "Query";
18366
+ } & {
18367
+ userSettings: {
18368
+ __typename?: "UserSettings";
18369
+ } & {
18370
+ notificationDeliveryPreferences: {
18371
+ __typename?: "NotificationDeliveryPreferences";
18372
+ } & NotificationDeliveryPreferencesFragment;
18373
+ };
18374
+ };
18375
+ export declare type UserSettings_NotificationDeliveryPreferences_MobileQueryVariables = Exact<{
18376
+ [key: string]: never;
18377
+ }>;
18378
+ export declare type UserSettings_NotificationDeliveryPreferences_MobileQuery = {
18379
+ __typename?: "Query";
18380
+ } & {
18381
+ userSettings: {
18382
+ __typename?: "UserSettings";
18383
+ } & {
18384
+ notificationDeliveryPreferences: {
18385
+ __typename?: "NotificationDeliveryPreferences";
18386
+ } & {
18387
+ mobile?: Maybe<{
18388
+ __typename?: "NotificationDeliveryPreferencesChannel";
18389
+ } & NotificationDeliveryPreferencesChannelFragment>;
18390
+ };
18391
+ };
18392
+ };
18393
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQueryVariables = Exact<{
18394
+ [key: string]: never;
18395
+ }>;
18396
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQuery = {
18397
+ __typename?: "Query";
18398
+ } & {
18399
+ userSettings: {
18400
+ __typename?: "UserSettings";
18401
+ } & {
18402
+ notificationDeliveryPreferences: {
18403
+ __typename?: "NotificationDeliveryPreferences";
18404
+ } & {
18405
+ mobile?: Maybe<{
18406
+ __typename?: "NotificationDeliveryPreferencesChannel";
18407
+ } & {
18408
+ schedule: {
18409
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18410
+ } & NotificationDeliveryPreferencesScheduleFragment;
18411
+ }>;
18412
+ };
18413
+ };
18414
+ };
18415
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQueryVariables = Exact<{
18416
+ [key: string]: never;
18417
+ }>;
18418
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQuery = {
18419
+ __typename?: "Query";
18420
+ } & {
18421
+ userSettings: {
18422
+ __typename?: "UserSettings";
18423
+ } & {
18424
+ notificationDeliveryPreferences: {
18425
+ __typename?: "NotificationDeliveryPreferences";
18426
+ } & {
18427
+ mobile?: Maybe<{
18428
+ __typename?: "NotificationDeliveryPreferencesChannel";
18429
+ } & {
18430
+ schedule: {
18431
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18432
+ } & {
18433
+ friday: {
18434
+ __typename?: "NotificationDeliveryPreferencesDay";
18435
+ } & NotificationDeliveryPreferencesDayFragment;
18436
+ };
18437
+ }>;
18438
+ };
18439
+ };
18440
+ };
18441
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQueryVariables = Exact<{
18442
+ [key: string]: never;
18443
+ }>;
18444
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQuery = {
18445
+ __typename?: "Query";
18446
+ } & {
18447
+ userSettings: {
18448
+ __typename?: "UserSettings";
18449
+ } & {
18450
+ notificationDeliveryPreferences: {
18451
+ __typename?: "NotificationDeliveryPreferences";
18452
+ } & {
18453
+ mobile?: Maybe<{
18454
+ __typename?: "NotificationDeliveryPreferencesChannel";
18455
+ } & {
18456
+ schedule: {
18457
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18458
+ } & {
18459
+ monday: {
18460
+ __typename?: "NotificationDeliveryPreferencesDay";
18461
+ } & NotificationDeliveryPreferencesDayFragment;
18462
+ };
18463
+ }>;
18464
+ };
18465
+ };
18466
+ };
18467
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQueryVariables = Exact<{
18468
+ [key: string]: never;
18469
+ }>;
18470
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQuery = {
18471
+ __typename?: "Query";
18472
+ } & {
18473
+ userSettings: {
18474
+ __typename?: "UserSettings";
18475
+ } & {
18476
+ notificationDeliveryPreferences: {
18477
+ __typename?: "NotificationDeliveryPreferences";
18478
+ } & {
18479
+ mobile?: Maybe<{
18480
+ __typename?: "NotificationDeliveryPreferencesChannel";
18481
+ } & {
18482
+ schedule: {
18483
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18484
+ } & {
18485
+ saturday: {
18486
+ __typename?: "NotificationDeliveryPreferencesDay";
18487
+ } & NotificationDeliveryPreferencesDayFragment;
18488
+ };
18489
+ }>;
18490
+ };
18491
+ };
18492
+ };
18493
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQueryVariables = Exact<{
18494
+ [key: string]: never;
18495
+ }>;
18496
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQuery = {
18497
+ __typename?: "Query";
18498
+ } & {
18499
+ userSettings: {
18500
+ __typename?: "UserSettings";
18501
+ } & {
18502
+ notificationDeliveryPreferences: {
18503
+ __typename?: "NotificationDeliveryPreferences";
18504
+ } & {
18505
+ mobile?: Maybe<{
18506
+ __typename?: "NotificationDeliveryPreferencesChannel";
18507
+ } & {
18508
+ schedule: {
18509
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18510
+ } & {
18511
+ sunday: {
18512
+ __typename?: "NotificationDeliveryPreferencesDay";
18513
+ } & NotificationDeliveryPreferencesDayFragment;
18514
+ };
18515
+ }>;
18516
+ };
18517
+ };
18518
+ };
18519
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQueryVariables = Exact<{
18520
+ [key: string]: never;
18521
+ }>;
18522
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQuery = {
18523
+ __typename?: "Query";
18524
+ } & {
18525
+ userSettings: {
18526
+ __typename?: "UserSettings";
18527
+ } & {
18528
+ notificationDeliveryPreferences: {
18529
+ __typename?: "NotificationDeliveryPreferences";
18530
+ } & {
18531
+ mobile?: Maybe<{
18532
+ __typename?: "NotificationDeliveryPreferencesChannel";
18533
+ } & {
18534
+ schedule: {
18535
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18536
+ } & {
18537
+ thursday: {
18538
+ __typename?: "NotificationDeliveryPreferencesDay";
18539
+ } & NotificationDeliveryPreferencesDayFragment;
18540
+ };
18541
+ }>;
18542
+ };
18543
+ };
18544
+ };
18545
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQueryVariables = Exact<{
18546
+ [key: string]: never;
18547
+ }>;
18548
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQuery = {
18549
+ __typename?: "Query";
18550
+ } & {
18551
+ userSettings: {
18552
+ __typename?: "UserSettings";
18553
+ } & {
18554
+ notificationDeliveryPreferences: {
18555
+ __typename?: "NotificationDeliveryPreferences";
18556
+ } & {
18557
+ mobile?: Maybe<{
18558
+ __typename?: "NotificationDeliveryPreferencesChannel";
18559
+ } & {
18560
+ schedule: {
18561
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18562
+ } & {
18563
+ tuesday: {
18564
+ __typename?: "NotificationDeliveryPreferencesDay";
18565
+ } & NotificationDeliveryPreferencesDayFragment;
18566
+ };
18567
+ }>;
18568
+ };
18569
+ };
18570
+ };
18571
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQueryVariables = Exact<{
18572
+ [key: string]: never;
18573
+ }>;
18574
+ export declare type UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQuery = {
18575
+ __typename?: "Query";
18576
+ } & {
18577
+ userSettings: {
18578
+ __typename?: "UserSettings";
18579
+ } & {
18580
+ notificationDeliveryPreferences: {
18581
+ __typename?: "NotificationDeliveryPreferences";
18582
+ } & {
18583
+ mobile?: Maybe<{
18584
+ __typename?: "NotificationDeliveryPreferencesChannel";
18585
+ } & {
18586
+ schedule: {
18587
+ __typename?: "NotificationDeliveryPreferencesSchedule";
18588
+ } & {
18589
+ wednesday: {
18590
+ __typename?: "NotificationDeliveryPreferencesDay";
18591
+ } & NotificationDeliveryPreferencesDayFragment;
18592
+ };
18593
+ }>;
18594
+ };
18595
+ };
18596
+ };
17814
18597
  export declare type UsersQueryVariables = Exact<{
17815
18598
  after?: Maybe<Scalars["String"]>;
17816
18599
  before?: Maybe<Scalars["String"]>;
@@ -17999,26 +18782,6 @@ export declare type AirbyteIntegrationConnectMutation = {
17999
18782
  __typename?: "IntegrationPayload";
18000
18783
  } & IntegrationPayloadFragment;
18001
18784
  };
18002
- export declare type CreateApiKeyMutationVariables = Exact<{
18003
- input: ApiKeyCreateInput;
18004
- }>;
18005
- export declare type CreateApiKeyMutation = {
18006
- __typename?: "Mutation";
18007
- } & {
18008
- apiKeyCreate: {
18009
- __typename?: "ApiKeyPayload";
18010
- } & ApiKeyPayloadFragment;
18011
- };
18012
- export declare type DeleteApiKeyMutationVariables = Exact<{
18013
- id: Scalars["String"];
18014
- }>;
18015
- export declare type DeleteApiKeyMutation = {
18016
- __typename?: "Mutation";
18017
- } & {
18018
- apiKeyDelete: {
18019
- __typename?: "DeletePayload";
18020
- } & DeletePayloadFragment;
18021
- };
18022
18785
  export declare type ArchiveAttachmentMutationVariables = Exact<{
18023
18786
  id: Scalars["String"];
18024
18787
  }>;
@@ -18206,6 +18969,16 @@ export declare type AttachmentLinkZendeskMutation = {
18206
18969
  __typename?: "AttachmentPayload";
18207
18970
  } & AttachmentPayloadFragment;
18208
18971
  };
18972
+ export declare type AttachmentSyncToSlackMutationVariables = Exact<{
18973
+ id: Scalars["String"];
18974
+ }>;
18975
+ export declare type AttachmentSyncToSlackMutation = {
18976
+ __typename?: "Mutation";
18977
+ } & {
18978
+ attachmentSyncToSlack: {
18979
+ __typename?: "AttachmentPayload";
18980
+ } & AttachmentPayloadFragment;
18981
+ };
18209
18982
  export declare type UpdateAttachmentMutationVariables = Exact<{
18210
18983
  id: Scalars["String"];
18211
18984
  input: AttachmentUpdateInput;
@@ -18434,17 +19207,6 @@ export declare type DeleteDocumentMutation = {
18434
19207
  __typename?: "DeletePayload";
18435
19208
  } & DeletePayloadFragment;
18436
19209
  };
18437
- export declare type DocumentReminderMutationVariables = Exact<{
18438
- id: Scalars["String"];
18439
- reminderAt: Scalars["DateTime"];
18440
- }>;
18441
- export declare type DocumentReminderMutation = {
18442
- __typename?: "Mutation";
18443
- } & {
18444
- documentReminder: {
18445
- __typename?: "DocumentPayload";
18446
- } & DocumentPayloadFragment;
18447
- };
18448
19210
  export declare type UpdateDocumentMutationVariables = Exact<{
18449
19211
  id: Scalars["String"];
18450
19212
  input: DocumentUpdateInput;
@@ -18812,6 +19574,16 @@ export declare type IntegrationGithubConnectMutation = {
18812
19574
  __typename?: "IntegrationPayload";
18813
19575
  } & IntegrationPayloadFragment;
18814
19576
  };
19577
+ export declare type IntegrationGithubImportConnectMutationVariables = Exact<{
19578
+ installationId: Scalars["String"];
19579
+ }>;
19580
+ export declare type IntegrationGithubImportConnectMutation = {
19581
+ __typename?: "Mutation";
19582
+ } & {
19583
+ integrationGithubImportConnect: {
19584
+ __typename?: "IntegrationPayload";
19585
+ } & IntegrationPayloadFragment;
19586
+ };
18815
19587
  export declare type IntegrationGitlabConnectMutationVariables = Exact<{
18816
19588
  accessToken: Scalars["String"];
18817
19589
  gitlabUrl: Scalars["String"];
@@ -18931,6 +19703,18 @@ export declare type IntegrationSlackAsksMutation = {
18931
19703
  __typename?: "IntegrationPayload";
18932
19704
  } & IntegrationPayloadFragment;
18933
19705
  };
19706
+ export declare type IntegrationSlackCustomViewNotificationsMutationVariables = Exact<{
19707
+ code: Scalars["String"];
19708
+ customViewId: Scalars["String"];
19709
+ redirectUri: Scalars["String"];
19710
+ }>;
19711
+ export declare type IntegrationSlackCustomViewNotificationsMutation = {
19712
+ __typename?: "Mutation";
19713
+ } & {
19714
+ integrationSlackCustomViewNotifications: {
19715
+ __typename?: "SlackChannelConnectPayload";
19716
+ } & SlackChannelConnectPayloadFragment;
19717
+ };
18934
19718
  export declare type IntegrationSlackImportEmojisMutationVariables = Exact<{
18935
19719
  code: Scalars["String"];
18936
19720
  redirectUri: Scalars["String"];
@@ -19159,13 +19943,15 @@ export declare type IssueImportCreateClubhouseMutation = {
19159
19943
  } & IssueImportPayloadFragment;
19160
19944
  };
19161
19945
  export declare type IssueImportCreateGithubMutationVariables = Exact<{
19162
- githubRepoName: Scalars["String"];
19163
- githubRepoOwner: Scalars["String"];
19946
+ githubRepoId?: Maybe<Scalars["String"]>;
19947
+ githubRepoIds?: Maybe<Array<Scalars["Int"]> | Scalars["Int"]>;
19948
+ githubRepoName?: Maybe<Scalars["String"]>;
19949
+ githubRepoOwner?: Maybe<Scalars["String"]>;
19164
19950
  githubShouldImportOrgProjects?: Maybe<Scalars["Boolean"]>;
19165
- githubToken: Scalars["String"];
19166
- id?: Maybe<Scalars["String"]>;
19951
+ githubToken?: Maybe<Scalars["String"]>;
19167
19952
  includeClosedIssues?: Maybe<Scalars["Boolean"]>;
19168
19953
  instantProcess?: Maybe<Scalars["Boolean"]>;
19954
+ integrationId: Scalars["String"];
19169
19955
  organizationId?: Maybe<Scalars["String"]>;
19170
19956
  teamId?: Maybe<Scalars["String"]>;
19171
19957
  teamName?: Maybe<Scalars["String"]>;
@@ -19263,6 +20049,7 @@ export declare type UpdateIssueLabelMutation = {
19263
20049
  };
19264
20050
  export declare type CreateIssueRelationMutationVariables = Exact<{
19265
20051
  input: IssueRelationCreateInput;
20052
+ overrideCreatedAt?: Maybe<Scalars["DateTime"]>;
19266
20053
  }>;
19267
20054
  export declare type CreateIssueRelationMutation = {
19268
20055
  __typename?: "Mutation";
@@ -19603,15 +20390,15 @@ export declare type UpdateOrganizationInviteMutation = {
19603
20390
  __typename?: "OrganizationInvitePayload";
19604
20391
  } & OrganizationInvitePayloadFragment;
19605
20392
  };
19606
- export declare type OrganizationStartPlusTrialMutationVariables = Exact<{
20393
+ export declare type OrganizationStartTrialMutationVariables = Exact<{
19607
20394
  [key: string]: never;
19608
20395
  }>;
19609
- export declare type OrganizationStartPlusTrialMutation = {
20396
+ export declare type OrganizationStartTrialMutation = {
19610
20397
  __typename?: "Mutation";
19611
20398
  } & {
19612
- organizationStartPlusTrial: {
19613
- __typename?: "OrganizationStartPlusTrialPayload";
19614
- } & OrganizationStartPlusTrialPayloadFragment;
20399
+ organizationStartTrial: {
20400
+ __typename?: "OrganizationStartTrialPayload";
20401
+ } & OrganizationStartTrialPayloadFragment;
19615
20402
  };
19616
20403
  export declare type UpdateOrganizationMutationVariables = Exact<{
19617
20404
  input: OrganizationUpdateInput;
@@ -20387,6 +21174,7 @@ export declare const InitiativeArchivePayloadFragmentDoc: DocumentNode<Initiativ
20387
21174
  export declare const IssueArchivePayloadFragmentDoc: DocumentNode<IssueArchivePayloadFragment, unknown>;
20388
21175
  export declare const ActorBotFragmentDoc: DocumentNode<ActorBotFragment, unknown>;
20389
21176
  export declare const DocumentNotificationFragmentDoc: DocumentNode<DocumentNotificationFragment, unknown>;
21177
+ export declare const InitiativeNotificationFragmentDoc: DocumentNode<InitiativeNotificationFragment, unknown>;
20390
21178
  export declare const NotificationSubscriptionFragmentDoc: DocumentNode<NotificationSubscriptionFragment, unknown>;
20391
21179
  export declare const IssueNotificationFragmentDoc: DocumentNode<IssueNotificationFragment, unknown>;
20392
21180
  export declare const OauthClientApprovalFragmentDoc: DocumentNode<OauthClientApprovalFragment, unknown>;
@@ -20403,6 +21191,7 @@ export declare const LabelNotificationSubscriptionFragmentDoc: DocumentNode<Labe
20403
21191
  export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<ProjectNotificationSubscriptionFragment, unknown>;
20404
21192
  export declare const ReminderFragmentDoc: DocumentNode<ReminderFragment, unknown>;
20405
21193
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
21194
+ export declare const TextDraftFragmentDoc: DocumentNode<TextDraftFragment, unknown>;
20406
21195
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
20407
21196
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
20408
21197
  export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
@@ -20416,16 +21205,15 @@ export declare const AuthOauthClientWithScopeFragmentDoc: DocumentNode<AuthOauth
20416
21205
  export declare const AuthOauthClientWithMembershipsFragmentDoc: DocumentNode<AuthOauthClientWithMembershipsFragment, unknown>;
20417
21206
  export declare const AuthenticationSessionResponseFragmentDoc: DocumentNode<AuthenticationSessionResponseFragment, unknown>;
20418
21207
  export declare const OrganizationDomainFragmentDoc: DocumentNode<OrganizationDomainFragment, unknown>;
20419
- export declare const GithubRepoFragmentDoc: DocumentNode<GithubRepoFragment, unknown>;
20420
- export declare const GithubOrgFragmentDoc: DocumentNode<GithubOrgFragment, unknown>;
20421
- export declare const GithubOAuthTokenPayloadFragmentDoc: DocumentNode<GithubOAuthTokenPayloadFragment, unknown>;
20422
21208
  export declare const UserAuthorizedApplicationFragmentDoc: DocumentNode<UserAuthorizedApplicationFragment, unknown>;
20423
21209
  export declare const ApplicationFragmentDoc: DocumentNode<ApplicationFragment, unknown>;
21210
+ export declare const PasskeyFragmentDoc: DocumentNode<PasskeyFragment, unknown>;
20424
21211
  export declare const SharedSlackSettingsFragmentDoc: DocumentNode<SharedSlackSettingsFragment, unknown>;
20425
21212
  export declare const FrontSettingsFragmentDoc: DocumentNode<FrontSettingsFragment, unknown>;
20426
21213
  export declare const TeamRepoMappingFragmentDoc: DocumentNode<TeamRepoMappingFragment, unknown>;
20427
21214
  export declare const GitHubRepoFragmentDoc: DocumentNode<GitHubRepoFragment, unknown>;
20428
21215
  export declare const GitHubSettingsFragmentDoc: DocumentNode<GitHubSettingsFragment, unknown>;
21216
+ export declare const GitHubImportSettingsFragmentDoc: DocumentNode<GitHubImportSettingsFragment, unknown>;
20429
21217
  export declare const GitHubPersonalSettingsFragmentDoc: DocumentNode<GitHubPersonalSettingsFragment, unknown>;
20430
21218
  export declare const GitLabSettingsFragmentDoc: DocumentNode<GitLabSettingsFragment, unknown>;
20431
21219
  export declare const GoogleSheetsSettingsFragmentDoc: DocumentNode<GoogleSheetsSettingsFragment, unknown>;
@@ -20445,8 +21233,13 @@ export declare const SlackAsksSettingsFragmentDoc: DocumentNode<SlackAsksSetting
20445
21233
  export declare const SlackPostSettingsFragmentDoc: DocumentNode<SlackPostSettingsFragment, unknown>;
20446
21234
  export declare const ZendeskSettingsFragmentDoc: DocumentNode<ZendeskSettingsFragment, unknown>;
20447
21235
  export declare const IntegrationSettingsFragmentDoc: DocumentNode<IntegrationSettingsFragment, unknown>;
21236
+ export declare const NotificationDeliveryPreferencesDayFragmentDoc: DocumentNode<NotificationDeliveryPreferencesDayFragment, unknown>;
21237
+ export declare const NotificationDeliveryPreferencesScheduleFragmentDoc: DocumentNode<NotificationDeliveryPreferencesScheduleFragment, unknown>;
21238
+ export declare const NotificationDeliveryPreferencesChannelFragmentDoc: DocumentNode<NotificationDeliveryPreferencesChannelFragment, unknown>;
21239
+ export declare const NotificationDeliveryPreferencesFragmentDoc: DocumentNode<NotificationDeliveryPreferencesFragment, unknown>;
20448
21240
  export declare const UserSettingsFragmentDoc: DocumentNode<UserSettingsFragment, unknown>;
20449
21241
  export declare const AuthenticationSessionFragmentDoc: DocumentNode<AuthenticationSessionFragment, unknown>;
21242
+ export declare const IssueImportSyncCheckPayloadFragmentDoc: DocumentNode<IssueImportSyncCheckPayloadFragment, unknown>;
20450
21243
  export declare const ApiKeyFragmentDoc: DocumentNode<ApiKeyFragment, unknown>;
20451
21244
  export declare const PageInfoFragmentDoc: DocumentNode<PageInfoFragment, unknown>;
20452
21245
  export declare const ApiKeyConnectionFragmentDoc: DocumentNode<ApiKeyConnectionFragment, unknown>;
@@ -20513,6 +21306,8 @@ export declare const EntityExternalLinkConnectionFragmentDoc: DocumentNode<Entit
20513
21306
  export declare const EntityExternalLinkPayloadFragmentDoc: DocumentNode<EntityExternalLinkPayloadFragment, unknown>;
20514
21307
  export declare const ExternalUserFragmentDoc: DocumentNode<ExternalUserFragment, unknown>;
20515
21308
  export declare const ExternalUserConnectionFragmentDoc: DocumentNode<ExternalUserConnectionFragment, unknown>;
21309
+ export declare const FacetFragmentDoc: DocumentNode<FacetFragment, unknown>;
21310
+ export declare const FacetConnectionFragmentDoc: DocumentNode<FacetConnectionFragment, unknown>;
20516
21311
  export declare const FavoriteFragmentDoc: DocumentNode<FavoriteFragment, unknown>;
20517
21312
  export declare const FavoriteConnectionFragmentDoc: DocumentNode<FavoriteConnectionFragment, unknown>;
20518
21313
  export declare const FavoritePayloadFragmentDoc: DocumentNode<FavoritePayloadFragment, unknown>;
@@ -20540,9 +21335,9 @@ export declare const IssueBatchPayloadFragmentDoc: DocumentNode<IssueBatchPayloa
20540
21335
  export declare const IssueConnectionFragmentDoc: DocumentNode<IssueConnectionFragment, unknown>;
20541
21336
  export declare const IssueFilterSuggestionPayloadFragmentDoc: DocumentNode<IssueFilterSuggestionPayloadFragment, unknown>;
20542
21337
  export declare const IssueRelationHistoryPayloadFragmentDoc: DocumentNode<IssueRelationHistoryPayloadFragment, unknown>;
21338
+ export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
20543
21339
  export declare const IssueImportFragmentDoc: DocumentNode<IssueImportFragment, unknown>;
20544
21340
  export declare const IssueLabelFragmentDoc: DocumentNode<IssueLabelFragment, unknown>;
20545
- export declare const UserFragmentDoc: DocumentNode<UserFragment, unknown>;
20546
21341
  export declare const IssueHistoryFragmentDoc: DocumentNode<IssueHistoryFragment, unknown>;
20547
21342
  export declare const IssueHistoryConnectionFragmentDoc: DocumentNode<IssueHistoryConnectionFragment, unknown>;
20548
21343
  export declare const IssueImportCheckPayloadFragmentDoc: DocumentNode<IssueImportCheckPayloadFragment, unknown>;
@@ -20576,11 +21371,14 @@ export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<Organ
20576
21371
  export declare const OrganizationInviteFullDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteFullDetailsPayloadFragment, unknown>;
20577
21372
  export declare const OrganizationInviteLinkDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteLinkDetailsPayloadFragment, unknown>;
20578
21373
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
21374
+ export declare const OrganizationMetaFragmentDoc: DocumentNode<OrganizationMetaFragment, unknown>;
20579
21375
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
20580
21376
  export declare const OrganizationRegionResponseFragmentDoc: DocumentNode<OrganizationRegionResponseFragment, unknown>;
20581
- export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
21377
+ export declare const OrganizationStartTrialPayloadFragmentDoc: DocumentNode<OrganizationStartTrialPayloadFragment, unknown>;
21378
+ export declare const PasskeyLoginStartResponseFragmentDoc: DocumentNode<PasskeyLoginStartResponseFragment, unknown>;
20582
21379
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
20583
21380
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
21381
+ export declare const ProjectDetailSuggestionPayloadFragmentDoc: DocumentNode<ProjectDetailSuggestionPayloadFragment, unknown>;
20584
21382
  export declare const ProjectFilterSuggestionPayloadFragmentDoc: DocumentNode<ProjectFilterSuggestionPayloadFragment, unknown>;
20585
21383
  export declare const ProjectLinkFragmentDoc: DocumentNode<ProjectLinkFragment, unknown>;
20586
21384
  export declare const ProjectLinkConnectionFragmentDoc: DocumentNode<ProjectLinkConnectionFragment, unknown>;
@@ -20621,6 +21419,7 @@ export declare const RoadmapToProjectConnectionFragmentDoc: DocumentNode<Roadmap
20621
21419
  export declare const RoadmapToProjectPayloadFragmentDoc: DocumentNode<RoadmapToProjectPayloadFragment, unknown>;
20622
21420
  export declare const SlackChannelConnectPayloadFragmentDoc: DocumentNode<SlackChannelConnectPayloadFragment, unknown>;
20623
21421
  export declare const SsoUrlFromEmailResponseFragmentDoc: DocumentNode<SsoUrlFromEmailResponseFragment, unknown>;
21422
+ export declare const SuccessPayloadFragmentDoc: DocumentNode<SuccessPayloadFragment, unknown>;
20624
21423
  export declare const SummaryPayloadFragmentDoc: DocumentNode<SummaryPayloadFragment, unknown>;
20625
21424
  export declare const SynchronizedPayloadFragmentDoc: DocumentNode<SynchronizedPayloadFragment, unknown>;
20626
21425
  export declare const TeamFragmentDoc: DocumentNode<TeamFragment, unknown>;
@@ -20865,6 +21664,16 @@ export declare const CustomView_OrganizationViewPreferencesDocument: DocumentNod
20865
21664
  export declare const CustomView_OrganizationViewPreferences_PreferencesDocument: DocumentNode<CustomView_OrganizationViewPreferences_PreferencesQuery, Exact<{
20866
21665
  id: Scalars["String"];
20867
21666
  }>>;
21667
+ export declare const CustomView_ProjectsDocument: DocumentNode<CustomView_ProjectsQuery, Exact<{
21668
+ id: Scalars["String"];
21669
+ after?: Maybe<string> | undefined;
21670
+ before?: Maybe<string> | undefined;
21671
+ filter?: Maybe<ProjectFilter> | undefined;
21672
+ first?: Maybe<number> | undefined;
21673
+ includeArchived?: Maybe<boolean> | undefined;
21674
+ last?: Maybe<number> | undefined;
21675
+ orderBy?: Maybe<PaginationOrderBy> | undefined;
21676
+ }>>;
20868
21677
  export declare const CustomView_UserViewPreferencesDocument: DocumentNode<CustomView_UserViewPreferencesQuery, Exact<{
20869
21678
  id: Scalars["String"];
20870
21679
  }>>;
@@ -21110,8 +21919,8 @@ export declare const IssueImportCheckCsvDocument: DocumentNode<IssueImportCheckC
21110
21919
  csvUrl: Scalars["String"];
21111
21920
  service: Scalars["String"];
21112
21921
  }>>;
21113
- export declare const IssueImportFinishGithubOAuthDocument: DocumentNode<IssueImportFinishGithubOAuthQuery, Exact<{
21114
- code: Scalars["String"];
21922
+ export declare const IssueImportCheckSyncDocument: DocumentNode<IssueImportCheckSyncQuery, Exact<{
21923
+ issueImportId: Scalars["String"];
21115
21924
  }>>;
21116
21925
  export declare const IssueLabelDocument: DocumentNode<IssueLabelQuery, Exact<{
21117
21926
  id: Scalars["String"];
@@ -21828,6 +22637,36 @@ export declare const User_TeamsDocument: DocumentNode<User_TeamsQuery, Exact<{
21828
22637
  export declare const UserSettingsDocument: DocumentNode<UserSettingsQuery, Exact<{
21829
22638
  [key: string]: never;
21830
22639
  }>>;
22640
+ export declare const UserSettings_NotificationDeliveryPreferencesDocument: DocumentNode<UserSettings_NotificationDeliveryPreferencesQuery, Exact<{
22641
+ [key: string]: never;
22642
+ }>>;
22643
+ export declare const UserSettings_NotificationDeliveryPreferences_MobileDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_MobileQuery, Exact<{
22644
+ [key: string]: never;
22645
+ }>>;
22646
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_ScheduleQuery, Exact<{
22647
+ [key: string]: never;
22648
+ }>>;
22649
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_FridayQuery, Exact<{
22650
+ [key: string]: never;
22651
+ }>>;
22652
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_MondayQuery, Exact<{
22653
+ [key: string]: never;
22654
+ }>>;
22655
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SaturdayQuery, Exact<{
22656
+ [key: string]: never;
22657
+ }>>;
22658
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_SundayQuery, Exact<{
22659
+ [key: string]: never;
22660
+ }>>;
22661
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_ThursdayQuery, Exact<{
22662
+ [key: string]: never;
22663
+ }>>;
22664
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_TuesdayQuery, Exact<{
22665
+ [key: string]: never;
22666
+ }>>;
22667
+ export declare const UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayDocument: DocumentNode<UserSettings_NotificationDeliveryPreferences_Mobile_Schedule_WednesdayQuery, Exact<{
22668
+ [key: string]: never;
22669
+ }>>;
21831
22670
  export declare const UsersDocument: DocumentNode<UsersQuery, Exact<{
21832
22671
  after?: Maybe<string> | undefined;
21833
22672
  before?: Maybe<string> | undefined;
@@ -21912,12 +22751,6 @@ export declare const WorkflowStatesDocument: DocumentNode<WorkflowStatesQuery, E
21912
22751
  export declare const AirbyteIntegrationConnectDocument: DocumentNode<AirbyteIntegrationConnectMutation, Exact<{
21913
22752
  input: AirbyteConfigurationInput;
21914
22753
  }>>;
21915
- export declare const CreateApiKeyDocument: DocumentNode<CreateApiKeyMutation, Exact<{
21916
- input: ApiKeyCreateInput;
21917
- }>>;
21918
- export declare const DeleteApiKeyDocument: DocumentNode<DeleteApiKeyMutation, Exact<{
21919
- id: Scalars["String"];
21920
- }>>;
21921
22754
  export declare const ArchiveAttachmentDocument: DocumentNode<ArchiveAttachmentMutation, Exact<{
21922
22755
  id: Scalars["String"];
21923
22756
  }>>;
@@ -22014,6 +22847,9 @@ export declare const AttachmentLinkZendeskDocument: DocumentNode<AttachmentLinkZ
22014
22847
  ticketId: Scalars["String"];
22015
22848
  title?: Maybe<string> | undefined;
22016
22849
  }>>;
22850
+ export declare const AttachmentSyncToSlackDocument: DocumentNode<AttachmentSyncToSlackMutation, Exact<{
22851
+ id: Scalars["String"];
22852
+ }>>;
22017
22853
  export declare const UpdateAttachmentDocument: DocumentNode<UpdateAttachmentMutation, Exact<{
22018
22854
  id: Scalars["String"];
22019
22855
  input: AttachmentUpdateInput;
@@ -22088,10 +22924,6 @@ export declare const CreateDocumentDocument: DocumentNode<CreateDocumentMutation
22088
22924
  export declare const DeleteDocumentDocument: DocumentNode<DeleteDocumentMutation, Exact<{
22089
22925
  id: Scalars["String"];
22090
22926
  }>>;
22091
- export declare const DocumentReminderDocument: DocumentNode<DocumentReminderMutation, Exact<{
22092
- id: Scalars["String"];
22093
- reminderAt: Scalars["DateTime"];
22094
- }>>;
22095
22927
  export declare const UpdateDocumentDocument: DocumentNode<UpdateDocumentMutation, Exact<{
22096
22928
  id: Scalars["String"];
22097
22929
  input: DocumentUpdateInput;
@@ -22214,6 +23046,9 @@ export declare const CreateIntegrationGithubCommitDocument: DocumentNode<CreateI
22214
23046
  export declare const IntegrationGithubConnectDocument: DocumentNode<IntegrationGithubConnectMutation, Exact<{
22215
23047
  installationId: Scalars["String"];
22216
23048
  }>>;
23049
+ export declare const IntegrationGithubImportConnectDocument: DocumentNode<IntegrationGithubImportConnectMutation, Exact<{
23050
+ installationId: Scalars["String"];
23051
+ }>>;
22217
23052
  export declare const IntegrationGitlabConnectDocument: DocumentNode<IntegrationGitlabConnectMutation, Exact<{
22218
23053
  accessToken: Scalars["String"];
22219
23054
  gitlabUrl: Scalars["String"];
@@ -22256,6 +23091,11 @@ export declare const IntegrationSlackAsksDocument: DocumentNode<IntegrationSlack
22256
23091
  code: Scalars["String"];
22257
23092
  redirectUri: Scalars["String"];
22258
23093
  }>>;
23094
+ export declare const IntegrationSlackCustomViewNotificationsDocument: DocumentNode<IntegrationSlackCustomViewNotificationsMutation, Exact<{
23095
+ code: Scalars["String"];
23096
+ customViewId: Scalars["String"];
23097
+ redirectUri: Scalars["String"];
23098
+ }>>;
22259
23099
  export declare const IntegrationSlackImportEmojisDocument: DocumentNode<IntegrationSlackImportEmojisMutation, Exact<{
22260
23100
  code: Scalars["String"];
22261
23101
  redirectUri: Scalars["String"];
@@ -22351,13 +23191,15 @@ export declare const IssueImportCreateClubhouseDocument: DocumentNode<IssueImpor
22351
23191
  teamName?: Maybe<string> | undefined;
22352
23192
  }>>;
22353
23193
  export declare const IssueImportCreateGithubDocument: DocumentNode<IssueImportCreateGithubMutation, Exact<{
22354
- githubRepoName: Scalars["String"];
22355
- githubRepoOwner: Scalars["String"];
23194
+ githubRepoId?: Maybe<string> | undefined;
23195
+ githubRepoIds?: Maybe<number | number[]> | undefined;
23196
+ githubRepoName?: Maybe<string> | undefined;
23197
+ githubRepoOwner?: Maybe<string> | undefined;
22356
23198
  githubShouldImportOrgProjects?: Maybe<boolean> | undefined;
22357
- githubToken: Scalars["String"];
22358
- id?: Maybe<string> | undefined;
23199
+ githubToken?: Maybe<string> | undefined;
22359
23200
  includeClosedIssues?: Maybe<boolean> | undefined;
22360
23201
  instantProcess?: Maybe<boolean> | undefined;
23202
+ integrationId: Scalars["String"];
22361
23203
  organizationId?: Maybe<string> | undefined;
22362
23204
  teamId?: Maybe<string> | undefined;
22363
23205
  teamName?: Maybe<string> | undefined;
@@ -22399,6 +23241,7 @@ export declare const UpdateIssueLabelDocument: DocumentNode<UpdateIssueLabelMuta
22399
23241
  }>>;
22400
23242
  export declare const CreateIssueRelationDocument: DocumentNode<CreateIssueRelationMutation, Exact<{
22401
23243
  input: IssueRelationCreateInput;
23244
+ overrideCreatedAt?: Maybe<Date> | undefined;
22402
23245
  }>>;
22403
23246
  export declare const DeleteIssueRelationDocument: DocumentNode<DeleteIssueRelationMutation, Exact<{
22404
23247
  id: Scalars["String"];
@@ -22508,7 +23351,7 @@ export declare const UpdateOrganizationInviteDocument: DocumentNode<UpdateOrgani
22508
23351
  id: Scalars["String"];
22509
23352
  input: OrganizationInviteUpdateInput;
22510
23353
  }>>;
22511
- export declare const OrganizationStartPlusTrialDocument: DocumentNode<OrganizationStartPlusTrialMutation, Exact<{
23354
+ export declare const OrganizationStartTrialDocument: DocumentNode<OrganizationStartTrialMutation, Exact<{
22512
23355
  [key: string]: never;
22513
23356
  }>>;
22514
23357
  export declare const UpdateOrganizationDocument: DocumentNode<UpdateOrganizationMutation, Exact<{