connectbase-client 3.50.0 → 3.52.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  본 SDK 의 모든 주요 변경사항을 [Keep a Changelog](https://keepachangelog.com/ko/1.1.0/) 형식으로 기록합니다.
4
4
  버전은 [Semantic Versioning](https://semver.org/lang/ko/) 을 따릅니다.
5
5
 
6
+ ## [3.52.0] - 2026-07-22
7
+
8
+ ### Added — Paddle(MoR) 임베디드 결제 타입
9
+
10
+ 앱 임베디드 결제·구독 응답에 Paddle(Merchant of Record) 프로바이더 타입을 추가했다. 서버가
11
+ Paddle 트랜잭션을 만들어 반환하면, 앱에서 Paddle.js 오버레이 checkout 을 띄워 결제받을 수 있다
12
+ (결제 확정의 원천은 서버 webhook). 기존 toss/stripe/payapp/paypal 사용에는 영향 없는 **순수 additive** 변경.
13
+
14
+ - `PaymentProvider` 유니온에 `"paddle"` 추가.
15
+ - `PreparePaymentResponse` — `paddle_transaction_id`, `paddle_client_token`, `paddle_environment`(sandbox|production), `paddle_checkout_url` 필드 추가.
16
+ - `ConfirmPaymentRequest` — `paddle_transaction_id` 필드 추가(트랜잭션 상태 확인용).
17
+ - `SubscriptionResponse` — `provider` 에 `paddle` 포함, `paddle_transaction_id`/`paddle_client_token`/`paddle_environment`/`paddle_checkout_url` 추가. (부수적으로 누락됐던 `paypal` provider 값도 정합.)
18
+ - `CreateSubscriptionRequest` — `paddle_price_id`(Paddle 카탈로그 recurring price ID) 필드 추가.
19
+
6
20
  ## [3.50.0] - 2026-07-18
7
21
 
8
22
  ### Added — 파일 업로드 진행률 콜백 (`cb.storage.uploadFile` onProgress)