@pnp/cli-microsoft365 6.3.0-beta.655c566 → 6.3.0-beta.82f99fc

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 (55) hide show
  1. package/dist/cli/Cli.js +38 -0
  2. package/dist/m365/aad/commands/user/user-recyclebinitem-clear.js +103 -0
  3. package/dist/m365/aad/commands/user/user-recyclebinitem-remove.js +92 -0
  4. package/dist/m365/aad/commands.js +2 -0
  5. package/dist/m365/flow/commands/environment/FlowEnvironmentDetails.js +3 -0
  6. package/dist/m365/flow/commands/environment/environment-get.js +26 -11
  7. package/dist/m365/pa/commands/environment/environment-get.js +13 -5
  8. package/dist/m365/planner/commands/plan/plan-get.js +17 -10
  9. package/dist/m365/planner/commands/plan/plan-remove.js +1 -1
  10. package/dist/m365/planner/commands/roster/roster-member-remove.js +140 -0
  11. package/dist/m365/planner/commands.js +1 -0
  12. package/dist/m365/pp/commands/environment/environment-get.js +18 -9
  13. package/dist/m365/purview/commands/retentionevent/retentionevent-get.js +3 -4
  14. package/dist/m365/purview/commands/retentionevent/retentionevent-list.js +3 -4
  15. package/dist/m365/purview/commands/retentionevent/retentionevent-remove.js +97 -0
  16. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-get.js +5 -0
  17. package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-list.js +3 -4
  18. package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +5 -0
  19. package/dist/m365/purview/commands/retentionlabel/retentionlabel-get.js +5 -0
  20. package/dist/m365/purview/commands/retentionlabel/retentionlabel-list.js +5 -0
  21. package/dist/m365/purview/commands/retentionlabel/retentionlabel-remove.js +5 -0
  22. package/dist/m365/purview/commands/retentionlabel/retentionlabel-set.js +11 -1
  23. package/dist/m365/purview/commands.js +1 -0
  24. package/dist/m365/spo/commands/customaction/customaction-get.js +17 -66
  25. package/dist/m365/spo/commands/customaction/customaction-list.js +2 -36
  26. package/dist/m365/spo/commands/customaction/customaction-remove.js +11 -18
  27. package/dist/utils/aadUser.js +38 -0
  28. package/dist/utils/planner.js +1 -4
  29. package/dist/utils/spo.js +61 -0
  30. package/docs/docs/cmd/aad/user/user-recyclebinitem-clear.md +42 -0
  31. package/docs/docs/cmd/aad/user/user-recyclebinitem-remove.md +45 -0
  32. package/docs/docs/cmd/flow/environment/environment-get.md +31 -3
  33. package/docs/docs/cmd/login.md +26 -0
  34. package/docs/docs/cmd/logout.md +4 -0
  35. package/docs/docs/cmd/pa/environment/environment-get.md +8 -2
  36. package/docs/docs/cmd/planner/plan/plan-get.md +12 -12
  37. package/docs/docs/cmd/planner/roster/roster-member-remove.md +51 -0
  38. package/docs/docs/cmd/purview/retentionevent/retentionevent-list.md +1 -1
  39. package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.md +45 -0
  40. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.md +3 -0
  41. package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.md +1 -1
  42. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.md +3 -0
  43. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.md +3 -0
  44. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.md +3 -0
  45. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.md +3 -0
  46. package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.md +3 -0
  47. package/docs/docs/cmd/request.md +74 -0
  48. package/docs/docs/cmd/spo/list/list-contenttype-add.md +1 -1
  49. package/docs/docs/cmd/spo/list/list-contenttype-default-set.md +1 -1
  50. package/docs/docs/cmd/spo/list/list-contenttype-list.md +1 -1
  51. package/docs/docs/cmd/spo/list/list-contenttype-remove.md +1 -1
  52. package/docs/docs/cmd/status.md +46 -0
  53. package/docs/docs/cmd/version.md +26 -0
  54. package/npm-shrinkwrap.json +911 -876
  55. package/package.json +12 -12
@@ -23,3 +23,49 @@ Show the information about the current login to the Microsoft 365
23
23
  ```sh
24
24
  m365 status
25
25
  ```
26
+
27
+ ## Response
28
+
29
+ === "JSON"
30
+
31
+ ```json
32
+ {
33
+ "connectedAs": "john.doe@contoso.onmicrosoft.com",
34
+ "authType": "DeviceCode",
35
+ "appId": "31359c7f-bd7e-475c-86db-fdb8c937548e",
36
+ "appTenant": "common"
37
+ }
38
+ ```
39
+
40
+ === "Text"
41
+
42
+ ```text
43
+ appId : 31359c7f-bd7e-475c-86db-fdb8c937548e
44
+ appTenant : common
45
+ authType : DeviceCode
46
+ connectedAs: john.doe@contoso.onmicrosoft.com
47
+ ```
48
+
49
+ === "CSV"
50
+
51
+ ```csv
52
+ connectedAs,authType,appId,appTenant
53
+ john.doe@contoso.onmicrosoft.com,DeviceCode,31359c7f-bd7e-475c-86db-fdb8c937548e,common
54
+ ```
55
+
56
+ === "Markdown"
57
+
58
+ ```md
59
+ # status
60
+
61
+ Date: 7/2/2023
62
+
63
+
64
+
65
+ Property | Value
66
+ ---------|-------
67
+ connectedAs | john.doe@contoso.onmicrosoft.com
68
+ authType | DeviceCode
69
+ appId | 31359c7f-bd7e-475c-86db-fdb8c937548e
70
+ appTenant | common
71
+ ```
@@ -19,3 +19,29 @@ Show the version of CLI for Microsoft 365
19
19
  ```sh
20
20
  m365 version
21
21
  ```
22
+
23
+ ## Response
24
+
25
+ === "JSON"
26
+
27
+ ```json
28
+ v6.3.0
29
+ ```
30
+
31
+ === "Text"
32
+
33
+ ```text
34
+ v6.3.0
35
+ ```
36
+
37
+ === "CSV"
38
+
39
+ ```csv
40
+ v6.3.0
41
+ ```
42
+
43
+ === "Markdown"
44
+
45
+ ```md
46
+ v6.3.0
47
+ ```