Skip to content

Commit

Permalink
Merge pull request #3040 from juliemturner/version-4
Browse files Browse the repository at this point in the history
SPFX debugging update and added docs for sp-admin
  • Loading branch information
patrick-rodgers authored May 22, 2024
2 parents 5269842 + 5a355c8 commit 9bb0747
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 45 deletions.
145 changes: 105 additions & 40 deletions debug/spfx/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions debug/spfx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
"@microsoft/sp-office-ui-fabric-core": "1.18.2",
"@microsoft/sp-property-pane": "1.18.2",
"@microsoft/sp-webpart-base": "1.18.2",
"@pnp/core": "^4.0.0-alpha0-v4nightly.20240412",
"@pnp/graph": "^4.0.0-alpha0-v4nightly.20240412",
"@pnp/logging": "^4.0.0-alpha0-v4nightly.20240412",
"@pnp/sp": "^4.0.0-alpha0-v4nightly.20240412",
"@pnp/core": "^4.0.1",
"@pnp/graph": "^4.0.1",
"@pnp/logging": "^4.0.1",
"@pnp/sp": "^4.0.1",
"@pnp/sp-admin": "^4.0.1",
"tslib": "2.3.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion docs/sp-admin/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The `@pnp/sp-admin` library enables you to call the static SharePoint admin API'
- `_api/Microsoft.Online.SharePoint.TenantAdministration.SiteProperties`
- `_api/Microsoft.Online.SharePoint.TenantAdministration.Tenant`

These APIs typically require an elevated level of permissions and should not be relied upon in general user facing solutions. Before using this library please understand the impact of what you are doing as you are updating settings at the tenant level for all users.
These APIs typically require an elevated level of permissions and should not be relied upon in general user facing solutions. Before using this library please understand the impact of what you are doing as you are updating settings at the tenant level for all users. Also keep in mind these endpoints do not support application permissions, therefore you will need to get a user token for delegated access, ergo they cannot be used unattended.

!!! warning
These APIs are officially not documented which means there is no SLA provided by Microsoft. Furthermore, they can be updated without notification.
Expand Down

0 comments on commit 9bb0747

Please sign in to comment.