Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13516,20 +13516,21 @@ export interface MlAnomaly {
}

export interface MlAnomalyCause {
actual: double[]
by_field_name: Name
by_field_value: string
correlated_by_field_value: string
field_name: Field
function: string
function_description: string
influencers: MlInfluence[]
over_field_name: Name
over_field_value: string
partition_field_name: string
partition_field_value: string
actual?: double[]
by_field_name?: Name
by_field_value?: string
correlated_by_field_value?: string
field_name?: Field
function?: string
function_description?: string
geo_results?: MlGeoResults
influencers?: MlInfluence[]
over_field_name?: Name
over_field_value?: string
partition_field_name?: string
partition_field_value?: string
probability: double
typical: double[]
typical?: double[]
}

export interface MlAnomalyExplanation {
Expand Down Expand Up @@ -14098,8 +14099,8 @@ export interface MlFilterRef {
export type MlFilterType = 'include' | 'exclude'

export interface MlGeoResults {
actual_point: string
typical_point: string
actual_point?: string
typical_point?: string
}

export interface MlHyperparameter {
Expand Down
31 changes: 16 additions & 15 deletions src/api/typesWithBodyKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13758,20 +13758,21 @@ export interface MlAnomaly {
}

export interface MlAnomalyCause {
actual: double[]
by_field_name: Name
by_field_value: string
correlated_by_field_value: string
field_name: Field
function: string
function_description: string
influencers: MlInfluence[]
over_field_name: Name
over_field_value: string
partition_field_name: string
partition_field_value: string
actual?: double[]
by_field_name?: Name
by_field_value?: string
correlated_by_field_value?: string
field_name?: Field
function?: string
function_description?: string
geo_results?: MlGeoResults
influencers?: MlInfluence[]
over_field_name?: Name
over_field_value?: string
partition_field_name?: string
partition_field_value?: string
probability: double
typical: double[]
typical?: double[]
}

export interface MlAnomalyExplanation {
Expand Down Expand Up @@ -14340,8 +14341,8 @@ export interface MlFilterRef {
export type MlFilterType = 'include' | 'exclude'

export interface MlGeoResults {
actual_point: string
typical_point: string
actual_point?: string
typical_point?: string
}

export interface MlHyperparameter {
Expand Down