Skip to content

Commit

Permalink
Fix shortcut properties nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
flobernd committed Dec 13, 2024
1 parent 59263d1 commit 079724d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion specification/graph/_types/Vertex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ export class VertexDefinition {

/** @shortcut_property term */
export class VertexInclude {
boost: double
boost?: double
term: string
}
4 changes: 2 additions & 2 deletions specification/ml/_types/DataframeAnalytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ export class DataframeAnalysisClassification extends DataframeAnalysis {
/** @shortcut_property includes */
export class DataframeAnalysisAnalyzedFields {
/** An array of strings that defines the fields that will be excluded from the analysis. You do not need to add fields with unsupported data types to excludes, these fields are excluded from the analysis automatically. */
includes: string[]
includes?: string[]
/** An array of strings that defines the fields that will be included in the analysis. */
excludes: string[]
excludes?: string[]
}

/** @variants container */
Expand Down

0 comments on commit 079724d

Please sign in to comment.