@pnp/cli-microsoft365 8.1.0-beta.bf59841 → 9.0.0-beta.33615bd
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/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/app/commands/permission/permission-add.js +9 -9
- package/dist/m365/entra/commands/group/group-user-list.js +4 -4
- package/dist/m365/entra/commands/m365group/m365group-conversation-post-list.js +4 -4
- package/dist/m365/entra/commands/m365group/m365group-recyclebinitem-list.js +3 -3
- package/dist/m365/entra/commands/m365group/m365group-user-list.js +6 -9
- package/dist/m365/outlook/commands/message/message-get.js +11 -11
- package/dist/m365/spo/commands/list/list-list.js +1 -4
- package/dist/m365/spo/commands/site/site-appcatalog-remove.js +48 -24
- package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-restore.js +2 -22
- package/docs/docs/cmd/app/permission/permission-add.mdx +5 -5
- package/docs/docs/cmd/entra/group/group-user-list.mdx +7 -7
- package/docs/docs/cmd/entra/m365group/m365group-conversation-post-list.mdx +5 -5
- package/docs/docs/cmd/entra/m365group/m365group-recyclebinitem-list.mdx +3 -3
- package/docs/docs/cmd/entra/m365group/m365group-user-list.mdx +1 -1
- package/docs/docs/cmd/outlook/message/message-get.mdx +5 -5
- package/docs/docs/cmd/spo/list/list-list.mdx +5 -7
- package/docs/docs/cmd/spo/site/site-appcatalog-remove.mdx +11 -2
- package/docs/docs/cmd/spo/tenant/tenant-recyclebinitem-restore.mdx +2 -49
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
|
@@ -126,8 +126,7 @@ m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x --fil
|
|
|
126
126
|
"ParserDisabled": false,
|
|
127
127
|
"ServerTemplateCanCreateFolders": false,
|
|
128
128
|
"TemplateFeatureId": "00000000-0000-0000-0000-000000000000",
|
|
129
|
-
"Title": "Theme Gallery"
|
|
130
|
-
"Url": "/_catalogs/theme"
|
|
129
|
+
"Title": "Theme Gallery"
|
|
131
130
|
}
|
|
132
131
|
]
|
|
133
132
|
```
|
|
@@ -136,17 +135,17 @@ m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x --fil
|
|
|
136
135
|
<TabItem value="Text">
|
|
137
136
|
|
|
138
137
|
```text
|
|
139
|
-
Id
|
|
138
|
+
Id Title
|
|
140
139
|
------------------------------------ ----------------
|
|
141
|
-
66e5148c-7060-4479-88e7-636d79579148
|
|
140
|
+
66e5148c-7060-4479-88e7-636d79579148 Theme Gallery
|
|
142
141
|
```
|
|
143
142
|
|
|
144
143
|
</TabItem>
|
|
145
144
|
<TabItem value="CSV">
|
|
146
145
|
|
|
147
146
|
```csv
|
|
148
|
-
Id,
|
|
149
|
-
|
|
147
|
+
Id,Title
|
|
148
|
+
66e5148c-7060-4479-88e7-636d79579148,Theme Gallery
|
|
150
149
|
```
|
|
151
150
|
|
|
152
151
|
</TabItem>
|
|
@@ -211,7 +210,6 @@ m365 spo list list --webUrl https://contoso.sharepoint.com/sites/project-x --fil
|
|
|
211
210
|
ServerTemplateCanCreateFolders | true
|
|
212
211
|
TemplateFeatureId | 00000000-0000-0000-0000-000000000000
|
|
213
212
|
Title | Theme Gallery
|
|
214
|
-
Url | //\_catalogs/theme
|
|
215
213
|
```
|
|
216
214
|
|
|
217
215
|
</TabItem>
|
|
@@ -14,7 +14,10 @@ m365 spo site appcatalog remove [options]
|
|
|
14
14
|
|
|
15
15
|
```md definition-list
|
|
16
16
|
`-u, --siteUrl <siteUrl>`
|
|
17
|
-
: URL of the site collection containing the app catalog to disable
|
|
17
|
+
: URL of the site collection containing the app catalog to disable.
|
|
18
|
+
|
|
19
|
+
`-f, --force`
|
|
20
|
+
: Don't prompt for confirmation.
|
|
18
21
|
```
|
|
19
22
|
|
|
20
23
|
<Global />
|
|
@@ -31,12 +34,18 @@ To use this command you have to have permissions to access the tenant admin site
|
|
|
31
34
|
|
|
32
35
|
## Examples
|
|
33
36
|
|
|
34
|
-
Remove the site collection app catalog from specified site
|
|
37
|
+
Remove the site collection app catalog from specified site.
|
|
35
38
|
|
|
36
39
|
```sh
|
|
37
40
|
m365 spo site appcatalog remove --siteUrl https://contoso.sharepoint/sites/site
|
|
38
41
|
```
|
|
39
42
|
|
|
43
|
+
Remove the site collection app catalog from specified site without prompting for confirmation.
|
|
44
|
+
|
|
45
|
+
```sh
|
|
46
|
+
m365 spo site appcatalog remove --siteUrl https://contoso.sharepoint/sites/site --force
|
|
47
|
+
```
|
|
48
|
+
|
|
40
49
|
## Response
|
|
41
50
|
|
|
42
51
|
The command won't return a response on success.
|
|
@@ -17,9 +17,6 @@ m365 spo tenant recyclebinitem restore [options]
|
|
|
17
17
|
```md definition-list
|
|
18
18
|
`-u, --siteUrl <siteUrl>`
|
|
19
19
|
: URL of the site.
|
|
20
|
-
|
|
21
|
-
`--wait`
|
|
22
|
-
: (deprecated) Wait for the site collection to be restored before completing the command.
|
|
23
20
|
```
|
|
24
21
|
|
|
25
22
|
<Global />
|
|
@@ -34,7 +31,7 @@ To use this command you must be a Global or SharePoint administrator.
|
|
|
34
31
|
|
|
35
32
|
## Examples
|
|
36
33
|
|
|
37
|
-
|
|
34
|
+
Restores a deleted site collection from tenant recycle bin.
|
|
38
35
|
|
|
39
36
|
```sh
|
|
40
37
|
m365 spo tenant recyclebinitem restore --siteUrl https://contoso.sharepoint.com/sites/team
|
|
@@ -42,48 +39,4 @@ m365 spo tenant recyclebinitem restore --siteUrl https://contoso.sharepoint.com/
|
|
|
42
39
|
|
|
43
40
|
## Response
|
|
44
41
|
|
|
45
|
-
|
|
46
|
-
<TabItem value="JSON">
|
|
47
|
-
|
|
48
|
-
```json
|
|
49
|
-
{
|
|
50
|
-
"HasTimedout": false,
|
|
51
|
-
"IsComplete": true,
|
|
52
|
-
"PollingInterval": 15000
|
|
53
|
-
}
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
</TabItem>
|
|
57
|
-
<TabItem value="Text">
|
|
58
|
-
|
|
59
|
-
```text
|
|
60
|
-
HasTimedout : false
|
|
61
|
-
IsComplete : true
|
|
62
|
-
PollingInterval: 15000
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
</TabItem>
|
|
66
|
-
<TabItem value="CSV">
|
|
67
|
-
|
|
68
|
-
```csv
|
|
69
|
-
HasTimedout,IsComplete,PollingInterval
|
|
70
|
-
,1,15000
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
</TabItem>
|
|
74
|
-
<TabItem value="Markdown">
|
|
75
|
-
|
|
76
|
-
```md
|
|
77
|
-
# spo tenant recyclebinitem restore --siteUrl "https://contoso.sharepoint.com/teams/team1"
|
|
78
|
-
|
|
79
|
-
Date: 2023-06-22
|
|
80
|
-
|
|
81
|
-
Property | Value
|
|
82
|
-
---------|-------
|
|
83
|
-
HasTimedout | false
|
|
84
|
-
IsComplete | true
|
|
85
|
-
PollingInterval | 15000
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
</TabItem>
|
|
89
|
-
</Tabs>
|
|
42
|
+
The command won't return a response on success.
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@pnp/cli-microsoft365",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "9.0.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@azure/msal-common": "^14.11.0",
|
package/package.json
CHANGED