Skip to content

Commit 2dfe3d9

Browse files
committed
mark API changes as shipped
1 parent 785cf1f commit 2dfe3d9

File tree

2 files changed

+64
-64
lines changed

2 files changed

+64
-64
lines changed

src/NRedisStack/PublicAPI/PublicAPI.Shipped.txt

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,3 +1350,67 @@ static readonly NRedisStack.Search.Query.GeoFilter.METERS -> string!
13501350
static readonly NRedisStack.Search.Query.GeoFilter.MILES -> string!
13511351
virtual NRedisStack.Search.Aggregation.Reducer.AddOwnArgs(System.Collections.Generic.List<object!>! args) -> void
13521352
virtual NRedisStack.Search.Aggregation.Reducer.GetOwnArgsCount() -> int
1353+
NRedisStack.Search.Schema.AddFlatVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> NRedisStack.Search.Schema!
1354+
NRedisStack.Search.Schema.AddHnswVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, int maxOutgoingConnections = 16, int maxConnectedNeighbors = 200, int maxTopCandidates = 10, double boundaryFactor = 0.01, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> NRedisStack.Search.Schema!
1355+
NRedisStack.Search.Schema.AddSvsVanamaVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm compressionAlgorithm = NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.NotSpecified, int constructionWindowSize = 200, int graphMaxDegree = 32, int searchWindowSize = 10, double rangeSearchApproximationFactor = 0.01, int trainingThreshold = 0, int reducedDimensions = 0, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> NRedisStack.Search.Schema!
1356+
NRedisStack.Search.Schema.FlatVectorField
1357+
NRedisStack.Search.Schema.FlatVectorField.FlatVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> void
1358+
NRedisStack.Search.Schema.HnswVectorField
1359+
NRedisStack.Search.Schema.HnswVectorField.BoundaryFactor.get -> double
1360+
NRedisStack.Search.Schema.HnswVectorField.BoundaryFactor.set -> void
1361+
NRedisStack.Search.Schema.HnswVectorField.HnswVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> void
1362+
NRedisStack.Search.Schema.HnswVectorField.MaxConnectedNeighbors.get -> int
1363+
NRedisStack.Search.Schema.HnswVectorField.MaxConnectedNeighbors.set -> void
1364+
NRedisStack.Search.Schema.HnswVectorField.MaxOutgoingConnections.get -> int
1365+
NRedisStack.Search.Schema.HnswVectorField.MaxOutgoingConnections.set -> void
1366+
NRedisStack.Search.Schema.HnswVectorField.MaxTopCandidates.get -> int
1367+
NRedisStack.Search.Schema.HnswVectorField.MaxTopCandidates.set -> void
1368+
NRedisStack.Search.Schema.SvsVanamaVectorField
1369+
NRedisStack.Search.Schema.SvsVanamaVectorField.CompressionAlgorithm.get -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1370+
NRedisStack.Search.Schema.SvsVanamaVectorField.CompressionAlgorithm.set -> void
1371+
NRedisStack.Search.Schema.SvsVanamaVectorField.ConstructionWindowSize.get -> int
1372+
NRedisStack.Search.Schema.SvsVanamaVectorField.ConstructionWindowSize.set -> void
1373+
NRedisStack.Search.Schema.SvsVanamaVectorField.GraphMaxDegree.get -> int
1374+
NRedisStack.Search.Schema.SvsVanamaVectorField.GraphMaxDegree.set -> void
1375+
NRedisStack.Search.Schema.SvsVanamaVectorField.RangeSearchApproximationFactor.get -> double
1376+
NRedisStack.Search.Schema.SvsVanamaVectorField.RangeSearchApproximationFactor.set -> void
1377+
NRedisStack.Search.Schema.SvsVanamaVectorField.ReducedDimensions.get -> int
1378+
NRedisStack.Search.Schema.SvsVanamaVectorField.ReducedDimensions.set -> void
1379+
NRedisStack.Search.Schema.SvsVanamaVectorField.SearchWindowSize.get -> int
1380+
NRedisStack.Search.Schema.SvsVanamaVectorField.SearchWindowSize.set -> void
1381+
NRedisStack.Search.Schema.SvsVanamaVectorField.SvsVanamaVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> void
1382+
NRedisStack.Search.Schema.SvsVanamaVectorField.TrainingThreshold.get -> int
1383+
NRedisStack.Search.Schema.SvsVanamaVectorField.TrainingThreshold.set -> void
1384+
NRedisStack.Search.Schema.VectorField.Dimensions.get -> int
1385+
NRedisStack.Search.Schema.VectorField.Dimensions.set -> void
1386+
NRedisStack.Search.Schema.VectorField.DistanceMetric.get -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
1387+
NRedisStack.Search.Schema.VectorField.DistanceMetric.set -> void
1388+
NRedisStack.Search.Schema.VectorField.Type.get -> NRedisStack.Search.Schema.VectorField.VectorType
1389+
NRedisStack.Search.Schema.VectorField.Type.set -> void
1390+
NRedisStack.Search.Schema.VectorField.VectorAlgo.SVS_VAMANA = 2 -> NRedisStack.Search.Schema.VectorField.VectorAlgo
1391+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1392+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LeanVec4x8 = 5 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1393+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LeanVec8x8 = 6 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1394+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ4 = 2 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1395+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ4x4 = 3 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1396+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ4x8 = 4 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1397+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ8 = 1 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1398+
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.NotSpecified = 0 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
1399+
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
1400+
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.CosineDistance = 3 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
1401+
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.EuclideanDistance = 1 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
1402+
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.InnerProduct = 2 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
1403+
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.NotSpecified = 0 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
1404+
NRedisStack.Search.Schema.VectorField.VectorType
1405+
NRedisStack.Search.Schema.VectorField.VectorType.BFLOAT16 = 3 -> NRedisStack.Search.Schema.VectorField.VectorType
1406+
NRedisStack.Search.Schema.VectorField.VectorType.FLOAT16 = 4 -> NRedisStack.Search.Schema.VectorField.VectorType
1407+
NRedisStack.Search.Schema.VectorField.VectorType.FLOAT32 = 1 -> NRedisStack.Search.Schema.VectorField.VectorType
1408+
NRedisStack.Search.Schema.VectorField.VectorType.FLOAT64 = 2 -> NRedisStack.Search.Schema.VectorField.VectorType
1409+
NRedisStack.Search.Schema.VectorField.VectorType.NotSpecified = 0 -> NRedisStack.Search.Schema.VectorField.VectorType
1410+
override NRedisStack.RedisStackCommands.SerializedCommand.ToString() -> string!
1411+
static NRedisStack.Search.FieldName.implicit operator NRedisStack.Search.FieldName!(string! name) -> NRedisStack.Search.FieldName!
1412+
~override NRedisStack.DataTypes.TimeStamp.ToString() -> string
1413+
~override NRedisStack.DataTypes.TimeStamp.Equals(object obj) -> bool
1414+
NRedisStack.DataTypes.TimeStamp.Equals(NRedisStack.DataTypes.TimeStamp other) -> bool
1415+
static NRedisStack.DataTypes.TimeStamp.operator ==(NRedisStack.DataTypes.TimeStamp left, NRedisStack.DataTypes.TimeStamp right) -> bool
1416+
static NRedisStack.DataTypes.TimeStamp.operator !=(NRedisStack.DataTypes.TimeStamp left, NRedisStack.DataTypes.TimeStamp right) -> bool
Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1 @@
11
#nullable enable
2-
NRedisStack.Search.Schema.AddFlatVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> NRedisStack.Search.Schema!
3-
NRedisStack.Search.Schema.AddHnswVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, int maxOutgoingConnections = 16, int maxConnectedNeighbors = 200, int maxTopCandidates = 10, double boundaryFactor = 0.01, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> NRedisStack.Search.Schema!
4-
NRedisStack.Search.Schema.AddSvsVanamaVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm compressionAlgorithm = NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.NotSpecified, int constructionWindowSize = 200, int graphMaxDegree = 32, int searchWindowSize = 10, double rangeSearchApproximationFactor = 0.01, int trainingThreshold = 0, int reducedDimensions = 0, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> NRedisStack.Search.Schema!
5-
NRedisStack.Search.Schema.FlatVectorField
6-
NRedisStack.Search.Schema.FlatVectorField.FlatVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> void
7-
NRedisStack.Search.Schema.HnswVectorField
8-
NRedisStack.Search.Schema.HnswVectorField.BoundaryFactor.get -> double
9-
NRedisStack.Search.Schema.HnswVectorField.BoundaryFactor.set -> void
10-
NRedisStack.Search.Schema.HnswVectorField.HnswVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> void
11-
NRedisStack.Search.Schema.HnswVectorField.MaxConnectedNeighbors.get -> int
12-
NRedisStack.Search.Schema.HnswVectorField.MaxConnectedNeighbors.set -> void
13-
NRedisStack.Search.Schema.HnswVectorField.MaxOutgoingConnections.get -> int
14-
NRedisStack.Search.Schema.HnswVectorField.MaxOutgoingConnections.set -> void
15-
NRedisStack.Search.Schema.HnswVectorField.MaxTopCandidates.get -> int
16-
NRedisStack.Search.Schema.HnswVectorField.MaxTopCandidates.set -> void
17-
NRedisStack.Search.Schema.SvsVanamaVectorField
18-
NRedisStack.Search.Schema.SvsVanamaVectorField.CompressionAlgorithm.get -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
19-
NRedisStack.Search.Schema.SvsVanamaVectorField.CompressionAlgorithm.set -> void
20-
NRedisStack.Search.Schema.SvsVanamaVectorField.ConstructionWindowSize.get -> int
21-
NRedisStack.Search.Schema.SvsVanamaVectorField.ConstructionWindowSize.set -> void
22-
NRedisStack.Search.Schema.SvsVanamaVectorField.GraphMaxDegree.get -> int
23-
NRedisStack.Search.Schema.SvsVanamaVectorField.GraphMaxDegree.set -> void
24-
NRedisStack.Search.Schema.SvsVanamaVectorField.RangeSearchApproximationFactor.get -> double
25-
NRedisStack.Search.Schema.SvsVanamaVectorField.RangeSearchApproximationFactor.set -> void
26-
NRedisStack.Search.Schema.SvsVanamaVectorField.ReducedDimensions.get -> int
27-
NRedisStack.Search.Schema.SvsVanamaVectorField.ReducedDimensions.set -> void
28-
NRedisStack.Search.Schema.SvsVanamaVectorField.SearchWindowSize.get -> int
29-
NRedisStack.Search.Schema.SvsVanamaVectorField.SearchWindowSize.set -> void
30-
NRedisStack.Search.Schema.SvsVanamaVectorField.SvsVanamaVectorField(NRedisStack.Search.FieldName! name, NRedisStack.Search.Schema.VectorField.VectorType type, int dimensions, NRedisStack.Search.Schema.VectorField.VectorDistanceMetric distanceMetric, System.Collections.Generic.Dictionary<string!, object!>? attributes = null, bool missingIndex = false) -> void
31-
NRedisStack.Search.Schema.SvsVanamaVectorField.TrainingThreshold.get -> int
32-
NRedisStack.Search.Schema.SvsVanamaVectorField.TrainingThreshold.set -> void
33-
NRedisStack.Search.Schema.VectorField.Dimensions.get -> int
34-
NRedisStack.Search.Schema.VectorField.Dimensions.set -> void
35-
NRedisStack.Search.Schema.VectorField.DistanceMetric.get -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
36-
NRedisStack.Search.Schema.VectorField.DistanceMetric.set -> void
37-
NRedisStack.Search.Schema.VectorField.Type.get -> NRedisStack.Search.Schema.VectorField.VectorType
38-
NRedisStack.Search.Schema.VectorField.Type.set -> void
39-
NRedisStack.Search.Schema.VectorField.VectorAlgo.SVS_VAMANA = 2 -> NRedisStack.Search.Schema.VectorField.VectorAlgo
40-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
41-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LeanVec4x8 = 5 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
42-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LeanVec8x8 = 6 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
43-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ4 = 2 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
44-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ4x4 = 3 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
45-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ4x8 = 4 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
46-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.LVQ8 = 1 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
47-
NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm.NotSpecified = 0 -> NRedisStack.Search.Schema.VectorField.VectorCompressionAlgorithm
48-
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
49-
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.CosineDistance = 3 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
50-
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.EuclideanDistance = 1 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
51-
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.InnerProduct = 2 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
52-
NRedisStack.Search.Schema.VectorField.VectorDistanceMetric.NotSpecified = 0 -> NRedisStack.Search.Schema.VectorField.VectorDistanceMetric
53-
NRedisStack.Search.Schema.VectorField.VectorType
54-
NRedisStack.Search.Schema.VectorField.VectorType.BFLOAT16 = 3 -> NRedisStack.Search.Schema.VectorField.VectorType
55-
NRedisStack.Search.Schema.VectorField.VectorType.FLOAT16 = 4 -> NRedisStack.Search.Schema.VectorField.VectorType
56-
NRedisStack.Search.Schema.VectorField.VectorType.FLOAT32 = 1 -> NRedisStack.Search.Schema.VectorField.VectorType
57-
NRedisStack.Search.Schema.VectorField.VectorType.FLOAT64 = 2 -> NRedisStack.Search.Schema.VectorField.VectorType
58-
NRedisStack.Search.Schema.VectorField.VectorType.NotSpecified = 0 -> NRedisStack.Search.Schema.VectorField.VectorType
59-
override NRedisStack.RedisStackCommands.SerializedCommand.ToString() -> string!
60-
static NRedisStack.Search.FieldName.implicit operator NRedisStack.Search.FieldName!(string! name) -> NRedisStack.Search.FieldName!
61-
~override NRedisStack.DataTypes.TimeStamp.ToString() -> string
62-
~override NRedisStack.DataTypes.TimeStamp.Equals(object obj) -> bool
63-
NRedisStack.DataTypes.TimeStamp.Equals(NRedisStack.DataTypes.TimeStamp other) -> bool
64-
static NRedisStack.DataTypes.TimeStamp.operator ==(NRedisStack.DataTypes.TimeStamp left, NRedisStack.DataTypes.TimeStamp right) -> bool
65-
static NRedisStack.DataTypes.TimeStamp.operator !=(NRedisStack.DataTypes.TimeStamp left, NRedisStack.DataTypes.TimeStamp right) -> bool

0 commit comments

Comments
 (0)