From e48a442add497facfabacee22cf0179448b41ada Mon Sep 17 00:00:00 2001 From: Jenkins Date: Mon, 5 Jan 2026 16:34:03 +0000 Subject: [PATCH 1/2] feat: new OpenAPI (automated) --- src/api/openapi/docs/StudyPaymentPrepareResponse.md | 2 ++ src/api/openapi/models/study-payment-prepare-response.ts | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/src/api/openapi/docs/StudyPaymentPrepareResponse.md b/src/api/openapi/docs/StudyPaymentPrepareResponse.md index 5f660c13..91b60d53 100644 --- a/src/api/openapi/docs/StudyPaymentPrepareResponse.md +++ b/src/api/openapi/docs/StudyPaymentPrepareResponse.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes **groupStudyDescription** | **string** | | [optional] [default to undefined] **memberId** | **number** | | [optional] [default to undefined] **memberName** | **string** | | [optional] [default to undefined] +**groupStudyImage** | [**ImageDto**](ImageDto.md) | | [optional] [default to undefined] **amount** | **number** | | [optional] [default to undefined] **currency** | **string** | | [optional] [default to undefined] **pgProvider** | **string** | | [optional] [default to undefined] @@ -30,6 +31,7 @@ const instance: StudyPaymentPrepareResponse = { groupStudyDescription, memberId, memberName, + groupStudyImage, amount, currency, pgProvider, diff --git a/src/api/openapi/models/study-payment-prepare-response.ts b/src/api/openapi/models/study-payment-prepare-response.ts index a6b2d268..f221ec5b 100644 --- a/src/api/openapi/models/study-payment-prepare-response.ts +++ b/src/api/openapi/models/study-payment-prepare-response.ts @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import type { ImageDto } from './image-dto'; export interface StudyPaymentPrepareResponse { 'paymentId'?: number; @@ -22,6 +25,7 @@ export interface StudyPaymentPrepareResponse { 'groupStudyDescription'?: string; 'memberId'?: number; 'memberName'?: string; + 'groupStudyImage'?: ImageDto; 'amount'?: number; 'currency'?: string; 'pgProvider'?: string; From 8e5ab8d3f8d323139780681876564058b6dd5e9e Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 6 Jan 2026 09:09:05 +0000 Subject: [PATCH 2/2] feat: new OpenAPI (automated) --- src/api/openapi/models/member-notification-response.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/openapi/models/member-notification-response.ts b/src/api/openapi/models/member-notification-response.ts index e3c7d81b..75c3f772 100644 --- a/src/api/openapi/models/member-notification-response.ts +++ b/src/api/openapi/models/member-notification-response.ts @@ -27,6 +27,7 @@ export interface MemberNotificationResponse { export const MemberNotificationResponseTopicTypeEnum = { OneOnOneStudy: 'ONE_ON_ONE_STUDY', GroupStudy: 'GROUP_STUDY', + Comment: 'COMMENT', Payment: 'PAYMENT', Etc: 'ETC' } as const;