@pnp/cli-microsoft365 10.8.0-beta.a51d886 → 10.8.0-beta.cdb5c81

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 (40) hide show
  1. package/.eslintrc.cjs +2 -1
  2. package/allCommands.json +1 -1
  3. package/allCommandsFull.json +1 -1
  4. package/dist/cli/cli.js +1 -1
  5. package/dist/config.js +1 -0
  6. package/dist/m365/adaptivecard/commands/adaptivecard-send.js +54 -67
  7. package/dist/m365/cli/commands/app/app-reconsent.js +103 -0
  8. package/dist/m365/cli/commands.js +1 -0
  9. package/dist/m365/entra/commands/organization/organization-list.js +51 -0
  10. package/dist/m365/entra/commands.js +1 -0
  11. package/dist/m365/graph/commands/openextension/openextension-set.js +107 -0
  12. package/dist/m365/graph/commands.js +1 -0
  13. package/dist/m365/spe/commands/container/container-add.js +85 -0
  14. package/dist/m365/spe/commands/container/container-list.js +2 -9
  15. package/dist/m365/spe/commands/container/container-recyclebinitem-list.js +62 -0
  16. package/dist/m365/spe/commands/container/container-remove.js +99 -0
  17. package/dist/m365/spe/commands/containertype/containertype-add.js +11 -11
  18. package/dist/m365/spe/commands/containertype/containertype-get.js +28 -32
  19. package/dist/m365/spe/commands/containertype/containertype-list.js +14 -4
  20. package/dist/m365/spe/commands/containertype/containertype-remove.js +81 -0
  21. package/dist/m365/spe/commands.js +5 -1
  22. package/dist/utils/entraServicePrincipal.js +11 -0
  23. package/dist/utils/formatting.js +12 -0
  24. package/dist/utils/spe.js +77 -0
  25. package/dist/utils/spo.js +0 -18
  26. package/dist/utils/zod.js +26 -1
  27. package/docs/docs/cmd/adaptivecard/adaptivecard-send.mdx +1 -1
  28. package/docs/docs/cmd/cli/app/app-reconsent.mdx +63 -0
  29. package/docs/docs/cmd/entra/organization/organization-list.mdx +154 -0
  30. package/docs/docs/cmd/graph/openextension/openextension-set.mdx +97 -0
  31. package/docs/docs/cmd/spe/container/container-activate.mdx +0 -2
  32. package/docs/docs/cmd/spe/container/container-add.mdx +128 -0
  33. package/docs/docs/cmd/spe/container/container-recyclebinitem-list.mdx +96 -0
  34. package/docs/docs/cmd/spe/container/container-remove.mdx +65 -0
  35. package/docs/docs/cmd/spe/containertype/containertype-add.mdx +9 -1
  36. package/docs/docs/cmd/spe/containertype/containertype-get.mdx +8 -0
  37. package/docs/docs/cmd/spe/containertype/containertype-list.mdx +8 -0
  38. package/docs/docs/cmd/spe/containertype/containertype-remove.mdx +52 -0
  39. package/package.json +1 -1
  40. package/dist/m365/spe/ContainerProperties.js +0 -2
@@ -0,0 +1,52 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+
3
+ # spe containertype remove
4
+
5
+ Remove a specific container type
6
+
7
+ ## Usage
8
+
9
+ ```sh
10
+ m365 spe containertype remove [options]
11
+ ```
12
+
13
+ ## Options
14
+
15
+ ```md definition-list
16
+ `-i, --id [id]`
17
+ : The ID of the container type. Specify either `id` or `name` but not both.
18
+
19
+ `-n, --name [name]`
20
+ : The container type name. Specify either `id` or `name` but not both.
21
+
22
+ `-f, --force`
23
+ : Force removal of the container type without confirmation.
24
+ ```
25
+
26
+ <Global />
27
+
28
+ ## Remarks
29
+
30
+ :::info
31
+
32
+ To use this command you must be either **SharePoint Administrator** or **Global Administrator**.
33
+
34
+ :::
35
+
36
+ ## Examples
37
+
38
+ Removes a container type by ID
39
+
40
+ ```sh
41
+ m365 spe containertype remove --id 4ec4aefd-4fa3-0e4a-20c3-6e68389e7138
42
+ ```
43
+
44
+ Removes a container type by name
45
+
46
+ ```sh
47
+ m365 spe containertype remove --name 'My container type'
48
+ ```
49
+
50
+ ## Response
51
+
52
+ The command won't return a response on success.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "10.8.0-beta.a51d886",
3
+ "version": "10.8.0-beta.cdb5c81",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=ContainerProperties.js.map