@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
@@ -40,15 +40,15 @@ class SpoTermSetGetCommand extends SpoCommand_1.default {
40
40
  commandAction(logger, args) {
41
41
  return __awaiter(this, void 0, void 0, function* () {
42
42
  try {
43
- const spoAdminUrl = yield spo_1.spo.getSpoAdminUrl(logger, this.debug);
44
- const res = yield spo_1.spo.getRequestDigest(spoAdminUrl);
43
+ const spoWebUrl = args.options.webUrl ? args.options.webUrl : yield spo_1.spo.getSpoAdminUrl(logger, this.debug);
44
+ const res = yield spo_1.spo.getRequestDigest(spoWebUrl);
45
45
  if (this.verbose) {
46
46
  logger.logToStderr(`Retrieving taxonomy term set...`);
47
47
  }
48
48
  const termGroupQuery = args.options.termGroupId ? `<Method Id="62" ParentId="60" Name="GetById"><Parameters><Parameter Type="Guid">{${args.options.termGroupId}}</Parameter></Parameters></Method>` : `<Method Id="62" ParentId="60" Name="GetByName"><Parameters><Parameter Type="String">${formatting_1.formatting.escapeXml(args.options.termGroupName)}</Parameter></Parameters></Method>`;
49
49
  const termSetQuery = args.options.id ? `<Method Id="67" ParentId="65" Name="GetById"><Parameters><Parameter Type="Guid">{${args.options.id}}</Parameter></Parameters></Method>` : `<Method Id="67" ParentId="65" Name="GetByName"><Parameters><Parameter Type="String">${formatting_1.formatting.escapeXml(args.options.name)}</Parameter></Parameters></Method>`;
50
50
  const requestOptions = {
51
- url: `${spoAdminUrl}/_vti_bin/client.svc/ProcessQuery`,
51
+ url: `${spoWebUrl}/_vti_bin/client.svc/ProcessQuery`,
52
52
  headers: {
53
53
  'X-RequestDigest': res.FormDigestValue
54
54
  },
@@ -77,6 +77,7 @@ class SpoTermSetGetCommand extends SpoCommand_1.default {
77
77
  _SpoTermSetGetCommand_instances = new WeakSet(), _SpoTermSetGetCommand_initTelemetry = function _SpoTermSetGetCommand_initTelemetry() {
78
78
  this.telemetry.push((args) => {
79
79
  Object.assign(this.telemetryProperties, {
80
+ webUrl: typeof args.options.webUrl !== 'undefined',
80
81
  id: typeof args.options.id !== 'undefined',
81
82
  name: typeof args.options.name !== 'undefined',
82
83
  termGroupId: typeof args.options.termGroupId !== 'undefined',
@@ -85,6 +86,8 @@ _SpoTermSetGetCommand_instances = new WeakSet(), _SpoTermSetGetCommand_initTelem
85
86
  });
86
87
  }, _SpoTermSetGetCommand_initOptions = function _SpoTermSetGetCommand_initOptions() {
87
88
  this.options.unshift({
89
+ option: '-u, --webUrl [webUrl]'
90
+ }, {
88
91
  option: '-i, --id [id]'
89
92
  }, {
90
93
  option: '-n, --name [name]'
@@ -95,6 +98,12 @@ _SpoTermSetGetCommand_instances = new WeakSet(), _SpoTermSetGetCommand_initTelem
95
98
  });
96
99
  }, _SpoTermSetGetCommand_initValidators = function _SpoTermSetGetCommand_initValidators() {
97
100
  this.validators.push((args) => __awaiter(this, void 0, void 0, function* () {
101
+ if (args.options.webUrl) {
102
+ const isValidSharePointUrl = validation_1.validation.isValidSharePointUrl(args.options.webUrl);
103
+ if (isValidSharePointUrl !== true) {
104
+ return isValidSharePointUrl;
105
+ }
106
+ }
98
107
  if (args.options.id) {
99
108
  if (!validation_1.validation.isValidGuid(args.options.id)) {
100
109
  return `${args.options.id} is not a valid GUID`;
@@ -43,14 +43,14 @@ class SpoTermSetListCommand extends SpoCommand_1.default {
43
43
  commandAction(logger, args) {
44
44
  return __awaiter(this, void 0, void 0, function* () {
45
45
  try {
46
- const spoAdminUrl = yield spo_1.spo.getSpoAdminUrl(logger, this.debug);
47
- const res = yield spo_1.spo.getRequestDigest(spoAdminUrl);
46
+ const spoWebUrl = args.options.webUrl ? args.options.webUrl : yield spo_1.spo.getSpoAdminUrl(logger, this.debug);
47
+ const res = yield spo_1.spo.getRequestDigest(spoWebUrl);
48
48
  if (this.verbose) {
49
49
  logger.logToStderr(`Retrieving taxonomy term sets...`);
50
50
  }
51
51
  const query = args.options.termGroupId ? `<Method Id="62" ParentId="60" Name="GetById"><Parameters><Parameter Type="Guid">{${args.options.termGroupId}}</Parameter></Parameters></Method>` : `<Method Id="62" ParentId="60" Name="GetByName"><Parameters><Parameter Type="String">${formatting_1.formatting.escapeXml(args.options.termGroupName)}</Parameter></Parameters></Method>`;
52
52
  const requestOptions = {
53
- url: `${spoAdminUrl}/_vti_bin/client.svc/ProcessQuery`,
53
+ url: `${spoWebUrl}/_vti_bin/client.svc/ProcessQuery`,
54
54
  headers: {
55
55
  'X-RequestDigest': res.FormDigestValue
56
56
  },
@@ -82,18 +82,27 @@ class SpoTermSetListCommand extends SpoCommand_1.default {
82
82
  _SpoTermSetListCommand_instances = new WeakSet(), _SpoTermSetListCommand_initTelemetry = function _SpoTermSetListCommand_initTelemetry() {
83
83
  this.telemetry.push((args) => {
84
84
  Object.assign(this.telemetryProperties, {
85
+ webUrl: typeof args.options.webUrl !== 'undefined',
85
86
  termGroupId: typeof args.options.termGroupId !== 'undefined',
86
87
  termGroupName: typeof args.options.termGroupName !== 'undefined'
87
88
  });
88
89
  });
89
90
  }, _SpoTermSetListCommand_initOptions = function _SpoTermSetListCommand_initOptions() {
90
91
  this.options.unshift({
92
+ option: '-u, --webUrl [webUrl]'
93
+ }, {
91
94
  option: '--termGroupId [termGroupId]'
92
95
  }, {
93
96
  option: '--termGroupName [termGroupName]'
94
97
  });
95
98
  }, _SpoTermSetListCommand_initValidators = function _SpoTermSetListCommand_initValidators() {
96
99
  this.validators.push((args) => __awaiter(this, void 0, void 0, function* () {
100
+ if (args.options.webUrl) {
101
+ const isValidSharePointUrl = validation_1.validation.isValidSharePointUrl(args.options.webUrl);
102
+ if (isValidSharePointUrl !== true) {
103
+ return isValidSharePointUrl;
104
+ }
105
+ }
97
106
  if (args.options.termGroupId) {
98
107
  if (!validation_1.validation.isValidGuid(args.options.termGroupId)) {
99
108
  return `${args.options.termGroupId} is not a valid GUID`;
@@ -16,6 +16,7 @@ exports.default = {
16
16
  APPLICATIONCUSTOMIZER_ADD: `${prefix} applicationcustomizer add`,
17
17
  APPLICATIONCUSTOMIZER_GET: `${prefix} applicationcustomizer get`,
18
18
  APPLICATIONCUSTOMIZER_LIST: `${prefix} applicationcustomizer list`,
19
+ APPLICATIONCUSTOMIZER_REMOVE: `${prefix} applicationcustomizer remove`,
19
20
  APPPAGE_ADD: `${prefix} apppage add`,
20
21
  APPPAGE_SET: `${prefix} apppage set`,
21
22
  CDN_GET: `${prefix} cdn get`,
@@ -158,6 +159,7 @@ exports.default = {
158
159
  LISTITEM_ADD: `${prefix} listitem add`,
159
160
  LISTITEM_ATTACHMENT_LIST: `${prefix} listitem attachment list`,
160
161
  LISTITEM_BATCH_ADD: `${prefix} listitem batch add`,
162
+ LISTITEM_BATCH_SET: `${prefix} listitem batch set`,
161
163
  LISTITEM_GET: `${prefix} listitem get`,
162
164
  LISTITEM_ISRECORD: `${prefix} listitem isrecord`,
163
165
  LISTITEM_LIST: `${prefix} listitem list`,
@@ -202,6 +204,7 @@ exports.default = {
202
204
  PAGE_SECTION_GET: `${prefix} page section get`,
203
205
  PAGE_SECTION_LIST: `${prefix} page section list`,
204
206
  PAGE_TEMPLATE_LIST: `${prefix} page template list`,
207
+ PAGE_TEMPLATE_REMOVE: `${prefix} page template remove`,
205
208
  PAGE_TEXT_ADD: `${prefix} page text add`,
206
209
  PROPERTYBAG_GET: `${prefix} propertybag get`,
207
210
  PROPERTYBAG_LIST: `${prefix} propertybag list`,
@@ -249,6 +252,8 @@ exports.default = {
249
252
  SITE_INPLACERECORDSMANAGEMENT_SET: `${prefix} site inplacerecordsmanagement set`,
250
253
  SITE_RECYCLEBINITEM_CLEAR: `${prefix} site recyclebinitem clear`,
251
254
  SITE_RECYCLEBINITEM_LIST: `${prefix} site recyclebinitem list`,
255
+ SITE_RECYCLEBINITEM_MOVE: `${prefix} site recyclebinitem move`,
256
+ SITE_RECYCLEBINITEM_REMOVE: `${prefix} site recyclebinitem remove`,
252
257
  SITE_RECYCLEBINITEM_RESTORE: `${prefix} site recyclebinitem restore`,
253
258
  SITE_REMOVE: `${prefix} site remove`,
254
259
  SITE_RENAME: `${prefix} site rename`,
@@ -288,6 +293,10 @@ exports.default = {
288
293
  TENANT_APPCATALOGURL_GET: `${prefix} tenant appcatalogurl get`,
289
294
  TENANT_APPLICATIONCUSTOMIZER_ADD: `${prefix} tenant applicationcustomizer add`,
290
295
  TENANT_APPLICATIONCUSTOMIZER_GET: `${prefix} tenant applicationcustomizer get`,
296
+ TENANT_APPLICATIONCUSTOMIZER_LIST: `${prefix} tenant applicationcustomizer list`,
297
+ TENANT_APPLICATIONCUSTOMIZER_REMOVE: `${prefix} tenant applicationcustomizer remove`,
298
+ TENANT_COMMANDSET_REMOVE: `${prefix} tenant commandset remove`,
299
+ TENANT_COMMANDSET_SET: `${prefix} tenant commandset set`,
291
300
  TENANT_RECYCLEBINITEM_LIST: `${prefix} tenant recyclebinitem list`,
292
301
  TENANT_RECYCLEBINITEM_REMOVE: `${prefix} tenant recyclebinitem remove`,
293
302
  TENANT_RECYCLEBINITEM_RESTORE: `${prefix} tenant recyclebinitem restore`,
@@ -1,9 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.formatting = void 0;
3
+ exports.formatting = exports.CheckStatus = void 0;
4
+ const chalk = require("chalk");
4
5
  const stripJsonComments = require("strip-json-comments");
5
6
  const base_permissions_1 = require("../m365/spo/base-permissions");
6
7
  const RoleType_1 = require("../m365/spo/commands/roledefinition/RoleType");
8
+ /**
9
+ * Has the particular check passed or failed
10
+ */
11
+ var CheckStatus;
12
+ (function (CheckStatus) {
13
+ CheckStatus[CheckStatus["Success"] = 0] = "Success";
14
+ CheckStatus[CheckStatus["Failure"] = 1] = "Failure";
15
+ })(CheckStatus = exports.CheckStatus || (exports.CheckStatus = {}));
7
16
  exports.formatting = {
8
17
  escapeXml(s) {
9
18
  if (!s) {
@@ -54,16 +63,23 @@ exports.formatting = {
54
63
  const regex = new RegExp(`\\s*(${quoteChar})?(.*?)\\1\\s*(?:${delimiter}|$)`, 'gs');
55
64
  const lines = s.split('\n');
56
65
  const match = (line) => [...line.matchAll(regex)]
57
- .map(m => m[2]) // we only want the second capture group
58
- .slice(0, -1); // cut off blank match at the end
59
- const heads = match(lines[0]);
60
- return lines.slice(1).map(line => {
61
- return match(line).reduce((acc, cur, i) => {
62
- const val = cur;
63
- const numValue = parseInt(val);
64
- const key = heads[i];
65
- return Object.assign(Object.assign({}, acc), { [key]: isNaN(numValue) || numValue.toString() !== val ? val : numValue });
66
- }, {});
66
+ .map(m => m[2]); // we only want the second capture group
67
+ const heads = match(lines[0]).slice(0, -1);
68
+ return lines.slice(1)
69
+ .filter(text => text.trim() !== '')
70
+ .map(line => {
71
+ const lineMatch = match(line);
72
+ const obj = {};
73
+ heads.forEach((key, index) => {
74
+ const value = parseInt(lineMatch[index]);
75
+ if (isNaN(value) || value.toString() !== lineMatch[index]) {
76
+ obj[key] = lineMatch[index];
77
+ }
78
+ else {
79
+ obj[key] = parseInt(lineMatch[index]);
80
+ }
81
+ });
82
+ return obj;
67
83
  });
68
84
  },
69
85
  encodeQueryParameter(value) {
@@ -132,6 +148,14 @@ exports.formatting = {
132
148
  }
133
149
  xml = xml.replace(/<\/?[0-9]{1,}>/g, '');
134
150
  return xml;
151
+ },
152
+ getStatus(result, message) {
153
+ const primarySupported = process.platform !== 'win32' ||
154
+ process.env.CI === 'true' ||
155
+ process.env.TERM === 'xterm-256color';
156
+ const success = primarySupported ? '✔' : '√';
157
+ const failure = primarySupported ? '✖' : '×';
158
+ return `${result === CheckStatus.Success ? chalk.green(success) : chalk.red(failure)} ${message}`;
135
159
  }
136
160
  };
137
161
  //# sourceMappingURL=formatting.js.map
package/dist/utils/pid.js CHANGED
@@ -68,6 +68,11 @@ exports.pid = {
68
68
  return processName;
69
69
  }
70
70
  return undefined;
71
+ },
72
+ isPowerShell() {
73
+ const processName = exports.pid.getProcessName(process.ppid) || '';
74
+ return processName.indexOf('powershell') > -1 ||
75
+ processName.indexOf('pwsh') > -1;
71
76
  }
72
77
  };
73
78
  //# sourceMappingURL=pid.js.map
package/dist/utils/spo.js CHANGED
@@ -453,7 +453,7 @@ exports.spo = {
453
453
  * Retrieves the SiteId, VroomItemId and VroomDriveId from a specific file.
454
454
  * @param webUrl Web url
455
455
  * @param fileId GUID ID of the file
456
- * @param fileUrl Decoded URL of the file
456
+ * @param fileUrl Decoded site-relative or server-relative URL of the file
457
457
  */
458
458
  getVroomFileDetails(webUrl, fileId, fileUrl) {
459
459
  return __awaiter(this, void 0, void 0, function* () {
@@ -8,12 +8,6 @@ Gets information about the specified Microsoft 365 Group or Microsoft Teams team
8
8
  m365 aad o365group get [options]
9
9
  ```
10
10
 
11
- ## Alias
12
-
13
- ```sh
14
- m365 teams team get
15
- ```
16
-
17
11
  ## Options
18
12
 
19
13
  `-i, --id <id>`
@@ -37,9 +31,3 @@ Get information about the Microsoft 365 Group with id _1caf7dcd-7e83-4c3a-94f7-9
37
31
  ```sh
38
32
  m365 aad o365group get --id 1caf7dcd-7e83-4c3a-94f7-932a1299c844 --includeSiteUrl
39
33
  ```
40
-
41
- Get information about the Microsoft Teams team with id _2eaf7dcd-7e83-4c3a-94f7-932a1299c844_
42
-
43
- ```sh
44
- m365 teams team get --id 2eaf7dcd-7e83-4c3a-94f7-932a1299c844
45
- ```
@@ -0,0 +1,53 @@
1
+ # app permission add
2
+
3
+ Adds the specified application and/or delegated permissions to the current AAD app API permissions
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 app permission add [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `--appId [appId]`
14
+ : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve API permissions for
15
+
16
+ `--applicationPermission [applicationPermission]`
17
+ : Space-separated list of application permissions to add
18
+
19
+ `--delegatedPermission [delegatedPermission]`
20
+ : Space-separated list of delegated permissions to add
21
+
22
+ `--grantAdminConsent`
23
+ : If specified, admin consent to the newly added permissions will be granted.
24
+
25
+ --8<-- "docs/cmd/_global.md"
26
+
27
+ ## Remarks
28
+
29
+ If you have multiple apps registered in your .m365rc.json file, you can specify the app for which you'd like to retrieve permissions using the `--appId` option. If you don't specify the app using the `--appId` option, you'll be prompted to select one of the applications from your .m365rc.json file.
30
+
31
+ ## Examples
32
+
33
+ Adds the specified application permissions to the default app registered in the .m365rc.json file while granting admin consent.
34
+
35
+ ```sh
36
+ m365 app permission add --applicationPermission 'https://graph.microsoft.com/User.ReadWrite.All https://graph.microsoft.com/User.Read.All' --grantAdminConsent
37
+ ```
38
+
39
+ Adds the specified delegated permissions to the default app registered in the .m365rc.json file without granting admin consent.
40
+
41
+ ```sh
42
+ m365 app permission add --delegatedPermission 'https://graph.microsoft.com/offline_access'
43
+ ```
44
+
45
+ Adds the specified application and delegated permissions to a specific app registered in the .m365rc.json file while granting admin consent.
46
+
47
+ ```sh
48
+ m365 app permission add --appId '1663767b-4172-4519-bfd1-28e6ff19055b' --applicationPermission 'https://graph.microsoft.com/User.ReadWrite.All https://graph.microsoft.com/User.Read.All' --delegatedPermission 'https://graph.microsoft.com/offline_access' --grantAdminConsent
49
+ ```
50
+
51
+ ## Response
52
+
53
+ The command won't return a response on success.
@@ -50,3 +50,9 @@ m365 cli consent --service yammer
50
50
  ```csv
51
51
  To consent permissions for executing yammer commands, navigate in your web browser to https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=31359c7f-bd7e-475c-86db-fdb8c937548e&response_type=code&scope=https%3A%2F%2Fapi.yammer.com%2Fuser_impersonation
52
52
  ```
53
+
54
+ === "Markdown"
55
+
56
+ ```md
57
+ To consent permissions for executing yammer commands, navigate in your web browser to https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=31359c7f-bd7e-475c-86db-fdb8c937548e&response_type=code&scope=https%3A%2F%2Fapi.yammer.com%2Fuser_impersonation
58
+ ```
@@ -73,3 +73,20 @@ m365 cli doctor
73
73
  os,cliVersion,nodeVersion,cliAadAppId,cliAadAppTenant,authMode,cliEnvironment,cliConfig,roles,scopes
74
74
  "{""platform"":""win32"",""version"":""Windows 10 Pro"",""release"":""10.0.19045""}",6.1.0,v16.13.0,31359c7f-bd7e-475c-86db-fdb8c937548e,common,DeviceCode,,"{""output"":""json"",""showHelpOnFailure"":false}",[],"[""AllSites.FullControl""]"
75
75
  ```
76
+
77
+ === "Markdown"
78
+
79
+ ```md
80
+ # cli doctor
81
+
82
+ Date: 2022-09-05
83
+
84
+ Property | Value
85
+ ---------|-------
86
+ cliVersion | 6.1.0
87
+ nodeVersion | v16.13.0
88
+ cliAadAppId | 31359c7f-bd7e-475c-86db-fdb8c937548e
89
+ cliAadAppTenant | common
90
+ authMode | DeviceCode
91
+ cliEnvironment |
92
+ ```
@@ -52,3 +52,9 @@ m365 cli issue --type command
52
52
  ```csv
53
53
  https://aka.ms/cli-m365/new-command
54
54
  ```
55
+
56
+ === "Markdown"
57
+
58
+ ```md
59
+ https://aka.ms/cli-m365/new-command
60
+ ```
@@ -40,6 +40,12 @@ m365 cli reconsent
40
40
  To re-consent the PnP Microsoft 365 Management Shell Azure AD application navigate in your web browser to https://login.microsoftonline.com/common/oauth2/authorize?client_id=31359c7f-bd7e-475c-86db-fdb8c937548e&response_type=code&prompt=admin_consent
41
41
  ```
42
42
 
43
+ === "Markdown"
44
+
45
+ ```md
46
+ To re-consent the PnP Microsoft 365 Management Shell Azure AD application navigate in your web browser to https://login.microsoftonline.com/common/oauth2/authorize?client_id=31359c7f-bd7e-475c-86db-fdb8c937548e&response_type=code&prompt=admin_consent
47
+ ```
48
+
43
49
  ## More information
44
50
 
45
51
  - Re-consent the PnP Microsoft 365 Management Shell Azure AD application: [https://pnp.github.io/cli-microsoft365/user-guide/connecting-office-365/#re-consent-the-pnp-office-365-management-shell-azure-ad-application](https://pnp.github.io/cli-microsoft365/user-guide/connecting-office-365/#re-consent-the-pnp-office-365-management-shell-azure-ad-application)
@@ -40,6 +40,12 @@ m365 cli completion sh setup
40
40
  Command completion successfully registered. Restart your shell to load the completion
41
41
  ```
42
42
 
43
+ === "Markdown"
44
+
45
+ ```md
46
+ Command completion successfully registered. Restart your shell to load the completion
47
+ ```
48
+
43
49
  ## More information
44
50
 
45
51
  - Command completion: [https://pnp.github.io/cli-microsoft365/user-guide/completion/](https://pnp.github.io/cli-microsoft365/user-guide/completion/)
@@ -51,6 +51,12 @@ When retrieving the `output` key, responses will look like this:
51
51
  json
52
52
  ```
53
53
 
54
+ === "Markdown"
55
+
56
+ ```md
57
+ json
58
+ ```
59
+
54
60
  ## More information
55
61
 
56
62
  - [Configuring the CLI for Microsoft 365](../../../user-guide/configuring-cli.md)
@@ -0,0 +1,51 @@
1
+ # docs
2
+
3
+ Returns the CLI for Microsoft 365 docs webpage URL
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 docs [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ --8<-- "docs/cmd/_global.md"
14
+
15
+ ## Remarks
16
+
17
+ Configure `autoOpenLinksInBrowser` using [cli config set](../cmd/cli/config/config-set.md) to automatically open the webpage in the default browser.
18
+
19
+ ## Examples
20
+
21
+ Returns the CLI for Microsoft 365 docs webpage URL
22
+
23
+ ```sh
24
+ m365 docs
25
+ ```
26
+
27
+ ## Response
28
+
29
+ === "JSON"
30
+
31
+ ```json
32
+ "https://pnp.github.io/cli-microsoft365/"
33
+ ```
34
+
35
+ === "Text"
36
+
37
+ ```text
38
+ https://pnp.github.io/cli-microsoft365/
39
+ ```
40
+
41
+ === "CSV"
42
+
43
+ ```csv
44
+ https://pnp.github.io/cli-microsoft365/
45
+ ```
46
+
47
+ === "Markdown"
48
+
49
+ ```md
50
+ https://pnp.github.io/cli-microsoft365/
51
+ ```
@@ -121,3 +121,21 @@ m365 flow environment list
121
121
  name,displayName
122
122
  d87a7535-dd31-4437-bfe1-95340acd55c5,Contoso Environment
123
123
  ```
124
+
125
+ === "Markdown"
126
+
127
+ ```md
128
+ # flow environment list
129
+
130
+ Date: 2023-05-18
131
+
132
+ ## Contoso Environment (/providers/Microsoft.ProcessSimple/environments/Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4)
133
+
134
+ Property | Value
135
+ ---------|-------
136
+ name | Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4
137
+ location | europe
138
+ type | Microsoft.ProcessSimple/environments
139
+ id | /providers/Microsoft.ProcessSimple/environments/Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4
140
+ displayName | Contoso Environment
141
+ ```
@@ -417,3 +417,23 @@ m365 flow get --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --n
417
417
  name,displayName,description,triggers,actions
418
418
  ca76d7b8-3b76-4050-8c03-9fb310ad172f,My Flow,,OpenApiConnection,"OpenApiConnection-AnalyzeImageV2, Compose, InitializeVariable, OpenApiConnection-HttpRequest, ParseJson, OpenApiConnection-PatchFileItem"
419
419
  ```
420
+
421
+ === "Markdown"
422
+
423
+ ```md
424
+ # flow get --environmentName "Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4" --name "ca76d7b8-3b76-4050-8c03-9fb310ad172f"
425
+
426
+ Date: 2023-05-18
427
+
428
+ ## My Flow (/providers/Microsoft.ProcessSimple/environments/Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4/flows/ca76d7b8-3b76-4050-8c03-9fb310ad172f)
429
+
430
+ Property | Value
431
+ ---------|-------
432
+ name | ca76d7b8-3b76-4050-8c03-9fb310ad172f
433
+ id | /providers/Microsoft.ProcessSimple/environments/Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4/flows/ca76d7b8-3b76-4050-8c03-9fb310ad172f
434
+ type | Microsoft.ProcessSimple/environments/flows
435
+ displayName | My Flow
436
+ description | My Flow
437
+ triggers | OpenApiConnection
438
+ actions | OpenApiConnection-AnalyzeImageV2, Compose, InitializeVariable, OpenApiConnection-HttpRequest, ParseJson, OpenApiConnection-PatchFileItem
439
+ ```
@@ -147,3 +147,20 @@ m365 flow list --environmentName Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --
147
147
  name,displayName
148
148
  00afcb83-df7b-4fe0-ab9c-1542a1dc66a9,Contoso Invoicing Flow
149
149
  ```
150
+
151
+ === "Markdown"
152
+
153
+ ```md
154
+ # flow list --environmentName "Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4"
155
+
156
+ Date: 2023-05-18
157
+
158
+ ## Contoso Invoicing Flow (/providers/Microsoft.ProcessSimple/environments/Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4/flows/00afcb83-df7b-4fe0-ab9c-1542a1dc66a9)
159
+
160
+ Property | Value
161
+ ---------|-------
162
+ name | 00afcb83-df7b-4fe0-ab9c-1542a1dc66a9
163
+ id | /providers/Microsoft.ProcessSimple/environments/Default-1e852b49-bf4b-4ba5-bcd4-a8c4706c8ed4/flows/00afcb83-df7b-4fe0-ab9c-1542a1dc66a9
164
+ type | Microsoft.ProcessSimple/environments/flows
165
+ displayName | Contoso Invoicing Flow
166
+ ```
@@ -46,7 +46,7 @@ m365 login [options]
46
46
 
47
47
  Using the `login` command you can log in to Microsoft 365.
48
48
 
49
- By default, the `login` command uses device code OAuth flow to log in to Microsoft 365. Alternatively, you can authenticate using a user name and password or certificate, which are convenient for CI/CD scenarios, but which come with their own [limitations](../user-guide/connecting-office-365.md).
49
+ By default, the `login` command uses device code OAuth flow to log in to Microsoft 365. Alternatively, you can authenticate using a user name and password or certificate, which are convenient for CI/CD scenarios, but which come with their own [limitations](../user-guide/connecting-microsoft-365.md).
50
50
 
51
51
  When logging in to Microsoft 365 using the user name and password, next to the access and refresh token, the CLI for Microsoft 365 will store the user credentials so that it can automatically re-authenticate if necessary. Similarly to the tokens, the credentials are removed by re-authenticating using the device code or by calling the [logout](logout.md) command.
52
52
 
@@ -0,0 +1,47 @@
1
+ # pa app consent set
2
+
3
+ Configures if users can bypass the API Consent window for the selected canvas app
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 pa app consent set [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-e, --environment <environment>`
14
+ : The name of the environment.
15
+
16
+ `-n, --name <name>`
17
+ : The name of the Power App to update
18
+
19
+ `-b, --bypass <bypass>`
20
+ : Set to `true` to allow users to bypass the API Consent window. Set to `false` to disable the bypass.
21
+
22
+ `--confirm`
23
+ : Don't prompt for confirmation
24
+
25
+ --8<-- "docs/cmd/_global.md"
26
+
27
+ ## Remarks
28
+
29
+ This command only works for canvas apps.
30
+
31
+ ## Examples
32
+
33
+ Enables the bypass for the specified canvas app
34
+
35
+ ```sh
36
+ m365 pa app consent set --environment 4be50206-9576-4237-8b17-38d8aadfaa36 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d --bypass true
37
+ ```
38
+
39
+ Disables the bypass consent for the specified canvas app
40
+
41
+ ```sh
42
+ m365 pa app consent set --environment 4be50206-9576-4237-8b17-38d8aadfaa36 --name 3989cb59-ce1a-4a5c-bb78-257c5c39381d --bypass false --confirm
43
+ ```
44
+
45
+ ## Response
46
+
47
+ The command won't return a response on success.
@@ -30,7 +30,7 @@ m365 planner plan get [options]
30
30
  ## Remarks
31
31
 
32
32
  !!! attention
33
- When using `rosterId`, the command is based on an API that is currently in preview and is subject to change once the API reached general availability.
33
+ When using `rosterId`, the command is based on an API that is currently in preview and is subject to change once the API reached general availability.
34
34
 
35
35
  ## Examples
36
36
 
@@ -24,7 +24,7 @@ m365 planner plan list [options]
24
24
  ## Remarks
25
25
 
26
26
  !!! attention
27
- When using rosterId, the command is based on an API that is currently in preview and is subject to change once the API reached general availability.
27
+ When using rosterId, the command is based on an API that is currently in preview and is subject to change once the API reached general availability.
28
28
 
29
29
  ## Examples
30
30
 
@@ -71,5 +71,6 @@ m365 planner roster add
71
71
  assignedSensitivityLabel | null
72
72
  ```
73
73
 
74
- ## Additional information
74
+ ## More information
75
+
75
76
  Rosters are a new type of container for Microsoft Planner plans. This enables users to create a Planner plan without the need to create a new Microsoft 365 group (with a mailbox, SharePoint site, ...). Access to Roster-contained plans is controlled by the members on the Roster. A Planner Roster can contain only 1 plan.
@@ -68,6 +68,6 @@ m365 planner roster get --id tYqYlNd6eECmsNhN_fcq85cAGAnd
68
68
  assignedSensitivityLabel | null
69
69
  ```
70
70
 
71
- ## Additional information
71
+ ## More information
72
72
 
73
73
  Rosters are a new type of container for Microsoft Planner plans. This enables users to create a Planner plan without the need to create a new Microsoft 365 group (with a mailbox, SharePoint site, ...). Access to Roster-contained plans is controlled by the members on the Roster. A Planner Roster can contain only 1 plan.
@@ -44,5 +44,6 @@ m365 planner roster remove --id tYqYlNd6eECmsNhN_fcq85cAGAnd --confirm
44
44
 
45
45
  The command won't return a response on success.
46
46
 
47
- ## Additional information
47
+ ## More information
48
+
48
49
  Rosters are a new type of container for Microsoft Planner plans. This enables users to create a Planner plan without the need to create a new Microsoft 365 group (with a mailbox, SharePoint site, ...). Access to Roster-contained plans is controlled by the members on the Roster. A Planner Roster can contain only 1 plan.
@@ -8,12 +8,6 @@ Retrieve the specified planner task
8
8
  m365 planner task get [options]
9
9
  ```
10
10
 
11
- ## Alias
12
-
13
- ```sh
14
- m365 planner task details get [options]
15
- ```
16
-
17
11
  ## Options
18
12
 
19
13
  `-i, --id [id]`
@@ -335,7 +335,7 @@ m365 planner task set --id "2Vf8JHgsBUiIf-nuvBtv-ZgAAYw2" --percentComplete 50
335
335
  checklist | {}
336
336
  ```
337
337
 
338
- ## Additional information
338
+ ## More information
339
339
 
340
340
  - Using order hints in Planner: [https://docs.microsoft.com/graph/api/resources/planner-order-hint-format?view=graph-rest-1.0](https://docs.microsoft.com/graph/api/resources/planner-order-hint-format?view=graph-rest-1.0)
341
341
  - Applied categories in Planner: [https://docs.microsoft.com/graph/api/resources/plannerappliedcategories?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/plannerappliedcategories?view=graph-rest-1.0)