feat(billing): let accounts switch billing currency with a confirmation note

This commit is contained in:
Tanmay Deep Sharma
2026-06-03 11:27:25 +05:30
parent bbd575d8fa
commit f1bc3208e9
13 changed files with 384 additions and 2 deletions
@@ -32,6 +32,10 @@ class EnterpriseAccountAPI extends ApiClient {
getTopupOptions() {
return axios.get(`${this.url}topup_options`);
}
switchCurrency(currency) {
return axios.post(`${this.url}switch_currency`, { currency });
}
}
export default new EnterpriseAccountAPI();