@pnp/cli-microsoft365 11.5.0-beta.960ec81 → 11.5.0-beta.d906a19

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 (32) hide show
  1. package/.devproxy/api-specs/sharepoint.yaml +16 -0
  2. package/allCommands.json +1 -1
  3. package/allCommandsFull.json +1 -1
  4. package/dist/m365/spfx/commands/project/project-doctor/doctor-1.22.2.js +21 -0
  5. package/dist/m365/spfx/commands/project/project-doctor.js +2 -1
  6. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.22.2.js +55 -0
  7. package/dist/m365/spfx/commands/project/project-upgrade.js +3 -2
  8. package/dist/m365/spfx/commands/spfx-doctor.js +23 -8
  9. package/dist/m365/spo/commands/brandcenter/brandcenter-settings-list.js +39 -0
  10. package/dist/m365/spo/commands/site/site-hubsite-connect.js +26 -30
  11. package/dist/m365/spo/commands/site/site-hubsite-disconnect.js +26 -28
  12. package/dist/m365/spo/commands.js +1 -0
  13. package/dist/m365/teams/commands/callrecord/callrecord-get.js +52 -0
  14. package/dist/m365/teams/commands.js +1 -0
  15. package/docs/docs/cmd/graph/openextension/openextension-add.mdx +18 -0
  16. package/docs/docs/cmd/graph/openextension/openextension-get.mdx +18 -0
  17. package/docs/docs/cmd/graph/openextension/openextension-list.mdx +18 -0
  18. package/docs/docs/cmd/graph/openextension/openextension-remove.mdx +18 -0
  19. package/docs/docs/cmd/graph/openextension/openextension-set.mdx +18 -0
  20. package/docs/docs/cmd/outlook/message/message-get.mdx +19 -0
  21. package/docs/docs/cmd/outlook/message/message-list.mdx +19 -0
  22. package/docs/docs/cmd/outlook/message/message-move.mdx +21 -0
  23. package/docs/docs/cmd/outlook/message/message-remove.mdx +21 -0
  24. package/docs/docs/cmd/spfx/project/project-upgrade.mdx +1 -1
  25. package/docs/docs/cmd/spo/brandcenter/brandcenter-settings-list.mdx +151 -0
  26. package/docs/docs/cmd/spo/site/site-hubsite-connect.mdx +32 -2
  27. package/docs/docs/cmd/spo/site/site-hubsite-disconnect.mdx +32 -2
  28. package/docs/docs/cmd/teams/callrecord/callrecord-get.mdx +493 -0
  29. package/docs/docs/cmd/teams/callrecord/callrecord-list.mdx +16 -5
  30. package/eslint.config.mjs +2 -0
  31. package/npm-shrinkwrap.json +1215 -380
  32. package/package.json +15 -15
@@ -0,0 +1,493 @@
1
+ import Global from '/docs/cmd/_global.mdx';
2
+ import Tabs from '@theme/Tabs';
3
+ import TabItem from '@theme/TabItem';
4
+
5
+ # teams callrecord get
6
+
7
+ Gets a specific Teams call
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ m365 teams callrecord get [options]
13
+ ```
14
+
15
+ ## Options
16
+
17
+ ```md definition-list
18
+ `-i, --id <id>`
19
+ : ID of the call record.
20
+ ```
21
+
22
+ <Global />
23
+
24
+ ## Remarks
25
+
26
+ :::note
27
+
28
+ It is only possible to retrieve call records from the past 30 days.
29
+
30
+ :::
31
+
32
+ ## Permissions
33
+
34
+ <Tabs>
35
+ <TabItem value="Delegated">
36
+
37
+ This command does not support delegated permissions.
38
+
39
+ </TabItem>
40
+ <TabItem value="Application">
41
+
42
+ | Resource | Permissions |
43
+ |-----------------|----------------------------------|
44
+ | Microsoft Graph | CallRecords.Read.All |
45
+
46
+ </TabItem>
47
+ </Tabs>
48
+
49
+ ## Examples
50
+
51
+ Get a specific call record
52
+
53
+ ```sh
54
+ m365 teams callrecord get --id e523d2ed-2966-4b6b-925b-754a88034cc5
55
+ ```
56
+
57
+ ## Response
58
+
59
+ <Tabs>
60
+ <TabItem value="JSON">
61
+
62
+ ```json
63
+ {
64
+ "id": "e523d2ed-2966-4b6b-925b-754a88034cc5",
65
+ "version": 1,
66
+ "type": "groupCall",
67
+ "modalities": [
68
+ "audio"
69
+ ],
70
+ "lastModifiedDateTime": "2025-08-15T12:54:59.8917461Z",
71
+ "startDateTime": "2025-08-15T12:23:32.922748Z",
72
+ "endDateTime": "2025-08-15T12:28:26.0904416Z",
73
+ "joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_MGU5Mjk3MjgtMjMyZS00ZGEzLTk2YjktZGNlMTc4NjljMmYz%40thread.v2/0?context=%7b%22Tid%22%3a%229d66187e-13f0-4666-9bac-be67ddd4b676%22%2c%22Oid%22%3a%2242559007-03c6-42c8-971f-cb79fd381a5a%22%7d",
74
+ "organizer": {
75
+ "acsUser": null,
76
+ "spoolUser": null,
77
+ "phone": null,
78
+ "guest": null,
79
+ "encrypted": null,
80
+ "onPremises": null,
81
+ "acsApplicationInstance": null,
82
+ "spoolApplicationInstance": null,
83
+ "applicationInstance": null,
84
+ "application": null,
85
+ "device": null,
86
+ "user": {
87
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
88
+ "displayName": "John Doe",
89
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676"
90
+ }
91
+ },
92
+ "participants": [
93
+ {
94
+ "acsUser": null,
95
+ "spoolUser": null,
96
+ "phone": null,
97
+ "guest": null,
98
+ "encrypted": null,
99
+ "onPremises": null,
100
+ "acsApplicationInstance": null,
101
+ "spoolApplicationInstance": null,
102
+ "applicationInstance": null,
103
+ "application": null,
104
+ "device": null,
105
+ "user": {
106
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
107
+ "displayName": "John Doe",
108
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676"
109
+ }
110
+ }
111
+ ],
112
+ "organizer_v2": {
113
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
114
+ "identity": {
115
+ "endpointType": null,
116
+ "acsUser": null,
117
+ "spoolUser": null,
118
+ "phone": null,
119
+ "guest": null,
120
+ "encrypted": null,
121
+ "onPremises": null,
122
+ "acsApplicationInstance": null,
123
+ "spoolApplicationInstance": null,
124
+ "applicationInstance": null,
125
+ "application": null,
126
+ "device": null,
127
+ "azureCommunicationServicesUser": null,
128
+ "assertedIdentity": null,
129
+ "user": {
130
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
131
+ "displayName": "John Doe",
132
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676",
133
+ "userPrincipalName": "john.doe@contoso.com"
134
+ }
135
+ },
136
+ "administrativeUnitInfos": [
137
+ {
138
+ "id": "6d3eb178-988b-430b-974f-1254113e4522"
139
+ }
140
+ ]
141
+ },
142
+ "sessions": [
143
+ {
144
+ "id": "4181f0b0-bbc5-4ff3-ad07-8a496bcada10",
145
+ "modalities": [
146
+ "audio"
147
+ ],
148
+ "startDateTime": "2025-08-15T12:23:32.922748Z",
149
+ "endDateTime": "2025-08-15T12:28:26.0904416Z",
150
+ "isTest": false,
151
+ "failureInfo": null,
152
+ "caller": {
153
+ "name": "JOHNDOE-PC",
154
+ "cpuName": "12th Gen Intel(R) Core(TM) i9-12900H",
155
+ "cpuCoresCount": 14,
156
+ "cpuProcessorSpeedInMhz": 1800,
157
+ "userAgent": {
158
+ "headerValue": "releases/CL2025.R25",
159
+ "applicationVersion": null,
160
+ "platform": "windows",
161
+ "productFamily": "teams",
162
+ "communicationServiceId": null,
163
+ "azureADAppId": null
164
+ },
165
+ "identity": {
166
+ "acsUser": null,
167
+ "spoolUser": null,
168
+ "phone": null,
169
+ "guest": null,
170
+ "encrypted": null,
171
+ "onPremises": null,
172
+ "acsApplicationInstance": null,
173
+ "spoolApplicationInstance": null,
174
+ "applicationInstance": null,
175
+ "application": null,
176
+ "device": null,
177
+ "user": {
178
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
179
+ "displayName": "John Doe",
180
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676"
181
+ }
182
+ },
183
+ "associatedIdentity": {
184
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
185
+ "displayName": "John Doe",
186
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676",
187
+ "userPrincipalName": "john.doe@contoso.com"
188
+ },
189
+ "feedback": {
190
+ "text": null,
191
+ "rating": "notRated",
192
+ "tokens": {}
193
+ }
194
+ },
195
+ "callee": {
196
+ "userAgent": {
197
+ "headerValue": null,
198
+ "applicationVersion": null,
199
+ "platform": "unknown",
200
+ "productFamily": "unknown",
201
+ "communicationServiceId": null,
202
+ "azureADAppId": null
203
+ }
204
+ },
205
+ "segments": [
206
+ {
207
+ "id": "4181f0b0-bbc5-4ff3-ad07-8a496bcada10",
208
+ "startDateTime": "2025-08-15T12:23:32.922748Z",
209
+ "endDateTime": "2025-08-15T12:28:26.0904416Z",
210
+ "failureInfo": null,
211
+ "caller": {
212
+ "name": "JOHNDOE-PC",
213
+ "cpuName": "12th Gen Intel(R) Core(TM) i9-12900H",
214
+ "cpuCoresCount": 14,
215
+ "cpuProcessorSpeedInMhz": 1800,
216
+ "userAgent": {
217
+ "headerValue": "releases/CL2025.R25",
218
+ "applicationVersion": null,
219
+ "platform": "windows",
220
+ "productFamily": "teams",
221
+ "communicationServiceId": null,
222
+ "azureADAppId": null
223
+ },
224
+ "identity": {
225
+ "acsUser": null,
226
+ "spoolUser": null,
227
+ "phone": null,
228
+ "guest": null,
229
+ "encrypted": null,
230
+ "onPremises": null,
231
+ "acsApplicationInstance": null,
232
+ "spoolApplicationInstance": null,
233
+ "applicationInstance": null,
234
+ "application": null,
235
+ "device": null,
236
+ "user": {
237
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
238
+ "displayName": "John Doe",
239
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676"
240
+ }
241
+ },
242
+ "associatedIdentity": {
243
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
244
+ "displayName": "John Doe",
245
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676",
246
+ "userPrincipalName": "john.doe@contoso.com"
247
+ },
248
+ "feedback": {
249
+ "text": null,
250
+ "rating": "notRated",
251
+ "tokens": {}
252
+ }
253
+ },
254
+ "callee": {
255
+ "userAgent": {
256
+ "headerValue": null,
257
+ "applicationVersion": null,
258
+ "platform": "unknown",
259
+ "productFamily": "unknown",
260
+ "communicationServiceId": null,
261
+ "azureADAppId": null
262
+ }
263
+ },
264
+ "media": [
265
+ {
266
+ "label": "data",
267
+ "callerNetwork": {
268
+ "ipAddress": "192.168.0.243",
269
+ "subnet": "192.168.0.0",
270
+ "linkSpeed": 526500000,
271
+ "connectionType": "wifi",
272
+ "port": 50048,
273
+ "reflexiveIPAddress": "",
274
+ "relayIPAddress": "",
275
+ "relayPort": 3481,
276
+ "macAddress": "",
277
+ "wifiMicrosoftDriver": "",
278
+ "wifiMicrosoftDriverVersion": "Microsoft:10.0.26100.4484",
279
+ "wifiVendorDriver": "Intel(R) Wi-Fi 6E AX211 160MHz",
280
+ "wifiVendorDriverVersion": "Intel:23.110.0.5",
281
+ "wifiChannel": 36,
282
+ "wifiBand": "frequency50GHz",
283
+ "basicServiceSetIdentifier": "",
284
+ "wifiRadioType": "wifi80211ac",
285
+ "wifiSignalStrength": 94,
286
+ "wifiBatteryCharge": 100,
287
+ "dnsSuffix": "",
288
+ "sentQualityEventRatio": null,
289
+ "receivedQualityEventRatio": null,
290
+ "delayEventRatio": null,
291
+ "bandwidthLowEventRatio": null,
292
+ "networkTransportProtocol": "udp",
293
+ "traceRouteHops": []
294
+ },
295
+ "calleeNetwork": {
296
+ "ipAddress": "",
297
+ "subnet": null,
298
+ "linkSpeed": 0,
299
+ "connectionType": "wired",
300
+ "port": 3481,
301
+ "reflexiveIPAddress": "",
302
+ "relayIPAddress": null,
303
+ "relayPort": null,
304
+ "macAddress": null,
305
+ "wifiMicrosoftDriver": null,
306
+ "wifiMicrosoftDriverVersion": null,
307
+ "wifiVendorDriver": null,
308
+ "wifiVendorDriverVersion": null,
309
+ "wifiChannel": null,
310
+ "wifiBand": "unknown",
311
+ "basicServiceSetIdentifier": null,
312
+ "wifiRadioType": "unknown",
313
+ "wifiSignalStrength": null,
314
+ "wifiBatteryCharge": null,
315
+ "dnsSuffix": null,
316
+ "sentQualityEventRatio": null,
317
+ "receivedQualityEventRatio": null,
318
+ "delayEventRatio": null,
319
+ "bandwidthLowEventRatio": null,
320
+ "networkTransportProtocol": "udp",
321
+ "traceRouteHops": []
322
+ },
323
+ "callerDevice": {
324
+ "captureDeviceName": null,
325
+ "captureDeviceDriver": null,
326
+ "renderDeviceName": null,
327
+ "renderDeviceDriver": null,
328
+ "sentSignalLevel": null,
329
+ "receivedSignalLevel": null,
330
+ "sentNoiseLevel": null,
331
+ "receivedNoiseLevel": null,
332
+ "initialSignalLevelRootMeanSquare": null,
333
+ "cpuInsufficentEventRatio": null,
334
+ "renderNotFunctioningEventRatio": null,
335
+ "captureNotFunctioningEventRatio": null,
336
+ "deviceGlitchEventRatio": null,
337
+ "lowSpeechToNoiseEventRatio": null,
338
+ "lowSpeechLevelEventRatio": null,
339
+ "deviceClippingEventRatio": null,
340
+ "howlingEventCount": null,
341
+ "renderZeroVolumeEventRatio": null,
342
+ "renderMuteEventRatio": null,
343
+ "micGlitchRate": null,
344
+ "speakerGlitchRate": null
345
+ },
346
+ "calleeDevice": {
347
+ "captureDeviceName": null,
348
+ "captureDeviceDriver": null,
349
+ "renderDeviceName": null,
350
+ "renderDeviceDriver": null,
351
+ "sentSignalLevel": null,
352
+ "receivedSignalLevel": null,
353
+ "sentNoiseLevel": null,
354
+ "receivedNoiseLevel": null,
355
+ "initialSignalLevelRootMeanSquare": null,
356
+ "cpuInsufficentEventRatio": null,
357
+ "renderNotFunctioningEventRatio": null,
358
+ "captureNotFunctioningEventRatio": null,
359
+ "deviceGlitchEventRatio": null,
360
+ "lowSpeechToNoiseEventRatio": null,
361
+ "lowSpeechLevelEventRatio": null,
362
+ "deviceClippingEventRatio": null,
363
+ "howlingEventCount": null,
364
+ "renderZeroVolumeEventRatio": null,
365
+ "renderMuteEventRatio": null,
366
+ "micGlitchRate": null,
367
+ "speakerGlitchRate": null
368
+ },
369
+ "streams": [
370
+ {
371
+ "streamId": "21549",
372
+ "startDateTime": null,
373
+ "endDateTime": null,
374
+ "streamDirection": "callerToCallee",
375
+ "averageAudioDegradation": null,
376
+ "averageJitter": null,
377
+ "maxJitter": null,
378
+ "averagePacketLossRate": null,
379
+ "maxPacketLossRate": null,
380
+ "averageRatioOfConcealedSamples": null,
381
+ "maxRatioOfConcealedSamples": null,
382
+ "averageRoundTripTime": null,
383
+ "maxRoundTripTime": null,
384
+ "packetUtilization": 0,
385
+ "averageBandwidthEstimate": null,
386
+ "wasMediaBypassed": null,
387
+ "postForwardErrorCorrectionPacketLossRate": null,
388
+ "averageVideoFrameLossPercentage": null,
389
+ "averageReceivedFrameRate": null,
390
+ "lowFrameRateRatio": null,
391
+ "averageVideoPacketLossRate": null,
392
+ "averageVideoFrameRate": null,
393
+ "lowVideoProcessingCapabilityRatio": null,
394
+ "averageAudioNetworkJitter": null,
395
+ "maxAudioNetworkJitter": null,
396
+ "audioCodec": "unknown",
397
+ "videoCodec": "unknown",
398
+ "rmsFreezeDuration": null,
399
+ "averageFreezeDuration": null,
400
+ "isAudioForwardErrorCorrectionUsed": null
401
+ }
402
+ ]
403
+ }
404
+ ]
405
+ }
406
+ ]
407
+ }
408
+ ],
409
+ "participants_v2": [
410
+ {
411
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
412
+ "identity": {
413
+ "endpointType": null,
414
+ "acsUser": null,
415
+ "spoolUser": null,
416
+ "phone": null,
417
+ "guest": null,
418
+ "encrypted": null,
419
+ "onPremises": null,
420
+ "acsApplicationInstance": null,
421
+ "spoolApplicationInstance": null,
422
+ "applicationInstance": null,
423
+ "application": null,
424
+ "device": null,
425
+ "azureCommunicationServicesUser": null,
426
+ "assertedIdentity": null,
427
+ "user": {
428
+ "id": "42559007-03c6-42c8-971f-cb79fd381a5a",
429
+ "displayName": "John Doe",
430
+ "tenantId": "9d66187e-13f0-4666-9bac-be67ddd4b676",
431
+ "userPrincipalName": "john.doe@contoso.com"
432
+ }
433
+ },
434
+ "administrativeUnitInfos": [
435
+ {
436
+ "id": "6d3eb178-988b-430b-974f-1254113e4522"
437
+ }
438
+ ]
439
+ }
440
+ ]
441
+ }
442
+ ```
443
+
444
+ </TabItem>
445
+ <TabItem value="Text">
446
+
447
+ ```text
448
+ endDateTime : 2025-08-15T12:28:26.0904416Z
449
+ id : 02d794e1-8820-4a0b-9fe2-a9ada52909fb
450
+ joinWebUrl : https://teams.microsoft.com/l/meetup-join/19%3ameeting_MG%40thread.v2
451
+ lastModifiedDateTime: 2025-08-15T12:54:59.8917461Z
452
+ modalities : ["audio"]
453
+ organizer : {"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676"}}
454
+ organizer_v2 : {"id":"42559007-03c6-42c8-971f-cb79fd381a5a","identity":{"endpointType":null,"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"azureCommunicationServicesUser":null,"assertedIdentity":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676","userPrincipalName":"john.doe@contoso.com"}},"administrativeUnitInfos":[{"id":"6d3eb178-988b-430b-974f-1254113e4522"}]}
455
+ participants : [{"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676"}},{"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":null,"tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676"}}]
456
+ participants_v2 : [{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","identity":{"endpointType":null,"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"azureCommunicationServicesUser":null,"assertedIdentity":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676","userPrincipalName":"john.doe@contoso.com"}},"administrativeUnitInfos":[{"id":"6d3eb178-988b-430b-974f-1254113e4522"}]},{"id":"bdd75849-e0a6-4cce-8fc1-d7c0d4da43e5","identity":{"endpointType":null,"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"azureCommunicationServicesUser":null,"assertedIdentity":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"42559007-03c6-42c8-971f-cb79fd381a5a","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676","userPrincipalName":""}},"administrativeUnitInfos":[]}]
457
+ sessions : [{"id":"4181f0b0-bbc5-4ff3-ad07-8a496bcada10","modalities":["audio"],"startDateTime":"2025-08-15T12:23:32.922748Z","endDateTime":"2025-08-15T12:28:26.0904416Z","isTest":false,"failureInfo":null,"caller":{"name":"JOHNDOE-PC","cpuName":"12th Gen Intel(R) Core(TM) i9-12900H","cpuCoresCount":14,"cpuProcessorSpeedInMhz":1800,"userAgent":{"headerValue":"releases/CL2025.R25","applicationVersion":null,"platform":"windows","productFamily":"teams","communicationServiceId":null,"azureADAppId":null},"identity":{"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676"}},"associatedIdentity":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676","userPrincipalName":"john.doe@contoso.com"},"feedback":{"text":null,"rating":"notRated","tokens":{}}},"callee":{"userAgent":{"headerValue":null,"applicationVersion":null,"platform":"unknown","productFamily":"unknown","communicationServiceId":null,"azureADAppId":null}},"segments":[{"id":"4181f0b0-bbc5-4ff3-ad07-8a496bcada10","startDateTime":"2025-08-15T12:23:32.922748Z","endDateTime":"2025-08-15T12:28:26.0904416Z","failureInfo":null,"caller":{"name":"JOHNDOE-PC","cpuName":"12th Gen Intel(R) Core(TM) i9-12900H","cpuCoresCount":14,"cpuProcessorSpeedInMhz":1800,"userAgent":{"headerValue":"releases/CL2025.R25","applicationVersion":null,"platform":"windows","productFamily":"teams","communicationServiceId":null,"azureADAppId":null},"identity":{"acsUser":null,"spoolUser":null,"phone":null,"guest":null,"encrypted":null,"onPremises":null,"acsApplicationInstance":null,"spoolApplicationInstance":null,"applicationInstance":null,"application":null,"device":null,"user":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676"}},"associatedIdentity":{"id":"42559007-03c6-42c8-971f-cb79fd381a5a","displayName":"John Doe","tenantId":"9d66187e-13f0-4666-9bac-be67ddd4b676","userPrincipalName":"john.doe@contoso.com"},"feedback":{"text":null,"rating":"notRated","tokens":{}}},"callee":{"userAgent":{"headerValue":null,"applicationVersion":null,"platform":"unknown","productFamily":"unknown","communicationServiceId":null,"azureADAppId":null}},"media":[{"label":"data","callerNetwork":{"ipAddress":"192.168.0.243","subnet":"192.168.0.0","linkSpeed":526500000,"connectionType":"wifi","port":50048,"reflexiveIPAddress":"","relayIPAddress":"","relayPort":3481,"macAddress":"","wifiMicrosoftDriver":"","wifiMicrosoftDriverVersion":"Microsoft:10.0.26100.4484","wifiVendorDriver":"Intel(R) Wi-Fi 6E AX211 160MHz","wifiVendorDriverVersion":"Intel:23.110.0.5","wifiChannel":36,"wifiBand":"frequency50GHz","basicServiceSetIdentifier":"","wifiRadioType":"wifi80211ac","wifiSignalStrength":94,"wifiBatteryCharge":100,"dnsSuffix":"","sentQualityEventRatio":null,"receivedQualityEventRatio":null,"delayEventRatio":null,"bandwidthLowEventRatio":null,"networkTransportProtocol":"udp","traceRouteHops":[]},"calleeNetwork":{"ipAddress":"","subnet":null,"linkSpeed":0,"connectionType":"wired","port":3481,"reflexiveIPAddress":"","relayIPAddress":null,"relayPort":null,"macAddress":null,"wifiMicrosoftDriver":null,"wifiMicrosoftDriverVersion":null,"wifiVendorDriver":null,"wifiVendorDriverVersion":null,"wifiChannel":null,"wifiBand":"unknown","basicServiceSetIdentifier":null,"wifiRadioType":"unknown","wifiSignalStrength":null,"wifiBatteryCharge":null,"dnsSuffix":null,"sentQualityEventRatio":null,"receivedQualityEventRatio":null,"delayEventRatio":null,"bandwidthLowEventRatio":null,"networkTransportProtocol":"udp","traceRouteHops":[]},"callerDevice":{"captureDeviceName":null,"captureDeviceDriver":null,"renderDeviceName":null,"renderDeviceDriver":null,"sentSignalLevel":null,"receivedSignalLevel":null,"sentNoiseLevel":null,"receivedNoiseLevel":null,"initialSignalLevelRootMeanSquare":null,"cpuInsufficentEventRatio":null,"renderNotFunctioningEventRatio":null,"captureNotFunctioningEventRatio":null,"deviceGlitchEventRatio":null,"lowSpeechToNoiseEventRatio":null,"lowSpeechLevelEventRatio":null,"deviceClippingEventRatio":null,"howlingEventCount":null,"renderZeroVolumeEventRatio":null,"renderMuteEventRatio":null,"micGlitchRate":null,"speakerGlitchRate":null},"calleeDevice":{"captureDeviceName":null,"captureDeviceDriver":null,"renderDeviceName":null,"renderDeviceDriver":null,"sentSignalLevel":null,"receivedSignalLevel":null,"sentNoiseLevel":null,"receivedNoiseLevel":null,"initialSignalLevelRootMeanSquare":null,"cpuInsufficentEventRatio":null,"renderNotFunctioningEventRatio":null,"captureNotFunctioningEventRatio":null,"deviceGlitchEventRatio":null,"lowSpeechToNoiseEventRatio":null,"lowSpeechLevelEventRatio":null,"deviceClippingEventRatio":null,"howlingEventCount":null,"renderZeroVolumeEventRatio":null,"renderMuteEventRatio":null,"micGlitchRate":null,"speakerGlitchRate":null},"streams":[{"streamId":"21549","startDateTime":null,"endDateTime":null,"streamDirection":"callerToCallee","averageAudioDegradation":null,"averageJitter":null,"maxJitter":null,"averagePacketLossRate":null,"maxPacketLossRate":null,"averageRatioOfConcealedSamples":null,"maxRatioOfConcealedSamples":null,"averageRoundTripTime":null,"maxRoundTripTime":null,"packetUtilization":0,"averageBandwidthEstimate":null,"wasMediaBypassed":null,"postForwardErrorCorrectionPacketLossRate":null,"averageVideoFrameLossPercentage":null,"averageReceivedFrameRate":null,"lowFrameRateRatio":null,"averageVideoPacketLossRate":null,"averageVideoFrameRate":null,"lowVideoProcessingCapabilityRatio":null,"averageAudioNetworkJitter":null,"maxAudioNetworkJitter":null,"audioCodec":"unknown","videoCodec":"unknown","rmsFreezeDuration":null,"averageFreezeDuration":null,"isAudioForwardErrorCorrectionUsed":null}]}]}]}]
458
+ startDateTime : 2025-08-15T12:23:32.922748Z
459
+ type : groupCall
460
+ version : 1
461
+ ```
462
+
463
+ </TabItem>
464
+ <TabItem value="CSV">
465
+
466
+ ```csv
467
+ id,version,type,lastModifiedDateTime,startDateTime,endDateTime,joinWebUrl
468
+ 02d794e1-8820-4a0b-9fe2-a9ada52909fb,1,groupCall,2025-08-15T12:54:59.8917461Z,2025-08-15T12:23:32.922748Z,2025-08-15T12:28:26.0904416Z,https://teams.microsoft.com/l/meetup-join/19%3ameeting_MG%40thread.v2
469
+ ```
470
+
471
+ </TabItem>
472
+ <TabItem value="Markdown">
473
+
474
+ ```md
475
+ # teams callrecord get --id "02d794e1-8820-4a0b-9fe2-a9ada52909fb"
476
+
477
+ Date: 8/15/2025
478
+
479
+ ## 02d794e1-8820-4a0b-9fe2-a9ada52909fb
480
+
481
+ Property | Value
482
+ ---------|-------
483
+ id | 02d794e1-8820-4a0b-9fe2-a9ada52909fb
484
+ version | 1
485
+ type | groupCall
486
+ lastModifiedDateTime | 2025-08-15T12:54:59.8917461Z
487
+ startDateTime | 2025-08-15T12:23:32.922748Z
488
+ endDateTime | 2025-08-15T12:28:26.0904416Z
489
+ joinWebUrl | https://teams.microsoft.com/l/meetup-join/19%3ameeting\_MG%40thread.v2
490
+ ```
491
+
492
+ </TabItem>
493
+ </Tabs>
@@ -32,17 +32,28 @@ m365 teams callrecord list [options]
32
32
 
33
33
  ## Remarks
34
34
 
35
- :::info
35
+ :::note
36
36
 
37
- This command only supports application permissions. Use scope `CallRecords.Read.All`.
37
+ It is only possible to retrieve call records from the past 30 days.
38
38
 
39
39
  :::
40
40
 
41
- :::note
41
+ ## Permissions
42
42
 
43
- It is only possible to retrieve call records from the past 30 days.
43
+ <Tabs>
44
+ <TabItem value="Delegated">
44
45
 
45
- :::
46
+ This command does not support delegated permissions.
47
+
48
+ </TabItem>
49
+ <TabItem value="Application">
50
+
51
+ | Resource | Permissions |
52
+ |-----------------|----------------------------------|
53
+ | Microsoft Graph | CallRecords.Read.All |
54
+
55
+ </TabItem>
56
+ </Tabs>
46
57
 
47
58
  ## Examples
48
59
 
package/eslint.config.mjs CHANGED
@@ -26,10 +26,12 @@ const dictionary = [
26
26
  'autofill',
27
27
  'azure',
28
28
  'bin',
29
+ 'brand',
29
30
  'builder',
30
31
  'call',
31
32
  'card',
32
33
  'catalog',
34
+ 'center',
33
35
  'checklist',
34
36
  'client',
35
37
  'comm',