@@ -41,6 +41,14 @@ public enum ComparisonFilterType
4141 /// `eq`, `ne`, `gt`, `gte`, `lt`, `lte`, `in`, `nin`.
4242 /// </summary>
4343 Lte ,
44+ /// <summary>
45+ /// `eq`, `ne`, `gt`, `gte`, `lt`, `lte`, `in`, `nin`.
46+ /// </summary>
47+ In ,
48+ /// <summary>
49+ /// `eq`, `ne`, `gt`, `gte`, `lt`, `lte`, `in`, `nin`.
50+ /// </summary>
51+ Nin ,
4452 }
4553
4654 /// <summary>
@@ -61,6 +69,8 @@ public static string ToValueString(this ComparisonFilterType value)
6169 ComparisonFilterType . Gte => "gte" ,
6270 ComparisonFilterType . Lt => "lt" ,
6371 ComparisonFilterType . Lte => "lte" ,
72+ ComparisonFilterType . In => "in" ,
73+ ComparisonFilterType . Nin => "nin" ,
6474 _ => throw new global ::System . ArgumentOutOfRangeException ( nameof ( value ) , value , null ) ,
6575 } ;
6676 }
@@ -77,6 +87,8 @@ public static string ToValueString(this ComparisonFilterType value)
7787 "gte" => ComparisonFilterType . Gte ,
7888 "lt" => ComparisonFilterType . Lt ,
7989 "lte" => ComparisonFilterType . Lte ,
90+ "in" => ComparisonFilterType . In ,
91+ "nin" => ComparisonFilterType . Nin ,
8092 _ => null ,
8193 } ;
8294 }
0 commit comments