@pnp/cli-microsoft365 5.5.0-beta.e5cdbaf → 5.5.0
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/dist/m365/aad/commands/o365group/o365group-recyclebinitem-restore.js +60 -9
- package/dist/m365/spo/commands/customaction/customaction-get.js +32 -4
- package/dist/m365/spo/commands/customaction/customaction-remove.js +43 -8
- package/dist/m365/spo/commands/field/field-get.js +14 -5
- package/dist/m365/spo/commands/field/field-remove.js +19 -10
- package/dist/m365/spo/commands/site/site-classic-list.js +1 -0
- package/dist/m365/spo/commands/site/site-classic-set.js +1 -0
- package/dist/m365/spo/commands/site/site-list.js +59 -17
- package/dist/m365/spo/commands/site/site-set.js +322 -162
- package/dist/m365/spo/commands/tenant/tenant-appcatalog-add.js +9 -6
- package/dist/m365/teams/commands/tab/tab-get.js +2 -2
- package/dist/m365/teams/commands/team/team-clone.js +33 -7
- package/dist/m365/teams/commands/team/team-set.js +25 -5
- package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-restore.md +21 -3
- package/docs/docs/cmd/spo/customaction/customaction-get.md +15 -2
- package/docs/docs/cmd/spo/customaction/customaction-remove.md +33 -2
- package/docs/docs/cmd/spo/field/field-get.md +6 -3
- package/docs/docs/cmd/spo/field/field-remove.md +9 -6
- package/docs/docs/cmd/spo/site/site-classic-list.md +3 -0
- package/docs/docs/cmd/spo/site/site-classic-set.md +3 -0
- package/docs/docs/cmd/spo/site/site-list.md +19 -7
- package/docs/docs/cmd/spo/site/site-set.md +50 -6
- package/docs/docs/cmd/teams/tab/tab-get.md +2 -2
- package/docs/docs/cmd/teams/team/team-clone.md +11 -5
- package/docs/docs/cmd/teams/team/team-set.md +10 -4
- package/npm-shrinkwrap.json +173 -158
- package/package.json +14 -14
|
@@ -10,11 +10,17 @@ m365 teams team set [options]
|
|
|
10
10
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
|
-
`-i, --
|
|
13
|
+
`-i, --id [id]`
|
|
14
14
|
: The ID of the Microsoft Teams team for which to update settings
|
|
15
15
|
|
|
16
|
+
`--teamId [teamId]`
|
|
17
|
+
: (deprecated. Use `id` instead) The ID of the Microsoft Teams team for which to update settings
|
|
18
|
+
|
|
19
|
+
`-n, --name [name]`
|
|
20
|
+
: The display name for the Microsoft Teams team for which to update settings
|
|
21
|
+
|
|
16
22
|
`--displayName [displayName]`
|
|
17
|
-
: The display name for the Microsoft Teams team
|
|
23
|
+
: (deprecated. Use `name` instead) The display name for the Microsoft Teams team for which to update settings
|
|
18
24
|
|
|
19
25
|
`--description [description]`
|
|
20
26
|
: The description for the Microsoft Teams team
|
|
@@ -35,11 +41,11 @@ m365 teams team set [options]
|
|
|
35
41
|
Set Microsoft Teams team visibility as Private
|
|
36
42
|
|
|
37
43
|
```sh
|
|
38
|
-
m365 teams team set --
|
|
44
|
+
m365 teams team set --id "00000000-0000-0000-0000-000000000000" --visibility Private
|
|
39
45
|
```
|
|
40
46
|
|
|
41
47
|
Set Microsoft Teams team classification as MBI
|
|
42
48
|
|
|
43
49
|
```sh
|
|
44
|
-
m365 teams team set --
|
|
50
|
+
m365 teams team set --id "00000000-0000-0000-0000-000000000000" --classification MBI
|
|
45
51
|
```
|