@microsoft/applicationinsights-offlinechannel-js 0.1.1-nightly3.2403-03 → 0.1.1
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 +881 -746
- 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 +5 -5
- 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 +6 -6
- package/dist-es5/Sender.js.map +1 -1
- package/dist-es5/__DynamicConstants.js +1 -2
- package/dist-es5/__DynamicConstants.js.map +1 -1
- package/dist-es5/applicationinsights-offlinechannel-js.js +1 -1
- package/package.json +62 -65
- package/types/applicationinsights-offlinechannel-js.d.ts +1 -1
- package/types/applicationinsights-offlinechannel-js.namespaced.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,65 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-offlinechannel-js",
|
|
3
|
-
"version": "0.1.1
|
|
4
|
-
"description": "Microsoft Application Insights JavaScript SDK Offline Channel",
|
|
5
|
-
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
-
"author": "Microsoft Application Insights Team",
|
|
7
|
-
"main": "dist/es5/applicationinsights-offlinechannel-js.js",
|
|
8
|
-
"module": "dist-es5/applicationinsights-offlinechannel-js.js",
|
|
9
|
-
"types": "types/applicationinsights-offlinechannel-js.d.ts",
|
|
10
|
-
"sideEffects": false,
|
|
11
|
-
"repository": "github:Microsoft/applicationinsights-js",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"clean": "git clean -xdf",
|
|
14
|
-
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
15
|
-
"build:esm": "grunt offlinechannel",
|
|
16
|
-
"build:browser": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
17
|
-
"rebuild": "npm run build",
|
|
18
|
-
"test": "grunt offlinechanneltest",
|
|
19
|
-
"mintest": "grunt offlinechannel-mintest",
|
|
20
|
-
"lint": "tslint -p tsconfig.json",
|
|
21
|
-
"dtsgen": "api-extractor run --local && node ../../scripts/dtsgen.js \"Microsoft Application Insights JavaScript SDK Offline Channel\"",
|
|
22
|
-
"sri": "node ../../tools/subResourceIntegrity/generateIntegrityFile.js",
|
|
23
|
-
"ai-min": "grunt offlinechannel-min",
|
|
24
|
-
"ai-restore": "grunt offlinechannel-restore",
|
|
25
|
-
"npm-pack": "npm pack",
|
|
26
|
-
"api-docs": "typedoc"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"@microsoft/dynamicproto-js": "^2.0.3",
|
|
30
|
-
"@microsoft/applicationinsights-shims": "3.0.1",
|
|
31
|
-
"@microsoft/applicationinsights-core-js": "3.1.1
|
|
32
|
-
"@microsoft/applicationinsights-common": "3.1.1
|
|
33
|
-
"@nevware21/ts-utils": ">= 0.10.5 < 2.x",
|
|
34
|
-
"@nevware21/ts-async": ">= 0.3.0 < 2.x"
|
|
35
|
-
},
|
|
36
|
-
"peerDependencies": {
|
|
37
|
-
"tslib": "*"
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@microsoft/ai-test-framework": "0.0.1",
|
|
41
|
-
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
42
|
-
"@microsoft/applicationinsights-rollup-es5": "1.0.2",
|
|
43
|
-
"@microsoft/api-extractor": "^7.40.0",
|
|
44
|
-
"@types/sinon": "4.3.3",
|
|
45
|
-
"grunt": "^1.5.3",
|
|
46
|
-
"grunt-cli": "^1.4.3",
|
|
47
|
-
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
48
|
-
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
49
|
-
"globby": "^11.0.0",
|
|
50
|
-
"magic-string": "^0.25.7",
|
|
51
|
-
"@rollup/plugin-commonjs": "^24.0.0",
|
|
52
|
-
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
53
|
-
"@rollup/plugin-replace": "^5.0.2",
|
|
54
|
-
"rollup-plugin-cleanup": "^3.2.1",
|
|
55
|
-
"rollup": "^3.20.0",
|
|
56
|
-
"typescript": "^4.9.3",
|
|
57
|
-
"tslib": "^2.0.0",
|
|
58
|
-
"sinon": "^7.3.1",
|
|
59
|
-
"typedoc": "^0.24.8"
|
|
60
|
-
},
|
|
61
|
-
"license": "MIT"
|
|
62
|
-
|
|
63
|
-
"tag": "nightly3"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-offlinechannel-js",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Microsoft Application Insights JavaScript SDK Offline Channel",
|
|
5
|
+
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
+
"author": "Microsoft Application Insights Team",
|
|
7
|
+
"main": "dist/es5/applicationinsights-offlinechannel-js.js",
|
|
8
|
+
"module": "dist-es5/applicationinsights-offlinechannel-js.js",
|
|
9
|
+
"types": "types/applicationinsights-offlinechannel-js.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"repository": "github:Microsoft/applicationinsights-js",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"clean": "git clean -xdf",
|
|
14
|
+
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
15
|
+
"build:esm": "grunt offlinechannel",
|
|
16
|
+
"build:browser": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
17
|
+
"rebuild": "npm run build",
|
|
18
|
+
"test": "grunt offlinechanneltest",
|
|
19
|
+
"mintest": "grunt offlinechannel-mintest",
|
|
20
|
+
"lint": "tslint -p tsconfig.json",
|
|
21
|
+
"dtsgen": "api-extractor run --local && node ../../scripts/dtsgen.js \"Microsoft Application Insights JavaScript SDK Offline Channel\"",
|
|
22
|
+
"sri": "node ../../tools/subResourceIntegrity/generateIntegrityFile.js",
|
|
23
|
+
"ai-min": "grunt offlinechannel-min",
|
|
24
|
+
"ai-restore": "grunt offlinechannel-restore",
|
|
25
|
+
"npm-pack": "npm pack",
|
|
26
|
+
"api-docs": "typedoc"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@microsoft/dynamicproto-js": "^2.0.3",
|
|
30
|
+
"@microsoft/applicationinsights-shims": "3.0.1",
|
|
31
|
+
"@microsoft/applicationinsights-core-js": "3.1.1",
|
|
32
|
+
"@microsoft/applicationinsights-common": "3.1.1",
|
|
33
|
+
"@nevware21/ts-utils": ">= 0.10.5 < 2.x",
|
|
34
|
+
"@nevware21/ts-async": ">= 0.3.0 < 2.x"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"tslib": "*"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@microsoft/ai-test-framework": "0.0.1",
|
|
41
|
+
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
42
|
+
"@microsoft/applicationinsights-rollup-es5": "1.0.2",
|
|
43
|
+
"@microsoft/api-extractor": "^7.40.0",
|
|
44
|
+
"@types/sinon": "4.3.3",
|
|
45
|
+
"grunt": "^1.5.3",
|
|
46
|
+
"grunt-cli": "^1.4.3",
|
|
47
|
+
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
48
|
+
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
49
|
+
"globby": "^11.0.0",
|
|
50
|
+
"magic-string": "^0.25.7",
|
|
51
|
+
"@rollup/plugin-commonjs": "^24.0.0",
|
|
52
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
53
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
54
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
55
|
+
"rollup": "^3.20.0",
|
|
56
|
+
"typescript": "^4.9.3",
|
|
57
|
+
"tslib": "^2.0.0",
|
|
58
|
+
"sinon": "^7.3.1",
|
|
59
|
+
"typedoc": "^0.24.8"
|
|
60
|
+
},
|
|
61
|
+
"license": "MIT"
|
|
62
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.1.1
|
|
2
|
+
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.1.1
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.1.1
|
|
2
|
+
* Microsoft Application Insights JavaScript SDK Offline Channel, 0.1.1
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Microsoft Application Insights Team
|