()
| 23 | const DEFAULT_BASE_URL = "https://api.heygen.com"; |
| 24 | |
| 25 | export function apiBaseUrl(): string { |
| 26 | const override = process.env["HEYGEN_API_URL"]; |
| 27 | return override && override.length > 0 ? override.replace(/\/+$/, "") : DEFAULT_BASE_URL; |
| 28 | } |
| 29 | |
| 30 | export type BillingType = "wallet" | "subscription" | "usage_based" | string; |
| 31 |
no outgoing calls
no test coverage detected