@pnp/cli-microsoft365 6.0.0 → 6.1.0-beta.54cca1f
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.
- package/.eslintrc.js +2 -0
- package/dist/cli/Cli.js +48 -5
- package/dist/m365/planner/commands/plan/plan-set.js +305 -0
- package/dist/m365/planner/commands/tenant/tenant-settings-set.js +4 -7
- package/dist/m365/planner/commands.js +1 -0
- package/dist/m365/pp/commands/chatbot/chatbot-get.js +111 -0
- package/dist/m365/pp/commands/chatbot/chatbot-remove.js +131 -0
- package/dist/m365/pp/commands/dataverse/dataverse-table-row-list.js +95 -0
- package/dist/m365/pp/commands/solution/solution-publisher-add.js +101 -0
- package/dist/m365/pp/commands.js +4 -0
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-list.js +38 -0
- package/dist/m365/purview/commands.js +7 -0
- package/dist/m365/spfx/commands/project/project-doctor/doctor-1.16.1.js +23 -0
- package/dist/m365/spfx/commands/project/project-doctor.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006006_CFG_PS_features.js +63 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN015009_FILE_config_sass_json.js +14 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.14.0.js +2 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.16.1.js +59 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +2 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +15 -0
- package/dist/m365/spo/commands/contenttype/contenttype-set.js +78 -31
- package/dist/m365/spo/commands/file/file-get.js +5 -17
- package/dist/m365/spo/commands/folder/folder-get.js +1 -9
- package/dist/m365/spo/commands/listitem/listitem-get.js +4 -16
- package/dist/m365/spo/commands/listitem/listitem-list.js +2 -2
- package/dist/m365/spo/commands/listitem/listitem-set.js +7 -4
- package/dist/m365/spo/commands/navigation/navigation-node-add.js +5 -1
- package/dist/m365/spo/commands/roledefinition/roledefinition-list.js +2 -13
- package/dist/m365/spo/commands/web/web-get.js +5 -16
- package/dist/m365/teams/commands/meeting/meeting-attendancereport-list.js +121 -0
- package/dist/m365/teams/commands/user/user-app-list.js +1 -1
- package/dist/m365/teams/commands.js +1 -0
- package/dist/utils/formatting.js +37 -0
- package/docs/docs/cmd/cli/cli-consent.md +20 -0
- package/docs/docs/cmd/cli/cli-doctor.md +50 -0
- package/docs/docs/cmd/cli/cli-issue.md +20 -0
- package/docs/docs/cmd/cli/cli-reconsent.md +20 -0
- package/docs/docs/cmd/cli/completion/completion-clink-update.md +5 -1
- package/docs/docs/cmd/cli/completion/completion-pwsh-setup.md +5 -1
- package/docs/docs/cmd/cli/completion/completion-pwsh-update.md +5 -1
- package/docs/docs/cmd/cli/completion/completion-sh-setup.md +21 -1
- package/docs/docs/cmd/cli/completion/completion-sh-update.md +4 -0
- package/docs/docs/cmd/cli/config/config-get.md +22 -0
- package/docs/docs/cmd/cli/config/config-reset.md +4 -0
- package/docs/docs/cmd/cli/config/config-set.md +4 -0
- package/docs/docs/cmd/planner/plan/plan-set.md +144 -0
- package/docs/docs/cmd/pp/chatbot/chatbot-get.md +123 -0
- package/docs/docs/cmd/pp/chatbot/chatbot-remove.md +52 -0
- package/docs/docs/cmd/pp/dataverse/dataverse-table-row-list.md +90 -0
- package/docs/docs/cmd/pp/solution/solution-publisher-add.md +49 -0
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.md +81 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +4 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-get.md +38 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-list.md +38 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-remove.md +4 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/contenttype/contenttype-set.md +15 -1
- package/docs/docs/cmd/spo/navigation/navigation-node-add.md +6 -6
- package/docs/docs/cmd/teams/meeting/meeting-attendancereport-list.md +69 -0
- package/docs/docs/cmd/teams/user/user-app-list.md +6 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# pp dataverse table row list
|
|
2
|
+
|
|
3
|
+
Lists table rows for the given Dataverse table
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
pp dataverse table row list [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-e, --environment <environment>`
|
|
14
|
+
: The name of the environment
|
|
15
|
+
|
|
16
|
+
`--entitySetName [entitySetName]`
|
|
17
|
+
: The entity set name of the table. Specify either `entitySetName` or `tableName` but not both
|
|
18
|
+
|
|
19
|
+
`--tableName [tableName]`
|
|
20
|
+
: The name of the table. Specify either `entitySetName` or `tableName` but not both
|
|
21
|
+
|
|
22
|
+
`--asAdmin`
|
|
23
|
+
: Run the command as admin for environments you do not have explicitly assigned permissions to
|
|
24
|
+
|
|
25
|
+
--8<-- "docs/cmd/_global.md"
|
|
26
|
+
|
|
27
|
+
## Examples
|
|
28
|
+
|
|
29
|
+
List all table rows for the given environment based on the entity set name
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 pp dataverse table row list --environment "Default-2ca3eaa5-140f-4175-8261-3272edf9f339" --entitySetName "cr6c3_accounts"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
List all table rows for the given environment based on the table name
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 pp dataverse table row list --environment "Default-2ca3eaa5-140f-4175-8261-3272edf9f339" --tableName "cr6c3_account"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
List all table rows for the given environment based on the entity set name as Admin
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
m365 pp dataverse table row list --environment "Default-2ca3eaa5-140f-4175-8261-3272edf9f339" --entitySetName "cr6c3_accounts" --asAdmin
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Response
|
|
48
|
+
|
|
49
|
+
=== "JSON"
|
|
50
|
+
|
|
51
|
+
```json
|
|
52
|
+
[
|
|
53
|
+
{
|
|
54
|
+
"cr6c3_accountsid": "95c80273-3764-ed11-9561-000d3a4bbea4",
|
|
55
|
+
"_owningbusinessunit_value": "6da087c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
56
|
+
"statecode": 0,
|
|
57
|
+
"statuscode": 1,
|
|
58
|
+
"_createdby_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
59
|
+
"_ownerid_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
60
|
+
"modifiedon": "2022-11-14T16:14:45Z",
|
|
61
|
+
"_owninguser_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
62
|
+
"_modifiedby_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
63
|
+
"versionnumber": 1413873,
|
|
64
|
+
"createdon": "2022-11-14T16:14:45Z",
|
|
65
|
+
"cr6c3_name": "Column1 value",
|
|
66
|
+
"overriddencreatedon": null,
|
|
67
|
+
"importsequencenumber": null,
|
|
68
|
+
"_modifiedonbehalfby_value": null,
|
|
69
|
+
"utcconversiontimezonecode": null,
|
|
70
|
+
"_createdonbehalfby_value": null,
|
|
71
|
+
"_owningteam_value": null,
|
|
72
|
+
"timezoneruleversionnumber": null
|
|
73
|
+
}
|
|
74
|
+
]
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
=== "Text"
|
|
78
|
+
|
|
79
|
+
```text
|
|
80
|
+
cr6c3_accountsid _owningbusinessunit_value statecode statuscode _createdby_value _ownerid_value modifiedon _owninguser_value _modifiedby_value versionnumber createdon cr6c3_name overriddencreatedon importsequencenumber _modifiedonbehalfby_value utcconversiontimezonecode _createdonbehalfby_value _owningteam_value timezoneruleversionnumber
|
|
81
|
+
------------------------------------ ------------------------------------ --------- ---------- ------------------------------------ ------------------------------------ -------------------- ------------------------------------ ------------------------------------ ------------- -------------------- ---------- ------------------- -------------------- ------------------------- ------------------------- ------------------------ ----------------- -------------------------
|
|
82
|
+
95c80273-3764-ed11-9561-000d3a4bbea4 6da087c1-1c4d-ed11-bba1-000d3a2caf7f 0 1 5fa787c1-1c4d-ed11-bba1-000d3a2caf7f 5fa787c1-1c4d-ed11-bba1-000d3a2caf7f 2022-11-14T16:14:45Z 5fa787c1-1c4d-ed11-bba1-000d3a2caf7f 5fa787c1-1c4d-ed11-bba1-000d3a2caf7f 1413873 2022-11-14T16:14:45Z Column1 value null null null null null null null
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
=== "CSV"
|
|
86
|
+
|
|
87
|
+
```csv
|
|
88
|
+
cr6c3_accountsid,_owningbusinessunit_value,statecode,statuscode,_createdby_value,_ownerid_value,modifiedon,_owninguser_value,_modifiedby_value,versionnumber,createdon,cr6c3_name,overriddencreatedon,importsequencenumber,_modifiedonbehalfby_value,utcconversiontimezonecode,_createdonbehalfby_value,_owningteam_value,timezoneruleversionnumber
|
|
89
|
+
95c80273-3764-ed11-9561-000d3a4bbea4,6da087c1-1c4d-ed11-bba1-000d3a2caf7f,0,1,5fa787c1-1c4d-ed11-bba1-000d3a2caf7f,5fa787c1-1c4d-ed11-bba1-000d3a2caf7f,2022-11-14T16:14:45Z,5fa787c1-1c4d-ed11-bba1-000d3a2caf7f,5fa787c1-1c4d-ed11-bba1-000d3a2caf7f,1413873,2022-11-14T16:14:45Z,Column1 value,,,,,,,
|
|
90
|
+
```
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# pp solution publisher add
|
|
2
|
+
|
|
3
|
+
Adds a specified publisher in a given environment
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 pp solution publisher add [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-e, --environment <environment>`
|
|
14
|
+
: The name of the environment.
|
|
15
|
+
|
|
16
|
+
`-n, --name <name>`
|
|
17
|
+
: The unique name of the publisher.
|
|
18
|
+
|
|
19
|
+
`--displayName <displayName>`
|
|
20
|
+
: The friendly name of the publisher.
|
|
21
|
+
|
|
22
|
+
`--prefix <prefix>`
|
|
23
|
+
: The prefix of the publisher.
|
|
24
|
+
|
|
25
|
+
`--choiceValuePrefix <choiceValuePrefix>`
|
|
26
|
+
: The choice value prefix of the publisher.
|
|
27
|
+
|
|
28
|
+
`--asAdmin`
|
|
29
|
+
: Run the command as admin for environments you do not have explicitly assigned permissions to.
|
|
30
|
+
|
|
31
|
+
--8<-- "docs/cmd/_global.md"
|
|
32
|
+
|
|
33
|
+
## Examples
|
|
34
|
+
|
|
35
|
+
Add a specific publisher in a specific environment
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 pp solution publisher add --environment "Default-d87a7535-dd31-4437-bfe1-95340acd55c5" --name "Contoso" --displayName "Contoso" --prefix "new" --choiceValuePrefix 10000
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Adds a specific publisher in a specific environment as Admin
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
m365 pp solution publisher add --environment "Default-d87a7535-dd31-4437-bfe1-95340acd55c5" --name "Contoso" --displayName "Contoso" --prefix "new" --choiceValuePrefix 10000 --asAdmin
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Response
|
|
48
|
+
|
|
49
|
+
The command won't return a response on success.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# purview retentionlabel list
|
|
2
|
+
|
|
3
|
+
Get a list of retention labels
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 purview retentionlabel list [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
--8<-- "docs/cmd/_global.md"
|
|
14
|
+
|
|
15
|
+
## Examples
|
|
16
|
+
|
|
17
|
+
Get a list of retention labels
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
m365 purview retentionlabel list
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Remarks
|
|
24
|
+
|
|
25
|
+
!!! attention
|
|
26
|
+
This command is based on a Microsoft Graph API that is currently in preview and is subject to change once the API reached general availability.
|
|
27
|
+
|
|
28
|
+
## Response
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
=== "JSON"
|
|
32
|
+
|
|
33
|
+
```json
|
|
34
|
+
[
|
|
35
|
+
{
|
|
36
|
+
"displayName": "Some label",
|
|
37
|
+
"descriptionForAdmins": "",
|
|
38
|
+
"descriptionForUsers": null,
|
|
39
|
+
"isInUse": true,
|
|
40
|
+
"retentionTrigger": "dateCreated",
|
|
41
|
+
"behaviorDuringRetentionPeriod": "retainAsRecord",
|
|
42
|
+
"actionAfterRetentionPeriod": "delete",
|
|
43
|
+
"createdDateTime": "2022-11-03T10:28:15Z",
|
|
44
|
+
"lastModifiedDateTime": "2022-11-03T10:28:15Z",
|
|
45
|
+
"labelToBeApplied": null,
|
|
46
|
+
"defaultRecordBehavior": "startLocked",
|
|
47
|
+
"id": "dc67203a-6cca-4066-b501-903401308f98",
|
|
48
|
+
"retentionDuration": {
|
|
49
|
+
"days": 365
|
|
50
|
+
},
|
|
51
|
+
"createdBy": {
|
|
52
|
+
"user": {
|
|
53
|
+
"id": "b52ffd35-d6fe-4b70-86d8-91cc01d76333",
|
|
54
|
+
"displayName": null
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"lastModifiedBy": {
|
|
58
|
+
"user": {
|
|
59
|
+
"id": "b52ffd35-d6fe-4b70-86d8-91cc01d76333",
|
|
60
|
+
"displayName": null
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"dispositionReviewStages": []
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
=== "Text"
|
|
69
|
+
|
|
70
|
+
```text
|
|
71
|
+
id displayName isInUse
|
|
72
|
+
------------------------------------ -------------- --------
|
|
73
|
+
dc67203a-6cca-4066-b501-903401308f98 Some label true
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
=== "CSV"
|
|
77
|
+
|
|
78
|
+
```csv
|
|
79
|
+
id,displayName,isInUse
|
|
80
|
+
dc67203a-6cca-4066-b501-903401308f98,Some label,true
|
|
81
|
+
```
|
|
@@ -41,3 +41,7 @@ Adds a new external connection with a limited number of authorized apps
|
|
|
41
41
|
```sh
|
|
42
42
|
m365 search externalconnection add --id MyApp --name "Test" --description "Test" --authorizedAppIds "00000000-0000-0000-0000-000000000000,00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002"
|
|
43
43
|
```
|
|
44
|
+
|
|
45
|
+
## Response
|
|
46
|
+
|
|
47
|
+
The command won't return a response on success.
|
|
@@ -31,3 +31,41 @@ Get the External Connection by its name
|
|
|
31
31
|
```sh
|
|
32
32
|
m365 search externalconnection get --name "Test"
|
|
33
33
|
```
|
|
34
|
+
|
|
35
|
+
## Response
|
|
36
|
+
|
|
37
|
+
=== "JSON"
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
{
|
|
41
|
+
"id": "CLITest",
|
|
42
|
+
"name": "CLI-Test",
|
|
43
|
+
"description": "CLI Test",
|
|
44
|
+
"state": "draft",
|
|
45
|
+
"configuration": {
|
|
46
|
+
"authorizedApps": [
|
|
47
|
+
"31359c7f-bd7e-475c-86db-fdb8c937548e"
|
|
48
|
+
],
|
|
49
|
+
"authorizedAppIds": [
|
|
50
|
+
"31359c7f-bd7e-475c-86db-fdb8c937548e"
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
=== "Text"
|
|
57
|
+
|
|
58
|
+
```text
|
|
59
|
+
configuration: {"authorizedApps":["31359c7f-bd7e-475c-86db-fdb8c937548e"],"authorizedAppIds":["31359c7f-bd7e-475c-86db-fdb8c937548e"]}
|
|
60
|
+
description : CLI Test
|
|
61
|
+
id : CLITest
|
|
62
|
+
name : CLI-Test
|
|
63
|
+
state : draft
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
=== "CSV"
|
|
67
|
+
|
|
68
|
+
```csv
|
|
69
|
+
id,name,description,state,configuration
|
|
70
|
+
CLITest,CLI-Test,CLI Test,draft,"{""authorizedApps"":[""31359c7f-bd7e-475c-86db-fdb8c937548e""],""authorizedAppIds"":[""31359c7f-bd7e-475c-86db-fdb8c937548e""]}"
|
|
71
|
+
```
|
|
@@ -19,3 +19,41 @@ List external connections defined in Microsoft Search
|
|
|
19
19
|
```sh
|
|
20
20
|
m365 search externalconnection list
|
|
21
21
|
```
|
|
22
|
+
|
|
23
|
+
## Response
|
|
24
|
+
|
|
25
|
+
=== "JSON"
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
[
|
|
29
|
+
{
|
|
30
|
+
"id": "CLITest",
|
|
31
|
+
"name": "CLI-Test",
|
|
32
|
+
"description": "CLI Test",
|
|
33
|
+
"state": "draft",
|
|
34
|
+
"configuration": {
|
|
35
|
+
"authorizedApps": [
|
|
36
|
+
"31359c7f-bd7e-475c-86db-fdb8c937548e"
|
|
37
|
+
],
|
|
38
|
+
"authorizedAppIds": [
|
|
39
|
+
"31359c7f-bd7e-475c-86db-fdb8c937548e"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
=== "Text"
|
|
47
|
+
|
|
48
|
+
```text
|
|
49
|
+
id name state
|
|
50
|
+
------- -------- -----
|
|
51
|
+
CLITest CLI-Test draft
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
=== "CSV"
|
|
55
|
+
|
|
56
|
+
```csv
|
|
57
|
+
id,name,state
|
|
58
|
+
CLITest,CLI-Test,draft
|
|
59
|
+
```
|
|
@@ -32,7 +32,7 @@ m365 spfx project upgrade [options]
|
|
|
32
32
|
|
|
33
33
|
## Remarks
|
|
34
34
|
|
|
35
|
-
The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.16.
|
|
35
|
+
The `spfx project upgrade` command helps you upgrade your SharePoint Framework project to the specified version. If no version is specified, the command will upgrade to the latest version of the SharePoint Framework it supports (v1.16.1).
|
|
36
36
|
|
|
37
37
|
This command doesn't change your project files. Instead, it gives you a report with all steps necessary to upgrade your project to the specified version of the SharePoint Framework. Changing project files is error-prone, especially when it comes to updating your solution's code. This is why at this moment, this command produces a report that you can use yourself to perform the necessary updates and verify that everything is working as expected.
|
|
38
38
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# spo contenttype set
|
|
2
2
|
|
|
3
|
-
Update existing content type
|
|
3
|
+
Update an existing content type
|
|
4
4
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
@@ -28,8 +28,16 @@ m365 spo contenttype set [options]
|
|
|
28
28
|
`--listUrl [listUrl]`
|
|
29
29
|
: URL of the list if you want to update a list content type. Specify either `listTitle`, `listId` or `listUrl`.
|
|
30
30
|
|
|
31
|
+
`--updateChildren`
|
|
32
|
+
: Specify if you want to push updates to child content types.
|
|
33
|
+
|
|
31
34
|
--8<-- "docs/cmd/_global.md"
|
|
32
35
|
|
|
36
|
+
## Remarks
|
|
37
|
+
|
|
38
|
+
!!! important "Updating child content types"
|
|
39
|
+
When specifying the `--updateChildren` flag, SharePoint will only propagate the changes that are made in the current request. If you want to know more about updating a content type and propagating changes to child content types, be sure to [read more here](https://learn.microsoft.com/en-us/previous-versions/office/developer/sharepoint-2010/ms442695(v=office.14)#considerations-when-updating-child-content-types).
|
|
40
|
+
|
|
33
41
|
## Examples
|
|
34
42
|
|
|
35
43
|
Move site content type to a different group
|
|
@@ -43,3 +51,9 @@ Rename list content type
|
|
|
43
51
|
```sh
|
|
44
52
|
m365 spo contenttype set --name "My old item" --webUrl https://contoso.sharepoint.com --listTitle "My list" --Name "My item"
|
|
45
53
|
```
|
|
54
|
+
|
|
55
|
+
Configure a form customizer with manifest ID _19890cce-15d8-4af9-bfcb-72da06d13ed8_ on a site content type and push changes to child content types.
|
|
56
|
+
|
|
57
|
+
```sh
|
|
58
|
+
m365 spo contenttype set --name "My content type" --webUrl https://contoso.sharepoint.com --DisplayFormClientSideComponentId "19890cce-15d8-4af9-bfcb-72da06d13ed8" --EditFormClientSideComponentId "19890cce-15d8-4af9-bfcb-72da06d13ed8" --NewFormClientSideComponentId "19890cce-15d8-4af9-bfcb-72da06d13ed8" --updateChildren
|
|
59
|
+
```
|
|
@@ -11,22 +11,22 @@ m365 spo navigation node add [options]
|
|
|
11
11
|
## Options
|
|
12
12
|
|
|
13
13
|
`-u, --webUrl <webUrl>`
|
|
14
|
-
: Absolute URL of the site to which navigation should be modified
|
|
14
|
+
: Absolute URL of the site to which navigation should be modified.
|
|
15
15
|
|
|
16
16
|
`-l, --location [location]`
|
|
17
|
-
: Navigation type where the node should be added. Available options: `QuickLaunch`, `TopNavigationBar`
|
|
17
|
+
: Navigation type where the node should be added. Available options: `QuickLaunch`, `TopNavigationBar`. Specify either `location` or `parentNodeId` but not both.
|
|
18
18
|
|
|
19
19
|
`-t, --title <title>`
|
|
20
|
-
: Navigation node title
|
|
20
|
+
: Navigation node title.
|
|
21
21
|
|
|
22
22
|
`--url <url>`
|
|
23
|
-
: Navigation node URL
|
|
23
|
+
: Navigation node URL.
|
|
24
24
|
|
|
25
25
|
`--parentNodeId [parentNodeId]`
|
|
26
|
-
: ID of the node below which the node should be added
|
|
26
|
+
: ID of the node below which the node should be added. Specify either `location` or `parentNodeId` but not both.
|
|
27
27
|
|
|
28
28
|
`--isExternal`
|
|
29
|
-
: Set, if the navigation node points to an external URL
|
|
29
|
+
: Set, if the navigation node points to an external URL.
|
|
30
30
|
|
|
31
31
|
--8<-- "docs/cmd/_global.md"
|
|
32
32
|
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# teams meeting attendancereport list
|
|
2
|
+
|
|
3
|
+
Lists all attendance reports for a given meeting
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 teams meeting attendancereport list [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-u, --userId [userId]`
|
|
14
|
+
: The id of the user, omit to list attendance reports for current signed in user. Use either `id`, `userName` or `email`, but not multiple.
|
|
15
|
+
|
|
16
|
+
`-n, --userName [userName]`
|
|
17
|
+
: The name of the user, omit to list attendance reports for current signed in user. Use either `id`, `userName` or `email`, but not multiple.
|
|
18
|
+
|
|
19
|
+
`--email [email]`
|
|
20
|
+
: The email of the user, omit to list attendance reports for current signed in user. Use either `id`, `userName` or `email`, but not multiple.
|
|
21
|
+
|
|
22
|
+
`-m, --meetingId <meetingId>`
|
|
23
|
+
: The Id of the meeting.
|
|
24
|
+
|
|
25
|
+
--8<-- "docs/cmd/_global.md"
|
|
26
|
+
|
|
27
|
+
## Examples
|
|
28
|
+
|
|
29
|
+
Lists all attendance reports made for the current signed in user and Microsoft Teams meeting with given id
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 teams meeting attendancereport list --meetingId MSo4NmY0MWZhMi1kYjUxLTQyMTUtYjE3Zi1lYzY3NGQ2MjQzNjYqMCoqMTk6bWVldGluZ19OamMwWW1Zd05UVXROMlJoTlMwME0yRmhMV0V6T1RndE9HVmxNbVl4TkdVd05tUTNAdGhyZWFkLnYy
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Lists all attendance reports made for the garthf@contoso.com and Microsoft Teams meeting with given id
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 teams meeting attendancereport list --userName garthf@contoso.com --meetingId MSo4NmY0MWZhMi1kYjUxLTQyMTUtYjE3Zi1lYzY3NGQ2MjQzNjYqMCoqMTk6bWVldGluZ19OamMwWW1Zd05UVXROMlJoTlMwME0yRmhMV0V6T1RndE9HVmxNbVl4TkdVd05tUTNAdGhyZWFkLnYy
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Response
|
|
42
|
+
|
|
43
|
+
=== "JSON"
|
|
44
|
+
|
|
45
|
+
```json
|
|
46
|
+
[
|
|
47
|
+
{
|
|
48
|
+
"id": "ae6ddf54-5d48-4448-a7a9-780eee17fa13",
|
|
49
|
+
"totalParticipantCount": 6,
|
|
50
|
+
"meetingStartDateTime": "2022-11-22T22:46:46.981Z",
|
|
51
|
+
"meetingEndDateTime": "2022-11-22T22:47:07.703Z"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
=== "Text"
|
|
57
|
+
|
|
58
|
+
```text
|
|
59
|
+
id totalParticipantCount
|
|
60
|
+
------------------------------------ ---------------------
|
|
61
|
+
ae6ddf54-5d48-4448-a7a9-780eee17fa13 6
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
=== "CSV"
|
|
65
|
+
|
|
66
|
+
```csv
|
|
67
|
+
id,totalParticipantCount
|
|
68
|
+
ae6ddf54-5d48-4448-a7a9-780eee17fa13,6
|
|
69
|
+
```
|
|
@@ -51,6 +51,12 @@ m365 teams user app list --userName admin@contoso.com
|
|
|
51
51
|
"lastModifiedDateTime": null,
|
|
52
52
|
"createdBy": null
|
|
53
53
|
},
|
|
54
|
+
"teamsApp": {
|
|
55
|
+
"id": "14d6962d-6eeb-4f48-8890-de55454bb136",
|
|
56
|
+
"externalId": null,
|
|
57
|
+
"displayName": "Activity",
|
|
58
|
+
"distributionMethod": "store"
|
|
59
|
+
},
|
|
54
60
|
"appId": "14d6962d-6eeb-4f48-8890-de55454bb136"
|
|
55
61
|
}
|
|
56
62
|
]
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@pnp/cli-microsoft365",
|
|
9
|
-
"version": "6.
|
|
9
|
+
"version": "6.1.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@azure/msal-node": "^1.14.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.1.0-beta.54cca1f",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -269,4 +269,4 @@
|
|
|
269
269
|
"sinon": "^14.0.1",
|
|
270
270
|
"source-map-support": "^0.5.21"
|
|
271
271
|
}
|
|
272
|
-
}
|
|
272
|
+
}
|