@pnp/cli-microsoft365 5.9.0 → 6.0.0-beta.063a75a
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.js +4 -2
- package/LICENSE +1 -3
- package/dist/Auth.js +1 -2
- package/dist/Command.js +8 -6
- package/dist/cli/Cli.js +71 -16
- package/dist/m365/aad/commands/app/app-add.js +8 -9
- package/dist/m365/aad/commands/app/app-get.js +4 -3
- package/dist/m365/aad/commands/app/app-list.js +38 -0
- package/dist/m365/aad/commands/app/app-remove.js +4 -7
- package/dist/m365/aad/commands/app/app-role-add.js +4 -3
- package/dist/m365/aad/commands/app/app-role-list.js +4 -3
- package/dist/m365/aad/commands/app/app-role-remove.js +4 -7
- package/dist/m365/aad/commands/app/app-set.js +4 -3
- package/dist/m365/aad/commands/approleassignment/approleassignment-add.js +14 -13
- package/dist/m365/aad/commands/approleassignment/approleassignment-list.js +12 -11
- package/dist/m365/aad/commands/approleassignment/approleassignment-remove.js +13 -12
- package/dist/m365/aad/commands/groupsettingtemplate/groupsettingtemplate-get.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-add.js +2 -7
- package/dist/m365/aad/commands/o365group/o365group-conversation-post-list.js +3 -2
- package/dist/m365/aad/commands/o365group/o365group-list.js +3 -2
- package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-list.js +7 -6
- package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-remove.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-restore.js +1 -4
- package/dist/m365/aad/commands/o365group/o365group-teamify.js +10 -9
- package/dist/m365/aad/commands/o365group/o365group-user-add.js +3 -2
- package/dist/m365/aad/commands/o365group/o365group-user-remove.js +3 -2
- package/dist/m365/aad/commands/o365group/o365group-user-set.js +1 -1
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-list.js +2 -1
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-remove.js +2 -1
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-set.js +2 -1
- package/dist/m365/aad/commands/policy/policy-list.js +6 -6
- package/dist/m365/aad/commands/sp/sp-add.js +4 -3
- package/dist/m365/aad/commands/sp/sp-get.js +14 -13
- package/dist/m365/aad/commands/user/user-get.js +7 -5
- package/dist/m365/aad/commands/user/user-guest-add.js +103 -0
- package/dist/m365/aad/commands/user/user-hibp.js +2 -1
- package/dist/m365/aad/commands/user/user-list.js +2 -1
- package/dist/m365/aad/commands/user/user-set.js +3 -2
- package/dist/m365/aad/commands/user/user-signin-list.js +5 -4
- package/dist/m365/aad/commands.js +2 -3
- package/dist/m365/adaptivecard/commands/adaptivecard-send.js +4 -4
- package/dist/m365/base/DateAndPeriodBasedReport.js +3 -2
- package/dist/m365/base/PeriodBasedReport.js +2 -1
- package/dist/m365/base/SpoCommand.js +12 -11
- package/dist/m365/booking/commands/business/business-get.js +3 -2
- package/dist/m365/cli/commands/config/config-set.js +5 -1
- package/dist/m365/commands/login.js +6 -1
- package/dist/m365/file/commands/file-list.js +2 -1
- package/dist/m365/flow/commands/environment/environment-get.js +2 -1
- package/dist/m365/flow/commands/flow-disable.js +3 -2
- package/dist/m365/flow/commands/flow-enable.js +3 -2
- package/dist/m365/flow/commands/flow-export.js +6 -5
- package/dist/m365/flow/commands/flow-get.js +3 -2
- package/dist/m365/flow/commands/flow-list.js +3 -2
- package/dist/m365/flow/commands/flow-remove.js +4 -3
- package/dist/m365/flow/commands/run/run-cancel.js +7 -6
- package/dist/m365/flow/commands/run/run-get.js +5 -4
- package/dist/m365/flow/commands/run/run-list.js +5 -4
- package/dist/m365/flow/commands/run/run-resubmit.js +9 -8
- package/dist/m365/outlook/commands/mail/mail-send.js +2 -4
- package/dist/m365/outlook/commands/message/message-get.js +97 -0
- package/dist/m365/outlook/commands/message/message-list.js +3 -2
- package/dist/m365/outlook/commands/message/message-move.js +5 -4
- package/dist/m365/outlook/commands.js +2 -2
- package/dist/m365/pa/commands/app/app-get.js +3 -2
- package/dist/m365/pa/commands/app/app-list.js +2 -1
- package/dist/m365/pa/commands/app/app-remove.js +2 -1
- package/dist/m365/pa/commands/connector/connector-export.js +4 -3
- package/dist/m365/pa/commands/connector/connector-list.js +3 -2
- package/dist/m365/pa/commands/environment/environment-get.js +2 -1
- package/dist/m365/pa/commands/solution/solution-reference-add.js +7 -7
- package/dist/m365/planner/commands/bucket/bucket-add.js +3 -10
- package/dist/m365/planner/commands/bucket/bucket-get.js +8 -18
- package/dist/m365/planner/commands/bucket/bucket-list.js +3 -10
- package/dist/m365/planner/commands/bucket/bucket-remove.js +5 -12
- package/dist/m365/planner/commands/bucket/bucket-set.js +5 -12
- package/dist/m365/planner/commands/plan/plan-add.js +1 -1
- package/dist/m365/planner/commands/plan/plan-get.js +11 -35
- package/dist/m365/planner/commands/plan/plan-list.js +1 -1
- package/dist/m365/planner/commands/plan/plan-remove.js +1 -1
- package/dist/m365/planner/commands/task/task-add.js +5 -10
- package/dist/m365/planner/commands/task/task-checklistitem-add.js +3 -2
- package/dist/m365/planner/commands/task/task-checklistitem-list.js +2 -1
- package/dist/m365/planner/commands/task/task-checklistitem-remove.js +2 -1
- package/dist/m365/planner/commands/task/task-get.js +8 -21
- package/dist/m365/planner/commands/task/task-list.js +8 -14
- package/dist/m365/planner/commands/task/task-reference-add.js +2 -2
- package/dist/m365/planner/commands/task/task-reference-list.js +2 -1
- package/dist/m365/planner/commands/task/task-reference-remove.js +2 -2
- package/dist/m365/planner/commands/task/task-remove.js +1 -1
- package/dist/m365/planner/commands/task/task-set.js +7 -12
- package/dist/m365/planner/commands.js +0 -2
- package/dist/m365/pp/commands/card/card-clone.js +122 -0
- package/dist/m365/pp/commands/card/card-get.js +2 -2
- package/dist/m365/pp/commands/card/card-list.js +1 -1
- package/dist/m365/pp/commands/card/card-remove.js +130 -0
- package/dist/m365/pp/commands/chatbot/chatbot-list.js +108 -0
- package/dist/m365/pp/commands/dataverse/dataverse-table-get.js +77 -0
- package/dist/m365/pp/commands/dataverse/dataverse-table-list.js +1 -1
- package/dist/m365/pp/commands/dataverse/dataverse-table-remove.js +95 -0
- package/dist/m365/pp/commands/environment/environment-get.js +1 -1
- package/dist/m365/pp/commands/environment/environment-list.js +1 -1
- package/dist/m365/pp/commands/gateway/gateway-get.js +2 -1
- package/dist/m365/pp/commands/managementapp/managementapp-add.js +4 -3
- package/dist/m365/pp/commands/solution/solution-get.js +2 -2
- package/dist/m365/pp/commands/solution/solution-list.js +6 -12
- package/dist/m365/pp/commands/solution/solution-publisher-get.js +107 -0
- package/dist/m365/pp/commands/solution/solution-publisher-list.js +78 -0
- package/dist/m365/pp/commands/solution/solution-publisher-remove.js +130 -0
- package/dist/m365/pp/commands/solution/solution-remove.js +130 -0
- package/dist/m365/pp/commands.js +9 -0
- package/dist/m365/search/commands/externalconnection/externalconnection-get.js +4 -3
- package/dist/m365/search/commands/externalconnection/externalconnection-remove.js +4 -3
- package/dist/m365/spfx/commands/package/package-generate.js +2 -2
- package/dist/m365/spfx/commands/project/project-doctor/{doctor-1.16.0-beta.1.js → doctor-1.16.0.js} +6 -6
- package/dist/m365/spfx/commands/project/project-doctor.js +1 -1
- package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.16.0-beta.2.js → upgrade-1.16.0.js} +26 -26
- package/dist/m365/spfx/commands/project/project-upgrade.js +17 -16
- package/dist/m365/spfx/commands/spfx-doctor.js +3 -3
- package/dist/m365/spo/commands/app/SpoAppBaseCommand.js +1 -1
- package/dist/m365/spo/commands/app/app-add.js +7 -7
- package/dist/m365/spo/commands/app/app-deploy.js +8 -8
- package/dist/m365/spo/commands/app/app-get.js +10 -9
- package/dist/m365/spo/commands/app/app-install.js +8 -7
- package/dist/m365/spo/commands/app/app-list.js +11 -18
- package/dist/m365/spo/commands/app/app-remove.js +9 -8
- package/dist/m365/spo/commands/app/app-retract.js +9 -8
- package/dist/m365/spo/commands/app/app-teamspackage-download.js +2 -1
- package/dist/m365/spo/commands/app/app-uninstall.js +8 -7
- package/dist/m365/spo/commands/app/app-upgrade.js +8 -7
- package/dist/m365/spo/commands/apppage/apppage-set.js +2 -2
- package/dist/m365/spo/commands/cdn/cdn-policy-list.js +7 -7
- package/dist/m365/spo/commands/cdn/cdn-policy-set.js +7 -7
- package/dist/m365/spo/commands/contenttype/contenttype-field-set.js +13 -13
- package/dist/m365/spo/commands/contenttype/contenttype-get.js +3 -3
- package/dist/m365/spo/commands/contenttype/contenttype-list.js +5 -11
- package/dist/m365/spo/commands/contenttype/contenttype-remove.js +4 -3
- package/dist/m365/spo/commands/contenttype/contenttype-set.js +1 -1
- package/dist/m365/spo/commands/customaction/customaction-add.js +3 -3
- package/dist/m365/spo/commands/customaction/customaction-clear.js +3 -3
- package/dist/m365/spo/commands/customaction/customaction-get.js +9 -7
- package/dist/m365/spo/commands/customaction/customaction-list.js +8 -20
- package/dist/m365/spo/commands/customaction/customaction-remove.js +8 -6
- package/dist/m365/spo/commands/customaction/customaction-set.js +4 -3
- package/dist/m365/spo/commands/eventreceiver/eventreceiver-get.js +44 -28
- package/dist/m365/spo/commands/eventreceiver/eventreceiver-list.js +7 -13
- package/dist/m365/spo/commands/eventreceiver/eventreceiver-remove.js +44 -59
- package/dist/m365/spo/commands/feature/feature-disable.js +4 -4
- package/dist/m365/spo/commands/feature/feature-enable.js +5 -5
- package/dist/m365/spo/commands/feature/feature-list.js +6 -13
- package/dist/m365/spo/commands/field/field-get.js +1 -7
- package/dist/m365/spo/commands/field/field-list.js +3 -10
- package/dist/m365/spo/commands/field/field-remove.js +1 -7
- package/dist/m365/spo/commands/field/field-set.js +1 -8
- package/dist/m365/spo/commands/file/file-add.js +14 -13
- package/dist/m365/spo/commands/file/file-checkin.js +8 -7
- package/dist/m365/spo/commands/file/file-checkout.js +7 -6
- package/dist/m365/spo/commands/file/file-copy.js +2 -1
- package/dist/m365/spo/commands/file/file-get.js +31 -4
- package/dist/m365/spo/commands/file/file-move.js +2 -1
- package/dist/m365/spo/commands/file/file-remove.js +4 -3
- package/dist/m365/spo/commands/file/file-rename.js +3 -2
- package/dist/m365/spo/commands/file/file-roleassignment-add.js +1 -15
- package/dist/m365/spo/commands/file/file-roleassignment-remove.js +1 -1
- package/dist/m365/spo/commands/file/file-roleinheritance-break.js +1 -1
- package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +1 -1
- package/dist/m365/spo/commands/file/file-sharinginfo-get.js +13 -13
- package/dist/m365/spo/commands/file/file-version-clear.js +114 -0
- package/dist/m365/spo/commands/file/file-version-get.js +104 -0
- package/dist/m365/spo/commands/file/file-version-list.js +92 -0
- package/dist/m365/spo/commands/file/file-version-remove.js +119 -0
- package/dist/m365/spo/commands/file/file-version-restore.js +119 -0
- package/dist/m365/spo/commands/folder/folder-get.js +35 -9
- package/dist/m365/spo/commands/folder/folder-list.js +31 -15
- package/dist/m365/spo/commands/folder/folder-remove.js +5 -4
- package/dist/m365/spo/commands/folder/folder-rename.js +4 -4
- package/dist/m365/spo/commands/folder/folder-roleassignment-add.js +215 -0
- package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +2 -1
- package/dist/m365/spo/commands/folder/folder-roleinheritance-break.js +11 -1
- package/dist/m365/spo/commands/folder/folder-roleinheritance-reset.js +12 -1
- package/dist/m365/spo/commands/group/group-add.js +1 -1
- package/dist/m365/spo/commands/group/group-get.js +4 -3
- package/dist/m365/spo/commands/group/group-list.js +4 -9
- package/dist/m365/spo/commands/group/{group-user-add.js → group-member-add.js} +18 -17
- package/dist/m365/spo/commands/group/{group-user-list.js → group-member-list.js} +21 -27
- package/dist/m365/spo/commands/group/{group-user-remove.js → group-member-remove.js} +19 -18
- package/dist/m365/spo/commands/group/group-remove.js +1 -1
- package/dist/m365/spo/commands/group/group-set.js +1 -1
- package/dist/m365/spo/commands/hubsite/hubsite-connect.js +93 -18
- package/dist/m365/spo/commands/hubsite/hubsite-disconnect.js +69 -13
- package/dist/m365/spo/commands/hubsite/hubsite-get.js +1 -1
- package/dist/m365/spo/commands/hubsite/hubsite-list.js +4 -10
- package/dist/m365/spo/commands/hubsite/hubsite-register.js +4 -4
- package/dist/m365/spo/commands/hubsite/hubsite-rights-grant.js +4 -4
- package/dist/m365/spo/commands/hubsite/hubsite-rights-revoke.js +5 -5
- package/dist/m365/spo/commands/knowledgehub/knowledgehub-set.js +4 -4
- package/dist/m365/spo/commands/list/list-contenttype-add.js +5 -5
- package/dist/m365/spo/commands/list/list-contenttype-default-set.js +1 -1
- package/dist/m365/spo/commands/list/list-contenttype-list.js +4 -12
- package/dist/m365/spo/commands/list/list-contenttype-remove.js +6 -6
- package/dist/m365/spo/commands/list/list-get.js +14 -6
- package/dist/m365/spo/commands/list/list-label-get.js +34 -22
- package/dist/m365/spo/commands/list/list-label-set.js +1 -1
- package/dist/m365/spo/commands/list/list-list.js +6 -24
- package/dist/m365/spo/commands/list/list-remove.js +1 -1
- package/dist/m365/spo/commands/list/list-roleassignment-add.js +4 -22
- package/dist/m365/spo/commands/list/list-roleassignment-remove.js +4 -15
- package/dist/m365/spo/commands/list/list-roleinheritance-break.js +51 -30
- package/dist/m365/spo/commands/list/list-roleinheritance-reset.js +47 -26
- package/dist/m365/spo/commands/list/list-set.js +31 -8
- package/dist/m365/spo/commands/list/list-sitescript-get.js +35 -24
- package/dist/m365/spo/commands/list/list-view-add.js +1 -1
- package/dist/m365/spo/commands/list/list-view-field-add.js +38 -24
- package/dist/m365/spo/commands/list/list-view-field-remove.js +28 -14
- package/dist/m365/spo/commands/list/list-view-field-set.js +32 -18
- package/dist/m365/spo/commands/list/list-view-get.js +9 -9
- package/dist/m365/spo/commands/list/list-view-list.js +17 -20
- package/dist/m365/spo/commands/list/list-view-remove.js +25 -16
- package/dist/m365/spo/commands/list/list-view-set.js +28 -16
- package/dist/m365/spo/commands/list/list-webhook-add.js +1 -1
- package/dist/m365/spo/commands/list/list-webhook-get.js +1 -1
- package/dist/m365/spo/commands/list/list-webhook-list.js +9 -41
- package/dist/m365/spo/commands/list/list-webhook-remove.js +1 -1
- package/dist/m365/spo/commands/list/list-webhook-set.js +12 -13
- package/dist/m365/spo/commands/listitem/listitem-add.js +1 -1
- package/dist/m365/spo/commands/listitem/listitem-attachment-list.js +1 -1
- package/dist/m365/spo/commands/listitem/listitem-batch-add.js +202 -0
- package/dist/m365/spo/commands/listitem/listitem-get.js +29 -6
- package/dist/m365/spo/commands/listitem/listitem-isrecord.js +1 -1
- package/dist/m365/spo/commands/listitem/listitem-list.js +8 -36
- package/dist/m365/spo/commands/listitem/listitem-record-declare.js +5 -5
- package/dist/m365/spo/commands/listitem/listitem-record-undeclare.js +5 -5
- package/dist/m365/spo/commands/listitem/listitem-remove.js +1 -1
- package/dist/m365/spo/commands/listitem/listitem-roleassignment-remove.js +4 -15
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +51 -30
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +49 -25
- package/dist/m365/spo/commands/listitem/listitem-set.js +1 -1
- package/dist/m365/spo/commands/navigation/navigation-node-list.js +3 -10
- package/dist/m365/spo/commands/page/Page.js +3 -2
- package/dist/m365/spo/commands/page/page-add.js +2 -1
- package/dist/m365/spo/commands/page/page-clientsidewebpart-add.js +8 -10
- package/dist/m365/spo/commands/page/page-column-get.js +2 -2
- package/dist/m365/spo/commands/page/page-column-list.js +2 -2
- package/dist/m365/spo/commands/page/page-control-get.js +6 -5
- package/dist/m365/spo/commands/page/page-control-list.js +5 -4
- package/dist/m365/spo/commands/page/page-control-set.js +6 -5
- package/dist/m365/spo/commands/page/page-get.js +2 -1
- package/dist/m365/spo/commands/page/page-header-set.js +6 -5
- package/dist/m365/spo/commands/page/page-list.js +7 -21
- package/dist/m365/spo/commands/page/page-section-add.js +6 -5
- package/dist/m365/spo/commands/page/page-section-get.js +2 -2
- package/dist/m365/spo/commands/page/page-section-list.js +2 -2
- package/dist/m365/spo/commands/page/page-set.js +38 -4
- package/dist/m365/spo/commands/page/page-template-list.js +4 -11
- package/dist/m365/spo/commands/roledefinition/roledefinition-list.js +16 -10
- package/dist/m365/spo/commands/serviceprincipal/serviceprincipal-grant-revoke.js +2 -2
- package/dist/m365/spo/commands/serviceprincipal/serviceprincipal-permissionrequest-approve.js +4 -4
- package/dist/m365/spo/commands/serviceprincipal/serviceprincipal-permissionrequest-deny.js +4 -4
- package/dist/m365/spo/commands/site/site-add.js +4 -11
- package/dist/m365/spo/commands/site/site-appcatalog-add.js +3 -3
- package/dist/m365/spo/commands/site/site-appcatalog-remove.js +3 -3
- package/dist/m365/spo/commands/site/site-apppermission-add.js +4 -3
- package/dist/m365/spo/commands/site/site-apppermission-get.js +2 -2
- package/dist/m365/spo/commands/site/site-apppermission-remove.js +5 -5
- package/dist/m365/spo/commands/site/site-apppermission-set.js +5 -5
- package/dist/m365/spo/commands/site/site-chrome-set.js +3 -3
- package/dist/m365/spo/commands/site/site-ensure.js +1 -1
- package/dist/m365/spo/commands/site/site-groupify.js +3 -3
- package/dist/m365/spo/commands/site/site-hubsite-connect.js +76 -0
- package/dist/m365/spo/commands/site/site-hubsite-disconnect.js +93 -0
- package/dist/m365/spo/commands/{hubsite/hubsite-theme-sync.js → site/site-hubsite-theme-sync.js} +11 -11
- package/dist/m365/spo/commands/site/site-list.js +6 -17
- package/dist/m365/spo/commands/site/site-rename.js +11 -10
- package/dist/m365/spo/commands/site/site-set.js +1 -1
- package/dist/m365/spo/commands/sitedesign/sitedesign-get.js +4 -7
- package/dist/m365/spo/commands/sitedesign/sitedesign-rights-grant.js +4 -4
- package/dist/m365/spo/commands/sitedesign/sitedesign-rights-list.js +4 -4
- package/dist/m365/spo/commands/sitedesign/sitedesign-rights-revoke.js +5 -5
- package/dist/m365/spo/commands/sitedesign/sitedesign-task-get.js +4 -4
- package/dist/m365/spo/commands/sitedesign/sitedesign-task-remove.js +5 -5
- package/dist/m365/spo/commands/sitescript/sitescript-add.js +2 -1
- package/dist/m365/spo/commands/spo-search.js +3 -2
- package/dist/m365/spo/commands/storageentity/storageentity-get.js +2 -1
- package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-remove.js +5 -5
- package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-restore.js +3 -3
- package/dist/m365/spo/commands/term/term-add.js +1 -1
- package/dist/m365/spo/commands/term/term-get.js +1 -1
- package/dist/m365/spo/commands/term/term-group-get.js +1 -1
- package/dist/m365/spo/commands/term/term-list.js +1 -1
- package/dist/m365/spo/commands/term/term-set-add.js +1 -1
- package/dist/m365/spo/commands/term/term-set-get.js +1 -1
- package/dist/m365/spo/commands/term/term-set-list.js +1 -1
- package/dist/m365/spo/commands/user/user-get.js +5 -4
- package/dist/m365/spo/commands/user/user-remove.js +3 -2
- package/dist/m365/spo/commands/userprofile/userprofile-get.js +2 -1
- package/dist/m365/spo/commands/web/web-add.js +5 -4
- package/dist/m365/spo/commands/web/web-get.js +27 -4
- package/dist/m365/spo/commands/web/web-list.js +7 -14
- package/dist/m365/spo/commands/web/web-reindex.js +8 -8
- package/dist/m365/spo/commands/web/web-remove.js +5 -5
- package/dist/m365/spo/commands/web/web-roleassignment-add.js +4 -15
- package/dist/m365/spo/commands/web/web-roleassignment-remove.js +4 -8
- package/dist/m365/spo/commands/web/web-roleinheritance-reset.js +41 -15
- package/dist/m365/spo/commands/web/web-set.js +4 -4
- package/dist/m365/spo/commands.js +13 -7
- package/dist/m365/{spo/commands/page/PageTemplateResponse.js → teams/commands/Meeting.js} +1 -1
- package/dist/m365/teams/commands/app/app-install.js +8 -7
- package/dist/m365/teams/commands/app/app-list.js +12 -61
- package/dist/m365/teams/commands/app/app-publish.js +14 -15
- package/dist/m365/teams/commands/app/app-uninstall.js +3 -3
- package/dist/m365/teams/commands/app/app-update.js +3 -2
- package/dist/m365/teams/commands/cache/cache-remove.js +41 -10
- package/dist/m365/teams/commands/channel/channel-add.js +1 -1
- package/dist/m365/teams/commands/channel/channel-get.js +14 -13
- package/dist/m365/teams/commands/channel/channel-list.js +1 -1
- package/dist/m365/teams/commands/channel/channel-member-add.js +5 -8
- package/dist/m365/teams/commands/channel/channel-member-list.js +3 -6
- package/dist/m365/teams/commands/channel/channel-member-remove.js +3 -6
- package/dist/m365/teams/commands/channel/channel-member-set.js +3 -2
- package/dist/m365/teams/commands/channel/channel-remove.js +61 -43
- package/dist/m365/teams/commands/channel/channel-set.js +62 -23
- package/dist/m365/teams/commands/chat/chat-get.js +3 -2
- package/dist/m365/teams/commands/chat/chat-message-send.js +1 -1
- package/dist/m365/teams/commands/chat/chatUtil.js +2 -1
- package/dist/m365/teams/commands/funsettings/funsettings-list.js +2 -1
- package/dist/m365/teams/commands/funsettings/funsettings-set.js +2 -1
- package/dist/m365/teams/commands/guestsettings/guestsettings-list.js +2 -1
- package/dist/m365/teams/commands/guestsettings/guestsettings-set.js +2 -1
- package/dist/m365/teams/commands/meeting/meeting-get.js +134 -0
- package/dist/m365/teams/commands/meeting/meeting-list.js +153 -0
- package/dist/m365/teams/commands/membersettings/membersettings-list.js +2 -1
- package/dist/m365/teams/commands/membersettings/membersettings-set.js +2 -1
- package/dist/m365/teams/commands/message/message-get.js +3 -3
- package/dist/m365/teams/commands/messagingsettings/messagingsettings-list.js +2 -1
- package/dist/m365/teams/commands/messagingsettings/messagingsettings-set.js +2 -1
- package/dist/m365/teams/commands/report/report-directroutingcalls.js +3 -2
- package/dist/m365/teams/commands/report/report-pstncalls.js +3 -2
- package/dist/m365/teams/commands/tab/tab-add.js +2 -1
- package/dist/m365/teams/commands/tab/tab-get.js +13 -12
- package/dist/m365/teams/commands/tab/tab-list.js +2 -1
- package/dist/m365/teams/commands/tab/tab-remove.js +7 -6
- package/dist/m365/teams/commands/team/team-app-list.js +109 -0
- package/dist/m365/teams/commands/team/team-archive.js +7 -19
- package/dist/m365/teams/commands/team/team-clone.js +5 -21
- package/dist/m365/teams/commands/team/team-get.js +3 -2
- package/dist/m365/teams/commands/team/team-remove.js +7 -18
- package/dist/m365/teams/commands/team/team-set.js +3 -21
- package/dist/m365/teams/commands/team/team-unarchive.js +6 -17
- package/dist/m365/teams/commands/user/user-app-add.js +4 -4
- package/dist/m365/teams/commands/user/user-app-list.js +4 -3
- package/dist/m365/teams/commands/user/user-app-remove.js +3 -3
- package/dist/m365/teams/commands.js +3 -3
- package/dist/m365/tenant/commands/security/security-alerts-list.js +2 -1
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-healthissue-get.js +2 -1
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-healthissue-list.js +2 -1
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-message-list.js +2 -1
- package/dist/m365/todo/commands/list/list-get.js +1 -1
- package/dist/m365/todo/commands/list/list-remove.js +1 -1
- package/dist/m365/todo/commands/list/list-set.js +1 -1
- package/dist/m365/todo/commands/task/task-add.js +1 -1
- package/dist/m365/todo/commands/task/task-get.js +1 -1
- package/dist/m365/todo/commands/task/task-list.js +1 -1
- package/dist/m365/todo/commands/task/task-remove.js +1 -1
- package/dist/m365/todo/commands/task/task-set.js +3 -2
- package/dist/m365/viva/commands/connections/connections-app-create.js +9 -9
- package/dist/m365/yammer/commands/group/group-list.js +12 -27
- package/dist/m365/yammer/commands/group/group-user-add.js +8 -8
- package/dist/m365/yammer/commands/group/group-user-remove.js +11 -11
- package/dist/m365/yammer/commands/message/message-like-set.js +5 -5
- package/dist/m365/yammer/commands/user/user-get.js +7 -6
- package/dist/m365/yammer/commands/yammer-search.js +6 -2
- package/dist/settingsNames.js +1 -1
- package/dist/utils/aadGroup.js +2 -1
- package/dist/utils/formatting.js +15 -15
- package/dist/utils/md.js +8 -1
- package/dist/utils/odata.js +2 -1
- package/dist/utils/powerPlatform.js +3 -2
- package/dist/utils/spo.js +3 -2
- package/docs/docs/_clisettings.md +2 -2
- package/docs/docs/cmd/_global.md +2 -2
- package/docs/docs/cmd/aad/app/app-add.md +19 -19
- package/docs/docs/cmd/aad/app/app-list.md +149 -0
- package/docs/docs/cmd/aad/app/app-remove.md +0 -6
- package/docs/docs/cmd/aad/app/app-role-remove.md +0 -6
- package/docs/docs/cmd/aad/approleassignment/approleassignment-add.md +5 -5
- package/docs/docs/cmd/aad/approleassignment/approleassignment-list.md +5 -5
- package/docs/docs/cmd/aad/approleassignment/approleassignment-remove.md +5 -5
- package/docs/docs/cmd/aad/o365group/o365group-add.md +3 -3
- package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-list.md +7 -7
- package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-restore.md +0 -6
- package/docs/docs/cmd/aad/o365group/o365group-teamify.md +4 -4
- package/docs/docs/cmd/aad/policy/policy-list.md +2 -2
- package/docs/docs/cmd/aad/sp/sp-get.md +5 -5
- package/docs/docs/cmd/aad/user/user-guest-add.md +107 -0
- package/docs/docs/cmd/adaptivecard/adaptivecard-send.md +12 -5
- package/docs/docs/cmd/app/app-get.md +156 -0
- package/docs/docs/cmd/app/app-open.md +21 -1
- package/docs/docs/cmd/app/permission/permission-list.md +43 -0
- package/docs/docs/cmd/booking/business/business-get.md +107 -0
- package/docs/docs/cmd/booking/business/business-list.md +34 -0
- package/docs/docs/cmd/flow/environment/environment-get.md +100 -0
- package/docs/docs/cmd/flow/environment/environment-list.md +97 -0
- package/docs/docs/cmd/flow/flow-disable.md +10 -6
- package/docs/docs/cmd/flow/flow-enable.md +5 -1
- package/docs/docs/cmd/flow/flow-export.md +25 -5
- package/docs/docs/cmd/flow/flow-get.md +375 -3
- package/docs/docs/cmd/flow/flow-list.md +110 -3
- package/docs/docs/cmd/flow/flow-remove.md +9 -5
- package/docs/docs/cmd/flow/run/run-cancel.md +7 -3
- package/docs/docs/cmd/flow/run/run-get.md +75 -3
- package/docs/docs/cmd/flow/run/run-list.md +71 -3
- package/docs/docs/cmd/flow/run/run-resubmit.md +8 -4
- package/docs/docs/cmd/graph/schemaextension/schemaextension-add.md +4 -11
- package/docs/docs/cmd/graph/schemaextension/schemaextension-set.md +4 -10
- package/docs/docs/cmd/outlook/mail/mail-send.md +0 -6
- package/docs/docs/cmd/outlook/message/message-get.md +48 -0
- package/docs/docs/cmd/outlook/message/message-move.md +4 -4
- package/docs/docs/cmd/pa/app/app-get.md +184 -0
- package/docs/docs/cmd/pa/app/app-list.md +181 -0
- package/docs/docs/cmd/pa/app/app-remove.md +4 -0
- package/docs/docs/cmd/pa/connector/connector-export.md +7 -3
- package/docs/docs/cmd/pa/connector/connector-list.md +91 -2
- package/docs/docs/cmd/pa/environment/environment-get.md +113 -0
- package/docs/docs/cmd/pa/environment/environment-list.md +109 -0
- package/docs/docs/cmd/pa/pcf/pcf-init.md +4 -0
- package/docs/docs/cmd/pa/solution/solution-init.md +5 -0
- package/docs/docs/cmd/pa/solution/solution-reference-add.md +6 -2
- package/docs/docs/cmd/planner/bucket/bucket-add.md +0 -3
- package/docs/docs/cmd/planner/bucket/bucket-get.md +0 -3
- package/docs/docs/cmd/planner/bucket/bucket-list.md +0 -3
- package/docs/docs/cmd/planner/bucket/bucket-remove.md +0 -3
- package/docs/docs/cmd/planner/bucket/bucket-set.md +0 -3
- package/docs/docs/cmd/planner/plan/plan-get.md +2 -14
- package/docs/docs/cmd/planner/task/task-add.md +0 -3
- package/docs/docs/cmd/planner/task/task-get.md +0 -6
- package/docs/docs/cmd/planner/task/task-list.md +0 -3
- package/docs/docs/cmd/planner/task/task-set.md +0 -3
- package/docs/docs/cmd/pp/card/card-clone.md +77 -0
- package/docs/docs/cmd/pp/card/card-get.md +72 -1
- package/docs/docs/cmd/pp/card/card-list.md +72 -1
- package/docs/docs/cmd/pp/card/card-remove.md +82 -0
- package/docs/docs/cmd/pp/chatbot/chatbot-list.md +82 -0
- package/docs/docs/cmd/pp/dataverse/dataverse-table-get.md +120 -0
- package/docs/docs/cmd/pp/dataverse/dataverse-table-list.md +86 -1
- package/docs/docs/cmd/pp/dataverse/dataverse-table-remove.md +49 -0
- package/docs/docs/cmd/pp/environment/environment-get.md +309 -1
- package/docs/docs/cmd/pp/environment/environment-list.md +313 -1
- package/docs/docs/cmd/pp/gateway/gateway-get.md +32 -0
- package/docs/docs/cmd/pp/gateway/gateway-list.md +35 -0
- package/docs/docs/cmd/pp/managementapp/managementapp-add.md +23 -0
- package/docs/docs/cmd/pp/managementapp/managementapp-list.md +27 -0
- package/docs/docs/cmd/pp/solution/solution-get.md +36 -1
- package/docs/docs/cmd/pp/solution/solution-list.md +38 -1
- package/docs/docs/cmd/pp/solution/solution-publisher-get.md +83 -0
- package/docs/docs/cmd/pp/solution/solution-publisher-list.md +71 -0
- package/docs/docs/cmd/pp/solution/solution-publisher-remove.md +58 -0
- package/docs/docs/cmd/pp/solution/solution-remove.md +82 -0
- package/docs/docs/cmd/pp/tenant/tenant-settings-list.md +62 -0
- package/docs/docs/cmd/spfx/package/package-generate.md +6 -2
- package/docs/docs/cmd/spfx/project/project-doctor.md +92 -0
- package/docs/docs/cmd/spfx/project/project-externalize.md +116 -0
- package/docs/docs/cmd/spfx/project/project-rename.md +6 -2
- package/docs/docs/cmd/spfx/project/project-upgrade.md +101 -1
- package/docs/docs/cmd/spfx/spfx-doctor.md +38 -0
- package/docs/docs/cmd/spo/app/app-add.md +2 -2
- package/docs/docs/cmd/spo/app/app-deploy.md +2 -2
- package/docs/docs/cmd/spo/app/app-get.md +2 -2
- package/docs/docs/cmd/spo/app/app-install.md +2 -2
- package/docs/docs/cmd/spo/app/app-list.md +2 -2
- package/docs/docs/cmd/spo/app/app-remove.md +2 -2
- package/docs/docs/cmd/spo/app/app-retract.md +2 -2
- package/docs/docs/cmd/spo/app/app-uninstall.md +2 -2
- package/docs/docs/cmd/spo/app/app-upgrade.md +2 -2
- package/docs/docs/cmd/spo/apppage/apppage-set.md +2 -2
- 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/contenttype/contenttype-field-set.md +4 -4
- package/docs/docs/cmd/spo/customaction/customaction-add.md +13 -10
- package/docs/docs/cmd/spo/customaction/customaction-clear.md +4 -4
- package/docs/docs/cmd/spo/customaction/customaction-get.md +5 -5
- package/docs/docs/cmd/spo/customaction/customaction-list.md +4 -4
- package/docs/docs/cmd/spo/customaction/customaction-remove.md +9 -9
- package/docs/docs/cmd/spo/customaction/customaction-set.md +10 -9
- package/docs/docs/cmd/spo/eventreceiver/eventreceiver-get.md +42 -2
- package/docs/docs/cmd/spo/eventreceiver/eventreceiver-remove.md +6 -1
- package/docs/docs/cmd/spo/feature/feature-disable.md +4 -4
- package/docs/docs/cmd/spo/feature/feature-enable.md +2 -2
- package/docs/docs/cmd/spo/feature/feature-list.md +3 -3
- package/docs/docs/cmd/spo/field/field-get.md +0 -3
- package/docs/docs/cmd/spo/field/field-remove.md +0 -3
- package/docs/docs/cmd/spo/field/field-set.md +4 -4
- package/docs/docs/cmd/spo/file/file-checkin.md +6 -6
- package/docs/docs/cmd/spo/file/file-checkout.md +4 -4
- package/docs/docs/cmd/spo/file/file-get.md +219 -8
- package/docs/docs/cmd/spo/file/file-roleassignment-add.md +9 -9
- package/docs/docs/cmd/spo/file/file-roleassignment-remove.md +3 -3
- package/docs/docs/cmd/spo/file/file-sharinginfo-get.md +7 -7
- package/docs/docs/cmd/spo/file/file-version-clear.md +55 -0
- package/docs/docs/cmd/spo/file/file-version-get.md +76 -0
- package/docs/docs/cmd/spo/file/file-version-list.md +76 -0
- package/docs/docs/cmd/spo/file/file-version-remove.md +58 -0
- package/docs/docs/cmd/spo/file/file-version-restore.md +58 -0
- package/docs/docs/cmd/spo/folder/folder-get.md +14 -3
- package/docs/docs/cmd/spo/folder/folder-list.md +45 -0
- package/docs/docs/cmd/spo/folder/folder-remove.md +3 -3
- package/docs/docs/cmd/spo/folder/folder-rename.md +2 -2
- package/docs/docs/cmd/spo/folder/folder-roleassignment-add.md +59 -0
- package/docs/docs/cmd/spo/folder/folder-roleinheritance-break.md +6 -0
- package/docs/docs/cmd/spo/folder/folder-roleinheritance-reset.md +6 -0
- package/docs/docs/cmd/spo/group/{group-user-add.md → group-member-add.md} +11 -11
- package/docs/docs/cmd/spo/group/{group-user-list.md → group-member-list.md} +5 -5
- package/docs/docs/cmd/spo/group/group-member-remove.md +39 -0
- package/docs/docs/cmd/spo/homesite/homesite-get.md +31 -0
- package/docs/docs/cmd/spo/homesite/homesite-remove.md +20 -0
- package/docs/docs/cmd/spo/homesite/homesite-set.md +20 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-connect.md +36 -14
- package/docs/docs/cmd/spo/hubsite/hubsite-data-get.md +57 -3
- package/docs/docs/cmd/spo/hubsite/hubsite-disconnect.md +28 -12
- package/docs/docs/cmd/spo/hubsite/hubsite-get.md +89 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-list.md +94 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-register.md +57 -4
- package/docs/docs/cmd/spo/hubsite/hubsite-rights-grant.md +10 -9
- package/docs/docs/cmd/spo/hubsite/hubsite-rights-revoke.md +9 -8
- package/docs/docs/cmd/spo/hubsite/hubsite-set.md +47 -5
- package/docs/docs/cmd/spo/hubsite/hubsite-unregister.md +6 -2
- package/docs/docs/cmd/spo/knowledgehub/knowledgehub-get.md +20 -0
- package/docs/docs/cmd/spo/knowledgehub/knowledgehub-remove.md +20 -0
- package/docs/docs/cmd/spo/knowledgehub/knowledgehub-set.md +22 -2
- package/docs/docs/cmd/spo/list/list-add.md +133 -0
- package/docs/docs/cmd/spo/list/list-contenttype-add.md +92 -5
- package/docs/docs/cmd/spo/list/list-contenttype-default-set.md +4 -0
- package/docs/docs/cmd/spo/list/list-contenttype-list.md +60 -0
- package/docs/docs/cmd/spo/list/list-contenttype-remove.md +8 -4
- package/docs/docs/cmd/spo/list/list-get.md +154 -6
- package/docs/docs/cmd/spo/list/list-label-get.md +83 -7
- package/docs/docs/cmd/spo/list/list-label-set.md +4 -0
- package/docs/docs/cmd/spo/list/list-list.md +89 -3
- package/docs/docs/cmd/spo/list/list-remove.md +4 -0
- package/docs/docs/cmd/spo/list/list-roleassignment-add.md +13 -9
- package/docs/docs/cmd/spo/list/list-roleassignment-remove.md +12 -8
- package/docs/docs/cmd/spo/list/list-roleinheritance-break.md +13 -0
- package/docs/docs/cmd/spo/list/list-roleinheritance-reset.md +13 -0
- package/docs/docs/cmd/spo/list/list-set.md +22 -6
- package/docs/docs/cmd/spo/list/list-sitescript-get.md +94 -8
- package/docs/docs/cmd/spo/list/list-view-add.md +121 -0
- package/docs/docs/cmd/spo/list/list-view-field-add.md +24 -11
- package/docs/docs/cmd/spo/list/list-view-field-remove.md +21 -8
- package/docs/docs/cmd/spo/list/list-view-field-set.md +28 -9
- package/docs/docs/cmd/spo/list/list-view-get.md +128 -7
- package/docs/docs/cmd/spo/list/list-view-list.md +94 -7
- package/docs/docs/cmd/spo/list/list-view-remove.md +24 -11
- package/docs/docs/cmd/spo/list/list-view-set.md +29 -11
- package/docs/docs/cmd/spo/list/list-webhook-add.md +33 -0
- package/docs/docs/cmd/spo/list/list-webhook-get.md +33 -0
- package/docs/docs/cmd/spo/list/list-webhook-list.md +35 -9
- package/docs/docs/cmd/spo/list/list-webhook-remove.md +4 -0
- package/docs/docs/cmd/spo/list/list-webhook-set.md +9 -2
- package/docs/docs/cmd/spo/listitem/listitem-add.md +59 -0
- package/docs/docs/cmd/spo/listitem/listitem-attachment-list.md +34 -0
- package/docs/docs/cmd/spo/listitem/listitem-batch-add.md +61 -0
- package/docs/docs/cmd/spo/listitem/listitem-get.md +188 -4
- package/docs/docs/cmd/spo/listitem/listitem-isrecord.md +19 -0
- package/docs/docs/cmd/spo/listitem/listitem-list.md +50 -15
- package/docs/docs/cmd/spo/listitem/listitem-record-declare.md +34 -5
- package/docs/docs/cmd/spo/listitem/listitem-record-undeclare.md +7 -3
- package/docs/docs/cmd/spo/listitem/listitem-remove.md +4 -0
- package/docs/docs/cmd/spo/listitem/listitem-roleassignment-add.md +5 -1
- package/docs/docs/cmd/spo/listitem/listitem-roleassignment-remove.md +12 -8
- package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-break.md +13 -0
- package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-reset.md +9 -2
- package/docs/docs/cmd/spo/listitem/listitem-set.md +59 -0
- package/docs/docs/cmd/spo/mail/mail-send.md +4 -0
- package/docs/docs/cmd/spo/navigation/navigation-node-add.md +39 -0
- package/docs/docs/cmd/spo/navigation/navigation-node-list.md +29 -0
- package/docs/docs/cmd/spo/navigation/navigation-node-remove.md +4 -0
- package/docs/docs/cmd/spo/page/page-add.md +2 -2
- package/docs/docs/cmd/spo/page/page-clientsidewebpart-add.md +14 -19
- package/docs/docs/cmd/spo/page/page-column-get.md +3 -3
- package/docs/docs/cmd/spo/page/page-column-list.md +3 -3
- package/docs/docs/cmd/spo/page/page-control-get.md +3 -3
- package/docs/docs/cmd/spo/page/page-control-list.md +3 -3
- package/docs/docs/cmd/spo/page/page-control-set.md +6 -5
- package/docs/docs/cmd/spo/page/page-section-add.md +3 -3
- package/docs/docs/cmd/spo/page/page-section-get.md +3 -3
- package/docs/docs/cmd/spo/page/page-section-list.md +3 -3
- package/docs/docs/cmd/spo/page/page-set.md +15 -2
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-add.md +3 -1
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-list.md +3 -1
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-revoke.md +5 -5
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-approve.md +5 -5
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-deny.md +5 -5
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-list.md +3 -1
- package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-set.md +3 -3
- package/docs/docs/cmd/spo/site/site-add.md +2 -5
- package/docs/docs/cmd/spo/site/site-appcatalog-add.md +2 -2
- package/docs/docs/cmd/spo/site/site-appcatalog-remove.md +2 -2
- package/docs/docs/cmd/spo/site/site-apppermission-get.md +2 -2
- package/docs/docs/cmd/spo/site/site-apppermission-remove.md +2 -2
- package/docs/docs/cmd/spo/site/site-apppermission-set.md +5 -5
- package/docs/docs/cmd/spo/site/site-chrome-set.md +4 -4
- package/docs/docs/cmd/spo/site/site-groupify.md +5 -11
- package/docs/docs/cmd/spo/site/site-hubsite-connect.md +37 -0
- package/docs/docs/cmd/spo/site/site-hubsite-disconnect.md +37 -0
- package/docs/docs/cmd/spo/site/site-hubsite-theme-sync.md +28 -0
- package/docs/docs/cmd/spo/site/site-list.md +6 -6
- package/docs/docs/cmd/spo/site/site-rename.md +6 -6
- package/docs/docs/cmd/spo/sitedesign/sitedesign-get.md +2 -2
- package/docs/docs/cmd/spo/sitedesign/sitedesign-rights-grant.md +4 -4
- package/docs/docs/cmd/spo/sitedesign/sitedesign-rights-list.md +3 -3
- package/docs/docs/cmd/spo/sitedesign/sitedesign-rights-revoke.md +3 -3
- package/docs/docs/cmd/spo/sitedesign/sitedesign-task-get.md +2 -2
- package/docs/docs/cmd/spo/sitedesign/sitedesign-task-remove.md +5 -5
- package/docs/docs/cmd/spo/spo-get.md +23 -0
- package/docs/docs/cmd/spo/spo-search.md +29 -0
- package/docs/docs/cmd/spo/spo-set.md +4 -0
- package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-remove.md +3 -3
- package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-restore.md +6 -3
- package/docs/docs/cmd/spo/term/term-add.md +5 -0
- package/docs/docs/cmd/spo/term/term-set-add.md +6 -1
- package/docs/docs/cmd/spo/user/user-get.md +49 -2
- package/docs/docs/cmd/spo/user/user-list.md +41 -0
- package/docs/docs/cmd/spo/user/user-remove.md +4 -0
- package/docs/docs/cmd/spo/userprofile/userprofile-get.md +586 -0
- package/docs/docs/cmd/spo/userprofile/userprofile-set.md +4 -0
- package/docs/docs/cmd/spo/web/web-add.md +47 -4
- package/docs/docs/cmd/spo/web/web-clientsidewebpart-list.md +29 -0
- package/docs/docs/cmd/spo/web/web-get.md +388 -5
- package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +29 -0
- package/docs/docs/cmd/spo/web/web-list.md +83 -2
- package/docs/docs/cmd/spo/web/web-reindex.md +6 -2
- package/docs/docs/cmd/spo/web/web-remove.md +6 -2
- package/docs/docs/cmd/spo/web/web-roleassignment-add.md +10 -6
- package/docs/docs/cmd/spo/web/web-roleassignment-remove.md +8 -4
- package/docs/docs/cmd/spo/web/web-roleinheritance-reset.md +13 -0
- package/docs/docs/cmd/spo/web/web-set.md +13 -9
- package/docs/docs/cmd/teams/app/app-install.md +9 -5
- package/docs/docs/cmd/teams/app/app-list.md +32 -24
- package/docs/docs/cmd/teams/app/app-publish.md +31 -1
- package/docs/docs/cmd/teams/app/app-remove.md +4 -0
- package/docs/docs/cmd/teams/app/app-uninstall.md +7 -3
- package/docs/docs/cmd/teams/app/app-update.md +4 -0
- package/docs/docs/cmd/teams/cache/cache-remove.md +4 -0
- package/docs/docs/cmd/teams/channel/channel-add.md +37 -0
- package/docs/docs/cmd/teams/channel/channel-get.md +49 -10
- package/docs/docs/cmd/teams/channel/channel-list.md +35 -0
- package/docs/docs/cmd/teams/channel/channel-member-add.md +4 -6
- package/docs/docs/cmd/teams/channel/channel-member-list.md +37 -6
- package/docs/docs/cmd/teams/channel/channel-member-remove.md +4 -6
- package/docs/docs/cmd/teams/channel/channel-member-set.md +35 -0
- package/docs/docs/cmd/teams/channel/channel-remove.md +18 -11
- package/docs/docs/cmd/teams/channel/channel-set.md +19 -9
- package/docs/docs/cmd/teams/chat/chat-get.md +42 -0
- package/docs/docs/cmd/teams/chat/chat-list.md +38 -0
- package/docs/docs/cmd/teams/chat/chat-member-list.md +35 -0
- package/docs/docs/cmd/teams/chat/chat-message-list.md +60 -0
- package/docs/docs/cmd/teams/chat/chat-message-send.md +4 -0
- package/docs/docs/cmd/teams/funsettings/funsettings-list.md +29 -0
- package/docs/docs/cmd/teams/funsettings/funsettings-set.md +4 -0
- package/docs/docs/cmd/teams/guestsettings/guestsettings-list.md +25 -0
- package/docs/docs/cmd/teams/guestsettings/guestsettings-set.md +4 -0
- package/docs/docs/cmd/teams/meeting/meeting-get.md +159 -0
- package/docs/docs/cmd/teams/meeting/meeting-list.md +149 -0
- package/docs/docs/cmd/teams/membersettings/membersettings-list.md +33 -0
- package/docs/docs/cmd/teams/membersettings/membersettings-set.md +4 -0
- package/docs/docs/cmd/teams/message/message-get.md +83 -3
- package/docs/docs/cmd/teams/message/message-list.md +63 -0
- package/docs/docs/cmd/teams/message/message-reply-list.md +63 -0
- package/docs/docs/cmd/teams/messagingsettings/messagingsettings-list.md +31 -0
- package/docs/docs/cmd/teams/messagingsettings/messagingsettings-set.md +4 -0
- package/docs/docs/cmd/teams/report/report-deviceusagedistributionusercounts.md +35 -0
- package/docs/docs/cmd/teams/report/report-deviceusageusercounts.md +36 -0
- package/docs/docs/cmd/teams/report/report-deviceusageuserdetail.md +41 -0
- package/docs/docs/cmd/teams/report/report-directroutingcalls.md +49 -0
- package/docs/docs/cmd/teams/report/report-pstncalls.md +49 -0
- package/docs/docs/cmd/teams/report/report-useractivitycounts.md +39 -0
- package/docs/docs/cmd/teams/report/report-useractivityusercounts.md +33 -0
- package/docs/docs/cmd/teams/report/report-useractivityuserdetail.md +58 -0
- package/docs/docs/cmd/teams/tab/tab-add.md +35 -0
- package/docs/docs/cmd/teams/tab/tab-get.md +41 -6
- package/docs/docs/cmd/teams/tab/tab-list.md +43 -0
- package/docs/docs/cmd/teams/tab/tab-remove.md +8 -4
- package/docs/docs/cmd/teams/team/team-add.md +145 -0
- package/docs/docs/cmd/teams/team/team-app-list.md +78 -0
- package/docs/docs/cmd/teams/team/team-archive.md +7 -6
- package/docs/docs/cmd/teams/team/team-clone.md +4 -6
- package/docs/docs/cmd/teams/team/team-get.md +78 -0
- package/docs/docs/cmd/teams/team/team-list.md +30 -0
- package/docs/docs/cmd/teams/team/team-remove.md +7 -6
- package/docs/docs/cmd/teams/team/team-set.md +4 -6
- package/docs/docs/cmd/teams/team/team-unarchive.md +5 -5
- package/docs/docs/cmd/teams/user/user-app-add.md +7 -3
- package/docs/docs/cmd/teams/user/user-app-list.md +40 -0
- package/docs/docs/cmd/teams/user/user-app-remove.md +7 -3
- package/docs/docs/cmd/teams/user/user-list.md +31 -0
- package/docs/docs/cmd/todo/list/list-add.md +32 -1
- package/docs/docs/cmd/todo/list/list-get.md +2 -2
- package/docs/docs/cmd/todo/list/list-list.md +31 -0
- package/docs/docs/cmd/todo/list/list-remove.md +10 -6
- package/docs/docs/cmd/todo/list/list-set.md +9 -5
- package/docs/docs/cmd/todo/task/task-add.md +58 -2
- package/docs/docs/cmd/todo/task/task-get.md +3 -3
- package/docs/docs/cmd/todo/task/task-list.md +47 -0
- package/docs/docs/cmd/todo/task/task-remove.md +9 -4
- package/docs/docs/cmd/todo/task/task-set.md +59 -5
- package/docs/docs/cmd/util/accesstoken/accesstoken-get.md +20 -0
- package/docs/docs/cmd/viva/connections/connections-app-create.md +6 -2
- package/docs/docs/cmd/yammer/group/group-list.md +65 -0
- package/docs/docs/cmd/yammer/group/group-user-add.md +9 -5
- package/docs/docs/cmd/yammer/group/group-user-remove.md +9 -5
- package/docs/docs/cmd/yammer/message/message-add.md +55 -0
- package/docs/docs/cmd/yammer/message/message-get.md +64 -0
- package/docs/docs/cmd/yammer/message/message-like-set.md +8 -4
- package/docs/docs/cmd/yammer/message/message-list.md +60 -0
- package/docs/docs/cmd/yammer/message/message-remove.md +4 -0
- package/docs/docs/cmd/yammer/network/network-list.md +96 -0
- package/docs/docs/cmd/yammer/report/report-activitycounts.md +31 -0
- package/docs/docs/cmd/yammer/report/report-activityusercounts.md +31 -0
- package/docs/docs/cmd/yammer/report/report-activityuserdetail.md +36 -0
- package/docs/docs/cmd/yammer/report/report-deviceusagedistributionusercounts.md +33 -0
- package/docs/docs/cmd/yammer/report/report-deviceusageusercounts.md +34 -0
- package/docs/docs/cmd/yammer/report/report-deviceusageuserdetail.md +38 -0
- package/docs/docs/cmd/yammer/report/report-groupsactivitycounts.md +31 -0
- package/docs/docs/cmd/yammer/report/report-groupsactivitydetail.md +37 -0
- package/docs/docs/cmd/yammer/report/report-groupsactivitygroupcounts.md +30 -0
- package/docs/docs/cmd/yammer/user/user-get.md +101 -2
- package/docs/docs/cmd/yammer/user/user-list.md +97 -0
- package/docs/docs/cmd/yammer/yammer-search.md +77 -0
- package/npm-shrinkwrap.json +276 -259
- package/package.json +19 -15
- package/dist/m365/spo/commands/group/GroupPropertiesCollection.js +0 -3
- package/dist/m365/spo/commands/list/ListInstanceCollection.js +0 -3
- package/dist/m365/spo/commands/site/site-classic-add.js +0 -328
- package/dist/m365/spo/commands/site/site-classic-list.js +0 -115
- package/dist/m365/spo/commands/site/site-classic-set.js +0 -351
- package/docs/docs/cmd/spo/group/group-user-remove.md +0 -39
- package/docs/docs/cmd/spo/hubsite/hubsite-theme-sync.md +0 -33
- package/docs/docs/cmd/spo/site/site-classic-add.md +0 -93
- package/docs/docs/cmd/spo/site/site-classic-list.md +0 -68
- package/docs/docs/cmd/spo/site/site-classic-set.md +0 -102
|
@@ -14,10 +14,13 @@ m365 spo list get [options]
|
|
|
14
14
|
: URL of the site where the list to retrieve is located
|
|
15
15
|
|
|
16
16
|
`-i, --id [id]`
|
|
17
|
-
: ID of the list to retrieve information for. Specify either `id` or `
|
|
17
|
+
: ID of the list to retrieve information for. Specify either `id`, `title` or `url` but not multiple.
|
|
18
18
|
|
|
19
19
|
`-t, --title [title]`
|
|
20
|
-
: Title of the list to retrieve information for. Specify either `id` or `
|
|
20
|
+
: Title of the list to retrieve information for. Specify either `id`, `title` or `url` but not multiple.
|
|
21
|
+
|
|
22
|
+
`--url [url]`
|
|
23
|
+
: Server- or site-relative URL of the list. Specify either `id`, `title` or `url` but not multiple.
|
|
21
24
|
|
|
22
25
|
`-p, --properties [properties]`
|
|
23
26
|
: Comma-separated list of properties to retrieve from the list. Will retrieve all properties possible from default response, if not specified.
|
|
@@ -29,25 +32,37 @@ m365 spo list get [options]
|
|
|
29
32
|
|
|
30
33
|
## Examples
|
|
31
34
|
|
|
32
|
-
|
|
35
|
+
Get information about a list with specified ID located in the specified site.
|
|
33
36
|
|
|
34
37
|
```sh
|
|
35
38
|
m365 spo list get --id 0cd891ef-afce-4e55-b836-fce03286cccf --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
36
39
|
```
|
|
37
40
|
|
|
38
|
-
|
|
41
|
+
Get information about a list with specified title located in the specified site.
|
|
39
42
|
|
|
40
43
|
```sh
|
|
41
44
|
m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
42
45
|
```
|
|
43
46
|
|
|
44
|
-
Get information about a list
|
|
47
|
+
Get information about a list with specified server relative url located in the specified site.
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
m365 spo list get --url 'sites/project-x/Documents' --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Get information about a list with specified site-relative URL located in the specified site.
|
|
54
|
+
|
|
55
|
+
```sh
|
|
56
|
+
m365 spo list get --url 'Shared Documents' --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Get information about a list returning the specified list properties.
|
|
45
60
|
|
|
46
61
|
```sh
|
|
47
62
|
m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/sites/project-x --properties "Title,Id,HasUniqueRoleAssignments,AllowContentTypes"
|
|
48
63
|
```
|
|
49
64
|
|
|
50
|
-
Get information about a list along with the roles and permissions
|
|
65
|
+
Get information about a list along with the roles and permissions.
|
|
51
66
|
|
|
52
67
|
```sh
|
|
53
68
|
m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/sites/project-x --withPermissions
|
|
@@ -56,3 +71,136 @@ m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/site
|
|
|
56
71
|
## More information
|
|
57
72
|
|
|
58
73
|
- List REST API resources: [https://msdn.microsoft.com/en-us/library/office/dn531433.aspx#bk_ListEndpoint](https://msdn.microsoft.com/en-us/library/office/dn531433.aspx#bk_ListEndpoint)
|
|
74
|
+
|
|
75
|
+
## Response
|
|
76
|
+
|
|
77
|
+
=== "JSON"
|
|
78
|
+
|
|
79
|
+
```json
|
|
80
|
+
{
|
|
81
|
+
"AllowContentTypes": true,
|
|
82
|
+
"BaseTemplate": 100,
|
|
83
|
+
"BaseType": 0,
|
|
84
|
+
"ContentTypesEnabled": true,
|
|
85
|
+
"CrawlNonDefaultViews": false,
|
|
86
|
+
"Created": "2022-10-23T09:30:00Z",
|
|
87
|
+
"CurrentChangeToken": {
|
|
88
|
+
"StringValue": "1;3;97d19285-b8a6-4c7f-9c6c-d6b850a6561a;638042258222730000;564169620"
|
|
89
|
+
},
|
|
90
|
+
"DefaultContentApprovalWorkflowId": "00000000-0000-0000-0000-000000000000",
|
|
91
|
+
"DefaultItemOpenUseListSetting": false,
|
|
92
|
+
"Description": "",
|
|
93
|
+
"Direction": "none",
|
|
94
|
+
"DisableCommenting": false,
|
|
95
|
+
"DisableGridEditing": false,
|
|
96
|
+
"DocumentTemplateUrl": null,
|
|
97
|
+
"DraftVersionVisibility": 0,
|
|
98
|
+
"EnableAttachments": true,
|
|
99
|
+
"EnableFolderCreation": false,
|
|
100
|
+
"EnableMinorVersions": false,
|
|
101
|
+
"EnableModeration": false,
|
|
102
|
+
"EnableRequestSignOff": true,
|
|
103
|
+
"EnableVersioning": true,
|
|
104
|
+
"EntityTypeName": "TestList",
|
|
105
|
+
"ExemptFromBlockDownloadOfNonViewableFiles": false,
|
|
106
|
+
"FileSavePostProcessingEnabled": false,
|
|
107
|
+
"ForceCheckout": false,
|
|
108
|
+
"HasExternalDataSource": false,
|
|
109
|
+
"Hidden": false,
|
|
110
|
+
"Id": "97d19285-b8a6-4c7f-9c6c-d6b850a6561a",
|
|
111
|
+
"ImagePath": {
|
|
112
|
+
"DecodedUrl": "/_layouts/15/images/itgen.png?rev=47"
|
|
113
|
+
},
|
|
114
|
+
"ImageUrl": "/_layouts/15/images/itgen.png?rev=47",
|
|
115
|
+
"DefaultSensitivityLabelForLibrary": "",
|
|
116
|
+
"IrmEnabled": false,
|
|
117
|
+
"IrmExpire": false,
|
|
118
|
+
"IrmReject": false,
|
|
119
|
+
"IsApplicationList": false,
|
|
120
|
+
"IsCatalog": false,
|
|
121
|
+
"IsPrivate": false,
|
|
122
|
+
"ItemCount": 0,
|
|
123
|
+
"LastItemDeletedDate": "2022-11-16T19:55:37Z",
|
|
124
|
+
"LastItemModifiedDate": "2022-11-16T19:55:39Z",
|
|
125
|
+
"LastItemUserModifiedDate": "2022-11-16T19:55:37Z",
|
|
126
|
+
"ListExperienceOptions": 0,
|
|
127
|
+
"ListItemEntityTypeFullName": "SP.Data.TestListItem",
|
|
128
|
+
"MajorVersionLimit": 50,
|
|
129
|
+
"MajorWithMinorVersionsLimit": 0,
|
|
130
|
+
"MultipleDataList": false,
|
|
131
|
+
"NoCrawl": false,
|
|
132
|
+
"ParentWebPath": {
|
|
133
|
+
"DecodedUrl": "/"
|
|
134
|
+
},
|
|
135
|
+
"ParentWebUrl": "/",
|
|
136
|
+
"ParserDisabled": false,
|
|
137
|
+
"ServerTemplateCanCreateFolders": true,
|
|
138
|
+
"TemplateFeatureId": "00bfea71-de22-43b2-a848-c05709900100",
|
|
139
|
+
"Title": "Test"
|
|
140
|
+
}
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
=== "Text"
|
|
144
|
+
|
|
145
|
+
```text
|
|
146
|
+
AllowContentTypes : true
|
|
147
|
+
BaseTemplate : 100
|
|
148
|
+
BaseType : 0
|
|
149
|
+
ContentTypesEnabled : true
|
|
150
|
+
CrawlNonDefaultViews : false
|
|
151
|
+
Created : 2022-10-23T09:30:00Z
|
|
152
|
+
CurrentChangeToken : {"StringValue":"1;3;97d19285-b8a6-4c7f-9c6c-d6b850a6561a;638042258464070000;564169707"}
|
|
153
|
+
DefaultContentApprovalWorkflowId : 00000000-0000-0000-0000-000000000000
|
|
154
|
+
DefaultItemOpenUseListSetting : false
|
|
155
|
+
DefaultSensitivityLabelForLibrary :
|
|
156
|
+
Description :
|
|
157
|
+
Direction : none
|
|
158
|
+
DisableCommenting : false
|
|
159
|
+
DisableGridEditing : false
|
|
160
|
+
DocumentTemplateUrl : null
|
|
161
|
+
DraftVersionVisibility : 0
|
|
162
|
+
EnableAttachments : true
|
|
163
|
+
EnableFolderCreation : false
|
|
164
|
+
EnableMinorVersions : false
|
|
165
|
+
EnableModeration : false
|
|
166
|
+
EnableRequestSignOff : true
|
|
167
|
+
EnableVersioning : true
|
|
168
|
+
EntityTypeName : TestList
|
|
169
|
+
ExemptFromBlockDownloadOfNonViewableFiles: false
|
|
170
|
+
FileSavePostProcessingEnabled : false
|
|
171
|
+
ForceCheckout : false
|
|
172
|
+
HasExternalDataSource : false
|
|
173
|
+
Hidden : false
|
|
174
|
+
Id : 97d19285-b8a6-4c7f-9c6c-d6b850a6561a
|
|
175
|
+
ImagePath : {"DecodedUrl":"/_layouts/15/images/itgen.png?rev=47"}
|
|
176
|
+
ImageUrl : /_layouts/15/images/itgen.png?rev=47
|
|
177
|
+
IrmEnabled : false
|
|
178
|
+
IrmExpire : false
|
|
179
|
+
IrmReject : false
|
|
180
|
+
IsApplicationList : false
|
|
181
|
+
IsCatalog : false
|
|
182
|
+
IsPrivate : false
|
|
183
|
+
ItemCount : 0
|
|
184
|
+
LastItemDeletedDate : 2022-11-16T19:55:37Z
|
|
185
|
+
LastItemModifiedDate : 2022-11-16T19:55:39Z
|
|
186
|
+
LastItemUserModifiedDate : 2022-11-16T19:55:37Z
|
|
187
|
+
ListExperienceOptions : 0
|
|
188
|
+
ListItemEntityTypeFullName : SP.Data.TestListItem
|
|
189
|
+
MajorVersionLimit : 50
|
|
190
|
+
MajorWithMinorVersionsLimit : 0
|
|
191
|
+
MultipleDataList : false
|
|
192
|
+
NoCrawl : false
|
|
193
|
+
ParentWebPath : {"DecodedUrl":"/"}
|
|
194
|
+
ParentWebUrl : /
|
|
195
|
+
ParserDisabled : false
|
|
196
|
+
ServerTemplateCanCreateFolders : true
|
|
197
|
+
TemplateFeatureId : 00bfea71-de22-43b2-a848-c05709900100
|
|
198
|
+
Title : Test
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
=== "CSV"
|
|
202
|
+
|
|
203
|
+
```csv
|
|
204
|
+
AllowContentTypes,BaseTemplate,BaseType,ContentTypesEnabled,CrawlNonDefaultViews,Created,CurrentChangeToken,DefaultContentApprovalWorkflowId,DefaultItemOpenUseListSetting,Description,Direction,DisableCommenting,DisableGridEditing,DocumentTemplateUrl,DraftVersionVisibility,EnableAttachments,EnableFolderCreation,EnableMinorVersions,EnableModeration,EnableRequestSignOff,EnableVersioning,EntityTypeName,ExemptFromBlockDownloadOfNonViewableFiles,FileSavePostProcessingEnabled,ForceCheckout,HasExternalDataSource,Hidden,Id,ImagePath,ImageUrl,DefaultSensitivityLabelForLibrary,IrmEnabled,IrmExpire,IrmReject,IsApplicationList,IsCatalog,IsPrivate,ItemCount,LastItemDeletedDate,LastItemModifiedDate,LastItemUserModifiedDate,ListExperienceOptions,ListItemEntityTypeFullName,MajorVersionLimit,MajorWithMinorVersionsLimit,MultipleDataList,NoCrawl,ParentWebPath,ParentWebUrl,ParserDisabled,ServerTemplateCanCreateFolders,TemplateFeatureId,Title
|
|
205
|
+
1,100,0,1,,2022-10-23T09:30:00Z,"{""StringValue"":""1;3;97d19285-b8a6-4c7f-9c6c-d6b850a6561a;638042258543870000;564169743""}",00000000-0000-0000-0000-000000000000,,,none,,,,0,1,,,,1,1,TestList,,,,,,97d19285-b8a6-4c7f-9c6c-d6b850a6561a,"{""DecodedUrl"":""/_layouts/15/images/itgen.png?rev=47""}",/_layouts/15/images/itgen.png?rev=47,,,,,,,,0,2022-11-16T19:55:37Z,2022-11-16T19:55:39Z,2022-11-16T19:55:37Z,0,SP.Data.TestListItem,50,0,,,"{""DecodedUrl"":""/""}",/,,1,00bfea71-de22-43b2-a848-c05709900100,Test
|
|
206
|
+
```
|
|
@@ -11,26 +11,102 @@ m365 spo list label get [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list to get the label from is located
|
|
14
|
+
: URL of the site where the list to get the label from is located.
|
|
15
15
|
|
|
16
16
|
`-l, --listId [listId]`
|
|
17
|
-
: ID of the list to get the label from. Specify either `listId` or `
|
|
17
|
+
: ID of the list to get the label from. Specify either `listId`, `listTitle` or `listUrl` but not multiple.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list to get the label from. Specify either `listId` or `
|
|
20
|
+
: Title of the list to get the label from. Specify either `listId`, `listTitle` or `listUrl` but not multiple.
|
|
21
|
+
|
|
22
|
+
`--listUrl [listUrl]`
|
|
23
|
+
: Server- or site-relative URL of the list. Specify either `listId`, `listTitle` or `listUrl` but not multiple.
|
|
21
24
|
|
|
22
25
|
--8<-- "docs/cmd/_global.md"
|
|
23
26
|
|
|
24
27
|
## Examples
|
|
25
28
|
|
|
26
|
-
Gets label set on the list with title
|
|
29
|
+
Gets label set on the list with specified title located in the specified site.
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 spo list label get --listTitle ContosoList --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Gets label set on the list with specified id located in the specified site.
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 spo list label get --listId cc27a922-8224-4296-90a5-ebbc54da2e85 --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Gets label set on the list with specified server relative url located in the specified site.
|
|
27
42
|
|
|
28
43
|
```sh
|
|
29
|
-
m365 spo list label get
|
|
44
|
+
m365 spo list label get --listUrl 'sites/project-x/Documents' --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
30
45
|
```
|
|
31
46
|
|
|
32
|
-
Gets label set on the list with
|
|
47
|
+
Gets label set on the list with specified site-relative URL located in the specified site.
|
|
33
48
|
|
|
34
49
|
```sh
|
|
35
|
-
m365 spo list label get
|
|
50
|
+
m365 spo list label get --listUrl 'Shared Documents' --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
36
51
|
```
|
|
52
|
+
|
|
53
|
+
## Response
|
|
54
|
+
|
|
55
|
+
=== "JSON"
|
|
56
|
+
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"AcceptMessagesOnlyFromSendersOrMembers": false,
|
|
60
|
+
"AccessType": null,
|
|
61
|
+
"AllowAccessFromUnmanagedDevice": null,
|
|
62
|
+
"AutoDelete": false,
|
|
63
|
+
"BlockDelete": false,
|
|
64
|
+
"BlockEdit": false,
|
|
65
|
+
"ContainsSiteLabel": false,
|
|
66
|
+
"DisplayName": "Label A",
|
|
67
|
+
"EncryptionRMSTemplateId": null,
|
|
68
|
+
"HasRetentionAction": false,
|
|
69
|
+
"IsEventTag": false,
|
|
70
|
+
"Notes": null,
|
|
71
|
+
"RequireSenderAuthenticationEnabled": false,
|
|
72
|
+
"ReviewerEmail": null,
|
|
73
|
+
"SharingCapabilities": null,
|
|
74
|
+
"SuperLock": false,
|
|
75
|
+
"TagDuration": 0,
|
|
76
|
+
"TagId": "4d535433-2a7b-40b0-9dad-8f0f8f3b3841",
|
|
77
|
+
"TagName": "Sensitive",
|
|
78
|
+
"TagRetentionBasedOn": null
|
|
79
|
+
}
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
=== "Text"
|
|
83
|
+
|
|
84
|
+
```text
|
|
85
|
+
AcceptMessagesOnlyFromSendersOrMembers: false
|
|
86
|
+
AccessType : null
|
|
87
|
+
AllowAccessFromUnmanagedDevice : null
|
|
88
|
+
AutoDelete : false
|
|
89
|
+
BlockDelete : false
|
|
90
|
+
BlockEdit : false
|
|
91
|
+
ContainsSiteLabel : false
|
|
92
|
+
DisplayName : Label A
|
|
93
|
+
EncryptionRMSTemplateId : null
|
|
94
|
+
HasRetentionAction : false
|
|
95
|
+
IsEventTag : false
|
|
96
|
+
Notes : null
|
|
97
|
+
RequireSenderAuthenticationEnabled : false
|
|
98
|
+
ReviewerEmail : null
|
|
99
|
+
SharingCapabilities : null
|
|
100
|
+
SuperLock : false
|
|
101
|
+
TagDuration : 0
|
|
102
|
+
TagId : 4d535433-2a7b-40b0-9dad-8f0f8f3b3841
|
|
103
|
+
TagName : Sensitive
|
|
104
|
+
TagRetentionBasedOn : null
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
=== "CSV"
|
|
108
|
+
|
|
109
|
+
```csv
|
|
110
|
+
AcceptMessagesOnlyFromSendersOrMembers,AccessType,AllowAccessFromUnmanagedDevice,AutoDelete,BlockDelete,BlockEdit,ContainsSiteLabel,DisplayName,EncryptionRMSTemplateId,HasRetentionAction,IsEventTag,Notes,RequireSenderAuthenticationEnabled,ReviewerEmail,SharingCapabilities,SuperLock,TagDuration,TagId,TagName,TagRetentionBasedOn
|
|
111
|
+
false,,,false,false,false,false,Label A,,false,false,,false,,,false,0,4d535433-2a7b-40b0-9dad-8f0f8f3b3841,Sensitive,
|
|
112
|
+
```
|
|
@@ -49,3 +49,7 @@ Sets classification label "Confidential" and disables editing and deleting items
|
|
|
49
49
|
```sh
|
|
50
50
|
m365 spo list label set --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle 'Documents' --label 'Confidential' --blockEdit --blockDelete --syncToItems
|
|
51
51
|
```
|
|
52
|
+
|
|
53
|
+
## Response
|
|
54
|
+
|
|
55
|
+
The command won't return a response on success.
|
|
@@ -13,9 +13,6 @@ m365 spo list list [options]
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
14
|
: URL of the site where the lists to retrieve are located
|
|
15
15
|
|
|
16
|
-
`--executeWithLimitedPermissions`
|
|
17
|
-
: Use this option to execute this command with site member or visitor permissions. Not specifying this option will require site owner (or admin) permissions.
|
|
18
|
-
|
|
19
16
|
--8<-- "docs/cmd/_global.md"
|
|
20
17
|
|
|
21
18
|
## Examples
|
|
@@ -29,3 +26,92 @@ m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x
|
|
|
29
26
|
## More information
|
|
30
27
|
|
|
31
28
|
- List REST API resources: [https://msdn.microsoft.com/en-us/library/office/dn531433.aspx#bk_ListEndpoint](https://msdn.microsoft.com/en-us/library/office/dn531433.aspx#bk_ListEndpoint)
|
|
29
|
+
|
|
30
|
+
## Response
|
|
31
|
+
|
|
32
|
+
=== "JSON"
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
[
|
|
36
|
+
{
|
|
37
|
+
"RootFolder": {
|
|
38
|
+
"ServerRelativeUrl": "/_catalogs/theme"
|
|
39
|
+
},
|
|
40
|
+
"AllowContentTypes": true,
|
|
41
|
+
"BaseTemplate": 123,
|
|
42
|
+
"BaseType": 1,
|
|
43
|
+
"ContentTypesEnabled": false,
|
|
44
|
+
"CrawlNonDefaultViews": false,
|
|
45
|
+
"Created": "2020-01-12T01:03:13Z",
|
|
46
|
+
"CurrentChangeToken": {
|
|
47
|
+
"StringValue": "1;3;66e5148c-7060-4479-88e7-636d79579148;638042267256930000;564174226"
|
|
48
|
+
},
|
|
49
|
+
"DefaultContentApprovalWorkflowId": "00000000-0000-0000-0000-000000000000",
|
|
50
|
+
"DefaultItemOpenUseListSetting": false,
|
|
51
|
+
"Description": "Use the theme gallery to store themes. The themes in this gallery can be used by this site or any of its subsites.",
|
|
52
|
+
"Direction": "none",
|
|
53
|
+
"DisableCommenting": false,
|
|
54
|
+
"DisableGridEditing": false,
|
|
55
|
+
"DocumentTemplateUrl": null,
|
|
56
|
+
"DraftVersionVisibility": 0,
|
|
57
|
+
"EnableAttachments": false,
|
|
58
|
+
"EnableFolderCreation": false,
|
|
59
|
+
"EnableMinorVersions": false,
|
|
60
|
+
"EnableModeration": false,
|
|
61
|
+
"EnableRequestSignOff": true,
|
|
62
|
+
"EnableVersioning": false,
|
|
63
|
+
"EntityTypeName": "OData__x005f_catalogs_x002f_theme",
|
|
64
|
+
"ExemptFromBlockDownloadOfNonViewableFiles": false,
|
|
65
|
+
"FileSavePostProcessingEnabled": false,
|
|
66
|
+
"ForceCheckout": false,
|
|
67
|
+
"HasExternalDataSource": false,
|
|
68
|
+
"Hidden": true,
|
|
69
|
+
"Id": "66e5148c-7060-4479-88e7-636d79579148",
|
|
70
|
+
"ImagePath": {
|
|
71
|
+
"DecodedUrl": "/_layouts/15/images/itdl.png?rev=47"
|
|
72
|
+
},
|
|
73
|
+
"ImageUrl": "/_layouts/15/images/itdl.png?rev=47",
|
|
74
|
+
"DefaultSensitivityLabelForLibrary": "",
|
|
75
|
+
"IrmEnabled": false,
|
|
76
|
+
"IrmExpire": false,
|
|
77
|
+
"IrmReject": false,
|
|
78
|
+
"IsApplicationList": false,
|
|
79
|
+
"IsCatalog": true,
|
|
80
|
+
"IsPrivate": false,
|
|
81
|
+
"ItemCount": 41,
|
|
82
|
+
"LastItemDeletedDate": "2020-01-12T01:03:13Z",
|
|
83
|
+
"LastItemModifiedDate": "2020-01-12T01:03:18Z",
|
|
84
|
+
"LastItemUserModifiedDate": "2020-01-12T01:03:18Z",
|
|
85
|
+
"ListExperienceOptions": 0,
|
|
86
|
+
"ListItemEntityTypeFullName": "SP.Data.OData__x005f_catalogs_x002f_themeItem",
|
|
87
|
+
"MajorVersionLimit": 0,
|
|
88
|
+
"MajorWithMinorVersionsLimit": 0,
|
|
89
|
+
"MultipleDataList": false,
|
|
90
|
+
"NoCrawl": true,
|
|
91
|
+
"ParentWebPath": {
|
|
92
|
+
"DecodedUrl": "/"
|
|
93
|
+
},
|
|
94
|
+
"ParentWebUrl": "/",
|
|
95
|
+
"ParserDisabled": false,
|
|
96
|
+
"ServerTemplateCanCreateFolders": false,
|
|
97
|
+
"TemplateFeatureId": "00000000-0000-0000-0000-000000000000",
|
|
98
|
+
"Title": "Theme Gallery",
|
|
99
|
+
"Url": "/_catalogs/theme"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
=== "Text"
|
|
105
|
+
|
|
106
|
+
```text
|
|
107
|
+
Id Url
|
|
108
|
+
------------------------------------ ----------------
|
|
109
|
+
66e5148c-7060-4479-88e7-636d79579148 /_catalogs/theme
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
=== "CSV"
|
|
113
|
+
|
|
114
|
+
```csv
|
|
115
|
+
Id,Url
|
|
116
|
+
Theme Gallery,/_catalogs/theme,66e5148c-7060-4479-88e7-636d79579148
|
|
117
|
+
```
|
|
@@ -37,3 +37,7 @@ Remove the list with title _List 1_ located in site _https://contoso.sharepoint.
|
|
|
37
37
|
```sh
|
|
38
38
|
m365 spo list remove --webUrl https://contoso.sharepoint.com/sites/project-x --title 'List 1'
|
|
39
39
|
```
|
|
40
|
+
|
|
41
|
+
## Response
|
|
42
|
+
|
|
43
|
+
The command won't return a response on success.
|
|
@@ -11,31 +11,31 @@ m365 spo list roleassignment add [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list is located
|
|
14
|
+
: URL of the site where the list is located.
|
|
15
15
|
|
|
16
16
|
`-i, --listId [listId]`
|
|
17
|
-
: ID of the list. Specify either listId
|
|
17
|
+
: ID of the list. Specify either `listId`, `listTitle`, or `listUrl` but not multiple.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list. Specify either listId
|
|
20
|
+
: Title of the list. Specify either `listId`, `listTitle`, or `listUrl` but not multiple.
|
|
21
21
|
|
|
22
22
|
`--listUrl [listUrl]`
|
|
23
|
-
: Relative URL of the list. Specify either listId
|
|
23
|
+
: Relative URL of the list. Specify either `listId`, `listTitle`, or `listUrl` but not multiple.
|
|
24
24
|
|
|
25
25
|
`--principalId [principalId]`
|
|
26
|
-
: SharePoint ID of principal it may be either user id or group id we want to add permissions to. Specify principalId
|
|
26
|
+
: SharePoint ID of principal it may be either user id or group id we want to add permissions to. Specify either `principalId`, `upn`, or `groupName` but not multiple.
|
|
27
27
|
|
|
28
28
|
`--upn [upn]`
|
|
29
|
-
: Upn/email of user to assign role to. Specify either upn or
|
|
29
|
+
: Upn/email of user to assign role to. Specify either `principalId`, `upn`, or `groupName` but not multiple.
|
|
30
30
|
|
|
31
31
|
`--groupName [groupName]`
|
|
32
|
-
: Enter group name of Azure AD or SharePoint group
|
|
32
|
+
: Enter group name of Azure AD or SharePoint group. Specify either `principalId`, `upn`, or `groupName` but not multiple.
|
|
33
33
|
|
|
34
34
|
`--roleDefinitionId [roleDefinitionId]`
|
|
35
|
-
: ID of role definition. Specify either roleDefinitionId or roleDefinitionName but not both
|
|
35
|
+
: ID of role definition. Specify either `roleDefinitionId` or `roleDefinitionName` but not both.
|
|
36
36
|
|
|
37
37
|
`--roleDefinitionName [roleDefinitionName]`
|
|
38
|
-
: Enter the name of a role definition, like 'Contribute', 'Read', etc. Specify either roleDefinitionId or roleDefinitionName but not both
|
|
38
|
+
: Enter the name of a role definition, like 'Contribute', 'Read', etc. Specify either `roleDefinitionId` or `roleDefinitionName` but not both.
|
|
39
39
|
|
|
40
40
|
--8<-- "docs/cmd/_global.md"
|
|
41
41
|
|
|
@@ -76,3 +76,7 @@ add role assignment to list _someList_ located in site _https://contoso.sharepoi
|
|
|
76
76
|
```sh
|
|
77
77
|
m365 spo list roleassignment add --webUrl "https://contoso.sharepoint.com/sites/project-x" --listTitle "someList" --principalId 11 --roleDefinitionName "Full Control"
|
|
78
78
|
```
|
|
79
|
+
|
|
80
|
+
## Response
|
|
81
|
+
|
|
82
|
+
The command won't return a response on success.
|
|
@@ -11,28 +11,28 @@ m365 spo list roleassignment remove [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list is located
|
|
14
|
+
: URL of the site where the list is located.
|
|
15
15
|
|
|
16
16
|
`-i, --listId [listId]`
|
|
17
|
-
: ID of the list. Specify either listId
|
|
17
|
+
: ID of the list. Specify either `listId`, `listTitle`, or `listUrl` but not multiple.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list. Specify either listId
|
|
20
|
+
: Title of the list. Specify either `listId`, `listTitle`, or `listUrl` but not multiple.
|
|
21
21
|
|
|
22
22
|
`--listUrl [listUrl]`
|
|
23
|
-
: Relative URL of the list. Specify either listId
|
|
23
|
+
: Relative URL of the list. Specify either `listId`, `listTitle`, or `listUrl` but not multiple.
|
|
24
24
|
|
|
25
25
|
`--principalId [principalId]`
|
|
26
|
-
: SharePoint ID of principal it may be either user id or group id
|
|
26
|
+
: SharePoint ID of principal it may be either user id or group id you want to remove permissions. Specify either `principalId`, `upn`, or `groupName` but not multiple.
|
|
27
27
|
|
|
28
28
|
`--upn [upn]`
|
|
29
|
-
: upn/email of user. Specify either upn or
|
|
29
|
+
: upn/email of user. Specify either `principalId`, `upn`, or `groupName` but not multiple.
|
|
30
30
|
|
|
31
31
|
`--groupName [groupName]`
|
|
32
|
-
: enter group name of Azure AD or SharePoint group. Specify either
|
|
32
|
+
: enter group name of Azure AD or SharePoint group. Specify either `principalId`, `upn`, or `groupName` but not multiple.
|
|
33
33
|
|
|
34
34
|
`--confirm`
|
|
35
|
-
: Don't prompt for confirming removing the role assignment
|
|
35
|
+
: Don't prompt for confirming removing the role assignment.
|
|
36
36
|
|
|
37
37
|
--8<-- "docs/cmd/_global.md"
|
|
38
38
|
|
|
@@ -55,3 +55,7 @@ Remove roleassignment from list by url based on principal Id
|
|
|
55
55
|
```sh
|
|
56
56
|
m365 spo list roleassignment remove --webUrl "https://contoso.sharepoint.com/sites/contoso-sales" --listUrl '/sites/contoso-sales/lists/Events' --principalId 2
|
|
57
57
|
```
|
|
58
|
+
|
|
59
|
+
## Response
|
|
60
|
+
|
|
61
|
+
The command won't return a response on success.
|
|
@@ -25,6 +25,9 @@ m365 spo list roleinheritance break [options]
|
|
|
25
25
|
`-c, --clearExistingPermissions`
|
|
26
26
|
: Flag if used clears all roles from the list
|
|
27
27
|
|
|
28
|
+
`--confirm`
|
|
29
|
+
: Do not prompt for confirmation before breaking role inheritance.
|
|
30
|
+
|
|
28
31
|
--8<-- "docs/cmd/_global.md"
|
|
29
32
|
|
|
30
33
|
## Remarks
|
|
@@ -56,3 +59,13 @@ Break inheritance of list by url in a specific site and clearing the existing pe
|
|
|
56
59
|
```sh
|
|
57
60
|
m365 spo list roleinheritance break --webUrl "https://contoso.sharepoint.com/sites/project-x" --listUrl '/sites/project-x/lists/events' --clearExistingPermissions
|
|
58
61
|
```
|
|
62
|
+
|
|
63
|
+
Break inheritance of list with ID _202b8199-b9de-43fd-9737-7f213f51c991_ located in site _https://contoso.sharepoint.com/sites/project-x_ with clearing permissions without prompting for confirmation
|
|
64
|
+
|
|
65
|
+
```sh
|
|
66
|
+
m365 spo list roleinheritance break --webUrl "https://contoso.sharepoint.com/sites/project-x" --listId "202b8199-b9de-43fd-9737-7f213f51c991" --clearExistingPermissions --confirm
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Response
|
|
70
|
+
|
|
71
|
+
The command won't return a response on success.
|
|
@@ -22,6 +22,9 @@ m365 spo list roleinheritance reset [options]
|
|
|
22
22
|
`--listUrl [listUrl]`
|
|
23
23
|
: Server- or site-relative URL of the list. Specify either `listTitle`, `listId` or `listUrl`.
|
|
24
24
|
|
|
25
|
+
`--confirm`
|
|
26
|
+
: Do not prompt for confirmation before resetting role inheritance.
|
|
27
|
+
|
|
25
28
|
--8<-- "docs/cmd/_global.md"
|
|
26
29
|
|
|
27
30
|
## Examples
|
|
@@ -43,3 +46,13 @@ Restores role inheritance of a specific list by url in a specific site
|
|
|
43
46
|
```sh
|
|
44
47
|
m365 spo list roleinheritance reset --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl '/sites/project-x/lists/events'
|
|
45
48
|
```
|
|
49
|
+
|
|
50
|
+
Restores role inheritance of list a specific list by title without prompting for confirmation
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
m365 spo list roleinheritance reset --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle test --confirm
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Response
|
|
57
|
+
|
|
58
|
+
The command won't return a response on success.
|
|
@@ -10,14 +10,20 @@ m365 spo list set [options]
|
|
|
10
10
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
|
-
`-i, --id <id>`
|
|
14
|
-
: Id of the list to update
|
|
15
|
-
|
|
16
13
|
`-u, --webUrl <webUrl>`
|
|
17
|
-
: URL of the site
|
|
14
|
+
: URL of the site
|
|
15
|
+
|
|
16
|
+
`--id [id]`
|
|
17
|
+
: ID of the list. Specify either id, title or url but not multiple.
|
|
18
|
+
|
|
19
|
+
`--title [title]`
|
|
20
|
+
: Title of the list. Specify either id, title or url but not multiple.
|
|
18
21
|
|
|
19
|
-
|
|
20
|
-
:
|
|
22
|
+
`--url [url]`
|
|
23
|
+
: Relative URL of the list. Specify either id, title or url but not multiple.
|
|
24
|
+
|
|
25
|
+
`--newTitle [newTitle]`
|
|
26
|
+
: New title for the list
|
|
21
27
|
|
|
22
28
|
`--allowDeletion [allowDeletion]`
|
|
23
29
|
: Boolean value specifying whether the list can be deleted. Valid values are `true,false`
|
|
@@ -221,6 +227,16 @@ Enable content types and versioning in the list with id _3EA5A977-315E-4E25-8B0F
|
|
|
221
227
|
m365 spo list set --webUrl https://contoso.sharepoint.com/sites/project-x --id 3EA5A977-315E-4E25-8B0F-E4F949BF6B8F --contentTypesEnabled true --enableVersioning true --majorVersionLimit 50 --majorWithMinorVersionsLimit 100
|
|
222
228
|
```
|
|
223
229
|
|
|
230
|
+
Update the Title of a list retrieved by it's original Title
|
|
231
|
+
|
|
232
|
+
```sh
|
|
233
|
+
m365 spo list set --webUrl https://contoso.sharepoint.com/sites/project-x --title Documents --newTitle 'Different Title'
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
## Response
|
|
237
|
+
|
|
238
|
+
The command won't return a response on success.
|
|
239
|
+
|
|
224
240
|
## More information
|
|
225
241
|
|
|
226
242
|
- SPList Class Members information: [https://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.list_members.aspx](https://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.list_members.aspx)
|