feat(billing): let locale-eligible accounts choose USD or BRL before subscribing

This commit is contained in:
Tanmay Deep Sharma
2026-06-19 10:25:07 +05:30
parent 3690990379
commit e74d0c727a
9 changed files with 109 additions and 8 deletions
@@ -14,6 +14,10 @@ class EnterpriseAccountAPI extends ApiClient {
return axios.post(`${this.url}subscription`);
}
selectBillingCurrency(currency) {
return axios.post(`${this.url}select_billing_currency`, { currency });
}
getLimits() {
return axios.get(`${this.url}limits`);
}