@linear/sdk 18.0.0 → 18.1.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;
@@ -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"]>;
@@ -8381,6 +8439,8 @@ export declare type Query = {
8381
8439
  organizationInviteDetails: OrganizationInviteDetailsPayload;
8382
8440
  /** All invites for the organization. */
8383
8441
  organizationInvites: OrganizationInviteConnection;
8442
+ /** Fetch the region for the organization. */
8443
+ organizationRegion: OrganizationRegionResponse;
8384
8444
  /** One specific project. */
8385
8445
  project: Project;
8386
8446
  /** Suggests filters for a project view based on a text prompt. */
@@ -8786,6 +8846,9 @@ export declare type QueryOrganizationInvitesArgs = {
8786
8846
  last?: Maybe<Scalars["Int"]>;
8787
8847
  orderBy?: Maybe<PaginationOrderBy>;
8788
8848
  };
8849
+ export declare type QueryOrganizationRegionArgs = {
8850
+ id: Scalars["String"];
8851
+ };
8789
8852
  export declare type QueryProjectArgs = {
8790
8853
  id: Scalars["String"];
8791
8854
  };
@@ -9322,12 +9385,16 @@ export declare type SentrySettingsInput = {
9322
9385
  /** Shared Slack integration settings. */
9323
9386
  export declare type SharedSlackSettings = {
9324
9387
  __typename?: "SharedSlackSettings";
9388
+ /** Enterprise name of the connected Slack enterprise */
9389
+ enterpriseName?: Maybe<Scalars["String"]>;
9325
9390
  /** Slack workspace id */
9326
9391
  teamId?: Maybe<Scalars["String"]>;
9327
9392
  /** Slack workspace name */
9328
9393
  teamName?: Maybe<Scalars["String"]>;
9329
9394
  };
9330
9395
  export declare type SharedSlackSettingsInput = {
9396
+ /** Enterprise name of the connected Slack enterprise */
9397
+ enterpriseName?: Maybe<Scalars["String"]>;
9331
9398
  /** Slack workspace id */
9332
9399
  teamId?: Maybe<Scalars["String"]>;
9333
9400
  /** Slack workspace name */
@@ -9367,6 +9434,8 @@ export declare type SlackAsksSettings = {
9367
9434
  __typename?: "SlackAsksSettings";
9368
9435
  /** The user role type that is allowed to manage Asks settings. */
9369
9436
  canAdministrate: UserRoleType;
9437
+ /** Enterprise name of the connected Slack enterprise */
9438
+ enterpriseName?: Maybe<Scalars["String"]>;
9370
9439
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
9371
9440
  slackChannelMapping?: Maybe<Array<SlackChannelNameMapping>>;
9372
9441
  /** Slack workspace id */
@@ -9377,6 +9446,8 @@ export declare type SlackAsksSettings = {
9377
9446
  export declare type SlackAsksSettingsInput = {
9378
9447
  /** The user role type that is allowed to manage Asks settings. */
9379
9448
  canAdministrate: UserRoleType;
9449
+ /** Enterprise name of the connected Slack enterprise */
9450
+ enterpriseName?: Maybe<Scalars["String"]>;
9380
9451
  /** The mapping of Slack channel ID => Slack channel name for connected channels. */
9381
9452
  slackChannelMapping?: Maybe<Array<SlackChannelNameMappingInput>>;
9382
9453
  /** Slack workspace id */
@@ -9482,6 +9553,8 @@ export declare type SlackPostSettingsInput = {
9482
9553
  /** Settings for the regular Slack integration. */
9483
9554
  export declare type SlackSettings = {
9484
9555
  __typename?: "SlackSettings";
9556
+ /** Enterprise name of the connected Slack enterprise */
9557
+ enterpriseName?: Maybe<Scalars["String"]>;
9485
9558
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
9486
9559
  linkOnIssueIdMention: Scalars["Boolean"];
9487
9560
  /** Slack workspace id */
@@ -9490,6 +9563,8 @@ export declare type SlackSettings = {
9490
9563
  teamName?: Maybe<Scalars["String"]>;
9491
9564
  };
9492
9565
  export declare type SlackSettingsInput = {
9566
+ /** Enterprise name of the connected Slack enterprise */
9567
+ enterpriseName?: Maybe<Scalars["String"]>;
9493
9568
  /** Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message. */
9494
9569
  linkOnIssueIdMention: Scalars["Boolean"];
9495
9570
  /** Slack workspace id */
@@ -10937,7 +11012,7 @@ export declare type UserSettings = Node & {
10937
11012
  subscribedToUnreadNotificationsReminder: Scalars["Boolean"];
10938
11013
  /**
10939
11014
  * The email types the user has unsubscribed from.
10940
- * @deprecated Use individual subscription fields instead.
11015
+ * @deprecated Use individual subscription fields instead. This field's value is now outdated.
10941
11016
  */
10942
11017
  unsubscribedFrom: Array<Scalars["String"]>;
10943
11018
  /**
@@ -11103,6 +11178,7 @@ export declare enum ViewType {
11103
11178
  Inbox = "inbox",
11104
11179
  Initiative = "initiative",
11105
11180
  Initiatives = "initiatives",
11181
+ IssueIdentifiers = "issueIdentifiers",
11106
11182
  Label = "label",
11107
11183
  MyIssues = "myIssues",
11108
11184
  MyIssuesActivity = "myIssuesActivity",
@@ -11700,7 +11776,7 @@ export declare type DocumentContentHistoryFragment = {
11700
11776
  };
11701
11777
  export declare type DocumentFragment = {
11702
11778
  __typename: "Document";
11703
- } & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
11779
+ } & Pick<Document, "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
11704
11780
  lastAppliedTemplate?: Maybe<{
11705
11781
  __typename?: "Template";
11706
11782
  } & Pick<Template, "id">>;
@@ -11941,7 +12017,7 @@ export declare type ProjectNotificationFragment = {
11941
12017
  };
11942
12018
  export declare type ProjectFragment = {
11943
12019
  __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"> & {
12020
+ } & 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
12021
  integrationsSettings?: Maybe<{
11946
12022
  __typename?: "IntegrationsSettings";
11947
12023
  } & Pick<IntegrationsSettings, "id">>;
@@ -11957,6 +12033,9 @@ export declare type ProjectFragment = {
11957
12033
  creator?: Maybe<{
11958
12034
  __typename?: "User";
11959
12035
  } & Pick<User, "id">>;
12036
+ favorite?: Maybe<{
12037
+ __typename?: "Favorite";
12038
+ } & Pick<Favorite, "id">>;
11960
12039
  };
11961
12040
  export declare type ReactionFragment = {
11962
12041
  __typename: "Reaction";
@@ -12216,6 +12295,16 @@ export declare type WebhookFragment = {
12216
12295
  export declare type ApiKeyFragment = {
12217
12296
  __typename: "ApiKey";
12218
12297
  } & Pick<ApiKey, "label" | "updatedAt" | "archivedAt" | "createdAt" | "id">;
12298
+ export declare type AuthEmailIntakeAddressFragment = {
12299
+ __typename: "AuthEmailIntakeAddress";
12300
+ } & Pick<AuthEmailIntakeAddress, "id" | "address" | "enabled"> & {
12301
+ organization: {
12302
+ __typename?: "AuthOrganization";
12303
+ } & AuthOrganizationFragment;
12304
+ creator?: Maybe<{
12305
+ __typename?: "AuthUser";
12306
+ } & AuthUserFragment>;
12307
+ };
12219
12308
  export declare type EmailIntakeAddressFragment = {
12220
12309
  __typename: "EmailIntakeAddress";
12221
12310
  } & Pick<EmailIntakeAddress, "updatedAt" | "archivedAt" | "createdAt" | "id" | "address" | "enabled"> & {
@@ -12380,7 +12469,7 @@ export declare type OrganizationFragment = {
12380
12469
  };
12381
12470
  export declare type AuthOrganizationFragment = {
12382
12471
  __typename: "AuthOrganization";
12383
- } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
12472
+ } & Pick<AuthOrganization, "allowedAuthServices" | "previousUrlKeys" | "serviceId" | "logoUrl" | "name" | "urlKey" | "region" | "deletionRequestedAt" | "id" | "samlEnabled" | "scimEnabled" | "userCount">;
12384
12473
  export declare type TeamFragment = {
12385
12474
  __typename: "Team";
12386
12475
  } & 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 +12863,13 @@ export declare type SentrySettingsFragment = {
12774
12863
  } & Pick<SentrySettings, "organizationSlug">;
12775
12864
  export declare type SlackSettingsFragment = {
12776
12865
  __typename: "SlackSettings";
12777
- } & Pick<SlackSettings, "teamId" | "teamName" | "linkOnIssueIdMention">;
12866
+ } & Pick<SlackSettings, "enterpriseName" | "teamId" | "teamName" | "linkOnIssueIdMention">;
12778
12867
  export declare type SharedSlackSettingsFragment = {
12779
12868
  __typename: "SharedSlackSettings";
12780
- } & Pick<SharedSlackSettings, "teamId" | "teamName">;
12869
+ } & Pick<SharedSlackSettings, "enterpriseName" | "teamId" | "teamName">;
12781
12870
  export declare type SlackAsksSettingsFragment = {
12782
12871
  __typename: "SlackAsksSettings";
12783
- } & Pick<SlackAsksSettings, "teamId" | "teamName"> & {
12872
+ } & Pick<SlackAsksSettings, "enterpriseName" | "teamId" | "teamName"> & {
12784
12873
  slackChannelMapping?: Maybe<Array<{
12785
12874
  __typename?: "SlackChannelNameMapping";
12786
12875
  } & SlackChannelNameMappingFragment>>;
@@ -13165,7 +13254,7 @@ export declare type DocumentSearchPayloadFragment = {
13165
13254
  };
13166
13255
  export declare type DocumentSearchResultFragment = {
13167
13256
  __typename: "DocumentSearchResult";
13168
- } & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "archivedAt" | "createdAt" | "id"> & {
13257
+ } & Pick<DocumentSearchResult, "metadata" | "color" | "title" | "slugId" | "content" | "icon" | "updatedAt" | "sortOrder" | "hiddenAt" | "archivedAt" | "createdAt" | "id"> & {
13169
13258
  lastAppliedTemplate?: Maybe<{
13170
13259
  __typename?: "Template";
13171
13260
  } & Pick<Template, "id">>;
@@ -13822,7 +13911,10 @@ export declare type OrganizationInviteConnectionFragment = {
13822
13911
  };
13823
13912
  export declare type OrganizationInviteFullDetailsPayloadFragment = {
13824
13913
  __typename: "OrganizationInviteFullDetailsPayload";
13825
- } & Pick<OrganizationInviteFullDetailsPayload, "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
13914
+ } & Pick<OrganizationInviteFullDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "email" | "inviter" | "organizationLogoUrl" | "createdAt" | "accepted" | "expired">;
13915
+ export declare type OrganizationInviteLinkDetailsPayloadFragment = {
13916
+ __typename: "OrganizationInviteLinkDetailsPayload";
13917
+ } & Pick<OrganizationInviteLinkDetailsPayload, "allowedAuthServices" | "organizationId" | "organizationName" | "organizationRegion" | "organizationUrlKey" | "organizationLogoUrl">;
13826
13918
  export declare type OrganizationInvitePayloadFragment = {
13827
13919
  __typename: "OrganizationInvitePayload";
13828
13920
  } & Pick<OrganizationInvitePayload, "lastSyncId" | "success"> & {
@@ -13833,6 +13925,9 @@ export declare type OrganizationInvitePayloadFragment = {
13833
13925
  export declare type OrganizationPayloadFragment = {
13834
13926
  __typename: "OrganizationPayload";
13835
13927
  } & Pick<OrganizationPayload, "lastSyncId" | "success">;
13928
+ export declare type OrganizationRegionResponseFragment = {
13929
+ __typename: "OrganizationRegionResponse";
13930
+ } & Pick<OrganizationRegionResponse, "region" | "success">;
13836
13931
  export declare type OrganizationStartPlusTrialPayloadFragment = {
13837
13932
  __typename: "OrganizationStartPlusTrialPayload";
13838
13933
  } & Pick<OrganizationStartPlusTrialPayload, "success">;
@@ -13908,7 +14003,7 @@ export declare type ProjectSearchPayloadFragment = {
13908
14003
  };
13909
14004
  export declare type ProjectSearchResultFragment = {
13910
14005
  __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"> & {
14006
+ } & 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
14007
  integrationsSettings?: Maybe<{
13913
14008
  __typename?: "IntegrationsSettings";
13914
14009
  } & Pick<IntegrationsSettings, "id">>;
@@ -13924,6 +14019,9 @@ export declare type ProjectSearchResultFragment = {
13924
14019
  creator?: Maybe<{
13925
14020
  __typename?: "User";
13926
14021
  } & Pick<User, "id">>;
14022
+ favorite?: Maybe<{
14023
+ __typename?: "Favorite";
14024
+ } & Pick<Favorite, "id">>;
13927
14025
  };
13928
14026
  export declare type ProjectSearchResultConnectionFragment = {
13929
14027
  __typename: "ProjectSearchResultConnection";
@@ -15830,6 +15928,16 @@ export declare type OrganizationInvitesQuery = {
15830
15928
  __typename?: "OrganizationInviteConnection";
15831
15929
  } & OrganizationInviteConnectionFragment;
15832
15930
  };
15931
+ export declare type OrganizationRegionQueryVariables = Exact<{
15932
+ id: Scalars["String"];
15933
+ }>;
15934
+ export declare type OrganizationRegionQuery = {
15935
+ __typename?: "Query";
15936
+ } & {
15937
+ organizationRegion: {
15938
+ __typename?: "OrganizationRegionResponse";
15939
+ } & OrganizationRegionResponseFragment;
15940
+ };
15833
15941
  export declare type ProjectQueryVariables = Exact<{
15834
15942
  id: Scalars["String"];
15835
15943
  }>;
@@ -19191,6 +19299,9 @@ export declare const ProjectNotificationSubscriptionFragmentDoc: DocumentNode<Pr
19191
19299
  export declare const TeamNotificationSubscriptionFragmentDoc: DocumentNode<TeamNotificationSubscriptionFragment, unknown>;
19192
19300
  export declare const UserAccountFragmentDoc: DocumentNode<UserAccountFragment, unknown>;
19193
19301
  export declare const UserNotificationSubscriptionFragmentDoc: DocumentNode<UserNotificationSubscriptionFragment, unknown>;
19302
+ export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
19303
+ export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
19304
+ export declare const AuthEmailIntakeAddressFragmentDoc: DocumentNode<AuthEmailIntakeAddressFragment, unknown>;
19194
19305
  export declare const AuthOrganizationInviteFragmentDoc: DocumentNode<AuthOrganizationInviteFragment, unknown>;
19195
19306
  export declare const PaidSubscriptionFragmentDoc: DocumentNode<PaidSubscriptionFragment, unknown>;
19196
19307
  export declare const OrganizationFragmentDoc: DocumentNode<OrganizationFragment, unknown>;
@@ -19245,8 +19356,6 @@ export declare const AuthApiKeyFragmentDoc: DocumentNode<AuthApiKeyFragment, unk
19245
19356
  export declare const AuthApiKeyPayloadFragmentDoc: DocumentNode<AuthApiKeyPayloadFragment, unknown>;
19246
19357
  export declare const AuthIntegrationFragmentDoc: DocumentNode<AuthIntegrationFragment, unknown>;
19247
19358
  export declare const AuthOauthClientFragmentDoc: DocumentNode<AuthOauthClientFragment, unknown>;
19248
- export declare const AuthOrganizationFragmentDoc: DocumentNode<AuthOrganizationFragment, unknown>;
19249
- export declare const AuthUserFragmentDoc: DocumentNode<AuthUserFragment, unknown>;
19250
19359
  export declare const OauthTokenFragmentDoc: DocumentNode<OauthTokenFragment, unknown>;
19251
19360
  export declare const AuthOauthClientWithTokensFragmentDoc: DocumentNode<AuthOauthClientWithTokensFragment, unknown>;
19252
19361
  export declare const AuthOrganizationDomainFragmentDoc: DocumentNode<AuthOrganizationDomainFragment, unknown>;
@@ -19346,8 +19455,10 @@ export declare const OrganizationExistsPayloadFragmentDoc: DocumentNode<Organiza
19346
19455
  export declare const OrganizationInviteFragmentDoc: DocumentNode<OrganizationInviteFragment, unknown>;
19347
19456
  export declare const OrganizationInviteConnectionFragmentDoc: DocumentNode<OrganizationInviteConnectionFragment, unknown>;
19348
19457
  export declare const OrganizationInviteFullDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteFullDetailsPayloadFragment, unknown>;
19458
+ export declare const OrganizationInviteLinkDetailsPayloadFragmentDoc: DocumentNode<OrganizationInviteLinkDetailsPayloadFragment, unknown>;
19349
19459
  export declare const OrganizationInvitePayloadFragmentDoc: DocumentNode<OrganizationInvitePayloadFragment, unknown>;
19350
19460
  export declare const OrganizationPayloadFragmentDoc: DocumentNode<OrganizationPayloadFragment, unknown>;
19461
+ export declare const OrganizationRegionResponseFragmentDoc: DocumentNode<OrganizationRegionResponseFragment, unknown>;
19351
19462
  export declare const OrganizationStartPlusTrialPayloadFragmentDoc: DocumentNode<OrganizationStartPlusTrialPayloadFragment, unknown>;
19352
19463
  export declare const ProjectFragmentDoc: DocumentNode<ProjectFragment, unknown>;
19353
19464
  export declare const ProjectConnectionFragmentDoc: DocumentNode<ProjectConnectionFragment, unknown>;
@@ -20094,6 +20205,9 @@ export declare const OrganizationInvitesDocument: DocumentNode<OrganizationInvit
20094
20205
  last?: Maybe<number> | undefined;
20095
20206
  orderBy?: Maybe<PaginationOrderBy> | undefined;
20096
20207
  }>>;
20208
+ export declare const OrganizationRegionDocument: DocumentNode<OrganizationRegionQuery, Exact<{
20209
+ id: Scalars["String"];
20210
+ }>>;
20097
20211
  export declare const ProjectDocument: DocumentNode<ProjectQuery, Exact<{
20098
20212
  id: Scalars["String"];
20099
20213
  }>>;