feat: 계정정보 정기결제 관리 — 현황·해지/재개·플랜 변경
CI / build (push) Failing after 13m36s

- 결제 플랜/만료일/다음 결제일 표시
- 구독 해지(안내 후 자동갱신 중단, 만료일까지 이용)/재개
- 결제 가능한 플랜 목록 + 변경/구독(Android 결제, PC는 앱 안내)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 16:04:41 +09:00
parent 0dda0b6ccd
commit 821aec72b9
2 changed files with 279 additions and 0 deletions
+12
View File
@@ -10,4 +10,16 @@ export const billingApi = {
verifyGoogle(payload) {
return http.post('/billing/google/verify', payload)
},
// 현재 구독 현황 (플랜·만료일·다음 결제일·자동갱신)
subscription() {
return http.get('/billing/subscription')
},
// 구독 해지 (자동 갱신 중단)
cancel() {
return http.post('/billing/cancel')
},
// 구독 재개 (만료 전 자동 갱신 재개)
resume() {
return http.post('/billing/resume')
},
}