@microsoft/msgraph-sdk 1.0.0-preview.17 → 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/identityGovernance/index.d.ts +3 -3
- package/models/index.d.ts +1069 -182
- package/models/index.d.ts.map +1 -1
- package/models/index.js +897 -171
- 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 +32 -32
- 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
|
@@ -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
|
/**
|