@pnp/cli-microsoft365 5.9.0-beta.60e454b → 5.9.0-beta.63e1266
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/Command.js +16 -2
- package/dist/m365/aad/commands/app/app-add.js +37 -13
- package/dist/m365/commands/status.js +6 -1
- package/dist/m365/outlook/commands/mail/mail-send.js +54 -30
- package/dist/m365/pp/commands/card/card-get.js +110 -0
- package/dist/m365/pp/commands/gateway/gateway-get.js +70 -0
- package/dist/m365/pp/commands/solution/solution-get.js +117 -0
- package/dist/m365/pp/commands.js +3 -0
- package/dist/m365/spfx/commands/project/project-doctor.js +4 -1
- package/dist/m365/spfx/commands/project/project-externalize.js +4 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +3 -3
- package/dist/m365/spo/commands/contenttype/contenttype-add.js +82 -43
- package/dist/m365/spo/commands/contenttype/contenttype-field-remove.js +53 -21
- package/dist/m365/spo/commands/contenttype/contenttype-get.js +35 -14
- package/dist/m365/spo/commands/list/list-roleassignment-add.js +1 -1
- package/dist/m365/spo/commands/list/list-roleinheritance-break.js +14 -6
- package/dist/m365/spo/commands/list/list-roleinheritance-reset.js +15 -7
- package/dist/m365/spo/commands/listitem/listitem-roleassignment-add.js +239 -0
- package/dist/m365/spo/commands.js +1 -0
- package/dist/m365/todo/commands/task/task-add.js +55 -3
- package/docs/docs/_clisettings.md +19 -0
- package/docs/docs/cmd/outlook/mail/mail-send.md +13 -0
- package/docs/docs/cmd/planner/bucket/bucket-add.md +29 -0
- package/docs/docs/cmd/planner/bucket/bucket-get.md +29 -0
- package/docs/docs/cmd/planner/bucket/bucket-list.md +30 -0
- package/docs/docs/cmd/planner/bucket/bucket-remove.md +4 -0
- package/docs/docs/cmd/planner/bucket/bucket-set.md +4 -0
- package/docs/docs/cmd/planner/plan/plan-add.md +123 -0
- package/docs/docs/cmd/planner/plan/plan-get.md +75 -0
- package/docs/docs/cmd/planner/plan/plan-list.md +45 -0
- package/docs/docs/cmd/planner/plan/plan-remove.md +4 -0
- package/docs/docs/cmd/pp/card/card-get.md +51 -0
- package/docs/docs/cmd/pp/gateway/gateway-get.md +24 -0
- package/docs/docs/cmd/pp/solution/solution-get.md +51 -0
- package/docs/docs/cmd/spfx/project/project-rename.md +1 -14
- package/docs/docs/cmd/spo/contenttype/contenttype-add.md +20 -2
- package/docs/docs/cmd/spo/contenttype/contenttype-field-remove.md +22 -4
- package/docs/docs/cmd/spo/contenttype/contenttype-get.md +21 -3
- package/docs/docs/cmd/spo/list/list-roleinheritance-break.md +11 -8
- package/docs/docs/cmd/spo/list/list-roleinheritance-reset.md +14 -5
- package/docs/docs/cmd/spo/listitem/listitem-roleassignment-add.md +81 -0
- package/docs/docs/cmd/todo/task/task-add.md +32 -5
- package/package.json +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "5.9.0-beta.
|
|
3
|
+
"version": "5.9.0-beta.63e1266",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"contributors": [
|
|
102
102
|
"Abhishek K M <67158080+Sync271@users.noreply.github.com>",
|
|
103
103
|
"Ågren, Simon <simon.agren@sogeti.com>",
|
|
104
|
-
"
|
|
104
|
+
"Ahlawat, Priyanshu <priyanshuahlawat009@gmail.com>",
|
|
105
105
|
"Albany, Bruce <bruce.albany@gmail.com>",
|
|
106
106
|
"Auckloo, Reshmee <reshmee011@gmail.com>",
|
|
107
107
|
"Balasubramaniam, Jayakumar <jayakumar@live.in>",
|
|
@@ -116,13 +116,13 @@
|
|
|
116
116
|
"Calabro, David <davej.calabro@gmail.com>",
|
|
117
117
|
"Choudhary, Karnail Singh <pradhankarnail@gmail.com>",
|
|
118
118
|
"Connell, Andrew <me@andrewconnell.com>",
|
|
119
|
-
"
|
|
119
|
+
"De Cleyre, Nico <nico.de.cleyre@gmail.com>",
|
|
120
120
|
"Deshpande, Vardhaman <vardhaman.rd@gmail.com>",
|
|
121
121
|
"Dyjas, Robert <15113729+robdy@users.noreply.github.com>",
|
|
122
122
|
"Faleel, Mohamed Ashiq <ashiqf@gmail.com>",
|
|
123
|
+
"Flores, Gaston <gaston.flrs@gmail.com>",
|
|
123
124
|
"Ford, Lee <fordyman@gmail.com>",
|
|
124
125
|
"Freese, Luise <49960482+LuiseFreese@users.noreply.github.com>",
|
|
125
|
-
"Gaston Flores <gaston.flrs@gmail.com>",
|
|
126
126
|
"Georgiev, Velin <velin.georgiev@gmail.com>",
|
|
127
127
|
"Ghuge, Pramod <pramod7@gmail.com>",
|
|
128
128
|
"Gölles, Thomas <thomy@outlook.at>",
|
|
@@ -130,13 +130,12 @@
|
|
|
130
130
|
"Harding, Phil <pil.harding@platinumdogs.co.uk>",
|
|
131
131
|
"Hawrylak, Paweł <phawrylak@outlook.com>",
|
|
132
132
|
"Holemans, Milan <Milan.Holemans@vanroey.be>",
|
|
133
|
-
"Hüseyin Saatçi <huseyins@comodo.net>",
|
|
134
133
|
"Honen, Nicholas <nickhonen@gmail.com>",
|
|
135
134
|
"Högberg, Joakim <joakim.hogberg@bravero.se>",
|
|
136
135
|
"Hvam, Allan <ahp@delegate.dk>",
|
|
137
136
|
"Jaakke, Robert <robert.jaakke@mavention.nl>",
|
|
138
|
-
"John Rafael <dragonwood0@protonmail.com>",
|
|
139
137
|
"Kailasam, Balamurugan <kshsbala@engineer.com>",
|
|
138
|
+
"Karda, Akash <akashkarda@gmail.com>",
|
|
140
139
|
"Kasireddy, Prasad <prasad.gietcse@gmail.com>",
|
|
141
140
|
"Keijzers, Paul <KbWorks@users.noreply.github.com>",
|
|
142
141
|
"Kelkar, Vipul <vipul.kelkar@outlook.com>",
|
|
@@ -158,7 +157,9 @@
|
|
|
158
157
|
"Mücklisch, Steve <steve.muecklisch@gmail.com>",
|
|
159
158
|
"Nachan, Nanddeep <nanddeepnachan@gmail.com>",
|
|
160
159
|
"Nachan, Smita <smita.nachan@gmail.com>",
|
|
160
|
+
"Nadir, Daniaal <daniaal1030@gmail.com>",
|
|
161
161
|
"Nikolić, Aleksandar <alexandair@live.com>",
|
|
162
|
+
"O'Callaghan, Conor <brioscaibriste@gmail.com>",
|
|
162
163
|
"Otto <berot3@gmail.com>",
|
|
163
164
|
"Pandey, Vividh <vividh.pandey.13@gmail.com>",
|
|
164
165
|
"Patil, Atharva <atharvapatil19202@gmail.com>",
|
|
@@ -166,6 +167,7 @@
|
|
|
166
167
|
"Powney, Mark <powney.mark@outlook.com>",
|
|
167
168
|
"pramod74 <pramod.lumb@gmail.com>",
|
|
168
169
|
"Priem, Mark <mark.priem@outlook.com>",
|
|
170
|
+
"Rafael, John <dragonwood0@protonmail.com>",
|
|
169
171
|
"Raju, Arnie <arnie.raju@thesolutioncollective.com.au>",
|
|
170
172
|
"Ramalho, David <dramalho@storm.ie>",
|
|
171
173
|
"Rathi, Tanmay <tanmay_rathi@intuit.com>",
|
|
@@ -173,6 +175,7 @@
|
|
|
173
175
|
"Romano, Rodrigo <rodrigo@rodrigoromano.net>",
|
|
174
176
|
"Romão, Douglas <douglas.romao@trentim.com>",
|
|
175
177
|
"Rozinov, Roman <roman.rozinov@sogeti.com>",
|
|
178
|
+
"Saatçi, Hüseyin <huseyins@comodo.net>",
|
|
176
179
|
"Schaeflein, Paul <paul@schaeflein.net>",
|
|
177
180
|
"Schot, Albert-Jan <appie@digiwijs.nl>",
|
|
178
181
|
"Schouten, Robert <robert.schouten@wortell.nl>",
|
|
@@ -185,6 +188,7 @@
|
|
|
185
188
|
"Sitaraman, Rajesh <rajesh.sitaraman@outlook.com>",
|
|
186
189
|
"Sittler, Laurent <laurent.sittler@lsonline.fr>",
|
|
187
190
|
"Skelly, Pete <peteskelly@gmail.com>",
|
|
191
|
+
"Solazzi, Riccardo <rick.zal239@gmail.com>",
|
|
188
192
|
"Sotelo, Aaron <soteloaaron16@gmail.com>",
|
|
189
193
|
"strafe <strafe@users.noreply.github.com>",
|
|
190
194
|
"Struyf, Elio <info@estruyf.be>",
|