@kimdaegyu/babmukdang-shared 1.1.4 → 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.
- package/dist/{chunk-U6OQQOPN.js → chunk-4E5E3PFW.js} +6 -2
- package/dist/{chunk-VAWYU5JG.js → chunk-AI2YMBJX.js} +4 -1
- package/dist/{chunk-RLVHDFEV.js → chunk-K3CZKI2F.js} +7 -4
- package/dist/{chunk-J76VB5SE.js → chunk-OJVXYCSH.js} +2 -3
- package/dist/{chunk-M5OSCHMV.js → chunk-PQMEXOPZ.js} +55 -6
- package/dist/{chunk-UJJMW7II.js → chunk-W4C7XHTX.js} +1 -1
- package/dist/{chunk-W3YQYI4R.js → chunk-W4TUW2GY.js} +2 -2
- package/dist/{chunk-23FZ4MAS.js → chunk-WNYCCQM4.js} +49 -33
- package/dist/{chunk-SOHYA6XL.js → chunk-YM7YU7IR.js} +102 -87
- package/dist/{chunk-KRVEQVRC.js → chunk-ZH7D7B2Y.js} +10 -4
- package/dist/domain/article/index.cjs +12 -5
- package/dist/domain/article/index.js +6 -4
- package/dist/domain/auth/index.cjs +7 -4
- package/dist/domain/auth/index.js +2 -2
- package/dist/domain/common/index.cjs +243 -181
- package/dist/domain/common/index.js +12 -11
- package/dist/domain/friend/index.cjs +14 -4
- package/dist/domain/friend/index.js +8 -4
- package/dist/domain/index.cjs +261 -183
- package/dist/domain/index.js +51 -35
- package/dist/domain/meal/index.cjs +6 -2
- package/dist/domain/meal/index.js +3 -3
- package/dist/domain/member/index.cjs +12 -6
- package/dist/domain/member/index.js +7 -5
- package/dist/domain/plan/index.cjs +55 -6
- package/dist/domain/plan/index.js +4 -4
- package/dist/domain/promotion/index.cjs +4 -1
- package/dist/domain/promotion/index.js +1 -1
- package/dist/domain/recruit/index.cjs +11 -3
- package/dist/domain/recruit/index.js +11 -10
- package/dist/domain/room/index.cjs +63 -6
- package/dist/domain/room/index.js +11 -3
- package/dist/index.cjs +254 -184
- package/dist/index.js +14 -14
- package/package.json +1 -1
- package/dist/domain/article/index.d.cts +0 -963
- package/dist/domain/article/index.d.ts +0 -963
- package/dist/domain/auth/index.d.cts +0 -72
- package/dist/domain/auth/index.d.ts +0 -72
- package/dist/domain/common/index.d.cts +0 -2903
- package/dist/domain/common/index.d.ts +0 -2903
- package/dist/domain/friend/index.d.cts +0 -117
- package/dist/domain/friend/index.d.ts +0 -117
- package/dist/domain/index.d.cts +0 -14
- package/dist/domain/index.d.ts +0 -14
- package/dist/domain/invitation/index.d.cts +0 -64
- package/dist/domain/invitation/index.d.ts +0 -64
- package/dist/domain/meal/index.d.cts +0 -66
- package/dist/domain/meal/index.d.ts +0 -66
- package/dist/domain/member/index.d.cts +0 -332
- package/dist/domain/member/index.d.ts +0 -332
- package/dist/domain/plan/index.d.cts +0 -178
- package/dist/domain/plan/index.d.ts +0 -178
- package/dist/domain/promotion/index.d.cts +0 -114
- package/dist/domain/promotion/index.d.ts +0 -114
- package/dist/domain/recruit/index.d.cts +0 -130
- package/dist/domain/recruit/index.d.ts +0 -130
- package/dist/domain/restaurant/index.d.cts +0 -82
- package/dist/domain/restaurant/index.d.ts +0 -82
- package/dist/domain/room/index.d.cts +0 -1482
- package/dist/domain/room/index.d.ts +0 -1482
- package/dist/id-dAYxfjZn.d.cts +0 -64
- package/dist/id-dAYxfjZn.d.ts +0 -64
- package/dist/index-CZT6irsm.d.cts +0 -294
- package/dist/index-DDLVbMTB.d.ts +0 -294
- package/dist/index.d.cts +0 -282
- 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-
|
|
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
|
-
|
|
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
|
-
|
|
11
|
-
|
|
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
|
|
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()
|
|
@@ -101,7 +103,8 @@ export {
|
|
|
101
103
|
SortDirectionSchema,
|
|
102
104
|
ArticleSortBySchema,
|
|
103
105
|
ArticleListQuerySchema,
|
|
104
|
-
|
|
106
|
+
UploadArticleImageResponseSchema,
|
|
107
|
+
UploadArticleImageRequestSchema,
|
|
105
108
|
FoodAnalysisResultSchema,
|
|
106
109
|
CreateArticleRequestSchema,
|
|
107
110
|
CreateCommentRequestSchema,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MemberCoreSchema
|
|
3
|
-
} from "./chunk-
|
|
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-
|
|
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
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
LocationCandidateSchema
|
|
3
|
-
} from "./chunk-
|
|
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-
|
|
12
|
+
} from "./chunk-ZH7D7B2Y.js";
|
|
13
13
|
import {
|
|
14
14
|
PlanIdSchema
|
|
15
15
|
} from "./chunk-H77ISYYC.js";
|
|
@@ -29,7 +29,21 @@ import {
|
|
|
29
29
|
toRestaurantId,
|
|
30
30
|
toRoomId,
|
|
31
31
|
toSubscriptionId
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-YM7YU7IR.js";
|
|
33
|
+
import {
|
|
34
|
+
PlanListQuerySchema,
|
|
35
|
+
PlanResponseSchema,
|
|
36
|
+
PlanStatusSchema,
|
|
37
|
+
PlanTypeSchema
|
|
38
|
+
} from "./chunk-W4TUW2GY.js";
|
|
39
|
+
import {
|
|
40
|
+
FriendMealItemResponseSchema,
|
|
41
|
+
FriendMealQuerySchema,
|
|
42
|
+
MealStatusActionSchema,
|
|
43
|
+
MealStatusResponseSchema,
|
|
44
|
+
MealStatusSchema,
|
|
45
|
+
UpdateMealStatusRequestSchema
|
|
46
|
+
} from "./chunk-W4C7XHTX.js";
|
|
33
47
|
import {
|
|
34
48
|
ChallengeStatusResponseSchema,
|
|
35
49
|
ClaimChallengeRewardRequestSchema,
|
|
@@ -40,13 +54,7 @@ import {
|
|
|
40
54
|
RedeemReferralRequestSchema,
|
|
41
55
|
ReferralCreateResponseSchema,
|
|
42
56
|
ReferralItemResponseSchema
|
|
43
|
-
} from "./chunk-
|
|
44
|
-
import {
|
|
45
|
-
PlanListQuerySchema,
|
|
46
|
-
PlanResponseSchema,
|
|
47
|
-
PlanStatusSchema,
|
|
48
|
-
PlanTypeSchema
|
|
49
|
-
} from "./chunk-W3YQYI4R.js";
|
|
57
|
+
} from "./chunk-AI2YMBJX.js";
|
|
50
58
|
import {
|
|
51
59
|
AddLocationCandidateRequestSchema,
|
|
52
60
|
ChatMessageRequestSchema,
|
|
@@ -60,6 +68,8 @@ import {
|
|
|
60
68
|
LocationCandidateSchema,
|
|
61
69
|
LocationCandidateVoteUpdateResponseSchema,
|
|
62
70
|
LocationIdSchema,
|
|
71
|
+
MatchingNotificationKindSchema,
|
|
72
|
+
MatchingNotificationSchema,
|
|
63
73
|
MenuCodeSchema,
|
|
64
74
|
MenuPickUpdateResponseSchema,
|
|
65
75
|
MenuSchema,
|
|
@@ -73,14 +83,16 @@ import {
|
|
|
73
83
|
ReadyStateRequestSchema,
|
|
74
84
|
RecruitRoomStageSchema,
|
|
75
85
|
RestaurantPickUpdateResponseSchema,
|
|
86
|
+
RoomAccessResponseSchema,
|
|
76
87
|
RoomAssignedResponseSchema,
|
|
77
88
|
RoomInitialStateSchema,
|
|
78
89
|
RoomSocketClientEventSchemas,
|
|
79
90
|
RoomSocketErrorSchema,
|
|
80
91
|
RoomSocketServerEventSchemas,
|
|
92
|
+
RoomTypeSchema,
|
|
81
93
|
TimePicksUpdateResponseSchema,
|
|
82
94
|
VoteLocationRequestSchema
|
|
83
|
-
} from "./chunk-
|
|
95
|
+
} from "./chunk-PQMEXOPZ.js";
|
|
84
96
|
import {
|
|
85
97
|
ArticleCommentSchema,
|
|
86
98
|
ArticleCoreSchema,
|
|
@@ -96,9 +108,10 @@ import {
|
|
|
96
108
|
PageMetaSchema,
|
|
97
109
|
PageQuerySchema,
|
|
98
110
|
PageResponseSchema,
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
111
|
+
SortDirectionSchema,
|
|
112
|
+
UploadArticleImageRequestSchema,
|
|
113
|
+
UploadArticleImageResponseSchema
|
|
114
|
+
} from "./chunk-K3CZKI2F.js";
|
|
102
115
|
import {
|
|
103
116
|
KakaoPlaceRawSchema,
|
|
104
117
|
RestaurantSchema
|
|
@@ -108,33 +121,27 @@ import {
|
|
|
108
121
|
SignupRequestSchema,
|
|
109
122
|
SignupResponseSchema,
|
|
110
123
|
TokenResponseSchema
|
|
111
|
-
} from "./chunk-
|
|
124
|
+
} from "./chunk-OJVXYCSH.js";
|
|
112
125
|
import {
|
|
113
126
|
FriendBlockItemResponseSchema,
|
|
114
127
|
FriendListItemResponseSchema,
|
|
115
128
|
FriendRequestItemResponseSchema,
|
|
116
129
|
FriendRequestMemberSchema,
|
|
117
|
-
FriendRequestStatusSchema
|
|
118
|
-
|
|
130
|
+
FriendRequestStatusSchema,
|
|
131
|
+
FriendSearchQuerySchema,
|
|
132
|
+
FriendSearchResponseSchema
|
|
133
|
+
} from "./chunk-4E5E3PFW.js";
|
|
134
|
+
import {
|
|
135
|
+
ISODateStringSchema,
|
|
136
|
+
ISODateTimeStringSchema,
|
|
137
|
+
TimeHHmmStringSchema
|
|
138
|
+
} from "./chunk-HRM3FQPL.js";
|
|
119
139
|
import {
|
|
120
140
|
AcceptInvitationResponseSchema,
|
|
121
141
|
CreateInvitationRequestSchema,
|
|
122
142
|
InvitationListItemResponseSchema,
|
|
123
143
|
SendInvitationResponseSchema
|
|
124
144
|
} from "./chunk-YGFAVC5N.js";
|
|
125
|
-
import {
|
|
126
|
-
FriendMealItemResponseSchema,
|
|
127
|
-
FriendMealQuerySchema,
|
|
128
|
-
MealStatusActionSchema,
|
|
129
|
-
MealStatusResponseSchema,
|
|
130
|
-
MealStatusSchema,
|
|
131
|
-
UpdateMealStatusRequestSchema
|
|
132
|
-
} from "./chunk-UJJMW7II.js";
|
|
133
|
-
import {
|
|
134
|
-
ISODateStringSchema,
|
|
135
|
-
ISODateTimeStringSchema,
|
|
136
|
-
TimeHHmmStringSchema
|
|
137
|
-
} from "./chunk-HRM3FQPL.js";
|
|
138
145
|
import {
|
|
139
146
|
CreateProfileRequestSchema,
|
|
140
147
|
MemberCoreSchema,
|
|
@@ -144,11 +151,12 @@ import {
|
|
|
144
151
|
MemberRoleSchema,
|
|
145
152
|
MemberSearchQuerySchema,
|
|
146
153
|
MemberSerachResponseSchema,
|
|
147
|
-
PresignProfileResponseSchema,
|
|
148
154
|
ProfileDetailResponseSchema,
|
|
149
155
|
UpdatePreferenceRequestSchema,
|
|
150
|
-
UpdateProfileRequestSchema
|
|
151
|
-
|
|
156
|
+
UpdateProfileRequestSchema,
|
|
157
|
+
UploadProfileImageRequestSchema,
|
|
158
|
+
UploadProfileImageResponseSchema
|
|
159
|
+
} from "./chunk-ZH7D7B2Y.js";
|
|
152
160
|
import {
|
|
153
161
|
ArticleIdSchema,
|
|
154
162
|
CommentIdSchema,
|
|
@@ -220,6 +228,8 @@ __export(domain_exports, {
|
|
|
220
228
|
FriendRequestItemResponseSchema: () => FriendRequestItemResponseSchema,
|
|
221
229
|
FriendRequestMemberSchema: () => FriendRequestMemberSchema,
|
|
222
230
|
FriendRequestStatusSchema: () => FriendRequestStatusSchema,
|
|
231
|
+
FriendSearchQuerySchema: () => FriendSearchQuerySchema,
|
|
232
|
+
FriendSearchResponseSchema: () => FriendSearchResponseSchema,
|
|
223
233
|
ISODateStringSchema: () => ISODateStringSchema,
|
|
224
234
|
ISODateTimeStringSchema: () => ISODateTimeStringSchema,
|
|
225
235
|
InvitationIdSchema: () => InvitationIdSchema,
|
|
@@ -231,6 +241,8 @@ __export(domain_exports, {
|
|
|
231
241
|
LocationCandidateVoteUpdateResponseSchema: () => LocationCandidateVoteUpdateResponseSchema,
|
|
232
242
|
LocationIdSchema: () => LocationIdSchema,
|
|
233
243
|
LoginRequestSchema: () => LoginRequestSchema,
|
|
244
|
+
MatchingNotificationKindSchema: () => MatchingNotificationKindSchema,
|
|
245
|
+
MatchingNotificationSchema: () => MatchingNotificationSchema,
|
|
234
246
|
MealStatusActionSchema: () => MealStatusActionSchema,
|
|
235
247
|
MealStatusResponseSchema: () => MealStatusResponseSchema,
|
|
236
248
|
MealStatusSchema: () => MealStatusSchema,
|
|
@@ -266,8 +278,6 @@ __export(domain_exports, {
|
|
|
266
278
|
PlanStatusSchema: () => PlanStatusSchema,
|
|
267
279
|
PlanTypeSchema: () => PlanTypeSchema,
|
|
268
280
|
PositiveIntIdSchema: () => PositiveIntIdSchema,
|
|
269
|
-
PresignArticleResponseSchema: () => PresignArticleResponseSchema,
|
|
270
|
-
PresignProfileResponseSchema: () => PresignProfileResponseSchema,
|
|
271
281
|
ProfileDetailResponseSchema: () => ProfileDetailResponseSchema,
|
|
272
282
|
ReadyStateChangedSchema: () => ReadyStateChangedSchema,
|
|
273
283
|
ReadyStateRequestSchema: () => ReadyStateRequestSchema,
|
|
@@ -284,12 +294,14 @@ __export(domain_exports, {
|
|
|
284
294
|
RestaurantIdSchema: () => RestaurantIdSchema,
|
|
285
295
|
RestaurantPickUpdateResponseSchema: () => RestaurantPickUpdateResponseSchema,
|
|
286
296
|
RestaurantSchema: () => RestaurantSchema,
|
|
297
|
+
RoomAccessResponseSchema: () => RoomAccessResponseSchema,
|
|
287
298
|
RoomAssignedResponseSchema: () => RoomAssignedResponseSchema,
|
|
288
299
|
RoomIdSchema: () => RoomIdSchema,
|
|
289
300
|
RoomInitialStateSchema: () => RoomInitialStateSchema,
|
|
290
301
|
RoomSocketClientEventSchemas: () => RoomSocketClientEventSchemas,
|
|
291
302
|
RoomSocketErrorSchema: () => RoomSocketErrorSchema,
|
|
292
303
|
RoomSocketServerEventSchemas: () => RoomSocketServerEventSchemas,
|
|
304
|
+
RoomTypeSchema: () => RoomTypeSchema,
|
|
293
305
|
SendInvitationResponseSchema: () => SendInvitationResponseSchema,
|
|
294
306
|
SignupRequestSchema: () => SignupRequestSchema,
|
|
295
307
|
SignupResponseSchema: () => SignupResponseSchema,
|
|
@@ -301,6 +313,10 @@ __export(domain_exports, {
|
|
|
301
313
|
UpdateMealStatusRequestSchema: () => UpdateMealStatusRequestSchema,
|
|
302
314
|
UpdatePreferenceRequestSchema: () => UpdatePreferenceRequestSchema,
|
|
303
315
|
UpdateProfileRequestSchema: () => UpdateProfileRequestSchema,
|
|
316
|
+
UploadArticleImageRequestSchema: () => UploadArticleImageRequestSchema,
|
|
317
|
+
UploadArticleImageResponseSchema: () => UploadArticleImageResponseSchema,
|
|
318
|
+
UploadProfileImageRequestSchema: () => UploadProfileImageRequestSchema,
|
|
319
|
+
UploadProfileImageResponseSchema: () => UploadProfileImageResponseSchema,
|
|
304
320
|
UserIdSchema: () => UserIdSchema,
|
|
305
321
|
VoteLocationRequestSchema: () => VoteLocationRequestSchema,
|
|
306
322
|
apiContract: () => apiContract,
|