@pnp/cli-microsoft365 6.4.0-beta.f8f3553 → 6.5.0-beta.33bab12
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.
- package/.devcontainer/Dockerfile +5 -2
- package/Dockerfile +6 -3
- package/README.md +3 -3
- package/dist/Auth.js +1 -3
- package/dist/Command.js +1 -1
- package/dist/m365/file/commands/file-list.js +5 -1
- package/dist/m365/flow/commands/flow-export.js +6 -6
- package/dist/m365/flow/commands/owner/{owner-add.js → owner-ensure.js} +19 -19
- package/dist/m365/flow/commands.js +1 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN014009_CODE_launch_hostedWorkbench_url.js +62 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.0.js +67 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +2 -1
- package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-add.js +27 -13
- package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-list.js +72 -0
- package/dist/m365/spo/commands/commandset/commandset-add.js +2 -1
- package/dist/m365/spo/commands/commandset/commandset-remove.js +12 -9
- package/dist/m365/spo/commands/commandset/commandset-set.js +12 -9
- package/dist/m365/spo/commands/homesite/homesite-set.js +33 -15
- package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-remove.js +2 -2
- package/dist/m365/spo/commands.js +1 -0
- package/dist/m365/teams/commands/team/team-list.js +4 -6
- package/dist/m365/todo/commands/task/task-add.js +35 -3
- package/dist/m365/todo/commands/task/task-set.js +25 -1
- package/dist/utils/md.js +4 -3
- package/dist/utils/validation.js +3 -2
- package/docs/docs/cmd/aad/app/app-add.md +3 -3
- package/docs/docs/cmd/flow/owner/{owner-add.md → owner-ensure.md} +6 -6
- package/docs/docs/cmd/spfx/project/project-upgrade.md +2 -2
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.md +4 -1
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-list.md +109 -0
- package/docs/docs/cmd/spo/homesite/homesite-set.md +47 -2
- package/docs/docs/cmd/spo/list/list-view-remove.md +1 -1
- package/docs/docs/cmd/spo/list/list-view-set.md +2 -2
- package/docs/docs/cmd/teams/team/team-list.md +44 -4
- package/docs/docs/cmd/todo/task/task-add.md +47 -2
- package/docs/docs/cmd/todo/task/task-set.md +50 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +3 -1
|
@@ -11,14 +11,17 @@ m365 spo homesite set [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --siteUrl <siteUrl>`
|
|
14
|
-
: The URL of the site to set as Home
|
|
14
|
+
: The URL of the site to set as Home site.
|
|
15
|
+
|
|
16
|
+
`--vivaConnectionsDefaultStart [vivaConnectionsDefaultStart]`
|
|
17
|
+
: When set to `true`, the Viva Connections landing experience is set to the SharePoint home site. If set to `false`, the Viva Connections home experience will be used.
|
|
15
18
|
|
|
16
19
|
--8<-- "docs/cmd/_global.md"
|
|
17
20
|
|
|
18
21
|
## Remarks
|
|
19
22
|
|
|
20
23
|
!!! important
|
|
21
|
-
To use this command you
|
|
24
|
+
To use this command you must be a Global or SharePoint administrator.
|
|
22
25
|
|
|
23
26
|
## Examples
|
|
24
27
|
|
|
@@ -28,8 +31,22 @@ Set the specified site as the Home Site.
|
|
|
28
31
|
m365 spo homesite set --siteUrl https://contoso.sharepoint.com/sites/comms
|
|
29
32
|
```
|
|
30
33
|
|
|
34
|
+
Sets the Home site to the provided site collection url and sets the Viva Connections landing experience to the SharePoint home site
|
|
35
|
+
|
|
36
|
+
```sh
|
|
37
|
+
m365 spo homesite set --siteUrl https://contoso.sharepoint.com/sites/comms --vivaConnectionsDefaultStart true
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Sets the Home site to the provided site collection url and sets the Viva Connections landing experience to the default experience
|
|
41
|
+
|
|
42
|
+
```sh
|
|
43
|
+
m365 spo homesite set --siteUrl https://contoso.sharepoint.com/sites/comms --vivaConnectionsDefaultStart false
|
|
44
|
+
```
|
|
45
|
+
|
|
31
46
|
## Response
|
|
32
47
|
|
|
48
|
+
### Standard response
|
|
49
|
+
|
|
33
50
|
=== "JSON"
|
|
34
51
|
|
|
35
52
|
```json
|
|
@@ -54,6 +71,34 @@ m365 spo homesite set --siteUrl https://contoso.sharepoint.com/sites/comms
|
|
|
54
71
|
The Home site has been set to https://contoso.sharepoint.com. It may take some time for the change to apply. Check aka.ms/homesites for details.
|
|
55
72
|
```
|
|
56
73
|
|
|
74
|
+
### `vivaConnectionsDefaultStart` response
|
|
75
|
+
|
|
76
|
+
When we make use of the option `vivaConnectionsDefaultStart` the response will differ.
|
|
77
|
+
|
|
78
|
+
=== "JSON"
|
|
79
|
+
|
|
80
|
+
```json
|
|
81
|
+
"The Home site has been set to https://contoso.sharepoint.com and the Viva Connections default experience to True. It may take some time for the change to apply. Check aka.ms/homesites for details."
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
=== "Text"
|
|
85
|
+
|
|
86
|
+
```text
|
|
87
|
+
The Home site has been set to https://contoso.sharepoint.com and the Viva Connections default experience to True. It may take some time for the change to apply. Check aka.ms/homesites for details.
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
=== "CSV"
|
|
91
|
+
|
|
92
|
+
```csv
|
|
93
|
+
The Home site has been set to https://contoso.sharepoint.com and the Viva Connections default experience to True. It may take some time for the change to apply. Check aka.ms/homesites for details.
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
=== "Markdown"
|
|
97
|
+
|
|
98
|
+
```md
|
|
99
|
+
The Home site has been set to https://contoso.sharepoint.com and the Viva Connections default experience to True. It may take some time for the change to apply. Check aka.ms/homesites for details.
|
|
100
|
+
```
|
|
101
|
+
|
|
57
102
|
## More information
|
|
58
103
|
|
|
59
104
|
- SharePoint home sites: a landing for your organization on the intelligent intranet: [https://techcommunity.microsoft.com/t5/Microsoft-SharePoint-Blog/SharePoint-home-sites-a-landing-for-your-organization-on-the/ba-p/621933](https://techcommunity.microsoft.com/t5/Microsoft-SharePoint-Blog/SharePoint-home-sites-a-landing-for-your-organization-on-the/ba-p/621933)
|
|
@@ -56,7 +56,7 @@ m365 spo list view remove --webUrl https://contoso.sharepoint.com/sites/project-
|
|
|
56
56
|
Remove view with title _MyView_ from a list with url _/sites/project-x/lists/Events_ located in site _https://contoso.sharepoint.com/sites/project-x_
|
|
57
57
|
|
|
58
58
|
```sh
|
|
59
|
-
m365 spo list view remove --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl '/sites/project-x/lists/Events' --
|
|
59
|
+
m365 spo list view remove --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl '/sites/project-x/lists/Events' --title MyView
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
Remove view with ID _cc27a922-8224-4296-90a5-ebbc54da2e81_ from a list with title _Documents_ located in site _https://contoso.sharepoint.com/sites/project-x_ without being asked for confirmation
|
|
@@ -58,13 +58,13 @@ Update view formatting of the specified list view
|
|
|
58
58
|
=== "PowerShell"
|
|
59
59
|
|
|
60
60
|
```sh
|
|
61
|
-
m365 spo list view set --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle 'My List' --
|
|
61
|
+
m365 spo list view set --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle 'My List' --title 'All items' --CustomFormatter '{\"schema\":\"https://developer.microsoft.com/json-schemas/sp/view-formatting.schema.json\",\"additionalRowClass\": \"=if([$DueDate] <= @now, ''sp-field-severity--severeWarning'', '''')\"}'
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
=== "Bash"
|
|
65
65
|
|
|
66
66
|
```sh
|
|
67
|
-
m365 spo list view set --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle 'My List' --
|
|
67
|
+
m365 spo list view set --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle 'My List' --title 'All items' --CustomFormatter "{\"schema\":\"https://developer.microsoft.com/json-schemas/sp/view-formatting.schema.json\",\"additionalRowClass\": \"=if([$DueDate] <= @now, 'sp-field-severity--severeWarning', '')\"}"
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
## Response
|
|
@@ -37,20 +37,60 @@ m365 teams team list --joined
|
|
|
37
37
|
|
|
38
38
|
=== "JSON"
|
|
39
39
|
|
|
40
|
-
```
|
|
40
|
+
```json
|
|
41
41
|
[
|
|
42
42
|
{
|
|
43
43
|
"id": "5dc7ba76-b9aa-4fdd-9e91-9fe7d0e8dca3",
|
|
44
|
+
"createdDateTime": "2022-12-08T09:17:55.039Z",
|
|
44
45
|
"displayName": "Architecture",
|
|
46
|
+
"description": "Architecture Discussion",
|
|
47
|
+
"internalId": "19:pLknmKPPkvgeaG0FtegLfjoDINeY3gvmitMkNG9H3X41@thread.tacv2",
|
|
48
|
+
"classification": null,
|
|
49
|
+
"specialization": "none",
|
|
50
|
+
"visibility": "public",
|
|
51
|
+
"webUrl": "https://teams.microsoft.com/l/team/19:a5c6eccad3fb401997756a1501d561aa%40thread.skype/conversations?groupId=8090c93e-ba7c-433e-9f39-08c7ba07c0b3&tenantId=dcd219dd-bc68-4b9b-bf0b-4a33a796be35",
|
|
45
52
|
"isArchived": false,
|
|
46
|
-
"
|
|
53
|
+
"isMembershipLimitedToOwners": false,
|
|
54
|
+
"discoverySettings": {
|
|
55
|
+
"showInTeamsSearchAndSuggestions": true
|
|
56
|
+
},
|
|
57
|
+
"memberSettings": {
|
|
58
|
+
"allowCreateUpdateChannels": true,
|
|
59
|
+
"allowCreatePrivateChannels": true,
|
|
60
|
+
"allowDeleteChannels": true,
|
|
61
|
+
"allowAddRemoveApps": true,
|
|
62
|
+
"allowCreateUpdateRemoveTabs": true,
|
|
63
|
+
"allowCreateUpdateRemoveConnectors": true
|
|
64
|
+
},
|
|
65
|
+
"guestSettings": {
|
|
66
|
+
"allowCreateUpdateChannels": false,
|
|
67
|
+
"allowDeleteChannels": false
|
|
68
|
+
},
|
|
69
|
+
"messagingSettings": {
|
|
70
|
+
"allowUserEditMessages": false,
|
|
71
|
+
"allowUserDeleteMessages": false,
|
|
72
|
+
"allowOwnerDeleteMessages": false,
|
|
73
|
+
"allowTeamMentions": true,
|
|
74
|
+
"allowChannelMentions": true
|
|
75
|
+
},
|
|
76
|
+
"funSettings": {
|
|
77
|
+
"allowGiphy": true,
|
|
78
|
+
"giphyContentRating": "moderate",
|
|
79
|
+
"allowStickersAndMemes": true,
|
|
80
|
+
"allowCustomMemes": false
|
|
81
|
+
},
|
|
82
|
+
"summary": {
|
|
83
|
+
"ownersCount": 1,
|
|
84
|
+
"membersCount": 1,
|
|
85
|
+
"guestsCount": 0
|
|
86
|
+
}
|
|
47
87
|
}
|
|
48
88
|
]
|
|
49
89
|
```
|
|
50
90
|
|
|
51
91
|
=== "Text"
|
|
52
92
|
|
|
53
|
-
```
|
|
93
|
+
```text
|
|
54
94
|
id displayName isArchived description
|
|
55
95
|
------------------------------------ ---------------- ---------- ---------------------------------------
|
|
56
96
|
5dc7ba76-b9aa-4fdd-9e91-9fe7d0e8dca3 Architecture false Architecture Discussion
|
|
@@ -58,7 +98,7 @@ m365 teams team list --joined
|
|
|
58
98
|
|
|
59
99
|
=== "CSV"
|
|
60
100
|
|
|
61
|
-
```
|
|
101
|
+
```csv
|
|
62
102
|
id,displayName,isArchived,description
|
|
63
103
|
5dc7ba76-b9aa-4fdd-9e91-9fe7d0e8dca3,Architecture,,Architecture Discussion
|
|
64
104
|
```
|
|
@@ -34,8 +34,24 @@ m365 todo task add [options]
|
|
|
34
34
|
`--reminderDateTime [reminderDateTime]`
|
|
35
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.
|
|
36
36
|
|
|
37
|
+
`--categories [categories]`
|
|
38
|
+
: Comma-separated list of categories associated with the task.
|
|
39
|
+
|
|
40
|
+
`--completedDateTime [completedDateTime]`
|
|
41
|
+
: The date and time when the task was finished. This should be defined as a valid ISO 8601 string. `2021-12-16T18:28:48.6964197Z`. This option can only be used when the `status` is set to `completed`.
|
|
42
|
+
|
|
43
|
+
`--startDateTime [startDateTime]`
|
|
44
|
+
: The date and time when the task is scheduled to start. This should be defined as a valid ISO 8601 string. `2021-12-16T18:28:48.6964197Z`
|
|
45
|
+
|
|
46
|
+
`--status [status]`
|
|
47
|
+
: Indicates the state or progress of the task. The possible values are: `notStarted`, `inProgress`, `completed`, `waitingOnOthers`, `deferred`.
|
|
48
|
+
|
|
37
49
|
--8<-- "docs/cmd/_global.md"
|
|
38
50
|
|
|
51
|
+
## Remarks
|
|
52
|
+
|
|
53
|
+
When you specify the values for `categories`, each category can correspond to the displayName property of an [outlookCategory](https://learn.microsoft.com/graph/api/resources/outlookcategory?view=graph-rest-1.0). It is permissible to use distinct names.
|
|
54
|
+
|
|
39
55
|
## Examples
|
|
40
56
|
|
|
41
57
|
Add a task to Microsoft To Do tasks list with with a specific name
|
|
@@ -62,9 +78,13 @@ Create a new task with a specific due date
|
|
|
62
78
|
m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA==" --dueDateTime 2023-01-01
|
|
63
79
|
```
|
|
64
80
|
|
|
65
|
-
|
|
81
|
+
Create a new task with categories, a completedDateTime, a startDateTime and a status
|
|
66
82
|
|
|
67
|
-
|
|
83
|
+
```sh
|
|
84
|
+
m365 todo task add --title "New task" --listName "My task list" --categories "Red category,Important" --completedDateTime 2023-12-01 --startDateTime 2023-12-01 --status "notStarted"
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Response
|
|
68
88
|
|
|
69
89
|
=== "JSON"
|
|
70
90
|
|
|
@@ -117,3 +137,28 @@ m365 todo task add --title "New task" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04
|
|
|
117
137
|
importance,isReminderOn,status,title,createdDateTime,lastModifiedDateTime,hasAttachments,categories,id,body,dueDateTime,reminderDateTime
|
|
118
138
|
high,1,notStarted,New task,2022-10-29T10:54:06.3672421Z,2022-10-29T10:54:06.5078837Z,,[],AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=,"{""content"":""I should not forget this"",""contentType"":""text""}","{""dateTime"":""2023-01-01T00:00:00.0000000"",""timeZone"":""UTC""}","{""dateTime"":""2023-01-01T12:00:00.0000000"",""timeZone"":""UTC""}"
|
|
119
139
|
```
|
|
140
|
+
|
|
141
|
+
=== "Markdown"
|
|
142
|
+
|
|
143
|
+
```md
|
|
144
|
+
# todo task add --title "New task" --listName "My task list" --status "notStarted"
|
|
145
|
+
|
|
146
|
+
Date: 4/3/2023
|
|
147
|
+
|
|
148
|
+
## New task (AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=)
|
|
149
|
+
|
|
150
|
+
Property | Value
|
|
151
|
+
---------|-------
|
|
152
|
+
importance | high
|
|
153
|
+
isReminderOn | true
|
|
154
|
+
status | notStarted
|
|
155
|
+
title | New task
|
|
156
|
+
createdDateTime | 2022-10-29T10:54:06.3672421Z
|
|
157
|
+
lastModifiedDateTime | 2022-10-29T10:54:06.5078837Z
|
|
158
|
+
hasAttachments | false
|
|
159
|
+
categories | []
|
|
160
|
+
id | AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAEX8ECDAADEwEFouXWWT50CfwqSN9cpAAEX8GuPAAA=
|
|
161
|
+
body | {"content": "I should not forget this","contentType": "text"}
|
|
162
|
+
dueDateTime | {"dateTime": "2023-01-01T00:00:00.0000000","timeZone": "UTC"}
|
|
163
|
+
reminderDateTime | {"dateTime": "2023-01-01T12:00:00.0000000","timeZone": "UTC"}
|
|
164
|
+
```
|
|
@@ -40,8 +40,21 @@ m365 todo task set [options]
|
|
|
40
40
|
`--reminderDateTime [reminderDateTime]`
|
|
41
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
42
|
|
|
43
|
+
`--categories [categories]`
|
|
44
|
+
: Comma-separated list of categories associated with the task.
|
|
45
|
+
|
|
46
|
+
`--completedDateTime [completedDateTime]`
|
|
47
|
+
: The date and time when the task was finished. This should be defined as a valid ISO 8601 string. `2021-12-16T18:28:48.6964197Z`
|
|
48
|
+
|
|
49
|
+
`--startDateTime [startDateTime]`
|
|
50
|
+
: The date and time when the task is scheduled to start. This should be defined as a valid ISO 8601 string. `2021-12-16T18:28:48.6964197Z`
|
|
51
|
+
|
|
43
52
|
--8<-- "docs/cmd/_global.md"
|
|
44
53
|
|
|
54
|
+
## Remarks
|
|
55
|
+
|
|
56
|
+
When you specify the values for `categories`, each category can correspond to the displayName property of an [outlookCategory](https://learn.microsoft.com/en-us/graph/api/resources/outlookcategory?view=graph-rest-1.0). It is permissible to use distinct names.
|
|
57
|
+
|
|
45
58
|
## Examples
|
|
46
59
|
|
|
47
60
|
Update a task with title _New task_ to _Update doco_ in Microsoft To Do tasks list with a specific name
|
|
@@ -68,6 +81,18 @@ Update a task with due date in Microsoft To Do tasks list with list id
|
|
|
68
81
|
m365 todo task set --id "AAMkADU3Y2E0OTMxLTllYTQtNGFlZS1hZGM0LWI1NjZjY2FhM2RhMABGAAAAAADhr7P77n9xS6PdtDemRwpHBwCin1tvQMXzRKN1hQDz2S3VAAAXXsleAACin1tvQMXzRKN1hQDz2S3VAAAXXzr9AAA=" --listId "AQMkADlhMTRkOGEzLWQ1M2QtNGVkNS04NjdmLWU0NzJhMjZmZWNmMwAuAAADKvwNgAMNPE_zFNRJXVrU1wEAhHKQZHItDEOVCn8U3xuA2AABmQeVPwAAAA==" --dueDateTime 2023-01-01
|
|
69
82
|
```
|
|
70
83
|
|
|
84
|
+
Update a task to Microsoft To Do with several categories
|
|
85
|
+
|
|
86
|
+
```sh
|
|
87
|
+
m365 todo task set --title "New task" --listName "My task list" --categories "Red category,Important"
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Update a task to Microsoft To Do with a start date and set a reminder for the task
|
|
91
|
+
|
|
92
|
+
```sh
|
|
93
|
+
m365 todo task set --title "New task" --listName "My task list" --startDateTime "2023-12-16T18:28:48.6964197Z" --isReminderOn true
|
|
94
|
+
```
|
|
95
|
+
|
|
71
96
|
## Response
|
|
72
97
|
|
|
73
98
|
=== "JSON"
|
|
@@ -121,3 +146,28 @@ m365 todo task set --id "AAMkADU3Y2E0OTMxLTllYTQtNGFlZS1hZGM0LWI1NjZjY2FhM2RhMAB
|
|
|
121
146
|
importance,isReminderOn,status,title,createdDateTime,lastModifiedDateTime,hasAttachments,categories,id,body,dueDateTime,reminderDateTime
|
|
122
147
|
high,1,notStarted,Update doco,2022-10-29T11:03:20.9175176Z,2022-10-30T14:09:14.7687057Z,,[],AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAL3xdLTAADEwEFouXWWT50CfwqSN9cpAAL3xhtSAAA=,"{""content"":""I should not forget this"",""contentType"":""text""}","{""dateTime"":""2023-01-01T00:00:00.0000000"",""timeZone"":""UTC""}","{""dateTime"":""2023-01-01T12:00:00.0000000"",""timeZone"":""UTC""}"
|
|
123
148
|
```
|
|
149
|
+
|
|
150
|
+
=== "Markdown"
|
|
151
|
+
|
|
152
|
+
```md
|
|
153
|
+
# todo task set --id "AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAL3xdLTAADEwEFouXWWT50CfwqSN9cpAAL3xhtSAAA=" --title "Update doco" --listName "My task list" --status "notStarted"
|
|
154
|
+
|
|
155
|
+
Date: 4/3/2023
|
|
156
|
+
|
|
157
|
+
## Update doco (AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAL3xdLTAADEwEFouXWWT50CfwqSN9cpAAL3xhtSAAA=)
|
|
158
|
+
|
|
159
|
+
Property | Value
|
|
160
|
+
---------|-------
|
|
161
|
+
importance | high
|
|
162
|
+
isReminderOn | true
|
|
163
|
+
status | notStarted
|
|
164
|
+
title | Update doco
|
|
165
|
+
createdDateTime | 2022-10-29T11:03:20.9175176Z
|
|
166
|
+
lastModifiedDateTime | 2022-10-30T14:07:03.0718199Z
|
|
167
|
+
hasAttachments | false
|
|
168
|
+
categories | []
|
|
169
|
+
id | AAMkAGYzNjMxYTU4LTJjZjYtNDlhMi1iMzQ2LWVmMTU3YmUzOGM5MABGAAAAAAAw3-tXgryDSr5p162KnUPKBwDEwEFouXWWT50CfwqSN9cpAAL3xdLTAADEwEFouXWWT50CfwqSN9cpAAL3xhtSAAA=
|
|
170
|
+
body | {"content":"I should not forget this","contentType":"text"}
|
|
171
|
+
dueDateTime | {"dateTime": "2023-01-01T00:00:00.0000000","timeZone": "UTC"}
|
|
172
|
+
reminderDateTime | {"dateTime": "2023-01-01T12:00:00.0000000","timeZone": "UTC"}
|
|
173
|
+
```
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@pnp/cli-microsoft365",
|
|
9
|
-
"version": "6.
|
|
9
|
+
"version": "6.5.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@azure/msal-node": "^1.15.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.0-beta.33bab12",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"Nachan, Nanddeep <nanddeepnachan@gmail.com>",
|
|
163
163
|
"Nachan, Smita <smita.nachan@gmail.com>",
|
|
164
164
|
"Nadir, Daniaal <daniaal1030@gmail.com>",
|
|
165
|
+
"Narbutas, Valeras <valeras.narbutas@macaw.nl>",
|
|
165
166
|
"Nikolić, Aleksandar <alexandair@live.com>",
|
|
166
167
|
"O'Callaghan, Conor <brioscaibriste@gmail.com>",
|
|
167
168
|
"Otto <berot3@gmail.com>",
|
|
@@ -182,6 +183,7 @@
|
|
|
182
183
|
"Romão, Douglas <douglas.romao@trentim.com>",
|
|
183
184
|
"Rozinov, Roman <roman.rozinov@sogeti.com>",
|
|
184
185
|
"Saatçi, Hüseyin <huseyins@comodo.net>",
|
|
186
|
+
"Sanap, Ganesh <ganeshsanap120694@gmail.com>",
|
|
185
187
|
"Schaeflein, Paul <paul@schaeflein.net>",
|
|
186
188
|
"Schot, Albert-Jan <appie@digiwijs.nl>",
|
|
187
189
|
"Schouten, Robert <robert.schouten@wortell.nl>",
|