@pnp/cli-microsoft365 5.0.0-beta.912792d → 5.0.0-beta.c797165

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.
Files changed (56) hide show
  1. package/.devcontainer/Dockerfile +2 -2
  2. package/.eslintrc.js +1 -0
  3. package/README.md +1 -1
  4. package/dist/appInsights.js +5 -2
  5. package/dist/cli/Cli.js +4 -1
  6. package/dist/m365/aad/commands/app/app-add.js +58 -5
  7. package/dist/m365/aad/commands/app/app-get.js +97 -0
  8. package/dist/m365/aad/commands/o365group/o365group-add.js +56 -50
  9. package/dist/m365/aad/commands/oauth2grant/oauth2grant-list.js +4 -4
  10. package/dist/m365/aad/commands/oauth2grant/oauth2grant-remove.js +36 -12
  11. package/dist/m365/aad/commands/sp/sp-add.js +107 -0
  12. package/dist/m365/aad/commands/user/user-password-validate.js +42 -0
  13. package/dist/m365/aad/commands.js +3 -0
  14. package/dist/m365/base/M365RcJson.js +3 -0
  15. package/dist/m365/cli/commands/cli-doctor.js +2 -0
  16. package/dist/m365/file/commands/file-add.js +32 -13
  17. package/dist/m365/file/commands/file-list.js +181 -0
  18. package/dist/m365/file/commands.js +2 -1
  19. package/dist/m365/search/commands/externalconnection/externalconnection-add.js +99 -0
  20. package/dist/m365/search/commands.js +7 -0
  21. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006005_CFG_PS_metadata.js +63 -0
  22. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006006_CFG_PS_features.js +60 -0
  23. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.13.1.js +53 -0
  24. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.14.0-beta.4.js +57 -0
  25. package/dist/m365/spfx/commands/project/project-upgrade.js +17 -13
  26. package/dist/m365/spfx/commands/spfx-doctor.js +176 -62
  27. package/dist/m365/spo/commands/contenttype/contenttype-list.js +52 -0
  28. package/dist/m365/spo/commands/list/list-get.js +6 -2
  29. package/dist/m365/spo/commands/page/Page.js +3 -1
  30. package/dist/m365/spo/commands/page/page-add.js +7 -10
  31. package/dist/m365/spo/commands/page/page-set.js +7 -10
  32. package/dist/m365/spo/commands/site/site-remove.js +98 -30
  33. package/dist/m365/spo/commands/web/web-installedlanguage-list.js +48 -0
  34. package/dist/m365/spo/commands.js +3 -1
  35. package/dist/m365/teams/commands/report/report-directroutingcalls.js +1 -1
  36. package/dist/request.js +3 -1
  37. package/docs/docs/cmd/aad/app/app-add.md +11 -0
  38. package/docs/docs/cmd/aad/app/app-get.md +48 -0
  39. package/docs/docs/cmd/aad/o365group/o365group-add.md +1 -0
  40. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-list.md +2 -2
  41. package/docs/docs/cmd/aad/oauth2grant/oauth2grant-remove.md +9 -0
  42. package/docs/docs/cmd/aad/sp/sp-add.md +53 -0
  43. package/docs/docs/cmd/aad/user/user-password-validate.md +29 -0
  44. package/docs/docs/cmd/file/file-add.md +11 -0
  45. package/docs/docs/cmd/file/file-list.md +46 -0
  46. package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +43 -0
  47. package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
  48. package/docs/docs/cmd/spo/contenttype/contenttype-list.md +33 -0
  49. package/docs/docs/cmd/spo/list/list-get.md +9 -0
  50. package/docs/docs/cmd/spo/page/page-add.md +2 -2
  51. package/docs/docs/cmd/spo/page/page-set.md +3 -3
  52. package/docs/docs/cmd/spo/site/site-remove.md +3 -1
  53. package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +24 -0
  54. package/docs/docs/cmd/teams/report/report-directroutingcalls.md +0 -3
  55. package/npm-shrinkwrap.json +1064 -1593
  56. package/package.json +28 -24
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "5.0.0-beta.912792d",
3
+ "version": "5.0.0-beta.c797165",
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 <vipul_kelkar@yahoo.com>",
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>",
@@ -142,6 +143,7 @@
142
143
  "Schot, Albert-Jan <appie@digiwijs.nl>",
143
144
  "Schouten, Robert <robert.schouten@wortell.nl>",
144
145
  "Schütze, Sebastian <sebastian.schuetze@razorspoint.com>",
146
+ "Shafi, Danish <33339824+builtbydans@users.noreply.github.com>",
145
147
  "Shah, Dipen <Dips365@hotmail.com>",
146
148
  "Siatka, Piotr <piotr@valointranet.com>",
147
149
  "Sinha, Kislay <kislay_sinha@outlook.com>",
@@ -153,6 +155,7 @@
153
155
  "Svenson, Mikael <miksvenson@gmail.com>",
154
156
  "Tane, Peter <peter.tane@gmail.come>",
155
157
  "Tatti, Anoop <anoop@live.co.uk>",
158
+ "Thangavel, Sekar <sekar.thangavel@gmail.com>",
156
159
  "Thorild, Fredrik <fredrik.thorild@sogeti.com>",
157
160
  "Trinder, Garry <garry.trinder@live.com>",
158
161
  "Vaghasia, Siddharth <siddh.vaghasia@gmail.com>",
@@ -166,12 +169,13 @@
166
169
  "Wojcik, Adam <adam.wojcik.it@gmail.com>"
167
170
  ],
168
171
  "dependencies": {
169
- "@azure/msal-node": "^1.3.2",
170
- "adaptive-expressions": "^4.14.1",
171
- "adaptivecards-templating": "^2.1.0",
172
+ "@azure/msal-node": "^1.4.0",
173
+ "adaptive-expressions": "^4.15.0",
174
+ "adaptivecards": "^2.10.0",
175
+ "adaptivecards-templating": "^2.2.0",
172
176
  "adm-zip": "^0.5.9",
173
- "applicationinsights": "^2.1.8",
174
- "axios": "^0.22.0",
177
+ "applicationinsights": "^2.2.0",
178
+ "axios": "^0.24.0",
175
179
  "chalk": "^4.1.2",
176
180
  "easy-table": "^1.2.0",
177
181
  "inquirer": "^8.2.0",
@@ -181,41 +185,41 @@
181
185
  "minimist": "^1.2.5",
182
186
  "node-forge": "^0.10.0",
183
187
  "omelette": "^0.4.17",
184
- "open": "^8.3.0",
188
+ "open": "^8.4.0",
185
189
  "semver": "^7.3.4",
186
190
  "strip-json-comments": "^3.1.1",
187
- "typescript": "^4.4.3",
191
+ "typescript": "^4.5.3",
188
192
  "update-notifier": "^5.1.0",
189
193
  "uuid": "^8.3.2",
190
194
  "xmldom": "^0.6.0"
191
195
  },
192
196
  "devDependencies": {
193
- "@microsoft/microsoft-graph-types": "^2.7.0",
197
+ "@microsoft/microsoft-graph-types": "^2.10.0",
194
198
  "@types/adm-zip": "^0.4.34",
195
199
  "@types/inquirer": "^8.1.3",
196
200
  "@types/jmespath": "^0.15.0",
197
201
  "@types/json-to-ast": "^2.1.2",
198
202
  "@types/minimist": "^1.2.2",
199
203
  "@types/mocha": "^9.0.0",
200
- "@types/node": "^14.17.21",
201
- "@types/node-forge": "^0.10.8",
202
- "@types/semver": "^7.3.8",
203
- "@types/sinon": "^10.0.4",
204
+ "@types/node": "^16.11.12",
205
+ "@types/node-forge": "^0.10.10",
206
+ "@types/semver": "^7.3.9",
207
+ "@types/sinon": "^10.0.6",
204
208
  "@types/update-notifier": "^5.1.0",
205
- "@types/uuid": "^8.3.1",
209
+ "@types/uuid": "^8.3.3",
206
210
  "@types/xmldom": "^0.1.31",
207
- "@typescript-eslint/eslint-plugin": "^4.33.0",
208
- "@typescript-eslint/parser": "^4.33.0",
211
+ "@typescript-eslint/eslint-plugin": "^5.6.0",
212
+ "@typescript-eslint/parser": "^5.6.0",
209
213
  "c8": "^7.10.0",
210
214
  "coveralls": "^3.1.1",
211
- "eslint": "^7.32.0",
215
+ "eslint": "^8.4.1",
212
216
  "eslint-config-standard": "^16.0.3",
213
217
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
214
- "eslint-plugin-import": "^2.24.2",
218
+ "eslint-plugin-import": "^2.25.3",
215
219
  "eslint-plugin-node": "^11.1.0",
216
- "eslint-plugin-promise": "^5.1.0",
217
- "mocha": "^9.1.2",
220
+ "eslint-plugin-promise": "^5.2.0",
221
+ "mocha": "^9.1.3",
218
222
  "rimraf": "^3.0.2",
219
- "sinon": "^11.1.2"
223
+ "sinon": "^12.0.1"
220
224
  }
221
225
  }