@pnp/cli-microsoft365 5.3.0 → 5.4.0-beta.0f3627d

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 (127) hide show
  1. package/.devcontainer/Dockerfile +1 -1
  2. package/.eslintrc.js +1 -0
  3. package/dist/m365/aad/commands/app/app-set.js +4 -1
  4. package/dist/m365/aad/commands/o365group/o365group-conversation-post-list.js +4 -19
  5. package/dist/m365/aad/commands/o365group/o365group-get.js +3 -9
  6. package/dist/m365/base/PlannerCommand.js +10 -0
  7. package/dist/m365/flow/commands/flow-export.js +3 -3
  8. package/dist/m365/planner/commands/bucket/bucket-add.js +4 -16
  9. package/dist/m365/planner/commands/bucket/bucket-get.js +5 -19
  10. package/dist/m365/planner/commands/bucket/bucket-list.js +4 -17
  11. package/dist/m365/planner/commands/bucket/bucket-remove.js +6 -20
  12. package/dist/m365/planner/commands/bucket/bucket-set.js +5 -19
  13. package/dist/m365/planner/commands/plan/plan-add.js +4 -16
  14. package/dist/m365/planner/commands/plan/plan-details-get.js +4 -19
  15. package/dist/m365/planner/commands/plan/plan-get.js +4 -17
  16. package/dist/m365/planner/commands/plan/plan-list.js +4 -17
  17. package/dist/m365/planner/commands/task/task-add.js +4 -16
  18. package/dist/m365/planner/commands/task/task-checklistitem-add.js +89 -0
  19. package/dist/m365/planner/commands/task/{task-details-get.js → task-checklistitem-list.js} +21 -13
  20. package/dist/m365/planner/commands/task/task-checklistitem-remove.js +85 -0
  21. package/dist/m365/planner/commands/task/task-get.js +61 -34
  22. package/dist/m365/planner/commands/task/task-list.js +4 -16
  23. package/dist/m365/planner/commands/task/task-reference-remove.js +125 -0
  24. package/dist/m365/planner/commands/task/task-remove.js +201 -0
  25. package/dist/m365/planner/commands/task/task-set.js +4 -16
  26. package/dist/m365/planner/commands/tenant/tenant-settings-list.js +33 -0
  27. package/dist/m365/planner/commands.js +8 -2
  28. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002009_DEVDEP_microsoft_sp_tslint_rules.js +2 -2
  29. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002018_DEVDEP_microsoft_rush_stack_compiler_3_9.js +2 -2
  30. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002020_DEVDEP_microsoft_rush_stack_compiler_4_5.js +17 -0
  31. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002021_DEVDEP_rushstack_eslint_config.js +14 -0
  32. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002022_DEVDEP_microsoft_eslint_plugin_spfx.js +14 -0
  33. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002023_DEVDEP_microsoft_eslint_config_spfx.js +14 -0
  34. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002024_DEVDEP_eslint.js +14 -0
  35. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002025_DEVDEP_eslint_plugin_react_hooks.js +18 -0
  36. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN015008_FILE_eslintrc_js.js +14 -0
  37. package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.15.0-beta.6.js → upgrade-1.15.0-rc.0.js} +49 -25
  38. package/dist/m365/spfx/commands/project/project-upgrade.js +1 -1
  39. package/dist/m365/spo/commands/contenttype/contenttype-add.js +1 -1
  40. package/dist/m365/spo/commands/contenttype/contenttype-field-remove.js +1 -1
  41. package/dist/m365/spo/commands/contenttype/contenttype-get.js +1 -1
  42. package/dist/m365/spo/commands/eventreceiver/eventreceiver-get.js +3 -3
  43. package/dist/m365/spo/commands/eventreceiver/eventreceiver-list.js +102 -0
  44. package/dist/m365/spo/commands/field/field-add.js +1 -1
  45. package/dist/m365/spo/commands/field/field-get.js +5 -5
  46. package/dist/m365/spo/commands/field/field-list.js +3 -3
  47. package/dist/m365/spo/commands/field/field-remove.js +5 -5
  48. package/dist/m365/spo/commands/file/file-sharinginfo-get.js +1 -1
  49. package/dist/m365/spo/commands/list/list-contenttype-add.js +3 -3
  50. package/dist/m365/spo/commands/list/list-contenttype-default-set.js +2 -2
  51. package/dist/m365/spo/commands/list/list-contenttype-list.js +3 -3
  52. package/dist/m365/spo/commands/list/list-contenttype-remove.js +3 -3
  53. package/dist/m365/spo/commands/list/list-get.js +2 -2
  54. package/dist/m365/spo/commands/list/list-label-get.js +3 -3
  55. package/dist/m365/spo/commands/list/list-label-set.js +2 -2
  56. package/dist/m365/spo/commands/list/list-list.js +10 -1
  57. package/dist/m365/spo/commands/list/list-remove.js +2 -2
  58. package/dist/m365/spo/commands/list/list-roleinheritance-break.js +2 -2
  59. package/dist/m365/spo/commands/list/list-roleinheritance-reset.js +2 -2
  60. package/dist/m365/spo/commands/list/list-sitescript-get.js +3 -3
  61. package/dist/m365/spo/commands/list/list-view-add.js +6 -3
  62. package/dist/m365/spo/commands/list/list-view-field-add.js +2 -2
  63. package/dist/m365/spo/commands/list/list-view-field-remove.js +2 -2
  64. package/dist/m365/spo/commands/list/list-view-field-set.js +2 -2
  65. package/dist/m365/spo/commands/list/list-view-get.js +4 -4
  66. package/dist/m365/spo/commands/list/list-view-list.js +3 -3
  67. package/dist/m365/spo/commands/list/list-view-remove.js +3 -3
  68. package/dist/m365/spo/commands/list/list-view-set.js +3 -3
  69. package/dist/m365/spo/commands/list/list-webhook-add.js +3 -3
  70. package/dist/m365/spo/commands/list/list-webhook-get.js +3 -3
  71. package/dist/m365/spo/commands/list/list-webhook-list.js +5 -5
  72. package/dist/m365/spo/commands/list/list-webhook-remove.js +4 -4
  73. package/dist/m365/spo/commands/list/list-webhook-set.js +3 -3
  74. package/dist/m365/spo/commands/listitem/listitem-add.js +2 -2
  75. package/dist/m365/spo/commands/listitem/listitem-attachment-list.js +2 -2
  76. package/dist/m365/spo/commands/listitem/listitem-get.js +2 -2
  77. package/dist/m365/spo/commands/listitem/listitem-isrecord.js +2 -2
  78. package/dist/m365/spo/commands/listitem/listitem-list.js +31 -11
  79. package/dist/m365/spo/commands/listitem/listitem-record-declare.js +2 -2
  80. package/dist/m365/spo/commands/listitem/listitem-record-undeclare.js +2 -2
  81. package/dist/m365/spo/commands/listitem/listitem-remove.js +2 -2
  82. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +2 -2
  83. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +2 -2
  84. package/dist/m365/spo/commands/listitem/listitem-set.js +2 -2
  85. package/dist/m365/spo/commands/roledefinition/roledefinition-remove.js +82 -0
  86. package/dist/m365/spo/commands/site/site-remove.js +23 -37
  87. package/dist/m365/spo/commands.js +2 -0
  88. package/dist/m365/teams/commands/app/app-list.js +6 -20
  89. package/dist/m365/teams/commands/channel/channel-get.js +6 -19
  90. package/dist/m365/teams/commands/channel/channel-list.js +6 -18
  91. package/dist/m365/teams/commands/channel/channel-member-add.js +7 -18
  92. package/dist/m365/teams/commands/channel/channel-member-list.js +6 -19
  93. package/dist/m365/teams/commands/channel/channel-member-remove.js +6 -19
  94. package/dist/m365/teams/commands/channel/channel-member-set.js +6 -19
  95. package/dist/m365/teams/commands/tab/tab-get.js +6 -19
  96. package/dist/m365/teams/commands/team/team-add.js +2 -7
  97. package/dist/m365/teams/commands/team/team-get.js +6 -19
  98. package/dist/utils/aadGroup.js +57 -0
  99. package/dist/utils/index.js +2 -0
  100. package/dist/utils/validation.js +12 -2
  101. package/docs/docs/cmd/aad/app/app-set.md +1 -1
  102. package/docs/docs/cmd/file/file-list.md +4 -4
  103. package/docs/docs/cmd/planner/bucket/bucket-get.md +1 -1
  104. package/docs/docs/cmd/planner/bucket/bucket-remove.md +2 -2
  105. package/docs/docs/cmd/planner/bucket/bucket-set.md +5 -5
  106. package/docs/docs/cmd/planner/plan/plan-details-get.md +2 -2
  107. package/docs/docs/cmd/planner/plan/plan-get.md +4 -4
  108. package/docs/docs/cmd/planner/task/task-checklistitem-add.md +36 -0
  109. package/docs/docs/cmd/planner/task/task-checklistitem-list.md +24 -0
  110. package/docs/docs/cmd/planner/task/task-checklistitem-remove.md +36 -0
  111. package/docs/docs/cmd/planner/task/task-get.md +7 -9
  112. package/docs/docs/cmd/planner/task/task-list.md +2 -2
  113. package/docs/docs/cmd/planner/task/task-reference-remove.md +39 -0
  114. package/docs/docs/cmd/planner/task/task-remove.md +78 -0
  115. package/docs/docs/cmd/planner/task/task-set.md +2 -2
  116. package/docs/docs/cmd/planner/tenant/tenant-settings-list.md +28 -0
  117. package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
  118. package/docs/docs/cmd/spo/eventreceiver/eventreceiver-list.md +64 -0
  119. package/docs/docs/cmd/spo/file/file-checkout.md +1 -1
  120. package/docs/docs/cmd/spo/list/list-list.md +3 -0
  121. package/docs/docs/cmd/spo/list/list-view-add.md +13 -4
  122. package/docs/docs/cmd/spo/listitem/listitem-list.md +16 -10
  123. package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-break.md +2 -2
  124. package/docs/docs/cmd/spo/roledefinition/roledefinition-remove.md +36 -0
  125. package/npm-shrinkwrap.json +257 -1104
  126. package/package.json +25 -21
  127. package/docs/docs/cmd/planner/task/task-details-get.md +0 -24
@@ -17,10 +17,10 @@ m365 planner task set [options]
17
17
  : New title of the task.
18
18
 
19
19
  `--bucketId [bucketId]`
20
- : ID of the bucket to move the task to. Specify either `bucketId` or `bucketName` but not both.
20
+ : ID of the bucket to move the task to. Specify either `bucketId` or `bucketName` when using `title`.
21
21
 
22
22
  `--bucketName [bucketName]`
23
- : Name of the bucket to move the task to. The bucket needs to exist in the selected plan. Specify either `bucketId` or `bucketName` but not both.
23
+ : Name of the bucket to move the task to. The bucket needs to exist in the selected plan. Specify either `bucketId` or `bucketName` when using `title`.
24
24
 
25
25
  `--planId [planId]`
26
26
  : ID of the plan to which the bucket belongs to. Specify either `planId` or `planName` when using `bucketName`.
@@ -0,0 +1,28 @@
1
+ # planner tenant settings list
2
+
3
+ Lists the Microsoft Planner configuration of the tenant
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 planner tenant settings list [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ --8<-- "docs/cmd/_global.md"
14
+
15
+ ## Remarks
16
+
17
+ !!! important
18
+ To use this command you must be a global administrator.
19
+
20
+ After executing the command `planner tenant settings set`, it can take some time for all changes to propagate across the tenant. Because of this, executing this command right away can return some unexpected results.
21
+
22
+ ## Examples
23
+
24
+ Lists the Microsoft Planner settings of the tenant
25
+
26
+ ```sh
27
+ m365 planner tenant settings list
28
+ ```
@@ -32,7 +32,7 @@ m365 spfx project upgrade [options]
32
32
 
33
33
  ## Remarks
34
34
 
35
- The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.14.0). If you specify the `preview` option without a specific version, the command will upgrade your project to the latest preview version v1.15.0-beta.6.
35
+ The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.14.0). If you specify the `preview` option without a specific version, the command will upgrade your project to the latest preview version v1.15.0-rc.0.
36
36
 
37
37
  This command doesn't change your project files. Instead, it gives you a report with all steps necessary to upgrade your project to the specified version of the SharePoint Framework. Changing project files is error-prone, especially when it comes to updating your solution's code. This is why at this moment, this command produces a report that you can use yourself to perform the necessary updates and verify that everything is working as expected.
38
38
 
@@ -0,0 +1,64 @@
1
+ # spo eventreceiver list
2
+
3
+ Retrieves event receivers for the specified web, site or list.
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 spo eventreceiver list [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-u, --webUrl <webUrl>`
14
+ : The URL of the web for which to retrieve the event receivers.
15
+
16
+ `--listTitle [listTitle]`
17
+ : The title of the list for which to retrieve the event receivers, _if the event receivers should be retrieved from a list_.
18
+ Specify either `listTitle`, `listId` or `listUrl`.
19
+
20
+ `--listId [listId]`
21
+ : The id of the list for which to retrieve the event receivers, _if the event receivers should be retrieved from a list_.
22
+ Specify either `listTitle`, `listId` or `listUrl`.
23
+
24
+ `--listUrl [listUrl]`
25
+ : The url of the list for which to retrieve the event receivers, _if the event receivers should be retrieved from a list_.
26
+ Specify either `listTitle`, `listId` or `listUrl`.
27
+
28
+ `-s, --scope [scope]`
29
+ : The scope of which to retrieve the Event Receivers.
30
+ Can be either "site" or "web". Defaults to "web". Only applicable when not specifying any of the list properties.
31
+
32
+ --8<-- "docs/cmd/_global.md"
33
+
34
+ ## Examples
35
+
36
+ Retrieves event receivers in web _<https://contoso.sharepoint.com/sites/contoso-sales>_.
37
+
38
+ ```sh
39
+ m365 spo eventreceiver list --webUrl https://contoso.sharepoint.com/sites/contoso-sales
40
+ ```
41
+
42
+ Retrieves event receivers in site _<https://contoso.sharepoint.com/sites/contoso-sales>_.
43
+
44
+ ```sh
45
+ m365 spo eventreceiver list --webUrl https://contoso.sharepoint.com/sites/contoso-sales --scope site
46
+ ```
47
+
48
+ Retrieves event receivers for list with title _Events_ in web _<https://contoso.sharepoint.com/sites/contoso-sales>_.
49
+
50
+ ```sh
51
+ m365 spo eventreceiver list --webUrl https://contoso.sharepoint.com/sites/contoso-sales --listTitle Events
52
+ ```
53
+
54
+ Retrieves event receivers for list with ID _202b8199-b9de-43fd-9737-7f213f51c991_ in web _<https://contoso.sharepoint.com/sites/contoso-sales>_.
55
+
56
+ ```sh
57
+ m365 spo eventreceiver list --webUrl https://contoso.sharepoint.com/sites/contoso-sales --listId '202b8199-b9de-43fd-9737-7f213f51c991'
58
+ ```
59
+
60
+ Retrieves event receivers for list with url _/sites/contoso-sales/lists/Events_ in web _<https://contoso.sharepoint.com/sites/contoso-sales>_.
61
+
62
+ ```sh
63
+ m365 spo eventreceiver list --webUrl https://contoso.sharepoint.com/sites/contoso-sales --listUrl '/sites/contoso-sales/lists/Events'
64
+ ```
@@ -32,5 +32,5 @@ m365 spo file checkout --webUrl https://contoso.sharepoint.com/sites/project-x -
32
32
  Checks out file with server-relative url _/sites/project-x/documents/Test1.docx_ located in site _https://contoso.sharepoint.com/sites/project-x_
33
33
 
34
34
  ```sh
35
- m365 spo file checkout --webUrl https://contoso.sharepoint.com/sites/project-x --url '/sites/project-x/documents/Test1.docx'
35
+ m365 spo file checkout --webUrl https://contoso.sharepoint.com/sites/project-x --fileUrl '/sites/project-x/documents/Test1.docx'
36
36
  ```
@@ -13,6 +13,9 @@ m365 spo list list [options]
13
13
  `-u, --webUrl <webUrl>`
14
14
  : URL of the site where the lists to retrieve are located
15
15
 
16
+ `--executeWithLimitedPermissions`
17
+ : Use this option to execute this command with site member or visitor permissions. Not specifying this option will require site owner (or admin) permissions.
18
+
16
19
  --8<-- "docs/cmd/_global.md"
17
20
 
18
21
  ## Examples
@@ -26,7 +26,10 @@ m365 spo list view add [options]
26
26
  : Title of the view to be created for the list.
27
27
 
28
28
  `--fields <fields>`
29
- : Comma-separated list of **case-sensitive** internal names of the fields to add to the view.
29
+ : Comma-separated list of **case-sensitive** internal names of the fields to add to the view.
30
+
31
+ `--viewQuery [viewQuery]`
32
+ : XML representation of the list query for the underlying view.
30
33
 
31
34
  `--personal`
32
35
  : View will be created as personal view, if specified.
@@ -51,17 +54,23 @@ We recommend using the `paged` option. When specified, the view supports display
51
54
  Add a view called _All events_ to a list with specific title.
52
55
 
53
56
  ```sh
54
- spo list view add --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "My List" --title "All events" --fields "FieldName1,FieldName2,Created,Author,Modified,Editor" --paged
57
+ m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "My List" --title "All events" --fields "FieldName1,FieldName2,Created,Author,Modified,Editor" --paged
55
58
  ```
56
59
 
57
60
  Add a view as default view with title _All events_ to a list with a specific URL.
58
61
 
59
62
  ```sh
60
- spo list view add --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl "/Lists/MyList" --title "All events" --fields "FieldName1,Created" --paged --default
63
+ m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl "/Lists/MyList" --title "All events" --fields "FieldName1,Created" --paged --default
61
64
  ```
62
65
 
63
66
  Add a personal view called _All events_ to a list with a specific ID.
64
67
 
65
68
  ```sh
66
- spo list view add --webUrl https://contoso.sharepoint.com/sites/project-x --listId 00000000-0000-0000-0000-000000000000 --title "All events" --fields "FieldName1,Created" --paged --personal
69
+ m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/project-x --listId 00000000-0000-0000-0000-000000000000 --title "All events" --fields "FieldName1,Created" --paged --personal
70
+ ```
71
+
72
+ Add a view called _All events_ with defined filter and sorting.
73
+
74
+ ```sh
75
+ m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "My List" --title "All events" --fields "FieldName1" --viewQuery "<OrderBy><FieldRef Name='Created' Ascending='FALSE' /></OrderBy><Where><Eq><FieldRef Name='TextFieldName' /><Value Type='Text'>Field value</Value></Eq></Where>" --paged
67
76
  ```
@@ -13,11 +13,17 @@ m365 spo listitem list [options]
13
13
  `-u, --webUrl <webUrl>`
14
14
  : URL of the site from which the item should be retrieved
15
15
 
16
- `-i, --id [id]`
17
- : ID of the list to retrieve items from. Specify `id` or `title` but not both
16
+ `-i, --listId [listId]`
17
+ : ID of the list to retrieve items from. Specify `listId` or `listTitle` but not both
18
18
 
19
- `-t, --title [title]`
20
- : Title of the list from which to retrieve the item. Specify `id` or `title` but not both
19
+ `--id [id]`
20
+ : (deprecated. Use `listId` instead) ID of the list to retrieve items from. Specify `id` or `title` but not both
21
+
22
+ `-t, --listTitle [listTitle]`
23
+ : Title of the list to retrieve items from. Specify `listId` or `listTitle` but not both
24
+
25
+ `--title [title]`
26
+ : (deprecated. Use `listTitle` instead) Title of the list to retrieve items from. Specify `id` or `title` but not both
21
27
 
22
28
  `-q, --camlQuery [camlQuery]`
23
29
  : CAML query to use to query the list of items with
@@ -45,35 +51,35 @@ m365 spo listitem list [options]
45
51
  Get all items from a list named Demo List
46
52
 
47
53
  ```sh
48
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x
54
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x
49
55
  ```
50
56
 
51
57
  From a list named _Demo List_ get all items with title _Demo list item_ using a CAML query
52
58
 
53
59
  ```sh
54
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --camlQuery "<View><Query><Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Demo list item</Value></Eq></Where></Query></View>"
60
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --camlQuery "<View><Query><Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Demo list item</Value></Eq></Where></Query></View>"
55
61
  ```
56
62
 
57
63
  Get all items from a list with ID _935c13a0-cc53-4103-8b48-c1d0828eaa7f_
58
64
 
59
65
  ```sh
60
- m365 spo listitem list --id 935c13a0-cc53-4103-8b48-c1d0828eaa7f --webUrl https://contoso.sharepoint.com/sites/project-x
66
+ m365 spo listitem list --listId 935c13a0-cc53-4103-8b48-c1d0828eaa7f --webUrl https://contoso.sharepoint.com/sites/project-x
61
67
  ```
62
68
 
63
69
  Get all items from list named _Demo List_. For each item, retrieve the value of the _ID_, _Title_ and _Modified_ fields
64
70
 
65
71
  ```sh
66
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --fields "ID,Title,Modified"
72
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --fields "ID,Title,Modified"
67
73
  ```
68
74
 
69
75
  From a list named _Demo List_ get all items with title _Demo list item_ using an OData filter
70
76
 
71
77
  ```sh
72
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --filter "Title eq 'Demo list item'"
78
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --filter "Title eq 'Demo list item'"
73
79
  ```
74
80
 
75
81
  From a list named _Demo List_ get the second batch of 10 items
76
82
 
77
83
  ```sh
78
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --pageSize 10 --pageNumber 2
84
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --pageSize 10 --pageNumber 2
79
85
  ```
@@ -20,7 +20,7 @@ m365 spo listitem roleinheritance break [options]
20
20
  : ID of the list. Specify listId or listTitle but not both
21
21
 
22
22
  `-t, --listTitle [listTitle]`
23
- Title of the list. Specify listId or listTitle but not both
23
+ : Title of the list. Specify listId or listTitle but not both
24
24
 
25
25
  `-c, --clearExistingPermissions`
26
26
  : Set to clear existing roles from the list item
@@ -55,4 +55,4 @@ Break inheritance of list item _1_ in list with ID _202b8199-b9de-43fd-9737-7f21
55
55
 
56
56
  ```sh
57
57
  m365 spo listitem roleinheritance break --webUrl https://contoso.sharepoint.com/sites/project-x --listId 202b8199-b9de-43fd-9737-7f213f51c991 --id 1 --clearExistingPermissions
58
- ```
58
+ ```
@@ -0,0 +1,36 @@
1
+ # spo roledefinition remove
2
+
3
+ Removes the role definition from the specified site
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 spo roledefinition remove [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-u, --webUrl <webUrl>`
14
+ : URL of the site from which role should be removed
15
+
16
+ `-i, --id <id>`
17
+ : ID of the role definition to remove
18
+
19
+ `--confirm`
20
+ : Don't prompt for confirming removing the role definition
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Examples
25
+
26
+ Remove the role definition from site _https://contoso.sharepoint.com/sites/project-x_ with id _1_
27
+
28
+ ```sh
29
+ m365 spo roledefinition remove --webUrl https://contoso.sharepoint.com/sites/project-x --id 1
30
+ ```
31
+
32
+ Remove the role definition from site _https://contoso.sharepoint.com/sites/project-x_ with id _1_ and don't prompt for confirmation
33
+
34
+ ```sh
35
+ m365 spo roledefinition remove --webUrl https://contoso.sharepoint.com/sites/project-x --id 1 --confirm
36
+ ```