@microsoft/applicationinsights-core-js 2.7.2-nightly.2111-09 → 2.7.2-nightly.2111-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.
Files changed (88) hide show
  1. package/browser/applicationinsights-core-js.integrity.json +9 -9
  2. package/browser/applicationinsights-core-js.js +63 -2
  3. package/browser/applicationinsights-core-js.js.map +1 -1
  4. package/browser/applicationinsights-core-js.min.js +2 -2
  5. package/browser/applicationinsights-core-js.min.js.map +1 -1
  6. package/dist/applicationinsights-core-js.api.json +315 -0
  7. package/dist/applicationinsights-core-js.api.md +25 -0
  8. package/dist/applicationinsights-core-js.d.ts +20 -1
  9. package/dist/applicationinsights-core-js.js +63 -2
  10. package/dist/applicationinsights-core-js.js.map +1 -1
  11. package/dist/applicationinsights-core-js.min.js +2 -2
  12. package/dist/applicationinsights-core-js.min.js.map +1 -1
  13. package/dist/applicationinsights-core-js.rollup.d.ts +20 -1
  14. package/dist-esm/JavaScriptSDK/AppInsightsCore.js +1 -1
  15. package/dist-esm/JavaScriptSDK/BaseCore.js +5 -1
  16. package/dist-esm/JavaScriptSDK/BaseCore.js.map +1 -1
  17. package/dist-esm/JavaScriptSDK/BaseTelemetryPlugin.js +1 -1
  18. package/dist-esm/JavaScriptSDK/ChannelController.js +1 -1
  19. package/dist-esm/JavaScriptSDK/Constants.js +1 -1
  20. package/dist-esm/JavaScriptSDK/CookieMgr.js +1 -1
  21. package/dist-esm/JavaScriptSDK/CoreUtils.js +1 -1
  22. package/dist-esm/JavaScriptSDK/DbgExtensionUtils.js +47 -0
  23. package/dist-esm/JavaScriptSDK/DbgExtensionUtils.js.map +1 -0
  24. package/dist-esm/JavaScriptSDK/DiagnosticLogger.js +20 -2
  25. package/dist-esm/JavaScriptSDK/DiagnosticLogger.js.map +1 -1
  26. package/dist-esm/JavaScriptSDK/EnvUtils.js +1 -1
  27. package/dist-esm/JavaScriptSDK/HelperFuncs.js +1 -1
  28. package/dist-esm/JavaScriptSDK/InstrumentHooks.js +1 -1
  29. package/dist-esm/JavaScriptSDK/NotificationManager.js +1 -1
  30. package/dist-esm/JavaScriptSDK/PerfManager.js +1 -1
  31. package/dist-esm/JavaScriptSDK/ProcessTelemetryContext.js +1 -1
  32. package/dist-esm/JavaScriptSDK/RandomHelper.js +1 -1
  33. package/dist-esm/JavaScriptSDK/TelemetryHelpers.js +1 -1
  34. package/dist-esm/JavaScriptSDK/TelemetryPluginChain.js +1 -1
  35. package/dist-esm/JavaScriptSDK.Enums/EventsDiscardedReason.js +1 -1
  36. package/dist-esm/JavaScriptSDK.Enums/LoggingEnums.js +1 -1
  37. package/dist-esm/JavaScriptSDK.Enums/SendRequestReason.js +1 -1
  38. package/dist-esm/JavaScriptSDK.Interfaces/IAppInsightsCore.js +1 -1
  39. package/dist-esm/JavaScriptSDK.Interfaces/IChannelControls.js +1 -1
  40. package/dist-esm/JavaScriptSDK.Interfaces/IConfiguration.js +1 -1
  41. package/dist-esm/JavaScriptSDK.Interfaces/ICookieMgr.js +1 -1
  42. package/dist-esm/JavaScriptSDK.Interfaces/IDbgExtension.js +8 -0
  43. package/dist-esm/JavaScriptSDK.Interfaces/IDbgExtension.js.map +1 -0
  44. package/dist-esm/JavaScriptSDK.Interfaces/IDiagnosticLogger.js +1 -1
  45. package/dist-esm/JavaScriptSDK.Interfaces/IInstrumentHooks.js +1 -1
  46. package/dist-esm/JavaScriptSDK.Interfaces/INotificationListener.js +1 -1
  47. package/dist-esm/JavaScriptSDK.Interfaces/INotificationManager.js +1 -1
  48. package/dist-esm/JavaScriptSDK.Interfaces/IPerfEvent.js +3 -1
  49. package/dist-esm/JavaScriptSDK.Interfaces/IPerfEvent.js.map +1 -1
  50. package/dist-esm/JavaScriptSDK.Interfaces/IPerfManager.js +1 -1
  51. package/dist-esm/JavaScriptSDK.Interfaces/IProcessTelemetryContext.js +1 -1
  52. package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryItem.js +1 -1
  53. package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryPlugin.js +1 -1
  54. package/dist-esm/JavaScriptSDK.Interfaces/ITelemetryPluginChain.js +1 -1
  55. package/dist-esm/applicationinsights-core-js.js +2 -1
  56. package/dist-esm/applicationinsights-core-js.js.map +1 -1
  57. package/package.json +1 -1
  58. package/src/JavaScriptSDK/BaseCore.ts +5 -0
  59. package/src/JavaScriptSDK/DbgExtensionUtils.ts +55 -0
  60. package/src/JavaScriptSDK/DiagnosticLogger.ts +18 -1
  61. package/src/JavaScriptSDK.Interfaces/IConfiguration.ts +6 -0
  62. package/src/JavaScriptSDK.Interfaces/IDbgExtension.ts +14 -0
  63. package/src/JavaScriptSDK.Interfaces/IPerfEvent.ts +0 -1
  64. package/src/JavaScriptSDK.Interfaces/IPerfManager.ts +0 -1
  65. package/types/JavaScriptSDK/DbgExtensionUtils.d.ts +5 -0
  66. package/types/JavaScriptSDK.Interfaces/IConfiguration.d.ts +5 -0
  67. package/types/JavaScriptSDK.Interfaces/IDbgExtension.d.ts +10 -0
  68. package/types/applicationinsights-core-js.d.ts +2 -0
  69. package/CONTRIBUTING.md +0 -14
  70. package/Tests/Perf/src/CorePerfCheck.Tests.ts +0 -828
  71. package/Tests/Perf/src/aiperftests.ts +0 -6
  72. package/Tests/Perf/tsconfig.json +0 -17
  73. package/Tests/PerfTests.html +0 -54
  74. package/Tests/Unit/src/AppInsightsCoreSize.Tests.ts +0 -59
  75. package/Tests/Unit/src/ApplicationInsightsCore.Tests.ts +0 -1015
  76. package/Tests/Unit/src/CookieManager.Tests.ts +0 -477
  77. package/Tests/Unit/src/HelperFunc.Tests.ts +0 -59
  78. package/Tests/Unit/src/aiunittests.ts +0 -13
  79. package/Tests/UnitTests.html +0 -48
  80. package/Tests/tsconfig.json +0 -17
  81. package/api-extractor.json +0 -361
  82. package/applicationinsights-core-js.build.error.log +0 -205
  83. package/applicationinsights-core-js.build.log +0 -612
  84. package/microsoft-applicationinsights-core-js-2.7.2-nightly.2111-09.tgz +0 -0
  85. package/rollup.config.js +0 -138
  86. package/src/applicationinsights-core-js.ts +0 -59
  87. package/temp/applicationinsights-core-js.api.md +0 -934
  88. package/tslint.json +0 -5
@@ -1,612 +0,0 @@
1
- Unable to calculate incremental build state: Error: Cannot read property 'readFile' of undefined
2
- Error loading config file: D:\a\1\s\shared\AppInsightsCore\config\rig.json
3
-
4
- Rush will proceed without incremental build, caching, and change detection.
5
-
6
- Invoking: npm run build
7
-
8
-
9
- > @microsoft/applicationinsights-core-js@2.7.2-nightly.2111-09 build D:\a\1\s\shared\AppInsightsCore
10
- > npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen
11
-
12
-
13
- > @microsoft/applicationinsights-core-js@2.7.2-nightly.2111-09 build:esm D:\a\1\s\shared\AppInsightsCore
14
- > grunt core
15
-
16
- (node:1152) ExperimentalWarning: The fs.promises API is experimental
17
- Running "eslint-ts:core-lint-fix" (eslint-ts) task
18
- grunt-eslint-typescript options: [object Object]{
19
- "format": "codeframe",
20
- "fix": true
21
- }
22
- >> The rootDir specified in your project file [./shared/AppInsightsCore/tsconfig.json] is invalid as it assumes the current working directory.
23
- >> - [shared/AppInsightsCore/src] resolves to [D:\a\1\s\shared\AppInsightsCore\shared\AppInsightsCore\src]
24
- >> - Overridding to use: [D:\a\1\s\shared\AppInsightsCore\src]
25
- >> -- Update or remove to fix this warning
26
- >> The declarationDir specified in your project file [./shared/AppInsightsCore/tsconfig.json] is invalid as it assumes the current working directory.
27
- >> - [shared/AppInsightsCore/types] resolves to [D:\a\1\s\shared\AppInsightsCore\src\shared\AppInsightsCore\types]
28
- >> - Overridding to use: [D:\a\1\s\shared\AppInsightsCore\types]
29
- >> -- Update or remove to fix this warning
30
- Using tsconfig: ./shared/AppInsightsCore/tsconfig.json
31
- Found eslint-plugin-security -- automatically adding, to avoid this specify a null or empty parser option in your grunt config.
32
- Module Path: D:/a/1/s/node_modules/@nevware21/grunt-eslint-ts
33
- Using ESLint from : D:\a\1\s\node_modules\eslint\lib\api.js via grunt-eslint-ts v0.2.2
34
- Using EsLint Options: [object Object]{
35
- "baseConfig": {
36
- "parserOptions": {
37
- "project": "./shared/AppInsightsCore/tsconfig.json"
38
- },
39
- "plugins": [
40
- "@typescript-eslint",
41
- "security"
42
- ],
43
- "extends": [
44
- "eslint:recommended",
45
- "plugin:@typescript-eslint/recommended",
46
- "plugin:security/recommended"
47
- ],
48
- "parser": "@typescript-eslint/parser",
49
- "rules": {}
50
- },
51
- "fix": true
52
- }
53
- Linting 4 files...
54
- - ./shared/AppInsightsCore/./src/applicationinsights-core-js.ts
55
- - ./shared/AppInsightsCore/./src/JavaScriptSDK/**/*.ts
56
- - ./shared/AppInsightsCore/./src/JavaScriptSDK.Enums/**/*.ts
57
- - ./shared/AppInsightsCore/./src/JavaScriptSDK.Interfaces/**/*.ts
58
-
59
- 35 Linting Results
60
- No lint fixes identified...
61
- warning: 'ITelemetryItem' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK.Interfaces\IPerfEvent.ts:3:10:
62
- 1 | // Copyright (c) Microsoft Corporation. All rights reserved.
63
- 2 | // Licensed under the MIT License.
64
- > 3 | import { ITelemetryItem } from "../JavaScriptSDK.Interfaces/ITelemetryItem";
65
- | ^
66
- 4 |
67
- 5 | /**
68
- 6 | * This interface identifies the details of an internal performance event - it does not represent an outgoing reported event
69
-
70
-
71
- warning: 'ITelemetryItem' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK.Interfaces\IPerfManager.ts:3:10:
72
- 1 | // Copyright (c) Microsoft Corporation. All rights reserved.
73
- 2 | // Licensed under the MIT License.
74
- > 3 | import { ITelemetryItem } from "../JavaScriptSDK.Interfaces/ITelemetryItem";
75
- | ^
76
- 4 | import { IPerfEvent } from "./../JavaScriptSDK.Interfaces/IPerfEvent";
77
- 5 |
78
- 6 | /**
79
-
80
-
81
- warning: '_InternalMessageId' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\BaseCore.ts:19:10:
82
- 17 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
83
- 18 | import { initializePlugins, sortPlugins } from "./TelemetryHelpers";
84
- > 19 | import { _InternalMessageId, LoggingSeverity } from "../JavaScriptSDK.Enums/LoggingEnums";
85
- | ^
86
- 20 | import { IPerfManager } from "../JavaScriptSDK.Interfaces/IPerfManager";
87
- 21 | import { getGblPerfMgr, PerfManager } from "./PerfManager";
88
- 22 | import { ICookieMgr } from "../JavaScriptSDK.Interfaces/ICookieMgr";
89
-
90
-
91
- warning: '_InternalLogMessage' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\ChannelController.ts:13:10:
92
- 11 | import { ITelemetryItem } from "../JavaScriptSDK.Interfaces/ITelemetryItem";
93
- 12 | import { IProcessTelemetryContext } from "../JavaScriptSDK.Interfaces/IProcessTelemetryContext";
94
- > 13 | import { _InternalLogMessage } from "./DiagnosticLogger";
95
- | ^
96
- 14 | import { BaseTelemetryPlugin } from "./BaseTelemetryPlugin";
97
- 15 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
98
- 16 | import { initializePlugins } from "./TelemetryHelpers";
99
-
100
-
101
- warning: 'DiagnosticLogger' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\ProcessTelemetryContext.ts:12:10:
102
- 10 | import { IProcessTelemetryContext } from "../JavaScriptSDK.Interfaces/IProcessTelemetryContext";
103
- 11 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
104
- > 12 | import { DiagnosticLogger, safeGetLogger } from "./DiagnosticLogger";
105
- | ^
106
- 13 | import { TelemetryPluginChain } from "./TelemetryPluginChain";
107
- 14 | import { arrForEach, isFunction, isNullOrUndefined, isUndefined } from "./HelperFuncs";
108
- 15 |
109
-
110
-
111
- warning: '_InternalLogMessage' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\TelemetryHelpers.ts:6:10:
112
- 4 |
113
- 5 | import { IPlugin, ITelemetryPlugin } from "../JavaScriptSDK.Interfaces/ITelemetryPlugin";
114
- > 6 | import { _InternalLogMessage } from "./DiagnosticLogger";
115
- | ^
116
- 7 | import { _InternalMessageId } from "../JavaScriptSDK.Enums/LoggingEnums";
117
- 8 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
118
- 9 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
119
-
120
-
121
- warning: '_InternalMessageId' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\TelemetryHelpers.ts:7:10:
122
- 5 | import { IPlugin, ITelemetryPlugin } from "../JavaScriptSDK.Interfaces/ITelemetryPlugin";
123
- 6 | import { _InternalLogMessage } from "./DiagnosticLogger";
124
- > 7 | import { _InternalMessageId } from "../JavaScriptSDK.Enums/LoggingEnums";
125
- | ^
126
- 8 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
127
- 9 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
128
- 10 | import { arrForEach, isFunction } from "./HelperFuncs";
129
-
130
-
131
- warning: '_InternalLogMessage' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\TelemetryPluginChain.ts:9:10:
132
- 7 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
133
- 8 | import { ITelemetryPlugin } from "../JavaScriptSDK.Interfaces/ITelemetryPlugin";
134
- > 9 | import { _InternalLogMessage } from "./DiagnosticLogger";
135
- | ^
136
- 10 | import { doPerf } from "./PerfManager";
137
- 11 | import { LoggingSeverity, _InternalMessageId } from "../JavaScriptSDK.Enums/LoggingEnums";
138
- 12 | import { isFunction } from "./HelperFuncs";
139
-
140
-
141
- 8 warnings found.
142
-
143
- Running "ts:core" (ts) task
144
- Module Path: D:/a/1/s/node_modules/@nevware21/grunt-ts-plugin
145
- Using tsc version: 4.4.4 via grunt-ts-plugin v0.4.3
146
- >> The rootDir specified in your project file [./shared/AppInsightsCore/tsconfig.json] is invalid as it assumes the current working directory.
147
- >> - [shared/AppInsightsCore/src] resolves to [D:\a\1\s\shared\AppInsightsCore\shared\AppInsightsCore\src]
148
- >> - Overridding to use: [D:\a\1\s\shared\AppInsightsCore\src]
149
- >> -- Update or remove to fix this warning
150
- >> The declarationDir specified in your project file [./shared/AppInsightsCore/tsconfig.json] is invalid as it assumes the current working directory.
151
- >> - [shared/AppInsightsCore/types] resolves to [D:\a\1\s\shared\AppInsightsCore\src\shared\AppInsightsCore\types]
152
- >> - Overridding to use: [D:\a\1\s\shared\AppInsightsCore\types]
153
- >> -- Update or remove to fix this warning
154
- Ts-Plugin...
155
- rootDir from [cwd:D:\a\1\s]
156
- - TSConfig: D:\a\1\s\shared\AppInsightsCore
157
- - Project : <assuming tsconfig location>
158
- - Actual : D:\a\1\s\shared\AppInsightsCore\src
159
- Ts-Plugin Invoking: D:\a\1\s\node_modules\typescript\bin\tsc @tscommand-3562f4a1.tmp
160
- Contents...
161
- --declarationDir shared/AppInsightsCore/types
162
- --rootDir shared/AppInsightsCore/src
163
- --project ./shared/AppInsightsCore/tsconfig.json
164
-
165
- TypeScript compiliation completed: 2.95s
166
-
167
- Running "eslint-ts:core-lint" (eslint-ts) task
168
- grunt-eslint-typescript options: [object Object]{
169
- "format": "codeframe"
170
- }
171
- >> The rootDir specified in your project file [./shared/AppInsightsCore/tsconfig.json] is invalid as it assumes the current working directory.
172
- >> - [shared/AppInsightsCore/src] resolves to [D:\a\1\s\shared\AppInsightsCore\shared\AppInsightsCore\src]
173
- >> - Overridding to use: [D:\a\1\s\shared\AppInsightsCore\src]
174
- >> -- Update or remove to fix this warning
175
- >> The declarationDir specified in your project file [./shared/AppInsightsCore/tsconfig.json] is invalid as it assumes the current working directory.
176
- >> - [shared/AppInsightsCore/types] resolves to [D:\a\1\s\shared\AppInsightsCore\src\shared\AppInsightsCore\types]
177
- >> - Overridding to use: [D:\a\1\s\shared\AppInsightsCore\types]
178
- >> -- Update or remove to fix this warning
179
- Using tsconfig: ./shared/AppInsightsCore/tsconfig.json
180
- Found eslint-plugin-security -- automatically adding, to avoid this specify a null or empty parser option in your grunt config.
181
- Module Path: D:/a/1/s/node_modules/@nevware21/grunt-eslint-ts
182
- Using ESLint from : D:\a\1\s\node_modules\eslint\lib\api.js via grunt-eslint-ts v0.2.2
183
- Using EsLint Options: [object Object]{
184
- "baseConfig": {
185
- "parserOptions": {
186
- "project": "./shared/AppInsightsCore/tsconfig.json"
187
- },
188
- "plugins": [
189
- "@typescript-eslint",
190
- "security"
191
- ],
192
- "extends": [
193
- "eslint:recommended",
194
- "plugin:@typescript-eslint/recommended",
195
- "plugin:security/recommended"
196
- ],
197
- "parser": "@typescript-eslint/parser",
198
- "rules": {}
199
- }
200
- }
201
- Linting 4 files...
202
- - ./shared/AppInsightsCore/./src/applicationinsights-core-js.ts
203
- - ./shared/AppInsightsCore/./src/JavaScriptSDK/**/*.ts
204
- - ./shared/AppInsightsCore/./src/JavaScriptSDK.Enums/**/*.ts
205
- - ./shared/AppInsightsCore/./src/JavaScriptSDK.Interfaces/**/*.ts
206
-
207
- 35 Linting Results
208
- No lint fixes identified...
209
- warning: 'ITelemetryItem' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK.Interfaces\IPerfEvent.ts:3:10:
210
- 1 | // Copyright (c) Microsoft Corporation. All rights reserved.
211
- 2 | // Licensed under the MIT License.
212
- > 3 | import { ITelemetryItem } from "../JavaScriptSDK.Interfaces/ITelemetryItem";
213
- | ^
214
- 4 |
215
- 5 | /**
216
- 6 | * This interface identifies the details of an internal performance event - it does not represent an outgoing reported event
217
-
218
-
219
- warning: 'ITelemetryItem' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK.Interfaces\IPerfManager.ts:3:10:
220
- 1 | // Copyright (c) Microsoft Corporation. All rights reserved.
221
- 2 | // Licensed under the MIT License.
222
- > 3 | import { ITelemetryItem } from "../JavaScriptSDK.Interfaces/ITelemetryItem";
223
- | ^
224
- 4 | import { IPerfEvent } from "./../JavaScriptSDK.Interfaces/IPerfEvent";
225
- 5 |
226
- 6 | /**
227
-
228
-
229
- warning: '_InternalMessageId' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\BaseCore.ts:19:10:
230
- 17 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
231
- 18 | import { initializePlugins, sortPlugins } from "./TelemetryHelpers";
232
- > 19 | import { _InternalMessageId, LoggingSeverity } from "../JavaScriptSDK.Enums/LoggingEnums";
233
- | ^
234
- 20 | import { IPerfManager } from "../JavaScriptSDK.Interfaces/IPerfManager";
235
- 21 | import { getGblPerfMgr, PerfManager } from "./PerfManager";
236
- 22 | import { ICookieMgr } from "../JavaScriptSDK.Interfaces/ICookieMgr";
237
-
238
-
239
- warning: '_InternalLogMessage' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\ChannelController.ts:13:10:
240
- 11 | import { ITelemetryItem } from "../JavaScriptSDK.Interfaces/ITelemetryItem";
241
- 12 | import { IProcessTelemetryContext } from "../JavaScriptSDK.Interfaces/IProcessTelemetryContext";
242
- > 13 | import { _InternalLogMessage } from "./DiagnosticLogger";
243
- | ^
244
- 14 | import { BaseTelemetryPlugin } from "./BaseTelemetryPlugin";
245
- 15 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
246
- 16 | import { initializePlugins } from "./TelemetryHelpers";
247
-
248
-
249
- warning: 'DiagnosticLogger' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\ProcessTelemetryContext.ts:12:10:
250
- 10 | import { IProcessTelemetryContext } from "../JavaScriptSDK.Interfaces/IProcessTelemetryContext";
251
- 11 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
252
- > 12 | import { DiagnosticLogger, safeGetLogger } from "./DiagnosticLogger";
253
- | ^
254
- 13 | import { TelemetryPluginChain } from "./TelemetryPluginChain";
255
- 14 | import { arrForEach, isFunction, isNullOrUndefined, isUndefined } from "./HelperFuncs";
256
- 15 |
257
-
258
-
259
- warning: '_InternalLogMessage' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\TelemetryHelpers.ts:6:10:
260
- 4 |
261
- 5 | import { IPlugin, ITelemetryPlugin } from "../JavaScriptSDK.Interfaces/ITelemetryPlugin";
262
- > 6 | import { _InternalLogMessage } from "./DiagnosticLogger";
263
- | ^
264
- 7 | import { _InternalMessageId } from "../JavaScriptSDK.Enums/LoggingEnums";
265
- 8 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
266
- 9 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
267
-
268
-
269
- warning: '_InternalMessageId' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\TelemetryHelpers.ts:7:10:
270
- 5 | import { IPlugin, ITelemetryPlugin } from "../JavaScriptSDK.Interfaces/ITelemetryPlugin";
271
- 6 | import { _InternalLogMessage } from "./DiagnosticLogger";
272
- > 7 | import { _InternalMessageId } from "../JavaScriptSDK.Enums/LoggingEnums";
273
- | ^
274
- 8 | import { ProcessTelemetryContext } from "./ProcessTelemetryContext";
275
- 9 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
276
- 10 | import { arrForEach, isFunction } from "./HelperFuncs";
277
-
278
-
279
- warning: '_InternalLogMessage' is defined but never used (@typescript-eslint/no-unused-vars) at shared\AppInsightsCore\src\JavaScriptSDK\TelemetryPluginChain.ts:9:10:
280
- 7 | import { ITelemetryPluginChain } from "../JavaScriptSDK.Interfaces/ITelemetryPluginChain";
281
- 8 | import { ITelemetryPlugin } from "../JavaScriptSDK.Interfaces/ITelemetryPlugin";
282
- > 9 | import { _InternalLogMessage } from "./DiagnosticLogger";
283
- | ^
284
- 10 | import { doPerf } from "./PerfManager";
285
- 11 | import { LoggingSeverity, _InternalMessageId } from "../JavaScriptSDK.Enums/LoggingEnums";
286
- 12 | import { isFunction } from "./HelperFuncs";
287
-
288
-
289
- 8 warnings found.
290
-
291
- Done.
292
-
293
- > @microsoft/applicationinsights-core-js@2.7.2-nightly.2111-09 build:browser D:\a\1\s\shared\AppInsightsCore
294
- > rollup -c rollup.config.js
295
-
296
- Loading - ./dist-esm/applicationinsights-core-js.js
297
- Rewriting Map file - ./dist-esm/applicationinsights-core-js.js.map
298
- Loading - ./dist-esm/JavaScriptSDK/AppInsightsCore.js
299
- Prototypes removed...
300
- Line Changed: AppInsightsCore.prototype.initialize = function (config, extensions, logger, notificationManager) {
301
- Detected Removed lines 107 to 141
302
- Replacing [import { __extends } from "tslib";] with [import { __extendsFn as __extends } from "@microsoft/applicationinsights-shims";]
303
- Rewriting Map file - ./dist-esm/JavaScriptSDK/AppInsightsCore.js.map
304
- Loading - ./dist-esm/JavaScriptSDK/BaseCore.js
305
- Prototypes removed...
306
- Line Changed: BaseCore.prototype.initialize = function (config, extensions, logger, notificationManager) {
307
- Detected Removed lines 195 to 240
308
- Replacing [import { __spreadArray } from "tslib";] with [import { __spreadArrayFn as __spreadArray } from "@microsoft/applicationinsights-shims";]
309
- Rewriting Map file - ./dist-esm/JavaScriptSDK/BaseCore.js.map
310
- Loading - ./dist-esm/JavaScriptSDK/BaseTelemetryPlugin.js
311
- Rewriting Map file - ./dist-esm/JavaScriptSDK/BaseTelemetryPlugin.js.map
312
- Loading - ./dist-esm/JavaScriptSDK/ChannelController.js
313
- Prototypes removed...
314
- Line Changed: ChannelController.prototype.processTelemetry = function (item, itemCtx) {
315
- Detected Removed lines 85 to 94
316
- Replacing [import { __extends } from "tslib";] with [import { __extendsFn as __extends } from "@microsoft/applicationinsights-shims";]
317
- Rewriting Map file - ./dist-esm/JavaScriptSDK/ChannelController.js.map
318
- Loading - ./dist-esm/JavaScriptSDK/Constants.js
319
- Rewriting Map file - ./dist-esm/JavaScriptSDK/Constants.js.map
320
- Loading - ./dist-esm/JavaScriptSDK/CookieMgr.js
321
- Rewriting Map file - ./dist-esm/JavaScriptSDK/CookieMgr.js.map
322
- Loading - ./dist-esm/JavaScriptSDK/CoreUtils.js
323
- Rewriting Map file - ./dist-esm/JavaScriptSDK/CoreUtils.js.map
324
- Loading - ./dist-esm/JavaScriptSDK/DiagnosticLogger.js
325
- Prototypes removed...
326
- Line Changed: /**
327
- Detected Removed lines 187 to 255
328
- Rewriting Map file - ./dist-esm/JavaScriptSDK/DiagnosticLogger.js.map
329
- Loading - ./dist-esm/JavaScriptSDK/EnvUtils.js
330
- Rewriting Map file - ./dist-esm/JavaScriptSDK/EnvUtils.js.map
331
- Loading - ./dist-esm/JavaScriptSDK/HelperFuncs.js
332
- Rewriting Map file - ./dist-esm/JavaScriptSDK/HelperFuncs.js.map
333
- Loading - ./dist-esm/JavaScriptSDK/InstrumentHooks.js
334
- Rewriting Map file - ./dist-esm/JavaScriptSDK/InstrumentHooks.js.map
335
- Loading - ./dist-esm/JavaScriptSDK/NotificationManager.js
336
- Prototypes removed...
337
- Line Changed: /**
338
- Detected Removed lines 95 to 132
339
- Rewriting Map file - ./dist-esm/JavaScriptSDK/NotificationManager.js.map
340
- Loading - ./dist-esm/JavaScriptSDK/PerfManager.js
341
- Prototypes removed...
342
- Line Changed: /**
343
- Detected Removed lines 112 to 144
344
- Rewriting Map file - ./dist-esm/JavaScriptSDK/PerfManager.js.map
345
- Loading - ./dist-esm/JavaScriptSDK/ProcessTelemetryContext.js
346
- Rewriting Map file - ./dist-esm/JavaScriptSDK/ProcessTelemetryContext.js.map
347
- Loading - ./dist-esm/JavaScriptSDK/RandomHelper.js
348
- Rewriting Map file - ./dist-esm/JavaScriptSDK/RandomHelper.js.map
349
- Loading - ./dist-esm/JavaScriptSDK/TelemetryHelpers.js
350
- Rewriting Map file - ./dist-esm/JavaScriptSDK/TelemetryHelpers.js.map
351
- Loading - ./dist-esm/JavaScriptSDK/TelemetryPluginChain.js
352
- Rewriting Map file - ./dist-esm/JavaScriptSDK/TelemetryPluginChain.js.map
353
- Loading - ./dist-esm/JavaScriptSDK.Enums/EventsDiscardedReason.js
354
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Enums/EventsDiscardedReason.js.map
355
- Loading - ./dist-esm/JavaScriptSDK.Enums/LoggingEnums.js
356
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Enums/LoggingEnums.js.map
357
- Loading - ./dist-esm/JavaScriptSDK.Enums/SendRequestReason.js
358
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Enums/SendRequestReason.js.map
359
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IAppInsightsCore.js
360
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IAppInsightsCore.js.map
361
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IChannelControls.js
362
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IChannelControls.js.map
363
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IConfiguration.js
364
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IConfiguration.js.map
365
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/ICookieMgr.js
366
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/ICookieMgr.js.map
367
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IDiagnosticLogger.js
368
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IDiagnosticLogger.js.map
369
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IInstrumentHooks.js
370
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IInstrumentHooks.js.map
371
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/INotificationListener.js
372
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/INotificationListener.js.map
373
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/INotificationManager.js
374
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/INotificationManager.js.map
375
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IPerfEvent.js
376
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IPerfEvent.js.map
377
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IPerfManager.js
378
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IPerfManager.js.map
379
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/IProcessTelemetryContext.js
380
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/IProcessTelemetryContext.js.map
381
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/ITelemetryItem.js
382
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/ITelemetryItem.js.map
383
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/ITelemetryPlugin.js
384
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/ITelemetryPlugin.js.map
385
- Loading - ./dist-esm/JavaScriptSDK.Interfaces/ITelemetryPluginChain.js
386
- Rewriting Map file - ./dist-esm/JavaScriptSDK.Interfaces/ITelemetryPluginChain.js.map
387
-
388
- dist-esm/applicationinsights-core-js.js → dist/applicationinsights-core-js.min.js...
389
- created dist/applicationinsights-core-js.min.js in 3.4s
390
-
391
- dist-esm/applicationinsights-core-js.js → dist/applicationinsights-core-js.js...
392
- created dist/applicationinsights-core-js.js in 724ms
393
-
394
- dist-esm/applicationinsights-core-js.js → browser/applicationinsights-core-js.min.js...
395
- created browser/applicationinsights-core-js.min.js in 2.8s
396
-
397
- dist-esm/applicationinsights-core-js.js → browser/applicationinsights-core-js.js...
398
- created browser/applicationinsights-core-js.js in 589ms
399
-
400
- > @microsoft/applicationinsights-core-js@2.7.2-nightly.2111-09 sri D:\a\1\s\shared\AppInsightsCore
401
- > node ../../tools/subResourceIntegrity/generateIntegrityFile.js
402
-
403
- Loading - ./browser/applicationinsights-core-js.js (Extension) => (["./browser/applicationinsights-core-js.js","./browser/applicationinsights-core-js","2.7.2-nightly.2111-09","js"])
404
- Loading - ./browser/applicationinsights-core-js.min.js (Extension) => (["./browser/applicationinsights-core-js.min.js","./browser/applicationinsights-core-js","2.7.2-nightly.2111-09","min.js"])
405
- Writing - ./browser/applicationinsights-core-js.integrity.json
406
-
407
- > @microsoft/applicationinsights-core-js@2.7.2-nightly.2111-09 dtsgen D:\a\1\s\shared\AppInsightsCore
408
- > api-extractor run --local && node ../../scripts/dtsgen.js "Microsoft Application Insights Core Javascript SDK"
409
-
410
-
411
- api-extractor 7.18.19 - https://api-extractor.com/
412
-
413
- Using configuration from ./api-extractor.json
414
- Analysis will use the bundled TypeScript version 4.4.4
415
- Warning: The API report file was missing, so a new file was created. Please add this file to Git:
416
- D:\a\1\s\shared\AppInsightsCore\dist\applicationinsights-core-js.api.md
417
- Warning: types/JavaScriptSDK.Interfaces/IAppInsightsCore.d.ts:38:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
418
- Warning: types/JavaScriptSDK.Interfaces/IAppInsightsCore.d.ts:43:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
419
- Warning: types/JavaScriptSDK.Interfaces/IChannelControls.d.ts:20:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
420
- Warning: types/JavaScriptSDK.Interfaces/IChannelControls.d.ts:21:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
421
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:37:37 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
422
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:38:37 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
423
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:47:34 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
424
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:48:34 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
425
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:75:22 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
426
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:75:14 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
427
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:75:8 - (tsdoc-undefined-tag) The TSDoc tag "@type" is not defined in this configuration
428
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:76:8 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
429
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:90:113 - (tsdoc-code-fence-opening-indent) The opening backtick for a code fence must appear at the start of the line
430
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:90:129 - (tsdoc-code-fence-opening-indent) The opening backtick for a code fence must appear at the start of the line
431
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:91:108 - (tsdoc-code-fence-opening-indent) The opening backtick for a code fence must appear at the start of the line
432
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:91:123 - (tsdoc-code-fence-opening-indent) The opening backtick for a code fence must appear at the start of the line
433
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:105:8 - (tsdoc-undefined-tag) The TSDoc tag "@description" is not defined in this configuration
434
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:107:21 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
435
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:107:14 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
436
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:107:8 - (tsdoc-undefined-tag) The TSDoc tag "@type" is not defined in this configuration
437
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:108:8 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
438
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:113:8 - (tsdoc-undefined-tag) The TSDoc tag "@description" is not defined in this configuration
439
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:115:21 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
440
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:115:14 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
441
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:115:8 - (tsdoc-undefined-tag) The TSDoc tag "@type" is not defined in this configuration
442
-
443
- API Extractor completed successfully
444
- Warning: types/JavaScriptSDK.Interfaces/IConfiguration.d.ts:116:8 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
445
- Warning: types/JavaScriptSDK.Interfaces/IDiagnosticLogger.d.ts:30:24 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
446
- Warning: types/JavaScriptSDK.Interfaces/IDiagnosticLogger.d.ts:31:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
447
- Warning: types/JavaScriptSDK.Interfaces/IDiagnosticLogger.d.ts:36:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
448
- Warning: types/JavaScriptSDK.Interfaces/IDiagnosticLogger.d.ts:43:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
449
- Warning: types/JavaScriptSDK.Interfaces/IDiagnosticLogger.d.ts:52:24 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
450
- Warning: types/JavaScriptSDK.Interfaces/IDiagnosticLogger.d.ts:53:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
451
- Warning: types/JavaScriptSDK.Interfaces/INotificationListener.d.ts:5:4 - (tsdoc-undefined-tag) The TSDoc tag "@interface" is not defined in this configuration
452
- Warning: types/JavaScriptSDK.Interfaces/INotificationListener.d.ts:10:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
453
- Warning: types/JavaScriptSDK.Interfaces/INotificationListener.d.ts:15:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
454
- Warning: types/JavaScriptSDK.Interfaces/INotificationListener.d.ts:16:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
455
- Warning: types/JavaScriptSDK.Interfaces/INotificationListener.d.ts:22:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
456
- Warning: types/JavaScriptSDK.Interfaces/INotificationListener.d.ts:23:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
457
- Warning: types/JavaScriptSDK.Interfaces/INotificationListener.d.ts:29:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
458
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:11:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
459
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:16:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
460
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:21:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
461
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:26:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
462
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:27:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
463
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:33:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
464
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:34:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
465
- Warning: types/JavaScriptSDK.Interfaces/INotificationManager.d.ts:40:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
466
- Warning: types/JavaScriptSDK.Interfaces/IPerfManager.d.ts:12:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
467
- Warning: types/JavaScriptSDK.Interfaces/IPerfManager.d.ts:24:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
468
- Warning: types/JavaScriptSDK.Interfaces/IPerfManager.d.ts:31:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
469
- Warning: types/JavaScriptSDK.Interfaces/IProcessTelemetryContext.d.ts:31:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
470
- Warning: types/JavaScriptSDK.Interfaces/IProcessTelemetryContext.d.ts:32:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
471
- Warning: types/JavaScriptSDK.Interfaces/IProcessTelemetryContext.d.ts:33:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
472
- Warning: types/JavaScriptSDK/AppInsightsCore.d.ts:17:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
473
- Warning: types/JavaScriptSDK/AppInsightsCore.d.ts:22:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
474
- Warning: types/JavaScriptSDK/CookieMgr.d.ts:18:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
475
- Warning: types/JavaScriptSDK/CookieMgr.d.ts:19:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
476
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:7:21 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
477
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:8:20 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
478
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:9:20 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
479
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:9:12 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
480
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:9:4 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
481
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:14:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
482
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:15:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
483
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:87:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
484
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:88:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
485
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:88:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
486
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:88:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
487
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:93:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
488
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:94:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
489
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:94:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
490
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:94:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
491
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:111:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
492
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:112:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
493
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:112:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
494
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:112:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
495
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:117:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
496
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:118:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
497
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:118:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
498
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:118:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
499
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:123:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
500
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:124:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
501
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:124:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
502
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:124:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
503
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:136:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
504
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:137:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
505
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:145:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
506
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:146:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
507
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:154:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
508
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:155:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
509
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:163:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
510
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:164:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
511
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:175:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
512
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:182:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
513
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:189:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
514
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:190:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
515
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:191:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
516
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:192:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
517
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:198:25 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
518
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:199:24 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
519
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:200:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
520
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:200:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
521
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:200:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
522
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:232:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
523
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:267:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
524
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:268:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
525
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:269:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
526
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:276:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
527
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:277:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
528
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:278:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
529
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:284:25 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
530
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:285:24 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
531
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:286:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
532
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:286:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
533
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:286:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
534
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:292:25 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
535
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:293:24 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
536
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:294:24 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
537
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:294:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
538
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:294:8 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
539
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:305:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
540
- Warning: types/JavaScriptSDK/CoreUtils.d.ts:306:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
541
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:26:11 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
542
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:32:11 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
543
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:41:24 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
544
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:42:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
545
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:47:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
546
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:52:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
547
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:61:24 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
548
- Warning: types/JavaScriptSDK/DiagnosticLogger.d.ts:62:23 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
549
- Warning: types/JavaScriptSDK/EnvUtils.d.ts:3:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
550
- Warning: types/JavaScriptSDK/EnvUtils.d.ts:8:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
551
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:12:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
552
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:13:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
553
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:14:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
554
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:15:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
555
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:21:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
556
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:22:30 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
557
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:23:22 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
558
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:24:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
559
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:32:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
560
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:38:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
561
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:39:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
562
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:76:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
563
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:77:20 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
564
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:77:12 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
565
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:77:4 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
566
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:82:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
567
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:83:20 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
568
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:83:12 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
569
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:83:4 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
570
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:88:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
571
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:89:20 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
572
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:89:12 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
573
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:89:4 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
574
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:95:11 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
575
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:96:20 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
576
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:96:12 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
577
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:96:4 - (tsdoc-undefined-tag) The TSDoc tag "@return" is not defined in this configuration
578
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:108:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
579
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:109:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
580
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:117:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
581
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:118:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
582
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:126:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
583
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:127:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
584
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:135:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
585
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:136:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
586
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:147:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
587
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:154:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
588
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:155:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
589
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:156:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
590
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:157:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
591
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:202:79 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
592
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:203:61 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
593
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:207:4 - (tsdoc-undefined-tag) The TSDoc tag "@memberof" is not defined in this configuration
594
- Warning: types/JavaScriptSDK/HelperFuncs.d.ts:213:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
595
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:14:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
596
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:19:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
597
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:24:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
598
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:29:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
599
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:30:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
600
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:36:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
601
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:37:15 - (tsdoc-param-tag-with-invalid-type) The @param block should not include a JSDoc-style '{type}'
602
- Warning: types/JavaScriptSDK/NotificationManager.d.ts:43:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
603
- Warning: types/JavaScriptSDK/PerfManager.d.ts:53:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
604
- Warning: types/JavaScriptSDK/PerfManager.d.ts:60:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
605
- Warning: types/JavaScriptSDK/RandomHelper.d.ts:4:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
606
- Warning: types/JavaScriptSDK/TelemetryHelpers.d.ts:6:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
607
- Warning: types/JavaScriptSDK/TelemetryHelpers.d.ts:7:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
608
- Warning: types/JavaScriptSDK/TelemetryHelpers.d.ts:8:4 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
609
- Using Package: D:\a\1\s\shared\AppInsightsCore\package.json, current path cwd D:\a\1\s\shared\AppInsightsCore
610
- Transforming: D:\a\1\s\shared\AppInsightsCore\dist\applicationinsights-core-js.d.ts
611
- File...
612
- Lines: 2200