Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SPFX debugging update and added docs for sp-admin #3040

Merged
merged 4 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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