@pnp/cli-microsoft365 5.1.0 → 5.2.0-beta.4df87d9
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/.mocharc.json +1 -0
- package/dist/Auth.js +2 -1
- package/dist/Command.js +10 -1
- package/dist/cli/Cli.js +2 -18
- package/dist/m365/app/commands/app-get.js +3 -0
- package/dist/m365/cli/commands/cli-reconsent.js +20 -2
- package/dist/m365/cli/commands/config/config-set.js +1 -0
- package/dist/m365/pp/commands/environment/environment-list.js +57 -0
- package/dist/m365/pp/commands.js +1 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +4 -1
- package/dist/m365/spo/commands/file/file-checkout.js +2 -2
- package/dist/m365/spo/commands/site/site-remove.js +4 -3
- package/dist/m365/spo/commands/tenant/tenant-recyclebinitem-restore.js +10 -44
- package/dist/m365/spo/commands/tenant/tenant-settings-set.js +21 -0
- package/dist/m365/teams/commands/channel/channel-add.js +44 -14
- package/dist/m365/teams/commands/channel/channel-list.js +11 -1
- package/dist/m365/teams/commands/channel/channel-member-set.js +203 -0
- package/dist/m365/teams/commands/channel/channel-membership-list.js +150 -0
- package/dist/m365/teams/commands/chat/chat-get.js +143 -0
- package/dist/m365/teams/commands/chat/chat-message-send.js +5 -30
- package/dist/m365/teams/commands/chat/chatUtil.js +62 -0
- package/dist/m365/teams/commands.js +3 -0
- package/dist/settingsNames.js +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/md.js +81 -0
- package/docs/docs/cmd/pp/environment/environment-list.md +37 -0
- package/docs/docs/cmd/spo/tenant/tenant-settings-set.md +52 -33
- package/docs/docs/cmd/teams/channel/channel-add.md +18 -0
- package/docs/docs/cmd/teams/channel/channel-list.md +11 -2
- package/docs/docs/cmd/teams/channel/channel-member-set.md +51 -0
- package/docs/docs/cmd/teams/channel/channel-membership-list.md +48 -0
- package/docs/docs/cmd/teams/chat/chat-get.md +53 -0
- package/npm-shrinkwrap.json +24 -738
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0-beta.4df87d9",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"test": "npm run test:version && npm run lint && npm run test:cov",
|
|
26
26
|
"test:version": "node scripts/check-version.js",
|
|
27
27
|
"test:cov": "c8 npm run test:test",
|
|
28
|
-
"test:test": "mocha
|
|
28
|
+
"test:test": "mocha",
|
|
29
29
|
"lint": "eslint --ext .ts src"
|
|
30
30
|
},
|
|
31
31
|
"keywords": [
|
|
@@ -193,7 +193,6 @@
|
|
|
193
193
|
"inquirer": "^8.2.0",
|
|
194
194
|
"jmespath": "^0.16.0",
|
|
195
195
|
"json-to-ast": "^2.1.0",
|
|
196
|
-
"markshell": "^1.3.8",
|
|
197
196
|
"minimist": "^1.2.5",
|
|
198
197
|
"node-forge": "^1.2.1",
|
|
199
198
|
"omelette": "^0.4.17",
|
|
@@ -233,4 +232,4 @@
|
|
|
233
232
|
"sinon": "^13.0.1",
|
|
234
233
|
"source-map-support": "^0.5.21"
|
|
235
234
|
}
|
|
236
|
-
}
|
|
235
|
+
}
|