Skip to content

Commit 3b08e5f

Browse files
committed
Fix shortcut properties nullability
1 parent 1a513e6 commit 3b08e5f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

specification/graph/_types/Vertex.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ export class VertexDefinition {
6060

6161
/** @shortcut_property term */
6262
export class VertexInclude {
63-
boost: double
63+
boost?: double
6464
term: string
6565
}

specification/ml/_types/DataframeAnalytics.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ export class DataframeAnalysisClassification extends DataframeAnalysis {
238238
/** @shortcut_property includes */
239239
export class DataframeAnalysisAnalyzedFields {
240240
/** 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. */
241-
includes: string[]
241+
includes?: string[]
242242
/** An array of strings that defines the fields that will be included in the analysis. */
243-
excludes: string[]
243+
excludes?: string[]
244244
}
245245

246246
/** @variants container */

0 commit comments

Comments
 (0)