@microsoft/applicationinsights-web-basic 2.8.0-beta.2203-15 → 2.8.0-nightly.2204-04
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/aib.2.8.0-nightly.2204-04.integrity.json +26 -0
- package/browser/{aib.2.8.0-beta.2203-15.js → aib.2.8.0-nightly.2204-04.js} +159 -294
- package/browser/aib.2.8.0-nightly.2204-04.js.map +1 -0
- package/browser/aib.2.8.0-nightly.2204-04.min.js +6 -0
- package/browser/aib.2.8.0-nightly.2204-04.min.js.map +1 -0
- package/browser/aib.2.js +158 -293
- package/browser/aib.2.js.map +1 -1
- package/browser/aib.2.min.js +2 -2
- package/browser/aib.2.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.api.json +152 -77
- package/dist/applicationinsights-web-basic.d.ts +25 -1
- package/dist/applicationinsights-web-basic.js +158 -293
- package/dist/applicationinsights-web-basic.js.map +1 -1
- package/dist/applicationinsights-web-basic.min.js +2 -2
- package/dist/applicationinsights-web-basic.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.rollup.d.ts +25 -1
- package/dist-esm/index.js +1 -1
- package/package.json +5 -5
- package/types/tsdoc-metadata.json +1 -1
- package/browser/aib.2.8.0-beta.2203-15.integrity.json +0 -26
- package/browser/aib.2.8.0-beta.2203-15.js.map +0 -1
- package/browser/aib.2.8.0-beta.2203-15.min.js +0 -6
- package/browser/aib.2.8.0-beta.2203-15.min.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft.ApplicationInsights, 2.8.0-
|
|
2
|
+
* Microsoft.ApplicationInsights, 2.8.0-nightly.2204-04
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -1486,15 +1486,39 @@ declare namespace ApplicationInsights {
|
|
|
1486
1486
|
}
|
|
1487
1487
|
|
|
1488
1488
|
interface IEnvelope extends ISerializable {
|
|
1489
|
+
/**
|
|
1490
|
+
* Envelope version. For internal use only. By assigning this the default, it will not be serialized within the payload unless changed to a value other than #1.
|
|
1491
|
+
*/
|
|
1489
1492
|
ver: number;
|
|
1493
|
+
/**
|
|
1494
|
+
* Type name of telemetry data item.
|
|
1495
|
+
*/
|
|
1490
1496
|
name: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* Event date time when telemetry item was created. This is the wall clock time on the client when the event was generated. There is no guarantee that the client's time is accurate. This field must be formatted in UTC ISO 8601 format, with a trailing 'Z' character, as described publicly on https://en.wikipedia.org/wiki/ISO_8601#UTC. Note: the number of decimal seconds digits provided are variable (and unspecified). Consumers should handle this, i.e. managed code consumers should not use format 'O' for parsing as it specifies a fixed length. Example: 2009-06-15T13:45:30.0000000Z.
|
|
1499
|
+
*/
|
|
1491
1500
|
time: string;
|
|
1501
|
+
/**
|
|
1502
|
+
* Sampling rate used in application. This telemetry item represents 1 / sampleRate actual telemetry items.
|
|
1503
|
+
*/
|
|
1492
1504
|
sampleRate: number;
|
|
1505
|
+
/**
|
|
1506
|
+
* Sequence field used to track absolute order of uploaded events.
|
|
1507
|
+
*/
|
|
1493
1508
|
seq: string;
|
|
1509
|
+
/**
|
|
1510
|
+
* The application's instrumentation key. The key is typically represented as a GUID, but there are cases when it is not a guid. No code should rely on iKey being a GUID. Instrumentation key is case insensitive.
|
|
1511
|
+
*/
|
|
1494
1512
|
iKey: string;
|
|
1513
|
+
/**
|
|
1514
|
+
* Key/value collection of context properties. See ContextTagKeys for information on available properties.
|
|
1515
|
+
*/
|
|
1495
1516
|
tags: {
|
|
1496
1517
|
[name: string]: any;
|
|
1497
1518
|
};
|
|
1519
|
+
/**
|
|
1520
|
+
* Telemetry data item.
|
|
1521
|
+
*/
|
|
1498
1522
|
data: any;
|
|
1499
1523
|
}
|
|
1500
1524
|
|