@pnp/cli-microsoft365 10.0.0-beta.48e9f7d → 10.0.0-beta.787c5f1
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/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Auth.js +11 -12
- package/dist/Command.js +4 -1
- package/dist/cli/cli.js +14 -0
- package/dist/config.js +60 -5
- package/dist/m365/base/PowerAutomateCommand.js +1 -1
- package/dist/m365/base/SpoCommand.js +1 -1
- package/dist/m365/cli/commands/cli-consent.js +2 -2
- package/dist/m365/cli/commands/cli-doctor.js +2 -2
- package/dist/m365/cli/commands/cli-reconsent.js +2 -3
- package/dist/m365/cli/commands/config/config-set.js +12 -4
- package/dist/m365/commands/login.js +28 -9
- package/dist/m365/commands/setup.js +256 -33
- package/dist/m365/commands/setupPresets.js +2 -4
- package/dist/m365/connection/commands/connection-list.js +4 -4
- package/dist/m365/entra/commands/app/app-add.js +52 -288
- package/dist/m365/flow/commands/environment/environment-get.js +1 -1
- package/dist/m365/flow/commands/environment/environment-list.js +1 -1
- package/dist/m365/flow/commands/flow-disable.js +1 -1
- package/dist/m365/flow/commands/flow-enable.js +1 -1
- package/dist/m365/flow/commands/flow-export.js +17 -16
- package/dist/m365/flow/commands/flow-get.js +1 -1
- package/dist/m365/flow/commands/flow-list.js +1 -1
- package/dist/m365/flow/commands/flow-remove.js +1 -1
- package/dist/m365/flow/commands/owner/owner-ensure.js +1 -1
- package/dist/m365/flow/commands/owner/owner-list.js +1 -1
- package/dist/m365/flow/commands/owner/owner-remove.js +1 -1
- package/dist/m365/flow/commands/recyclebinitem/recyclebinitem-list.js +47 -0
- package/dist/m365/flow/commands/recyclebinitem/recyclebinitem-restore.js +48 -0
- package/dist/m365/flow/commands/run/run-cancel.js +1 -1
- package/dist/m365/flow/commands/run/run-get.js +1 -1
- package/dist/m365/flow/commands/run/run-list.js +1 -1
- package/dist/m365/flow/commands/run/run-resubmit.js +2 -2
- package/dist/m365/flow/commands.js +2 -0
- package/dist/m365/spo/commands/contenttype/contenttype-field-remove.js +8 -8
- package/dist/m365/spo/commands/contenttype/contenttype-field-set.js +2 -2
- package/dist/m365/spo/commands/file/file-roleassignment-add.js +17 -54
- package/dist/m365/spo/commands/file/file-roleassignment-remove.js +13 -40
- package/dist/m365/spo/commands/file/file-roleinheritance-break.js +5 -13
- package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +5 -13
- package/dist/m365/spo/commands/folder/folder-sharinglink-add.js +143 -0
- package/dist/m365/spo/commands/folder/folder-sharinglink-clear.js +111 -0
- package/dist/m365/spo/commands/folder/folder-sharinglink-remove.js +95 -0
- package/dist/m365/spo/commands/list/list-get.js +17 -4
- package/dist/m365/spo/commands/page/page-section-add.js +185 -34
- package/dist/m365/spo/commands/site/SiteAdmin.js +2 -0
- package/dist/m365/spo/commands/site/site-admin-add.js +252 -0
- package/dist/m365/spo/commands/site/site-admin-list.js +2 -27
- package/dist/m365/spo/commands/user/user-get.js +67 -9
- package/dist/m365/spo/commands.js +4 -0
- package/dist/m365/spp/commands/contentcenter/contentcenter-list.js +56 -0
- package/dist/m365/spp/commands.js +5 -0
- package/dist/settingsNames.js +6 -1
- package/dist/utils/entraApp.js +283 -0
- package/dist/utils/spo.js +75 -7
- package/dist/utils/zod.js +1 -1
- package/docs/docs/_clisettings.mdx +6 -1
- package/docs/docs/cmd/flow/recyclebinitem/recyclebinitem-list.mdx +132 -0
- package/docs/docs/cmd/flow/recyclebinitem/recyclebinitem-restore.mdx +55 -0
- package/docs/docs/cmd/setup.mdx +17 -6
- package/docs/docs/cmd/spo/contenttype/contenttype-field-remove.mdx +7 -7
- package/docs/docs/cmd/spo/contenttype/contenttype-field-set.mdx +2 -2
- package/docs/docs/cmd/spo/folder/folder-sharinglink-add.mdx +125 -0
- package/docs/docs/cmd/spo/folder/folder-sharinglink-clear.mdx +50 -0
- package/docs/docs/cmd/spo/folder/folder-sharinglink-remove.mdx +50 -0
- package/docs/docs/cmd/spo/page/page-section-add.mdx +57 -2
- package/docs/docs/cmd/spo/site/site-admin-add.mdx +67 -0
- package/docs/docs/cmd/spo/user/user-get.mdx +35 -9
- package/docs/docs/cmd/spp/contentcenter/contentcenter-list.mdx +289 -0
- package/npm-shrinkwrap.json +203 -375
- package/package.json +16 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "10.0.0-beta.
|
|
3
|
+
"version": "10.0.0-beta.787c5f1",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -252,21 +252,21 @@
|
|
|
252
252
|
"Zachariassen Laksafoss, Trygvi <trygvi.laksafoss@gmail.com>"
|
|
253
253
|
],
|
|
254
254
|
"dependencies": {
|
|
255
|
-
"@azure/msal-common": "^14.14.
|
|
256
|
-
"@azure/msal-node": "^2.
|
|
257
|
-
"@inquirer/confirm": "^3.
|
|
258
|
-
"@inquirer/input": "^2.
|
|
259
|
-
"@inquirer/select": "^2.
|
|
260
|
-
"@xmldom/xmldom": "^0.
|
|
261
|
-
"adaptive-expressions": "^4.
|
|
255
|
+
"@azure/msal-common": "^14.14.2",
|
|
256
|
+
"@azure/msal-node": "^2.13.1",
|
|
257
|
+
"@inquirer/confirm": "^3.2.0",
|
|
258
|
+
"@inquirer/input": "^2.3.0",
|
|
259
|
+
"@inquirer/select": "^2.5.0",
|
|
260
|
+
"@xmldom/xmldom": "^0.9.2",
|
|
261
|
+
"adaptive-expressions": "^4.23.0",
|
|
262
262
|
"adaptivecards": "^3.0.4",
|
|
263
263
|
"adaptivecards-templating": "^2.3.1",
|
|
264
|
-
"adm-zip": "^0.5.
|
|
265
|
-
"applicationinsights": "^2.9.
|
|
266
|
-
"axios": "^1.7.
|
|
264
|
+
"adm-zip": "^0.5.16",
|
|
265
|
+
"applicationinsights": "^2.9.6",
|
|
266
|
+
"axios": "^1.7.7",
|
|
267
267
|
"chalk": "^5.3.0",
|
|
268
268
|
"clipboardy": "^4.0.0",
|
|
269
|
-
"configstore": "^
|
|
269
|
+
"configstore": "^7.0.0",
|
|
270
270
|
"csv-stringify": "^6.5.1",
|
|
271
271
|
"easy-table": "^1.2.0",
|
|
272
272
|
"jmespath": "^0.16.0",
|
|
@@ -277,11 +277,11 @@
|
|
|
277
277
|
"semver": "^7.6.3",
|
|
278
278
|
"strip-json-comments": "^5.0.1",
|
|
279
279
|
"typescript": "^5.5.4",
|
|
280
|
-
"update-notifier": "^7.
|
|
280
|
+
"update-notifier": "^7.3.0",
|
|
281
281
|
"uuid": "^10.0.0",
|
|
282
|
-
"yaml": "^2.5.
|
|
282
|
+
"yaml": "^2.5.1",
|
|
283
283
|
"yargs-parser": "^21.1.1",
|
|
284
|
-
"zod": "^3.
|
|
284
|
+
"zod": "^3.23.8"
|
|
285
285
|
},
|
|
286
286
|
"devDependencies": {
|
|
287
287
|
"@actions/core": "^1.10.1",
|
|
@@ -290,9 +290,8 @@
|
|
|
290
290
|
"@types/jmespath": "^0.15.2",
|
|
291
291
|
"@types/json-schema": "^7.0.15",
|
|
292
292
|
"@types/json-to-ast": "^2.1.4",
|
|
293
|
-
"@types/minimist": "^1.2.5",
|
|
294
293
|
"@types/mocha": "^10.0.7",
|
|
295
|
-
"@types/node": "^20.
|
|
294
|
+
"@types/node": "^20.16.5",
|
|
296
295
|
"@types/node-forge": "^1.3.11",
|
|
297
296
|
"@types/omelette": "^0.4.4",
|
|
298
297
|
"@types/semver": "^7.5.8",
|