@pnp/cli-microsoft365 6.2.0-beta.01dcbcb → 6.2.0-beta.725ebd5
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.
- package/dist/m365/aad/commands/approleassignment/approleassignment-add.js +3 -0
- package/dist/m365/spo/commands/group/group-member-remove.js +78 -33
- package/dist/m365/spo/commands/list/list-retentionlabel-ensure.js +10 -2
- package/dist/m365/spo/commands/listitem/ListItemRetentionLabel.js +3 -0
- package/dist/m365/spo/commands/listitem/SiteRetentionLabel.js +3 -0
- package/dist/m365/spo/commands/listitem/listitem-retentionlabel-ensure.js +161 -0
- package/dist/m365/spo/commands.js +1 -0
- package/dist/m365/teams/commands/chat/chat-list.js +29 -7
- package/docs/docs/cmd/spo/file/file-sharinglink-list.md +2 -2
- package/docs/docs/cmd/spo/group/group-member-remove.md +24 -6
- package/docs/docs/cmd/spo/list/list-retentionlabel-ensure.md +8 -5
- package/docs/docs/cmd/spo/listitem/listitem-retentionlabel-ensure.md +58 -0
- package/docs/docs/cmd/teams/chat/chat-list.md +16 -4
- package/npm-shrinkwrap.json +182 -202
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.2.0-beta.
|
|
3
|
+
"version": "6.2.0-beta.725ebd5",
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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": "^
|
|
260
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
261
|
-
"@typescript-eslint/parser": "^5.
|
|
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.
|
|
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.
|
|
270
|
+
"mocha": "^10.2.0",
|
|
271
271
|
"rimraf": "^3.0.2",
|
|
272
|
-
"sinon": "^
|
|
272
|
+
"sinon": "^15.0.1",
|
|
273
273
|
"source-map-support": "^0.5.21"
|
|
274
274
|
}
|
|
275
275
|
}
|