@pnp/cli-microsoft365 11.7.0-beta.bd906c5 → 11.8.0-beta.50a1b64

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 (66) hide show
  1. package/.devproxy/api-specs/sharepoint.yaml +53 -0
  2. package/allCommands.json +1 -1
  3. package/allCommandsFull.json +1 -1
  4. package/dist/m365/context/commands/option/option-list.js +6 -1
  5. package/dist/m365/entra/commands/resourcenamespace/resourcenamespace-list.js +6 -0
  6. package/dist/m365/external/commands/connection/connection-list.js +6 -0
  7. package/dist/m365/outlook/commands/calendar/calendar-set.js +132 -0
  8. package/dist/m365/outlook/commands/calendargroup/calendargroup-get.js +114 -0
  9. package/dist/m365/outlook/commands/calendargroup/calendargroup-remove.js +98 -0
  10. package/dist/m365/outlook/commands.js +3 -0
  11. package/dist/m365/spfx/commands/project/DeployWorkflow.js +9 -5
  12. package/dist/m365/spfx/commands/project/project-azuredevops-pipeline-add.js +10 -9
  13. package/dist/m365/spfx/commands/project/project-doctor.js +6 -0
  14. package/dist/m365/spfx/commands/project/project-github-workflow-add.js +12 -10
  15. package/dist/m365/spfx/commands/project/project-upgrade/rules/DependencyRule.js +11 -5
  16. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN027001_OVERRIDES_rushstack_heft.js +10 -0
  17. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.22.0.js +2 -2
  18. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.23.0-rc.0.js +2 -2
  19. package/dist/m365/spfx/commands/project/project-upgrade.js +23 -6
  20. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-add.js +13 -1
  21. package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-set.js +24 -3
  22. package/dist/m365/spo/commands/brandcenter/brandcenter-colors-list.js +59 -0
  23. package/dist/m365/spo/commands/file/file-archive.js +83 -0
  24. package/dist/m365/spo/commands/propertybag/propertybag-set.js +3 -9
  25. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-add.js +20 -0
  26. package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-set.js +27 -2
  27. package/dist/m365/spo/commands/tenant/tenant-settings-set.js +5 -1
  28. package/dist/m365/spo/commands.js +2 -0
  29. package/dist/request.js +1 -17
  30. package/dist/utils/packageManager.js +29 -7
  31. package/docs/docs/cmd/entra/m365group/m365group-user-add.mdx +21 -0
  32. package/docs/docs/cmd/entra/m365group/m365group-user-list.mdx +19 -0
  33. package/docs/docs/cmd/entra/m365group/m365group-user-remove.mdx +21 -0
  34. package/docs/docs/cmd/entra/m365group/m365group-user-set.mdx +21 -0
  35. package/docs/docs/cmd/entra/roledefinition/roledefinition-add.mdx +19 -0
  36. package/docs/docs/cmd/entra/roledefinition/roledefinition-get.mdx +19 -0
  37. package/docs/docs/cmd/entra/roledefinition/roledefinition-list.mdx +19 -0
  38. package/docs/docs/cmd/entra/roledefinition/roledefinition-remove.mdx +21 -0
  39. package/docs/docs/cmd/entra/roledefinition/roledefinition-set.mdx +21 -0
  40. package/docs/docs/cmd/entra/siteclassification/siteclassification-disable.mdx +21 -0
  41. package/docs/docs/cmd/entra/siteclassification/siteclassification-enable.mdx +21 -0
  42. package/docs/docs/cmd/entra/siteclassification/siteclassification-get.mdx +19 -0
  43. package/docs/docs/cmd/entra/siteclassification/siteclassification-set.mdx +20 -0
  44. package/docs/docs/cmd/external/connection/connection-add.mdx +21 -0
  45. package/docs/docs/cmd/external/connection/connection-doctor.mdx +19 -0
  46. package/docs/docs/cmd/external/connection/connection-get.mdx +19 -0
  47. package/docs/docs/cmd/external/connection/connection-list.mdx +19 -0
  48. package/docs/docs/cmd/external/connection/connection-remove.mdx +21 -0
  49. package/docs/docs/cmd/external/connection/connection-schema-add.mdx +21 -0
  50. package/docs/docs/cmd/external/connection/connection-urltoitemresolver-add.mdx +21 -0
  51. package/docs/docs/cmd/external/item/item-add.mdx +19 -0
  52. package/docs/docs/cmd/outlook/calendar/calendar-set.mdx +178 -0
  53. package/docs/docs/cmd/outlook/calendargroup/calendargroup-get.mdx +125 -0
  54. package/docs/docs/cmd/outlook/calendargroup/calendargroup-remove.mdx +91 -0
  55. package/docs/docs/cmd/spfx/project/project-upgrade.mdx +1 -1
  56. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.mdx +14 -11
  57. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx +9 -6
  58. package/docs/docs/cmd/spo/brandcenter/brandcenter-colors-list.mdx +115 -0
  59. package/docs/docs/cmd/spo/file/file-archive.mdx +68 -0
  60. package/docs/docs/cmd/spo/propertybag/propertybag-set.mdx +1 -1
  61. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-add.mdx +13 -10
  62. package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-set.mdx +7 -4
  63. package/docs/docs/cmd/spo/tenant/tenant-settings-set.mdx +3 -0
  64. package/npm-shrinkwrap.json +583 -224
  65. package/package.json +33 -19
  66. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN021009_PKG_overrides_rushstack_heft.js +0 -45

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.