@pnp/cli-microsoft365 6.9.0-beta.91abae4 → 6.9.0-beta.eff4ea7
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/dist/cli/Cli.js +16 -0
- package/dist/m365/cli/commands/config/config-set.js +1 -0
- package/dist/m365/planner/commands/bucket/bucket-add.js +15 -13
- package/dist/m365/planner/commands/bucket/bucket-get.js +27 -28
- package/dist/m365/planner/commands/bucket/bucket-list.js +15 -13
- package/dist/m365/planner/commands/bucket/bucket-remove.js +33 -34
- package/dist/m365/planner/commands/bucket/bucket-set.js +33 -34
- package/dist/m365/planner/commands/plan/plan-add.js +49 -52
- package/dist/m365/planner/commands/plan/plan-set.js +19 -20
- package/dist/m365/planner/commands/task/task-add.js +75 -78
- package/dist/m365/planner/commands/task/task-checklistitem-add.js +11 -10
- package/dist/m365/planner/commands/task/task-checklistitem-remove.js +10 -8
- package/dist/m365/planner/commands/task/task-get.js +53 -56
- package/dist/m365/planner/commands/task/task-list.js +23 -24
- package/dist/m365/planner/commands/task/task-reference-add.js +11 -10
- package/dist/m365/planner/commands/task/task-reference-remove.js +13 -14
- package/dist/m365/planner/commands/task/task-remove.js +44 -48
- package/dist/m365/planner/commands/task/task-set.js +83 -87
- package/dist/m365/pp/commands/card/card-get.js +6 -1
- package/dist/m365/purview/commands/retentionevent/retentionevent-add.js +0 -5
- package/dist/m365/purview/commands/retentionevent/retentionevent-get.js +0 -5
- package/dist/m365/purview/commands/retentionevent/retentionevent-list.js +0 -5
- package/dist/m365/purview/commands/retentionevent/retentionevent-remove.js +0 -5
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-add.js +0 -5
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-get.js +0 -5
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-list.js +0 -5
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-remove.js +0 -5
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-set.js +0 -5
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +0 -5
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-get.js +0 -5
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-list.js +0 -5
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-remove.js +19 -22
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-set.js +0 -5
- package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-set.js +154 -0
- package/dist/m365/spo/commands/commandset/commandset-set.js +11 -2
- package/dist/m365/spo/commands/list/list-sensitivitylabel-ensure.js +127 -0
- package/dist/m365/spo/commands/navigation/navigation-node-add.js +31 -1
- package/dist/m365/spo/commands/navigation/navigation-node-set.js +31 -2
- package/dist/m365/spo/commands/tenant/Solution.js +3 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-add.js +215 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-get.js +114 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-list.js +50 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +1 -1
- package/dist/m365/spo/commands.js +5 -0
- package/dist/settingsNames.js +1 -0
- package/dist/utils/spo.js +60 -0
- package/docs/docs/cmd/purview/retentionevent/retentionevent-add.mdx +0 -6
- package/docs/docs/cmd/purview/retentionevent/retentionevent-get.mdx +0 -6
- package/docs/docs/cmd/purview/retentionevent/retentionevent-list.mdx +0 -7
- package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-remove.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-set.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.mdx +0 -6
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx +72 -0
- package/docs/docs/cmd/spo/commandset/commandset-set.mdx +12 -3
- package/docs/docs/cmd/spo/list/list-sensitivitylabel-ensure.mdx +64 -0
- package/docs/docs/cmd/spo/navigation/navigation-node-add.mdx +7 -4
- package/docs/docs/cmd/spo/navigation/navigation-node-set.mdx +9 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-add.mdx +183 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-get.mdx +155 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-list.mdx +114 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-set.mdx +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
4
|
+
|
|
5
|
+
# spo tenant commandset list
|
|
6
|
+
|
|
7
|
+
Retrieves a list of ListView Command Sets that are installed tenant-wide
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
spo tenant commandset list [options]
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Options
|
|
16
|
+
|
|
17
|
+
<Global />
|
|
18
|
+
|
|
19
|
+
## Examples
|
|
20
|
+
|
|
21
|
+
Retrieves a list of ListView Command Sets.
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
m365 spo tenant commandset list
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Response
|
|
28
|
+
|
|
29
|
+
<Tabs>
|
|
30
|
+
<TabItem value="JSON">
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
[
|
|
34
|
+
{
|
|
35
|
+
"FileSystemObjectType": 0,
|
|
36
|
+
"Id": 9,
|
|
37
|
+
"ServerRedirectedEmbedUri": null,
|
|
38
|
+
"ServerRedirectedEmbedUrl": "",
|
|
39
|
+
"ID": 9,
|
|
40
|
+
"ContentTypeId": "0x00693E2C487575B448BD420C12CEAE7EFE",
|
|
41
|
+
"Title": "HelloWorld",
|
|
42
|
+
"Modified": "2023-05-25T12:11:21Z",
|
|
43
|
+
"Created": "2023-05-25T12:11:21Z",
|
|
44
|
+
"AuthorId": 9,
|
|
45
|
+
"EditorId": 9,
|
|
46
|
+
"OData__UIVersionString": "1.0",
|
|
47
|
+
"Attachments": false,
|
|
48
|
+
"GUID": "6c47dd94-f5d5-4ea8-8b39-920385a56c37",
|
|
49
|
+
"OData__ColorTag": null,
|
|
50
|
+
"ComplianceAssetId": null,
|
|
51
|
+
"TenantWideExtensionComponentId": "f61d4ae8-3480-4541-930b-d641233c4fea",
|
|
52
|
+
"TenantWideExtensionComponentProperties": "{\"sampleTextOne\":\"One item is selected in the list.\", \"sampleTextTwo\":\"This command is always visible.\"}",
|
|
53
|
+
"TenantWideExtensionWebTemplate": null,
|
|
54
|
+
"TenantWideExtensionListTemplate": 100,
|
|
55
|
+
"TenantWideExtensionLocation": "ClientSideExtension.ListViewCommandSet.CommandBar",
|
|
56
|
+
"TenantWideExtensionSequence": 0,
|
|
57
|
+
"TenantWideExtensionHostProperties": null,
|
|
58
|
+
"TenantWideExtensionDisabled": false
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
</TabItem>
|
|
64
|
+
<TabItem value="Text">
|
|
65
|
+
|
|
66
|
+
```text
|
|
67
|
+
TenantWideExtensionComponentId : f61d4ae8-3480-4541-930b-d641233c4fea
|
|
68
|
+
TenantWideExtensionListTemplate: 100
|
|
69
|
+
Title : HelloWorld
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
</TabItem>
|
|
73
|
+
<TabItem value="CSV">
|
|
74
|
+
|
|
75
|
+
```csv
|
|
76
|
+
FileSystemObjectType,Id,ServerRedirectedEmbedUrl,ID,ContentTypeId,Title,Modified,Created,AuthorId,EditorId,OData__UIVersionString,Attachments,GUID,TenantWideExtensionComponentId,TenantWideExtensionComponentProperties,TenantWideExtensionListTemplate,TenantWideExtensionLocation,TenantWideExtensionSequence,TenantWideExtensionDisabled
|
|
77
|
+
0,9,,9,0x00693E2C487575B448BD420C12CEAE7EFE,HelloWorld,2023-05-25T12:11:21Z,2023-05-25T12:11:21Z,9,9,1.0,,6c47dd94-f5d5-4ea8-8b39-920385a56c37,f61d4ae8-3480-4541-930b-d641233c4fea,"{""sampleTextOne"":""One item is selected in the list."", ""sampleTextTwo"":""This command is always visible.""}",100,ClientSideExtension.ListViewCommandSet.CommandBar,0,
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
</TabItem>
|
|
81
|
+
<TabItem value="Markdown">
|
|
82
|
+
|
|
83
|
+
```md
|
|
84
|
+
# spo tenant commandset list
|
|
85
|
+
|
|
86
|
+
Date: 5/25/2023
|
|
87
|
+
|
|
88
|
+
## HelloWorld (9)
|
|
89
|
+
|
|
90
|
+
Property | Value
|
|
91
|
+
---------|-------
|
|
92
|
+
FileSystemObjectType | 0
|
|
93
|
+
Id | 9
|
|
94
|
+
ServerRedirectedEmbedUrl |
|
|
95
|
+
ID | 9
|
|
96
|
+
ContentTypeId | 0x00693E2C487575B448BD420C12CEAE7EFE
|
|
97
|
+
Title | HelloWorld
|
|
98
|
+
Modified | 2023-05-25T12:11:21Z
|
|
99
|
+
Created | 2023-05-25T12:11:21Z
|
|
100
|
+
AuthorId | 9
|
|
101
|
+
EditorId | 9
|
|
102
|
+
OData\_\_UIVersionString | 1.0
|
|
103
|
+
Attachments | false
|
|
104
|
+
GUID | 6c47dd94-f5d5-4ea8-8b39-920385a56c37
|
|
105
|
+
TenantWideExtensionComponentId | f61d4ae8-3480-4541-930b-d641233c4fea
|
|
106
|
+
TenantWideExtensionComponentProperties | {"sampleTextOne":"One item is selected in the list.", "sampleTextTwo":"This command is always visible."}
|
|
107
|
+
TenantWideExtensionListTemplate | 100
|
|
108
|
+
TenantWideExtensionLocation | ClientSideExtension.ListViewCommandSet.CommandBar
|
|
109
|
+
TenantWideExtensionSequence | 0
|
|
110
|
+
TenantWideExtensionDisabled | false
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
</TabItem>
|
|
114
|
+
</Tabs>
|
|
@@ -22,7 +22,7 @@ spo tenant commandset set [options]
|
|
|
22
22
|
`-l, --listType [listType]`
|
|
23
23
|
: The list or library type to register the ListView Command Set on. Allowed values `List` or `Library`.
|
|
24
24
|
|
|
25
|
-
`-
|
|
25
|
+
`-c, --clientSideComponentId [clientSideComponentId]`
|
|
26
26
|
: The Client Side Component Id (GUID) of the ListView Command Set.
|
|
27
27
|
|
|
28
28
|
`-p, --clientSideComponentProperties [clientSideComponentProperties]`
|
package/package.json
CHANGED