@@ -203,9 +203,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
203
203
return this
204
204
}
205
205
206
- /** @deprecated Use `contains()` instead. */
207
- cs = this . contains
208
-
209
206
/**
210
207
* Finds all rows whose json, array, or range value on the stated `column` is
211
208
* contained by the specified `value`.
@@ -227,9 +224,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
227
224
return this
228
225
}
229
226
230
- /** @deprecated Use `containedBy()` instead. */
231
- cd = this . containedBy
232
-
233
227
/**
234
228
* Finds all rows whose range value on the stated `column` is strictly to the
235
229
* left of the specified `range`.
@@ -242,9 +236,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
242
236
return this
243
237
}
244
238
245
- /** @deprecated Use `rangeLt()` instead. */
246
- sl = this . rangeLt
247
-
248
239
/**
249
240
* Finds all rows whose range value on the stated `column` is strictly to
250
241
* the right of the specified `range`.
@@ -257,9 +248,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
257
248
return this
258
249
}
259
250
260
- /** @deprecated Use `rangeGt()` instead. */
261
- sr = this . rangeGt
262
-
263
251
/**
264
252
* Finds all rows whose range value on the stated `column` does not extend
265
253
* to the left of the specified `range`.
@@ -272,9 +260,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
272
260
return this
273
261
}
274
262
275
- /** @deprecated Use `rangeGte()` instead. */
276
- nxl = this . rangeGte
277
-
278
263
/**
279
264
* Finds all rows whose range value on the stated `column` does not extend
280
265
* to the right of the specified `range`.
@@ -287,9 +272,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
287
272
return this
288
273
}
289
274
290
- /** @deprecated Use `rangeLte()` instead. */
291
- nxr = this . rangeLte
292
-
293
275
/**
294
276
* Finds all rows whose range value on the stated `column` is adjacent to
295
277
* the specified `range`.
@@ -302,9 +284,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
302
284
return this
303
285
}
304
286
305
- /** @deprecated Use `rangeAdjacent()` instead. */
306
- adj = this . rangeAdjacent
307
-
308
287
/**
309
288
* Finds all rows whose array or range value on the stated `column` overlaps
310
289
* (has a value in common) with the specified `value`.
@@ -323,9 +302,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
323
302
return this
324
303
}
325
304
326
- /** @deprecated Use `overlaps()` instead. */
327
- ov = this . overlaps
328
-
329
305
/**
330
306
* Finds all rows whose text or tsvector value on the stated `column` matches
331
307
* the tsquery in `query`.
@@ -356,70 +332,6 @@ export default class PostgrestFilterBuilder<T> extends PostgrestTransformBuilder
356
332
return this
357
333
}
358
334
359
- /**
360
- * Finds all rows whose tsvector value on the stated `column` matches
361
- * to_tsquery(`query`).
362
- *
363
- * @param column The column to filter on.
364
- * @param query The Postgres tsquery string to filter with.
365
- * @param config The text search configuration to use.
366
- *
367
- * @deprecated Use `textSearch()` instead.
368
- */
369
- fts ( column : keyof T , query : string , { config } : { config ?: string } = { } ) : this {
370
- const configPart = typeof config === 'undefined' ? '' : `(${ config } )`
371
- this . url . searchParams . append ( `${ column } ` , `fts${ configPart } .${ query } ` )
372
- return this
373
- }
374
-
375
- /**
376
- * Finds all rows whose tsvector value on the stated `column` matches
377
- * plainto_tsquery(`query`).
378
- *
379
- * @param column The column to filter on.
380
- * @param query The Postgres tsquery string to filter with.
381
- * @param config The text search configuration to use.
382
- *
383
- * @deprecated Use `textSearch()` with `type: 'plain'` instead.
384
- */
385
- plfts ( column : keyof T , query : string , { config } : { config ?: string } = { } ) : this {
386
- const configPart = typeof config === 'undefined' ? '' : `(${ config } )`
387
- this . url . searchParams . append ( `${ column } ` , `plfts${ configPart } .${ query } ` )
388
- return this
389
- }
390
-
391
- /**
392
- * Finds all rows whose tsvector value on the stated `column` matches
393
- * phraseto_tsquery(`query`).
394
- *
395
- * @param column The column to filter on.
396
- * @param query The Postgres tsquery string to filter with.
397
- * @param config The text search configuration to use.
398
- *
399
- * @deprecated Use `textSearch()` with `type: 'phrase'` instead.
400
- */
401
- phfts ( column : keyof T , query : string , { config } : { config ?: string } = { } ) : this {
402
- const configPart = typeof config === 'undefined' ? '' : `(${ config } )`
403
- this . url . searchParams . append ( `${ column } ` , `phfts${ configPart } .${ query } ` )
404
- return this
405
- }
406
-
407
- /**
408
- * Finds all rows whose tsvector value on the stated `column` matches
409
- * websearch_to_tsquery(`query`).
410
- *
411
- * @param column The column to filter on.
412
- * @param query The Postgres tsquery string to filter with.
413
- * @param config The text search configuration to use.
414
- *
415
- * @deprecated Use `textSearch()` with `type: 'websearch'` instead.
416
- */
417
- wfts ( column : keyof T , query : string , { config } : { config ?: string } = { } ) : this {
418
- const configPart = typeof config === 'undefined' ? '' : `(${ config } )`
419
- this . url . searchParams . append ( `${ column } ` , `wfts${ configPart } .${ query } ` )
420
- return this
421
- }
422
-
423
335
/**
424
336
* Finds all rows whose `column` satisfies the filter.
425
337
*
0 commit comments