@pnp/cli-microsoft365 4.2.0 → 4.3.0-beta.bec032d

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 (33) hide show
  1. package/.eslintrc.js +1 -0
  2. package/README.md +1 -1
  3. package/dist/appInsights.js +3 -2
  4. package/dist/cli/Cli.js +22 -3
  5. package/dist/m365/aad/commands/app/app-get.js +97 -0
  6. package/dist/m365/aad/commands/user/user-password-validate.js +42 -0
  7. package/dist/m365/aad/commands.js +2 -0
  8. package/dist/m365/app/commands/permission/permission-list.js +266 -0
  9. package/dist/m365/app/commands.js +7 -0
  10. package/dist/m365/base/AppCommand.js +76 -0
  11. package/dist/m365/cli/commands/cli-doctor.js +2 -0
  12. package/dist/m365/pa/commands/app/app-list.js +28 -1
  13. package/dist/m365/search/commands/externalconnection/externalconnection-add.js +99 -0
  14. package/dist/m365/search/commands.js +7 -0
  15. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006005_CFG_PS_metadata.js +63 -0
  16. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006006_CFG_PS_features.js +60 -0
  17. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.14.0-beta.4.js +57 -0
  18. package/dist/m365/spfx/commands/project/project-upgrade.js +16 -13
  19. package/dist/m365/spo/commands/web/web-installedlanguage-list.js +48 -0
  20. package/dist/m365/spo/commands.js +1 -0
  21. package/dist/request.js +9 -4
  22. package/docs/docs/cmd/_global.md +2 -2
  23. package/docs/docs/cmd/aad/app/app-get.md +48 -0
  24. package/docs/docs/cmd/aad/user/user-password-validate.md +29 -0
  25. package/docs/docs/cmd/app/permission/permission-list.md +36 -0
  26. package/docs/docs/cmd/pa/app/app-list.md +17 -1
  27. package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +43 -0
  28. package/docs/docs/cmd/spfx/project/project-externalize.md +1 -1
  29. package/docs/docs/cmd/spfx/project/project-rename.md +1 -1
  30. package/docs/docs/cmd/spfx/spfx-doctor.md +1 -1
  31. package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +24 -0
  32. package/npm-shrinkwrap.json +603 -743
  33. package/package.json +20 -16
@@ -20,7 +20,7 @@ m365 spfx project externalize [options]
20
20
  : JMESPath query string. See [http://jmespath.org/](http://jmespath.org/) for more information and examples
21
21
 
22
22
  `-o, --output [output]`
23
- : Output type. `json,text,md`. Default `text`
23
+ : Output type. `json,text,csv,md`. Default `json`
24
24
 
25
25
  `--verbose`
26
26
  : Runs command with verbose logging
@@ -23,7 +23,7 @@ m365 spfx project rename [options]
23
23
  : JMESPath query string. See [http://jmespath.org/](http://jmespath.org/) for more information and examples
24
24
 
25
25
  `-o, --output [output]`
26
- : Output type. `json,text,md`. Default `text`
26
+ : Output type. `json,text,csv,md`. Default `json`
27
27
 
28
28
  `--verbose`
29
29
  : Runs command with verbose logging
@@ -20,7 +20,7 @@ m365 spfx doctor [options]
20
20
  : JMESPath query string. See [http://jmespath.org/](http://jmespath.org/) for more information and examples
21
21
 
22
22
  `-o, --output [output]`
23
- : Output type. `json,text,md`. Default `text`
23
+ : Output type. `json,text,csv,md`. Default `json`
24
24
 
25
25
  `--verbose`
26
26
  : Runs command with verbose logging
@@ -0,0 +1,24 @@
1
+ # spo web installedlanguage list
2
+
3
+ Lists all installed languages on site
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 spo web installedlanguage list [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-u, --webUrl <webUrl>`
14
+ : URL of the site for which to retrieve the list of installed languages
15
+
16
+ --8<-- "docs/cmd/_global.md"
17
+
18
+ ## Examples
19
+
20
+ Return all installed languages from site _https://contoso.sharepoint.com/_
21
+
22
+ ```sh
23
+ m365 spo web installedlanguage list --webUrl https://contoso.sharepoint.com
24
+ ```