123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- import type {PlatformKey} from 'sentry/data/platformCategories';
- import type {Scope, TimeseriesValue} from './core';
- import type {SDKUpdatesSuggestion} from './event';
- import type {Plugin} from './integrations';
- import type {Organization, Team} from './organization';
- import type {Deploy} from './release';
- import type {DynamicSamplingBias, DynamicSamplingRule} from './sampling';
- // Minimal project representation for use with avatars.
- export type AvatarProject = {
- slug: string;
- id?: string | number;
- platform?: PlatformKey;
- };
- export type Project = {
- access: Scope[];
- dateCreated: string;
- digestsMaxDelay: number;
- digestsMinDelay: number;
- dynamicSamplingBiases: DynamicSamplingBias[] | null;
- environments: string[];
- eventProcessing: {
- symbolicationDegraded: boolean;
- };
- features: string[];
- firstEvent: string | null;
- firstTransactionEvent: boolean;
- groupingAutoUpdate: boolean;
- groupingConfig: string;
- hasAccess: boolean;
- hasMinifiedStackTrace: boolean;
- hasProfiles: boolean;
- hasReplays: boolean;
- hasSessions: boolean;
- id: string;
- isBookmarked: boolean;
- isInternal: boolean;
- isMember: boolean;
- name: string;
- organization: Organization;
- plugins: Plugin[];
- processingIssues: number;
- relayPiiConfig: string;
- subjectTemplate: string;
- team: Team;
- teams: Team[];
- builtinSymbolSources?: string[];
- dynamicSamplingRules?: DynamicSamplingRule[] | null;
- hasUserReports?: boolean;
- latestDeploys?: Record<string, Pick<Deploy, 'dateFinished' | 'version'>> | null;
- latestRelease?: {version: string} | null;
- options?: Record<string, boolean | string>;
- sessionStats?: {
- currentCrashFreeRate: number | null;
- hasHealthData: boolean;
- previousCrashFreeRate: number | null;
- };
- stats?: TimeseriesValue[];
- symbolSources?: string;
- transactionStats?: TimeseriesValue[];
- } & AvatarProject;
- export type MinimalProject = Pick<Project, 'id' | 'slug' | 'platform'>;
- // Response from project_keys endpoints.
- export type ProjectKey = {
- browserSdk: {
- choices: [key: string, value: string][];
- };
- browserSdkVersion: string;
- dateCreated: string;
- dsn: {
- cdn: string;
- csp: string;
- minidump: string;
- public: string;
- secret: string;
- security: string;
- unreal: string;
- };
- dynamicSdkLoaderOptions: {
- hasDebug: boolean;
- hasPerformance: boolean;
- hasReplay: boolean;
- };
- id: string;
- isActive: boolean;
- label: string;
- name: string;
- projectId: string;
- public: string;
- rateLimit: {
- count: number;
- window: string;
- } | null;
- secret: string;
- };
- export type ProjectSdkUpdates = {
- projectId: string;
- sdkName: string;
- sdkVersion: string;
- suggestions: SDKUpdatesSuggestion[];
- };
- export type Environment = {
- displayName: string;
- id: string;
- name: string;
- // XXX: Provided by the backend but unused due to `getUrlRoutingName()`
- // urlRoutingName: string;
- };
- export interface TeamWithProjects extends Team {
- projects: Project[];
- }
- export type PlatformIntegration = {
- id: PlatformKey;
- language: string;
- link: string | null;
- name: string;
- type: string;
- };
|