cap-js / cds-types

Type definitions for CDS
Apache License 2.0
9 stars 8 forks source link

Allow `connect.to (ServiceClass)` as alternative to string #173

Closed chgeo closed 1 month ago

chgeo commented 1 month ago

Allows cds-typer to provide typed methods for actions:

import Remote from '#cds-models/remote'
const remote = await cds.connect.to(Remote)
await remote.some_action(arg1, arg2, ...)
// or
await remote.some_action({ arg1, arg2, ... })

Also add convenience .to('db') returning cds.DatabaseService.