@@ -165,10 +165,10 @@ export interface IDFilter {
165165 **/
166166export interface IntFilter {
167167 /** Filter to where the backend value is equal to this value */
168- equals ?: number | null ;
168+ equals ?: number | bigint | null ;
169169
170170 /** Filter to where the backend value is not equal to this value */
171- notEquals ?: number | null ;
171+ notEquals ?: number | bigint | null ;
172172
173173 /**
174174 * Filter to where the backend value is set to any value at all.
@@ -178,22 +178,22 @@ export interface IntFilter {
178178 isSet ?: boolean | null ;
179179
180180 /** Filter to where the backend value is within this set of numbers */
181- in ?: ( number | null ) [ ] ;
181+ in ?: ( number | bigint | null ) [ ] ;
182182
183183 /** Filter to where the backend value is not within this set of numbers */
184- notIn ?: ( number | null ) [ ] ;
184+ notIn ?: ( number | bigint | null ) [ ] ;
185185
186186 /** Filter to where the backend value is lower than this number */
187- lessThan ?: number | null ;
187+ lessThan ?: number | bigint | null ;
188188
189189 /** Filter to where the backend value is lower than or equal to this number */
190- lessThanOrEqual ?: number | null ;
190+ lessThanOrEqual ?: number | bigint | null ;
191191
192192 /** Filter to where the backend value is greater than to this number */
193- greaterThan ?: number | null ;
193+ greaterThan ?: number | bigint | null ;
194194
195195 /** Filter to where the backend value is greater than or equal to this number */
196- greaterThanOrEqual ?: number | null ;
196+ greaterThanOrEqual ?: number | bigint | null ;
197197}
198198
199199/**
@@ -210,10 +210,10 @@ export interface IntFilter {
210210 * */
211211export interface FloatFilter {
212212 /** Filter to where the backend value is equal to this value */
213- equals ?: number | null ;
213+ equals ?: number | bigint | null ;
214214
215215 /** Filter to where the backend value is not equal to this value */
216- notEquals ?: number | null ;
216+ notEquals ?: number | bigint | null ;
217217
218218 /**
219219 * Filter to where the backend value is set to any value at all.
@@ -223,22 +223,22 @@ export interface FloatFilter {
223223 isSet ?: boolean | null ;
224224
225225 /** Filter to where the backend value is within this set of numbers */
226- in ?: ( number | null ) [ ] ;
226+ in ?: ( number | bigint | null ) [ ] ;
227227
228228 /** Filter to where the backend value is not within this set of numbers */
229- notIn ?: ( number | null ) [ ] ;
229+ notIn ?: ( number | bigint | null ) [ ] ;
230230
231231 /** Filter to where the backend value is lower than this number */
232- lessThan ?: number | null ;
232+ lessThan ?: number | bigint | null ;
233233
234234 /** Filter to where the backend value is lower than or equal to this number */
235- lessThanOrEqual ?: number | null ;
235+ lessThanOrEqual ?: number | bigint | null ;
236236
237237 /** Filter to where the backend value is greater than to this number */
238- greaterThan ?: number | null ;
238+ greaterThan ?: number | bigint | null ;
239239
240240 /** Filter to where the backend value is greater than or equal to this number */
241- greaterThanOrEqual ?: number | null ;
241+ greaterThanOrEqual ?: number | bigint | null ;
242242}
243243
244244/**
0 commit comments