@microsoft/applicationinsights-offlinechannel-js 0.3.5-nightly3.2501-07 → 0.3.5-nightly3.2502-02
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 +3 -3
- 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/Providers/WebStorageProvider.js.map +1 -1
- package/dist-es5/Sender.js +1 -1
- package/dist-es5/Sender.js.map +1 -1
- package/dist-es5/__DynamicConstants.js +1 -1
- package/dist-es5/applicationinsights-offlinechannel-js.js +1 -1
- package/package.json +5 -5
- package/types/applicationinsights-offlinechannel-js.d.ts +3 -3
- package/types/applicationinsights-offlinechannel-js.namespaced.d.ts +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.3.5-nightly3.
|
|
2
|
+
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.3.5-nightly3.2502-02
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -556,7 +556,7 @@ export declare class Sender {
|
|
|
556
556
|
* send is complete. The actual implementation of the `IPromise` will be a native Promise (if supported) or the default
|
|
557
557
|
* as supplied by [ts-async library](https://github.com/nevware21/ts-async)
|
|
558
558
|
* @param async - Indicates if the events should be sent asynchronously
|
|
559
|
-
* @param forcedSender -
|
|
559
|
+
* @param forcedSender - Indicates the forcedSender, undefined if not passed
|
|
560
560
|
* @returns - Nothing or optionally, if occurring asynchronously a [IPromise](https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html)
|
|
561
561
|
* which will be resolved (or reject) once the send is complete, the [IPromise](https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html)
|
|
562
562
|
* should only be returned when async is true.
|
|
@@ -596,7 +596,7 @@ export declare class WebStorageProvider implements IOfflineProvider {
|
|
|
596
596
|
constructor(storageType: string, id?: string, unloadHookContainer?: IUnloadHookContainer);
|
|
597
597
|
/**
|
|
598
598
|
* Initializes the provider using the config
|
|
599
|
-
* @param providerContext The provider context that should be used to initialize the provider
|
|
599
|
+
* @param providerContext - The provider context that should be used to initialize the provider
|
|
600
600
|
* @returns True if the provider is initialized and available for use otherwise false
|
|
601
601
|
*/
|
|
602
602
|
initialize(providerContext: ILocalStorageProviderContext): boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.3.5-nightly3.
|
|
2
|
+
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.3.5-nightly3.2502-02
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -1113,8 +1113,8 @@ declare namespace ApplicationInsights {
|
|
|
1113
1113
|
*/
|
|
1114
1114
|
enablePerfMgr?: boolean;
|
|
1115
1115
|
/**
|
|
1116
|
-
* [Optional] Callback function that will be called to create a the IPerfManager instance when required and
|
|
1117
|
-
* is enabled, this enables you to override the default creation of a PerfManager() without needing to
|
|
1116
|
+
* [Optional] Callback function that will be called to create a the IPerfManager instance when required and `enablePerfMgr`
|
|
1117
|
+
* is enabled, this enables you to override the default creation of a PerfManager() without needing to `setPerfMgr()`
|
|
1118
1118
|
* after initialization.
|
|
1119
1119
|
*/
|
|
1120
1120
|
createPerfMgr?: (core: IAppInsightsCore, notificationManager: INotificationManager) => IPerfManager;
|
|
@@ -1334,7 +1334,7 @@ declare namespace ApplicationInsights {
|
|
|
1334
1334
|
throwInternal(severity: LoggingSeverity, msgId: _InternalMessageId, msg: string, properties?: Object, isUserAct?: boolean): void;
|
|
1335
1335
|
/**
|
|
1336
1336
|
* This will write a debug message to the console if possible
|
|
1337
|
-
* @param message -
|
|
1337
|
+
* @param message - The debug message
|
|
1338
1338
|
*/
|
|
1339
1339
|
debugToConsole?(message: string): void;
|
|
1340
1340
|
/**
|
|
@@ -1482,7 +1482,7 @@ declare namespace ApplicationInsights {
|
|
|
1482
1482
|
/**
|
|
1483
1483
|
* Identifies configuration override values when given feature is enabled
|
|
1484
1484
|
* NOTE: should use flat string for fields, for example, if you want to set value for extensionConfig.Ananlytics.disableAjaxTrackig in configurations,
|
|
1485
|
-
* you should use "extensionConfig.Ananlytics.disableAjaxTrackig" as field name: {["extensionConfig.Analytics.disableAjaxTrackig"]:1}
|
|
1485
|
+
* you should use "extensionConfig.Ananlytics.disableAjaxTrackig" as field name: \{["extensionConfig.Analytics.disableAjaxTrackig"]:1\}
|
|
1486
1486
|
* Default: undefined
|
|
1487
1487
|
*/
|
|
1488
1488
|
onCfg?: {
|
|
@@ -1491,7 +1491,7 @@ declare namespace ApplicationInsights {
|
|
|
1491
1491
|
/**
|
|
1492
1492
|
* Identifies configuration override values when given feature is disabled
|
|
1493
1493
|
* NOTE: should use flat string for fields, for example, if you want to set value for extensionConfig.Ananlytics.disableAjaxTrackig in configurations,
|
|
1494
|
-
* you should use "extensionConfig.Ananlytics.disableAjaxTrackig" as field name: {["extensionConfig.Analytics.disableAjaxTrackig"]:1}
|
|
1494
|
+
* you should use "extensionConfig.Ananlytics.disableAjaxTrackig" as field name: \{["extensionConfig.Analytics.disableAjaxTrackig"]:1\}
|
|
1495
1495
|
* Default: undefined
|
|
1496
1496
|
*/
|
|
1497
1497
|
offCfg?: {
|
|
@@ -3034,7 +3034,7 @@ declare namespace ApplicationInsights {
|
|
|
3034
3034
|
* send is complete. The actual implementation of the `IPromise` will be a native Promise (if supported) or the default
|
|
3035
3035
|
* as supplied by [ts-async library](https://github.com/nevware21/ts-async)
|
|
3036
3036
|
* @param async - Indicates if the events should be sent asynchronously
|
|
3037
|
-
* @param forcedSender -
|
|
3037
|
+
* @param forcedSender - Indicates the forcedSender, undefined if not passed
|
|
3038
3038
|
* @returns - Nothing or optionally, if occurring asynchronously a [IPromise](https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html)
|
|
3039
3039
|
* which will be resolved (or reject) once the send is complete, the [IPromise](https://nevware21.github.io/ts-async/typedoc/interfaces/IPromise.html)
|
|
3040
3040
|
* should only be returned when async is true.
|
|
@@ -3182,7 +3182,7 @@ declare namespace ApplicationInsights {
|
|
|
3182
3182
|
constructor(storageType: string, id?: string, unloadHookContainer?: IUnloadHookContainer);
|
|
3183
3183
|
/**
|
|
3184
3184
|
* Initializes the provider using the config
|
|
3185
|
-
* @param providerContext The provider context that should be used to initialize the provider
|
|
3185
|
+
* @param providerContext - The provider context that should be used to initialize the provider
|
|
3186
3186
|
* @returns True if the provider is initialized and available for use otherwise false
|
|
3187
3187
|
*/
|
|
3188
3188
|
initialize(providerContext: ILocalStorageProviderContext): boolean;
|