@pnp/cli-microsoft365 10.9.0-beta.bc13e90 → 10.10.0-beta.bd186ba

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 (46) hide show
  1. package/.devcontainer/Dockerfile +1 -1
  2. package/Dockerfile +3 -3
  3. package/allCommands.json +1 -1
  4. package/allCommandsFull.json +1 -1
  5. package/dist/m365/entra/commands/m365group/m365group-get.js +16 -3
  6. package/dist/m365/entra/commands/m365group/m365group-list.js +7 -1
  7. package/dist/m365/entra/commands/pim/pim-role-assignment-eligibility-list.js +9 -3
  8. package/dist/m365/entra/commands/pim/pim-role-assignment-list.js +9 -3
  9. package/dist/m365/entra/commands/pim/pim-role-request-list.js +9 -3
  10. package/dist/m365/flow/commands/flow-list.js +14 -7
  11. package/dist/m365/flow/commands/run/run-get.js +1 -1
  12. package/dist/m365/graph/commands/subscription/subscription-add.js +10 -3
  13. package/dist/m365/pp/commands/solution/solution-publisher-list.js +8 -1
  14. package/dist/m365/purview/commands/threatassessment/threatassessment-get.js +9 -2
  15. package/dist/m365/spo/commands/file/file-move.js +8 -2
  16. package/dist/m365/spo/commands/hubsite/hubsite-get.js +14 -5
  17. package/dist/m365/spo/commands/hubsite/hubsite-list.js +9 -2
  18. package/dist/m365/spo/commands/page/clientsidepages.js +49 -17
  19. package/dist/m365/spo/commands/tenant/tenant-site-list.js +16 -5
  20. package/dist/m365/spo/commands/term/term-list.js +10 -3
  21. package/dist/m365/teams/commands/chat/chat-member-add.js +10 -4
  22. package/dist/m365/viva/commands/engage/engage-community-remove.js +99 -0
  23. package/dist/m365/viva/commands/engage/engage-network-list.js +8 -2
  24. package/dist/m365/viva/commands.js +1 -0
  25. package/docs/docs/cmd/entra/m365group/m365group-get.mdx +8 -5
  26. package/docs/docs/cmd/entra/m365group/m365group-list.mdx +14 -12
  27. package/docs/docs/cmd/entra/pim/pim-role-assignment-eligibility-list.mdx +7 -4
  28. package/docs/docs/cmd/entra/pim/pim-role-assignment-list.mdx +9 -6
  29. package/docs/docs/cmd/entra/pim/pim-role-request-list.mdx +7 -4
  30. package/docs/docs/cmd/flow/flow-list.mdx +8 -5
  31. package/docs/docs/cmd/flow/run/run-get.mdx +1 -1
  32. package/docs/docs/cmd/graph/subscription/subscription-add.mdx +6 -3
  33. package/docs/docs/cmd/pp/solution/solution-publisher-list.mdx +7 -4
  34. package/docs/docs/cmd/purview/threatassessment/threatassessment-get.mdx +7 -4
  35. package/docs/docs/cmd/spo/file/file-move.mdx +4 -1
  36. package/docs/docs/cmd/spo/hubsite/hubsite-get.mdx +6 -3
  37. package/docs/docs/cmd/spo/hubsite/hubsite-list.mdx +7 -4
  38. package/docs/docs/cmd/spo/list/list-add.mdx +1 -1
  39. package/docs/docs/cmd/spo/list/list-set.mdx +2 -2
  40. package/docs/docs/cmd/spo/tenant/tenant-site-list.mdx +10 -7
  41. package/docs/docs/cmd/spo/term/term-list.mdx +7 -4
  42. package/docs/docs/cmd/teams/chat/chat-member-add.mdx +6 -3
  43. package/docs/docs/cmd/viva/engage/engage-community-remove.mdx +61 -0
  44. package/docs/docs/cmd/viva/engage/engage-network-list.mdx +7 -4
  45. package/npm-shrinkwrap.json +112 -97
  46. package/package.json +13 -13
@@ -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' \