@pnp/cli-microsoft365 11.7.0-beta.b67a258 → 11.7.0-beta.b9f508d
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/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/config.js +1 -0
- package/dist/m365/entra/commands/user/user-license-add.js +2 -1
- package/dist/m365/entra/commands/user/user-license-list.js +4 -9
- package/dist/m365/entra/commands/user/user-license-remove.js +2 -1
- package/dist/m365/outlook/commands/calendar/calendar-add.js +85 -0
- package/dist/m365/outlook/commands/calendar/calendar-get.js +71 -0
- package/dist/m365/outlook/commands/calendar/calendar-remove.js +100 -0
- package/dist/m365/outlook/commands/event/event-cancel.js +103 -0
- package/dist/m365/outlook/commands/event/event-list.js +115 -0
- package/dist/m365/outlook/commands/event/event-remove.js +104 -0
- package/dist/m365/outlook/commands.js +6 -0
- package/dist/m365/spfx/commands/SpfxCompatibilityMatrix.js +628 -0
- package/dist/m365/spfx/commands/project/DeployWorkflow.js +2 -2
- package/dist/m365/spfx/commands/project/project-azuredevops-pipeline-add.js +13 -1
- package/dist/m365/spfx/commands/project/project-github-workflow-add.js +16 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +5 -631
- package/dist/m365/teams/commands/chat/chat-message-list.js +43 -4
- package/dist/utils/calendar.js +37 -0
- package/dist/utils/calendarGroup.js +22 -0
- package/dist/utils/entraApp.js +9 -2
- package/dist/utils/spfx.js +59 -0
- package/docs/docs/cmd/entra/license/license-list.mdx +19 -0
- package/docs/docs/cmd/entra/m365group/m365group-conversation-list.mdx +19 -0
- package/docs/docs/cmd/entra/m365group/m365group-conversation-post-list.mdx +19 -0
- package/docs/docs/cmd/entra/user/user-license-add.mdx +19 -0
- package/docs/docs/cmd/entra/user/user-license-list.mdx +18 -1
- package/docs/docs/cmd/entra/user/user-license-remove.mdx +21 -0
- package/docs/docs/cmd/outlook/calendar/calendar-add.mdx +165 -0
- package/docs/docs/cmd/outlook/calendar/calendar-get.mdx +165 -0
- package/docs/docs/cmd/outlook/calendar/calendar-remove.mdx +86 -0
- package/docs/docs/cmd/outlook/event/event-cancel.mdx +85 -0
- package/docs/docs/cmd/outlook/event/event-list.mdx +245 -0
- package/docs/docs/cmd/outlook/event/event-remove.mdx +85 -0
- package/docs/docs/cmd/teams/chat/chat-message-list.mdx +23 -2
- package/npm-shrinkwrap.json +0 -7
- package/package.json +2 -1
|
@@ -18,8 +18,17 @@ m365 teams chat message list [options]
|
|
|
18
18
|
`-i, --chatId <chatId>`
|
|
19
19
|
: The ID of the chat conversation.
|
|
20
20
|
|
|
21
|
-
`--
|
|
21
|
+
`--createdEndDateTime [createdEndDateTime]`
|
|
22
22
|
: Time indicating the exclusive end of a time range when the message was created.
|
|
23
|
+
|
|
24
|
+
`--endDateTime [endDateTime]`
|
|
25
|
+
: (deprecated. Use `createdEndDateTime` instead) Time indicating the exclusive end of a time range when the message was created.
|
|
26
|
+
|
|
27
|
+
`--modifiedStartDateTime [modifiedStartDateTime]`
|
|
28
|
+
: Time indicating the inclusive start of a time range when the message was last modified. Cannot be combined with `createdEndDateTime`.
|
|
29
|
+
|
|
30
|
+
`--modifiedEndDateTime [modifiedEndDateTime]`
|
|
31
|
+
: Time indicating the exclusive end of a time range when the message was last modified. Cannot be combined with `createdEndDateTime`.
|
|
23
32
|
```
|
|
24
33
|
|
|
25
34
|
<Global />
|
|
@@ -54,7 +63,19 @@ m365 teams chat message list --chatId 19:2da4c29f6d7041eca70b638b43d45437@thread
|
|
|
54
63
|
List messages from a Microsoft Teams chat conversation created before November 1, 2022
|
|
55
64
|
|
|
56
65
|
```sh
|
|
57
|
-
m365 teams chat message list --chatId 19:2da4c29f6d7041eca70b638b43d45437@thread.v2 --
|
|
66
|
+
m365 teams chat message list --chatId 19:2da4c29f6d7041eca70b638b43d45437@thread.v2 --createdEndDateTime 2022-11-01T00:00:00Z
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
List messages from a Microsoft Teams chat conversation modified after October 1, 2025
|
|
70
|
+
|
|
71
|
+
```sh
|
|
72
|
+
m365 teams chat message list --chatId 19:2da4c29f6d7041eca70b638b43d45437@thread.v2 --modifiedStartDateTime 2025-10-01T00:00:00Z
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
List messages from a Microsoft Teams chat conversation modified between October 1, 2025 and November 1, 2025
|
|
76
|
+
|
|
77
|
+
```sh
|
|
78
|
+
m365 teams chat message list --chatId 19:2da4c29f6d7041eca70b638b43d45437@thread.v2 --modifiedStartDateTime 2025-10-01T00:00:00Z --modifiedEndDateTime 2025-11-01T00:00:00Z
|
|
58
79
|
```
|
|
59
80
|
|
|
60
81
|
## Response
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1129,7 +1129,6 @@
|
|
|
1129
1129
|
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz",
|
|
1130
1130
|
"integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==",
|
|
1131
1131
|
"license": "Apache-2.0",
|
|
1132
|
-
"peer": true,
|
|
1133
1132
|
"engines": {
|
|
1134
1133
|
"node": ">=8.0.0"
|
|
1135
1134
|
}
|
|
@@ -2831,7 +2830,6 @@
|
|
|
2831
2830
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz",
|
|
2832
2831
|
"integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
|
|
2833
2832
|
"license": "MIT",
|
|
2834
|
-
"peer": true,
|
|
2835
2833
|
"dependencies": {
|
|
2836
2834
|
"undici-types": "~7.16.0"
|
|
2837
2835
|
}
|
|
@@ -2975,7 +2973,6 @@
|
|
|
2975
2973
|
"integrity": "sha512-rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==",
|
|
2976
2974
|
"dev": true,
|
|
2977
2975
|
"license": "MIT",
|
|
2978
|
-
"peer": true,
|
|
2979
2976
|
"dependencies": {
|
|
2980
2977
|
"@typescript-eslint/scope-manager": "8.58.0",
|
|
2981
2978
|
"@typescript-eslint/types": "8.58.0",
|
|
@@ -3241,7 +3238,6 @@
|
|
|
3241
3238
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
|
|
3242
3239
|
"integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
|
|
3243
3240
|
"license": "MIT",
|
|
3244
|
-
"peer": true,
|
|
3245
3241
|
"bin": {
|
|
3246
3242
|
"acorn": "bin/acorn"
|
|
3247
3243
|
},
|
|
@@ -4154,7 +4150,6 @@
|
|
|
4154
4150
|
"resolved": "https://registry.npmjs.org/diagnostic-channel/-/diagnostic-channel-1.1.1.tgz",
|
|
4155
4151
|
"integrity": "sha512-r2HV5qFkUICyoaKlBEpLKHjxMXATUf/l+h8UZPGBHGLy4DDiY2sOLcIctax4eRnTw5wH2jTMExLntGPJ8eOJxw==",
|
|
4156
4152
|
"license": "MIT",
|
|
4157
|
-
"peer": true,
|
|
4158
4153
|
"dependencies": {
|
|
4159
4154
|
"semver": "^7.5.3"
|
|
4160
4155
|
}
|
|
@@ -4349,7 +4344,6 @@
|
|
|
4349
4344
|
"integrity": "sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==",
|
|
4350
4345
|
"dev": true,
|
|
4351
4346
|
"license": "MIT",
|
|
4352
|
-
"peer": true,
|
|
4353
4347
|
"dependencies": {
|
|
4354
4348
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
4355
4349
|
"@eslint-community/regexpp": "^4.12.2",
|
|
@@ -7508,7 +7502,6 @@
|
|
|
7508
7502
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
7509
7503
|
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
7510
7504
|
"license": "Apache-2.0",
|
|
7511
|
-
"peer": true,
|
|
7512
7505
|
"bin": {
|
|
7513
7506
|
"tsc": "bin/tsc",
|
|
7514
7507
|
"tsserver": "bin/tsserver"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "11.7.0-beta.
|
|
3
|
+
"version": "11.7.0-beta.b9f508d",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -253,6 +253,7 @@
|
|
|
253
253
|
"van Brug, Herco <hercovanbrug@hotmail.com>",
|
|
254
254
|
"Van de Voorde, Tim <tim.vdv1995@hotmail.com>",
|
|
255
255
|
"van Dijk, Mark <mark@ichicraft.com>",
|
|
256
|
+
"Van Horn, Matt <mvanhorn@users.noreply.github.com>",
|
|
256
257
|
"van Hunen, Erwin <erwin.van.hunen@outlook.com>",
|
|
257
258
|
"van Iersel, Cas <cvaniersel@portiva.nl>",
|
|
258
259
|
"van Rousselt, Rick <rick.vanrousselt@outlook.com>",
|