@pnp/cli-microsoft365 7.1.0-beta.d53f0d9 → 7.2.0-beta.194fd07
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/dist/Auth.js +1 -1
- package/dist/Command.js +18 -28
- package/dist/cli/Cli.js +6 -4
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-add.js +61 -0
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-get.js +93 -0
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-list.js +25 -0
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-remove.js +108 -0
- package/dist/m365/aad/commands/group/group-user-list.js +146 -0
- package/dist/m365/aad/commands/m365group/m365group-remove.js +109 -15
- package/dist/m365/aad/commands.js +5 -0
- package/dist/m365/base/AppCommand.js +3 -12
- package/dist/m365/cli/commands/cli-doctor.js +11 -6
- package/dist/m365/commands/setup.js +6 -1
- package/dist/m365/spo/commands/sitedesign/sitedesign-get.js +15 -14
- package/dist/m365/spo/commands/sitedesign/sitedesign-remove.js +22 -22
- package/dist/m365/teams/commands/app/app-update.js +9 -6
- package/dist/m365/todo/commands/task/task-list.js +8 -10
- package/dist/m365/todo/commands/task/task-remove.js +36 -36
- package/dist/m365/todo/commands/task/task-set.js +11 -13
- package/dist/m365/yammer/commands/group/group-user-remove.js +22 -23
- package/dist/utils/aadGroup.js +3 -1
- package/dist/utils/odata.js +20 -19
- package/dist/utils/prompt.js +16 -0
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-add.mdx +115 -0
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-get.mdx +98 -0
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-list.mdx +83 -0
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-remove.mdx +52 -0
- package/docs/docs/cmd/aad/group/group-user-list.mdx +135 -0
- package/docs/docs/cmd/aad/m365group/m365group-remove.mdx +11 -1
- package/docs/docs/cmd/spo/field/field-get.mdx +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +33 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0-beta.194fd07",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -31,21 +31,41 @@
|
|
|
31
31
|
"lint": "eslint --ext .ts src"
|
|
32
32
|
},
|
|
33
33
|
"keywords": [
|
|
34
|
-
"
|
|
34
|
+
"adaptive card",
|
|
35
|
+
"ai builder",
|
|
36
|
+
"azure active directory",
|
|
37
|
+
"azure ad",
|
|
38
|
+
"azure",
|
|
39
|
+
"bookings",
|
|
40
|
+
"dataverse",
|
|
41
|
+
"entra id",
|
|
42
|
+
"graph",
|
|
43
|
+
"m365",
|
|
35
44
|
"microsoft 365",
|
|
36
|
-
"
|
|
45
|
+
"microsoft",
|
|
37
46
|
"o365",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
47
|
+
"office 365",
|
|
48
|
+
"onedrive",
|
|
49
|
+
"onenote",
|
|
50
|
+
"outlook",
|
|
51
|
+
"planner",
|
|
52
|
+
"power apps",
|
|
53
|
+
"power automate",
|
|
54
|
+
"power platform",
|
|
55
|
+
"purview",
|
|
56
|
+
"search",
|
|
57
|
+
"sharepoint framework",
|
|
40
58
|
"sharepoint online",
|
|
41
59
|
"sharepoint",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
60
|
+
"skype",
|
|
61
|
+
"spfx",
|
|
62
|
+
"teams",
|
|
63
|
+
"tenant",
|
|
64
|
+
"todo",
|
|
65
|
+
"viva connections",
|
|
66
|
+
"viva engage",
|
|
67
|
+
"viva",
|
|
68
|
+
"yammer"
|
|
49
69
|
],
|
|
50
70
|
"author": "https://github.com/pnp/cli-microsoft365/graphs/contributors",
|
|
51
71
|
"maintainers": [
|
|
@@ -209,7 +229,7 @@
|
|
|
209
229
|
"Thangavel, Sekar <sekar.thangavel@gmail.com>",
|
|
210
230
|
"Thorild, Fredrik <fredrik.thorild@sogeti.com>",
|
|
211
231
|
"Trinder, Garry <garry.trinder@live.com>",
|
|
212
|
-
"Tripathi, Saurabh <
|
|
232
|
+
"Tripathi, Saurabh <saurabh7019@gmail.com>",
|
|
213
233
|
"Vaghasia, Siddharth <siddh.vaghasia@gmail.com>",
|
|
214
234
|
"Van de Voorde, Tim <tim.vdv1995@hotmail.com>",
|
|
215
235
|
"van Dijk, Mark <mark@ichicraft.com>",
|