@pnp/cli-microsoft365 7.3.0-beta.4df0638 → 7.3.0-beta.66401a3

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/allCommands.json +1 -1
  2. package/allCommandsFull.json +1 -1
  3. package/dist/Auth.js +3 -0
  4. package/dist/m365/aad/commands/administrativeunit/administrativeunit-member-add.js +137 -0
  5. package/dist/m365/aad/commands/administrativeunit/administrativeunit-member-get.js +112 -0
  6. package/dist/m365/aad/commands/app/app-permission-add.js +237 -0
  7. package/dist/m365/aad/commands.js +4 -1
  8. package/dist/m365/base/PowerAutomateCommand.js +18 -0
  9. package/dist/m365/flow/commands/environment/environment-get.js +3 -3
  10. package/dist/m365/flow/commands/environment/environment-list.js +3 -3
  11. package/dist/m365/flow/commands/flow-disable.js +3 -3
  12. package/dist/m365/flow/commands/flow-enable.js +3 -3
  13. package/dist/m365/flow/commands/flow-get.js +3 -3
  14. package/dist/m365/flow/commands/flow-list.js +14 -12
  15. package/dist/m365/flow/commands/flow-remove.js +3 -3
  16. package/dist/m365/flow/commands/owner/owner-ensure.js +3 -3
  17. package/dist/m365/flow/commands/owner/owner-list.js +3 -3
  18. package/dist/m365/flow/commands/owner/owner-remove.js +3 -3
  19. package/dist/m365/flow/commands/run/run-cancel.js +3 -3
  20. package/dist/m365/flow/commands/run/run-get.js +3 -3
  21. package/dist/m365/flow/commands/run/run-list.js +8 -7
  22. package/dist/m365/flow/commands/run/run-resubmit.js +4 -4
  23. package/dist/m365/teams/commands/app/app-install.js +30 -3
  24. package/dist/m365/teams/commands/user/user-app-add.js +23 -5
  25. package/dist/utils/aadAdministrativeUnit.js +4 -4
  26. package/dist/utils/aadDevice.js +25 -0
  27. package/docs/docs/cmd/aad/administrativeunit/administrativeunit-member-add.mdx +93 -0
  28. package/docs/docs/cmd/aad/administrativeunit/administrativeunit-member-get.mdx +130 -0
  29. package/docs/docs/cmd/aad/app/app-permission-add.mdx +62 -0
  30. package/docs/docs/cmd/teams/app/app-install.mdx +11 -2
  31. package/docs/docs/cmd/teams/user/user-app-add.mdx +12 -3
  32. package/docs/docs/cmd/teams/user/user-app-remove.mdx +2 -2
  33. package/package.json +1 -1
@@ -0,0 +1,130 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # aad administrativeunit member get
6
+
7
+ Retrieves info about a specific member of an administrative unit
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 aad administrativeunit member get [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-i, --id <id>`
19
+ : The id of a member to be retrieved.
20
+
21
+ `-u, --administrativeUnitId [administrativeUnitId]`
22
+ : The id of the administrative unit. Specify either `administrativeUnitId` or `administrativeUnitName`.
23
+
24
+ `-n, --administrativeUnitName [administrativeUnitName]`
25
+ : The name of the administrative unit. Specify either `administrativeUnitId` or `administrativeUnitName`.
26
+
27
+ `-p, --properties [properties]`
28
+ : Comma-separated list of properties to retrieve.
29
+ ```
30
+
31
+ <Global />
32
+
33
+ ## Remarks
34
+
35
+ To get the member of a hidden membership in an administrative unit, the `Member.Read.Hidden` permission is required.
36
+
37
+ When the `properties` option includes values with a `/`, for example: `manager/displayName`, an additional `$expand` query parameter will be included on manager.
38
+
39
+ ## Examples
40
+
41
+ Get information about a member specified by id from an administrative unit specified by id
42
+
43
+ ```sh
44
+ m365 aad administrativeunit member get --id 64131a70-beb9-4ccb-b590-4401e58446ec --administrativeUnitId 03c4c9dc-6f0c-4c4f-a4e6-0c9ed80f54c7
45
+ ```
46
+
47
+ Get information about a member specified by id from an administrative unit specified by name
48
+
49
+ ```sh
50
+ m365 aad administrativeunit member get --id 64131a70-beb9-4ccb-b590-4401e58446ec --administrativeUnitName 'Marketing Division'
51
+ ```
52
+
53
+ ## Response
54
+
55
+ <Tabs>
56
+ <TabItem value="JSON">
57
+
58
+ ```json
59
+ {
60
+ "id": "64131a70-beb9-4ccb-b590-4401e58446ec",
61
+ "businessPhones": [
62
+ "+20 255501070"
63
+ ],
64
+ "displayName": "Pradeep Gupta",
65
+ "givenName": "Pradeep",
66
+ "jobTitle": "Accountant",
67
+ "mail": "PradeepG@contoso.com",
68
+ "mobilePhone": null,
69
+ "officeLocation": "98/2202",
70
+ "preferredLanguage": "en-US",
71
+ "surname": "Gupta",
72
+ "userPrincipalName": "PradeepG@contoso.com",
73
+ "type": "user"
74
+ }
75
+ ```
76
+
77
+ </TabItem>
78
+ <TabItem value="Text">
79
+
80
+ ```text
81
+ businessPhones : ["+20 255501070"]
82
+ displayName : Pradeep Gupta
83
+ givenName : Pradeep
84
+ id : 64131a70-beb9-4ccb-b590-4401e58446ec
85
+ jobTitle : Accountant
86
+ mail : PradeepG@contoso.com
87
+ mobilePhone : null
88
+ officeLocation : 98/2202
89
+ preferredLanguage: en-US
90
+ surname : Gupta
91
+ type : user
92
+ userPrincipalName: PradeepG@contoso.com
93
+ ```
94
+
95
+ </TabItem>
96
+ <TabItem value="CSV">
97
+
98
+ ```csv
99
+ id,displayName,givenName,jobTitle,mail,officeLocation,preferredLanguage,surname,userPrincipalName,type
100
+ 64131a70-beb9-4ccb-b590-4401e58446ec,Pradeep Gupta,Pradeep,Accountant,PradeepG@contoso.com,98/2202,en-US,Gupta,PradeepG@contoso.com,user
101
+ ```
102
+
103
+ </TabItem>
104
+ <TabItem value="Markdown">
105
+
106
+ ```md
107
+ Date: 11/10/2023
108
+
109
+ ## Pradeep Gupta (64131a70-beb9-4ccb-b590-4401e58446ec)
110
+
111
+ Property | Value
112
+ ---------|-------
113
+ id | 64131a70-beb9-4ccb-b590-4401e58446ec
114
+ displayName | Pradeep Gupta
115
+ givenName | Pradeep
116
+ jobTitle | Accountant
117
+ mail | PradeepG@contoso.com
118
+ officeLocation | 98/2202
119
+ preferredLanguage | en-US
120
+ surname | Gupta
121
+ userPrincipalName | PradeepG@contoso.com
122
+ type | user
123
+ ```
124
+
125
+ </TabItem>
126
+ </Tabs>
127
+
128
+ ## More information
129
+
130
+ - Administrative units: https://learn.microsoft.com/entra/identity/role-based-access-control/administrative-units
@@ -0,0 +1,62 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # aad app permission add
6
+
7
+ Adds the specified application and/or delegated permissions to a specified Entra ID (Azure AD) app
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 aad app permission add [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-i, --appId [appId]`
19
+ : Client ID of the Entra ID (Azure AD) app to add the API permissions to. Specify `appId` or `appObjectId` but not both.
20
+
21
+ `--appObjectId [appObjectId]`
22
+ : Object ID of the Entra ID (Azure AD) app to add the API permissions to. Specify `appId` or `appObjectId` but not both.
23
+
24
+ `-a, --applicationPermissions [applicationPermissions]`
25
+ : Space-separated list of application permissions to add. Specify at least `applicationPermissions` or `delegatedPermissions`.
26
+
27
+ `-d, --delegatedPermissions [delegatedPermissions]`
28
+ : Space-separated list of delegated permissions to add. Specify at least `applicationPermissions` or `delegatedPermissions`.
29
+
30
+ `--grantAdminConsent`
31
+ : When specified, grants application & delegated permissions through admin consent.
32
+ ```
33
+
34
+ <Global />
35
+
36
+ ## Remarks
37
+
38
+ Scopes/Roles to grant must be fully-qualified so that we can disambiguate them between the different resources.
39
+
40
+ ## Examples
41
+
42
+ Grant multiple delegated API permissions to an Entra ID (Azure AD) app specified by client id
43
+
44
+ ```sh
45
+ m365 aad app permission add --appId 'f1417aa3-bf0b-4cc5-a845-a0b2cf11f690' --delegatedPermissions 'https://management.azure.com/user_impersonation https://service.flow.microsoft.com/Flows.Read.All https://graph.microsoft.com/Agreement.Read.All'
46
+ ```
47
+
48
+ Grant multiple delegated API permissions to an Entra ID (Azure AD) app specified by object id
49
+
50
+ ```sh
51
+ m365 aad app permission add --appObjectId 'e0306bb2-bf0b-4cc5-a845-a0b2cf11f690' --delegatedPermissions 'https://management.azure.com/user_impersonation https://service.flow.microsoft.com/Flows.Read.All https://graph.microsoft.com/Agreement.Read.All'
52
+ ```
53
+
54
+ Grant multiple app-only permissions to an Entra ID (Azure AD) app specified by client id and grant admin consent
55
+
56
+ ```sh
57
+ m365 aad app permission add --appId 'f1417aa3-bf0b-4cc5-a845-a0b2cf11f690' --applicationPermissions 'https://graph.microsoft.com/Sites.FullControl.All https://microsoft.sharepoint-df.com/Sites.FullControl.All' --grandAdminConsent
58
+ ```
59
+
60
+ ## Response
61
+
62
+ The command won't return a response on success.
@@ -13,8 +13,11 @@ m365 teams app install [options]
13
13
  ## Options
14
14
 
15
15
  ```md definition-list
16
- `--id <id>`
17
- : The ID of the app to install
16
+ `-i, --id [id]`
17
+ : ID of the app to update. Specify either id or name, but not both
18
+
19
+ `-n, --name [name]`
20
+ : The display name of the app to update. Specify either id or name, but not both
18
21
 
19
22
  `--teamId [teamId]`
20
23
  : The ID of the Microsoft Teams team to which to install the app
@@ -52,6 +55,12 @@ Install a personal app for the user specified using their ID
52
55
  m365 teams app install --id 4440558e-8c73-4597-abc7-3644a64c4bce --userId 2609af39-7775-4f94-a3dc-0dd67657e900
53
56
  ```
54
57
 
58
+ Install an app with name _Test app_ from the catalog in a Microsoft Teams team
59
+
60
+ ```sh
61
+ m365 teams app install --name "Test app" --teamId 2609af39-7775-4f94-a3dc-0dd67657e900
62
+ ```
63
+
55
64
  ## Response
56
65
 
57
66
  The command won't return a response on success.
@@ -16,8 +16,11 @@ m365 teams user app add [options]
16
16
  `--id <id>`
17
17
  : The ID of the app to install.
18
18
 
19
- `--userId <userId>`
20
- : The ID of the user to install the app for.
19
+ `--userId [userId]`
20
+ : The ID of the user to install the app for. Specify either `userId` or `userName` but not both.
21
+
22
+ `--userName [userName]`
23
+ : The UPN of the user to install the app for. Specify either `userId` or `userName` but not both.
21
24
  ```
22
25
 
23
26
  <Global />
@@ -28,12 +31,18 @@ The `id` has to be the ID of the app from the Microsoft Teams App Catalog. Do no
28
31
 
29
32
  ## Examples
30
33
 
31
- Install an app from the catalog for the specified user.
34
+ Install an app from the catalog for the specified user by id.
32
35
 
33
36
  ```sh
34
37
  m365 teams user app add --id 4440558e-8c73-4597-abc7-3644a64c4bce --userId 2609af39-7775-4f94-a3dc-0dd67657e900
35
38
  ```
36
39
 
40
+ Install an app from the catalog for the specified user by name.
41
+
42
+ ```sh
43
+ m365 teams user app add --id 4440558e-8c73-4597-abc7-3644a64c4bce --userName admin@contoso.com
44
+ ```
45
+
37
46
  ## Response
38
47
 
39
48
  The command won't return a response on success.
@@ -20,10 +20,10 @@ m365 teams user app remove [options]
20
20
  : Name of the app instance installed for the user. Specify either `id` or `name`.
21
21
 
22
22
  `--userId [userId]`
23
- : The ID of the user to uninstall the app for. Specify `userId` or `userName` but not both.
23
+ : The ID of the user to uninstall the app for. Specify either `userId` or `userName`.
24
24
 
25
25
  `--userName [userName]`
26
- : The UPN of the user to uninstall the app for. Specify `userId` or `userName` but not both.
26
+ : The UPN of the user to uninstall the app for. Specify either `userId` or `userName`.
27
27
 
28
28
  `-f, --force`
29
29
  : Confirm removal of app for user.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "7.3.0-beta.4df0638",
3
+ "version": "7.3.0-beta.66401a3",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",