@kimdaegyu/babmukdang-shared 1.1.3 → 1.1.4

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.
@@ -39,6 +39,7 @@ __export(domain_exports, {
39
39
  ArticleCoreSchema: () => ArticleCoreSchema,
40
40
  ArticleDetailResponseSchema: () => ArticleDetailResponseSchema,
41
41
  ArticleIdSchema: () => ArticleIdSchema,
42
+ ArticleLikeResponseSchema: () => ArticleLikeResponseSchema,
42
43
  ArticleListQuerySchema: () => ArticleListQuerySchema,
43
44
  ArticleSortBySchema: () => ArticleSortBySchema,
44
45
  ArticleSummaryResponseSchema: () => ArticleSummaryResponseSchema,
@@ -358,6 +359,10 @@ var ArticleSummaryResponseSchema = ArticleCoreSchema.extend({
358
359
  commentCount: import_zod7.z.number().int().min(0),
359
360
  likedByMe: import_zod7.z.boolean()
360
361
  });
362
+ var ArticleLikeResponseSchema = import_zod7.z.object({
363
+ liked: import_zod7.z.boolean(),
364
+ likeCount: import_zod7.z.number().int().min(0)
365
+ });
361
366
  var ArticleDetailResponseSchema = ArticleSummaryResponseSchema.extend({
362
367
  comments: import_zod7.z.array(ArticleCommentSchema).optional()
363
368
  });
@@ -705,7 +710,6 @@ var endpoint = (contract) => ({
705
710
 
706
711
  // src/domain/common/contracts/api.ts
707
712
  var memberIdParam = import_zod19.z.object({ memberId: MemberIdSchema });
708
- var authorIdParam = import_zod19.z.object({ memberId: MemberIdSchema });
709
713
  var articleIdParam = import_zod19.z.object({ articleId: ArticleIdSchema });
710
714
  var commentIdParam = import_zod19.z.object({ commentId: CommentIdSchema });
711
715
  var recruitIdParam = import_zod19.z.object({ recruitId: RecruitIdSchema });
@@ -728,8 +732,11 @@ var apiContract = {
728
732
  memberProfile: endpoint({ method: "GET", path: "/members/:memberId", pathParams: memberIdParam, response: ProfileDetailResponseSchema }),
729
733
  presignProfileImage: endpoint({ method: "POST", path: "/uploads/presign-profile", response: PresignProfileResponseSchema }),
730
734
  createProfile: endpoint({ method: "POST", path: "/members/onboarding", body: CreateProfileRequestSchema, response: NoContentSchema }),
731
- updateProfile: endpoint({ method: "PATCH", path: "/members/me/profile", body: UpdateProfileRequestSchema, response: NoContentSchema }),
732
- updatePreferences: endpoint({ method: "PATCH", path: "/members/me/preferences", body: UpdatePreferenceRequestSchema, response: NoContentSchema })
735
+ updateProfile: endpoint({ method: "PATCH", path: "/members/me/profile", body: UpdateProfileRequestSchema, response: NoContentSchema })
736
+ },
737
+ preferences: {
738
+ my: endpoint({ method: "GET", path: "/preferences/me", response: MemberFoodPreferenceSchema }),
739
+ update: endpoint({ method: "PATCH", path: "/preferences/me", body: UpdatePreferenceRequestSchema, response: NoContentSchema })
733
740
  },
734
741
  mealStatus: {
735
742
  my: endpoint({ method: "GET", path: "/meal-status", response: MealStatusResponseSchema }),
@@ -738,14 +745,15 @@ var apiContract = {
738
745
  },
739
746
  articles: {
740
747
  list: endpoint({ method: "GET", path: "/articles/home", query: ArticleListQuerySchema, response: PageArticleSummaryResponseSchema }),
741
- byAuthor: endpoint({ method: "GET", path: "/articles/by-author/:authorId", pathParams: authorIdParam, response: PageArticleSummaryResponseSchema }),
748
+ byMember: endpoint({ method: "GET", path: "/articles/by-author/:memberId", pathParams: memberIdParam, query: ArticleListQuerySchema, response: PageArticleSummaryResponseSchema }),
742
749
  my: endpoint({ method: "GET", path: "/articles/my", response: PageArticleSummaryResponseSchema }),
743
750
  detail: endpoint({ method: "GET", path: "/articles/:articleId", pathParams: articleIdParam, response: ArticleDetailResponseSchema }),
744
- create: endpoint({ method: "POST", path: "/articles", body: CreateArticleRequestSchema, response: NoContentSchema }),
745
- createComment: endpoint({ method: "POST", path: "/articles/:articleId/comments", pathParams: articleIdParam, body: CreateCommentRequestSchema, response: NoContentSchema }),
751
+ create: endpoint({ method: "POST", path: "/articles", body: CreateArticleRequestSchema, response: CreatedEntityIdResponseSchema }),
752
+ like: endpoint({ method: "POST", path: "/articles/:articleId/like", pathParams: articleIdParam, response: ArticleLikeResponseSchema }),
753
+ createComment: endpoint({ method: "POST", path: "/articles/:articleId/comments", pathParams: articleIdParam, body: CreateCommentRequestSchema, response: CreatedEntityIdResponseSchema }),
746
754
  presignArticleImage: endpoint({ method: "POST", path: "/uploads/presign-article", response: PresignArticleResponseSchema }),
747
755
  delete: endpoint({ method: "DELETE", path: "/articles/:articleId", pathParams: articleIdParam, response: NoContentSchema }),
748
- deleteComment: endpoint({ method: "DELETE", path: "/articles/:articleId/comments/:commentId", pathParams: articleIdParam.merge(commentIdParam), response: NoContentSchema })
756
+ deleteComment: endpoint({ method: "DELETE", path: "/articles/comments/:commentId", pathParams: commentIdParam, response: NoContentSchema })
749
757
  // TODO: 게시물 수정 기능
750
758
  },
751
759
  recruits: {
@@ -770,8 +778,8 @@ var apiContract = {
770
778
  list: endpoint({ method: "GET", path: "/friends", response: import_zod19.z.array(FriendListItemResponseSchema) }),
771
779
  blockList: endpoint({ method: "GET", path: "/friends/blocks", response: import_zod19.z.array(FriendBlockItemResponseSchema) }),
772
780
  incomingRequest: endpoint({ method: "GET", path: "/friends/requests/incoming", response: import_zod19.z.array(FriendRequestItemResponseSchema) }),
773
- outgoingRequest: endpoint({ method: "GET", path: "/friends/requests/outgoint", response: import_zod19.z.array(FriendRequestItemResponseSchema) }),
774
- sendRequest: endpoint({ method: "POST", path: "/friends/requests/:memberId", pathParams: friendRequestIdParam, response: NoContentSchema }),
781
+ outgoingRequest: endpoint({ method: "GET", path: "/friends/requests/outgoing", response: import_zod19.z.array(FriendRequestItemResponseSchema) }),
782
+ sendRequest: endpoint({ method: "POST", path: "/friends/requests/:memberId", pathParams: memberIdParam, response: NoContentSchema }),
775
783
  acceptRequest: endpoint({ method: "POST", path: "/friends/requests/:requestId/accept", pathParams: friendRequestIdParam, response: NoContentSchema }),
776
784
  rejectRequest: endpoint({ method: "POST", path: "/friends/requests/:requestId/reject", pathParams: friendRequestIdParam, response: NoContentSchema }),
777
785
  block: endpoint({ method: "POST", path: "/friends/blocks/:memberId", pathParams: memberIdParam, response: NoContentSchema }),
@@ -854,6 +862,7 @@ var toReferralCode = (value) => ReferralCodeSchema.parse(value);
854
862
  ArticleCoreSchema,
855
863
  ArticleDetailResponseSchema,
856
864
  ArticleIdSchema,
865
+ ArticleLikeResponseSchema,
857
866
  ArticleListQuerySchema,
858
867
  ArticleSortBySchema,
859
868
  ArticleSummaryResponseSchema,
@@ -1,4 +1,4 @@
1
- export { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './article/index.cjs';
1
+ export { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleLikeResponse, ArticleLikeResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './article/index.cjs';
2
2
  export { LoginRequest, LoginRequestSchema, SignupRequest, SignupRequestSchema, SignupResponse, SignupResponseSchema, TokenResponse, TokenResponseSchema } from './auth/index.cjs';
3
3
  export { ApiContract, ApiDomain, ApiFailure, ApiFailureSchema, ApiResponse, ApiResponseSchema, ApiSuccess, ApiSuccessSchema, AsyncMapperContract, BaseResponse, BodyOf, CreatedEntityIdResponse, CreatedEntityIdResponseSchema, EndpointContract, EntityContract, HttpMethod, ISODateString, ISODateStringSchema, ISODateTimeString, ISODateTimeStringSchema, MapperContract, MapperInput, MapperOutput, NoBodySchema, NoContent, NoContentSchema, NoParamsSchema, NoQuerySchema, PageMeta, PageMetaSchema, PageQuerySchema, PageRequest, PageResponse, PageResponseSchema, PathParamsOf, QueryOf, ResponseOf, SortDirection, SortDirectionSchema, TimeHHmmString, TimeHHmmStringSchema, apiContract, endpoint, makeApiResponseSchema, makeApiSuccessSchema } from './common/index.cjs';
4
4
  export { A as ArticleId, a as ArticleIdSchema, B as Brand, C as CommentId, b as CommentIdSchema, c as CouponId, d as CouponIdSchema, F as Food, e as FoodCode, f as FoodCodeSchema, g as FoodLabel, h as FoodLabelSchema, i as FoodSchema, j as FriendRequestId, k as FriendRequestIdSchema, I as InvitationId, l as InvitationIdSchema, M as MemberId, m as MemberIdSchema, N as NonEmptyStringIdSchema, P as PlanId, n as PlanIdSchema, o as PositiveIntIdSchema, R as RecruitId, p as RecruitIdSchema, q as ReferralCode, r as ReferralCodeSchema, s as RestaurantId, t as RestaurantIdSchema, u as RoomId, v as RoomIdSchema, S as SubscriptionId, w as SubscriptionIdSchema, U as UserId, x as UserIdSchema, y as toArticleId, z as toCommentId, D as toCouponId, E as toFriendRequestId, G as toInvitationId, H as toMemberId, J as toPlanId, K as toRecruitId, L as toReferralCode, O as toRestaurantId, Q as toRoomId, T as toSubscriptionId } from '../id-dAYxfjZn.cjs';
@@ -1,4 +1,4 @@
1
- export { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './article/index.js';
1
+ export { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleLikeResponse, ArticleLikeResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './article/index.js';
2
2
  export { LoginRequest, LoginRequestSchema, SignupRequest, SignupRequestSchema, SignupResponse, SignupResponseSchema, TokenResponse, TokenResponseSchema } from './auth/index.js';
3
3
  export { ApiContract, ApiDomain, ApiFailure, ApiFailureSchema, ApiResponse, ApiResponseSchema, ApiSuccess, ApiSuccessSchema, AsyncMapperContract, BaseResponse, BodyOf, CreatedEntityIdResponse, CreatedEntityIdResponseSchema, EndpointContract, EntityContract, HttpMethod, ISODateString, ISODateStringSchema, ISODateTimeString, ISODateTimeStringSchema, MapperContract, MapperInput, MapperOutput, NoBodySchema, NoContent, NoContentSchema, NoParamsSchema, NoQuerySchema, PageMeta, PageMetaSchema, PageQuerySchema, PageRequest, PageResponse, PageResponseSchema, PathParamsOf, QueryOf, ResponseOf, SortDirection, SortDirectionSchema, TimeHHmmString, TimeHHmmStringSchema, apiContract, endpoint, makeApiResponseSchema, makeApiSuccessSchema } from './common/index.js';
4
4
  export { A as ArticleId, a as ArticleIdSchema, B as Brand, C as CommentId, b as CommentIdSchema, c as CouponId, d as CouponIdSchema, F as Food, e as FoodCode, f as FoodCodeSchema, g as FoodLabel, h as FoodLabelSchema, i as FoodSchema, j as FriendRequestId, k as FriendRequestIdSchema, I as InvitationId, l as InvitationIdSchema, M as MemberId, m as MemberIdSchema, N as NonEmptyStringIdSchema, P as PlanId, n as PlanIdSchema, o as PositiveIntIdSchema, R as RecruitId, p as RecruitIdSchema, q as ReferralCode, r as ReferralCodeSchema, s as RestaurantId, t as RestaurantIdSchema, u as RoomId, v as RoomIdSchema, S as SubscriptionId, w as SubscriptionIdSchema, U as UserId, x as UserIdSchema, y as toArticleId, z as toCommentId, D as toCouponId, E as toFriendRequestId, G as toInvitationId, H as toMemberId, J as toPlanId, K as toRecruitId, L as toReferralCode, O as toRestaurantId, Q as toRoomId, T as toSubscriptionId } from '../id-dAYxfjZn.js';
@@ -1,6 +1,6 @@
1
- import "../chunk-VWPUBTMV.js";
2
- import "../chunk-NCVWB52E.js";
1
+ import "../chunk-23FZ4MAS.js";
3
2
  import "../chunk-PFSZSKD5.js";
3
+ import "../chunk-NCVWB52E.js";
4
4
  import {
5
5
  ApiFailureSchema,
6
6
  ApiResponseSchema,
@@ -32,21 +32,7 @@ import {
32
32
  toRestaurantId,
33
33
  toRoomId,
34
34
  toSubscriptionId
35
- } from "../chunk-JEUH3JDZ.js";
36
- import {
37
- FriendMealItemResponseSchema,
38
- FriendMealQuerySchema,
39
- MealStatusActionSchema,
40
- MealStatusResponseSchema,
41
- MealStatusSchema,
42
- UpdateMealStatusRequestSchema
43
- } from "../chunk-UJJMW7II.js";
44
- import {
45
- PlanListQuerySchema,
46
- PlanResponseSchema,
47
- PlanStatusSchema,
48
- PlanTypeSchema
49
- } from "../chunk-W3YQYI4R.js";
35
+ } from "../chunk-SOHYA6XL.js";
50
36
  import {
51
37
  ChallengeStatusResponseSchema,
52
38
  ClaimChallengeRewardRequestSchema,
@@ -58,6 +44,12 @@ import {
58
44
  ReferralCreateResponseSchema,
59
45
  ReferralItemResponseSchema
60
46
  } from "../chunk-VAWYU5JG.js";
47
+ import {
48
+ PlanListQuerySchema,
49
+ PlanResponseSchema,
50
+ PlanStatusSchema,
51
+ PlanTypeSchema
52
+ } from "../chunk-W3YQYI4R.js";
61
53
  import {
62
54
  AddLocationCandidateRequestSchema,
63
55
  ChatMessageRequestSchema,
@@ -96,6 +88,7 @@ import {
96
88
  ArticleCommentSchema,
97
89
  ArticleCoreSchema,
98
90
  ArticleDetailResponseSchema,
91
+ ArticleLikeResponseSchema,
99
92
  ArticleListQuerySchema,
100
93
  ArticleSortBySchema,
101
94
  ArticleSummaryResponseSchema,
@@ -108,7 +101,7 @@ import {
108
101
  PageResponseSchema,
109
102
  PresignArticleResponseSchema,
110
103
  SortDirectionSchema
111
- } from "../chunk-TY4WZEIZ.js";
104
+ } from "../chunk-RLVHDFEV.js";
112
105
  import {
113
106
  KakaoPlaceRawSchema,
114
107
  RestaurantSchema
@@ -126,18 +119,26 @@ import {
126
119
  FriendRequestMemberSchema,
127
120
  FriendRequestStatusSchema
128
121
  } from "../chunk-U6OQQOPN.js";
129
- import {
130
- ISODateStringSchema,
131
- ISODateTimeStringSchema,
132
- TimeHHmmStringSchema
133
- } from "../chunk-HRM3FQPL.js";
134
122
  import {
135
123
  AcceptInvitationResponseSchema,
136
124
  CreateInvitationRequestSchema,
137
125
  InvitationListItemResponseSchema,
138
126
  SendInvitationResponseSchema
139
127
  } from "../chunk-YGFAVC5N.js";
128
+ import {
129
+ FriendMealItemResponseSchema,
130
+ FriendMealQuerySchema,
131
+ MealStatusActionSchema,
132
+ MealStatusResponseSchema,
133
+ MealStatusSchema,
134
+ UpdateMealStatusRequestSchema
135
+ } from "../chunk-UJJMW7II.js";
140
136
  import "../chunk-NJTV6DRT.js";
137
+ import {
138
+ ISODateStringSchema,
139
+ ISODateTimeStringSchema,
140
+ TimeHHmmStringSchema
141
+ } from "../chunk-HRM3FQPL.js";
141
142
  import {
142
143
  CreateProfileRequestSchema,
143
144
  MemberCoreSchema,
@@ -182,6 +183,7 @@ export {
182
183
  ArticleCoreSchema,
183
184
  ArticleDetailResponseSchema,
184
185
  ArticleIdSchema,
186
+ ArticleLikeResponseSchema,
185
187
  ArticleListQuerySchema,
186
188
  ArticleSortBySchema,
187
189
  ArticleSummaryResponseSchema,
@@ -6,8 +6,8 @@ import {
6
6
  MealStatusSchema,
7
7
  UpdateMealStatusRequestSchema
8
8
  } from "../../chunk-UJJMW7II.js";
9
- import "../../chunk-HRM3FQPL.js";
10
9
  import "../../chunk-NJTV6DRT.js";
10
+ import "../../chunk-HRM3FQPL.js";
11
11
  import "../../chunk-KRVEQVRC.js";
12
12
  import "../../chunk-H77ISYYC.js";
13
13
  export {
@@ -6,8 +6,8 @@ import {
6
6
  } from "../../chunk-W3YQYI4R.js";
7
7
  import "../../chunk-M5OSCHMV.js";
8
8
  import "../../chunk-GTVEQYJW.js";
9
- import "../../chunk-HRM3FQPL.js";
10
9
  import "../../chunk-NJTV6DRT.js";
10
+ import "../../chunk-HRM3FQPL.js";
11
11
  import "../../chunk-KRVEQVRC.js";
12
12
  import "../../chunk-H77ISYYC.js";
13
13
  export {
@@ -5,18 +5,18 @@ import {
5
5
  RecruitListResponseSchema,
6
6
  RecruitSortBySchema,
7
7
  RecruitStatusSchema
8
- } from "../../chunk-JEUH3JDZ.js";
9
- import "../../chunk-UJJMW7II.js";
10
- import "../../chunk-W3YQYI4R.js";
8
+ } from "../../chunk-SOHYA6XL.js";
11
9
  import "../../chunk-VAWYU5JG.js";
10
+ import "../../chunk-W3YQYI4R.js";
12
11
  import "../../chunk-M5OSCHMV.js";
13
- import "../../chunk-TY4WZEIZ.js";
12
+ import "../../chunk-RLVHDFEV.js";
14
13
  import "../../chunk-GTVEQYJW.js";
15
14
  import "../../chunk-J76VB5SE.js";
16
15
  import "../../chunk-U6OQQOPN.js";
17
- import "../../chunk-HRM3FQPL.js";
18
16
  import "../../chunk-YGFAVC5N.js";
17
+ import "../../chunk-UJJMW7II.js";
19
18
  import "../../chunk-NJTV6DRT.js";
19
+ import "../../chunk-HRM3FQPL.js";
20
20
  import "../../chunk-KRVEQVRC.js";
21
21
  import "../../chunk-H77ISYYC.js";
22
22
  export {
@@ -34,8 +34,8 @@ import {
34
34
  VoteLocationRequestSchema
35
35
  } from "../../chunk-M5OSCHMV.js";
36
36
  import "../../chunk-GTVEQYJW.js";
37
- import "../../chunk-HRM3FQPL.js";
38
37
  import "../../chunk-NJTV6DRT.js";
38
+ import "../../chunk-HRM3FQPL.js";
39
39
  import "../../chunk-KRVEQVRC.js";
40
40
  import "../../chunk-H77ISYYC.js";
41
41
  export {
@@ -1,4 +1,4 @@
1
- import { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './domain/article/index.cjs';
1
+ import { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleLikeResponse, ArticleLikeResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './domain/article/index.cjs';
2
2
  import { LoginRequest, LoginRequestSchema, SignupRequest, SignupRequestSchema, SignupResponse, SignupResponseSchema, TokenResponse, TokenResponseSchema } from './domain/auth/index.cjs';
3
3
  import { ApiContract, ApiDomain, ApiFailure, ApiFailureSchema, ApiResponse, ApiResponseSchema, ApiSuccess, ApiSuccessSchema, AsyncMapperContract, BaseResponse, BodyOf, CreatedEntityIdResponse, CreatedEntityIdResponseSchema, EndpointContract, EntityContract, HttpMethod, ISODateString, ISODateStringSchema, ISODateTimeString, ISODateTimeStringSchema, MapperContract, MapperInput, MapperOutput, NoBodySchema, NoContent, NoContentSchema, NoParamsSchema, NoQuerySchema, PageMeta, PageMetaSchema, PageQuerySchema, PageRequest, PageResponse, PageResponseSchema, PathParamsOf, QueryOf, ResponseOf, SortDirection, SortDirectionSchema, TimeHHmmString, TimeHHmmStringSchema, apiContract, endpoint, makeApiResponseSchema, makeApiSuccessSchema } from './domain/common/index.cjs';
4
4
  import { A as ArticleId, a as ArticleIdSchema, B as Brand, C as CommentId, b as CommentIdSchema, c as CouponId, d as CouponIdSchema, F as Food, e as FoodCode, f as FoodCodeSchema, g as FoodLabel, h as FoodLabelSchema, i as FoodSchema, j as FriendRequestId, k as FriendRequestIdSchema, I as InvitationId, l as InvitationIdSchema, M as MemberId, m as MemberIdSchema, N as NonEmptyStringIdSchema, P as PlanId, n as PlanIdSchema, o as PositiveIntIdSchema, R as RecruitId, p as RecruitIdSchema, q as ReferralCode, r as ReferralCodeSchema, s as RestaurantId, t as RestaurantIdSchema, u as RoomId, v as RoomIdSchema, S as SubscriptionId, w as SubscriptionIdSchema, U as UserId, x as UserIdSchema, y as toArticleId, z as toCommentId, D as toCouponId, E as toFriendRequestId, G as toInvitationId, H as toMemberId, J as toPlanId, K as toRecruitId, L as toReferralCode, O as toRestaurantId, Q as toRoomId, T as toSubscriptionId } from './id-dAYxfjZn.cjs';
@@ -32,6 +32,8 @@ declare const index_ArticleDetailResponse: typeof ArticleDetailResponse;
32
32
  declare const index_ArticleDetailResponseSchema: typeof ArticleDetailResponseSchema;
33
33
  declare const index_ArticleId: typeof ArticleId;
34
34
  declare const index_ArticleIdSchema: typeof ArticleIdSchema;
35
+ declare const index_ArticleLikeResponse: typeof ArticleLikeResponse;
36
+ declare const index_ArticleLikeResponseSchema: typeof ArticleLikeResponseSchema;
35
37
  declare const index_ArticleListQueryRequest: typeof ArticleListQueryRequest;
36
38
  declare const index_ArticleListQuerySchema: typeof ArticleListQuerySchema;
37
39
  declare const index_ArticleSortBy: typeof ArticleSortBy;
@@ -286,7 +288,7 @@ declare const index_toRestaurantId: typeof toRestaurantId;
286
288
  declare const index_toRoomId: typeof toRoomId;
287
289
  declare const index_toSubscriptionId: typeof toSubscriptionId;
288
290
  declare namespace index {
289
- export { index_AcceptInvitationResponse as AcceptInvitationResponse, index_AcceptInvitationResponseSchema as AcceptInvitationResponseSchema, index_AddLocationCandidateRequestSchema as AddLocationCandidateRequestSchema, index_AnnouncementStage as AnnouncementStage, index_ApiContract as ApiContract, index_ApiDomain as ApiDomain, index_ApiFailure as ApiFailure, index_ApiFailureSchema as ApiFailureSchema, index_ApiResponse as ApiResponse, index_ApiResponseSchema as ApiResponseSchema, index_ApiSuccess as ApiSuccess, index_ApiSuccessSchema as ApiSuccessSchema, index_ArticleComment as ArticleComment, index_ArticleCommentSchema as ArticleCommentSchema, index_ArticleCore as ArticleCore, index_ArticleCoreSchema as ArticleCoreSchema, index_ArticleDetailResponse as ArticleDetailResponse, index_ArticleDetailResponseSchema as ArticleDetailResponseSchema, index_ArticleId as ArticleId, index_ArticleIdSchema as ArticleIdSchema, index_ArticleListQueryRequest as ArticleListQueryRequest, index_ArticleListQuerySchema as ArticleListQuerySchema, index_ArticleSortBy as ArticleSortBy, index_ArticleSortBySchema as ArticleSortBySchema, index_ArticleSummaryResponse as ArticleSummaryResponse, index_ArticleSummaryResponseSchema as ArticleSummaryResponseSchema, index_AsyncMapperContract as AsyncMapperContract, index_BaseResponse as BaseResponse, index_BodyOf as BodyOf, index_Brand as Brand, index_ChallengeStatusResponse as ChallengeStatusResponse, index_ChallengeStatusResponseSchema as ChallengeStatusResponseSchema, index_ChatMessageRequest as ChatMessageRequest, index_ChatMessageRequestSchema as ChatMessageRequestSchema, index_ChatMessageResponse as ChatMessageResponse, index_ChatMessageResponseSchema as ChatMessageResponseSchema, index_ClaimChallengeRewardRequest as ClaimChallengeRewardRequest, index_ClaimChallengeRewardRequestSchema as ClaimChallengeRewardRequestSchema, index_ClaimChallengeRewardResponse as ClaimChallengeRewardResponse, index_ClaimChallengeRewardResponseSchema as ClaimChallengeRewardResponseSchema, index_ClientEventMapFromSchemas as ClientEventMapFromSchemas, index_ClientToServerEvents as ClientToServerEvents, index_CommentId as CommentId, index_CommentIdSchema as CommentIdSchema, index_CouponId as CouponId, index_CouponIdSchema as CouponIdSchema, index_CouponResponse as CouponResponse, index_CouponResponseSchema as CouponResponseSchema, index_CouponStatus as CouponStatus, index_CouponStatusSchema as CouponStatusSchema, index_CouponType as CouponType, index_CouponTypeSchema as CouponTypeSchema, index_CreateArticleRequest as CreateArticleRequest, index_CreateArticleRequestSchema as CreateArticleRequestSchema, index_CreateCommentRequest as CreateCommentRequest, index_CreateCommentRequestSchema as CreateCommentRequestSchema, index_CreateInvitationRequest as CreateInvitationRequest, index_CreateInvitationRequestSchema as CreateInvitationRequestSchema, index_CreateProfileRequest as CreateProfileRequest, index_CreateProfileRequestSchema as CreateProfileRequestSchema, index_CreateRecruitRequest as CreateRecruitRequest, index_CreateRecruitRequestSchema as CreateRecruitRequestSchema, index_CreateRecruitResponse as CreateRecruitResponse, index_CreateRecruitResponseSchema as CreateRecruitResponseSchema, index_CreatedEntityIdResponse as CreatedEntityIdResponse, index_CreatedEntityIdResponseSchema as CreatedEntityIdResponseSchema, index_DatePicksUpdateResponseSchema as DatePicksUpdateResponseSchema, index_EndpointContract as EndpointContract, index_EntityContract as EntityContract, index_ExcludeMenuRequestSchema as ExcludeMenuRequestSchema, index_ExcludeMenuUpdateResponseSchema as ExcludeMenuUpdateResponseSchema, index_FinalState as FinalState, index_FinalStateSchema as FinalStateSchema, index_Food as Food, index_FoodAnalysisResult as FoodAnalysisResult, index_FoodAnalysisResultSchema as FoodAnalysisResultSchema, index_FoodCode as FoodCode, index_FoodCodeSchema as FoodCodeSchema, index_FoodLabel as FoodLabel, index_FoodLabelSchema as FoodLabelSchema, index_FoodSchema as FoodSchema, index_FriendBlockItemResponse as FriendBlockItemResponse, index_FriendBlockItemResponseSchema as FriendBlockItemResponseSchema, index_FriendListItemResponse as FriendListItemResponse, index_FriendListItemResponseSchema as FriendListItemResponseSchema, index_FriendMealItemResponse as FriendMealItemResponse, index_FriendMealItemResponseSchema as FriendMealItemResponseSchema, index_FriendMealQuery as FriendMealQuery, index_FriendMealQuerySchema as FriendMealQuerySchema, index_FriendRequestId as FriendRequestId, index_FriendRequestIdSchema as FriendRequestIdSchema, index_FriendRequestItemResponse as FriendRequestItemResponse, index_FriendRequestItemResponseSchema as FriendRequestItemResponseSchema, index_FriendRequestMember as FriendRequestMember, index_FriendRequestMemberSchema as FriendRequestMemberSchema, index_FriendRequestStatus as FriendRequestStatus, index_FriendRequestStatusSchema as FriendRequestStatusSchema, index_HttpMethod as HttpMethod, index_ISODateString as ISODateString, index_ISODateStringSchema as ISODateStringSchema, index_ISODateTimeString as ISODateTimeString, index_ISODateTimeStringSchema as ISODateTimeStringSchema, index_InvitationId as InvitationId, index_InvitationIdSchema as InvitationIdSchema, index_InvitationListItemResponseSchema as InvitationListItemResponseSchema, index_InvitationResponse as InvitationResponse, index_InvitationRoomStage as InvitationRoomStage, index_InvitationRoomStageSchema as InvitationRoomStageSchema, index_KakaoPlaceRaw as KakaoPlaceRaw, index_KakaoPlaceRawSchema as KakaoPlaceRawSchema, index_LocationCandidate as LocationCandidate, index_LocationCandidateAddUpdateResponseSchema as LocationCandidateAddUpdateResponseSchema, index_LocationCandidateSchema as LocationCandidateSchema, index_LocationCandidateVoteUpdateResponseSchema as LocationCandidateVoteUpdateResponseSchema, index_LocationId as LocationId, index_LocationIdSchema as LocationIdSchema, index_LoginRequest as LoginRequest, index_LoginRequestSchema as LoginRequestSchema, index_MapperContract as MapperContract, index_MapperInput as MapperInput, index_MapperOutput as MapperOutput, index_MealStatus as MealStatus, index_MealStatusAction as MealStatusAction, index_MealStatusActionSchema as MealStatusActionSchema, index_MealStatusResponse as MealStatusResponse, index_MealStatusResponseSchema as MealStatusResponseSchema, index_MealStatusSchema as MealStatusSchema, index_MeetingResponse as MeetingResponse, index_MemberCore as MemberCore, index_MemberCoreSchema as MemberCoreSchema, index_MemberDetail as MemberDetail, index_MemberDetailSchema as MemberDetailSchema, index_MemberFoodPreference as MemberFoodPreference, index_MemberFoodPreferenceSchema as MemberFoodPreferenceSchema, index_MemberId as MemberId, index_MemberIdSchema as MemberIdSchema, index_MemberResponse as MemberResponse, index_MemberResponseSchema as MemberResponseSchema, index_MemberRole as MemberRole, index_MemberRoleSchema as MemberRoleSchema, index_MemberSearchQuery as MemberSearchQuery, index_MemberSearchQuerySchema as MemberSearchQuerySchema, index_MemberSerachResponse as MemberSerachResponse, index_MemberSerachResponseSchema as MemberSerachResponseSchema, index_Menu as Menu, index_MenuCode as MenuCode, index_MenuCodeSchema as MenuCodeSchema, index_MenuPickUpdateResponseSchema as MenuPickUpdateResponseSchema, index_MenuSchema as MenuSchema, index_NoBodySchema as NoBodySchema, index_NoContent as NoContent, index_NoContentSchema as NoContentSchema, index_NoParamsSchema as NoParamsSchema, index_NoQuerySchema as NoQuerySchema, index_NonEmptyStringIdSchema as NonEmptyStringIdSchema, index_PageArticleSummaryResponse as PageArticleSummaryResponse, index_PageArticleSummaryResponseSchema as PageArticleSummaryResponseSchema, index_PageMeta as PageMeta, index_PageMetaSchema as PageMetaSchema, index_PageQuerySchema as PageQuerySchema, index_PageRequest as PageRequest, index_PageResponse as PageResponse, index_PageResponseSchema as PageResponseSchema, index_Participant as Participant, index_ParticipantSchema as ParticipantSchema, index_PathParamsOf as PathParamsOf, index_PhaseDataBroadcast as PhaseDataBroadcast, index_PhaseDataBroadcastSchema as PhaseDataBroadcastSchema, index_PickDateRequestSchema as PickDateRequestSchema, index_PickMenuRequestSchema as PickMenuRequestSchema, index_PickRestaurantRequestSchema as PickRestaurantRequestSchema, index_PickTimesRequestSchema as PickTimesRequestSchema, index_PlanId as PlanId, index_PlanIdSchema as PlanIdSchema, index_PlanListQuery as PlanListQuery, index_PlanListQuerySchema as PlanListQuerySchema, index_PlanResponse as PlanResponse, index_PlanResponseSchema as PlanResponseSchema, index_PlanStatus as PlanStatus, index_PlanStatusSchema as PlanStatusSchema, index_PlanType as PlanType, index_PlanTypeSchema as PlanTypeSchema, index_PositiveIntIdSchema as PositiveIntIdSchema, index_PresignArticleResponse as PresignArticleResponse, index_PresignArticleResponseSchema as PresignArticleResponseSchema, index_PresignProfileResponse as PresignProfileResponse, index_PresignProfileResponseSchema as PresignProfileResponseSchema, index_ProfileDetailResponse as ProfileDetailResponse, index_ProfileDetailResponseSchema as ProfileDetailResponseSchema, index_QueryOf as QueryOf, index_ReadyStateChangedSchema as ReadyStateChangedSchema, index_ReadyStateRequest as ReadyStateRequest, index_ReadyStateRequestSchema as ReadyStateRequestSchema, index_RecruitId as RecruitId, index_RecruitIdSchema as RecruitIdSchema, index_RecruitListQuery as RecruitListQuery, index_RecruitListQuerySchema as RecruitListQuerySchema, index_RecruitListResponse as RecruitListResponse, index_RecruitListResponseSchema as RecruitListResponseSchema, index_RecruitRoomStage as RecruitRoomStage, index_RecruitRoomStageSchema as RecruitRoomStageSchema, index_RecruitSortBy as RecruitSortBy, index_RecruitSortBySchema as RecruitSortBySchema, index_RecruitStatus as RecruitStatus, index_RecruitStatusSchema as RecruitStatusSchema, index_RedeemReferralRequest as RedeemReferralRequest, index_RedeemReferralRequestSchema as RedeemReferralRequestSchema, index_ReferralCode as ReferralCode, index_ReferralCodeSchema as ReferralCodeSchema, index_ReferralCreateResponse as ReferralCreateResponse, index_ReferralCreateResponseSchema as ReferralCreateResponseSchema, index_ReferralItemResponse as ReferralItemResponse, index_ReferralItemResponseSchema as ReferralItemResponseSchema, index_ResponseOf as ResponseOf, index_RestaurantId as RestaurantId, index_RestaurantIdSchema as RestaurantIdSchema, index_RestaurantPickUpdateResponseSchema as RestaurantPickUpdateResponseSchema, index_RestaurantResponse as RestaurantResponse, index_RestaurantSchema as RestaurantSchema, index_RoomAssignedResponse as RoomAssignedResponse, index_RoomAssignedResponseSchema as RoomAssignedResponseSchema, index_RoomClientToServerEvents as RoomClientToServerEvents, index_RoomId as RoomId, index_RoomIdSchema as RoomIdSchema, index_RoomInitialState as RoomInitialState, index_RoomInitialStateSchema as RoomInitialStateSchema, index_RoomServerToClientEvents as RoomServerToClientEvents, index_RoomSocketClientEventSchemas as RoomSocketClientEventSchemas, index_RoomSocketError as RoomSocketError, index_RoomSocketErrorSchema as RoomSocketErrorSchema, index_RoomSocketServerEventSchemas as RoomSocketServerEventSchemas, index_SendInvitationResponse as SendInvitationResponse, index_SendInvitationResponseSchema as SendInvitationResponseSchema, index_ServerToClientEvents as ServerToClientEvents, index_SignupRequest as SignupRequest, index_SignupRequestSchema as SignupRequestSchema, index_SignupResponse as SignupResponse, index_SignupResponseSchema as SignupResponseSchema, index_SortDirection as SortDirection, index_SortDirectionSchema as SortDirectionSchema, index_SubscriptionId as SubscriptionId, index_SubscriptionIdSchema as SubscriptionIdSchema, index_TimeHHmmString as TimeHHmmString, index_TimeHHmmStringSchema as TimeHHmmStringSchema, index_TimePicksUpdateResponseSchema as TimePicksUpdateResponseSchema, index_TokenResponse as TokenResponse, index_TokenResponseSchema as TokenResponseSchema, index_UpdateMealStatusRequest as UpdateMealStatusRequest, index_UpdateMealStatusRequestSchema as UpdateMealStatusRequestSchema, index_UpdatePreferenceRequest as UpdatePreferenceRequest, index_UpdatePreferenceRequestSchema as UpdatePreferenceRequestSchema, index_UpdateProfileRequest as UpdateProfileRequest, index_UpdateProfileRequestSchema as UpdateProfileRequestSchema, index_User as User, index_UserId as UserId, index_UserIdSchema as UserIdSchema, index_VoteLocationRequestSchema as VoteLocationRequestSchema, index_apiContract as apiContract, index_endpoint as endpoint, index_makeApiResponseSchema as makeApiResponseSchema, index_makeApiSuccessSchema as makeApiSuccessSchema, index_toArticleId as toArticleId, index_toCommentId as toCommentId, index_toCouponId as toCouponId, index_toFriendRequestId as toFriendRequestId, index_toInvitationId as toInvitationId, index_toMemberId as toMemberId, index_toPlanId as toPlanId, index_toRecruitId as toRecruitId, index_toReferralCode as toReferralCode, index_toRestaurantId as toRestaurantId, index_toRoomId as toRoomId, index_toSubscriptionId as toSubscriptionId };
291
+ export { index_AcceptInvitationResponse as AcceptInvitationResponse, index_AcceptInvitationResponseSchema as AcceptInvitationResponseSchema, index_AddLocationCandidateRequestSchema as AddLocationCandidateRequestSchema, index_AnnouncementStage as AnnouncementStage, index_ApiContract as ApiContract, index_ApiDomain as ApiDomain, index_ApiFailure as ApiFailure, index_ApiFailureSchema as ApiFailureSchema, index_ApiResponse as ApiResponse, index_ApiResponseSchema as ApiResponseSchema, index_ApiSuccess as ApiSuccess, index_ApiSuccessSchema as ApiSuccessSchema, index_ArticleComment as ArticleComment, index_ArticleCommentSchema as ArticleCommentSchema, index_ArticleCore as ArticleCore, index_ArticleCoreSchema as ArticleCoreSchema, index_ArticleDetailResponse as ArticleDetailResponse, index_ArticleDetailResponseSchema as ArticleDetailResponseSchema, index_ArticleId as ArticleId, index_ArticleIdSchema as ArticleIdSchema, index_ArticleLikeResponse as ArticleLikeResponse, index_ArticleLikeResponseSchema as ArticleLikeResponseSchema, index_ArticleListQueryRequest as ArticleListQueryRequest, index_ArticleListQuerySchema as ArticleListQuerySchema, index_ArticleSortBy as ArticleSortBy, index_ArticleSortBySchema as ArticleSortBySchema, index_ArticleSummaryResponse as ArticleSummaryResponse, index_ArticleSummaryResponseSchema as ArticleSummaryResponseSchema, index_AsyncMapperContract as AsyncMapperContract, index_BaseResponse as BaseResponse, index_BodyOf as BodyOf, index_Brand as Brand, index_ChallengeStatusResponse as ChallengeStatusResponse, index_ChallengeStatusResponseSchema as ChallengeStatusResponseSchema, index_ChatMessageRequest as ChatMessageRequest, index_ChatMessageRequestSchema as ChatMessageRequestSchema, index_ChatMessageResponse as ChatMessageResponse, index_ChatMessageResponseSchema as ChatMessageResponseSchema, index_ClaimChallengeRewardRequest as ClaimChallengeRewardRequest, index_ClaimChallengeRewardRequestSchema as ClaimChallengeRewardRequestSchema, index_ClaimChallengeRewardResponse as ClaimChallengeRewardResponse, index_ClaimChallengeRewardResponseSchema as ClaimChallengeRewardResponseSchema, index_ClientEventMapFromSchemas as ClientEventMapFromSchemas, index_ClientToServerEvents as ClientToServerEvents, index_CommentId as CommentId, index_CommentIdSchema as CommentIdSchema, index_CouponId as CouponId, index_CouponIdSchema as CouponIdSchema, index_CouponResponse as CouponResponse, index_CouponResponseSchema as CouponResponseSchema, index_CouponStatus as CouponStatus, index_CouponStatusSchema as CouponStatusSchema, index_CouponType as CouponType, index_CouponTypeSchema as CouponTypeSchema, index_CreateArticleRequest as CreateArticleRequest, index_CreateArticleRequestSchema as CreateArticleRequestSchema, index_CreateCommentRequest as CreateCommentRequest, index_CreateCommentRequestSchema as CreateCommentRequestSchema, index_CreateInvitationRequest as CreateInvitationRequest, index_CreateInvitationRequestSchema as CreateInvitationRequestSchema, index_CreateProfileRequest as CreateProfileRequest, index_CreateProfileRequestSchema as CreateProfileRequestSchema, index_CreateRecruitRequest as CreateRecruitRequest, index_CreateRecruitRequestSchema as CreateRecruitRequestSchema, index_CreateRecruitResponse as CreateRecruitResponse, index_CreateRecruitResponseSchema as CreateRecruitResponseSchema, index_CreatedEntityIdResponse as CreatedEntityIdResponse, index_CreatedEntityIdResponseSchema as CreatedEntityIdResponseSchema, index_DatePicksUpdateResponseSchema as DatePicksUpdateResponseSchema, index_EndpointContract as EndpointContract, index_EntityContract as EntityContract, index_ExcludeMenuRequestSchema as ExcludeMenuRequestSchema, index_ExcludeMenuUpdateResponseSchema as ExcludeMenuUpdateResponseSchema, index_FinalState as FinalState, index_FinalStateSchema as FinalStateSchema, index_Food as Food, index_FoodAnalysisResult as FoodAnalysisResult, index_FoodAnalysisResultSchema as FoodAnalysisResultSchema, index_FoodCode as FoodCode, index_FoodCodeSchema as FoodCodeSchema, index_FoodLabel as FoodLabel, index_FoodLabelSchema as FoodLabelSchema, index_FoodSchema as FoodSchema, index_FriendBlockItemResponse as FriendBlockItemResponse, index_FriendBlockItemResponseSchema as FriendBlockItemResponseSchema, index_FriendListItemResponse as FriendListItemResponse, index_FriendListItemResponseSchema as FriendListItemResponseSchema, index_FriendMealItemResponse as FriendMealItemResponse, index_FriendMealItemResponseSchema as FriendMealItemResponseSchema, index_FriendMealQuery as FriendMealQuery, index_FriendMealQuerySchema as FriendMealQuerySchema, index_FriendRequestId as FriendRequestId, index_FriendRequestIdSchema as FriendRequestIdSchema, index_FriendRequestItemResponse as FriendRequestItemResponse, index_FriendRequestItemResponseSchema as FriendRequestItemResponseSchema, index_FriendRequestMember as FriendRequestMember, index_FriendRequestMemberSchema as FriendRequestMemberSchema, index_FriendRequestStatus as FriendRequestStatus, index_FriendRequestStatusSchema as FriendRequestStatusSchema, index_HttpMethod as HttpMethod, index_ISODateString as ISODateString, index_ISODateStringSchema as ISODateStringSchema, index_ISODateTimeString as ISODateTimeString, index_ISODateTimeStringSchema as ISODateTimeStringSchema, index_InvitationId as InvitationId, index_InvitationIdSchema as InvitationIdSchema, index_InvitationListItemResponseSchema as InvitationListItemResponseSchema, index_InvitationResponse as InvitationResponse, index_InvitationRoomStage as InvitationRoomStage, index_InvitationRoomStageSchema as InvitationRoomStageSchema, index_KakaoPlaceRaw as KakaoPlaceRaw, index_KakaoPlaceRawSchema as KakaoPlaceRawSchema, index_LocationCandidate as LocationCandidate, index_LocationCandidateAddUpdateResponseSchema as LocationCandidateAddUpdateResponseSchema, index_LocationCandidateSchema as LocationCandidateSchema, index_LocationCandidateVoteUpdateResponseSchema as LocationCandidateVoteUpdateResponseSchema, index_LocationId as LocationId, index_LocationIdSchema as LocationIdSchema, index_LoginRequest as LoginRequest, index_LoginRequestSchema as LoginRequestSchema, index_MapperContract as MapperContract, index_MapperInput as MapperInput, index_MapperOutput as MapperOutput, index_MealStatus as MealStatus, index_MealStatusAction as MealStatusAction, index_MealStatusActionSchema as MealStatusActionSchema, index_MealStatusResponse as MealStatusResponse, index_MealStatusResponseSchema as MealStatusResponseSchema, index_MealStatusSchema as MealStatusSchema, index_MeetingResponse as MeetingResponse, index_MemberCore as MemberCore, index_MemberCoreSchema as MemberCoreSchema, index_MemberDetail as MemberDetail, index_MemberDetailSchema as MemberDetailSchema, index_MemberFoodPreference as MemberFoodPreference, index_MemberFoodPreferenceSchema as MemberFoodPreferenceSchema, index_MemberId as MemberId, index_MemberIdSchema as MemberIdSchema, index_MemberResponse as MemberResponse, index_MemberResponseSchema as MemberResponseSchema, index_MemberRole as MemberRole, index_MemberRoleSchema as MemberRoleSchema, index_MemberSearchQuery as MemberSearchQuery, index_MemberSearchQuerySchema as MemberSearchQuerySchema, index_MemberSerachResponse as MemberSerachResponse, index_MemberSerachResponseSchema as MemberSerachResponseSchema, index_Menu as Menu, index_MenuCode as MenuCode, index_MenuCodeSchema as MenuCodeSchema, index_MenuPickUpdateResponseSchema as MenuPickUpdateResponseSchema, index_MenuSchema as MenuSchema, index_NoBodySchema as NoBodySchema, index_NoContent as NoContent, index_NoContentSchema as NoContentSchema, index_NoParamsSchema as NoParamsSchema, index_NoQuerySchema as NoQuerySchema, index_NonEmptyStringIdSchema as NonEmptyStringIdSchema, index_PageArticleSummaryResponse as PageArticleSummaryResponse, index_PageArticleSummaryResponseSchema as PageArticleSummaryResponseSchema, index_PageMeta as PageMeta, index_PageMetaSchema as PageMetaSchema, index_PageQuerySchema as PageQuerySchema, index_PageRequest as PageRequest, index_PageResponse as PageResponse, index_PageResponseSchema as PageResponseSchema, index_Participant as Participant, index_ParticipantSchema as ParticipantSchema, index_PathParamsOf as PathParamsOf, index_PhaseDataBroadcast as PhaseDataBroadcast, index_PhaseDataBroadcastSchema as PhaseDataBroadcastSchema, index_PickDateRequestSchema as PickDateRequestSchema, index_PickMenuRequestSchema as PickMenuRequestSchema, index_PickRestaurantRequestSchema as PickRestaurantRequestSchema, index_PickTimesRequestSchema as PickTimesRequestSchema, index_PlanId as PlanId, index_PlanIdSchema as PlanIdSchema, index_PlanListQuery as PlanListQuery, index_PlanListQuerySchema as PlanListQuerySchema, index_PlanResponse as PlanResponse, index_PlanResponseSchema as PlanResponseSchema, index_PlanStatus as PlanStatus, index_PlanStatusSchema as PlanStatusSchema, index_PlanType as PlanType, index_PlanTypeSchema as PlanTypeSchema, index_PositiveIntIdSchema as PositiveIntIdSchema, index_PresignArticleResponse as PresignArticleResponse, index_PresignArticleResponseSchema as PresignArticleResponseSchema, index_PresignProfileResponse as PresignProfileResponse, index_PresignProfileResponseSchema as PresignProfileResponseSchema, index_ProfileDetailResponse as ProfileDetailResponse, index_ProfileDetailResponseSchema as ProfileDetailResponseSchema, index_QueryOf as QueryOf, index_ReadyStateChangedSchema as ReadyStateChangedSchema, index_ReadyStateRequest as ReadyStateRequest, index_ReadyStateRequestSchema as ReadyStateRequestSchema, index_RecruitId as RecruitId, index_RecruitIdSchema as RecruitIdSchema, index_RecruitListQuery as RecruitListQuery, index_RecruitListQuerySchema as RecruitListQuerySchema, index_RecruitListResponse as RecruitListResponse, index_RecruitListResponseSchema as RecruitListResponseSchema, index_RecruitRoomStage as RecruitRoomStage, index_RecruitRoomStageSchema as RecruitRoomStageSchema, index_RecruitSortBy as RecruitSortBy, index_RecruitSortBySchema as RecruitSortBySchema, index_RecruitStatus as RecruitStatus, index_RecruitStatusSchema as RecruitStatusSchema, index_RedeemReferralRequest as RedeemReferralRequest, index_RedeemReferralRequestSchema as RedeemReferralRequestSchema, index_ReferralCode as ReferralCode, index_ReferralCodeSchema as ReferralCodeSchema, index_ReferralCreateResponse as ReferralCreateResponse, index_ReferralCreateResponseSchema as ReferralCreateResponseSchema, index_ReferralItemResponse as ReferralItemResponse, index_ReferralItemResponseSchema as ReferralItemResponseSchema, index_ResponseOf as ResponseOf, index_RestaurantId as RestaurantId, index_RestaurantIdSchema as RestaurantIdSchema, index_RestaurantPickUpdateResponseSchema as RestaurantPickUpdateResponseSchema, index_RestaurantResponse as RestaurantResponse, index_RestaurantSchema as RestaurantSchema, index_RoomAssignedResponse as RoomAssignedResponse, index_RoomAssignedResponseSchema as RoomAssignedResponseSchema, index_RoomClientToServerEvents as RoomClientToServerEvents, index_RoomId as RoomId, index_RoomIdSchema as RoomIdSchema, index_RoomInitialState as RoomInitialState, index_RoomInitialStateSchema as RoomInitialStateSchema, index_RoomServerToClientEvents as RoomServerToClientEvents, index_RoomSocketClientEventSchemas as RoomSocketClientEventSchemas, index_RoomSocketError as RoomSocketError, index_RoomSocketErrorSchema as RoomSocketErrorSchema, index_RoomSocketServerEventSchemas as RoomSocketServerEventSchemas, index_SendInvitationResponse as SendInvitationResponse, index_SendInvitationResponseSchema as SendInvitationResponseSchema, index_ServerToClientEvents as ServerToClientEvents, index_SignupRequest as SignupRequest, index_SignupRequestSchema as SignupRequestSchema, index_SignupResponse as SignupResponse, index_SignupResponseSchema as SignupResponseSchema, index_SortDirection as SortDirection, index_SortDirectionSchema as SortDirectionSchema, index_SubscriptionId as SubscriptionId, index_SubscriptionIdSchema as SubscriptionIdSchema, index_TimeHHmmString as TimeHHmmString, index_TimeHHmmStringSchema as TimeHHmmStringSchema, index_TimePicksUpdateResponseSchema as TimePicksUpdateResponseSchema, index_TokenResponse as TokenResponse, index_TokenResponseSchema as TokenResponseSchema, index_UpdateMealStatusRequest as UpdateMealStatusRequest, index_UpdateMealStatusRequestSchema as UpdateMealStatusRequestSchema, index_UpdatePreferenceRequest as UpdatePreferenceRequest, index_UpdatePreferenceRequestSchema as UpdatePreferenceRequestSchema, index_UpdateProfileRequest as UpdateProfileRequest, index_UpdateProfileRequestSchema as UpdateProfileRequestSchema, index_User as User, index_UserId as UserId, index_UserIdSchema as UserIdSchema, index_VoteLocationRequestSchema as VoteLocationRequestSchema, index_apiContract as apiContract, index_endpoint as endpoint, index_makeApiResponseSchema as makeApiResponseSchema, index_makeApiSuccessSchema as makeApiSuccessSchema, index_toArticleId as toArticleId, index_toCommentId as toCommentId, index_toCouponId as toCouponId, index_toFriendRequestId as toFriendRequestId, index_toInvitationId as toInvitationId, index_toMemberId as toMemberId, index_toPlanId as toPlanId, index_toRecruitId as toRecruitId, index_toReferralCode as toReferralCode, index_toRestaurantId as toRestaurantId, index_toRoomId as toRoomId, index_toSubscriptionId as toSubscriptionId };
290
292
  }
291
293
 
292
294
  export { index as i };
@@ -1,4 +1,4 @@
1
- import { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './domain/article/index.js';
1
+ import { ArticleComment, ArticleCommentSchema, ArticleCore, ArticleCoreSchema, ArticleDetailResponse, ArticleDetailResponseSchema, ArticleLikeResponse, ArticleLikeResponseSchema, ArticleListQueryRequest, ArticleListQuerySchema, ArticleSortBy, ArticleSortBySchema, ArticleSummaryResponse, ArticleSummaryResponseSchema, CreateArticleRequest, CreateArticleRequestSchema, CreateCommentRequest, CreateCommentRequestSchema, FoodAnalysisResult, FoodAnalysisResultSchema, PageArticleSummaryResponse, PageArticleSummaryResponseSchema, PresignArticleResponse, PresignArticleResponseSchema } from './domain/article/index.js';
2
2
  import { LoginRequest, LoginRequestSchema, SignupRequest, SignupRequestSchema, SignupResponse, SignupResponseSchema, TokenResponse, TokenResponseSchema } from './domain/auth/index.js';
3
3
  import { ApiContract, ApiDomain, ApiFailure, ApiFailureSchema, ApiResponse, ApiResponseSchema, ApiSuccess, ApiSuccessSchema, AsyncMapperContract, BaseResponse, BodyOf, CreatedEntityIdResponse, CreatedEntityIdResponseSchema, EndpointContract, EntityContract, HttpMethod, ISODateString, ISODateStringSchema, ISODateTimeString, ISODateTimeStringSchema, MapperContract, MapperInput, MapperOutput, NoBodySchema, NoContent, NoContentSchema, NoParamsSchema, NoQuerySchema, PageMeta, PageMetaSchema, PageQuerySchema, PageRequest, PageResponse, PageResponseSchema, PathParamsOf, QueryOf, ResponseOf, SortDirection, SortDirectionSchema, TimeHHmmString, TimeHHmmStringSchema, apiContract, endpoint, makeApiResponseSchema, makeApiSuccessSchema } from './domain/common/index.js';
4
4
  import { A as ArticleId, a as ArticleIdSchema, B as Brand, C as CommentId, b as CommentIdSchema, c as CouponId, d as CouponIdSchema, F as Food, e as FoodCode, f as FoodCodeSchema, g as FoodLabel, h as FoodLabelSchema, i as FoodSchema, j as FriendRequestId, k as FriendRequestIdSchema, I as InvitationId, l as InvitationIdSchema, M as MemberId, m as MemberIdSchema, N as NonEmptyStringIdSchema, P as PlanId, n as PlanIdSchema, o as PositiveIntIdSchema, R as RecruitId, p as RecruitIdSchema, q as ReferralCode, r as ReferralCodeSchema, s as RestaurantId, t as RestaurantIdSchema, u as RoomId, v as RoomIdSchema, S as SubscriptionId, w as SubscriptionIdSchema, U as UserId, x as UserIdSchema, y as toArticleId, z as toCommentId, D as toCouponId, E as toFriendRequestId, G as toInvitationId, H as toMemberId, J as toPlanId, K as toRecruitId, L as toReferralCode, O as toRestaurantId, Q as toRoomId, T as toSubscriptionId } from './id-dAYxfjZn.js';
@@ -32,6 +32,8 @@ declare const index_ArticleDetailResponse: typeof ArticleDetailResponse;
32
32
  declare const index_ArticleDetailResponseSchema: typeof ArticleDetailResponseSchema;
33
33
  declare const index_ArticleId: typeof ArticleId;
34
34
  declare const index_ArticleIdSchema: typeof ArticleIdSchema;
35
+ declare const index_ArticleLikeResponse: typeof ArticleLikeResponse;
36
+ declare const index_ArticleLikeResponseSchema: typeof ArticleLikeResponseSchema;
35
37
  declare const index_ArticleListQueryRequest: typeof ArticleListQueryRequest;
36
38
  declare const index_ArticleListQuerySchema: typeof ArticleListQuerySchema;
37
39
  declare const index_ArticleSortBy: typeof ArticleSortBy;
@@ -286,7 +288,7 @@ declare const index_toRestaurantId: typeof toRestaurantId;
286
288
  declare const index_toRoomId: typeof toRoomId;
287
289
  declare const index_toSubscriptionId: typeof toSubscriptionId;
288
290
  declare namespace index {
289
- export { index_AcceptInvitationResponse as AcceptInvitationResponse, index_AcceptInvitationResponseSchema as AcceptInvitationResponseSchema, index_AddLocationCandidateRequestSchema as AddLocationCandidateRequestSchema, index_AnnouncementStage as AnnouncementStage, index_ApiContract as ApiContract, index_ApiDomain as ApiDomain, index_ApiFailure as ApiFailure, index_ApiFailureSchema as ApiFailureSchema, index_ApiResponse as ApiResponse, index_ApiResponseSchema as ApiResponseSchema, index_ApiSuccess as ApiSuccess, index_ApiSuccessSchema as ApiSuccessSchema, index_ArticleComment as ArticleComment, index_ArticleCommentSchema as ArticleCommentSchema, index_ArticleCore as ArticleCore, index_ArticleCoreSchema as ArticleCoreSchema, index_ArticleDetailResponse as ArticleDetailResponse, index_ArticleDetailResponseSchema as ArticleDetailResponseSchema, index_ArticleId as ArticleId, index_ArticleIdSchema as ArticleIdSchema, index_ArticleListQueryRequest as ArticleListQueryRequest, index_ArticleListQuerySchema as ArticleListQuerySchema, index_ArticleSortBy as ArticleSortBy, index_ArticleSortBySchema as ArticleSortBySchema, index_ArticleSummaryResponse as ArticleSummaryResponse, index_ArticleSummaryResponseSchema as ArticleSummaryResponseSchema, index_AsyncMapperContract as AsyncMapperContract, index_BaseResponse as BaseResponse, index_BodyOf as BodyOf, index_Brand as Brand, index_ChallengeStatusResponse as ChallengeStatusResponse, index_ChallengeStatusResponseSchema as ChallengeStatusResponseSchema, index_ChatMessageRequest as ChatMessageRequest, index_ChatMessageRequestSchema as ChatMessageRequestSchema, index_ChatMessageResponse as ChatMessageResponse, index_ChatMessageResponseSchema as ChatMessageResponseSchema, index_ClaimChallengeRewardRequest as ClaimChallengeRewardRequest, index_ClaimChallengeRewardRequestSchema as ClaimChallengeRewardRequestSchema, index_ClaimChallengeRewardResponse as ClaimChallengeRewardResponse, index_ClaimChallengeRewardResponseSchema as ClaimChallengeRewardResponseSchema, index_ClientEventMapFromSchemas as ClientEventMapFromSchemas, index_ClientToServerEvents as ClientToServerEvents, index_CommentId as CommentId, index_CommentIdSchema as CommentIdSchema, index_CouponId as CouponId, index_CouponIdSchema as CouponIdSchema, index_CouponResponse as CouponResponse, index_CouponResponseSchema as CouponResponseSchema, index_CouponStatus as CouponStatus, index_CouponStatusSchema as CouponStatusSchema, index_CouponType as CouponType, index_CouponTypeSchema as CouponTypeSchema, index_CreateArticleRequest as CreateArticleRequest, index_CreateArticleRequestSchema as CreateArticleRequestSchema, index_CreateCommentRequest as CreateCommentRequest, index_CreateCommentRequestSchema as CreateCommentRequestSchema, index_CreateInvitationRequest as CreateInvitationRequest, index_CreateInvitationRequestSchema as CreateInvitationRequestSchema, index_CreateProfileRequest as CreateProfileRequest, index_CreateProfileRequestSchema as CreateProfileRequestSchema, index_CreateRecruitRequest as CreateRecruitRequest, index_CreateRecruitRequestSchema as CreateRecruitRequestSchema, index_CreateRecruitResponse as CreateRecruitResponse, index_CreateRecruitResponseSchema as CreateRecruitResponseSchema, index_CreatedEntityIdResponse as CreatedEntityIdResponse, index_CreatedEntityIdResponseSchema as CreatedEntityIdResponseSchema, index_DatePicksUpdateResponseSchema as DatePicksUpdateResponseSchema, index_EndpointContract as EndpointContract, index_EntityContract as EntityContract, index_ExcludeMenuRequestSchema as ExcludeMenuRequestSchema, index_ExcludeMenuUpdateResponseSchema as ExcludeMenuUpdateResponseSchema, index_FinalState as FinalState, index_FinalStateSchema as FinalStateSchema, index_Food as Food, index_FoodAnalysisResult as FoodAnalysisResult, index_FoodAnalysisResultSchema as FoodAnalysisResultSchema, index_FoodCode as FoodCode, index_FoodCodeSchema as FoodCodeSchema, index_FoodLabel as FoodLabel, index_FoodLabelSchema as FoodLabelSchema, index_FoodSchema as FoodSchema, index_FriendBlockItemResponse as FriendBlockItemResponse, index_FriendBlockItemResponseSchema as FriendBlockItemResponseSchema, index_FriendListItemResponse as FriendListItemResponse, index_FriendListItemResponseSchema as FriendListItemResponseSchema, index_FriendMealItemResponse as FriendMealItemResponse, index_FriendMealItemResponseSchema as FriendMealItemResponseSchema, index_FriendMealQuery as FriendMealQuery, index_FriendMealQuerySchema as FriendMealQuerySchema, index_FriendRequestId as FriendRequestId, index_FriendRequestIdSchema as FriendRequestIdSchema, index_FriendRequestItemResponse as FriendRequestItemResponse, index_FriendRequestItemResponseSchema as FriendRequestItemResponseSchema, index_FriendRequestMember as FriendRequestMember, index_FriendRequestMemberSchema as FriendRequestMemberSchema, index_FriendRequestStatus as FriendRequestStatus, index_FriendRequestStatusSchema as FriendRequestStatusSchema, index_HttpMethod as HttpMethod, index_ISODateString as ISODateString, index_ISODateStringSchema as ISODateStringSchema, index_ISODateTimeString as ISODateTimeString, index_ISODateTimeStringSchema as ISODateTimeStringSchema, index_InvitationId as InvitationId, index_InvitationIdSchema as InvitationIdSchema, index_InvitationListItemResponseSchema as InvitationListItemResponseSchema, index_InvitationResponse as InvitationResponse, index_InvitationRoomStage as InvitationRoomStage, index_InvitationRoomStageSchema as InvitationRoomStageSchema, index_KakaoPlaceRaw as KakaoPlaceRaw, index_KakaoPlaceRawSchema as KakaoPlaceRawSchema, index_LocationCandidate as LocationCandidate, index_LocationCandidateAddUpdateResponseSchema as LocationCandidateAddUpdateResponseSchema, index_LocationCandidateSchema as LocationCandidateSchema, index_LocationCandidateVoteUpdateResponseSchema as LocationCandidateVoteUpdateResponseSchema, index_LocationId as LocationId, index_LocationIdSchema as LocationIdSchema, index_LoginRequest as LoginRequest, index_LoginRequestSchema as LoginRequestSchema, index_MapperContract as MapperContract, index_MapperInput as MapperInput, index_MapperOutput as MapperOutput, index_MealStatus as MealStatus, index_MealStatusAction as MealStatusAction, index_MealStatusActionSchema as MealStatusActionSchema, index_MealStatusResponse as MealStatusResponse, index_MealStatusResponseSchema as MealStatusResponseSchema, index_MealStatusSchema as MealStatusSchema, index_MeetingResponse as MeetingResponse, index_MemberCore as MemberCore, index_MemberCoreSchema as MemberCoreSchema, index_MemberDetail as MemberDetail, index_MemberDetailSchema as MemberDetailSchema, index_MemberFoodPreference as MemberFoodPreference, index_MemberFoodPreferenceSchema as MemberFoodPreferenceSchema, index_MemberId as MemberId, index_MemberIdSchema as MemberIdSchema, index_MemberResponse as MemberResponse, index_MemberResponseSchema as MemberResponseSchema, index_MemberRole as MemberRole, index_MemberRoleSchema as MemberRoleSchema, index_MemberSearchQuery as MemberSearchQuery, index_MemberSearchQuerySchema as MemberSearchQuerySchema, index_MemberSerachResponse as MemberSerachResponse, index_MemberSerachResponseSchema as MemberSerachResponseSchema, index_Menu as Menu, index_MenuCode as MenuCode, index_MenuCodeSchema as MenuCodeSchema, index_MenuPickUpdateResponseSchema as MenuPickUpdateResponseSchema, index_MenuSchema as MenuSchema, index_NoBodySchema as NoBodySchema, index_NoContent as NoContent, index_NoContentSchema as NoContentSchema, index_NoParamsSchema as NoParamsSchema, index_NoQuerySchema as NoQuerySchema, index_NonEmptyStringIdSchema as NonEmptyStringIdSchema, index_PageArticleSummaryResponse as PageArticleSummaryResponse, index_PageArticleSummaryResponseSchema as PageArticleSummaryResponseSchema, index_PageMeta as PageMeta, index_PageMetaSchema as PageMetaSchema, index_PageQuerySchema as PageQuerySchema, index_PageRequest as PageRequest, index_PageResponse as PageResponse, index_PageResponseSchema as PageResponseSchema, index_Participant as Participant, index_ParticipantSchema as ParticipantSchema, index_PathParamsOf as PathParamsOf, index_PhaseDataBroadcast as PhaseDataBroadcast, index_PhaseDataBroadcastSchema as PhaseDataBroadcastSchema, index_PickDateRequestSchema as PickDateRequestSchema, index_PickMenuRequestSchema as PickMenuRequestSchema, index_PickRestaurantRequestSchema as PickRestaurantRequestSchema, index_PickTimesRequestSchema as PickTimesRequestSchema, index_PlanId as PlanId, index_PlanIdSchema as PlanIdSchema, index_PlanListQuery as PlanListQuery, index_PlanListQuerySchema as PlanListQuerySchema, index_PlanResponse as PlanResponse, index_PlanResponseSchema as PlanResponseSchema, index_PlanStatus as PlanStatus, index_PlanStatusSchema as PlanStatusSchema, index_PlanType as PlanType, index_PlanTypeSchema as PlanTypeSchema, index_PositiveIntIdSchema as PositiveIntIdSchema, index_PresignArticleResponse as PresignArticleResponse, index_PresignArticleResponseSchema as PresignArticleResponseSchema, index_PresignProfileResponse as PresignProfileResponse, index_PresignProfileResponseSchema as PresignProfileResponseSchema, index_ProfileDetailResponse as ProfileDetailResponse, index_ProfileDetailResponseSchema as ProfileDetailResponseSchema, index_QueryOf as QueryOf, index_ReadyStateChangedSchema as ReadyStateChangedSchema, index_ReadyStateRequest as ReadyStateRequest, index_ReadyStateRequestSchema as ReadyStateRequestSchema, index_RecruitId as RecruitId, index_RecruitIdSchema as RecruitIdSchema, index_RecruitListQuery as RecruitListQuery, index_RecruitListQuerySchema as RecruitListQuerySchema, index_RecruitListResponse as RecruitListResponse, index_RecruitListResponseSchema as RecruitListResponseSchema, index_RecruitRoomStage as RecruitRoomStage, index_RecruitRoomStageSchema as RecruitRoomStageSchema, index_RecruitSortBy as RecruitSortBy, index_RecruitSortBySchema as RecruitSortBySchema, index_RecruitStatus as RecruitStatus, index_RecruitStatusSchema as RecruitStatusSchema, index_RedeemReferralRequest as RedeemReferralRequest, index_RedeemReferralRequestSchema as RedeemReferralRequestSchema, index_ReferralCode as ReferralCode, index_ReferralCodeSchema as ReferralCodeSchema, index_ReferralCreateResponse as ReferralCreateResponse, index_ReferralCreateResponseSchema as ReferralCreateResponseSchema, index_ReferralItemResponse as ReferralItemResponse, index_ReferralItemResponseSchema as ReferralItemResponseSchema, index_ResponseOf as ResponseOf, index_RestaurantId as RestaurantId, index_RestaurantIdSchema as RestaurantIdSchema, index_RestaurantPickUpdateResponseSchema as RestaurantPickUpdateResponseSchema, index_RestaurantResponse as RestaurantResponse, index_RestaurantSchema as RestaurantSchema, index_RoomAssignedResponse as RoomAssignedResponse, index_RoomAssignedResponseSchema as RoomAssignedResponseSchema, index_RoomClientToServerEvents as RoomClientToServerEvents, index_RoomId as RoomId, index_RoomIdSchema as RoomIdSchema, index_RoomInitialState as RoomInitialState, index_RoomInitialStateSchema as RoomInitialStateSchema, index_RoomServerToClientEvents as RoomServerToClientEvents, index_RoomSocketClientEventSchemas as RoomSocketClientEventSchemas, index_RoomSocketError as RoomSocketError, index_RoomSocketErrorSchema as RoomSocketErrorSchema, index_RoomSocketServerEventSchemas as RoomSocketServerEventSchemas, index_SendInvitationResponse as SendInvitationResponse, index_SendInvitationResponseSchema as SendInvitationResponseSchema, index_ServerToClientEvents as ServerToClientEvents, index_SignupRequest as SignupRequest, index_SignupRequestSchema as SignupRequestSchema, index_SignupResponse as SignupResponse, index_SignupResponseSchema as SignupResponseSchema, index_SortDirection as SortDirection, index_SortDirectionSchema as SortDirectionSchema, index_SubscriptionId as SubscriptionId, index_SubscriptionIdSchema as SubscriptionIdSchema, index_TimeHHmmString as TimeHHmmString, index_TimeHHmmStringSchema as TimeHHmmStringSchema, index_TimePicksUpdateResponseSchema as TimePicksUpdateResponseSchema, index_TokenResponse as TokenResponse, index_TokenResponseSchema as TokenResponseSchema, index_UpdateMealStatusRequest as UpdateMealStatusRequest, index_UpdateMealStatusRequestSchema as UpdateMealStatusRequestSchema, index_UpdatePreferenceRequest as UpdatePreferenceRequest, index_UpdatePreferenceRequestSchema as UpdatePreferenceRequestSchema, index_UpdateProfileRequest as UpdateProfileRequest, index_UpdateProfileRequestSchema as UpdateProfileRequestSchema, index_User as User, index_UserId as UserId, index_UserIdSchema as UserIdSchema, index_VoteLocationRequestSchema as VoteLocationRequestSchema, index_apiContract as apiContract, index_endpoint as endpoint, index_makeApiResponseSchema as makeApiResponseSchema, index_makeApiSuccessSchema as makeApiSuccessSchema, index_toArticleId as toArticleId, index_toCommentId as toCommentId, index_toCouponId as toCouponId, index_toFriendRequestId as toFriendRequestId, index_toInvitationId as toInvitationId, index_toMemberId as toMemberId, index_toPlanId as toPlanId, index_toRecruitId as toRecruitId, index_toReferralCode as toReferralCode, index_toRestaurantId as toRestaurantId, index_toRoomId as toRoomId, index_toSubscriptionId as toSubscriptionId };
291
+ export { index_AcceptInvitationResponse as AcceptInvitationResponse, index_AcceptInvitationResponseSchema as AcceptInvitationResponseSchema, index_AddLocationCandidateRequestSchema as AddLocationCandidateRequestSchema, index_AnnouncementStage as AnnouncementStage, index_ApiContract as ApiContract, index_ApiDomain as ApiDomain, index_ApiFailure as ApiFailure, index_ApiFailureSchema as ApiFailureSchema, index_ApiResponse as ApiResponse, index_ApiResponseSchema as ApiResponseSchema, index_ApiSuccess as ApiSuccess, index_ApiSuccessSchema as ApiSuccessSchema, index_ArticleComment as ArticleComment, index_ArticleCommentSchema as ArticleCommentSchema, index_ArticleCore as ArticleCore, index_ArticleCoreSchema as ArticleCoreSchema, index_ArticleDetailResponse as ArticleDetailResponse, index_ArticleDetailResponseSchema as ArticleDetailResponseSchema, index_ArticleId as ArticleId, index_ArticleIdSchema as ArticleIdSchema, index_ArticleLikeResponse as ArticleLikeResponse, index_ArticleLikeResponseSchema as ArticleLikeResponseSchema, index_ArticleListQueryRequest as ArticleListQueryRequest, index_ArticleListQuerySchema as ArticleListQuerySchema, index_ArticleSortBy as ArticleSortBy, index_ArticleSortBySchema as ArticleSortBySchema, index_ArticleSummaryResponse as ArticleSummaryResponse, index_ArticleSummaryResponseSchema as ArticleSummaryResponseSchema, index_AsyncMapperContract as AsyncMapperContract, index_BaseResponse as BaseResponse, index_BodyOf as BodyOf, index_Brand as Brand, index_ChallengeStatusResponse as ChallengeStatusResponse, index_ChallengeStatusResponseSchema as ChallengeStatusResponseSchema, index_ChatMessageRequest as ChatMessageRequest, index_ChatMessageRequestSchema as ChatMessageRequestSchema, index_ChatMessageResponse as ChatMessageResponse, index_ChatMessageResponseSchema as ChatMessageResponseSchema, index_ClaimChallengeRewardRequest as ClaimChallengeRewardRequest, index_ClaimChallengeRewardRequestSchema as ClaimChallengeRewardRequestSchema, index_ClaimChallengeRewardResponse as ClaimChallengeRewardResponse, index_ClaimChallengeRewardResponseSchema as ClaimChallengeRewardResponseSchema, index_ClientEventMapFromSchemas as ClientEventMapFromSchemas, index_ClientToServerEvents as ClientToServerEvents, index_CommentId as CommentId, index_CommentIdSchema as CommentIdSchema, index_CouponId as CouponId, index_CouponIdSchema as CouponIdSchema, index_CouponResponse as CouponResponse, index_CouponResponseSchema as CouponResponseSchema, index_CouponStatus as CouponStatus, index_CouponStatusSchema as CouponStatusSchema, index_CouponType as CouponType, index_CouponTypeSchema as CouponTypeSchema, index_CreateArticleRequest as CreateArticleRequest, index_CreateArticleRequestSchema as CreateArticleRequestSchema, index_CreateCommentRequest as CreateCommentRequest, index_CreateCommentRequestSchema as CreateCommentRequestSchema, index_CreateInvitationRequest as CreateInvitationRequest, index_CreateInvitationRequestSchema as CreateInvitationRequestSchema, index_CreateProfileRequest as CreateProfileRequest, index_CreateProfileRequestSchema as CreateProfileRequestSchema, index_CreateRecruitRequest as CreateRecruitRequest, index_CreateRecruitRequestSchema as CreateRecruitRequestSchema, index_CreateRecruitResponse as CreateRecruitResponse, index_CreateRecruitResponseSchema as CreateRecruitResponseSchema, index_CreatedEntityIdResponse as CreatedEntityIdResponse, index_CreatedEntityIdResponseSchema as CreatedEntityIdResponseSchema, index_DatePicksUpdateResponseSchema as DatePicksUpdateResponseSchema, index_EndpointContract as EndpointContract, index_EntityContract as EntityContract, index_ExcludeMenuRequestSchema as ExcludeMenuRequestSchema, index_ExcludeMenuUpdateResponseSchema as ExcludeMenuUpdateResponseSchema, index_FinalState as FinalState, index_FinalStateSchema as FinalStateSchema, index_Food as Food, index_FoodAnalysisResult as FoodAnalysisResult, index_FoodAnalysisResultSchema as FoodAnalysisResultSchema, index_FoodCode as FoodCode, index_FoodCodeSchema as FoodCodeSchema, index_FoodLabel as FoodLabel, index_FoodLabelSchema as FoodLabelSchema, index_FoodSchema as FoodSchema, index_FriendBlockItemResponse as FriendBlockItemResponse, index_FriendBlockItemResponseSchema as FriendBlockItemResponseSchema, index_FriendListItemResponse as FriendListItemResponse, index_FriendListItemResponseSchema as FriendListItemResponseSchema, index_FriendMealItemResponse as FriendMealItemResponse, index_FriendMealItemResponseSchema as FriendMealItemResponseSchema, index_FriendMealQuery as FriendMealQuery, index_FriendMealQuerySchema as FriendMealQuerySchema, index_FriendRequestId as FriendRequestId, index_FriendRequestIdSchema as FriendRequestIdSchema, index_FriendRequestItemResponse as FriendRequestItemResponse, index_FriendRequestItemResponseSchema as FriendRequestItemResponseSchema, index_FriendRequestMember as FriendRequestMember, index_FriendRequestMemberSchema as FriendRequestMemberSchema, index_FriendRequestStatus as FriendRequestStatus, index_FriendRequestStatusSchema as FriendRequestStatusSchema, index_HttpMethod as HttpMethod, index_ISODateString as ISODateString, index_ISODateStringSchema as ISODateStringSchema, index_ISODateTimeString as ISODateTimeString, index_ISODateTimeStringSchema as ISODateTimeStringSchema, index_InvitationId as InvitationId, index_InvitationIdSchema as InvitationIdSchema, index_InvitationListItemResponseSchema as InvitationListItemResponseSchema, index_InvitationResponse as InvitationResponse, index_InvitationRoomStage as InvitationRoomStage, index_InvitationRoomStageSchema as InvitationRoomStageSchema, index_KakaoPlaceRaw as KakaoPlaceRaw, index_KakaoPlaceRawSchema as KakaoPlaceRawSchema, index_LocationCandidate as LocationCandidate, index_LocationCandidateAddUpdateResponseSchema as LocationCandidateAddUpdateResponseSchema, index_LocationCandidateSchema as LocationCandidateSchema, index_LocationCandidateVoteUpdateResponseSchema as LocationCandidateVoteUpdateResponseSchema, index_LocationId as LocationId, index_LocationIdSchema as LocationIdSchema, index_LoginRequest as LoginRequest, index_LoginRequestSchema as LoginRequestSchema, index_MapperContract as MapperContract, index_MapperInput as MapperInput, index_MapperOutput as MapperOutput, index_MealStatus as MealStatus, index_MealStatusAction as MealStatusAction, index_MealStatusActionSchema as MealStatusActionSchema, index_MealStatusResponse as MealStatusResponse, index_MealStatusResponseSchema as MealStatusResponseSchema, index_MealStatusSchema as MealStatusSchema, index_MeetingResponse as MeetingResponse, index_MemberCore as MemberCore, index_MemberCoreSchema as MemberCoreSchema, index_MemberDetail as MemberDetail, index_MemberDetailSchema as MemberDetailSchema, index_MemberFoodPreference as MemberFoodPreference, index_MemberFoodPreferenceSchema as MemberFoodPreferenceSchema, index_MemberId as MemberId, index_MemberIdSchema as MemberIdSchema, index_MemberResponse as MemberResponse, index_MemberResponseSchema as MemberResponseSchema, index_MemberRole as MemberRole, index_MemberRoleSchema as MemberRoleSchema, index_MemberSearchQuery as MemberSearchQuery, index_MemberSearchQuerySchema as MemberSearchQuerySchema, index_MemberSerachResponse as MemberSerachResponse, index_MemberSerachResponseSchema as MemberSerachResponseSchema, index_Menu as Menu, index_MenuCode as MenuCode, index_MenuCodeSchema as MenuCodeSchema, index_MenuPickUpdateResponseSchema as MenuPickUpdateResponseSchema, index_MenuSchema as MenuSchema, index_NoBodySchema as NoBodySchema, index_NoContent as NoContent, index_NoContentSchema as NoContentSchema, index_NoParamsSchema as NoParamsSchema, index_NoQuerySchema as NoQuerySchema, index_NonEmptyStringIdSchema as NonEmptyStringIdSchema, index_PageArticleSummaryResponse as PageArticleSummaryResponse, index_PageArticleSummaryResponseSchema as PageArticleSummaryResponseSchema, index_PageMeta as PageMeta, index_PageMetaSchema as PageMetaSchema, index_PageQuerySchema as PageQuerySchema, index_PageRequest as PageRequest, index_PageResponse as PageResponse, index_PageResponseSchema as PageResponseSchema, index_Participant as Participant, index_ParticipantSchema as ParticipantSchema, index_PathParamsOf as PathParamsOf, index_PhaseDataBroadcast as PhaseDataBroadcast, index_PhaseDataBroadcastSchema as PhaseDataBroadcastSchema, index_PickDateRequestSchema as PickDateRequestSchema, index_PickMenuRequestSchema as PickMenuRequestSchema, index_PickRestaurantRequestSchema as PickRestaurantRequestSchema, index_PickTimesRequestSchema as PickTimesRequestSchema, index_PlanId as PlanId, index_PlanIdSchema as PlanIdSchema, index_PlanListQuery as PlanListQuery, index_PlanListQuerySchema as PlanListQuerySchema, index_PlanResponse as PlanResponse, index_PlanResponseSchema as PlanResponseSchema, index_PlanStatus as PlanStatus, index_PlanStatusSchema as PlanStatusSchema, index_PlanType as PlanType, index_PlanTypeSchema as PlanTypeSchema, index_PositiveIntIdSchema as PositiveIntIdSchema, index_PresignArticleResponse as PresignArticleResponse, index_PresignArticleResponseSchema as PresignArticleResponseSchema, index_PresignProfileResponse as PresignProfileResponse, index_PresignProfileResponseSchema as PresignProfileResponseSchema, index_ProfileDetailResponse as ProfileDetailResponse, index_ProfileDetailResponseSchema as ProfileDetailResponseSchema, index_QueryOf as QueryOf, index_ReadyStateChangedSchema as ReadyStateChangedSchema, index_ReadyStateRequest as ReadyStateRequest, index_ReadyStateRequestSchema as ReadyStateRequestSchema, index_RecruitId as RecruitId, index_RecruitIdSchema as RecruitIdSchema, index_RecruitListQuery as RecruitListQuery, index_RecruitListQuerySchema as RecruitListQuerySchema, index_RecruitListResponse as RecruitListResponse, index_RecruitListResponseSchema as RecruitListResponseSchema, index_RecruitRoomStage as RecruitRoomStage, index_RecruitRoomStageSchema as RecruitRoomStageSchema, index_RecruitSortBy as RecruitSortBy, index_RecruitSortBySchema as RecruitSortBySchema, index_RecruitStatus as RecruitStatus, index_RecruitStatusSchema as RecruitStatusSchema, index_RedeemReferralRequest as RedeemReferralRequest, index_RedeemReferralRequestSchema as RedeemReferralRequestSchema, index_ReferralCode as ReferralCode, index_ReferralCodeSchema as ReferralCodeSchema, index_ReferralCreateResponse as ReferralCreateResponse, index_ReferralCreateResponseSchema as ReferralCreateResponseSchema, index_ReferralItemResponse as ReferralItemResponse, index_ReferralItemResponseSchema as ReferralItemResponseSchema, index_ResponseOf as ResponseOf, index_RestaurantId as RestaurantId, index_RestaurantIdSchema as RestaurantIdSchema, index_RestaurantPickUpdateResponseSchema as RestaurantPickUpdateResponseSchema, index_RestaurantResponse as RestaurantResponse, index_RestaurantSchema as RestaurantSchema, index_RoomAssignedResponse as RoomAssignedResponse, index_RoomAssignedResponseSchema as RoomAssignedResponseSchema, index_RoomClientToServerEvents as RoomClientToServerEvents, index_RoomId as RoomId, index_RoomIdSchema as RoomIdSchema, index_RoomInitialState as RoomInitialState, index_RoomInitialStateSchema as RoomInitialStateSchema, index_RoomServerToClientEvents as RoomServerToClientEvents, index_RoomSocketClientEventSchemas as RoomSocketClientEventSchemas, index_RoomSocketError as RoomSocketError, index_RoomSocketErrorSchema as RoomSocketErrorSchema, index_RoomSocketServerEventSchemas as RoomSocketServerEventSchemas, index_SendInvitationResponse as SendInvitationResponse, index_SendInvitationResponseSchema as SendInvitationResponseSchema, index_ServerToClientEvents as ServerToClientEvents, index_SignupRequest as SignupRequest, index_SignupRequestSchema as SignupRequestSchema, index_SignupResponse as SignupResponse, index_SignupResponseSchema as SignupResponseSchema, index_SortDirection as SortDirection, index_SortDirectionSchema as SortDirectionSchema, index_SubscriptionId as SubscriptionId, index_SubscriptionIdSchema as SubscriptionIdSchema, index_TimeHHmmString as TimeHHmmString, index_TimeHHmmStringSchema as TimeHHmmStringSchema, index_TimePicksUpdateResponseSchema as TimePicksUpdateResponseSchema, index_TokenResponse as TokenResponse, index_TokenResponseSchema as TokenResponseSchema, index_UpdateMealStatusRequest as UpdateMealStatusRequest, index_UpdateMealStatusRequestSchema as UpdateMealStatusRequestSchema, index_UpdatePreferenceRequest as UpdatePreferenceRequest, index_UpdatePreferenceRequestSchema as UpdatePreferenceRequestSchema, index_UpdateProfileRequest as UpdateProfileRequest, index_UpdateProfileRequestSchema as UpdateProfileRequestSchema, index_User as User, index_UserId as UserId, index_UserIdSchema as UserIdSchema, index_VoteLocationRequestSchema as VoteLocationRequestSchema, index_apiContract as apiContract, index_endpoint as endpoint, index_makeApiResponseSchema as makeApiResponseSchema, index_makeApiSuccessSchema as makeApiSuccessSchema, index_toArticleId as toArticleId, index_toCommentId as toCommentId, index_toCouponId as toCouponId, index_toFriendRequestId as toFriendRequestId, index_toInvitationId as toInvitationId, index_toMemberId as toMemberId, index_toPlanId as toPlanId, index_toRecruitId as toRecruitId, index_toReferralCode as toReferralCode, index_toRestaurantId as toRestaurantId, index_toRoomId as toRoomId, index_toSubscriptionId as toSubscriptionId };
290
292
  }
291
293
 
292
294
  export { index as i };
package/dist/index.cjs CHANGED
@@ -51,6 +51,7 @@ __export(domain_exports, {
51
51
  ArticleCoreSchema: () => ArticleCoreSchema,
52
52
  ArticleDetailResponseSchema: () => ArticleDetailResponseSchema,
53
53
  ArticleIdSchema: () => ArticleIdSchema,
54
+ ArticleLikeResponseSchema: () => ArticleLikeResponseSchema,
54
55
  ArticleListQuerySchema: () => ArticleListQuerySchema,
55
56
  ArticleSortBySchema: () => ArticleSortBySchema,
56
57
  ArticleSummaryResponseSchema: () => ArticleSummaryResponseSchema,
@@ -369,6 +370,10 @@ var ArticleSummaryResponseSchema = ArticleCoreSchema.extend({
369
370
  commentCount: import_zod7.z.number().int().min(0),
370
371
  likedByMe: import_zod7.z.boolean()
371
372
  });
373
+ var ArticleLikeResponseSchema = import_zod7.z.object({
374
+ liked: import_zod7.z.boolean(),
375
+ likeCount: import_zod7.z.number().int().min(0)
376
+ });
372
377
  var ArticleDetailResponseSchema = ArticleSummaryResponseSchema.extend({
373
378
  comments: import_zod7.z.array(ArticleCommentSchema).optional()
374
379
  });
@@ -716,7 +721,6 @@ var endpoint = (contract) => ({
716
721
 
717
722
  // src/domain/common/contracts/api.ts
718
723
  var memberIdParam = import_zod19.z.object({ memberId: MemberIdSchema });
719
- var authorIdParam = import_zod19.z.object({ memberId: MemberIdSchema });
720
724
  var articleIdParam = import_zod19.z.object({ articleId: ArticleIdSchema });
721
725
  var commentIdParam = import_zod19.z.object({ commentId: CommentIdSchema });
722
726
  var recruitIdParam = import_zod19.z.object({ recruitId: RecruitIdSchema });
@@ -739,8 +743,11 @@ var apiContract = {
739
743
  memberProfile: endpoint({ method: "GET", path: "/members/:memberId", pathParams: memberIdParam, response: ProfileDetailResponseSchema }),
740
744
  presignProfileImage: endpoint({ method: "POST", path: "/uploads/presign-profile", response: PresignProfileResponseSchema }),
741
745
  createProfile: endpoint({ method: "POST", path: "/members/onboarding", body: CreateProfileRequestSchema, response: NoContentSchema }),
742
- updateProfile: endpoint({ method: "PATCH", path: "/members/me/profile", body: UpdateProfileRequestSchema, response: NoContentSchema }),
743
- updatePreferences: endpoint({ method: "PATCH", path: "/members/me/preferences", body: UpdatePreferenceRequestSchema, response: NoContentSchema })
746
+ updateProfile: endpoint({ method: "PATCH", path: "/members/me/profile", body: UpdateProfileRequestSchema, response: NoContentSchema })
747
+ },
748
+ preferences: {
749
+ my: endpoint({ method: "GET", path: "/preferences/me", response: MemberFoodPreferenceSchema }),
750
+ update: endpoint({ method: "PATCH", path: "/preferences/me", body: UpdatePreferenceRequestSchema, response: NoContentSchema })
744
751
  },
745
752
  mealStatus: {
746
753
  my: endpoint({ method: "GET", path: "/meal-status", response: MealStatusResponseSchema }),
@@ -749,14 +756,15 @@ var apiContract = {
749
756
  },
750
757
  articles: {
751
758
  list: endpoint({ method: "GET", path: "/articles/home", query: ArticleListQuerySchema, response: PageArticleSummaryResponseSchema }),
752
- byAuthor: endpoint({ method: "GET", path: "/articles/by-author/:authorId", pathParams: authorIdParam, response: PageArticleSummaryResponseSchema }),
759
+ byMember: endpoint({ method: "GET", path: "/articles/by-author/:memberId", pathParams: memberIdParam, query: ArticleListQuerySchema, response: PageArticleSummaryResponseSchema }),
753
760
  my: endpoint({ method: "GET", path: "/articles/my", response: PageArticleSummaryResponseSchema }),
754
761
  detail: endpoint({ method: "GET", path: "/articles/:articleId", pathParams: articleIdParam, response: ArticleDetailResponseSchema }),
755
- create: endpoint({ method: "POST", path: "/articles", body: CreateArticleRequestSchema, response: NoContentSchema }),
756
- createComment: endpoint({ method: "POST", path: "/articles/:articleId/comments", pathParams: articleIdParam, body: CreateCommentRequestSchema, response: NoContentSchema }),
762
+ create: endpoint({ method: "POST", path: "/articles", body: CreateArticleRequestSchema, response: CreatedEntityIdResponseSchema }),
763
+ like: endpoint({ method: "POST", path: "/articles/:articleId/like", pathParams: articleIdParam, response: ArticleLikeResponseSchema }),
764
+ createComment: endpoint({ method: "POST", path: "/articles/:articleId/comments", pathParams: articleIdParam, body: CreateCommentRequestSchema, response: CreatedEntityIdResponseSchema }),
757
765
  presignArticleImage: endpoint({ method: "POST", path: "/uploads/presign-article", response: PresignArticleResponseSchema }),
758
766
  delete: endpoint({ method: "DELETE", path: "/articles/:articleId", pathParams: articleIdParam, response: NoContentSchema }),
759
- deleteComment: endpoint({ method: "DELETE", path: "/articles/:articleId/comments/:commentId", pathParams: articleIdParam.merge(commentIdParam), response: NoContentSchema })
767
+ deleteComment: endpoint({ method: "DELETE", path: "/articles/comments/:commentId", pathParams: commentIdParam, response: NoContentSchema })
760
768
  // TODO: 게시물 수정 기능
761
769
  },
762
770
  recruits: {
@@ -781,8 +789,8 @@ var apiContract = {
781
789
  list: endpoint({ method: "GET", path: "/friends", response: import_zod19.z.array(FriendListItemResponseSchema) }),
782
790
  blockList: endpoint({ method: "GET", path: "/friends/blocks", response: import_zod19.z.array(FriendBlockItemResponseSchema) }),
783
791
  incomingRequest: endpoint({ method: "GET", path: "/friends/requests/incoming", response: import_zod19.z.array(FriendRequestItemResponseSchema) }),
784
- outgoingRequest: endpoint({ method: "GET", path: "/friends/requests/outgoint", response: import_zod19.z.array(FriendRequestItemResponseSchema) }),
785
- sendRequest: endpoint({ method: "POST", path: "/friends/requests/:memberId", pathParams: friendRequestIdParam, response: NoContentSchema }),
792
+ outgoingRequest: endpoint({ method: "GET", path: "/friends/requests/outgoing", response: import_zod19.z.array(FriendRequestItemResponseSchema) }),
793
+ sendRequest: endpoint({ method: "POST", path: "/friends/requests/:memberId", pathParams: memberIdParam, response: NoContentSchema }),
786
794
  acceptRequest: endpoint({ method: "POST", path: "/friends/requests/:requestId/accept", pathParams: friendRequestIdParam, response: NoContentSchema }),
787
795
  rejectRequest: endpoint({ method: "POST", path: "/friends/requests/:requestId/reject", pathParams: friendRequestIdParam, response: NoContentSchema }),
788
796
  block: endpoint({ method: "POST", path: "/friends/blocks/:memberId", pathParams: memberIdParam, response: NoContentSchema }),
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- export { i as domain } from './index-DJJo4ejN.cjs';
1
+ export { i as domain } from './index-CZT6irsm.cjs';
2
2
  import { CreateRecruitRequest } from './domain/recruit/index.cjs';
3
3
  export { CreateRecruitResponse as CreateRecruitResponseDto, RecruitListResponse as RecruitResponseDto, RecruitStatus } from './domain/recruit/index.cjs';
4
4
  import { ProfileDetailResponse, MemberResponse } from './domain/member/index.cjs';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { i as domain } from './index-DAcw_a8p.js';
1
+ export { i as domain } from './index-DDLVbMTB.js';
2
2
  import { CreateRecruitRequest } from './domain/recruit/index.js';
3
3
  export { CreateRecruitResponse as CreateRecruitResponseDto, RecruitListResponse as RecruitResponseDto, RecruitStatus } from './domain/recruit/index.js';
4
4
  import { ProfileDetailResponse, MemberResponse } from './domain/member/index.js';
package/dist/index.js CHANGED
@@ -1,23 +1,23 @@
1
1
  import {
2
2
  domain_exports
3
- } from "./chunk-VWPUBTMV.js";
4
- import "./chunk-NCVWB52E.js";
3
+ } from "./chunk-23FZ4MAS.js";
5
4
  import "./chunk-PFSZSKD5.js";
6
- import "./chunk-JEUH3JDZ.js";
7
- import "./chunk-UJJMW7II.js";
8
- import "./chunk-W3YQYI4R.js";
5
+ import "./chunk-NCVWB52E.js";
6
+ import "./chunk-SOHYA6XL.js";
9
7
  import "./chunk-VAWYU5JG.js";
8
+ import "./chunk-W3YQYI4R.js";
10
9
  import {
11
10
  RoomSocketClientEventSchemas,
12
11
  RoomSocketServerEventSchemas
13
12
  } from "./chunk-M5OSCHMV.js";
14
- import "./chunk-TY4WZEIZ.js";
13
+ import "./chunk-RLVHDFEV.js";
15
14
  import "./chunk-GTVEQYJW.js";
16
15
  import "./chunk-J76VB5SE.js";
17
16
  import "./chunk-U6OQQOPN.js";
18
- import "./chunk-HRM3FQPL.js";
19
17
  import "./chunk-YGFAVC5N.js";
18
+ import "./chunk-UJJMW7II.js";
20
19
  import "./chunk-NJTV6DRT.js";
20
+ import "./chunk-HRM3FQPL.js";
21
21
  import "./chunk-KRVEQVRC.js";
22
22
  import "./chunk-H77ISYYC.js";
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kimdaegyu/babmukdang-shared",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",