@pnp/cli-microsoft365 10.2.0-beta.818fb50 → 10.2.0-beta.99aaf1e

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.
@@ -0,0 +1,69 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # tenant people pronouns get
6
+
7
+ Retrieves information about pronouns settings for an organization
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 tenant people pronouns get [options]
13
+ ```
14
+
15
+ <Global />
16
+
17
+ ## Examples
18
+
19
+ Retrieve information about pronouns settings
20
+
21
+ ```sh
22
+ m365 tenant people pronouns get
23
+ ```
24
+
25
+ ## Response
26
+
27
+ <Tabs>
28
+ <TabItem value="JSON">
29
+
30
+ ```json
31
+ {
32
+ "isEnabledInOrganization": true
33
+ }
34
+ ```
35
+
36
+ </TabItem>
37
+ <TabItem value="Text">
38
+
39
+ ```text
40
+ isEnabledInOrganization: true
41
+ ```
42
+
43
+ </TabItem>
44
+ <TabItem value="CSV">
45
+
46
+ ```csv
47
+ isEnabledInOrganization
48
+ 1
49
+ ```
50
+
51
+ </TabItem>
52
+ <TabItem value="Markdown">
53
+
54
+ ```md
55
+ # tenant people pronouns get
56
+
57
+ Date: 12/5/2024
58
+
59
+ Property | Value
60
+ ---------|-------
61
+ isEnabledInOrganization | true
62
+ ```
63
+
64
+ </TabItem>
65
+ </Tabs>
66
+
67
+ ## More information
68
+
69
+ - https://learn.microsoft.com/graph/api/peopleadminsettings-list-pronouns
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "10.2.0-beta.818fb50",
3
+ "version": "10.2.0-beta.99aaf1e",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",