Skip to content

Commit 37276ea

Browse files
Release v3.0.24 (#36)
Co-authored-by: Adam-it <[email protected]>
1 parent 18252de commit 37276ea

File tree

7 files changed

+62
-6
lines changed

7 files changed

+62
-6
lines changed

data/m365Model.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,11 @@
535535
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/entra/policy/policy-list.mdx",
536536
"docs": "https://pnp.github.io/cli-microsoft365/cmd/entra/policy/policy-list"
537537
},
538+
{
539+
"name": "entra roledefinition add",
540+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/entra/roledefinition/roledefinition-add.mdx",
541+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/entra/roledefinition/roledefinition-add"
542+
},
538543
{
539544
"name": "entra roledefinition get",
540545
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/entra/roledefinition/roledefinition-get.mdx",
@@ -550,6 +555,11 @@
550555
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/entra/roledefinition/roledefinition-remove.mdx",
551556
"docs": "https://pnp.github.io/cli-microsoft365/cmd/entra/roledefinition/roledefinition-remove"
552557
},
558+
{
559+
"name": "entra roledefinition set",
560+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/entra/roledefinition/roledefinition-set.mdx",
561+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/entra/roledefinition/roledefinition-set"
562+
},
553563
{
554564
"name": "entra siteclassification disable",
555565
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/entra/siteclassification/siteclassification-disable.mdx",
@@ -910,6 +920,11 @@
910920
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/outlook/mail/mail-send.mdx",
911921
"docs": "https://pnp.github.io/cli-microsoft365/cmd/outlook/mail/mail-send"
912922
},
923+
{
924+
"name": "outlook mailbox settings set",
925+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/outlook/mailbox/mailbox-settings-set.mdx",
926+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/outlook/mailbox/mailbox-settings-set"
927+
},
913928
{
914929
"name": "outlook message get",
915930
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/outlook/message/message-get.mdx",
@@ -3740,6 +3755,11 @@
37403755
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/tenant/people/people-pronouns-get.mdx",
37413756
"docs": "https://pnp.github.io/cli-microsoft365/cmd/tenant/people/people-pronouns-get"
37423757
},
3758+
{
3759+
"name": "tenant people pronouns set",
3760+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/tenant/people/people-pronouns-set.mdx",
3761+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/tenant/people/people-pronouns-set"
3762+
},
37433763
{
37443764
"name": "tenant report activeusercounts",
37453765
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/tenant/report/report-activeusercounts.mdx",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cli-for-microsoft-365-extension",
33
"displayName": "CLI for Microsoft 365 extension",
44
"description": "This extension provides functionalities that may be helpful when creating scripts using CLI for Microsoft 365 like docs, commands list, sample gallery and many more.",
5-
"version": "3.0.23",
5+
"version": "3.0.24",
66
"publisher": "adamwojcikit",
77
"author": {
88
"name": "Adam"

snippets/cliForMicrosoft365.code-snippets

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -971,6 +971,15 @@
971971
"m365 entra policy list"
972972
]
973973
},
974+
"entra roledefinition add": {
975+
"body": [
976+
"m365 entra roledefinition add --displayName $1 --allowedResourceActions $2"
977+
],
978+
"description": "Creates a custom Microsoft Entra ID role definition",
979+
"prefix": [
980+
"m365 entra roledefinition add"
981+
]
982+
},
974983
"entra roledefinition get": {
975984
"body": [
976985
"m365 entra roledefinition get "
@@ -998,6 +1007,15 @@
9981007
"m365 entra roledefinition remove"
9991008
]
10001009
},
1010+
"entra roledefinition set": {
1011+
"body": [
1012+
"m365 entra roledefinition set "
1013+
],
1014+
"description": "Updates a custom Microsoft Entra ID role definition",
1015+
"prefix": [
1016+
"m365 entra roledefinition set"
1017+
]
1018+
},
10011019
"entra siteclassification disable": {
10021020
"body": [
10031021
"m365 entra siteclassification disable "
@@ -1664,6 +1682,15 @@
16641682
"m365 outlook mail send"
16651683
]
16661684
},
1685+
"outlook mailbox settings set": {
1686+
"body": [
1687+
"m365 outlook mailbox settings set "
1688+
],
1689+
"description": "Updates user mailbox settings",
1690+
"prefix": [
1691+
"m365 outlook mailbox settings set"
1692+
]
1693+
},
16671694
"outlook message get": {
16681695
"body": [
16691696
"m365 outlook message get --id $1"
@@ -6794,6 +6821,15 @@
67946821
"m365 tenant people pronouns get"
67956822
]
67966823
},
6824+
"tenant people pronouns set": {
6825+
"body": [
6826+
"m365 tenant people pronouns set --enabled $1"
6827+
],
6828+
"description": "Manage pronouns settings for an organization",
6829+
"prefix": [
6830+
"m365 tenant people pronouns set"
6831+
]
6832+
},
67976833
"tenant report activeusercounts": {
67986834
"body": [
67996835
"m365 tenant report activeusercounts --period $1"

webview-ui/commandsList/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/docsView/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/samplesView/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)