Skip to content

Commit 105d405

Browse files
Release v3.0.29 (#43)
Co-authored-by: Adam-it <[email protected]>
1 parent 9f5de9b commit 105d405

File tree

8 files changed

+113
-6
lines changed

8 files changed

+113
-6
lines changed

data/m365Model.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -845,6 +845,21 @@
845845
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/graph/changelog/changelog-list.mdx",
846846
"docs": "https://pnp.github.io/cli-microsoft365/cmd/graph/changelog/changelog-list"
847847
},
848+
{
849+
"name": "graph directoryextension add",
850+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/graph/directoryextension/directoryextension-add.mdx",
851+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/graph/directoryextension/directoryextension-add"
852+
},
853+
{
854+
"name": "graph directoryextension get",
855+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/graph/directoryextension/directoryextension-get.mdx",
856+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/graph/directoryextension/directoryextension-get"
857+
},
858+
{
859+
"name": "graph directoryextension remove",
860+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/graph/directoryextension/directoryextension-remove.mdx",
861+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/graph/directoryextension/directoryextension-remove"
862+
},
848863
{
849864
"name": "graph schemaextension add",
850865
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/graph/schemaextension/schemaextension-add.mdx",
@@ -2700,6 +2715,11 @@
27002715
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/spo/page/page-section-list.mdx",
27012716
"docs": "https://pnp.github.io/cli-microsoft365/cmd/spo/page/page-section-list"
27022717
},
2718+
{
2719+
"name": "spo page section remove",
2720+
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/spo/page/page-section-remove.mdx",
2721+
"docs": "https://pnp.github.io/cli-microsoft365/cmd/spo/page/page-section-remove"
2722+
},
27032723
{
27042724
"name": "spo page set",
27052725
"url": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/cmd/spo/page/page-set.mdx",

data/samples.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4333,6 +4333,32 @@
43334333
"createDate": "2024-08-14",
43344334
"source": "cli"
43354335
},
4336+
{
4337+
"title": "CLI - Check what users assigned to a specific role are allowed to do in a tenant",
4338+
"url": "https://pnp.github.io/cli-microsoft365/sample-scripts/entra/read-role-permissions",
4339+
"rawUrl": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/sample-scripts/entra/read-role-permissions/index.mdx",
4340+
"description": "This script can be used to review what users assigned to a specific role are allowed to do in a Microsoft 365 tenant",
4341+
"image": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/sample-scripts/entra/read-role-permissions/assets/preview.png",
4342+
"type": [
4343+
"powershell"
4344+
],
4345+
"tabTag": [
4346+
"```powershell"
4347+
],
4348+
"authors": [
4349+
{
4350+
"name": "Martin Macháček",
4351+
"pictureUrl": "https://avatars.githubusercontent.com/u/7744844?v=4"
4352+
}
4353+
],
4354+
"tags": [
4355+
"roles",
4356+
"role permissions",
4357+
"RBAC"
4358+
],
4359+
"createDate": "2025-02-20",
4360+
"source": "cli"
4361+
},
43364362
{
43374363
"title": "CLI - Replace a user's membership in selected Microsoft 365 Groups or Teams",
43384364
"url": "https://pnp.github.io/cli-microsoft365/sample-scripts/entra/replace-membership-of-selected-groups",
@@ -5986,6 +6012,31 @@
59866012
"createDate": "2020-09-06",
59876013
"source": "cli"
59886014
},
6015+
{
6016+
"title": "Remove SharePoint page header",
6017+
"url": "https://pnp.github.io/cli-microsoft365/sample-scripts/spo/remove-page-header",
6018+
"rawUrl": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/sample-scripts/spo/remove-page-header/index.mdx",
6019+
"description": "The script removes a page header from a SharePoint page.",
6020+
"image": "https://raw.githubusercontent.com/pnp/cli-microsoft365/main/docs/docs/sample-scripts/spo/remove-page-header/assets/preview.png",
6021+
"type": [
6022+
"powershell"
6023+
],
6024+
"tabTag": [
6025+
"```powershell"
6026+
],
6027+
"authors": [
6028+
{
6029+
"name": "Michał Kornet",
6030+
"pictureUrl": "https://avatars.githubusercontent.com/u/17220108?v=4"
6031+
}
6032+
],
6033+
"tags": [
6034+
"spo",
6035+
"page"
6036+
],
6037+
"createDate": "2025-03-04",
6038+
"source": "cli"
6039+
},
59896040
{
59906041
"title": "Remove pending SharePoint API permission requests",
59916042
"url": "https://pnp.github.io/cli-microsoft365/sample-scripts/spo/remove-pending-api-permission-requests",

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.28",
5+
"version": "3.0.29",
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
@@ -1529,6 +1529,33 @@
15291529
"m365 graph changelog list "
15301530
]
15311531
},
1532+
"graph directoryextension add": {
1533+
"description": "Creates a new directory extension",
1534+
"prefix": [
1535+
"m365 graph directoryextension add"
1536+
],
1537+
"body": [
1538+
"m365 graph directoryextension add --name $1 --dataType $2 --targetObjects $3"
1539+
]
1540+
},
1541+
"graph directoryextension get": {
1542+
"description": "Retrieves the definition of a directory extension",
1543+
"prefix": [
1544+
"m365 graph directoryextension get"
1545+
],
1546+
"body": [
1547+
"m365 graph directoryextension get "
1548+
]
1549+
},
1550+
"graph directoryextension remove": {
1551+
"description": "Removes a directory extension",
1552+
"prefix": [
1553+
"m365 graph directoryextension remove"
1554+
],
1555+
"body": [
1556+
"m365 graph directoryextension remove "
1557+
]
1558+
},
15321559
"graph schemaextension add": {
15331560
"description": "Creates a Microsoft Graph schema extension",
15341561
"prefix": [
@@ -4922,6 +4949,15 @@
49224949
"m365 spo page section list --webUrl $1 --pageName $2"
49234950
]
49244951
},
4952+
"spo page section remove": {
4953+
"description": "Removes the specified section from a modern page",
4954+
"prefix": [
4955+
"m365 spo page section remove"
4956+
],
4957+
"body": [
4958+
"m365 spo page section remove --webUrl $1 --pageName $2 --section $3"
4959+
]
4960+
},
49254961
"spo page set": {
49264962
"description": "Updates modern page properties",
49274963
"prefix": [

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)