@pnp/cli-microsoft365 6.9.0-beta.f6054b4 → 6.10.0-beta.05cab2f

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.
Files changed (389) hide show
  1. package/.devcontainer/Dockerfile +12 -19
  2. package/.devcontainer/devcontainer.json +24 -17
  3. package/Dockerfile +3 -1
  4. package/README.md +7 -5
  5. package/dist/Auth.js +2 -8
  6. package/dist/AuthServer.js +2 -4
  7. package/dist/Command.js +1 -1
  8. package/dist/cli/Cli.js +25 -10
  9. package/dist/m365/aad/commands/app/app-add.js +258 -249
  10. package/dist/m365/aad/commands/app/app-get.js +65 -62
  11. package/dist/m365/aad/commands/app/app-remove.js +22 -23
  12. package/dist/m365/aad/commands/app/app-role-add.js +35 -34
  13. package/dist/m365/aad/commands/app/app-role-list.js +22 -23
  14. package/dist/m365/aad/commands/app/app-role-remove.js +76 -73
  15. package/dist/m365/aad/commands/app/app-set.js +103 -103
  16. package/dist/m365/aad/commands/approleassignment/approleassignment-add.js +16 -14
  17. package/dist/m365/aad/commands/approleassignment/approleassignment-list.js +43 -52
  18. package/dist/m365/aad/commands/approleassignment/approleassignment-remove.js +20 -16
  19. package/dist/m365/aad/commands/o365group/o365group-add.js +40 -37
  20. package/dist/m365/aad/commands/o365group/o365group-conversation-post-list.js +7 -6
  21. package/dist/m365/aad/commands/o365group/o365group-list.js +6 -11
  22. package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-clear.js +7 -8
  23. package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-restore.js +23 -24
  24. package/dist/m365/aad/commands/o365group/o365group-set.js +15 -20
  25. package/dist/m365/aad/commands/o365group/o365group-teamify.js +15 -16
  26. package/dist/m365/aad/commands/o365group/o365group-user-list.js +17 -10
  27. package/dist/m365/aad/commands/o365group/o365group-user-set.js +17 -10
  28. package/dist/m365/aad/commands/policy/policy-list.js +12 -13
  29. package/dist/m365/aad/commands/siteclassification/siteclassification-enable.js +1 -3
  30. package/dist/m365/aad/commands/siteclassification/siteclassification-set.js +19 -20
  31. package/dist/m365/aad/commands/sp/sp-add.js +22 -23
  32. package/dist/m365/aad/commands/sp/sp-get.js +22 -23
  33. package/dist/m365/aad/commands/sp/sp-list.js +78 -0
  34. package/dist/m365/aad/commands.js +1 -0
  35. package/dist/m365/app/commands/app-open.js +4 -14
  36. package/dist/m365/base/AzmgmtItemsListCommand.js +31 -33
  37. package/dist/m365/booking/commands/business/business-get.js +14 -15
  38. package/dist/m365/cli/commands/cli-issue.js +4 -10
  39. package/dist/m365/cli/commands/cli-reconsent.js +2 -8
  40. package/dist/m365/cli/commands/config/config-set.js +1 -2
  41. package/dist/m365/commands/docs.js +2 -8
  42. package/dist/m365/commands/login.js +20 -0
  43. package/dist/m365/file/commands/convert/convert-pdf.js +147 -143
  44. package/dist/m365/file/commands/file-add.js +87 -93
  45. package/dist/m365/file/commands/file-list.js +49 -55
  46. package/dist/m365/flow/commands/flow-list.js +30 -12
  47. package/dist/m365/flow/commands/flow-remove.js +2 -3
  48. package/dist/m365/flow/commands/run/run-resubmit.js +11 -10
  49. package/dist/m365/onedrive/commands/onedrive-list.js +21 -32
  50. package/dist/m365/outlook/commands/message/message-list.js +18 -23
  51. package/dist/m365/outlook/commands/message/message-move.js +15 -20
  52. package/dist/m365/pa/commands/app/app-export.js +3 -4
  53. package/dist/m365/pa/commands/app/app-get.js +11 -9
  54. package/dist/m365/pa/commands/app/app-remove.js +1 -1
  55. package/dist/m365/pa/commands/pcf/pcf-init.js +1 -2
  56. package/dist/m365/pa/commands/solution/solution-init.js +1 -2
  57. package/dist/m365/pa/commands/solution/solution-reference-add.js +1 -2
  58. package/dist/m365/planner/commands/bucket/bucket-add.js +15 -13
  59. package/dist/m365/planner/commands/bucket/bucket-get.js +27 -28
  60. package/dist/m365/planner/commands/bucket/bucket-list.js +15 -13
  61. package/dist/m365/planner/commands/bucket/bucket-remove.js +33 -34
  62. package/dist/m365/planner/commands/bucket/bucket-set.js +33 -34
  63. package/dist/m365/planner/commands/plan/plan-add.js +49 -52
  64. package/dist/m365/planner/commands/plan/plan-set.js +19 -20
  65. package/dist/m365/planner/commands/task/task-add.js +75 -78
  66. package/dist/m365/planner/commands/task/task-checklistitem-add.js +11 -10
  67. package/dist/m365/planner/commands/task/task-checklistitem-remove.js +10 -8
  68. package/dist/m365/planner/commands/task/task-get.js +53 -56
  69. package/dist/m365/planner/commands/task/task-list.js +23 -24
  70. package/dist/m365/planner/commands/task/task-reference-add.js +11 -10
  71. package/dist/m365/planner/commands/task/task-reference-remove.js +13 -14
  72. package/dist/m365/planner/commands/task/task-remove.js +44 -48
  73. package/dist/m365/planner/commands/task/task-set.js +83 -87
  74. package/dist/m365/pp/commands/managementapp/managementapp-add.js +19 -20
  75. package/dist/m365/purview/commands/retentionevent/retentionevent-add.js +3 -8
  76. package/dist/m365/purview/commands/retentionevent/retentionevent-get.js +1 -6
  77. package/dist/m365/purview/commands/retentionevent/retentionevent-list.js +1 -6
  78. package/dist/m365/purview/commands/retentionevent/retentionevent-remove.js +1 -6
  79. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-add.js +1 -6
  80. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-get.js +1 -6
  81. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-list.js +1 -6
  82. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-remove.js +1 -6
  83. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-set.js +1 -6
  84. package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +0 -5
  85. package/dist/m365/purview/commands/retentionlabel/retentionlabel-get.js +0 -5
  86. package/dist/m365/purview/commands/retentionlabel/retentionlabel-list.js +0 -5
  87. package/dist/m365/purview/commands/retentionlabel/retentionlabel-remove.js +19 -22
  88. package/dist/m365/purview/commands/retentionlabel/retentionlabel-set.js +0 -5
  89. package/dist/m365/search/commands/externalconnection/externalconnection-remove.js +35 -34
  90. package/dist/m365/spfx/commands/project/JsonRule.js +1 -1
  91. package/dist/m365/spfx/commands/project/project-doctor/doctor-1.17.3.js +25 -0
  92. package/dist/m365/spfx/commands/project/project-doctor/doctor-1.17.4.js +25 -0
  93. package/dist/m365/spfx/commands/project/project-doctor/doctor-1.18.0-beta.1.js +23 -0
  94. package/dist/m365/spfx/commands/project/project-doctor.js +4 -1
  95. package/dist/m365/spfx/commands/project/project-externalize/rules/DynamicRule.js +59 -51
  96. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN001022_DEP_office_ui_fabric_react.js +2 -2
  97. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002027_DEVDEP_fluentui_react.js +14 -0
  98. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN021003_PKG_engines_node.js +1 -0
  99. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.3.js +59 -0
  100. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.4.js +55 -0
  101. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.18.0-beta.1.js +61 -0
  102. package/dist/m365/spfx/commands/project/project-upgrade.js +18 -13
  103. package/dist/m365/spfx/commands/spfx-doctor.js +45 -0
  104. package/dist/m365/spo/commands/app/app-teamspackage-download.js +17 -24
  105. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-set.js +154 -0
  106. package/dist/m365/spo/commands/apppage/apppage-set.js +1 -1
  107. package/dist/m365/spo/commands/commandset/commandset-set.js +11 -2
  108. package/dist/m365/spo/commands/contenttype/contenttype-field-set.js +65 -94
  109. package/dist/m365/spo/commands/customaction/customaction-clear.js +4 -12
  110. package/dist/m365/spo/commands/customaction/customaction-remove.js +12 -23
  111. package/dist/m365/spo/commands/customaction/customaction-set.js +21 -29
  112. package/dist/m365/spo/commands/file/file-add.js +133 -133
  113. package/dist/m365/spo/commands/file/file-checkout-undo.js +119 -0
  114. package/dist/m365/spo/commands/file/file-rename.js +11 -9
  115. package/dist/m365/spo/commands/file/file-retentionlabel-ensure.js +2 -2
  116. package/dist/m365/spo/commands/file/file-roleassignment-add.js +41 -61
  117. package/dist/m365/spo/commands/file/file-roleassignment-remove.js +3 -0
  118. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +3 -0
  119. package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +3 -0
  120. package/dist/m365/spo/commands/file/file-sharinginfo-get.js +23 -21
  121. package/dist/m365/spo/commands/file/file-version-clear.js +1 -1
  122. package/dist/m365/spo/commands/file/file-version-remove.js +1 -1
  123. package/dist/m365/spo/commands/file/file-version-restore.js +1 -1
  124. package/dist/m365/spo/commands/folder/folder-remove.js +30 -28
  125. package/dist/m365/spo/commands/folder/folder-roleassignment-add.js +3 -3
  126. package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +1 -1
  127. package/dist/m365/spo/commands/group/group-member-add.js +17 -16
  128. package/dist/m365/spo/commands/group/group-set.js +20 -20
  129. package/dist/m365/spo/commands/homesite/homesite-remove.js +1 -1
  130. package/dist/m365/spo/commands/hubsite/hubsite-get.js +33 -31
  131. package/dist/m365/spo/commands/hubsite/hubsite-list.js +18 -29
  132. package/dist/m365/spo/commands/hubsite/hubsite-unregister.js +3 -0
  133. package/dist/m365/spo/commands/list/list-add.js +1 -1
  134. package/dist/m365/spo/commands/list/list-contenttype-default-set.js +1 -1
  135. package/dist/m365/spo/commands/list/list-roleassignment-add.js +24 -69
  136. package/dist/m365/spo/commands/list/list-roleassignment-remove.js +33 -38
  137. package/dist/m365/spo/commands/list/list-sensitivitylabel-ensure.js +137 -0
  138. package/dist/m365/spo/commands/list/list-view-field-add.js +12 -10
  139. package/dist/m365/spo/commands/list/list-view-field-remove.js +12 -10
  140. package/dist/m365/spo/commands/list/list-view-field-set.js +12 -10
  141. package/dist/m365/spo/commands/list/list-view-remove.js +3 -0
  142. package/dist/m365/spo/commands/listitem/listitem-roleassignment-add.js +41 -61
  143. package/dist/m365/spo/commands/listitem/listitem-roleassignment-remove.js +71 -74
  144. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +36 -34
  145. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +32 -30
  146. package/dist/m365/spo/commands/navigation/navigation-node-remove.js +24 -22
  147. package/dist/m365/spo/commands/orgassetslibrary/orgassetslibrary-remove.js +29 -27
  148. package/dist/m365/spo/commands/orgnewssite/orgnewssite-remove.js +26 -24
  149. package/dist/m365/spo/commands/page/page-clientsidewebpart-add.js +34 -40
  150. package/dist/m365/spo/commands/page/page-remove.js +33 -31
  151. package/dist/m365/spo/commands/roledefinition/roledefinition-remove.js +25 -23
  152. package/dist/m365/spo/commands/site/site-apppermission-add.js +3 -3
  153. package/dist/m365/spo/commands/site/site-set.js +10 -2
  154. package/dist/m365/spo/commands/sitedesign/sitedesign-task-remove.js +23 -21
  155. package/dist/m365/spo/commands/sitescript/sitescript-remove.js +24 -22
  156. package/dist/m365/spo/commands/spo-search.js +7 -15
  157. package/dist/m365/spo/commands/storageentity/storageentity-remove.js +29 -27
  158. package/dist/m365/spo/commands/tenant/tenant-appcatalog-add.js +12 -15
  159. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-set.js +234 -0
  160. package/dist/m365/spo/commands/tenant/tenant-commandset-list.js +50 -0
  161. package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +1 -1
  162. package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-remove.js +48 -48
  163. package/dist/m365/spo/commands.js +5 -0
  164. package/dist/m365/teams/commands/app/app-install.js +23 -21
  165. package/dist/m365/teams/commands/app/app-remove.js +3 -0
  166. package/dist/m365/teams/commands/app/app-uninstall.js +3 -0
  167. package/dist/m365/teams/commands/app/app-update.js +15 -16
  168. package/dist/m365/teams/commands/channel/channel-add.js +40 -39
  169. package/dist/m365/teams/commands/channel/channel-get.js +23 -25
  170. package/dist/m365/teams/commands/channel/channel-list.js +6 -7
  171. package/dist/m365/teams/commands/channel/channel-member-add.js +61 -60
  172. package/dist/m365/teams/commands/channel/channel-member-list.js +20 -22
  173. package/dist/m365/teams/commands/channel/channel-member-remove.js +43 -48
  174. package/dist/m365/teams/commands/channel/channel-member-set.js +36 -39
  175. package/dist/m365/teams/commands/channel/channel-remove.js +4 -1
  176. package/dist/m365/teams/commands/chat/chat-get.js +4 -4
  177. package/dist/m365/teams/commands/chat/chat-message-send.js +4 -4
  178. package/dist/m365/teams/commands/funsettings/funsettings-list.js +3 -0
  179. package/dist/m365/teams/commands/funsettings/funsettings-set.js +3 -0
  180. package/dist/m365/teams/commands/tab/tab-get.js +34 -37
  181. package/dist/m365/teams/commands/team/team-archive.js +6 -7
  182. package/dist/m365/teams/commands/team/team-get.js +6 -7
  183. package/dist/m365/teams/commands/team/team-list.js +9 -11
  184. package/dist/m365/teams/commands/team/team-remove.js +6 -7
  185. package/dist/m365/teams/commands/team/team-unarchive.js +6 -7
  186. package/dist/m365/teams/commands/user/user-app-list.js +13 -11
  187. package/dist/m365/teams/commands/user/user-list.js +7 -4
  188. package/dist/m365/tenant/commands/security/security-alerts-list.js +25 -26
  189. package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-health-list.js +13 -14
  190. package/dist/m365/todo/commands/list/list-remove.js +39 -36
  191. package/dist/m365/todo/commands/list/list-set.js +16 -14
  192. package/dist/m365/todo/commands/task/task-add.js +14 -14
  193. package/dist/m365/util/commands/accesstoken/accesstoken-get.js +10 -7
  194. package/dist/settingsNames.js +0 -1
  195. package/dist/utils/browserUtil.js +23 -0
  196. package/dist/utils/md.js +1 -3
  197. package/dist/utils/spo.js +74 -0
  198. package/docs/docs/_clisettings.mdx +17 -0
  199. package/docs/docs/cmd/_global.mdx +1 -1
  200. package/docs/docs/cmd/aad/app/app-add.mdx +113 -0
  201. package/docs/docs/cmd/aad/app/app-get.mdx +217 -0
  202. package/docs/docs/cmd/aad/app/app-list.mdx +21 -0
  203. package/docs/docs/cmd/aad/app/app-role-add.mdx +4 -0
  204. package/docs/docs/cmd/aad/app/app-role-list.mdx +63 -0
  205. package/docs/docs/cmd/aad/app/app-role-remove.mdx +4 -0
  206. package/docs/docs/cmd/aad/app/app-set.mdx +4 -0
  207. package/docs/docs/cmd/aad/approleassignment/approleassignment-add.mdx +61 -0
  208. package/docs/docs/cmd/aad/approleassignment/approleassignment-list.mdx +59 -0
  209. package/docs/docs/cmd/aad/approleassignment/approleassignment-remove.mdx +4 -0
  210. package/docs/docs/cmd/aad/group/group-get.mdx +24 -0
  211. package/docs/docs/cmd/aad/group/group-list.mdx +98 -0
  212. package/docs/docs/cmd/aad/groupsetting/groupsetting-add.mdx +114 -0
  213. package/docs/docs/cmd/aad/groupsetting/groupsetting-get.mdx +115 -0
  214. package/docs/docs/cmd/aad/groupsetting/groupsetting-list.mdx +115 -0
  215. package/docs/docs/cmd/aad/groupsetting/groupsetting-remove.mdx +4 -0
  216. package/docs/docs/cmd/aad/groupsetting/groupsetting-set.mdx +4 -0
  217. package/docs/docs/cmd/aad/groupsettingtemplate/groupsettingtemplate-get.mdx +63 -0
  218. package/docs/docs/cmd/aad/groupsettingtemplate/groupsettingtemplate-list.mdx +63 -0
  219. package/docs/docs/cmd/aad/o365group/o365group-add.mdx +122 -0
  220. package/docs/docs/cmd/aad/o365group/o365group-conversation-list.mdx +68 -0
  221. package/docs/docs/cmd/aad/o365group/o365group-conversation-post-list.mdx +77 -0
  222. package/docs/docs/cmd/aad/o365group/o365group-get.mdx +122 -0
  223. package/docs/docs/cmd/aad/o365group/o365group-list.mdx +99 -0
  224. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-clear.mdx +4 -0
  225. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-list.mdx +96 -0
  226. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-remove.mdx +4 -0
  227. package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-restore.mdx +4 -0
  228. package/docs/docs/cmd/aad/o365group/o365group-remove.mdx +4 -0
  229. package/docs/docs/cmd/aad/o365group/o365group-renew.mdx +4 -0
  230. package/docs/docs/cmd/aad/o365group/o365group-report-activitycounts.mdx +48 -0
  231. package/docs/docs/cmd/aad/o365group/o365group-report-activitydetail.mdx +60 -0
  232. package/docs/docs/cmd/aad/o365group/o365group-report-activityfilecounts.mdx +46 -0
  233. package/docs/docs/cmd/aad/o365group/o365group-report-activitygroupcounts.mdx +46 -0
  234. package/docs/docs/cmd/aad/o365group/o365group-report-activitystorage.mdx +46 -0
  235. package/docs/docs/cmd/aad/o365group/o365group-set.mdx +4 -0
  236. package/docs/docs/cmd/aad/o365group/o365group-teamify.mdx +4 -0
  237. package/docs/docs/cmd/aad/o365group/o365group-user-add.mdx +4 -0
  238. package/docs/docs/cmd/aad/o365group/o365group-user-list.mdx +56 -0
  239. package/docs/docs/cmd/aad/o365group/o365group-user-remove.mdx +4 -0
  240. package/docs/docs/cmd/aad/o365group/o365group-user-set.mdx +8 -4
  241. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-add.mdx +4 -0
  242. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-list.mdx +59 -0
  243. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-remove.mdx +4 -0
  244. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-set.mdx +4 -0
  245. package/docs/docs/cmd/aad/policy/policy-list.mdx +77 -0
  246. package/docs/docs/cmd/aad/siteclassification/siteclassification-disable.mdx +4 -0
  247. package/docs/docs/cmd/aad/siteclassification/siteclassification-enable.mdx +4 -0
  248. package/docs/docs/cmd/aad/siteclassification/siteclassification-get.mdx +57 -0
  249. package/docs/docs/cmd/aad/siteclassification/siteclassification-set.mdx +4 -0
  250. package/docs/docs/cmd/aad/sp/sp-add.mdx +136 -0
  251. package/docs/docs/cmd/aad/sp/sp-get.mdx +166 -0
  252. package/docs/docs/cmd/aad/sp/sp-list.mdx +162 -0
  253. package/docs/docs/cmd/aad/user/user-get.mdx +75 -0
  254. package/docs/docs/cmd/aad/user/user-guest-add.mdx +23 -0
  255. package/docs/docs/cmd/aad/user/user-hibp.mdx +82 -0
  256. package/docs/docs/cmd/aad/user/user-license-add.mdx +2 -2
  257. package/docs/docs/cmd/aad/user/user-license-remove.mdx +2 -2
  258. package/docs/docs/cmd/aad/user/user-list.mdx +52 -0
  259. package/docs/docs/cmd/aad/user/user-password-validate.mdx +67 -0
  260. package/docs/docs/cmd/aad/user/user-signin-list.mdx +131 -0
  261. package/docs/docs/cmd/flow/flow-list.mdx +15 -0
  262. package/docs/docs/cmd/login.mdx +39 -0
  263. package/docs/docs/cmd/pa/app/app-get.mdx +1 -1
  264. package/docs/docs/cmd/pa/app/app-list.mdx +1 -1
  265. package/docs/docs/cmd/pp/aibuildermodel/aibuildermodel-get.mdx +1 -1
  266. package/docs/docs/cmd/pp/aibuildermodel/aibuildermodel-list.mdx +1 -1
  267. package/docs/docs/cmd/pp/card/card-clone.mdx +1 -1
  268. package/docs/docs/cmd/pp/card/card-get.mdx +1 -1
  269. package/docs/docs/cmd/pp/card/card-list.mdx +1 -1
  270. package/docs/docs/cmd/pp/chatbot/chatbot-get.mdx +1 -1
  271. package/docs/docs/cmd/pp/chatbot/chatbot-list.mdx +1 -1
  272. package/docs/docs/cmd/pp/dataverse/dataverse-table-get.mdx +1 -1
  273. package/docs/docs/cmd/pp/dataverse/dataverse-table-list.mdx +1 -1
  274. package/docs/docs/cmd/pp/dataverse/dataverse-table-remove.mdx +1 -1
  275. package/docs/docs/cmd/pp/dataverse/dataverse-table-row-list.mdx +1 -1
  276. package/docs/docs/cmd/pp/dataverse/dataverse-table-row-remove.mdx +1 -1
  277. package/docs/docs/cmd/purview/retentionevent/retentionevent-add.mdx +0 -6
  278. package/docs/docs/cmd/purview/retentionevent/retentionevent-get.mdx +0 -6
  279. package/docs/docs/cmd/purview/retentionevent/retentionevent-list.mdx +0 -7
  280. package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.mdx +0 -6
  281. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.mdx +0 -6
  282. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.mdx +0 -6
  283. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.mdx +0 -6
  284. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-remove.mdx +0 -6
  285. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-set.mdx +0 -6
  286. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.mdx +0 -6
  287. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.mdx +0 -6
  288. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.mdx +0 -6
  289. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.mdx +0 -6
  290. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.mdx +0 -6
  291. package/docs/docs/cmd/setup.mdx +2 -0
  292. package/docs/docs/cmd/spfx/project/project-upgrade.mdx +1 -1
  293. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx +72 -0
  294. package/docs/docs/cmd/spo/commandset/commandset-set.mdx +12 -3
  295. package/docs/docs/cmd/spo/file/file-checkout-undo.mdx +55 -0
  296. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +1 -1
  297. package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.mdx +1 -1
  298. package/docs/docs/cmd/spo/list/list-sensitivitylabel-ensure.mdx +73 -0
  299. package/docs/docs/cmd/spo/site/site-add.mdx +35 -0
  300. package/docs/docs/cmd/spo/site/site-appcatalog-add.mdx +5 -1
  301. package/docs/docs/cmd/spo/site/site-appcatalog-list.mdx +14 -0
  302. package/docs/docs/cmd/spo/site/site-appcatalog-remove.mdx +4 -0
  303. package/docs/docs/cmd/spo/site/site-apppermission-add.mdx +68 -0
  304. package/docs/docs/cmd/spo/site/site-apppermission-get.mdx +55 -0
  305. package/docs/docs/cmd/spo/site/site-apppermission-list.mdx +55 -0
  306. package/docs/docs/cmd/spo/site/site-apppermission-remove.mdx +4 -0
  307. package/docs/docs/cmd/spo/site/site-apppermission-set.mdx +66 -0
  308. package/docs/docs/cmd/spo/site/site-chrome-set.mdx +4 -0
  309. package/docs/docs/cmd/spo/site/site-ensure.mdx +70 -0
  310. package/docs/docs/cmd/spo/site/site-get.mdx +179 -0
  311. package/docs/docs/cmd/spo/site/site-groupify.mdx +54 -0
  312. package/docs/docs/cmd/spo/site/site-hubsite-connect.mdx +4 -0
  313. package/docs/docs/cmd/spo/site/site-hubsite-disconnect.mdx +4 -0
  314. package/docs/docs/cmd/spo/site/site-hubsite-theme-sync.mdx +5 -1
  315. package/docs/docs/cmd/spo/site/site-inplacerecordsmanagement-set.mdx +4 -0
  316. package/docs/docs/cmd/spo/site/site-list.mdx +303 -0
  317. package/docs/docs/cmd/spo/site/site-recyclebinitem-list.mdx +80 -0
  318. package/docs/docs/cmd/spo/site/site-recyclebinitem-restore.mdx +4 -0
  319. package/docs/docs/cmd/spo/site/site-remove.mdx +4 -0
  320. package/docs/docs/cmd/spo/site/site-rename.mdx +92 -0
  321. package/docs/docs/cmd/spo/site/site-set.mdx +13 -0
  322. package/docs/docs/cmd/spo/sitedesign/sitedesign-add.mdx +116 -0
  323. package/docs/docs/cmd/spo/sitedesign/sitedesign-apply.mdx +125 -0
  324. package/docs/docs/cmd/spo/sitedesign/sitedesign-get.mdx +117 -0
  325. package/docs/docs/cmd/spo/sitedesign/sitedesign-list.mdx +94 -0
  326. package/docs/docs/cmd/spo/sitedesign/sitedesign-remove.mdx +4 -0
  327. package/docs/docs/cmd/spo/sitedesign/sitedesign-rights-grant.mdx +4 -0
  328. package/docs/docs/cmd/spo/sitedesign/sitedesign-rights-list.mdx +54 -0
  329. package/docs/docs/cmd/spo/sitedesign/sitedesign-rights-revoke.mdx +4 -0
  330. package/docs/docs/cmd/spo/sitedesign/sitedesign-run-list.mdx +66 -0
  331. package/docs/docs/cmd/spo/sitedesign/sitedesign-run-status-get.mdx +65 -0
  332. package/docs/docs/cmd/spo/sitedesign/sitedesign-set.mdx +117 -0
  333. package/docs/docs/cmd/spo/sitedesign/sitedesign-task-get.mdx +61 -0
  334. package/docs/docs/cmd/spo/sitedesign/sitedesign-task-list.mdx +60 -0
  335. package/docs/docs/cmd/spo/sitedesign/sitedesign-task-remove.mdx +4 -0
  336. package/docs/docs/cmd/spo/sitescript/sitescript-add.mdx +75 -0
  337. package/docs/docs/cmd/spo/sitescript/sitescript-get.mdx +62 -0
  338. package/docs/docs/cmd/spo/sitescript/sitescript-list.mdx +60 -0
  339. package/docs/docs/cmd/spo/sitescript/sitescript-remove.mdx +4 -0
  340. package/docs/docs/cmd/spo/sitescript/sitescript-set.mdx +63 -0
  341. package/docs/docs/cmd/spo/storageentity/storageentity-get.mdx +53 -0
  342. package/docs/docs/cmd/spo/storageentity/storageentity-list.mdx +54 -0
  343. package/docs/docs/cmd/spo/storageentity/storageentity-remove.mdx +4 -0
  344. package/docs/docs/cmd/spo/storageentity/storageentity-set.mdx +4 -0
  345. package/docs/docs/cmd/spo/tenant/tenant-appcatalog-add.mdx +4 -0
  346. package/docs/docs/cmd/spo/tenant/tenant-appcatalogurl-get.mdx +35 -0
  347. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-get.mdx +1 -1
  348. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-list.mdx +1 -1
  349. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-remove.mdx +1 -1
  350. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-set.mdx +90 -0
  351. package/docs/docs/cmd/spo/tenant/tenant-commandset-add.mdx +1 -1
  352. package/docs/docs/cmd/spo/tenant/tenant-commandset-get.mdx +2 -2
  353. package/docs/docs/cmd/spo/tenant/tenant-commandset-list.mdx +114 -0
  354. package/docs/docs/cmd/spo/tenant/tenant-commandset-remove.mdx +1 -1
  355. package/docs/docs/cmd/spo/tenant/tenant-commandset-set.mdx +2 -2
  356. package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-list.mdx +67 -0
  357. package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-remove.mdx +4 -0
  358. package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-restore.mdx +50 -0
  359. package/docs/docs/cmd/spo/tenant/tenant-settings-list.mdx +729 -0
  360. package/docs/docs/cmd/spo/tenant/tenant-settings-set.mdx +11 -0
  361. package/docs/docs/cmd/spo/theme/theme-apply.mdx +35 -0
  362. package/docs/docs/cmd/spo/theme/theme-get.mdx +74 -0
  363. package/docs/docs/cmd/spo/theme/theme-list.mdx +52 -0
  364. package/docs/docs/cmd/spo/theme/theme-remove.mdx +4 -0
  365. package/docs/docs/cmd/spo/theme/theme-set.mdx +4 -0
  366. package/docs/docs/cmd/spo/userprofile/userprofile-get.mdx +1 -1
  367. package/docs/docs/cmd/status.mdx +6 -3
  368. package/docs/docs/cmd/util/accesstoken/accesstoken-get.mdx +12 -2
  369. package/npm-shrinkwrap.json +362 -335
  370. package/package.json +20 -19
  371. package/dist/m365/aad/commands/approleassignment/AppRoleAssignment.js +0 -3
  372. package/dist/m365/aad/commands/approleassignment/ServicePrincipal.js +0 -3
  373. package/dist/m365/aad/commands/groupsetting/GroupSetting.js +0 -3
  374. package/dist/m365/aad/commands/groupsettingtemplate/GroupSettingTemplate.js +0 -3
  375. package/dist/m365/aad/commands/siteclassification/DirectorySetting.js +0 -10
  376. package/dist/m365/aad/commands/siteclassification/DirectorySettingTemplatesRsp.js +0 -3
  377. package/dist/m365/aad/commands/siteclassification/DirectorySettingValue.js +0 -3
  378. package/dist/m365/outlook/Message.js +0 -3
  379. package/dist/m365/spo/commands/site/SitePermission.js +0 -3
  380. package/dist/m365/teams/Channel.js +0 -3
  381. package/dist/m365/teams/ConversationMember.js +0 -3
  382. package/dist/m365/teams/Message.js +0 -3
  383. package/dist/m365/teams/Reply.js +0 -3
  384. package/dist/m365/teams/Tab.js +0 -3
  385. package/dist/m365/teams/Team.js +0 -3
  386. package/dist/m365/teams/TeamsApp.js +0 -3
  387. package/dist/m365/teams/TeamsAppInstallation.js +0 -3
  388. package/dist/m365/teams/TeamsTabConfiguration.js +0 -3
  389. package/dist/m365/teams/commands/Meeting.js +0 -3
@@ -1,4 +1,6 @@
1
1
  import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
2
4
 
3
5
  # spo site list
4
6
 
@@ -80,3 +82,304 @@ List all deleted sites in the tenant you're logged in to
80
82
  ```sh
81
83
  m365 spo site list --deleted
82
84
  ```
85
+
86
+ ## Response
87
+
88
+ ### Standard response
89
+
90
+ <Tabs>
91
+ <TabItem value="JSON">
92
+
93
+ ```json
94
+ [
95
+ {
96
+ "_ObjectType_": "Microsoft.Online.SharePoint.TenantAdministration.SiteProperties",
97
+ "_ObjectIdentity_": "c904bfa0-90e8-6000-a541-33f81aef922d|908bed80-a04a-4433-b4a0-883d9847d110:1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4\\\nSiteProperties\\\nhttps%3a%2f%2fcontoso.sharepoint.com%2fteams%2fteam1",
98
+ "AllowDownloadingNonWebViewableFiles": false,
99
+ "AllowEditing": false,
100
+ "AllowSelfServiceUpgrade": true,
101
+ "AnonymousLinkExpirationInDays": 0,
102
+ "AuthContextStrength": null,
103
+ "AuthenticationContextLimitedAccess": false,
104
+ "AuthenticationContextName": null,
105
+ "AverageResourceUsage": 0,
106
+ "BlockDownloadLinksFileType": 0,
107
+ "BlockDownloadMicrosoft365GroupIds": null,
108
+ "BlockDownloadPolicy": false,
109
+ "BlockGuestsAsSiteAdmin": 0,
110
+ "ClearRestrictedAccessControl": false,
111
+ "CommentsOnSitePagesDisabled": false,
112
+ "CompatibilityLevel": 15,
113
+ "ConditionalAccessPolicy": 0,
114
+ "CurrentResourceUsage": 0,
115
+ "DefaultLinkPermission": 0,
116
+ "DefaultLinkToExistingAccess": false,
117
+ "DefaultLinkToExistingAccessReset": false,
118
+ "DefaultShareLinkRole": 0,
119
+ "DefaultShareLinkScope": 0,
120
+ "DefaultSharingLinkType": 0,
121
+ "DenyAddAndCustomizePages": 2,
122
+ "Description": null,
123
+ "DisableAppViews": 0,
124
+ "DisableCompanyWideSharingLinks": 0,
125
+ "DisableFlows": 0,
126
+ "ExcludeBlockDownloadPolicySiteOwners": false,
127
+ "ExcludeBlockDownloadSharePointGroups": null,
128
+ "ExcludedBlockDownloadGroupIds": [],
129
+ "ExternalUserExpirationInDays": 0,
130
+ "GroupId": "/Guid(00000000-0000-0000-0000-000000000000)/",
131
+ "GroupOwnerLoginName": null,
132
+ "HasHolds": false,
133
+ "HubSiteId": "/Guid(b3adc7fd-ac6b-4c0b-86a0-447f14fe4d17)/",
134
+ "IBMode": null,
135
+ "IBSegments": [],
136
+ "IBSegmentsToAdd": null,
137
+ "IBSegmentsToRemove": null,
138
+ "IsGroupOwnerSiteAdmin": false,
139
+ "IsHubSite": false,
140
+ "IsTeamsChannelConnected": true,
141
+ "IsTeamsConnected": false,
142
+ "LastContentModifiedDate": "/Date(2023,5,14,7,30,33,573)/",
143
+ "Lcid": 1033,
144
+ "LimitedAccessFileType": 0,
145
+ "ListsShowHeaderAndNavigation": false,
146
+ "LockIssue": null,
147
+ "LockState": "Unlock",
148
+ "LoopDefaultSharingLinkRole": 0,
149
+ "LoopDefaultSharingLinkScope": 0,
150
+ "LoopOverrideSharingCapability": false,
151
+ "LoopSharingCapability": 0,
152
+ "MediaTranscription": 0,
153
+ "OverrideBlockUserInfoVisibility": 0,
154
+ "OverrideSharingCapability": false,
155
+ "OverrideTenantAnonymousLinkExpirationPolicy": false,
156
+ "OverrideTenantExternalUserExpirationPolicy": false,
157
+ "Owner": "john@contoso.onmicrosoft.com",
158
+ "OwnerEmail": null,
159
+ "OwnerLoginName": null,
160
+ "OwnerName": null,
161
+ "PWAEnabled": 1,
162
+ "ReadOnlyAccessPolicy": false,
163
+ "ReadOnlyForBlockDownloadPolicy": false,
164
+ "ReadOnlyForUnmanagedDevices": false,
165
+ "RelatedGroupId": "/Guid(e5b29bb6-21ca-4d00-8d0a-abf3b6857c52)/",
166
+ "RequestFilesLinkEnabled": false,
167
+ "RequestFilesLinkExpirationInDays": 0,
168
+ "RestrictedAccessControl": false,
169
+ "RestrictedAccessControlGroups": null,
170
+ "RestrictedAccessControlGroupsToAdd": null,
171
+ "RestrictedAccessControlGroupsToRemove": null,
172
+ "RestrictedToRegion": 3,
173
+ "SandboxedCodeActivationCapability": 0,
174
+ "SensitivityLabel": "/Guid(00000000-0000-0000-0000-000000000000)/",
175
+ "SensitivityLabel2": null,
176
+ "SetOwnerWithoutUpdatingSecondaryAdmin": false,
177
+ "SharingAllowedDomainList": null,
178
+ "SharingBlockedDomainList": null,
179
+ "SharingCapability": 0,
180
+ "SharingDomainRestrictionMode": 0,
181
+ "SharingLockDownCanBeCleared": false,
182
+ "SharingLockDownEnabled": false,
183
+ "ShowPeoplePickerSuggestionsForGuestUsers": false,
184
+ "SiteDefinedSharingCapability": 1,
185
+ "SocialBarOnSitePagesDisabled": false,
186
+ "Status": "Active",
187
+ "StorageMaximumLevel": 1048576,
188
+ "StorageQuotaType": null,
189
+ "StorageUsage": 0,
190
+ "StorageWarningLevel": 1022361,
191
+ "TeamsChannelType": 1,
192
+ "Template": "TEAMCHANNEL#1",
193
+ "TimeZoneId": 13,
194
+ "Title": "Benelux Demo 031622 - demo",
195
+ "TitleTranslations": null,
196
+ "Url": "https://contoso.sharepoint.com/teams/team1",
197
+ "UserCodeMaximumLevel": 300,
198
+ "UserCodeWarningLevel": 200,
199
+ "WebsCount": 0
200
+ }
201
+ ]
202
+ ```
203
+
204
+ </TabItem>
205
+ <TabItem value="Text">
206
+
207
+ ```text
208
+ Title Url
209
+ ------------------------------- ------------------------------------------------
210
+ Give @ Contoso https://contoso.sharepoint.com/sites/team1
211
+ ```
212
+
213
+ </TabItem>
214
+ <TabItem value="CSV">
215
+
216
+ ```csv
217
+ _ObjectType_;_ObjectIdentity_;AllowDownloadingNonWebViewableFiles;AllowEditing;AllowSelfServiceUpgrade;AnonymousLinkExpirationInDays;AuthenticationContextLimitedAccess;AverageResourceUsage;BlockDownloadLinksFileType;BlockDownloadPolicy;BlockGuestsAsSiteAdmin;ClearRestrictedAccessControl;CommentsOnSitePagesDisabled;CompatibilityLevel;ConditionalAccessPolicy;CurrentResourceUsage;DefaultLinkPermission;DefaultLinkToExistingAccess;DefaultLinkToExistingAccessReset;DefaultShareLinkRole;DefaultShareLinkScope;DefaultSharingLinkType;DenyAddAndCustomizePages;DisableAppViews;DisableCompanyWideSharingLinks;DisableFlows;ExcludeBlockDownloadPolicySiteOwners;ExternalUserExpirationInDays;GroupId;HasHolds;HubSiteId;IsGroupOwnerSiteAdmin;IsHubSite;IsTeamsChannelConnected;IsTeamsConnected;LastContentModifiedDate;Lcid;LimitedAccessFileType;ListsShowHeaderAndNavigation;LockState;LoopDefaultSharingLinkRole;LoopDefaultSharingLinkScope;LoopOverrideSharingCapability;LoopSharingCapability;MediaTranscription;OverrideBlockUserInfoVisibility;OverrideSharingCapability;OverrideTenantAnonymousLinkExpirationPolicy;OverrideTenantExternalUserExpirationPolicy;Owner;PWAEnabled;ReadOnlyAccessPolicy;ReadOnlyForBlockDownloadPolicy;ReadOnlyForUnmanagedDevices;RelatedGroupId;RequestFilesLinkEnabled;RequestFilesLinkExpirationInDays;RestrictedAccessControl;RestrictedToRegion;SandboxedCodeActivationCapability;SensitivityLabel;SetOwnerWithoutUpdatingSecondaryAdmin;SharingCapability;SharingDomainRestrictionMode;SharingLockDownCanBeCleared;SharingLockDownEnabled;ShowPeoplePickerSuggestionsForGuestUsers;SiteDefinedSharingCapability;SocialBarOnSitePagesDisabled;Status;StorageMaximumLevel;StorageUsage;StorageWarningLevel;TeamsChannelType;Template;TimeZoneId;Title;Url;UserCodeMaximumLevel;UserCodeWarningLevel;WebsCount
218
+ Microsoft.Online.SharePoint.TenantAdministration.SiteProperties;"0a05bfa0-c046-6000-c2a5-1da5123cf537|908bed80-a04a-4433-b4a0-883d9847d110:1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4
219
+ SiteProperties
220
+ https%3a%2f%2fcontoso.sharepoint.com%2fsites%2fteam1";;;1;0;;0;0;;0;;;15;0;0;0;;;0;0;0;2;0;0;0;;0;/Guid(00000000-0000-0000-0000-000000000000)/;;/Guid(5337976b-b560-4b64-b3fa-8eaf0339501a)/;;;;;/Date(2023,5,6,12,43,38,333)/;1033;0;;Unlock;0;0;;0;0;0;;;;john@contoso.onmicrosoft.com;1;;;;/Guid(00000000-0000-0000-0000-000000000000)/;;0;;3;0;/Guid(00000000-0000-0000-0000-000000000000)/;;0;0;;;;0;;Active;1048576;10;1022361;0;SITEPAGEPUBLISHING#0;13;Give @ Contoso;https://contoso.sharepoint.com/sites/team1;300;200;0
221
+ ```
222
+
223
+ </TabItem>
224
+ <TabItem value="Markdown">
225
+
226
+ ```md
227
+ # spo site list --filter "Url -like 'comm'"
228
+
229
+ Date: 2023-06-21
230
+
231
+ ## team1 (https://contoso.sharepoint.com/sites/team1)
232
+
233
+ Property | Value
234
+ ---------|-------
235
+ \_ObjectType\_ | Microsoft.Online.SharePoint.TenantAdministration.SiteProperties
236
+ \_ObjectIdentity\_ | 9705bfa0-a04c-6000-dbee-f912abf55939\|908bed80-a04a-4433-b4a0-883d9847d110:1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4<br>SiteProperties<br>https%3a%2f%2fcontoso.sharepoint.com%2fsites%2fteam1
237
+ AllowDownloadingNonWebViewableFiles | false
238
+ AllowEditing | false
239
+ AllowSelfServiceUpgrade | true
240
+ AnonymousLinkExpirationInDays | 0
241
+ AuthenticationContextLimitedAccess | false
242
+ AverageResourceUsage | 0
243
+ BlockDownloadLinksFileType | 0
244
+ BlockDownloadPolicy | false
245
+ BlockGuestsAsSiteAdmin | 0
246
+ ClearRestrictedAccessControl | false
247
+ CommentsOnSitePagesDisabled | false
248
+ CompatibilityLevel | 15
249
+ ConditionalAccessPolicy | 0
250
+ CurrentResourceUsage | 0
251
+ DefaultLinkPermission | 0
252
+ DefaultLinkToExistingAccess | false
253
+ DefaultLinkToExistingAccessReset | false
254
+ DefaultShareLinkRole | 0
255
+ DefaultShareLinkScope | 0
256
+ DefaultSharingLinkType | 0
257
+ DenyAddAndCustomizePages | 2
258
+ DisableAppViews | 0
259
+ DisableCompanyWideSharingLinks | 0
260
+ DisableFlows | 0
261
+ ExcludeBlockDownloadPolicySiteOwners | false
262
+ ExternalUserExpirationInDays | 0
263
+ GroupId | /Guid(00000000-0000-0000-0000-000000000000)/
264
+ HasHolds | false
265
+ HubSiteId | /Guid(00000000-0000-0000-0000-000000000000)/
266
+ IsGroupOwnerSiteAdmin | false
267
+ IsHubSite | false
268
+ IsTeamsChannelConnected | false
269
+ IsTeamsConnected | false
270
+ LastContentModifiedDate | /Date(2023,1,25,23,52,17,163)/
271
+ Lcid | 1033
272
+ LimitedAccessFileType | 0
273
+ ListsShowHeaderAndNavigation | false
274
+ LockState | Unlock
275
+ LoopDefaultSharingLinkRole | 0
276
+ LoopDefaultSharingLinkScope | 0
277
+ LoopOverrideSharingCapability | false
278
+ LoopSharingCapability | 0
279
+ MediaTranscription | 0
280
+ OverrideBlockUserInfoVisibility | 0
281
+ OverrideSharingCapability | false
282
+ OverrideTenantAnonymousLinkExpirationPolicy | false
283
+ OverrideTenantExternalUserExpirationPolicy | false
284
+ Owner | markus@contoso.onmicrosoft.com
285
+ PWAEnabled | 1
286
+ ReadOnlyAccessPolicy | false
287
+ ReadOnlyForBlockDownloadPolicy | false
288
+ ReadOnlyForUnmanagedDevices | false
289
+ RelatedGroupId | /Guid(00000000-0000-0000-0000-000000000000)/
290
+ RequestFilesLinkEnabled | false
291
+ RequestFilesLinkExpirationInDays | 0
292
+ RestrictedAccessControl | false
293
+ RestrictedToRegion | 3
294
+ SandboxedCodeActivationCapability | 0
295
+ SensitivityLabel | /Guid(00000000-0000-0000-0000-000000000000)/
296
+ SetOwnerWithoutUpdatingSecondaryAdmin | false
297
+ SharingCapability | 0
298
+ SharingDomainRestrictionMode | 0
299
+ SharingLockDownCanBeCleared | false
300
+ SharingLockDownEnabled | false
301
+ ShowPeoplePickerSuggestionsForGuestUsers | false
302
+ SiteDefinedSharingCapability | 0
303
+ SocialBarOnSitePagesDisabled | false
304
+ Status | Active
305
+ StorageMaximumLevel | 0
306
+ StorageUsage | 1
307
+ StorageWarningLevel | 25574400
308
+ TeamsChannelType | 0
309
+ Template | SITEPAGEPUBLISHING#0
310
+ TimeZoneId | 13
311
+ Title | team1
312
+ Url | https://contoso.sharepoint.com/sites/team1
313
+ UserCodeMaximumLevel | 300
314
+ UserCodeWarningLevel | 200
315
+ WebsCount | 0
316
+ ```
317
+
318
+ </TabItem>
319
+ </Tabs>
320
+
321
+ ### `deleted` response
322
+
323
+ When we make use of the `--deleted` option, the response will differ.
324
+
325
+ <Tabs>
326
+ <TabItem value="JSON">
327
+
328
+ ```json
329
+ [
330
+ {
331
+ "_ObjectType_": "Microsoft.Online.SharePoint.TenantAdministration.DeletedSiteProperties",
332
+ "_ObjectIdentity_": "b805bfa0-805c-6000-b76d-bc01ecf6c67f|908bed80-a04a-4433-b4a0-883d9847d110:1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4\\\nDeletedSiteProperties\\\nhttps%3a%2f%2fcontoso.sharepoint.com%2fteams%2fteam1",
333
+ "DaysRemaining": 22,
334
+ "DeletionTime": "/Date(2023,3,12,8,9,55,260)/",
335
+ "SiteId": "/Guid(0031a568-a081-4157-a3ab-0946a9da7f6e)/",
336
+ "Status": "Recycled",
337
+ "StorageMaximumLevel": 1048576,
338
+ "Url": "https://contoso.sharepoint.com/teams/team1",
339
+ "UserCodeMaximumLevel": 300
340
+ }
341
+ ]
342
+ ```
343
+
344
+ </TabItem>
345
+ <TabItem value="Text">
346
+
347
+ ```text
348
+ Url
349
+ -------------------------------------------------
350
+ https://contoso.sharepoint.com/teams/team1
351
+ ```
352
+
353
+ </TabItem>
354
+ <TabItem value="CSV">
355
+
356
+ ```csv
357
+ ObjectType,ObjectIdentity,DaysRemaining,DeletionTime,SiteId,Status,StorageMaximumLevel,Url,UserCodeMaximumLevel
358
+ Microsoft.Online.SharePoint.TenantAdministration.DeletedSiteProperties,"fc05bfa0-80db-6000-a541-3d6844d4e148|908bed80-a04a-4433-b4a0-883d9847d110:1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4,DeletedSiteProperties,https%3a%2f%2fcontoso.sharepoint.com%2fteams%2fteam1",22,/Date(2023,3,12,8,9,55,260)/,/Guid(0031a568-a081-4157-a3ab-0946a9da7f6e)/,Recycled,1048576,https://contoso.sharepoint.com/teams/team1,300
359
+ ```
360
+
361
+ </TabItem>
362
+ <TabItem value="Markdown">
363
+
364
+ ```md
365
+ # spo site list --deleted "true"
366
+
367
+ Date: 2023-06-21
368
+
369
+ ## https://contoso.sharepoint.com/teams/team1
370
+
371
+ Property | Value
372
+ ---------|-------
373
+ \_ObjectType\_ | Microsoft.Online.SharePoint.TenantAdministration.DeletedSiteProperties
374
+ \_ObjectIdentity\_ | 3b06bfa0-40fd-6000-c2a5-1ef401300d74\|908bed80-a04a-4433-b4a0-883d9847d110:1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4<br>DeletedSiteProperties<br>https%3a%2f%2fcontoso.sharepoint.com%2fteams%2fteam1
375
+ DaysRemaining | 22
376
+ DeletionTime | /Date(2023,3,12,8,9,55,260)/
377
+ SiteId | /Guid(0031a568-a081-4157-a3ab-0946a9da7f6e)/
378
+ Status | Recycled
379
+ StorageMaximumLevel | 1048576
380
+ Url | https://contoso.sharepoint.com/teams/team1
381
+ UserCodeMaximumLevel | 300
382
+ ```
383
+
384
+ </TabItem>
385
+ </Tabs>
@@ -1,4 +1,6 @@
1
1
  import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
2
4
 
3
5
  # spo site recyclebinitem list
4
6
 
@@ -42,3 +44,81 @@ Lists only files from recycle bin for site _https://contoso.sharepoint.com/site_
42
44
  ```sh
43
45
  m365 spo site recyclebinitem list --siteUrl https://contoso.sharepoint.com/site --type files
44
46
  ```
47
+
48
+ ## Response
49
+
50
+ <Tabs>
51
+ <TabItem value="JSON">
52
+
53
+ ```json
54
+ [
55
+ {
56
+ "AuthorEmail": "john@contoso.onmicrosoft.com",
57
+ "AuthorName": "John",
58
+ "DeletedByEmail": "john@contoso.onmicrosoft.com",
59
+ "DeletedByName": "John",
60
+ "DeletedDate": "2023-04-20T20:02:08Z",
61
+ "DeletedDateLocalFormatted": "4/20/2023 1:02 PM",
62
+ "DirName": "Lists/Sales",
63
+ "DirNamePath": {
64
+ "DecodedUrl": "Lists/Sales"
65
+ },
66
+ "Id": "7709661a-2923-44d1-8200-5e0e4a625ce7",
67
+ "ItemState": 1,
68
+ "ItemType": 3,
69
+ "LeafName": "2_.000",
70
+ "LeafNamePath": {
71
+ "DecodedUrl": "2_.000"
72
+ },
73
+ "Size": "196",
74
+ "Title": "Test"
75
+ }
76
+ ]
77
+ ```
78
+
79
+ </TabItem>
80
+ <TabItem value="Text">
81
+
82
+ ```text
83
+ Id Title DirName
84
+ ------------------------------------ ------------------------------------------ ---------------------
85
+ 7709661a-2923-44d1-8200-5e0e4a625ce7 Test Lists/Sales
86
+ ```
87
+
88
+ </TabItem>
89
+ <TabItem value="CSV">
90
+
91
+ ```csv
92
+ AuthorEmail,AuthorName,DeletedByEmail,DeletedByName,DeletedDate,DeletedDateLocalFormatted,DirName,Id,ItemState,ItemType,LeafName,Size,Title
93
+ john@contoso.onmicrosoft.com,John,john@contoso.onmicrosoft.com,John,2023-04-20T20:02:08Z,4/20/2023 1:02 PM,Lists/Sales,7709661a-2923-44d1-8200-5e0e4a625ce7,1,3,2_.000,196,Test
94
+ ```
95
+
96
+ </TabItem>
97
+ <TabItem value="Markdown">
98
+
99
+ ```md
100
+ # spo site recyclebinitem list --siteUrl "https://contoso.sharepoint.com/"
101
+
102
+ Date: 2023-06-21
103
+
104
+ ## Test (7709661a-2923-44d1-8200-5e0e4a625ce7)
105
+
106
+ Property | Value
107
+ ---------|-------
108
+ AuthorEmail | john@contoso.onmicrosoft.com
109
+ AuthorName | John
110
+ DeletedByEmail | john@contoso.onmicrosoft.com
111
+ DeletedByName | John
112
+ DeletedDate | 2023-04-20T20:02:08Z
113
+ DeletedDateLocalFormatted | 4/20/2023 1:02 PM
114
+ DirName | Lists/Sales
115
+ Id | 7709661a-2923-44d1-8200-5e0e4a625ce7
116
+ ItemState | 1
117
+ ItemType | 3
118
+ LeafName | 2\_.000
119
+ Size | 196
120
+ Title | Test
121
+ ```
122
+
123
+ </TabItem>
124
+ </Tabs>
@@ -29,3 +29,7 @@ Restore specific items by given ids from recycle bin for site _https://contoso.s
29
29
  ```sh
30
30
  m365 spo site recyclebinitem restore --siteUrl https://contoso.sharepoint.com/site --ids "ae6f97a7-280e-48d6-b481-0ea986c323da,aadbf916-1f71-42ee-abf2-8ee4802ae291"
31
31
  ```
32
+
33
+ ## Response
34
+
35
+ The command won't return a response on success.
@@ -70,3 +70,7 @@ Remove the site without moving it to the Recycle Bin and wait for completion
70
70
  ```sh
71
71
  m365 spo site remove --url https://contoso.sharepoint.com/sites/demosite --wait --skipRecycleBin
72
72
  ```
73
+
74
+ ## Response
75
+
76
+ The command won't return a response on success.
@@ -1,4 +1,6 @@
1
1
  import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
2
4
 
3
5
  # spo site rename
4
6
 
@@ -63,3 +65,93 @@ Renames the specified site collection and waits for the operation to complete
63
65
  ```sh
64
66
  m365 spo site rename --url http://contoso.sharepoint.com/samplesite --newUrl http://contoso.sharepoint.com/renamed --newTitle "New Title" --wait
65
67
  ```
68
+
69
+ ## Response
70
+
71
+ <Tabs>
72
+ <TabItem value="JSON">
73
+
74
+ ```json
75
+ {
76
+ "odata.metadata": "https://contoso-admin.sharepoint.com/_api/$metadata#SP.ApiData.SiteRenameJobEntityDatas/@Element",
77
+ "odata.type": "Microsoft.Online.SharePoint.Onboarding.RestService.Service.SiteRenameJob",
78
+ "odata.id": "https://contoso-admin.sharepoint.com/_api/onboardingservicesbeta/siterenamejobs",
79
+ "odata.editLink": "onboardingservicesbeta/siterenamejobs",
80
+ "Option": 0,
81
+ "Reserve": null,
82
+ "OperationId": "00000000-0000-0000-0000-000000000000",
83
+ "SkipGestures": "",
84
+ "SourceSiteUrl": "https://contoso.sharepoint.com/sites/team1",
85
+ "TargetSiteTitle": null,
86
+ "TargetSiteUrl": "https://contoso.sharepoint.com/sites/team2",
87
+ "ErrorCode": 0,
88
+ "ErrorDescription": null,
89
+ "JobId": "ec3c9add-8b39-4355-b3c7-22f81331f897",
90
+ "JobState": "NotStarted",
91
+ "ParentId": "00000000-0000-0000-0000-000000000000",
92
+ "SiteId": "ffdab06c-3df6-4e60-a46a-fc8a51f32be3",
93
+ "TriggeredBy": "john@contoso.onmicrosoft.com"
94
+ }
95
+ ```
96
+
97
+ </TabItem>
98
+ <TabItem value="Text">
99
+
100
+ ```text
101
+ ErrorCode : 0
102
+ ErrorDescription: null
103
+ JobId : fc326673-83c4-4fbc-bd7b-e561ec30de83
104
+ JobState : NotStarted
105
+ OperationId : 00000000-0000-0000-0000-000000000000
106
+ Option : 0
107
+ ParentId : 00000000-0000-0000-0000-000000000000
108
+ Reserve : null
109
+ SiteId : 754383f6-cf1e-4e55-8761-e1d2c4f5319b
110
+ SkipGestures :
111
+ SourceSiteUrl : https://contoso.sharepoint.com/sites/team1
112
+ TargetSiteTitle : null
113
+ TargetSiteUrl : https://contoso.sharepoint.com/sites/team2
114
+ TriggeredBy : john@contoso.onmicrosoft.com
115
+ odata.editLink : onboardingservicesbeta/siterenamejobs
116
+ odata.id : https://contoso-admin.sharepoint.com/_api/onboardingservicesbeta/siterenamejobs
117
+ odata.metadata : https://contoso-admin.sharepoint.com/_api/$metadata#SP.ApiData.SiteRenameJobEntityDatas/@Element
118
+ odata.type : Microsoft.Online.SharePoint.Onboarding.RestService.Service.SiteRenameJob
119
+ ```
120
+
121
+ </TabItem>
122
+ <TabItem value="CSV">
123
+
124
+ ```csv
125
+ odata.metadata,odata.type,odata.id,odata.editLink,Option,OperationId,SkipGestures,SourceSiteUrl,TargetSiteUrl,ErrorCode,JobId,JobState,ParentId,SiteId,TriggeredBy
126
+ https://contoso-admin.sharepoint.com/_api/$metadata#SP.ApiData.SiteRenameJobEntityDatas/@Element,Microsoft.Online.SharePoint.Onboarding.RestService.Service.SiteRenameJob,https://contoso-admin.sharepoint.com/_api/onboardingservicesbeta/siterenamejobs,onboardingservicesbeta/siterenamejobs,0,00000000-0000-0000-0000-000000000000,,https://contoso.sharepoint.com/sites/team1,https://contoso.sharepoint.com/sites/team2,0,5ff99cdd-0a71-41e4-9ffa-055cd1462fe8,NotStarted,00000000-0000-0000-0000-000000000000,2f7623fb-cae9-40de-b0f4-59b0bc545982,john@contoso.onmicrosoft.com
127
+ ```
128
+
129
+ </TabItem>
130
+ <TabItem value="Markdown">
131
+
132
+ ```md
133
+ # spo site rename --url "https://contoso.sharepoint.com/sites/team1" --newUrl "https://contoso.sharepoint.com/sites/team2"
134
+
135
+ Date: 2023-06-21
136
+
137
+ Property | Value
138
+ ---------|-------
139
+ odata.metadata | https://contoso-admin.sharepoint.com/\_api/$metadata#SP.ApiData.SiteRenameJobEntityDatas/@Element
140
+ odata.type | Microsoft.Online.SharePoint.Onboarding.RestService.Service.SiteRenameJob
141
+ odata.id | https://contoso-admin.sharepoint.com/\_api/onboardingservicesbeta/siterenamejobs
142
+ odata.editLink | onboardingservicesbeta/siterenamejobs
143
+ Option | 0
144
+ OperationId | 00000000-0000-0000-0000-000000000000
145
+ SkipGestures |
146
+ SourceSiteUrl | https://contoso.sharepoint.com/sites/team1
147
+ TargetSiteUrl | https://contoso.sharepoint.com/sites/team2
148
+ ErrorCode | 0
149
+ JobId | 9857a6ba-d1ae-481f-96eb-3a3172659502
150
+ JobState | NotStarted
151
+ ParentId | 00000000-0000-0000-0000-000000000000
152
+ SiteId | c0dd6f7a-5998-49a4-847f-c2b5d247d5e2
153
+ TriggeredBy | john@contoso.onmicrosoft.com
154
+ ```
155
+
156
+ </TabItem>
157
+ </Tabs>
@@ -28,6 +28,9 @@ m365 spo site set [options]
28
28
  `--disableFlows [disableFlows]`
29
29
  : Set to `true` to disable using Microsoft Flow in this site collection
30
30
 
31
+ `--socialBarOnSitePagesDisabled [socialBarOnSitePagesDisabled]`
32
+ : Set to `true` to disable Social Bar for the site collection
33
+
31
34
  `--isPublic [isPublic]`
32
35
  : Set to `true` to make the group linked to the site public or to `false` to make it private
33
36
 
@@ -121,6 +124,12 @@ Disable using Microsoft Flow on the site collection
121
124
  m365 spo site set --url https://contoso.sharepoint.com/sites/sales --disableFlows true
122
125
  ```
123
126
 
127
+ Disable Social Bar for the site collection
128
+
129
+ ```sh
130
+ m365 spo site set --url https://contoso.sharepoint.com/sites/sales --socialBarOnSitePagesDisabled true
131
+ ```
132
+
124
133
  Update the visibility of the Microsoft 365 group behind the specified groupified site collection to public
125
134
 
126
135
  ```sh
@@ -180,3 +189,7 @@ Lock the site preventing users from accessing it. Wait for the configuration to
180
189
  ```sh
181
190
  m365 spo site set --url https://contoso.sharepoint.com/sites/team --LockState NoAccess --wait
182
191
  ```
192
+
193
+ ## Response
194
+
195
+ The command won't return a response on success.
@@ -1,4 +1,6 @@
1
1
  import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
2
4
 
3
5
  # spo sitedesign add
4
6
 
@@ -60,6 +62,120 @@ Create new default site design for provisioning modern communication sites
60
62
  m365 spo sitedesign add --title "Contoso communication site" --webTemplate CommunicationSite --siteScripts "19b0e1b2-e3d1-473f-9394-f08c198ef43e" --isDefault
61
63
  ```
62
64
 
65
+ ## Response
66
+
67
+ <Tabs>
68
+ <TabItem value="JSON">
69
+
70
+ ```json
71
+ {
72
+ "Description": null,
73
+ "DesignPackageId": null,
74
+ "DesignType": "0",
75
+ "ExpandedPreviewImages": [],
76
+ "InternalName": null,
77
+ "IsDefault": false,
78
+ "IsOutOfBoxTemplate": false,
79
+ "IsTenantAdminOnly": false,
80
+ "ListColor": "0",
81
+ "ListIcon": "0",
82
+ "PreviewImageAltText": null,
83
+ "PreviewImageUrl": null,
84
+ "RequiresClassConnected": false,
85
+ "RequiresGroupConnected": false,
86
+ "RequiresSyntexLicense": false,
87
+ "RequiresTeamsConnected": false,
88
+ "RequiresYammerConnected": false,
89
+ "SiteScriptIds": [
90
+ "43d4ffa0-c7ee-4a97-91d7-db27e5b62de5"
91
+ ],
92
+ "SupportedWebTemplates": [],
93
+ "TargetPlatforms": [],
94
+ "TemplateAssets": [],
95
+ "TemplateFeatures": [],
96
+ "ThumbnailUrl": null,
97
+ "Title": "Contoso team site",
98
+ "WebTemplate": "64",
99
+ "Id": "00281728-3bc1-41d3-92b6-8fc493dcf4cc",
100
+ "Order": null,
101
+ "Version": 1
102
+ }
103
+ ```
104
+
105
+ </TabItem>
106
+ <TabItem value="Text">
107
+
108
+ ```text
109
+ Description : null
110
+ DesignPackageId : null
111
+ DesignType : 0
112
+ ExpandedPreviewImages : []
113
+ Id : 00281728-3bc1-41d3-92b6-8fc493dcf4cc
114
+ InternalName : null
115
+ IsDefault : false
116
+ IsOutOfBoxTemplate : false
117
+ IsTenantAdminOnly : false
118
+ ListColor : 0
119
+ ListIcon : 0
120
+ Order : null
121
+ PreviewImageAltText : null
122
+ PreviewImageUrl : null
123
+ RequiresClassConnected : false
124
+ RequiresGroupConnected : false
125
+ RequiresSyntexLicense : false
126
+ RequiresTeamsConnected : false
127
+ RequiresYammerConnected: false
128
+ SiteScriptIds : ["43d4ffa0-c7ee-4a97-91d7-db27e5b62de5"]
129
+ SupportedWebTemplates : []
130
+ TargetPlatforms : []
131
+ TemplateAssets : []
132
+ TemplateFeatures : []
133
+ ThumbnailUrl : null
134
+ Title : Contoso team site
135
+ Version : 1
136
+ WebTemplate : 64
137
+ ```
138
+
139
+ </TabItem>
140
+ <TabItem value="CSV">
141
+
142
+ ```csv
143
+ DesignType,IsDefault,IsOutOfBoxTemplate,IsTenantAdminOnly,ListColor,ListIcon,RequiresClassConnected,RequiresGroupConnected,RequiresSyntexLicense,RequiresTeamsConnected,RequiresYammerConnected,Title,WebTemplate,Id,Version
144
+ 0,,,,0,0,,,,,,Contoso team site,64,00281728-3bc1-41d3-92b6-8fc493dcf4cc,1
145
+ ```
146
+
147
+ </TabItem>
148
+ <TabItem value="Markdown">
149
+
150
+ ```md
151
+ # spo sitedesign add --title "Contoso team site" --webTemplate "TeamSite" --siteScripts "43d4ffa0-c7ee-4a97-91d7-db27e5b62de5"
152
+
153
+ Date: 2023-06-22
154
+
155
+ ## Contoso team site (00281728-3bc1-41d3-92b6-8fc493dcf4cc)
156
+
157
+ Property | Value
158
+ ---------|-------
159
+ DesignType | 0
160
+ IsDefault | false
161
+ IsOutOfBoxTemplate | false
162
+ IsTenantAdminOnly | false
163
+ ListColor | 0
164
+ ListIcon | 0
165
+ RequiresClassConnected | false
166
+ RequiresGroupConnected | false
167
+ RequiresSyntexLicense | false
168
+ RequiresTeamsConnected | false
169
+ RequiresYammerConnected | false
170
+ Title | Contoso team site
171
+ WebTemplate | 64
172
+ Id | 00281728-3bc1-41d3-92b6-8fc493dcf4cc
173
+ Version | 1
174
+ ```
175
+
176
+ </TabItem>
177
+ </Tabs>
178
+
63
179
  ## More information
64
180
 
65
181
  - SharePoint site design and site script overview: [https://docs.microsoft.com/en-us/sharepoint/dev/declarative-customization/site-design-overview](https://docs.microsoft.com/en-us/sharepoint/dev/declarative-customization/site-design-overview)