diff --git a/src/api/openapi/docs/GroupStudyBasicInfoResponseDto.md b/src/api/openapi/docs/GroupStudyBasicInfoResponseDto.md index dc9f338a..b89440fd 100644 --- a/src/api/openapi/docs/GroupStudyBasicInfoResponseDto.md +++ b/src/api/openapi/docs/GroupStudyBasicInfoResponseDto.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **groupStudyId** | **number** | 그룹스터디 ID | [optional] [default to undefined] **classification** | **string** | 스터디 분류 | [optional] [default to undefined] **leader** | [**StudyReservationMemberDto**](StudyReservationMemberDto.md) | 그룹스터디 리더 정보 | [optional] [default to undefined] +**studyLeaderParticipation** | **boolean** | 스터디 리더 참가 여부 | [optional] [default to undefined] **type** | **string** | 스터디 타입 | [optional] [default to undefined] **hostType** | **string** | 스터디 주최자 구분 | [optional] [default to undefined] **targetRoles** | **Array<string>** | 스터디 모집 대상 (복수 선택 가능) | [optional] [default to undefined] @@ -37,6 +38,7 @@ const instance: GroupStudyBasicInfoResponseDto = { groupStudyId, classification, leader, + studyLeaderParticipation, type, hostType, targetRoles, diff --git a/src/api/openapi/docs/GroupStudyBasicInfoUpdateRequestDto.md b/src/api/openapi/docs/GroupStudyBasicInfoUpdateRequestDto.md index a7a6f5dc..87673517 100644 --- a/src/api/openapi/docs/GroupStudyBasicInfoUpdateRequestDto.md +++ b/src/api/openapi/docs/GroupStudyBasicInfoUpdateRequestDto.md @@ -6,6 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**studyLeaderParticipation** | **boolean** | 스터디 리더 참가 여부 | [default to undefined] **type** | **string** | 스터디 타입 | [default to undefined] **hostType** | **string** | 스터디 주최자 구분(미입력 시 일반회원 GENERAL) | [optional] [default to undefined] **targetRoles** | **Array<string>** | 스터디 모집 대상 (복수 선택 가능) | [default to undefined] @@ -26,6 +27,7 @@ Name | Type | Description | Notes import { GroupStudyBasicInfoUpdateRequestDto } from './api'; const instance: GroupStudyBasicInfoUpdateRequestDto = { + studyLeaderParticipation, type, hostType, targetRoles, diff --git a/src/api/openapi/models/group-study-basic-info-response-dto.ts b/src/api/openapi/models/group-study-basic-info-response-dto.ts index 59792578..c68933c1 100644 --- a/src/api/openapi/models/group-study-basic-info-response-dto.ts +++ b/src/api/openapi/models/group-study-basic-info-response-dto.ts @@ -30,6 +30,10 @@ export interface GroupStudyBasicInfoResponseDto { * 그룹스터디 리더 정보 */ 'leader'?: StudyReservationMemberDto; + /** + * 스터디 리더 참가 여부 + */ + 'studyLeaderParticipation'?: boolean; /** * 스터디 타입 */ diff --git a/src/api/openapi/models/group-study-basic-info-update-request-dto.ts b/src/api/openapi/models/group-study-basic-info-update-request-dto.ts index 9117f340..c020065a 100644 --- a/src/api/openapi/models/group-study-basic-info-update-request-dto.ts +++ b/src/api/openapi/models/group-study-basic-info-update-request-dto.ts @@ -18,6 +18,10 @@ * 그룹스터디 기본 정보 수정 요청 */ export interface GroupStudyBasicInfoUpdateRequestDto { + /** + * 스터디 리더 참가 여부 + */ + 'studyLeaderParticipation': boolean; /** * 스터디 타입 */