Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion static/app/components/assigneeSelectorDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ import MemberListStore from 'sentry/stores/memberListStore';
import ProjectsStore from 'sentry/stores/projectsStore';
import {useLegacyStore} from 'sentry/stores/useLegacyStore';
import {space} from 'sentry/styles/space';
import type {Actor, Group, SuggestedOwnerReason, Team, User} from 'sentry/types';
import type {Actor} from 'sentry/types/core';
import type {Group, SuggestedOwnerReason} from 'sentry/types/group';
import type {Team} from 'sentry/types/organization';
import type {User} from 'sentry/types/user';
import {buildTeamId} from 'sentry/utils';

const suggestedReasonTable: Record<SuggestedOwnerReason, string> = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ import useIssueTrackingFilter from 'sentry/components/group/externalIssuesList/u
import ExternalIssueStore from 'sentry/stores/externalIssueStore';
import SentryAppInstallationStore from 'sentry/stores/sentryAppInstallationsStore';
import {useLegacyStore} from 'sentry/stores/useLegacyStore';
import type {Group, GroupIntegration, Project} from 'sentry/types';
import type {Event} from 'sentry/types/event';
import type {Group} from 'sentry/types/group';
import type {GroupIntegration} from 'sentry/types/integrations';
import type {Project} from 'sentry/types/project';
import useOrganization from 'sentry/utils/useOrganization';
import useSentryAppComponentsStore from 'sentry/utils/useSentryAppComponentsStore';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import {useEffect} from 'react';

import ExternalIssueStore from 'sentry/stores/externalIssueStore';
import type {Group, OrganizationSummary, PlatformExternalIssue} from 'sentry/types';
import type {Group} from 'sentry/types/group';
import type {PlatformExternalIssue} from 'sentry/types/integrations';
import type {OrganizationSummary} from 'sentry/types/organization';
import {useApiQuery} from 'sentry/utils/queryClient';

// We want to do this explicitly so that we can handle errors gracefully,
Expand Down
6 changes: 5 additions & 1 deletion static/app/components/group/sentryAppExternalIssueForm.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import {t} from 'sentry/locale';
import ExternalIssueStore from 'sentry/stores/externalIssueStore';
import type {Group, PlatformExternalIssue, SentryAppInstallation} from 'sentry/types';
import type {Event} from 'sentry/types/event';
import type {Group} from 'sentry/types/group';
import type {
PlatformExternalIssue,
SentryAppInstallation,
} from 'sentry/types/integrations';
import type {FeedbackIssue} from 'sentry/utils/feedback/types';
import getStacktraceBody from 'sentry/utils/getStacktraceBody';
import {addQueryParamsToExistingUrl} from 'sentry/utils/queryString';
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/pullRequestLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {Button} from 'sentry/components/button';
import ExternalLink from 'sentry/components/links/externalLink';
import {IconBitbucket, IconGithub, IconGitlab} from 'sentry/icons';
import {space} from 'sentry/styles/space';
import type {PullRequest, Repository} from 'sentry/types';
import type {PullRequest, Repository} from 'sentry/types/integrations';

function renderIcon(repo: Repository) {
if (!repo.provider) {
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/quickTrace/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import {Tooltip} from 'sentry/components/tooltip';
import {backend, frontend, mobile, serverless} from 'sentry/data/platformCategories';
import {IconFire} from 'sentry/icons';
import {t, tct, tn} from 'sentry/locale';
import type {OrganizationSummary} from 'sentry/types';
import type {Event} from 'sentry/types/event';
import type {OrganizationSummary} from 'sentry/types/organization';
import {trackAnalytics} from 'sentry/utils/analytics';
import {getDocsPlatform} from 'sentry/utils/docs';
import getDuration from 'sentry/utils/duration/getDuration';
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/quickTrace/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type {Location, LocationDescriptor} from 'history';

import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse';
import {ALL_ACCESS_PROJECTS} from 'sentry/constants/pageFilters';
import type {OrganizationSummary} from 'sentry/types';
import type {Event} from 'sentry/types/event';
import type {OrganizationSummary} from 'sentry/types/organization';
import {defined} from 'sentry/utils';
import EventView from 'sentry/utils/discover/eventView';
import {
Expand Down
3 changes: 2 additions & 1 deletion static/app/components/replaysOnboarding/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ import platforms, {otherPlatform} from 'sentry/data/platforms';
import {t, tct} from 'sentry/locale';
import pulsingIndicatorStyles from 'sentry/styles/pulsingIndicator';
import {space} from 'sentry/styles/space';
import type {PlatformKey, Project, SelectValue} from 'sentry/types';
import type {SelectValue} from 'sentry/types/core';
import type {PlatformKey, Project} from 'sentry/types/project';
import EventWaiter from 'sentry/utils/eventWaiter';
import useApi from 'sentry/utils/useApi';
import useOrganization from 'sentry/utils/useOrganization';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import * as Sentry from '@sentry/react';

import type {Docs} from 'sentry/components/onboarding/gettingStartedDoc/types';
import {replayPlatforms} from 'sentry/data/platformCategories';
import type {Organization, PlatformIntegration, ProjectKey} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';
import type {PlatformIntegration, ProjectKey} from 'sentry/types/project';
import {useApiQuery} from 'sentry/utils/queryClient';

function useLoadOnboardingDoc({
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/replaysOnboarding/utils.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {replayFrontendPlatforms, replayPlatforms} from 'sentry/data/platformCategories';
import platforms from 'sentry/data/platforms';
import type {PlatformIntegration, PlatformKey} from 'sentry/types';
import type {PlatformIntegration, PlatformKey} from 'sentry/types/project';

export function generateDocKeys(platform: PlatformKey): string[] {
const platformKey = platform.startsWith('javascript')
Expand Down