@pnp/cli-microsoft365 11.6.0-beta.bc374af → 11.7.0-beta.293104a

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 (34) hide show
  1. package/.devcontainer/Dockerfile +0 -1
  2. package/Dockerfile +0 -1
  3. package/allCommands.json +1 -1
  4. package/allCommandsFull.json +1 -1
  5. package/dist/config.js +1 -0
  6. package/dist/m365/entra/commands/user/user-license-add.js +2 -1
  7. package/dist/m365/entra/commands/user/user-license-list.js +4 -9
  8. package/dist/m365/entra/commands/user/user-license-remove.js +2 -1
  9. package/dist/m365/outlook/commands/calendar/calendar-add.js +85 -0
  10. package/dist/m365/outlook/commands/calendar/calendar-get.js +71 -0
  11. package/dist/m365/outlook/commands/calendar/calendar-remove.js +100 -0
  12. package/dist/m365/outlook/commands/event/event-cancel.js +103 -0
  13. package/dist/m365/outlook/commands/event/event-list.js +115 -0
  14. package/dist/m365/outlook/commands/event/event-remove.js +104 -0
  15. package/dist/m365/outlook/commands.js +6 -0
  16. package/dist/m365/teams/commands/chat/chat-message-list.js +43 -4
  17. package/dist/utils/calendar.js +37 -0
  18. package/dist/utils/calendarGroup.js +22 -0
  19. package/dist/utils/entraApp.js +9 -2
  20. package/docs/docs/cmd/entra/license/license-list.mdx +19 -0
  21. package/docs/docs/cmd/entra/m365group/m365group-conversation-list.mdx +19 -0
  22. package/docs/docs/cmd/entra/m365group/m365group-conversation-post-list.mdx +19 -0
  23. package/docs/docs/cmd/entra/user/user-license-add.mdx +19 -0
  24. package/docs/docs/cmd/entra/user/user-license-list.mdx +18 -1
  25. package/docs/docs/cmd/entra/user/user-license-remove.mdx +21 -0
  26. package/docs/docs/cmd/outlook/calendar/calendar-add.mdx +165 -0
  27. package/docs/docs/cmd/outlook/calendar/calendar-get.mdx +165 -0
  28. package/docs/docs/cmd/outlook/calendar/calendar-remove.mdx +86 -0
  29. package/docs/docs/cmd/outlook/event/event-cancel.mdx +85 -0
  30. package/docs/docs/cmd/outlook/event/event-list.mdx +245 -0
  31. package/docs/docs/cmd/outlook/event/event-remove.mdx +85 -0
  32. package/docs/docs/cmd/teams/chat/chat-message-list.mdx +23 -2
  33. package/npm-shrinkwrap.json +322 -306
  34. package/package.json +32 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "11.6.0-beta.bc374af",
3
+ "version": "11.7.0-beta.293104a",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -87,11 +87,6 @@
87
87
  "email": "appie@digiwijs.nl",
88
88
  "web": "https://www.cloudappie.nl/"
89
89
  },
90
- {
91
- "name": "Arjun Menon",
92
- "email": "arjun.umenon@gmail.com",
93
- "web": "https://arjunumenon.com/"
94
- },
95
90
  {
96
91
  "name": "Adam Wojcik",
97
92
  "email": "adam.wojcik.it@gmail.com",
@@ -270,28 +265,40 @@
270
265
  "Wojcik, Adam <adam.wojcik.it@gmail.com>",
271
266
  "Zachariassen Laksafoss, Trygvi <trygvi.laksafoss@gmail.com>"
272
267
  ],
268
+ "overrides": {
269
+ "adaptive-expressions": {
270
+ "fast-xml-parser": "5.5.10"
271
+ },
272
+ "adaptivecards": {
273
+ "swiper": "12.1.3"
274
+ },
275
+ "mocha": {
276
+ "diff": "8.0.4",
277
+ "serialize-javascript": "7.0.5"
278
+ }
279
+ },
273
280
  "dependencies": {
274
- "@azure/msal-common": "^16.2.0",
275
- "@azure/msal-node": "^5.0.6",
276
- "@inquirer/confirm": "^6.0.8",
277
- "@inquirer/input": "^5.0.8",
278
- "@inquirer/select": "^5.1.0",
279
- "@xmldom/xmldom": "^0.9.8",
281
+ "@azure/msal-common": "^16.4.1",
282
+ "@azure/msal-node": "^5.1.2",
283
+ "@inquirer/confirm": "^6.0.10",
284
+ "@inquirer/input": "^5.0.10",
285
+ "@inquirer/select": "^5.1.2",
286
+ "@xmldom/xmldom": "^0.9.9",
280
287
  "adaptive-expressions": "^4.23.3",
281
288
  "adaptivecards": "^3.0.5",
282
289
  "adaptivecards-templating": "^2.3.1",
283
- "adm-zip": "^0.5.16",
290
+ "adm-zip": "^0.5.17",
284
291
  "applicationinsights": "^3.14.0",
285
- "axios": "^1.13.6",
292
+ "axios": "^1.14.0",
286
293
  "chalk": "^5.6.2",
287
294
  "clipboardy": "^5.3.1",
288
295
  "configstore": "^8.0.0",
289
- "csv-parse": "^6.1.0",
290
- "csv-stringify": "^6.6.0",
296
+ "csv-parse": "^6.2.1",
297
+ "csv-stringify": "^6.7.0",
291
298
  "easy-table": "^1.2.0",
292
299
  "jmespath": "^0.16.0",
293
300
  "json-to-ast": "^2.1.0",
294
- "node-forge": "^1.3.3",
301
+ "node-forge": "^1.4.0",
295
302
  "omelette": "^0.4.17",
296
303
  "open": "^11.0.0",
297
304
  "semver": "^7.7.4",
@@ -299,7 +306,7 @@
299
306
  "typescript": "^5.9.3",
300
307
  "update-notifier": "^7.3.1",
301
308
  "uuid": "^13.0.0",
302
- "yaml": "^2.8.2",
309
+ "yaml": "^2.8.3",
303
310
  "yargs-parser": "^22.0.0",
304
311
  "zod": "^4.3.6"
305
312
  },
@@ -307,13 +314,13 @@
307
314
  "@actions/core": "^3.0.0",
308
315
  "@eslint/js": "^10.0.1",
309
316
  "@microsoft/microsoft-graph-types": "^2.43.1",
310
- "@stylistic/eslint-plugin": "^5.9.0",
311
- "@types/adm-zip": "^0.5.7",
317
+ "@stylistic/eslint-plugin": "^5.10.0",
318
+ "@types/adm-zip": "^0.5.8",
312
319
  "@types/jmespath": "^0.15.2",
313
320
  "@types/json-schema": "^7.0.15",
314
321
  "@types/json-to-ast": "^2.1.4",
315
322
  "@types/mocha": "^10.0.10",
316
- "@types/node": "^24.11.0",
323
+ "@types/node": "^24.12.0",
317
324
  "@types/node-forge": "^1.3.14",
318
325
  "@types/omelette": "^0.4.5",
319
326
  "@types/semver": "^7.7.1",
@@ -321,15 +328,15 @@
321
328
  "@types/update-notifier": "^6.0.8",
322
329
  "@types/uuid": "^10.0.0",
323
330
  "@types/yargs-parser": "^21.0.3",
324
- "@typescript-eslint/eslint-plugin": "^8.56.1",
325
- "@typescript-eslint/parser": "^8.46.4",
331
+ "@typescript-eslint/eslint-plugin": "^8.58.0",
332
+ "@typescript-eslint/parser": "^8.58.0",
326
333
  "c8": "^11.0.0",
327
- "eslint": "^10.0.2",
334
+ "eslint": "^10.1.0",
328
335
  "eslint-plugin-mocha": "^11.2.0",
329
336
  "globals": "^17.4.0",
330
337
  "mocha": "^11.7.5",
331
338
  "rimraf": "^6.1.3",
332
- "sinon": "^21.0.1",
339
+ "sinon": "^21.0.3",
333
340
  "source-map-support": "^0.5.21",
334
341
  "tsc-watch": "^7.2.0"
335
342
  }