@pnp/cli-microsoft365 10.8.0-beta.708bf27 → 10.8.0-beta.a1c69a6

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 (68) hide show
  1. package/.eslintrc.cjs +2 -1
  2. package/README.md +3 -1
  3. package/allCommands.json +1 -1
  4. package/allCommandsFull.json +1 -1
  5. package/dist/Auth.js +82 -22
  6. package/dist/cli/cli.js +1 -1
  7. package/dist/config.js +1 -0
  8. package/dist/m365/adaptivecard/commands/adaptivecard-send.js +54 -67
  9. package/dist/m365/app/commands/app-get.js +5 -2
  10. package/dist/m365/app/commands/app-open.js +9 -22
  11. package/dist/m365/app/commands/permission/permission-add.js +18 -30
  12. package/dist/m365/app/commands/permission/permission-list.js +5 -2
  13. package/dist/m365/base/AppCommand.js +9 -25
  14. package/dist/m365/booking/commands/business/business-get.js +18 -25
  15. package/dist/m365/cli/commands/app/app-reconsent.js +103 -0
  16. package/dist/m365/cli/commands.js +1 -0
  17. package/dist/m365/commands/login.js +1 -1
  18. package/dist/m365/commands/setup.js +1 -2
  19. package/dist/m365/context/commands/context-remove.js +12 -25
  20. package/dist/m365/context/commands/option/option-remove.js +11 -25
  21. package/dist/m365/entra/commands/organization/organization-list.js +51 -0
  22. package/dist/m365/entra/commands.js +1 -0
  23. package/dist/m365/graph/commands/directoryextension/directoryextension-list.js +74 -0
  24. package/dist/m365/graph/commands/openextension/openextension-set.js +107 -0
  25. package/dist/m365/graph/commands.js +2 -0
  26. package/dist/m365/spe/commands/container/container-add.js +85 -0
  27. package/dist/m365/spe/commands/container/container-list.js +2 -9
  28. package/dist/m365/spe/commands/container/container-permission-list.js +52 -0
  29. package/dist/m365/spe/commands/container/container-recyclebinitem-list.js +62 -0
  30. package/dist/m365/spe/commands/container/container-remove.js +99 -0
  31. package/dist/m365/spe/commands/containertype/containertype-add.js +11 -11
  32. package/dist/m365/spe/commands/containertype/containertype-get.js +28 -32
  33. package/dist/m365/spe/commands/containertype/containertype-list.js +14 -4
  34. package/dist/m365/spe/commands/containertype/containertype-remove.js +81 -0
  35. package/dist/m365/spe/commands.js +6 -1
  36. package/dist/m365/spo/commands/list/list-get.js +12 -6
  37. package/dist/m365/spo/commands/page/page-section-add.js +20 -23
  38. package/dist/m365/spp/commands/model/model-apply.js +130 -0
  39. package/dist/m365/spp/commands/model/model-get.js +7 -24
  40. package/dist/m365/spp/commands/model/model-list.js +1 -1
  41. package/dist/m365/spp/commands/model/model-remove.js +1 -1
  42. package/dist/m365/spp/commands.js +1 -0
  43. package/dist/utils/entraServicePrincipal.js +11 -0
  44. package/dist/utils/formatting.js +12 -0
  45. package/dist/utils/spe.js +77 -0
  46. package/dist/utils/spo.js +0 -18
  47. package/dist/utils/spp.js +59 -1
  48. package/dist/utils/zod.js +26 -1
  49. package/docs/docs/cmd/adaptivecard/adaptivecard-send.mdx +1 -1
  50. package/docs/docs/cmd/cli/app/app-reconsent.mdx +63 -0
  51. package/docs/docs/cmd/entra/organization/organization-list.mdx +154 -0
  52. package/docs/docs/cmd/graph/directoryextension/directoryextension-list.mdx +135 -0
  53. package/docs/docs/cmd/graph/openextension/openextension-set.mdx +97 -0
  54. package/docs/docs/cmd/spe/container/container-activate.mdx +0 -2
  55. package/docs/docs/cmd/spe/container/container-add.mdx +128 -0
  56. package/docs/docs/cmd/spe/container/container-permission-list.mdx +90 -0
  57. package/docs/docs/cmd/spe/container/container-recyclebinitem-list.mdx +96 -0
  58. package/docs/docs/cmd/spe/container/container-remove.mdx +65 -0
  59. package/docs/docs/cmd/spe/containertype/containertype-add.mdx +9 -1
  60. package/docs/docs/cmd/spe/containertype/containertype-get.mdx +8 -0
  61. package/docs/docs/cmd/spe/containertype/containertype-list.mdx +8 -0
  62. package/docs/docs/cmd/spe/containertype/containertype-remove.mdx +52 -0
  63. package/docs/docs/cmd/spo/field/field-get.mdx +0 -1
  64. package/docs/docs/cmd/spo/list/list-get.mdx +12 -3
  65. package/docs/docs/cmd/spp/model/model-apply.mdx +79 -0
  66. package/npm-shrinkwrap.json +894 -477
  67. package/package.json +11 -11
  68. package/dist/m365/spe/ContainerProperties.js +0 -2
package/.eslintrc.cjs CHANGED
@@ -25,7 +25,7 @@ const dictionary = [
25
25
  'comm',
26
26
  'command',
27
27
  'community',
28
- 'containertype',
28
+ 'container',
29
29
  'content',
30
30
  'conversation',
31
31
  'custom',
@@ -83,6 +83,7 @@ const dictionary = [
83
83
  'open',
84
84
  'ops',
85
85
  'org',
86
+ 'organization',
86
87
  'owner',
87
88
  'permission',
88
89
  'pim',
package/README.md CHANGED
@@ -93,14 +93,16 @@
93
93
  - Power Apps
94
94
  - Power Platform
95
95
  - Purview
96
- - Skype for Business
96
+ - SharePoint Embedded
97
97
  - SharePoint Online
98
+ - SharePoint Premium
98
99
  - To Do
99
100
  - Supported authentication methods
100
101
  - Azure Managed Identity
101
102
  - Certificate
102
103
  - Client Secret
103
104
  - Device Code
105
+ - Federated identity
104
106
  - Username and Password
105
107
  - Manage your SharePoint Framework projects
106
108
  - Upgrade your projects