@pnp/cli-microsoft365 10.8.0 → 10.9.0-beta.3261443

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 (47) hide show
  1. package/.devcontainer/Dockerfile +1 -1
  2. package/Dockerfile +3 -3
  3. package/README.md +1 -1
  4. package/allCommands.json +1 -1
  5. package/allCommandsFull.json +1 -1
  6. package/dist/m365/entra/commands/m365group/m365group-get.js +16 -3
  7. package/dist/m365/entra/commands/m365group/m365group-list.js +7 -1
  8. package/dist/m365/entra/commands/pim/pim-role-assignment-eligibility-list.js +9 -3
  9. package/dist/m365/entra/commands/pim/pim-role-assignment-list.js +9 -3
  10. package/dist/m365/entra/commands/pim/pim-role-request-list.js +9 -3
  11. package/dist/m365/flow/commands/flow-list.js +14 -7
  12. package/dist/m365/flow/commands/run/run-get.js +1 -1
  13. package/dist/m365/graph/commands/subscription/subscription-add.js +10 -3
  14. package/dist/m365/pp/commands/solution/solution-publisher-list.js +8 -1
  15. package/dist/m365/purview/commands/threatassessment/threatassessment-get.js +9 -2
  16. package/dist/m365/spo/commands/file/file-move.js +8 -2
  17. package/dist/m365/spo/commands/hubsite/hubsite-get.js +14 -5
  18. package/dist/m365/spo/commands/hubsite/hubsite-list.js +9 -2
  19. package/dist/m365/spo/commands/page/clientsidepages.js +49 -17
  20. package/dist/m365/spo/commands/tenant/tenant-site-list.js +16 -5
  21. package/dist/m365/spo/commands/term/term-list.js +10 -3
  22. package/dist/m365/teams/commands/chat/chat-member-add.js +10 -4
  23. package/dist/m365/viva/commands/engage/engage-community-remove.js +99 -0
  24. package/dist/m365/viva/commands/engage/engage-network-list.js +8 -2
  25. package/dist/m365/viva/commands.js +1 -0
  26. package/docs/docs/cmd/entra/m365group/m365group-get.mdx +8 -5
  27. package/docs/docs/cmd/entra/m365group/m365group-list.mdx +14 -12
  28. package/docs/docs/cmd/entra/pim/pim-role-assignment-eligibility-list.mdx +7 -4
  29. package/docs/docs/cmd/entra/pim/pim-role-assignment-list.mdx +9 -6
  30. package/docs/docs/cmd/entra/pim/pim-role-request-list.mdx +7 -4
  31. package/docs/docs/cmd/flow/flow-list.mdx +8 -5
  32. package/docs/docs/cmd/flow/run/run-get.mdx +1 -1
  33. package/docs/docs/cmd/graph/subscription/subscription-add.mdx +6 -3
  34. package/docs/docs/cmd/pp/solution/solution-publisher-list.mdx +7 -4
  35. package/docs/docs/cmd/purview/threatassessment/threatassessment-get.mdx +7 -4
  36. package/docs/docs/cmd/spo/file/file-move.mdx +4 -1
  37. package/docs/docs/cmd/spo/hubsite/hubsite-get.mdx +6 -3
  38. package/docs/docs/cmd/spo/hubsite/hubsite-list.mdx +7 -4
  39. package/docs/docs/cmd/spo/list/list-add.mdx +1 -1
  40. package/docs/docs/cmd/spo/list/list-set.mdx +2 -2
  41. package/docs/docs/cmd/spo/tenant/tenant-site-list.mdx +10 -7
  42. package/docs/docs/cmd/spo/term/term-list.mdx +7 -4
  43. package/docs/docs/cmd/teams/chat/chat-member-add.mdx +6 -3
  44. package/docs/docs/cmd/viva/engage/engage-community-remove.mdx +61 -0
  45. package/docs/docs/cmd/viva/engage/engage-network-list.mdx +7 -4
  46. package/npm-shrinkwrap.json +112 -97
  47. package/package.json +14 -14
@@ -1,4 +1,4 @@
1
- FROM waldekm/powershell:alpine-3.18
1
+ FROM mcr.microsoft.com/powershell:alpine-3.20
2
2
 
3
3
  LABEL name="CLI for Microsoft 365 Development" \
4
4
  description="Development container for contributing to CLI for Microsoft 365" \
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM waldekm/powershell:alpine-3.18
1
+ FROM mcr.microsoft.com/powershell:alpine-3.20
2
2
 
3
3
  ARG CLI_VERSION=latest
4
4
 
@@ -39,8 +39,8 @@ ENV 0="/bin/bash" \
39
39
 
40
40
  RUN bash -c 'echo "export PATH=$PATH:/home/cli-microsoft365/.npm-global/bin:/home/.local/bin" >> ~/.bash_profile' \
41
41
  && bash -c 'echo "export CLIMICROSOFT365_ENV=\"docker\"" >> ~/.bash_profile' \
42
- && bash -c 'npm i -g @pnp/cli-microsoft365@${CLI_VERSION} --production --quiet --no-progress' \
43
- && bash -c 'echo "source /etc/profile.d/bash_completion.sh" >> ~/.bash_profile' \
42
+ && bash -c 'npm i -g @pnp/cli-microsoft365@${CLI_VERSION} --omit=dev --quiet --no-progress' \
43
+ && bash -c 'echo "source /etc/bash/bash_completion.sh" >> ~/.bash_profile' \
44
44
  && bash -c 'echo "alias \"m365?\"=\"m365_chili\"" >> ~/.bash_profile' \
45
45
  && bash -c 'echo ". .bashrc" >> ~/.bash_profile' \
46
46
  && bash -c 'npm cache clean --force' \
package/README.md CHANGED
@@ -112,7 +112,7 @@
112
112
 
113
113
  ## Install
114
114
 
115
- To use the CLI for Microsoft 365 you need [`Node.js`](https://nodejs.org). The CLI has been tested with Node.js versions 18 and higher, but we recommend you to use the Node.js LTS version available at the moment.
115
+ To use the CLI for Microsoft 365 you need [`Node.js`](https://nodejs.org). The CLI has been tested with Node.js versions 20 and higher, but we recommend you to use the Node.js LTS version available at the moment.
116
116
 
117
117
  ```
118
118
  npm install -g @pnp/cli-microsoft365