@pnp/cli-microsoft365 7.5.0-beta.23612bc → 7.5.0-beta.940b241

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 (121) hide show
  1. package/.eslintrc.cjs +6 -2
  2. package/.mocharc.json +3 -5
  3. package/README.md +2 -2
  4. package/allCommands.json +1 -1
  5. package/allCommandsFull.json +1 -1
  6. package/dist/Command.js +1 -1
  7. package/dist/m365/base/AppCommand.js +2 -2
  8. package/dist/m365/base/{YammerCommand.js → VivaEngageCommand.js} +2 -2
  9. package/dist/m365/cli/commands/cli-consent.js +5 -3
  10. package/dist/m365/entra/aadCommands.js +3 -0
  11. package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-remove.js +153 -0
  12. package/dist/m365/entra/commands/app/app-add.js +1 -1
  13. package/dist/m365/entra/commands/app/app-get.js +1 -1
  14. package/dist/m365/entra/commands/app/app-list.js +1 -1
  15. package/dist/m365/entra/commands/app/app-permission-add.js +1 -1
  16. package/dist/m365/entra/commands/app/app-permission-list.js +182 -0
  17. package/dist/m365/entra/commands/app/app-remove.js +1 -1
  18. package/dist/m365/entra/commands/app/app-role-add.js +1 -1
  19. package/dist/m365/entra/commands/app/app-role-list.js +1 -1
  20. package/dist/m365/entra/commands/app/app-role-remove.js +1 -1
  21. package/dist/m365/entra/commands/app/app-set.js +1 -1
  22. package/dist/m365/entra/commands/{sp/sp-add.js → enterpriseapp/enterpriseapp-add.js} +18 -18
  23. package/dist/m365/entra/commands/{sp/sp-get.js → enterpriseapp/enterpriseapp-get.js} +19 -19
  24. package/dist/m365/entra/commands/{sp/sp-list.js → enterpriseapp/enterpriseapp-list.js} +13 -13
  25. package/dist/m365/entra/commands/group/group-add.js +224 -0
  26. package/dist/m365/entra/commands/m365group/m365group-report-activitygroupcounts.js +1 -1
  27. package/dist/m365/entra/commands/user/user-get.js +38 -38
  28. package/dist/m365/entra/commands/user/user-registrationdetails-list.js +224 -0
  29. package/dist/m365/entra/commands.js +16 -0
  30. package/dist/m365/file/commands/file-copy.js +151 -0
  31. package/dist/m365/file/commands.js +1 -0
  32. package/dist/m365/spfx/commands/project/DeployWorkflow.js +4 -3
  33. package/dist/m365/{yammer/commands/group/group-list.js → viva/commands/engage/engage-group-list.js} +19 -14
  34. package/dist/m365/{yammer/commands/group/group-user-add.js → viva/commands/engage/engage-group-user-add.js} +19 -14
  35. package/dist/m365/{yammer/commands/group/group-user-remove.js → viva/commands/engage/engage-group-user-remove.js} +19 -14
  36. package/dist/m365/{yammer/commands/message/message-add.js → viva/commands/engage/engage-message-add.js} +19 -14
  37. package/dist/m365/{yammer/commands/message/message-get.js → viva/commands/engage/engage-message-get.js} +17 -12
  38. package/dist/m365/{yammer/commands/message/message-like-set.js → viva/commands/engage/engage-message-like-set.js} +21 -16
  39. package/dist/m365/{yammer/commands/message/message-list.js → viva/commands/engage/engage-message-list.js} +21 -16
  40. package/dist/m365/{yammer/commands/message/message-remove.js → viva/commands/engage/engage-message-remove.js} +20 -15
  41. package/dist/m365/{yammer/commands/network/network-list.js → viva/commands/engage/engage-network-list.js} +16 -11
  42. package/dist/m365/viva/commands/engage/engage-report-activitycounts.js +23 -0
  43. package/dist/m365/viva/commands/engage/engage-report-activityusercounts.js +23 -0
  44. package/dist/m365/viva/commands/engage/engage-report-activityuserdetail.js +23 -0
  45. package/dist/m365/viva/commands/engage/engage-report-deviceusagedistributionusercounts.js +23 -0
  46. package/dist/m365/viva/commands/engage/engage-report-deviceusageusercounts.js +23 -0
  47. package/dist/m365/viva/commands/engage/engage-report-deviceusageuserdetail.js +23 -0
  48. package/dist/m365/viva/commands/engage/engage-report-groupsactivitycounts.js +23 -0
  49. package/dist/m365/viva/commands/engage/engage-report-groupsactivitydetail.js +23 -0
  50. package/dist/m365/viva/commands/engage/engage-report-groupsactivitygroupcounts.js +23 -0
  51. package/dist/m365/{yammer/commands/yammer-search.js → viva/commands/engage/engage-search.js} +23 -18
  52. package/dist/m365/{yammer/commands/user/user-get.js → viva/commands/engage/engage-user-get.js} +18 -13
  53. package/dist/m365/{yammer/commands/user/user-list.js → viva/commands/engage/engage-user-list.js} +18 -13
  54. package/dist/m365/{yammer/commands.js → viva/commands/engage/yammerCommands.js} +1 -1
  55. package/dist/m365/viva/commands.js +22 -1
  56. package/dist/utils/spo.js +22 -0
  57. package/dist/utils/urlUtil.js +31 -0
  58. package/dist/utils/validation.js +4 -0
  59. package/docs/docs/cmd/cli/cli-consent.mdx +9 -9
  60. package/docs/docs/cmd/entra/administrativeunit/administrativeunit-member-add.mdx +5 -3
  61. package/docs/docs/cmd/entra/administrativeunit/administrativeunit-member-remove.mdx +107 -0
  62. package/docs/docs/cmd/entra/app/app-add.mdx +2 -1
  63. package/docs/docs/cmd/entra/app/app-get.mdx +1 -0
  64. package/docs/docs/cmd/entra/app/app-list.mdx +1 -0
  65. package/docs/docs/cmd/entra/app/app-permission-add.mdx +1 -0
  66. package/docs/docs/cmd/entra/app/app-permission-list.mdx +105 -0
  67. package/docs/docs/cmd/entra/app/app-remove.mdx +1 -0
  68. package/docs/docs/cmd/entra/app/app-role-add.mdx +1 -0
  69. package/docs/docs/cmd/entra/app/app-role-list.mdx +1 -0
  70. package/docs/docs/cmd/entra/app/app-role-remove.mdx +1 -0
  71. package/docs/docs/cmd/entra/app/app-set.mdx +1 -0
  72. package/docs/docs/cmd/entra/{sp/sp-add.mdx → enterpriseapp/enterpriseapp-add.mdx} +16 -15
  73. package/docs/docs/cmd/entra/{sp/sp-get.mdx → enterpriseapp/enterpriseapp-get.mdx} +15 -14
  74. package/docs/docs/cmd/entra/{sp/sp-list.mdx → enterpriseapp/enterpriseapp-list.mdx} +22 -21
  75. package/docs/docs/cmd/entra/group/group-add.mdx +231 -0
  76. package/docs/docs/cmd/entra/m365group/m365group-report-activitygroupcounts.mdx +1 -1
  77. package/docs/docs/cmd/entra/oauth2grant/oauth2grant-add.mdx +3 -3
  78. package/docs/docs/cmd/entra/oauth2grant/oauth2grant-list.mdx +1 -1
  79. package/docs/docs/cmd/entra/user/user-registrationdetails-list.mdx +246 -0
  80. package/docs/docs/cmd/external/item/item-add.mdx +1 -1
  81. package/docs/docs/cmd/file/convert/convert-pdf.mdx +4 -0
  82. package/docs/docs/cmd/file/file-add.mdx +4 -0
  83. package/docs/docs/cmd/file/file-copy.mdx +68 -0
  84. package/docs/docs/cmd/file/file-list.mdx +100 -0
  85. package/docs/docs/cmd/setup.mdx +4 -0
  86. package/docs/docs/cmd/spo/list/list-webhook-set.mdx +1 -1
  87. package/docs/docs/cmd/spo/theme/theme-set.mdx +14 -2
  88. package/docs/docs/cmd/{yammer/group/group-list.mdx → viva/engage/engage-group-list.mdx} +13 -13
  89. package/docs/docs/cmd/{yammer/group/group-user-add.mdx → viva/engage/engage-group-user-add.mdx} +7 -7
  90. package/docs/docs/cmd/{yammer/group/group-user-remove.mdx → viva/engage/engage-group-user-remove.mdx} +10 -10
  91. package/docs/docs/cmd/{yammer/message/message-add.mdx → viva/engage/engage-message-add.mdx} +12 -13
  92. package/docs/docs/cmd/{yammer/message/message-get.mdx → viva/engage/engage-message-get.mdx} +10 -10
  93. package/docs/docs/cmd/{yammer/message/message-like-set.mdx → viva/engage/engage-message-like-set.mdx} +10 -10
  94. package/docs/docs/cmd/{yammer/message/message-list.mdx → viva/engage/engage-message-list.mdx} +21 -21
  95. package/docs/docs/cmd/{yammer/message/message-remove.mdx → viva/engage/engage-message-remove.mdx} +10 -10
  96. package/docs/docs/cmd/{yammer/network/network-list.mdx → viva/engage/engage-network-list.mdx} +6 -6
  97. package/docs/docs/cmd/{yammer/report/report-activitycounts.mdx → viva/engage/engage-report-activitycounts.mdx} +9 -9
  98. package/docs/docs/cmd/{yammer/report/report-activityusercounts.mdx → viva/engage/engage-report-activityusercounts.mdx} +9 -9
  99. package/docs/docs/cmd/{yammer/report/report-activityuserdetail.mdx → viva/engage/engage-report-activityuserdetail.mdx} +11 -12
  100. package/docs/docs/cmd/{yammer/report/report-deviceusagedistributionusercounts.mdx → viva/engage/engage-report-deviceusagedistributionusercounts.mdx} +5 -5
  101. package/docs/docs/cmd/{yammer/report/report-deviceusageusercounts.mdx → viva/engage/engage-report-deviceusageusercounts.mdx} +5 -5
  102. package/docs/docs/cmd/{yammer/report/report-deviceusageuserdetail.mdx → viva/engage/engage-report-deviceusageuserdetail.mdx} +11 -11
  103. package/docs/docs/cmd/{yammer/report/report-groupsactivitycounts.mdx → viva/engage/engage-report-groupsactivitycounts.mdx} +9 -9
  104. package/docs/docs/cmd/{yammer/report/report-groupsactivitydetail.mdx → viva/engage/engage-report-groupsactivitydetail.mdx} +11 -11
  105. package/docs/docs/cmd/{yammer/report/report-groupsactivitygroupcounts.mdx → viva/engage/engage-report-groupsactivitygroupcounts.mdx} +5 -5
  106. package/docs/docs/cmd/{yammer/yammer-search.mdx → viva/engage/engage-search.mdx} +10 -10
  107. package/docs/docs/cmd/{yammer/user/user-get.mdx → viva/engage/engage-user-get.mdx} +8 -8
  108. package/docs/docs/cmd/{yammer/user/user-list.mdx → viva/engage/engage-user-list.mdx} +11 -11
  109. package/npm-shrinkwrap.json +60 -0
  110. package/package.json +3 -2
  111. package/dist/m365/base/AzmgmtCommand.js +0 -18
  112. package/dist/m365/base/AzmgmtItemsListCommand.js +0 -41
  113. package/dist/m365/yammer/commands/report/report-activitycounts.js +0 -15
  114. package/dist/m365/yammer/commands/report/report-activityusercounts.js +0 -15
  115. package/dist/m365/yammer/commands/report/report-activityuserdetail.js +0 -15
  116. package/dist/m365/yammer/commands/report/report-deviceusagedistributionusercounts.js +0 -15
  117. package/dist/m365/yammer/commands/report/report-deviceusageusercounts.js +0 -15
  118. package/dist/m365/yammer/commands/report/report-deviceusageuserdetail.js +0 -15
  119. package/dist/m365/yammer/commands/report/report-groupsactivitycounts.js +0 -15
  120. package/dist/m365/yammer/commands/report/report-groupsactivitydetail.js +0 -15
  121. package/dist/m365/yammer/commands/report/report-groupsactivitygroupcounts.js +0 -15
@@ -1,23 +1,23 @@
1
1
  import Global from '/docs/cmd/_global.mdx';
2
2
 
3
- # yammer message remove
3
+ # viva engage message remove
4
4
 
5
- Removes a Yammer message
5
+ Removes a Viva Engage message
6
6
 
7
7
  ## Usage
8
8
 
9
9
  ```sh
10
- m365 yammer message remove [options]
10
+ m365 viva engage message remove [options]
11
11
  ```
12
12
 
13
13
  ## Options
14
14
 
15
15
  ```md definition-list
16
16
  `--id <id>`
17
- : The id of the Yammer message
17
+ : The id of the Viva Engage message.
18
18
 
19
19
  `-f, --force`
20
- : Don't prompt for confirming removing the Yammer message
20
+ : Don't prompt for confirmation.
21
21
  ```
22
22
 
23
23
  <Global />
@@ -26,7 +26,7 @@ m365 yammer message remove [options]
26
26
 
27
27
  :::warning
28
28
 
29
- In order to use this command, you need to grant the Azure AD application used by the CLI for Microsoft 365 the permission to the Yammer API. To do this, execute the `cli consent --service yammer` command.
29
+ In order to use this command, you need to grant the Azure AD application used by the CLI for Microsoft 365 the permission to the Viva Engage API. To do this, execute the `cli consent --service VivaEngage` command.
30
30
 
31
31
  :::
32
32
 
@@ -38,16 +38,16 @@ To remove a message, you must either:
38
38
 
39
39
  ## Examples
40
40
 
41
- Removes the Yammer message with the id _1239871123_
41
+ Removes the Viva Engage message with the id _1239871123_
42
42
 
43
43
  ```sh
44
- m365 yammer message remove --id 1239871123
44
+ m365 viva engage message remove --id 1239871123
45
45
  ```
46
46
 
47
- Removes the Yammer message with the id _1239871123_ without prompting for confirmation.
47
+ Removes the Viva Engage message with the id _1239871123_ without prompting for confirmation.
48
48
 
49
49
  ```sh
50
- m365 yammer message remove --id 1239871123 --force
50
+ m365 viva engage message remove --id 1239871123 --force
51
51
  ```
52
52
 
53
53
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer network list
5
+ # viva engage network list
6
6
 
7
7
  Returns a list of networks to which the current user has access
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer network list [options]
12
+ m365 viva engage network list [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -25,7 +25,7 @@ m365 yammer network list [options]
25
25
 
26
26
  :::warning
27
27
 
28
- In order to use this command, you need to grant the Azure AD application used by the CLI for Microsoft 365 the permission to the Yammer API. To do this, execute the `cli consent --service yammer` command.
28
+ In order to use this command, you need to grant the Azure AD application used by the CLI for Microsoft 365 the permission to the Viva Engage API. To do this, execute the `cli consent --service VivaEngage` command.
29
29
 
30
30
  :::
31
31
 
@@ -34,13 +34,13 @@ In order to use this command, you need to grant the Azure AD application used by
34
34
  Returns the current user's networks
35
35
 
36
36
  ```sh
37
- m365 yammer network list
37
+ m365 viva engage network list
38
38
  ```
39
39
 
40
40
  Returns the current user's networks including the networks in which the user is suspended
41
41
 
42
42
  ```sh
43
- m365 yammer network list --includeSuspended
43
+ m365 viva engage network list --includeSuspended
44
44
  ```
45
45
 
46
46
  ## Response
@@ -146,7 +146,7 @@ m365 yammer network list --includeSuspended
146
146
  <TabItem value="Markdown">
147
147
 
148
148
  ```md
149
- # yammer network list
149
+ # viva engage network list
150
150
 
151
151
  Date: 2023-05-16
152
152
 
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report activitycounts
5
+ # viva engage report activitycounts
6
6
 
7
- Gets the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked
7
+ Gets the trends on the amount of Viva Engage activity in your organization by how many messages were posted, read, and liked
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report activitycounts [options]
12
+ m365 viva engage report activitycounts [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -23,22 +23,22 @@ m365 yammer report activitycounts [options]
23
23
 
24
24
  ## Examples
25
25
 
26
- Gets the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked for the last week
26
+ Gets the trends on the amount of Viva Engage activity in your organization by how many messages were posted, read, and liked for the last week
27
27
 
28
28
  ```sh
29
- m365 yammer report activitycounts --period D7
29
+ m365 viva engage report activitycounts --period D7
30
30
  ```
31
31
 
32
- Gets the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked for the last week and exports the report data in the specified path in text format
32
+ Gets the trends on the amount of Viva Engage activity in your organization by how many messages were posted, read, and liked for the last week and exports the report data in the specified path in text format
33
33
 
34
34
  ```sh
35
- m365 yammer report activitycounts --period D7 --output text > "activitycounts.txt"
35
+ m365 viva engage report activitycounts --period D7 --output text > "activitycounts.txt"
36
36
  ```
37
37
 
38
- Gets the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked for the last week and exports the report data in the specified path in json format
38
+ Gets the trends on the amount of Viva Engage activity in your organization by how many messages were posted, read, and liked for the last week and exports the report data in the specified path in json format
39
39
 
40
40
  ```sh
41
- m365 yammer report activitycounts --period D7 --output json > "activitycounts.json"
41
+ m365 viva engage report activitycounts --period D7 --output json > "activitycounts.json"
42
42
  ```
43
43
 
44
44
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report activityusercounts
5
+ # viva engage report activityusercounts
6
6
 
7
- Gets the trends on the number of unique users who posted, read, and liked Yammer messages
7
+ Gets the trends on the number of unique users who posted, read, and liked Viva Engage messages
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report activityusercounts [options]
12
+ m365 viva engage report activityusercounts [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -23,22 +23,22 @@ m365 yammer report activityusercounts [options]
23
23
 
24
24
  ## Examples
25
25
 
26
- Gets the trends on the number of unique users who posted, read, and liked Yammer messages for the last week
26
+ Gets the trends on the number of unique users who posted, read, and liked Viva Engage messages for the last week
27
27
 
28
28
  ```sh
29
- m365 yammer report activityusercounts --period D7
29
+ m365 viva engage report activityusercounts --period D7
30
30
  ```
31
31
 
32
- Gets the trends on the number of unique users who posted, read, and liked Yammer messages for the last week and exports the report data in the specified path in text format
32
+ Gets the trends on the number of unique users who posted, read, and liked Viva Engage messages for the last week and exports the report data in the specified path in text format
33
33
 
34
34
  ```sh
35
- m365 yammer report activityusercounts --period D7 --output text > "activityusercounts.txt"
35
+ m365 viva engage report activityusercounts --period D7 --output text > "activityusercounts.txt"
36
36
  ```
37
37
 
38
- Gets the trends on the number of unique users who posted, read, and liked Yammer messages for the last week and exports the report data in the specified path in json format
38
+ Gets the trends on the number of unique users who posted, read, and liked Viva Engage messages for the last week and exports the report data in the specified path in json format
39
39
 
40
40
  ```sh
41
- m365 yammer report activityusercounts --period D7 --output json > "activityusercounts.json"
41
+ m365 viva engage report activityusercounts --period D7 --output json > "activityusercounts.json"
42
42
  ```
43
43
 
44
44
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report activityuserdetail
5
+ # viva engage report activityuserdetail
6
6
 
7
- Gets details about Yammer activity by user
7
+ Gets details about Viva Engage activity by user
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report activityuserdetail [options]
12
+ m365 viva engage report activityuserdetail [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -30,28 +30,28 @@ As this report is only available for the past 28 days, date parameter value shou
30
30
 
31
31
  ## Examples
32
32
 
33
- Gets details about Yammer activity by user for the last week
33
+ Gets details about Viva Engage activity by user for the last week
34
34
 
35
35
  ```sh
36
- m365 yammer report activityuserdetail --period D7
36
+ m365 viva engage report activityuserdetail --period D7
37
37
  ```
38
38
 
39
- Gets details about Yammer activity by user for May 1, 2019
39
+ Gets details about Viva Engage activity by user for May 1, 2019
40
40
 
41
41
  ```sh
42
- m365 yammer report activityuserdetail --date 2019-05-01
42
+ m365 viva engage report activityuserdetail --date 2019-05-01
43
43
  ```
44
44
 
45
- Gets details about Yammer activity by user for the last week and exports the report data in the specified path in text format
45
+ Gets details about Viva Engage activity by user for the last week and exports the report data in the specified path in text format
46
46
 
47
47
  ```sh
48
- m365 yammer report activityuserdetail --period D7 --output text > "activityuserdetail.txt"
48
+ m365 viva engage report activityuserdetail --period D7 --output text > "activityuserdetail.txt"
49
49
  ```
50
50
 
51
- Gets details about Yammer activity by user for the last week and exports the report data in the specified path in json format
51
+ Gets details about Viva Engage activity by user for the last week and exports the report data in the specified path in json format
52
52
 
53
53
  ```sh
54
- m365 yammer report activityuserdetail --period D7 --output json > "activityuserdetail.json"
54
+ m365 viva engage report activityuserdetail --period D7 --output json > "activityuserdetail.json"
55
55
  ```
56
56
 
57
57
  ## Response
@@ -103,4 +103,3 @@ m365 yammer report activityuserdetail --period D7 --output json > "activityuserd
103
103
 
104
104
  </TabItem>
105
105
  </Tabs>
106
-
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report deviceusagedistributionusercounts
5
+ # viva engage report deviceusagedistributionusercounts
6
6
 
7
7
  Gets the number of users by device type
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report deviceusagedistributionusercounts [options]
12
+ m365 viva engage report deviceusagedistributionusercounts [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -26,19 +26,19 @@ m365 yammer report deviceusagedistributionusercounts [options]
26
26
  Gets the number of users by device type for the last week
27
27
 
28
28
  ```sh
29
- m365 yammer report deviceusagedistributionusercounts --period D7
29
+ m365 viva engage report deviceusagedistributionusercounts --period D7
30
30
  ```
31
31
 
32
32
  Gets the number of users by device type for the last week and exports the report data in the specified path in text format
33
33
 
34
34
  ```sh
35
- m365 yammer report deviceusagedistributionusercounts --period D7 --output text > "deviceusagedistributionusercounts.txt"
35
+ m365 viva engage report deviceusagedistributionusercounts --period D7 --output text > "deviceusagedistributionusercounts.txt"
36
36
  ```
37
37
 
38
38
  Gets the number of users by device type for the last week and exports the report data in the specified path in json format
39
39
 
40
40
  ```sh
41
- m365 yammer report deviceusagedistributionusercounts --period D7 --output json > "deviceusagedistributionusercounts.json"
41
+ m365 viva engage report deviceusagedistributionusercounts --period D7 --output json > "deviceusagedistributionusercounts.json"
42
42
  ```
43
43
 
44
44
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report deviceusageusercounts
5
+ # viva engage report deviceusageusercounts
6
6
 
7
7
  Gets the number of daily users by device type
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report deviceusageusercounts [options]
12
+ m365 viva engage report deviceusageusercounts [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -26,19 +26,19 @@ m365 yammer report deviceusageusercounts [options]
26
26
  Gets the number of daily users by device type for the last week
27
27
 
28
28
  ```sh
29
- m365 yammer report deviceusageusercounts --period D7
29
+ m365 viva engage report deviceusageusercounts --period D7
30
30
  ```
31
31
 
32
32
  Gets the number of daily users by device type for the last week and exports the report data in the specified path in text format
33
33
 
34
34
  ```sh
35
- m365 yammer report deviceusageusercounts --period D7 --output text > "deviceusageusercounts.txt"
35
+ m365 viva engage report deviceusageusercounts --period D7 --output text > "deviceusageusercounts.txt"
36
36
  ```
37
37
 
38
38
  Gets the number of daily users by device type for the last week and exports the report data in the specified path in json format
39
39
 
40
40
  ```sh
41
- m365 yammer report deviceusageusercounts --period D7 --output json > "deviceusageusercounts.json"
41
+ m365 viva engage report deviceusageusercounts --period D7 --output json > "deviceusageusercounts.json"
42
42
  ```
43
43
 
44
44
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report deviceusageuserdetail
5
+ # viva engage report deviceusageuserdetail
6
6
 
7
- Gets details about Yammer device usage by user
7
+ Gets details about viva engage device usage by user
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report deviceusageuserdetail [options]
12
+ m365 viva engage report deviceusageuserdetail [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -30,28 +30,28 @@ As this report is only available for the past 28 days, date parameter value shou
30
30
 
31
31
  ## Examples
32
32
 
33
- Gets details about Yammer device usage by user for the last week
33
+ Gets details about Viva Engage device usage by user for the last week
34
34
 
35
35
  ```sh
36
- m365 yammer report deviceusageuserdetail --period D7
36
+ m365 viva engage report deviceusageuserdetail --period D7
37
37
  ```
38
38
 
39
- Gets details about Yammer device usage by user for July 1, 2019
39
+ Gets details about Viva Engage device usage by user for July 1, 2019
40
40
 
41
41
  ```sh
42
- m365 yammer report deviceusageuserdetail --date 2019-07-01
42
+ m365 viva engage report deviceusageuserdetail --date 2019-07-01
43
43
  ```
44
44
 
45
- Gets details about Yammer device usage by user for the last week and exports the report data in the specified path in text format
45
+ Gets details about Viva Engage device usage by user for the last week and exports the report data in the specified path in text format
46
46
 
47
47
  ```sh
48
- m365 yammer report deviceusageuserdetail --period D7 --output text > "deviceusageuserdetail.txt"
48
+ m365 viva engage report deviceusageuserdetail --period D7 --output text > "deviceusageuserdetail.txt"
49
49
  ```
50
50
 
51
- Gets details about Yammer device usage by user for the last week and exports the report data in the specified path in json format
51
+ Gets details about Viva Engage device usage by user for the last week and exports the report data in the specified path in json format
52
52
 
53
53
  ```sh
54
- m365 yammer report deviceusageuserdetail --period D7 --output json > "deviceusageuserdetail.json"
54
+ m365 viva engage report deviceusageuserdetail --period D7 --output json > "deviceusageuserdetail.json"
55
55
  ```
56
56
 
57
57
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report groupsactivitycounts
5
+ # viva engage report groupsactivitycounts
6
6
 
7
- Gets the number of Yammer messages posted, read, and liked in groups
7
+ Gets the number of Viva Engage messages posted, read, and liked in groups
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report groupsactivitycounts [options]
12
+ m365 viva engage report groupsactivitycounts [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -23,22 +23,22 @@ m365 yammer report groupsactivitycounts [options]
23
23
 
24
24
  ## Examples
25
25
 
26
- Gets the number of Yammer messages posted, read, and liked in groups for the last week
26
+ Gets the number of Viva Engage messages posted, read, and liked in groups for the last week
27
27
 
28
28
  ```sh
29
- m365 yammer report groupsactivitycounts --period D7
29
+ m365 viva engage report groupsactivitycounts --period D7
30
30
  ```
31
31
 
32
- Gets the number of Yammer messages posted, read, and liked in groups for the last week and exports the report data in the specified path in text format
32
+ Gets the number of Viva Engage messages posted, read, and liked in groups for the last week and exports the report data in the specified path in text format
33
33
 
34
34
  ```sh
35
- m365 yammer report groupsactivitycounts --period D7 --output text > "groupsactivitycounts.txt"
35
+ m365 viva engage report groupsactivitycounts --period D7 --output text > "groupsactivitycounts.txt"
36
36
  ```
37
37
 
38
- Gets the number of Yammer messages posted, read, and liked in groups for the last week and exports the report data in the specified path in json format
38
+ Gets the number of Viva Engage messages posted, read, and liked in groups for the last week and exports the report data in the specified path in json format
39
39
 
40
40
  ```sh
41
- m365 yammer report groupsactivitycounts --period D7 --output json > "groupsactivitycounts.json"
41
+ m365 viva engage report groupsactivitycounts --period D7 --output json > "groupsactivitycounts.json"
42
42
  ```
43
43
 
44
44
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report groupsactivitydetail
5
+ # viva engage report groupsactivitydetail
6
6
 
7
- Gets details about Yammer groups activity by group
7
+ Gets details about Viva Engage groups activity by group
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report groupsactivitydetail [options]
12
+ m365 viva engage report groupsactivitydetail [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -30,28 +30,28 @@ As this report is only available for the past 28 days, date parameter value shou
30
30
 
31
31
  ## Examples
32
32
 
33
- Gets details about Yammer groups activity by group for the last week
33
+ Gets details about Viva Engage groups activity by group for the last week
34
34
 
35
35
  ```sh
36
- m365 yammer report groupsactivitydetail --period D7
36
+ m365 viva engage report groupsactivitydetail --period D7
37
37
  ```
38
38
 
39
- Gets details about Yammer groups activity by group for July 1, 2019
39
+ Gets details about Viva Engage groups activity by group for July 1, 2019
40
40
 
41
41
  ```sh
42
- m365 yammer report groupsactivitydetail --date 2019-07-01
42
+ m365 viva engage report groupsactivitydetail --date 2019-07-01
43
43
  ```
44
44
 
45
- Gets details about Yammer groups activity by group for the last week and exports the report data in the specified path in text format
45
+ Gets details about Viva Engage groups activity by group for the last week and exports the report data in the specified path in text format
46
46
 
47
47
  ```sh
48
- m365 yammer report groupsactivitydetail --period D7 --output text > "groupsactivitydetail.txt"
48
+ m365 viva engage report groupsactivitydetail --period D7 --output text > "groupsactivitydetail.txt"
49
49
  ```
50
50
 
51
- Gets details about Yammer groups activity by group for the last week and exports the report data in the specified path in json format
51
+ Gets details about Viva Engage groups activity by group for the last week and exports the report data in the specified path in json format
52
52
 
53
53
  ```sh
54
- m365 yammer report groupsactivitydetail --period D7 --output json > "groupsactivitydetail.json"
54
+ m365 viva engage report groupsactivitydetail --period D7 --output json > "groupsactivitydetail.json"
55
55
  ```
56
56
 
57
57
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer report groupsactivitygroupcounts
5
+ # viva engage report groupsactivitygroupcounts
6
6
 
7
7
  Gets the total number of groups that existed and how many included group conversation activity
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer report groupsactivitygroupcounts [options]
12
+ m365 viva engage report groupsactivitygroupcounts [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -26,19 +26,19 @@ m365 yammer report groupsactivitygroupcounts [options]
26
26
  Gets the total number of groups that existed and how many included group conversation activity for the last week
27
27
 
28
28
  ```sh
29
- m365 yammer report groupsactivitygroupcounts --period D7
29
+ m365 viva engage report groupsactivitygroupcounts --period D7
30
30
  ```
31
31
 
32
32
  Gets the total number of groups that existed and how many included group conversation activity for the last week and exports the report data in the specified path in text format
33
33
 
34
34
  ```sh
35
- m365 yammer report groupsactivitygroupcounts --period D7 --output text > "groupsactivitygroupcounts.txt"
35
+ m365 viva engage report groupsactivitygroupcounts --period D7 --output text > "groupsactivitygroupcounts.txt"
36
36
  ```
37
37
 
38
38
  Gets the total number of groups that existed and how many included group conversation activity for the last week and exports the report data in the specified path in json format
39
39
 
40
40
  ```sh
41
- m365 yammer report groupsactivitygroupcounts --period D7 --output json > "groupsactivitygroupcounts.json"
41
+ m365 viva engage report groupsactivitygroupcounts --period D7 --output json > "groupsactivitygroupcounts.json"
42
42
  ```
43
43
 
44
44
  ## Response
@@ -2,14 +2,14 @@ import Global from '/docs/cmd/_global.mdx';
2
2
  import Tabs from '@theme/Tabs';
3
3
  import TabItem from '@theme/TabItem';
4
4
 
5
- # yammer search
5
+ # viva engage search
6
6
 
7
7
  Returns a list of messages, users, topics and groups that match the specified query.
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```sh
12
- m365 yammer search [options]
12
+ m365 viva engage search [options]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -31,7 +31,7 @@ m365 yammer search [options]
31
31
 
32
32
  :::warning
33
33
 
34
- In order to use this command, you need to grant the Azure AD application used by the CLI for Microsoft 365 the permission to the Yammer API. To do this, execute the `cli consent --service yammer` command.
34
+ In order to use this command, you need to grant the Azure AD application used by the CLI for Microsoft 365 the permission to the Viva Engage API. To do this, execute the `cli consent --service VivaEngage` command.
35
35
 
36
36
  :::
37
37
 
@@ -42,37 +42,37 @@ Using the `--show` option in JSON output is not supported. To filter JSON result
42
42
  Returns search result for the query `community`
43
43
 
44
44
  ```sh
45
- m365 yammer search --queryText "community"
45
+ m365 viva engage search --queryText "community"
46
46
  ```
47
47
 
48
48
  Returns groups that match `community`
49
49
 
50
50
  ```sh
51
- m365 yammer search --queryText "community" --show "groups"
51
+ m365 viva engage search --queryText "community" --show "groups"
52
52
  ```
53
53
 
54
54
  Returns topics that match `community`
55
55
 
56
56
  ```sh
57
- m365 yammer search --queryText "community" --show "topics"
57
+ m365 viva engage search --queryText "community" --show "topics"
58
58
  ```
59
59
 
60
60
  Returns the first 50 users who match the search query `nuborocks.onmicrosoft.com`
61
61
 
62
62
  ```sh
63
- m365 yammer search --queryText "nuborocks.onmicrosoft.com" --show "users" --limit 50
63
+ m365 viva engage search --queryText "nuborocks.onmicrosoft.com" --show "users" --limit 50
64
64
  ```
65
65
 
66
66
  Returns all search results for the query `community`. Stops at 1000 results.
67
67
 
68
68
  ```sh
69
- m365 yammer search --queryText "community" --output json
69
+ m365 viva engage search --queryText "community" --output json
70
70
  ```
71
71
 
72
72
  Returns the search results for the query `community` and limits the results to the first 50 entries for each result category.
73
73
 
74
74
  ```sh
75
- m365 yammer search --queryText "community" --output json --limit 50
75
+ m365 viva engage search --queryText "community" --output json --limit 50
76
76
  ```
77
77
 
78
78
  ## Response
@@ -160,7 +160,7 @@ m365 yammer search --queryText "community" --output json --limit 50
160
160
  <TabItem value="Markdown">
161
161
 
162
162
  ```md
163
- # yammer search --queryText "contoso.onmicrosoft.com" --show "users" --limit "1"
163
+ # viva engage search --queryText "contoso.onmicrosoft.com" --show "users" --limit "1"
164
164
 
165
165
  Date: 2023-05-16
166
166