Skip to content

Commit f7e3935

Browse files
authored
adds missing fields VecDist and RangeIndex (#234)
1 parent 66c81f8 commit f7e3935

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/Typesense/Field.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ public record Field
4545
[JsonPropertyName("stem")]
4646
public bool? Stem { get; init; }
4747

48+
[JsonPropertyName("vec_dist")]
49+
public string? VecDist { get; init; }
50+
51+
[JsonPropertyName("range_index")]
52+
public bool? RangeIndex { get; init; }
53+
4854
// This constructor is made to handle inherited classes.
4955
protected Field(string name)
5056
{

0 commit comments

Comments
 (0)