@pnp/cli-microsoft365 11.9.0-beta.7b34e40 → 11.9.0-beta.93bd508

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 (67) hide show
  1. package/.devproxy/api-specs/sharepoint.yaml +82 -0
  2. package/allCommands.json +1 -1
  3. package/allCommandsFull.json +1 -1
  4. package/dist/m365/cli/commands/app/app-reconsent.js +8 -0
  5. package/dist/m365/cli/commands/cli-consent.js +8 -31
  6. package/dist/m365/cli/commands/cli-doctor.js +6 -1
  7. package/dist/m365/cli/commands/cli-issue.js +8 -36
  8. package/dist/m365/cli/commands/completion/completion-clink-update.js +8 -0
  9. package/dist/m365/cli/commands/completion/completion-pwsh-setup.js +8 -16
  10. package/dist/m365/cli/commands/completion/completion-pwsh-update.js +8 -0
  11. package/dist/m365/cli/commands/completion/completion-sh-setup.js +8 -0
  12. package/dist/m365/cli/commands/completion/completion-sh-update.js +8 -0
  13. package/dist/m365/cli/commands/config/config-get.js +9 -32
  14. package/dist/m365/cli/commands/config/config-list.js +8 -0
  15. package/dist/m365/cli/commands/config/config-reset.js +9 -34
  16. package/dist/m365/cli/commands/config/config-set.js +86 -70
  17. package/dist/m365/commands/request.js +26 -60
  18. package/dist/m365/commands/search.js +59 -77
  19. package/dist/m365/commands/setup.js +16 -31
  20. package/dist/m365/commands/version.js +6 -0
  21. package/dist/m365/connection/commands/connection-remove.js +9 -29
  22. package/dist/m365/connection/commands/connection-use.js +8 -26
  23. package/dist/m365/context/commands/context-init.js +6 -0
  24. package/dist/m365/context/commands/option/option-set.js +9 -18
  25. package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-add.js +32 -63
  26. package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-get.js +21 -45
  27. package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-list.js +32 -53
  28. package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-remove.js +34 -74
  29. package/dist/m365/entra/commands/administrativeunit/administrativeunit-roleassignment-add.js +37 -57
  30. package/dist/m365/entra/commands/multitenant/multitenant-get.js +8 -1
  31. package/dist/m365/entra/commands/multitenant/multitenant-remove.js +8 -22
  32. package/dist/m365/entra/commands/multitenant/multitenant-set.js +15 -36
  33. package/dist/m365/entra/commands/oauth2grant/oauth2grant-add.js +10 -31
  34. package/dist/m365/entra/commands/oauth2grant/oauth2grant-list.js +8 -24
  35. package/dist/m365/entra/commands/oauth2grant/oauth2grant-remove.js +9 -17
  36. package/dist/m365/entra/commands/oauth2grant/oauth2grant-set.js +9 -17
  37. package/dist/m365/spe/commands/container/container-permission-list.js +43 -4
  38. package/dist/m365/spo/commands/file/file-unarchive.js +83 -0
  39. package/dist/m365/spo/commands/folder/folder-archive.js +89 -0
  40. package/dist/m365/spo/commands.js +2 -0
  41. package/dist/m365/viva/commands/engage/engage-role-member-add.js +79 -0
  42. package/dist/m365/viva/commands.js +1 -0
  43. package/docs/docs/cmd/spe/container/container-get.mdx +13 -1
  44. package/docs/docs/cmd/spe/container/container-permission-list.mdx +24 -3
  45. package/docs/docs/cmd/spo/app/app-add.mdx +19 -0
  46. package/docs/docs/cmd/spo/app/app-deploy.mdx +21 -0
  47. package/docs/docs/cmd/spo/app/app-get.mdx +19 -0
  48. package/docs/docs/cmd/spo/app/app-install.mdx +21 -0
  49. package/docs/docs/cmd/spo/app/app-instance-list.mdx +19 -0
  50. package/docs/docs/cmd/spo/app/app-list.mdx +19 -0
  51. package/docs/docs/cmd/spo/app/app-remove.mdx +21 -0
  52. package/docs/docs/cmd/spo/app/app-retract.mdx +21 -0
  53. package/docs/docs/cmd/spo/app/app-teamspackage-download.mdx +21 -0
  54. package/docs/docs/cmd/spo/app/app-uninstall.mdx +21 -0
  55. package/docs/docs/cmd/spo/app/app-upgrade.mdx +21 -0
  56. package/docs/docs/cmd/spo/apppage/apppage-add.mdx +19 -1
  57. package/docs/docs/cmd/spo/apppage/apppage-set.mdx +21 -0
  58. package/docs/docs/cmd/spo/commandset/commandset-add.mdx +19 -0
  59. package/docs/docs/cmd/spo/commandset/commandset-get.mdx +19 -0
  60. package/docs/docs/cmd/spo/commandset/commandset-list.mdx +19 -0
  61. package/docs/docs/cmd/spo/commandset/commandset-remove.mdx +21 -0
  62. package/docs/docs/cmd/spo/commandset/commandset-set.mdx +21 -0
  63. package/docs/docs/cmd/spo/file/file-unarchive.mdx +68 -0
  64. package/docs/docs/cmd/spo/folder/folder-archive.mdx +73 -0
  65. package/docs/docs/cmd/viva/engage/engage-role-member-add.mdx +76 -0
  66. package/npm-shrinkwrap.json +273 -128
  67. package/package.json +18 -18
@@ -0,0 +1,68 @@
1
+ import Global from '../../_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # spo file unarchive
6
+
7
+ Unarchives a file
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 spo file unarchive [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-u, --webUrl <webUrl>`
19
+ : The URL of the site where the file is located.
20
+
21
+ `--url [url]`
22
+ : The server- or site-relative decoded URL of the file to unarchive. Specify either `url` or `id`, but not both.
23
+
24
+ `-i, --id [id]`
25
+ : The UniqueId (GUID) of the file to unarchive. Specify either `url` or `id`, but not both.
26
+
27
+ `-f, --force`
28
+ : Don't prompt for confirmation.
29
+ ```
30
+
31
+ <Global />
32
+
33
+ ## Permissions
34
+
35
+ <Tabs>
36
+ <TabItem value="Delegated">
37
+
38
+ | Resource | Permissions |
39
+ |------------|----------------|
40
+ | SharePoint | AllSites.Write |
41
+
42
+ </TabItem>
43
+ <TabItem value="Application">
44
+
45
+ | Resource | Permissions |
46
+ |------------|---------------------|
47
+ | SharePoint | Sites.ReadWrite.All |
48
+
49
+ </TabItem>
50
+ </Tabs>
51
+
52
+ ## Examples
53
+
54
+ Unarchive a file by id without prompting for confirmation
55
+
56
+ ```sh
57
+ m365 spo file unarchive --webUrl https://contoso.sharepoint.com/sites/Marketing --id 7a8c9207-7745-4cda-b0e2-be2618ee3030 --force
58
+ ```
59
+
60
+ Unarchive a file by URL with prompting for confirmation
61
+
62
+ ```sh
63
+ m365 spo file unarchive --webUrl https://contoso.sharepoint.com/sites/Marketing --url '/sites/Marketing/shared documents/document.docx'
64
+ ```
65
+
66
+ ## Response
67
+
68
+ The command won't return a response on success.
@@ -0,0 +1,73 @@
1
+ import Global from '../../_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # spo folder archive
6
+
7
+ Archives a folder
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 spo folder archive [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-u, --webUrl <webUrl>`
19
+ : The URL of the site where the folder is located.
20
+
21
+ `--url [url]`
22
+ : The server- or site-relative decoded URL of the folder to archive. Specify either `url` or `id`, but not both.
23
+
24
+ `-i, --id [id]`
25
+ : The UniqueId (GUID) of the folder to archive. Specify either `url` or `id`, but not both.
26
+
27
+ `-f, --force`
28
+ : Don't prompt for confirmation.
29
+ ```
30
+
31
+ <Global />
32
+
33
+ ## Remarks
34
+
35
+ Folder archival can take some time to complete, as the status might not be reflected immediately.
36
+
37
+
38
+ ## Permissions
39
+
40
+ <Tabs>
41
+ <TabItem value="Delegated">
42
+
43
+ | Resource | Permissions |
44
+ |------------|----------------|
45
+ | SharePoint | AllSites.Write |
46
+
47
+ </TabItem>
48
+ <TabItem value="Application">
49
+
50
+ | Resource | Permissions |
51
+ |------------|---------------------|
52
+ | SharePoint | Sites.ReadWrite.All |
53
+
54
+ </TabItem>
55
+ </Tabs>
56
+
57
+ ## Examples
58
+
59
+ Archive a folder by id without prompting for confirmation
60
+
61
+ ```sh
62
+ m365 spo folder archive --webUrl https://contoso.sharepoint.com/sites/Marketing --id 7a8c9207-7745-4cda-b0e2-be2618ee3030 --force
63
+ ```
64
+
65
+ Archive a folder by URL with prompting for confirmation
66
+
67
+ ```sh
68
+ m365 spo folder archive --webUrl https://contoso.sharepoint.com/sites/Marketing --url '/sites/Marketing/shared documents/folder'
69
+ ```
70
+
71
+ ## Response
72
+
73
+ The command won't return a response on success.
@@ -0,0 +1,76 @@
1
+ import Global from '../../_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # viva engage role member add
6
+
7
+ Assign a Viva Engage role to a user
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 viva engage role member add [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-i, --roleId [roleId]`
19
+ : The id of the Viva Engage role. Specify either `roleId` or `roleName`, but not both.
20
+
21
+ `-n, --roleName [roleName]`
22
+ : The name of the Viva Engage role. Specify either `roleId` or `roleName`, but not both.
23
+
24
+ `--userId [userId]`
25
+ : The id of the user to be assigned to the role. Specify either `userId` or `userName`, but not both.
26
+
27
+ `--userName [userName]`
28
+ : The UPN of the user to be assigned to the role. Specify either `userId` or `userName`, but not both.
29
+ ```
30
+
31
+ <Global />
32
+
33
+ ## Remarks
34
+
35
+ :::warning
36
+
37
+ This command is based on a Microsoft Graph API that is currently in preview and is subject to change once the API reaches general availability.
38
+
39
+ :::
40
+
41
+ ## Permissions
42
+
43
+ <Tabs>
44
+ <TabItem value="Delegated">
45
+
46
+ | Resource | Permissions |
47
+ |-----------------|------------------------------|
48
+ | Microsoft Graph | EngagementRole.ReadWrite.All |
49
+
50
+ </TabItem>
51
+ <TabItem value="Application">
52
+
53
+ | Resource | Permissions |
54
+ |-----------------|------------------------------|
55
+ | Microsoft Graph | EngagementRole.ReadWrite.All |
56
+
57
+ </TabItem>
58
+ </Tabs>
59
+
60
+ ## Examples
61
+
62
+ Assign a user specified by id to the role specified by name.
63
+
64
+ ```sh
65
+ m365 viva engage role member add --userId 7a2ca997-9461-402e-9882-58088a370889 --roleName 'Verified Admin'
66
+ ```
67
+
68
+ Assign a user specified by UPN to the role specified by id.
69
+
70
+ ```sh
71
+ m365 viva engage role member add --userName john.doe@contoso.com --roleId 77aa47ad-96fe-4ecc-8024-fd1ac5e28f17
72
+ ```
73
+
74
+ ## Response
75
+
76
+ The command won't return a response on success.