From 1858e6c55e12fbeec439b9dcd22a8b4af1ea06a8 Mon Sep 17 00:00:00 2001 From: Karlie Li Date: Tue, 12 Mar 2024 10:39:00 -0700 Subject: [PATCH 1/4] add cfgsync config --- tools/cfgsync-cdn/README.md | 48 ++++++++++++++++++++++++++++ tools/cfgsync-cdn/ai.cfgsync.json | 53 +++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 tools/cfgsync-cdn/README.md create mode 100644 tools/cfgsync-cdn/ai.cfgsync.json diff --git a/tools/cfgsync-cdn/README.md b/tools/cfgsync-cdn/README.md new file mode 100644 index 000000000..24168d710 --- /dev/null +++ b/tools/cfgsync-cdn/README.md @@ -0,0 +1,48 @@ +# Microsoft Application Insights JavaScript SDK - CfgSync Config Details + +Define ThrottleMgrCfg Configurations and feature opt-in status details. + +## Change History + +### Version + +1.0.0 (March, 2024) + +| Name | Description | Details +|---------|------|---------------- +| enabled | General on/off | `true` (on) +| featureOptIn | opt-in feature list | iKeyUsage (*inital opt-in*) +| featureOptIn.iKeyUsage.mode | feature-iKeyUsage enable/disable status | `3` (enable/opt-in) +| featureOptIn.iKeyUsage.onCfg | override values of the following cdn `config` when feature-iKeyUsage is enabled | DefaultThrottleMsgKey
throttleMgrCfg.109.enabled: `false`
InstrumentationKeyDeprecation
throttleMgrCfg.106.enabled: `true` +| featureOptIn.iKeyUsage.offCfg | override values of the following cdn `config` when feature-iKeyUsage is disabled | DefaultThrottleMsgKey
throttleMgrCfg.109.enabled: `false`
InstrumentationKeyDeprecation
throttleMgrCfg.106.enabled: `false` +| config | override values for user's core config | throttleMgrCfg +| config.throttleMgrCfg | override values for user's throttleMgrCfg under core config | InstrumentationKeyDeprecation
throttleMgrCfg.106:
{ `"enabled": true`, *// will send ikey InstrumentationKey Deprecation message*
`"limit": { "samplingRate": 1, "maxSendNumber": 1}`, *// sampling rate: 0.0001%, and will send max one message per time*
`"interval": {"monthInterval": 6,"daysOfMonth": [1]}`} *// message will be sent on the first day every 6 month*,
DefaultThrottleMsgKey
throttleMgrCfg.109:
{ `"enabled": false`, *// will not send default ikey message*
... *// all other settings are same with the InstrumentationKeyDeprecation settings*}
+ +## Contributing + +This project welcomes contributions and suggestions. Most contributions require you to +agree to a Contributor License Agreement (CLA) declaring that you have the right to, +and actually do, grant us the rights to use your contribution. For details, visit +https://cla.microsoft.com. + +When you submit a pull request, a CLA-bot will automatically determine whether you need +to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the +instructions provided by the bot. You will only need to do this once across all repositories using our CLA. + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). +For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) +or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. + +## Data Collection + +As this SDK is designed to enable applications to perform data collection which is sent to the Microsoft collection endpoints the following is required to identify our privacy statement. + +The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. + +## Trademarks + +This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies. + +## License + +[MIT](LICENSE) diff --git a/tools/cfgsync-cdn/ai.cfgsync.json b/tools/cfgsync-cdn/ai.cfgsync.json new file mode 100644 index 000000000..af03ff58f --- /dev/null +++ b/tools/cfgsync-cdn/ai.cfgsync.json @@ -0,0 +1,53 @@ +{ + "name": "Application Insights CfgSync CDN", + "description":"Application Insights throttleMgrCfg Configurations and feature opt-in Details", + "version": "1.0.0", + "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", + "author": "Microsoft Application Insights Team", + "sideEffects": false, + "repository": { + "type": "git", + "url": "https://github.com/microsoft/ApplicationInsights-JS" + }, + "enabled": true, + "featureOptIn": { + "iKeyUsage": { + "mode": 3, + "onCfg": { + "throttleMgrCfg.109.enabled": false, + "throttleMgrCfg.106.enabled": true + }, + "offCfg": { + "throttleMgrCfg.109.enabled": false, + "throttleMgrCfg.106.enabled": false + } + } + }, + "config": { + "throttleMgrCfg": { + "109": { + "enabled": false, + "limit": { + "samplingRate": 1, + "maxSendNumber": 1 + }, + "interval": { + "monthInterval": 6, + "daysOfMonth": [1] + } + }, + "106": { + "enabled": true, + "limit": { + "samplingRate": 1, + "maxSendNumber": 1 + }, + "interval": { + "monthInterval": 6, + "daysOfMonth": [1] + } + } + } + }, + "license": "MIT" +} \ No newline at end of file From 7f667cee9232686df967e626ba655a1a3a592ea4 Mon Sep 17 00:00:00 2001 From: Karlie Li Date: Wed, 13 Mar 2024 16:25:28 -0700 Subject: [PATCH 2/4] update --- .../README.md => docs/WebConfig.md | 31 +++++++- tools/cfgsync-cdn/ai.cfgsync.json | 53 -------------- tools/config/config.json | 72 +++++++++---------- tools/config/package.json | 4 +- tools/release-tools/package_groups.json | 4 ++ version.json | 2 +- 6 files changed, 69 insertions(+), 97 deletions(-) rename tools/cfgsync-cdn/README.md => docs/WebConfig.md (77%) delete mode 100644 tools/cfgsync-cdn/ai.cfgsync.json diff --git a/tools/cfgsync-cdn/README.md b/docs/WebConfig.md similarity index 77% rename from tools/cfgsync-cdn/README.md rename to docs/WebConfig.md index 24168d710..bdd69bd5b 100644 --- a/tools/cfgsync-cdn/README.md +++ b/docs/WebConfig.md @@ -1,4 +1,4 @@ -# Microsoft Application Insights JavaScript SDK - CfgSync Config Details +# Microsoft Application Insights JavaScript SDK - Web Config for CfgSync Plugin Define ThrottleMgrCfg Configurations and feature opt-in status details. @@ -8,6 +8,8 @@ Define ThrottleMgrCfg Configurations and feature opt-in status details. 1.0.0 (March, 2024) +CDN details + | Name | Description | Details |---------|------|---------------- | enabled | General on/off | `true` (on) @@ -16,7 +18,32 @@ Define ThrottleMgrCfg Configurations and feature opt-in status details. | featureOptIn.iKeyUsage.onCfg | override values of the following cdn `config` when feature-iKeyUsage is enabled | DefaultThrottleMsgKey
throttleMgrCfg.109.enabled: `false`
InstrumentationKeyDeprecation
throttleMgrCfg.106.enabled: `true` | featureOptIn.iKeyUsage.offCfg | override values of the following cdn `config` when feature-iKeyUsage is disabled | DefaultThrottleMsgKey
throttleMgrCfg.109.enabled: `false`
InstrumentationKeyDeprecation
throttleMgrCfg.106.enabled: `false` | config | override values for user's core config | throttleMgrCfg -| config.throttleMgrCfg | override values for user's throttleMgrCfg under core config | InstrumentationKeyDeprecation
throttleMgrCfg.106:
{ `"enabled": true`, *// will send ikey InstrumentationKey Deprecation message*
`"limit": { "samplingRate": 1, "maxSendNumber": 1}`, *// sampling rate: 0.0001%, and will send max one message per time*
`"interval": {"monthInterval": 6,"daysOfMonth": [1]}`} *// message will be sent on the first day every 6 month*,
DefaultThrottleMsgKey
throttleMgrCfg.109:
{ `"enabled": false`, *// will not send default ikey message*
... *// all other settings are same with the InstrumentationKeyDeprecation settings*}
+| config.throttleMgrCfg | override values for user's throttleMgrCfg under core config | InstrumentationKeyDeprecation
throttleMgrCfg.106:
{ `"enabled": true`, *// will send ikey InstrumentationKey Deprecation message*
`"limit": { "samplingRate": 1, "maxSendNumber": 1}`, *// sampling rate: 0.0001%, and will send max one message per time*
`"interval": {"monthInterval": 2,"daysOfMonth": [1]}`} *// message will be sent on the first day every 2 months*,
DefaultThrottleMsgKey
throttleMgrCfg.109:
{ `"enabled": false`, *// will not send default ikey message*
... *// all other settings are same with the InstrumentationKeyDeprecation settings*}
+ +#### Note + +This change will begin InstrumentationKeyDeprecation message throttling. If InstrumentationKey is used instead of ConnectionString for appInsights SDK initialization, logs with InstrumentationKeyDeprecation(106) message id will be sent. + +## Basic Usage + +### Change Feature Opt-in Status + +Under your config, define opt-in details in `featureOptIn` + +```js + +//to define iKeyUsage opt-in details +{ + connectionString: "YOUR_CONNECTION_STRING", + ... + featureOptIn: {["iKeyUsage"]: { + mode: FeatureOptInMode.disable, // set feature-iKeyUsage opt-in status to disable + blockCdnCfg: false, //define if should block any changes from web config cdn + } as IFeatureOptInDetails + } +} + +``` ## Contributing diff --git a/tools/cfgsync-cdn/ai.cfgsync.json b/tools/cfgsync-cdn/ai.cfgsync.json deleted file mode 100644 index af03ff58f..000000000 --- a/tools/cfgsync-cdn/ai.cfgsync.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "name": "Application Insights CfgSync CDN", - "description":"Application Insights throttleMgrCfg Configurations and feature opt-in Details", - "version": "1.0.0", - "homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme", - "author": "Microsoft Application Insights Team", - "sideEffects": false, - "repository": { - "type": "git", - "url": "https://github.com/microsoft/ApplicationInsights-JS" - }, - "enabled": true, - "featureOptIn": { - "iKeyUsage": { - "mode": 3, - "onCfg": { - "throttleMgrCfg.109.enabled": false, - "throttleMgrCfg.106.enabled": true - }, - "offCfg": { - "throttleMgrCfg.109.enabled": false, - "throttleMgrCfg.106.enabled": false - } - } - }, - "config": { - "throttleMgrCfg": { - "109": { - "enabled": false, - "limit": { - "samplingRate": 1, - "maxSendNumber": 1 - }, - "interval": { - "monthInterval": 6, - "daysOfMonth": [1] - } - }, - "106": { - "enabled": true, - "limit": { - "samplingRate": 1, - "maxSendNumber": 1 - }, - "interval": { - "monthInterval": 6, - "daysOfMonth": [1] - } - } - } - }, - "license": "MIT" -} \ No newline at end of file diff --git a/tools/config/config.json b/tools/config/config.json index 250b64993..d9d752ac4 100644 --- a/tools/config/config.json +++ b/tools/config/config.json @@ -1,49 +1,43 @@ { - "name":"Application Insights Config", - "description":" Application Insights JavaScript SDK - Web Config", - "copyright": "(c) Microsoft and contributors. All rights reserved.", - "author": "Microsoft Application Insights Team", - "throttleConfig": { - "default": { - "msgKey": 0, - "limit": { - "sendPercentage": 0, - "maxSendNumber": 0 + "version": "1.0.0", + "enabled": true, + "featureOptIn": { + "iKeyUsage": { + "mode": 3, + "onCfg": { + "throttleMgrCfg.109.enabled": false, + "throttleMgrCfg.106.enabled": true }, - "interval": { - "monthInterval": 100, - "dayInterval": 100, - "maxTimesPerMonth": 0 + "offCfg": { + "throttleMgrCfg.109.enabled": false, + "throttleMgrCfg.106.enabled": false } - }, - "config": { - "ikeyDeprecation": { - "msgKey": 1, - "limit": { - "sendPercentage": 1, - "maxSendNumber": 10 + } + }, + "config": { + "throttleMgrCfg": { + "109": { + "enabled": false, + "limit": { + "samplingRate": 1, + "maxSendNumber": 1 }, "interval": { - "monthInterval": 3, - "dayInterval": 28, - "maxTimesPerMonth": 1 + "monthInterval": 2, + "daysOfMonth": [1] } - }, - "cdnDeprecation": { - "ikeyDeprecation": { - "msgKey": 2, - "limit": { - "sendPercentage": 1, - "maxSendNumber": 10 - }, - "interval": { - "monthInterval": 3, - "dayInterval": 28, - "maxTimesPerMonth": 1 - } + }, + "106": { + "enabled": true, + "limit": { + "samplingRate": 1, + "maxSendNumber": 1 + }, + "interval": { + "monthInterval": 2, + "daysOfMonth": [1] } } } } -} - \ No newline at end of file +} \ No newline at end of file diff --git a/tools/config/package.json b/tools/config/package.json index f7cb572f8..ae569f4b3 100644 --- a/tools/config/package.json +++ b/tools/config/package.json @@ -1,7 +1,7 @@ { "name": "applicationinsights-web-config", - "description": " Application Insights JavaScript SDK - Web Config", - "version": "0.1.0", + "description": "Application Insights JavaScript SDK - Web Config for CfgSync Plugin", + "version": "1.0.0", "copyright": "(c) Microsoft and contributors. All rights reserved.", "author": "Microsoft Application Insights Team", "repository": { diff --git a/tools/release-tools/package_groups.json b/tools/release-tools/package_groups.json index 9321f4d8e..f82406a7b 100644 --- a/tools/release-tools/package_groups.json +++ b/tools/release-tools/package_groups.json @@ -44,6 +44,10 @@ "cfgSync": [ "./extensions/applicationinsights-cfgsync-js" ], + // Config for throttleMgr and feature Opt-in + "webConfig": [ + "./tools/config" + ], // Rollup packages "rollup-es": [ "./tools/rollup-es5" diff --git a/version.json b/version.json index 7cf0e64a1..20bf9a843 100644 --- a/version.json +++ b/version.json @@ -58,7 +58,7 @@ }, "applicationinsights-web-config": { "package": "tools/config/package.json", - "release": "0.1.0" + "release": "1.0.0" }, "@microsoft/applicationinsights-example-aisku": { "package": "examples/AISKU/package.json", From 3aef07c09e4868dbc5f008ee4cc9f6e87f895e06 Mon Sep 17 00:00:00 2001 From: Karlie Li Date: Thu, 14 Mar 2024 12:26:46 -0700 Subject: [PATCH 3/4] update --- gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index 9d0b7033d..5d9dde3c0 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -795,8 +795,8 @@ module.exports = function (grunt) { }, config: { files: [ - { src: "./tools/config/config.json", dest: `./tools/config/browser/ai.config${configVer}.cfg.json` }, - { src: "./tools/config/config.json", dest: `./tools/config/browser/ai.config${configMajorVer}.cfg.json` } + { src: "./tools/config/config.json", dest: `./tools/config/browser/es5/ai.config${configVer}.cfg.json` }, + { src: "./tools/config/config.json", dest: `./tools/config/browser/es5/ai.config${configMajorVer}.cfg.json` } ] } } From 065099a8040486e46494f0ce3299e7dd70f56e27 Mon Sep 17 00:00:00 2001 From: Karlie Li Date: Thu, 14 Mar 2024 12:50:54 -0700 Subject: [PATCH 4/4] update --- common/config/rush/npm-shrinkwrap.json | 140 ++++++++++++------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/common/config/rush/npm-shrinkwrap.json b/common/config/rush/npm-shrinkwrap.json index c6ca81311..00874aa98 100644 --- a/common/config/rush/npm-shrinkwrap.json +++ b/common/config/rush/npm-shrinkwrap.json @@ -565,7 +565,7 @@ "node_modules/@rush-temp/1ds-core-js": { "version": "0.0.0", "resolved": "file:projects/1ds-core-js.tgz", - "integrity": "sha512-aMB4Pz8GKaj8Mp6iV3oqtBZ9uB7M5LM+MujhpZ/SGq6ddJen+Z6KfihACBI1CPrhE1QfT8gRNodjwK87Bl2bfg==", + "integrity": "sha512-Yenyn/vf5rOTX1VK1fPVY+Bf8DVK/t3TNPBX6bBya6/XveHbC3TqhygFegZQGAaEMsMP8UhFk0EZSIFwLZOe9g==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -593,7 +593,7 @@ "node_modules/@rush-temp/1ds-post-js": { "version": "0.0.0", "resolved": "file:projects/1ds-post-js.tgz", - "integrity": "sha512-qRLxWu3TAsfDYS32im9w1iAnFHWN+Cq6vUQV81zEY6CleKOPvIH6/OpVVMWMyQLo6YqNXkg8X46DuOXO1zRzXg==", + "integrity": "sha512-9qFMH6i7lRRBEOcSfg8irJhtgSnhdmfaEtKCedzhaAY1WkCu/5HRED4IV1zaOpcY4Ft6NaOz2dopuamCY1O8jg==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -615,7 +615,7 @@ "node_modules/@rush-temp/ai-test-framework": { "version": "0.0.0", "resolved": "file:projects/ai-test-framework.tgz", - "integrity": "sha512-2SVvZjDWz4Z3my2YUjzT8vSTnehJNzIIPkrjY0j6WBTpF4uFJz9X++B4JdNVzFkGlJggmohSVZSpzsDVcIozUw==", + "integrity": "sha512-ietpdmkdhRcX/T8IGWCkwrzXm0lei44Al+/iBuohqg8mH8uJ5hfmVdvr/6FmZbEVc6OnF9szbXkwO22mbI+Jgw==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -641,7 +641,7 @@ "node_modules/@rush-temp/applicationinsights-analytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-analytics-js.tgz", - "integrity": "sha512-GuIaShQp5F1Gy+hcIJSN8AIPVpDB5jww42jRSs9uJoq1rHzluGfbAO00mzEEnuEKlXZnXMUaXBlEIbKfPfZTQg==", + "integrity": "sha512-scDYrhHIwHTAT2TWQAWWngRrxPdtY4DskVREGC29/C3RpREt29C3GRtLX2CAu+A9vBAYYsiTEvlaSpgF9WJ8Lw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -669,7 +669,7 @@ "node_modules/@rush-temp/applicationinsights-cfgsync-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-cfgsync-js.tgz", - "integrity": "sha512-fkvjhxyk71KxcXQj8jjCaM2htxvlJ+O8YztohXJuxzLk7acfv2IDuRhiok6LwPv/9xiAsOxLPrlUjr/7HYiMGg==", + "integrity": "sha512-Bo2vqddxUfqZrSQtJn/13n+VK9YcmBBiv+cNnw262NIreK3UfjyBYIIBLRZXYIA2cWNZc/MOkdzYVDGh0GR2Zw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -698,7 +698,7 @@ "node_modules/@rush-temp/applicationinsights-channel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-channel-js.tgz", - "integrity": "sha512-npoNQKfPegcxc669utbE1FUps3r4zDW32g8eTy77KdsuaR7v4Ruqna/+yVJgig7HjUNLEwPAjc0tOKr6ANWwWg==", + "integrity": "sha512-aReejal37ipulAsn5hwmJF5FR5OiUUTtobB4dUfNOSNPwjSW+ZPY+qi9h/ormxhVOY68iZkVSVu0Dbq0h8ddkA==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -725,7 +725,7 @@ "node_modules/@rush-temp/applicationinsights-chrome-debug-extension": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-x9HcipbfmUfLIQLliA19GXuWG0qf01IiJ9SQwXUBlnHMFlCdxOpPSXi6WmkRY2rFz38L2MTSVKVeMJkl+5GRig==", + "integrity": "sha512-IAG59CWWaqyiBvnAISlRaPd0htjOh0AybF7jWUVTbbp7TKsfD6v45UkjE6uK0gPaJYZkPU5DKXZVt0jTdsXsEA==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -759,7 +759,7 @@ "node_modules/@rush-temp/applicationinsights-clickanalytics-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-+gFkRkAH8Yi8UF1T52stxcufxwDogEC83r1d2uh30NvBsSOFpOVS+QlRCaDusPgYKKun06avyW9mK+FK584lBg==", + "integrity": "sha512-ZCsfXKF/fQzKSAKv+DRPibpuaGUyUh8qcUBcUT8eedBYcv3Ex5yNBtAIsEK8Eong52hrPAue8cIhOY60j7mh9w==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -784,7 +784,7 @@ "node_modules/@rush-temp/applicationinsights-common": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-common.tgz", - "integrity": "sha512-rPuadg12JrTTuirmq8vsU91epteKdJiu5rpx/d8YBLTMK5n0yZD8Chb7K1aK21xJTXz+pMdIklpEImLASx76eA==", + "integrity": "sha512-YRM15mnoFPV2MTsZG5zPOjzjruxP7/kIl45P/tCJmBXx2hjyQyYYPuSGOv/bgd0yT5UORy/efqHjhPiT4l5I7Q==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -810,7 +810,7 @@ "node_modules/@rush-temp/applicationinsights-core-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-core-js.tgz", - "integrity": "sha512-6OOUEtGGsVMkwdrMbyviGzqvhx+fltBlC6eVXsBIMAQqLR0Kn8pZrSIEig2Z8DAxkv7w8/ODNDFfLIpoJrs3hA==", + "integrity": "sha512-6+1rPbnq80W5DGQ/+E0GG6EdTy8FsE1qrPQF3XkueLIeAkmXS19+6CWyTso+GrWgYvX0SInxxIftONND/MqwaQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -839,7 +839,7 @@ "node_modules/@rush-temp/applicationinsights-debugplugin-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-jsMJ/VDxjnUebk+7sGDcba5Kqw/6Vr900rEcmLefJf93cxKI3N3Aeb4vJB85QyZzUoJizGK4AaD7eWAe5C/xkg==", + "integrity": "sha512-f0FxzTf9W8JVpOh69wm1HNtAIm+1xAAppPk/f3jvAOXk0ZQQ01xWxLq8TuWVNlLqixGVz7z/19JC5gX8vZNtPQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -864,7 +864,7 @@ "node_modules/@rush-temp/applicationinsights-dependencies-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-dependencies-js.tgz", - "integrity": "sha512-HvUL9Mce/JDCr62oLv654ljgwSPwvzz/YqaXRR+ik7qImCnHHYejHZAzjkG7tmb5sNknkUZvUE8Rngq8BNFZeQ==", + "integrity": "sha512-Ob+2tRboPpG8WlLNnwgT7scZeVJASvVaQG7HfgGq4x3I8XweHgqn5meXW3liXZEPdn5nOuWzZZX4bui980UXzQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -892,7 +892,7 @@ "node_modules/@rush-temp/applicationinsights-example-aisku": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-aisku.tgz", - "integrity": "sha512-zz/JP7vwva7Bse7g4mdKbxR6Xhbe3Ephfo0Us0/VJ/MnUHRLrnGxABCpu2/dAvPPWzzEscgW/jlNXCbYF9FOQw==", + "integrity": "sha512-bxZYy2Wp4fFXXrZirKG7Syri/YW2FxMnBSUJ8CjudqmKZfmZylCpR5Nn7j0rnqtpf3L2+MMHEKIzU841U1aJ2w==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.10.5 < 2.x", @@ -910,7 +910,7 @@ "node_modules/@rush-temp/applicationinsights-example-cfgsync": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-cfgsync.tgz", - "integrity": "sha512-326ZVcx7kVyYkm0FCOsnHVEWC5j9nWb5veuxXhyi85RzoVtSMKjW6pDmwM/4Kxe3HiliOX72FSdLMOVLEr7/zg==", + "integrity": "sha512-ZqUL4JdVT9w3RE9AAPO3Q8QSPETyQYz8p78oJey4La9mqARRpsSMTkAvDuMYrHEMAd/2FCq8LVj3T8Uy6GfbpA==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -936,7 +936,7 @@ "node_modules/@rush-temp/applicationinsights-example-dependencies": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-dependencies.tgz", - "integrity": "sha512-fZYwlC4XFxGg/K+AhRhEYv9BEJ2v1OweUtHfGWMl2MM4kRZifPCkZeIDImm3XoXqk+jeG/BgLFZhHpw3EcPdcw==", + "integrity": "sha512-iOe85orFoc8hZ1DjohKQU1Odg6uZIjfpUr6VSLVoSKDSi5vZIn10FA4NQhcvE5jdYoXKHCqFNkByiMJXCmWFhQ==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.10.5 < 2.x", @@ -954,7 +954,7 @@ "node_modules/@rush-temp/applicationinsights-example-shared-worker": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-r5IOuNEQd4aufPOREyi2o67Quq/ONEw1tIYZz5uBeHttLffRlBuE9E0RVye47igBrJedwGh/nEHW0NIEx9RQag==", + "integrity": "sha512-8HavJ6362hJZlxJ0j5AkxNYJu03lPsF66XDi7NijZtEZVDjZMNSMvgp0gY3DnXWIFXxO4tNqRYFTbNAccEztpg==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -980,7 +980,7 @@ "node_modules/@rush-temp/applicationinsights-js-release-tools": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-js-release-tools.tgz", - "integrity": "sha512-e9jw61D/jeRuLlSL+dQ2bFp8iqw6Q9ZMeboqX0CX0iYwjAPRiN/59ZK66D0UOgggNkqYgSEqgDi+ycw9XRtGnA==", + "integrity": "sha512-6sVB5NMzKj/P9v9UvZlA/IjQSkGeupaDliSt2IZqy+SlR59Hv335Ekz/5f54xMHu+QiARXJATbjX7lDfCMG8qw==", "dependencies": { "globby": "^11.0.0", "grunt": "^1.5.3" @@ -989,7 +989,7 @@ "node_modules/@rush-temp/applicationinsights-offlinechannel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-offlinechannel-js.tgz", - "integrity": "sha512-fbOcMfKTkyGgHCAlaIBFIdJzYxgTlCxSlPGdKweCLkOYSL7ZYCI4Ri9fNxUzYaXAvwGWQa0+qlvt8NDHGCmGCQ==", + "integrity": "sha512-X891EJwuKqor4P3fEWmx3UedLwx1NXmElf1k1sj+PT5LDk1BTgvr8pUhI7VGG8cJ60wOB6iTyiVpZSx+CCvJeA==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1016,7 +1016,7 @@ "node_modules/@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-K4KuVmQzmeaUmeJke01FyDsG0POmfTWlttk5Ir4V22dIL5zuVX2vRzkOKNLHkBYQ7BnORIEZ6V8IBvBpBbUOkA==", + "integrity": "sha512-ackCxopS/BUNIlHJaBVPwfW4uC3coP0+BgF1S1rQCYpVD4Uv4uiOFc2pg13hBAacG2tsrqKnD6NbWpawVUlR5w==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1041,7 +1041,7 @@ "node_modules/@rush-temp/applicationinsights-properties-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-properties-js.tgz", - "integrity": "sha512-BRJ9nL85fDjqCfFZosxJqLAHGHAMT/9UCpRPsLfYGnLVzMGlKn9CbKnG1kL2xd8ygxCm9Fjd+KqSfrQPHwcTlg==", + "integrity": "sha512-N7bvhe6rUQ/ejT+PVlt1K09dFNqfrjxq7MkLFOgCbRfOIRLnxHktmJnx4UHBEyZQospeBT2qHGHnl2vxUipp/w==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1069,7 +1069,7 @@ "node_modules/@rush-temp/applicationinsights-rollup-es5": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-rollup-es5.tgz", - "integrity": "sha512-1Yw2QKlul+WlTRAHhchUxteaSDaeZjskW1H4R3BT7xv7yGZPi0dp4KtKdKAJZQ+/Z+Zxg4XXOWpuDmv/FYmFtQ==", + "integrity": "sha512-pZV3ytRYW9T6XrXLTRqAt5c23vrywlwfWQ1rrGVh78hlig+Ns/ZJw+jM4JwgSyvce8hcZiR+z1rm0xpKju+oJA==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -1093,7 +1093,7 @@ "node_modules/@rush-temp/applicationinsights-rollup-plugin-uglify3-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-rollup-plugin-uglify3-js.tgz", - "integrity": "sha512-gp8gJ52kIbJpkT406+PBS7rtyCSUnc72otGxnwywqWCuBJvO1O+qaOCIJBYL/wYk1lDpMKejDqG94vPSSQtnFg==", + "integrity": "sha512-WtYrHtc+6IgVGmHIahhl2aYUGuloDq9xCX6VuwObLmccrAqmYq0LYbCanjHi8ugorx/zwwQB37yY3y2WfaDGmw==", "dependencies": { "@nevware21/grunt-eslint-ts": "^0.2.2", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -1114,7 +1114,7 @@ "node_modules/@rush-temp/applicationinsights-shims": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-shims.tgz", - "integrity": "sha512-7fRAilTI2OwX4puyMNFsxgeQskMNCIBYRBKXTKsdOWvBDAh6NOaCqhFb8uMseiXC30XZuHUZRUPDYUVZ+pb9nA==", + "integrity": "sha512-c3v8k8LpP4R6enyC0SRH/GiHaWiJagx94abvfoig0v0T2Tj+1zz8S5wL6WaDSn1P1py02l31qBUUyoNc7r86/g==", "dependencies": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -1136,7 +1136,7 @@ "node_modules/@rush-temp/applicationinsights-teechannel-js": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-teechannel-js.tgz", - "integrity": "sha512-NXWQHve+zyf0fGFMEnVHNEw3h1imD8kgmv5+MwwYlAkGNqDBZ1/6i+PxauW25ec8JOTR1TieKYxvyg44qkmZUQ==", + "integrity": "sha512-2m6lgL8bWMR4apxizHKr+ujkeMTQt6tg+LT3QMzCab8HMz76FaXN0qh15cxjLmDEEiURolhfnt+RDhK8WFmqAA==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1163,7 +1163,7 @@ "node_modules/@rush-temp/applicationinsights-test-module-type-check": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-test-module-type-check.tgz", - "integrity": "sha512-D91nqWWpovsHlJnDgAD51wKzZtn2AGzC2+Bxn9G2sPrBU2Y1Tjy7O0GMVHJ7KgxXeHaHgVEGcBaRzEpWxHb86g==", + "integrity": "sha512-foafINNT32jvv1i/tqE0pS3Q38funTGDM/d+J72Nw/rLXZkg+Y+FfJbpGZiXvXlsrv+JEFW2LDxx/GW/8E/tCA==", "dependencies": { "tslib": "*", "typescript": "^4.9.3" @@ -1172,7 +1172,7 @@ "node_modules/@rush-temp/applicationinsights-web": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web.tgz", - "integrity": "sha512-opemTNvlWqVOpfJM7khnsOCzLw3KO+OwsLVDXMJmO7Z4aCFHMjwmO/2nCyfCOlOMrYyzBrxg7beIdbovErNNUQ==", + "integrity": "sha512-7GpahiMJWBob2HGregZ6/EihuW0SxasLBfZcFOddwoPN8tsfHIQ8PMB20ZoBwK5YDyODYkC2NvxjQGegbc25EQ==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1204,7 +1204,7 @@ "node_modules/@rush-temp/applicationinsights-web-basic": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-basic.tgz", - "integrity": "sha512-iuVLcZ8NBhO92rASSoGoMXWpS8wG13qC4GBGirxTMTj0p9TunqjBG0JVgMlzX20GG+750/2JHtPPkWJ0Gy65qQ==", + "integrity": "sha512-/sjk5WbM5+7F6xkJsvvX5slYGa7Qki9ajLbicHYW75tumNjS/wyapBINb511tw4Bf146zV8QtL2PMmerMe00WA==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1231,12 +1231,12 @@ "node_modules/@rush-temp/applicationinsights-web-config": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-config.tgz", - "integrity": "sha512-FwPOZ+esirRqdKg9s7VTxtWqGJ9CQ/gIJ0PfUvTolAF9JZCVw5wQeHD4Tv/KiziZhB50CNaGshnPmLpWGVzo9g==" + "integrity": "sha512-WwlTM/noixyLMqKFBLKa9o88N/2Z3dA9m0R6Qc9UvBNseZqPIpvl1vRMDnmwjMMV6lV3FsmeSmjD7LCJphXF2Q==" }, "node_modules/@rush-temp/applicationinsights-web-snippet": { "version": "0.0.0", "resolved": "file:projects/applicationinsights-web-snippet.tgz", - "integrity": "sha512-GJu1HqT6Lo3Z7/qVfL24rx99i8tyr76ng7o/NHe4sbMINT2E21WVCLUt6AV2xHr9vJqChxzNq5FkgbVn5nCoRQ==", + "integrity": "sha512-P6Z3tVdzCZ6NW7Kvh+eDrYIaG5IZJYIsprrpDkz1KSveOQEPVKYyRYQFKiHfFzJ48uD9jY7i8dv3g9YTV2OuRw==", "dependencies": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -1489,9 +1489,9 @@ "integrity": "sha512-gVB+rxvxmbyPFWa6yjjKgcumWal3hyqoTXI0Oil161uWfo1OCzWZ/rnEumsx+6uVgrwPrCrhpQbLkzfildkSbg==" }, "node_modules/@types/react": { - "version": "16.14.57", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.57.tgz", - "integrity": "sha512-fuNq/GV1a6GgqSuVuC457vYeTbm4E1CUBQVZwSPxqYnRhIzSXCJ1gGqyv+PKhqLyfbKCga9dXHJDzv+4XE41fw==", + "version": "16.14.58", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.58.tgz", + "integrity": "sha512-F8FNMutMPDU2AitpdmBUZozvli+0oCMdgRXG5dY+01gHxYsw6i+dX7HAoYE7k1inZ0ATNVbsjOfrWptUy+kbvA==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -2576,9 +2576,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.702", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.702.tgz", - "integrity": "sha512-LYLXyEUsZ3nNSwiOWjI88N1PJUAMU2QphQSgGLVkFnb3FxZxNui2Vzi2PaKPgPWbsWbZstZnh6BMf/VQJamjiQ==" + "version": "1.4.706", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.706.tgz", + "integrity": "sha512-fO01fufoGd6jKK3HR8ofBapF3ZPfgxNJ/ua9xQAhFu93TwWIs4d+weDn3kje3GB4S7aGUTfk5nvdU5F7z5mF9Q==" }, "node_modules/encodeurl": { "version": "1.0.2", @@ -6631,7 +6631,7 @@ }, "@rush-temp/1ds-core-js": { "version": "file:projects\\1ds-core-js.tgz", - "integrity": "sha512-aMB4Pz8GKaj8Mp6iV3oqtBZ9uB7M5LM+MujhpZ/SGq6ddJen+Z6KfihACBI1CPrhE1QfT8gRNodjwK87Bl2bfg==", + "integrity": "sha512-Yenyn/vf5rOTX1VK1fPVY+Bf8DVK/t3TNPBX6bBya6/XveHbC3TqhygFegZQGAaEMsMP8UhFk0EZSIFwLZOe9g==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6658,7 +6658,7 @@ }, "@rush-temp/1ds-post-js": { "version": "file:projects\\1ds-post-js.tgz", - "integrity": "sha512-qRLxWu3TAsfDYS32im9w1iAnFHWN+Cq6vUQV81zEY6CleKOPvIH6/OpVVMWMyQLo6YqNXkg8X46DuOXO1zRzXg==", + "integrity": "sha512-9qFMH6i7lRRBEOcSfg8irJhtgSnhdmfaEtKCedzhaAY1WkCu/5HRED4IV1zaOpcY4Ft6NaOz2dopuamCY1O8jg==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6679,7 +6679,7 @@ }, "@rush-temp/ai-test-framework": { "version": "file:projects\\ai-test-framework.tgz", - "integrity": "sha512-2SVvZjDWz4Z3my2YUjzT8vSTnehJNzIIPkrjY0j6WBTpF4uFJz9X++B4JdNVzFkGlJggmohSVZSpzsDVcIozUw==", + "integrity": "sha512-ietpdmkdhRcX/T8IGWCkwrzXm0lei44Al+/iBuohqg8mH8uJ5hfmVdvr/6FmZbEVc6OnF9szbXkwO22mbI+Jgw==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -6704,7 +6704,7 @@ }, "@rush-temp/applicationinsights-analytics-js": { "version": "file:projects\\applicationinsights-analytics-js.tgz", - "integrity": "sha512-GuIaShQp5F1Gy+hcIJSN8AIPVpDB5jww42jRSs9uJoq1rHzluGfbAO00mzEEnuEKlXZnXMUaXBlEIbKfPfZTQg==", + "integrity": "sha512-scDYrhHIwHTAT2TWQAWWngRrxPdtY4DskVREGC29/C3RpREt29C3GRtLX2CAu+A9vBAYYsiTEvlaSpgF9WJ8Lw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6731,7 +6731,7 @@ }, "@rush-temp/applicationinsights-cfgsync-js": { "version": "file:projects\\applicationinsights-cfgsync-js.tgz", - "integrity": "sha512-fkvjhxyk71KxcXQj8jjCaM2htxvlJ+O8YztohXJuxzLk7acfv2IDuRhiok6LwPv/9xiAsOxLPrlUjr/7HYiMGg==", + "integrity": "sha512-Bo2vqddxUfqZrSQtJn/13n+VK9YcmBBiv+cNnw262NIreK3UfjyBYIIBLRZXYIA2cWNZc/MOkdzYVDGh0GR2Zw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6759,7 +6759,7 @@ }, "@rush-temp/applicationinsights-channel-js": { "version": "file:projects\\applicationinsights-channel-js.tgz", - "integrity": "sha512-npoNQKfPegcxc669utbE1FUps3r4zDW32g8eTy77KdsuaR7v4Ruqna/+yVJgig7HjUNLEwPAjc0tOKr6ANWwWg==", + "integrity": "sha512-aReejal37ipulAsn5hwmJF5FR5OiUUTtobB4dUfNOSNPwjSW+ZPY+qi9h/ormxhVOY68iZkVSVu0Dbq0h8ddkA==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6785,7 +6785,7 @@ }, "@rush-temp/applicationinsights-chrome-debug-extension": { "version": "file:projects\\applicationinsights-chrome-debug-extension.tgz", - "integrity": "sha512-x9HcipbfmUfLIQLliA19GXuWG0qf01IiJ9SQwXUBlnHMFlCdxOpPSXi6WmkRY2rFz38L2MTSVKVeMJkl+5GRig==", + "integrity": "sha512-IAG59CWWaqyiBvnAISlRaPd0htjOh0AybF7jWUVTbbp7TKsfD6v45UkjE6uK0gPaJYZkPU5DKXZVt0jTdsXsEA==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -6818,7 +6818,7 @@ }, "@rush-temp/applicationinsights-clickanalytics-js": { "version": "file:projects\\applicationinsights-clickanalytics-js.tgz", - "integrity": "sha512-+gFkRkAH8Yi8UF1T52stxcufxwDogEC83r1d2uh30NvBsSOFpOVS+QlRCaDusPgYKKun06avyW9mK+FK584lBg==", + "integrity": "sha512-ZCsfXKF/fQzKSAKv+DRPibpuaGUyUh8qcUBcUT8eedBYcv3Ex5yNBtAIsEK8Eong52hrPAue8cIhOY60j7mh9w==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6842,7 +6842,7 @@ }, "@rush-temp/applicationinsights-common": { "version": "file:projects\\applicationinsights-common.tgz", - "integrity": "sha512-rPuadg12JrTTuirmq8vsU91epteKdJiu5rpx/d8YBLTMK5n0yZD8Chb7K1aK21xJTXz+pMdIklpEImLASx76eA==", + "integrity": "sha512-YRM15mnoFPV2MTsZG5zPOjzjruxP7/kIl45P/tCJmBXx2hjyQyYYPuSGOv/bgd0yT5UORy/efqHjhPiT4l5I7Q==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6867,7 +6867,7 @@ }, "@rush-temp/applicationinsights-core-js": { "version": "file:projects\\applicationinsights-core-js.tgz", - "integrity": "sha512-6OOUEtGGsVMkwdrMbyviGzqvhx+fltBlC6eVXsBIMAQqLR0Kn8pZrSIEig2Z8DAxkv7w8/ODNDFfLIpoJrs3hA==", + "integrity": "sha512-6+1rPbnq80W5DGQ/+E0GG6EdTy8FsE1qrPQF3XkueLIeAkmXS19+6CWyTso+GrWgYvX0SInxxIftONND/MqwaQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6895,7 +6895,7 @@ }, "@rush-temp/applicationinsights-debugplugin-js": { "version": "file:projects\\applicationinsights-debugplugin-js.tgz", - "integrity": "sha512-jsMJ/VDxjnUebk+7sGDcba5Kqw/6Vr900rEcmLefJf93cxKI3N3Aeb4vJB85QyZzUoJizGK4AaD7eWAe5C/xkg==", + "integrity": "sha512-f0FxzTf9W8JVpOh69wm1HNtAIm+1xAAppPk/f3jvAOXk0ZQQ01xWxLq8TuWVNlLqixGVz7z/19JC5gX8vZNtPQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6919,7 +6919,7 @@ }, "@rush-temp/applicationinsights-dependencies-js": { "version": "file:projects\\applicationinsights-dependencies-js.tgz", - "integrity": "sha512-HvUL9Mce/JDCr62oLv654ljgwSPwvzz/YqaXRR+ik7qImCnHHYejHZAzjkG7tmb5sNknkUZvUE8Rngq8BNFZeQ==", + "integrity": "sha512-Ob+2tRboPpG8WlLNnwgT7scZeVJASvVaQG7HfgGq4x3I8XweHgqn5meXW3liXZEPdn5nOuWzZZX4bui980UXzQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -6946,7 +6946,7 @@ }, "@rush-temp/applicationinsights-example-aisku": { "version": "file:projects\\applicationinsights-example-aisku.tgz", - "integrity": "sha512-zz/JP7vwva7Bse7g4mdKbxR6Xhbe3Ephfo0Us0/VJ/MnUHRLrnGxABCpu2/dAvPPWzzEscgW/jlNXCbYF9FOQw==", + "integrity": "sha512-bxZYy2Wp4fFXXrZirKG7Syri/YW2FxMnBSUJ8CjudqmKZfmZylCpR5Nn7j0rnqtpf3L2+MMHEKIzU841U1aJ2w==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.10.5 < 2.x", @@ -6963,7 +6963,7 @@ }, "@rush-temp/applicationinsights-example-cfgsync": { "version": "file:projects\\applicationinsights-example-cfgsync.tgz", - "integrity": "sha512-326ZVcx7kVyYkm0FCOsnHVEWC5j9nWb5veuxXhyi85RzoVtSMKjW6pDmwM/4Kxe3HiliOX72FSdLMOVLEr7/zg==", + "integrity": "sha512-ZqUL4JdVT9w3RE9AAPO3Q8QSPETyQYz8p78oJey4La9mqARRpsSMTkAvDuMYrHEMAd/2FCq8LVj3T8Uy6GfbpA==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -6988,7 +6988,7 @@ }, "@rush-temp/applicationinsights-example-dependencies": { "version": "file:projects\\applicationinsights-example-dependencies.tgz", - "integrity": "sha512-fZYwlC4XFxGg/K+AhRhEYv9BEJ2v1OweUtHfGWMl2MM4kRZifPCkZeIDImm3XoXqk+jeG/BgLFZhHpw3EcPdcw==", + "integrity": "sha512-iOe85orFoc8hZ1DjohKQU1Odg6uZIjfpUr6VSLVoSKDSi5vZIn10FA4NQhcvE5jdYoXKHCqFNkByiMJXCmWFhQ==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/ts-utils": ">= 0.10.5 < 2.x", @@ -7005,7 +7005,7 @@ }, "@rush-temp/applicationinsights-example-shared-worker": { "version": "file:projects\\applicationinsights-example-shared-worker.tgz", - "integrity": "sha512-r5IOuNEQd4aufPOREyi2o67Quq/ONEw1tIYZz5uBeHttLffRlBuE9E0RVye47igBrJedwGh/nEHW0NIEx9RQag==", + "integrity": "sha512-8HavJ6362hJZlxJ0j5AkxNYJu03lPsF66XDi7NijZtEZVDjZMNSMvgp0gY3DnXWIFXxO4tNqRYFTbNAccEztpg==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7030,7 +7030,7 @@ }, "@rush-temp/applicationinsights-js-release-tools": { "version": "file:projects\\applicationinsights-js-release-tools.tgz", - "integrity": "sha512-e9jw61D/jeRuLlSL+dQ2bFp8iqw6Q9ZMeboqX0CX0iYwjAPRiN/59ZK66D0UOgggNkqYgSEqgDi+ycw9XRtGnA==", + "integrity": "sha512-6sVB5NMzKj/P9v9UvZlA/IjQSkGeupaDliSt2IZqy+SlR59Hv335Ekz/5f54xMHu+QiARXJATbjX7lDfCMG8qw==", "requires": { "globby": "^11.0.0", "grunt": "^1.5.3" @@ -7038,7 +7038,7 @@ }, "@rush-temp/applicationinsights-offlinechannel-js": { "version": "file:projects\\applicationinsights-offlinechannel-js.tgz", - "integrity": "sha512-fbOcMfKTkyGgHCAlaIBFIdJzYxgTlCxSlPGdKweCLkOYSL7ZYCI4Ri9fNxUzYaXAvwGWQa0+qlvt8NDHGCmGCQ==", + "integrity": "sha512-X891EJwuKqor4P3fEWmx3UedLwx1NXmElf1k1sj+PT5LDk1BTgvr8pUhI7VGG8cJ60wOB6iTyiVpZSx+CCvJeA==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7064,7 +7064,7 @@ }, "@rush-temp/applicationinsights-perfmarkmeasure-js": { "version": "file:projects\\applicationinsights-perfmarkmeasure-js.tgz", - "integrity": "sha512-K4KuVmQzmeaUmeJke01FyDsG0POmfTWlttk5Ir4V22dIL5zuVX2vRzkOKNLHkBYQ7BnORIEZ6V8IBvBpBbUOkA==", + "integrity": "sha512-ackCxopS/BUNIlHJaBVPwfW4uC3coP0+BgF1S1rQCYpVD4Uv4uiOFc2pg13hBAacG2tsrqKnD6NbWpawVUlR5w==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7088,7 +7088,7 @@ }, "@rush-temp/applicationinsights-properties-js": { "version": "file:projects\\applicationinsights-properties-js.tgz", - "integrity": "sha512-BRJ9nL85fDjqCfFZosxJqLAHGHAMT/9UCpRPsLfYGnLVzMGlKn9CbKnG1kL2xd8ygxCm9Fjd+KqSfrQPHwcTlg==", + "integrity": "sha512-N7bvhe6rUQ/ejT+PVlt1K09dFNqfrjxq7MkLFOgCbRfOIRLnxHktmJnx4UHBEyZQospeBT2qHGHnl2vxUipp/w==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7115,7 +7115,7 @@ }, "@rush-temp/applicationinsights-rollup-es5": { "version": "file:projects\\applicationinsights-rollup-es5.tgz", - "integrity": "sha512-1Yw2QKlul+WlTRAHhchUxteaSDaeZjskW1H4R3BT7xv7yGZPi0dp4KtKdKAJZQ+/Z+Zxg4XXOWpuDmv/FYmFtQ==", + "integrity": "sha512-pZV3ytRYW9T6XrXLTRqAt5c23vrywlwfWQ1rrGVh78hlig+Ns/ZJw+jM4JwgSyvce8hcZiR+z1rm0xpKju+oJA==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7138,7 +7138,7 @@ }, "@rush-temp/applicationinsights-rollup-plugin-uglify3-js": { "version": "file:projects\\applicationinsights-rollup-plugin-uglify3-js.tgz", - "integrity": "sha512-gp8gJ52kIbJpkT406+PBS7rtyCSUnc72otGxnwywqWCuBJvO1O+qaOCIJBYL/wYk1lDpMKejDqG94vPSSQtnFg==", + "integrity": "sha512-WtYrHtc+6IgVGmHIahhl2aYUGuloDq9xCX6VuwObLmccrAqmYq0LYbCanjHi8ugorx/zwwQB37yY3y2WfaDGmw==", "requires": { "@nevware21/grunt-eslint-ts": "^0.2.2", "@nevware21/grunt-ts-plugin": "^0.4.3", @@ -7158,7 +7158,7 @@ }, "@rush-temp/applicationinsights-shims": { "version": "file:projects\\applicationinsights-shims.tgz", - "integrity": "sha512-7fRAilTI2OwX4puyMNFsxgeQskMNCIBYRBKXTKsdOWvBDAh6NOaCqhFb8uMseiXC30XZuHUZRUPDYUVZ+pb9nA==", + "integrity": "sha512-c3v8k8LpP4R6enyC0SRH/GiHaWiJagx94abvfoig0v0T2Tj+1zz8S5wL6WaDSn1P1py02l31qBUUyoNc7r86/g==", "requires": { "@microsoft/dynamicproto-js": "^2.0.3", "@nevware21/grunt-eslint-ts": "^0.2.2", @@ -7179,7 +7179,7 @@ }, "@rush-temp/applicationinsights-teechannel-js": { "version": "file:projects\\applicationinsights-teechannel-js.tgz", - "integrity": "sha512-NXWQHve+zyf0fGFMEnVHNEw3h1imD8kgmv5+MwwYlAkGNqDBZ1/6i+PxauW25ec8JOTR1TieKYxvyg44qkmZUQ==", + "integrity": "sha512-2m6lgL8bWMR4apxizHKr+ujkeMTQt6tg+LT3QMzCab8HMz76FaXN0qh15cxjLmDEEiURolhfnt+RDhK8WFmqAA==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7205,7 +7205,7 @@ }, "@rush-temp/applicationinsights-test-module-type-check": { "version": "file:projects\\applicationinsights-test-module-type-check.tgz", - "integrity": "sha512-D91nqWWpovsHlJnDgAD51wKzZtn2AGzC2+Bxn9G2sPrBU2Y1Tjy7O0GMVHJ7KgxXeHaHgVEGcBaRzEpWxHb86g==", + "integrity": "sha512-foafINNT32jvv1i/tqE0pS3Q38funTGDM/d+J72Nw/rLXZkg+Y+FfJbpGZiXvXlsrv+JEFW2LDxx/GW/8E/tCA==", "requires": { "tslib": "*", "typescript": "^4.9.3" @@ -7213,7 +7213,7 @@ }, "@rush-temp/applicationinsights-web": { "version": "file:projects\\applicationinsights-web.tgz", - "integrity": "sha512-opemTNvlWqVOpfJM7khnsOCzLw3KO+OwsLVDXMJmO7Z4aCFHMjwmO/2nCyfCOlOMrYyzBrxg7beIdbovErNNUQ==", + "integrity": "sha512-7GpahiMJWBob2HGregZ6/EihuW0SxasLBfZcFOddwoPN8tsfHIQ8PMB20ZoBwK5YDyODYkC2NvxjQGegbc25EQ==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7244,7 +7244,7 @@ }, "@rush-temp/applicationinsights-web-basic": { "version": "file:projects\\applicationinsights-web-basic.tgz", - "integrity": "sha512-iuVLcZ8NBhO92rASSoGoMXWpS8wG13qC4GBGirxTMTj0p9TunqjBG0JVgMlzX20GG+750/2JHtPPkWJ0Gy65qQ==", + "integrity": "sha512-/sjk5WbM5+7F6xkJsvvX5slYGa7Qki9ajLbicHYW75tumNjS/wyapBINb511tw4Bf146zV8QtL2PMmerMe00WA==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7270,11 +7270,11 @@ }, "@rush-temp/applicationinsights-web-config": { "version": "file:projects\\applicationinsights-web-config.tgz", - "integrity": "sha512-FwPOZ+esirRqdKg9s7VTxtWqGJ9CQ/gIJ0PfUvTolAF9JZCVw5wQeHD4Tv/KiziZhB50CNaGshnPmLpWGVzo9g==" + "integrity": "sha512-WwlTM/noixyLMqKFBLKa9o88N/2Z3dA9m0R6Qc9UvBNseZqPIpvl1vRMDnmwjMMV6lV3FsmeSmjD7LCJphXF2Q==" }, "@rush-temp/applicationinsights-web-snippet": { "version": "file:projects\\applicationinsights-web-snippet.tgz", - "integrity": "sha512-GJu1HqT6Lo3Z7/qVfL24rx99i8tyr76ng7o/NHe4sbMINT2E21WVCLUt6AV2xHr9vJqChxzNq5FkgbVn5nCoRQ==", + "integrity": "sha512-P6Z3tVdzCZ6NW7Kvh+eDrYIaG5IZJYIsprrpDkz1KSveOQEPVKYyRYQFKiHfFzJ48uD9jY7i8dv3g9YTV2OuRw==", "requires": { "@microsoft/api-extractor": "^7.40.0", "@microsoft/dynamicproto-js": "^2.0.3", @@ -7502,9 +7502,9 @@ "integrity": "sha512-gVB+rxvxmbyPFWa6yjjKgcumWal3hyqoTXI0Oil161uWfo1OCzWZ/rnEumsx+6uVgrwPrCrhpQbLkzfildkSbg==" }, "@types/react": { - "version": "16.14.57", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.57.tgz", - "integrity": "sha512-fuNq/GV1a6GgqSuVuC457vYeTbm4E1CUBQVZwSPxqYnRhIzSXCJ1gGqyv+PKhqLyfbKCga9dXHJDzv+4XE41fw==", + "version": "16.14.58", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.58.tgz", + "integrity": "sha512-F8FNMutMPDU2AitpdmBUZozvli+0oCMdgRXG5dY+01gHxYsw6i+dX7HAoYE7k1inZ0ATNVbsjOfrWptUy+kbvA==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -8265,9 +8265,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.702", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.702.tgz", - "integrity": "sha512-LYLXyEUsZ3nNSwiOWjI88N1PJUAMU2QphQSgGLVkFnb3FxZxNui2Vzi2PaKPgPWbsWbZstZnh6BMf/VQJamjiQ==" + "version": "1.4.706", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.706.tgz", + "integrity": "sha512-fO01fufoGd6jKK3HR8ofBapF3ZPfgxNJ/ua9xQAhFu93TwWIs4d+weDn3kje3GB4S7aGUTfk5nvdU5F7z5mF9Q==" }, "encodeurl": { "version": "1.0.2",