feat: Google Play Store Reviews

This commit is contained in:
Pranav
2026-05-19 15:32:49 -07:00
parent 1913ccadfa
commit 13a9f2591b
33 changed files with 603 additions and 39 deletions
@@ -0,0 +1,14 @@
/* global axios */
import ApiClient from '../ApiClient';
class GooglePlayClient extends ApiClient {
constructor() {
super('google_play', { accountScoped: true });
}
generateAuthorization(payload) {
return axios.post(`${this.url}/authorization`, payload);
}
}
export default new GooglePlayClient();