@pnp/cli-microsoft365 5.9.0-beta.1e08e6c → 5.9.0-beta.1f313f7

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 (89) hide show
  1. package/dist/Command.js +16 -2
  2. package/dist/m365/commands/status.js +6 -1
  3. package/dist/m365/spfx/commands/project/project-doctor.js +4 -1
  4. package/dist/m365/spfx/commands/project/project-externalize.js +4 -1
  5. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010001_YORC_version.js +2 -1
  6. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010002_YORC_isCreatingSolution.js +2 -1
  7. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010003_YORC_packageManager.js +2 -1
  8. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010004_YORC_componentType.js +2 -1
  9. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010005_YORC_environment.js +2 -1
  10. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010006_YORC_framework.js +3 -2
  11. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010007_YORC_isDomainIsolated.js +2 -1
  12. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010008_YORC_nodeVersion.js +2 -1
  13. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010009_YORC_sdkVersions_microsoft_graph_client.js +56 -0
  14. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN010010_YORC_sdkVersions_teams_js.js +56 -0
  15. package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.16.0-beta.1.js → upgrade-1.16.0-beta.2.js} +44 -28
  16. package/dist/m365/spfx/commands/project/project-upgrade.js +1 -1
  17. package/dist/m365/spfx/commands/spfx-doctor.js +3 -3
  18. package/dist/m365/spo/commands/contenttype/contenttype-add.js +82 -43
  19. package/dist/m365/spo/commands/contenttype/contenttype-field-remove.js +53 -21
  20. package/dist/m365/spo/commands/contenttype/contenttype-get.js +35 -14
  21. package/dist/m365/spo/commands/field/field-add.js +26 -1
  22. package/dist/m365/spo/commands/field/field-set.js +23 -13
  23. package/dist/m365/spo/commands/list/list-roleassignment-add.js +1 -1
  24. package/dist/m365/spo/commands/list/list-webhook-get.js +2 -3
  25. package/dist/m365/spo/commands/listitem/listitem-add.js +24 -14
  26. package/dist/m365/spo/commands/listitem/listitem-attachment-list.js +18 -8
  27. package/dist/m365/spo/commands/listitem/listitem-get.js +18 -8
  28. package/dist/m365/spo/commands/listitem/listitem-isrecord.js +20 -10
  29. package/dist/m365/spo/commands/listitem/listitem-list.js +27 -11
  30. package/dist/m365/spo/commands/listitem/listitem-record-declare.js +19 -12
  31. package/dist/m365/spo/commands/listitem/listitem-record-undeclare.js +24 -21
  32. package/dist/m365/spo/commands/listitem/listitem-remove.js +19 -11
  33. package/dist/m365/spo/commands/listitem/listitem-roleassignment-add.js +239 -0
  34. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +13 -5
  35. package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +14 -6
  36. package/dist/m365/spo/commands/listitem/listitem-set.js +52 -44
  37. package/dist/m365/spo/commands/web/web-roleinheritance-break.js +100 -0
  38. package/dist/m365/spo/commands.js +2 -0
  39. package/dist/m365/todo/commands/list/list-get.js +89 -0
  40. package/dist/m365/todo/commands/task/task-get.js +108 -0
  41. package/dist/m365/todo/commands.js +2 -0
  42. package/docs/docs/cmd/planner/bucket/bucket-add.md +29 -0
  43. package/docs/docs/cmd/planner/bucket/bucket-get.md +29 -0
  44. package/docs/docs/cmd/planner/bucket/bucket-list.md +30 -0
  45. package/docs/docs/cmd/planner/bucket/bucket-remove.md +4 -0
  46. package/docs/docs/cmd/planner/bucket/bucket-set.md +4 -0
  47. package/docs/docs/cmd/planner/plan/plan-add.md +123 -0
  48. package/docs/docs/cmd/planner/plan/plan-get.md +75 -0
  49. package/docs/docs/cmd/planner/plan/plan-list.md +45 -0
  50. package/docs/docs/cmd/planner/plan/plan-remove.md +4 -0
  51. package/docs/docs/cmd/spfx/project/project-rename.md +1 -14
  52. package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
  53. package/docs/docs/cmd/spo/contenttype/contenttype-add.md +20 -2
  54. package/docs/docs/cmd/spo/contenttype/contenttype-field-remove.md +22 -4
  55. package/docs/docs/cmd/spo/contenttype/contenttype-get.md +21 -3
  56. package/docs/docs/cmd/spo/field/field-add.md +20 -2
  57. package/docs/docs/cmd/spo/field/field-set.md +11 -2
  58. package/docs/docs/cmd/spo/list/list-webhook-get.md +1 -1
  59. package/docs/docs/cmd/spo/list/list-webhook-set.md +2 -2
  60. package/docs/docs/cmd/spo/listitem/listitem-add.md +11 -2
  61. package/docs/docs/cmd/spo/listitem/listitem-attachment-list.md +11 -2
  62. package/docs/docs/cmd/spo/listitem/listitem-get.md +11 -2
  63. package/docs/docs/cmd/spo/listitem/listitem-isrecord.md +12 -2
  64. package/docs/docs/cmd/spo/listitem/listitem-list.md +12 -3
  65. package/docs/docs/cmd/spo/listitem/listitem-record-declare.md +7 -4
  66. package/docs/docs/cmd/spo/listitem/listitem-record-undeclare.md +11 -2
  67. package/docs/docs/cmd/spo/listitem/listitem-remove.md +11 -2
  68. package/docs/docs/cmd/spo/listitem/listitem-roleassignment-add.md +81 -0
  69. package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-break.md +7 -4
  70. package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-reset.md +11 -2
  71. package/docs/docs/cmd/spo/listitem/listitem-set.md +7 -4
  72. package/docs/docs/cmd/spo/web/web-roleinheritance-break.md +44 -0
  73. package/docs/docs/cmd/tenant/id/id-get.md +20 -0
  74. package/docs/docs/cmd/tenant/report/report-activeusercounts.md +35 -0
  75. package/docs/docs/cmd/tenant/report/report-activeuserdetail.md +49 -0
  76. package/docs/docs/cmd/tenant/report/report-office365activationcounts.md +32 -0
  77. package/docs/docs/cmd/tenant/report/report-office365activationsusercounts.md +30 -0
  78. package/docs/docs/cmd/tenant/report/report-office365activationsuserdetail.md +36 -0
  79. package/docs/docs/cmd/tenant/report/report-servicesusercounts.md +41 -0
  80. package/docs/docs/cmd/tenant/security/security-alerts-list.md +105 -0
  81. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-get.md +87 -0
  82. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-health-list.md +91 -0
  83. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-get.md +62 -0
  84. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-healthissue-list.md +51 -0
  85. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-get.md +64 -0
  86. package/docs/docs/cmd/tenant/serviceannouncement/serviceannouncement-message-list.md +52 -0
  87. package/docs/docs/cmd/todo/list/list-get.md +61 -0
  88. package/docs/docs/cmd/todo/task/task-get.md +75 -0
  89. package/package.json +9 -6
@@ -28,3 +28,94 @@ Get the health report of all subscribed services for a tenant including the issu
28
28
  ```sh
29
29
  m365 tenant serviceannouncement health list --issues
30
30
  ```
31
+
32
+ ## Response
33
+
34
+ ### Standard response
35
+
36
+ === "JSON"
37
+
38
+ ```json
39
+ [
40
+ {
41
+ "service": "Exchange Online",
42
+ "status": "serviceDegradation",
43
+ "id": "Exchange"
44
+ }
45
+ ]
46
+ ```
47
+
48
+ === "Text"
49
+
50
+ ```text
51
+ id status service
52
+ ---------- ------------------ -----------------
53
+ Exchange serviceDegradation Exchange Online
54
+ ```
55
+
56
+ === "CSV"
57
+
58
+ ```csv
59
+ id,status,service
60
+ Exchange,serviceDegradation,Exchange Online
61
+ ```
62
+
63
+ ### `issues` response
64
+
65
+ When we make use of the option `issues` the response will differ.
66
+
67
+ === "JSON"
68
+
69
+ ```json
70
+ [
71
+ {
72
+ "service": "Microsoft Defender for Cloud Apps",
73
+ "status": "serviceOperational",
74
+ "id": "cloudappsecurity",
75
+ "issues": [
76
+ {
77
+ "startDateTime": "2022-05-13T00:00:00Z",
78
+ "endDateTime": "2022-05-16T13:10:00Z",
79
+ "lastModifiedDateTime": "2022-05-17T11:00:42.2Z",
80
+ "title": "Microsoft Defender for Cloud Apps admin panel changes not propagating to Microsoft Defender for Endpoint",
81
+ "id": "CS381143",
82
+ "impactDescription": "Admins may notice that Microsoft Defender for Cloud Apps admin panel changes did not propagate to Microsoft Defender for",
83
+ "classification": "advisory",
84
+ "origin": "microsoft",
85
+ "status": "serviceRestored",
86
+ "service": "Microsoft Defender for Cloud Apps",
87
+ "feature": "Cloud App Security",
88
+ "featureGroup": "Cloud App Security",
89
+ "isResolved": true,
90
+ "highImpact": null,
91
+ "details": [],
92
+ "posts": [
93
+ {
94
+ "createdDateTime": "2022-05-17T08:31:31.113Z",
95
+ "postType": "regular",
96
+ "description": {
97
+ "contentType": "html",
98
+ "content": "Title: Microsoft Defender for Cloud Apps admin panel changes not propagating to Microsoft Defender for Endpoint\\\n\nUser Impact: Admins may notice that Microsoft Defender for Cloud Apps admin panel changes do not propagate to Microsoft Defender for Endpoint.\\\n\nCurrent status: We're analyzing system logs to determine the source of the issue.\\\n\nScope of impact: Impact is specific to users who are served through the affected infrastructure.\\\n\nNext update by: Tuesday, May 17, 2022, at 10:30 AM UTC"
99
+ }
100
+ }
101
+ ]
102
+ }
103
+ ]
104
+ }
105
+ ]
106
+ ```
107
+
108
+ === "Text"
109
+
110
+ ```text
111
+ id status service
112
+ ---------- ------------------ -----------------
113
+ Exchange serviceDegradation Exchange Online
114
+ ```
115
+
116
+ === "CSV"
117
+
118
+ ```csv
119
+ id,status,service
120
+ Exchange,serviceDegradation,Exchange Online
121
+ ```
@@ -22,3 +22,65 @@ Gets information about issue with ID _MO226784_
22
22
  ```sh
23
23
  m365 tenant serviceannouncement healthissue get --id MO226784
24
24
  ```
25
+
26
+ ## Response
27
+
28
+ === "JSON"
29
+
30
+ ```json
31
+ {
32
+ "startDateTime": "2022-05-24T16:00:00Z",
33
+ "endDateTime": "2022-05-24T22:20:00Z",
34
+ "lastModifiedDateTime": "2022-05-24T22:27:18.63Z",
35
+ "title": "Installation delays within the Power Platform admin center",
36
+ "id": "CR384241",
37
+ "impactDescription": "Users may have experienced delays when installing applications within the Power Platform admin center.",
38
+ "classification": "advisory",
39
+ "origin": "microsoft",
40
+ "status": "serviceRestored",
41
+ "service": "Dynamics 365 Apps",
42
+ "feature": "Other",
43
+ "featureGroup": "Other",
44
+ "isResolved": true,
45
+ "highImpact": null,
46
+ "details": [],
47
+ "posts": [
48
+ {
49
+ "createdDateTime": "2022-05-24T21:22:56.817Z",
50
+ "postType": "regular",
51
+ "description": {
52
+ "contentType": "html",
53
+ "content": "Title: Installation delays within the Power Platform admin center\\\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\\\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\\\n\nThis information is preliminary and may be subject to changes, corrections, and updates."
54
+ }
55
+ }
56
+ ]
57
+ }
58
+ ```
59
+
60
+ === "Text"
61
+
62
+ ```text
63
+ classification : advisory
64
+ details : []
65
+ endDateTime : 2022-05-24T22:20:00Z
66
+ feature : Other
67
+ featureGroup : Other
68
+ highImpact : null
69
+ id : CR384241
70
+ impactDescription : Users may have experienced delays when installing applications within the Power Platform admin center.
71
+ isResolved : true
72
+ lastModifiedDateTime: 2022-05-24T22:27:18.63Z
73
+ origin : microsoft
74
+ posts : [{"createdDateTime":"2022-05-24T21:22:56.817Z","postType":"regular","description":{"contentType":"html","content":"Title: Installation delays within the Power Platform admin center\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\n\nThis information is preliminary and may be subject to changes, corrections, and updates."}}]
75
+ service : Dynamics 365 Apps
76
+ startDateTime : 2022-05-24T16:00:00Z
77
+ status : serviceRestored
78
+ title : Installation delays within the Power Platform admin center
79
+ ```
80
+
81
+ === "CSV"
82
+
83
+ ```csv
84
+ startDateTime,endDateTime,lastModifiedDateTime,title,id,impactDescription,classification,origin,status,service,feature,featureGroup,isResolved,highImpact,details,posts
85
+ 2022-05-24T16:00:00Z,2022-05-24T22:20:00Z,2022-05-24T22:27:18.63Z,Installation delays within the Power Platform admin center,CR384241,Users may have experienced delays when installing applications within the Power Platform admin center.,advisory,microsoft,serviceRestored,Dynamics 365 Apps,Other,Other,1,,[],"[{""createdDateTime"":""2022-05-24T21:22:56.817Z"",""postType"":""regular"",""description"":{""contentType"":""html"",""content"":""Title: Installation delays within the Power Platform admin center\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\n\nThis information is preliminary and may be subject to changes, corrections, and updates.""}}]"
86
+ ```
@@ -29,6 +29,57 @@ Get service health issues for Microsoft Forms
29
29
  m365 tenant serviceannouncement healthissue list --service "Microsoft Forms"
30
30
  ```
31
31
 
32
+ ## Response
33
+
34
+ === "JSON"
35
+
36
+ ```json
37
+ [
38
+ {
39
+ "startDateTime": "2022-05-24T16:00:00Z",
40
+ "endDateTime": "2022-05-24T22:20:00Z",
41
+ "lastModifiedDateTime": "2022-05-24T22:27:18.63Z",
42
+ "title": "Installation delays within the Power Platform admin center",
43
+ "id": "CR384241",
44
+ "impactDescription": "Users may have experienced delays when installing applications within the Power Platform admin center.",
45
+ "classification": "advisory",
46
+ "origin": "microsoft",
47
+ "status": "serviceRestored",
48
+ "service": "Dynamics 365 Apps",
49
+ "feature": "Other",
50
+ "featureGroup": "Other",
51
+ "isResolved": true,
52
+ "highImpact": null,
53
+ "details": [],
54
+ "posts": [
55
+ {
56
+ "createdDateTime": "2022-05-24T21:22:56.817Z",
57
+ "postType": "regular",
58
+ "description": {
59
+ "contentType": "html",
60
+ "content": "Title: Installation delays within the Power Platform admin center\\\n\nUser Impact: Users may experience delays when installing applications within the Power Platform admin center.\\\n\nWe are aware of an emerging issue where users are experiencing delays when installing applications through the Power Platform admin center. We are investigating the issue and will provide another update within the next 30 minutes.\\\n\nThis information is preliminary and may be subject to changes, corrections, and updates."
61
+ }
62
+ }
63
+ ]
64
+ }
65
+ ]
66
+ ```
67
+
68
+ === "Text"
69
+
70
+ ```text
71
+ id title
72
+ -------- ----------------------------------------------------------
73
+ CR384241 Installation delays within the Power Platform admin center
74
+ ```
75
+
76
+ === "CSV"
77
+
78
+ ```csv
79
+ id,title
80
+ CR384241,Installation delays within the Power Platform admin center
81
+ ```
82
+
32
83
  ## More information
33
84
 
34
85
  - List serviceAnnouncement issues: [https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-issues](https://docs.microsoft.com/en-us/graph/api/serviceannouncement-list-issues)
@@ -23,6 +23,70 @@ Get service update message with ID MC001337
23
23
  m365 tenant serviceannouncement message get --id MC001337
24
24
  ```
25
25
 
26
+ ## Response
27
+
28
+ === "JSON"
29
+
30
+ ```json
31
+ {
32
+ "startDateTime": "2021-07-08T00:37:37Z",
33
+ "endDateTime": "2022-12-09T07:00:00Z",
34
+ "lastModifiedDateTime": "2022-06-07T20:21:06.713Z",
35
+ "title": "(Updated) Microsoft Lists: Custom list templates",
36
+ "id": "MC267581",
37
+ "category": "planForChange",
38
+ "severity": "normal",
39
+ "tags": [
40
+ "Updated message",
41
+ "New feature",
42
+ "User impact",
43
+ "Admin impact"
44
+ ],
45
+ "isMajorChange": false,
46
+ "actionRequiredByDateTime": null,
47
+ "services": [
48
+ "SharePoint Online"
49
+ ],
50
+ "expiryDateTime": null,
51
+ "hasAttachments": false,
52
+ "viewPoint": null,
53
+ "details": [],
54
+ "body": {
55
+ "contentType": "html",
56
+ "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>"
57
+ }
58
+ }
59
+ ```
60
+
61
+ === "Text"
62
+
63
+ ```text
64
+ actionRequiredByDateTime: null
65
+ body : {"contentType":"html","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>"}
66
+ category : planForChange
67
+ details : []
68
+ endDateTime : 2022-12-09T07:00:00Z
69
+ expiryDateTime : null
70
+ hasAttachments : false
71
+ id : MC267581
72
+ isMajorChange : false
73
+ lastModifiedDateTime : 2022-06-07T20:21:06.713Z
74
+ services : ["SharePoint Online"]
75
+ severity : normal
76
+ startDateTime : 2021-07-08T00:37:37Z
77
+ tags : ["Updated message","New feature","User impact","Admin impact"]
78
+ title : (Updated) Microsoft Lists: Custom list templates
79
+ viewPoint : null
80
+ ```
81
+
82
+ === "CSV"
83
+
84
+ ```csv
85
+ startDateTime,endDateTime,lastModifiedDateTime,title,id,category,severity,tags,isMajorChange,actionRequiredByDateTime,services,expiryDateTime,hasAttachments,viewPoint,details,body
86
+ 2021-07-08T00:37:37Z,2022-12-09T07:00:00Z,2022-06-07T20:21:06.713Z,(Updated) Microsoft Lists: Custom list templates,MC267581,planForChange,normal,"[""Updated message"",""New feature"",""User impact"",""Admin impact""]",,,"[""SharePoint Online""]",,,,[],"{""contentType"":""html"",""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>""}"
87
+ ```
88
+
26
89
  ## More information
27
90
 
28
91
  - Microsoft Graph REST API reference: [https://docs.microsoft.com/en-us/graph/api/serviceupdatemessage-get](https://docs.microsoft.com/en-us/graph/api/serviceupdatemessage-get)
92
+
@@ -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
+ ```
@@ -0,0 +1,75 @@
1
+ # todo task get
2
+
3
+ Gets a specific task from a Microsoft To Do task list
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 todo task get [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-i, --id <id>`
14
+ : The ID of the task in de list.
15
+
16
+ `--listName [listName]`
17
+ : The name of the task list to return tasks from. Specify either `listName` or `listId`, not both
18
+
19
+ `--listId [listId]`
20
+ : The id of the task list to return tasks from. Specify either `listName` or `listId`, not both
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Examples
25
+
26
+ Gets a specific task from a Microsoft To Do tasks list based on the name of the list and the task id
27
+
28
+ ```sh
29
+ m365 todo task get --listName "My task list" --id "AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA="
30
+ ```
31
+
32
+ Gets a specific task from a Microsoft To Do tasks list based on the id of the list and the task id
33
+
34
+ ```sh
35
+ m365 todo task get --listId "AQMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MAAuAAADMN-7V4K8g0q_adetip1DygEAxMBBaLl1lk_dAn8KkjfXKQABF-BAgwAAAA==" --id "AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA="
36
+ ```
37
+
38
+ ## Response
39
+
40
+ === "JSON"
41
+
42
+ ``` json
43
+ {
44
+ "importance": "normal",
45
+ "isReminderOn": false,
46
+ "status": "notStarted",
47
+ "title": "Stay healthy",
48
+ "createdDateTime": "2022-10-23T14:05:09.2673009Z",
49
+ "lastModifiedDateTime": "2022-10-23T14:15:11.3180312Z",
50
+ "hasAttachments": false,
51
+ "categories": [],
52
+ "id": "AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=",
53
+ "body": {
54
+ "content": "",
55
+ "contentType": "text"
56
+ }
57
+ }
58
+ ```
59
+
60
+ === "Text"
61
+
62
+ ``` text
63
+ createdDateTime : 2022-10-23T14:05:09.2673009Z
64
+ id : AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=
65
+ lastModifiedDateTime: 2022-10-23T14:15:11.3180312Z
66
+ status : notStarted
67
+ title : Stay healthy
68
+ ```
69
+
70
+ === "CSV"
71
+
72
+ ``` text
73
+ id,title,status,createdDateTime,lastModifiedDateTime
74
+ AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=,Stay healthy,notStarted,2022-10-23T14:05:09.2673009Z,2022-10-23T14:15:11.3180312Z
75
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "5.9.0-beta.1e08e6c",
3
+ "version": "5.9.0-beta.1f313f7",
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,14 +116,13 @@
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>",
120
119
  "De Cleyre, Nico <nico.de.cleyre@gmail.com>",
121
120
  "Deshpande, Vardhaman <vardhaman.rd@gmail.com>",
122
121
  "Dyjas, Robert <15113729+robdy@users.noreply.github.com>",
123
122
  "Faleel, Mohamed Ashiq <ashiqf@gmail.com>",
123
+ "Flores, Gaston <gaston.flrs@gmail.com>",
124
124
  "Ford, Lee <fordyman@gmail.com>",
125
125
  "Freese, Luise <49960482+LuiseFreese@users.noreply.github.com>",
126
- "Gaston Flores <gaston.flrs@gmail.com>",
127
126
  "Georgiev, Velin <velin.georgiev@gmail.com>",
128
127
  "Ghuge, Pramod <pramod7@gmail.com>",
129
128
  "Gölles, Thomas <thomy@outlook.at>",
@@ -131,13 +130,12 @@
131
130
  "Harding, Phil <pil.harding@platinumdogs.co.uk>",
132
131
  "Hawrylak, Paweł <phawrylak@outlook.com>",
133
132
  "Holemans, Milan <Milan.Holemans@vanroey.be>",
134
- "Hüseyin Saatçi <huseyins@comodo.net>",
135
133
  "Honen, Nicholas <nickhonen@gmail.com>",
136
134
  "Högberg, Joakim <joakim.hogberg@bravero.se>",
137
135
  "Hvam, Allan <ahp@delegate.dk>",
138
136
  "Jaakke, Robert <robert.jaakke@mavention.nl>",
139
- "John Rafael <dragonwood0@protonmail.com>",
140
137
  "Kailasam, Balamurugan <kshsbala@engineer.com>",
138
+ "Karda, Akash <akashkarda@gmail.com>",
141
139
  "Kasireddy, Prasad <prasad.gietcse@gmail.com>",
142
140
  "Keijzers, Paul <KbWorks@users.noreply.github.com>",
143
141
  "Kelkar, Vipul <vipul.kelkar@outlook.com>",
@@ -161,6 +159,7 @@
161
159
  "Nachan, Smita <smita.nachan@gmail.com>",
162
160
  "Nadir, Daniaal <daniaal1030@gmail.com>",
163
161
  "Nikolić, Aleksandar <alexandair@live.com>",
162
+ "O'Callaghan, Conor <brioscaibriste@gmail.com>",
164
163
  "Otto <berot3@gmail.com>",
165
164
  "Pandey, Vividh <vividh.pandey.13@gmail.com>",
166
165
  "Patil, Atharva <atharvapatil19202@gmail.com>",
@@ -168,13 +167,16 @@
168
167
  "Powney, Mark <powney.mark@outlook.com>",
169
168
  "pramod74 <pramod.lumb@gmail.com>",
170
169
  "Priem, Mark <mark.priem@outlook.com>",
170
+ "Rafael, John <dragonwood0@protonmail.com>",
171
171
  "Raju, Arnie <arnie.raju@thesolutioncollective.com.au>",
172
172
  "Ramalho, David <dramalho@storm.ie>",
173
173
  "Rathi, Tanmay <tanmay_rathi@intuit.com>",
174
174
  "Reekmans, Yannick <reekmans.yannick@gmail.com>",
175
+ "Raghwendra Rishabh <rishabhraghwendra2002@gmail.com>",
175
176
  "Romano, Rodrigo <rodrigo@rodrigoromano.net>",
176
177
  "Romão, Douglas <douglas.romao@trentim.com>",
177
178
  "Rozinov, Roman <roman.rozinov@sogeti.com>",
179
+ "Saatçi, Hüseyin <huseyins@comodo.net>",
178
180
  "Schaeflein, Paul <paul@schaeflein.net>",
179
181
  "Schot, Albert-Jan <appie@digiwijs.nl>",
180
182
  "Schouten, Robert <robert.schouten@wortell.nl>",
@@ -187,6 +189,7 @@
187
189
  "Sitaraman, Rajesh <rajesh.sitaraman@outlook.com>",
188
190
  "Sittler, Laurent <laurent.sittler@lsonline.fr>",
189
191
  "Skelly, Pete <peteskelly@gmail.com>",
192
+ "Solazzi, Riccardo <rick.zal239@gmail.com>",
190
193
  "Sotelo, Aaron <soteloaaron16@gmail.com>",
191
194
  "strafe <strafe@users.noreply.github.com>",
192
195
  "Struyf, Elio <info@estruyf.be>",