@microsoft/msgraph-sdk 1.0.0-preview.16 → 1.0.0-preview.17
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/models/callRecords/index.d.ts +4 -4
- package/models/index.d.ts +1597 -27
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1569 -128
- package/models/search/index.d.ts +428 -0
- package/models/search/index.d.ts.map +1 -0
- package/models/search/index.js +380 -0
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -451,7 +451,7 @@ export interface DirectRoutingLogRow extends AdditionalDataHolder, BackedModel,
|
|
|
451
451
|
*/
|
|
452
452
|
failureDateTime?: Date;
|
|
453
453
|
/**
|
|
454
|
-
* The code with which the call ended. For more information, see RFC 3261.
|
|
454
|
+
* The final response code with which the call ended. For more information, see RFC 3261.
|
|
455
455
|
*/
|
|
456
456
|
finalSipCode?: number;
|
|
457
457
|
/**
|
|
@@ -463,7 +463,7 @@ export interface DirectRoutingLogRow extends AdditionalDataHolder, BackedModel,
|
|
|
463
463
|
*/
|
|
464
464
|
id?: string;
|
|
465
465
|
/**
|
|
466
|
-
*
|
|
466
|
+
* The date and time when the initial invite was sent.
|
|
467
467
|
*/
|
|
468
468
|
inviteDateTime?: Date;
|
|
469
469
|
/**
|
|
@@ -483,7 +483,7 @@ export interface DirectRoutingLogRow extends AdditionalDataHolder, BackedModel,
|
|
|
483
483
|
*/
|
|
484
484
|
signalingLocation?: string;
|
|
485
485
|
/**
|
|
486
|
-
* Call start time.For failed and unanswered calls, this can be equal to the invite or failure time.
|
|
486
|
+
* Call start time.For failed and unanswered calls, this value can be equal to the invite or failure time.
|
|
487
487
|
*/
|
|
488
488
|
startDateTime?: Date;
|
|
489
489
|
/**
|
|
@@ -503,7 +503,7 @@ export interface DirectRoutingLogRow extends AdditionalDataHolder, BackedModel,
|
|
|
503
503
|
*/
|
|
504
504
|
userId?: string;
|
|
505
505
|
/**
|
|
506
|
-
* UserPrincipalName (sign-in name) in Microsoft Entra ID. This is usually the same as the user's SIP Address, and can be the same as the user's email address.
|
|
506
|
+
* UserPrincipalName (sign-in name) in Microsoft Entra ID. This value is usually the same as the user's SIP Address, and can be the same as the user's email address.
|
|
507
507
|
*/
|
|
508
508
|
userPrincipalName?: string;
|
|
509
509
|
}
|