@microsoft/msgraph-sdk 1.0.0-preview.16 → 1.0.0-preview.18
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/identityGovernance/index.d.ts +3 -3
- package/models/index.d.ts +2663 -206
- package/models/index.d.ts.map +1 -1
- package/models/index.js +2340 -173
- package/models/partners/billing/index.d.ts +44 -0
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +54 -2
- 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/models/security/index.d.ts +102 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +90 -13
- 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
|
}
|
|
@@ -820,7 +820,7 @@ export interface Task extends Entity, Parsable {
|
|
|
820
820
|
*/
|
|
821
821
|
category?: LifecycleTaskCategory[];
|
|
822
822
|
/**
|
|
823
|
-
* A boolean value that specifies whether, if this task fails, the workflow
|
|
823
|
+
* A boolean value that specifies whether, if this task fails, the workflow stops, and subsequent tasks aren't run. Optional.
|
|
824
824
|
*/
|
|
825
825
|
continueOnError?: boolean;
|
|
826
826
|
/**
|
|
@@ -832,7 +832,7 @@ export interface Task extends Entity, Parsable {
|
|
|
832
832
|
*/
|
|
833
833
|
displayName?: string;
|
|
834
834
|
/**
|
|
835
|
-
* An integer that states in what order the task
|
|
835
|
+
* An integer that states in what order the task runs in a workflow.Supports $orderby.
|
|
836
836
|
*/
|
|
837
837
|
executionSequence?: number;
|
|
838
838
|
/**
|
|
@@ -840,7 +840,7 @@ export interface Task extends Entity, Parsable {
|
|
|
840
840
|
*/
|
|
841
841
|
isEnabled?: boolean;
|
|
842
842
|
/**
|
|
843
|
-
* A unique template identifier for the task. For more information about the tasks that Lifecycle Workflows currently supports and their unique identifiers, see
|
|
843
|
+
* A unique template identifier for the task. For more information about the tasks that Lifecycle Workflows currently supports and their unique identifiers, see Configure the arguments for built-in Lifecycle Workflow tasks. Required.Supports $filter(eq, ne).
|
|
844
844
|
*/
|
|
845
845
|
taskDefinitionId?: string;
|
|
846
846
|
/**
|