@pnp/cli-microsoft365 11.9.0 → 11.10.0-beta.3e566b1

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 (107) hide show
  1. package/.devcontainer/Dockerfile +1 -1
  2. package/.devproxy/api-specs/sharepoint-admin.yaml +50 -0
  3. package/Dockerfile +1 -1
  4. package/allCommands.json +1 -1
  5. package/allCommandsFull.json +1 -1
  6. package/dist/Auth.js +4 -2
  7. package/dist/m365/outlook/commands/event/event-get.js +77 -0
  8. package/dist/m365/outlook/commands.js +1 -0
  9. package/dist/m365/planner/commands/roster/roster-add.js +5 -0
  10. package/dist/m365/planner/commands/roster/roster-get.js +8 -18
  11. package/dist/m365/planner/commands/roster/roster-member-add.js +29 -45
  12. package/dist/m365/planner/commands/roster/roster-member-get.js +28 -44
  13. package/dist/m365/planner/commands/roster/roster-member-list.js +8 -18
  14. package/dist/m365/planner/commands/roster/roster-member-remove.js +30 -48
  15. package/dist/m365/planner/commands/roster/roster-plan-list.js +28 -46
  16. package/dist/m365/planner/commands/roster/roster-remove.js +9 -27
  17. package/dist/m365/planner/commands/task/task-add.js +97 -111
  18. package/dist/m365/planner/commands/task/task-checklistitem-add.js +10 -23
  19. package/dist/m365/planner/commands/task/task-checklistitem-list.js +16 -26
  20. package/dist/m365/planner/commands/task/task-checklistitem-remove.js +10 -23
  21. package/dist/m365/planner/commands/task/task-get.js +46 -69
  22. package/dist/m365/planner/commands/task/task-list.js +33 -69
  23. package/dist/m365/planner/commands/task/task-reference-add.js +15 -35
  24. package/dist/m365/planner/commands/task/task-reference-list.js +8 -18
  25. package/dist/m365/planner/commands/task/task-reference-remove.js +26 -36
  26. package/dist/m365/planner/commands/task/task-remove.js +47 -71
  27. package/dist/m365/planner/commands/task/task-set.js +92 -113
  28. package/dist/m365/pp/commands/website/Webrole.js +2 -0
  29. package/dist/m365/pp/commands/website/website-remove.js +80 -0
  30. package/dist/m365/pp/commands/website/website-webrole-list.js +61 -0
  31. package/dist/m365/pp/commands.js +3 -1
  32. package/dist/m365/purview/commands/auditlog/auditlog-list.js +36 -60
  33. package/dist/m365/purview/commands/retentionevent/retentionevent-add.js +34 -53
  34. package/dist/m365/purview/commands/retentionevent/retentionevent-get.js +10 -23
  35. package/dist/m365/purview/commands/retentionevent/retentionevent-remove.js +11 -32
  36. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-add.js +9 -24
  37. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-get.js +10 -23
  38. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-remove.js +11 -32
  39. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-set.js +21 -35
  40. package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +40 -82
  41. package/dist/m365/purview/commands/retentionlabel/retentionlabel-get.js +10 -23
  42. package/dist/m365/purview/commands/retentionlabel/retentionlabel-remove.js +11 -32
  43. package/dist/m365/purview/commands/retentionlabel/retentionlabel-set.js +35 -78
  44. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-get.js +19 -44
  45. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-list.js +16 -39
  46. package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-policysettings-list.js +16 -39
  47. package/dist/m365/purview/commands/threatassessment/threatassessment-add.js +44 -67
  48. package/dist/m365/purview/commands/threatassessment/threatassessment-get.js +11 -33
  49. package/dist/m365/purview/commands/threatassessment/threatassessment-list.js +10 -33
  50. package/dist/m365/spo/commands/homesite/homesite-remove.js +1 -1
  51. package/dist/m365/spo/commands/web/{web-alert-list.js → web-rule-list.js} +7 -4
  52. package/dist/m365/spo/commands/web/{web-alert-remove.js → web-rule-remove.js} +7 -4
  53. package/dist/m365/spo/commands.js +2 -0
  54. package/dist/utils/powerPlatform.js +20 -0
  55. package/docs/docs/cmd/outlook/event/event-get.mdx +280 -0
  56. package/docs/docs/cmd/pp/website/website-remove.mdx +89 -0
  57. package/docs/docs/cmd/pp/website/website-webrole-list.mdx +139 -0
  58. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.mdx +21 -0
  59. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-get.mdx +19 -0
  60. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-list.mdx +19 -0
  61. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-remove.mdx +21 -0
  62. package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx +21 -0
  63. package/docs/docs/cmd/spo/cdn/cdn-get.mdx +19 -0
  64. package/docs/docs/cmd/spo/cdn/cdn-origin-add.mdx +21 -0
  65. package/docs/docs/cmd/spo/cdn/cdn-origin-list.mdx +19 -0
  66. package/docs/docs/cmd/spo/cdn/cdn-origin-remove.mdx +21 -0
  67. package/docs/docs/cmd/spo/cdn/cdn-policy-list.mdx +19 -0
  68. package/docs/docs/cmd/spo/cdn/cdn-policy-set.mdx +21 -0
  69. package/docs/docs/cmd/spo/cdn/cdn-set.mdx +21 -0
  70. package/docs/docs/cmd/spo/contenttype/contenttype-add.mdx +19 -0
  71. package/docs/docs/cmd/spo/contenttype/contenttype-get.mdx +19 -0
  72. package/docs/docs/cmd/spo/contenttype/contenttype-list.mdx +19 -0
  73. package/docs/docs/cmd/spo/contenttype/contenttype-remove.mdx +21 -0
  74. package/docs/docs/cmd/spo/contenttype/contenttype-set.mdx +21 -0
  75. package/docs/docs/cmd/spo/contenttype/contenttype-sync.mdx +19 -0
  76. package/docs/docs/cmd/spo/field/field-add.mdx +19 -0
  77. package/docs/docs/cmd/spo/field/field-get.mdx +19 -0
  78. package/docs/docs/cmd/spo/field/field-list.mdx +19 -0
  79. package/docs/docs/cmd/spo/field/field-remove.mdx +21 -0
  80. package/docs/docs/cmd/spo/field/field-set.mdx +21 -0
  81. package/docs/docs/cmd/spo/file/file-checkout-undo.mdx +21 -0
  82. package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +21 -0
  83. package/docs/docs/cmd/spo/file/file-retentionlabel-remove.mdx +21 -0
  84. package/docs/docs/cmd/spo/file/file-roleassignment-add.mdx +21 -0
  85. package/docs/docs/cmd/spo/file/file-roleassignment-remove.mdx +21 -0
  86. package/docs/docs/cmd/spo/file/file-roleinheritance-break.mdx +21 -0
  87. package/docs/docs/cmd/spo/file/file-roleinheritance-reset.mdx +21 -0
  88. package/docs/docs/cmd/spo/file/file-sharinginfo-get.mdx +19 -0
  89. package/docs/docs/cmd/spo/homesite/homesite-add.mdx +21 -2
  90. package/docs/docs/cmd/spo/homesite/homesite-get.mdx +19 -0
  91. package/docs/docs/cmd/spo/homesite/homesite-list.mdx +19 -0
  92. package/docs/docs/cmd/spo/homesite/homesite-remove.mdx +24 -3
  93. package/docs/docs/cmd/spo/homesite/homesite-set.mdx +21 -2
  94. package/docs/docs/cmd/spo/hubsite/hubsite-connect.mdx +21 -0
  95. package/docs/docs/cmd/spo/hubsite/hubsite-data-get.mdx +19 -0
  96. package/docs/docs/cmd/spo/hubsite/hubsite-disconnect.mdx +21 -0
  97. package/docs/docs/cmd/spo/hubsite/hubsite-get.mdx +19 -0
  98. package/docs/docs/cmd/spo/hubsite/hubsite-list.mdx +19 -0
  99. package/docs/docs/cmd/spo/hubsite/hubsite-register.mdx +19 -0
  100. package/docs/docs/cmd/spo/hubsite/hubsite-rights-grant.mdx +21 -0
  101. package/docs/docs/cmd/spo/hubsite/hubsite-rights-revoke.mdx +21 -0
  102. package/docs/docs/cmd/spo/hubsite/hubsite-set.mdx +19 -0
  103. package/docs/docs/cmd/spo/hubsite/hubsite-unregister.mdx +21 -0
  104. package/docs/docs/cmd/spo/web/{web-alert-list.mdx → web-rule-list.mdx} +13 -7
  105. package/docs/docs/cmd/spo/web/{web-alert-remove.mdx → web-rule-remove.mdx} +10 -4
  106. package/npm-shrinkwrap.json +1363 -650
  107. package/package.json +16 -16

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.