@pnp/cli-microsoft365 7.7.0-beta.d874bca → 7.8.0-beta.3152fc7
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/.eslintrc.cjs +1 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/cli/cli.js +9 -4
- package/dist/m365/commands/setup.js +1 -7
- package/dist/m365/entra/commands/user/user-list.js +20 -7
- package/dist/m365/spe/commands/containertype/containertype-add.js +115 -0
- package/dist/m365/spe/commands.js +5 -0
- package/dist/m365/spfx/commands/spfx-doctor.js +197 -92
- package/dist/m365/spo/commands/listitem/listitem-set.js +9 -156
- package/dist/m365/spo/commands/page/page-add.js +6 -24
- package/dist/m365/spo/commands/page/page-set.js +16 -43
- package/dist/m365/spo/commands/site/site-apppermission-remove.js +8 -9
- package/dist/utils/prompt.js +2 -0
- package/dist/utils/spo.js +188 -0
- package/docs/docs/cmd/entra/user/user-list.mdx +36 -15
- package/docs/docs/cmd/spe/containertype/containertype-add.mdx +140 -0
- package/docs/docs/cmd/spfx/spfx-doctor.mdx +108 -2
- package/docs/docs/cmd/spo/site/site-apppermission-add.mdx +1 -1
- package/npm-shrinkwrap.json +140 -216
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.8.0-beta.3152fc7",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -245,18 +245,18 @@
|
|
|
245
245
|
"Zachariassen Laksafoss, Trygvi <trygvi.laksafoss@gmail.com>"
|
|
246
246
|
],
|
|
247
247
|
"dependencies": {
|
|
248
|
-
"@azure/msal-common": "^14.
|
|
249
|
-
"@azure/msal-node": "^2.6.
|
|
250
|
-
"@inquirer/confirm": "^
|
|
251
|
-
"@inquirer/input": "^1.
|
|
252
|
-
"@inquirer/select": "^
|
|
248
|
+
"@azure/msal-common": "^14.8.1",
|
|
249
|
+
"@azure/msal-node": "^2.6.6",
|
|
250
|
+
"@inquirer/confirm": "^3.1.1",
|
|
251
|
+
"@inquirer/input": "^2.1.1",
|
|
252
|
+
"@inquirer/select": "^2.2.1",
|
|
253
253
|
"@xmldom/xmldom": "^0.8.10",
|
|
254
254
|
"adaptive-expressions": "^4.22.1",
|
|
255
255
|
"adaptivecards": "^3.0.2",
|
|
256
256
|
"adaptivecards-templating": "^2.3.1",
|
|
257
|
-
"adm-zip": "^0.5.
|
|
257
|
+
"adm-zip": "^0.5.12",
|
|
258
258
|
"applicationinsights": "^2.9.5",
|
|
259
|
-
"axios": "^1.6.
|
|
259
|
+
"axios": "^1.6.8",
|
|
260
260
|
"chalk": "^5.3.0",
|
|
261
261
|
"clipboardy": "^4.0.0",
|
|
262
262
|
"configstore": "^6.0.0",
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"ora": "^8.0.1",
|
|
272
272
|
"semver": "^7.6.0",
|
|
273
273
|
"strip-json-comments": "^5.0.1",
|
|
274
|
-
"typescript": "^5.
|
|
274
|
+
"typescript": "^5.4.3",
|
|
275
275
|
"update-notifier": "^7.0.0",
|
|
276
276
|
"uuid": "^9.0.1",
|
|
277
277
|
"yaml": "^2.4.1"
|
|
@@ -284,20 +284,20 @@
|
|
|
284
284
|
"@types/json-to-ast": "^2.1.4",
|
|
285
285
|
"@types/minimist": "^1.2.5",
|
|
286
286
|
"@types/mocha": "^10.0.6",
|
|
287
|
-
"@types/node": "^20.
|
|
287
|
+
"@types/node": "^20.12.2",
|
|
288
288
|
"@types/node-forge": "^1.3.11",
|
|
289
289
|
"@types/omelette": "^0.4.4",
|
|
290
290
|
"@types/semver": "^7.5.8",
|
|
291
291
|
"@types/sinon": "^17.0.3",
|
|
292
292
|
"@types/update-notifier": "^6.0.8",
|
|
293
293
|
"@types/uuid": "^9.0.8",
|
|
294
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
295
|
-
"@typescript-eslint/parser": "^
|
|
296
|
-
"c8": "^
|
|
294
|
+
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
|
295
|
+
"@typescript-eslint/parser": "^7.5.0",
|
|
296
|
+
"c8": "^9.1.0",
|
|
297
297
|
"eslint": "^8.57.0",
|
|
298
298
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
299
299
|
"eslint-plugin-mocha": "^10.4.1",
|
|
300
|
-
"mocha": "^10.
|
|
300
|
+
"mocha": "^10.4.0",
|
|
301
301
|
"rimraf": "^5.0.5",
|
|
302
302
|
"sinon": "^17.0.0",
|
|
303
303
|
"source-map-support": "^0.5.21"
|