@pnp/cli-microsoft365 6.2.0-beta.01dcbcb → 6.2.0-beta.7b9fc77

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.
@@ -58,6 +58,9 @@ class AadAppRoleAssignmentAddCommand extends GraphCommand_1.default {
58
58
  };
59
59
  try {
60
60
  const servicePrincipalResult = yield request_1.default.get(getServicePrinciplesRequestOptions);
61
+ if (servicePrincipalResult.value.length === 0) {
62
+ return Promise.reject(`The specified service principal doesn't exist`);
63
+ }
61
64
  if (servicePrincipalResult.value.length > 1) {
62
65
  throw 'More than one service principal found. Please use the appId or appObjectId option to make sure the right service principal is specified.';
63
66
  }
@@ -15,9 +15,12 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
15
15
  };
16
16
  var _TeamsChatListCommand_instances, _TeamsChatListCommand_initTelemetry, _TeamsChatListCommand_initOptions, _TeamsChatListCommand_initValidators;
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
+ const Auth_1 = require("../../../../Auth");
19
+ const accessToken_1 = require("../../../../utils/accessToken");
18
20
  const odata_1 = require("../../../../utils/odata");
19
21
  const GraphCommand_1 = require("../../../base/GraphCommand");
20
22
  const commands_1 = require("../../commands");
23
+ const validation_1 = require("../../../../utils/validation");
21
24
  class TeamsChatListCommand extends GraphCommand_1.default {
22
25
  get name() {
23
26
  return commands_1.default.CHAT_LIST;
@@ -31,16 +34,26 @@ class TeamsChatListCommand extends GraphCommand_1.default {
31
34
  constructor() {
32
35
  super();
33
36
  _TeamsChatListCommand_instances.add(this);
37
+ this.supportedTypes = ['oneOnOne', 'group', 'meeting'];
34
38
  __classPrivateFieldGet(this, _TeamsChatListCommand_instances, "m", _TeamsChatListCommand_initTelemetry).call(this);
35
39
  __classPrivateFieldGet(this, _TeamsChatListCommand_instances, "m", _TeamsChatListCommand_initOptions).call(this);
36
40
  __classPrivateFieldGet(this, _TeamsChatListCommand_instances, "m", _TeamsChatListCommand_initValidators).call(this);
37
41
  }
38
42
  commandAction(logger, args) {
39
43
  return __awaiter(this, void 0, void 0, function* () {
40
- const filter = args.options.type !== undefined ? `?$filter=chatType eq '${args.options.type}'` : '';
41
- const endpoint = `${this.resource}/v1.0/chats${filter}`;
44
+ const isAppOnlyAuth = accessToken_1.accessToken.isAppOnlyAccessToken(Auth_1.default.service.accessTokens[this.resource].accessToken);
45
+ if (isAppOnlyAuth && !args.options.userId && !args.options.userName) {
46
+ throw `The option 'userId' or 'userName' is required when obtaining chats using app only permissions`;
47
+ }
48
+ else if (!isAppOnlyAuth && (args.options.userId || args.options.userName)) {
49
+ throw `The options 'userId' or 'userName' cannot be used when obtaining chats using delegated permissions`;
50
+ }
51
+ let requestUrl = `${this.resource}/v1.0/${!isAppOnlyAuth ? 'me' : `users/${args.options.userId || args.options.userName}`}/chats`;
52
+ if (args.options.type) {
53
+ requestUrl += `?$filter=chatType eq '${args.options.type}'`;
54
+ }
42
55
  try {
43
- const items = yield odata_1.odata.getAllItems(endpoint);
56
+ const items = yield odata_1.odata.getAllItems(requestUrl);
44
57
  logger.log(items);
45
58
  }
46
59
  catch (err) {
@@ -58,13 +71,22 @@ _TeamsChatListCommand_instances = new WeakSet(), _TeamsChatListCommand_initTelem
58
71
  }, _TeamsChatListCommand_initOptions = function _TeamsChatListCommand_initOptions() {
59
72
  this.options.unshift({
60
73
  option: '-t, --type [type]',
61
- autocomplete: ['oneOnOne', 'group', 'meeting']
74
+ autocomplete: this.supportedTypes
75
+ }, {
76
+ option: '--userId [userId]'
77
+ }, {
78
+ option: '--userName [userName]'
62
79
  });
63
80
  }, _TeamsChatListCommand_initValidators = function _TeamsChatListCommand_initValidators() {
64
81
  this.validators.push((args) => __awaiter(this, void 0, void 0, function* () {
65
- const supportedTypes = ['oneOnOne', 'group', 'meeting'];
66
- if (args.options.type !== undefined && supportedTypes.indexOf(args.options.type) === -1) {
67
- return `${args.options.type} is not a valid chatType. Accepted values are ${supportedTypes.join(', ')}`;
82
+ if (args.options.type !== undefined && this.supportedTypes.indexOf(args.options.type) === -1) {
83
+ return `${args.options.type} is not a valid chatType. Accepted values are ${this.supportedTypes.join(', ')}`;
84
+ }
85
+ if (args.options.userId && args.options.userName) {
86
+ return `You can only specify either 'userId' or 'userName'`;
87
+ }
88
+ if (args.options.userId && !validation_1.validation.isValidGuid(args.options.userId)) {
89
+ return `${args.options.userId} is not a valid GUID`;
68
90
  }
69
91
  return true;
70
92
  }));
@@ -1,6 +1,6 @@
1
1
  # teams chat list
2
2
 
3
- Lists all Microsoft Teams chat conversations for the current user.
3
+ Lists all Microsoft Teams chat conversations for the current or a specific user.
4
4
 
5
5
  ## Usage
6
6
 
@@ -10,9 +10,15 @@ m365 teams chat list [options]
10
10
 
11
11
  ## Options
12
12
 
13
- `-t, --type [chatType]`
13
+ `-t, --type [type]`
14
14
  : The chat type to optionally filter chat conversations by type. The value can be `oneOnOne`, `group` or `meeting`.
15
15
 
16
+ `--userId [userId]`
17
+ : ID of the user. Has to be specified when using application permissions. Specify either `userId` or `userName`, but not both.
18
+
19
+ `--userName [userName]`
20
+ : UPN of the user. Has to be specified when using application permissions. Specify either `userId` or `userName`, but not both.
21
+
16
22
  --8<-- "docs/cmd/_global.md"
17
23
 
18
24
  ## Examples
@@ -23,10 +29,16 @@ List all the Microsoft Teams chat conversations of the current user.
23
29
  m365 teams chat list
24
30
  ```
25
31
 
26
- List only the one on one Microsoft Teams chat conversations.
32
+ List only the one on one Microsoft Teams chat conversations of a specific user retrieved by id.
33
+
34
+ ```sh
35
+ m365 teams chat list --userId e6296ed0-4b7d-4ace-aed4-f6b7371ce060 --type oneOnOne
36
+ ```
37
+
38
+ List only the group Microsoft Teams chat conversations of a specific user retrieved by mail
27
39
 
28
40
  ```sh
29
- m365 teams chat list --type oneOnOne
41
+ m365 teams chat list --userName 'john@contoso.com' --type group
30
42
  ```
31
43
 
32
44
  ## Response
@@ -9,12 +9,12 @@
9
9
  "version": "6.2.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "@azure/msal-node": "^1.14.4",
12
+ "@azure/msal-node": "^1.14.5",
13
13
  "@xmldom/xmldom": "^0.8.6",
14
14
  "adaptive-expressions": "^4.18.0",
15
15
  "adaptivecards": "^2.11.1",
16
16
  "adaptivecards-templating": "^2.3.1",
17
- "adm-zip": "^0.5.9",
17
+ "adm-zip": "^0.5.10",
18
18
  "applicationinsights": "^2.3.6",
19
19
  "axios": "^0.27.2",
20
20
  "chalk": "^4.1.2",
@@ -30,7 +30,7 @@
30
30
  "open": "^8.4.0",
31
31
  "semver": "^7.3.8",
32
32
  "strip-json-comments": "^3.1.1",
33
- "typescript": "^4.9.3",
33
+ "typescript": "^4.9.4",
34
34
  "update-notifier": "^5.1.0",
35
35
  "uuid": "^9.0.0"
36
36
  },
@@ -47,25 +47,25 @@
47
47
  "@types/json-to-ast": "^2.1.2",
48
48
  "@types/minimist": "^1.2.2",
49
49
  "@types/mocha": "^10.0.1",
50
- "@types/node": "^16.18.6",
50
+ "@types/node": "^16.18.11",
51
51
  "@types/node-forge": "^1.3.1",
52
52
  "@types/semver": "^7.3.13",
53
53
  "@types/sinon": "^10.0.13",
54
54
  "@types/update-notifier": "^5.1.0",
55
- "@types/uuid": "^8.3.4",
56
- "@typescript-eslint/eslint-plugin": "^5.45.1",
57
- "@typescript-eslint/parser": "^5.45.1",
55
+ "@types/uuid": "^9.0.0",
56
+ "@typescript-eslint/eslint-plugin": "^5.47.1",
57
+ "@typescript-eslint/parser": "^5.47.1",
58
58
  "c8": "^7.12.0",
59
- "eslint": "^8.29.0",
59
+ "eslint": "^8.31.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",
63
63
  "eslint-plugin-mocha": "^10.1.0",
64
64
  "eslint-plugin-node": "^11.1.0",
65
65
  "eslint-plugin-promise": "^6.1.1",
66
- "mocha": "^10.1.0",
66
+ "mocha": "^10.2.0",
67
67
  "rimraf": "^3.0.2",
68
- "sinon": "^14.0.2",
68
+ "sinon": "^15.0.1",
69
69
  "source-map-support": "^0.5.21"
70
70
  }
71
71
  },
@@ -162,19 +162,19 @@
162
162
  }
163
163
  },
164
164
  "node_modules/@azure/msal-common": {
165
- "version": "9.0.0",
166
- "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-9.0.0.tgz",
167
- "integrity": "sha512-uiFiFKVNTsRpmKio5bcObTuHcaHHZB2GEsjJJN8rbJNmzoYuZzNioOoK+J0QK0jEasRBgAoR5A8hSty2iKRzIg==",
165
+ "version": "9.0.1",
166
+ "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-9.0.1.tgz",
167
+ "integrity": "sha512-eNNHIW/cwPTZDWs9KtYgb1X6gtQ+cC+FGX2YN+t4AUVsBdUbqlMTnUs6/c/VBxC2AAGIhgLREuNnO3F66AN2zQ==",
168
168
  "engines": {
169
169
  "node": ">=0.8.0"
170
170
  }
171
171
  },
172
172
  "node_modules/@azure/msal-node": {
173
- "version": "1.14.4",
174
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.4.tgz",
175
- "integrity": "sha512-j9GzZu5mTLWtuJ+cYN6e67UNymIS5OysblrOzH8lakt9XxH0GCPYjuqbOEKTP84r+Rbj3io+TuW1KS+0Xxuj/g==",
173
+ "version": "1.14.5",
174
+ "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.5.tgz",
175
+ "integrity": "sha512-NcVdMfn8Z3ogN+9RjOSF7uwf2Gki5DEJl0BdDSL83KUAgVAobtkZi5W8EqxbJLrTO/ET0jv5DregrcR5qg2pEA==",
176
176
  "dependencies": {
177
- "@azure/msal-common": "^9.0.0",
177
+ "@azure/msal-common": "^9.0.1",
178
178
  "jsonwebtoken": "^8.5.1",
179
179
  "uuid": "^8.3.0"
180
180
  },
@@ -197,15 +197,15 @@
197
197
  "dev": true
198
198
  },
199
199
  "node_modules/@eslint/eslintrc": {
200
- "version": "1.3.3",
201
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
202
- "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
200
+ "version": "1.4.1",
201
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz",
202
+ "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==",
203
203
  "dev": true,
204
204
  "dependencies": {
205
205
  "ajv": "^6.12.4",
206
206
  "debug": "^4.3.2",
207
207
  "espree": "^9.4.0",
208
- "globals": "^13.15.0",
208
+ "globals": "^13.19.0",
209
209
  "ignore": "^5.2.0",
210
210
  "import-fresh": "^3.2.1",
211
211
  "js-yaml": "^4.1.0",
@@ -220,9 +220,9 @@
220
220
  }
221
221
  },
222
222
  "node_modules/@humanwhocodes/config-array": {
223
- "version": "0.11.7",
224
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz",
225
- "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==",
223
+ "version": "0.11.8",
224
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
225
+ "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
226
226
  "dev": true,
227
227
  "dependencies": {
228
228
  "@humanwhocodes/object-schema": "^1.2.1",
@@ -419,21 +419,12 @@
419
419
  }
420
420
  },
421
421
  "node_modules/@sinonjs/fake-timers": {
422
- "version": "9.1.2",
423
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz",
424
- "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==",
425
- "dev": true,
426
- "dependencies": {
427
- "@sinonjs/commons": "^1.7.0"
428
- }
429
- },
430
- "node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": {
431
- "version": "1.8.6",
432
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
433
- "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
422
+ "version": "10.0.2",
423
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz",
424
+ "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==",
434
425
  "dev": true,
435
426
  "dependencies": {
436
- "type-detect": "4.0.8"
427
+ "@sinonjs/commons": "^2.0.0"
437
428
  }
438
429
  },
439
430
  "node_modules/@sinonjs/samsam": {
@@ -560,9 +551,9 @@
560
551
  "dev": true
561
552
  },
562
553
  "node_modules/@types/node": {
563
- "version": "16.18.6",
564
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.6.tgz",
565
- "integrity": "sha512-vmYJF0REqDyyU0gviezF/KHq/fYaUbFhkcNbQCuPGFQj6VTbXuHZoxs/Y7mutWe73C8AC6l9fFu8mSYiBAqkGA=="
554
+ "version": "16.18.11",
555
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.11.tgz",
556
+ "integrity": "sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA=="
566
557
  },
567
558
  "node_modules/@types/node-fetch": {
568
559
  "version": "2.6.1",
@@ -644,9 +635,9 @@
644
635
  }
645
636
  },
646
637
  "node_modules/@types/uuid": {
647
- "version": "8.3.4",
648
- "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz",
649
- "integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==",
638
+ "version": "9.0.0",
639
+ "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.0.tgz",
640
+ "integrity": "sha512-kr90f+ERiQtKWMz5rP32ltJ/BtULDI5RVO0uavn1HQUOwjx0R1h0rnDYNL0CepF1zL5bSY6FISAfd9tOdDhU5Q==",
650
641
  "dev": true
651
642
  },
652
643
  "node_modules/@types/xmldom": {
@@ -655,14 +646,14 @@
655
646
  "integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
656
647
  },
657
648
  "node_modules/@typescript-eslint/eslint-plugin": {
658
- "version": "5.45.1",
659
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.45.1.tgz",
660
- "integrity": "sha512-cOizjPlKEh0bXdFrBLTrI/J6B/QMlhwE9auOov53tgB+qMukH6/h8YAK/qw+QJGct/PTbdh2lytGyipxCcEtAw==",
649
+ "version": "5.47.1",
650
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.47.1.tgz",
651
+ "integrity": "sha512-r4RZ2Jl9kcQN7K/dcOT+J7NAimbiis4sSM9spvWimsBvDegMhKLA5vri2jG19PmIPbDjPeWzfUPQ2hjEzA4Nmg==",
661
652
  "dev": true,
662
653
  "dependencies": {
663
- "@typescript-eslint/scope-manager": "5.45.1",
664
- "@typescript-eslint/type-utils": "5.45.1",
665
- "@typescript-eslint/utils": "5.45.1",
654
+ "@typescript-eslint/scope-manager": "5.47.1",
655
+ "@typescript-eslint/type-utils": "5.47.1",
656
+ "@typescript-eslint/utils": "5.47.1",
666
657
  "debug": "^4.3.4",
667
658
  "ignore": "^5.2.0",
668
659
  "natural-compare-lite": "^1.4.0",
@@ -688,14 +679,14 @@
688
679
  }
689
680
  },
690
681
  "node_modules/@typescript-eslint/parser": {
691
- "version": "5.45.1",
692
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.45.1.tgz",
693
- "integrity": "sha512-JQ3Ep8bEOXu16q0ztsatp/iQfDCtvap7sp/DKo7DWltUquj5AfCOpX2zSzJ8YkAVnrQNqQ5R62PBz2UtrfmCkA==",
682
+ "version": "5.47.1",
683
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.47.1.tgz",
684
+ "integrity": "sha512-9Vb+KIv29r6GPu4EboWOnQM7T+UjpjXvjCPhNORlgm40a9Ia9bvaPJswvtae1gip2QEeVeGh6YquqAzEgoRAlw==",
694
685
  "dev": true,
695
686
  "dependencies": {
696
- "@typescript-eslint/scope-manager": "5.45.1",
697
- "@typescript-eslint/types": "5.45.1",
698
- "@typescript-eslint/typescript-estree": "5.45.1",
687
+ "@typescript-eslint/scope-manager": "5.47.1",
688
+ "@typescript-eslint/types": "5.47.1",
689
+ "@typescript-eslint/typescript-estree": "5.47.1",
699
690
  "debug": "^4.3.4"
700
691
  },
701
692
  "engines": {
@@ -715,13 +706,13 @@
715
706
  }
716
707
  },
717
708
  "node_modules/@typescript-eslint/scope-manager": {
718
- "version": "5.45.1",
719
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.45.1.tgz",
720
- "integrity": "sha512-D6fCileR6Iai7E35Eb4Kp+k0iW7F1wxXYrOhX/3dywsOJpJAQ20Fwgcf+P/TDtvQ7zcsWsrJaglaQWDhOMsspQ==",
709
+ "version": "5.47.1",
710
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.47.1.tgz",
711
+ "integrity": "sha512-9hsFDsgUwrdOoW1D97Ewog7DYSHaq4WKuNs0LHF9RiCmqB0Z+XRR4Pf7u7u9z/8CciHuJ6yxNws1XznI3ddjEw==",
721
712
  "dev": true,
722
713
  "dependencies": {
723
- "@typescript-eslint/types": "5.45.1",
724
- "@typescript-eslint/visitor-keys": "5.45.1"
714
+ "@typescript-eslint/types": "5.47.1",
715
+ "@typescript-eslint/visitor-keys": "5.47.1"
725
716
  },
726
717
  "engines": {
727
718
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -732,13 +723,13 @@
732
723
  }
733
724
  },
734
725
  "node_modules/@typescript-eslint/type-utils": {
735
- "version": "5.45.1",
736
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.45.1.tgz",
737
- "integrity": "sha512-aosxFa+0CoYgYEl3aptLe1svP910DJq68nwEJzyQcrtRhC4BN0tJAvZGAe+D0tzjJmFXe+h4leSsiZhwBa2vrA==",
726
+ "version": "5.47.1",
727
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.47.1.tgz",
728
+ "integrity": "sha512-/UKOeo8ee80A7/GJA427oIrBi/Gd4osk/3auBUg4Rn9EahFpevVV1mUK8hjyQD5lHPqX397x6CwOk5WGh1E/1w==",
738
729
  "dev": true,
739
730
  "dependencies": {
740
- "@typescript-eslint/typescript-estree": "5.45.1",
741
- "@typescript-eslint/utils": "5.45.1",
731
+ "@typescript-eslint/typescript-estree": "5.47.1",
732
+ "@typescript-eslint/utils": "5.47.1",
742
733
  "debug": "^4.3.4",
743
734
  "tsutils": "^3.21.0"
744
735
  },
@@ -759,9 +750,9 @@
759
750
  }
760
751
  },
761
752
  "node_modules/@typescript-eslint/types": {
762
- "version": "5.45.1",
763
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.45.1.tgz",
764
- "integrity": "sha512-HEW3U0E5dLjUT+nk7b4lLbOherS1U4ap+b9pfu2oGsW3oPu7genRaY9dDv3nMczC1rbnRY2W/D7SN05wYoGImg==",
753
+ "version": "5.47.1",
754
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.47.1.tgz",
755
+ "integrity": "sha512-CmALY9YWXEpwuu6377ybJBZdtSAnzXLSQcxLSqSQSbC7VfpMu/HLVdrnVJj7ycI138EHqocW02LPJErE35cE9A==",
765
756
  "dev": true,
766
757
  "engines": {
767
758
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -772,13 +763,13 @@
772
763
  }
773
764
  },
774
765
  "node_modules/@typescript-eslint/typescript-estree": {
775
- "version": "5.45.1",
776
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.45.1.tgz",
777
- "integrity": "sha512-76NZpmpCzWVrrb0XmYEpbwOz/FENBi+5W7ipVXAsG3OoFrQKJMiaqsBMbvGRyLtPotGqUfcY7Ur8j0dksDJDng==",
766
+ "version": "5.47.1",
767
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.47.1.tgz",
768
+ "integrity": "sha512-4+ZhFSuISAvRi2xUszEj0xXbNTHceV9GbH9S8oAD2a/F9SW57aJNQVOCxG8GPfSWH/X4eOPdMEU2jYVuWKEpWA==",
778
769
  "dev": true,
779
770
  "dependencies": {
780
- "@typescript-eslint/types": "5.45.1",
781
- "@typescript-eslint/visitor-keys": "5.45.1",
771
+ "@typescript-eslint/types": "5.47.1",
772
+ "@typescript-eslint/visitor-keys": "5.47.1",
782
773
  "debug": "^4.3.4",
783
774
  "globby": "^11.1.0",
784
775
  "is-glob": "^4.0.3",
@@ -799,16 +790,16 @@
799
790
  }
800
791
  },
801
792
  "node_modules/@typescript-eslint/utils": {
802
- "version": "5.45.1",
803
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.45.1.tgz",
804
- "integrity": "sha512-rlbC5VZz68+yjAzQBc4I7KDYVzWG2X/OrqoZrMahYq3u8FFtmQYc+9rovo/7wlJH5kugJ+jQXV5pJMnofGmPRw==",
793
+ "version": "5.47.1",
794
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.47.1.tgz",
795
+ "integrity": "sha512-l90SdwqfmkuIVaREZ2ykEfCezepCLxzWMo5gVfcJsJCaT4jHT+QjgSkYhs5BMQmWqE9k3AtIfk4g211z/sTMVw==",
805
796
  "dev": true,
806
797
  "dependencies": {
807
798
  "@types/json-schema": "^7.0.9",
808
799
  "@types/semver": "^7.3.12",
809
- "@typescript-eslint/scope-manager": "5.45.1",
810
- "@typescript-eslint/types": "5.45.1",
811
- "@typescript-eslint/typescript-estree": "5.45.1",
800
+ "@typescript-eslint/scope-manager": "5.47.1",
801
+ "@typescript-eslint/types": "5.47.1",
802
+ "@typescript-eslint/typescript-estree": "5.47.1",
812
803
  "eslint-scope": "^5.1.1",
813
804
  "eslint-utils": "^3.0.0",
814
805
  "semver": "^7.3.7"
@@ -825,12 +816,12 @@
825
816
  }
826
817
  },
827
818
  "node_modules/@typescript-eslint/visitor-keys": {
828
- "version": "5.45.1",
829
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.45.1.tgz",
830
- "integrity": "sha512-cy9ln+6rmthYWjH9fmx+5FU/JDpjQb586++x2FZlveq7GdGuLLW9a2Jcst2TGekH82bXpfmRNSwP9tyEs6RjvQ==",
819
+ "version": "5.47.1",
820
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.47.1.tgz",
821
+ "integrity": "sha512-rF3pmut2JCCjh6BLRhNKdYjULMb1brvoaiWDlHfLNVgmnZ0sBVJrs3SyaKE1XoDDnJuAx/hDQryHYmPUuNq0ig==",
831
822
  "dev": true,
832
823
  "dependencies": {
833
- "@typescript-eslint/types": "5.45.1",
824
+ "@typescript-eslint/types": "5.47.1",
834
825
  "eslint-visitor-keys": "^3.3.0"
835
826
  },
836
827
  "engines": {
@@ -918,9 +909,9 @@
918
909
  }
919
910
  },
920
911
  "node_modules/adm-zip": {
921
- "version": "0.5.9",
922
- "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.9.tgz",
923
- "integrity": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==",
912
+ "version": "0.5.10",
913
+ "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz",
914
+ "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==",
924
915
  "engines": {
925
916
  "node": ">=6.0"
926
917
  }
@@ -2018,13 +2009,13 @@
2018
2009
  }
2019
2010
  },
2020
2011
  "node_modules/eslint": {
2021
- "version": "8.29.0",
2022
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz",
2023
- "integrity": "sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==",
2012
+ "version": "8.31.0",
2013
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.31.0.tgz",
2014
+ "integrity": "sha512-0tQQEVdmPZ1UtUKXjX7EMm9BlgJ08G90IhWh0PKDCb3ZLsgAOHI8fYSIzYVZej92zsgq+ft0FGsxhJ3xo2tbuA==",
2024
2015
  "dev": true,
2025
2016
  "dependencies": {
2026
- "@eslint/eslintrc": "^1.3.3",
2027
- "@humanwhocodes/config-array": "^0.11.6",
2017
+ "@eslint/eslintrc": "^1.4.1",
2018
+ "@humanwhocodes/config-array": "^0.11.8",
2028
2019
  "@humanwhocodes/module-importer": "^1.0.1",
2029
2020
  "@nodelib/fs.walk": "^1.2.8",
2030
2021
  "ajv": "^6.10.0",
@@ -2043,7 +2034,7 @@
2043
2034
  "file-entry-cache": "^6.0.1",
2044
2035
  "find-up": "^5.0.0",
2045
2036
  "glob-parent": "^6.0.2",
2046
- "globals": "^13.15.0",
2037
+ "globals": "^13.19.0",
2047
2038
  "grapheme-splitter": "^1.0.4",
2048
2039
  "ignore": "^5.2.0",
2049
2040
  "import-fresh": "^3.0.0",
@@ -3005,9 +2996,9 @@
3005
2996
  }
3006
2997
  },
3007
2998
  "node_modules/globals": {
3008
- "version": "13.17.0",
3009
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
3010
- "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
2999
+ "version": "13.19.0",
3000
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz",
3001
+ "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==",
3011
3002
  "dev": true,
3012
3003
  "dependencies": {
3013
3004
  "type-fest": "^0.20.2"
@@ -4060,9 +4051,9 @@
4060
4051
  }
4061
4052
  },
4062
4053
  "node_modules/mocha": {
4063
- "version": "10.1.0",
4064
- "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.1.0.tgz",
4065
- "integrity": "sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==",
4054
+ "version": "10.2.0",
4055
+ "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz",
4056
+ "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==",
4066
4057
  "dev": true,
4067
4058
  "dependencies": {
4068
4059
  "ansi-colors": "4.1.1",
@@ -5012,13 +5003,13 @@
5012
5003
  "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
5013
5004
  },
5014
5005
  "node_modules/sinon": {
5015
- "version": "14.0.2",
5016
- "resolved": "https://registry.npmjs.org/sinon/-/sinon-14.0.2.tgz",
5017
- "integrity": "sha512-PDpV0ZI3ZCS3pEqx0vpNp6kzPhHrLx72wA0G+ZLaaJjLIYeE0n8INlgaohKuGy7hP0as5tbUd23QWu5U233t+w==",
5006
+ "version": "15.0.1",
5007
+ "resolved": "https://registry.npmjs.org/sinon/-/sinon-15.0.1.tgz",
5008
+ "integrity": "sha512-PZXKc08f/wcA/BMRGBze2Wmw50CWPiAH3E21EOi4B49vJ616vW4DQh4fQrqsYox2aNR/N3kCqLuB0PwwOucQrg==",
5018
5009
  "dev": true,
5019
5010
  "dependencies": {
5020
5011
  "@sinonjs/commons": "^2.0.0",
5021
- "@sinonjs/fake-timers": "^9.1.2",
5012
+ "@sinonjs/fake-timers": "10.0.2",
5022
5013
  "@sinonjs/samsam": "^7.0.1",
5023
5014
  "diff": "^5.0.0",
5024
5015
  "nise": "^5.1.2",
@@ -5347,9 +5338,9 @@
5347
5338
  }
5348
5339
  },
5349
5340
  "node_modules/typescript": {
5350
- "version": "4.9.3",
5351
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz",
5352
- "integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==",
5341
+ "version": "4.9.4",
5342
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz",
5343
+ "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==",
5353
5344
  "bin": {
5354
5345
  "tsc": "bin/tsc",
5355
5346
  "tsserver": "bin/tsserver"
@@ -5807,16 +5798,16 @@
5807
5798
  }
5808
5799
  },
5809
5800
  "@azure/msal-common": {
5810
- "version": "9.0.0",
5811
- "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-9.0.0.tgz",
5812
- "integrity": "sha512-uiFiFKVNTsRpmKio5bcObTuHcaHHZB2GEsjJJN8rbJNmzoYuZzNioOoK+J0QK0jEasRBgAoR5A8hSty2iKRzIg=="
5801
+ "version": "9.0.1",
5802
+ "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-9.0.1.tgz",
5803
+ "integrity": "sha512-eNNHIW/cwPTZDWs9KtYgb1X6gtQ+cC+FGX2YN+t4AUVsBdUbqlMTnUs6/c/VBxC2AAGIhgLREuNnO3F66AN2zQ=="
5813
5804
  },
5814
5805
  "@azure/msal-node": {
5815
- "version": "1.14.4",
5816
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.4.tgz",
5817
- "integrity": "sha512-j9GzZu5mTLWtuJ+cYN6e67UNymIS5OysblrOzH8lakt9XxH0GCPYjuqbOEKTP84r+Rbj3io+TuW1KS+0Xxuj/g==",
5806
+ "version": "1.14.5",
5807
+ "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.5.tgz",
5808
+ "integrity": "sha512-NcVdMfn8Z3ogN+9RjOSF7uwf2Gki5DEJl0BdDSL83KUAgVAobtkZi5W8EqxbJLrTO/ET0jv5DregrcR5qg2pEA==",
5818
5809
  "requires": {
5819
- "@azure/msal-common": "^9.0.0",
5810
+ "@azure/msal-common": "^9.0.1",
5820
5811
  "jsonwebtoken": "^8.5.1",
5821
5812
  "uuid": "^8.3.0"
5822
5813
  },
@@ -5835,15 +5826,15 @@
5835
5826
  "dev": true
5836
5827
  },
5837
5828
  "@eslint/eslintrc": {
5838
- "version": "1.3.3",
5839
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
5840
- "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
5829
+ "version": "1.4.1",
5830
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz",
5831
+ "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==",
5841
5832
  "dev": true,
5842
5833
  "requires": {
5843
5834
  "ajv": "^6.12.4",
5844
5835
  "debug": "^4.3.2",
5845
5836
  "espree": "^9.4.0",
5846
- "globals": "^13.15.0",
5837
+ "globals": "^13.19.0",
5847
5838
  "ignore": "^5.2.0",
5848
5839
  "import-fresh": "^3.2.1",
5849
5840
  "js-yaml": "^4.1.0",
@@ -5852,9 +5843,9 @@
5852
5843
  }
5853
5844
  },
5854
5845
  "@humanwhocodes/config-array": {
5855
- "version": "0.11.7",
5856
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz",
5857
- "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==",
5846
+ "version": "0.11.8",
5847
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
5848
+ "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
5858
5849
  "dev": true,
5859
5850
  "requires": {
5860
5851
  "@humanwhocodes/object-schema": "^1.2.1",
@@ -5996,23 +5987,12 @@
5996
5987
  }
5997
5988
  },
5998
5989
  "@sinonjs/fake-timers": {
5999
- "version": "9.1.2",
6000
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz",
6001
- "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==",
5990
+ "version": "10.0.2",
5991
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz",
5992
+ "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==",
6002
5993
  "dev": true,
6003
5994
  "requires": {
6004
- "@sinonjs/commons": "^1.7.0"
6005
- },
6006
- "dependencies": {
6007
- "@sinonjs/commons": {
6008
- "version": "1.8.6",
6009
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
6010
- "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
6011
- "dev": true,
6012
- "requires": {
6013
- "type-detect": "4.0.8"
6014
- }
6015
- }
5995
+ "@sinonjs/commons": "^2.0.0"
6016
5996
  }
6017
5997
  },
6018
5998
  "@sinonjs/samsam": {
@@ -6136,9 +6116,9 @@
6136
6116
  "dev": true
6137
6117
  },
6138
6118
  "@types/node": {
6139
- "version": "16.18.6",
6140
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.6.tgz",
6141
- "integrity": "sha512-vmYJF0REqDyyU0gviezF/KHq/fYaUbFhkcNbQCuPGFQj6VTbXuHZoxs/Y7mutWe73C8AC6l9fFu8mSYiBAqkGA=="
6119
+ "version": "16.18.11",
6120
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.11.tgz",
6121
+ "integrity": "sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA=="
6142
6122
  },
6143
6123
  "@types/node-fetch": {
6144
6124
  "version": "2.6.1",
@@ -6219,9 +6199,9 @@
6219
6199
  }
6220
6200
  },
6221
6201
  "@types/uuid": {
6222
- "version": "8.3.4",
6223
- "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz",
6224
- "integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==",
6202
+ "version": "9.0.0",
6203
+ "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.0.tgz",
6204
+ "integrity": "sha512-kr90f+ERiQtKWMz5rP32ltJ/BtULDI5RVO0uavn1HQUOwjx0R1h0rnDYNL0CepF1zL5bSY6FISAfd9tOdDhU5Q==",
6225
6205
  "dev": true
6226
6206
  },
6227
6207
  "@types/xmldom": {
@@ -6230,14 +6210,14 @@
6230
6210
  "integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
6231
6211
  },
6232
6212
  "@typescript-eslint/eslint-plugin": {
6233
- "version": "5.45.1",
6234
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.45.1.tgz",
6235
- "integrity": "sha512-cOizjPlKEh0bXdFrBLTrI/J6B/QMlhwE9auOov53tgB+qMukH6/h8YAK/qw+QJGct/PTbdh2lytGyipxCcEtAw==",
6213
+ "version": "5.47.1",
6214
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.47.1.tgz",
6215
+ "integrity": "sha512-r4RZ2Jl9kcQN7K/dcOT+J7NAimbiis4sSM9spvWimsBvDegMhKLA5vri2jG19PmIPbDjPeWzfUPQ2hjEzA4Nmg==",
6236
6216
  "dev": true,
6237
6217
  "requires": {
6238
- "@typescript-eslint/scope-manager": "5.45.1",
6239
- "@typescript-eslint/type-utils": "5.45.1",
6240
- "@typescript-eslint/utils": "5.45.1",
6218
+ "@typescript-eslint/scope-manager": "5.47.1",
6219
+ "@typescript-eslint/type-utils": "5.47.1",
6220
+ "@typescript-eslint/utils": "5.47.1",
6241
6221
  "debug": "^4.3.4",
6242
6222
  "ignore": "^5.2.0",
6243
6223
  "natural-compare-lite": "^1.4.0",
@@ -6247,53 +6227,53 @@
6247
6227
  }
6248
6228
  },
6249
6229
  "@typescript-eslint/parser": {
6250
- "version": "5.45.1",
6251
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.45.1.tgz",
6252
- "integrity": "sha512-JQ3Ep8bEOXu16q0ztsatp/iQfDCtvap7sp/DKo7DWltUquj5AfCOpX2zSzJ8YkAVnrQNqQ5R62PBz2UtrfmCkA==",
6230
+ "version": "5.47.1",
6231
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.47.1.tgz",
6232
+ "integrity": "sha512-9Vb+KIv29r6GPu4EboWOnQM7T+UjpjXvjCPhNORlgm40a9Ia9bvaPJswvtae1gip2QEeVeGh6YquqAzEgoRAlw==",
6253
6233
  "dev": true,
6254
6234
  "requires": {
6255
- "@typescript-eslint/scope-manager": "5.45.1",
6256
- "@typescript-eslint/types": "5.45.1",
6257
- "@typescript-eslint/typescript-estree": "5.45.1",
6235
+ "@typescript-eslint/scope-manager": "5.47.1",
6236
+ "@typescript-eslint/types": "5.47.1",
6237
+ "@typescript-eslint/typescript-estree": "5.47.1",
6258
6238
  "debug": "^4.3.4"
6259
6239
  }
6260
6240
  },
6261
6241
  "@typescript-eslint/scope-manager": {
6262
- "version": "5.45.1",
6263
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.45.1.tgz",
6264
- "integrity": "sha512-D6fCileR6Iai7E35Eb4Kp+k0iW7F1wxXYrOhX/3dywsOJpJAQ20Fwgcf+P/TDtvQ7zcsWsrJaglaQWDhOMsspQ==",
6242
+ "version": "5.47.1",
6243
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.47.1.tgz",
6244
+ "integrity": "sha512-9hsFDsgUwrdOoW1D97Ewog7DYSHaq4WKuNs0LHF9RiCmqB0Z+XRR4Pf7u7u9z/8CciHuJ6yxNws1XznI3ddjEw==",
6265
6245
  "dev": true,
6266
6246
  "requires": {
6267
- "@typescript-eslint/types": "5.45.1",
6268
- "@typescript-eslint/visitor-keys": "5.45.1"
6247
+ "@typescript-eslint/types": "5.47.1",
6248
+ "@typescript-eslint/visitor-keys": "5.47.1"
6269
6249
  }
6270
6250
  },
6271
6251
  "@typescript-eslint/type-utils": {
6272
- "version": "5.45.1",
6273
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.45.1.tgz",
6274
- "integrity": "sha512-aosxFa+0CoYgYEl3aptLe1svP910DJq68nwEJzyQcrtRhC4BN0tJAvZGAe+D0tzjJmFXe+h4leSsiZhwBa2vrA==",
6252
+ "version": "5.47.1",
6253
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.47.1.tgz",
6254
+ "integrity": "sha512-/UKOeo8ee80A7/GJA427oIrBi/Gd4osk/3auBUg4Rn9EahFpevVV1mUK8hjyQD5lHPqX397x6CwOk5WGh1E/1w==",
6275
6255
  "dev": true,
6276
6256
  "requires": {
6277
- "@typescript-eslint/typescript-estree": "5.45.1",
6278
- "@typescript-eslint/utils": "5.45.1",
6257
+ "@typescript-eslint/typescript-estree": "5.47.1",
6258
+ "@typescript-eslint/utils": "5.47.1",
6279
6259
  "debug": "^4.3.4",
6280
6260
  "tsutils": "^3.21.0"
6281
6261
  }
6282
6262
  },
6283
6263
  "@typescript-eslint/types": {
6284
- "version": "5.45.1",
6285
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.45.1.tgz",
6286
- "integrity": "sha512-HEW3U0E5dLjUT+nk7b4lLbOherS1U4ap+b9pfu2oGsW3oPu7genRaY9dDv3nMczC1rbnRY2W/D7SN05wYoGImg==",
6264
+ "version": "5.47.1",
6265
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.47.1.tgz",
6266
+ "integrity": "sha512-CmALY9YWXEpwuu6377ybJBZdtSAnzXLSQcxLSqSQSbC7VfpMu/HLVdrnVJj7ycI138EHqocW02LPJErE35cE9A==",
6287
6267
  "dev": true
6288
6268
  },
6289
6269
  "@typescript-eslint/typescript-estree": {
6290
- "version": "5.45.1",
6291
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.45.1.tgz",
6292
- "integrity": "sha512-76NZpmpCzWVrrb0XmYEpbwOz/FENBi+5W7ipVXAsG3OoFrQKJMiaqsBMbvGRyLtPotGqUfcY7Ur8j0dksDJDng==",
6270
+ "version": "5.47.1",
6271
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.47.1.tgz",
6272
+ "integrity": "sha512-4+ZhFSuISAvRi2xUszEj0xXbNTHceV9GbH9S8oAD2a/F9SW57aJNQVOCxG8GPfSWH/X4eOPdMEU2jYVuWKEpWA==",
6293
6273
  "dev": true,
6294
6274
  "requires": {
6295
- "@typescript-eslint/types": "5.45.1",
6296
- "@typescript-eslint/visitor-keys": "5.45.1",
6275
+ "@typescript-eslint/types": "5.47.1",
6276
+ "@typescript-eslint/visitor-keys": "5.47.1",
6297
6277
  "debug": "^4.3.4",
6298
6278
  "globby": "^11.1.0",
6299
6279
  "is-glob": "^4.0.3",
@@ -6302,28 +6282,28 @@
6302
6282
  }
6303
6283
  },
6304
6284
  "@typescript-eslint/utils": {
6305
- "version": "5.45.1",
6306
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.45.1.tgz",
6307
- "integrity": "sha512-rlbC5VZz68+yjAzQBc4I7KDYVzWG2X/OrqoZrMahYq3u8FFtmQYc+9rovo/7wlJH5kugJ+jQXV5pJMnofGmPRw==",
6285
+ "version": "5.47.1",
6286
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.47.1.tgz",
6287
+ "integrity": "sha512-l90SdwqfmkuIVaREZ2ykEfCezepCLxzWMo5gVfcJsJCaT4jHT+QjgSkYhs5BMQmWqE9k3AtIfk4g211z/sTMVw==",
6308
6288
  "dev": true,
6309
6289
  "requires": {
6310
6290
  "@types/json-schema": "^7.0.9",
6311
6291
  "@types/semver": "^7.3.12",
6312
- "@typescript-eslint/scope-manager": "5.45.1",
6313
- "@typescript-eslint/types": "5.45.1",
6314
- "@typescript-eslint/typescript-estree": "5.45.1",
6292
+ "@typescript-eslint/scope-manager": "5.47.1",
6293
+ "@typescript-eslint/types": "5.47.1",
6294
+ "@typescript-eslint/typescript-estree": "5.47.1",
6315
6295
  "eslint-scope": "^5.1.1",
6316
6296
  "eslint-utils": "^3.0.0",
6317
6297
  "semver": "^7.3.7"
6318
6298
  }
6319
6299
  },
6320
6300
  "@typescript-eslint/visitor-keys": {
6321
- "version": "5.45.1",
6322
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.45.1.tgz",
6323
- "integrity": "sha512-cy9ln+6rmthYWjH9fmx+5FU/JDpjQb586++x2FZlveq7GdGuLLW9a2Jcst2TGekH82bXpfmRNSwP9tyEs6RjvQ==",
6301
+ "version": "5.47.1",
6302
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.47.1.tgz",
6303
+ "integrity": "sha512-rF3pmut2JCCjh6BLRhNKdYjULMb1brvoaiWDlHfLNVgmnZ0sBVJrs3SyaKE1XoDDnJuAx/hDQryHYmPUuNq0ig==",
6324
6304
  "dev": true,
6325
6305
  "requires": {
6326
- "@typescript-eslint/types": "5.45.1",
6306
+ "@typescript-eslint/types": "5.47.1",
6327
6307
  "eslint-visitor-keys": "^3.3.0"
6328
6308
  }
6329
6309
  },
@@ -6390,9 +6370,9 @@
6390
6370
  "requires": {}
6391
6371
  },
6392
6372
  "adm-zip": {
6393
- "version": "0.5.9",
6394
- "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.9.tgz",
6395
- "integrity": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg=="
6373
+ "version": "0.5.10",
6374
+ "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz",
6375
+ "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ=="
6396
6376
  },
6397
6377
  "ajv": {
6398
6378
  "version": "6.12.6",
@@ -7207,13 +7187,13 @@
7207
7187
  "dev": true
7208
7188
  },
7209
7189
  "eslint": {
7210
- "version": "8.29.0",
7211
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz",
7212
- "integrity": "sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==",
7190
+ "version": "8.31.0",
7191
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.31.0.tgz",
7192
+ "integrity": "sha512-0tQQEVdmPZ1UtUKXjX7EMm9BlgJ08G90IhWh0PKDCb3ZLsgAOHI8fYSIzYVZej92zsgq+ft0FGsxhJ3xo2tbuA==",
7213
7193
  "dev": true,
7214
7194
  "requires": {
7215
- "@eslint/eslintrc": "^1.3.3",
7216
- "@humanwhocodes/config-array": "^0.11.6",
7195
+ "@eslint/eslintrc": "^1.4.1",
7196
+ "@humanwhocodes/config-array": "^0.11.8",
7217
7197
  "@humanwhocodes/module-importer": "^1.0.1",
7218
7198
  "@nodelib/fs.walk": "^1.2.8",
7219
7199
  "ajv": "^6.10.0",
@@ -7232,7 +7212,7 @@
7232
7212
  "file-entry-cache": "^6.0.1",
7233
7213
  "find-up": "^5.0.0",
7234
7214
  "glob-parent": "^6.0.2",
7235
- "globals": "^13.15.0",
7215
+ "globals": "^13.19.0",
7236
7216
  "grapheme-splitter": "^1.0.4",
7237
7217
  "ignore": "^5.2.0",
7238
7218
  "import-fresh": "^3.0.0",
@@ -7927,9 +7907,9 @@
7927
7907
  }
7928
7908
  },
7929
7909
  "globals": {
7930
- "version": "13.17.0",
7931
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
7932
- "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
7910
+ "version": "13.19.0",
7911
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz",
7912
+ "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==",
7933
7913
  "dev": true,
7934
7914
  "requires": {
7935
7915
  "type-fest": "^0.20.2"
@@ -8688,9 +8668,9 @@
8688
8668
  "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
8689
8669
  },
8690
8670
  "mocha": {
8691
- "version": "10.1.0",
8692
- "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.1.0.tgz",
8693
- "integrity": "sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==",
8671
+ "version": "10.2.0",
8672
+ "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz",
8673
+ "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==",
8694
8674
  "dev": true,
8695
8675
  "requires": {
8696
8676
  "ansi-colors": "4.1.1",
@@ -9375,13 +9355,13 @@
9375
9355
  "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
9376
9356
  },
9377
9357
  "sinon": {
9378
- "version": "14.0.2",
9379
- "resolved": "https://registry.npmjs.org/sinon/-/sinon-14.0.2.tgz",
9380
- "integrity": "sha512-PDpV0ZI3ZCS3pEqx0vpNp6kzPhHrLx72wA0G+ZLaaJjLIYeE0n8INlgaohKuGy7hP0as5tbUd23QWu5U233t+w==",
9358
+ "version": "15.0.1",
9359
+ "resolved": "https://registry.npmjs.org/sinon/-/sinon-15.0.1.tgz",
9360
+ "integrity": "sha512-PZXKc08f/wcA/BMRGBze2Wmw50CWPiAH3E21EOi4B49vJ616vW4DQh4fQrqsYox2aNR/N3kCqLuB0PwwOucQrg==",
9381
9361
  "dev": true,
9382
9362
  "requires": {
9383
9363
  "@sinonjs/commons": "^2.0.0",
9384
- "@sinonjs/fake-timers": "^9.1.2",
9364
+ "@sinonjs/fake-timers": "10.0.2",
9385
9365
  "@sinonjs/samsam": "^7.0.1",
9386
9366
  "diff": "^5.0.0",
9387
9367
  "nise": "^5.1.2",
@@ -9630,9 +9610,9 @@
9630
9610
  }
9631
9611
  },
9632
9612
  "typescript": {
9633
- "version": "4.9.3",
9634
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz",
9635
- "integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA=="
9613
+ "version": "4.9.4",
9614
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz",
9615
+ "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg=="
9636
9616
  },
9637
9617
  "unbox-primitive": {
9638
9618
  "version": "1.0.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "6.2.0-beta.01dcbcb",
3
+ "version": "6.2.0-beta.7b9fc77",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -218,12 +218,12 @@
218
218
  "Wojcik, Adam <adam.wojcik.it@gmail.com>"
219
219
  ],
220
220
  "dependencies": {
221
- "@azure/msal-node": "^1.14.4",
221
+ "@azure/msal-node": "^1.14.5",
222
222
  "@xmldom/xmldom": "^0.8.6",
223
223
  "adaptive-expressions": "^4.18.0",
224
224
  "adaptivecards": "^2.11.1",
225
225
  "adaptivecards-templating": "^2.3.1",
226
- "adm-zip": "^0.5.9",
226
+ "adm-zip": "^0.5.10",
227
227
  "applicationinsights": "^2.3.6",
228
228
  "axios": "^0.27.2",
229
229
  "chalk": "^4.1.2",
@@ -239,7 +239,7 @@
239
239
  "open": "^8.4.0",
240
240
  "semver": "^7.3.8",
241
241
  "strip-json-comments": "^3.1.1",
242
- "typescript": "^4.9.3",
242
+ "typescript": "^4.9.4",
243
243
  "update-notifier": "^5.1.0",
244
244
  "uuid": "^9.0.0"
245
245
  },
@@ -251,25 +251,25 @@
251
251
  "@types/json-to-ast": "^2.1.2",
252
252
  "@types/minimist": "^1.2.2",
253
253
  "@types/mocha": "^10.0.1",
254
- "@types/node": "^16.18.6",
254
+ "@types/node": "^16.18.11",
255
255
  "@types/node-forge": "^1.3.1",
256
256
  "@types/semver": "^7.3.13",
257
257
  "@types/sinon": "^10.0.13",
258
258
  "@types/update-notifier": "^5.1.0",
259
- "@types/uuid": "^8.3.4",
260
- "@typescript-eslint/eslint-plugin": "^5.45.1",
261
- "@typescript-eslint/parser": "^5.45.1",
259
+ "@types/uuid": "^9.0.0",
260
+ "@typescript-eslint/eslint-plugin": "^5.47.1",
261
+ "@typescript-eslint/parser": "^5.47.1",
262
262
  "c8": "^7.12.0",
263
- "eslint": "^8.29.0",
263
+ "eslint": "^8.31.0",
264
264
  "eslint-config-standard": "^17.0.0",
265
265
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
266
266
  "eslint-plugin-import": "^2.26.0",
267
267
  "eslint-plugin-mocha": "^10.1.0",
268
268
  "eslint-plugin-node": "^11.1.0",
269
269
  "eslint-plugin-promise": "^6.1.1",
270
- "mocha": "^10.1.0",
270
+ "mocha": "^10.2.0",
271
271
  "rimraf": "^3.0.2",
272
- "sinon": "^14.0.2",
272
+ "sinon": "^15.0.1",
273
273
  "source-map-support": "^0.5.21"
274
274
  }
275
275
  }