@pnp/cli-microsoft365 6.3.0-beta.fee5cdb → 6.4.0-beta.006c079
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/.devcontainer/Dockerfile +5 -2
- package/.eslintrc.js +4 -0
- package/Dockerfile +6 -3
- package/README.md +12 -1
- package/dist/Command.js +1 -0
- package/dist/appInsights.js +2 -1
- package/dist/cli/Cli.js +70 -2
- package/dist/m365/aad/commands/license/license-list.js +41 -0
- package/dist/m365/aad/commands/user/user-add.js +223 -0
- package/dist/m365/aad/commands/user/user-get.js +3 -0
- package/dist/m365/aad/commands/user/user-license-add.js +88 -0
- package/dist/m365/aad/commands/user/user-license-list.js +99 -0
- package/dist/m365/aad/commands/user/user-license-remove.js +115 -0
- package/dist/m365/aad/commands/user/user-recyclebinitem-clear.js +1 -1
- package/dist/m365/aad/commands/user/user-recyclebinitem-list.js +41 -0
- package/dist/m365/aad/commands/user/user-recyclebinitem-remove.js +92 -0
- package/dist/m365/aad/commands/user/user-recyclebinitem-restore.js +70 -0
- package/dist/m365/aad/commands/user/user-remove.js +107 -0
- package/dist/m365/aad/commands/user/user-set.js +3 -0
- package/dist/m365/aad/commands/user/user-signin-list.js +3 -0
- package/dist/m365/aad/commands.js +9 -0
- package/dist/m365/file/commands/file-list.js +5 -1
- package/dist/m365/flow/commands/environment/FlowEnvironmentDetails.js +3 -0
- package/dist/m365/flow/commands/environment/environment-get.js +26 -11
- package/dist/m365/flow/commands/flow-disable.js +9 -2
- package/dist/m365/flow/commands/flow-enable.js +9 -2
- package/dist/m365/flow/commands/flow-get.js +9 -2
- package/dist/m365/flow/commands/flow-list.js +1 -1
- package/dist/m365/flow/commands/flow-remove.js +2 -2
- package/dist/m365/flow/commands/owner/owner-ensure.js +147 -0
- package/dist/m365/flow/commands/owner/owner-list.js +89 -0
- package/dist/m365/flow/commands/owner/owner-remove.js +147 -0
- package/dist/m365/flow/commands/run/run-cancel.js +9 -2
- package/dist/m365/flow/commands/run/run-list.js +5 -2
- package/dist/m365/flow/commands.js +3 -0
- package/dist/m365/planner/commands/roster/roster-member-add.js +3 -0
- package/dist/m365/planner/commands/roster/roster-member-get.js +98 -0
- package/dist/m365/planner/commands.js +1 -0
- package/dist/m365/pp/commands/environment/environment-get.js +18 -9
- package/dist/m365/purview/commands/retentionevent/retentionevent-add.js +138 -0
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +48 -14
- package/dist/m365/purview/commands.js +1 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.0-beta.1.js +59 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +16 -13
- package/dist/m365/spfx/commands/spfx-doctor.js +43 -29
- package/dist/m365/spo/commands/commandset/commandset-add.js +138 -0
- package/dist/m365/spo/commands/commandset/commandset-get.js +128 -0
- package/dist/m365/spo/commands/commandset/commandset-list.js +77 -0
- package/dist/m365/spo/commands/commandset/commandset-remove.js +146 -0
- package/dist/m365/spo/commands/commandset/commandset-set.js +182 -0
- package/dist/m365/spo/commands/customaction/customaction-get.js +27 -7
- package/dist/m365/spo/commands/file/file-move.js +1 -3
- package/dist/m365/spo/commands/folder/folder-copy.js +0 -2
- package/dist/m365/spo/commands/folder/folder-move.js +0 -2
- package/dist/m365/spo/commands/group/group-member-add.js +54 -95
- package/dist/m365/spo/commands/list/list-add.js +11 -8
- package/dist/m365/spo/commands/list/list-set.js +3 -3
- package/dist/m365/spo/commands/navigation/navigation-node-add.js +5 -4
- package/dist/m365/spo/commands/navigation/navigation-node-set.js +5 -1
- package/dist/m365/spo/commands/site/site-add.js +0 -3
- package/dist/m365/spo/commands/site/site-remove.js +0 -3
- package/dist/m365/spo/commands/site/site-set.js +0 -2
- package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-get.js +118 -0
- package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-remove.js +0 -1
- package/dist/m365/spo/commands/term/term-get.js +68 -48
- package/dist/m365/spo/commands/user/user-ensure.js +105 -0
- package/dist/m365/spo/commands.js +7 -0
- package/dist/m365/teams/commands/team/team-add.js +3 -8
- package/dist/m365/todo/commands/task/task-add.js +35 -3
- package/dist/utils/aadGroup.js +18 -0
- package/dist/utils/aadUser.js +37 -0
- package/dist/utils/md.js +7 -0
- package/dist/utils/session.js +18 -0
- package/dist/utils/spo.js +35 -12
- package/docs/docs/cmd/aad/app/app-add.md +3 -3
- package/docs/docs/cmd/aad/approleassignment/approleassignment-add.md +5 -5
- package/docs/docs/cmd/aad/approleassignment/approleassignment-remove.md +3 -3
- package/docs/docs/cmd/aad/license/license-list.md +87 -0
- package/docs/docs/cmd/aad/user/user-add.md +168 -0
- package/docs/docs/cmd/aad/user/user-license-add.md +108 -0
- package/docs/docs/cmd/aad/user/user-license-list.md +98 -0
- package/docs/docs/cmd/aad/user/user-license-remove.md +43 -0
- package/docs/docs/cmd/aad/user/user-recyclebinitem-clear.md +1 -1
- package/docs/docs/cmd/aad/user/user-recyclebinitem-list.md +82 -0
- package/docs/docs/cmd/aad/user/user-recyclebinitem-remove.md +45 -0
- package/docs/docs/cmd/aad/user/user-recyclebinitem-restore.md +99 -0
- package/docs/docs/cmd/aad/user/user-remove.md +51 -0
- package/docs/docs/cmd/aad/user/user-set.md +1 -1
- package/docs/docs/cmd/cli/completion/completion-clink-update.md +4 -4
- package/docs/docs/cmd/flow/environment/environment-get.md +31 -3
- package/docs/docs/cmd/flow/owner/owner-ensure.md +61 -0
- package/docs/docs/cmd/flow/owner/owner-list.md +90 -0
- package/docs/docs/cmd/flow/owner/owner-remove.md +67 -0
- package/docs/docs/cmd/flow/run/run-list.md +28 -0
- package/docs/docs/cmd/onenote/page/page-list.md +1 -1
- package/docs/docs/cmd/outlook/mail/mail-send.md +7 -3
- package/docs/docs/cmd/outlook/message/message-get.md +143 -0
- package/docs/docs/cmd/outlook/message/message-list.md +119 -0
- package/docs/docs/cmd/outlook/message/message-move.md +4 -0
- package/docs/docs/cmd/outlook/report/report-mailactivitycounts.md +40 -0
- package/docs/docs/cmd/outlook/report/report-mailactivityusercounts.md +40 -0
- package/docs/docs/cmd/outlook/report/report-mailactivityuserdetail.md +45 -0
- package/docs/docs/cmd/outlook/report/report-mailappusageappsusercounts.md +43 -0
- package/docs/docs/cmd/outlook/report/report-mailappusageusercounts.md +44 -0
- package/docs/docs/cmd/outlook/report/report-mailappusageuserdetail.md +48 -0
- package/docs/docs/cmd/outlook/report/report-mailappusageversionsusercounts.md +41 -0
- package/docs/docs/cmd/outlook/report/report-mailboxusagedetail.md +49 -0
- package/docs/docs/cmd/outlook/report/report-mailboxusagemailboxcount.md +37 -0
- package/docs/docs/cmd/outlook/report/report-mailboxusagequotastatusmailboxcounts.md +40 -0
- package/docs/docs/cmd/outlook/report/report-mailboxusagestorage.md +36 -0
- package/docs/docs/cmd/outlook/room/room-list.md +81 -0
- package/docs/docs/cmd/outlook/roomlist/roomlist-list.md +58 -0
- package/docs/docs/cmd/planner/plan/plan-add.md +3 -3
- package/docs/docs/cmd/planner/plan/plan-set.md +73 -7
- package/docs/docs/cmd/planner/roster/roster-add.md +16 -1
- package/docs/docs/cmd/planner/roster/roster-member-get.md +87 -0
- package/docs/docs/cmd/planner/task/task-add.md +230 -0
- package/docs/docs/cmd/planner/task/task-checklistitem-add.md +55 -0
- package/docs/docs/cmd/planner/task/task-checklistitem-list.md +55 -0
- package/docs/docs/cmd/planner/task/task-checklistitem-remove.md +4 -0
- package/docs/docs/cmd/planner/task/task-get.md +131 -0
- package/docs/docs/cmd/planner/task/task-list.md +92 -0
- package/docs/docs/cmd/planner/task/task-reference-add.md +46 -0
- package/docs/docs/cmd/planner/task/task-reference-list.md +46 -0
- package/docs/docs/cmd/planner/task/task-reference-remove.md +4 -0
- package/docs/docs/cmd/planner/task/task-remove.md +4 -0
- package/docs/docs/cmd/planner/task/task-set.md +230 -0
- package/docs/docs/cmd/planner/tenant/tenant-settings-list.md +55 -0
- package/docs/docs/cmd/planner/tenant/tenant-settings-set.md +55 -0
- package/docs/docs/cmd/pp/card/card-get.md +2 -2
- package/docs/docs/cmd/pp/card/card-list.md +2 -2
- package/docs/docs/cmd/purview/retentionevent/retentionevent-add.md +149 -0
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.md +7 -7
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.md +12 -0
- package/docs/docs/cmd/skype/report/report-activitycounts.md +38 -0
- package/docs/docs/cmd/skype/report/report-activityusercounts.md +38 -0
- package/docs/docs/cmd/skype/report/report-activityuserdetail.md +67 -0
- package/docs/docs/cmd/spfx/project/project-doctor.md +3 -3
- package/docs/docs/cmd/spfx/project/project-externalize.md +3 -3
- package/docs/docs/cmd/spfx/project/project-permissions-grant.md +21 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.md +3 -3
- package/docs/docs/cmd/spfx/spfx-doctor.md +3 -3
- package/docs/docs/cmd/spo/cdn/cdn-get.md +6 -6
- package/docs/docs/cmd/spo/cdn/cdn-origin-add.md +3 -3
- package/docs/docs/cmd/spo/cdn/cdn-origin-list.md +3 -3
- package/docs/docs/cmd/spo/cdn/cdn-origin-remove.md +3 -3
- package/docs/docs/cmd/spo/cdn/cdn-policy-list.md +3 -3
- package/docs/docs/cmd/spo/cdn/cdn-policy-set.md +3 -3
- package/docs/docs/cmd/spo/cdn/cdn-set.md +3 -3
- package/docs/docs/cmd/spo/commandset/commandset-add.md +159 -0
- package/docs/docs/cmd/spo/commandset/commandset-get.md +149 -0
- package/docs/docs/cmd/spo/commandset/commandset-list.md +109 -0
- package/docs/docs/cmd/spo/commandset/commandset-remove.md +55 -0
- package/docs/docs/cmd/spo/commandset/commandset-set.md +71 -0
- package/docs/docs/cmd/spo/customaction/customaction-get.md +113 -11
- package/docs/docs/cmd/spo/externaluser/externaluser-list.md +2 -0
- package/docs/docs/cmd/spo/group/group-member-add.md +26 -4
- package/docs/docs/cmd/spo/hidedefaultthemes/hidedefaultthemes-get.md +2 -0
- package/docs/docs/cmd/spo/hidedefaultthemes/hidedefaultthemes-set.md +2 -0
- package/docs/docs/cmd/spo/homesite/homesite-get.md +20 -1
- package/docs/docs/cmd/spo/homesite/homesite-remove.md +10 -2
- package/docs/docs/cmd/spo/homesite/homesite-set.md +10 -2
- package/docs/docs/cmd/spo/hubsite/hubsite-connect.md +9 -9
- package/docs/docs/cmd/spo/hubsite/hubsite-data-get.md +34 -5
- package/docs/docs/cmd/spo/hubsite/hubsite-disconnect.md +6 -6
- package/docs/docs/cmd/spo/hubsite/hubsite-get.md +36 -19
- package/docs/docs/cmd/spo/hubsite/hubsite-list.md +59 -1
- package/docs/docs/cmd/spo/hubsite/hubsite-register.md +30 -1
- package/docs/docs/cmd/spo/hubsite/hubsite-rights-grant.md +6 -6
- package/docs/docs/cmd/spo/hubsite/hubsite-rights-revoke.md +4 -4
- package/docs/docs/cmd/spo/hubsite/hubsite-set.md +40 -15
- package/docs/docs/cmd/spo/hubsite/hubsite-unregister.md +4 -4
- package/docs/docs/cmd/spo/knowledgehub/knowledgehub-get.md +9 -1
- package/docs/docs/cmd/spo/knowledgehub/knowledgehub-remove.md +11 -3
- package/docs/docs/cmd/spo/knowledgehub/knowledgehub-set.md +11 -5
- package/docs/docs/cmd/spo/list/list-add.md +124 -58
- package/docs/docs/cmd/spo/list/list-contenttype-add.md +50 -5
- package/docs/docs/cmd/spo/list/list-contenttype-default-set.md +4 -4
- package/docs/docs/cmd/spo/list/list-contenttype-list.md +49 -4
- package/docs/docs/cmd/spo/list/list-contenttype-remove.md +6 -6
- package/docs/docs/cmd/spo/list/list-get.md +70 -4
- package/docs/docs/cmd/spo/list/list-list.md +70 -2
- package/docs/docs/cmd/spo/list/list-remove.md +6 -6
- package/docs/docs/cmd/spo/list/list-retentionlabel-ensure.md +2 -2
- package/docs/docs/cmd/spo/list/list-retentionlabel-get.md +36 -3
- package/docs/docs/cmd/spo/list/list-retentionlabel-remove.md +3 -3
- package/docs/docs/cmd/spo/list/list-roleassignment-add.md +6 -6
- package/docs/docs/cmd/spo/list/list-roleassignment-remove.md +3 -3
- package/docs/docs/cmd/spo/list/list-roleinheritance-break.md +9 -9
- package/docs/docs/cmd/spo/list/list-roleinheritance-reset.md +7 -7
- package/docs/docs/cmd/spo/list/list-set.md +61 -61
- package/docs/docs/cmd/spo/list/list-sitescript-get.md +35 -3
- package/docs/docs/cmd/spo/list/list-view-add.md +66 -5
- package/docs/docs/cmd/spo/list/list-view-field-add.md +10 -10
- package/docs/docs/cmd/spo/list/list-view-get.md +61 -0
- package/docs/docs/cmd/spo/list/list-view-list.md +61 -0
- package/docs/docs/cmd/spo/list/list-view-set.md +1 -1
- package/docs/docs/cmd/spo/list/list-webhook-add.md +19 -0
- package/docs/docs/cmd/spo/list/list-webhook-get.md +19 -0
- package/docs/docs/cmd/spo/list/list-webhook-list.md +19 -0
- package/docs/docs/cmd/spo/listitem/listitem-add.md +30 -1
- package/docs/docs/cmd/spo/listitem/listitem-attachment-list.md +17 -2
- package/docs/docs/cmd/spo/listitem/listitem-batch-add.md +1 -1
- package/docs/docs/cmd/spo/listitem/listitem-get.md +57 -0
- package/docs/docs/cmd/spo/listitem/listitem-isrecord.md +6 -0
- package/docs/docs/cmd/spo/listitem/listitem-list.md +28 -0
- package/docs/docs/cmd/spo/listitem/listitem-record-declare.md +15 -0
- package/docs/docs/cmd/spo/listitem/listitem-set.md +31 -1
- package/docs/docs/cmd/spo/navigation/navigation-node-add.md +25 -3
- package/docs/docs/cmd/spo/navigation/navigation-node-set.md +2 -2
- package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-add.md +2 -0
- package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-list.md +2 -0
- package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-remove.md +2 -0
- package/docs/docs/cmd/spo/orgnewssite/orgnewssite-list.md +2 -0
- package/docs/docs/cmd/spo/orgnewssite/orgnewssite-remove.md +2 -0
- package/docs/docs/cmd/spo/orgnewssite/orgnewssite-set.md +3 -3
- package/docs/docs/cmd/spo/site/site-appcatalog-add.md +2 -0
- package/docs/docs/cmd/spo/site/site-appcatalog-remove.md +3 -3
- package/docs/docs/cmd/spo/site/site-commsite-enable.md +2 -0
- package/docs/docs/cmd/spo/site/site-list.md +3 -3
- package/docs/docs/cmd/spo/site/site-remove.md +3 -3
- package/docs/docs/cmd/spo/site/site-rename.md +3 -3
- package/docs/docs/cmd/spo/site/site-set.md +5 -5
- package/docs/docs/cmd/spo/storageentity/storageentity-remove.md +3 -3
- package/docs/docs/cmd/spo/storageentity/storageentity-set.md +3 -3
- package/docs/docs/cmd/spo/tenant/tenant-appcatalog-add.md +3 -3
- package/docs/docs/cmd/spo/tenant/tenant-appcatalogurl-get.md +2 -0
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-add.md +3 -3
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-get.md +142 -0
- package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-list.md +2 -0
- package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-remove.md +3 -3
- package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-restore.md +3 -3
- package/docs/docs/cmd/spo/tenant/tenant-settings-list.md +2 -0
- package/docs/docs/cmd/spo/tenant/tenant-settings-set.md +28 -26
- package/docs/docs/cmd/spo/term/term-add.md +3 -3
- package/docs/docs/cmd/spo/term/term-get.md +3 -3
- package/docs/docs/cmd/spo/term/term-group-add.md +2 -0
- package/docs/docs/cmd/spo/term/term-group-get.md +2 -0
- package/docs/docs/cmd/spo/term/term-group-list.md +2 -0
- package/docs/docs/cmd/spo/term/term-list.md +3 -1
- package/docs/docs/cmd/spo/term/term-set-add.md +3 -3
- package/docs/docs/cmd/spo/term/term-set-get.md +2 -0
- package/docs/docs/cmd/spo/term/term-set-list.md +2 -0
- package/docs/docs/cmd/spo/theme/theme-apply.md +3 -3
- package/docs/docs/cmd/spo/theme/theme-get.md +2 -0
- package/docs/docs/cmd/spo/theme/theme-list.md +2 -0
- package/docs/docs/cmd/spo/theme/theme-remove.md +2 -0
- package/docs/docs/cmd/spo/theme/theme-set.md +3 -3
- package/docs/docs/cmd/spo/user/user-ensure.md +109 -0
- package/docs/docs/cmd/teams/channel/channel-get.md +1 -1
- package/docs/docs/cmd/teams/channel/channel-member-add.md +2 -2
- package/docs/docs/cmd/teams/message/message-get.md +39 -4
- package/docs/docs/cmd/teams/message/message-list.md +41 -6
- package/docs/docs/cmd/teams/message/message-reply-list.md +39 -4
- package/docs/docs/cmd/teams/messagingsettings/messagingsettings-list.md +20 -2
- package/docs/docs/cmd/teams/messagingsettings/messagingsettings-set.md +8 -8
- package/docs/docs/cmd/teams/report/report-deviceusagedistributionusercounts.md +12 -5
- package/docs/docs/cmd/teams/report/report-deviceusageusercounts.md +13 -6
- package/docs/docs/cmd/teams/report/report-deviceusageuserdetail.md +14 -7
- package/docs/docs/cmd/teams/report/report-directroutingcalls.md +13 -6
- package/docs/docs/cmd/teams/report/report-pstncalls.md +13 -6
- package/docs/docs/cmd/teams/report/report-useractivitycounts.md +13 -6
- package/docs/docs/cmd/teams/report/report-useractivityusercounts.md +13 -6
- package/docs/docs/cmd/teams/report/report-useractivityuserdetail.md +13 -6
- package/docs/docs/cmd/teams/tab/tab-add.md +16 -0
- package/docs/docs/cmd/teams/tab/tab-get.md +17 -0
- package/docs/docs/cmd/teams/tab/tab-list.md +19 -0
- package/docs/docs/cmd/teams/team/team-add.md +77 -8
- package/docs/docs/cmd/teams/team/team-app-list.md +18 -2
- package/docs/docs/cmd/teams/team/team-archive.md +2 -2
- package/docs/docs/cmd/teams/team/team-clone.md +8 -8
- package/docs/docs/cmd/teams/team/team-get.md +34 -4
- package/docs/docs/cmd/teams/team/team-list.md +34 -3
- package/docs/docs/cmd/teams/team/team-remove.md +3 -3
- package/docs/docs/cmd/teams/team/team-set.md +8 -8
- package/docs/docs/cmd/teams/team/team-unarchive.md +3 -2
- package/docs/docs/cmd/teams/user/user-app-add.md +3 -3
- package/docs/docs/cmd/teams/user/user-app-list.md +18 -2
- package/docs/docs/cmd/teams/user/user-app-remove.md +4 -4
- package/docs/docs/cmd/teams/user/user-list.md +21 -4
- package/docs/docs/cmd/todo/task/task-add.md +47 -2
- package/npm-shrinkwrap.json +280 -194
- package/package.json +15 -13
|
@@ -11,7 +11,7 @@ m365 teams team list [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-j, --joined`
|
|
14
|
-
: Show only joined teams
|
|
14
|
+
: Show only joined teams.
|
|
15
15
|
|
|
16
16
|
--8<-- "docs/cmd/_global.md"
|
|
17
17
|
|
|
@@ -21,13 +21,13 @@ You can only see the details or archived status of the Microsoft Teams you are a
|
|
|
21
21
|
|
|
22
22
|
## Examples
|
|
23
23
|
|
|
24
|
-
List all Microsoft Teams in the tenant
|
|
24
|
+
List all Microsoft Teams in the tenant.
|
|
25
25
|
|
|
26
26
|
```sh
|
|
27
27
|
m365 teams team list
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
List all Microsoft Teams in the tenant you are a member of
|
|
30
|
+
List all Microsoft Teams in the tenant you are a member of.
|
|
31
31
|
|
|
32
32
|
```sh
|
|
33
33
|
m365 teams team list --joined
|
|
@@ -62,3 +62,34 @@ m365 teams team list --joined
|
|
|
62
62
|
id,displayName,isArchived,description
|
|
63
63
|
5dc7ba76-b9aa-4fdd-9e91-9fe7d0e8dca3,Architecture,,Architecture Discussion
|
|
64
64
|
```
|
|
65
|
+
|
|
66
|
+
=== "Markdown"
|
|
67
|
+
|
|
68
|
+
```md
|
|
69
|
+
# teams team list --joined "true"
|
|
70
|
+
|
|
71
|
+
Date: 1/3/2023
|
|
72
|
+
|
|
73
|
+
## Architecture (5dc7ba76-b9aa-4fdd-9e91-9fe7d0e8dca3)
|
|
74
|
+
|
|
75
|
+
Property | Value
|
|
76
|
+
---------|-------
|
|
77
|
+
id | 5dc7ba76-b9aa-4fdd-9e91-9fe7d0e8dca3
|
|
78
|
+
createdDateTime | null
|
|
79
|
+
displayName | Architecture
|
|
80
|
+
description | Architecture Discussion
|
|
81
|
+
internalId | null
|
|
82
|
+
classification | null
|
|
83
|
+
specialization | null
|
|
84
|
+
visibility | null
|
|
85
|
+
webUrl | null
|
|
86
|
+
isArchived | false
|
|
87
|
+
tenantId | 92e59666-257b-49c3-b1fa-1bae8107f6ba
|
|
88
|
+
isMembershipLimitedToOwners | null
|
|
89
|
+
memberSettings | null
|
|
90
|
+
guestSettings | null
|
|
91
|
+
messagingSettings | null
|
|
92
|
+
funSettings | null
|
|
93
|
+
discoverySettings | null
|
|
94
|
+
summary | null
|
|
95
|
+
```
|
|
@@ -29,19 +29,19 @@ If the command finds multiple Microsoft Teams teams with the specified name, it
|
|
|
29
29
|
|
|
30
30
|
## Examples
|
|
31
31
|
|
|
32
|
-
Removes the specified Microsoft Teams team
|
|
32
|
+
Removes the specified Microsoft Teams team by id.
|
|
33
33
|
|
|
34
34
|
```sh
|
|
35
35
|
m365 teams team remove --id 00000000-0000-0000-0000-000000000000
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
Removes the specified Microsoft Teams team
|
|
38
|
+
Removes the specified Microsoft Teams team by name.
|
|
39
39
|
|
|
40
40
|
```sh
|
|
41
41
|
m365 teams team remove --name "Team Name"
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
Removes the specified team without confirmation
|
|
44
|
+
Removes the specified team without confirmation.
|
|
45
45
|
|
|
46
46
|
```sh
|
|
47
47
|
m365 teams team remove --id 00000000-0000-0000-0000-000000000000 --confirm
|
|
@@ -11,34 +11,34 @@ m365 teams team set [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-i, --id [id]`
|
|
14
|
-
: The ID of the Microsoft Teams team for which to update settings
|
|
14
|
+
: The ID of the Microsoft Teams team for which to update settings.
|
|
15
15
|
|
|
16
16
|
`-n, --name [name]`
|
|
17
|
-
: The display name for the Microsoft Teams team for which to update settings
|
|
17
|
+
: The display name for the Microsoft Teams team for which to update settings.
|
|
18
18
|
|
|
19
19
|
`--description [description]`
|
|
20
|
-
: The description for the Microsoft Teams team
|
|
20
|
+
: The description for the Microsoft Teams team.
|
|
21
21
|
|
|
22
22
|
`--mailNickName [mailNickName]`
|
|
23
|
-
: The mail alias for the Microsoft Teams team
|
|
23
|
+
: The mail alias for the Microsoft Teams team.
|
|
24
24
|
|
|
25
25
|
`--classification [classification]`
|
|
26
|
-
: The classification for the Microsoft Teams team
|
|
26
|
+
: The classification for the Microsoft Teams team.
|
|
27
27
|
|
|
28
28
|
`--visibility [visibility]`
|
|
29
|
-
: The visibility of the Microsoft Teams team. Valid values `Private
|
|
29
|
+
: The visibility of the Microsoft Teams team. Valid values `Private`, `Public`.
|
|
30
30
|
|
|
31
31
|
--8<-- "docs/cmd/_global.md"
|
|
32
32
|
|
|
33
33
|
## Examples
|
|
34
34
|
|
|
35
|
-
Set Microsoft Teams team visibility
|
|
35
|
+
Set Microsoft Teams team visibility.
|
|
36
36
|
|
|
37
37
|
```sh
|
|
38
38
|
m365 teams team set --id "00000000-0000-0000-0000-000000000000" --visibility Private
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
Set Microsoft Teams team classification
|
|
41
|
+
Set Microsoft Teams team classification.
|
|
42
42
|
|
|
43
43
|
```sh
|
|
44
44
|
m365 teams team set --id "00000000-0000-0000-0000-000000000000" --classification MBI
|
|
@@ -28,17 +28,18 @@ This command restores users' ability to send messages and edit the team, abiding
|
|
|
28
28
|
|
|
29
29
|
## Examples
|
|
30
30
|
|
|
31
|
-
Restore an archived Microsoft Teams team
|
|
31
|
+
Restore an archived Microsoft Teams team by id.
|
|
32
32
|
|
|
33
33
|
```sh
|
|
34
34
|
m365 teams team unarchive --id 6f6fd3f7-9ba5-4488-bbe6-a789004d0d55
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
Restore an archived Microsoft Teams team
|
|
37
|
+
Restore an archived Microsoft Teams team by name.
|
|
38
38
|
|
|
39
39
|
```sh
|
|
40
40
|
m365 teams team unarchive --name "Team Name"
|
|
41
41
|
```
|
|
42
|
+
|
|
42
43
|
## Response
|
|
43
44
|
|
|
44
45
|
The command won't return a response on success.
|
|
@@ -11,10 +11,10 @@ m365 teams user app add [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`--id <id>`
|
|
14
|
-
: The ID of the app to install
|
|
14
|
+
: The ID of the app to install.
|
|
15
15
|
|
|
16
16
|
`--userId <userId>`
|
|
17
|
-
: The ID of the user to install the app for
|
|
17
|
+
: The ID of the user to install the app for.
|
|
18
18
|
|
|
19
19
|
--8<-- "docs/cmd/_global.md"
|
|
20
20
|
|
|
@@ -24,7 +24,7 @@ The `id` has to be the ID of the app from the Microsoft Teams App Catalog. Do no
|
|
|
24
24
|
|
|
25
25
|
## Examples
|
|
26
26
|
|
|
27
|
-
Install an app from the catalog for the specified user
|
|
27
|
+
Install an app from the catalog for the specified user.
|
|
28
28
|
|
|
29
29
|
```sh
|
|
30
30
|
m365 teams user app add --id 4440558e-8c73-4597-abc7-3644a64c4bce --userId 2609af39-7775-4f94-a3dc-0dd67657e900
|
|
@@ -20,13 +20,13 @@ m365 teams user app list [options]
|
|
|
20
20
|
|
|
21
21
|
## Examples
|
|
22
22
|
|
|
23
|
-
List the apps installed in the personal scope of the specified user using its ID
|
|
23
|
+
List the apps installed in the personal scope of the specified user using its ID.
|
|
24
24
|
|
|
25
25
|
```sh
|
|
26
26
|
m365 teams user app list --userId 4440558e-8c73-4597-abc7-3644a64c4bce
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
List the apps installed in the personal scope of the specified user using its UPN
|
|
29
|
+
List the apps installed in the personal scope of the specified user using its UPN.
|
|
30
30
|
|
|
31
31
|
```sh
|
|
32
32
|
m365 teams user app list --userName admin@contoso.com
|
|
@@ -77,3 +77,19 @@ m365 teams user app list --userName admin@contoso.com
|
|
|
77
77
|
NzhjY2Y1MzAtYmJmMC00N2U0LWFhZTYtZGE1ZjhjNmZiMTQyIyMxNGQ2OTYyZC02ZWViLTRmNDgtODg5MC1kZTU1NDU0YmIxMzY=,14d6962d-6eeb-4f48-8890-de55454bb136,Activity,1.0
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
+
=== "Markdown"
|
|
81
|
+
|
|
82
|
+
```md
|
|
83
|
+
# teams user app list --userName "admin@contoso.com"
|
|
84
|
+
|
|
85
|
+
Date: 1/3/2023
|
|
86
|
+
|
|
87
|
+
## Activity (NzhjY2Y1MzAtYmJmMC00N2U0LWFhZTYtZGE1ZjhjNmZiMTQyIyMxNGQ2OTYyZC02ZWViLTRmNDgtODg5MC1kZTU1NDU0YmIxMzY=)
|
|
88
|
+
|
|
89
|
+
Property | Value
|
|
90
|
+
---------|-------
|
|
91
|
+
id | NzhjY2Y1MzAtYmJmMC00N2U0LWFhZTYtZGE1ZjhjNmZiMTQyIyMxNGQ2OTYyZC02ZWViLTRmNDgtODg5MC1kZTU1NDU0YmIxMzY=
|
|
92
|
+
appId | 14d6962d-6eeb-4f48-8890-de55454bb136
|
|
93
|
+
displayName | Activity
|
|
94
|
+
version | 1.0
|
|
95
|
+
```
|
|
@@ -11,13 +11,13 @@ m365 teams user app remove [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`--id <id>`
|
|
14
|
-
: The unique id of the app instance installed for the user
|
|
14
|
+
: The unique id of the app instance installed for the user.
|
|
15
15
|
|
|
16
16
|
`--userId <userId>`
|
|
17
|
-
: The ID of the user to uninstall the app for
|
|
17
|
+
: The ID of the user to uninstall the app for.
|
|
18
18
|
|
|
19
19
|
`--confirm`
|
|
20
|
-
: Confirm removal of app for user
|
|
20
|
+
: Confirm removal of app for user.
|
|
21
21
|
|
|
22
22
|
--8<-- "docs/cmd/_global.md"
|
|
23
23
|
|
|
@@ -28,7 +28,7 @@ Do not use the ID from the manifest of the zip app package or the id from the Mi
|
|
|
28
28
|
|
|
29
29
|
## Examples
|
|
30
30
|
|
|
31
|
-
Uninstall an app for the specified user
|
|
31
|
+
Uninstall an app for the specified user.
|
|
32
32
|
|
|
33
33
|
```sh
|
|
34
34
|
m365 teams user app remove --id YzUyN2E0NzAtYTg4Mi00ODFjLTk4MWMtZWU2ZWZhYmE4NWM3IyM0ZDFlYTA0Ny1mMTk2LTQ1MGQtYjJlOS0wZDI4NTViYTA1YTY= --userId 2609af39-7775-4f94-a3dc-0dd67657e900
|
|
@@ -11,22 +11,22 @@ m365 teams user list [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-i, --teamId <teamId>`
|
|
14
|
-
: The ID of the Microsoft Teams team for which to list users
|
|
14
|
+
: The ID of the Microsoft Teams team for which to list users.
|
|
15
15
|
|
|
16
16
|
`-r, --role [role]`
|
|
17
|
-
: Filter the results to only users with the given role: `Owner
|
|
17
|
+
: Filter the results to only users with the given role: `Owner`, `Member`, `Guest`.
|
|
18
18
|
|
|
19
19
|
--8<-- "docs/cmd/_global.md"
|
|
20
20
|
|
|
21
21
|
## Examples
|
|
22
22
|
|
|
23
|
-
List all users and their role in the specified Microsoft teams team
|
|
23
|
+
List all users and their role in the specified Microsoft teams team.
|
|
24
24
|
|
|
25
25
|
```sh
|
|
26
26
|
m365 teams user list --teamId '00000000-0000-0000-0000-000000000000'
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
List all owners and their role in the specified Microsoft teams team
|
|
29
|
+
List all owners and their role in the specified Microsoft teams team.
|
|
30
30
|
|
|
31
31
|
```sh
|
|
32
32
|
m365 teams user list --teamId '00000000-0000-0000-0000-000000000000' --role Owner
|
|
@@ -62,3 +62,20 @@ m365 teams user list --teamId '00000000-0000-0000-0000-000000000000' --role Owne
|
|
|
62
62
|
id,displayName,userPrincipalName,userType
|
|
63
63
|
78ccf530-bbf0-47e4-aae6-da5f8c6fb142,John Doe,john@contoso.onmicrosoft.com,Owner
|
|
64
64
|
```
|
|
65
|
+
|
|
66
|
+
=== "Markdown"
|
|
67
|
+
|
|
68
|
+
```md
|
|
69
|
+
# teams user list --teamId "00000000-0000-0000-0000-000000000000"
|
|
70
|
+
|
|
71
|
+
Date: 1/3/2023
|
|
72
|
+
|
|
73
|
+
## John Doe (78ccf530-bbf0-47e4-aae6-da5f8c6fb142)
|
|
74
|
+
|
|
75
|
+
Property | Value
|
|
76
|
+
---------|-------
|
|
77
|
+
id | 78ccf530-bbf0-47e4-aae6-da5f8c6fb142
|
|
78
|
+
displayName | John Doe
|
|
79
|
+
userPrincipalName | john@contoso.onmicrosoft.com
|
|
80
|
+
userType | Owner
|
|
81
|
+
```
|
|
@@ -34,8 +34,24 @@ m365 todo task add [options]
|
|
|
34
34
|
`--reminderDateTime [reminderDateTime]`
|
|
35
35
|
: The date and time for a reminder alert of the task to occur. This should be defined as a valid ISO 8601 string in the UTC time zone.
|
|
36
36
|
|
|
37
|
+
`--categories [categories]`
|
|
38
|
+
: Comma-separated list of categories associated with the task.
|
|
39
|
+
|
|
40
|
+
`--completedDateTime [completedDateTime]`
|
|
41
|
+
: The date and time when the task was finished. This should be defined as a valid ISO 8601 string. `2021-12-16T18:28:48.6964197Z`. This option can only be used when the `status` is set to `completed`.
|
|
42
|
+
|
|
43
|
+
`--startDateTime [startDateTime]`
|
|
44
|
+
: The date and time when the task is scheduled to start. This should be defined as a valid ISO 8601 string. `2021-12-16T18:28:48.6964197Z`
|
|
45
|
+
|
|
46
|
+
`--status [status]`
|
|
47
|
+
: Indicates the state or progress of the task. The possible values are: `notStarted`, `inProgress`, `completed`, `waitingOnOthers`, `deferred`.
|
|
48
|
+
|
|
37
49
|
--8<-- "docs/cmd/_global.md"
|
|
38
50
|
|
|
51
|
+
## Remarks
|
|
52
|
+
|
|
53
|
+
When you specify the values for `categories`, each category can correspond to the displayName property of an [outlookCategory](https://learn.microsoft.com/graph/api/resources/outlookcategory?view=graph-rest-1.0). It is permissible to use distinct names.
|
|
54
|
+
|
|
39
55
|
## Examples
|
|
40
56
|
|
|
41
57
|
Add a task to Microsoft To Do tasks list with with a specific name
|
|
@@ -62,9 +78,13 @@ Create a new task with a specific due date
|
|
|
62
78
|
m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA==" --dueDateTime 2023-01-01
|
|
63
79
|
```
|
|
64
80
|
|
|
65
|
-
|
|
81
|
+
Create a new task with categories, a completedDateTime, a startDateTime and a status
|
|
66
82
|
|
|
67
|
-
|
|
83
|
+
```sh
|
|
84
|
+
m365 todo task add --title "New task" --listName "My task list" --categories "Red category,Important" --completedDateTime 2023-12-01 --startDateTime 2023-12-01 --status "notStarted"
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Response
|
|
68
88
|
|
|
69
89
|
=== "JSON"
|
|
70
90
|
|
|
@@ -117,3 +137,28 @@ m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04
|
|
|
117
137
|
importance,isReminderOn,status,title,createdDateTime,lastModifiedDateTime,hasAttachments,categories,id,body,dueDateTime,reminderDateTime
|
|
118
138
|
high,1,notStarted,New task,2022-10-29T10:54:06.3672421Z,2022-10-29T10:54:06.5078837Z,,[],AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=,"{""content"":""I should not forget this"",""contentType"":""text""}","{""dateTime"":""2023-01-01T00:00:00.0000000"",""timeZone"":""UTC""}","{""dateTime"":""2023-01-01T12:00:00.0000000"",""timeZone"":""UTC""}"
|
|
119
139
|
```
|
|
140
|
+
|
|
141
|
+
=== "Markdown"
|
|
142
|
+
|
|
143
|
+
```md
|
|
144
|
+
# todo task add --title "New task" --listName "My task list" --status "notStarted"
|
|
145
|
+
|
|
146
|
+
Date: 4/3/2023
|
|
147
|
+
|
|
148
|
+
## New task (AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=)
|
|
149
|
+
|
|
150
|
+
Property | Value
|
|
151
|
+
---------|-------
|
|
152
|
+
importance | high
|
|
153
|
+
isReminderOn | true
|
|
154
|
+
status | notStarted
|
|
155
|
+
title | New task
|
|
156
|
+
createdDateTime | 2022-10-29T10:54:06.3672421Z
|
|
157
|
+
lastModifiedDateTime | 2022-10-29T10:54:06.5078837Z
|
|
158
|
+
hasAttachments | false
|
|
159
|
+
categories | []
|
|
160
|
+
id | AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=
|
|
161
|
+
body | {"content": "I should not forget this","contentType": "text"}
|
|
162
|
+
dueDateTime | {"dateTime": "2023-01-01T00:00:00.0000000","timeZone": "UTC"}
|
|
163
|
+
reminderDateTime | {"dateTime": "2023-01-01T12:00:00.0000000","timeZone": "UTC"}
|
|
164
|
+
```
|