@pnp/cli-microsoft365 5.0.0-beta.e93174a → 5.0.0-beta.ef2dfe7

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 (47) hide show
  1. package/.devcontainer/devcontainer.json +12 -9
  2. package/.eslintrc.js +1 -0
  3. package/.mocharc.json +9 -0
  4. package/README.md +2 -2
  5. package/dist/Command.js +1 -1
  6. package/dist/api.d.ts +11 -0
  7. package/dist/api.js +17 -0
  8. package/dist/cli/Cli.js +19 -4
  9. package/dist/m365/aad/commands/app/app-add.js +43 -7
  10. package/dist/m365/aad/commands/app/app-delete.js +123 -0
  11. package/dist/m365/aad/commands/app/app-get.js +56 -11
  12. package/dist/m365/aad/commands/app/app-set.js +98 -3
  13. package/dist/m365/aad/commands/group/group-list.js +14 -1
  14. package/dist/m365/aad/commands/o365group/o365group-conversation-list.js +41 -0
  15. package/dist/m365/aad/commands.js +2 -0
  16. package/dist/m365/outlook/commands/room/room-list.js +43 -0
  17. package/dist/m365/outlook/commands/roomlist/roomlist-list.js +25 -0
  18. package/dist/m365/outlook/commands.js +2 -0
  19. package/dist/m365/planner/commands/task/task-get.js +1 -1
  20. package/dist/m365/planner/commands/task/task-list.js +37 -7
  21. package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.14.0-beta.5.js → upgrade-1.14.0.js} +25 -25
  22. package/dist/m365/spfx/commands/project/project-upgrade.js +13 -15
  23. package/dist/m365/spfx/commands/spfx-doctor.js +25 -6
  24. package/dist/m365/spo/commands/group/group-user-add.js +15 -8
  25. package/dist/m365/teams/commands/app/app-install.js +75 -21
  26. package/dist/m365/teams/commands/app/app-update.js +55 -12
  27. package/dist/m365/teams/commands/channel/channel-get.js +29 -7
  28. package/dist/m365/teams/commands/chat/chat-message-send.js +225 -0
  29. package/dist/m365/teams/commands.js +1 -0
  30. package/docs/docs/cmd/aad/app/app-delete.md +51 -0
  31. package/docs/docs/cmd/aad/app/app-get.md +12 -1
  32. package/docs/docs/cmd/aad/app/app-set.md +21 -0
  33. package/docs/docs/cmd/aad/group/group-list.md +9 -0
  34. package/docs/docs/cmd/aad/o365group/o365group-conversation-list.md +24 -0
  35. package/docs/docs/cmd/outlook/room/room-list.md +30 -0
  36. package/docs/docs/cmd/outlook/roomlist/roomlist-list.md +21 -0
  37. package/docs/docs/cmd/planner/task/task-get.md +5 -0
  38. package/docs/docs/cmd/planner/task/task-list.md +5 -0
  39. package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +3 -3
  40. package/docs/docs/cmd/spfx/project/project-upgrade.md +8 -8
  41. package/docs/docs/cmd/spo/group/group-user-add.md +4 -0
  42. package/docs/docs/cmd/teams/app/app-install.md +22 -4
  43. package/docs/docs/cmd/teams/app/app-update.md +12 -3
  44. package/docs/docs/cmd/teams/channel/channel-get.md +10 -1
  45. package/docs/docs/cmd/teams/chat/chat-message-send.md +55 -0
  46. package/npm-shrinkwrap.json +838 -767
  47. package/package.json +23 -18
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "5.0.0-beta.e93174a",
3
+ "version": "5.0.0-beta.ef2dfe7",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
- "main": "./dist/index.js",
6
+ "main": "./dist/api.js",
7
+ "typings": "./dist/api.d.ts",
7
8
  "bin": {
8
9
  "m365": "./dist/index.js",
9
10
  "m365_comp": "./dist/autocomplete.js",
@@ -84,7 +85,9 @@
84
85
  ],
85
86
  "contributors": [
86
87
  "Ågren, Simon <simon.agren@sogeti.com>",
88
+ "Akash Karda <akashkarda@gmail.com>",
87
89
  "Albany, Bruce <bruce.albany@gmail.com>",
90
+ "Auckloo, Reshmee <reshmee011@gmail.com>",
88
91
  "Balasubramaniam, Jayakumar <jayakumar@live.in>",
89
92
  "Bauer, Stefan <stefan.bauer@n8d.at>",
90
93
  "Bernier, Hugo <hugoabernier@live.ca>",
@@ -135,6 +138,7 @@
135
138
  "Patil, Atharva <atharvapatil19202@gmail.com>",
136
139
  "Plenevaux, Yannick <yannick.plenevaux@gmail.com>",
137
140
  "Powney, Mark <powney.mark@outlook.com>",
141
+ "pramod74 <pramod.lumb@gmail.com>",
138
142
  "Priem, Mark <mark.priem@outlook.com>",
139
143
  "Raju, Arnie <arnie.raju@thesolutioncollective.com.au>",
140
144
  "Ramalho, David <dramalho@storm.ie>",
@@ -173,57 +177,58 @@
173
177
  "Wojcik, Adam <adam.wojcik.it@gmail.com>"
174
178
  ],
175
179
  "dependencies": {
176
- "@azure/msal-node": "^1.5.0",
180
+ "@azure/msal-node": "^1.6.0",
177
181
  "@xmldom/xmldom": "^0.7.5",
178
182
  "adaptive-expressions": "^4.15.0",
179
183
  "adaptivecards": "^2.10.0",
180
184
  "adaptivecards-templating": "^2.2.0",
181
185
  "adm-zip": "^0.5.9",
182
- "applicationinsights": "^2.2.0",
183
- "axios": "^0.24.0",
186
+ "applicationinsights": "^2.2.1",
187
+ "axios": "^0.25.0",
184
188
  "chalk": "^4.1.2",
185
189
  "csv-stringify": "^6.0.5",
186
190
  "easy-table": "^1.2.0",
187
191
  "inquirer": "^8.2.0",
188
- "jmespath": "^0.15.0",
192
+ "jmespath": "^0.16.0",
189
193
  "json-to-ast": "^2.1.0",
190
194
  "markshell": "^1.3.8",
191
195
  "minimist": "^1.2.5",
192
- "node-forge": "^1.2.0",
196
+ "node-forge": "^1.2.1",
193
197
  "omelette": "^0.4.17",
194
198
  "open": "^8.4.0",
195
199
  "semver": "^7.3.4",
196
200
  "strip-json-comments": "^3.1.1",
197
- "typescript": "^4.5.4",
201
+ "typescript": "^4.5.5",
198
202
  "update-notifier": "^5.1.0",
199
203
  "uuid": "^8.3.2"
200
204
  },
201
205
  "devDependencies": {
202
- "@microsoft/microsoft-graph-types": "^2.11.0",
206
+ "@microsoft/microsoft-graph-types": "^2.13.0",
203
207
  "@types/adm-zip": "^0.4.34",
204
- "@types/inquirer": "^8.1.3",
208
+ "@types/inquirer": "^8.2.0",
205
209
  "@types/jmespath": "^0.15.0",
206
210
  "@types/json-to-ast": "^2.1.2",
207
211
  "@types/minimist": "^1.2.2",
208
- "@types/mocha": "^9.0.0",
209
- "@types/node": "^16.11.19",
212
+ "@types/mocha": "^9.1.0",
213
+ "@types/node": "^16.11.22",
210
214
  "@types/node-forge": "^1.0.0",
211
215
  "@types/semver": "^7.3.9",
212
- "@types/sinon": "^10.0.6",
216
+ "@types/sinon": "^10.0.11",
213
217
  "@types/update-notifier": "^5.1.0",
214
218
  "@types/uuid": "^8.3.4",
215
- "@typescript-eslint/eslint-plugin": "^5.9.0",
216
- "@typescript-eslint/parser": "^5.9.0",
219
+ "@typescript-eslint/eslint-plugin": "^5.11.0",
220
+ "@typescript-eslint/parser": "^5.11.0",
217
221
  "c8": "^7.11.0",
218
222
  "coveralls": "^3.1.1",
219
- "eslint": "^8.6.0",
223
+ "eslint": "^8.8.0",
220
224
  "eslint-config-standard": "^16.0.3",
221
225
  "eslint-plugin-cli-microsoft365": "file:eslint-rules",
222
226
  "eslint-plugin-import": "^2.25.4",
223
227
  "eslint-plugin-node": "^11.1.0",
224
228
  "eslint-plugin-promise": "^6.0.0",
225
- "mocha": "^9.1.3",
229
+ "mocha": "^9.2.0",
226
230
  "rimraf": "^3.0.2",
227
- "sinon": "^12.0.1"
231
+ "sinon": "^13.0.1",
232
+ "source-map-support": "^0.5.21"
228
233
  }
229
234
  }