(planIncludedAmount: number, creditBalance: number)
| 32 | * limit already reflects the credits. |
| 33 | */ |
| 34 | export function getCoveredUsage(planIncludedAmount: number, creditBalance: number): number { |
| 35 | return planIncludedAmount + creditBalance |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Whether on-demand (past-included) usage is enabled: the usage limit sits above |
no outgoing calls
no test coverage detected