@pnp/cli-microsoft365 11.10.0-beta.6474466 → 11.10.0-beta.68e3b93

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 (44) hide show
  1. package/.devcontainer/Dockerfile +1 -1
  2. package/Dockerfile +1 -1
  3. package/allCommands.json +1 -1
  4. package/allCommandsFull.json +1 -1
  5. package/dist/Auth.js +4 -2
  6. package/dist/m365/outlook/commands/event/event-get.js +77 -0
  7. package/dist/m365/outlook/commands.js +1 -0
  8. package/dist/m365/pp/commands/website/Webrole.js +2 -0
  9. package/dist/m365/pp/commands/website/website-remove.js +80 -0
  10. package/dist/m365/pp/commands/website/website-webrole-list.js +61 -0
  11. package/dist/m365/pp/commands.js +3 -1
  12. package/dist/m365/spo/commands/web/{web-alert-list.js → web-rule-list.js} +7 -4
  13. package/dist/m365/spo/commands/web/{web-alert-remove.js → web-rule-remove.js} +7 -4
  14. package/dist/m365/spo/commands.js +2 -0
  15. package/dist/utils/powerPlatform.js +20 -0
  16. package/docs/docs/cmd/outlook/event/event-get.mdx +280 -0
  17. package/docs/docs/cmd/pp/website/website-remove.mdx +89 -0
  18. package/docs/docs/cmd/pp/website/website-webrole-list.mdx +139 -0
  19. package/docs/docs/cmd/spo/field/field-add.mdx +19 -0
  20. package/docs/docs/cmd/spo/field/field-get.mdx +19 -0
  21. package/docs/docs/cmd/spo/field/field-list.mdx +19 -0
  22. package/docs/docs/cmd/spo/field/field-remove.mdx +21 -0
  23. package/docs/docs/cmd/spo/field/field-set.mdx +21 -0
  24. package/docs/docs/cmd/spo/file/file-checkout-undo.mdx +21 -0
  25. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +21 -0
  26. package/docs/docs/cmd/spo/file/file-retentionlabel-remove.mdx +21 -0
  27. package/docs/docs/cmd/spo/file/file-roleassignment-add.mdx +21 -0
  28. package/docs/docs/cmd/spo/file/file-roleassignment-remove.mdx +21 -0
  29. package/docs/docs/cmd/spo/file/file-roleinheritance-break.mdx +21 -0
  30. package/docs/docs/cmd/spo/file/file-roleinheritance-reset.mdx +21 -0
  31. package/docs/docs/cmd/spo/file/file-sharinginfo-get.mdx +19 -0
  32. package/docs/docs/cmd/spo/hubsite/hubsite-connect.mdx +21 -0
  33. package/docs/docs/cmd/spo/hubsite/hubsite-data-get.mdx +19 -0
  34. package/docs/docs/cmd/spo/hubsite/hubsite-disconnect.mdx +21 -0
  35. package/docs/docs/cmd/spo/hubsite/hubsite-get.mdx +19 -0
  36. package/docs/docs/cmd/spo/hubsite/hubsite-list.mdx +19 -0
  37. package/docs/docs/cmd/spo/hubsite/hubsite-register.mdx +19 -0
  38. package/docs/docs/cmd/spo/hubsite/hubsite-rights-grant.mdx +21 -0
  39. package/docs/docs/cmd/spo/hubsite/hubsite-rights-revoke.mdx +21 -0
  40. package/docs/docs/cmd/spo/hubsite/hubsite-set.mdx +19 -0
  41. package/docs/docs/cmd/spo/hubsite/hubsite-unregister.mdx +21 -0
  42. package/docs/docs/cmd/spo/web/{web-alert-list.mdx → web-rule-list.mdx} +13 -7
  43. package/docs/docs/cmd/spo/web/{web-alert-remove.mdx → web-rule-remove.mdx} +10 -4
  44. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- FROM mcr.microsoft.com/powershell:alpine-3.20
1
+ FROM FROM waldekm/powershell:alpine-3.23
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 mcr.microsoft.com/powershell:alpine-3.20
1
+ FROM FROM waldekm/powershell:alpine-3.23
2
2
 
3
3
  ARG CLI_VERSION=latest
4
4