| 28 | import { TrunksClient } from "./TrunksClient"; |
| 29 | |
| 30 | interface FonosterClient { |
| 31 | getAccessToken(): string; |
| 32 | getAccessKeyId(): string; |
| 33 | getApplicationsClient(): ApplicationsClient; |
| 34 | getCallsClient(): CallsClient; |
| 35 | getIdentityClient(): IdentityClient; |
| 36 | getSecretsClient(): SecretsClient; |
| 37 | getAgentsClient(): AgentsClient; |
| 38 | getNumbersClient(): NumbersClient; |
| 39 | getCredentialsClient(): CredentialsClient; |
| 40 | getDomainsClient(): DomainsClient; |
| 41 | getTrunksClient(): TrunksClient; |
| 42 | getAclsClient(): AclsClient; |
| 43 | getMetadata(): unknown; |
| 44 | refreshToken(): Promise<void>; |
| 45 | } |
| 46 | |
| 47 | export { FonosterClient }; |
no outgoing calls
no test coverage detected