@pnp/cli-microsoft365 4.3.0-beta.e06aaff → 4.3.0-beta.e11c88c
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/.devcontainer/devcontainer.json +9 -1
- package/.eslintrc.js +1 -0
- package/README.md +1 -1
- package/dist/Utils.js +3 -0
- package/dist/appInsights.js +3 -2
- package/dist/cli/Cli.js +22 -3
- package/dist/m365/aad/commands/app/app-get.js +97 -0
- package/dist/m365/aad/commands/o365group/{Group.js → GroupExtended.js} +1 -1
- package/dist/m365/aad/commands/o365group/o365group-user-set.js +3 -3
- package/dist/m365/aad/commands/user/user-get.js +33 -6
- package/dist/m365/aad/commands/user/user-password-validate.js +42 -0
- package/dist/m365/aad/commands.js +2 -0
- package/dist/m365/app/commands/permission/permission-list.js +266 -0
- package/dist/m365/app/commands.js +7 -0
- package/dist/m365/base/AppCommand.js +76 -0
- package/dist/m365/cli/commands/cli-doctor.js +2 -0
- package/dist/m365/pa/commands/app/app-list.js +28 -1
- package/dist/m365/planner/commands/task/task-add.js +288 -0
- package/dist/m365/planner/commands.js +1 -0
- package/dist/m365/search/commands/externalconnection/externalconnection-add.js +99 -0
- package/dist/m365/search/commands.js +7 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006005_CFG_PS_metadata.js +63 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006006_CFG_PS_features.js +60 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.14.0-beta.4.js +57 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +16 -13
- package/dist/m365/spo/commands/site/site-ensure.js +1 -1
- package/dist/m365/spo/commands/web/web-installedlanguage-list.js +48 -0
- package/dist/m365/spo/commands.js +1 -0
- package/dist/m365/teams/commands/message/message-get.js +1 -1
- package/dist/request.js +9 -4
- package/docs/docs/cmd/_global.md +2 -2
- package/docs/docs/cmd/aad/app/app-get.md +48 -0
- package/docs/docs/cmd/aad/user/user-get.md +13 -4
- package/docs/docs/cmd/aad/user/user-password-validate.md +29 -0
- package/docs/docs/cmd/app/permission/permission-list.md +36 -0
- package/docs/docs/cmd/pa/app/app-list.md +17 -1
- package/docs/docs/cmd/planner/task/task-add.md +78 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +43 -0
- package/docs/docs/cmd/spfx/project/project-externalize.md +1 -1
- package/docs/docs/cmd/spfx/project/project-rename.md +1 -1
- package/docs/docs/cmd/spfx/spfx-doctor.md +1 -1
- package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +24 -0
- package/docs/docs/cmd/teams/message/message-get.md +0 -3
- package/npm-shrinkwrap.json +601 -741
- package/package.json +21 -15
- package/dist/m365/aad/commands/o365group/GroupUser.js +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "4.3.0-beta.
|
|
3
|
+
"version": "4.3.0-beta.e11c88c",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"Calabro, David <davej.calabro@gmail.com>",
|
|
97
97
|
"Connell, Andrew <me@andrewconnell.com>",
|
|
98
98
|
"Deshpande, Vardhaman <vardhaman.rd@gmail.com>",
|
|
99
|
+
"Dyjas, Robert <15113729+robdy@users.noreply.github.com>",
|
|
99
100
|
"Faleel, Mohamed Ashiq <ashiqf@gmail.com>",
|
|
100
101
|
"Ford, Lee <fordyman@gmail.com>",
|
|
101
102
|
"Freese, Luise <49960482+LuiseFreese@users.noreply.github.com>",
|
|
@@ -122,6 +123,7 @@
|
|
|
122
123
|
"Levert, Sebastien <slevert@outlook.com>",
|
|
123
124
|
"Maillot, Michaël <battosaimykle@gmail.com>",
|
|
124
125
|
"Mastykarz, Waldek <waldek@mastykarz.nl>",
|
|
126
|
+
"McDonnell, Kevin <kevin@mcd79.com>",
|
|
125
127
|
"Menon, Arjun <arjun.umenon@gmail.com>",
|
|
126
128
|
"Moujahid, Abderahman <rags_place@hotmail.com>",
|
|
127
129
|
"Mücklisch, Steve <steve.muecklisch@gmail.com>",
|
|
@@ -142,6 +144,7 @@
|
|
|
142
144
|
"Schot, Albert-Jan <appie@digiwijs.nl>",
|
|
143
145
|
"Schouten, Robert <robert.schouten@wortell.nl>",
|
|
144
146
|
"Schütze, Sebastian <sebastian.schuetze@razorspoint.com>",
|
|
147
|
+
"Shafi, Danish <33339824+builtbydans@users.noreply.github.com>",
|
|
145
148
|
"Shah, Dipen <Dips365@hotmail.com>",
|
|
146
149
|
"Siatka, Piotr <piotr@valointranet.com>",
|
|
147
150
|
"Sinha, Kislay <kislay_sinha@outlook.com>",
|
|
@@ -153,6 +156,7 @@
|
|
|
153
156
|
"Svenson, Mikael <miksvenson@gmail.com>",
|
|
154
157
|
"Tane, Peter <peter.tane@gmail.come>",
|
|
155
158
|
"Tatti, Anoop <anoop@live.co.uk>",
|
|
159
|
+
"Thangavel, Sekar <sekar.thangavel@gmail.com>",
|
|
156
160
|
"Thorild, Fredrik <fredrik.thorild@sogeti.com>",
|
|
157
161
|
"Trinder, Garry <garry.trinder@live.com>",
|
|
158
162
|
"Vaghasia, Siddharth <siddh.vaghasia@gmail.com>",
|
|
@@ -161,19 +165,21 @@
|
|
|
161
165
|
"van Iersel, Cas <cvaniersel@portiva.nl>",
|
|
162
166
|
"van Rousselt, Rick <rick.vanrousselt@outlook.com>",
|
|
163
167
|
"Velliah, Joseph <joseph@sprider.org>",
|
|
168
|
+
"Waegebaert, Jasey <jaseyw@gmigroup.be>",
|
|
164
169
|
"Wilen, Wictor <wictor@wictorwilen.se>",
|
|
165
170
|
"Williams, Rabia <rabiawilliams@gmail.com>",
|
|
166
171
|
"Wojcik, Adam <adam.wojcik.it@gmail.com>"
|
|
167
172
|
],
|
|
168
173
|
"dependencies": {
|
|
169
|
-
"@azure/msal-node": "^1.
|
|
170
|
-
"adaptive-expressions": "^4.
|
|
174
|
+
"@azure/msal-node": "^1.4.0",
|
|
175
|
+
"adaptive-expressions": "^4.15.0",
|
|
171
176
|
"adaptivecards": "^2.10.0",
|
|
172
177
|
"adaptivecards-templating": "^2.2.0",
|
|
173
178
|
"adm-zip": "^0.5.9",
|
|
174
|
-
"applicationinsights": "^2.
|
|
179
|
+
"applicationinsights": "^2.2.0",
|
|
175
180
|
"axios": "^0.24.0",
|
|
176
181
|
"chalk": "^4.1.2",
|
|
182
|
+
"csv-stringify": "^6.0.4",
|
|
177
183
|
"easy-table": "^1.2.0",
|
|
178
184
|
"inquirer": "^8.2.0",
|
|
179
185
|
"jmespath": "^0.15.0",
|
|
@@ -185,38 +191,38 @@
|
|
|
185
191
|
"open": "^8.4.0",
|
|
186
192
|
"semver": "^7.3.4",
|
|
187
193
|
"strip-json-comments": "^3.1.1",
|
|
188
|
-
"typescript": "^4.
|
|
194
|
+
"typescript": "^4.5.3",
|
|
189
195
|
"update-notifier": "^5.1.0",
|
|
190
196
|
"uuid": "^8.3.2",
|
|
191
197
|
"xmldom": "^0.6.0"
|
|
192
198
|
},
|
|
193
199
|
"devDependencies": {
|
|
194
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
200
|
+
"@microsoft/microsoft-graph-types": "^2.10.0",
|
|
195
201
|
"@types/adm-zip": "^0.4.34",
|
|
196
202
|
"@types/inquirer": "^8.1.3",
|
|
197
203
|
"@types/jmespath": "^0.15.0",
|
|
198
204
|
"@types/json-to-ast": "^2.1.2",
|
|
199
205
|
"@types/minimist": "^1.2.2",
|
|
200
206
|
"@types/mocha": "^9.0.0",
|
|
201
|
-
"@types/node": "^
|
|
202
|
-
"@types/node-forge": "^0.10.
|
|
207
|
+
"@types/node": "^16.11.12",
|
|
208
|
+
"@types/node-forge": "^0.10.10",
|
|
203
209
|
"@types/semver": "^7.3.9",
|
|
204
210
|
"@types/sinon": "^10.0.6",
|
|
205
211
|
"@types/update-notifier": "^5.1.0",
|
|
206
|
-
"@types/uuid": "^8.3.
|
|
212
|
+
"@types/uuid": "^8.3.3",
|
|
207
213
|
"@types/xmldom": "^0.1.31",
|
|
208
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
209
|
-
"@typescript-eslint/parser": "^
|
|
214
|
+
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
215
|
+
"@typescript-eslint/parser": "^5.6.0",
|
|
210
216
|
"c8": "^7.10.0",
|
|
211
217
|
"coveralls": "^3.1.1",
|
|
212
|
-
"eslint": "^
|
|
218
|
+
"eslint": "^8.4.1",
|
|
213
219
|
"eslint-config-standard": "^16.0.3",
|
|
214
220
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
215
|
-
"eslint-plugin-import": "^2.25.
|
|
221
|
+
"eslint-plugin-import": "^2.25.3",
|
|
216
222
|
"eslint-plugin-node": "^11.1.0",
|
|
217
|
-
"eslint-plugin-promise": "^5.
|
|
223
|
+
"eslint-plugin-promise": "^5.2.0",
|
|
218
224
|
"mocha": "^9.1.3",
|
|
219
225
|
"rimraf": "^3.0.2",
|
|
220
|
-
"sinon": "^
|
|
226
|
+
"sinon": "^12.0.1"
|
|
221
227
|
}
|
|
222
228
|
}
|