Skip to content

Commit

Permalink
[Monitor] Ship type declarations (Azure#13299)
Browse files Browse the repository at this point in the history
* [Monitor] Ship type declarations file

* prepare release
  • Loading branch information
deyaaeldeen authored and ljian3377 committed Jan 22, 2021
1 parent 1dc3b69 commit 1b641e4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
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";

0 comments on commit 1b641e4

Please sign in to comment.