@pnp/cli-microsoft365 5.7.0-beta.d90ad27 → 5.7.0

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.
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
3
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
4
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
5
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
6
+ };
7
+ var _BookingBusinessGetCommand_instances, _BookingBusinessGetCommand_initTelemetry, _BookingBusinessGetCommand_initOptions, _BookingBusinessGetCommand_initOptionSets;
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ const request_1 = require("../../../../request");
10
+ const GraphCommand_1 = require("../../../base/GraphCommand");
11
+ const commands_1 = require("../../commands");
12
+ class BookingBusinessGetCommand extends GraphCommand_1.default {
13
+ constructor() {
14
+ super();
15
+ _BookingBusinessGetCommand_instances.add(this);
16
+ __classPrivateFieldGet(this, _BookingBusinessGetCommand_instances, "m", _BookingBusinessGetCommand_initTelemetry).call(this);
17
+ __classPrivateFieldGet(this, _BookingBusinessGetCommand_instances, "m", _BookingBusinessGetCommand_initOptions).call(this);
18
+ __classPrivateFieldGet(this, _BookingBusinessGetCommand_instances, "m", _BookingBusinessGetCommand_initOptionSets).call(this);
19
+ }
20
+ get name() {
21
+ return commands_1.default.BUSINESS_GET;
22
+ }
23
+ get description() {
24
+ return 'Retrieve the specified Microsoft Bookings business.';
25
+ }
26
+ defaultProperties() {
27
+ return ['id', 'displayName', 'businessType', 'phone', 'email', 'defaultCurrencyIso'];
28
+ }
29
+ commandAction(logger, args, cb) {
30
+ this
31
+ .getBusinessId(args.options)
32
+ .then(businessId => {
33
+ const requestOptions = {
34
+ url: `${this.resource}/v1.0/solutions/bookingBusinesses/${encodeURIComponent(businessId)}`,
35
+ headers: {
36
+ accept: 'application/json;odata.metadata=none'
37
+ },
38
+ responseType: 'json'
39
+ };
40
+ return request_1.default.get(requestOptions);
41
+ })
42
+ .then(business => {
43
+ logger.log(business);
44
+ cb();
45
+ }, (err) => this.handleRejectedODataJsonPromise(err, logger, cb));
46
+ }
47
+ getBusinessId(options) {
48
+ if (options.id) {
49
+ return Promise.resolve(options.id);
50
+ }
51
+ const requestOptions = {
52
+ url: `${this.resource}/v1.0/solutions/bookingBusinesses`,
53
+ headers: {
54
+ accept: 'application/json;odata.metadata=none'
55
+ },
56
+ responseType: 'json'
57
+ };
58
+ return request_1.default
59
+ .get(requestOptions)
60
+ .then((response) => {
61
+ const name = options.name;
62
+ const bookingBusinesses = response.value.filter(val => { var _a; return ((_a = val.displayName) === null || _a === void 0 ? void 0 : _a.toLocaleLowerCase()) === name.toLocaleLowerCase(); });
63
+ if (!bookingBusinesses.length) {
64
+ return Promise.reject(`The specified business with name ${options.name} does not exist.`);
65
+ }
66
+ if (bookingBusinesses.length > 1) {
67
+ return Promise.reject(`Multiple businesses with name ${options.name} found. Please disambiguate: ${bookingBusinesses.map(x => x.id).join(', ')}`);
68
+ }
69
+ return bookingBusinesses[0].id;
70
+ });
71
+ }
72
+ }
73
+ _BookingBusinessGetCommand_instances = new WeakSet(), _BookingBusinessGetCommand_initTelemetry = function _BookingBusinessGetCommand_initTelemetry() {
74
+ this.telemetry.push((args) => {
75
+ Object.assign(this.telemetryProperties, {
76
+ id: typeof args.options.id !== 'undefined',
77
+ name: typeof args.options.name !== 'undefined'
78
+ });
79
+ });
80
+ }, _BookingBusinessGetCommand_initOptions = function _BookingBusinessGetCommand_initOptions() {
81
+ this.options.unshift({ option: '-i, --id [id]' }, { option: '-n, --name [name]' });
82
+ }, _BookingBusinessGetCommand_initOptionSets = function _BookingBusinessGetCommand_initOptionSets() {
83
+ this.optionSets.push(['id', 'name']);
84
+ };
85
+ module.exports = new BookingBusinessGetCommand();
86
+ //# sourceMappingURL=business-get.js.map
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const utils_1 = require("../../../../utils");
4
+ const GraphCommand_1 = require("../../../base/GraphCommand");
5
+ const commands_1 = require("../../commands");
6
+ class BookingBusinessListCommand extends GraphCommand_1.default {
7
+ get name() {
8
+ return commands_1.default.BUSINESS_LIST;
9
+ }
10
+ get description() {
11
+ return 'Lists all Microsoft Bookings businesses that are created for the tenant.';
12
+ }
13
+ defaultProperties() {
14
+ return ['id', 'displayName'];
15
+ }
16
+ commandAction(logger, args, cb) {
17
+ const endpoint = `${this.resource}/v1.0/solutions/bookingBusinesses`;
18
+ utils_1.odata
19
+ .getAllItems(endpoint)
20
+ .then((items) => {
21
+ return Promise.resolve(items);
22
+ })
23
+ .then((items) => {
24
+ logger.log(items);
25
+ cb();
26
+ }, (err) => this.handleRejectedODataJsonPromise(err, logger, cb));
27
+ }
28
+ }
29
+ module.exports = new BookingBusinessListCommand();
30
+ //# sourceMappingURL=business-list.js.map
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const prefix = 'booking';
4
+ exports.default = {
5
+ BUSINESS_GET: `${prefix} business get`,
6
+ BUSINESS_LIST: `${prefix} business list`
7
+ };
8
+ //# sourceMappingURL=commands.js.map
@@ -0,0 +1,101 @@
1
+ "use strict";
2
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
3
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
4
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
5
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
6
+ };
7
+ var _SearchExternalConnectionRemoveCommand_instances, _SearchExternalConnectionRemoveCommand_initTelemetry, _SearchExternalConnectionRemoveCommand_initOptions, _SearchExternalConnectionRemoveCommand_initOptionSets;
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ const cli_1 = require("../../../../cli");
10
+ const request_1 = require("../../../../request");
11
+ const GraphCommand_1 = require("../../../base/GraphCommand");
12
+ const commands_1 = require("../../commands");
13
+ class SearchExternalConnectionRemoveCommand extends GraphCommand_1.default {
14
+ constructor() {
15
+ super();
16
+ _SearchExternalConnectionRemoveCommand_instances.add(this);
17
+ __classPrivateFieldGet(this, _SearchExternalConnectionRemoveCommand_instances, "m", _SearchExternalConnectionRemoveCommand_initTelemetry).call(this);
18
+ __classPrivateFieldGet(this, _SearchExternalConnectionRemoveCommand_instances, "m", _SearchExternalConnectionRemoveCommand_initOptions).call(this);
19
+ __classPrivateFieldGet(this, _SearchExternalConnectionRemoveCommand_instances, "m", _SearchExternalConnectionRemoveCommand_initOptionSets).call(this);
20
+ }
21
+ get name() {
22
+ return commands_1.default.EXTERNALCONNECTION_REMOVE;
23
+ }
24
+ get description() {
25
+ return 'Removes a specific External Connection from Microsoft Search';
26
+ }
27
+ getExternalConnectionId(args) {
28
+ if (args.options.id) {
29
+ return Promise.resolve(args.options.id);
30
+ }
31
+ const requestOptions = {
32
+ url: `${this.resource}/v1.0/external/connections?$filter=name eq '${encodeURIComponent(args.options.name)}'&$select=id`,
33
+ headers: {
34
+ accept: 'application/json;odata.metadata=none'
35
+ },
36
+ responseType: 'json'
37
+ };
38
+ return request_1.default
39
+ .get(requestOptions)
40
+ .then((res) => {
41
+ if (res.value.length === 1) {
42
+ return Promise.resolve(res.value[0].id);
43
+ }
44
+ if (res.value.length === 0) {
45
+ return Promise.reject(`The specified connection does not exist in Microsoft Search`);
46
+ }
47
+ return Promise.reject(`Multiple external connections with name ${args.options.name} found. Please disambiguate (IDs): ${res.value.map(x => x.id).join(', ')}`);
48
+ });
49
+ }
50
+ commandAction(logger, args, cb) {
51
+ const removeExternalConnection = () => {
52
+ this
53
+ .getExternalConnectionId(args)
54
+ .then((externalConnectionId) => {
55
+ const requestOptions = {
56
+ url: `${this.resource}/v1.0/external/connections/${encodeURIComponent(externalConnectionId)}`,
57
+ headers: {
58
+ accept: 'application/json;odata.metadata=none'
59
+ },
60
+ responseType: 'json'
61
+ };
62
+ return request_1.default
63
+ .delete(requestOptions);
64
+ })
65
+ .then(_ => cb(), (rawRes) => this.handleRejectedODataJsonPromise(rawRes, logger, cb));
66
+ };
67
+ if (args.options.confirm) {
68
+ removeExternalConnection();
69
+ }
70
+ else {
71
+ cli_1.Cli.prompt({
72
+ type: 'confirm',
73
+ name: 'continue',
74
+ default: false,
75
+ message: `Are you sure you want to remove the external connection '${args.options.id || args.options.name}'?`
76
+ }, (result) => {
77
+ if (!result.continue) {
78
+ cb();
79
+ }
80
+ else {
81
+ removeExternalConnection();
82
+ }
83
+ });
84
+ }
85
+ }
86
+ }
87
+ _SearchExternalConnectionRemoveCommand_instances = new WeakSet(), _SearchExternalConnectionRemoveCommand_initTelemetry = function _SearchExternalConnectionRemoveCommand_initTelemetry() {
88
+ this.telemetry.push((args) => {
89
+ Object.assign(this.telemetryProperties, {
90
+ id: typeof args.options.id !== 'undefined',
91
+ name: typeof args.options.name !== 'undefined',
92
+ confirm: (!(!args.options.confirm)).toString()
93
+ });
94
+ });
95
+ }, _SearchExternalConnectionRemoveCommand_initOptions = function _SearchExternalConnectionRemoveCommand_initOptions() {
96
+ this.options.unshift({ option: '--id [id]' }, { option: '--name [name]' }, { option: '--confirm' });
97
+ }, _SearchExternalConnectionRemoveCommand_initOptionSets = function _SearchExternalConnectionRemoveCommand_initOptionSets() {
98
+ this.optionSets.push(['id', 'name']);
99
+ };
100
+ module.exports = new SearchExternalConnectionRemoveCommand();
101
+ //# sourceMappingURL=externalconnection-remove.js.map
@@ -4,6 +4,7 @@ const prefix = 'search';
4
4
  exports.default = {
5
5
  EXTERNALCONNECTION_ADD: `${prefix} externalconnection add`,
6
6
  EXTERNALCONNECTION_GET: `${prefix} externalconnection get`,
7
- EXTERNALCONNECTION_LIST: `${prefix} externalconnection list`
7
+ EXTERNALCONNECTION_LIST: `${prefix} externalconnection list`,
8
+ EXTERNALCONNECTION_REMOVE: `${prefix} externalconnection remove`
8
9
  };
9
10
  //# sourceMappingURL=commands.js.map
@@ -176,5 +176,5 @@ m365 aad app add --name 'My AAD app' --save
176
176
  Create new Azure AD app registration with a certificate
177
177
 
178
178
  ```sh
179
- m365 aad app add --name 'My AAD app' --certificateDisplayName "Some certificate name" --certificateFile c:\temp\some-certificate.cer
179
+ m365 aad app add --name 'My AAD app' --certificateDisplayName "Some certificate name" --certificateFile "c:\temp\some-certificate.cer"
180
180
  ```
@@ -85,5 +85,5 @@ m365 aad app set --objectId 95cfe30d-ed44-4f9d-b73d-c66560f72e83 --redirectUris
85
85
  Add a certificate to the app
86
86
 
87
87
  ```sh
88
- m365 aad app set --certificateDisplayName "Some certificate name" --certificateFile c:\temp\some-certificate.cer
88
+ m365 aad app set --appId e75be2e1-0204-4f95-857d-51a37cf40be8 --certificateDisplayName "Some certificate name" --certificateFile "c:\temp\some-certificate.cer"
89
89
  ```
@@ -0,0 +1,33 @@
1
+ # booking business get
2
+
3
+ Retrieve the specified Microsoft Bookings business.
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 booking business get [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-i, --id [id]`
14
+ : ID of the business. Specify either `id` or `name` but not both.
15
+
16
+ `-n, --name [name]`
17
+ : Name of the business. Specify either `id` or `name` but not both.
18
+
19
+ --8<-- "docs/cmd/_global.md"
20
+
21
+ ## Examples
22
+
23
+ Retrieve the specified Microsoft Bookings business with id _business@contoso.onmicrosoft.com_.
24
+
25
+ ```sh
26
+ m365 booking business get --id 'business@contoso.onmicrosoft.com'
27
+ ```
28
+
29
+ Retrieve the specified Microsoft Bookings business with name _business name_.
30
+
31
+ ```sh
32
+ m365 booking business get --name 'business name'
33
+ ```
@@ -0,0 +1,21 @@
1
+ # booking business list
2
+
3
+ Lists all Microsoft Bookings businesses that are created for the tenant.
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 booking business list [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ --8<-- "docs/cmd/_global.md"
14
+
15
+ ## Examples
16
+
17
+ Returns a list of all Microsoft Bookings businesses that are created for the tenant.
18
+
19
+ ```sh
20
+ m365 booking business list
21
+ ```
@@ -29,4 +29,4 @@ cli completion clink update > m365.lua
29
29
 
30
30
  ## More information
31
31
 
32
- - Command completion: [https://pnp.github.io/cli-microsoft365/concepts/completion/](https://pnp.github.io/cli-microsoft365/concepts/completion/)
32
+ - Command completion: [https://pnp.github.io/cli-microsoft365/user-guide/completion/](https://pnp.github.io/cli-microsoft365/user-guide/completion/)
@@ -31,4 +31,4 @@ cli completion pwsh setup --profile $profile
31
31
 
32
32
  ## More information
33
33
 
34
- - Command completion: [https://pnp.github.io/cli-microsoft365/concepts/completion/](https://pnp.github.io/cli-microsoft365/concepts/completion/)
34
+ - Command completion: [https://pnp.github.io/cli-microsoft365/user-guide/completion/](https://pnp.github.io/cli-microsoft365/user-guide/completion/)
@@ -26,4 +26,4 @@ cli completion pwsh update
26
26
 
27
27
  ## More information
28
28
 
29
- - Command completion: [https://pnp.github.io/cli-microsoft365/concepts/completion/](https://pnp.github.io/cli-microsoft365/concepts/completion/)
29
+ - Command completion: [https://pnp.github.io/cli-microsoft365/user-guide/completion/](https://pnp.github.io/cli-microsoft365/user-guide/completion/)
@@ -22,4 +22,4 @@ cli completion sh setup
22
22
 
23
23
  ## More information
24
24
 
25
- - Command completion: [https://pnp.github.io/cli-microsoft365/concepts/completion/](https://pnp.github.io/cli-microsoft365/concepts/completion/)
25
+ - Command completion: [https://pnp.github.io/cli-microsoft365/user-guide/completion/](https://pnp.github.io/cli-microsoft365/user-guide/completion/)
@@ -26,4 +26,4 @@ m365 cli completion sh update
26
26
 
27
27
  ## More information
28
28
 
29
- - Command completion: [https://pnp.github.io/cli-microsoft365/concepts/completion/](https://pnp.github.io/cli-microsoft365/concepts/completion/)
29
+ - Command completion: [https://pnp.github.io/cli-microsoft365/user-guide/completion/](https://pnp.github.io/cli-microsoft365/user-guide/completion/)
@@ -0,0 +1,40 @@
1
+ # search externalconnection remove
2
+
3
+ Allow the administrator to remove a specific external connection used in Microsoft Search.
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 search externalconnection remove [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-i, --id [id]`
14
+ : ID of the External Connection to remove. Specify either `id` or `name`
15
+
16
+ `-n, --name [name]`
17
+ : Name of the External Connection to remove. Specify either `id` or `name`
18
+
19
+ `--confirm`
20
+ : Don't prompt for confirming removing the connection
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Remarks
25
+
26
+ If the command finds multiple external connections used in Microsoft Search with the specified name, it will prompt you to disambiguate which external connection it should remove, listing the discovered IDs.
27
+
28
+ ## Examples
29
+
30
+ Removes external connection with id _MyApp_
31
+
32
+ ```sh
33
+ m365 search externalconnection remove --id "MyApp"
34
+ ```
35
+
36
+ Removes external connection with name _Test_. Will NOT prompt for confirmation before removing.
37
+
38
+ ```sh
39
+ m365 search externalconnection remove --name "Test" --confirm
40
+ ```
@@ -9,13 +9,13 @@
9
9
  "version": "5.7.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "@azure/msal-node": "^1.11.0",
12
+ "@azure/msal-node": "^1.12.1",
13
13
  "@xmldom/xmldom": "^0.8.2",
14
14
  "adaptive-expressions": "^4.16.0",
15
15
  "adaptivecards": "^2.10.0",
16
16
  "adaptivecards-templating": "^2.2.0",
17
17
  "adm-zip": "^0.5.9",
18
- "applicationinsights": "^2.3.3",
18
+ "applicationinsights": "^2.3.4",
19
19
  "axios": "^0.27.2",
20
20
  "chalk": "^4.1.2",
21
21
  "clipboardy": "^2.3.0",
@@ -47,16 +47,16 @@
47
47
  "@types/json-to-ast": "^2.1.2",
48
48
  "@types/minimist": "^1.2.2",
49
49
  "@types/mocha": "^9.1.1",
50
- "@types/node": "^16.11.43",
51
- "@types/node-forge": "^1.0.3",
50
+ "@types/node": "^16.11.47",
51
+ "@types/node-forge": "^1.0.4",
52
52
  "@types/semver": "^7.3.10",
53
- "@types/sinon": "^10.0.12",
53
+ "@types/sinon": "^10.0.13",
54
54
  "@types/update-notifier": "^5.1.0",
55
55
  "@types/uuid": "^8.3.4",
56
- "@typescript-eslint/eslint-plugin": "^5.30.5",
57
- "@typescript-eslint/parser": "^5.30.5",
58
- "c8": "^7.11.3",
59
- "eslint": "^8.19.0",
56
+ "@typescript-eslint/eslint-plugin": "^5.32.0",
57
+ "@typescript-eslint/parser": "^5.32.0",
58
+ "c8": "^7.12.0",
59
+ "eslint": "^8.21.0",
60
60
  "eslint-config-standard": "^17.0.0",
61
61
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
62
62
  "eslint-plugin-import": "^2.26.0",
@@ -153,19 +153,19 @@
153
153
  }
154
154
  },
155
155
  "node_modules/@azure/msal-common": {
156
- "version": "7.1.0",
157
- "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.1.0.tgz",
158
- "integrity": "sha512-WyfqE5mY/rggjqvq0Q5DxLnA33KSb0vfsUjxa95rycFknI03L5GPYI4HTU9D+g0PL5TtsQGnV3xzAGq9BFCVJQ==",
156
+ "version": "7.3.0",
157
+ "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.3.0.tgz",
158
+ "integrity": "sha512-revxB3z+QLjwAtU1d04nC1voFr+i3LfqTpUfgrWZVqKh/sSgg0mZZUvw4vKVWB57qtL95sul06G+TfdFZny1Xw==",
159
159
  "engines": {
160
160
  "node": ">=0.8.0"
161
161
  }
162
162
  },
163
163
  "node_modules/@azure/msal-node": {
164
- "version": "1.11.0",
165
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.11.0.tgz",
166
- "integrity": "sha512-KW/XEexfCrPzdYbjY7NVmhq9okZT3Jvck55CGXpz9W5asxeq3EtrP45p+ZXtQVEfko0YJdolpCNqWUyXvanWZg==",
164
+ "version": "1.12.1",
165
+ "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.12.1.tgz",
166
+ "integrity": "sha512-m909lX9C8Ty01DBxbjr4KfAKWibohgRvY7hrdDo13U1ztlH+0Nbt7cPF1vrWonW/CRT4H4xtUa4LCNmivghggw==",
167
167
  "dependencies": {
168
- "@azure/msal-common": "^7.1.0",
168
+ "@azure/msal-common": "^7.3.0",
169
169
  "jsonwebtoken": "^8.5.1",
170
170
  "uuid": "^8.3.0"
171
171
  },
@@ -218,9 +218,9 @@
218
218
  }
219
219
  },
220
220
  "node_modules/@humanwhocodes/config-array": {
221
- "version": "0.9.5",
222
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz",
223
- "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==",
221
+ "version": "0.10.4",
222
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz",
223
+ "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==",
224
224
  "dev": true,
225
225
  "dependencies": {
226
226
  "@humanwhocodes/object-schema": "^1.2.1",
@@ -231,6 +231,16 @@
231
231
  "node": ">=10.10.0"
232
232
  }
233
233
  },
234
+ "node_modules/@humanwhocodes/gitignore-to-minimatch": {
235
+ "version": "1.0.2",
236
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz",
237
+ "integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==",
238
+ "dev": true,
239
+ "funding": {
240
+ "type": "github",
241
+ "url": "https://github.com/sponsors/nzakas"
242
+ }
243
+ },
234
244
  "node_modules/@humanwhocodes/object-schema": {
235
245
  "version": "1.2.1",
236
246
  "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
@@ -271,6 +281,11 @@
271
281
  "@jridgewell/sourcemap-codec": "^1.4.10"
272
282
  }
273
283
  },
284
+ "node_modules/@microsoft/applicationinsights-web-snippet": {
285
+ "version": "1.0.1",
286
+ "resolved": "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz",
287
+ "integrity": "sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ=="
288
+ },
274
289
  "node_modules/@microsoft/microsoft-graph-types": {
275
290
  "version": "2.22.0",
276
291
  "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.22.0.tgz",
@@ -531,9 +546,9 @@
531
546
  "dev": true
532
547
  },
533
548
  "node_modules/@types/node": {
534
- "version": "16.11.43",
535
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.43.tgz",
536
- "integrity": "sha512-GqWykok+3uocgfAJM8imbozrqLnPyTrpFlrryURQlw1EesPUCx5XxTiucWDSFF9/NUEXDuD4bnvHm8xfVGWTpQ=="
549
+ "version": "16.11.47",
550
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.47.tgz",
551
+ "integrity": "sha512-fpP+jk2zJ4VW66+wAMFoBJlx1bxmBKx4DUFf68UHgdGCOuyUTDlLWqsaNPJh7xhNDykyJ9eIzAygilP/4WoN8g=="
537
552
  },
538
553
  "node_modules/@types/node-fetch": {
539
554
  "version": "2.6.1",
@@ -558,9 +573,9 @@
558
573
  }
559
574
  },
560
575
  "node_modules/@types/node-forge": {
561
- "version": "1.0.3",
562
- "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.3.tgz",
563
- "integrity": "sha512-o7k1vR+qULsZlzjt4V+Rlz27MOcaitpRrK5MjXwHx1d3TkZVY2cljJBtEsFe9L8AFuT7ZUgkKaQRp/JNt2gKBA==",
576
+ "version": "1.0.4",
577
+ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.4.tgz",
578
+ "integrity": "sha512-UpX8LTRrarEZPQvQqF5/6KQAqZolOVckH7txWdlsWIJrhBFFtwEUTcqeDouhrJl6t0F7Wg5cyUOAqqF8a6hheg==",
564
579
  "dev": true,
565
580
  "dependencies": {
566
581
  "@types/node": "*"
@@ -573,9 +588,9 @@
573
588
  "dev": true
574
589
  },
575
590
  "node_modules/@types/sinon": {
576
- "version": "10.0.12",
577
- "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.12.tgz",
578
- "integrity": "sha512-uWf4QJ4oky/GckJ1MYQxU52cgVDcXwBhDkpvLbi4EKoLPqLE4MOH6T/ttM33l3hi0oZ882G6oIzWv/oupRYSxQ==",
591
+ "version": "10.0.13",
592
+ "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.13.tgz",
593
+ "integrity": "sha512-UVjDqJblVNQYvVNUsj0PuYYw0ELRmgt1Nt5Vk0pT5f16ROGfcKJY8o1HVuMOJOpD727RrGB9EGvoaTQE5tgxZQ==",
579
594
  "dev": true,
580
595
  "dependencies": {
581
596
  "@types/sinonjs__fake-timers": "*"
@@ -626,14 +641,14 @@
626
641
  "integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
627
642
  },
628
643
  "node_modules/@typescript-eslint/eslint-plugin": {
629
- "version": "5.30.5",
630
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz",
631
- "integrity": "sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==",
644
+ "version": "5.32.0",
645
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.32.0.tgz",
646
+ "integrity": "sha512-CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew==",
632
647
  "dev": true,
633
648
  "dependencies": {
634
- "@typescript-eslint/scope-manager": "5.30.5",
635
- "@typescript-eslint/type-utils": "5.30.5",
636
- "@typescript-eslint/utils": "5.30.5",
649
+ "@typescript-eslint/scope-manager": "5.32.0",
650
+ "@typescript-eslint/type-utils": "5.32.0",
651
+ "@typescript-eslint/utils": "5.32.0",
637
652
  "debug": "^4.3.4",
638
653
  "functional-red-black-tree": "^1.0.1",
639
654
  "ignore": "^5.2.0",
@@ -659,14 +674,14 @@
659
674
  }
660
675
  },
661
676
  "node_modules/@typescript-eslint/parser": {
662
- "version": "5.30.5",
663
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.5.tgz",
664
- "integrity": "sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==",
677
+ "version": "5.32.0",
678
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.32.0.tgz",
679
+ "integrity": "sha512-IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A==",
665
680
  "dev": true,
666
681
  "dependencies": {
667
- "@typescript-eslint/scope-manager": "5.30.5",
668
- "@typescript-eslint/types": "5.30.5",
669
- "@typescript-eslint/typescript-estree": "5.30.5",
682
+ "@typescript-eslint/scope-manager": "5.32.0",
683
+ "@typescript-eslint/types": "5.32.0",
684
+ "@typescript-eslint/typescript-estree": "5.32.0",
670
685
  "debug": "^4.3.4"
671
686
  },
672
687
  "engines": {
@@ -686,13 +701,13 @@
686
701
  }
687
702
  },
688
703
  "node_modules/@typescript-eslint/scope-manager": {
689
- "version": "5.30.5",
690
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz",
691
- "integrity": "sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==",
704
+ "version": "5.32.0",
705
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.32.0.tgz",
706
+ "integrity": "sha512-KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjOg==",
692
707
  "dev": true,
693
708
  "dependencies": {
694
- "@typescript-eslint/types": "5.30.5",
695
- "@typescript-eslint/visitor-keys": "5.30.5"
709
+ "@typescript-eslint/types": "5.32.0",
710
+ "@typescript-eslint/visitor-keys": "5.32.0"
696
711
  },
697
712
  "engines": {
698
713
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -703,12 +718,12 @@
703
718
  }
704
719
  },
705
720
  "node_modules/@typescript-eslint/type-utils": {
706
- "version": "5.30.5",
707
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz",
708
- "integrity": "sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==",
721
+ "version": "5.32.0",
722
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.32.0.tgz",
723
+ "integrity": "sha512-0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg==",
709
724
  "dev": true,
710
725
  "dependencies": {
711
- "@typescript-eslint/utils": "5.30.5",
726
+ "@typescript-eslint/utils": "5.32.0",
712
727
  "debug": "^4.3.4",
713
728
  "tsutils": "^3.21.0"
714
729
  },
@@ -729,9 +744,9 @@
729
744
  }
730
745
  },
731
746
  "node_modules/@typescript-eslint/types": {
732
- "version": "5.30.5",
733
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.5.tgz",
734
- "integrity": "sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==",
747
+ "version": "5.32.0",
748
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.32.0.tgz",
749
+ "integrity": "sha512-EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ==",
735
750
  "dev": true,
736
751
  "engines": {
737
752
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -742,13 +757,13 @@
742
757
  }
743
758
  },
744
759
  "node_modules/@typescript-eslint/typescript-estree": {
745
- "version": "5.30.5",
746
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz",
747
- "integrity": "sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==",
760
+ "version": "5.32.0",
761
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.32.0.tgz",
762
+ "integrity": "sha512-ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg==",
748
763
  "dev": true,
749
764
  "dependencies": {
750
- "@typescript-eslint/types": "5.30.5",
751
- "@typescript-eslint/visitor-keys": "5.30.5",
765
+ "@typescript-eslint/types": "5.32.0",
766
+ "@typescript-eslint/visitor-keys": "5.32.0",
752
767
  "debug": "^4.3.4",
753
768
  "globby": "^11.1.0",
754
769
  "is-glob": "^4.0.3",
@@ -769,15 +784,15 @@
769
784
  }
770
785
  },
771
786
  "node_modules/@typescript-eslint/utils": {
772
- "version": "5.30.5",
773
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz",
774
- "integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==",
787
+ "version": "5.32.0",
788
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.32.0.tgz",
789
+ "integrity": "sha512-W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ==",
775
790
  "dev": true,
776
791
  "dependencies": {
777
792
  "@types/json-schema": "^7.0.9",
778
- "@typescript-eslint/scope-manager": "5.30.5",
779
- "@typescript-eslint/types": "5.30.5",
780
- "@typescript-eslint/typescript-estree": "5.30.5",
793
+ "@typescript-eslint/scope-manager": "5.32.0",
794
+ "@typescript-eslint/types": "5.32.0",
795
+ "@typescript-eslint/typescript-estree": "5.32.0",
781
796
  "eslint-scope": "^5.1.1",
782
797
  "eslint-utils": "^3.0.0"
783
798
  },
@@ -793,12 +808,12 @@
793
808
  }
794
809
  },
795
810
  "node_modules/@typescript-eslint/visitor-keys": {
796
- "version": "5.30.5",
797
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz",
798
- "integrity": "sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==",
811
+ "version": "5.32.0",
812
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.32.0.tgz",
813
+ "integrity": "sha512-S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g==",
799
814
  "dev": true,
800
815
  "dependencies": {
801
- "@typescript-eslint/types": "5.30.5",
816
+ "@typescript-eslint/types": "5.32.0",
802
817
  "eslint-visitor-keys": "^3.3.0"
803
818
  },
804
819
  "engines": {
@@ -824,9 +839,9 @@
824
839
  }
825
840
  },
826
841
  "node_modules/acorn": {
827
- "version": "8.7.1",
828
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz",
829
- "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==",
842
+ "version": "8.8.0",
843
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz",
844
+ "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==",
830
845
  "dev": true,
831
846
  "bin": {
832
847
  "acorn": "bin/acorn"
@@ -998,11 +1013,12 @@
998
1013
  }
999
1014
  },
1000
1015
  "node_modules/applicationinsights": {
1001
- "version": "2.3.3",
1002
- "resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.3.3.tgz",
1003
- "integrity": "sha512-Q4o6gexNhzukgmzzWYzXLa2gdJ6DhM+c35tw0lRNNjc/qldWxGHVxV65DMRYrQIp4vetLdCK7Pyd/dmEsGO4qA==",
1016
+ "version": "2.3.4",
1017
+ "resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.3.4.tgz",
1018
+ "integrity": "sha512-B/u2MepyV8r70NtG9nQ+7/MFog0j0P0tdEAz9coZGwNcW/T816ewROrre5QWBNyjYnsUB3dUF5OscGd0F0l2fA==",
1004
1019
  "dependencies": {
1005
1020
  "@azure/core-http": "^2.2.3",
1021
+ "@microsoft/applicationinsights-web-snippet": "^1.0.1",
1006
1022
  "@opentelemetry/api": "^1.0.4",
1007
1023
  "@opentelemetry/core": "^1.0.1",
1008
1024
  "@opentelemetry/sdk-trace-base": "^1.0.1",
@@ -1304,9 +1320,9 @@
1304
1320
  }
1305
1321
  },
1306
1322
  "node_modules/c8": {
1307
- "version": "7.11.3",
1308
- "resolved": "https://registry.npmjs.org/c8/-/c8-7.11.3.tgz",
1309
- "integrity": "sha512-6YBmsaNmqRm9OS3ZbIiL2EZgi1+Xc4O24jL3vMYGE6idixYuGdy76rIfIdltSKDj9DpLNrcXSonUTR1miBD0wA==",
1323
+ "version": "7.12.0",
1324
+ "resolved": "https://registry.npmjs.org/c8/-/c8-7.12.0.tgz",
1325
+ "integrity": "sha512-CtgQrHOkyxr5koX1wEUmN/5cfDa2ckbHRA4Gy5LAL0zaCFtVWJS5++n+w4/sr2GWGerBxgTjpKeDclk/Qk6W/A==",
1310
1326
  "dev": true,
1311
1327
  "dependencies": {
1312
1328
  "@bcoe/v8-coverage": "^0.2.3",
@@ -1985,13 +2001,14 @@
1985
2001
  }
1986
2002
  },
1987
2003
  "node_modules/eslint": {
1988
- "version": "8.19.0",
1989
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
1990
- "integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
2004
+ "version": "8.21.0",
2005
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.21.0.tgz",
2006
+ "integrity": "sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==",
1991
2007
  "dev": true,
1992
2008
  "dependencies": {
1993
2009
  "@eslint/eslintrc": "^1.3.0",
1994
- "@humanwhocodes/config-array": "^0.9.2",
2010
+ "@humanwhocodes/config-array": "^0.10.4",
2011
+ "@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
1995
2012
  "ajv": "^6.10.0",
1996
2013
  "chalk": "^4.0.0",
1997
2014
  "cross-spawn": "^7.0.2",
@@ -2001,14 +2018,17 @@
2001
2018
  "eslint-scope": "^7.1.1",
2002
2019
  "eslint-utils": "^3.0.0",
2003
2020
  "eslint-visitor-keys": "^3.3.0",
2004
- "espree": "^9.3.2",
2021
+ "espree": "^9.3.3",
2005
2022
  "esquery": "^1.4.0",
2006
2023
  "esutils": "^2.0.2",
2007
2024
  "fast-deep-equal": "^3.1.3",
2008
2025
  "file-entry-cache": "^6.0.1",
2026
+ "find-up": "^5.0.0",
2009
2027
  "functional-red-black-tree": "^1.0.1",
2010
2028
  "glob-parent": "^6.0.1",
2011
2029
  "globals": "^13.15.0",
2030
+ "globby": "^11.1.0",
2031
+ "grapheme-splitter": "^1.0.4",
2012
2032
  "ignore": "^5.2.0",
2013
2033
  "import-fresh": "^3.0.0",
2014
2034
  "imurmurhash": "^0.1.4",
@@ -2475,17 +2495,20 @@
2475
2495
  }
2476
2496
  },
2477
2497
  "node_modules/espree": {
2478
- "version": "9.3.2",
2479
- "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz",
2480
- "integrity": "sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==",
2498
+ "version": "9.3.3",
2499
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.3.tgz",
2500
+ "integrity": "sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==",
2481
2501
  "dev": true,
2482
2502
  "dependencies": {
2483
- "acorn": "^8.7.1",
2503
+ "acorn": "^8.8.0",
2484
2504
  "acorn-jsx": "^5.3.2",
2485
2505
  "eslint-visitor-keys": "^3.3.0"
2486
2506
  },
2487
2507
  "engines": {
2488
2508
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2509
+ },
2510
+ "funding": {
2511
+ "url": "https://opencollective.com/eslint"
2489
2512
  }
2490
2513
  },
2491
2514
  "node_modules/esquery": {
@@ -5742,16 +5765,16 @@
5742
5765
  }
5743
5766
  },
5744
5767
  "@azure/msal-common": {
5745
- "version": "7.1.0",
5746
- "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.1.0.tgz",
5747
- "integrity": "sha512-WyfqE5mY/rggjqvq0Q5DxLnA33KSb0vfsUjxa95rycFknI03L5GPYI4HTU9D+g0PL5TtsQGnV3xzAGq9BFCVJQ=="
5768
+ "version": "7.3.0",
5769
+ "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.3.0.tgz",
5770
+ "integrity": "sha512-revxB3z+QLjwAtU1d04nC1voFr+i3LfqTpUfgrWZVqKh/sSgg0mZZUvw4vKVWB57qtL95sul06G+TfdFZny1Xw=="
5748
5771
  },
5749
5772
  "@azure/msal-node": {
5750
- "version": "1.11.0",
5751
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.11.0.tgz",
5752
- "integrity": "sha512-KW/XEexfCrPzdYbjY7NVmhq9okZT3Jvck55CGXpz9W5asxeq3EtrP45p+ZXtQVEfko0YJdolpCNqWUyXvanWZg==",
5773
+ "version": "1.12.1",
5774
+ "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.12.1.tgz",
5775
+ "integrity": "sha512-m909lX9C8Ty01DBxbjr4KfAKWibohgRvY7hrdDo13U1ztlH+0Nbt7cPF1vrWonW/CRT4H4xtUa4LCNmivghggw==",
5753
5776
  "requires": {
5754
- "@azure/msal-common": "^7.1.0",
5777
+ "@azure/msal-common": "^7.3.0",
5755
5778
  "jsonwebtoken": "^8.5.1",
5756
5779
  "uuid": "^8.3.0"
5757
5780
  }
@@ -5797,9 +5820,9 @@
5797
5820
  }
5798
5821
  },
5799
5822
  "@humanwhocodes/config-array": {
5800
- "version": "0.9.5",
5801
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz",
5802
- "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==",
5823
+ "version": "0.10.4",
5824
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz",
5825
+ "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==",
5803
5826
  "dev": true,
5804
5827
  "requires": {
5805
5828
  "@humanwhocodes/object-schema": "^1.2.1",
@@ -5807,6 +5830,12 @@
5807
5830
  "minimatch": "^3.0.4"
5808
5831
  }
5809
5832
  },
5833
+ "@humanwhocodes/gitignore-to-minimatch": {
5834
+ "version": "1.0.2",
5835
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz",
5836
+ "integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==",
5837
+ "dev": true
5838
+ },
5810
5839
  "@humanwhocodes/object-schema": {
5811
5840
  "version": "1.2.1",
5812
5841
  "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
@@ -5841,6 +5870,11 @@
5841
5870
  "@jridgewell/sourcemap-codec": "^1.4.10"
5842
5871
  }
5843
5872
  },
5873
+ "@microsoft/applicationinsights-web-snippet": {
5874
+ "version": "1.0.1",
5875
+ "resolved": "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz",
5876
+ "integrity": "sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ=="
5877
+ },
5844
5878
  "@microsoft/microsoft-graph-types": {
5845
5879
  "version": "2.22.0",
5846
5880
  "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.22.0.tgz",
@@ -6059,9 +6093,9 @@
6059
6093
  "dev": true
6060
6094
  },
6061
6095
  "@types/node": {
6062
- "version": "16.11.43",
6063
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.43.tgz",
6064
- "integrity": "sha512-GqWykok+3uocgfAJM8imbozrqLnPyTrpFlrryURQlw1EesPUCx5XxTiucWDSFF9/NUEXDuD4bnvHm8xfVGWTpQ=="
6096
+ "version": "16.11.47",
6097
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.47.tgz",
6098
+ "integrity": "sha512-fpP+jk2zJ4VW66+wAMFoBJlx1bxmBKx4DUFf68UHgdGCOuyUTDlLWqsaNPJh7xhNDykyJ9eIzAygilP/4WoN8g=="
6065
6099
  },
6066
6100
  "@types/node-fetch": {
6067
6101
  "version": "2.6.1",
@@ -6085,9 +6119,9 @@
6085
6119
  }
6086
6120
  },
6087
6121
  "@types/node-forge": {
6088
- "version": "1.0.3",
6089
- "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.3.tgz",
6090
- "integrity": "sha512-o7k1vR+qULsZlzjt4V+Rlz27MOcaitpRrK5MjXwHx1d3TkZVY2cljJBtEsFe9L8AFuT7ZUgkKaQRp/JNt2gKBA==",
6122
+ "version": "1.0.4",
6123
+ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.4.tgz",
6124
+ "integrity": "sha512-UpX8LTRrarEZPQvQqF5/6KQAqZolOVckH7txWdlsWIJrhBFFtwEUTcqeDouhrJl6t0F7Wg5cyUOAqqF8a6hheg==",
6091
6125
  "dev": true,
6092
6126
  "requires": {
6093
6127
  "@types/node": "*"
@@ -6100,9 +6134,9 @@
6100
6134
  "dev": true
6101
6135
  },
6102
6136
  "@types/sinon": {
6103
- "version": "10.0.12",
6104
- "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.12.tgz",
6105
- "integrity": "sha512-uWf4QJ4oky/GckJ1MYQxU52cgVDcXwBhDkpvLbi4EKoLPqLE4MOH6T/ttM33l3hi0oZ882G6oIzWv/oupRYSxQ==",
6137
+ "version": "10.0.13",
6138
+ "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.13.tgz",
6139
+ "integrity": "sha512-UVjDqJblVNQYvVNUsj0PuYYw0ELRmgt1Nt5Vk0pT5f16ROGfcKJY8o1HVuMOJOpD727RrGB9EGvoaTQE5tgxZQ==",
6106
6140
  "dev": true,
6107
6141
  "requires": {
6108
6142
  "@types/sinonjs__fake-timers": "*"
@@ -6153,14 +6187,14 @@
6153
6187
  "integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
6154
6188
  },
6155
6189
  "@typescript-eslint/eslint-plugin": {
6156
- "version": "5.30.5",
6157
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz",
6158
- "integrity": "sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==",
6190
+ "version": "5.32.0",
6191
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.32.0.tgz",
6192
+ "integrity": "sha512-CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew==",
6159
6193
  "dev": true,
6160
6194
  "requires": {
6161
- "@typescript-eslint/scope-manager": "5.30.5",
6162
- "@typescript-eslint/type-utils": "5.30.5",
6163
- "@typescript-eslint/utils": "5.30.5",
6195
+ "@typescript-eslint/scope-manager": "5.32.0",
6196
+ "@typescript-eslint/type-utils": "5.32.0",
6197
+ "@typescript-eslint/utils": "5.32.0",
6164
6198
  "debug": "^4.3.4",
6165
6199
  "functional-red-black-tree": "^1.0.1",
6166
6200
  "ignore": "^5.2.0",
@@ -6170,52 +6204,52 @@
6170
6204
  }
6171
6205
  },
6172
6206
  "@typescript-eslint/parser": {
6173
- "version": "5.30.5",
6174
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.5.tgz",
6175
- "integrity": "sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==",
6207
+ "version": "5.32.0",
6208
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.32.0.tgz",
6209
+ "integrity": "sha512-IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A==",
6176
6210
  "dev": true,
6177
6211
  "requires": {
6178
- "@typescript-eslint/scope-manager": "5.30.5",
6179
- "@typescript-eslint/types": "5.30.5",
6180
- "@typescript-eslint/typescript-estree": "5.30.5",
6212
+ "@typescript-eslint/scope-manager": "5.32.0",
6213
+ "@typescript-eslint/types": "5.32.0",
6214
+ "@typescript-eslint/typescript-estree": "5.32.0",
6181
6215
  "debug": "^4.3.4"
6182
6216
  }
6183
6217
  },
6184
6218
  "@typescript-eslint/scope-manager": {
6185
- "version": "5.30.5",
6186
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz",
6187
- "integrity": "sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==",
6219
+ "version": "5.32.0",
6220
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.32.0.tgz",
6221
+ "integrity": "sha512-KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjOg==",
6188
6222
  "dev": true,
6189
6223
  "requires": {
6190
- "@typescript-eslint/types": "5.30.5",
6191
- "@typescript-eslint/visitor-keys": "5.30.5"
6224
+ "@typescript-eslint/types": "5.32.0",
6225
+ "@typescript-eslint/visitor-keys": "5.32.0"
6192
6226
  }
6193
6227
  },
6194
6228
  "@typescript-eslint/type-utils": {
6195
- "version": "5.30.5",
6196
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz",
6197
- "integrity": "sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==",
6229
+ "version": "5.32.0",
6230
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.32.0.tgz",
6231
+ "integrity": "sha512-0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg==",
6198
6232
  "dev": true,
6199
6233
  "requires": {
6200
- "@typescript-eslint/utils": "5.30.5",
6234
+ "@typescript-eslint/utils": "5.32.0",
6201
6235
  "debug": "^4.3.4",
6202
6236
  "tsutils": "^3.21.0"
6203
6237
  }
6204
6238
  },
6205
6239
  "@typescript-eslint/types": {
6206
- "version": "5.30.5",
6207
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.5.tgz",
6208
- "integrity": "sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==",
6240
+ "version": "5.32.0",
6241
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.32.0.tgz",
6242
+ "integrity": "sha512-EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ==",
6209
6243
  "dev": true
6210
6244
  },
6211
6245
  "@typescript-eslint/typescript-estree": {
6212
- "version": "5.30.5",
6213
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz",
6214
- "integrity": "sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==",
6246
+ "version": "5.32.0",
6247
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.32.0.tgz",
6248
+ "integrity": "sha512-ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg==",
6215
6249
  "dev": true,
6216
6250
  "requires": {
6217
- "@typescript-eslint/types": "5.30.5",
6218
- "@typescript-eslint/visitor-keys": "5.30.5",
6251
+ "@typescript-eslint/types": "5.32.0",
6252
+ "@typescript-eslint/visitor-keys": "5.32.0",
6219
6253
  "debug": "^4.3.4",
6220
6254
  "globby": "^11.1.0",
6221
6255
  "is-glob": "^4.0.3",
@@ -6224,26 +6258,26 @@
6224
6258
  }
6225
6259
  },
6226
6260
  "@typescript-eslint/utils": {
6227
- "version": "5.30.5",
6228
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz",
6229
- "integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==",
6261
+ "version": "5.32.0",
6262
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.32.0.tgz",
6263
+ "integrity": "sha512-W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ==",
6230
6264
  "dev": true,
6231
6265
  "requires": {
6232
6266
  "@types/json-schema": "^7.0.9",
6233
- "@typescript-eslint/scope-manager": "5.30.5",
6234
- "@typescript-eslint/types": "5.30.5",
6235
- "@typescript-eslint/typescript-estree": "5.30.5",
6267
+ "@typescript-eslint/scope-manager": "5.32.0",
6268
+ "@typescript-eslint/types": "5.32.0",
6269
+ "@typescript-eslint/typescript-estree": "5.32.0",
6236
6270
  "eslint-scope": "^5.1.1",
6237
6271
  "eslint-utils": "^3.0.0"
6238
6272
  }
6239
6273
  },
6240
6274
  "@typescript-eslint/visitor-keys": {
6241
- "version": "5.30.5",
6242
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz",
6243
- "integrity": "sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==",
6275
+ "version": "5.32.0",
6276
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.32.0.tgz",
6277
+ "integrity": "sha512-S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g==",
6244
6278
  "dev": true,
6245
6279
  "requires": {
6246
- "@typescript-eslint/types": "5.30.5",
6280
+ "@typescript-eslint/types": "5.32.0",
6247
6281
  "eslint-visitor-keys": "^3.3.0"
6248
6282
  }
6249
6283
  },
@@ -6259,9 +6293,9 @@
6259
6293
  "integrity": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ=="
6260
6294
  },
6261
6295
  "acorn": {
6262
- "version": "8.7.1",
6263
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz",
6264
- "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==",
6296
+ "version": "8.8.0",
6297
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz",
6298
+ "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==",
6265
6299
  "dev": true
6266
6300
  },
6267
6301
  "acorn-jsx": {
@@ -6390,11 +6424,12 @@
6390
6424
  }
6391
6425
  },
6392
6426
  "applicationinsights": {
6393
- "version": "2.3.3",
6394
- "resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.3.3.tgz",
6395
- "integrity": "sha512-Q4o6gexNhzukgmzzWYzXLa2gdJ6DhM+c35tw0lRNNjc/qldWxGHVxV65DMRYrQIp4vetLdCK7Pyd/dmEsGO4qA==",
6427
+ "version": "2.3.4",
6428
+ "resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.3.4.tgz",
6429
+ "integrity": "sha512-B/u2MepyV8r70NtG9nQ+7/MFog0j0P0tdEAz9coZGwNcW/T816ewROrre5QWBNyjYnsUB3dUF5OscGd0F0l2fA==",
6396
6430
  "requires": {
6397
6431
  "@azure/core-http": "^2.2.3",
6432
+ "@microsoft/applicationinsights-web-snippet": "^1.0.1",
6398
6433
  "@opentelemetry/api": "^1.0.4",
6399
6434
  "@opentelemetry/core": "^1.0.1",
6400
6435
  "@opentelemetry/sdk-trace-base": "^1.0.1",
@@ -6605,9 +6640,9 @@
6605
6640
  }
6606
6641
  },
6607
6642
  "c8": {
6608
- "version": "7.11.3",
6609
- "resolved": "https://registry.npmjs.org/c8/-/c8-7.11.3.tgz",
6610
- "integrity": "sha512-6YBmsaNmqRm9OS3ZbIiL2EZgi1+Xc4O24jL3vMYGE6idixYuGdy76rIfIdltSKDj9DpLNrcXSonUTR1miBD0wA==",
6643
+ "version": "7.12.0",
6644
+ "resolved": "https://registry.npmjs.org/c8/-/c8-7.12.0.tgz",
6645
+ "integrity": "sha512-CtgQrHOkyxr5koX1wEUmN/5cfDa2ckbHRA4Gy5LAL0zaCFtVWJS5++n+w4/sr2GWGerBxgTjpKeDclk/Qk6W/A==",
6611
6646
  "dev": true,
6612
6647
  "requires": {
6613
6648
  "@bcoe/v8-coverage": "^0.2.3",
@@ -7126,13 +7161,14 @@
7126
7161
  "dev": true
7127
7162
  },
7128
7163
  "eslint": {
7129
- "version": "8.19.0",
7130
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
7131
- "integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
7164
+ "version": "8.21.0",
7165
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.21.0.tgz",
7166
+ "integrity": "sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==",
7132
7167
  "dev": true,
7133
7168
  "requires": {
7134
7169
  "@eslint/eslintrc": "^1.3.0",
7135
- "@humanwhocodes/config-array": "^0.9.2",
7170
+ "@humanwhocodes/config-array": "^0.10.4",
7171
+ "@humanwhocodes/gitignore-to-minimatch": "^1.0.2",
7136
7172
  "ajv": "^6.10.0",
7137
7173
  "chalk": "^4.0.0",
7138
7174
  "cross-spawn": "^7.0.2",
@@ -7142,14 +7178,17 @@
7142
7178
  "eslint-scope": "^7.1.1",
7143
7179
  "eslint-utils": "^3.0.0",
7144
7180
  "eslint-visitor-keys": "^3.3.0",
7145
- "espree": "^9.3.2",
7181
+ "espree": "^9.3.3",
7146
7182
  "esquery": "^1.4.0",
7147
7183
  "esutils": "^2.0.2",
7148
7184
  "fast-deep-equal": "^3.1.3",
7149
7185
  "file-entry-cache": "^6.0.1",
7186
+ "find-up": "^5.0.0",
7150
7187
  "functional-red-black-tree": "^1.0.1",
7151
7188
  "glob-parent": "^6.0.1",
7152
7189
  "globals": "^13.15.0",
7190
+ "globby": "^11.1.0",
7191
+ "grapheme-splitter": "^1.0.4",
7153
7192
  "ignore": "^5.2.0",
7154
7193
  "import-fresh": "^3.0.0",
7155
7194
  "imurmurhash": "^0.1.4",
@@ -7487,12 +7526,12 @@
7487
7526
  "dev": true
7488
7527
  },
7489
7528
  "espree": {
7490
- "version": "9.3.2",
7491
- "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz",
7492
- "integrity": "sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==",
7529
+ "version": "9.3.3",
7530
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.3.tgz",
7531
+ "integrity": "sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==",
7493
7532
  "dev": true,
7494
7533
  "requires": {
7495
- "acorn": "^8.7.1",
7534
+ "acorn": "^8.8.0",
7496
7535
  "acorn-jsx": "^5.3.2",
7497
7536
  "eslint-visitor-keys": "^3.3.0"
7498
7537
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "5.7.0-beta.d90ad27",
3
+ "version": "5.7.0",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -196,13 +196,13 @@
196
196
  "Wojcik, Adam <adam.wojcik.it@gmail.com>"
197
197
  ],
198
198
  "dependencies": {
199
- "@azure/msal-node": "^1.11.0",
199
+ "@azure/msal-node": "^1.12.1",
200
200
  "@xmldom/xmldom": "^0.8.2",
201
201
  "adaptive-expressions": "^4.16.0",
202
202
  "adaptivecards": "^2.10.0",
203
203
  "adaptivecards-templating": "^2.2.0",
204
204
  "adm-zip": "^0.5.9",
205
- "applicationinsights": "^2.3.3",
205
+ "applicationinsights": "^2.3.4",
206
206
  "axios": "^0.27.2",
207
207
  "chalk": "^4.1.2",
208
208
  "clipboardy": "^2.3.0",
@@ -229,16 +229,16 @@
229
229
  "@types/json-to-ast": "^2.1.2",
230
230
  "@types/minimist": "^1.2.2",
231
231
  "@types/mocha": "^9.1.1",
232
- "@types/node": "^16.11.43",
233
- "@types/node-forge": "^1.0.3",
232
+ "@types/node": "^16.11.47",
233
+ "@types/node-forge": "^1.0.4",
234
234
  "@types/semver": "^7.3.10",
235
- "@types/sinon": "^10.0.12",
235
+ "@types/sinon": "^10.0.13",
236
236
  "@types/update-notifier": "^5.1.0",
237
237
  "@types/uuid": "^8.3.4",
238
- "@typescript-eslint/eslint-plugin": "^5.30.5",
239
- "@typescript-eslint/parser": "^5.30.5",
240
- "c8": "^7.11.3",
241
- "eslint": "^8.19.0",
238
+ "@typescript-eslint/eslint-plugin": "^5.32.0",
239
+ "@typescript-eslint/parser": "^5.32.0",
240
+ "c8": "^7.12.0",
241
+ "eslint": "^8.21.0",
242
242
  "eslint-config-standard": "^17.0.0",
243
243
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
244
244
  "eslint-plugin-import": "^2.26.0",
@@ -249,4 +249,4 @@
249
249
  "sinon": "^14.0.0",
250
250
  "source-map-support": "^0.5.21"
251
251
  }
252
- }
252
+ }