@@ -9744,12 +9744,12 @@ export interface UserFilter {
97449744 /** TRGM search on the `display_name` column. */
97459745 trgmDisplayName?: TrgmSearchInput;
97469746 /**
9747- * Composite full-text search. Provide a search string and it will be dispatched
9748- * to all text-compatible search algorithms (tsvector, BM25, pg_trgm)
9747+ * Composite unified search. Provide a search string and it will be dispatched to
9748+ * all text-compatible search algorithms (tsvector, BM25, pg_trgm)
97499749 * simultaneously. Rows matching ANY algorithm are returned. All matching score
97509750 * fields are populated.
97519751 */
9752- fullTextSearch ?: string;
9752+ unifiedSearch ?: string;
97539753}
97549754export interface AstMigrationFilter {
97559755 /** Filter by the object’s `id` field. */
@@ -22141,12 +22141,12 @@ export interface UserFilter {
2214122141 /** TRGM search on the `display_name` column. */
2214222142 trgmDisplayName?: TrgmSearchInput;
2214322143 /**
22144- * Composite full-text search. Provide a search string and it will be dispatched
22145- * to all text-compatible search algorithms (tsvector, BM25, pg_trgm)
22144+ * Composite unified search. Provide a search string and it will be dispatched to
22145+ * all text-compatible search algorithms (tsvector, BM25, pg_trgm)
2214622146 * simultaneously. Rows matching ANY algorithm are returned. All matching score
2214722147 * fields are populated.
2214822148 */
22149- fullTextSearch ?: string;
22149+ unifiedSearch ?: string;
2215022150}
2215122151/** A filter to be used against `RlsModule` object types. All fields are combined with a logical ‘and.’ */
2215222152export interface RlsModuleFilter {
0 commit comments