@pnp/cli-microsoft365 5.9.0-beta.c14dbbc → 5.9.0-beta.db8b86a
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/.eslintrc.js +4 -2
- package/dist/m365/outlook/commands/mail/mail-send.js +1 -1
- package/dist/m365/planner/commands/bucket/bucket-get.js +1 -1
- package/dist/m365/pp/commands/Environment.js +3 -0
- package/dist/m365/pp/commands/card/card-list.js +68 -0
- package/dist/m365/pp/commands/dataverse/dataverse-table-list.js +6 -12
- package/dist/m365/pp/commands/environment/environment-get.js +75 -0
- package/dist/m365/pp/commands.js +2 -0
- package/dist/m365/spo/commands/file/file-roleinheritance-break.js +129 -0
- package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +168 -0
- package/dist/m365/spo/commands/list/list-contenttype-add.js +21 -18
- package/dist/m365/spo/commands/list/list-contenttype-default-set.js +59 -47
- package/dist/m365/spo/commands/list/list-contenttype-list.js +16 -8
- package/dist/m365/spo/commands/list/list-contenttype-remove.js +16 -8
- package/dist/m365/spo/commands/list/list-webhook-add.js +19 -11
- package/dist/m365/spo/commands/list/list-webhook-get.js +17 -9
- package/dist/m365/spo/commands/list/list-webhook-list.js +23 -24
- package/dist/m365/spo/commands/list/list-webhook-remove.js +19 -11
- package/dist/m365/spo/commands/list/list-webhook-set.js +18 -10
- package/dist/m365/spo/commands.js +2 -0
- package/dist/m365/teams/commands/channel/channel-add.js +9 -9
- package/dist/m365/todo/commands/task/task-set.js +53 -1
- package/docs/docs/cmd/pp/card/card-list.md +33 -0
- package/docs/docs/cmd/pp/environment/environment-get.md +38 -0
- package/docs/docs/cmd/spo/eventreceiver/eventreceiver-get.md +2 -2
- package/docs/docs/cmd/spo/eventreceiver/eventreceiver-remove.md +2 -2
- package/docs/docs/cmd/spo/file/file-roleinheritance-break.md +54 -0
- package/docs/docs/cmd/spo/folder/folder-roleassignment-remove.md +57 -0
- package/docs/docs/cmd/spo/list/list-contenttype-add.md +16 -7
- package/docs/docs/cmd/spo/list/list-contenttype-default-set.md +16 -7
- package/docs/docs/cmd/spo/list/list-contenttype-list.md +15 -6
- package/docs/docs/cmd/spo/list/list-contenttype-remove.md +17 -8
- package/docs/docs/cmd/spo/list/list-webhook-add.md +15 -16
- package/docs/docs/cmd/spo/list/list-webhook-get.md +15 -6
- package/docs/docs/cmd/spo/list/list-webhook-list.md +16 -7
- package/docs/docs/cmd/spo/list/list-webhook-remove.md +12 -10
- package/docs/docs/cmd/spo/list/list-webhook-set.md +13 -11
- package/docs/docs/cmd/teams/channel/channel-add.md +4 -4
- package/docs/docs/cmd/todo/task/task-set.md +29 -2
- package/package.json +3 -1
|
@@ -11,46 +11,45 @@ m365 spo list webhook add [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list
|
|
14
|
+
: URL of the site where the list is located.
|
|
15
15
|
|
|
16
16
|
`-l, --listId [listId]`
|
|
17
|
-
: ID of the list
|
|
17
|
+
: ID of the list. Specify either `listTitle`, `listId` or `listUrl`.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list
|
|
20
|
+
: Title of the list. Specify either `listTitle`, `listId` or `listUrl`.
|
|
21
|
+
|
|
22
|
+
`--listUrl [listUrl]`
|
|
23
|
+
: Server- or site-relative URL of the list. Specify either `listTitle`, `listId` or `listUrl`.
|
|
21
24
|
|
|
22
25
|
`-n, --notificationUrl <notificationUrl>`
|
|
23
|
-
: The notification
|
|
26
|
+
: The notification URL.
|
|
24
27
|
|
|
25
28
|
`-e, --expirationDateTime [expirationDateTime]`
|
|
26
|
-
: The expiration date. Will be set to max (6 months from today) if not provided
|
|
29
|
+
: The expiration date. Will be set to max (6 months from today) if not provided.
|
|
27
30
|
|
|
28
31
|
`-c, --clientState [clientState]`
|
|
29
|
-
: A client state information that will be passed through notifications
|
|
32
|
+
: A client state information that will be passed through notifications.
|
|
30
33
|
|
|
31
34
|
--8<-- "docs/cmd/_global.md"
|
|
32
35
|
|
|
33
36
|
## Examples
|
|
34
37
|
|
|
35
|
-
Add a web hook to the list
|
|
36
|
-
_https://contoso-funcions.azurewebsites.net/webhook_ and the default expiration
|
|
37
|
-
date
|
|
38
|
+
Add a web hook to the list retrieved by Title located in a specific site with a specific notification url and the default expiration date
|
|
38
39
|
|
|
39
40
|
```sh
|
|
40
41
|
m365 spo list webhook add --webUrl https://contoso.sharepoint.com/sites/ninja --listTitle Documents --notificationUrl https://contoso-funcions.azurewebsites.net/webhook
|
|
41
42
|
```
|
|
42
43
|
|
|
43
|
-
Add a web hook to the list
|
|
44
|
-
_https://contoso-funcions.azurewebsites.net/webhook_ and an expiration date of _January 21st, 2019_
|
|
44
|
+
Add a web hook to the list retrieved by URL located in a specific site with a specific notification url and a specific expiration date
|
|
45
45
|
|
|
46
46
|
```sh
|
|
47
|
-
m365 spo list webhook add --webUrl https://contoso.sharepoint.com/sites/ninja --
|
|
47
|
+
m365 spo list webhook add --webUrl https://contoso.sharepoint.com/sites/ninja --listUrl '/sites/ninja/Documents' --notificationUrl https://contoso-funcions.azurewebsites.net/webhook --expirationDateTime 2019-01-21
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
Add a web hook to the list
|
|
51
|
-
|
|
52
|
-
a client state
|
|
50
|
+
Add a web hook to the list retrieved by ID located in a specific site with a specific notification url, a specific expiration date and a client state
|
|
51
|
+
|
|
53
52
|
|
|
54
53
|
```sh
|
|
55
|
-
m365 spo list webhook add --webUrl https://contoso.sharepoint.com/sites/ninja --
|
|
54
|
+
m365 spo list webhook add --webUrl https://contoso.sharepoint.com/sites/ninja --listId '3d6aefa0-f438-4789-b0cd-6e865f5d65b5' --notificationUrl https://contoso-funcions.azurewebsites.net/webhook --expirationDateTime '2019-03-02T18:15' --clientState "Hello State!"
|
|
56
55
|
```
|
|
@@ -11,16 +11,19 @@ m365 spo list webhook get [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list
|
|
14
|
+
: URL of the site where the list is located.
|
|
15
15
|
|
|
16
16
|
`-l, --listId [listId]`
|
|
17
|
-
: ID of the list
|
|
17
|
+
: ID of the list. Specify either `listTitle`, `listId` or `listUrl`.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list
|
|
20
|
+
: Title of the list. Specify either `listTitle`, `listId` or `listUrl`.
|
|
21
|
+
|
|
22
|
+
`--listUrl [listUrl]`
|
|
23
|
+
: Server- or site-relative URL of the list. Specify either `listTitle`, `listId` or `listUrl`.
|
|
21
24
|
|
|
22
25
|
`-i, --id [id]`
|
|
23
|
-
: ID of the webhook
|
|
26
|
+
: ID of the webhook.
|
|
24
27
|
|
|
25
28
|
--8<-- "docs/cmd/_global.md"
|
|
26
29
|
|
|
@@ -30,14 +33,20 @@ If the specified `id` doesn't refer to an existing webhook, you will get a `404
|
|
|
30
33
|
|
|
31
34
|
## Examples
|
|
32
35
|
|
|
33
|
-
Return information about a webhook
|
|
36
|
+
Return information about a specific webhook which belongs to a list retrieved by ID in a specific site
|
|
34
37
|
|
|
35
38
|
```sh
|
|
36
39
|
m365 spo list webhook get --webUrl https://contoso.sharepoint.com/sites/project-x --listId 0cd891ef-afce-4e55-b836-fce03286cccf --id cc27a922-8224-4296-90a5-ebbc54da2e85
|
|
37
40
|
```
|
|
38
41
|
|
|
39
|
-
Return information about a webhook
|
|
42
|
+
Return information about a specific webhook which belongs to a list retrieved by Title in a specific site
|
|
40
43
|
|
|
41
44
|
```sh
|
|
42
45
|
m365 spo list webhook get --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle Documents --id cc27a922-8224-4296-90a5-ebbc54da2e85
|
|
43
46
|
```
|
|
47
|
+
|
|
48
|
+
Return information about a specific webhook which belongs to a list retrieved by URL in a specific site
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
m365 spo list webhook get --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl '/sites/project-x/Documents' --id cc27a922-8224-4296-90a5-ebbc54da2e85
|
|
52
|
+
```
|
|
@@ -11,32 +11,41 @@ m365 spo list webhook list [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list
|
|
14
|
+
: URL of the site where the list is located.
|
|
15
15
|
|
|
16
16
|
`-i, --listId [listId]`
|
|
17
|
-
: ID of the list
|
|
17
|
+
: ID of the list. Specify either `id`, `title`, `listTitle`, `listId` or `listUrl`.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list
|
|
20
|
+
: Title of the list. Specify either `id`, `title`, `listTitle`, `listId` or `listUrl`.
|
|
21
|
+
|
|
22
|
+
`--listUrl [listUrl]`
|
|
23
|
+
: Server- or site-relative URL of the list. Specify either `id`, `title`, `listTitle`, `listId` or `listUrl`.
|
|
21
24
|
|
|
22
25
|
`--id [id]`
|
|
23
|
-
: (deprecated. Use `listId` instead) ID of the list to retrieve all webhooks for. Specify either `id`
|
|
26
|
+
: (deprecated. Use `listId` instead) ID of the list to retrieve all webhooks for. Specify either `id`, `title`, `listTitle`, `listId` or `listUrl`.
|
|
24
27
|
|
|
25
28
|
`--title [title]`
|
|
26
|
-
: (deprecated. Use `listTitle` instead) Title of the list to retrieve all webhooks for. Specify either `id`
|
|
29
|
+
: (deprecated. Use `listTitle` instead) Title of the list to retrieve all webhooks for. Specify either `id`, `title`, `listTitle`, `listId` or `listUrl`.
|
|
27
30
|
|
|
28
31
|
--8<-- "docs/cmd/_global.md"
|
|
29
32
|
|
|
30
33
|
## Examples
|
|
31
34
|
|
|
32
|
-
List all webhooks for a list with
|
|
35
|
+
List all webhooks for a list with a specific ID in a specific site
|
|
33
36
|
|
|
34
37
|
```sh
|
|
35
38
|
m365 spo list webhook list --webUrl https://contoso.sharepoint.com/sites/project-x --listId 0cd891ef-afce-4e55-b836-fce03286cccf
|
|
36
39
|
```
|
|
37
40
|
|
|
38
|
-
List all webhooks for a list with
|
|
41
|
+
List all webhooks for a list with a specific title in a specific site
|
|
39
42
|
|
|
40
43
|
```sh
|
|
41
44
|
m365 spo list webhook list --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle Documents
|
|
42
45
|
```
|
|
46
|
+
|
|
47
|
+
List all webhooks for a list with a specific URL in a specific site
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
m365 spo list webhook list --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl '/sites/project-x/Documents'
|
|
51
|
+
```
|
|
@@ -11,19 +11,22 @@ m365 spo list webhook remove [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list
|
|
14
|
+
: URL of the site where the list is located.
|
|
15
15
|
|
|
16
16
|
`-l, --listId [listId]`
|
|
17
|
-
: ID of the list
|
|
17
|
+
: ID of the list. Specify either `listId`, `listTitle` or `listUrl`.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list
|
|
20
|
+
: Title of the list. Specify either `listId`, `listTitle` or `listUrl`.
|
|
21
|
+
|
|
22
|
+
`--listUrl [listUrl]`
|
|
23
|
+
: Server- or site-relative URL of the list. Specify either `listId`, `listTitle` or `listUrl`.
|
|
21
24
|
|
|
22
25
|
`-i, --id <id>`
|
|
23
|
-
: ID of the webhook
|
|
26
|
+
: ID of the webhook.
|
|
24
27
|
|
|
25
28
|
`--confirm`
|
|
26
|
-
: Don't prompt for
|
|
29
|
+
: Don't prompt for confirmation.
|
|
27
30
|
|
|
28
31
|
--8<-- "docs/cmd/_global.md"
|
|
29
32
|
|
|
@@ -33,20 +36,19 @@ If the specified id doesn't refer to an existing webhook, you will get a `404 -
|
|
|
33
36
|
|
|
34
37
|
## Examples
|
|
35
38
|
|
|
36
|
-
Remove webhook with ID
|
|
39
|
+
Remove webhook with a specific ID from a list retrieved by ID in a specific site
|
|
37
40
|
|
|
38
41
|
```sh
|
|
39
42
|
m365 spo list webhook remove --webUrl https://contoso.sharepoint.com/sites/ninja --listId 0cd891ef-afce-4e55-b836-fce03286cccf --id cc27a922-8224-4296-90a5-ebbc54da2e81
|
|
40
43
|
```
|
|
41
44
|
|
|
42
|
-
Remove webhook with ID
|
|
43
|
-
|
|
45
|
+
Remove webhook with a specific ID from a list retrieved by Title in a specific site
|
|
44
46
|
```sh
|
|
45
47
|
m365 spo list webhook remove --webUrl https://contoso.sharepoint.com/sites/ninja --listTitle Documents --id cc27a922-8224-4296-90a5-ebbc54da2e81
|
|
46
48
|
```
|
|
47
49
|
|
|
48
|
-
Remove webhook with ID
|
|
50
|
+
Remove webhook with a specific ID from a list retrieved by URL in a specific site without being asked for confirmation
|
|
49
51
|
|
|
50
52
|
```sh
|
|
51
|
-
m365 spo list webhook remove --webUrl https://contoso.sharepoint.com/sites/ninja --
|
|
53
|
+
m365 spo list webhook remove --webUrl https://contoso.sharepoint.com/sites/ninja --listUrl '/sites/ninja/Documents' --id cc27a922-8224-4296-90a5-ebbc54da2e81 --confirm
|
|
52
54
|
```
|
|
@@ -11,22 +11,25 @@ m365 spo list webhook set [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: URL of the site where the list
|
|
14
|
+
: URL of the site where the list is located.
|
|
15
15
|
|
|
16
16
|
`-l, --listId [listId]`
|
|
17
|
-
: ID of the list
|
|
17
|
+
: ID of the list. Specify either `listId`, `listTitle` or `listUrl`.
|
|
18
18
|
|
|
19
19
|
`-t, --listTitle [listTitle]`
|
|
20
|
-
: Title of the list
|
|
20
|
+
: Title of the list. Specify either `listId`, `listTitle` or `listUrl`.
|
|
21
|
+
|
|
22
|
+
`--listUrl [listUrl]`
|
|
23
|
+
: Server- or site-relative URL of the list. Specify either `listId`, `listTitle` or `listUrl`.
|
|
21
24
|
|
|
22
25
|
`-i, --id [id]`
|
|
23
|
-
: ID of the webhook to update
|
|
26
|
+
: ID of the webhook to update.
|
|
24
27
|
|
|
25
28
|
`-n, --notificationUrl [notificationUrl]`
|
|
26
|
-
: The new notification url
|
|
29
|
+
: The new notification url.
|
|
27
30
|
|
|
28
31
|
`-e, --expirationDateTime [expirationDateTime]`
|
|
29
|
-
: The new expiration date
|
|
32
|
+
: The new expiration date.
|
|
30
33
|
|
|
31
34
|
--8<-- "docs/cmd/_global.md"
|
|
32
35
|
|
|
@@ -36,21 +39,20 @@ If the specified `id` doesn't refer to an existing webhook, you will get a `404
|
|
|
36
39
|
|
|
37
40
|
## Examples
|
|
38
41
|
|
|
39
|
-
Update the notification url of a webhook with
|
|
42
|
+
Update the notification url of a webhook with a specific ID attached to a list with a specific ID in a specific site to a specific URL
|
|
40
43
|
|
|
41
44
|
```sh
|
|
42
45
|
m365 spo list webhook set --webUrl https://contoso.sharepoint.com/sites/ninja --listId 0cd891ef-afce-4e55-b836-fce03286cccf --id cc27a922-8224-4296-90a5-ebbc54da2e81 --notificationUrl https://contoso-functions.azurewebsites.net/webhook
|
|
43
46
|
```
|
|
44
47
|
|
|
45
|
-
Update the expiration date of a webhook with
|
|
48
|
+
Update the expiration date of a webhook with a specific ID attached to a list with a specific title in a specific site to a specfic date
|
|
46
49
|
|
|
47
50
|
```sh
|
|
48
51
|
m365 spo list webhook set --webUrl https://contoso.sharepoint.com/sites/ninja --listTitle Documents --id cc27a922-8224-4296-90a5-ebbc54da2e81 --expirationDateTime 2018-10-09T18:15
|
|
49
52
|
```
|
|
50
53
|
|
|
51
|
-
|
|
52
|
-
and the expiration date to _March 2nd, 2019_
|
|
54
|
+
Update the notification url of a webhook with a specific ID attached to a list with a specific URL in a specific site to a specific URL and the expiration date to a specific date
|
|
53
55
|
|
|
54
56
|
```sh
|
|
55
|
-
m365 spo list webhook set --webUrl https://contoso.sharepoint.com/sites/ninja --
|
|
57
|
+
m365 spo list webhook set --webUrl https://contoso.sharepoint.com/sites/ninja --listUrl '/sites/ninja/Documents' --id cc27a922-8224-4296-90a5-ebbc54da2e81 --notificationUrl https://contoso-functions.azurewebsites.net/webhook --expirationDateTime 2019-03-02
|
|
56
58
|
```
|
|
@@ -23,10 +23,10 @@ m365 teams channel add [options]
|
|
|
23
23
|
: The description of the channel to add
|
|
24
24
|
|
|
25
25
|
`--type [type]`
|
|
26
|
-
: Type of channel to create: `standard
|
|
26
|
+
: Type of channel to create: `standard`, `private`, `shared`. Default `standard`.
|
|
27
27
|
|
|
28
28
|
`--owner [owner]`
|
|
29
|
-
: User with this ID or UPN will be added as owner of the
|
|
29
|
+
: User with this ID or UPN will be added as owner of the channel. This option is required when type is `private` or `shared`.
|
|
30
30
|
|
|
31
31
|
--8<-- "docs/cmd/_global.md"
|
|
32
32
|
|
|
@@ -54,8 +54,8 @@ Add private channel to the specified Microsoft Teams team with owner UPN
|
|
|
54
54
|
m365 teams channel add --teamName "Team Name" --name climicrosoft365 --type private --owner john.doe@contoso.com
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
Add
|
|
57
|
+
Add shared channel to the specified Microsoft Teams team with owner ID
|
|
58
58
|
|
|
59
59
|
```sh
|
|
60
|
-
m365 teams channel add --teamId 6703ac8a-c49b-4fd4-8223-28f0ac3a6402 --name climicrosoft365 --type
|
|
60
|
+
m365 teams channel add --teamId 6703ac8a-c49b-4fd4-8223-28f0ac3a6402 --name climicrosoft365 --type shared --owner cc693a7d-4833-4911-a89a-f0fe6e49bf69
|
|
61
61
|
```
|
|
@@ -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
|
|
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
|
|
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.
|
|
3
|
+
"version": "5.9.0-beta.db8b86a",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -116,6 +116,7 @@
|
|
|
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
120
|
"Deshpande, Vardhaman <vardhaman.rd@gmail.com>",
|
|
120
121
|
"Dyjas, Robert <15113729+robdy@users.noreply.github.com>",
|
|
121
122
|
"Faleel, Mohamed Ashiq <ashiqf@gmail.com>",
|
|
@@ -165,6 +166,7 @@
|
|
|
165
166
|
"Priem, Mark <mark.priem@outlook.com>",
|
|
166
167
|
"Raju, Arnie <arnie.raju@thesolutioncollective.com.au>",
|
|
167
168
|
"Ramalho, David <dramalho@storm.ie>",
|
|
169
|
+
"Rathi, Tanmay <tanmay_rathi@intuit.com>",
|
|
168
170
|
"Reekmans, Yannick <reekmans.yannick@gmail.com>",
|
|
169
171
|
"Romano, Rodrigo <rodrigo@rodrigoromano.net>",
|
|
170
172
|
"Romão, Douglas <douglas.romao@trentim.com>",
|