@pnp/cli-microsoft365 4.1.0-beta.254ab56 → 4.1.0-beta.7fbe6cd

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 (24) hide show
  1. package/dist/m365/aad/commands/o365group/{o365group-restore.js → o365group-recyclebinitem-restore.js} +10 -10
  2. package/dist/m365/aad/commands/o365group/o365group-teamify.js +48 -12
  3. package/dist/m365/aad/commands/serviceprincipal/serviceprincipal-get.js +116 -0
  4. package/dist/m365/aad/commands/siteclassification/siteclassification-enable.js +2 -2
  5. package/dist/m365/aad/commands/siteclassification/siteclassification-set.js +2 -2
  6. package/dist/m365/aad/commands.js +2 -0
  7. package/dist/m365/pa/commands/connector/connector-export.js +2 -2
  8. package/dist/m365/spfx/commands/project/project-upgrade/Utils.js +1 -1
  9. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002017_DEVDEP_microsoft_rush_stack_compiler_3_7.js +2 -2
  10. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002018_DEVDEP_microsoft_rush_stack_compiler_3_9.js +17 -0
  11. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN015007_FILE_config_copy_assets_json.js +17 -0
  12. package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.13.0-beta.20.js → upgrade-1.13.0-rc.1.js} +43 -25
  13. package/dist/m365/spfx/commands/project/project-upgrade.js +1 -1
  14. package/dist/m365/spo/commands/contenttype/contenttype-add.js +21 -1
  15. package/dist/m365/teams/commands/user/user-app-list.js +8 -6
  16. package/docs/docs/cmd/aad/o365group/{o365group-restore.md → o365group-recyclebinitem-restore.md} +7 -1
  17. package/docs/docs/cmd/aad/o365group/o365group-teamify.md +12 -3
  18. package/docs/docs/cmd/aad/serviceprincipal/serviceprincipal-get.md +42 -0
  19. package/docs/docs/cmd/aad/siteclassification/siteclassification-enable.md +0 -5
  20. package/docs/docs/cmd/aad/siteclassification/siteclassification-set.md +0 -4
  21. package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
  22. package/npm-shrinkwrap.json +483 -479
  23. package/package.json +20 -20
  24. package/dist/m365/teams/UserTeamsApp.js +0 -3
@@ -0,0 +1,42 @@
1
+ # aad serviceprincipal get
2
+
3
+ Retrieves a service principal from Azure AD directory
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 aad serviceprincipal get
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-i, --id [id]`
14
+ : The ID of the service principal to retrieve information for. Specify either `id`, `appId` or `name`
15
+
16
+ `-n, --name [name]`
17
+ : The display name of the service principal to retrieve information for. Specify either `id`, `appId` or `name`
18
+
19
+ `--appId [appId]`
20
+ : The appId of the service principal to retrieve information for. Specify either `id` or `appId` or `name`
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Examples
25
+
26
+ Get information about the service principal with id _1caf7dcd-7e83-4c3a-94f7-932a1299c843_
27
+
28
+ ```sh
29
+ m365 aad serviceprincipal get --id 1caf7dcd-7e83-4c3a-94f7-932a1299c843
30
+ ```
31
+
32
+ Get information about service principal with name _ServicePrincipal App_
33
+
34
+ ```sh
35
+ m365 aad serviceprincipal get --name "ServicePrincipal App"
36
+ ```
37
+
38
+ Get information about service principal with appId _8a2a376d-5f57-4c14-9639-692f841c00bc_
39
+
40
+ ```sh
41
+ m365 aad serviceprincipal get --appId "8a2a376d-5f57-4c14-9639-692f841c00bc"
42
+ ```
@@ -24,11 +24,6 @@ m365 aad siteclassification enable [options]
24
24
 
25
25
  --8<-- "docs/cmd/_global.md"
26
26
 
27
- ## Remarks
28
-
29
- !!! attention
30
- This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
31
-
32
27
  ## Examples
33
28
 
34
29
  Enable site classification
@@ -24,10 +24,6 @@ m365 aad siteclassification set [options]
24
24
 
25
25
  --8<-- "docs/cmd/_global.md"
26
26
 
27
- ## Remarks
28
-
29
- !!! attention
30
- This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
31
27
 
32
28
  ## Examples
33
29
 
@@ -32,7 +32,7 @@ m365 spfx project upgrade [options]
32
32
 
33
33
  ## Remarks
34
34
 
35
- The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.12.1). If you specify the `preview` option without a specific version, the command will upgrade your project to the latest preview version v1.13.0-beta.20.
35
+ The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.12.1). If you specify the `preview` option without a specific version, the command will upgrade your project to the latest preview version v1.13.0-rc.1.
36
36
 
37
37
  This command doesn't change your project files. Instead, it gives you a report with all steps necessary to upgrade your project to the specified version of the SharePoint Framework. Changing project files is error-prone, especially when it comes to updating your solution's code. This is why at this moment, this command produces a report that you can use yourself to perform the necessary updates and verify that everything is working as expected.
38
38