update method
Implementation
ClientManagerFilterBuilder<TModel> update(
TetherModelInputBase value,
) {
// For update, the localQuery's SET and WHERE clauses are built by the
// filter builder methods. We pass the update payload here.
return _copyWithQuery(
supabase: baseSupabase.update(value.toJson()),
type: SqlOperationType.update,
updatePayload: value, // Pass the update payload
);
}