@microsoft/applicationinsights-web-basic 2.8.3-nightly.2205-03 → 2.8.4-nightly.2205-06
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.4-nightly.2205-06.integrity.json +26 -0
- package/browser/{aib.2.8.3-nightly.2205-03.js → aib.2.8.4-nightly.2205-06.js} +6 -5
- package/browser/aib.2.8.4-nightly.2205-06.js.map +1 -0
- package/browser/aib.2.8.4-nightly.2205-06.min.js +6 -0
- package/browser/{aib.2.8.3-nightly.2205-03.min.js.map → aib.2.8.4-nightly.2205-06.min.js.map} +1 -1
- package/browser/aib.2.js +5 -4
- 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 +22 -1
- package/dist/applicationinsights-web-basic.api.md +2 -0
- package/dist/applicationinsights-web-basic.d.ts +3 -2
- package/dist/applicationinsights-web-basic.js +5 -4
- 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 +3 -2
- package/dist-esm/index.js +1 -1
- package/package.json +4 -4
- package/types/tsdoc-metadata.json +1 -1
- package/browser/aib.2.8.3-nightly.2205-03.integrity.json +0 -26
- package/browser/aib.2.8.3-nightly.2205-03.js.map +0 -1
- package/browser/aib.2.8.3-nightly.2205-03.min.js +0 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
|
4
|
-
"toolVersion": "7.23.
|
|
4
|
+
"toolVersion": "7.23.2",
|
|
5
5
|
"schemaVersion": 1005,
|
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
|
7
7
|
"tsdocConfig": {
|
|
@@ -1002,6 +1002,27 @@
|
|
|
1002
1002
|
"endIndex": 2
|
|
1003
1003
|
}
|
|
1004
1004
|
},
|
|
1005
|
+
{
|
|
1006
|
+
"kind": "EnumMember",
|
|
1007
|
+
"canonicalReference": "@microsoft/applicationinsights-web-basic!_eInternalMessageId.InstrumentationKeyDeprecation:member",
|
|
1008
|
+
"docComment": "",
|
|
1009
|
+
"excerptTokens": [
|
|
1010
|
+
{
|
|
1011
|
+
"kind": "Content",
|
|
1012
|
+
"text": "InstrumentationKeyDeprecation = "
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"kind": "Content",
|
|
1016
|
+
"text": "106"
|
|
1017
|
+
}
|
|
1018
|
+
],
|
|
1019
|
+
"releaseTag": "Public",
|
|
1020
|
+
"name": "InstrumentationKeyDeprecation",
|
|
1021
|
+
"initializerTokenRange": {
|
|
1022
|
+
"startIndex": 1,
|
|
1023
|
+
"endIndex": 2
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1005
1026
|
{
|
|
1006
1027
|
"kind": "EnumMember",
|
|
1007
1028
|
"canonicalReference": "@microsoft/applicationinsights-web-basic!_eInternalMessageId.InvalidBackendResponse:member",
|
|
@@ -131,6 +131,8 @@ export const enum _eInternalMessageId {
|
|
|
131
131
|
// (undocumented)
|
|
132
132
|
InMemoryStorageBufferFull = 105,
|
|
133
133
|
// (undocumented)
|
|
134
|
+
InstrumentationKeyDeprecation = 106,
|
|
135
|
+
// (undocumented)
|
|
134
136
|
InvalidBackendResponse = 43,
|
|
135
137
|
// (undocumented)
|
|
136
138
|
InvalidContentBlob = 102,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft.ApplicationInsights, 2.8.
|
|
2
|
+
* Microsoft.ApplicationInsights, 2.8.4-nightly.2205-06
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -390,7 +390,8 @@ declare namespace ApplicationInsights {
|
|
|
390
390
|
InvalidContentBlob = 102,
|
|
391
391
|
TrackPageActionEventFailed = 103,
|
|
392
392
|
FailedAddingCustomDefinedRequestContext = 104,
|
|
393
|
-
InMemoryStorageBufferFull = 105
|
|
393
|
+
InMemoryStorageBufferFull = 105,
|
|
394
|
+
InstrumentationKeyDeprecation = 106
|
|
394
395
|
}
|
|
395
396
|
|
|
396
397
|
const enum eLoggingSeverity {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Application Insights JavaScript Web SDK - Basic, 2.8.
|
|
2
|
+
* Application Insights JavaScript Web SDK - Basic, 2.8.4-nightly.2205-06
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -1482,7 +1482,7 @@
|
|
|
1482
1482
|
}
|
|
1483
1483
|
|
|
1484
1484
|
var _objDefineProperty = ObjDefineProperty;
|
|
1485
|
-
var version = "2.8.
|
|
1485
|
+
var version = "2.8.4-nightly.2205-06";
|
|
1486
1486
|
var instanceName = "." + newId(6);
|
|
1487
1487
|
var _dataUid = 0;
|
|
1488
1488
|
function _createAccessor(target, prop, value) {
|
|
@@ -3584,7 +3584,8 @@
|
|
|
3584
3584
|
InvalidContentBlob: 102 ,
|
|
3585
3585
|
TrackPageActionEventFailed: 103 ,
|
|
3586
3586
|
FailedAddingCustomDefinedRequestContext: 104 ,
|
|
3587
|
-
InMemoryStorageBufferFull: 105
|
|
3587
|
+
InMemoryStorageBufferFull: 105 ,
|
|
3588
|
+
InstrumentationKeyDeprecation: 106
|
|
3588
3589
|
});
|
|
3589
3590
|
|
|
3590
3591
|
var RequestHeaders = createValueMap({
|
|
@@ -4948,7 +4949,7 @@
|
|
|
4948
4949
|
}
|
|
4949
4950
|
}
|
|
4950
4951
|
var EnvelopeCreator = {
|
|
4951
|
-
Version: "2.8.
|
|
4952
|
+
Version: "2.8.4-nightly.2205-06"
|
|
4952
4953
|
};
|
|
4953
4954
|
function DependencyEnvelopeCreator(logger, telemetryItem, customUndefinedValue) {
|
|
4954
4955
|
EnvelopeCreatorInit(logger, telemetryItem);
|