@linear/sdk 18.0.0 → 19.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.
@@ -397,6 +397,20 @@ export declare type AuthApiKeyPayload = {
397
397
  /** Whether the operation was successful. */
398
398
  success: Scalars["Boolean"];
399
399
  };
400
+ /** An email address that can be used for submitting issues. */
401
+ export declare type AuthEmailIntakeAddress = {
402
+ __typename?: "AuthEmailIntakeAddress";
403
+ /** Unique email address user name (before @) used for incoming email. */
404
+ address: Scalars["String"];
405
+ /** The auth user who created the email intake address. */
406
+ creator?: Maybe<AuthUser>;
407
+ /** Whether the email address is enabled. */
408
+ enabled: Scalars["Boolean"];
409
+ /** The unique identifier of the entity. */
410
+ id: Scalars["ID"];
411
+ /** The auth organization that the email address is associated with. */
412
+ organization: AuthOrganization;
413
+ };
400
414
  export declare type AuthIntegration = {
401
415
  __typename?: "AuthIntegration";
402
416
  /** The unique identifier of the entity. */
@@ -498,6 +512,8 @@ export declare type AuthOrganization = {
498
512
  name: Scalars["String"];
499
513
  /** Previously used URL keys for the organization (last 3 are kept and redirected). */
500
514
  previousUrlKeys: Array<Scalars["String"]>;
515
+ /** The region the organization is hosted in. */
516
+ region: Scalars["String"];
501
517
  /** The feature release channel the organization belongs to. */
502
518
  releaseChannel: ReleaseChannel;
503
519
  /** Whether SAML authentication is enabled for organization. */
@@ -1373,6 +1389,8 @@ export declare type CycleShiftAllInput = {
1373
1389
  };
1374
1390
  /** Issue cycle sorting options. */
1375
1391
  export declare type CycleSort = {
1392
+ /** When set to true, cycles wil be ordered with a custom order. Current cycle comes first, followed by upcoming cycles in ASC order, followed by previous cycles in DESC order. */
1393
+ currentCycleFirst?: Maybe<Scalars["Boolean"]>;
1376
1394
  /** Whether nulls should be sorted first or last */
1377
1395
  nulls?: Maybe<PaginationNulls>;
1378
1396
  /** The order for the individual sort */
@@ -1460,6 +1478,8 @@ export declare type Document = Node & {
1460
1478
  createdAt: Scalars["DateTime"];
1461
1479
  /** The user who created the document. */
1462
1480
  creator: User;
1481
+ /** The time at which the document was hidden. Null if the entity has not been hidden. */
1482
+ hiddenAt?: Maybe<Scalars["DateTime"]>;
1463
1483
  /** The icon of the document. */
1464
1484
  icon?: Maybe<Scalars["String"]>;
1465
1485
  /** The unique identifier of the entity. */
@@ -1693,6 +1713,8 @@ export declare type DocumentSearchResult = Node & {
1693
1713
  createdAt: Scalars["DateTime"];
1694
1714
  /** The user who created the document. */
1695
1715
  creator: User;
1716
+ /** The time at which the document was hidden. Null if the entity has not been hidden. */
1717
+ hiddenAt?: Maybe<Scalars["DateTime"]>;
1696
1718
  /** The icon of the document. */
1697
1719
  icon?: Maybe<Scalars["String"]>;
1698
1720
  /** The unique identifier of the entity. */
@@ -1737,6 +1759,8 @@ export declare type DocumentUpdateInput = {
1737
1759
  content?: Maybe<Scalars["String"]>;
1738
1760
  /** [Internal] The document content as a Prosemirror document. */
1739
1761
  contentData?: Maybe<Scalars["JSONObject"]>;
1762
+ /** The time at which the document was hidden. */
1763
+ hiddenAt?: Maybe<Scalars["DateTime"]>;
1740
1764
  /** The icon of the document. */
1741
1765
  icon?: Maybe<Scalars["String"]>;
1742
1766
  /** The ID of the last template applied to the document. */
@@ -4557,7 +4581,7 @@ export declare type Mutation = {
4557
4581
  emailIntakeAddressUpdate: EmailIntakeAddressPayload;
4558
4582
  /** Authenticates a user account via email and authentication token. */
4559
4583
  emailTokenUserAccountAuth: AuthResolverResponse;
4560
- /** Unsubscribes the user from one type of emails. */
4584
+ /** Unsubscribes the user from one type of email. */
4561
4585
  emailUnsubscribe: EmailUnsubscribePayload;
4562
4586
  /** Finds or creates a new user account by email and sends an email with token. */
4563
4587
  emailUserAccountAuthChallenge: EmailUserAccountAuthChallengeResponse;
@@ -5032,12 +5056,12 @@ export declare type MutationAttachmentLinkJiraIssueArgs = {
5032
5056
  jiraIssueId: Scalars["String"];
5033
5057
  };
5034
5058
  export declare type MutationAttachmentLinkSlackArgs = {
5035
- channel: Scalars["String"];
5059
+ channel?: Maybe<Scalars["String"]>;
5036
5060
  createAsUser?: Maybe<Scalars["String"]>;
5037
5061
  displayIconUrl?: Maybe<Scalars["String"]>;
5038
5062
  id?: Maybe<Scalars["String"]>;
5039
5063
  issueId: Scalars["String"];
5040
- latest: Scalars["String"];
5064
+ latest?: Maybe<Scalars["String"]>;
5041
5065
  title?: Maybe<Scalars["String"]>;
5042
5066
  ts?: Maybe<Scalars["String"]>;
5043
5067
  url: Scalars["String"];
@@ -6259,9 +6283,9 @@ export declare type NullableProjectFilter = {
6259
6283
  slugId?: Maybe<StringComparator>;
6260
6284
  /** Comparator for the project start date. */
6261
6285
  startDate?: Maybe<NullableDateComparator>;
6262
- /** Comparator for the project state. */
6286
+ /** [DEPRECATED] Comparator for the project state. */
6263
6287
  state?: Maybe<StringComparator>;
6264
- /** [Internal] Filters that the project's status must satisfy. */
6288
+ /** Filters that the project's status must satisfy. */
6265
6289
  status?: Maybe<ProjectStatusFilter>;
6266
6290
  /** Comparator for the project target date. */
6267
6291
  targetDate?: Maybe<NullableDateComparator>;
@@ -6870,6 +6894,8 @@ export declare type OrganizationInviteFullDetailsPayload = {
6870
6894
  __typename?: "OrganizationInviteFullDetailsPayload";
6871
6895
  /** Whether the invite has already been accepted. */
6872
6896
  accepted: Scalars["Boolean"];
6897
+ /** Allowed authentication providers, empty array means all are allowed. */
6898
+ allowedAuthServices: Array<Scalars["String"]>;
6873
6899
  /** When the invite was created. */
6874
6900
  createdAt: Scalars["DateTime"];
6875
6901
  /** The email of the invitee. */
@@ -6889,6 +6915,21 @@ export declare type OrganizationInviteFullDetailsPayload = {
6889
6915
  /** The status of the invite. */
6890
6916
  status: OrganizationInviteStatus;
6891
6917
  };
6918
+ export declare type OrganizationInviteLinkDetailsPayload = {
6919
+ __typename?: "OrganizationInviteLinkDetailsPayload";
6920
+ /** Allowed authentication providers, empty array means all are allowed. */
6921
+ allowedAuthServices: Array<Scalars["String"]>;
6922
+ /** ID of the workspace the invite link is for. */
6923
+ organizationId?: Maybe<Scalars["String"]>;
6924
+ /** URL of the workspace logo the invite link is for. */
6925
+ organizationLogoUrl?: Maybe<Scalars["String"]>;
6926
+ /** Name of the workspace the invite link is for. */
6927
+ organizationName?: Maybe<Scalars["String"]>;
6928
+ /** Region of the workspace the invite link is for. */
6929
+ organizationRegion?: Maybe<Scalars["String"]>;
6930
+ /** URL key of the workspace the invite link is for. */
6931
+ organizationUrlKey?: Maybe<Scalars["String"]>;
6932
+ };
6892
6933
  export declare type OrganizationInvitePayload = {
6893
6934
  __typename?: "OrganizationInvitePayload";
6894
6935
  /** The identifier of the last sync operation. */
@@ -6917,6 +6958,13 @@ export declare type OrganizationPayload = {
6917
6958
  /** Whether the operation was successful. */
6918
6959
  success: Scalars["Boolean"];
6919
6960
  };
6961
+ export declare type OrganizationRegionResponse = {
6962
+ __typename?: "OrganizationRegionResponse";
6963
+ /** The region for the organization. */
6964
+ region?: Maybe<Scalars["String"]>;
6965
+ /** Whether the operation was successful. */
6966
+ success: Scalars["Boolean"];
6967
+ };
6920
6968
  export declare type OrganizationStartPlusTrialPayload = {
6921
6969
  __typename?: "OrganizationStartPlusTrialPayload";
6922
6970
  /** Whether the operation was successful. */
@@ -7072,6 +7120,8 @@ export declare type Project = Node & {
7072
7120
  description: Scalars["String"];
7073
7121
  /** Documents associated with the project. */
7074
7122
  documents: DocumentConnection;
7123
+ /** The user's favorite associated with this project. */
7124
+ favorite?: Maybe<Favorite>;
7075
7125
  /** The icon of the project. */
7076
7126
  icon?: Maybe<Scalars["String"]>;
7077
7127
  /** The unique identifier of the entity. */
@@ -7122,9 +7172,12 @@ export declare type Project = Node & {
7122
7172
  startDateResolution?: Maybe<DateResolutionType>;
7123
7173
  /** The time at which the project was moved into started state. */
7124
7174
  startedAt?: Maybe<Scalars["DateTime"]>;
7125
- /** The type of the state. */
7175
+ /**
7176
+ * [DEPRECATED] The type of the state.
7177
+ * @deprecated Use project.status instead
7178
+ */
7126
7179
  state: Scalars["String"];
7127
- /** [Internal] The status that the project is associated with. */
7180
+ /** The status that the project is associated with. */
7128
7181
  status: ProjectStatus;
7129
7182
  /** The estimated completion date of the project. */
7130
7183
  targetDate?: Maybe<Scalars["TimelessDate"]>;
@@ -7272,9 +7325,9 @@ export declare type ProjectCollectionFilter = {
7272
7325
  some?: Maybe<ProjectFilter>;
7273
7326
  /** Comparator for the project start date. */
7274
7327
  startDate?: Maybe<NullableDateComparator>;
7275
- /** Comparator for the project state. */
7328
+ /** [DEPRECATED] Comparator for the project state. */
7276
7329
  state?: Maybe<StringComparator>;
7277
- /** [Internal] Filters that the project's status must satisfy. */
7330
+ /** Filters that the project's status must satisfy. */
7278
7331
  status?: Maybe<ProjectStatusFilter>;
7279
7332
  /** Comparator for the project target date. */
7280
7333
  targetDate?: Maybe<NullableDateComparator>;
@@ -7312,9 +7365,9 @@ export declare type ProjectCreateInput = {
7312
7365
  startDate?: Maybe<Scalars["TimelessDate"]>;
7313
7366
  /** [INTERNAL] The resolution of the project's start date. */
7314
7367
  startDateResolution?: Maybe<DateResolutionType>;
7315
- /** The state of the project. */
7368
+ /** [DEPRECATED] The state of the project. */
7316
7369
  state?: Maybe<Scalars["String"]>;
7317
- /** [INTERNAL] The ID of the project status. */
7370
+ /** The ID of the project status. */
7318
7371
  statusId?: Maybe<Scalars["String"]>;
7319
7372
  /** The planned target date of the project. */
7320
7373
  targetDate?: Maybe<Scalars["TimelessDate"]>;
@@ -7373,9 +7426,9 @@ export declare type ProjectFilter = {
7373
7426
  slugId?: Maybe<StringComparator>;
7374
7427
  /** Comparator for the project start date. */
7375
7428
  startDate?: Maybe<NullableDateComparator>;
7376
- /** Comparator for the project state. */
7429
+ /** [DEPRECATED] Comparator for the project state. */
7377
7430
  state?: Maybe<StringComparator>;
7378
- /** [Internal] Filters that the project's status must satisfy. */
7431
+ /** Filters that the project's status must satisfy. */
7379
7432
  status?: Maybe<ProjectStatusFilter>;
7380
7433
  /** Comparator for the project target date. */
7381
7434
  targetDate?: Maybe<NullableDateComparator>;
@@ -7716,6 +7769,8 @@ export declare type ProjectSearchResult = Node & {
7716
7769
  description: Scalars["String"];
7717
7770
  /** Documents associated with the project. */
7718
7771
  documents: DocumentConnection;
7772
+ /** The user's favorite associated with this project. */
7773
+ favorite?: Maybe<Favorite>;
7719
7774
  /** The icon of the project. */
7720
7775
  icon?: Maybe<Scalars["String"]>;
7721
7776
  /** The unique identifier of the entity. */
@@ -7768,9 +7823,12 @@ export declare type ProjectSearchResult = Node & {
7768
7823
  startDateResolution?: Maybe<DateResolutionType>;
7769
7824
  /** The time at which the project was moved into started state. */
7770
7825
  startedAt?: Maybe<Scalars["DateTime"]>;
7771
- /** The type of the state. */
7826
+ /**
7827
+ * [DEPRECATED] The type of the state.
7828
+ * @deprecated Use project.status instead
7829
+ */
7772
7830
  state: Scalars["String"];
7773
- /** [Internal] The status that the project is associated with. */
7831
+ /** The status that the project is associated with. */
7774
7832
  status: ProjectStatus;
7775
7833
  /** The estimated completion date of the project. */
7776
7834
  targetDate?: Maybe<Scalars["TimelessDate"]>;
@@ -7890,7 +7948,7 @@ export declare type ProjectStatus = Node & {
7890
7948
  /** The position of the status in the workspace's project flow. */
7891
7949
  position: Scalars["Float"];
7892
7950
  /** The type of the project status. */
7893
- type?: Maybe<ProjectStatusType>;
7951
+ type: ProjectStatusType;
7894
7952
  /**
7895
7953
  * The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those
7896
7954
  * 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
@@ -8070,9 +8128,9 @@ export declare type ProjectUpdateInput = {
8070
8128
  startDate?: Maybe<Scalars["TimelessDate"]>;
8071
8129
  /** [INTERNAL] The resolution of the project's start date. */
8072
8130
  startDateResolution?: Maybe<DateResolutionType>;
8073
- /** The state of the project. */
8131
+ /** [DEPRECATED] The state of the project. */
8074
8132
  state?: Maybe<Scalars["String"]>;
8075
- /** [INTERNAL] The ID of the project status. */
8133
+ /** The ID of the project status. */
8076
8134
  statusId?: Maybe<Scalars["String"]>;
8077
8135
  /** The planned target date of the project. */
8078
8136
  targetDate?: Maybe<Scalars["TimelessDate"]>;
@@ -9322,12 +9380,16 @@ export declare type SentrySettingsInput = {
9322
9380
  /** Shared Slack integration settings. */
9323
9381
  export declare type SharedSlackSettings = {
9324
9382
  __typename?: "SharedSlackSettings";
9383
+ /** Enterprise name of the connected Slack enterprise */
9384
+ enterpriseName?: Maybe<Scalars["String"]>;
9325
9385
  /** Slack workspace id */
9326
9386
  teamId?: Maybe<Scalars["String"]>;
9327
9387
  /** Slack workspace name */
9328
9388
  teamName?: Maybe<Scalars["String"]>;
9329
9389
  };
9330
9390
  export declare type SharedSlackSettingsInput = {
9391
+ /** Enterprise name of the connected Slack enterprise */
9392
+ enterpriseName?: Maybe<Scalars["String"]>;
9331
9393
  /** Slack workspace id */
9332
9394
  teamId?: Maybe<Scalars["String"]>;
9333
9395
  /** Slack workspace name */
@@ -9367,6 +9429,8 @@ export declare type SlackAsksSettings = {
9367
9429
  __typename?: "SlackAsksSettings";
9368
9430
  /** The user role type that is allowed to manage Asks settings. */
9369
9431
  canAdministrate: UserRoleType;
9432
+ /** Enterprise name of the connected Slack enterprise */
9433
+ enterpriseName?: Maybe<Scalars["String"]>;
9370
9434
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
9371
9435
  slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
9372
9436
  /** Slack workspace id */
@@ -9377,6 +9441,8 @@ export declare type SlackAsksSettings = {
9377
9441
  export declare type SlackAsksSettingsInput = {
9378
9442
  /** The user role type that is allowed to manage Asks settings. */
9379
9443
  canAdministrate: UserRoleType;
9444
+ /** Enterprise name of the connected Slack enterprise */
9445
+ enterpriseName?: Maybe<Scalars["String"]>;
9380
9446
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
9381
9447
  slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
9382
9448
  /** Slack workspace id */
@@ -9482,6 +9548,8 @@ export declare type SlackPostSettingsInput = {
9482
9548
  /** Settings for the regular Slack integration. */
9483
9549
  export declare type SlackSettings = {
9484
9550
  __typename?: "SlackSettings";
9551
+ /** Enterprise name of the connected Slack enterprise */
9552
+ enterpriseName?: Maybe<Scalars["String"]>;
9485
9553
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
9486
9554
  linkOnIssueIdMention: Scalars["Boolean"];
9487
9555
  /** Slack workspace id */
@@ -9490,6 +9558,8 @@ export declare type SlackSettings = {
9490
9558
  teamName?: Maybe<Scalars["String"]>;
9491
9559
  };
9492
9560
  export declare type SlackSettingsInput = {
9561
+ /** Enterprise name of the connected Slack enterprise */
9562
+ enterpriseName?: Maybe<Scalars["String"]>;
9493
9563
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
9494
9564
  linkOnIssueIdMention: Scalars["Boolean"];
9495
9565
  /** Slack workspace id */
@@ -10937,7 +11007,7 @@ export declare type UserSettings = Node & {
10937
11007
  subscribedToUnreadNotificationsReminder: Scalars["Boolean"];
10938
11008
  /**
10939
11009
  * The email types the user has unsubscribed from.
10940
- * @deprecated Use individual subscription fields instead.
11010
+ * @deprecated Use individual subscription fields instead. This field's value is now outdated.
10941
11011
  */
10942
11012
  unsubscribedFrom: Array<Scalars["String"]>;
10943
11013
  /**
@@ -11103,6 +11173,7 @@ export declare enum ViewType {
11103
11173
  Inbox = "inbox",
11104
11174
  Initiative = "initiative",
11105
11175
  Initiatives = "initiatives",
11176
+ IssueIdentifiers = "issueIdentifiers",
11106
11177
  Label = "label",
11107
11178
  MyIssues = "myIssues",
11108
11179
  MyIssuesActivity = "myIssuesActivity",
@@ -11700,7 +11771,7 @@ export declare type DocumentContentHistoryFragment = {
11700
11771
  };
11701
11772
  export declare type DocumentFragment = {
11702
11773
  __typename: "Document";
11703
- } & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
11774
+ } & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
11704
11775
  lastAppliedTemplate?: Maybe<{
11705
11776
  __typename?: "Template";
11706
11777
  } & Pick<Template, "id">>;
@@ -11941,7 +12012,7 @@ export declare type ProjectNotificationFragment = {
11941
12012
  };
11942
12013
  export declare type ProjectFragment = {
11943
12014
  __typename: "Project";
11944
- } & Pick<Project, "trashed" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
12015
+ } & Pick<Project, "trashed" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "state"> & {
11945
12016
  integrationsSettings?: Maybe<{
11946
12017
  __typename?: "IntegrationsSettings";
11947
12018
  } & Pick<IntegrationsSettings, "id">>;
@@ -11957,6 +12028,9 @@ export declare type ProjectFragment = {
11957
12028
  creator?: Maybe<{
11958
12029
  __typename?: "User";
11959
12030
  } & Pick<User, "id">>;
12031
+ favorite?: Maybe<{
12032
+ __typename?: "Favorite";
12033
+ } & Pick<Favorite, "id">>;
11960
12034
  };
11961
12035
  export declare type ReactionFragment = {
11962
12036
  __typename: "Reaction";
@@ -12216,6 +12290,16 @@ export declare type WebhookFragment = {
12216
12290
  export declare type ApiKeyFragment = {
12217
12291
  __typename: "ApiKey";
12218
12292
  } & Pick<ApiKey, "label" | "updatedAt" | "archivedAt" | "createdAt" | "id">;
12293
+ export declare type AuthEmailIntakeAddressFragment = {
12294
+ __typename: "AuthEmailIntakeAddress";
12295
+ } & Pick<AuthEmailIntakeAddress, "id" | "address" | "enabled"> & {
12296
+ organization: {
12297
+ __typename?: "AuthOrganization";
12298
+ } & AuthOrganizationFragment;
12299
+ creator?: Maybe<{
12300
+ __typename?: "AuthUser";
12301
+ } & AuthUserFragment>;
12302
+ };
12219
12303
  export declare type EmailIntakeAddressFragment = {
12220
12304
  __typename: "EmailIntakeAddress";
12221
12305
  } & Pick<EmailIntakeAddress, "updatedAt" | "archivedAt" | "createdAt" | "id" | "address" | "enabled"> & {
@@ -12380,7 +12464,7 @@ export declare type OrganizationFragment = {
12380
12464
  };
12381
12465
  export declare type AuthOrganizationFragment = {
12382
12466
  __typename: "AuthOrganization";
12383
- } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
12467
+ } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
12384
12468
  export declare type TeamFragment = {
12385
12469
  __typename: "Team";
12386
12470
  } & 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" | "private" | "cyclesEnabled" | "issueEstimationExtended" | "issueEstimationAllowZero" | "groupIssueHistory" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "triageEnabled" | "issueSortOrderDefaultToBottom"> & {
@@ -12774,13 +12858,13 @@ export declare type SentrySettingsFragment = {
12774
12858
  } & Pick<SentrySettings, "organizationSlug">;
12775
12859
  export declare type SlackSettingsFragment = {
12776
12860
  __typename: "SlackSettings";
12777
- } & Pick<SlackSettings, "teamId" | "teamName" | "linkOnIssueIdMention">;
12861
+ } & Pick<SlackSettings, "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention">;
12778
12862
  export declare type SharedSlackSettingsFragment = {
12779
12863
  __typename: "SharedSlackSettings";
12780
- } & Pick<SharedSlackSettings, "teamId" | "teamName">;
12864
+ } & Pick<SharedSlackSettings, "enterpriseName" | "teamId" | "teamName">;
12781
12865
  export declare type SlackAsksSettingsFragment = {
12782
12866
  __typename: "SlackAsksSettings";
12783
- } & Pick<SlackAsksSettings, "teamId" | "teamName"> & {
12867
+ } & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName"> & {
12784
12868
  slackChannelMapping?: Maybe<Array<{
12785
12869
  __typename?: "SlackChannelNameMapping";
12786
12870
  } & SlackChannelNameMappingFragment>>;
@@ -13165,7 +13249,7 @@ export declare type DocumentSearchPayloadFragment = {
13165
13249
  };
13166
13250
  export declare type DocumentSearchResultFragment = {
13167
13251
  __typename: "DocumentSearchResult";
13168
- } & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
13252
+ } & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13169
13253
  lastAppliedTemplate?: Maybe<{
13170
13254
  __typename?: "Template";
13171
13255
  } & Pick<Template, "id">>;
@@ -13822,7 +13906,10 @@ export declare type OrganizationInviteConnectionFragment = {
13822
13906
  };
13823
13907
  export declare type OrganizationInviteFullDetailsPayloadFragment = {
13824
13908
  __typename: "OrganizationInviteFullDetailsPayload";
13825
- } & Pick<OrganizationInviteFullDetailsPayload, "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
13909
+ } & Pick<OrganizationInviteFullDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
13910
+ export declare type OrganizationInviteLinkDetailsPayloadFragment = {
13911
+ __typename: "OrganizationInviteLinkDetailsPayload";
13912
+ } & Pick<OrganizationInviteLinkDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "organizationRegion" | "organizationUrlKey" | "organizationLogoUrl">;
13826
13913
  export declare type OrganizationInvitePayloadFragment = {
13827
13914
  __typename: "OrganizationInvitePayload";
13828
13915
  } & Pick<OrganizationInvitePayload, "lastSyncId" | "success"> & {
@@ -13833,6 +13920,9 @@ export declare type OrganizationInvitePayloadFragment = {
13833
13920
  export declare type OrganizationPayloadFragment = {
13834
13921
  __typename: "OrganizationPayload";
13835
13922
  } & Pick<OrganizationPayload, "lastSyncId" | "success">;
13923
+ export declare type OrganizationRegionResponseFragment = {
13924
+ __typename: "OrganizationRegionResponse";
13925
+ } & Pick<OrganizationRegionResponse, "region" | "success">;
13836
13926
  export declare type OrganizationStartPlusTrialPayloadFragment = {
13837
13927
  __typename: "OrganizationStartPlusTrialPayload";
13838
13928
  } & Pick<OrganizationStartPlusTrialPayload, "success">;
@@ -13908,7 +13998,7 @@ export declare type ProjectSearchPayloadFragment = {
13908
13998
  };
13909
13999
  export declare type ProjectSearchResultFragment = {
13910
14000
  __typename: "ProjectSearchResult";
13911
- } & Pick<ProjectSearchResult, "trashed" | "metadata" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "state" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses"> & {
14001
+ } & Pick<ProjectSearchResult, "trashed" | "metadata" | "url" | "targetDate" | "startDate" | "icon" | "updatedAt" | "completedScopeHistory" | "completedIssueCountHistory" | "inProgressScopeHistory" | "progress" | "scope" | "color" | "content" | "description" | "name" | "slugId" | "sortOrder" | "archivedAt" | "createdAt" | "autoArchivedAt" | "canceledAt" | "completedAt" | "startedAt" | "projectUpdateRemindersPausedUntilAt" | "scopeHistory" | "issueCountHistory" | "id" | "slackIssueComments" | "slackNewIssue" | "slackIssueStatuses" | "state"> & {
13912
14002
  integrationsSettings?: Maybe<{
13913
14003
  __typename?: "IntegrationsSettings";
13914
14004
  } & Pick<IntegrationsSettings, "id">>;
@@ -13924,6 +14014,9 @@ export declare type ProjectSearchResultFragment = {
13924
14014
  creator?: Maybe<{
13925
14015
  __typename?: "User";
13926
14016
  } & Pick<User, "id">>;
14017
+ favorite?: Maybe<{
14018
+ __typename?: "Favorite";
14019
+ } & Pick<Favorite, "id">>;
13927
14020
  };
13928
14021
  export declare type ProjectSearchResultConnectionFragment = {
13929
14022
  __typename: "ProjectSearchResultConnection";
@@ -17104,12 +17197,12 @@ export declare type AttachmentLinkJiraIssueMutation = {
17104
17197
  } & AttachmentPayloadFragment;
17105
17198
  };
17106
17199
  export declare type AttachmentLinkSlackMutationVariables = Exact<{
17107
- channel: Scalars["String"];
17200
+ channel?: Maybe<Scalars["String"]>;
17108
17201
  createAsUser?: Maybe<Scalars["String"]>;
17109
17202
  displayIconUrl?: Maybe<Scalars["String"]>;
17110
17203
  id?: Maybe<Scalars["String"]>;
17111
17204
  issueId: Scalars["String"];
17112
- latest: Scalars["String"];
17205
+ latest?: Maybe<Scalars["String"]>;
17113
17206
  title?: Maybe<Scalars["String"]>;
17114
17207
  ts?: Maybe<Scalars["String"]>;
17115
17208
  url: Scalars["String"];
@@ -19191,6 +19284,9 @@ export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<Pr
19191
19284
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
19192
19285
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
19193
19286
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
19287
+ export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
19288
+ export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
19289
+ export declare const AuthEmailIntakeAddressFragmentDoc: DocumentNode<AuthEmailIntakeAddressFragment, unknown>;
19194
19290
  export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
19195
19291
  export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
19196
19292
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
@@ -19245,8 +19341,6 @@ export declare const AuthApiKeyFragmentDoc: DocumentNode<AuthApiKeyFragment, unk
19245
19341
  export declare const AuthApiKeyPayloadFragmentDoc: DocumentNode<AuthApiKeyPayloadFragment, unknown>;
19246
19342
  export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFragment, unknown>;
19247
19343
  export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
19248
- export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
19249
- export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
19250
19344
  export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
19251
19345
  export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
19252
19346
  export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
@@ -19346,8 +19440,10 @@ export declare const OrganizationExistsPayloadFragmentDoc: DocumentNode<Organiza
19346
19440
  export declare const OrganizationInviteFragmentDoc: DocumentNode<OrganizationInviteFragment, unknown>;
19347
19441
  export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<OrganizationInviteConnectionFragment, unknown>;
19348
19442
  export declare const OrganizationInviteFullDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteFullDetailsPayloadFragment, unknown>;
19443
+ export declare const OrganizationInviteLinkDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteLinkDetailsPayloadFragment, unknown>;
19349
19444
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
19350
19445
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
19446
+ export declare const OrganizationRegionResponseFragmentDoc: DocumentNode<OrganizationRegionResponseFragment, unknown>;
19351
19447
  export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
19352
19448
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
19353
19449
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
@@ -20684,12 +20780,12 @@ export declare const AttachmentLinkJiraIssueDocument: DocumentNode<AttachmentLin
20684
20780
  jiraIssueId: Scalars["String"];
20685
20781
  }>>;
20686
20782
  export declare const AttachmentLinkSlackDocument: DocumentNode<AttachmentLinkSlackMutation, Exact<{
20687
- channel: Scalars["String"];
20783
+ channel?: Maybe<string> | undefined;
20688
20784
  createAsUser?: Maybe<string> | undefined;
20689
20785
  displayIconUrl?: Maybe<string> | undefined;
20690
20786
  id?: Maybe<string> | undefined;
20691
20787
  issueId: Scalars["String"];
20692
- latest: Scalars["String"];
20788
+ latest?: Maybe<string> | undefined;
20693
20789
  title?: Maybe<string> | undefined;
20694
20790
  ts?: Maybe<string> | undefined;
20695
20791
  url: Scalars["String"];