@pnp/cli-microsoft365 5.0.0-beta.aff293c → 5.0.0-beta.fe151d6
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 +2 -2
- package/dist/appInsights.js +2 -0
- package/dist/cli/Cli.js +4 -1
- package/dist/m365/aad/commands/app/app-add.js +58 -5
- package/dist/m365/aad/commands/o365group/o365group-add.js +56 -50
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-add.js +5 -8
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-list.js +7 -7
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-remove.js +36 -12
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-set.js +3 -3
- package/dist/m365/aad/commands/sp/sp-add.js +107 -0
- package/dist/m365/aad/commands/sp/sp-get.js +44 -21
- package/dist/m365/aad/commands.js +1 -0
- package/dist/m365/base/M365RcJson.js +3 -0
- package/dist/m365/file/commands/file-add.js +32 -13
- package/dist/m365/file/commands/file-list.js +181 -0
- package/dist/m365/file/commands.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.13.1.js +53 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +2 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +176 -62
- package/dist/m365/spo/commands/contenttype/contenttype-list.js +52 -0
- package/dist/m365/spo/commands/list/list-get.js +6 -2
- package/dist/m365/spo/commands/listitem/listitem-attachment-list.js +90 -0
- package/dist/m365/spo/commands/page/Page.js +3 -1
- package/dist/m365/spo/commands/page/page-add.js +7 -10
- package/dist/m365/spo/commands/page/page-set.js +7 -10
- package/dist/m365/spo/commands/site/site-remove.js +98 -30
- package/dist/m365/spo/commands.js +3 -1
- package/dist/m365/teams/commands/report/report-directroutingcalls.js +1 -1
- package/dist/m365/teams/commands/report/report-pstncalls.js +1 -1
- package/docs/docs/cmd/aad/app/app-add.md +11 -0
- package/docs/docs/cmd/aad/o365group/o365group-add.md +1 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-list.md +4 -3
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-remove.md +9 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-set.md +3 -2
- package/docs/docs/cmd/aad/sp/sp-add.md +53 -0
- package/docs/docs/cmd/aad/sp/sp-get.md +2 -1
- package/docs/docs/cmd/file/file-add.md +11 -0
- package/docs/docs/cmd/file/file-list.md +46 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/contenttype/contenttype-list.md +33 -0
- package/docs/docs/cmd/spo/list/list-get.md +9 -0
- package/docs/docs/cmd/spo/listitem/listitem-attachment-list.md +39 -0
- package/docs/docs/cmd/spo/page/page-add.md +2 -2
- package/docs/docs/cmd/spo/page/page-set.md +3 -3
- package/docs/docs/cmd/spo/site/site-remove.md +3 -1
- package/docs/docs/cmd/teams/report/report-directroutingcalls.md +0 -3
- package/docs/docs/cmd/teams/report/report-pstncalls.md +4 -3
- package/npm-shrinkwrap.json +508 -886
- package/package.json +18 -17
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# spo listitem attachment list
|
|
2
|
+
|
|
3
|
+
Gets the attachments associated to a list item
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 spo listitem attachment list [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-u, --webUrl <webUrl>`
|
|
14
|
+
URL of the site from which the item should be retrieved
|
|
15
|
+
|
|
16
|
+
`--listId [listId]`
|
|
17
|
+
: ID of the list from which to retrieve the item. Specify listId or listTitle but not both
|
|
18
|
+
|
|
19
|
+
`--listTitle [listTitle]`
|
|
20
|
+
: Title of the list from which to retrieve the item. Specify listId or listTitle but not both
|
|
21
|
+
|
|
22
|
+
`--itemId <itemId>`
|
|
23
|
+
ID of the list item to in question
|
|
24
|
+
|
|
25
|
+
--8<-- "docs/cmd/_global.md"
|
|
26
|
+
|
|
27
|
+
## Examples
|
|
28
|
+
|
|
29
|
+
Gets the attachments from list item with itemId _147_ in list with title _Demo List_ in site _https://contoso.sharepoint.com/sites/project-x_
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 spo listitem attachment list --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "Demo List" --itemId 147
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Gets the attachments from list item with itemId _147_ in list with id _0cd891ef-afce-4e55-b836-fce03286cccf_ in site _https://contoso.sharepoint.com/sites/project-x_
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 spo listitem attachment list --webUrl https://contoso.sharepoint.com/sites/project-x --listId 0cd891ef-afce-4e55-b836-fce03286cccf --itemId 147
|
|
39
|
+
```
|
|
@@ -20,10 +20,10 @@ m365 spo page add [options]
|
|
|
20
20
|
: Title of the page to create. If not specified, will use the page name as its title
|
|
21
21
|
|
|
22
22
|
`-l, --layoutType [layoutType]`
|
|
23
|
-
: Layout of the page. Allowed values `Article
|
|
23
|
+
: Layout of the page. Allowed values `Article`, `Home`, `SingleWebPartAppPage`, `RepostPage`,`HeaderlessSearchResults`, `Spaces`, `Topic`. Default `Article`
|
|
24
24
|
|
|
25
25
|
`-p, --promoteAs [promoteAs]`
|
|
26
|
-
: Create the page for a specific purpose. Allowed values `HomePage
|
|
26
|
+
: Create the page for a specific purpose. Allowed values `HomePage`, `NewsPage`
|
|
27
27
|
|
|
28
28
|
`--commentsEnabled`
|
|
29
29
|
: Set to enable comments on the page
|
|
@@ -17,13 +17,13 @@ m365 spo page set [options]
|
|
|
17
17
|
: URL of the site where the page to update is located
|
|
18
18
|
|
|
19
19
|
`-l, --layoutType [layoutType]`
|
|
20
|
-
: Layout of the page. Allowed values `Article
|
|
20
|
+
: Layout of the page. Allowed values `Article`, `Home`, `SingleWebPartAppPage`, `RepostPage`,`HeaderlessSearchResults`, `Spaces`, `Topic`
|
|
21
21
|
|
|
22
22
|
`-p, --promoteAs [promoteAs]`
|
|
23
|
-
: Update the page purpose. Allowed values `HomePage
|
|
23
|
+
: Update the page purpose. Allowed values `HomePage`, `NewsPage`
|
|
24
24
|
|
|
25
25
|
`--commentsEnabled [commentsEnabled]`
|
|
26
|
-
: Set to `true`, to enable comments on the page. Allowed values `true
|
|
26
|
+
: Set to `true`, to enable comments on the page. Allowed values `true`, `false`
|
|
27
27
|
|
|
28
28
|
`--publish`
|
|
29
29
|
: Set to publish the page
|
|
@@ -34,7 +34,9 @@ m365 spo site remove [options]
|
|
|
34
34
|
|
|
35
35
|
Deleting a site collection is by default asynchronous and depending on the current state of Microsoft 365, might take up to few minutes. If you're building a script with steps that require the site to be fully deleted, you should use the `--wait` flag. When using this flag, the `spo site remove` command will keep running until it received confirmation from Microsoft 365 that the site has been fully deleted.
|
|
36
36
|
|
|
37
|
-
If the site which you have selected to remove is groupified (Modern Team Site), flags `--
|
|
37
|
+
If the site which you have selected to remove is groupified (Modern Team Site) and group exists, flags `--skipRecycleBin` and `--wait` will not be applicable. If the linked group still exists in the deleted groups, the site won't be removed. If the linked group is permanently deleted, the site will be removed like any classic site (except that flag `--wait` only will still not be applicable).
|
|
38
|
+
|
|
39
|
+
If the argument `--fromRecycleBin` is passed, the selected site will be permanently removed even if it's a groupified one.
|
|
38
40
|
|
|
39
41
|
## Examples
|
|
40
42
|
|
|
@@ -24,9 +24,6 @@ This command only works with app-only permissions. You will need to create your
|
|
|
24
24
|
|
|
25
25
|
The difference between `fromDateTime` and `toDateTime` cannot exceed a period of 90 days
|
|
26
26
|
|
|
27
|
-
!!! attention
|
|
28
|
-
This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
|
|
29
|
-
|
|
30
27
|
## Examples
|
|
31
28
|
|
|
32
29
|
Get details about direct routing calls made between 2020-10-31 and today
|
|
@@ -24,9 +24,6 @@ This command only works with app-only permissions. You will need to create your
|
|
|
24
24
|
|
|
25
25
|
The difference between `fromDateTime` and `toDateTime` cannot exceed a period of 90 days
|
|
26
26
|
|
|
27
|
-
!!! attention
|
|
28
|
-
This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
|
|
29
|
-
|
|
30
27
|
## Examples
|
|
31
28
|
|
|
32
29
|
Get details about PSTN calls made between 2020-10-31 and today
|
|
@@ -46,3 +43,7 @@ Get details about PSTN calls made between 2020-10-31 and 2020-12-31 and exports
|
|
|
46
43
|
```sh
|
|
47
44
|
m365 teams report pstncalls --fromDateTime 2020-10-31 --toDateTime 2020-12-31 --output json > "pstncalls.json"
|
|
48
45
|
```
|
|
46
|
+
|
|
47
|
+
## More information
|
|
48
|
+
|
|
49
|
+
- List PSTN calls: [https://docs.microsoft.com/en-us/graph/api/callrecords-callrecord-getpstncalls?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/callrecords-callrecord-getpstncalls?view=graph-rest-1.0)
|