@pnp/cli-microsoft365 8.1.0-beta.3dec9fa → 8.1.0-beta.a0e1bec

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 (88) hide show
  1. package/allCommands.json +1 -1
  2. package/allCommandsFull.json +1 -1
  3. package/dist/Auth.js +9 -9
  4. package/dist/Command.js +49 -2
  5. package/dist/cli/cli.js +60 -38
  6. package/dist/m365/commands/login.js +44 -96
  7. package/dist/m365/connection/commands/connection-remove.js +6 -2
  8. package/dist/m365/connection/commands/connection-set.js +4 -1
  9. package/dist/m365/connection/commands/connection-use.js +25 -4
  10. package/dist/m365/entra/commands/enterpriseapp/enterpriseapp-remove.js +123 -0
  11. package/dist/m365/entra/commands/group/group-set.js +256 -0
  12. package/dist/m365/entra/commands/m365group/m365group-user-add.js +109 -32
  13. package/dist/m365/entra/commands/m365group/m365group-user-set.js +159 -84
  14. package/dist/m365/entra/commands/multitenant/multitenant-add.js +65 -0
  15. package/dist/m365/entra/commands/multitenant/multitenant-remove.js +118 -0
  16. package/dist/m365/entra/commands/multitenant/multitenant-set.js +72 -0
  17. package/dist/m365/entra/commands.js +6 -0
  18. package/dist/m365/flow/commands/flow-get.js +1 -1
  19. package/dist/m365/pa/commands/app/app-export.js +13 -7
  20. package/dist/m365/spe/ContainerTypeProperties.js +2 -0
  21. package/dist/m365/spe/commands/containertype/containertype-list.js +49 -0
  22. package/dist/m365/spe/commands.js +2 -1
  23. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-get.js +16 -21
  24. package/dist/m365/spo/commands/commandset/commandset-get.js +31 -17
  25. package/dist/m365/spo/commands/file/file-roleassignment-add.js +1 -1
  26. package/dist/m365/spo/commands/file/file-roleinheritance-break.js +1 -1
  27. package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +1 -1
  28. package/dist/m365/spo/commands/folder/folder-retentionlabel-ensure.js +1 -1
  29. package/dist/m365/spo/commands/folder/folder-sharinglink-get.js +86 -0
  30. package/dist/m365/spo/commands/folder/folder-sharinglink-list.js +110 -0
  31. package/dist/m365/spo/commands/list/ListInstance.js +6 -1
  32. package/dist/m365/spo/commands/list/list-get.js +9 -3
  33. package/dist/m365/spo/commands/list/list-roleassignment-add.js +46 -21
  34. package/dist/m365/spo/commands/list/list-roleassignment-remove.js +48 -46
  35. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-get.js +19 -5
  36. package/dist/m365/spo/commands/tenant/tenant-commandset-get.js +20 -6
  37. package/dist/m365/spo/commands.js +2 -0
  38. package/dist/m365/teams/commands/message/message-restore.js +106 -0
  39. package/dist/m365/teams/commands.js +1 -0
  40. package/dist/utils/drive.js +61 -0
  41. package/dist/utils/formatting.js +16 -0
  42. package/dist/utils/spo.js +69 -6
  43. package/dist/utils/zod.js +124 -0
  44. package/docs/docs/cmd/connection/connection-use.mdx +8 -2
  45. package/docs/docs/cmd/entra/enterpriseapp/enterpriseapp-remove.mdx +65 -0
  46. package/docs/docs/cmd/entra/group/group-add.mdx +0 -4
  47. package/docs/docs/cmd/entra/group/group-set.mdx +89 -0
  48. package/docs/docs/cmd/entra/m365group/m365group-user-add.mdx +28 -10
  49. package/docs/docs/cmd/entra/m365group/m365group-user-set.mdx +35 -11
  50. package/docs/docs/cmd/entra/multitenant/multitenant-add.mdx +107 -0
  51. package/docs/docs/cmd/entra/multitenant/multitenant-remove.mdx +58 -0
  52. package/docs/docs/cmd/entra/multitenant/multitenant-set.mdx +53 -0
  53. package/docs/docs/cmd/flow/flow-get.mdx +149 -283
  54. package/docs/docs/cmd/pa/app/app-export.mdx +15 -9
  55. package/docs/docs/cmd/planner/plan/plan-remove.mdx +1 -1
  56. package/docs/docs/cmd/spe/containertype/containertype-list.mdx +102 -0
  57. package/docs/docs/cmd/spo/app/app-uninstall.mdx +1 -1
  58. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-get.mdx +87 -38
  59. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-list.mdx +22 -28
  60. package/docs/docs/cmd/spo/commandset/commandset-get.mdx +75 -24
  61. package/docs/docs/cmd/spo/commandset/commandset-list.mdx +26 -32
  62. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +1 -1
  63. package/docs/docs/cmd/spo/file/file-roleassignment-add.mdx +2 -2
  64. package/docs/docs/cmd/spo/file/file-roleassignment-remove.mdx +1 -1
  65. package/docs/docs/cmd/spo/file/file-roleinheritance-break.mdx +1 -1
  66. package/docs/docs/cmd/spo/file/file-roleinheritance-reset.mdx +1 -1
  67. package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.mdx +2 -2
  68. package/docs/docs/cmd/spo/folder/folder-sharinglink-get.mdx +110 -0
  69. package/docs/docs/cmd/spo/folder/folder-sharinglink-list.mdx +114 -0
  70. package/docs/docs/cmd/spo/list/list-get.mdx +6 -0
  71. package/docs/docs/cmd/spo/list/list-roleassignment-add.mdx +15 -3
  72. package/docs/docs/cmd/spo/list/list-roleassignment-remove.mdx +15 -3
  73. package/docs/docs/cmd/spo/listitem/listitem-retentionlabel-ensure.mdx +4 -4
  74. package/docs/docs/cmd/spo/listitem/listitem-retentionlabel-remove.mdx +1 -1
  75. package/docs/docs/cmd/spo/listitem/listitem-roleassignment-add.mdx +9 -9
  76. package/docs/docs/cmd/spo/listitem/listitem-roleassignment-remove.mdx +7 -7
  77. package/docs/docs/cmd/spo/site/site-recyclebinitem-list.mdx +1 -1
  78. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-get.mdx +79 -30
  79. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-list.mdx +20 -19
  80. package/docs/docs/cmd/spo/tenant/tenant-commandset-get.mdx +84 -38
  81. package/docs/docs/cmd/spo/tenant/tenant-commandset-list.mdx +20 -19
  82. package/docs/docs/cmd/spo/web/web-roleassignment-add.mdx +1 -1
  83. package/docs/docs/cmd/spo/web/web-roleassignment-remove.mdx +1 -1
  84. package/docs/docs/cmd/teams/meeting/meeting-list.mdx +7 -3
  85. package/docs/docs/cmd/teams/message/message-remove.mdx +2 -1
  86. package/docs/docs/cmd/teams/message/message-restore.mdx +62 -0
  87. package/npm-shrinkwrap.json +1002 -1146
  88. package/package.json +26 -22
@@ -25,17 +25,21 @@ m365 teams meeting list [options]
25
25
  : Set to retrieve only meetings the user is organizer for.
26
26
 
27
27
  `-u, --userId [userId]`
28
- : The id of the user or shared mailbox, omit to retrieve meetings for current signed in user. Use either `id`, `userName` or `email`, but not multiple. Use only when using application permissions.
28
+ : The id of the user or shared mailbox, omit to retrieve meetings for current signed in user. Use either `userId`, `userName` or `email`, but not multiple. Use only when using application permissions.
29
29
 
30
30
  `-n, --userName [userName]`
31
- : The name of the user or shared mailbox, omit to retrieve meetings for current signed in user. Use either `id`, `userName` or `email`, but not multiple. Use only when using application permissions.
31
+ : The name of the user or shared mailbox, omit to retrieve meetings for current signed in user. Use either `userId`, `userName` or `email`, but not multiple. Use only when using application permissions.
32
32
 
33
33
  `--email [email]`
34
- : The email of the user or shared mailbox, omit to retrieve meetings for current signed in user. Use either `id`, `userName` or `email`, but not multiple. Use only when using application permissions.
34
+ : The email of the user or shared mailbox, omit to retrieve meetings for current signed in user. Use either `userId`, `userName` or `email`, but not multiple. Use only when using application permissions.
35
35
  ```
36
36
 
37
37
  <Global />
38
38
 
39
+ ## Remarks
40
+
41
+ To use application permission for this command, an [application access policy](https://learn.microsoft.com/en-us/graph/cloud-communication-online-meeting-application-access-policy) must be created and assigned to a user. This authorizes the app configured in the policy to retrieve online meetings on behalf of that user.
42
+
39
43
  ## Examples
40
44
 
41
45
  List all meetings of the currently logged in user between two specific dates
@@ -36,7 +36,6 @@ m365 teams message remove [options]
36
36
 
37
37
  ## Remarks
38
38
 
39
- You can only remove Microsoft Teams messages that you created yourself.
40
39
 
41
40
  :::info
42
41
 
@@ -44,6 +43,8 @@ This command does only support delegated permissions.
44
43
 
45
44
  :::
46
45
 
46
+ You can only remove Microsoft Teams messages that you created yourself.
47
+
47
48
  ## Examples
48
49
 
49
50
  Remove a message by using IDs
@@ -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
+ # teams message restore
6
+
7
+ Restores a deleted message from a channel in a Microsoft Teams team
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 teams message restore [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `--teamId [teamId]`
19
+ : ID of the Microsoft Teams team. Specify either `teamId` or `teamName` but not both.
20
+
21
+ `--teamName [teamName]`
22
+ : Name of the Microsoft Teams team. Specify either `teamId` or `teamName` but not both.
23
+
24
+ `--channelId [channelId]`
25
+ : Channel ID of the Microsoft Teams team. Specify either `channelId` or `channelName` but not both.
26
+
27
+ `--channelName [channelName]`
28
+ : Channel name of the Microsoft Teams team. Specify either `channelId` or `channelName` but not both.
29
+
30
+ `-i, --id <id>`
31
+ : The ID of the Teams message.
32
+ ```
33
+
34
+ <Global />
35
+
36
+ ## Remarks
37
+
38
+ :::info
39
+
40
+ This command does only support delegated permissions.
41
+
42
+ :::
43
+
44
+ You can only restore Microsoft Teams messages that you created yourself.
45
+
46
+ ## Examples
47
+
48
+ Restore a deleted message by using IDs
49
+
50
+ ```sh
51
+ m365 teams message restore --teamId 5f5d7b71-1161-44d8-bcc1-3da710eb4171 --channelId 19:4a95f7d8db4c4e7fae857bcebe0623e6@thread.tacv2 --id 1540747442203
52
+ ```
53
+
54
+ Restore a deleted message by using display names
55
+
56
+ ```sh
57
+ m365 teams message restore --teamName Marketing --channelName Branding --id 1540747442203
58
+ ```
59
+
60
+ ## Response
61
+
62
+ The command won't return a response on success.