@pnp/cli-microsoft365 7.9.0-beta.d3d4146 → 7.10.0-beta.0d80e6e
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 +2 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/base/DelegatedGraphCommand.js +17 -0
- package/dist/m365/base/PowerAppsCommand.js +2 -0
- package/dist/m365/base/PowerAutomateCommand.js +2 -0
- package/dist/m365/base/PowerBICommand.js +10 -0
- package/dist/m365/base/PowerPlatformCommand.js +2 -0
- package/dist/m365/base/VivaEngageCommand.js +10 -0
- package/dist/m365/commands/commands.js +1 -0
- package/dist/m365/commands/search.js +176 -0
- package/dist/m365/entra/commands/group/group-user-set.js +206 -0
- package/dist/m365/entra/commands/user/user-groupmembership-list.js +92 -0
- package/dist/m365/entra/commands/user/user-list.js +47 -44
- package/dist/m365/entra/commands.js +2 -0
- package/dist/m365/outlook/commands/message/message-move.js +2 -2
- package/dist/m365/spfx/commands/spfx-doctor.js +2 -2
- package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-restore.js +44 -23
- package/dist/m365/teams/commands/chat/chat-message-send.js +2 -2
- package/dist/m365/todo/commands/list/list-add.js +2 -2
- package/dist/m365/todo/commands/list/list-get.js +2 -2
- package/dist/m365/todo/commands/list/list-list.js +2 -2
- package/dist/m365/todo/commands/list/list-remove.js +2 -2
- package/dist/m365/todo/commands/list/list-set.js +2 -2
- package/dist/m365/todo/commands/task/task-add.js +2 -2
- package/dist/m365/todo/commands/task/task-get.js +2 -2
- package/dist/m365/todo/commands/task/task-list.js +2 -2
- package/dist/m365/todo/commands/task/task-remove.js +2 -2
- package/dist/m365/todo/commands/task/task-set.js +2 -2
- package/dist/m365/viva/commands/engage/engage-community-get.js +49 -0
- package/dist/m365/viva/commands.js +1 -0
- package/dist/utils/accessToken.js +16 -0
- package/dist/utils/validation.js +3 -3
- package/docs/docs/cmd/entra/group/group-user-set.mdx +62 -0
- package/docs/docs/cmd/entra/user/user-groupmembership-list.mdx +121 -0
- package/docs/docs/cmd/entra/user/user-list.mdx +24 -9
- package/docs/docs/cmd/search.mdx +260 -0
- package/docs/docs/cmd/spe/containertype/containertype-add.mdx +3 -3
- package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-restore.mdx +3 -11
- package/docs/docs/cmd/viva/engage/engage-community-get.mdx +94 -0
- package/npm-shrinkwrap.json +15 -7
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.10.0-beta.0d80e6e",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -108,6 +108,11 @@
|
|
|
108
108
|
"name": "Milan Holemans",
|
|
109
109
|
"email": "11723921+milanholemans@users.noreply.github.com",
|
|
110
110
|
"web": "https://github.com/milanholemans"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "Mathijs Verbeeck",
|
|
114
|
+
"email": "verbeeckmathijs@gmail.com",
|
|
115
|
+
"web": "https://github.com/MathijsVerbeeck"
|
|
111
116
|
}
|
|
112
117
|
],
|
|
113
118
|
"contributors": [
|
|
@@ -246,7 +251,7 @@
|
|
|
246
251
|
],
|
|
247
252
|
"dependencies": {
|
|
248
253
|
"@azure/msal-common": "^14.10.0",
|
|
249
|
-
"@azure/msal-node": "^2.
|
|
254
|
+
"@azure/msal-node": "^2.7.0",
|
|
250
255
|
"@inquirer/confirm": "^3.1.6",
|
|
251
256
|
"@inquirer/input": "^2.1.6",
|
|
252
257
|
"@inquirer/select": "^2.3.2",
|