@pnp/cli-microsoft365 6.8.0-beta.62006d7 → 6.8.0-beta.85a1ca9

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 (236) hide show
  1. package/.eslintrc.js +2 -0
  2. package/.mocharc.json +1 -0
  3. package/README.md +6 -1
  4. package/dist/Command.js +6 -0
  5. package/dist/chili/chili.js +298 -0
  6. package/dist/chili/index.js +20 -0
  7. package/dist/cli/Cli.js +2 -2
  8. package/dist/m365/app/commands/permission/permission-add.js +279 -0
  9. package/dist/m365/app/commands.js +1 -0
  10. package/dist/m365/commands/commands.js +2 -0
  11. package/dist/m365/commands/docs.js +42 -0
  12. package/dist/m365/commands/login.js +1 -1
  13. package/dist/m365/commands/setup.js +180 -0
  14. package/dist/m365/commands/setupPresets.js +25 -0
  15. package/dist/m365/pa/commands/app/app-consent-set.js +101 -0
  16. package/dist/m365/pa/commands.js +1 -0
  17. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-get.js +97 -0
  18. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-list.js +85 -0
  19. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-policysettings-list.js +89 -0
  20. package/dist/m365/purview/commands.js +3 -0
  21. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.15.2.js +2 -0
  22. package/dist/m365/spfx/commands/spfx-doctor.js +14 -30
  23. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-remove.js +146 -0
  24. package/dist/m365/spo/commands/file/file-checkin.js +8 -3
  25. package/dist/m365/spo/commands/file/file-checkout.js +8 -3
  26. package/dist/m365/spo/commands/file/file-copy.js +4 -4
  27. package/dist/m365/spo/commands/file/file-get.js +3 -1
  28. package/dist/m365/spo/commands/file/file-list.js +17 -6
  29. package/dist/m365/spo/commands/file/file-move.js +6 -7
  30. package/dist/m365/spo/commands/file/file-remove.js +6 -12
  31. package/dist/m365/spo/commands/file/file-rename.js +3 -3
  32. package/dist/m365/spo/commands/file/file-roleassignment-add.js +2 -1
  33. package/dist/m365/spo/commands/file/file-roleassignment-remove.js +3 -3
  34. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +2 -1
  35. package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +2 -1
  36. package/dist/m365/spo/commands/file/file-sharinginfo-get.js +4 -2
  37. package/dist/m365/spo/commands/file/file-version-clear.js +3 -1
  38. package/dist/m365/spo/commands/file/file-version-get.js +3 -1
  39. package/dist/m365/spo/commands/file/file-version-remove.js +3 -1
  40. package/dist/m365/spo/commands/file/file-version-restore.js +3 -1
  41. package/dist/m365/spo/commands/folder/folder-copy.js +4 -4
  42. package/dist/m365/spo/commands/folder/folder-get.js +5 -2
  43. package/dist/m365/spo/commands/folder/folder-move.js +3 -2
  44. package/dist/m365/spo/commands/folder/folder-rename.js +5 -2
  45. package/dist/m365/spo/commands/list/list-get.js +30 -3
  46. package/dist/m365/spo/commands/list/list-list.js +39 -2
  47. package/dist/m365/spo/commands/listitem/listitem-batch-set.js +308 -0
  48. package/dist/m365/spo/commands/page/page-section-add.js +2 -3
  49. package/dist/m365/spo/commands/serviceprincipal/serviceprincipal-permissionrequest-list.js +46 -1
  50. package/dist/m365/spo/commands/site/site-recyclebinitem-move.js +119 -0
  51. package/dist/m365/spo/commands/site/site-recyclebinitem-remove.js +106 -0
  52. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-get.js +30 -39
  53. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-list.js +47 -0
  54. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-remove.js +151 -0
  55. package/dist/m365/spo/commands/tenant/tenant-commandset-remove.js +152 -0
  56. package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +203 -0
  57. package/dist/m365/spo/commands/term/term-add.js +13 -4
  58. package/dist/m365/spo/commands/term/term-get.js +14 -5
  59. package/dist/m365/spo/commands/term/term-group-get.js +12 -3
  60. package/dist/m365/spo/commands/term/term-group-list.js +39 -4
  61. package/dist/m365/spo/commands/term/term-list.js +18 -9
  62. package/dist/m365/spo/commands/term/term-set-add.js +13 -4
  63. package/dist/m365/spo/commands/term/term-set-get.js +12 -3
  64. package/dist/m365/spo/commands/term/term-set-list.js +12 -3
  65. package/dist/m365/spo/commands.js +9 -0
  66. package/dist/utils/formatting.js +35 -11
  67. package/dist/utils/pid.js +5 -0
  68. package/dist/utils/spo.js +1 -1
  69. package/docs/docs/cmd/aad/o365group/o365group-get.md +0 -12
  70. package/docs/docs/cmd/app/permission/permission-add.md +53 -0
  71. package/docs/docs/cmd/cli/cli-consent.md +6 -0
  72. package/docs/docs/cmd/cli/cli-doctor.md +17 -0
  73. package/docs/docs/cmd/cli/cli-issue.md +6 -0
  74. package/docs/docs/cmd/cli/cli-reconsent.md +6 -0
  75. package/docs/docs/cmd/cli/completion/completion-sh-setup.md +6 -0
  76. package/docs/docs/cmd/cli/config/config-get.md +6 -0
  77. package/docs/docs/cmd/docs.md +51 -0
  78. package/docs/docs/cmd/flow/environment/environment-list.md +18 -0
  79. package/docs/docs/cmd/flow/flow-get.md +20 -0
  80. package/docs/docs/cmd/flow/flow-list.md +17 -0
  81. package/docs/docs/cmd/login.md +1 -1
  82. package/docs/docs/cmd/pa/app/app-consent-set.md +47 -0
  83. package/docs/docs/cmd/planner/plan/plan-get.md +1 -1
  84. package/docs/docs/cmd/planner/plan/plan-list.md +1 -1
  85. package/docs/docs/cmd/planner/roster/roster-add.md +2 -1
  86. package/docs/docs/cmd/planner/roster/roster-get.md +1 -1
  87. package/docs/docs/cmd/planner/roster/roster-remove.md +2 -1
  88. package/docs/docs/cmd/planner/task/task-get.md +0 -6
  89. package/docs/docs/cmd/planner/task/task-set.md +1 -1
  90. package/docs/docs/cmd/purview/retentionevent/retentionevent-add.md +6 -7
  91. package/docs/docs/cmd/purview/retentionevent/retentionevent-get.md +6 -7
  92. package/docs/docs/cmd/purview/retentionevent/retentionevent-list.md +4 -4
  93. package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.md +4 -4
  94. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.md +10 -10
  95. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.md +11 -11
  96. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.md +10 -10
  97. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-remove.md +10 -10
  98. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-set.md +10 -10
  99. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.md +12 -12
  100. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.md +8 -9
  101. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.md +8 -9
  102. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.md +8 -8
  103. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.md +8 -8
  104. package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-get.md +118 -0
  105. package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-list.md +111 -0
  106. package/docs/docs/cmd/purview/sensitivitylabel/sensitivitylabel-policysettings-list.md +97 -0
  107. package/docs/docs/cmd/search/externalconnection/externalconnection-get.md +17 -0
  108. package/docs/docs/cmd/search/externalconnection/externalconnection-list.md +17 -0
  109. package/docs/docs/cmd/setup.md +86 -0
  110. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.md +1 -1
  111. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-remove.md +77 -0
  112. package/docs/docs/cmd/spo/commandset/commandset-set.md +1 -1
  113. package/docs/docs/cmd/spo/contenttype/contenttype-set.md +2 -2
  114. package/docs/docs/cmd/spo/customaction/customaction-add.md +1 -1
  115. package/docs/docs/cmd/spo/customaction/customaction-set.md +1 -1
  116. package/docs/docs/cmd/spo/file/file-add.md +1 -1
  117. package/docs/docs/cmd/spo/file/file-checkin.md +1 -1
  118. package/docs/docs/cmd/spo/file/file-checkout.md +1 -1
  119. package/docs/docs/cmd/spo/file/file-copy.md +1 -1
  120. package/docs/docs/cmd/spo/file/file-get.md +1 -1
  121. package/docs/docs/cmd/spo/file/file-list.md +9 -6
  122. package/docs/docs/cmd/spo/file/file-move.md +3 -3
  123. package/docs/docs/cmd/spo/file/file-remove.md +12 -0
  124. package/docs/docs/cmd/spo/file/file-rename.md +1 -1
  125. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.md +3 -3
  126. package/docs/docs/cmd/spo/file/file-retentionlabel-remove.md +2 -2
  127. package/docs/docs/cmd/spo/file/file-roleassignment-add.md +1 -1
  128. package/docs/docs/cmd/spo/file/file-roleassignment-remove.md +1 -1
  129. package/docs/docs/cmd/spo/file/file-roleinheritance-break.md +1 -1
  130. package/docs/docs/cmd/spo/file/file-roleinheritance-reset.md +1 -1
  131. package/docs/docs/cmd/spo/file/file-sharinginfo-get.md +1 -1
  132. package/docs/docs/cmd/spo/file/file-sharinglink-add.md +1 -1
  133. package/docs/docs/cmd/spo/file/file-sharinglink-clear.md +1 -1
  134. package/docs/docs/cmd/spo/file/file-sharinglink-get.md +1 -1
  135. package/docs/docs/cmd/spo/file/file-sharinglink-list.md +1 -1
  136. package/docs/docs/cmd/spo/file/file-sharinglink-remove.md +1 -1
  137. package/docs/docs/cmd/spo/file/file-sharinglink-set.md +1 -1
  138. package/docs/docs/cmd/spo/file/file-version-clear.md +2 -2
  139. package/docs/docs/cmd/spo/file/file-version-get.md +1 -1
  140. package/docs/docs/cmd/spo/file/file-version-list.md +1 -1
  141. package/docs/docs/cmd/spo/file/file-version-remove.md +1 -1
  142. package/docs/docs/cmd/spo/file/file-version-restore.md +1 -1
  143. package/docs/docs/cmd/spo/folder/folder-add.md +9 -3
  144. package/docs/docs/cmd/spo/folder/folder-copy.md +2 -2
  145. package/docs/docs/cmd/spo/folder/folder-get.md +7 -7
  146. package/docs/docs/cmd/spo/folder/folder-list.md +11 -11
  147. package/docs/docs/cmd/spo/folder/folder-move.md +1 -1
  148. package/docs/docs/cmd/spo/folder/folder-remove.md +7 -7
  149. package/docs/docs/cmd/spo/folder/folder-rename.md +11 -5
  150. package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.md +3 -3
  151. package/docs/docs/cmd/spo/folder/folder-retentionlabel-remove.md +1 -1
  152. package/docs/docs/cmd/spo/folder/folder-roleinheritance-break.md +1 -1
  153. package/docs/docs/cmd/spo/folder/folder-roleinheritance-reset.md +4 -4
  154. package/docs/docs/cmd/spo/list/list-get.md +10 -0
  155. package/docs/docs/cmd/spo/list/list-list.md +28 -0
  156. package/docs/docs/cmd/spo/listitem/listitem-batch-set.md +67 -0
  157. package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-list.md +19 -0
  158. package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-remove.md +12 -0
  159. package/docs/docs/cmd/spo/orgnewssite/orgnewssite-list.md +6 -0
  160. package/docs/docs/cmd/spo/page/page-column-get.md +15 -0
  161. package/docs/docs/cmd/spo/page/page-column-list.md +16 -0
  162. package/docs/docs/cmd/spo/page/page-control-get.md +18 -0
  163. package/docs/docs/cmd/spo/page/page-control-list.md +18 -0
  164. package/docs/docs/cmd/spo/page/page-copy.md +35 -0
  165. package/docs/docs/cmd/spo/page/page-get.md +39 -0
  166. package/docs/docs/cmd/spo/page/page-list.md +53 -0
  167. package/docs/docs/cmd/spo/page/page-section-get.md +12 -0
  168. package/docs/docs/cmd/spo/page/page-section-list.md +13 -0
  169. package/docs/docs/cmd/spo/page/page-template-list.md +31 -0
  170. package/docs/docs/cmd/spo/propertybag/propertybag-get.md +6 -0
  171. package/docs/docs/cmd/spo/propertybag/propertybag-list.md +13 -0
  172. package/docs/docs/cmd/spo/report/report-activityfilecounts.md +7 -0
  173. package/docs/docs/cmd/spo/report/report-activitypages.md +7 -0
  174. package/docs/docs/cmd/spo/report/report-activityusercounts.md +7 -0
  175. package/docs/docs/cmd/spo/report/report-activityuserdetail.md +7 -0
  176. package/docs/docs/cmd/spo/report/report-siteusagedetail.md +7 -0
  177. package/docs/docs/cmd/spo/report/report-siteusagefilecounts.md +7 -0
  178. package/docs/docs/cmd/spo/report/report-siteusagepages.md +7 -0
  179. package/docs/docs/cmd/spo/report/report-siteusagesitecounts.md +7 -0
  180. package/docs/docs/cmd/spo/report/report-siteusagestorage.md +7 -0
  181. package/docs/docs/cmd/spo/roledefinition/roledefinition-get.md +20 -0
  182. package/docs/docs/cmd/spo/roledefinition/roledefinition-list.md +20 -0
  183. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-add.md +20 -0
  184. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-grant-list.md +18 -0
  185. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-approve.md +20 -0
  186. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-permissionrequest-list.md +17 -0
  187. package/docs/docs/cmd/spo/serviceprincipal/serviceprincipal-set.md +13 -0
  188. package/docs/docs/cmd/spo/site/site-recyclebinitem-move.md +43 -0
  189. package/docs/docs/cmd/spo/site/site-recyclebinitem-remove.md +45 -0
  190. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-add.md +1 -1
  191. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-list.md +103 -0
  192. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-remove.md +49 -0
  193. package/docs/docs/cmd/spo/tenant/tenant-commandset-remove.md +49 -0
  194. package/docs/docs/cmd/spo/tenant/tenant-commandset-set.md +57 -0
  195. package/docs/docs/cmd/spo/term/term-add.md +107 -6
  196. package/docs/docs/cmd/spo/term/term-get.md +111 -10
  197. package/docs/docs/cmd/spo/term/term-group-get.md +71 -5
  198. package/docs/docs/cmd/spo/term/term-group-list.md +70 -2
  199. package/docs/docs/cmd/spo/term/term-list.md +80 -8
  200. package/docs/docs/cmd/spo/term/term-set-add.md +95 -11
  201. package/docs/docs/cmd/spo/term/term-set-get.md +92 -8
  202. package/docs/docs/cmd/spo/term/term-set-list.md +85 -5
  203. package/docs/docs/cmd/teams/app/app-list.md +17 -0
  204. package/docs/docs/cmd/teams/app/app-publish.md +18 -1
  205. package/docs/docs/cmd/teams/channel/channel-add.md +20 -0
  206. package/docs/docs/cmd/teams/channel/channel-get.md +21 -0
  207. package/docs/docs/cmd/teams/channel/channel-list.md +21 -0
  208. package/docs/docs/cmd/teams/channel/channel-member-list.md +20 -0
  209. package/docs/docs/cmd/teams/channel/channel-member-set.md +21 -0
  210. package/docs/docs/cmd/teams/chat/chat-get.md +22 -0
  211. package/docs/docs/cmd/teams/chat/chat-list.md +22 -0
  212. package/docs/docs/cmd/teams/chat/chat-member-list.md +20 -0
  213. package/docs/docs/cmd/teams/chat/chat-message-list.md +23 -0
  214. package/docs/docs/cmd/teams/funsettings/funsettings-list.md +15 -0
  215. package/docs/docs/cmd/teams/guestsettings/guestsettings-list.md +13 -0
  216. package/docs/docs/cmd/teams/membersettings/membersettings-list.md +17 -0
  217. package/docs/docs/cmd/teams/tab/tab-remove.md +1 -1
  218. package/docs/docs/cmd/version.md +1 -1
  219. package/docs/docs/cmd/yammer/group/group-list.md +42 -0
  220. package/docs/docs/cmd/yammer/message/message-add.md +32 -0
  221. package/docs/docs/cmd/yammer/message/message-get.md +32 -0
  222. package/docs/docs/cmd/yammer/message/message-list.md +34 -0
  223. package/docs/docs/cmd/yammer/network/network-list.md +70 -0
  224. package/docs/docs/cmd/yammer/report/report-activitycounts.md +7 -0
  225. package/docs/docs/cmd/yammer/report/report-activityusercounts.md +7 -0
  226. package/docs/docs/cmd/yammer/report/report-activityuserdetail.md +7 -0
  227. package/docs/docs/cmd/yammer/report/report-deviceusagedistributionusercounts.md +7 -0
  228. package/docs/docs/cmd/yammer/report/report-deviceusageusercounts.md +7 -0
  229. package/docs/docs/cmd/yammer/report/report-deviceusageuserdetail.md +7 -0
  230. package/docs/docs/cmd/yammer/report/report-groupsactivitycounts.md +7 -0
  231. package/docs/docs/cmd/yammer/report/report-groupsactivitydetail.md +7 -0
  232. package/docs/docs/cmd/yammer/report/report-groupsactivitygroupcounts.md +7 -0
  233. package/docs/docs/cmd/yammer/user/user-get.md +55 -0
  234. package/docs/docs/cmd/yammer/user/user-list.md +55 -0
  235. package/docs/docs/cmd/yammer/yammer-search.md +15 -3
  236. package/package.json +2 -1
@@ -14,7 +14,7 @@ m365 spo file sharinglink list [options]
14
14
  : The URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `--fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both.
@@ -14,7 +14,7 @@ m365 spo file sharinglink remove [options]
14
14
  : The URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `--fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both.
@@ -14,7 +14,7 @@ m365 spo file sharinglink set [options]
14
14
  : The URL of the site where the file is located.
15
15
 
16
16
  `--fileUrl [fileUrl]`
17
- : The server-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
17
+ : The server- or site-relative (decoded) URL of the file. Specify either `fileUrl` or `fileId` but not both.
18
18
 
19
19
  `--fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both.
@@ -14,10 +14,10 @@ m365 spo file version clear [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-u, --fileUrl [fileUrl]`
17
- : The server-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
17
+ : The server- or site-relative URL of the file. Specify either `fileUrl` or `fileId` but not both
18
18
 
19
19
  `-i, --fileId [fileId]`
20
- : The UniqueId (GUID) of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
20
+ : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both
21
21
 
22
22
  `--confirm [confirm]`
23
23
  : Don't prompt for confirmation.
@@ -17,7 +17,7 @@ m365 spo file version get [options]
17
17
  : Label of version which will be retrieved
18
18
 
19
19
  `-u, --fileUrl [fileUrl]`
20
- : The server-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
20
+ : The server- or site-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
21
21
 
22
22
  `-i, --fileId [fileId]`
23
23
  : The UniqueId (GUID) of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
@@ -14,7 +14,7 @@ m365 spo file version list [options]
14
14
  : The URL of the site where the file is located
15
15
 
16
16
  `-u, --fileUrl [fileUrl]`
17
- : The site-relative or server-relative URL of the file. Specify either `fileUrl` or `fileId` but not both
17
+ : The server- or site-relative URL of the file. Specify either `fileUrl` or `fileId` but not both
18
18
 
19
19
  `-i, --fileId [fileId]`
20
20
  : The UniqueId (GUID) of the file. Specify either `fileUrl` or `fileId` but not both
@@ -17,7 +17,7 @@ m365 spo file version remove [options]
17
17
  : Label of version which will be removed
18
18
 
19
19
  `-u, --fileUrl [fileUrl]`
20
- : The server-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
20
+ : The server- or site-relative URL of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
21
21
 
22
22
  `-i, --fileId [fileId]`
23
23
  : The UniqueId (GUID) of the file to retrieve. Specify either `fileUrl` or `fileId` but not both
@@ -17,7 +17,7 @@ m365 spo file version restore [options]
17
17
  : Label of version which will be restored
18
18
 
19
19
  `-u, --fileUrl [fileUrl]`
20
- : The server-relative URL of the file whose version will be restored. Specify either `fileUrl` or `fileId` but not both
20
+ : The server- or site-relative URL of the file whose version will be restored. Specify either `fileUrl` or `fileId` but not both
21
21
 
22
22
  `-i, --fileId [fileId]`
23
23
  : The UniqueId (GUID) of the file whose version will be restored. Specify either `fileUrl` or `fileId` but not both
@@ -11,10 +11,10 @@ m365 spo folder add [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : The URL of the site where the folder will be created
14
+ : The URL of the site where the folder will be created.
15
15
 
16
16
  `-p, --parentFolderUrl <parentFolderUrl>`
17
- : Site-relative URL of the parent folder
17
+ : The server- or site-relative URL of the parent folder.
18
18
 
19
19
  `-n, --name <name>`
20
20
  : Name of the new folder to be created
@@ -23,8 +23,14 @@ m365 spo folder add [options]
23
23
 
24
24
  ## Examples
25
25
 
26
- Creates folder in a parent folder with site relative url _/Shared Documents_ located in site _https://contoso.sharepoint.com/sites/project-x_
26
+ Creates folder in a specific library within the site
27
27
 
28
28
  ```sh
29
29
  m365 spo folder add --webUrl https://contoso.sharepoint.com/sites/project-x --parentFolderUrl '/Shared Documents' --name 'My Folder Name'
30
30
  ```
31
+
32
+ Creates folder in a specific folder within the site
33
+
34
+ ```sh
35
+ m365 spo folder add --webUrl https://contoso.sharepoint.com/sites/project-x --parentFolderUrl '/sites/project-x/Shared Documents/Reports' --name 'Financial reports'
36
+ ```
@@ -14,7 +14,7 @@ m365 spo folder copy [options]
14
14
  : The URL of the site where the folder is located
15
15
 
16
16
  `-s, --sourceUrl <sourceUrl>`
17
- : Site-relative URL of the folder to copy
17
+ : The server- or site-relative URL of the folder to copy
18
18
 
19
19
  `-t, --targetUrl <targetUrl>`
20
20
  : Server-relative URL where to copy the folder
@@ -45,7 +45,7 @@ m365 spo folder copy --webUrl https://contoso.sharepoint.com/sites/test1 --sourc
45
45
  Copies folder to a document library in another site collection. Allow for schema mismatch
46
46
 
47
47
  ```sh
48
- m365 spo folder cope --webUrl https://contoso.sharepoint.com/sites/test1 --sourceUrl /Shared%20Documents/MyFolder --targetUrl /sites/test2/Shared%20Documents/ --allowSchemaMismatch
48
+ m365 spo folder copy --webUrl https://contoso.sharepoint.com/sites/test1 --sourceUrl /Shared%20Documents/MyFolder --targetUrl /sites/test2/Shared%20Documents/ --allowSchemaMismatch
49
49
  ```
50
50
 
51
51
  ## More information
@@ -11,13 +11,13 @@ m365 spo folder get [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : The URL of the site where the folder is located
14
+ : The URL of the site where the folder is located.
15
15
 
16
16
  `-f, --url [url]`
17
- : The server-relative URL of the folder to retrieve. Specify either `folderUrl` or `id` but not both
17
+ : The server- or site-relative URL of the folder to retrieve. Specify either `folderUrl` or `id` but not both.
18
18
 
19
19
  `-i, --id [id]`
20
- : The UniqueId (GUID) of the folder to retrieve. Specify either `url` or `id` but not both
20
+ : The UniqueId (GUID) of the folder to retrieve. Specify either `url` or `id` but not both.
21
21
 
22
22
  `--withPermissions`
23
23
  : Set if you want to return associated roles and permissions of the folder.
@@ -32,20 +32,20 @@ If root level folder is passed, you will get a `Please ensure the specified fold
32
32
 
33
33
  ## Examples
34
34
 
35
- Get folder properties for folder with server-relative url _'/Shared Documents'_ located in site _https://contoso.sharepoint.com/sites/project-x_
35
+ Get folder properties for a folder with a specific site-relative URL
36
36
 
37
37
  ```sh
38
38
  m365 spo folder get --webUrl https://contoso.sharepoint.com/sites/project-x --url "/Shared Documents"
39
39
  ```
40
40
 
41
- Get folder properties for folder with id (UniqueId) _b2307a39-e878-458b-bc90-03bc578531d6_ located in site _https://contoso.sharepoint.com/sites/project-x_
41
+ Get folder properties for a folder with a specific id (UniqueId)
42
42
 
43
43
  ```sh
44
44
  m365 spo folder get --webUrl https://contoso.sharepoint.com/sites/project-x --id "b2307a39-e878-458b-bc90-03bc578531d6"
45
45
  ```
46
46
 
47
- Get folder properties for folder with server-relative url _'/Shared Documents/Test1'_ located in site _https://contoso.sharepoint.com/sites/test
47
+ Get folder properties with permissions for a folder with server-relative URL
48
48
 
49
49
  ```sh
50
- m365 spo folder get --webUrl https://contoso.sharepoint.com/sites/test --url "Shared Documents/Test1" --withPermissions
50
+ m365 spo folder get --webUrl https://contoso.sharepoint.com/sites/test --url "/sites/test/Shared Documents/Test1" --withPermissions
51
51
  ```
@@ -11,10 +11,10 @@ m365 spo folder list [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : The URL of the site where the folders to list are located
14
+ : The URL of the site where the folders to list are located.
15
15
 
16
16
  `-p, --parentFolderUrl <parentFolderUrl>`
17
- : Site-relative URL of the parent folder
17
+ : The server- or site-relative URL of the parent folder.
18
18
 
19
19
  `-f, --fields [fields]`
20
20
  : Comma-separated list of fields to retrieve. Will retrieve all fields if not specified and json output is requested.
@@ -23,13 +23,13 @@ m365 spo folder list [options]
23
23
  : OData filter to use to query the list of folders with.
24
24
 
25
25
  `-r, --recursive`
26
- : Set to retrieve nested folders
26
+ : Set to retrieve nested folders.
27
27
 
28
28
  --8<-- "docs/cmd/_global.md"
29
29
 
30
30
  ## Examples
31
31
 
32
- Gets list of folders under a parent folder
32
+ Gets list of folders under a parent folder with site-relative URL
33
33
 
34
34
  ```sh
35
35
  m365 spo folder list --webUrl https://contoso.sharepoint.com/sites/project-x --parentFolderUrl '/Shared Documents'
@@ -38,7 +38,7 @@ m365 spo folder list --webUrl https://contoso.sharepoint.com/sites/project-x --p
38
38
  Gets recursive list of folders under a specific folder on a specific site
39
39
 
40
40
  ```sh
41
- m365 spo folder list --webUrl https://contoso.sharepoint.com/sites/project-x --parentFolderUrl '/Shared Documents' --recursive
41
+ m365 spo folder list --webUrl https://contoso.sharepoint.com/sites/project-x --parentFolderUrl '/sites/project-x/Shared Documents' --recursive
42
42
  ```
43
43
 
44
44
  Return a filtered list of folders and only return the list item ID
@@ -59,7 +59,7 @@ m365 spo folder list --webUrl https://contoso.sharepoint.com/sites/project-x --p
59
59
  "ItemCount": 9,
60
60
  "Name": "Folder A",
61
61
  "ProgID": null,
62
- "ServerRelativeUrl": "/Shared Documents/Folder A",
62
+ "ServerRelativeUrl": "/sites/project-x/Shared Documents/Folder A",
63
63
  "TimeCreated": "2022-04-26T12:30:56Z",
64
64
  "TimeLastModified": "2022-04-26T12:50:14Z",
65
65
  "UniqueId": "20523746-971b-4488-aa6d-b45d645f61c5",
@@ -71,16 +71,16 @@ m365 spo folder list --webUrl https://contoso.sharepoint.com/sites/project-x --p
71
71
  === "Text"
72
72
 
73
73
  ```text
74
- Name ServerRelativeUrl
75
- ------- -------------------------
76
- Folder A /Shared Documents/Folder A
74
+ Name ServerRelativeUrl
75
+ -------- ------------------------------------------
76
+ Folder A /sites/project-x/Shared Documents/Folder A
77
77
  ```
78
78
 
79
79
  === "CSV"
80
80
 
81
81
  ```csv
82
82
  Name,ServerRelativeUrl
83
- Folder A,/Shared Documents/Folder A
83
+ Folder A,/sites/project-x/Shared Documents/Folder A
84
84
  ```
85
85
 
86
86
  === "Markdown"
@@ -99,7 +99,7 @@ m365 spo folder list --webUrl https://contoso.sharepoint.com/sites/project-x --p
99
99
  ItemCount | 9
100
100
  Name | Folder A
101
101
  ProgID | null
102
- ServerRelativeUrl | /Shared Documents/Folder A
102
+ ServerRelativeUrl | /sites/project-x/Shared Documents/Folder A
103
103
  TimeCreated | 2022-04-26T12:30:56Z
104
104
  TimeLastModified | 2022-04-26T12:50:14Z
105
105
  UniqueId | 20523746-971b-4488-aa6d-b45d645f61c5
@@ -14,7 +14,7 @@ m365 spo folder move [options]
14
14
  : The URL of the site where the folder is located
15
15
 
16
16
  `-s, --sourceUrl <sourceUrl>`
17
- : Site-relative URL of the folder to move
17
+ : The server- or site-relative URL of the folder to move
18
18
 
19
19
  `-t, --targetUrl <targetUrl>`
20
20
  : Server-relative URL where to move the folder
@@ -11,16 +11,16 @@ m365 spo folder remove [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : The URL of the site where the folder to be deleted is located
14
+ : The URL of the site where the folder to be deleted is located.
15
15
 
16
16
  `-f, --url <url>`
17
- : Site-relative URL of the folder to delete
17
+ : The server- or site-relative URL of the folder to delete.
18
18
 
19
19
  `--recycle`
20
- : Recycles the folder instead of actually deleting it
20
+ : Recycles the folder instead of actually deleting it.
21
21
 
22
22
  `--confirm`
23
- : Don't prompt for confirming deleting the folder
23
+ : Don't prompt for confirming deleting the folder.
24
24
 
25
25
  --8<-- "docs/cmd/_global.md"
26
26
 
@@ -30,14 +30,14 @@ The `spo folder remove` command will remove folder only if it is empty. If the f
30
30
 
31
31
  ## Examples
32
32
 
33
- Removes a folder with site-relative URL _/Shared Documents/My Folder_ located in site _https://contoso.sharepoint.com/sites/project-x_
33
+ Remove a folder with a specific site-relative URL
34
34
 
35
35
  ```sh
36
36
  m365 spo folder remove --webUrl https://contoso.sharepoint.com/sites/project-x --url '/Shared Documents/My Folder'
37
37
  ```
38
38
 
39
- Moves a folder with site-relative URL _/Shared Documents/My Folder_ located in site _https://contoso.sharepoint.com/sites/project-x_ to the site recycle bin
39
+ Remove a folder with a specific server relative URL to the site recycle bin
40
40
 
41
41
  ```sh
42
- m365 spo folder remove --webUrl https://contoso.sharepoint.com/sites/project-x --url '/Shared Documents/My Folder' --recycle
42
+ m365 spo folder remove --webUrl https://contoso.sharepoint.com/sites/project-x --url '/sites/project-x/Shared Documents/My Folder' --recycle
43
43
  ```
@@ -11,20 +11,26 @@ m365 spo folder rename [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : The URL of the site where the folder to be renamed is located
14
+ : The URL of the site where the folder to be renamed is located.
15
15
 
16
16
  `-f, --url <url>`
17
- : Site-relative URL of the folder (including the folder)
17
+ : The server- or site-relative URL of the folder (including the folder).
18
18
 
19
- `-n, --name`
20
- : New name for the target folder
19
+ `-n, --name <name>`
20
+ : New name for the target folder.
21
21
 
22
22
  --8<-- "docs/cmd/_global.md"
23
23
 
24
24
  ## Examples
25
25
 
26
- Renames a folder with site-relative URL _/Shared Documents/My Folder 1_ located in site _https://contoso.sharepoint.com/sites/project-x_
26
+ Renames a folder with a specific site-relative URL
27
27
 
28
28
  ```sh
29
29
  m365 spo folder rename --webUrl https://contoso.sharepoint.com/sites/project-x --url '/Shared Documents/My Folder 1' --name 'My Folder 2'
30
30
  ```
31
+
32
+ Renames a folder with a specific server-relative URL
33
+
34
+ ```sh
35
+ m365 spo folder rename --webUrl https://contoso.sharepoint.com/sites/project-x --url '/sites/project-x/Shared Documents/My Folder 1' --name 'My Folder 2'
36
+ ```
@@ -11,10 +11,10 @@ m365 spo folder retentionlabel ensure [options]
11
11
  ## Options
12
12
 
13
13
  `-u, --webUrl <webUrl>`
14
- : URL of the site where the retentionlabel from a file to apply is located
14
+ : URL of the site where the retention label from a file to apply is located
15
15
 
16
16
  `--folderUrl [folderUrl]`
17
- : The site- or server relative URL of the folder that should be labelled. Specify either `folderUrl` or `folderId` but not both.
17
+ : The server- or site-relative URL of the folder that should be labelled. Specify either `folderUrl` or `folderId` but not both.
18
18
 
19
19
  `i, --folderId [folderId]`
20
20
  : The UniqueId (GUID) of the folder that should be labelled. Specify either `folderUrl` or `folderId` but not both.
@@ -26,7 +26,7 @@ m365 spo folder retentionlabel ensure [options]
26
26
 
27
27
  ## Remarks
28
28
 
29
- You can also use [spo listitem retentionlabel remove](./../../../cmd/spo//listitem/listitem-retentionlabel-remove.md) for removing the retentionlabel from a listitem.
29
+ You can also use [spo listitem retentionlabel remove](./../../../cmd/spo//listitem/listitem-retentionlabel-remove.md) for removing the retention label from a listitem.
30
30
 
31
31
  ## Examples
32
32
 
@@ -14,7 +14,7 @@ m365 spo folder retentionlabel remove [options]
14
14
  : The url of the web.
15
15
 
16
16
  `--folderUrl [folderUrl]`
17
- : The site- or server relative URL of the folder of which the label should be removed. Specify either `folderUrl` or `folderId` but not both.
17
+ : The server- or site-relative URL of the folder of which the label should be removed. Specify either `folderUrl` or `folderId` but not both.
18
18
 
19
19
  `-i, --folderId [folderId]`
20
20
  : The UniqueId (GUID) of the folder of which the label should be removed. Specify either `folderUrl` or `folderId` but not both.
@@ -14,7 +14,7 @@ m365 spo folder roleinheritance break [options]
14
14
  : URL of the site where the folder is located.
15
15
 
16
16
  `-f, --folderUrl <folderUrl>`
17
- : The site-relative URL or server-relative URL of the folder.
17
+ : The server- or site-relative URL of the folder.
18
18
 
19
19
  `-c, --clearExistingPermissions`
20
20
  : Clear all existing permissions from the folder.
@@ -14,7 +14,7 @@ m365 spo folder roleinheritance reset [options]
14
14
  : URL of the site where the folder is located.
15
15
 
16
16
  `-f, --folderUrl <folderUrl>`
17
- : The site-relative URL of the folder.
17
+ : The server- or site-relative URL of the folder.
18
18
 
19
19
  `--confirm`
20
20
  : Don't prompt for confirmation to reset role inheritance of the folder.
@@ -23,19 +23,19 @@ m365 spo folder roleinheritance reset [options]
23
23
 
24
24
  ## Examples
25
25
 
26
- Reset inheritance of folder with site-relative url _Shared Documents/TestFolder_ located in site _https://contoso.sharepoint.com/sites/project-x_.
26
+ Reset inheritance of folder with a specific site-relative URL
27
27
 
28
28
  ```sh
29
29
  m365 spo folder roleinheritance reset --webUrl "https://contoso.sharepoint.com/sites/project-x" --folderUrl "Shared Documents/TestFolder"
30
30
  ```
31
31
 
32
- Reset inheritance of folder with server-relative url _/sites/project-x/Shared Documents/TestFolder_ located in site _https://contoso.sharepoint.com/sites/project-x_. It will **not** prompt for confirmation before resetting.
32
+ Reset inheritance of folder with a specific server-relative URL. It will **not** prompt for confirmation before resetting.
33
33
 
34
34
  ```sh
35
35
  m365 spo folder roleinheritance reset --webUrl "https://contoso.sharepoint.com/sites/project-x" --folderUrl "/sites/project-x/Shared Documents/TestFolder" --confirm
36
36
  ```
37
37
 
38
- Reset inheritance of the specified root folder for the library with the server-relative url _/sites/project-x/Shared Documents located in site _https://contoso.sharepoint.com/sites/project-x_. It will **not** prompt for confirmation before resetting.
38
+ Reset inheritance of the specified root folder for the library with a specific server-relative URL. It will **not** prompt for confirmation before resetting.
39
39
 
40
40
  ```sh
41
41
  m365 spo folder roleinheritance reset --webUrl "https://contoso.sharepoint.com/sites/project-x" --folderUrl "/sites/project-x/Shared Documents" --confirm
@@ -30,6 +30,10 @@ m365 spo list get [options]
30
30
 
31
31
  --8<-- "docs/cmd/_global.md"
32
32
 
33
+ ## Remarks
34
+
35
+ When the `properties` option includes values with a `/`, for example: `ListItemAllFields/Id`, an additional `$expand` query parameter will be included on `ListItemAllFields`.
36
+
33
37
  ## Examples
34
38
 
35
39
  Get information about a list with specified ID located in the specified site.
@@ -62,6 +66,12 @@ Get information about a list returning the specified list properties.
62
66
  m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/sites/project-x --properties "Title,Id,HasUniqueRoleAssignments,AllowContentTypes"
63
67
  ```
64
68
 
69
+ Get information about a list returning the list Id, Title and ServerRelativeUrl properties.
70
+
71
+ ```sh
72
+ m365 spo list get --title Documents --webUrl https://contoso.sharepoint.com/sites/project-x --properties "Title,Id,RootFolder/ServerRelativeUrl"
73
+ ```
74
+
65
75
  Get information about a list along with the roles and permissions.
66
76
 
67
77
  ```sh
@@ -13,8 +13,18 @@ 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
+ `-p, --properties [properties]`
17
+ : Comma-separated list of properties to retrieve. Will retrieve all properties if not specified.
18
+
19
+ `-f, --filter [filter]`
20
+ : OData filter to use to query the lists with.
21
+
16
22
  --8<-- "docs/cmd/_global.md"
17
23
 
24
+ ## Remarks
25
+
26
+ When the `--properties` option includes values with a `/`, for example: `RootFolder/ServerRelativeUrl`, an additional `$expand` query parameter should be included on `RootFolder`.
27
+
18
28
  ## Examples
19
29
 
20
30
  Return all lists located in in a specific site.
@@ -23,6 +33,24 @@ Return all lists located in in a specific site.
23
33
  m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x
24
34
  ```
25
35
 
36
+ Return all lists located in in a specific site with specific properties.
37
+
38
+ ```sh
39
+ m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x --properties "BaseTemplate,ParentWebUrl"
40
+ ```
41
+
42
+ Return all lists located in in a specific site with the Id, Title and ServerRelativeUrl properties.
43
+
44
+ ```sh
45
+ m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x --properties "Id,Title,RootFolder/ServerRelativeUrl"
46
+ ```
47
+
48
+ Return all lists located in in a specific site based on the given filter.
49
+
50
+ ```sh
51
+ m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x --filter "BaseTemplate eq 100"
52
+ ```
53
+
26
54
  ## More information
27
55
 
28
56
  - 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)
@@ -0,0 +1,67 @@
1
+ # spo listitem batch set
2
+
3
+ Updates list items in a batch
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 spo listitem batch set [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-p, --filePath <filePath>`
14
+ : The absolute or relative path to a flat file containing the list items.
15
+
16
+ `-u, --webUrl <webUrl>`
17
+ : URL of the site.
18
+
19
+ `-l, --listId [listId]`
20
+ : ID of the list. Specify either `listTitle`, `listId` or `listUrl`, but not multiple.
21
+
22
+ `-t, --listTitle [listTitle]`
23
+ : Title of the list. Specify either `listTitle`, `listId` or `listUrl`, but not multiple.
24
+
25
+ `--listUrl [listUrl]`
26
+ : Server- or site-relative URL of the list. Specify either `listTitle`, `listId` or `listUrl`, but not multiple.
27
+
28
+ `--idColumn [idColumn]`
29
+ : Name of the column in the csv containing the IDs of the items to set. Defaults to `ID`.
30
+
31
+ `-s, --systemUpdate`
32
+ : Update the item without updating the modified date and modified by fields.
33
+
34
+ --8<-- "docs/cmd/_global.md"
35
+
36
+ ## Remarks
37
+
38
+ A sample CSV can be found below. The first line of the CSV-file should contain the internal column names that you wish to set.
39
+
40
+ ```csv
41
+ ID,ContentType,Title,SingleChoiceField,MultiChoiceField,SingleMetadataField,MultiMetadataField,SinglePeopleField,MultiPeopleField,CustomHyperlink,NumberField,LookupList,LookupListMulti
42
+ 5,Item,Title Update,Choice 1,Choice 1;#Choice 2,Engineering|4a3cc5f3-a4a6-433e-a07a-746978ff1760,Engineering|4a3cc5f3-a4a6-433e-a07a-746978ff1760;Finance|f994a4ac-cf34-448e-a22c-2b35fd9bbffa,john@contoso.com,john@contoso.com;doe@contoso.com,"https://bing.com, URL",5,2,2;3
43
+ ```
44
+
45
+ ## Examples
46
+
47
+ Updates a batch of items to a list retrieved by title in a specific site
48
+
49
+ ```sh
50
+ m365 spo listitem batch set --filePath "C:\Path\To\Csv\CsvFile.csv" --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "Demo List"
51
+ ```
52
+
53
+ Updates a batch of items to a list retrieved by Id in a specific site with a specific `idColumn`
54
+
55
+ ```sh
56
+ m365 spo listitem batch set --filePath "C:\Path\To\Csv\CsvFile.csv" --webUrl https://contoso.sharepoint.com/sites/project-x --listId fe54c47b-22e4-4cab-8a10-3fc54003fb4c --idColumn id
57
+ ```
58
+
59
+ Updates a batch of items to a list defined by server-relative URL in a specific site without updating the modified details
60
+
61
+ ```sh
62
+ m365 spo listitem batch set --filePath "C:\Path\To\Csv\CsvFile.csv" --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl "/sites/project-x/lists/Demo List" --systemUpdate
63
+ ```
64
+
65
+ ## Response
66
+
67
+ The command won't return a response on success.
@@ -59,6 +59,19 @@ m365 spo orgassetslibrary list
59
59
  /,"[{""DisplayName"":""Site Assets"",""LibraryUrl"":""SiteAssets"",""ListId"":""/Guid(0a327c3f-ba82-4b19-bfa1-628405539420)/"",""ThumbnailUrl"":null}]"
60
60
  ```
61
61
 
62
+ === "Markdown"
63
+
64
+ ```md
65
+ # spo orgassetslibrary list
66
+
67
+ Date: 5/1/2023
68
+
69
+ ## /
70
+
71
+ Property | Value
72
+ ---------|-------
73
+ Url | /
74
+ ```
62
75
  ### Response when no library is assigned as asset library
63
76
 
64
77
  === "Text"
@@ -66,3 +79,9 @@ m365 spo orgassetslibrary list
66
79
  ```text
67
80
  No libraries in Organization Assets
68
81
  ```
82
+
83
+ === "Markdown"
84
+
85
+ ```md
86
+ No libraries in Organization Assets
87
+ ```
@@ -52,3 +52,15 @@ m365 spo orgassetslibrary remove --libraryUrl "/sites/branding/assets" --confirm
52
52
  ```csv
53
53
  IsNull
54
54
  ```
55
+
56
+ === "Markdown"
57
+
58
+ ```md
59
+ # spo orgassetslibrary remove --libraryUrl "https://contoso.sharepoint.com/sites/branding/SiteAssets" --confirm "true"
60
+
61
+ Date: 5/1/2023
62
+
63
+ Property | Value
64
+ ---------|-------
65
+ IsNull | false
66
+ ```
@@ -46,3 +46,9 @@ m365 spo orgnewssite list
46
46
  ```csv
47
47
  https://contoso.sharepoint.com/sites/contosoNews
48
48
  ```
49
+
50
+ === "Markdown"
51
+
52
+ ```md
53
+ https://contoso.sharepoint.com/sites/contosoNews
54
+ ```
@@ -98,3 +98,18 @@ m365 spo page column get --webUrl https://contoso.sharepoint.com/sites/team-a --
98
98
  factor,order,controls
99
99
  12,1,7558d804-0334-49ca-b14a-53870cf6caae (Bing Maps)
100
100
  ```
101
+
102
+ === "Markdown"
103
+
104
+ ```md
105
+ # spo page column get --webUrl "https://contoso.sharepoint.com/sites/team-a" --pageName "home.aspx" --section "1" --column "1"
106
+
107
+ Date: 5/1/2023
108
+
109
+ Property | Value
110
+ ---------|-------
111
+ factor | 6
112
+ order | 1
113
+ dataVersion | 1.0
114
+ jsonData | &#123;&quot;displayMode&quot;&#58;2,&quot;position&quot;&#58;&#123;&quot;sectionFactor&quot;&#58;6,&quot;sectionIndex&quot;&#58;1,&quot;zoneIndex&quot;&#58;1&#125;&#125;
115
+ ```
@@ -64,3 +64,19 @@ m365 spo page column list --webUrl https://contoso.sharepoint.com/sites/team-a -
64
64
  factor,order,controls
65
65
  12,1,1
66
66
  ```
67
+
68
+ === "Markdown"
69
+
70
+ ```md
71
+ # spo page column list --webUrl "https://contoso.sharepoint.com/sites/team-a" --pageName "home.aspx" --section "1"
72
+
73
+ Date: 5/1/2023
74
+
75
+ Property | Value
76
+ ---------|-------
77
+ factor | 6
78
+ order | 1
79
+ dataVersion | 1.0
80
+ jsonData | &#123;&quot;displayMode&quot;&#58;2,&quot;position&quot;&#58;&#123;&quot;sectionFactor&quot;&#58;6,&quot;sectionIndex&quot;&#58;1,&quot;zoneIndex&quot;&#58;1&#125;&#125;
81
+ controls | 1
82
+ ```