@microsoft/applicationinsights-offlinechannel-js 0.3.6-nightly3.2502-12 → 0.3.6-nightly3.2502-14
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/dist/es5/applicationinsights-offlinechannel-js.js +7 -7
- package/dist/es5/applicationinsights-offlinechannel-js.js.map +1 -1
- package/dist/es5/applicationinsights-offlinechannel-js.min.js +2 -2
- package/dist/es5/applicationinsights-offlinechannel-js.min.js.map +1 -1
- package/dist-es5/Helpers/Utils.js +1 -1
- package/dist-es5/InMemoryBatch.js +1 -1
- package/dist-es5/Interfaces/IInMemoryBatch.js +1 -1
- package/dist-es5/Interfaces/IOfflineBatch.js +1 -1
- package/dist-es5/Interfaces/IOfflineIndexDb.js +1 -1
- package/dist-es5/Interfaces/IOfflineProvider.js +1 -1
- package/dist-es5/Interfaces/ISender.js +1 -1
- package/dist-es5/OfflineBatchHandler.js +1 -1
- package/dist-es5/OfflineChannel.js +2 -2
- package/dist-es5/OfflineChannel.js.map +1 -1
- package/dist-es5/PayloadHelper.js +1 -1
- package/dist-es5/Providers/IndexDbHelper.js +1 -1
- package/dist-es5/Providers/IndexDbProvider.js +1 -1
- package/dist-es5/Providers/WebStorageProvider.js +1 -1
- package/dist-es5/Sender.js +1 -1
- package/dist-es5/__DynamicConstants.js +1 -1
- package/dist-es5/applicationinsights-offlinechannel-js.js +1 -1
- package/package.json +3 -3
- package/types/applicationinsights-offlinechannel-js.d.ts +1 -1
- package/types/applicationinsights-offlinechannel-js.namespaced.d.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Application Insights JavaScript SDK - Offline Channel, 0.3.6-nightly3.2502-
|
|
2
|
+
* Application Insights JavaScript SDK - Offline Channel, 0.3.6-nightly3.2502-14
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.Microsoft = global.Microsoft || {}, global.Microsoft.ApplicationInsights = global.Microsoft.ApplicationInsights || {})));
|
|
9
9
|
})(this, (function (exports) { 'use strict';
|
|
10
10
|
|
|
11
|
-
/*! https://github.com/nevware21/ts-utils v0.11.
|
|
11
|
+
/*! https://github.com/nevware21/ts-utils v0.11.7 */
|
|
12
12
|
/*#__NO_SIDE_EFFECTS__*/
|
|
13
13
|
function _pureAssign(func1, func2) {
|
|
14
14
|
return func1 || func2;
|
|
@@ -147,8 +147,8 @@
|
|
|
147
147
|
function _createKeyValueMap(values, keyType, valueType, completeFn, writable) {
|
|
148
148
|
var theMap = {};
|
|
149
149
|
objForEachKey(values, function (key, value) {
|
|
150
|
-
_assignMapValue(theMap, key, keyType ? value : key
|
|
151
|
-
_assignMapValue(theMap, value, valueType ? value : key
|
|
150
|
+
_assignMapValue(theMap, key, keyType ? value : key);
|
|
151
|
+
_assignMapValue(theMap, value, valueType ? value : key);
|
|
152
152
|
});
|
|
153
153
|
return completeFn ? completeFn(theMap) : theMap;
|
|
154
154
|
}
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
objDefineProp(theMap, key, {
|
|
157
157
|
value: value,
|
|
158
158
|
enumerable: true,
|
|
159
|
-
writable:
|
|
159
|
+
writable: false
|
|
160
160
|
});
|
|
161
161
|
}
|
|
162
162
|
var asString = ( /* #__PURE__ */_pureAssign(StrCls));
|
|
@@ -1999,7 +1999,7 @@
|
|
|
1999
1999
|
return result;
|
|
2000
2000
|
}
|
|
2001
2001
|
|
|
2002
|
-
var version$1 = '3.3.6-nightly3.2502-
|
|
2002
|
+
var version$1 = '3.3.6-nightly3.2502-14';
|
|
2003
2003
|
var instanceName = "." + newId(6);
|
|
2004
2004
|
var _dataUid = 0;
|
|
2005
2005
|
function _canAcceptData(target) {
|
|
@@ -6368,7 +6368,7 @@
|
|
|
6368
6368
|
return Sender;
|
|
6369
6369
|
}());
|
|
6370
6370
|
|
|
6371
|
-
var version = '0.3.6-nightly3.2502-
|
|
6371
|
+
var version = '0.3.6-nightly3.2502-14';
|
|
6372
6372
|
var DefaultOfflineIdentifier = "OfflineChannel";
|
|
6373
6373
|
var DefaultBatchInterval = 15000;
|
|
6374
6374
|
var DefaultInMemoMaxTime = 15000;
|