@pnp/cli-microsoft365 11.9.0-beta.7b34e40 → 11.9.0-beta.93bd508
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/.devproxy/api-specs/sharepoint.yaml +82 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/cli/commands/app/app-reconsent.js +8 -0
- package/dist/m365/cli/commands/cli-consent.js +8 -31
- package/dist/m365/cli/commands/cli-doctor.js +6 -1
- package/dist/m365/cli/commands/cli-issue.js +8 -36
- package/dist/m365/cli/commands/completion/completion-clink-update.js +8 -0
- package/dist/m365/cli/commands/completion/completion-pwsh-setup.js +8 -16
- package/dist/m365/cli/commands/completion/completion-pwsh-update.js +8 -0
- package/dist/m365/cli/commands/completion/completion-sh-setup.js +8 -0
- package/dist/m365/cli/commands/completion/completion-sh-update.js +8 -0
- package/dist/m365/cli/commands/config/config-get.js +9 -32
- package/dist/m365/cli/commands/config/config-list.js +8 -0
- package/dist/m365/cli/commands/config/config-reset.js +9 -34
- package/dist/m365/cli/commands/config/config-set.js +86 -70
- package/dist/m365/commands/request.js +26 -60
- package/dist/m365/commands/search.js +59 -77
- package/dist/m365/commands/setup.js +16 -31
- package/dist/m365/commands/version.js +6 -0
- package/dist/m365/connection/commands/connection-remove.js +9 -29
- package/dist/m365/connection/commands/connection-use.js +8 -26
- package/dist/m365/context/commands/context-init.js +6 -0
- package/dist/m365/context/commands/option/option-set.js +9 -18
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-add.js +32 -63
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-get.js +21 -45
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-list.js +32 -53
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-remove.js +34 -74
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-roleassignment-add.js +37 -57
- package/dist/m365/entra/commands/multitenant/multitenant-get.js +8 -1
- package/dist/m365/entra/commands/multitenant/multitenant-remove.js +8 -22
- package/dist/m365/entra/commands/multitenant/multitenant-set.js +15 -36
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-add.js +10 -31
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-list.js +8 -24
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-remove.js +9 -17
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-set.js +9 -17
- package/dist/m365/spe/commands/container/container-permission-list.js +43 -4
- package/dist/m365/spo/commands/file/file-unarchive.js +83 -0
- package/dist/m365/spo/commands/folder/folder-archive.js +89 -0
- package/dist/m365/spo/commands.js +2 -0
- package/dist/m365/viva/commands/engage/engage-role-member-add.js +79 -0
- package/dist/m365/viva/commands.js +1 -0
- package/docs/docs/cmd/spe/container/container-get.mdx +13 -1
- package/docs/docs/cmd/spe/container/container-permission-list.mdx +24 -3
- package/docs/docs/cmd/spo/app/app-add.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-deploy.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-get.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-install.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-instance-list.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-list.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-remove.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-retract.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-teamspackage-download.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-uninstall.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-upgrade.mdx +21 -0
- package/docs/docs/cmd/spo/apppage/apppage-add.mdx +19 -1
- package/docs/docs/cmd/spo/apppage/apppage-set.mdx +21 -0
- package/docs/docs/cmd/spo/commandset/commandset-add.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-get.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-list.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-remove.mdx +21 -0
- package/docs/docs/cmd/spo/commandset/commandset-set.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-unarchive.mdx +68 -0
- package/docs/docs/cmd/spo/folder/folder-archive.mdx +73 -0
- package/docs/docs/cmd/viva/engage/engage-role-member-add.mdx +76 -0
- package/npm-shrinkwrap.json +273 -128
- package/package.json +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "11.9.0-beta.
|
|
3
|
+
"version": "11.9.0-beta.93bd508",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -302,18 +302,18 @@
|
|
|
302
302
|
}
|
|
303
303
|
},
|
|
304
304
|
"dependencies": {
|
|
305
|
-
"@azure/msal-common": "^16.
|
|
306
|
-
"@azure/msal-node": "^5.
|
|
307
|
-
"@inquirer/confirm": "^6.0
|
|
308
|
-
"@inquirer/input": "^5.0
|
|
309
|
-
"@inquirer/select": "^5.
|
|
305
|
+
"@azure/msal-common": "^16.6.2",
|
|
306
|
+
"@azure/msal-node": "^5.2.2",
|
|
307
|
+
"@inquirer/confirm": "^6.1.0",
|
|
308
|
+
"@inquirer/input": "^5.1.0",
|
|
309
|
+
"@inquirer/select": "^5.2.0",
|
|
310
310
|
"@xmldom/xmldom": "^0.9.10",
|
|
311
311
|
"adaptive-expressions": "^4.23.3",
|
|
312
312
|
"adaptivecards": "^3.0.6",
|
|
313
313
|
"adaptivecards-templating": "^2.3.1",
|
|
314
314
|
"adm-zip": "^0.5.17",
|
|
315
315
|
"applicationinsights": "^3.14.0",
|
|
316
|
-
"axios": "^1.
|
|
316
|
+
"axios": "^1.16.1",
|
|
317
317
|
"chalk": "^5.6.2",
|
|
318
318
|
"clipboardy": "^5.3.1",
|
|
319
319
|
"configstore": "^8.0.0",
|
|
@@ -325,14 +325,14 @@
|
|
|
325
325
|
"node-forge": "^1.4.0",
|
|
326
326
|
"omelette": "^0.4.17",
|
|
327
327
|
"open": "^11.0.0",
|
|
328
|
-
"semver": "^7.
|
|
328
|
+
"semver": "^7.8.1",
|
|
329
329
|
"strip-json-comments": "^5.0.3",
|
|
330
330
|
"typescript": "^5.9.3",
|
|
331
331
|
"update-notifier": "^7.3.1",
|
|
332
|
-
"uuid": "^
|
|
333
|
-
"yaml": "^2.
|
|
332
|
+
"uuid": "^14.0.0",
|
|
333
|
+
"yaml": "^2.9.0",
|
|
334
334
|
"yargs-parser": "^22.0.0",
|
|
335
|
-
"zod": "^4.4.
|
|
335
|
+
"zod": "^4.4.3"
|
|
336
336
|
},
|
|
337
337
|
"devDependencies": {
|
|
338
338
|
"@actions/core": "^3.0.1",
|
|
@@ -344,7 +344,7 @@
|
|
|
344
344
|
"@types/json-schema": "^7.0.15",
|
|
345
345
|
"@types/json-to-ast": "^2.1.4",
|
|
346
346
|
"@types/mocha": "^10.0.10",
|
|
347
|
-
"@types/node": "^24.12.
|
|
347
|
+
"@types/node": "^24.12.4",
|
|
348
348
|
"@types/node-forge": "^1.3.14",
|
|
349
349
|
"@types/omelette": "^0.4.5",
|
|
350
350
|
"@types/semver": "^7.7.1",
|
|
@@ -352,15 +352,15 @@
|
|
|
352
352
|
"@types/update-notifier": "^6.0.8",
|
|
353
353
|
"@types/uuid": "^10.0.0",
|
|
354
354
|
"@types/yargs-parser": "^21.0.3",
|
|
355
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
355
|
+
"@typescript-eslint/eslint-plugin": "^8.60.0",
|
|
356
356
|
"@typescript-eslint/parser": "^8.58.0",
|
|
357
357
|
"c8": "^11.0.0",
|
|
358
|
-
"eslint": "^10.
|
|
359
|
-
"eslint-plugin-mocha": "^11.
|
|
360
|
-
"globals": "^17.
|
|
361
|
-
"mocha": "^11.7.
|
|
358
|
+
"eslint": "^10.4.0",
|
|
359
|
+
"eslint-plugin-mocha": "^11.3.0",
|
|
360
|
+
"globals": "^17.6.0",
|
|
361
|
+
"mocha": "^11.7.6",
|
|
362
362
|
"rimraf": "^6.1.3",
|
|
363
|
-
"sinon": "^
|
|
363
|
+
"sinon": "^22.0.0",
|
|
364
364
|
"source-map-support": "^0.5.21",
|
|
365
365
|
"tsc-watch": "^7.2.0"
|
|
366
366
|
}
|