UNPKG

@splunk/rum-cli

Version:

Tools for handling symbol and mapping files for symbolication

41 lines (40 loc) 1.49 kB
"use strict"; /* * Copyright Splunk Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.SOURCEMAPS_CONSTANTS = exports.IOS_CONSTANTS = exports.ANDROID_CONSTANTS = exports.TOKEN_HEADER = exports.BASE_URL_PREFIX = exports.API_VERSION_STRING = void 0; /* * Centralized constants for the Splunk RUM CLI. */ // Global Constants exports.API_VERSION_STRING = 'v2'; exports.BASE_URL_PREFIX = 'https://api'; exports.TOKEN_HEADER = 'X-SF-Token'; // Android-Specific Constants exports.ANDROID_CONSTANTS = { PATH_FOR_UPLOAD: 'rum-mfm/proguard', PATH_FOR_METADATA: 'rum-mfm/proguard/metadatas', }; // iOS-Specific Constants exports.IOS_CONSTANTS = { PATH_FOR_UPLOAD: 'rum-mfm/dsym', PATH_FOR_METADATA: 'rum-mfm/macho/metadatas', }; // Sourcemaps-Specific Constants exports.SOURCEMAPS_CONSTANTS = { PATH_FOR_UPLOAD: 'rum-mfm/source-maps', PATH_FOR_METADATA: 'rum-mfm/source-maps/metadatas', };