@microsoft/applicationinsights-channel-js 2.7.5-nightly.2203-02 → 2.7.5-nightly.2203-03
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/applicationinsights-channel-js.integrity.json +9 -9
- package/browser/applicationinsights-channel-js.js +1208 -429
- package/browser/applicationinsights-channel-js.js.map +1 -1
- package/browser/applicationinsights-channel-js.min.js +2 -2
- package/browser/applicationinsights-channel-js.min.js.map +1 -1
- package/dist/applicationinsights-channel-js.api.json +1 -30
- package/dist/applicationinsights-channel-js.api.md +0 -2
- package/dist/applicationinsights-channel-js.d.ts +1 -2
- package/dist/applicationinsights-channel-js.js +1208 -429
- package/dist/applicationinsights-channel-js.js.map +1 -1
- package/dist/applicationinsights-channel-js.min.js +2 -2
- package/dist/applicationinsights-channel-js.min.js.map +1 -1
- package/dist/applicationinsights-channel-js.rollup.d.ts +1 -2
- package/dist-esm/EnvelopeCreator.js +2 -2
- package/dist-esm/EnvelopeCreator.js.map +1 -1
- package/dist-esm/Interfaces.js +1 -1
- package/dist-esm/Offline.js +77 -65
- package/dist-esm/Offline.js.map +1 -1
- package/dist-esm/SendBuffer.js +1 -1
- package/dist-esm/Sender.js +72 -62
- package/dist-esm/Sender.js.map +1 -1
- package/dist-esm/Serializer.js +1 -1
- package/dist-esm/TelemetryProcessors/Sample.js +3 -3
- package/dist-esm/TelemetryProcessors/Sample.js.map +1 -1
- package/dist-esm/TelemetryProcessors/SamplingScoreGenerators/HashCodeScoreGenerator.js +1 -1
- package/dist-esm/TelemetryProcessors/SamplingScoreGenerators/SamplingScoreGenerator.js +1 -1
- package/dist-esm/applicationinsights-channel-js.js +1 -1
- package/package.json +4 -4
- package/src/EnvelopeCreator.ts +2 -2
- package/src/Offline.ts +88 -76
- package/src/Sender.ts +83 -90
- package/src/Serializer.ts +4 -8
- package/src/TelemetryProcessors/Sample.ts +1 -1
- package/src/TelemetryProcessors/SamplingScoreGenerators/HashCodeScoreGenerator.ts +3 -1
- package/types/Offline.d.ts +8 -11
- package/types/Sender.d.ts +0 -1
- package/types/TelemetryProcessors/Sample.d.ts +2 -2
- package/types/tsdoc-metadata.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
|
4
|
-
"toolVersion": "7.19.
|
|
4
|
+
"toolVersion": "7.19.5",
|
|
5
5
|
"schemaVersion": 1004,
|
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
|
7
7
|
"tsdocConfig": {
|
|
@@ -1183,35 +1183,6 @@
|
|
|
1183
1183
|
"parameters": [],
|
|
1184
1184
|
"name": "resume"
|
|
1185
1185
|
},
|
|
1186
|
-
{
|
|
1187
|
-
"kind": "Method",
|
|
1188
|
-
"canonicalReference": "@microsoft/applicationinsights-channel-js!Sender#teardown:member(1)",
|
|
1189
|
-
"docComment": "",
|
|
1190
|
-
"excerptTokens": [
|
|
1191
|
-
{
|
|
1192
|
-
"kind": "Content",
|
|
1193
|
-
"text": "teardown(): "
|
|
1194
|
-
},
|
|
1195
|
-
{
|
|
1196
|
-
"kind": "Content",
|
|
1197
|
-
"text": "void"
|
|
1198
|
-
},
|
|
1199
|
-
{
|
|
1200
|
-
"kind": "Content",
|
|
1201
|
-
"text": ";"
|
|
1202
|
-
}
|
|
1203
|
-
],
|
|
1204
|
-
"isOptional": false,
|
|
1205
|
-
"isStatic": false,
|
|
1206
|
-
"returnTypeTokenRange": {
|
|
1207
|
-
"startIndex": 1,
|
|
1208
|
-
"endIndex": 2
|
|
1209
|
-
},
|
|
1210
|
-
"releaseTag": "Public",
|
|
1211
|
-
"overloadIndex": 1,
|
|
1212
|
-
"parameters": [],
|
|
1213
|
-
"name": "teardown"
|
|
1214
|
-
},
|
|
1215
1186
|
{
|
|
1216
1187
|
"kind": "Method",
|
|
1217
1188
|
"canonicalReference": "@microsoft/applicationinsights-channel-js!Sender#triggerSend:member(1)",
|
|
@@ -49,8 +49,6 @@ export class Sender extends BaseTelemetryPlugin implements IChannelControlsAI {
|
|
|
49
49
|
_sender: SenderFunction;
|
|
50
50
|
// Warning: (ae-forgotten-export) The symbol "ISenderConfig" needs to be exported by the entry point applicationinsights-channel-js.d.ts
|
|
51
51
|
readonly _senderConfig: ISenderConfig;
|
|
52
|
-
// (undocumented)
|
|
53
|
-
teardown(): void;
|
|
54
52
|
triggerSend(async?: boolean, forcedSender?: SenderFunction, sendReason?: SendRequestReason): void;
|
|
55
53
|
// Warning: (ae-forgotten-export) The symbol "XDomainRequest" needs to be exported by the entry point applicationinsights-channel-js.d.ts
|
|
56
54
|
_xdrOnLoad(xdr: XDomainRequest, payload: string[]): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights JavaScript SDK Channel, 2.7.5-nightly.2203-
|
|
2
|
+
* Microsoft Application Insights JavaScript SDK Channel, 2.7.5-nightly.2203-03
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -194,7 +194,6 @@ declare namespace ApplicationInsights {
|
|
|
194
194
|
* Will not flush if the Send has been paused.
|
|
195
195
|
*/
|
|
196
196
|
onunloadFlush(): void;
|
|
197
|
-
teardown(): void;
|
|
198
197
|
initialize(config: IConfiguration & IConfig, core: IAppInsightsCore, extensions: IPlugin[], pluginChain?: ITelemetryPluginChain): void;
|
|
199
198
|
processTelemetry(telemetryItem: ITelemetryItem, itemCtx?: IProcessTelemetryContext): void;
|
|
200
199
|
/**
|