@pnp/cli-microsoft365 9.1.0-beta.4ee36d4 → 9.1.0-beta.94ae9ed

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 (48) hide show
  1. package/allCommands.json +1 -1
  2. package/allCommandsFull.json +1 -1
  3. package/dist/m365/base/PowerAutomateCommand.js +1 -1
  4. package/dist/m365/flow/commands/environment/environment-get.js +1 -1
  5. package/dist/m365/flow/commands/environment/environment-list.js +1 -1
  6. package/dist/m365/flow/commands/flow-disable.js +1 -1
  7. package/dist/m365/flow/commands/flow-enable.js +1 -1
  8. package/dist/m365/flow/commands/flow-export.js +17 -16
  9. package/dist/m365/flow/commands/flow-get.js +1 -1
  10. package/dist/m365/flow/commands/flow-list.js +1 -1
  11. package/dist/m365/flow/commands/flow-remove.js +1 -1
  12. package/dist/m365/flow/commands/owner/owner-ensure.js +1 -1
  13. package/dist/m365/flow/commands/owner/owner-list.js +1 -1
  14. package/dist/m365/flow/commands/owner/owner-remove.js +1 -1
  15. package/dist/m365/flow/commands/recyclebinitem/recyclebinitem-list.js +47 -0
  16. package/dist/m365/flow/commands/recyclebinitem/recyclebinitem-restore.js +48 -0
  17. package/dist/m365/flow/commands/run/run-cancel.js +1 -1
  18. package/dist/m365/flow/commands/run/run-get.js +1 -1
  19. package/dist/m365/flow/commands/run/run-list.js +1 -1
  20. package/dist/m365/flow/commands/run/run-resubmit.js +2 -2
  21. package/dist/m365/flow/commands.js +2 -0
  22. package/dist/m365/spo/commands/file/file-roleassignment-add.js +17 -54
  23. package/dist/m365/spo/commands/file/file-roleassignment-remove.js +13 -40
  24. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +5 -13
  25. package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +5 -13
  26. package/dist/m365/spo/commands/folder/folder-sharinglink-add.js +143 -0
  27. package/dist/m365/spo/commands/folder/folder-sharinglink-clear.js +111 -0
  28. package/dist/m365/spo/commands/folder/folder-sharinglink-remove.js +95 -0
  29. package/dist/m365/spo/commands/list/list-get.js +17 -4
  30. package/dist/m365/spo/commands/page/page-section-add.js +185 -34
  31. package/dist/m365/spo/commands/site/SiteAdmin.js +2 -0
  32. package/dist/m365/spo/commands/site/site-admin-add.js +252 -0
  33. package/dist/m365/spo/commands/site/site-admin-list.js +2 -27
  34. package/dist/m365/spo/commands/user/user-get.js +67 -9
  35. package/dist/m365/spo/commands.js +4 -0
  36. package/dist/m365/spp/commands/contentcenter/contentcenter-list.js +56 -0
  37. package/dist/m365/spp/commands.js +5 -0
  38. package/dist/utils/spo.js +75 -7
  39. package/docs/docs/cmd/flow/recyclebinitem/recyclebinitem-list.mdx +132 -0
  40. package/docs/docs/cmd/flow/recyclebinitem/recyclebinitem-restore.mdx +55 -0
  41. package/docs/docs/cmd/spo/folder/folder-sharinglink-add.mdx +125 -0
  42. package/docs/docs/cmd/spo/folder/folder-sharinglink-clear.mdx +50 -0
  43. package/docs/docs/cmd/spo/folder/folder-sharinglink-remove.mdx +50 -0
  44. package/docs/docs/cmd/spo/page/page-section-add.mdx +57 -2
  45. package/docs/docs/cmd/spo/site/site-admin-add.mdx +67 -0
  46. package/docs/docs/cmd/spo/user/user-get.mdx +35 -9
  47. package/docs/docs/cmd/spp/contentcenter/contentcenter-list.mdx +289 -0
  48. package/package.json +1 -1
@@ -0,0 +1,50 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+
3
+ # spo folder sharinglink clear
4
+
5
+ Removes sharing links of a folder
6
+
7
+ ## Usage
8
+
9
+ ```sh
10
+ m365 spo folder sharinglink clear [options]
11
+ ```
12
+
13
+ ## Options
14
+
15
+ ```md definition-list
16
+ `-u, --webUrl <webUrl>`
17
+ : The URL of the site where the folder is located.
18
+
19
+ `--folderUrl [folderUrl]`
20
+ : The server- or site-relative decoded URL of the folder. Specify either `folderUrl` or `folderId` but not both.
21
+
22
+ `--folderId [folderId]`
23
+ : The Unique ID (GUID) of the folder. Specify either `folderUrl` or `folderId` but not both.
24
+
25
+ `-s, --scope [scope]`
26
+ : Scope of the sharing link. Possible options are: `anonymous`, `users` or `organization`. If not specified, all links will be removed.
27
+
28
+ `-f, --force`
29
+ : Don't prompt for confirmation.
30
+ ```
31
+
32
+ <Global />
33
+
34
+ ## Examples
35
+
36
+ Removes all sharing links from a folder specified by id without prompting for confirmation.
37
+
38
+ ```sh
39
+ m365 spo folder sharinglink clear --webUrl https://contoso.sharepoint.com/sites/demo --folderId daebb04b-a773-4baa-b1d1-3625418e3234 --force
40
+ ```
41
+
42
+ Removes sharing links of type anonymous from a folder specified by url with prompting for confirmation.
43
+
44
+ ```sh
45
+ m365 spo folder sharinglink clear --webUrl https://contoso.sharepoint.com/sites/demo --folderUrl '/sites/demo/Shared Documents/folder1' --scope anonymous
46
+ ```
47
+
48
+ ## Response
49
+
50
+ The command won't return a response on success.
@@ -0,0 +1,50 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+
3
+ # spo folder sharinglink remove
4
+
5
+ Removes a specific sharing link of a folder
6
+
7
+ ## Usage
8
+
9
+ ```sh
10
+ m365 spo folder sharinglink remove [options]
11
+ ```
12
+
13
+ ## Options
14
+
15
+ ```md definition-list
16
+ `-u, --webUrl <webUrl>`
17
+ : The URL of the site where the folder is located.
18
+
19
+ `--folderUrl [folderUrl]`
20
+ : The server- or site-relative decoded URL of the folder. Specify either `folderUrl` or `folderId` but not both.
21
+
22
+ `--folderId [folderId]`
23
+ : The UniqueId (GUID) of the folder. Specify either `folderUrl` or `folderId` but not both.
24
+
25
+ `-i, --id <id>`
26
+ : The ID of the sharing link.
27
+
28
+ `-f, --force`
29
+ : Don't prompt for confirmation.
30
+ ```
31
+
32
+ <Global />
33
+
34
+ ## Examples
35
+
36
+ Removes a specific sharing link from a folder by id without prompting for confirmation.
37
+
38
+ ```sh
39
+ m365 spo folder sharinglink remove --webUrl https://contoso.sharepoint.com/sites/demo --folderId daebb04b-a773-4baa-b1d1-3625418e3234 --id c391b57d-5783-4c53-9236-cefb5c6ef323 --force
40
+ ```
41
+
42
+ Removes a specific sharing link from a folder by url with prompting for confirmation.
43
+
44
+ ```sh
45
+ m365 spo folder sharinglink remove --webUrl https://contoso.sharepoint.com/sites/demo --folderUrl /sites/demo/shared%20documents/Folder --id c391b57d-5783-4c53-9236-cefb5c6ef323
46
+ ```
47
+
48
+ ## Response
49
+
50
+ The command won't return a response on success.
@@ -26,10 +26,46 @@ m365 spo page section add [options]
26
26
  : Order of the section to add.
27
27
 
28
28
  `--zoneEmphasis [zoneEmphasis]`
29
- : Section background shading. Allowed values `None`, `Neutral`, `Soft`, `Strong`
29
+ : Section background shading. Allowed values `None`, `Neutral`, `Soft`, `Strong`, `Image`,`Gradient`
30
30
 
31
31
  `--isLayoutReflowOnTop`
32
- : The position of the Vertical section for smaller screens. Applied only for Vertical section.
32
+ : The position of the Vertical section for smaller screens. Applied only for `Vertical` section.
33
+
34
+ `--isCollapsibleSection`
35
+ : Set section to be collapsible.
36
+
37
+ `--showDivider`
38
+ : Shows a divider line between sections.
39
+
40
+ `--iconAlignment [iconAlignment]`
41
+ : Specifies the alignment of the expand/collapse icon. Sets `Left` alignment if not specified.
42
+
43
+ `--isExpanded`
44
+ : Sets the default display state of the collapsible section. Sets `false` if not specified.
45
+
46
+ `--gradientText [gradientText]`
47
+ : Sets the gradient setting of the background of a section. Required when `zoneEmphasis` is `Gradient`.
48
+
49
+ `--imageUrl [imageUrl]`
50
+ : The background image URL. Required when `zoneEmphasis` is `Image`.
51
+
52
+ `--imageHeight [imageHeight]`
53
+ : The height of the background image. Applied only when when `zoneEmphasis` is `Image`. Sets `955` value if not specified.
54
+
55
+ `--imageWidth [imageWidth]`
56
+ : The width of the background image. Applied only when `zoneEmphasis` is `Image`. Sets `555` value if not specified.
57
+
58
+ `--fillMode [fillMode]`
59
+ : The fill mode of the background image. Applied only when `zoneEmphasis` is `Image`. Possible values are `ScaleToFill`, `ScaleToFit`, `Tile`, `OriginalSize`. Sets `ScaleToFill` value if not specified.
60
+
61
+ `--useLightText`
62
+ : Specifies whether to use light text for the background. Applied only when `zoneEmphasis` is `Image`.
63
+
64
+ `--overlayColor [overlayColor]`
65
+ : The overlay color for the background in #RRGGBB format. Applied only when `zoneEmphasis` is `Image` or `Gradient`. Sets `#ffffff` value if not specified.
66
+
67
+ `--overlayOpacity [overlayOpacity]`
68
+ : The overlay opacity for the background. Applied only when `zoneEmphasis` is `Image` or `Gradient`. Sets `60` value if not specified.
33
69
  ```
34
70
 
35
71
  <Global />
@@ -64,6 +100,25 @@ Add Vertical section with background shading to the modern page with adjusting t
64
100
  m365 spo page section add --pageName home.aspx --webUrl https://contoso.sharepoint.com/sites/newsletter --sectionTemplate Vertical --zoneEmphasis Neutral --isLayoutReflowOnTop
65
101
  ```
66
102
 
103
+ Add OneColumn section as a collapsible section as expanded with icon alligned to the left
104
+
105
+ ```sh
106
+ m365 spo page section add --pageName home.aspx --webUrl https://contoso.sharepoint.com/sites/newsletter --sectionTemplate OneColumn --isCollapsibleSection --isExpanded --iconAlignment Left
107
+ ```
108
+
109
+ Add TwoColumn section with Image background
110
+
111
+ ```sh
112
+ m365 spo page section add --pageName home.aspx --webUrl https://contoso.sharepoint.com/sites/newsletter --sectionTemplate TwoColumn --imageUrl "https://contoso.com/image.jpg" --zoneEmphasis Image --fillMode Tile
113
+ ```
114
+
115
+ Add OneColumn section with Gradient background
116
+
117
+ ```sh
118
+ m365 spo page section add --pageName home.aspx --webUrl https://contoso.sharepoint.com/sites/newsletter --sectionTemplate TwoColumn --zoneEmphasis Gradient --gradientText "linear-gradient(72.44deg, #E6FBFE 0%, #EDDDFB 100%)"
119
+ ```
120
+
121
+
67
122
  ## Response
68
123
 
69
124
  The command won't return a response on success.
@@ -0,0 +1,67 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # spo site admin add
6
+
7
+ Adds a user or group as a site collection administrator
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 spo site admin add [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-u, --siteUrl <siteUrl>`
19
+ : The URL of the SharePoint site
20
+
21
+ `--userId [userId]`
22
+ : The ID of the user to add as a site collection admin
23
+
24
+ `--userName [userName]`
25
+ : The user principal name of the user to add as a site collection admin
26
+
27
+ `--groupId [groupId]`
28
+ : The ID of the Microsoft Entra ID group to add as a site collection admin
29
+
30
+ `--groupName [groupName]`
31
+ : The name of the Microsoft Entra ID group to add as a site collection admin
32
+
33
+ `--primary`
34
+ : If set, will add the user as primary site collection admin. The old primary site collection admin will be replaced and set as secondary site collection admin
35
+
36
+ `--asAdmin`
37
+ : If specified, we will use the SharePoint admin center to execute the command
38
+ ```
39
+
40
+ <Global />
41
+
42
+ ## Remarks
43
+
44
+ :::info
45
+
46
+ To use this command with the `--asAdmin` mode, you have to have permissions to access the tenant admin site.
47
+
48
+ Without this parameter, you have to have site collection admin permissions for the requested site.
49
+
50
+ :::
51
+
52
+ ## Examples
53
+
54
+ Add user as primary site collection administrator
55
+
56
+ ```sh
57
+ m365 spo site admin add --siteUrl https://contoso.sharepoint.com --userId 600713c5-53c6-4f24-b454-3c35e22b2639 --primary
58
+ ```
59
+
60
+ Adds group as secondary site collection administrator as SharePoint admin
61
+
62
+ ```sh
63
+ m365 spo site admin add --siteUrl https://contoso.sharepoint.com --groupName SP_Administrators --asAdmin
64
+ ```
65
+ ## Response
66
+
67
+ The command won't return a response on success.
@@ -16,41 +16,68 @@ m365 spo user get [options]
16
16
 
17
17
  ```md definition-list
18
18
  `-u, --webUrl <webUrl>`
19
- : URL of the web to get the user within
19
+ : URL of the web to get the user within.
20
20
 
21
21
  `-i, --id [id]`
22
- : ID of the user to retrieve information for. Use either `email`, `id` or `loginName`, but not all.
22
+ : ID of the user to retrieve information for. Specify either `id`, `loginName`, `email`, `userName`, `entraGroupId`, or `entraGroupName`.
23
23
 
24
24
  `--email [email]`
25
- : Email of the user to retrieve information for. Use either `email`, `id` or `loginName`, but not all.
25
+ : Email of the user to retrieve information for. Specify either `id`, `loginName`, `email`, `userName`, `entraGroupId`, or `entraGroupName`.
26
26
 
27
27
  `--loginName [loginName]`
28
- : Login name of the user to retrieve information for. Use either `email`, `id` or `loginName`, but not all.
28
+ : Login name of the user to retrieve information for. Specify either `id`, `loginName`, `email`, `userName`, `entraGroupId`, or `entraGroupName`.
29
+
30
+ `--userName [userName]`
31
+ : User's UPN (user principal name, eg. megan.bowen@contoso.com). Specify either `id`, `loginName`, `email`, `userName`, `entraGroupId`, or `entraGroupName`.
32
+
33
+ `--entraGroupId [entraGroupId]`
34
+ : The object ID of the Microsoft Entra group. Specify either `id`, `loginName`, `email`, `userName`, `entraGroupId`, or `entraGroupName`.
35
+
36
+ `--entraGroupName [entraGroupName]`
37
+ : The name of the Microsoft Entra group. Specify either `id`, `loginName`, `email`, `userName`, `entraGroupId`, or `entraGroupName`.
29
38
  ```
30
39
 
31
40
  <Global />
32
41
 
33
42
  ## Examples
34
43
 
35
- Get user by email for a web
44
+ Get user by email for a web.
36
45
 
37
46
  ```sh
38
47
  m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --email john.doe@mytenant.onmicrosoft.com
39
48
  ```
40
49
 
41
- Get user by ID for a web
50
+ Get user by ID for a web.
42
51
 
43
52
  ```sh
44
53
  m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --id 6
45
54
  ```
46
55
 
47
- Get user by login name for a web
56
+ Get user by login name for a web.
48
57
 
49
58
  ```sh
50
59
  m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --loginName "i:0#.f|membership|john.doe@mytenant.onmicrosoft.com"
51
60
  ```
52
61
 
53
- Get the currently logged-in user
62
+ Get user by user's UPN for a web.
63
+
64
+ ```sh
65
+ m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --userName "john.doe@mytenant.onmicrosoft.com"
66
+ ```
67
+
68
+ Get user by entraGroupId for a web.
69
+
70
+ ```sh
71
+ m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --entraGroupId f832a493-de73-4fef-87ed-8c6fffd91be6
72
+ ```
73
+
74
+ Get user by entraGroupName for a web.
75
+
76
+ ```sh
77
+ m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x --entraGroupName "Test Members"
78
+ ```
79
+
80
+ Get the currently logged-in user.
54
81
 
55
82
  ```sh
56
83
  m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x
@@ -134,4 +161,3 @@ m365 spo user get --webUrl https://contoso.sharepoint.com/sites/project-x
134
161
 
135
162
  </TabItem>
136
163
  </Tabs>
137
-
@@ -0,0 +1,289 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # spp contentcenter list
6
+
7
+ Gets information about the SharePoint Premium content centers
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ spp contentcenter list
13
+ ```
14
+
15
+ ## Options
16
+
17
+ No options required
18
+
19
+ <Global />
20
+
21
+ ## Remarks
22
+
23
+ :::info
24
+
25
+ To use this command you have to have permissions to access the tenant admin site.
26
+
27
+ :::
28
+
29
+ ## Examples
30
+
31
+ Gets information about the SharePoint Premium content centers
32
+
33
+ ```sh
34
+ m365 spp contentcenter list
35
+ ```
36
+
37
+ ## Response
38
+
39
+ <Tabs>
40
+ <TabItem value="JSON">
41
+
42
+ ```json
43
+ [
44
+ {
45
+ "_ObjectType_": "Microsoft.Online.SharePoint.TenantAdministration.SiteProperties",
46
+ "_ObjectIdentity_": "855b40a1-6024-9000-87b1-7d412d935b3c|908bed80-a04a-4433-b4a0-883d9847d110:dc109ffd-4298-487e-9cbc-6b9b1a2cd3e2\\\nSiteProperties\\\nhttps%3a%2f%2fcontoso.sharepoint.com%2fsites%2fContentCentre",
47
+ "AllowDownloadingNonWebViewableFiles": false,
48
+ "AllowEditing": false,
49
+ "AllowSelfServiceUpgrade": true,
50
+ "AnonymousLinkExpirationInDays": 0,
51
+ "ApplyToExistingDocumentLibraries": false,
52
+ "ApplyToNewDocumentLibraries": false,
53
+ "ArchiveStatus": "NotArchived",
54
+ "AuthContextStrength": null,
55
+ "AuthenticationContextLimitedAccess": false,
56
+ "AuthenticationContextName": null,
57
+ "AverageResourceUsage": 0,
58
+ "BlockDownloadLinksFileType": 0,
59
+ "BlockDownloadMicrosoft365GroupIds": null,
60
+ "BlockDownloadPolicy": false,
61
+ "BlockDownloadPolicyFileTypeIds": null,
62
+ "BlockGuestsAsSiteAdmin": 0,
63
+ "BonusDiskQuota": 0,
64
+ "ClearRestrictedAccessControl": false,
65
+ "CommentsOnSitePagesDisabled": false,
66
+ "CompatibilityLevel": 15,
67
+ "ConditionalAccessPolicy": 0,
68
+ "CurrentResourceUsage": 0,
69
+ "DefaultLinkPermission": 0,
70
+ "DefaultLinkToExistingAccess": false,
71
+ "DefaultLinkToExistingAccessReset": false,
72
+ "DefaultShareLinkRole": 0,
73
+ "DefaultShareLinkScope": 0,
74
+ "DefaultSharingLinkType": 0,
75
+ "DenyAddAndCustomizePages": 2,
76
+ "Description": null,
77
+ "DisableAppViews": 0,
78
+ "DisableCompanyWideSharingLinks": 0,
79
+ "DisableFlows": 0,
80
+ "EnableAutoExpirationVersionTrim": false,
81
+ "ExcludeBlockDownloadPolicySiteOwners": false,
82
+ "ExcludeBlockDownloadSharePointGroups": [],
83
+ "ExcludedBlockDownloadGroupIds": [],
84
+ "ExpireVersionsAfterDays": 0,
85
+ "ExternalUserExpirationInDays": 0,
86
+ "GroupId": "/Guid(00000000-0000-0000-0000-000000000000)/",
87
+ "GroupOwnerLoginName": null,
88
+ "HasHolds": false,
89
+ "HubSiteId": "/Guid(00000000-0000-0000-0000-000000000000)/",
90
+ "IBMode": null,
91
+ "IBSegments": null,
92
+ "IBSegmentsToAdd": null,
93
+ "IBSegmentsToRemove": null,
94
+ "InheritVersionPolicyFromTenant": false,
95
+ "IsGroupOwnerSiteAdmin": false,
96
+ "IsHubSite": false,
97
+ "IsTeamsChannelConnected": false,
98
+ "IsTeamsConnected": false,
99
+ "LastContentModifiedDate": "/Date(2024,6,22,2,59,8,0)/",
100
+ "Lcid": 1045,
101
+ "LimitedAccessFileType": 0,
102
+ "ListsShowHeaderAndNavigation": false,
103
+ "LockIssue": null,
104
+ "LockReason": 0,
105
+ "LockState": "Unlock",
106
+ "LoopDefaultSharingLinkRole": 0,
107
+ "LoopDefaultSharingLinkScope": 0,
108
+ "MajorVersionLimit": 0,
109
+ "MajorWithMinorVersionsLimit": 0,
110
+ "MediaTranscription": 0,
111
+ "OverrideBlockUserInfoVisibility": 0,
112
+ "OverrideSharingCapability": false,
113
+ "OverrideTenantAnonymousLinkExpirationPolicy": false,
114
+ "OverrideTenantExternalUserExpirationPolicy": false,
115
+ "Owner": "user@contoso.onmicrosoft.com",
116
+ "OwnerEmail": null,
117
+ "OwnerLoginName": null,
118
+ "OwnerName": null,
119
+ "PWAEnabled": 1,
120
+ "ReadOnlyAccessPolicy": false,
121
+ "ReadOnlyForBlockDownloadPolicy": false,
122
+ "ReadOnlyForUnmanagedDevices": false,
123
+ "RelatedGroupId": "/Guid(00000000-0000-0000-0000-000000000000)/",
124
+ "RequestFilesLinkEnabled": false,
125
+ "RequestFilesLinkExpirationInDays": 0,
126
+ "RestrictContentOrgWideSearch": false,
127
+ "RestrictedAccessControl": false,
128
+ "RestrictedAccessControlGroups": null,
129
+ "RestrictedAccessControlGroupsToAdd": null,
130
+ "RestrictedAccessControlGroupsToRemove": null,
131
+ "RestrictedToRegion": 3,
132
+ "SandboxedCodeActivationCapability": 0,
133
+ "SensitivityLabel": "/Guid(00000000-0000-0000-0000-000000000000)/",
134
+ "SensitivityLabel2": null,
135
+ "SetOwnerWithoutUpdatingSecondaryAdmin": false,
136
+ "SharingAllowedDomainList": null,
137
+ "SharingBlockedDomainList": null,
138
+ "SharingCapability": 0,
139
+ "SharingDomainRestrictionMode": 0,
140
+ "SharingLockDownCanBeCleared": false,
141
+ "SharingLockDownEnabled": false,
142
+ "ShowPeoplePickerSuggestionsForGuestUsers": false,
143
+ "SiteDefinedSharingCapability": 0,
144
+ "SiteId": "/Guid(5fd4f5b5-38e6-423f-a1c6-96d2f78eeba7)/",
145
+ "SocialBarOnSitePagesDisabled": false,
146
+ "Status": "Active",
147
+ "StorageMaximumLevel": 26214400,
148
+ "StorageQuotaType": null,
149
+ "StorageUsage": 1,
150
+ "StorageWarningLevel": 25574400,
151
+ "TeamsChannelType": 0,
152
+ "Template": "CONTENTCTR#0",
153
+ "TimeZoneId": 13,
154
+ "Title": "ContentCentre",
155
+ "TitleTranslations": null,
156
+ "Url": "https://contoso.sharepoint.com/sites/ContentCentre",
157
+ "UserCodeMaximumLevel": 0,
158
+ "UserCodeWarningLevel": 0,
159
+ "WebsCount": 0
160
+ }
161
+ ]
162
+ ```
163
+
164
+ </TabItem>
165
+ <TabItem value="Text">
166
+
167
+ ```text
168
+ Title Url
169
+ ------------- --------------------------------------------------
170
+ ContentCentre https://contoso.sharepoint.com/sites/ContentCentre
171
+ ```
172
+
173
+ </TabItem>
174
+ <TabItem value="CSV">
175
+
176
+ ```csv
177
+ _ObjectType_,_ObjectIdentity_,AllowDownloadingNonWebViewableFiles,AllowEditing,AllowSelfServiceUpgrade,AnonymousLinkExpirationInDays,ApplyToExistingDocumentLibraries,ApplyToNewDocumentLibraries,ArchiveStatus,AuthContextStrength,AuthenticationContextLimitedAccess,AuthenticationContextName,AverageResourceUsage,BlockDownloadLinksFileType,BlockDownloadMicrosoft365GroupIds,BlockDownloadPolicy,BlockDownloadPolicyFileTypeIds,BlockGuestsAsSiteAdmin,BonusDiskQuota,ClearRestrictedAccessControl,CommentsOnSitePagesDisabled,CompatibilityLevel,ConditionalAccessPolicy,CurrentResourceUsage,DefaultLinkPermission,DefaultLinkToExistingAccess,DefaultLinkToExistingAccessReset,DefaultShareLinkRole,DefaultShareLinkScope,DefaultSharingLinkType,DenyAddAndCustomizePages,Description,DisableAppViews,DisableCompanyWideSharingLinks,DisableFlows,EnableAutoExpirationVersionTrim,ExcludeBlockDownloadPolicySiteOwners,ExpireVersionsAfterDays,ExternalUserExpirationInDays,GroupId,GroupOwnerLoginName,HasHolds,HubSiteId,IBMode,IBSegments,IBSegmentsToAdd,IBSegmentsToRemove,InheritVersionPolicyFromTenant,IsGroupOwnerSiteAdmin,IsHubSite,IsTeamsChannelConnected,IsTeamsConnected,LastContentModifiedDate,Lcid,LimitedAccessFileType,ListsShowHeaderAndNavigation,LockIssue,LockReason,LockState,LoopDefaultSharingLinkRole,LoopDefaultSharingLinkScope,MajorVersionLimit,MajorWithMinorVersionsLimit,MediaTranscription,OverrideBlockUserInfoVisibility,OverrideSharingCapability,OverrideTenantAnonymousLinkExpirationPolicy,OverrideTenantExternalUserExpirationPolicy,Owner,OwnerEmail,OwnerLoginName,OwnerName,PWAEnabled,ReadOnlyAccessPolicy,ReadOnlyForBlockDownloadPolicy,ReadOnlyForUnmanagedDevices,RelatedGroupId,RequestFilesLinkEnabled,RequestFilesLinkExpirationInDays,RestrictContentOrgWideSearch,RestrictedAccessControl,RestrictedAccessControlGroups,RestrictedAccessControlGroupsToAdd,RestrictedAccessControlGroupsToRemove,RestrictedToRegion,SandboxedCodeActivationCapability,SensitivityLabel,SensitivityLabel2,SetOwnerWithoutUpdatingSecondaryAdmin,SharingAllowedDomainList,SharingBlockedDomainList,SharingCapability,SharingDomainRestrictionMode,SharingLockDownCanBeCleared,SharingLockDownEnabled,ShowPeoplePickerSuggestionsForGuestUsers,SiteDefinedSharingCapability,SiteId,SocialBarOnSitePagesDisabled,Status,StorageMaximumLevel,StorageQuotaType,StorageUsage,StorageWarningLevel,TeamsChannelType,Template,TimeZoneId,Title,TitleTranslations,Url,UserCodeMaximumLevel,UserCodeWarningLevel,WebsCount
178
+ Microsoft.Online.SharePoint.TenantAdministration.SiteProperties,"035c40a1-703b-9000-87b1-77f1c297d218|908bed80-a04a-4433-b4a0-883d9847d110:dc109ffd-4298-487e-9cbc-6b9b1a2cd3e2
179
+ SiteProperties
180
+ https%3a%2f%2fcontoso.sharepoint.com%2fsites%2fContentCentre",,,1,0,,,NotArchived,,,,0,0,,,,0,0,,,15,0,0,0,,,0,0,0,2,,0,0,0,,,0,0,/Guid(00000000-0000-0000-0000-000000000000)/,,,/Guid(00000000-0000-0000-0000-000000000000)/,,,,,,,,,,"/Date(2024,6,22,2,59,8,0)/",1045,0,,,0,Unlock,0,0,0,0,0,0,,,,user@contoso.onmicrosoft.com,,,,1,,,,/Guid(00000000-0000-0000-0000-000000000000)/,,0,,,,,,3,0,/Guid(00000000-0000-0000-0000-000000000000)/,,,,,0,0,,,,0,/Guid(5fd4f5b5-38e6-423f-a1c6-96d2f78eeba7)/,,Active,26214400,,1,25574400,0,CONTENTCTR#0,13,ContentCentre,,https://contoso.sharepoint.com/sites/ContentCentre,0,0,0
181
+ ```
182
+
183
+ </TabItem>
184
+ <TabItem value="Markdown">
185
+
186
+ ```md
187
+ # spp contentcenter list
188
+
189
+ Date: 27/07/2024
190
+
191
+ ## ContentCentre (https://contoso.sharepoint.com/sites/ContentCentre)
192
+
193
+ Property | Value
194
+ ---------|-------
195
+ \_ObjectType\_ | Microsoft.Online.SharePoint.TenantAdministration.SiteProperties
196
+ \_ObjectIdentity\_ | 0a5c40a1-2068-9000-8001-70e27f49586f\|908bed80-a04a-4433-b4a0-883d9847d110:dc109ffd-4298-487e-9cbc-6b9b1a2cd3e2<br>SiteProperties<br>https%3a%2f%2fcontoso.sharepoint.com%2fsites%2fContentCentre
197
+ AllowDownloadingNonWebViewableFiles | false
198
+ AllowEditing | false
199
+ AllowSelfServiceUpgrade | true
200
+ AnonymousLinkExpirationInDays | 0
201
+ ApplyToExistingDocumentLibraries | false
202
+ ApplyToNewDocumentLibraries | false
203
+ ArchiveStatus | NotArchived
204
+ AuthenticationContextLimitedAccess | false
205
+ AverageResourceUsage | 0
206
+ BlockDownloadLinksFileType | 0
207
+ BlockDownloadPolicy | false
208
+ BlockGuestsAsSiteAdmin | 0
209
+ BonusDiskQuota | 0
210
+ ClearRestrictedAccessControl | false
211
+ CommentsOnSitePagesDisabled | false
212
+ CompatibilityLevel | 15
213
+ ConditionalAccessPolicy | 0
214
+ CurrentResourceUsage | 0
215
+ DefaultLinkPermission | 0
216
+ DefaultLinkToExistingAccess | false
217
+ DefaultLinkToExistingAccessReset | false
218
+ DefaultShareLinkRole | 0
219
+ DefaultShareLinkScope | 0
220
+ DefaultSharingLinkType | 0
221
+ DenyAddAndCustomizePages | 2
222
+ DisableAppViews | 0
223
+ DisableCompanyWideSharingLinks | 0
224
+ DisableFlows | 0
225
+ EnableAutoExpirationVersionTrim | false
226
+ ExcludeBlockDownloadPolicySiteOwners | false
227
+ ExpireVersionsAfterDays | 0
228
+ ExternalUserExpirationInDays | 0
229
+ GroupId | /Guid(00000000-0000-0000-0000-000000000000)/
230
+ HasHolds | false
231
+ HubSiteId | /Guid(00000000-0000-0000-0000-000000000000)/
232
+ InheritVersionPolicyFromTenant | false
233
+ IsGroupOwnerSiteAdmin | false
234
+ IsHubSite | false
235
+ IsTeamsChannelConnected | false
236
+ IsTeamsConnected | false
237
+ LastContentModifiedDate | /Date(2024,6,22,2,59,8,0)/
238
+ Lcid | 1045
239
+ LimitedAccessFileType | 0
240
+ ListsShowHeaderAndNavigation | false
241
+ LockReason | 0
242
+ LockState | Unlock
243
+ LoopDefaultSharingLinkRole | 0
244
+ LoopDefaultSharingLinkScope | 0
245
+ MajorVersionLimit | 0
246
+ MajorWithMinorVersionsLimit | 0
247
+ MediaTranscription | 0
248
+ OverrideBlockUserInfoVisibility | 0
249
+ OverrideSharingCapability | false
250
+ OverrideTenantAnonymousLinkExpirationPolicy | false
251
+ OverrideTenantExternalUserExpirationPolicy | false
252
+ Owner | user@contoso.onmicrosoft.com
253
+ PWAEnabled | 1
254
+ ReadOnlyAccessPolicy | false
255
+ ReadOnlyForBlockDownloadPolicy | false
256
+ ReadOnlyForUnmanagedDevices | false
257
+ RelatedGroupId | /Guid(00000000-0000-0000-0000-000000000000)/
258
+ RequestFilesLinkEnabled | false
259
+ RequestFilesLinkExpirationInDays | 0
260
+ RestrictContentOrgWideSearch | false
261
+ RestrictedAccessControl | false
262
+ RestrictedToRegion | 3
263
+ SandboxedCodeActivationCapability | 0
264
+ SensitivityLabel | /Guid(00000000-0000-0000-0000-000000000000)/
265
+ SetOwnerWithoutUpdatingSecondaryAdmin | false
266
+ SharingCapability | 0
267
+ SharingDomainRestrictionMode | 0
268
+ SharingLockDownCanBeCleared | false
269
+ SharingLockDownEnabled | false
270
+ ShowPeoplePickerSuggestionsForGuestUsers | false
271
+ SiteDefinedSharingCapability | 0
272
+ SiteId | /Guid(5fd4f5b5-38e6-423f-a1c6-96d2f78eeba7)/
273
+ SocialBarOnSitePagesDisabled | false
274
+ Status | Active
275
+ StorageMaximumLevel | 26214400
276
+ StorageUsage | 1
277
+ StorageWarningLevel | 25574400
278
+ TeamsChannelType | 0
279
+ Template | CONTENTCTR#0
280
+ TimeZoneId | 13
281
+ Title | ContentCentre
282
+ Url | https://contoso.sharepoint.com/sites/ContentCentre
283
+ UserCodeMaximumLevel | 0
284
+ UserCodeWarningLevel | 0
285
+ WebsCount | 0
286
+ ```
287
+
288
+ </TabItem>
289
+ </Tabs>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "9.1.0-beta.4ee36d4",
3
+ "version": "9.1.0-beta.94ae9ed",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",