@kimdaegyu/babmukdang-shared 1.1.3 → 1.1.10

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.
Files changed (67) hide show
  1. package/dist/{chunk-U6OQQOPN.js → chunk-4E5E3PFW.js} +6 -2
  2. package/dist/{chunk-VAWYU5JG.js → chunk-AI2YMBJX.js} +4 -1
  3. package/dist/{chunk-TY4WZEIZ.js → chunk-K3CZKI2F.js} +12 -4
  4. package/dist/{chunk-J76VB5SE.js → chunk-OJVXYCSH.js} +2 -3
  5. package/dist/{chunk-M5OSCHMV.js → chunk-PQMEXOPZ.js} +55 -6
  6. package/dist/{chunk-UJJMW7II.js → chunk-W4C7XHTX.js} +1 -1
  7. package/dist/{chunk-W3YQYI4R.js → chunk-W4TUW2GY.js} +2 -2
  8. package/dist/{chunk-VWPUBTMV.js → chunk-WNYCCQM4.js} +39 -21
  9. package/dist/{chunk-JEUH3JDZ.js → chunk-YM7YU7IR.js} +108 -88
  10. package/dist/{chunk-KRVEQVRC.js → chunk-ZH7D7B2Y.js} +10 -4
  11. package/dist/domain/article/index.cjs +18 -5
  12. package/dist/domain/article/index.js +8 -4
  13. package/dist/domain/auth/index.cjs +7 -4
  14. package/dist/domain/auth/index.js +2 -2
  15. package/dist/domain/common/index.cjs +258 -189
  16. package/dist/domain/common/index.js +10 -9
  17. package/dist/domain/friend/index.cjs +14 -4
  18. package/dist/domain/friend/index.js +8 -4
  19. package/dist/domain/index.cjs +278 -191
  20. package/dist/domain/index.js +41 -23
  21. package/dist/domain/meal/index.cjs +6 -2
  22. package/dist/domain/meal/index.js +2 -2
  23. package/dist/domain/member/index.cjs +12 -6
  24. package/dist/domain/member/index.js +7 -5
  25. package/dist/domain/plan/index.cjs +55 -6
  26. package/dist/domain/plan/index.js +3 -3
  27. package/dist/domain/promotion/index.cjs +4 -1
  28. package/dist/domain/promotion/index.js +1 -1
  29. package/dist/domain/recruit/index.cjs +11 -3
  30. package/dist/domain/recruit/index.js +10 -9
  31. package/dist/domain/room/index.cjs +63 -6
  32. package/dist/domain/room/index.js +10 -2
  33. package/dist/index.cjs +270 -192
  34. package/dist/index.js +12 -12
  35. package/package.json +1 -1
  36. package/dist/domain/article/index.d.cts +0 -952
  37. package/dist/domain/article/index.d.ts +0 -952
  38. package/dist/domain/auth/index.d.cts +0 -72
  39. package/dist/domain/auth/index.d.ts +0 -72
  40. package/dist/domain/common/index.d.cts +0 -2689
  41. package/dist/domain/common/index.d.ts +0 -2689
  42. package/dist/domain/friend/index.d.cts +0 -117
  43. package/dist/domain/friend/index.d.ts +0 -117
  44. package/dist/domain/index.d.cts +0 -14
  45. package/dist/domain/index.d.ts +0 -14
  46. package/dist/domain/invitation/index.d.cts +0 -64
  47. package/dist/domain/invitation/index.d.ts +0 -64
  48. package/dist/domain/meal/index.d.cts +0 -66
  49. package/dist/domain/meal/index.d.ts +0 -66
  50. package/dist/domain/member/index.d.cts +0 -332
  51. package/dist/domain/member/index.d.ts +0 -332
  52. package/dist/domain/plan/index.d.cts +0 -178
  53. package/dist/domain/plan/index.d.ts +0 -178
  54. package/dist/domain/promotion/index.d.cts +0 -114
  55. package/dist/domain/promotion/index.d.ts +0 -114
  56. package/dist/domain/recruit/index.d.cts +0 -130
  57. package/dist/domain/recruit/index.d.ts +0 -130
  58. package/dist/domain/restaurant/index.d.cts +0 -82
  59. package/dist/domain/restaurant/index.d.ts +0 -82
  60. package/dist/domain/room/index.d.cts +0 -1482
  61. package/dist/domain/room/index.d.ts +0 -1482
  62. package/dist/id-dAYxfjZn.d.cts +0 -64
  63. package/dist/id-dAYxfjZn.d.ts +0 -64
  64. package/dist/index-DAcw_a8p.d.ts +0 -292
  65. package/dist/index-DJJo4ejN.d.cts +0 -292
  66. package/dist/index.d.cts +0 -282
  67. package/dist/index.d.ts +0 -282
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-HRM3FQPL.js";
4
4
  import {
5
5
  MemberCoreSchema
6
- } from "./chunk-KRVEQVRC.js";
6
+ } from "./chunk-ZH7D7B2Y.js";
7
7
  import {
8
8
  FriendRequestIdSchema
9
9
  } from "./chunk-H77ISYYC.js";
@@ -25,11 +25,15 @@ var FriendRequestItemResponseSchema = z.object({
25
25
  status: FriendRequestStatusSchema,
26
26
  requestedAt: ISODateTimeStringSchema
27
27
  });
28
+ var FriendSearchQuerySchema = z.string().min(1).max(50);
29
+ var FriendSearchResponseSchema = z.array(MemberCoreSchema);
28
30
 
29
31
  export {
30
32
  FriendRequestStatusSchema,
31
33
  FriendListItemResponseSchema,
32
34
  FriendBlockItemResponseSchema,
33
35
  FriendRequestMemberSchema,
34
- FriendRequestItemResponseSchema
36
+ FriendRequestItemResponseSchema,
37
+ FriendSearchQuerySchema,
38
+ FriendSearchResponseSchema
35
39
  };
@@ -55,7 +55,10 @@ var MonthProgressSchema = z3.object({
55
55
  goal: z3.number().int().positive()
56
56
  });
57
57
  var ChallengeStatusResponseSchema = z3.object({
58
- count: z3.number().int().min(0)
58
+ week: WeekProgressSchema,
59
+ month: MonthProgressSchema,
60
+ weekRewardAvailable: z3.boolean(),
61
+ monthRewardAvailable: z3.boolean()
59
62
  });
60
63
  var ClaimChallengeRewardRequestSchema = z3.object({
61
64
  type: RewardTypeSchema
@@ -7,8 +7,9 @@ import {
7
7
  } from "./chunk-HRM3FQPL.js";
8
8
  import {
9
9
  MemberCoreSchema,
10
- PresignUploadResponseSchema
11
- } from "./chunk-KRVEQVRC.js";
10
+ UploadPresignImageRequestSchema,
11
+ UploadPresignImageResponseSchema
12
+ } from "./chunk-ZH7D7B2Y.js";
12
13
  import {
13
14
  ArticleIdSchema,
14
15
  CommentIdSchema,
@@ -45,7 +46,8 @@ var ArticleListQuerySchema = PageQuerySchema.extend({
45
46
  sortBy: ArticleSortBySchema.optional().default("createdAt"),
46
47
  direction: SortDirectionSchema.optional().default("desc")
47
48
  });
48
- var PresignArticleResponseSchema = PresignUploadResponseSchema.extend({});
49
+ var UploadArticleImageResponseSchema = UploadPresignImageResponseSchema.extend({});
50
+ var UploadArticleImageRequestSchema = UploadPresignImageRequestSchema.extend({});
49
51
  var FoodAnalysisResultSchema = FoodSchema.extend({
50
52
  confidence: z2.number().min(0).max(1),
51
53
  tsUtc: ISODateTimeStringSchema.optional()
@@ -85,6 +87,10 @@ var ArticleSummaryResponseSchema = ArticleCoreSchema.extend({
85
87
  commentCount: z2.number().int().min(0),
86
88
  likedByMe: z2.boolean()
87
89
  });
90
+ var ArticleLikeResponseSchema = z2.object({
91
+ liked: z2.boolean(),
92
+ likeCount: z2.number().int().min(0)
93
+ });
88
94
  var ArticleDetailResponseSchema = ArticleSummaryResponseSchema.extend({
89
95
  comments: z2.array(ArticleCommentSchema).optional()
90
96
  });
@@ -97,13 +103,15 @@ export {
97
103
  SortDirectionSchema,
98
104
  ArticleSortBySchema,
99
105
  ArticleListQuerySchema,
100
- PresignArticleResponseSchema,
106
+ UploadArticleImageResponseSchema,
107
+ UploadArticleImageRequestSchema,
101
108
  FoodAnalysisResultSchema,
102
109
  CreateArticleRequestSchema,
103
110
  CreateCommentRequestSchema,
104
111
  ArticleCommentSchema,
105
112
  ArticleCoreSchema,
106
113
  ArticleSummaryResponseSchema,
114
+ ArticleLikeResponseSchema,
107
115
  ArticleDetailResponseSchema,
108
116
  PageArticleSummaryResponseSchema
109
117
  };
@@ -1,12 +1,11 @@
1
1
  import {
2
2
  MemberCoreSchema
3
- } from "./chunk-KRVEQVRC.js";
3
+ } from "./chunk-ZH7D7B2Y.js";
4
4
 
5
5
  // src/domain/auth/auth.schema.ts
6
6
  import { z } from "zod";
7
7
  var TokenResponseSchema = z.object({
8
- accessToken: z.string().min(1),
9
- accessTokenMaxAge: z.number().int().positive()
8
+ accessToken: z.string().min(1)
10
9
  });
11
10
  var LoginRequestSchema = z.object({
12
11
  email: z.string().email(),
@@ -7,7 +7,7 @@ import {
7
7
  } from "./chunk-HRM3FQPL.js";
8
8
  import {
9
9
  MemberCoreSchema
10
- } from "./chunk-KRVEQVRC.js";
10
+ } from "./chunk-ZH7D7B2Y.js";
11
11
  import {
12
12
  FoodCodeSchema,
13
13
  FoodSchema,
@@ -40,6 +40,7 @@ var RecruitRoomStageSchema = z.enum([
40
40
  "restaurant",
41
41
  "finish"
42
42
  ]);
43
+ var RoomTypeSchema = z.enum(["recruit", "invitation"]);
43
44
  var InvitationRoomStageSchema = z.enum([
44
45
  "waiting",
45
46
  "date",
@@ -67,6 +68,23 @@ var PickDateRequestSchema = z.object({ dates: z.array(ISODateStringSchema).min(1
67
68
  var RoomAssignedResponseSchema = z.object({
68
69
  roomId: RoomIdSchema
69
70
  });
71
+ var RoomAccessResponseSchema = z.object({
72
+ roomId: RoomIdSchema,
73
+ roomType: RoomTypeSchema,
74
+ stage: z.union([RecruitRoomStageSchema, InvitationRoomStageSchema]),
75
+ canJoin: z.boolean()
76
+ });
77
+ var MatchingNotificationKindSchema = z.enum(["recruit", "invitation"]);
78
+ var MatchingNotificationSchema = z.object({
79
+ notificationId: z.string().min(1),
80
+ kind: MatchingNotificationKindSchema,
81
+ roomId: RoomIdSchema,
82
+ roomType: RoomTypeSchema,
83
+ title: z.string().min(1),
84
+ message: z.string().min(1),
85
+ createdAt: ISODateTimeStringSchema,
86
+ readAt: ISODateTimeStringSchema.nullable()
87
+ });
70
88
  var RoomSocketErrorSchema = z.object({
71
89
  code: z.string(),
72
90
  message: z.string()
@@ -94,10 +112,6 @@ var RoomInitialStateSchema = z.object({
94
112
  chat: z.array(ChatMessageResponseSchema),
95
113
  final: FinalStateSchema
96
114
  });
97
- var PhaseDataBroadcastSchema = z.object({
98
- phase: z.union([RecruitRoomStageSchema, InvitationRoomStageSchema]),
99
- data: z.unknown()
100
- });
101
115
  var TimePicksUpdateResponseSchema = z.array(
102
116
  z.object({ memberId: MemberIdSchema, times: z.array(z.string()) })
103
117
  );
@@ -119,6 +133,37 @@ var MenuPickUpdateResponseSchema = z.array(
119
133
  var RestaurantPickUpdateResponseSchema = z.array(
120
134
  z.object({ restaurantId: RestaurantIdSchema, selectedMembers: z.array(MemberIdSchema) })
121
135
  );
136
+ var WaitingPhaseDataSchema = z.object({
137
+ locationInitial: z.string().optional(),
138
+ meetingAt: ISODateTimeStringSchema.optional()
139
+ });
140
+ var LocationVotePhaseDataSchema = z.object({
141
+ locations: LocationCandidateAddUpdateResponseSchema,
142
+ votes: LocationCandidateVoteUpdateResponseSchema
143
+ });
144
+ var ExcludeMenuPhaseDataSchema = z.object({
145
+ recentMenus: z.array(z.object({ userId: z.string(), menuList: z.array(MenuSchema) })),
146
+ excludedMenuList: ExcludeMenuUpdateResponseSchema
147
+ });
148
+ var MenuPhaseDataSchema = z.object({
149
+ initialMenus: z.array(MenuSchema),
150
+ menuPick: MenuPickUpdateResponseSchema
151
+ });
152
+ var RestaurantPhaseDataSchema = z.object({
153
+ initialRestaurants: z.array(RestaurantSchema),
154
+ restaurantUserList: RestaurantPickUpdateResponseSchema
155
+ });
156
+ var PhaseDataBroadcastSchema = z.discriminatedUnion("phase", [
157
+ z.object({ phase: z.literal("waiting"), data: WaitingPhaseDataSchema }),
158
+ z.object({ phase: z.literal("date"), data: DatePicksUpdateResponseSchema }),
159
+ z.object({ phase: z.literal("time"), data: TimePicksUpdateResponseSchema }),
160
+ z.object({ phase: z.literal("location"), data: WaitingPhaseDataSchema }),
161
+ z.object({ phase: z.literal("location-vote"), data: LocationVotePhaseDataSchema }),
162
+ z.object({ phase: z.literal("exclude-menu"), data: ExcludeMenuPhaseDataSchema }),
163
+ z.object({ phase: z.literal("menu"), data: MenuPhaseDataSchema }),
164
+ z.object({ phase: z.literal("restaurant"), data: RestaurantPhaseDataSchema }),
165
+ z.object({ phase: z.literal("finish"), data: WaitingPhaseDataSchema })
166
+ ]);
122
167
  var RoomSocketClientEventSchemas = {
123
168
  "ready-state": ReadyStateRequestSchema,
124
169
  "chat-message": ChatMessageRequestSchema,
@@ -154,6 +199,7 @@ export {
154
199
  LocationCandidateSchema,
155
200
  ParticipantSchema,
156
201
  RecruitRoomStageSchema,
202
+ RoomTypeSchema,
157
203
  InvitationRoomStageSchema,
158
204
  ReadyStateRequestSchema,
159
205
  ChatMessageRequestSchema,
@@ -165,12 +211,14 @@ export {
165
211
  PickTimesRequestSchema,
166
212
  PickDateRequestSchema,
167
213
  RoomAssignedResponseSchema,
214
+ RoomAccessResponseSchema,
215
+ MatchingNotificationKindSchema,
216
+ MatchingNotificationSchema,
168
217
  RoomSocketErrorSchema,
169
218
  ChatMessageResponseSchema,
170
219
  ReadyStateChangedSchema,
171
220
  FinalStateSchema,
172
221
  RoomInitialStateSchema,
173
- PhaseDataBroadcastSchema,
174
222
  TimePicksUpdateResponseSchema,
175
223
  DatePicksUpdateResponseSchema,
176
224
  LocationCandidateAddUpdateResponseSchema,
@@ -178,6 +226,7 @@ export {
178
226
  ExcludeMenuUpdateResponseSchema,
179
227
  MenuPickUpdateResponseSchema,
180
228
  RestaurantPickUpdateResponseSchema,
229
+ PhaseDataBroadcastSchema,
181
230
  RoomSocketClientEventSchemas,
182
231
  RoomSocketServerEventSchemas
183
232
  };
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-HRM3FQPL.js";
4
4
  import {
5
5
  MemberCoreSchema
6
- } from "./chunk-KRVEQVRC.js";
6
+ } from "./chunk-ZH7D7B2Y.js";
7
7
 
8
8
  // src/domain/meal/meal.schema.ts
9
9
  import { z } from "zod";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  LocationCandidateSchema
3
- } from "./chunk-M5OSCHMV.js";
3
+ } from "./chunk-PQMEXOPZ.js";
4
4
  import {
5
5
  RestaurantSchema
6
6
  } from "./chunk-GTVEQYJW.js";
@@ -9,7 +9,7 @@ import {
9
9
  } from "./chunk-HRM3FQPL.js";
10
10
  import {
11
11
  MemberCoreSchema
12
- } from "./chunk-KRVEQVRC.js";
12
+ } from "./chunk-ZH7D7B2Y.js";
13
13
  import {
14
14
  PlanIdSchema
15
15
  } from "./chunk-H77ISYYC.js";
@@ -29,7 +29,13 @@ import {
29
29
  toRestaurantId,
30
30
  toRoomId,
31
31
  toSubscriptionId
32
- } from "./chunk-JEUH3JDZ.js";
32
+ } from "./chunk-YM7YU7IR.js";
33
+ import {
34
+ PlanListQuerySchema,
35
+ PlanResponseSchema,
36
+ PlanStatusSchema,
37
+ PlanTypeSchema
38
+ } from "./chunk-W4TUW2GY.js";
33
39
  import {
34
40
  FriendMealItemResponseSchema,
35
41
  FriendMealQuerySchema,
@@ -37,13 +43,7 @@ import {
37
43
  MealStatusResponseSchema,
38
44
  MealStatusSchema,
39
45
  UpdateMealStatusRequestSchema
40
- } from "./chunk-UJJMW7II.js";
41
- import {
42
- PlanListQuerySchema,
43
- PlanResponseSchema,
44
- PlanStatusSchema,
45
- PlanTypeSchema
46
- } from "./chunk-W3YQYI4R.js";
46
+ } from "./chunk-W4C7XHTX.js";
47
47
  import {
48
48
  ChallengeStatusResponseSchema,
49
49
  ClaimChallengeRewardRequestSchema,
@@ -54,7 +54,7 @@ import {
54
54
  RedeemReferralRequestSchema,
55
55
  ReferralCreateResponseSchema,
56
56
  ReferralItemResponseSchema
57
- } from "./chunk-VAWYU5JG.js";
57
+ } from "./chunk-AI2YMBJX.js";
58
58
  import {
59
59
  AddLocationCandidateRequestSchema,
60
60
  ChatMessageRequestSchema,
@@ -68,6 +68,8 @@ import {
68
68
  LocationCandidateSchema,
69
69
  LocationCandidateVoteUpdateResponseSchema,
70
70
  LocationIdSchema,
71
+ MatchingNotificationKindSchema,
72
+ MatchingNotificationSchema,
71
73
  MenuCodeSchema,
72
74
  MenuPickUpdateResponseSchema,
73
75
  MenuSchema,
@@ -81,18 +83,21 @@ import {
81
83
  ReadyStateRequestSchema,
82
84
  RecruitRoomStageSchema,
83
85
  RestaurantPickUpdateResponseSchema,
86
+ RoomAccessResponseSchema,
84
87
  RoomAssignedResponseSchema,
85
88
  RoomInitialStateSchema,
86
89
  RoomSocketClientEventSchemas,
87
90
  RoomSocketErrorSchema,
88
91
  RoomSocketServerEventSchemas,
92
+ RoomTypeSchema,
89
93
  TimePicksUpdateResponseSchema,
90
94
  VoteLocationRequestSchema
91
- } from "./chunk-M5OSCHMV.js";
95
+ } from "./chunk-PQMEXOPZ.js";
92
96
  import {
93
97
  ArticleCommentSchema,
94
98
  ArticleCoreSchema,
95
99
  ArticleDetailResponseSchema,
100
+ ArticleLikeResponseSchema,
96
101
  ArticleListQuerySchema,
97
102
  ArticleSortBySchema,
98
103
  ArticleSummaryResponseSchema,
@@ -103,9 +108,10 @@ import {
103
108
  PageMetaSchema,
104
109
  PageQuerySchema,
105
110
  PageResponseSchema,
106
- PresignArticleResponseSchema,
107
- SortDirectionSchema
108
- } from "./chunk-TY4WZEIZ.js";
111
+ SortDirectionSchema,
112
+ UploadArticleImageRequestSchema,
113
+ UploadArticleImageResponseSchema
114
+ } from "./chunk-K3CZKI2F.js";
109
115
  import {
110
116
  KakaoPlaceRawSchema,
111
117
  RestaurantSchema
@@ -115,14 +121,16 @@ import {
115
121
  SignupRequestSchema,
116
122
  SignupResponseSchema,
117
123
  TokenResponseSchema
118
- } from "./chunk-J76VB5SE.js";
124
+ } from "./chunk-OJVXYCSH.js";
119
125
  import {
120
126
  FriendBlockItemResponseSchema,
121
127
  FriendListItemResponseSchema,
122
128
  FriendRequestItemResponseSchema,
123
129
  FriendRequestMemberSchema,
124
- FriendRequestStatusSchema
125
- } from "./chunk-U6OQQOPN.js";
130
+ FriendRequestStatusSchema,
131
+ FriendSearchQuerySchema,
132
+ FriendSearchResponseSchema
133
+ } from "./chunk-4E5E3PFW.js";
126
134
  import {
127
135
  ISODateStringSchema,
128
136
  ISODateTimeStringSchema,
@@ -143,11 +151,12 @@ import {
143
151
  MemberRoleSchema,
144
152
  MemberSearchQuerySchema,
145
153
  MemberSerachResponseSchema,
146
- PresignProfileResponseSchema,
147
154
  ProfileDetailResponseSchema,
148
155
  UpdatePreferenceRequestSchema,
149
- UpdateProfileRequestSchema
150
- } from "./chunk-KRVEQVRC.js";
156
+ UpdateProfileRequestSchema,
157
+ UploadProfileImageRequestSchema,
158
+ UploadProfileImageResponseSchema
159
+ } from "./chunk-ZH7D7B2Y.js";
151
160
  import {
152
161
  ArticleIdSchema,
153
162
  CommentIdSchema,
@@ -182,6 +191,7 @@ __export(domain_exports, {
182
191
  ArticleCoreSchema: () => ArticleCoreSchema,
183
192
  ArticleDetailResponseSchema: () => ArticleDetailResponseSchema,
184
193
  ArticleIdSchema: () => ArticleIdSchema,
194
+ ArticleLikeResponseSchema: () => ArticleLikeResponseSchema,
185
195
  ArticleListQuerySchema: () => ArticleListQuerySchema,
186
196
  ArticleSortBySchema: () => ArticleSortBySchema,
187
197
  ArticleSummaryResponseSchema: () => ArticleSummaryResponseSchema,
@@ -218,6 +228,8 @@ __export(domain_exports, {
218
228
  FriendRequestItemResponseSchema: () => FriendRequestItemResponseSchema,
219
229
  FriendRequestMemberSchema: () => FriendRequestMemberSchema,
220
230
  FriendRequestStatusSchema: () => FriendRequestStatusSchema,
231
+ FriendSearchQuerySchema: () => FriendSearchQuerySchema,
232
+ FriendSearchResponseSchema: () => FriendSearchResponseSchema,
221
233
  ISODateStringSchema: () => ISODateStringSchema,
222
234
  ISODateTimeStringSchema: () => ISODateTimeStringSchema,
223
235
  InvitationIdSchema: () => InvitationIdSchema,
@@ -229,6 +241,8 @@ __export(domain_exports, {
229
241
  LocationCandidateVoteUpdateResponseSchema: () => LocationCandidateVoteUpdateResponseSchema,
230
242
  LocationIdSchema: () => LocationIdSchema,
231
243
  LoginRequestSchema: () => LoginRequestSchema,
244
+ MatchingNotificationKindSchema: () => MatchingNotificationKindSchema,
245
+ MatchingNotificationSchema: () => MatchingNotificationSchema,
232
246
  MealStatusActionSchema: () => MealStatusActionSchema,
233
247
  MealStatusResponseSchema: () => MealStatusResponseSchema,
234
248
  MealStatusSchema: () => MealStatusSchema,
@@ -264,8 +278,6 @@ __export(domain_exports, {
264
278
  PlanStatusSchema: () => PlanStatusSchema,
265
279
  PlanTypeSchema: () => PlanTypeSchema,
266
280
  PositiveIntIdSchema: () => PositiveIntIdSchema,
267
- PresignArticleResponseSchema: () => PresignArticleResponseSchema,
268
- PresignProfileResponseSchema: () => PresignProfileResponseSchema,
269
281
  ProfileDetailResponseSchema: () => ProfileDetailResponseSchema,
270
282
  ReadyStateChangedSchema: () => ReadyStateChangedSchema,
271
283
  ReadyStateRequestSchema: () => ReadyStateRequestSchema,
@@ -282,12 +294,14 @@ __export(domain_exports, {
282
294
  RestaurantIdSchema: () => RestaurantIdSchema,
283
295
  RestaurantPickUpdateResponseSchema: () => RestaurantPickUpdateResponseSchema,
284
296
  RestaurantSchema: () => RestaurantSchema,
297
+ RoomAccessResponseSchema: () => RoomAccessResponseSchema,
285
298
  RoomAssignedResponseSchema: () => RoomAssignedResponseSchema,
286
299
  RoomIdSchema: () => RoomIdSchema,
287
300
  RoomInitialStateSchema: () => RoomInitialStateSchema,
288
301
  RoomSocketClientEventSchemas: () => RoomSocketClientEventSchemas,
289
302
  RoomSocketErrorSchema: () => RoomSocketErrorSchema,
290
303
  RoomSocketServerEventSchemas: () => RoomSocketServerEventSchemas,
304
+ RoomTypeSchema: () => RoomTypeSchema,
291
305
  SendInvitationResponseSchema: () => SendInvitationResponseSchema,
292
306
  SignupRequestSchema: () => SignupRequestSchema,
293
307
  SignupResponseSchema: () => SignupResponseSchema,
@@ -299,6 +313,10 @@ __export(domain_exports, {
299
313
  UpdateMealStatusRequestSchema: () => UpdateMealStatusRequestSchema,
300
314
  UpdatePreferenceRequestSchema: () => UpdatePreferenceRequestSchema,
301
315
  UpdateProfileRequestSchema: () => UpdateProfileRequestSchema,
316
+ UploadArticleImageRequestSchema: () => UploadArticleImageRequestSchema,
317
+ UploadArticleImageResponseSchema: () => UploadArticleImageResponseSchema,
318
+ UploadProfileImageRequestSchema: () => UploadProfileImageRequestSchema,
319
+ UploadProfileImageResponseSchema: () => UploadProfileImageResponseSchema,
302
320
  UserIdSchema: () => UserIdSchema,
303
321
  VoteLocationRequestSchema: () => VoteLocationRequestSchema,
304
322
  apiContract: () => apiContract,