@pnp/cli-microsoft365 5.1.0-beta.c8f5fd7 → 5.1.0-beta.efdacec
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/.eslintrc.js +1 -0
- package/dist/cli/index.js +5 -1
- package/dist/m365/aad/commands/app/app-add.js +68 -10
- package/dist/m365/aad/commands/app/app-role-delete.js +1 -1
- package/dist/m365/base/PowerPlatformCommand.js +10 -0
- package/dist/m365/pp/commands/managementapp/managementapp-add.js +98 -0
- package/dist/m365/pp/commands.js +7 -0
- package/dist/m365/spfx/commands/project/model/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-externalize/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-externalize/rules/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-upgrade/index.js +5 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN001033_DEP_tslib.js +14 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN023002_GITIGNORE_heft.js +40 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.15.0-beta.1.js +63 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +24 -19
- package/dist/m365/spo/commands/site/site-recyclebinitem-restore.js +66 -0
- package/dist/m365/spo/commands.js +1 -0
- package/dist/m365/teams/commands/chat/chat-message-send.js +50 -58
- package/dist/utils/formatting.js +3 -0
- package/dist/utils/index.js +5 -1
- package/docs/docs/cmd/pp/managementapp/managementapp-add.md +50 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/site/site-recyclebinitem-restore.md +27 -0
- package/docs/docs/cmd/teams/chat/chat-message-send.md +4 -4
- package/npm-shrinkwrap.json +173 -188
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "5.1.0-beta.
|
|
3
|
+
"version": "5.1.0-beta.efdacec",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -183,8 +183,8 @@
|
|
|
183
183
|
"adaptivecards": "^2.10.0",
|
|
184
184
|
"adaptivecards-templating": "^2.2.0",
|
|
185
185
|
"adm-zip": "^0.5.9",
|
|
186
|
-
"applicationinsights": "^2.2.
|
|
187
|
-
"axios": "^0.
|
|
186
|
+
"applicationinsights": "^2.2.2",
|
|
187
|
+
"axios": "^0.26.0",
|
|
188
188
|
"chalk": "^4.1.2",
|
|
189
189
|
"csv-stringify": "^6.0.5",
|
|
190
190
|
"easy-table": "^1.2.0",
|
|
@@ -198,35 +198,35 @@
|
|
|
198
198
|
"open": "^8.4.0",
|
|
199
199
|
"semver": "^7.3.4",
|
|
200
200
|
"strip-json-comments": "^3.1.1",
|
|
201
|
-
"typescript": "^4.
|
|
201
|
+
"typescript": "^4.6.2",
|
|
202
202
|
"update-notifier": "^5.1.0",
|
|
203
203
|
"uuid": "^8.3.2"
|
|
204
204
|
},
|
|
205
205
|
"devDependencies": {
|
|
206
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
206
|
+
"@microsoft/microsoft-graph-types": "^2.16.0",
|
|
207
207
|
"@types/adm-zip": "^0.4.34",
|
|
208
208
|
"@types/inquirer": "^8.2.0",
|
|
209
209
|
"@types/jmespath": "^0.15.0",
|
|
210
210
|
"@types/json-to-ast": "^2.1.2",
|
|
211
211
|
"@types/minimist": "^1.2.2",
|
|
212
212
|
"@types/mocha": "^9.1.0",
|
|
213
|
-
"@types/node": "^16.11.
|
|
213
|
+
"@types/node": "^16.11.26",
|
|
214
214
|
"@types/node-forge": "^1.0.0",
|
|
215
215
|
"@types/semver": "^7.3.9",
|
|
216
216
|
"@types/sinon": "^10.0.11",
|
|
217
217
|
"@types/update-notifier": "^5.1.0",
|
|
218
218
|
"@types/uuid": "^8.3.4",
|
|
219
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
220
|
-
"@typescript-eslint/parser": "^5.
|
|
219
|
+
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
|
220
|
+
"@typescript-eslint/parser": "^5.13.0",
|
|
221
221
|
"c8": "^7.11.0",
|
|
222
222
|
"coveralls": "^3.1.1",
|
|
223
|
-
"eslint": "^8.
|
|
223
|
+
"eslint": "^8.10.0",
|
|
224
224
|
"eslint-config-standard": "^16.0.3",
|
|
225
225
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
226
226
|
"eslint-plugin-import": "^2.25.4",
|
|
227
227
|
"eslint-plugin-node": "^11.1.0",
|
|
228
228
|
"eslint-plugin-promise": "^6.0.0",
|
|
229
|
-
"mocha": "^9.2.
|
|
229
|
+
"mocha": "^9.2.1",
|
|
230
230
|
"rimraf": "^3.0.2",
|
|
231
231
|
"sinon": "^13.0.1",
|
|
232
232
|
"source-map-support": "^0.5.21"
|