Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 5x 5x | // SPDX-FileCopyrightText: 2025 Anaconda, Inc // SPDX-License-Identifier: Apache-2.0 /** * Version information for the telemetry SDK. * * This file contains version constants used throughout the library. * Update these values when releasing new versions. */ /** Version of the telemetry SDK */ export const sdkVersion = "0.0.0"; /** Version of the telemetry schema used by this SDK */ export const schemaVersion = "0.2.0"; |