@pnp/cli-microsoft365 6.0.0-beta.4d2402f → 6.0.0-beta.6a854fc

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.
@@ -14,33 +14,84 @@ class AadO365GroupRecycleBinItemRestoreCommand extends GraphCommand_1.default {
14
14
  alias() {
15
15
  return [commands_1.default.O365GROUP_RESTORE];
16
16
  }
17
+ getTelemetryProperties(args) {
18
+ const telemetryProps = super.getTelemetryProperties(args);
19
+ telemetryProps.id = typeof args.options.id !== 'undefined';
20
+ telemetryProps.displayName = typeof args.options.displayName !== 'undefined';
21
+ telemetryProps.mailNickname = typeof args.options.mailNickname !== 'undefined';
22
+ return telemetryProps;
23
+ }
17
24
  commandAction(logger, args, cb) {
18
25
  if (this.verbose) {
19
- logger.logToStderr(`Restoring Microsoft 365 Group: ${args.options.id}...`);
26
+ logger.logToStderr(`Restoring Microsoft 365 Group: ${args.options.id || args.options.displayName || args.options.mailNickname}...`);
27
+ }
28
+ this
29
+ .getGroupId(args.options)
30
+ .then((groupId) => {
31
+ const requestOptions = {
32
+ url: `${this.resource}/v1.0/directory/deleteditems/${groupId}/restore`,
33
+ headers: {
34
+ accept: 'application/json;odata.metadata=none',
35
+ 'content-type': 'application/json'
36
+ },
37
+ responseType: 'json'
38
+ };
39
+ return request_1.default.post(requestOptions);
40
+ })
41
+ .then(_ => cb(), (err) => this.handleRejectedODataJsonPromise(err, logger, cb));
42
+ }
43
+ getGroupId(options) {
44
+ const { id, displayName, mailNickname } = options;
45
+ if (id) {
46
+ return Promise.resolve(id);
47
+ }
48
+ let filterValue = '';
49
+ if (displayName) {
50
+ filterValue = `displayName eq '${utils_1.formatting.encodeQueryParameter(displayName)}'`;
51
+ }
52
+ if (mailNickname) {
53
+ filterValue = `mailNickname eq '${utils_1.formatting.encodeQueryParameter(mailNickname)}'`;
20
54
  }
21
55
  const requestOptions = {
22
- url: `${this.resource}/v1.0/directory/deleteditems/${args.options.id}/restore/`,
56
+ url: `${this.resource}/v1.0/directory/deletedItems/Microsoft.Graph.Group?$filter=${filterValue}`,
23
57
  headers: {
24
- 'accept': 'application/json;odata.metadata=none',
25
- 'content-type': 'application/json'
58
+ accept: 'application/json;odata.metadata=none'
26
59
  },
27
60
  responseType: 'json'
28
61
  };
29
- request_1.default
30
- .post(requestOptions)
31
- .then(_ => cb(), (rawRes) => this.handleRejectedODataJsonPromise(rawRes, logger, cb));
62
+ return request_1.default
63
+ .get(requestOptions)
64
+ .then((response) => {
65
+ const groups = response.value;
66
+ if (groups.length === 0) {
67
+ return Promise.reject(`The specified group '${displayName || mailNickname}' does not exist.`);
68
+ }
69
+ if (groups.length > 1) {
70
+ return Promise.reject(`Multiple groups with name '${displayName || mailNickname}' found: ${groups.map(x => x.id).join(',')}.`);
71
+ }
72
+ return Promise.resolve(groups[0].id);
73
+ });
74
+ }
75
+ optionSets() {
76
+ return [['id', 'displayName', 'mailNickname']];
32
77
  }
33
78
  options() {
34
79
  const options = [
35
80
  {
36
- option: '-i, --id <id>'
81
+ option: '-i, --id [id]'
82
+ },
83
+ {
84
+ option: '-d, --displayName [displayName]'
85
+ },
86
+ {
87
+ option: '-m, --mailNickname [mailNickname]'
37
88
  }
38
89
  ];
39
90
  const parentOptions = super.options();
40
91
  return options.concat(parentOptions);
41
92
  }
42
93
  validate(args) {
43
- if (!utils_1.validation.isValidGuid(args.options.id)) {
94
+ if (args.options.id && !utils_1.validation.isValidGuid(args.options.id)) {
44
95
  return `${args.options.id} is not a valid GUID`;
45
96
  }
46
97
  return true;
@@ -23,6 +23,7 @@ class SpoSiteClassicListCommand extends SpoCommand_1.default {
23
23
  return ['Title', 'Url'];
24
24
  }
25
25
  commandAction(logger, args, cb) {
26
+ this.showDeprecationWarning(logger, commands_1.default.SITE_CLASSIC_LIST, commands_1.default.SITE_LIST);
26
27
  const webTemplate = args.options.webTemplate || '';
27
28
  const includeOneDriveSites = args.options.includeOneDriveSites || false;
28
29
  const personalSite = includeOneDriveSites === false ? '0' : '1';
@@ -10,22 +10,25 @@ class SpoSiteListCommand extends SpoCommand_1.default {
10
10
  return commands_1.default.SITE_LIST;
11
11
  }
12
12
  get description() {
13
- return 'Lists modern sites of the given type';
13
+ return 'Lists sites of the given type';
14
14
  }
15
15
  getTelemetryProperties(args) {
16
16
  const telemetryProps = super.getTelemetryProperties(args);
17
- telemetryProps.siteType = args.options.type || 'TeamSite';
17
+ telemetryProps.webTemplate = args.options.webTemplate;
18
18
  telemetryProps.filter = (!(!args.options.filter)).toString();
19
- telemetryProps.deleted = args.options.deleted;
19
+ telemetryProps.includeOneDriveSites = typeof args.options.includeOneDriveSites !== 'undefined';
20
+ telemetryProps.deleted = typeof args.options.deleted !== 'undefined';
21
+ telemetryProps.siteType = args.options.type || 'TeamSite';
20
22
  return telemetryProps;
21
23
  }
22
24
  defaultProperties() {
23
25
  return ['Title', 'Url'];
24
26
  }
25
27
  commandAction(logger, args, cb) {
26
- const siteType = args.options.type || 'TeamSite';
27
- const webTemplate = siteType === 'TeamSite' ? 'GROUP#0' : 'SITEPAGEPUBLISHING#0';
28
- let spoAdminUrl;
28
+ const webTemplate = this.getWebTemplateId(args.options);
29
+ const includeOneDriveSites = args.options.includeOneDriveSites || false;
30
+ const personalSite = includeOneDriveSites === false ? '0' : '1';
31
+ let spoAdminUrl = '';
29
32
  utils_1.spo
30
33
  .getSpoAdminUrl(logger, this.debug)
31
34
  .then((_spoAdminUrl) => {
@@ -34,19 +37,19 @@ class SpoSiteListCommand extends SpoCommand_1.default {
34
37
  logger.logToStderr(`Retrieving list of site collections...`);
35
38
  }
36
39
  this.allSites = [];
37
- return this.getAllSites(spoAdminUrl, utils_1.formatting.escapeXml(args.options.filter || ''), '0', webTemplate, undefined, args.options.deleted, logger);
40
+ return this.getAllSites(spoAdminUrl, utils_1.formatting.escapeXml(args.options.filter || ''), '0', personalSite, webTemplate, undefined, args.options.deleted, logger);
38
41
  })
39
42
  .then(_ => {
40
43
  logger.log(this.allSites);
41
44
  cb();
42
45
  }, (err) => this.handleRejectedPromise(err, logger, cb));
43
46
  }
44
- getAllSites(spoAdminUrl, filter, startIndex, webTemplate, formDigest, deleted, logger) {
47
+ getAllSites(spoAdminUrl, filter, startIndex, personalSite, webTemplate, formDigest, deleted, logger) {
45
48
  return new Promise((resolve, reject) => {
46
49
  utils_1.spo
47
50
  .ensureFormDigest(spoAdminUrl, logger, formDigest, this.debug)
48
51
  .then((res) => {
49
- let requestBody = `<Request AddExpandoFieldTypeSuffix="true" SchemaVersion="15.0.0.0" LibraryVersion="16.0.0.0" ApplicationName="${config_1.default.applicationName}" xmlns="http://schemas.microsoft.com/sharepoint/clientquery/2009"><Actions><ObjectPath Id="2" ObjectPathId="1" /><ObjectPath Id="4" ObjectPathId="3" /><Query Id="5" ObjectPathId="3"><Query SelectAllProperties="true"><Properties /></Query><ChildItemQuery SelectAllProperties="true"><Properties /></ChildItemQuery></Query></Actions><ObjectPaths><Constructor Id="1" TypeId="{268004ae-ef6b-4e9b-8425-127220d84719}" /><Method Id="3" ParentId="1" Name="GetSitePropertiesFromSharePointByFilters"><Parameters><Parameter TypeId="{b92aeee2-c92c-4b67-abcc-024e471bc140}"><Property Name="Filter" Type="String">${filter}</Property><Property Name="IncludeDetail" Type="Boolean">false</Property><Property Name="IncludePersonalSite" Type="Enum">0</Property><Property Name="StartIndex" Type="String">${startIndex}</Property><Property Name="Template" Type="String">${webTemplate}</Property></Parameter></Parameters></Method></ObjectPaths></Request>`;
52
+ let requestBody = `<Request AddExpandoFieldTypeSuffix="true" SchemaVersion="15.0.0.0" LibraryVersion="16.0.0.0" ApplicationName="${config_1.default.applicationName}" xmlns="http://schemas.microsoft.com/sharepoint/clientquery/2009"><Actions><ObjectPath Id="2" ObjectPathId="1" /><ObjectPath Id="4" ObjectPathId="3" /><Query Id="5" ObjectPathId="3"><Query SelectAllProperties="true"><Properties /></Query><ChildItemQuery SelectAllProperties="true"><Properties /></ChildItemQuery></Query></Actions><ObjectPaths><Constructor Id="1" TypeId="{268004ae-ef6b-4e9b-8425-127220d84719}" /><Method Id="3" ParentId="1" Name="GetSitePropertiesFromSharePointByFilters"><Parameters><Parameter TypeId="{b92aeee2-c92c-4b67-abcc-024e471bc140}"><Property Name="Filter" Type="String">${filter}</Property><Property Name="IncludeDetail" Type="Boolean">false</Property><Property Name="IncludePersonalSite" Type="Enum">${personalSite}</Property><Property Name="StartIndex" Type="String">${startIndex}</Property><Property Name="Template" Type="String">${webTemplate}</Property></Parameter></Parameters></Method></ObjectPaths></Request>`;
50
53
  if (deleted) {
51
54
  requestBody = `<Request AddExpandoFieldTypeSuffix="true" SchemaVersion="15.0.0.0" LibraryVersion="16.0.0.0" ApplicationName="${config_1.default.applicationName}" xmlns="http://schemas.microsoft.com/sharepoint/clientquery/2009"><Actions><ObjectPath Id="4" ObjectPathId="3" /><ObjectPath Id="6" ObjectPathId="5" /><Query Id="7" ObjectPathId="5"><Query SelectAllProperties="true"><Properties><Property Name="NextStartIndexFromSharePoint" ScalarProperty="true" /></Properties></Query><ChildItemQuery SelectAllProperties="true"><Properties /></ChildItemQuery></Query></Actions><ObjectPaths><Constructor Id="3" TypeId="{268004ae-ef6b-4e9b-8425-127220d84719}" /><Method Id="5" ParentId="3" Name="GetDeletedSitePropertiesFromSharePoint"><Parameters><Parameter Type="String">${startIndex}</Parameter></Parameters></Method></ObjectPaths></Request>`;
52
55
  }
@@ -71,7 +74,7 @@ class SpoSiteListCommand extends SpoCommand_1.default {
71
74
  this.allSites.push(...sites._Child_Items_);
72
75
  if (sites.NextStartIndexFromSharePoint) {
73
76
  this
74
- .getAllSites(spoAdminUrl, filter, sites.NextStartIndexFromSharePoint, webTemplate, formDigest, deleted, logger)
77
+ .getAllSites(spoAdminUrl, filter, sites.NextStartIndexFromSharePoint, personalSite, webTemplate, formDigest, deleted, logger)
75
78
  .then(_ => resolve(), err => reject(err));
76
79
  }
77
80
  else {
@@ -81,15 +84,48 @@ class SpoSiteListCommand extends SpoCommand_1.default {
81
84
  }, err => reject(err));
82
85
  });
83
86
  }
87
+ /*
88
+ The type property currently defaults to Teamsite.
89
+ It makes more sense to default to All. Certainly after adding the 'includeOneDriveSites' option.
90
+ Changing this will be a breaking change. We'll remove the default the next major version.
91
+ */
92
+ getWebTemplateId(options) {
93
+ if (options.webTemplate) {
94
+ return options.webTemplate;
95
+ }
96
+ if (options.includeOneDriveSites) {
97
+ return '';
98
+ }
99
+ let siteType = options.type;
100
+ if (!siteType) {
101
+ siteType = 'TeamSite';
102
+ }
103
+ switch (siteType) {
104
+ case "TeamSite":
105
+ return 'GROUP#0';
106
+ case "CommunicationSite":
107
+ return 'SITEPAGEPUBLISHING#0';
108
+ default:
109
+ return '';
110
+ }
111
+ }
84
112
  options() {
85
113
  const options = [
86
114
  {
87
- option: '--type [type]',
88
- autocomplete: ['TeamSite', 'CommunicationSite']
115
+ option: '-t, --type [type]',
116
+ // To not introduce a breaking change, 'All' has been added.
117
+ // You should use all when using '--includeOneDriveSites'
118
+ autocomplete: ['TeamSite', 'CommunicationSite', 'All']
119
+ },
120
+ {
121
+ option: '--webTemplate [webTemplate]'
89
122
  },
90
123
  {
91
124
  option: '-f, --filter [filter]'
92
125
  },
126
+ {
127
+ option: '--includeOneDriveSites'
128
+ },
93
129
  {
94
130
  option: '--deleted'
95
131
  }
@@ -98,11 +134,17 @@ class SpoSiteListCommand extends SpoCommand_1.default {
98
134
  return options.concat(parentOptions);
99
135
  }
100
136
  validate(args) {
101
- if (args.options.type) {
102
- if (args.options.type !== 'TeamSite' &&
103
- args.options.type !== 'CommunicationSite') {
104
- return `${args.options.type} is not a valid modern site type. Allowed types are TeamSite and CommunicationSite`;
105
- }
137
+ if (args.options.type && args.options.webTemplate) {
138
+ return 'Specify either type or webTemplate, but not both';
139
+ }
140
+ const typeValues = ['TeamSite', 'CommunicationSite', 'All'];
141
+ if (args.options.type &&
142
+ typeValues.indexOf(args.options.type) < 0) {
143
+ return `${args.options.type} is not a valid value for the type option. Allowed values are ${typeValues.join('|')}`;
144
+ }
145
+ if (args.options.includeOneDriveSites
146
+ && (!args.options.type || args.options.type !== 'All')) {
147
+ return 'When using includeOneDriveSites, specify All as value for type';
106
148
  }
107
149
  return true;
108
150
  }
@@ -16,15 +16,33 @@ m365 aad o365group restore [options]
16
16
 
17
17
  ## Options
18
18
 
19
- `-i, --id <id>`
20
- : The ID of the Microsoft 365 Group to restore
19
+ `-i, --id [id]`
20
+ : The ID of the Microsoft 365 Group to restore. Specify either `id`, `displayName` or `mailNickname` but not multiple.
21
+
22
+ `-d, --displayName [displayName]`
23
+ : Display name for the Microsoft 365 Group to restore. Specify either `id`, `displayName` or `mailNickname` but not multiple.
24
+
25
+ `-m, --mailNickname [mailNickname]`
26
+ : Name of the group e-mail (part before the @). Specify either `id`, `displayName` or `mailNickname` but not multiple.
21
27
 
22
28
  --8<-- "docs/cmd/_global.md"
23
29
 
24
30
  ## Examples
25
31
 
26
- Restores the Microsoft 365 Group with id _28beab62-7540-4db1-a23f-29a6018a3848_
32
+ Restores the Microsoft 365 Group with specific ID
27
33
 
28
34
  ```sh
29
35
  m365 aad o365group recyclebinitem restore --id 28beab62-7540-4db1-a23f-29a6018a3848
30
36
  ```
37
+
38
+ Restores the Microsoft 365 Group with specific name
39
+
40
+ ```sh
41
+ m365 aad o365group recyclebinitem restore --displayName "My Group"
42
+ ```
43
+
44
+ Restores the Microsoft 365 Group with specific mail nickname
45
+
46
+ ```sh
47
+ m365 aad o365group recyclebinitem restore --mailNickname "Mygroup"
48
+ ```
@@ -24,6 +24,9 @@ m365 spo site classic list [options]
24
24
  !!! important
25
25
  To use this command you have to have permissions to access the tenant admin site.
26
26
 
27
+ !!! important
28
+ This command is deprecated. Please use [spo site list](./site-list.md) instead.
29
+
27
30
  ## Remarks
28
31
 
29
32
  Using the `-t, --webTemplate` option you can specify which sites you want to retrieve. For example, to get sites with the `STS#0` as their web template, use `--webTemplate STS#0` as the option.
@@ -10,12 +10,18 @@ m365 spo site list [options]
10
10
 
11
11
  ## Options
12
12
 
13
- `--type [type]`
14
- : type of modern sites to list. Allowed values `TeamSite,CommunicationSite`, default `TeamSite`
13
+ `-t, --type [type]`
14
+ : type of sites to list. Allowed values are `TeamSite,CommunicationSite,All`. The default value is `TeamSite`.
15
+
16
+ `--webTemplate [webTemplate]`
17
+ : types of sites to list. To be used with values like `GROUP#0` and `SITEPAGEPUBLISHING#0`. Specify either `type` or `webTemplate`, but not both.
15
18
 
16
19
  `-f, --filter [filter]`
17
20
  : filter to apply when retrieving sites
18
21
 
22
+ `--includeOneDriveSites`
23
+ : use this switch to include OneDrive sites in the result when retrieving sites. Can only be used in combination with `type` All.
24
+
19
25
  `--deleted`
20
26
  : use this switch to only return deleted sites
21
27
 
@@ -32,30 +38,36 @@ When using the text output type (default), the command lists only the values of
32
38
 
33
39
  ## Examples
34
40
 
35
- List all modern team sites in the currently connected tenant
41
+ List all sites in the currently connected tenant
36
42
 
37
43
  ```sh
38
- m365 spo site list
44
+ m365 spo site list --type All
39
45
  ```
40
46
 
41
- List all modern team sites in the currently connected tenant
47
+ List all group connected team sites in the currently connected tenant
42
48
 
43
49
  ```sh
44
50
  m365 spo site list --type TeamSite
45
51
  ```
46
52
 
47
- List all modern communication sites in the currently connected tenant
53
+ List all communication sites in the currently connected tenant
48
54
 
49
55
  ```sh
50
56
  m365 spo site list --type CommunicationSite
51
57
  ```
52
58
 
53
- List all modern team sites that contain _project_ in the URL
59
+ List all group connected team sites that contain _project_ in the URL
54
60
 
55
61
  ```sh
56
62
  m365 spo site list --type TeamSite --filter "Url -like 'project'"
57
63
  ```
58
64
 
65
+ List all sites in the currently connected tenant including OneDrive sites
66
+
67
+ ```sh
68
+ m365 spo site list --type All --includeOneDriveSites
69
+ ```
70
+
59
71
  List all deleted sites in the tenant you're logged in to
60
72
 
61
73
  ```sh
@@ -9,8 +9,8 @@
9
9
  "version": "6.0.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "@azure/msal-node": "^1.9.1",
13
- "@xmldom/xmldom": "^0.7.5",
12
+ "@azure/msal-node": "^1.11.0",
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",
@@ -19,7 +19,7 @@
19
19
  "axios": "^0.27.2",
20
20
  "chalk": "^4.1.2",
21
21
  "clipboardy": "^2.3.0",
22
- "csv-stringify": "^6.1.0",
22
+ "csv-stringify": "^6.2.0",
23
23
  "easy-table": "^1.2.0",
24
24
  "inquirer": "^8.2.4",
25
25
  "jmespath": "^0.16.0",
@@ -30,7 +30,7 @@
30
30
  "open": "^8.4.0",
31
31
  "semver": "^7.3.7",
32
32
  "strip-json-comments": "^3.1.1",
33
- "typescript": "^4.7.3",
33
+ "typescript": "^4.7.4",
34
34
  "update-notifier": "^5.1.0",
35
35
  "uuid": "^8.3.2"
36
36
  },
@@ -40,23 +40,23 @@
40
40
  "microsoft365": "dist/index.js"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/microsoft-graph-types": "^2.20.0",
43
+ "@microsoft/microsoft-graph-types": "^2.22.0",
44
44
  "@types/adm-zip": "^0.5.0",
45
45
  "@types/inquirer": "^8.2.1",
46
46
  "@types/jmespath": "^0.15.0",
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.38",
51
- "@types/node-forge": "^1.0.2",
52
- "@types/semver": "^7.3.9",
53
- "@types/sinon": "^10.0.11",
50
+ "@types/node": "^16.11.43",
51
+ "@types/node-forge": "^1.0.3",
52
+ "@types/semver": "^7.3.10",
53
+ "@types/sinon": "^10.0.12",
54
54
  "@types/update-notifier": "^5.1.0",
55
55
  "@types/uuid": "^8.3.4",
56
- "@typescript-eslint/eslint-plugin": "^5.27.1",
57
- "@typescript-eslint/parser": "^5.27.1",
56
+ "@typescript-eslint/eslint-plugin": "^5.30.5",
57
+ "@typescript-eslint/parser": "^5.30.5",
58
58
  "c8": "^7.11.3",
59
- "eslint": "^8.17.0",
59
+ "eslint": "^8.19.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": "6.4.0",
157
- "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-6.4.0.tgz",
158
- "integrity": "sha512-WZdgq9f9O8cbxGzdRwLLMM5xjmLJ2mdtuzgXeiGxIRkVVlJ9nZ6sWnDFKa2TX8j72UXD1IfL0p/RYNoTXYoGfg==",
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==",
159
159
  "engines": {
160
160
  "node": ">=0.8.0"
161
161
  }
162
162
  },
163
163
  "node_modules/@azure/msal-node": {
164
- "version": "1.9.1",
165
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.9.1.tgz",
166
- "integrity": "sha512-chr914ZuKPvKEW1JPNDRhgdrzbA9PkVknV+q01h+eVhFZvHfO0pIFoP4dOU96ZdBkMmdD5kAP1Snv1gAdVXMIg==",
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==",
167
167
  "dependencies": {
168
- "@azure/msal-common": "^6.4.0",
168
+ "@azure/msal-common": "^7.1.0",
169
169
  "jsonwebtoken": "^8.5.1",
170
170
  "uuid": "^8.3.0"
171
171
  },
@@ -272,9 +272,9 @@
272
272
  }
273
273
  },
274
274
  "node_modules/@microsoft/microsoft-graph-types": {
275
- "version": "2.20.0",
276
- "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.20.0.tgz",
277
- "integrity": "sha512-T1EPoYdH4124Rg+h261dvW2qAeSRAotHM/6lv10fDsYX4DWsppvresmfhGbPrLApK/lRTRj93bn4/Nwwmdv4Zg==",
275
+ "version": "2.22.0",
276
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.22.0.tgz",
277
+ "integrity": "sha512-iKc5L036hc/wu13DX5kGf//3/WqTAErAPTyYKG6zT3vG070xXaaP7PInODznfyZduhiOvavmrRlQb34ajeDTUA==",
278
278
  "dev": true
279
279
  },
280
280
  "node_modules/@microsoft/recognizers-text-data-types-timex-expression": {
@@ -531,9 +531,9 @@
531
531
  "dev": true
532
532
  },
533
533
  "node_modules/@types/node": {
534
- "version": "16.11.38",
535
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.38.tgz",
536
- "integrity": "sha512-hjO/0K140An3GWDw2HJfq7gko3wWeznbjXgg+rzPdVzhe198hp4x2i1dgveAOEiFKd8sOilAxzoSJiVv5P/CUg=="
534
+ "version": "16.11.43",
535
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.43.tgz",
536
+ "integrity": "sha512-GqWykok+3uocgfAJM8imbozrqLnPyTrpFlrryURQlw1EesPUCx5XxTiucWDSFF9/NUEXDuD4bnvHm8xfVGWTpQ=="
537
537
  },
538
538
  "node_modules/@types/node-fetch": {
539
539
  "version": "2.6.1",
@@ -558,24 +558,24 @@
558
558
  }
559
559
  },
560
560
  "node_modules/@types/node-forge": {
561
- "version": "1.0.2",
562
- "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.2.tgz",
563
- "integrity": "sha512-J1OkeZGaW0y9Y7xD49Ja8O82B9l5nZDeoYuGWqIOYPAf9LR+xF23k9ILdzv8dH+2H033fx3D5oiA0GlmicI+sg==",
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==",
564
564
  "dev": true,
565
565
  "dependencies": {
566
566
  "@types/node": "*"
567
567
  }
568
568
  },
569
569
  "node_modules/@types/semver": {
570
- "version": "7.3.9",
571
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.9.tgz",
572
- "integrity": "sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ==",
570
+ "version": "7.3.10",
571
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.10.tgz",
572
+ "integrity": "sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==",
573
573
  "dev": true
574
574
  },
575
575
  "node_modules/@types/sinon": {
576
- "version": "10.0.11",
577
- "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.11.tgz",
578
- "integrity": "sha512-dmZsHlBsKUtBpHriNjlK0ndlvEh8dcb9uV9Afsbt89QIyydpC7NcR+nWlAhASfy3GHnxTl4FX/aKE7XZUt/B4g==",
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==",
579
579
  "dev": true,
580
580
  "dependencies": {
581
581
  "@types/sinonjs__fake-timers": "*"
@@ -626,14 +626,14 @@
626
626
  "integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
627
627
  },
628
628
  "node_modules/@typescript-eslint/eslint-plugin": {
629
- "version": "5.27.1",
630
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz",
631
- "integrity": "sha512-6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw==",
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==",
632
632
  "dev": true,
633
633
  "dependencies": {
634
- "@typescript-eslint/scope-manager": "5.27.1",
635
- "@typescript-eslint/type-utils": "5.27.1",
636
- "@typescript-eslint/utils": "5.27.1",
634
+ "@typescript-eslint/scope-manager": "5.30.5",
635
+ "@typescript-eslint/type-utils": "5.30.5",
636
+ "@typescript-eslint/utils": "5.30.5",
637
637
  "debug": "^4.3.4",
638
638
  "functional-red-black-tree": "^1.0.1",
639
639
  "ignore": "^5.2.0",
@@ -659,14 +659,14 @@
659
659
  }
660
660
  },
661
661
  "node_modules/@typescript-eslint/parser": {
662
- "version": "5.27.1",
663
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.27.1.tgz",
664
- "integrity": "sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==",
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==",
665
665
  "dev": true,
666
666
  "dependencies": {
667
- "@typescript-eslint/scope-manager": "5.27.1",
668
- "@typescript-eslint/types": "5.27.1",
669
- "@typescript-eslint/typescript-estree": "5.27.1",
667
+ "@typescript-eslint/scope-manager": "5.30.5",
668
+ "@typescript-eslint/types": "5.30.5",
669
+ "@typescript-eslint/typescript-estree": "5.30.5",
670
670
  "debug": "^4.3.4"
671
671
  },
672
672
  "engines": {
@@ -686,13 +686,13 @@
686
686
  }
687
687
  },
688
688
  "node_modules/@typescript-eslint/scope-manager": {
689
- "version": "5.27.1",
690
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz",
691
- "integrity": "sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==",
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==",
692
692
  "dev": true,
693
693
  "dependencies": {
694
- "@typescript-eslint/types": "5.27.1",
695
- "@typescript-eslint/visitor-keys": "5.27.1"
694
+ "@typescript-eslint/types": "5.30.5",
695
+ "@typescript-eslint/visitor-keys": "5.30.5"
696
696
  },
697
697
  "engines": {
698
698
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -703,12 +703,12 @@
703
703
  }
704
704
  },
705
705
  "node_modules/@typescript-eslint/type-utils": {
706
- "version": "5.27.1",
707
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz",
708
- "integrity": "sha512-+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw==",
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==",
709
709
  "dev": true,
710
710
  "dependencies": {
711
- "@typescript-eslint/utils": "5.27.1",
711
+ "@typescript-eslint/utils": "5.30.5",
712
712
  "debug": "^4.3.4",
713
713
  "tsutils": "^3.21.0"
714
714
  },
@@ -729,9 +729,9 @@
729
729
  }
730
730
  },
731
731
  "node_modules/@typescript-eslint/types": {
732
- "version": "5.27.1",
733
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.27.1.tgz",
734
- "integrity": "sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==",
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==",
735
735
  "dev": true,
736
736
  "engines": {
737
737
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -742,13 +742,13 @@
742
742
  }
743
743
  },
744
744
  "node_modules/@typescript-eslint/typescript-estree": {
745
- "version": "5.27.1",
746
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz",
747
- "integrity": "sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==",
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==",
748
748
  "dev": true,
749
749
  "dependencies": {
750
- "@typescript-eslint/types": "5.27.1",
751
- "@typescript-eslint/visitor-keys": "5.27.1",
750
+ "@typescript-eslint/types": "5.30.5",
751
+ "@typescript-eslint/visitor-keys": "5.30.5",
752
752
  "debug": "^4.3.4",
753
753
  "globby": "^11.1.0",
754
754
  "is-glob": "^4.0.3",
@@ -769,15 +769,15 @@
769
769
  }
770
770
  },
771
771
  "node_modules/@typescript-eslint/utils": {
772
- "version": "5.27.1",
773
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.27.1.tgz",
774
- "integrity": "sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==",
772
+ "version": "5.30.5",
773
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz",
774
+ "integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==",
775
775
  "dev": true,
776
776
  "dependencies": {
777
777
  "@types/json-schema": "^7.0.9",
778
- "@typescript-eslint/scope-manager": "5.27.1",
779
- "@typescript-eslint/types": "5.27.1",
780
- "@typescript-eslint/typescript-estree": "5.27.1",
778
+ "@typescript-eslint/scope-manager": "5.30.5",
779
+ "@typescript-eslint/types": "5.30.5",
780
+ "@typescript-eslint/typescript-estree": "5.30.5",
781
781
  "eslint-scope": "^5.1.1",
782
782
  "eslint-utils": "^3.0.0"
783
783
  },
@@ -793,12 +793,12 @@
793
793
  }
794
794
  },
795
795
  "node_modules/@typescript-eslint/visitor-keys": {
796
- "version": "5.27.1",
797
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz",
798
- "integrity": "sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==",
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==",
799
799
  "dev": true,
800
800
  "dependencies": {
801
- "@typescript-eslint/types": "5.27.1",
801
+ "@typescript-eslint/types": "5.30.5",
802
802
  "eslint-visitor-keys": "^3.3.0"
803
803
  },
804
804
  "engines": {
@@ -816,9 +816,9 @@
816
816
  "dev": true
817
817
  },
818
818
  "node_modules/@xmldom/xmldom": {
819
- "version": "0.7.5",
820
- "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz",
821
- "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==",
819
+ "version": "0.8.2",
820
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.2.tgz",
821
+ "integrity": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ==",
822
822
  "engines": {
823
823
  "node": ">=10.0.0"
824
824
  }
@@ -870,6 +870,14 @@
870
870
  "xpath": "^0.0.32"
871
871
  }
872
872
  },
873
+ "node_modules/adaptive-expressions/node_modules/@xmldom/xmldom": {
874
+ "version": "0.7.5",
875
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz",
876
+ "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==",
877
+ "engines": {
878
+ "node": ">=10.0.0"
879
+ }
880
+ },
873
881
  "node_modules/adaptivecards": {
874
882
  "version": "2.10.0",
875
883
  "resolved": "https://registry.npmjs.org/adaptivecards/-/adaptivecards-2.10.0.tgz",
@@ -1661,9 +1669,9 @@
1661
1669
  }
1662
1670
  },
1663
1671
  "node_modules/csv-stringify": {
1664
- "version": "6.1.0",
1665
- "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.1.0.tgz",
1666
- "integrity": "sha512-rdBqiy77TczvhGlpLHyoph2adMs6WMnmQY4PBRqeIWykI1FLnVCppnRdso8faGj2+eN7izk9YlbFyZkOrL9rAQ=="
1672
+ "version": "6.2.0",
1673
+ "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.2.0.tgz",
1674
+ "integrity": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA=="
1667
1675
  },
1668
1676
  "node_modules/d3-format": {
1669
1677
  "version": "1.4.5",
@@ -1977,9 +1985,9 @@
1977
1985
  }
1978
1986
  },
1979
1987
  "node_modules/eslint": {
1980
- "version": "8.17.0",
1981
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.17.0.tgz",
1982
- "integrity": "sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==",
1988
+ "version": "8.19.0",
1989
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
1990
+ "integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
1983
1991
  "dev": true,
1984
1992
  "dependencies": {
1985
1993
  "@eslint/eslintrc": "^1.3.0",
@@ -5275,9 +5283,9 @@
5275
5283
  }
5276
5284
  },
5277
5285
  "node_modules/typescript": {
5278
- "version": "4.7.3",
5279
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.3.tgz",
5280
- "integrity": "sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==",
5286
+ "version": "4.7.4",
5287
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz",
5288
+ "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==",
5281
5289
  "bin": {
5282
5290
  "tsc": "bin/tsc",
5283
5291
  "tsserver": "bin/tsserver"
@@ -5734,16 +5742,16 @@
5734
5742
  }
5735
5743
  },
5736
5744
  "@azure/msal-common": {
5737
- "version": "6.4.0",
5738
- "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-6.4.0.tgz",
5739
- "integrity": "sha512-WZdgq9f9O8cbxGzdRwLLMM5xjmLJ2mdtuzgXeiGxIRkVVlJ9nZ6sWnDFKa2TX8j72UXD1IfL0p/RYNoTXYoGfg=="
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=="
5740
5748
  },
5741
5749
  "@azure/msal-node": {
5742
- "version": "1.9.1",
5743
- "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.9.1.tgz",
5744
- "integrity": "sha512-chr914ZuKPvKEW1JPNDRhgdrzbA9PkVknV+q01h+eVhFZvHfO0pIFoP4dOU96ZdBkMmdD5kAP1Snv1gAdVXMIg==",
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==",
5745
5753
  "requires": {
5746
- "@azure/msal-common": "^6.4.0",
5754
+ "@azure/msal-common": "^7.1.0",
5747
5755
  "jsonwebtoken": "^8.5.1",
5748
5756
  "uuid": "^8.3.0"
5749
5757
  }
@@ -5834,9 +5842,9 @@
5834
5842
  }
5835
5843
  },
5836
5844
  "@microsoft/microsoft-graph-types": {
5837
- "version": "2.20.0",
5838
- "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.20.0.tgz",
5839
- "integrity": "sha512-T1EPoYdH4124Rg+h261dvW2qAeSRAotHM/6lv10fDsYX4DWsppvresmfhGbPrLApK/lRTRj93bn4/Nwwmdv4Zg==",
5845
+ "version": "2.22.0",
5846
+ "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.22.0.tgz",
5847
+ "integrity": "sha512-iKc5L036hc/wu13DX5kGf//3/WqTAErAPTyYKG6zT3vG070xXaaP7PInODznfyZduhiOvavmrRlQb34ajeDTUA==",
5840
5848
  "dev": true
5841
5849
  },
5842
5850
  "@microsoft/recognizers-text-data-types-timex-expression": {
@@ -6051,9 +6059,9 @@
6051
6059
  "dev": true
6052
6060
  },
6053
6061
  "@types/node": {
6054
- "version": "16.11.38",
6055
- "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.38.tgz",
6056
- "integrity": "sha512-hjO/0K140An3GWDw2HJfq7gko3wWeznbjXgg+rzPdVzhe198hp4x2i1dgveAOEiFKd8sOilAxzoSJiVv5P/CUg=="
6062
+ "version": "16.11.43",
6063
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.43.tgz",
6064
+ "integrity": "sha512-GqWykok+3uocgfAJM8imbozrqLnPyTrpFlrryURQlw1EesPUCx5XxTiucWDSFF9/NUEXDuD4bnvHm8xfVGWTpQ=="
6057
6065
  },
6058
6066
  "@types/node-fetch": {
6059
6067
  "version": "2.6.1",
@@ -6077,24 +6085,24 @@
6077
6085
  }
6078
6086
  },
6079
6087
  "@types/node-forge": {
6080
- "version": "1.0.2",
6081
- "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.0.2.tgz",
6082
- "integrity": "sha512-J1OkeZGaW0y9Y7xD49Ja8O82B9l5nZDeoYuGWqIOYPAf9LR+xF23k9ILdzv8dH+2H033fx3D5oiA0GlmicI+sg==",
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==",
6083
6091
  "dev": true,
6084
6092
  "requires": {
6085
6093
  "@types/node": "*"
6086
6094
  }
6087
6095
  },
6088
6096
  "@types/semver": {
6089
- "version": "7.3.9",
6090
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.9.tgz",
6091
- "integrity": "sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ==",
6097
+ "version": "7.3.10",
6098
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.10.tgz",
6099
+ "integrity": "sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==",
6092
6100
  "dev": true
6093
6101
  },
6094
6102
  "@types/sinon": {
6095
- "version": "10.0.11",
6096
- "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.11.tgz",
6097
- "integrity": "sha512-dmZsHlBsKUtBpHriNjlK0ndlvEh8dcb9uV9Afsbt89QIyydpC7NcR+nWlAhASfy3GHnxTl4FX/aKE7XZUt/B4g==",
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==",
6098
6106
  "dev": true,
6099
6107
  "requires": {
6100
6108
  "@types/sinonjs__fake-timers": "*"
@@ -6145,14 +6153,14 @@
6145
6153
  "integrity": "sha512-bVy7s0nvaR5D1mT1a8ZkByHWNOGb6Vn4yi5TWhEdmyKlAG+08SA7Md6+jH+tYmMLueAwNeWvHHpeKrr6S4c4BA=="
6146
6154
  },
6147
6155
  "@typescript-eslint/eslint-plugin": {
6148
- "version": "5.27.1",
6149
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.27.1.tgz",
6150
- "integrity": "sha512-6dM5NKT57ZduNnJfpY81Phe9nc9wolnMCnknb1im6brWi1RYv84nbMS3olJa27B6+irUVV1X/Wb+Am0FjJdGFw==",
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==",
6151
6159
  "dev": true,
6152
6160
  "requires": {
6153
- "@typescript-eslint/scope-manager": "5.27.1",
6154
- "@typescript-eslint/type-utils": "5.27.1",
6155
- "@typescript-eslint/utils": "5.27.1",
6161
+ "@typescript-eslint/scope-manager": "5.30.5",
6162
+ "@typescript-eslint/type-utils": "5.30.5",
6163
+ "@typescript-eslint/utils": "5.30.5",
6156
6164
  "debug": "^4.3.4",
6157
6165
  "functional-red-black-tree": "^1.0.1",
6158
6166
  "ignore": "^5.2.0",
@@ -6162,52 +6170,52 @@
6162
6170
  }
6163
6171
  },
6164
6172
  "@typescript-eslint/parser": {
6165
- "version": "5.27.1",
6166
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.27.1.tgz",
6167
- "integrity": "sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==",
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==",
6168
6176
  "dev": true,
6169
6177
  "requires": {
6170
- "@typescript-eslint/scope-manager": "5.27.1",
6171
- "@typescript-eslint/types": "5.27.1",
6172
- "@typescript-eslint/typescript-estree": "5.27.1",
6178
+ "@typescript-eslint/scope-manager": "5.30.5",
6179
+ "@typescript-eslint/types": "5.30.5",
6180
+ "@typescript-eslint/typescript-estree": "5.30.5",
6173
6181
  "debug": "^4.3.4"
6174
6182
  }
6175
6183
  },
6176
6184
  "@typescript-eslint/scope-manager": {
6177
- "version": "5.27.1",
6178
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.27.1.tgz",
6179
- "integrity": "sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==",
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==",
6180
6188
  "dev": true,
6181
6189
  "requires": {
6182
- "@typescript-eslint/types": "5.27.1",
6183
- "@typescript-eslint/visitor-keys": "5.27.1"
6190
+ "@typescript-eslint/types": "5.30.5",
6191
+ "@typescript-eslint/visitor-keys": "5.30.5"
6184
6192
  }
6185
6193
  },
6186
6194
  "@typescript-eslint/type-utils": {
6187
- "version": "5.27.1",
6188
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.27.1.tgz",
6189
- "integrity": "sha512-+UC1vVUWaDHRnC2cQrCJ4QtVjpjjCgjNFpg8b03nERmkHv9JV9X5M19D7UFMd+/G7T/sgFwX2pGmWK38rqyvXw==",
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==",
6190
6198
  "dev": true,
6191
6199
  "requires": {
6192
- "@typescript-eslint/utils": "5.27.1",
6200
+ "@typescript-eslint/utils": "5.30.5",
6193
6201
  "debug": "^4.3.4",
6194
6202
  "tsutils": "^3.21.0"
6195
6203
  }
6196
6204
  },
6197
6205
  "@typescript-eslint/types": {
6198
- "version": "5.27.1",
6199
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.27.1.tgz",
6200
- "integrity": "sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==",
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==",
6201
6209
  "dev": true
6202
6210
  },
6203
6211
  "@typescript-eslint/typescript-estree": {
6204
- "version": "5.27.1",
6205
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.1.tgz",
6206
- "integrity": "sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==",
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==",
6207
6215
  "dev": true,
6208
6216
  "requires": {
6209
- "@typescript-eslint/types": "5.27.1",
6210
- "@typescript-eslint/visitor-keys": "5.27.1",
6217
+ "@typescript-eslint/types": "5.30.5",
6218
+ "@typescript-eslint/visitor-keys": "5.30.5",
6211
6219
  "debug": "^4.3.4",
6212
6220
  "globby": "^11.1.0",
6213
6221
  "is-glob": "^4.0.3",
@@ -6216,26 +6224,26 @@
6216
6224
  }
6217
6225
  },
6218
6226
  "@typescript-eslint/utils": {
6219
- "version": "5.27.1",
6220
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.27.1.tgz",
6221
- "integrity": "sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==",
6227
+ "version": "5.30.5",
6228
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz",
6229
+ "integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==",
6222
6230
  "dev": true,
6223
6231
  "requires": {
6224
6232
  "@types/json-schema": "^7.0.9",
6225
- "@typescript-eslint/scope-manager": "5.27.1",
6226
- "@typescript-eslint/types": "5.27.1",
6227
- "@typescript-eslint/typescript-estree": "5.27.1",
6233
+ "@typescript-eslint/scope-manager": "5.30.5",
6234
+ "@typescript-eslint/types": "5.30.5",
6235
+ "@typescript-eslint/typescript-estree": "5.30.5",
6228
6236
  "eslint-scope": "^5.1.1",
6229
6237
  "eslint-utils": "^3.0.0"
6230
6238
  }
6231
6239
  },
6232
6240
  "@typescript-eslint/visitor-keys": {
6233
- "version": "5.27.1",
6234
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.1.tgz",
6235
- "integrity": "sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==",
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==",
6236
6244
  "dev": true,
6237
6245
  "requires": {
6238
- "@typescript-eslint/types": "5.27.1",
6246
+ "@typescript-eslint/types": "5.30.5",
6239
6247
  "eslint-visitor-keys": "^3.3.0"
6240
6248
  }
6241
6249
  },
@@ -6246,9 +6254,9 @@
6246
6254
  "dev": true
6247
6255
  },
6248
6256
  "@xmldom/xmldom": {
6249
- "version": "0.7.5",
6250
- "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz",
6251
- "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="
6257
+ "version": "0.8.2",
6258
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.2.tgz",
6259
+ "integrity": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ=="
6252
6260
  },
6253
6261
  "acorn": {
6254
6262
  "version": "8.7.1",
@@ -6287,6 +6295,13 @@
6287
6295
  "lru-cache": "^5.1.1",
6288
6296
  "uuid": "^8.3.2",
6289
6297
  "xpath": "^0.0.32"
6298
+ },
6299
+ "dependencies": {
6300
+ "@xmldom/xmldom": {
6301
+ "version": "0.7.5",
6302
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz",
6303
+ "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="
6304
+ }
6290
6305
  }
6291
6306
  },
6292
6307
  "adaptivecards": {
@@ -6868,9 +6883,9 @@
6868
6883
  "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
6869
6884
  },
6870
6885
  "csv-stringify": {
6871
- "version": "6.1.0",
6872
- "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.1.0.tgz",
6873
- "integrity": "sha512-rdBqiy77TczvhGlpLHyoph2adMs6WMnmQY4PBRqeIWykI1FLnVCppnRdso8faGj2+eN7izk9YlbFyZkOrL9rAQ=="
6886
+ "version": "6.2.0",
6887
+ "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.2.0.tgz",
6888
+ "integrity": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA=="
6874
6889
  },
6875
6890
  "d3-format": {
6876
6891
  "version": "1.4.5",
@@ -7111,9 +7126,9 @@
7111
7126
  "dev": true
7112
7127
  },
7113
7128
  "eslint": {
7114
- "version": "8.17.0",
7115
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.17.0.tgz",
7116
- "integrity": "sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==",
7129
+ "version": "8.19.0",
7130
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
7131
+ "integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
7117
7132
  "dev": true,
7118
7133
  "requires": {
7119
7134
  "@eslint/eslintrc": "^1.3.0",
@@ -9508,9 +9523,9 @@
9508
9523
  }
9509
9524
  },
9510
9525
  "typescript": {
9511
- "version": "4.7.3",
9512
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.3.tgz",
9513
- "integrity": "sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA=="
9526
+ "version": "4.7.4",
9527
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz",
9528
+ "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ=="
9514
9529
  },
9515
9530
  "unbox-primitive": {
9516
9531
  "version": "1.0.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "6.0.0-beta.4d2402f",
3
+ "version": "6.0.0-beta.6a854fc",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -186,8 +186,8 @@
186
186
  "Wojcik, Adam <adam.wojcik.it@gmail.com>"
187
187
  ],
188
188
  "dependencies": {
189
- "@azure/msal-node": "^1.9.1",
190
- "@xmldom/xmldom": "^0.7.5",
189
+ "@azure/msal-node": "^1.11.0",
190
+ "@xmldom/xmldom": "^0.8.2",
191
191
  "adaptive-expressions": "^4.16.0",
192
192
  "adaptivecards": "^2.10.0",
193
193
  "adaptivecards-templating": "^2.2.0",
@@ -196,7 +196,7 @@
196
196
  "axios": "^0.27.2",
197
197
  "chalk": "^4.1.2",
198
198
  "clipboardy": "^2.3.0",
199
- "csv-stringify": "^6.1.0",
199
+ "csv-stringify": "^6.2.0",
200
200
  "easy-table": "^1.2.0",
201
201
  "inquirer": "^8.2.4",
202
202
  "jmespath": "^0.16.0",
@@ -207,28 +207,28 @@
207
207
  "open": "^8.4.0",
208
208
  "semver": "^7.3.7",
209
209
  "strip-json-comments": "^3.1.1",
210
- "typescript": "^4.7.3",
210
+ "typescript": "^4.7.4",
211
211
  "update-notifier": "^5.1.0",
212
212
  "uuid": "^8.3.2"
213
213
  },
214
214
  "devDependencies": {
215
- "@microsoft/microsoft-graph-types": "^2.20.0",
215
+ "@microsoft/microsoft-graph-types": "^2.22.0",
216
216
  "@types/adm-zip": "^0.5.0",
217
217
  "@types/inquirer": "^8.2.1",
218
218
  "@types/jmespath": "^0.15.0",
219
219
  "@types/json-to-ast": "^2.1.2",
220
220
  "@types/minimist": "^1.2.2",
221
221
  "@types/mocha": "^9.1.1",
222
- "@types/node": "^16.11.38",
223
- "@types/node-forge": "^1.0.2",
224
- "@types/semver": "^7.3.9",
225
- "@types/sinon": "^10.0.11",
222
+ "@types/node": "^16.11.43",
223
+ "@types/node-forge": "^1.0.3",
224
+ "@types/semver": "^7.3.10",
225
+ "@types/sinon": "^10.0.12",
226
226
  "@types/update-notifier": "^5.1.0",
227
227
  "@types/uuid": "^8.3.4",
228
- "@typescript-eslint/eslint-plugin": "^5.27.1",
229
- "@typescript-eslint/parser": "^5.27.1",
228
+ "@typescript-eslint/eslint-plugin": "^5.30.5",
229
+ "@typescript-eslint/parser": "^5.30.5",
230
230
  "c8": "^7.11.3",
231
- "eslint": "^8.17.0",
231
+ "eslint": "^8.19.0",
232
232
  "eslint-config-standard": "^17.0.0",
233
233
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
234
234
  "eslint-plugin-import": "^2.26.0",