@pnp/cli-microsoft365 6.1.0-beta.825554 → 6.1.0-beta.f03db2d
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/tenant/tenant-settings-set.js +4 -7
- 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/listitem/listitem-list.js +2 -2
- 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 +25 -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/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/teams/meeting/meeting-attendancereport-list.md +69 -0
- package/docs/docs/cmd/teams/user/user-app-list.md +6 -0
- package/package.json +1 -1
|
@@ -29,6 +29,28 @@ Get the output configured for CLI for Microsoft 365
|
|
|
29
29
|
m365 cli config get --key output
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
## Response
|
|
33
|
+
|
|
34
|
+
When retrieving the `output` key, responses will look like this:
|
|
35
|
+
|
|
36
|
+
=== "JSON"
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
"json"
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
=== "Text"
|
|
43
|
+
|
|
44
|
+
```text
|
|
45
|
+
json
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
=== "CSV"
|
|
49
|
+
|
|
50
|
+
```csv
|
|
51
|
+
json
|
|
52
|
+
```
|
|
53
|
+
|
|
32
54
|
## More information
|
|
33
55
|
|
|
34
56
|
- [Configuring the CLI for Microsoft 365](../../../user-guide/configuring-cli.md)
|
|
@@ -31,6 +31,10 @@ Reset all configuration settings to default
|
|
|
31
31
|
m365 cli config reset
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
## Response
|
|
35
|
+
|
|
36
|
+
The command won't return a response on success.
|
|
37
|
+
|
|
34
38
|
## More information
|
|
35
39
|
|
|
36
40
|
- [Configuring the CLI for Microsoft 365](../../../user-guide/configuring-cli.md)
|
|
@@ -34,6 +34,10 @@ Configure the default CLI output to JSON
|
|
|
34
34
|
m365 cli config set --key output --value json
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
## Response
|
|
38
|
+
|
|
39
|
+
The command won't return a response on success.
|
|
40
|
+
|
|
37
41
|
## More information
|
|
38
42
|
|
|
39
43
|
- [Configuring the CLI for Microsoft 365](../../../user-guide/configuring-cli.md)
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
# pp chatbot get
|
|
2
|
+
|
|
3
|
+
Get information about the specified chatbot
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
pp chatbot get [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-e, --environment <environment>`
|
|
14
|
+
: The name of the environment.
|
|
15
|
+
|
|
16
|
+
`-i, --id [id]`
|
|
17
|
+
: The id of the chatbot. Specify either `id` or `name` but not both.
|
|
18
|
+
|
|
19
|
+
`-n, --name [name]`
|
|
20
|
+
: The name of the chatbot. Specify either `id` or `name` 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
|
+
Get a specific chatbot in a specific environment based on name
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
m365 pp chatbot get --environment "Default-d87a7535-dd31-4437-bfe1-95340acd55c5" --name "CLI 365 Chatbot"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Get a specific chatbot in a specific environment based on name as admin
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
m365 pp chatbot get --environment "Default-d87a7535-dd31-4437-bfe1-95340acd55c5" --name "CLI 365 Chatbot" --asAdmin
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Get a specific chatbot in a specific environment based on id
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
m365 pp chatbot get --environment "Default-d87a7535-dd31-4437-bfe1-95340acd55c5" --id "3a081d91-5ea8-40a7-8ac9-abbaa3fcb893"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Get a specific chatbot in a specific environment based on id as admin
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
m365 pp chatbot get --environment "Default-d87a7535-dd31-4437-bfe1-95340acd55c5" --id "3a081d91-5ea8-40a7-8ac9-abbaa3fcb893" --asAdmin
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Response
|
|
54
|
+
|
|
55
|
+
=== "JSON"
|
|
56
|
+
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"authenticationtrigger": 0,
|
|
60
|
+
"_owningbusinessunit_value": "6da087c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
61
|
+
"statuscode": 1,
|
|
62
|
+
"createdon": "2022-11-19T10:42:22Z",
|
|
63
|
+
"statecode": 0,
|
|
64
|
+
"schemaname": "new_bot_23f5f58697fd43d595eb451c9797a53d",
|
|
65
|
+
"_ownerid_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
66
|
+
"overwritetime": "1900-01-01T00:00:00Z",
|
|
67
|
+
"name": "CLI 365 Chatbot",
|
|
68
|
+
"solutionid": "fd140aae-4df4-11dd-bd17-0019b9312238",
|
|
69
|
+
"ismanaged": false,
|
|
70
|
+
"versionnumber": 1421457,
|
|
71
|
+
"language": 1033,
|
|
72
|
+
"_modifiedby_value": "5f91d7a7-5f46-494a-80fa-5c18b0221351",
|
|
73
|
+
"_modifiedonbehalfby_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
74
|
+
"modifiedon": "2022-11-19T10:42:24Z",
|
|
75
|
+
"componentstate": 0,
|
|
76
|
+
"botid": "3a081d91-5ea8-40a7-8ac9-abbaa3fcb893",
|
|
77
|
+
"_createdby_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
78
|
+
"componentidunique": "cdcd6496-e25d-4ad1-91cf-3f4d547fdd23",
|
|
79
|
+
"authenticationmode": 1,
|
|
80
|
+
"_owninguser_value": "5fa787c1-1c4d-ed11-bba1-000d3a2caf7f",
|
|
81
|
+
"accesscontrolpolicy": 0,
|
|
82
|
+
"runtimeprovider": 0,
|
|
83
|
+
"_publishedby_value": "John Doe",
|
|
84
|
+
"authenticationconfiguration": null,
|
|
85
|
+
"authorizedsecuritygroupids": null,
|
|
86
|
+
"overriddencreatedon": null,
|
|
87
|
+
"applicationmanifestinformation": null,
|
|
88
|
+
"importsequencenumber": null,
|
|
89
|
+
"synchronizationstatus": null,
|
|
90
|
+
"template": null,
|
|
91
|
+
"_providerconnectionreferenceid_value": null,
|
|
92
|
+
"configuration": null,
|
|
93
|
+
"utcconversiontimezonecode": null,
|
|
94
|
+
"publishedon": "2022-11-19T10:43:24Z",
|
|
95
|
+
"_createdonbehalfby_value": null,
|
|
96
|
+
"iconbase64": null,
|
|
97
|
+
"supportedlanguages": null,
|
|
98
|
+
"_owningteam_value": null,
|
|
99
|
+
"timezoneruleversionnumber": null,
|
|
100
|
+
"iscustomizable": {
|
|
101
|
+
"Value": true,
|
|
102
|
+
"CanBeChanged": true,
|
|
103
|
+
"ManagedPropertyLogicalName": "iscustomizableanddeletable"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
=== "Text"
|
|
109
|
+
|
|
110
|
+
```text
|
|
111
|
+
botid : 3a081d91-5ea8-40a7-8ac9-abbaa3fcb893
|
|
112
|
+
createdon : 2022-11-19T10:42:22Z
|
|
113
|
+
modifiedon : 2022-11-19T10:42:24Z
|
|
114
|
+
name : CLI 365 Chatbot
|
|
115
|
+
publishedon: 2022-11-19T10:43:24Z
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
=== "CSV"
|
|
119
|
+
|
|
120
|
+
```csv
|
|
121
|
+
name,botid,publishedon,createdon,modifiedon
|
|
122
|
+
CLI 365 Chatbot,3a081d91-5ea8-40a7-8ac9-abbaa3fcb893,2022-11-19T10:43:24Z,2022-11-19T10:42:22Z,2022-11-19T10:42:24Z
|
|
123
|
+
```
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# pp chatbot remove
|
|
2
|
+
|
|
3
|
+
Removes the specified chatbot
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
m365 pp chatbot remove [options]
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
|
|
13
|
+
`-e, --environment <environment>`
|
|
14
|
+
: The name of the environment.
|
|
15
|
+
|
|
16
|
+
`-i, --id [id]`
|
|
17
|
+
: The id of the chatbot. Specify either `id` or `name` but not both.
|
|
18
|
+
|
|
19
|
+
`-n, --name [name]`
|
|
20
|
+
: The name of the chatbot. Specify either `id` or `name` but not both.
|
|
21
|
+
|
|
22
|
+
`--asAdmin`
|
|
23
|
+
: Run the command as admin for environments you do not have explicitly assigned permissions to.
|
|
24
|
+
|
|
25
|
+
`--confirm`
|
|
26
|
+
: Don't prompt for confirmation.
|
|
27
|
+
|
|
28
|
+
--8<-- "docs/cmd/_global.md"
|
|
29
|
+
|
|
30
|
+
## Examples
|
|
31
|
+
|
|
32
|
+
Removes the specified Microsoft Power Platform chatbot owned by the currently signed-in user based on name
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
m365 pp chatbot remove --environment Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --name "Chatbot Name"
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Removes the specified Microsoft Power Platform chatbot owned by the currently signed-in user based on id without confirmation
|
|
39
|
+
|
|
40
|
+
```sh
|
|
41
|
+
m365 pp chatbot remove --environment Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --id 9d9a13d0-6255-ed11-bba2-000d3adf774e --confirm
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Removes the specified Microsoft Power Platform chatbot owned by another user based on name
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
m365 pp chatbot remove --environment Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --name "Chatbot Name" --asAdmin
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Response
|
|
51
|
+
|
|
52
|
+
The command won't return a response on success.
|
|
@@ -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
|
|
|
@@ -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/package.json
CHANGED