@pnp/cli-microsoft365 5.0.0-beta.1705bbd → 5.0.0-beta.2e2ba7d
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/Dockerfile +2 -2
- package/.eslintrc.js +1 -0
- package/dist/appInsights.js +3 -1
- package/dist/cli/Cli.js +4 -1
- package/dist/m365/aad/commands/app/app-add.js +58 -5
- package/dist/m365/aad/commands/app/app-get.js +97 -0
- package/dist/m365/aad/commands/o365group/o365group-add.js +56 -50
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-list.js +4 -4
- package/dist/m365/aad/commands/oauth2grant/oauth2grant-remove.js +36 -12
- package/dist/m365/aad/commands/sp/sp-add.js +107 -0
- package/dist/m365/aad/commands.js +2 -0
- package/dist/m365/base/M365RcJson.js +3 -0
- package/dist/m365/cli/commands/cli-doctor.js +2 -0
- package/dist/m365/file/commands/file-add.js +32 -13
- package/dist/m365/file/commands/file-list.js +181 -0
- package/dist/m365/file/commands.js +2 -1
- 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.13.1.js +53 -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 +17 -13
- package/dist/m365/spfx/commands/spfx-doctor.js +176 -62
- package/dist/m365/spo/commands/contenttype/contenttype-list.js +52 -0
- package/dist/m365/spo/commands/list/list-get.js +6 -2
- package/dist/m365/spo/commands/page/Page.js +3 -1
- package/dist/m365/spo/commands/page/page-add.js +7 -10
- package/dist/m365/spo/commands/page/page-set.js +7 -10
- package/dist/m365/spo/commands/site/site-remove.js +98 -30
- package/dist/m365/spo/commands/web/web-installedlanguage-list.js +48 -0
- package/dist/m365/spo/commands.js +3 -1
- package/dist/m365/teams/commands/report/report-directroutingcalls.js +1 -1
- package/dist/m365/teams/commands/report/report-pstncalls.js +1 -1
- package/docs/docs/cmd/aad/app/app-add.md +11 -0
- package/docs/docs/cmd/aad/app/app-get.md +48 -0
- package/docs/docs/cmd/aad/o365group/o365group-add.md +1 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-list.md +2 -2
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-remove.md +9 -0
- package/docs/docs/cmd/aad/sp/sp-add.md +53 -0
- package/docs/docs/cmd/file/file-add.md +11 -0
- package/docs/docs/cmd/file/file-list.md +46 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +43 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/contenttype/contenttype-list.md +33 -0
- package/docs/docs/cmd/spo/list/list-get.md +9 -0
- package/docs/docs/cmd/spo/page/page-add.md +2 -2
- package/docs/docs/cmd/spo/page/page-set.md +3 -3
- package/docs/docs/cmd/spo/site/site-remove.md +3 -1
- package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +24 -0
- package/docs/docs/cmd/teams/report/report-directroutingcalls.md +0 -3
- package/docs/docs/cmd/teams/report/report-pstncalls.md +4 -3
- package/npm-shrinkwrap.json +508 -886
- package/package.json +19 -17
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.2e2ba7d",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"microsoft365": "./dist/index.js",
|
|
9
8
|
"m365": "./dist/index.js",
|
|
10
|
-
"m365_comp": "./dist/autocomplete.js"
|
|
9
|
+
"m365_comp": "./dist/autocomplete.js",
|
|
10
|
+
"microsoft365": "./dist/index.js"
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"Kailasam, Balamurugan <kshsbala@engineer.com>",
|
|
113
113
|
"Kasireddy, Prasad <prasad.gietcse@gmail.com>",
|
|
114
114
|
"Keijzers, Paul <KbWorks@users.noreply.github.com>",
|
|
115
|
-
"Kelkar, Vipul <
|
|
115
|
+
"Kelkar, Vipul <vipul.kelkar@outlook.com>",
|
|
116
116
|
"Kesavanarayanan, Sudharsan <10280385+sudharsank@users.noreply.github.com>",
|
|
117
117
|
"Khalil, Bassem <bk@bassems-air.home>",
|
|
118
118
|
"Kumar, Shantha <34408892+ktskumar@users.noreply.github.com>",
|
|
@@ -122,6 +122,7 @@
|
|
|
122
122
|
"Levert, Sebastien <slevert@outlook.com>",
|
|
123
123
|
"Maillot, Michaël <battosaimykle@gmail.com>",
|
|
124
124
|
"Mastykarz, Waldek <waldek@mastykarz.nl>",
|
|
125
|
+
"McDonnell, Kevin <kevin@mcd79.com>",
|
|
125
126
|
"Menon, Arjun <arjun.umenon@gmail.com>",
|
|
126
127
|
"Moujahid, Abderahman <rags_place@hotmail.com>",
|
|
127
128
|
"Mücklisch, Steve <steve.muecklisch@gmail.com>",
|
|
@@ -168,10 +169,11 @@
|
|
|
168
169
|
"dependencies": {
|
|
169
170
|
"@azure/msal-node": "^1.3.2",
|
|
170
171
|
"adaptive-expressions": "^4.14.1",
|
|
171
|
-
"adaptivecards
|
|
172
|
+
"adaptivecards": "^2.10.0",
|
|
173
|
+
"adaptivecards-templating": "^2.2.0",
|
|
172
174
|
"adm-zip": "^0.5.9",
|
|
173
|
-
"applicationinsights": "^2.1.
|
|
174
|
-
"axios": "^0.
|
|
175
|
+
"applicationinsights": "^2.1.9",
|
|
176
|
+
"axios": "^0.24.0",
|
|
175
177
|
"chalk": "^4.1.2",
|
|
176
178
|
"easy-table": "^1.2.0",
|
|
177
179
|
"inquirer": "^8.2.0",
|
|
@@ -181,26 +183,26 @@
|
|
|
181
183
|
"minimist": "^1.2.5",
|
|
182
184
|
"node-forge": "^0.10.0",
|
|
183
185
|
"omelette": "^0.4.17",
|
|
184
|
-
"open": "^8.
|
|
186
|
+
"open": "^8.4.0",
|
|
185
187
|
"semver": "^7.3.4",
|
|
186
188
|
"strip-json-comments": "^3.1.1",
|
|
187
|
-
"typescript": "^4.4.
|
|
189
|
+
"typescript": "^4.4.4",
|
|
188
190
|
"update-notifier": "^5.1.0",
|
|
189
191
|
"uuid": "^8.3.2",
|
|
190
192
|
"xmldom": "^0.6.0"
|
|
191
193
|
},
|
|
192
194
|
"devDependencies": {
|
|
193
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
195
|
+
"@microsoft/microsoft-graph-types": "^2.8.0",
|
|
194
196
|
"@types/adm-zip": "^0.4.34",
|
|
195
197
|
"@types/inquirer": "^8.1.3",
|
|
196
198
|
"@types/jmespath": "^0.15.0",
|
|
197
199
|
"@types/json-to-ast": "^2.1.2",
|
|
198
200
|
"@types/minimist": "^1.2.2",
|
|
199
201
|
"@types/mocha": "^9.0.0",
|
|
200
|
-
"@types/node": "^14.17.
|
|
201
|
-
"@types/node-forge": "^0.10.
|
|
202
|
-
"@types/semver": "^7.3.
|
|
203
|
-
"@types/sinon": "^10.0.
|
|
202
|
+
"@types/node": "^14.17.32",
|
|
203
|
+
"@types/node-forge": "^0.10.9",
|
|
204
|
+
"@types/semver": "^7.3.9",
|
|
205
|
+
"@types/sinon": "^10.0.6",
|
|
204
206
|
"@types/update-notifier": "^5.1.0",
|
|
205
207
|
"@types/uuid": "^8.3.1",
|
|
206
208
|
"@types/xmldom": "^0.1.31",
|
|
@@ -211,10 +213,10 @@
|
|
|
211
213
|
"eslint": "^7.32.0",
|
|
212
214
|
"eslint-config-standard": "^16.0.3",
|
|
213
215
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
214
|
-
"eslint-plugin-import": "^2.
|
|
216
|
+
"eslint-plugin-import": "^2.25.2",
|
|
215
217
|
"eslint-plugin-node": "^11.1.0",
|
|
216
|
-
"eslint-plugin-promise": "^5.1.
|
|
217
|
-
"mocha": "^9.1.
|
|
218
|
+
"eslint-plugin-promise": "^5.1.1",
|
|
219
|
+
"mocha": "^9.1.3",
|
|
218
220
|
"rimraf": "^3.0.2",
|
|
219
221
|
"sinon": "^11.1.2"
|
|
220
222
|
}
|