@pnp/cli-microsoft365 5.9.0-beta.86c5624 → 5.9.0-beta.8773bb6

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 (111) hide show
  1. package/.eslintrc.js +4 -2
  2. package/dist/Command.js +16 -2
  3. package/dist/m365/aad/commands/app/app-add.js +37 -13
  4. package/dist/m365/commands/status.js +6 -1
  5. package/dist/m365/outlook/commands/mail/mail-send.js +55 -31
  6. package/dist/m365/planner/commands/bucket/bucket-get.js +1 -1
  7. package/dist/m365/pp/commands/Environment.js +3 -0
  8. package/dist/m365/pp/commands/card/card-get.js +110 -0
  9. package/dist/m365/pp/commands/card/card-list.js +68 -0
  10. package/dist/m365/pp/commands/dataverse/dataverse-table-list.js +6 -12
  11. package/dist/m365/pp/commands/environment/environment-get.js +75 -0
  12. package/dist/m365/pp/commands/gateway/gateway-get.js +70 -0
  13. package/dist/m365/pp/commands/solution/solution-get.js +117 -0
  14. package/dist/m365/pp/commands.js +5 -0
  15. package/dist/m365/spfx/commands/project/project-doctor.js +4 -1
  16. package/dist/m365/spfx/commands/project/project-externalize.js +4 -1
  17. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010001_YORC_version.js +2 -1
  18. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010002_YORC_isCreatingSolution.js +2 -1
  19. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010003_YORC_packageManager.js +2 -1
  20. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010004_YORC_componentType.js +2 -1
  21. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010005_YORC_environment.js +2 -1
  22. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010006_YORC_framework.js +3 -2
  23. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010007_YORC_isDomainIsolated.js +2 -1
  24. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010008_YORC_nodeVersion.js +2 -1
  25. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010009_YORC_sdkVersions_microsoft_graph_client.js +56 -0
  26. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010010_YORC_sdkVersions_teams_js.js +56 -0
  27. package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.16.0-beta.1.js → upgrade-1.16.0-beta.2.js} +44 -28
  28. package/dist/m365/spfx/commands/project/project-upgrade.js +1 -1
  29. package/dist/m365/spfx/commands/spfx-doctor.js +3 -3
  30. package/dist/m365/spo/commands/contenttype/contenttype-add.js +82 -43
  31. package/dist/m365/spo/commands/contenttype/contenttype-field-remove.js +53 -21
  32. package/dist/m365/spo/commands/contenttype/contenttype-get.js +35 -14
  33. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +129 -0
  34. package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +168 -0
  35. package/dist/m365/spo/commands/list/list-contenttype-add.js +21 -18
  36. package/dist/m365/spo/commands/list/list-contenttype-default-set.js +59 -47
  37. package/dist/m365/spo/commands/list/list-contenttype-list.js +16 -8
  38. package/dist/m365/spo/commands/list/list-contenttype-remove.js +16 -8
  39. package/dist/m365/spo/commands/list/list-roleassignment-add.js +1 -1
  40. package/dist/m365/spo/commands/list/list-roleinheritance-break.js +14 -6
  41. package/dist/m365/spo/commands/list/list-roleinheritance-reset.js +15 -7
  42. package/dist/m365/spo/commands/list/list-webhook-add.js +19 -11
  43. package/dist/m365/spo/commands/list/list-webhook-get.js +17 -10
  44. package/dist/m365/spo/commands/list/list-webhook-list.js +23 -24
  45. package/dist/m365/spo/commands/list/list-webhook-remove.js +19 -11
  46. package/dist/m365/spo/commands/list/list-webhook-set.js +18 -10
  47. package/dist/m365/spo/commands/listitem/listitem-roleassignment-add.js +239 -0
  48. package/dist/m365/spo/commands/web/web-roleinheritance-break.js +100 -0
  49. package/dist/m365/spo/commands.js +4 -0
  50. package/dist/m365/teams/commands/channel/channel-add.js +9 -9
  51. package/dist/m365/todo/commands/list/list-get.js +89 -0
  52. package/dist/m365/todo/commands/task/task-add.js +55 -3
  53. package/dist/m365/todo/commands/task/task-set.js +53 -1
  54. package/dist/m365/todo/commands.js +1 -0
  55. package/docs/docs/_clisettings.md +19 -0
  56. package/docs/docs/cmd/outlook/mail/mail-send.md +13 -0
  57. package/docs/docs/cmd/planner/bucket/bucket-add.md +29 -0
  58. package/docs/docs/cmd/planner/bucket/bucket-get.md +29 -0
  59. package/docs/docs/cmd/planner/bucket/bucket-list.md +30 -0
  60. package/docs/docs/cmd/planner/bucket/bucket-remove.md +4 -0
  61. package/docs/docs/cmd/planner/bucket/bucket-set.md +4 -0
  62. package/docs/docs/cmd/planner/plan/plan-add.md +123 -0
  63. package/docs/docs/cmd/planner/plan/plan-get.md +75 -0
  64. package/docs/docs/cmd/planner/plan/plan-list.md +45 -0
  65. package/docs/docs/cmd/planner/plan/plan-remove.md +4 -0
  66. package/docs/docs/cmd/pp/card/card-get.md +51 -0
  67. package/docs/docs/cmd/pp/card/card-list.md +33 -0
  68. package/docs/docs/cmd/pp/environment/environment-get.md +38 -0
  69. package/docs/docs/cmd/pp/gateway/gateway-get.md +24 -0
  70. package/docs/docs/cmd/pp/solution/solution-get.md +51 -0
  71. package/docs/docs/cmd/spfx/project/project-rename.md +1 -14
  72. package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
  73. package/docs/docs/cmd/spo/contenttype/contenttype-add.md +20 -2
  74. package/docs/docs/cmd/spo/contenttype/contenttype-field-remove.md +22 -4
  75. package/docs/docs/cmd/spo/contenttype/contenttype-get.md +21 -3
  76. package/docs/docs/cmd/spo/eventreceiver/eventreceiver-get.md +2 -2
  77. package/docs/docs/cmd/spo/eventreceiver/eventreceiver-remove.md +2 -2
  78. package/docs/docs/cmd/spo/file/file-roleinheritance-break.md +54 -0
  79. package/docs/docs/cmd/spo/folder/folder-roleassignment-remove.md +57 -0
  80. package/docs/docs/cmd/spo/list/list-contenttype-add.md +16 -7
  81. package/docs/docs/cmd/spo/list/list-contenttype-default-set.md +16 -7
  82. package/docs/docs/cmd/spo/list/list-contenttype-list.md +15 -6
  83. package/docs/docs/cmd/spo/list/list-contenttype-remove.md +17 -8
  84. package/docs/docs/cmd/spo/list/list-roleinheritance-break.md +11 -8
  85. package/docs/docs/cmd/spo/list/list-roleinheritance-reset.md +14 -5
  86. package/docs/docs/cmd/spo/list/list-webhook-add.md +15 -16
  87. package/docs/docs/cmd/spo/list/list-webhook-get.md +16 -7
  88. package/docs/docs/cmd/spo/list/list-webhook-list.md +16 -7
  89. package/docs/docs/cmd/spo/list/list-webhook-remove.md +12 -10
  90. package/docs/docs/cmd/spo/list/list-webhook-set.md +14 -12
  91. package/docs/docs/cmd/spo/listitem/listitem-roleassignment-add.md +81 -0
  92. package/docs/docs/cmd/spo/web/web-roleinheritance-break.md +44 -0
  93. package/docs/docs/cmd/teams/channel/channel-add.md +4 -4
  94. package/docs/docs/cmd/tenant/id/id-get.md +20 -0
  95. package/docs/docs/cmd/tenant/report/report-activeusercounts.md +35 -0
  96. package/docs/docs/cmd/tenant/report/report-activeuserdetail.md +49 -0
  97. package/docs/docs/cmd/tenant/report/report-office365activationcounts.md +32 -0
  98. package/docs/docs/cmd/tenant/report/report-office365activationsusercounts.md +30 -0
  99. package/docs/docs/cmd/tenant/report/report-office365activationsuserdetail.md +36 -0
  100. package/docs/docs/cmd/tenant/report/report-servicesusercounts.md +41 -0
  101. package/docs/docs/cmd/tenant/security/security-alerts-list.md +105 -0
  102. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-get.md +87 -0
  103. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-list.md +91 -0
  104. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-get.md +62 -0
  105. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-list.md +51 -0
  106. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-get.md +64 -0
  107. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-list.md +52 -0
  108. package/docs/docs/cmd/todo/list/list-get.md +61 -0
  109. package/docs/docs/cmd/todo/task/task-add.md +32 -5
  110. package/docs/docs/cmd/todo/task/task-set.md +29 -2
  111. package/package.json +12 -4
@@ -29,6 +29,58 @@ Get service update messages for Microsoft Teams
29
29
  m365 tenant serviceannouncement message list --service "Microsoft Teams"
30
30
  ```
31
31
 
32
+ ## Response
33
+
34
+ === "JSON"
35
+
36
+ ```json
37
+ [
38
+ {
39
+ "startDateTime": "2021-07-08T00:37:37Z",
40
+ "endDateTime": "2022-12-09T07:00:00Z",
41
+ "lastModifiedDateTime": "2022-06-07T20:21:06.713Z",
42
+ "title": "(Updated) Microsoft Lists: Custom list templates",
43
+ "id": "MC267581",
44
+ "category": "planForChange",
45
+ "severity": "normal",
46
+ "tags": [
47
+ "Updated message",
48
+ "New feature",
49
+ "User impact",
50
+ "Admin impact"
51
+ ],
52
+ "isMajorChange": false,
53
+ "actionRequiredByDateTime": null,
54
+ "services": [
55
+ "SharePoint Online"
56
+ ],
57
+ "expiryDateTime": null,
58
+ "hasAttachments": false,
59
+ "viewPoint": null,
60
+ "details": [],
61
+ "body": {
62
+ "contentType": "html",
63
+ "content": "<p>Updated June 7, 2022: We have updated the rollout timeline below. Thank you for your patience.</p><p>This new feature will support the addition of custom list templates from your organization alongside the ready-made templates Microsoft provides to make it easy to get started tracking and managing information.</p> \\\n<p>[Key points]</p> \\\n<ul> \\\n<li>Microsoft 365 <a href=\"https://www.microsoft.com/microsoft-365/roadmap?filters=&amp;searchterms=70753\" target=\"_blank\">Roadmap ID: 70753</a></li> \\\n<li>Timing:<ul><li>Targeted release (entire org): Complete</li><li>Standard release: will roll out in mid-September (previously mid-May) and be complete by early November (previously mid-June)</li></ul></li> \\\n<li>Roll-out: tenant level </li> \\\n<li>Control type: user control / admin control</li> \\\n<li>Action: review, assess and educate</li></ul><p>[How this will affect your organization]</p><p>This feature will give organizations the ability to create their own custom list templates with custom formatting and schema. It will also empower organizations to create repeatable solutions within the same Microsoft Lists infrastructure (including list creation in SharePoint, Teams, and within the Lists app itself).</p><p>End-user impact:</p>\\\n<p>Visual updates to the list creation dialog and the addition of a<i> From your organization</i> tab when creating a new list. This new tab is where your custom list templates appear alongside the ready-made templates from Microsoft.</p>\\\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81n?ver=c93f\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"><br>\\\nAdmin impact:</p>\\\n<p>Custom list templates can only be uploaded by a SharePoint administrator for Microsoft 365 by using PowerShell cmdlets. For consistency, the process of defining and uploading custom list templates is like the custom site templates experience.</p><p>To define and upload custom list templates, admins will use the following site template PowerShell cmdlets:</p><ul><li>Use the <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/get-spositescriptfromlist?view=sharepoint-ps\" target=\"_blank\">Get-SPOSiteScriptFromList</a> cmdlet to extract the site script from any list</li><li>Run <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/add-spositescript?view=sharepoint-ps\" target=\"_blank\">Add-SPOSiteScript</a> and <b style=\"\">Add-SPOListDesign</b> to add the custom list template to your organization.</li><li>Scope who sees the template by using <a href=\"https://docs.microsoft.com/powershell/module/sharepoint-online/grant-spositedesignrights?view=sharepoint-ps\" target=\"_blank\">Grant-SPOSiteDesignRights</a> (Optional).</li></ul><p>The visual updates for this feature will be seen by end-users in the updated user interface (UI) when creating a list.</p><p>The <i>From your organization</i> tab will be empty until your organization defines and publishes custom list templates.</p>\\\n<p><img src=\"https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE4P81t?ver=70be\" alt=\"Your custom list templates along with Microsoft ready-made templates\" width=\"550\"></p><p>[What you need to do to prepare]</p><p>You might want to notify your users about this new capability and update your training and documentation as appropriate.</p>\\\n<p>Learn more:</p><ul><li><a href=\"https://docs.microsoft.com/sharepoint/dev/declarative-customization/site-design-overview\" target=\"_blank\">PowerShell Cmdlets documentation for custom list templates</a></li><li> <a href=\"https://docs.microsoft.com/sharepoint/lists-custom-template\" target=\"_blank\">Creating custom list templates</a></li></ul>"
64
+ }
65
+ }
66
+ ]
67
+ ```
68
+
69
+ === "Text"
70
+
71
+ ```text
72
+ id title
73
+ -------- ------------------------------------------------
74
+ MC267581 (Updated) Microsoft Lists: Custom list templates
75
+ ```
76
+
77
+ === "CSV"
78
+
79
+ ```csv
80
+ id,title
81
+ MC267581,(Updated) Microsoft Lists: Custom list templates
82
+ ```
83
+
32
84
  ## More information
33
85
 
34
86
  - List serviceAnnouncement messages: [https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-messages](https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-messages)
@@ -0,0 +1,61 @@
1
+ # todo list get
2
+
3
+ Returns a specific Microsoft To Do task list
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 todo list get [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-i, --id [id]`
14
+ : The id of the list. Specify either `id` or `name` but not both.
15
+
16
+ `-n, --name [name]`
17
+ : The name of the list. Specify either `id` or `name` but not both.
18
+
19
+ --8<-- "docs/cmd/_global.md"
20
+
21
+ ## Examples
22
+
23
+ Get a specific Microsoft To Do task list based on id
24
+
25
+ ```sh
26
+ m365 todo list get --id "AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA="
27
+ ```
28
+
29
+ Get a specific Microsoft To Do task list based on name
30
+
31
+ ```sh
32
+ m365 todo list get --name "Task list"
33
+ ```
34
+
35
+ ## Response
36
+
37
+ === "JSON"
38
+
39
+ ```json
40
+ {
41
+ "displayName": "Task list",
42
+ "isOwner": true,
43
+ "isShared": false,
44
+ "wellknownListName": "defaultList",
45
+ "id": "AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA="
46
+ }
47
+ ```
48
+
49
+ === "Text"
50
+
51
+ ```text
52
+ displayName : Task list
53
+ id : AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
54
+ ```
55
+
56
+ === "CSV"
57
+
58
+ ```csv
59
+ displayName,id
60
+ Task list,AAMkADY3NmM5ZjhiLTc3M2ItNDg5ZC1iNGRiLTAyM2FmMjVjZmUzOQAuAAAAAAAZ1T9YqZrvS66KkevskFAXAQBEMhhN5VK7RaaKpIc1KhMKAAAZ3e1AAAA=
61
+ ```
@@ -11,26 +11,53 @@ m365 todo task add [options]
11
11
  ## Options
12
12
 
13
13
  `-t, --title <title>`
14
- : The title of the task
14
+ : The title of the task.
15
15
 
16
16
  `--listName [listName]`
17
- : The name of the list in which to create the task. Specify either `listName` or `listId` but not both
17
+ : The name of the list in which to create the task. Specify either `listName` or `listId` but not both.
18
18
 
19
19
  `--listId [listId]`
20
- : The id of the list in which to create the task. Specify either `listName` or `listId` but not both
20
+ : The id of the list in which to create the task. Specify either `listName` or `listId` but not both.
21
+
22
+ `--bodyContent [bodyContent]`
23
+ : The body content of the task. In the UI this is called 'notes'.
24
+
25
+ `--bodyContentType [bodyContentType]`
26
+ : The type of the body content. Possible values are `text` and `html`. Default is `text`.
27
+
28
+ `--dueDateTime [dueDateTime]`
29
+ : The date when the task is due. This should be defined as a valid ISO 8601 string in the UTC time zone. Only date value is needed, time value is always ignored.
30
+
31
+ `--importance [importance]`
32
+ : The importance of the task. Possible values are: `low`, `normal`, `high`. Default is `normal`.
33
+
34
+ `--reminderDateTime [reminderDateTime]`
35
+ : The date and time for a reminder alert of the task to occur. This should be defined as a valid ISO 8601 string in the UTC time zone.
21
36
 
22
37
  --8<-- "docs/cmd/_global.md"
23
38
 
24
39
  ## Examples
25
40
 
26
- Add a task with title _New task_ to Microsoft To Do tasks list with the name _My task list_
41
+ Add a task to Microsoft To Do tasks list with with a specific name
27
42
 
28
43
  ```sh
29
44
  m365 todo task add --title "New task" --listName "My task list"
30
45
  ```
31
46
 
32
- Add a task with title _New task_ to Microsoft To Do tasks list with the id `AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA==`
47
+ Add a task to a Microsoft To Do tasks list with a specific id
33
48
 
34
49
  ```sh
35
50
  m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA=="
36
51
  ```
52
+
53
+ Create a new task with bodyContent and reminder and flag it as important
54
+
55
+ ```sh
56
+ m365 todo task add --title "New task" --listName "My task list" --bodyContent "I should not forget this" --reminderDateTime 2023-01-01T12:00:00Z --importance high
57
+ ```
58
+
59
+ Create a new task with a specific due date
60
+
61
+ ```sh
62
+ m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA==" --dueDateTime 2023-01-01
63
+ ```
@@ -25,18 +25,45 @@ m365 todo task set [options]
25
25
  `--listId [listId]`
26
26
  : The id of the task list in which the task exists. Specify either `listName` or `listId`, not both
27
27
 
28
+ `--bodyContent [bodyContent]`
29
+ : The body content of the task. In the UI this is called 'notes'.
30
+
31
+ `--bodyContentType [bodyContentType]`
32
+ : The type of the body content. Possible values are `text` and `html`. Default is `text`.
33
+
34
+ `--importance [importance]`
35
+ : The importance of the task. Possible values are: `low`, `normal`, `high`.
36
+
37
+ `--dueDateTime [dueDateTime]`
38
+ : The date and time when the task is due. This should be defined as a valid ISO 8601 string in the UTC time zone. Only date value is needed, time value is always ignored.
39
+
40
+ `--reminderDateTime [reminderDateTime]`
41
+ : The date and time for a reminder alert of the task to occur. This should be defined as a valid ISO 8601 string in the UTC time zone.
42
+
28
43
  --8<-- "docs/cmd/_global.md"
29
44
 
30
45
  ## Examples
31
46
 
32
- Update a task with title _New task_ to _Update doco_ in Microsoft To Do tasks list with the name _My task list_
47
+ Update a task with title _New task_ to _Update doco_ in Microsoft To Do tasks list with a specific name
33
48
 
34
49
  ```sh
35
50
  m365 todo task set --id "AAMkADU3Y2E0OTMxLTllYTQtNGFlZS1hZGM0LWI1NjZjY2FhM2RhMABGAAAAAADhr7P77n9xS6PdtDemRwpHBwCin1tvQMXzRKN1hQDz2S3VAAAXXsleAACin1tvQMXzRKN1hQDz2S3VAAAXXzr9AAA=" --title "Update doco" --listName "My task list"
36
51
  ```
37
52
 
38
- Update a task with status from _notStarted_ to _inProgress_ in Microsoft To Do tasks list with the name _My task list_
53
+ Update a task with status from _notStarted_ to _inProgress_ in Microsoft To Do tasks list with a specific name
39
54
 
40
55
  ```sh
41
56
  m365 todo task set --id "AAMkADU3Y2E0OTMxLTllYTQtNGFlZS1hZGM0LWI1NjZjY2FhM2RhMABGAAAAAADhr7P77n9xS6PdtDemRwpHBwCin1tvQMXzRKN1hQDz2S3VAAAXXsleAACin1tvQMXzRKN1hQDz2S3VAAAXXzr9AAA=" --status "inProgress" --listName "My task list"
42
57
  ```
58
+
59
+ Update a task with bodyContent and reminder and flag it as important in Microsoft To Do tasks list with a specific name
60
+
61
+ ```sh
62
+ m365 todo task set --id "AAMkADU3Y2E0OTMxLTllYTQtNGFlZS1hZGM0LWI1NjZjY2FhM2RhMABGAAAAAADhr7P77n9xS6PdtDemRwpHBwCin1tvQMXzRKN1hQDz2S3VAAAXXsleAACin1tvQMXzRKN1hQDz2S3VAAAXXzr9AAA=" --listName "My task list" --bodyContent "I should not forget this" --reminderDateTime 2023-01-01T12:00:00Z --importance high
63
+ ```
64
+
65
+ Update a task with due date in Microsoft To Do tasks list with list id
66
+
67
+ ```sh
68
+ m365 todo task set --id "AAMkADU3Y2E0OTMxLTllYTQtNGFlZS1hZGM0LWI1NjZjY2FhM2RhMABGAAAAAADhr7P77n9xS6PdtDemRwpHBwCin1tvQMXzRKN1hQDz2S3VAAAXXsleAACin1tvQMXzRKN1hQDz2S3VAAAXXzr9AAA=" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA==" --dueDateTime 2023-01-01
69
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "5.9.0-beta.86c5624",
3
+ "version": "5.9.0-beta.8773bb6",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -101,7 +101,7 @@
101
101
  "contributors": [
102
102
  "Abhishek K M <67158080+Sync271@users.noreply.github.com>",
103
103
  "Ågren, Simon <simon.agren@sogeti.com>",
104
- "Akash Karda <akashkarda@gmail.com>",
104
+ "Ahlawat, Priyanshu <priyanshuahlawat009@gmail.com>",
105
105
  "Albany, Bruce <bruce.albany@gmail.com>",
106
106
  "Auckloo, Reshmee <reshmee011@gmail.com>",
107
107
  "Balasubramaniam, Jayakumar <jayakumar@live.in>",
@@ -116,10 +116,11 @@
116
116
  "Calabro, David <davej.calabro@gmail.com>",
117
117
  "Choudhary, Karnail Singh <pradhankarnail@gmail.com>",
118
118
  "Connell, Andrew <me@andrewconnell.com>",
119
- "Conor O'Callaghan <brioscaibriste@gmail.com>",
119
+ "De Cleyre, Nico <nico.de.cleyre@gmail.com>",
120
120
  "Deshpande, Vardhaman <vardhaman.rd@gmail.com>",
121
121
  "Dyjas, Robert <15113729+robdy@users.noreply.github.com>",
122
122
  "Faleel, Mohamed Ashiq <ashiqf@gmail.com>",
123
+ "Flores, Gaston <gaston.flrs@gmail.com>",
123
124
  "Ford, Lee <fordyman@gmail.com>",
124
125
  "Freese, Luise <49960482+LuiseFreese@users.noreply.github.com>",
125
126
  "Georgiev, Velin <velin.georgiev@gmail.com>",
@@ -133,8 +134,8 @@
133
134
  "Högberg, Joakim <joakim.hogberg@bravero.se>",
134
135
  "Hvam, Allan <ahp@delegate.dk>",
135
136
  "Jaakke, Robert <robert.jaakke@mavention.nl>",
136
- "John Rafael <dragonwood0@protonmail.com>",
137
137
  "Kailasam, Balamurugan <kshsbala@engineer.com>",
138
+ "Karda, Akash <akashkarda@gmail.com>",
138
139
  "Kasireddy, Prasad <prasad.gietcse@gmail.com>",
139
140
  "Keijzers, Paul <KbWorks@users.noreply.github.com>",
140
141
  "Kelkar, Vipul <vipul.kelkar@outlook.com>",
@@ -156,7 +157,9 @@
156
157
  "Mücklisch, Steve <steve.muecklisch@gmail.com>",
157
158
  "Nachan, Nanddeep <nanddeepnachan@gmail.com>",
158
159
  "Nachan, Smita <smita.nachan@gmail.com>",
160
+ "Nadir, Daniaal <daniaal1030@gmail.com>",
159
161
  "Nikolić, Aleksandar <alexandair@live.com>",
162
+ "O'Callaghan, Conor <brioscaibriste@gmail.com>",
160
163
  "Otto <berot3@gmail.com>",
161
164
  "Pandey, Vividh <vividh.pandey.13@gmail.com>",
162
165
  "Patil, Atharva <atharvapatil19202@gmail.com>",
@@ -164,12 +167,16 @@
164
167
  "Powney, Mark <powney.mark@outlook.com>",
165
168
  "pramod74 <pramod.lumb@gmail.com>",
166
169
  "Priem, Mark <mark.priem@outlook.com>",
170
+ "Rafael, John <dragonwood0@protonmail.com>",
167
171
  "Raju, Arnie <arnie.raju@thesolutioncollective.com.au>",
168
172
  "Ramalho, David <dramalho@storm.ie>",
173
+ "Rathi, Tanmay <tanmay_rathi@intuit.com>",
169
174
  "Reekmans, Yannick <reekmans.yannick@gmail.com>",
175
+ "Raghwendra Rishabh <rishabhraghwendra2002@gmail.com>",
170
176
  "Romano, Rodrigo <rodrigo@rodrigoromano.net>",
171
177
  "Romão, Douglas <douglas.romao@trentim.com>",
172
178
  "Rozinov, Roman <roman.rozinov@sogeti.com>",
179
+ "Saatçi, Hüseyin <huseyins@comodo.net>",
173
180
  "Schaeflein, Paul <paul@schaeflein.net>",
174
181
  "Schot, Albert-Jan <appie@digiwijs.nl>",
175
182
  "Schouten, Robert <robert.schouten@wortell.nl>",
@@ -182,6 +189,7 @@
182
189
  "Sitaraman, Rajesh <rajesh.sitaraman@outlook.com>",
183
190
  "Sittler, Laurent <laurent.sittler@lsonline.fr>",
184
191
  "Skelly, Pete <peteskelly@gmail.com>",
192
+ "Solazzi, Riccardo <rick.zal239@gmail.com>",
185
193
  "Sotelo, Aaron <soteloaaron16@gmail.com>",
186
194
  "strafe <strafe@users.noreply.github.com>",
187
195
  "Struyf, Elio <info@estruyf.be>",