@pnp/cli-microsoft365 7.0.0-beta.f1037e1 → 7.0.0

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 (422) hide show
  1. package/.eslintrc.cjs +1 -3
  2. package/README.md +4 -4
  3. package/dist/Auth.js +12 -2
  4. package/dist/Command.js +3 -3
  5. package/dist/GlobalOptions.js +1 -7
  6. package/dist/cli/Cli.js +24 -7
  7. package/dist/m365/aad/commands/app/app-add.js +8 -8
  8. package/dist/m365/aad/commands/app/app-get.js +4 -1
  9. package/dist/m365/aad/commands/app/app-remove.js +3 -1
  10. package/dist/m365/aad/commands/app/app-role-add.js +9 -6
  11. package/dist/m365/aad/commands/app/app-role-list.js +4 -1
  12. package/dist/m365/aad/commands/app/app-role-remove.js +5 -2
  13. package/dist/m365/aad/commands/app/app-set.js +13 -10
  14. package/dist/m365/aad/commands/approleassignment/approleassignment-add.js +11 -6
  15. package/dist/m365/aad/commands/approleassignment/approleassignment-remove.js +4 -4
  16. package/dist/m365/aad/commands/group/group-get.js +4 -4
  17. package/dist/m365/aad/commands/group/group-list.js +1 -23
  18. package/dist/m365/aad/commands/group/group-remove.js +98 -0
  19. package/dist/m365/aad/commands/{o365group/o365group-add.js → m365group/m365group-add.js} +38 -29
  20. package/dist/m365/aad/commands/{o365group/o365group-conversation-list.js → m365group/m365group-conversation-list.js} +15 -10
  21. package/dist/m365/aad/commands/{o365group/o365group-conversation-post-list.js → m365group/m365group-conversation-post-list.js} +18 -14
  22. package/dist/m365/aad/commands/{o365group/o365group-get.js → m365group/m365group-get.js} +14 -10
  23. package/dist/m365/aad/commands/{o365group/o365group-list.js → m365group/m365group-list.js} +13 -28
  24. package/dist/m365/aad/commands/{o365group/o365group-recyclebinitem-clear.js → m365group/m365group-recyclebinitem-clear.js} +15 -15
  25. package/dist/m365/aad/commands/{o365group/o365group-recyclebinitem-list.js → m365group/m365group-recyclebinitem-list.js} +10 -10
  26. package/dist/m365/aad/commands/{o365group/o365group-recyclebinitem-remove.js → m365group/m365group-recyclebinitem-remove.js} +17 -15
  27. package/dist/m365/aad/commands/{o365group/o365group-recyclebinitem-restore.js → m365group/m365group-recyclebinitem-restore.js} +18 -15
  28. package/dist/m365/aad/commands/{o365group/o365group-remove.js → m365group/m365group-remove.js} +17 -12
  29. package/dist/m365/aad/commands/{o365group/o365group-renew.js → m365group/m365group-renew.js} +15 -10
  30. package/dist/m365/aad/commands/{o365group/o365group-report-activitycounts.js → m365group/m365group-report-activitycounts.js} +4 -4
  31. package/dist/m365/aad/commands/{o365group/o365group-report-activitydetail.js → m365group/m365group-report-activitydetail.js} +4 -4
  32. package/dist/m365/aad/commands/{o365group/o365group-report-activityfilecounts.js → m365group/m365group-report-activityfilecounts.js} +4 -4
  33. package/dist/m365/aad/commands/{o365group/o365group-report-activitygroupcounts.js → m365group/m365group-report-activitygroupcounts.js} +4 -4
  34. package/dist/m365/aad/commands/{o365group/o365group-report-activitystorage.js → m365group/m365group-report-activitystorage.js} +4 -4
  35. package/dist/m365/aad/commands/{o365group/o365group-set.js → m365group/m365group-set.js} +22 -17
  36. package/dist/m365/aad/commands/{o365group/o365group-teamify.js → m365group/m365group-teamify.js} +28 -20
  37. package/dist/m365/aad/commands/{o365group/o365group-user-add.js → m365group/m365group-user-add.js} +19 -14
  38. package/dist/m365/aad/commands/{o365group/o365group-user-list.js → m365group/m365group-user-list.js} +17 -12
  39. package/dist/m365/aad/commands/{o365group/o365group-user-remove.js → m365group/m365group-user-remove.js} +19 -14
  40. package/dist/m365/aad/commands/{o365group/o365group-user-set.js → m365group/m365group-user-set.js} +20 -15
  41. package/dist/m365/aad/commands/policy/policy-list.js +5 -5
  42. package/dist/m365/aad/commands/sp/sp-add.js +4 -1
  43. package/dist/m365/aad/commands/sp/sp-get.js +4 -1
  44. package/dist/m365/aad/commands/user/user-get.js +7 -2
  45. package/dist/m365/aad/commands.js +23 -22
  46. package/dist/m365/booking/commands/business/business-get.js +4 -1
  47. package/dist/m365/cli/commands/cli-issue.js +5 -5
  48. package/dist/m365/cli/commands/config/config-get.js +5 -5
  49. package/dist/m365/cli/commands/config/config-list.js +16 -0
  50. package/dist/m365/cli/commands/config/config-reset.js +5 -5
  51. package/dist/m365/cli/commands/config/config-set.js +5 -5
  52. package/dist/m365/cli/commands.js +1 -0
  53. package/dist/m365/commands/login.js +7 -7
  54. package/dist/m365/commands/request.js +1 -1
  55. package/dist/m365/flow/commands/flow-export.js +13 -13
  56. package/dist/m365/flow/commands/owner/owner-ensure.js +5 -5
  57. package/dist/m365/graph/commands/subscription/subscription-add.js +5 -5
  58. package/dist/m365/outlook/commands/message/message-list.js +4 -2
  59. package/dist/m365/outlook/commands/message/message-move.js +4 -2
  60. package/dist/m365/pa/commands/app/app-export.js +7 -7
  61. package/dist/m365/pa/commands/app/app-owner-set.js +5 -5
  62. package/dist/m365/pa/commands/app/app-permission-ensure.js +162 -0
  63. package/dist/m365/pa/commands/app/app-permission-list.js +2 -2
  64. package/dist/m365/pa/commands/app/app-permission-remove.js +153 -0
  65. package/dist/m365/pa/commands/connector/connector-export.js +5 -5
  66. package/dist/m365/pa/commands.js +3 -4
  67. package/dist/m365/planner/commands/bucket/bucket-add.js +6 -3
  68. package/dist/m365/planner/commands/bucket/bucket-get.js +11 -4
  69. package/dist/m365/planner/commands/bucket/bucket-list.js +6 -3
  70. package/dist/m365/planner/commands/bucket/bucket-remove.js +9 -4
  71. package/dist/m365/planner/commands/bucket/bucket-set.js +10 -4
  72. package/dist/m365/planner/commands/plan/plan-add.js +4 -1
  73. package/dist/m365/planner/commands/plan/plan-get.js +5 -3
  74. package/dist/m365/planner/commands/plan/plan-list.js +8 -6
  75. package/dist/m365/planner/commands/plan/plan-remove.js +4 -1
  76. package/dist/m365/planner/commands/plan/plan-set.js +6 -3
  77. package/dist/m365/planner/commands/roster/roster-get.js +4 -1
  78. package/dist/m365/planner/commands/roster/roster-member-add.js +4 -1
  79. package/dist/m365/planner/commands/roster/roster-member-get.js +4 -1
  80. package/dist/m365/planner/commands/roster/roster-member-list.js +4 -1
  81. package/dist/m365/planner/commands/roster/roster-member-remove.js +4 -1
  82. package/dist/m365/planner/commands/roster/roster-plan-list.js +4 -1
  83. package/dist/m365/planner/commands/roster/roster-remove.js +4 -1
  84. package/dist/m365/planner/commands/task/task-add.js +21 -12
  85. package/dist/m365/planner/commands/task/task-checklistitem-add.js +4 -1
  86. package/dist/m365/planner/commands/task/task-checklistitem-list.js +4 -1
  87. package/dist/m365/planner/commands/task/task-checklistitem-remove.js +4 -1
  88. package/dist/m365/planner/commands/task/task-get.js +46 -28
  89. package/dist/m365/planner/commands/task/task-list.js +34 -19
  90. package/dist/m365/planner/commands/task/task-reference-add.js +4 -1
  91. package/dist/m365/planner/commands/task/task-reference-list.js +4 -1
  92. package/dist/m365/planner/commands/task/task-reference-remove.js +4 -1
  93. package/dist/m365/planner/commands/task/task-remove.js +49 -38
  94. package/dist/m365/planner/commands/task/task-set.js +38 -23
  95. package/dist/m365/pp/commands/aibuildermodel/aibuildermodel-get.js +4 -1
  96. package/dist/m365/pp/commands/card/card-get.js +3 -5
  97. package/dist/m365/pp/commands/chatbot/chatbot-get.js +3 -1
  98. package/dist/m365/pp/commands/chatbot/chatbot-list.js +2 -2
  99. package/dist/m365/pp/commands/managementapp/managementapp-add.js +4 -1
  100. package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +14 -14
  101. package/dist/m365/search/commands/externalconnection/externalconnection-remove.js +3 -1
  102. package/dist/m365/spfx/commands/package/package-generate.js +15 -15
  103. package/dist/m365/spfx/commands/project/DeployWorkflow.js +55 -0
  104. package/dist/m365/spfx/commands/project/project-doctor/{doctor-1.18.0-beta.1.js → doctor-1.18.0.js} +2 -2
  105. package/dist/m365/spfx/commands/project/project-doctor.js +9 -9
  106. package/dist/m365/spfx/commands/project/project-externalize/rules/PnPJsRule.js +2 -2
  107. package/dist/m365/spfx/commands/project/project-github-workflow-add.js +157 -0
  108. package/dist/m365/spfx/commands/project/project-github-workflow-model.js +2 -0
  109. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN001022_DEP_office_ui_fabric_react.js +1 -1
  110. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002028_DEVDEP_microsoft_rush_stack_compiler_4_7.js +13 -0
  111. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.15.2.js +1 -1
  112. package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.18.0-beta.1.js → upgrade-1.18.0.js} +35 -27
  113. package/dist/m365/spfx/commands/project/project-upgrade.js +26 -28
  114. package/dist/m365/spfx/commands/spfx-doctor.js +76 -106
  115. package/dist/m365/spfx/commands.js +1 -0
  116. package/dist/m365/spo/commands/app/SpoAppBaseCommand.js +27 -26
  117. package/dist/m365/spo/commands/app/app-add.js +9 -9
  118. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-add.js +5 -5
  119. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-get.js +5 -3
  120. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-list.js +5 -5
  121. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-remove.js +2 -2
  122. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-set.js +3 -2
  123. package/dist/m365/spo/commands/commandset/commandset-add.js +11 -11
  124. package/dist/m365/spo/commands/commandset/commandset-get.js +12 -10
  125. package/dist/m365/spo/commands/commandset/commandset-list.js +5 -5
  126. package/dist/m365/spo/commands/commandset/commandset-remove.js +7 -6
  127. package/dist/m365/spo/commands/commandset/commandset-set.js +14 -12
  128. package/dist/m365/spo/commands/customaction/customaction-get.js +5 -2
  129. package/dist/m365/spo/commands/customaction/customaction-remove.js +3 -1
  130. package/dist/m365/spo/commands/eventreceiver/eventreceiver-get.js +3 -1
  131. package/dist/m365/spo/commands/file/file-add.js +13 -13
  132. package/dist/m365/spo/commands/file/file-checkin.js +1 -1
  133. package/dist/m365/spo/commands/file/file-checkout.js +1 -1
  134. package/dist/m365/spo/commands/file/file-copy.js +36 -4
  135. package/dist/m365/spo/commands/file/file-get.js +11 -8
  136. package/dist/m365/spo/commands/file/file-list.js +4 -4
  137. package/dist/m365/spo/commands/file/file-move.js +74 -98
  138. package/dist/m365/spo/commands/file/file-remove.js +8 -8
  139. package/dist/m365/spo/commands/file/file-rename.js +2 -2
  140. package/dist/m365/spo/commands/file/file-retentionlabel-ensure.js +1 -1
  141. package/dist/m365/spo/commands/file/file-retentionlabel-remove.js +1 -1
  142. package/dist/m365/spo/commands/file/file-roleassignment-add.js +1 -1
  143. package/dist/m365/spo/commands/file/file-roleassignment-remove.js +1 -1
  144. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +1 -1
  145. package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +1 -1
  146. package/dist/m365/spo/commands/file/file-sharinglink-add.js +8 -8
  147. package/dist/m365/spo/commands/file/file-sharinglink-list.js +5 -5
  148. package/dist/m365/spo/commands/file/file-version-clear.js +3 -3
  149. package/dist/m365/spo/commands/file/file-version-get.js +3 -3
  150. package/dist/m365/spo/commands/file/file-version-list.js +3 -3
  151. package/dist/m365/spo/commands/file/file-version-remove.js +3 -3
  152. package/dist/m365/spo/commands/file/file-version-restore.js +3 -3
  153. package/dist/m365/spo/commands/folder/folder-add.js +2 -4
  154. package/dist/m365/spo/commands/folder/folder-copy.js +89 -45
  155. package/dist/m365/spo/commands/folder/folder-get.js +1 -1
  156. package/dist/m365/spo/commands/folder/folder-list.js +2 -2
  157. package/dist/m365/spo/commands/folder/folder-move.js +89 -47
  158. package/dist/m365/spo/commands/folder/folder-remove.js +7 -4
  159. package/dist/m365/spo/commands/folder/folder-rename.js +13 -17
  160. package/dist/m365/spo/commands/folder/folder-retentionlabel-ensure.js +1 -1
  161. package/dist/m365/spo/commands/folder/folder-retentionlabel-remove.js +1 -1
  162. package/dist/m365/spo/commands/folder/folder-roleassignment-add.js +1 -1
  163. package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +1 -1
  164. package/dist/m365/spo/commands/folder/folder-roleinheritance-break.js +1 -1
  165. package/dist/m365/spo/commands/folder/folder-roleinheritance-reset.js +1 -1
  166. package/dist/m365/spo/commands/group/group-list.js +0 -1
  167. package/dist/m365/spo/commands/group/group-member-add.js +24 -24
  168. package/dist/m365/spo/commands/hubsite/hubsite-connect.js +7 -4
  169. package/dist/m365/spo/commands/hubsite/hubsite-disconnect.js +4 -1
  170. package/dist/m365/spo/commands/hubsite/hubsite-get.js +3 -1
  171. package/dist/m365/spo/commands/list/list-add.js +4 -4
  172. package/dist/m365/spo/commands/list/list-retentionlabel-ensure.js +2 -24
  173. package/dist/m365/spo/commands/list/list-set.js +4 -4
  174. package/dist/m365/spo/commands/listitem/listitem-add.js +1 -0
  175. package/dist/m365/spo/commands/listitem/listitem-attachment-add.js +127 -0
  176. package/dist/m365/spo/commands/listitem/listitem-attachment-get.js +97 -0
  177. package/dist/m365/spo/commands/listitem/listitem-attachment-remove.js +121 -0
  178. package/dist/m365/spo/commands/listitem/listitem-attachment-set.js +115 -0
  179. package/dist/m365/spo/commands/listitem/listitem-set.js +3 -2
  180. package/dist/m365/spo/commands/navigation/navigation-node-set.js +2 -2
  181. package/dist/m365/spo/commands/orgassetslibrary/orgassetslibrary-add.js +34 -5
  182. package/dist/m365/spo/commands/page/clientsidepages.js +19 -81
  183. package/dist/m365/spo/commands/page/page-get.js +1 -0
  184. package/dist/m365/spo/commands/page/page-list.js +4 -3
  185. package/dist/m365/spo/commands/page/page-section-add.js +56 -21
  186. package/dist/m365/spo/commands/page/page-set.js +13 -2
  187. package/dist/m365/spo/commands/propertybag/propertybag-base.js +63 -59
  188. package/dist/m365/spo/commands/propertybag/propertybag-remove.js +28 -31
  189. package/dist/m365/spo/commands/serviceprincipal/serviceprincipal-set.js +30 -32
  190. package/dist/m365/spo/commands/site/FlowsPolicy.js +7 -0
  191. package/dist/m365/spo/commands/site/site-add.js +114 -161
  192. package/dist/m365/spo/commands/site/site-apppermission-add.js +15 -18
  193. package/dist/m365/spo/commands/site/site-apppermission-remove.js +34 -38
  194. package/dist/m365/spo/commands/site/site-apppermission-set.js +11 -14
  195. package/dist/m365/spo/commands/site/site-commsite-enable.js +34 -5
  196. package/dist/m365/spo/commands/site/site-ensure.js +14 -67
  197. package/dist/m365/spo/commands/site/site-hubsite-disconnect.js +22 -22
  198. package/dist/m365/spo/commands/site/site-list.js +25 -43
  199. package/dist/m365/spo/commands/site/site-recyclebinitem-list.js +6 -6
  200. package/dist/m365/spo/commands/site/site-remove.js +166 -210
  201. package/dist/m365/spo/commands/site/site-set.js +178 -199
  202. package/dist/m365/spo/commands/tenant/tenant-appcatalog-add.js +1 -1
  203. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-get.js +12 -7
  204. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-list.js +3 -2
  205. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-remove.js +2 -1
  206. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-set.js +3 -2
  207. package/dist/m365/spo/commands/tenant/tenant-commandset-add.js +8 -8
  208. package/dist/m365/spo/commands/tenant/tenant-commandset-get.js +8 -3
  209. package/dist/m365/spo/commands/tenant/tenant-commandset-list.js +3 -2
  210. package/dist/m365/spo/commands/tenant/tenant-commandset-remove.js +3 -1
  211. package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +8 -8
  212. package/dist/m365/spo/commands/tenant/tenant-settings-set.js +4 -4
  213. package/dist/m365/spo/commands/term/term-get.js +6 -6
  214. package/dist/m365/spo/commands/theme/theme-list.js +1 -9
  215. package/dist/m365/spo/commands/theme/theme-remove.js +24 -24
  216. package/dist/m365/spo/commands/theme/theme-set.js +0 -1
  217. package/dist/m365/spo/commands/user/user-get.js +10 -10
  218. package/dist/m365/spo/commands/user/user-remove.js +27 -27
  219. package/dist/m365/spo/commands/web/web-reindex.js +35 -42
  220. package/dist/m365/spo/commands/web/web-remove.js +21 -21
  221. package/dist/m365/spo/commands/web/web-roleassignment-add.js +16 -31
  222. package/dist/m365/spo/commands/web/web-roleassignment-remove.js +33 -44
  223. package/dist/m365/spo/commands/web/web-roleinheritance-break.js +18 -18
  224. package/dist/m365/spo/commands/web/web-roleinheritance-reset.js +19 -19
  225. package/dist/m365/spo/commands/web/web-set.js +5 -5
  226. package/dist/m365/spo/commands.js +4 -0
  227. package/dist/m365/teams/commands/app/app-list.js +5 -5
  228. package/dist/m365/teams/commands/app/app-remove.js +49 -15
  229. package/dist/m365/teams/commands/channel/channel-add.js +5 -1
  230. package/dist/m365/teams/commands/channel/channel-member-add.js +12 -10
  231. package/dist/m365/teams/commands/channel/channel-member-remove.js +3 -1
  232. package/dist/m365/teams/commands/channel/channel-member-set.js +4 -1
  233. package/dist/m365/teams/commands/chat/chat-get.js +7 -10
  234. package/dist/m365/teams/commands/chat/chat-member-add.js +5 -5
  235. package/dist/m365/teams/commands/chat/chat-message-send.js +8 -10
  236. package/dist/m365/teams/commands/funsettings/funsettings-set.js +4 -4
  237. package/dist/m365/teams/commands/guestsettings/guestsettings-set.js +4 -4
  238. package/dist/m365/teams/commands/meeting/meeting-list.js +101 -51
  239. package/dist/m365/teams/commands/membersettings/membersettings-set.js +4 -4
  240. package/dist/m365/teams/commands/messagingsettings/messagingsettings-set.js +5 -5
  241. package/dist/m365/teams/commands/team/team-clone.js +5 -10
  242. package/dist/m365/teams/commands/team/team-list.js +94 -30
  243. package/dist/m365/teams/commands/team/team-set.js +3 -3
  244. package/dist/m365/tenant/commands/info/info-get.js +83 -0
  245. package/dist/m365/tenant/commands.js +1 -0
  246. package/dist/m365/todo/commands/task/task-add.js +6 -6
  247. package/dist/m365/yammer/commands/message/message-like-set.js +27 -28
  248. package/dist/m365/yammer/commands/message/message-list.js +67 -86
  249. package/dist/m365/yammer/commands/message/message-remove.js +18 -18
  250. package/dist/m365/yammer/commands/yammer-search.js +58 -74
  251. package/dist/utils/aadGroup.js +39 -3
  252. package/dist/utils/formatting.js +7 -0
  253. package/dist/utils/fsUtil.js +5 -0
  254. package/dist/utils/planner.js +4 -3
  255. package/dist/utils/powerPlatform.js +1 -1
  256. package/dist/utils/spo.js +595 -54
  257. package/dist/utils/validation.js +0 -3
  258. package/docs/docs/_clisettings.mdx +2 -2
  259. package/docs/docs/cmd/_global.mdx +1 -1
  260. package/docs/docs/cmd/aad/app/app-set.mdx +15 -15
  261. package/docs/docs/cmd/aad/approleassignment/approleassignment-add.mdx +9 -9
  262. package/docs/docs/cmd/aad/approleassignment/approleassignment-remove.mdx +10 -10
  263. package/docs/docs/cmd/aad/group/group-get.mdx +5 -5
  264. package/docs/docs/cmd/aad/group/group-list.mdx +0 -11
  265. package/docs/docs/cmd/aad/group/group-remove.mdx +44 -0
  266. package/docs/docs/cmd/aad/{o365group/o365group-add.mdx → m365group/m365group-add.mdx} +25 -15
  267. package/docs/docs/cmd/aad/{o365group/o365group-conversation-list.mdx → m365group/m365group-conversation-list.mdx} +4 -4
  268. package/docs/docs/cmd/aad/{o365group/o365group-conversation-post-list.mdx → m365group/m365group-conversation-post-list.mdx} +8 -8
  269. package/docs/docs/cmd/aad/{o365group/o365group-get.mdx → m365group/m365group-get.mdx} +6 -6
  270. package/docs/docs/cmd/aad/{o365group/o365group-list.mdx → m365group/m365group-list.mdx} +12 -29
  271. package/docs/docs/cmd/aad/{o365group/o365group-recyclebinitem-clear.mdx → m365group/m365group-recyclebinitem-clear.mdx} +5 -5
  272. package/docs/docs/cmd/aad/{o365group/o365group-recyclebinitem-list.mdx → m365group/m365group-recyclebinitem-list.mdx} +8 -8
  273. package/docs/docs/cmd/aad/{o365group/o365group-recyclebinitem-remove.mdx → m365group/m365group-recyclebinitem-remove.mdx} +6 -6
  274. package/docs/docs/cmd/aad/{o365group/o365group-recyclebinitem-restore.mdx → m365group/m365group-recyclebinitem-restore.mdx} +6 -6
  275. package/docs/docs/cmd/aad/{o365group/o365group-remove.mdx → m365group/m365group-remove.mdx} +6 -6
  276. package/docs/docs/cmd/aad/{o365group/o365group-renew.mdx → m365group/m365group-renew.mdx} +4 -4
  277. package/docs/docs/cmd/aad/{o365group/o365group-report-activitycounts.mdx → m365group/m365group-report-activitycounts.mdx} +6 -6
  278. package/docs/docs/cmd/aad/{o365group/o365group-report-activitydetail.mdx → m365group/m365group-report-activitydetail.mdx} +7 -7
  279. package/docs/docs/cmd/aad/{o365group/o365group-report-activityfilecounts.mdx → m365group/m365group-report-activityfilecounts.mdx} +6 -6
  280. package/docs/docs/cmd/aad/{o365group/o365group-report-activitygroupcounts.mdx → m365group/m365group-report-activitygroupcounts.mdx} +6 -6
  281. package/docs/docs/cmd/aad/{o365group/o365group-report-activitystorage.mdx → m365group/m365group-report-activitystorage.mdx} +6 -6
  282. package/docs/docs/cmd/aad/{o365group/o365group-set.mdx → m365group/m365group-set.mdx} +8 -8
  283. package/docs/docs/cmd/aad/{o365group/o365group-teamify.mdx → m365group/m365group-teamify.mdx} +5 -5
  284. package/docs/docs/cmd/aad/{o365group/o365group-user-add.mdx → m365group/m365group-user-add.mdx} +5 -5
  285. package/docs/docs/cmd/aad/{o365group/o365group-user-list.mdx → m365group/m365group-user-list.mdx} +7 -7
  286. package/docs/docs/cmd/aad/{o365group/o365group-user-remove.mdx → m365group/m365group-user-remove.mdx} +5 -5
  287. package/docs/docs/cmd/aad/{o365group/o365group-user-set.mdx → m365group/m365group-user-set.mdx} +5 -5
  288. package/docs/docs/cmd/aad/policy/policy-list.mdx +5 -5
  289. package/docs/docs/cmd/aad/user/user-set.mdx +1 -1
  290. package/docs/docs/cmd/cli/config/config-list.mdx +78 -0
  291. package/docs/docs/cmd/flow/flow-enable.mdx +2 -2
  292. package/docs/docs/cmd/flow/flow-export.mdx +11 -11
  293. package/docs/docs/cmd/graph/subscription/subscription-add.mdx +10 -10
  294. package/docs/docs/cmd/login.mdx +6 -0
  295. package/docs/docs/cmd/pa/app/app-export.mdx +5 -5
  296. package/docs/docs/cmd/pa/app/app-permission-ensure.mdx +85 -0
  297. package/docs/docs/cmd/pa/app/app-permission-remove.mdx +74 -0
  298. package/docs/docs/cmd/pa/connector/connector-export.mdx +3 -3
  299. package/docs/docs/cmd/planner/plan/plan-add.mdx +1 -1
  300. package/docs/docs/cmd/planner/task/task-add.mdx +22 -7
  301. package/docs/docs/cmd/planner/task/task-get.mdx +13 -4
  302. package/docs/docs/cmd/planner/task/task-list.mdx +22 -7
  303. package/docs/docs/cmd/planner/task/task-remove.mdx +25 -8
  304. package/docs/docs/cmd/planner/task/task-set.mdx +22 -7
  305. package/docs/docs/cmd/pp/chatbot/chatbot-list.mdx +4 -4
  306. package/docs/docs/cmd/pp/dataverse/dataverse-table-get.mdx +2 -2
  307. package/docs/docs/cmd/pp/dataverse/dataverse-table-list.mdx +2 -2
  308. package/docs/docs/cmd/pp/dataverse/dataverse-table-remove.mdx +3 -3
  309. package/docs/docs/cmd/pp/solution/solution-publisher-get.mdx +2 -2
  310. package/docs/docs/cmd/pp/solution/solution-publisher-remove.mdx +2 -2
  311. package/docs/docs/cmd/spfx/project/project-github-workflow-add.mdx +94 -0
  312. package/docs/docs/cmd/spfx/project/project-upgrade.mdx +1 -1
  313. package/docs/docs/cmd/spo/file/file-add.mdx +1 -1
  314. package/docs/docs/cmd/spo/file/file-checkin.mdx +1 -1
  315. package/docs/docs/cmd/spo/file/file-checkout-undo.mdx +1 -9
  316. package/docs/docs/cmd/spo/file/file-checkout.mdx +1 -1
  317. package/docs/docs/cmd/spo/file/file-copy.mdx +20 -16
  318. package/docs/docs/cmd/spo/file/file-get.mdx +3 -3
  319. package/docs/docs/cmd/spo/file/file-list.mdx +2 -2
  320. package/docs/docs/cmd/spo/file/file-move.mdx +36 -18
  321. package/docs/docs/cmd/spo/file/file-remove.mdx +10 -10
  322. package/docs/docs/cmd/spo/file/file-rename.mdx +3 -3
  323. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +2 -2
  324. package/docs/docs/cmd/spo/file/file-retentionlabel-remove.mdx +3 -3
  325. package/docs/docs/cmd/spo/file/file-roleassignment-add.mdx +1 -1
  326. package/docs/docs/cmd/spo/file/file-roleassignment-remove.mdx +1 -1
  327. package/docs/docs/cmd/spo/file/file-roleinheritance-break.mdx +1 -1
  328. package/docs/docs/cmd/spo/file/file-roleinheritance-reset.mdx +1 -1
  329. package/docs/docs/cmd/spo/file/file-sharinginfo-get.mdx +1 -1
  330. package/docs/docs/cmd/spo/file/file-sharinglink-add.mdx +1 -1
  331. package/docs/docs/cmd/spo/file/file-sharinglink-clear.mdx +1 -1
  332. package/docs/docs/cmd/spo/file/file-sharinglink-get.mdx +1 -1
  333. package/docs/docs/cmd/spo/file/file-sharinglink-list.mdx +1 -1
  334. package/docs/docs/cmd/spo/file/file-sharinglink-remove.mdx +1 -1
  335. package/docs/docs/cmd/spo/file/file-sharinglink-set.mdx +1 -1
  336. package/docs/docs/cmd/spo/file/file-version-clear.mdx +3 -3
  337. package/docs/docs/cmd/spo/file/file-version-get.mdx +3 -3
  338. package/docs/docs/cmd/spo/file/file-version-list.mdx +3 -3
  339. package/docs/docs/cmd/spo/file/file-version-remove.mdx +3 -3
  340. package/docs/docs/cmd/spo/file/file-version-restore.mdx +3 -3
  341. package/docs/docs/cmd/spo/folder/folder-add.mdx +76 -1
  342. package/docs/docs/cmd/spo/folder/folder-copy.mdx +39 -12
  343. package/docs/docs/cmd/spo/folder/folder-get.mdx +1 -1
  344. package/docs/docs/cmd/spo/folder/folder-list.mdx +1 -1
  345. package/docs/docs/cmd/spo/folder/folder-move.mdx +40 -13
  346. package/docs/docs/cmd/spo/folder/folder-remove.mdx +1 -1
  347. package/docs/docs/cmd/spo/folder/folder-rename.mdx +5 -1
  348. package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.mdx +1 -1
  349. package/docs/docs/cmd/spo/folder/folder-retentionlabel-remove.mdx +1 -1
  350. package/docs/docs/cmd/spo/folder/folder-roleassignment-add.mdx +2 -2
  351. package/docs/docs/cmd/spo/folder/folder-roleassignment-remove.mdx +1 -1
  352. package/docs/docs/cmd/spo/folder/folder-roleinheritance-break.mdx +1 -1
  353. package/docs/docs/cmd/spo/folder/folder-roleinheritance-reset.mdx +1 -1
  354. package/docs/docs/cmd/spo/group/group-member-add.mdx +27 -27
  355. package/docs/docs/cmd/spo/list/list-contenttype-remove.mdx +1 -1
  356. package/docs/docs/cmd/spo/list/list-retentionlabel-ensure.mdx +2 -11
  357. package/docs/docs/cmd/spo/listitem/listitem-add.mdx +2 -5
  358. package/docs/docs/cmd/spo/listitem/listitem-attachment-add.mdx +110 -0
  359. package/docs/docs/cmd/spo/listitem/listitem-attachment-get.mdx +104 -0
  360. package/docs/docs/cmd/spo/listitem/listitem-attachment-list.mdx +1 -1
  361. package/docs/docs/cmd/spo/listitem/listitem-attachment-remove.mdx +58 -0
  362. package/docs/docs/cmd/spo/listitem/listitem-attachment-set.mdx +58 -0
  363. package/docs/docs/cmd/spo/listitem/listitem-set.mdx +2 -5
  364. package/docs/docs/cmd/spo/orgassetslibrary/orgassetslibrary-add.mdx +14 -1
  365. package/docs/docs/cmd/spo/page/page-get.mdx +0 -1
  366. package/docs/docs/cmd/spo/page/page-list.mdx +0 -1
  367. package/docs/docs/cmd/spo/page/page-section-add.mdx +25 -1
  368. package/docs/docs/cmd/spo/page/page-set.mdx +23 -0
  369. package/docs/docs/cmd/spo/site/site-add.mdx +1 -1
  370. package/docs/docs/cmd/spo/site/site-commsite-enable.mdx +11 -2
  371. package/docs/docs/cmd/spo/site/site-ensure.mdx +1 -1
  372. package/docs/docs/cmd/spo/site/site-list.mdx +3 -78
  373. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-add.mdx +1 -1
  374. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-get.mdx +2 -2
  375. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-list.mdx +3 -5
  376. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-remove.mdx +1 -1
  377. package/docs/docs/cmd/spo/tenant/tenant-commandset-add.mdx +1 -1
  378. package/docs/docs/cmd/spo/tenant/tenant-commandset-list.mdx +2 -4
  379. package/docs/docs/cmd/spo/tenant/tenant-commandset-remove.mdx +1 -1
  380. package/docs/docs/cmd/spo/tenant/tenant-commandset-set.mdx +1 -1
  381. package/docs/docs/cmd/spo/user/user-get.mdx +8 -8
  382. package/docs/docs/cmd/teams/app/app-remove.mdx +9 -6
  383. package/docs/docs/cmd/teams/channel/channel-member-add.mdx +4 -4
  384. package/docs/docs/cmd/teams/meeting/meeting-list.mdx +135 -92
  385. package/docs/docs/cmd/teams/team/team-add.mdx +1 -1
  386. package/docs/docs/cmd/teams/team/team-clone.mdx +3 -3
  387. package/docs/docs/cmd/teams/team/team-list.mdx +47 -22
  388. package/docs/docs/cmd/tenant/info/info-get.mdx +101 -0
  389. package/docs/docs/cmd/yammer/network/network-list.mdx +1 -1
  390. package/npm-shrinkwrap.json +310 -1433
  391. package/package.json +23 -28
  392. package/dist/m365/pa/cds-project-mutator.js +0 -91
  393. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/dataset-template/generated/ManifestTypes.d.ts +0 -11
  394. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/dataset-template/template_ControlManifest.Input.xml +0 -31
  395. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/dataset-template/template_index.ts +0 -51
  396. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/field-template/generated/ManifestTypes.d.ts +0 -12
  397. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/field-template/template_ControlManifest.Input.xml +0 -37
  398. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/field-template/template_index.ts +0 -48
  399. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/index.ts +0 -0
  400. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/virtual-dataset-template/template_ControlManifest.Input.xml +0 -31
  401. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/virtual-dataset-template/template_index.tsx +0 -58
  402. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/virtual-field-template/template_ControlManifest.Input.xml +0 -37
  403. package/dist/m365/pa/commands/pcf/pcf-init/assets/control/virtual-field-template/template_index.tsx +0 -55
  404. package/dist/m365/pa/commands/pcf/pcf-init/assets/package.json +0 -19
  405. package/dist/m365/pa/commands/pcf/pcf-init/assets/pcfconfig.json +0 -3
  406. package/dist/m365/pa/commands/pcf/pcf-init/assets/template_.gitignore +0 -14
  407. package/dist/m365/pa/commands/pcf/pcf-init/assets/template_pcfprojecttype.pcfproj +0 -45
  408. package/dist/m365/pa/commands/pcf/pcf-init/pcf-init-variables.js +0 -2
  409. package/dist/m365/pa/commands/pcf/pcf-init.js +0 -120
  410. package/dist/m365/pa/commands/solution/solution-init/assets/Other/Customizations.xml +0 -18
  411. package/dist/m365/pa/commands/solution/solution-init/assets/Other/Relationships.xml +0 -2
  412. package/dist/m365/pa/commands/solution/solution-init/assets/Other/template_Solution.xml +0 -94
  413. package/dist/m365/pa/commands/solution/solution-init/assets/template_.gitignore +0 -2
  414. package/dist/m365/pa/commands/solution/solution-init/assets/template_solutionprojecttype.cdsproj +0 -44
  415. package/dist/m365/pa/commands/solution/solution-init/solution-init-variables.js +0 -2
  416. package/dist/m365/pa/commands/solution/solution-init.js +0 -126
  417. package/dist/m365/pa/commands/solution/solution-reference-add.js +0 -88
  418. package/dist/m365/pa/template-instantiator.js +0 -57
  419. package/docs/docs/cmd/pa/pcf/pcf-init.mdx +0 -56
  420. package/docs/docs/cmd/pa/solution/solution-init.mdx +0 -46
  421. package/docs/docs/cmd/pa/solution/solution-reference-add.mdx +0 -42
  422. /package/dist/m365/aad/commands/{o365group → m365group}/GroupExtended.js +0 -0
@@ -3,27 +3,27 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
3
3
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
4
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
5
  };
6
- var _AadO365GroupRecycleBinItemClearCommand_instances, _AadO365GroupRecycleBinItemClearCommand_initTelemetry, _AadO365GroupRecycleBinItemClearCommand_initOptions;
6
+ var _AadM365GroupRecycleBinItemClearCommand_instances, _AadM365GroupRecycleBinItemClearCommand_initTelemetry, _AadM365GroupRecycleBinItemClearCommand_initOptions;
7
7
  import { Cli } from '../../../../cli/Cli.js';
8
8
  import request from '../../../../request.js';
9
9
  import { odata } from '../../../../utils/odata.js';
10
10
  import GraphCommand from '../../../base/GraphCommand.js';
11
11
  import commands from '../../commands.js';
12
- class AadO365GroupRecycleBinItemClearCommand extends GraphCommand {
12
+ class AadM365GroupRecycleBinItemClearCommand extends GraphCommand {
13
13
  get name() {
14
- return commands.O365GROUP_RECYCLEBINITEM_CLEAR;
14
+ return commands.M365GROUP_RECYCLEBINITEM_CLEAR;
15
15
  }
16
16
  get description() {
17
- return 'Clears all O365 Groups from recycle bin.';
17
+ return 'Clears all M365 Groups from recycle bin.';
18
18
  }
19
19
  constructor() {
20
20
  super();
21
- _AadO365GroupRecycleBinItemClearCommand_instances.add(this);
22
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemClearCommand_instances, "m", _AadO365GroupRecycleBinItemClearCommand_initTelemetry).call(this);
23
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemClearCommand_instances, "m", _AadO365GroupRecycleBinItemClearCommand_initOptions).call(this);
21
+ _AadM365GroupRecycleBinItemClearCommand_instances.add(this);
22
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemClearCommand_instances, "m", _AadM365GroupRecycleBinItemClearCommand_initTelemetry).call(this);
23
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemClearCommand_instances, "m", _AadM365GroupRecycleBinItemClearCommand_initOptions).call(this);
24
24
  }
25
25
  async commandAction(logger, args) {
26
- const clearO365GroupRecycleBinItems = async () => {
26
+ const clearM365GroupRecycleBinItems = async () => {
27
27
  try {
28
28
  await this.processRecycleBinItemsClear();
29
29
  }
@@ -32,17 +32,17 @@ class AadO365GroupRecycleBinItemClearCommand extends GraphCommand {
32
32
  }
33
33
  };
34
34
  if (args.options.force) {
35
- await clearO365GroupRecycleBinItems();
35
+ await clearM365GroupRecycleBinItems();
36
36
  }
37
37
  else {
38
38
  const response = await Cli.prompt({
39
39
  type: 'confirm',
40
40
  name: 'continue',
41
41
  default: false,
42
- message: `Are you sure you want to clear all O365 Groups from recycle bin ?`
42
+ message: `Are you sure you want to clear all M365 Groups from recycle bin ?`
43
43
  });
44
44
  if (response.continue) {
45
- await clearO365GroupRecycleBinItems();
45
+ await clearM365GroupRecycleBinItems();
46
46
  }
47
47
  }
48
48
  }
@@ -67,16 +67,16 @@ class AadO365GroupRecycleBinItemClearCommand extends GraphCommand {
67
67
  await Promise.all(deletePromises);
68
68
  }
69
69
  }
70
- _AadO365GroupRecycleBinItemClearCommand_instances = new WeakSet(), _AadO365GroupRecycleBinItemClearCommand_initTelemetry = function _AadO365GroupRecycleBinItemClearCommand_initTelemetry() {
70
+ _AadM365GroupRecycleBinItemClearCommand_instances = new WeakSet(), _AadM365GroupRecycleBinItemClearCommand_initTelemetry = function _AadM365GroupRecycleBinItemClearCommand_initTelemetry() {
71
71
  this.telemetry.push((args) => {
72
72
  Object.assign(this.telemetryProperties, {
73
73
  force: typeof args.options.force !== 'undefined'
74
74
  });
75
75
  });
76
- }, _AadO365GroupRecycleBinItemClearCommand_initOptions = function _AadO365GroupRecycleBinItemClearCommand_initOptions() {
76
+ }, _AadM365GroupRecycleBinItemClearCommand_initOptions = function _AadM365GroupRecycleBinItemClearCommand_initOptions() {
77
77
  this.options.unshift({
78
78
  option: '-f, --force'
79
79
  });
80
80
  };
81
- export default new AadO365GroupRecycleBinItemClearCommand();
82
- //# sourceMappingURL=o365group-recyclebinitem-clear.js.map
81
+ export default new AadM365GroupRecycleBinItemClearCommand();
82
+ //# sourceMappingURL=m365group-recyclebinitem-clear.js.map
@@ -3,23 +3,23 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
3
3
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
4
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
5
  };
6
- var _AadO365GroupRecycleBinItemListCommand_instances, _AadO365GroupRecycleBinItemListCommand_initTelemetry, _AadO365GroupRecycleBinItemListCommand_initOptions;
6
+ var _AadM365GroupRecycleBinItemListCommand_instances, _AadM365GroupRecycleBinItemListCommand_initTelemetry, _AadM365GroupRecycleBinItemListCommand_initOptions;
7
7
  import { formatting } from '../../../../utils/formatting.js';
8
8
  import { odata } from '../../../../utils/odata.js';
9
9
  import GraphCommand from '../../../base/GraphCommand.js';
10
10
  import commands from '../../commands.js';
11
- class AadO365GroupRecycleBinItemListCommand extends GraphCommand {
11
+ class AadM365GroupRecycleBinItemListCommand extends GraphCommand {
12
12
  get name() {
13
- return commands.O365GROUP_RECYCLEBINITEM_LIST;
13
+ return commands.M365GROUP_RECYCLEBINITEM_LIST;
14
14
  }
15
15
  get description() {
16
16
  return 'Lists Microsoft 365 Groups deleted in the current tenant';
17
17
  }
18
18
  constructor() {
19
19
  super();
20
- _AadO365GroupRecycleBinItemListCommand_instances.add(this);
21
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemListCommand_instances, "m", _AadO365GroupRecycleBinItemListCommand_initTelemetry).call(this);
22
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemListCommand_instances, "m", _AadO365GroupRecycleBinItemListCommand_initOptions).call(this);
20
+ _AadM365GroupRecycleBinItemListCommand_instances.add(this);
21
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemListCommand_instances, "m", _AadM365GroupRecycleBinItemListCommand_initTelemetry).call(this);
22
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemListCommand_instances, "m", _AadM365GroupRecycleBinItemListCommand_initOptions).call(this);
23
23
  }
24
24
  defaultProperties() {
25
25
  return ['id', 'displayName', 'mailNickname'];
@@ -39,19 +39,19 @@ class AadO365GroupRecycleBinItemListCommand extends GraphCommand {
39
39
  }
40
40
  }
41
41
  }
42
- _AadO365GroupRecycleBinItemListCommand_instances = new WeakSet(), _AadO365GroupRecycleBinItemListCommand_initTelemetry = function _AadO365GroupRecycleBinItemListCommand_initTelemetry() {
42
+ _AadM365GroupRecycleBinItemListCommand_instances = new WeakSet(), _AadM365GroupRecycleBinItemListCommand_initTelemetry = function _AadM365GroupRecycleBinItemListCommand_initTelemetry() {
43
43
  this.telemetry.push((args) => {
44
44
  Object.assign(this.telemetryProperties, {
45
45
  groupDisplayName: typeof args.options.groupDisplayName !== 'undefined',
46
46
  groupMailNickname: typeof args.options.groupMailNickname !== 'undefined'
47
47
  });
48
48
  });
49
- }, _AadO365GroupRecycleBinItemListCommand_initOptions = function _AadO365GroupRecycleBinItemListCommand_initOptions() {
49
+ }, _AadM365GroupRecycleBinItemListCommand_initOptions = function _AadM365GroupRecycleBinItemListCommand_initOptions() {
50
50
  this.options.unshift({
51
51
  option: '-d, --groupDisplayName [groupDisplayName]'
52
52
  }, {
53
53
  option: '-m, --groupMailNickname [groupMailNickname]'
54
54
  });
55
55
  };
56
- export default new AadO365GroupRecycleBinItemListCommand();
57
- //# sourceMappingURL=o365group-recyclebinitem-list.js.map
56
+ export default new AadM365GroupRecycleBinItemListCommand();
57
+ //# sourceMappingURL=m365group-recyclebinitem-list.js.map
@@ -3,27 +3,27 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
3
3
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
4
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
5
  };
6
- var _AadO365GroupRecycleBinItemRemoveCommand_instances, _AadO365GroupRecycleBinItemRemoveCommand_initTelemetry, _AadO365GroupRecycleBinItemRemoveCommand_initOptions, _AadO365GroupRecycleBinItemRemoveCommand_initValidators, _AadO365GroupRecycleBinItemRemoveCommand_initOptionSets;
6
+ var _AadM365GroupRecycleBinItemRemoveCommand_instances, _AadM365GroupRecycleBinItemRemoveCommand_initTelemetry, _AadM365GroupRecycleBinItemRemoveCommand_initOptions, _AadM365GroupRecycleBinItemRemoveCommand_initValidators, _AadM365GroupRecycleBinItemRemoveCommand_initOptionSets;
7
7
  import { Cli } from '../../../../cli/Cli.js';
8
8
  import request from '../../../../request.js';
9
9
  import { formatting } from '../../../../utils/formatting.js';
10
10
  import { validation } from '../../../../utils/validation.js';
11
11
  import GraphCommand from '../../../base/GraphCommand.js';
12
12
  import commands from '../../commands.js';
13
- class AadO365GroupRecycleBinItemRemoveCommand extends GraphCommand {
13
+ class AadM365GroupRecycleBinItemRemoveCommand extends GraphCommand {
14
14
  get name() {
15
- return commands.O365GROUP_RECYCLEBINITEM_REMOVE;
15
+ return commands.M365GROUP_RECYCLEBINITEM_REMOVE;
16
16
  }
17
17
  get description() {
18
18
  return 'Permanently deletes a Microsoft 365 Group from the recycle bin in the current tenant';
19
19
  }
20
20
  constructor() {
21
21
  super();
22
- _AadO365GroupRecycleBinItemRemoveCommand_instances.add(this);
23
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRemoveCommand_instances, "m", _AadO365GroupRecycleBinItemRemoveCommand_initTelemetry).call(this);
24
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRemoveCommand_instances, "m", _AadO365GroupRecycleBinItemRemoveCommand_initOptions).call(this);
25
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRemoveCommand_instances, "m", _AadO365GroupRecycleBinItemRemoveCommand_initValidators).call(this);
26
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRemoveCommand_instances, "m", _AadO365GroupRecycleBinItemRemoveCommand_initOptionSets).call(this);
22
+ _AadM365GroupRecycleBinItemRemoveCommand_instances.add(this);
23
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRemoveCommand_instances, "m", _AadM365GroupRecycleBinItemRemoveCommand_initTelemetry).call(this);
24
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRemoveCommand_instances, "m", _AadM365GroupRecycleBinItemRemoveCommand_initOptions).call(this);
25
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRemoveCommand_instances, "m", _AadM365GroupRecycleBinItemRemoveCommand_initValidators).call(this);
26
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRemoveCommand_instances, "m", _AadM365GroupRecycleBinItemRemoveCommand_initOptionSets).call(this);
27
27
  }
28
28
  async commandAction(logger, args) {
29
29
  const removeGroup = async () => {
@@ -82,12 +82,14 @@ class AadO365GroupRecycleBinItemRemoveCommand extends GraphCommand {
82
82
  throw Error(`The specified group '${displayName || mailNickname}' does not exist.`);
83
83
  }
84
84
  if (groups.length > 1) {
85
- throw Error(`Multiple groups with name '${displayName || mailNickname}' found: ${groups.map(x => x.id).join(',')}.`);
85
+ const resultAsKeyValuePair = formatting.convertArrayToHashTable('id', groups);
86
+ const result = await Cli.handleMultipleResultsFound(`Multiple groups with name '${displayName || mailNickname}' found.`, resultAsKeyValuePair);
87
+ return result.id;
86
88
  }
87
89
  return groups[0].id;
88
90
  }
89
91
  }
90
- _AadO365GroupRecycleBinItemRemoveCommand_instances = new WeakSet(), _AadO365GroupRecycleBinItemRemoveCommand_initTelemetry = function _AadO365GroupRecycleBinItemRemoveCommand_initTelemetry() {
92
+ _AadM365GroupRecycleBinItemRemoveCommand_instances = new WeakSet(), _AadM365GroupRecycleBinItemRemoveCommand_initTelemetry = function _AadM365GroupRecycleBinItemRemoveCommand_initTelemetry() {
91
93
  this.telemetry.push((args) => {
92
94
  Object.assign(this.telemetryProperties, {
93
95
  id: typeof args.options.id !== 'undefined',
@@ -96,7 +98,7 @@ _AadO365GroupRecycleBinItemRemoveCommand_instances = new WeakSet(), _AadO365Grou
96
98
  force: !!args.options.force
97
99
  });
98
100
  });
99
- }, _AadO365GroupRecycleBinItemRemoveCommand_initOptions = function _AadO365GroupRecycleBinItemRemoveCommand_initOptions() {
101
+ }, _AadM365GroupRecycleBinItemRemoveCommand_initOptions = function _AadM365GroupRecycleBinItemRemoveCommand_initOptions() {
100
102
  this.options.unshift({
101
103
  option: '-i, --id [id]'
102
104
  }, {
@@ -106,15 +108,15 @@ _AadO365GroupRecycleBinItemRemoveCommand_instances = new WeakSet(), _AadO365Grou
106
108
  }, {
107
109
  option: '-f, --force'
108
110
  });
109
- }, _AadO365GroupRecycleBinItemRemoveCommand_initValidators = function _AadO365GroupRecycleBinItemRemoveCommand_initValidators() {
111
+ }, _AadM365GroupRecycleBinItemRemoveCommand_initValidators = function _AadM365GroupRecycleBinItemRemoveCommand_initValidators() {
110
112
  this.validators.push(async (args) => {
111
113
  if (args.options.id && !validation.isValidGuid(args.options.id)) {
112
114
  return `${args.options.id} is not a valid GUID`;
113
115
  }
114
116
  return true;
115
117
  });
116
- }, _AadO365GroupRecycleBinItemRemoveCommand_initOptionSets = function _AadO365GroupRecycleBinItemRemoveCommand_initOptionSets() {
118
+ }, _AadM365GroupRecycleBinItemRemoveCommand_initOptionSets = function _AadM365GroupRecycleBinItemRemoveCommand_initOptionSets() {
117
119
  this.optionSets.push({ options: ['id', 'displayName', 'mailNickname'] });
118
120
  };
119
- export default new AadO365GroupRecycleBinItemRemoveCommand();
120
- //# sourceMappingURL=o365group-recyclebinitem-remove.js.map
121
+ export default new AadM365GroupRecycleBinItemRemoveCommand();
122
+ //# sourceMappingURL=m365group-recyclebinitem-remove.js.map
@@ -3,26 +3,27 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
3
3
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
4
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
5
  };
6
- var _AadO365GroupRecycleBinItemRestoreCommand_instances, _AadO365GroupRecycleBinItemRestoreCommand_initTelemetry, _AadO365GroupRecycleBinItemRestoreCommand_initOptions, _AadO365GroupRecycleBinItemRestoreCommand_initValidators, _AadO365GroupRecycleBinItemRestoreCommand_initOptionSets;
6
+ var _AadM365GroupRecycleBinItemRestoreCommand_instances, _AadM365GroupRecycleBinItemRestoreCommand_initTelemetry, _AadM365GroupRecycleBinItemRestoreCommand_initOptions, _AadM365GroupRecycleBinItemRestoreCommand_initValidators, _AadM365GroupRecycleBinItemRestoreCommand_initOptionSets;
7
7
  import request from '../../../../request.js';
8
8
  import { formatting } from '../../../../utils/formatting.js';
9
9
  import { validation } from '../../../../utils/validation.js';
10
10
  import GraphCommand from '../../../base/GraphCommand.js';
11
11
  import commands from '../../commands.js';
12
- class AadO365GroupRecycleBinItemRestoreCommand extends GraphCommand {
12
+ import { Cli } from '../../../../cli/Cli.js';
13
+ class AadM365GroupRecycleBinItemRestoreCommand extends GraphCommand {
13
14
  get name() {
14
- return commands.O365GROUP_RECYCLEBINITEM_RESTORE;
15
+ return commands.M365GROUP_RECYCLEBINITEM_RESTORE;
15
16
  }
16
17
  get description() {
17
18
  return 'Restores a deleted Microsoft 365 Group';
18
19
  }
19
20
  constructor() {
20
21
  super();
21
- _AadO365GroupRecycleBinItemRestoreCommand_instances.add(this);
22
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRestoreCommand_instances, "m", _AadO365GroupRecycleBinItemRestoreCommand_initTelemetry).call(this);
23
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRestoreCommand_instances, "m", _AadO365GroupRecycleBinItemRestoreCommand_initOptions).call(this);
24
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRestoreCommand_instances, "m", _AadO365GroupRecycleBinItemRestoreCommand_initValidators).call(this);
25
- __classPrivateFieldGet(this, _AadO365GroupRecycleBinItemRestoreCommand_instances, "m", _AadO365GroupRecycleBinItemRestoreCommand_initOptionSets).call(this);
22
+ _AadM365GroupRecycleBinItemRestoreCommand_instances.add(this);
23
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRestoreCommand_instances, "m", _AadM365GroupRecycleBinItemRestoreCommand_initTelemetry).call(this);
24
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRestoreCommand_instances, "m", _AadM365GroupRecycleBinItemRestoreCommand_initOptions).call(this);
25
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRestoreCommand_instances, "m", _AadM365GroupRecycleBinItemRestoreCommand_initValidators).call(this);
26
+ __classPrivateFieldGet(this, _AadM365GroupRecycleBinItemRestoreCommand_instances, "m", _AadM365GroupRecycleBinItemRestoreCommand_initOptionSets).call(this);
26
27
  }
27
28
  async commandAction(logger, args) {
28
29
  if (this.verbose) {
@@ -69,12 +70,14 @@ class AadO365GroupRecycleBinItemRestoreCommand extends GraphCommand {
69
70
  throw `The specified group '${displayName || mailNickname}' does not exist.`;
70
71
  }
71
72
  if (groups.length > 1) {
72
- throw `Multiple groups with name '${displayName || mailNickname}' found: ${groups.map(x => x.id).join(',')}.`;
73
+ const resultAsKeyValuePair = formatting.convertArrayToHashTable('id', groups);
74
+ const result = await Cli.handleMultipleResultsFound(`Multiple groups with name '${displayName || mailNickname}' found.`, resultAsKeyValuePair);
75
+ return result.id;
73
76
  }
74
77
  return groups[0].id;
75
78
  }
76
79
  }
77
- _AadO365GroupRecycleBinItemRestoreCommand_instances = new WeakSet(), _AadO365GroupRecycleBinItemRestoreCommand_initTelemetry = function _AadO365GroupRecycleBinItemRestoreCommand_initTelemetry() {
80
+ _AadM365GroupRecycleBinItemRestoreCommand_instances = new WeakSet(), _AadM365GroupRecycleBinItemRestoreCommand_initTelemetry = function _AadM365GroupRecycleBinItemRestoreCommand_initTelemetry() {
78
81
  this.telemetry.push((args) => {
79
82
  Object.assign(this.telemetryProperties, {
80
83
  id: typeof args.options.id !== 'undefined',
@@ -82,7 +85,7 @@ _AadO365GroupRecycleBinItemRestoreCommand_instances = new WeakSet(), _AadO365Gro
82
85
  mailNickname: typeof args.options.mailNickname !== 'undefined'
83
86
  });
84
87
  });
85
- }, _AadO365GroupRecycleBinItemRestoreCommand_initOptions = function _AadO365GroupRecycleBinItemRestoreCommand_initOptions() {
88
+ }, _AadM365GroupRecycleBinItemRestoreCommand_initOptions = function _AadM365GroupRecycleBinItemRestoreCommand_initOptions() {
86
89
  this.options.unshift({
87
90
  option: '-i, --id [id]'
88
91
  }, {
@@ -90,15 +93,15 @@ _AadO365GroupRecycleBinItemRestoreCommand_instances = new WeakSet(), _AadO365Gro
90
93
  }, {
91
94
  option: '-m, --mailNickname [mailNickname]'
92
95
  });
93
- }, _AadO365GroupRecycleBinItemRestoreCommand_initValidators = function _AadO365GroupRecycleBinItemRestoreCommand_initValidators() {
96
+ }, _AadM365GroupRecycleBinItemRestoreCommand_initValidators = function _AadM365GroupRecycleBinItemRestoreCommand_initValidators() {
94
97
  this.validators.push(async (args) => {
95
98
  if (args.options.id && !validation.isValidGuid(args.options.id)) {
96
99
  return `${args.options.id} is not a valid GUID`;
97
100
  }
98
101
  return true;
99
102
  });
100
- }, _AadO365GroupRecycleBinItemRestoreCommand_initOptionSets = function _AadO365GroupRecycleBinItemRestoreCommand_initOptionSets() {
103
+ }, _AadM365GroupRecycleBinItemRestoreCommand_initOptionSets = function _AadM365GroupRecycleBinItemRestoreCommand_initOptionSets() {
101
104
  this.optionSets.push({ options: ['id', 'displayName', 'mailNickname'] });
102
105
  };
103
- export default new AadO365GroupRecycleBinItemRestoreCommand();
104
- //# sourceMappingURL=o365group-recyclebinitem-restore.js.map
106
+ export default new AadM365GroupRecycleBinItemRestoreCommand();
107
+ //# sourceMappingURL=m365group-recyclebinitem-restore.js.map
@@ -3,25 +3,26 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
3
3
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
4
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
5
  };
6
- var _AadO365GroupRemoveCommand_instances, _AadO365GroupRemoveCommand_initTelemetry, _AadO365GroupRemoveCommand_initOptions, _AadO365GroupRemoveCommand_initValidators;
6
+ var _AadM365GroupRemoveCommand_instances, _AadM365GroupRemoveCommand_initTelemetry, _AadM365GroupRemoveCommand_initOptions, _AadM365GroupRemoveCommand_initValidators;
7
7
  import { Cli } from '../../../../cli/Cli.js';
8
8
  import request from '../../../../request.js';
9
+ import { aadGroup } from '../../../../utils/aadGroup.js';
9
10
  import { validation } from '../../../../utils/validation.js';
10
11
  import GraphCommand from '../../../base/GraphCommand.js';
11
12
  import commands from '../../commands.js';
12
- class AadO365GroupRemoveCommand extends GraphCommand {
13
+ class AadM365GroupRemoveCommand extends GraphCommand {
13
14
  get name() {
14
- return commands.O365GROUP_REMOVE;
15
+ return commands.M365GROUP_REMOVE;
15
16
  }
16
17
  get description() {
17
18
  return 'Removes an Microsoft 365 Group';
18
19
  }
19
20
  constructor() {
20
21
  super();
21
- _AadO365GroupRemoveCommand_instances.add(this);
22
- __classPrivateFieldGet(this, _AadO365GroupRemoveCommand_instances, "m", _AadO365GroupRemoveCommand_initTelemetry).call(this);
23
- __classPrivateFieldGet(this, _AadO365GroupRemoveCommand_instances, "m", _AadO365GroupRemoveCommand_initOptions).call(this);
24
- __classPrivateFieldGet(this, _AadO365GroupRemoveCommand_instances, "m", _AadO365GroupRemoveCommand_initValidators).call(this);
22
+ _AadM365GroupRemoveCommand_instances.add(this);
23
+ __classPrivateFieldGet(this, _AadM365GroupRemoveCommand_instances, "m", _AadM365GroupRemoveCommand_initTelemetry).call(this);
24
+ __classPrivateFieldGet(this, _AadM365GroupRemoveCommand_instances, "m", _AadM365GroupRemoveCommand_initOptions).call(this);
25
+ __classPrivateFieldGet(this, _AadM365GroupRemoveCommand_instances, "m", _AadM365GroupRemoveCommand_initValidators).call(this);
25
26
  }
26
27
  async commandAction(logger, args) {
27
28
  const removeGroup = async () => {
@@ -29,6 +30,10 @@ class AadO365GroupRemoveCommand extends GraphCommand {
29
30
  await logger.logToStderr(`Removing Microsoft 365 Group: ${args.options.id}...`);
30
31
  }
31
32
  try {
33
+ const isUnifiedGroup = await aadGroup.isUnifiedGroup(args.options.id);
34
+ if (!isUnifiedGroup) {
35
+ throw Error(`Specified group with id '${args.options.id}' is not a Microsoft 365 group.`);
36
+ }
32
37
  const requestOptions = {
33
38
  url: `${this.resource}/v1.0/groups/${args.options.id}`,
34
39
  headers: {
@@ -66,14 +71,14 @@ class AadO365GroupRemoveCommand extends GraphCommand {
66
71
  }
67
72
  }
68
73
  }
69
- _AadO365GroupRemoveCommand_instances = new WeakSet(), _AadO365GroupRemoveCommand_initTelemetry = function _AadO365GroupRemoveCommand_initTelemetry() {
74
+ _AadM365GroupRemoveCommand_instances = new WeakSet(), _AadM365GroupRemoveCommand_initTelemetry = function _AadM365GroupRemoveCommand_initTelemetry() {
70
75
  this.telemetry.push((args) => {
71
76
  Object.assign(this.telemetryProperties, {
72
77
  force: (!(!args.options.force)).toString(),
73
78
  skipRecycleBin: args.options.skipRecycleBin
74
79
  });
75
80
  });
76
- }, _AadO365GroupRemoveCommand_initOptions = function _AadO365GroupRemoveCommand_initOptions() {
81
+ }, _AadM365GroupRemoveCommand_initOptions = function _AadM365GroupRemoveCommand_initOptions() {
77
82
  this.options.unshift({
78
83
  option: '-i, --id <id>'
79
84
  }, {
@@ -81,7 +86,7 @@ _AadO365GroupRemoveCommand_instances = new WeakSet(), _AadO365GroupRemoveCommand
81
86
  }, {
82
87
  option: '--skipRecycleBin'
83
88
  });
84
- }, _AadO365GroupRemoveCommand_initValidators = function _AadO365GroupRemoveCommand_initValidators() {
89
+ }, _AadM365GroupRemoveCommand_initValidators = function _AadM365GroupRemoveCommand_initValidators() {
85
90
  this.validators.push(async (args) => {
86
91
  if (!validation.isValidGuid(args.options.id)) {
87
92
  return `${args.options.id} is not a valid GUID`;
@@ -89,5 +94,5 @@ _AadO365GroupRemoveCommand_instances = new WeakSet(), _AadO365GroupRemoveCommand
89
94
  return true;
90
95
  });
91
96
  };
92
- export default new AadO365GroupRemoveCommand();
93
- //# sourceMappingURL=o365group-remove.js.map
97
+ export default new AadM365GroupRemoveCommand();
98
+ //# sourceMappingURL=m365group-remove.js.map
@@ -3,29 +3,34 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
3
3
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
4
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
5
  };
6
- var _AadO365GroupRenewCommand_instances, _AadO365GroupRenewCommand_initOptions, _AadO365GroupRenewCommand_initValidators;
6
+ var _AadM365GroupRenewCommand_instances, _AadM365GroupRenewCommand_initOptions, _AadM365GroupRenewCommand_initValidators;
7
7
  import request from '../../../../request.js';
8
+ import { aadGroup } from '../../../../utils/aadGroup.js';
8
9
  import { validation } from '../../../../utils/validation.js';
9
10
  import GraphCommand from '../../../base/GraphCommand.js';
10
11
  import commands from '../../commands.js';
11
- class AadO365GroupRenewCommand extends GraphCommand {
12
+ class AadM365GroupRenewCommand extends GraphCommand {
12
13
  get name() {
13
- return commands.O365GROUP_RENEW;
14
+ return commands.M365GROUP_RENEW;
14
15
  }
15
16
  get description() {
16
17
  return `Renews Microsoft 365 group's expiration`;
17
18
  }
18
19
  constructor() {
19
20
  super();
20
- _AadO365GroupRenewCommand_instances.add(this);
21
- __classPrivateFieldGet(this, _AadO365GroupRenewCommand_instances, "m", _AadO365GroupRenewCommand_initOptions).call(this);
22
- __classPrivateFieldGet(this, _AadO365GroupRenewCommand_instances, "m", _AadO365GroupRenewCommand_initValidators).call(this);
21
+ _AadM365GroupRenewCommand_instances.add(this);
22
+ __classPrivateFieldGet(this, _AadM365GroupRenewCommand_instances, "m", _AadM365GroupRenewCommand_initOptions).call(this);
23
+ __classPrivateFieldGet(this, _AadM365GroupRenewCommand_instances, "m", _AadM365GroupRenewCommand_initValidators).call(this);
23
24
  }
24
25
  async commandAction(logger, args) {
25
26
  if (this.verbose) {
26
27
  await logger.logToStderr(`Renewing Microsoft 365 group's expiration: ${args.options.id}...`);
27
28
  }
28
29
  try {
30
+ const isUnifiedGroup = await aadGroup.isUnifiedGroup(args.options.id);
31
+ if (!isUnifiedGroup) {
32
+ throw Error(`Specified group with id '${args.options.id}' is not a Microsoft 365 group.`);
33
+ }
29
34
  const requestOptions = {
30
35
  url: `${this.resource}/v1.0/groups/${args.options.id}/renew/`,
31
36
  headers: {
@@ -39,11 +44,11 @@ class AadO365GroupRenewCommand extends GraphCommand {
39
44
  }
40
45
  }
41
46
  }
42
- _AadO365GroupRenewCommand_instances = new WeakSet(), _AadO365GroupRenewCommand_initOptions = function _AadO365GroupRenewCommand_initOptions() {
47
+ _AadM365GroupRenewCommand_instances = new WeakSet(), _AadM365GroupRenewCommand_initOptions = function _AadM365GroupRenewCommand_initOptions() {
43
48
  this.options.unshift({
44
49
  option: '-i, --id <id>'
45
50
  });
46
- }, _AadO365GroupRenewCommand_initValidators = function _AadO365GroupRenewCommand_initValidators() {
51
+ }, _AadM365GroupRenewCommand_initValidators = function _AadM365GroupRenewCommand_initValidators() {
47
52
  this.validators.push(async (args) => {
48
53
  if (!validation.isValidGuid(args.options.id)) {
49
54
  return `${args.options.id} is not a valid GUID`;
@@ -51,5 +56,5 @@ _AadO365GroupRenewCommand_instances = new WeakSet(), _AadO365GroupRenewCommand_i
51
56
  return true;
52
57
  });
53
58
  };
54
- export default new AadO365GroupRenewCommand();
55
- //# sourceMappingURL=o365group-renew.js.map
59
+ export default new AadM365GroupRenewCommand();
60
+ //# sourceMappingURL=m365group-renew.js.map
@@ -1,8 +1,8 @@
1
1
  import PeriodBasedReport from '../../../base/PeriodBasedReport.js';
2
2
  import commands from '../../commands.js';
3
- class O365GroupReportActivityCountsCommand extends PeriodBasedReport {
3
+ class M365GroupReportActivityCountsCommand extends PeriodBasedReport {
4
4
  get name() {
5
- return commands.O365GROUP_REPORT_ACTIVITYCOUNTS;
5
+ return commands.M365GROUP_REPORT_ACTIVITYCOUNTS;
6
6
  }
7
7
  get description() {
8
8
  return 'Get the number of group activities across group workloads';
@@ -11,5 +11,5 @@ class O365GroupReportActivityCountsCommand extends PeriodBasedReport {
11
11
  return 'getOffice365GroupsActivityCounts';
12
12
  }
13
13
  }
14
- export default new O365GroupReportActivityCountsCommand();
15
- //# sourceMappingURL=o365group-report-activitycounts.js.map
14
+ export default new M365GroupReportActivityCountsCommand();
15
+ //# sourceMappingURL=m365group-report-activitycounts.js.map
@@ -1,8 +1,8 @@
1
1
  import DateAndPeriodBasedReport from '../../../base/DateAndPeriodBasedReport.js';
2
2
  import commands from '../../commands.js';
3
- class O365GroupReportActivityDetailCommand extends DateAndPeriodBasedReport {
3
+ class M365GroupReportActivityDetailCommand extends DateAndPeriodBasedReport {
4
4
  get name() {
5
- return commands.O365GROUP_REPORT_ACTIVITYDETAIL;
5
+ return commands.M365GROUP_REPORT_ACTIVITYDETAIL;
6
6
  }
7
7
  get description() {
8
8
  return 'Get details about Microsoft 365 Groups activity by group';
@@ -11,5 +11,5 @@ class O365GroupReportActivityDetailCommand extends DateAndPeriodBasedReport {
11
11
  return 'getOffice365GroupsActivityDetail';
12
12
  }
13
13
  }
14
- export default new O365GroupReportActivityDetailCommand();
15
- //# sourceMappingURL=o365group-report-activitydetail.js.map
14
+ export default new M365GroupReportActivityDetailCommand();
15
+ //# sourceMappingURL=m365group-report-activitydetail.js.map
@@ -1,8 +1,8 @@
1
1
  import PeriodBasedReport from '../../../base/PeriodBasedReport.js';
2
2
  import commands from '../../commands.js';
3
- class O365GroupReportActivityFileCountsCommand extends PeriodBasedReport {
3
+ class M365GroupReportActivityFileCountsCommand extends PeriodBasedReport {
4
4
  get name() {
5
- return commands.O365GROUP_REPORT_ACTIVITYFILECOUNTS;
5
+ return commands.M365GROUP_REPORT_ACTIVITYFILECOUNTS;
6
6
  }
7
7
  get description() {
8
8
  return 'Get the total number of files and how many of them were active across all group sites associated with an Microsoft 365 Group';
@@ -11,5 +11,5 @@ class O365GroupReportActivityFileCountsCommand extends PeriodBasedReport {
11
11
  return 'getOffice365GroupsActivityFileCounts';
12
12
  }
13
13
  }
14
- export default new O365GroupReportActivityFileCountsCommand();
15
- //# sourceMappingURL=o365group-report-activityfilecounts.js.map
14
+ export default new M365GroupReportActivityFileCountsCommand();
15
+ //# sourceMappingURL=m365group-report-activityfilecounts.js.map
@@ -1,8 +1,8 @@
1
1
  import PeriodBasedReport from '../../../base/PeriodBasedReport.js';
2
2
  import commands from '../../commands.js';
3
- class O365GroupReportActivityGroupCountsCommand extends PeriodBasedReport {
3
+ class M365GroupReportActivityGroupCountsCommand extends PeriodBasedReport {
4
4
  get name() {
5
- return commands.O365GROUP_REPORT_ACTIVITYGROUPCOUNTS;
5
+ return commands.M365GROUP_REPORT_ACTIVITYGROUPCOUNTS;
6
6
  }
7
7
  get description() {
8
8
  return 'Get the daily total number of groups and how many of them were active based on email conversations, Yammer posts, and SharePoint file activities';
@@ -11,5 +11,5 @@ class O365GroupReportActivityGroupCountsCommand extends PeriodBasedReport {
11
11
  return 'getOffice365GroupsActivityGroupCounts';
12
12
  }
13
13
  }
14
- export default new O365GroupReportActivityGroupCountsCommand();
15
- //# sourceMappingURL=o365group-report-activitygroupcounts.js.map
14
+ export default new M365GroupReportActivityGroupCountsCommand();
15
+ //# sourceMappingURL=m365group-report-activitygroupcounts.js.map
@@ -1,8 +1,8 @@
1
1
  import PeriodBasedReport from '../../../base/PeriodBasedReport.js';
2
2
  import commands from '../../commands.js';
3
- class O365GroupReportActivityStorageCommand extends PeriodBasedReport {
3
+ class M365GroupReportActivityStorageCommand extends PeriodBasedReport {
4
4
  get name() {
5
- return commands.O365GROUP_REPORT_ACTIVITYSTORAGE;
5
+ return commands.M365GROUP_REPORT_ACTIVITYSTORAGE;
6
6
  }
7
7
  get description() {
8
8
  return 'Get the total storage used across all group mailboxes and group sites';
@@ -11,5 +11,5 @@ class O365GroupReportActivityStorageCommand extends PeriodBasedReport {
11
11
  return 'getOffice365GroupsActivityStorage';
12
12
  }
13
13
  }
14
- export default new O365GroupReportActivityStorageCommand();
15
- //# sourceMappingURL=o365group-report-activitystorage.js.map
14
+ export default new M365GroupReportActivityStorageCommand();
15
+ //# sourceMappingURL=m365group-report-activitystorage.js.map