@pnp/cli-microsoft365 4.0.0-beta.fa432b6 → 4.1.0-beta.22e5a2d
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/README.md +6 -5
- package/dist/Utils.js +6 -0
- package/dist/cli/Cli.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-get.js +0 -4
- package/dist/m365/aad/commands/o365group/{o365group-restore.js → o365group-recyclebinitem-restore.js} +10 -10
- package/dist/m365/aad/commands/o365group/o365group-teamify.js +48 -12
- package/dist/m365/aad/commands/serviceprincipal/serviceprincipal-get.js +116 -0
- package/dist/m365/aad/commands/siteclassification/siteclassification-disable.js +2 -2
- package/dist/m365/aad/commands/siteclassification/siteclassification-enable.js +2 -2
- package/dist/m365/aad/commands/siteclassification/siteclassification-get.js +1 -1
- package/dist/m365/aad/commands/siteclassification/siteclassification-set.js +2 -2
- package/dist/m365/aad/commands/user/user-set.js +90 -0
- package/dist/m365/aad/commands.js +4 -1
- package/dist/m365/base/SpoCommand.js +13 -0
- package/dist/m365/pa/commands/connector/connector-export.js +2 -2
- package/dist/m365/spfx/commands/project/project-upgrade/Utils.js +1 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002017_DEVDEP_microsoft_rush_stack_compiler_3_7.js +2 -2
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002018_DEVDEP_microsoft_rush_stack_compiler_3_9.js +17 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN015007_FILE_config_copy_assets_json.js +17 -0
- package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.13.0-beta.20.js → upgrade-1.13.0-rc.1.js} +43 -25
- package/dist/m365/spfx/commands/project/project-upgrade.js +1 -1
- package/dist/m365/spo/commands/contenttype/contenttype-add.js +21 -1
- package/dist/m365/spo/commands/file/file-list.js +2 -1
- package/dist/m365/teams/commands/channel/channel-list.js +5 -4
- package/dist/m365/teams/commands/conversationmember/conversationmember-add.js +9 -8
- package/dist/m365/teams/commands/conversationmember/conversationmember-list.js +20 -22
- package/dist/m365/teams/commands/team/team-get.js +91 -0
- package/dist/m365/teams/commands/user/user-app-list.js +8 -6
- package/docs/docs/cmd/aad/o365group/{o365group-restore.md → o365group-recyclebinitem-restore.md} +7 -1
- package/docs/docs/cmd/aad/o365group/o365group-teamify.md +12 -3
- package/docs/docs/cmd/aad/serviceprincipal/serviceprincipal-get.md +42 -0
- package/docs/docs/cmd/aad/siteclassification/siteclassification-disable.md +0 -5
- package/docs/docs/cmd/aad/siteclassification/siteclassification-enable.md +0 -5
- package/docs/docs/cmd/aad/siteclassification/siteclassification-get.md +0 -5
- package/docs/docs/cmd/aad/siteclassification/siteclassification-set.md +0 -4
- package/docs/docs/cmd/aad/user/user-set.md +60 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/teams/team/team-get.md +33 -0
- package/npm-shrinkwrap.json +485 -481
- package/package.json +20 -20
- package/dist/m365/teams/UserTeamsApp.js +0 -3
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# teams team get
|
|
2
|
+
|
|
3
|
+
Gets information about the specified Microsoft Teams team
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 teams team get
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-i, --id [id]`
|
|
14
|
+
: The ID of the Microsoft Teams team to retrieve information for. Specify either id or name but not both
|
|
15
|
+
|
|
16
|
+
`-n, --name [name]`
|
|
17
|
+
: The display name of the Microsoft Teams team to retrieve information for. Specify either id or name but not both
|
|
18
|
+
|
|
19
|
+
--8<-- "docs/cmd/_global.md"
|
|
20
|
+
|
|
21
|
+
## Examples
|
|
22
|
+
|
|
23
|
+
Get information about the Microsoft Teams team with id _2eaf7dcd-7e83-4c3a-94f7-932a1299c844_
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
m365 teams team get --id 2eaf7dcd-7e83-4c3a-94f7-932a1299c844
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Get information about Microsoft Teams team with name _Team Name_
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 teams team get --name "Team Name"
|
|
33
|
+
```
|