Currently you can only pass one Api Service at a time like so:
beam.use(AccountService).use(AnnouncementsService).use(StatsService);
End goal is to improve the developer experience for convenience when using the use method to accept an array like so:
beam.use([AccountService, AnnouncementsService, StatsService]);