Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Monitor] Ship type declarations #13299

Merged
merged 2 commits into from
Jan 20, 2021
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
4 changes: 4 additions & 0 deletions sdk/monitor/opentelemetry-exporter-azure-monitor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 1.0.0-beta.2 (2021-01-20)

- Ship the correct type declaration file

## 1.0.0-beta.1 (2021-01-13)

- OT Exporter retry when there are network issues
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dtsRollup": {
"enabled": true,
"untrimmedFilePath": "",
"publicTrimmedFilePath": "./types/latest/opentelemetry-exporter-azure-monitor.d.ts"
"publicTrimmedFilePath": "./types/opentelemetry-exporter-azure-monitor.d.ts"
},
"messages": {
"tsdocMessageReporting": {
Expand Down
6 changes: 3 additions & 3 deletions sdk/monitor/opentelemetry-exporter-azure-monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "@azure/opentelemetry-exporter-azure-monitor",
"author": "Microsoft Corporation",
"sdk-type": "client",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"description": "Application Insights exporter for the OpenTelemetry JavaScript (Node.js) SDK",
"main": "dist/index.js",
"module": "dist-esm/src/index.js",
"types": "types/latest/opentelemetry-exporter-azure-monitor.d.ts",
"types": "types/opentelemetry-exporter-azure-monitor.d.ts",
"scripts": {
"clean": "rimraf dist-esm types dist",
"build:autorest": "autorest ./swagger/README.md --typescript --v3",
Expand Down Expand Up @@ -41,7 +41,7 @@
"dist-esm/src/",
"dist/src/",
"browser/src/",
"types/src/",
"types/opentelemetry-exporter-azure-monitor.d.ts",
"README.md",
"SECURITY.md",
"LICENSE"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http";
import { ApplicationInsightsClientOptionalParams } from "./models";

const packageName = "@azure/opentelemetry-exporter-azure-monitor";
const packageVersion = "1.0.0";
const packageVersion = "1.0.0-beta.2";

export class ApplicationInsightsClientContext extends coreHttp.ServiceClient {
host: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export const MS_LINKS = "_MS.links";
export const INPROC = "InProc";
export const ENQUEUED_TIME = "enqueuedTime";
export const TIME_SINCE_ENQUEUED = "timeSinceEnqueued";
export const packageVersion = "1.0.0-beta.1";
export const packageVersion = "1.0.0-beta.2";