@pnp/cli-microsoft365 7.0.0 → 7.1.0-beta.8536cf7

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.
@@ -6,7 +6,6 @@ LABEL name="CLI for Microsoft 365 Development" \
6
6
  maintainers="Waldek Mastykarz <waldek@mastykarz.nl>, \
7
7
  Garry Trinder <garry.trinder@live.com>, \
8
8
  Albert-Jan Schot <appie@digiwijs.nl>, \
9
- Rabia Williams <rabiawilliams@gmail.com>, \
10
9
  Patrick Lamber <patrick@nubo.eu>, \
11
10
  Arjun Menon <arjun.umenon@gmail.com>, \
12
11
  Adam Wojcik <adam.wojcik.it@gmail.com>, \
package/.eslintrc.cjs CHANGED
@@ -136,6 +136,7 @@ module.exports = {
136
136
  "rules": {
137
137
  "cli-microsoft365/correct-command-class-name": ["error", sortedDictionary, capitalized],
138
138
  "cli-microsoft365/correct-command-name": "error",
139
+ "cli-microsoft365/no-by-server-relative-url-usage": "error",
139
140
  "indent": "off",
140
141
  "@typescript-eslint/indent": [
141
142
  "error",
package/Dockerfile CHANGED
@@ -8,7 +8,6 @@ LABEL name="m365pnp/cli-microsoft365:${CLI_VERSION}" \
8
8
  maintainers="Waldek Mastykarz <waldek@mastykarz.nl>, \
9
9
  Garry Trinder <garry.trinder@live.com>, \
10
10
  Albert-Jan Schot <appie@digiwijs.nl>, \
11
- Rabia Williams <rabiawilliams@gmail.com>, \
12
11
  Patrick Lamber <patrick@nubo.eu>, \
13
12
  Arjun Menon <arjun.umenon@gmail.com>, \
14
13
  Adam Wojcik <adam.wojcik.it@gmail.com>, \
package/dist/Auth.js CHANGED
@@ -341,7 +341,7 @@ export class Auth {
341
341
  const cli = Cli.getInstance();
342
342
  cli.spinner.text = response.message;
343
343
  cli.spinner.spinner = {
344
- frames: ['🌶️ ']
344
+ frames: ['🌶️']
345
345
  };
346
346
  // don't show spinner if running tests
347
347
  /* c8 ignore next 3 */
package/dist/cli/Cli.js CHANGED
@@ -31,11 +31,15 @@ export class Cli {
31
31
  return configuredValue;
32
32
  }
33
33
  }
34
- // eslint-disable-next-line @typescript-eslint/no-empty-function
35
34
  constructor() {
36
35
  this.commands = [];
37
36
  this.commandsFolder = '';
38
- this.spinner = ora('Running command...');
37
+ const options = {
38
+ text: 'Running command...',
39
+ /* c8 ignore next 1 */
40
+ stream: this.getSettingWithDefaultValue('errorOutput', 'stderr') === 'stderr' ? process.stderr : process.stdout
41
+ };
42
+ this.spinner = ora(options);
39
43
  }
40
44
  static getInstance() {
41
45
  if (!Cli.instance) {
@@ -43,7 +43,7 @@ class SpoAppDeployCommand extends SpoAppBaseCommand {
43
43
  await logger.logToStderr(`Looking up app id for app named ${args.options.name}...`);
44
44
  }
45
45
  const requestOptions = {
46
- url: `${appCatalogUrl}/_api/web/getfolderbyserverrelativeurl('AppCatalog')/files('${args.options.name}')?$select=UniqueId`,
46
+ url: `${appCatalogUrl}/_api/web/GetFolderByServerRelativePath(DecodedUrl='AppCatalog')/files('${args.options.name}')?$select=UniqueId`,
47
47
  headers: {
48
48
  accept: 'application/json;odata=nometadata'
49
49
  },
@@ -39,7 +39,7 @@ class SpoAppGetCommand extends SpoAppBaseCommand {
39
39
  await logger.logToStderr(`Looking up app id for app named ${args.options.name}...`);
40
40
  }
41
41
  const requestOptions = {
42
- url: `${appCatalogSiteUrl}/_api/web/getfolderbyserverrelativeurl('AppCatalog')/files('${args.options.name}')?$select=UniqueId`,
42
+ url: `${appCatalogSiteUrl}/_api/web/GetFolderByServerRelativePath(DecodedUrl='AppCatalog')/files('${args.options.name}')?$select=UniqueId`,
43
43
  headers: {
44
44
  accept: 'application/json;odata=nometadata'
45
45
  },
@@ -88,7 +88,7 @@ class SpoAppTeamsPackageDownloadCommand extends SpoAppBaseCommand {
88
88
  url += `GetList('${serverRelativeAppCatalogListUrl}')/GetItemById(${args.options.appItemId})?$expand=File&$select=File/Name`;
89
89
  }
90
90
  else if (args.options.appName) {
91
- url += `getfolderbyserverrelativeurl('${appCatalogListName}')/files('${formatting.encodeQueryParameter(args.options.appName)}')/ListItemAllFields?$select=Id`;
91
+ url += `GetFolderByServerRelativePath(DecodedUrl='${appCatalogListName}')/files('${formatting.encodeQueryParameter(args.options.appName)}')/ListItemAllFields?$select=Id`;
92
92
  }
93
93
  const requestOptions = {
94
94
  url,
@@ -38,7 +38,7 @@ class SpoAppPageAddCommand extends SpoCommand {
38
38
  const page = await request.post(createPageRequestOptions);
39
39
  const pageUrl = page.value;
40
40
  let requestOptions = {
41
- url: `${args.options.webUrl}/_api/web/getfilebyserverrelativeurl('${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/${pageUrl}')?$expand=ListItemAllFields`,
41
+ url: `${args.options.webUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/${pageUrl}')?$expand=ListItemAllFields`,
42
42
  headers: {
43
43
  'content-type': 'application/json;charset=utf-8',
44
44
  accept: 'application/json;odata=nometadata'
@@ -5,6 +5,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
5
5
  };
6
6
  var _SpoFeatureDisableCommand_instances, _SpoFeatureDisableCommand_initTelemetry, _SpoFeatureDisableCommand_initOptions, _SpoFeatureDisableCommand_initValidators, _SpoFeatureDisableCommand_initTypes;
7
7
  import request from "../../../../request.js";
8
+ import { validation } from '../../../../utils/validation.js';
8
9
  import SpoCommand from "../../../base/SpoCommand.js";
9
10
  import commands from "../../commands.js";
10
11
  class SpoFeatureDisableCommand extends SpoCommand {
@@ -24,13 +25,10 @@ class SpoFeatureDisableCommand extends SpoCommand {
24
25
  }
25
26
  async commandAction(logger, args) {
26
27
  let scope = args.options.scope;
27
- let force = args.options.force;
28
+ const force = !!args.options.force;
28
29
  if (!scope) {
29
30
  scope = "web";
30
31
  }
31
- if (!force) {
32
- force = false;
33
- }
34
32
  if (this.verbose) {
35
33
  await logger.logToStderr(`Disabling feature '${args.options.id}' on scope '${scope}' for url '${args.options.webUrl}' (force='${force}')...`);
36
34
  }
@@ -39,7 +37,8 @@ class SpoFeatureDisableCommand extends SpoCommand {
39
37
  url: url,
40
38
  headers: {
41
39
  accept: 'application/json;odata=nometadata'
42
- }
40
+ },
41
+ responseType: 'json'
43
42
  };
44
43
  try {
45
44
  await request.post(requestOptions);
@@ -69,9 +68,12 @@ _SpoFeatureDisableCommand_instances = new WeakSet(), _SpoFeatureDisableCommand_i
69
68
  });
70
69
  }, _SpoFeatureDisableCommand_initValidators = function _SpoFeatureDisableCommand_initValidators() {
71
70
  this.validators.push(async (args) => {
71
+ if (!validation.isValidGuid(args.options.id)) {
72
+ return `${args.options.id} is not a valid GUID for option id.`;
73
+ }
72
74
  if (args.options.scope) {
73
75
  if (['site', 'web'].indexOf(args.options.scope.toLowerCase()) < 0) {
74
- return `${args.options.scope} is not a valid Feature scope. Allowed values are Site|Web`;
76
+ return `${args.options.scope} is not a valid Feature scope. Allowed values are: Site, Web.`;
75
77
  }
76
78
  }
77
79
  return true;
@@ -25,13 +25,10 @@ class SpoFeatureEnableCommand extends SpoCommand {
25
25
  }
26
26
  async commandAction(logger, args) {
27
27
  let scope = args.options.scope;
28
- let force = args.options.force;
28
+ const force = !!args.options.force;
29
29
  if (!scope) {
30
30
  scope = "web";
31
31
  }
32
- if (!force) {
33
- force = false;
34
- }
35
32
  if (this.verbose) {
36
33
  await logger.logToStderr(`Enabling feature '${args.options.id}' on scope '${scope}' for url '${args.options.webUrl}' (force='${force}')...`);
37
34
  }
@@ -40,7 +37,8 @@ class SpoFeatureEnableCommand extends SpoCommand {
40
37
  url: url,
41
38
  headers: {
42
39
  accept: 'application/json;odata=nometadata'
43
- }
40
+ },
41
+ responseType: 'json'
44
42
  };
45
43
  try {
46
44
  await request.post(requestOptions);
@@ -70,6 +68,9 @@ _SpoFeatureEnableCommand_instances = new WeakSet(), _SpoFeatureEnableCommand_ini
70
68
  });
71
69
  }, _SpoFeatureEnableCommand_initValidators = function _SpoFeatureEnableCommand_initValidators() {
72
70
  this.validators.push(async (args) => {
71
+ if (!validation.isValidGuid(args.options.id)) {
72
+ return `${args.options.id} is not a valid GUID for option id.`;
73
+ }
73
74
  if (args.options.scope) {
74
75
  if (['site', 'web'].indexOf(args.options.scope.toLowerCase()) < 0) {
75
76
  return `${args.options.scope} is not a valid Feature scope. Allowed values are Site|Web`;
@@ -12,7 +12,7 @@ export class Page {
12
12
  }
13
13
  const pageName = this.getPageNameWithExtension(name);
14
14
  const requestOptions = {
15
- url: `${webUrl}/_api/web/getfilebyserverrelativeurl('${urlUtil.getServerRelativeSiteUrl(webUrl)}/SitePages/${formatting.encodeQueryParameter(pageName)}')?$expand=ListItemAllFields/ClientSideApplicationId`,
15
+ url: `${webUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${urlUtil.getServerRelativeSiteUrl(webUrl)}/SitePages/${formatting.encodeQueryParameter(pageName)}')?$expand=ListItemAllFields/ClientSideApplicationId`,
16
16
  headers: {
17
17
  'content-type': 'application/json;charset=utf-8',
18
18
  accept: 'application/json;odata=nometadata'
@@ -52,7 +52,7 @@ class SpoPageAddCommand extends SpoCommand {
52
52
  const reqDigest = await spo.getRequestDigest(args.options.webUrl);
53
53
  requestDigest = reqDigest.FormDigestValue;
54
54
  let requestOptions = {
55
- url: `${args.options.webUrl}/_api/web/getfolderbyserverrelativeurl('${serverRelativeSiteUrl}/sitepages')/files/AddTemplateFile`,
55
+ url: `${args.options.webUrl}/_api/web/GetFolderByServerRelativePath(DecodedUrl='${serverRelativeSiteUrl}/sitepages')/files/AddTemplateFile`,
56
56
  headers: {
57
57
  'X-RequestDigest': requestDigest,
58
58
  'content-type': 'application/json;odata=nometadata',
@@ -36,7 +36,7 @@ class SpoPageGetCommand extends SpoCommand {
36
36
  }
37
37
  try {
38
38
  let requestOptions = {
39
- url: `${args.options.webUrl}/_api/web/getfilebyserverrelativeurl('${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/SitePages/${formatting.encodeQueryParameter(pageName)}')?$expand=ListItemAllFields/ClientSideApplicationId,ListItemAllFields/PageLayoutType,ListItemAllFields/CommentsDisabled`,
39
+ url: `${args.options.webUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/SitePages/${formatting.encodeQueryParameter(pageName)}')?$expand=ListItemAllFields/ClientSideApplicationId,ListItemAllFields/PageLayoutType,ListItemAllFields/CommentsDisabled`,
40
40
  headers: {
41
41
  'content-type': 'application/json;charset=utf-8',
42
42
  accept: 'application/json;odata=nometadata'
@@ -300,7 +300,7 @@ class SpoPageHeaderSetCommand extends SpoCommand {
300
300
  await logger.logToStderr(`Retrieving information about the header image...`);
301
301
  }
302
302
  const requestOptions = {
303
- url: `${siteUrl}/_api/web/getfilebyserverrelativeurl('${formatting.encodeQueryParameter(imageUrl)}')?$select=ListId,UniqueId`,
303
+ url: `${siteUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${formatting.encodeQueryParameter(imageUrl)}')?$select=ListId,UniqueId`,
304
304
  headers: {
305
305
  accept: 'application/json;odata=nometadata'
306
306
  },
@@ -54,7 +54,7 @@ class SpoPageRemoveCommand extends SpoCommand {
54
54
  }
55
55
  const requestOptions = {
56
56
  url: `${args.options
57
- .webUrl}/_api/web/getfilebyserverrelativeurl('${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/sitepages/${pageName}')`,
57
+ .webUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/sitepages/${pageName}')`,
58
58
  headers: {
59
59
  'X-RequestDigest': requestDigest,
60
60
  'X-HTTP-Method': 'DELETE',
@@ -199,7 +199,7 @@ class SpoPageSetCommand extends SpoCommand {
199
199
  }
200
200
  if (typeof args.options.commentsEnabled !== 'undefined') {
201
201
  const requestOptions = {
202
- url: `${args.options.webUrl}/_api/web/getfilebyserverrelativeurl('${serverRelativeFileUrl}')/ListItemAllFields/SetCommentsDisabled(${args.options.commentsEnabled === false})`,
202
+ url: `${args.options.webUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${serverRelativeFileUrl}')/ListItemAllFields/SetCommentsDisabled(${args.options.commentsEnabled === false})`,
203
203
  headers: {
204
204
  'X-RequestDigest': requestDigest,
205
205
  'content-type': 'application/json;odata=nometadata',
@@ -239,7 +239,7 @@ class SpoPageSetCommand extends SpoCommand {
239
239
  }
240
240
  else {
241
241
  requestOptions = {
242
- url: `${args.options.webUrl}/_api/web/getfilebyserverrelativeurl('${serverRelativeFileUrl}')/CheckIn(comment=@a1,checkintype=@a2)?@a1='${formatting.encodeQueryParameter(args.options.publishMessage || '')}'&@a2=1`,
242
+ url: `${args.options.webUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${serverRelativeFileUrl}')/CheckIn(comment=@a1,checkintype=@a2)?@a1='${formatting.encodeQueryParameter(args.options.publishMessage || '')}'&@a2=1`,
243
243
  headers: {
244
244
  'X-RequestDigest': requestDigest,
245
245
  'content-type': 'application/json;odata=nometadata',
@@ -79,7 +79,7 @@ class SpoPageTextAddCommand extends SpoCommand {
79
79
  }
80
80
  const requestOptions = {
81
81
  url: `${args.options
82
- .webUrl}/_api/web/getfilebyserverrelativeurl('${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/sitepages/${pageName}')/ListItemAllFields`,
82
+ .webUrl}/_api/web/GetFileByServerRelativePath(DecodedUrl='${urlUtil.getServerRelativeSiteUrl(args.options.webUrl)}/sitepages/${pageName}')/ListItemAllFields`,
83
83
  headers: {
84
84
  'X-RequestDigest': requestDigest,
85
85
  'content-type': 'application/json;odata=nometadata',
@@ -38,6 +38,9 @@ class SpoUserGetCommand extends SpoCommand {
38
38
  else if (args.options.loginName) {
39
39
  requestUrl = `${args.options.webUrl}/_api/web/siteusers/GetByLoginName('${formatting.encodeQueryParameter(args.options.loginName)}')`;
40
40
  }
41
+ else {
42
+ requestUrl = `${args.options.webUrl}/_api/web/currentuser`;
43
+ }
41
44
  const requestOptions = {
42
45
  url: requestUrl,
43
46
  method: 'GET',
@@ -82,7 +85,10 @@ _SpoUserGetCommand_instances = new WeakSet(), _SpoUserGetCommand_initTelemetry =
82
85
  return validation.isValidSharePointUrl(args.options.webUrl);
83
86
  });
84
87
  }, _SpoUserGetCommand_initOptionSets = function _SpoUserGetCommand_initOptionSets() {
85
- this.optionSets.push({ options: ['id', 'email', 'loginName'] });
88
+ this.optionSets.push({
89
+ options: ['id', 'email', 'loginName'],
90
+ runsWhen: (args) => args.options.id || args.options.loginName || args.options.email
91
+ });
86
92
  };
87
93
  export default new SpoUserGetCommand();
88
94
  //# sourceMappingURL=user-get.js.map
@@ -50,6 +50,12 @@ Get user by login name for a web
50
50
  m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --loginName "i:0#.f|membership|john.doe@mytenant.onmicrosoft.com"
51
51
  ```
52
52
 
53
+ Get the currently logged-in user
54
+
55
+ ```sh
56
+ m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x
57
+ ```
58
+
53
59
  ## Response
54
60
 
55
61
  <Tabs>
@@ -1,4 +1,5 @@
1
1
  module.exports.rules = {
2
2
  'correct-command-class-name': require('./rules/correct-command-class-name'),
3
- 'correct-command-name': require('./rules/correct-command-name')
3
+ 'correct-command-name': require('./rules/correct-command-name'),
4
+ 'no-by-server-relative-url-usage': require('./rules/no-by-server-relative-url-usage')
4
5
  };
@@ -0,0 +1,55 @@
1
+ function reportIncorrectEndpoint(context, node, urlEndpoint, pathEndpoint, updatedValue) {
2
+ context.report({
3
+ node,
4
+ messageId: 'incorrectEndpoint',
5
+ data: { urlEndpoint, pathEndpoint },
6
+ fix: fixer => fixer.replaceText(node, updatedValue),
7
+ });
8
+ }
9
+
10
+ module.exports = {
11
+ meta: {
12
+ type: 'problem',
13
+ docs: {
14
+ description: "Prevent usage of 'ByServerRelativeUrl' endpoint",
15
+ recommended: true
16
+ },
17
+ fixable: 'code',
18
+ messages: {
19
+ incorrectEndpoint: `Avoid "{{ urlEndpoint }}" endpoint. Instead, use "{{ pathEndpoint }}". Reference issue #5333 for more information.`
20
+ }
21
+ },
22
+ create: context => {
23
+ return {
24
+ TemplateLiteral(node) {
25
+ const sourceCodeText = context.getSourceCode().getText(node);
26
+ const updatedValue = sourceCodeText
27
+ .replace(/GetFileByServerRelativeUrl\(/ig, 'GetFileByServerRelativePath(DecodedUrl=')
28
+ .replace(/GetFolderByServerRelativeUrl\(/ig, 'GetFolderByServerRelativePath(DecodedUrl=');
29
+
30
+ if (updatedValue !== sourceCodeText) {
31
+ const templateValue = node.quasis.map(quasi => quasi.value.raw).join('');
32
+ const urlEndpoint = templateValue.match(/GetFileByServerRelativeUrl\(/i) ? "GetFileByServerRelativeUrl('url')" : "GetFolderByServerRelativeUrl('url')";
33
+ const pathEndpoint = urlEndpoint.replace("Url('url')", "Path(DecodedUrl='url')");
34
+
35
+ reportIncorrectEndpoint(context, node, urlEndpoint, pathEndpoint, updatedValue);
36
+ }
37
+ },
38
+ VariableDeclarator(node) {
39
+ const { init } = node;
40
+ if (
41
+ init && init.type === 'Literal' &&
42
+ (String(init.value).match(/GetFileByServerRelativeUrl\(/i) || String(init.value).match(/GetFolderByServerRelativeUrl\(/i))
43
+ ) {
44
+ const urlEndpoint = String(init.value).match(/GetFileByServerRelativeUrl\(/i) ? "GetFileByServerRelativeUrl('url')" : "GetFolderByServerRelativeUrl('url')";
45
+ const pathEndpoint = urlEndpoint.replace("Url('url')", "Path(DecodedUrl='url')");
46
+ const updatedValue = String(init.value)
47
+ .replace(/GetFileByServerRelativeUrl\(/i, 'GetFileByServerRelativePath(DecodedUrl=')
48
+ .replace(/GetFolderByServerRelativeUrl\(/i, 'GetFolderByServerRelativePath(DecodedUrl=');
49
+
50
+ reportIncorrectEndpoint(context, init, urlEndpoint, pathEndpoint, `'${updatedValue}'`);
51
+ }
52
+ }
53
+ };
54
+ },
55
+ };
@@ -1,29 +1,29 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "7.0.0",
3
+ "version": "7.1.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@pnp/cli-microsoft365",
9
- "version": "7.0.0",
9
+ "version": "7.1.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@azure/msal-common": "^13.2.1",
13
- "@azure/msal-node": "^1.18.1",
13
+ "@azure/msal-node": "^1.18.3",
14
14
  "@xmldom/xmldom": "^0.8.10",
15
- "adaptive-expressions": "^4.20.0",
15
+ "adaptive-expressions": "^4.20.1",
16
16
  "adaptivecards": "^3.0.1",
17
17
  "adaptivecards-templating": "^2.3.1",
18
18
  "adm-zip": "^0.5.10",
19
- "applicationinsights": "^2.7.0",
20
- "axios": "^1.5.0",
19
+ "applicationinsights": "^2.8.0",
20
+ "axios": "^1.5.1",
21
21
  "chalk": "^5.2.0",
22
22
  "clipboardy": "^3.0.0",
23
23
  "configstore": "^6.0.0",
24
- "csv-stringify": "^6.4.0",
24
+ "csv-stringify": "^6.4.4",
25
25
  "easy-table": "^1.2.0",
26
- "inquirer": "^9.2.10",
26
+ "inquirer": "^9.2.11",
27
27
  "jmespath": "^0.16.0",
28
28
  "json-to-ast": "^2.1.0",
29
29
  "minimist": "^1.2.8",
@@ -35,7 +35,7 @@
35
35
  "strip-json-comments": "^5.0.0",
36
36
  "typescript": "^5.0.2",
37
37
  "update-notifier": "^6.0.2",
38
- "uuid": "^9.0.0",
38
+ "uuid": "^9.0.1",
39
39
  "yaml": "^2.3.2"
40
40
  },
41
41
  "bin": {
@@ -46,25 +46,25 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@microsoft/microsoft-graph-types": "^2.38.0",
49
- "@types/adm-zip": "^0.5.0",
50
- "@types/inquirer": "^9.0.3",
49
+ "@types/adm-zip": "^0.5.2",
50
+ "@types/inquirer": "^9.0.4",
51
51
  "@types/jmespath": "^0.15.0",
52
52
  "@types/json-to-ast": "^2.1.2",
53
- "@types/minimist": "^1.2.2",
54
- "@types/mocha": "^10.0.1",
55
- "@types/node": "^18.17.14",
56
- "@types/node-forge": "^1.3.4",
53
+ "@types/minimist": "^1.2.3",
54
+ "@types/mocha": "^10.0.2",
55
+ "@types/node": "^18.18.4",
56
+ "@types/node-forge": "^1.3.7",
57
57
  "@types/omelette": "^0.4.2",
58
- "@types/semver": "^7.5.1",
59
- "@types/sinon": "^10.0.16",
58
+ "@types/semver": "^7.5.3",
59
+ "@types/sinon": "^10.0.19",
60
60
  "@types/update-notifier": "^6.0.5",
61
- "@types/uuid": "^9.0.3",
61
+ "@types/uuid": "^9.0.5",
62
62
  "@typescript-eslint/eslint-plugin": "^5.62.0",
63
63
  "@typescript-eslint/parser": "^5.62.0",
64
64
  "c8": "^7.14.0",
65
- "eslint": "^8.46.0",
65
+ "eslint": "^8.51.0",
66
66
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
67
- "eslint-plugin-mocha": "^10.1.0",
67
+ "eslint-plugin-mocha": "^10.2.0",
68
68
  "mocha": "^10.2.0",
69
69
  "rimraf": "^4.4.0",
70
70
  "sinon": "^15.2.0",
@@ -180,9 +180,9 @@
180
180
  }
181
181
  },
182
182
  "node_modules/@azure/msal-node": {
183
- "version": "1.18.2",
184
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.18.2.tgz",
185
- "integrity": "sha512-bLbuhF9Q5cgwj9tt8R7EV9MbCwGuFgZiv6Gw0VvHx5AcWHhh2m8hYginGagB4EucxKueFDwZP6aZVAxfuD/lUQ==",
183
+ "version": "1.18.3",
184
+ "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.18.3.tgz",
185
+ "integrity": "sha512-lI1OsxNbS/gxRD4548Wyj22Dk8kS7eGMwD9GlBZvQmFV8FJUXoXySL1BiNzDsHUE96/DS/DHmA+F73p1Dkcktg==",
186
186
  "dependencies": {
187
187
  "@azure/msal-common": "13.3.0",
188
188
  "jsonwebtoken": "^9.0.0",
@@ -282,18 +282,18 @@
282
282
  }
283
283
  },
284
284
  "node_modules/@eslint/js": {
285
- "version": "8.48.0",
286
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.48.0.tgz",
287
- "integrity": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==",
285
+ "version": "8.51.0",
286
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.51.0.tgz",
287
+ "integrity": "sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==",
288
288
  "dev": true,
289
289
  "engines": {
290
290
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
291
291
  }
292
292
  },
293
293
  "node_modules/@humanwhocodes/config-array": {
294
- "version": "0.11.10",
295
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
296
- "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
294
+ "version": "0.11.11",
295
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz",
296
+ "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==",
297
297
  "dev": true,
298
298
  "dependencies": {
299
299
  "@humanwhocodes/object-schema": "^1.2.1",
@@ -610,9 +610,9 @@
610
610
  }
611
611
  },
612
612
  "node_modules/@types/adm-zip": {
613
- "version": "0.5.0",
614
- "resolved": "https://registry.npmjs.org/@types/adm-zip/-/adm-zip-0.5.0.tgz",
615
- "integrity": "sha512-FCJBJq9ODsQZUNURo5ILAQueuA8WJhRvuihS3ke2iI25mJlfV2LK8jG2Qj2z2AWg8U0FtWWqBHVRetceLskSaw==",
613
+ "version": "0.5.2",
614
+ "resolved": "https://registry.npmjs.org/@types/adm-zip/-/adm-zip-0.5.2.tgz",
615
+ "integrity": "sha512-33OTTnnW3onOE6HJuoqsi7T7Ojupz7zO/Vs5ddRNVCYQnu4lg05RqH/pr9eidHGvGyYfdO4uPO9cvegAMixBCQ==",
616
616
  "dev": true,
617
617
  "dependencies": {
618
618
  "@types/node": "*"
@@ -640,9 +640,9 @@
640
640
  "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="
641
641
  },
642
642
  "node_modules/@types/inquirer": {
643
- "version": "9.0.3",
644
- "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.3.tgz",
645
- "integrity": "sha512-CzNkWqQftcmk2jaCWdBTf9Sm7xSw4rkI1zpU/Udw3HX5//adEZUIm9STtoRP1qgWj0CWQtJ9UTvqmO2NNjhMJw==",
643
+ "version": "9.0.4",
644
+ "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-9.0.4.tgz",
645
+ "integrity": "sha512-x8UgutCLm5tsp995aeYB8dlT+sGBCtv0zE43tHvo7OljtlA2Rn4+COyLKe9+YjB20uy0G14y0C9vCD2KtNtyGA==",
646
646
  "dev": true,
647
647
  "dependencies": {
648
648
  "@types/through": "*",
@@ -692,27 +692,27 @@
692
692
  "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw=="
693
693
  },
694
694
  "node_modules/@types/minimist": {
695
- "version": "1.2.2",
696
- "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz",
697
- "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==",
695
+ "version": "1.2.3",
696
+ "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.3.tgz",
697
+ "integrity": "sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==",
698
698
  "dev": true
699
699
  },
700
700
  "node_modules/@types/mocha": {
701
- "version": "10.0.1",
702
- "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.1.tgz",
703
- "integrity": "sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q==",
701
+ "version": "10.0.2",
702
+ "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.2.tgz",
703
+ "integrity": "sha512-NaHL0+0lLNhX6d9rs+NSt97WH/gIlRHmszXbQ/8/MV/eVcFNdeJ/GYhrFuUc8K7WuPhRhTSdMkCp8VMzhUq85w==",
704
704
  "dev": true
705
705
  },
706
706
  "node_modules/@types/node": {
707
- "version": "18.17.14",
708
- "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.14.tgz",
709
- "integrity": "sha512-ZE/5aB73CyGqgQULkLG87N9GnyGe5TcQjv34pwS8tfBs1IkCh0ASM69mydb2znqd6v0eX+9Ytvk6oQRqu8T1Vw==",
707
+ "version": "18.18.4",
708
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.4.tgz",
709
+ "integrity": "sha512-t3rNFBgJRugIhackit2mVcLfF6IRc0JE4oeizPQL8Zrm8n2WY/0wOdpOPhdtG0V9Q2TlW/axbF1MJ6z+Yj/kKQ==",
710
710
  "dev": true
711
711
  },
712
712
  "node_modules/@types/node-forge": {
713
- "version": "1.3.4",
714
- "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.4.tgz",
715
- "integrity": "sha512-08scBQriFsBbm/CuBWOXRMD1RG7ydFW01EDR6vGX27nxcj6E/jGSCOLdICNd8ETwQlLFXVBVA854RX6Y7vPSrQ==",
713
+ "version": "1.3.7",
714
+ "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.7.tgz",
715
+ "integrity": "sha512-uWvTDObXqNQPVprvvm7FCS/B0qexgRMmNCJCRETywf7cBm3C7uGRtGfaSqCoUlksrmY5Yn3++fvA7awBE5lAzw==",
716
716
  "dev": true,
717
717
  "dependencies": {
718
718
  "@types/node": "*"
@@ -725,9 +725,9 @@
725
725
  "dev": true
726
726
  },
727
727
  "node_modules/@types/semver": {
728
- "version": "7.5.1",
729
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.1.tgz",
730
- "integrity": "sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==",
728
+ "version": "7.5.3",
729
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.3.tgz",
730
+ "integrity": "sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==",
731
731
  "dev": true
732
732
  },
733
733
  "node_modules/@types/shimmer": {
@@ -736,9 +736,9 @@
736
736
  "integrity": "sha512-dKkr1bTxbEsFlh2ARpKzcaAmsYixqt9UyCdoEZk8rHyE4iQYcDCyvSjDSf7JUWJHlJiTtbIoQjxKh6ViywqDAg=="
737
737
  },
738
738
  "node_modules/@types/sinon": {
739
- "version": "10.0.16",
740
- "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.16.tgz",
741
- "integrity": "sha512-j2Du5SYpXZjJVJtXBokASpPRj+e2z+VUhCPHmM6WMfe3dpHu6iVKJMU6AiBcMp/XTAYnEj6Wc1trJUWwZ0QaAQ==",
739
+ "version": "10.0.19",
740
+ "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.19.tgz",
741
+ "integrity": "sha512-MWZNGPSchIdDfb5FL+VFi4zHsHbNOTQEgjqFQk7HazXSXwUU9PAX3z9XBqb3AJGYr9YwrtCtaSMsT3brYsN/jQ==",
742
742
  "dev": true,
743
743
  "dependencies": {
744
744
  "@types/sinonjs__fake-timers": "*"
@@ -770,9 +770,9 @@
770
770
  }
771
771
  },
772
772
  "node_modules/@types/uuid": {
773
- "version": "9.0.3",
774
- "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.3.tgz",
775
- "integrity": "sha512-taHQQH/3ZyI3zP8M/puluDEIEvtQHVYcC6y3N8ijFtAd28+Ey/G4sg1u2gB01S8MwybLOKAp9/yCMu/uR5l3Ug==",
773
+ "version": "9.0.5",
774
+ "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.5.tgz",
775
+ "integrity": "sha512-xfHdwa1FMJ082prjSJpoEI57GZITiQz10r3vEJCHa2khEFQjKy91aWKz6+zybzssCvXUwE1LQWgWVwZ4nYUvHQ==",
776
776
  "dev": true
777
777
  },
778
778
  "node_modules/@types/xmldom": {
@@ -1005,9 +1005,9 @@
1005
1005
  }
1006
1006
  },
1007
1007
  "node_modules/adaptive-expressions": {
1008
- "version": "4.20.0",
1009
- "resolved": "https://registry.npmjs.org/adaptive-expressions/-/adaptive-expressions-4.20.0.tgz",
1010
- "integrity": "sha512-/m0gXtwb75iK0UBftwoK8La7Ch/TqfrT5doAoLya1VAaeOEIzDzHIbMe1G6B7/N+Nn/waZFMexrqDW7d01lbdA==",
1008
+ "version": "4.20.1",
1009
+ "resolved": "https://registry.npmjs.org/adaptive-expressions/-/adaptive-expressions-4.20.1.tgz",
1010
+ "integrity": "sha512-Yrsx3Z6SL5wcpqyagTzFsm/N/nrDNpyKy/fjLA1Cb2mETb6I7ql1skINdGbJtQZzsSICQMBxpKJwUidosrWzdw==",
1011
1011
  "dependencies": {
1012
1012
  "@microsoft/recognizers-text-data-types-timex-expression": "1.3.0",
1013
1013
  "@types/atob-lite": "^2.0.0",
@@ -1022,7 +1022,7 @@
1022
1022
  "btoa-lite": "^1.0.0",
1023
1023
  "d3-format": "^1.4.4",
1024
1024
  "dayjs": "^1.10.3",
1025
- "fast-xml-parser": "^4.1.2",
1025
+ "fast-xml-parser": "^4.2.5",
1026
1026
  "jspath": "^0.4.0",
1027
1027
  "lodash.isequal": "^4.5.0",
1028
1028
  "lru-cache": "^5.1.1",
@@ -1187,9 +1187,9 @@
1187
1187
  }
1188
1188
  },
1189
1189
  "node_modules/applicationinsights": {
1190
- "version": "2.7.3",
1191
- "resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.7.3.tgz",
1192
- "integrity": "sha512-JY8+kTEkjbA+kAVNWDtpfW2lqsrDALfDXuxOs74KLPu2y13fy/9WB52V4LfYVTVcW1/jYOXjTxNS2gPZIDh1iw==",
1190
+ "version": "2.8.0",
1191
+ "resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.8.0.tgz",
1192
+ "integrity": "sha512-pxVOdCPwXTal1A904yGmzOOUJrIeQ89xQir0ifr7fLl+e0BlGrZ1P4StcIDuEXk93gV9CGxGm5Mol8ksPk2mcg==",
1193
1193
  "dependencies": {
1194
1194
  "@azure/core-auth": "^1.5.0",
1195
1195
  "@azure/core-rest-pipeline": "1.10.1",
@@ -1293,9 +1293,9 @@
1293
1293
  "integrity": "sha512-LEeSAWeh2Gfa2FtlQE1shxQ8zi5F9GHarrGKz08TMdODD5T4eH6BMsvtnhbWZ+XQn+Gb6om/917ucvRu7l7ukw=="
1294
1294
  },
1295
1295
  "node_modules/axios": {
1296
- "version": "1.5.0",
1297
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.0.tgz",
1298
- "integrity": "sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==",
1296
+ "version": "1.5.1",
1297
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.1.tgz",
1298
+ "integrity": "sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A==",
1299
1299
  "dependencies": {
1300
1300
  "follow-redirects": "^1.15.0",
1301
1301
  "form-data": "^4.0.0",
@@ -1878,9 +1878,9 @@
1878
1878
  }
1879
1879
  },
1880
1880
  "node_modules/csv-stringify": {
1881
- "version": "6.4.2",
1882
- "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.4.2.tgz",
1883
- "integrity": "sha512-DXIdnnCUQYjDKTu6TgCSzRDiAuLxDjhl4ErFP9FGMF3wzBGOVMg9bZTLaUcYtuvhXgNbeXPKeaRfpgyqE4xySw=="
1881
+ "version": "6.4.4",
1882
+ "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.4.4.tgz",
1883
+ "integrity": "sha512-NDshLupGa7gp4UG4sSNIqwYJqgSwvds0SvENntxoVoVvTzXcrHvd5gG2MWpbRpSNvk59dlmIe1IwNvSxN4IVmg=="
1884
1884
  },
1885
1885
  "node_modules/d3-format": {
1886
1886
  "version": "1.4.5",
@@ -2136,16 +2136,16 @@
2136
2136
  }
2137
2137
  },
2138
2138
  "node_modules/eslint": {
2139
- "version": "8.48.0",
2140
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz",
2141
- "integrity": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==",
2139
+ "version": "8.51.0",
2140
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.51.0.tgz",
2141
+ "integrity": "sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==",
2142
2142
  "dev": true,
2143
2143
  "dependencies": {
2144
2144
  "@eslint-community/eslint-utils": "^4.2.0",
2145
2145
  "@eslint-community/regexpp": "^4.6.1",
2146
2146
  "@eslint/eslintrc": "^2.1.2",
2147
- "@eslint/js": "8.48.0",
2148
- "@humanwhocodes/config-array": "^0.11.10",
2147
+ "@eslint/js": "8.51.0",
2148
+ "@humanwhocodes/config-array": "^0.11.11",
2149
2149
  "@humanwhocodes/module-importer": "^1.0.1",
2150
2150
  "@nodelib/fs.walk": "^1.2.8",
2151
2151
  "ajv": "^6.12.4",
@@ -2194,13 +2194,13 @@
2194
2194
  "link": true
2195
2195
  },
2196
2196
  "node_modules/eslint-plugin-mocha": {
2197
- "version": "10.1.0",
2198
- "resolved": "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-10.1.0.tgz",
2199
- "integrity": "sha512-xLqqWUF17llsogVOC+8C6/jvQ+4IoOREbN7ZCHuOHuD6cT5cDD4h7f2LgsZuzMAiwswWE21tO7ExaknHVDrSkw==",
2197
+ "version": "10.2.0",
2198
+ "resolved": "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-10.2.0.tgz",
2199
+ "integrity": "sha512-ZhdxzSZnd1P9LqDPF0DBcFLpRIGdh1zkF2JHnQklKQOvrQtT73kdP5K9V2mzvbLR+cCAO9OI48NXK/Ax9/ciCQ==",
2200
2200
  "dev": true,
2201
2201
  "dependencies": {
2202
2202
  "eslint-utils": "^3.0.0",
2203
- "rambda": "^7.1.0"
2203
+ "rambda": "^7.4.0"
2204
2204
  },
2205
2205
  "engines": {
2206
2206
  "node": ">=14.0.0"
@@ -3047,9 +3047,9 @@
3047
3047
  }
3048
3048
  },
3049
3049
  "node_modules/inquirer": {
3050
- "version": "9.2.10",
3051
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.10.tgz",
3052
- "integrity": "sha512-tVVNFIXU8qNHoULiazz612GFl+yqNfjMTbLuViNJE/d860Qxrd3NMrse8dm40VUQLOQeULvaQF8lpAhvysjeyA==",
3050
+ "version": "9.2.11",
3051
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.11.tgz",
3052
+ "integrity": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==",
3053
3053
  "dependencies": {
3054
3054
  "@ljharb/through": "^2.3.9",
3055
3055
  "ansi-escapes": "^4.3.2",
@@ -5039,9 +5039,13 @@
5039
5039
  "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
5040
5040
  },
5041
5041
  "node_modules/uuid": {
5042
- "version": "9.0.0",
5043
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
5044
- "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
5042
+ "version": "9.0.1",
5043
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
5044
+ "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
5045
+ "funding": [
5046
+ "https://github.com/sponsors/broofa",
5047
+ "https://github.com/sponsors/ctavan"
5048
+ ],
5045
5049
  "bin": {
5046
5050
  "uuid": "dist/bin/uuid"
5047
5051
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "7.0.0",
3
+ "version": "7.1.0-beta.8536cf7",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -147,6 +147,7 @@
147
147
  "Kornet, Michał <kornetmichal@gmail.com>",
148
148
  "Kumar, Shantha <34408892+ktskumar@users.noreply.github.com>",
149
149
  "Kurian, Cyril C <cyril.kurian2@gmail.com>",
150
+ "Lakshminarayanan, Vedant <vlakshminarayanan@seekasia.com>",
150
151
  "Lamber, Patrick <patrick@nubo.eu>",
151
152
  "Laskewitz, Daniel <daniel@laskewitz.nl>",
152
153
  "Lengelle, Veronique <25181757+veronicageek@users.noreply.github.com>",
@@ -225,20 +226,20 @@
225
226
  ],
226
227
  "dependencies": {
227
228
  "@azure/msal-common": "^13.2.1",
228
- "@azure/msal-node": "^1.18.1",
229
+ "@azure/msal-node": "^1.18.3",
229
230
  "@xmldom/xmldom": "^0.8.10",
230
- "adaptive-expressions": "^4.20.0",
231
+ "adaptive-expressions": "^4.20.1",
231
232
  "adaptivecards": "^3.0.1",
232
233
  "adaptivecards-templating": "^2.3.1",
233
234
  "adm-zip": "^0.5.10",
234
- "applicationinsights": "^2.7.0",
235
- "axios": "^1.5.0",
235
+ "applicationinsights": "^2.8.0",
236
+ "axios": "^1.5.1",
236
237
  "chalk": "^5.2.0",
237
238
  "clipboardy": "^3.0.0",
238
239
  "configstore": "^6.0.0",
239
- "csv-stringify": "^6.4.0",
240
+ "csv-stringify": "^6.4.4",
240
241
  "easy-table": "^1.2.0",
241
- "inquirer": "^9.2.10",
242
+ "inquirer": "^9.2.11",
242
243
  "jmespath": "^0.16.0",
243
244
  "json-to-ast": "^2.1.0",
244
245
  "minimist": "^1.2.8",
@@ -250,33 +251,33 @@
250
251
  "strip-json-comments": "^5.0.0",
251
252
  "typescript": "^5.0.2",
252
253
  "update-notifier": "^6.0.2",
253
- "uuid": "^9.0.0",
254
+ "uuid": "^9.0.1",
254
255
  "yaml": "^2.3.2"
255
256
  },
256
257
  "devDependencies": {
257
258
  "@microsoft/microsoft-graph-types": "^2.38.0",
258
- "@types/adm-zip": "^0.5.0",
259
- "@types/inquirer": "^9.0.3",
259
+ "@types/adm-zip": "^0.5.2",
260
+ "@types/inquirer": "^9.0.4",
260
261
  "@types/jmespath": "^0.15.0",
261
262
  "@types/json-to-ast": "^2.1.2",
262
- "@types/minimist": "^1.2.2",
263
- "@types/mocha": "^10.0.1",
264
- "@types/node": "^18.17.14",
265
- "@types/node-forge": "^1.3.4",
263
+ "@types/minimist": "^1.2.3",
264
+ "@types/mocha": "^10.0.2",
265
+ "@types/node": "^18.18.4",
266
+ "@types/node-forge": "^1.3.7",
266
267
  "@types/omelette": "^0.4.2",
267
- "@types/semver": "^7.5.1",
268
- "@types/sinon": "^10.0.16",
268
+ "@types/semver": "^7.5.3",
269
+ "@types/sinon": "^10.0.19",
269
270
  "@types/update-notifier": "^6.0.5",
270
- "@types/uuid": "^9.0.3",
271
+ "@types/uuid": "^9.0.5",
271
272
  "@typescript-eslint/eslint-plugin": "^5.62.0",
272
273
  "@typescript-eslint/parser": "^5.62.0",
273
274
  "c8": "^7.14.0",
274
- "eslint": "^8.46.0",
275
+ "eslint": "^8.51.0",
275
276
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
276
- "eslint-plugin-mocha": "^10.1.0",
277
+ "eslint-plugin-mocha": "^10.2.0",
277
278
  "mocha": "^10.2.0",
278
279
  "rimraf": "^4.4.0",
279
280
  "sinon": "^15.2.0",
280
281
  "source-map-support": "^0.5.21"
281
282
  }
282
- }
283
+ }