|
@@ -24,10 +24,6 @@ interface UnknownErrorDebugError extends BaseSourceMapDebugError {
|
|
|
interface MissingReleaseDebugError extends BaseSourceMapDebugError {
|
|
|
type: SourceMapProcessingIssueType.MISSING_RELEASE;
|
|
|
}
|
|
|
-interface MissingUserAgentDebugError extends BaseSourceMapDebugError {
|
|
|
- data: {version: string};
|
|
|
- type: SourceMapProcessingIssueType.MISSING_USER_AGENT;
|
|
|
-}
|
|
|
interface MissingSourcemapsDebugError extends BaseSourceMapDebugError {
|
|
|
type: SourceMapProcessingIssueType.MISSING_SOURCEMAPS;
|
|
|
}
|
|
@@ -57,7 +53,6 @@ interface NotPartOfPipelineError extends BaseSourceMapDebugError {
|
|
|
export type SourceMapDebugError =
|
|
|
| UnknownErrorDebugError
|
|
|
| MissingReleaseDebugError
|
|
|
- | MissingUserAgentDebugError
|
|
|
| MissingSourcemapsDebugError
|
|
|
| UrlNotValidDebugError
|
|
|
| PartialMatchDebugError
|
|
@@ -73,7 +68,6 @@ export interface SourceMapDebugResponse {
|
|
|
export enum SourceMapProcessingIssueType {
|
|
|
UNKNOWN_ERROR = 'unknown_error',
|
|
|
MISSING_RELEASE = 'no_release_on_event',
|
|
|
- MISSING_USER_AGENT = 'no_user_agent_on_release',
|
|
|
MISSING_SOURCEMAPS = 'no_sourcemaps_on_release',
|
|
|
URL_NOT_VALID = 'url_not_valid',
|
|
|
NO_URL_MATCH = 'no_url_match',
|