From 717326789eb7d1acfc90a683f6408ede002d73ea Mon Sep 17 00:00:00 2001 From: Admin Date: Tue, 16 Jun 2026 15:45:55 -0700 Subject: [PATCH] Add FAMILY_SUPPORT and SALARY_PAYMENT to PurposeOfPayment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thunes corridors require these purposes that the enum couldn't express: WeChatPay C2C accepts only FAMILY_SUPPORT/SALARY_PAYMENT, and AliPay B2C accepts SALARY_PAYMENT — without these, those purposes normalize to OTHER and the payout is declined (DECLINED-INVALID-PURPOSE-OF-REMITTANCE). Co-Authored-By: Claude Opus 4.8 (1M context) --- mintlify/openapi.yaml | 2 ++ openapi.yaml | 2 ++ openapi/components/schemas/quotes/PurposeOfPayment.yaml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index 8b6b7e727..a29b8d54a 100644 --- a/mintlify/openapi.yaml +++ b/mintlify/openapi.yaml @@ -16856,6 +16856,8 @@ components: - UTILITY_BILL - DONATION - TRAVEL + - FAMILY_SUPPORT + - SALARY_PAYMENT - OTHER QuoteRequest: type: object diff --git a/openapi.yaml b/openapi.yaml index 8b6b7e727..a29b8d54a 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -16856,6 +16856,8 @@ components: - UTILITY_BILL - DONATION - TRAVEL + - FAMILY_SUPPORT + - SALARY_PAYMENT - OTHER QuoteRequest: type: object diff --git a/openapi/components/schemas/quotes/PurposeOfPayment.yaml b/openapi/components/schemas/quotes/PurposeOfPayment.yaml index 2185796aa..e915063ad 100644 --- a/openapi/components/schemas/quotes/PurposeOfPayment.yaml +++ b/openapi/components/schemas/quotes/PurposeOfPayment.yaml @@ -14,4 +14,6 @@ enum: - UTILITY_BILL - DONATION - TRAVEL + - FAMILY_SUPPORT + - SALARY_PAYMENT - OTHER