@pnp/cli-microsoft365 10.4.0-beta.c93f9cd → 10.5.0-beta.31bfdff
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/.eslintrc.cjs +1 -0
- package/README.md +2 -2
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Command.js +1 -1
- package/dist/appInsights.js +2 -0
- package/dist/cli/cli.js +1 -1
- package/dist/m365/graph/commands/directoryextension/directoryextension-add.js +85 -0
- package/dist/m365/graph/commands/directoryextension/directoryextension-get.js +82 -0
- package/dist/m365/graph/commands/directoryextension/directoryextension-remove.js +93 -0
- package/dist/m365/graph/commands.js +3 -0
- package/dist/m365/spo/commands/page/page-header-set.js +47 -10
- package/dist/m365/spo/commands/page/page-section-remove.js +81 -0
- package/dist/m365/spo/commands.js +1 -0
- package/dist/request.js +5 -0
- package/dist/telemetry.js +21 -17
- package/dist/utils/directoryExtension.js +25 -0
- package/dist/utils/entraApp.js +28 -0
- package/docs/docs/cmd/graph/directoryextension/directoryextension-add.mdx +123 -0
- package/docs/docs/cmd/graph/directoryextension/directoryextension-get.mdx +118 -0
- package/docs/docs/cmd/graph/directoryextension/directoryextension-remove.mdx +57 -0
- package/docs/docs/cmd/spo/page/page-section-remove.mdx +47 -0
- package/npm-shrinkwrap.json +12 -10
- package/package.json +2 -2
- package/dist/telemetryRunner.js +0 -26
package/.eslintrc.cjs
CHANGED
package/README.md
CHANGED
|
@@ -192,11 +192,11 @@ Execute a command and output response as text using the global `--output` option
|
|
|
192
192
|
m365 spo site get --url https://contoso.sharepoint.com --output text
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
-
> For more examples and usage, refer to the [command](https://pnp.github.io/cli-microsoft365/cmd/login/) and [sample scripts](https://pnp.github.io/cli-microsoft365/sample-scripts/) documentation.
|
|
195
|
+
> For more examples and usage, refer to the [command](https://pnp.github.io/cli-microsoft365/cmd/login/) and [sample scripts](https://pnp.github.io/cli-microsoft365/sample-scripts/introduction/) documentation.
|
|
196
196
|
|
|
197
197
|
## Build
|
|
198
198
|
|
|
199
|
-
To build and run this CLI locally, you will need [`node`](https://nodejs.org) `>=
|
|
199
|
+
To build and run this CLI locally, you will need [`node`](https://nodejs.org) `>= 22.0.0` installed.
|
|
200
200
|
|
|
201
201
|
```sh
|
|
202
202
|
# Clone this repository
|