@kimdaegyu/babmukdang-shared 1.1.1 → 1.1.3
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-ET2Z5ZYA.js → chunk-GTVEQYJW.js} +1 -1
- package/dist/{chunk-4XAGRJUM.js → chunk-H77ISYYC.js} +0 -10
- package/dist/{chunk-JNJRBUKR.js → chunk-J76VB5SE.js} +1 -1
- package/dist/{chunk-XTBVYY5B.js → chunk-JEUH3JDZ.js} +31 -18
- package/dist/{chunk-ADIREWTX.js → chunk-KRVEQVRC.js} +1 -1
- package/dist/{chunk-NAPCX4Q6.js → chunk-M5OSCHMV.js} +3 -3
- package/dist/{chunk-XWTMYXPO.js → chunk-TY4WZEIZ.js} +3 -3
- package/dist/{chunk-YJ7RUOEJ.js → chunk-U6OQQOPN.js} +2 -2
- package/dist/{chunk-O56CI56W.js → chunk-UJJMW7II.js} +1 -1
- package/dist/{chunk-RHQHBUO4.js → chunk-VAWYU5JG.js} +1 -1
- package/dist/{chunk-AATETFLU.js → chunk-VWPUBTMV.js} +38 -26
- package/dist/{chunk-M7HH7FMO.js → chunk-W3YQYI4R.js} +4 -4
- package/dist/{chunk-5QLCZOPJ.js → chunk-YGFAVC5N.js} +1 -1
- package/dist/domain/article/index.js +4 -4
- package/dist/domain/auth/index.js +3 -3
- package/dist/domain/common/index.cjs +20 -2
- package/dist/domain/common/index.d.cts +1 -1
- package/dist/domain/common/index.d.ts +1 -1
- package/dist/domain/common/index.js +27 -15
- package/dist/domain/friend/index.js +3 -3
- package/dist/domain/index.cjs +20 -2
- package/dist/domain/index.d.cts +1 -1
- package/dist/domain/index.d.ts +1 -1
- package/dist/domain/index.js +39 -27
- package/dist/domain/invitation/index.js +2 -2
- package/dist/domain/meal/index.js +4 -4
- package/dist/domain/member/index.d.cts +1 -1
- package/dist/domain/member/index.d.ts +1 -1
- package/dist/domain/member/index.js +2 -2
- package/dist/domain/plan/index.js +6 -6
- package/dist/domain/promotion/index.js +2 -2
- package/dist/domain/recruit/index.js +13 -13
- package/dist/domain/restaurant/index.js +2 -2
- package/dist/domain/room/index.js +5 -5
- package/dist/{id-_a-oManb.d.cts → id-dAYxfjZn.d.cts} +7 -1
- package/dist/{id-_a-oManb.d.ts → id-dAYxfjZn.d.ts} +7 -1
- package/dist/{index-CqcSqpDV.d.ts → index-DAcw_a8p.d.ts} +8 -2
- package/dist/{index-HEHaDbrV.d.cts → index-DJJo4ejN.d.cts} +8 -2
- package/dist/index.cjs +13 -187
- package/dist/index.d.cts +9 -72
- package/dist/index.d.ts +9 -72
- package/dist/index.js +14 -181
- package/package.json +55 -55
|
@@ -1,17 +1,8 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
2
|
var __export = (target, all) => {
|
|
4
3
|
for (var name in all)
|
|
5
4
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
6
5
|
};
|
|
7
|
-
var __decorateClass = (decorators, target, key, kind) => {
|
|
8
|
-
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
9
|
-
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
10
|
-
if (decorator = decorators[i])
|
|
11
|
-
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
12
|
-
if (kind && result) __defProp(target, key, result);
|
|
13
|
-
return result;
|
|
14
|
-
};
|
|
15
6
|
|
|
16
7
|
// src/domain/common/schema/id.schema.ts
|
|
17
8
|
import { z } from "zod";
|
|
@@ -39,7 +30,6 @@ var FoodSchema = z.object({
|
|
|
39
30
|
|
|
40
31
|
export {
|
|
41
32
|
__export,
|
|
42
|
-
__decorateClass,
|
|
43
33
|
PositiveIntIdSchema,
|
|
44
34
|
NonEmptyStringIdSchema,
|
|
45
35
|
MemberIdSchema,
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
import {
|
|
2
|
+
FriendMealItemResponseSchema,
|
|
3
|
+
FriendMealQuerySchema,
|
|
4
|
+
MealStatusResponseSchema,
|
|
5
|
+
UpdateMealStatusRequestSchema
|
|
6
|
+
} from "./chunk-UJJMW7II.js";
|
|
1
7
|
import {
|
|
2
8
|
PlanListQuerySchema,
|
|
3
9
|
PlanResponseSchema
|
|
4
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-W3YQYI4R.js";
|
|
5
11
|
import {
|
|
6
12
|
ChallengeStatusResponseSchema,
|
|
7
13
|
ClaimChallengeRewardRequestSchema,
|
|
@@ -9,7 +15,7 @@ import {
|
|
|
9
15
|
RedeemReferralRequestSchema,
|
|
10
16
|
ReferralCreateResponseSchema,
|
|
11
17
|
ReferralItemResponseSchema
|
|
12
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-VAWYU5JG.js";
|
|
13
19
|
import {
|
|
14
20
|
ArticleDetailResponseSchema,
|
|
15
21
|
ArticleListQuerySchema,
|
|
@@ -19,33 +25,27 @@ import {
|
|
|
19
25
|
PageQuerySchema,
|
|
20
26
|
PresignArticleResponseSchema,
|
|
21
27
|
SortDirectionSchema
|
|
22
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-TY4WZEIZ.js";
|
|
23
29
|
import {
|
|
24
30
|
LoginRequestSchema,
|
|
25
31
|
SignupRequestSchema,
|
|
26
32
|
SignupResponseSchema,
|
|
27
33
|
TokenResponseSchema
|
|
28
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-J76VB5SE.js";
|
|
29
35
|
import {
|
|
30
36
|
FriendBlockItemResponseSchema,
|
|
31
37
|
FriendListItemResponseSchema,
|
|
32
38
|
FriendRequestItemResponseSchema
|
|
33
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-U6OQQOPN.js";
|
|
40
|
+
import {
|
|
41
|
+
ISODateTimeStringSchema
|
|
42
|
+
} from "./chunk-HRM3FQPL.js";
|
|
34
43
|
import {
|
|
35
44
|
AcceptInvitationResponseSchema,
|
|
36
45
|
CreateInvitationRequestSchema,
|
|
37
46
|
InvitationListItemResponseSchema,
|
|
38
47
|
SendInvitationResponseSchema
|
|
39
|
-
} from "./chunk-
|
|
40
|
-
import {
|
|
41
|
-
FriendMealItemResponseSchema,
|
|
42
|
-
FriendMealQuerySchema,
|
|
43
|
-
MealStatusResponseSchema,
|
|
44
|
-
UpdateMealStatusRequestSchema
|
|
45
|
-
} from "./chunk-O56CI56W.js";
|
|
46
|
-
import {
|
|
47
|
-
ISODateTimeStringSchema
|
|
48
|
-
} from "./chunk-HRM3FQPL.js";
|
|
48
|
+
} from "./chunk-YGFAVC5N.js";
|
|
49
49
|
import {
|
|
50
50
|
CreateProfileRequestSchema,
|
|
51
51
|
MemberCoreSchema,
|
|
@@ -56,7 +56,7 @@ import {
|
|
|
56
56
|
ProfileDetailResponseSchema,
|
|
57
57
|
UpdatePreferenceRequestSchema,
|
|
58
58
|
UpdateProfileRequestSchema
|
|
59
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-KRVEQVRC.js";
|
|
60
60
|
import {
|
|
61
61
|
ArticleIdSchema,
|
|
62
62
|
CommentIdSchema,
|
|
@@ -66,10 +66,11 @@ import {
|
|
|
66
66
|
MemberIdSchema,
|
|
67
67
|
PlanIdSchema,
|
|
68
68
|
RecruitIdSchema,
|
|
69
|
+
ReferralCodeSchema,
|
|
69
70
|
RestaurantIdSchema,
|
|
70
71
|
RoomIdSchema,
|
|
71
72
|
SubscriptionIdSchema
|
|
72
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-H77ISYYC.js";
|
|
73
74
|
|
|
74
75
|
// src/domain/recruit/recruit.schema.ts
|
|
75
76
|
import { z as z4 } from "zod";
|
|
@@ -225,6 +226,12 @@ var toRecruitId = (value) => RecruitIdSchema.parse(value);
|
|
|
225
226
|
var toInvitationId = (value) => InvitationIdSchema.parse(value);
|
|
226
227
|
var toRoomId = (value) => RoomIdSchema.parse(value);
|
|
227
228
|
var toRestaurantId = (value) => RestaurantIdSchema.parse(value);
|
|
229
|
+
var toCommentId = (value) => CommentIdSchema.parse(value);
|
|
230
|
+
var toPlanId = (value) => PlanIdSchema.parse(value);
|
|
231
|
+
var toCouponId = (value) => CouponIdSchema.parse(value);
|
|
232
|
+
var toSubscriptionId = (value) => SubscriptionIdSchema.parse(value);
|
|
233
|
+
var toFriendRequestId = (value) => FriendRequestIdSchema.parse(value);
|
|
234
|
+
var toReferralCode = (value) => ReferralCodeSchema.parse(value);
|
|
228
235
|
|
|
229
236
|
// src/domain/recruit/recruit.schema.ts
|
|
230
237
|
var RecruitStatusSchema = z4.enum(["OPEN", "CLOSED", "EXPIRED"]);
|
|
@@ -282,5 +289,11 @@ export {
|
|
|
282
289
|
toRecruitId,
|
|
283
290
|
toInvitationId,
|
|
284
291
|
toRoomId,
|
|
285
|
-
toRestaurantId
|
|
292
|
+
toRestaurantId,
|
|
293
|
+
toCommentId,
|
|
294
|
+
toPlanId,
|
|
295
|
+
toCouponId,
|
|
296
|
+
toSubscriptionId,
|
|
297
|
+
toFriendRequestId,
|
|
298
|
+
toReferralCode
|
|
286
299
|
};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RestaurantSchema
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-GTVEQYJW.js";
|
|
4
4
|
import {
|
|
5
5
|
ISODateStringSchema,
|
|
6
6
|
ISODateTimeStringSchema
|
|
7
7
|
} from "./chunk-HRM3FQPL.js";
|
|
8
8
|
import {
|
|
9
9
|
MemberCoreSchema
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-KRVEQVRC.js";
|
|
11
11
|
import {
|
|
12
12
|
FoodCodeSchema,
|
|
13
13
|
FoodSchema,
|
|
14
14
|
MemberIdSchema,
|
|
15
15
|
RestaurantIdSchema,
|
|
16
16
|
RoomIdSchema
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-H77ISYYC.js";
|
|
18
18
|
|
|
19
19
|
// src/domain/room/schema/room.schema.ts
|
|
20
20
|
import { z } from "zod";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RestaurantSchema
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-GTVEQYJW.js";
|
|
4
4
|
import {
|
|
5
5
|
ISODateStringSchema,
|
|
6
6
|
ISODateTimeStringSchema
|
|
@@ -8,13 +8,13 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
MemberCoreSchema,
|
|
10
10
|
PresignUploadResponseSchema
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-KRVEQVRC.js";
|
|
12
12
|
import {
|
|
13
13
|
ArticleIdSchema,
|
|
14
14
|
CommentIdSchema,
|
|
15
15
|
FoodSchema,
|
|
16
16
|
MemberIdSchema
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-H77ISYYC.js";
|
|
18
18
|
|
|
19
19
|
// src/domain/article/article.schema.ts
|
|
20
20
|
import { z as z2 } from "zod";
|
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
} from "./chunk-HRM3FQPL.js";
|
|
4
4
|
import {
|
|
5
5
|
MemberCoreSchema
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-KRVEQVRC.js";
|
|
7
7
|
import {
|
|
8
8
|
FriendRequestIdSchema
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-H77ISYYC.js";
|
|
10
10
|
|
|
11
11
|
// src/domain/friend/friend.schema.ts
|
|
12
12
|
import { z } from "zod";
|
|
@@ -18,18 +18,32 @@ import {
|
|
|
18
18
|
makeApiResponseSchema,
|
|
19
19
|
makeApiSuccessSchema,
|
|
20
20
|
toArticleId,
|
|
21
|
+
toCommentId,
|
|
22
|
+
toCouponId,
|
|
23
|
+
toFriendRequestId,
|
|
21
24
|
toInvitationId,
|
|
22
25
|
toMemberId,
|
|
26
|
+
toPlanId,
|
|
23
27
|
toRecruitId,
|
|
28
|
+
toReferralCode,
|
|
24
29
|
toRestaurantId,
|
|
25
|
-
toRoomId
|
|
26
|
-
|
|
30
|
+
toRoomId,
|
|
31
|
+
toSubscriptionId
|
|
32
|
+
} from "./chunk-JEUH3JDZ.js";
|
|
33
|
+
import {
|
|
34
|
+
FriendMealItemResponseSchema,
|
|
35
|
+
FriendMealQuerySchema,
|
|
36
|
+
MealStatusActionSchema,
|
|
37
|
+
MealStatusResponseSchema,
|
|
38
|
+
MealStatusSchema,
|
|
39
|
+
UpdateMealStatusRequestSchema
|
|
40
|
+
} from "./chunk-UJJMW7II.js";
|
|
27
41
|
import {
|
|
28
42
|
PlanListQuerySchema,
|
|
29
43
|
PlanResponseSchema,
|
|
30
44
|
PlanStatusSchema,
|
|
31
45
|
PlanTypeSchema
|
|
32
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-W3YQYI4R.js";
|
|
33
47
|
import {
|
|
34
48
|
ChallengeStatusResponseSchema,
|
|
35
49
|
ClaimChallengeRewardRequestSchema,
|
|
@@ -40,7 +54,7 @@ import {
|
|
|
40
54
|
RedeemReferralRequestSchema,
|
|
41
55
|
ReferralCreateResponseSchema,
|
|
42
56
|
ReferralItemResponseSchema
|
|
43
|
-
} from "./chunk-
|
|
57
|
+
} from "./chunk-VAWYU5JG.js";
|
|
44
58
|
import {
|
|
45
59
|
AddLocationCandidateRequestSchema,
|
|
46
60
|
ChatMessageRequestSchema,
|
|
@@ -74,7 +88,7 @@ import {
|
|
|
74
88
|
RoomSocketServerEventSchemas,
|
|
75
89
|
TimePicksUpdateResponseSchema,
|
|
76
90
|
VoteLocationRequestSchema
|
|
77
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-M5OSCHMV.js";
|
|
78
92
|
import {
|
|
79
93
|
ArticleCommentSchema,
|
|
80
94
|
ArticleCoreSchema,
|
|
@@ -91,43 +105,35 @@ import {
|
|
|
91
105
|
PageResponseSchema,
|
|
92
106
|
PresignArticleResponseSchema,
|
|
93
107
|
SortDirectionSchema
|
|
94
|
-
} from "./chunk-
|
|
108
|
+
} from "./chunk-TY4WZEIZ.js";
|
|
95
109
|
import {
|
|
96
110
|
KakaoPlaceRawSchema,
|
|
97
111
|
RestaurantSchema
|
|
98
|
-
} from "./chunk-
|
|
112
|
+
} from "./chunk-GTVEQYJW.js";
|
|
99
113
|
import {
|
|
100
114
|
LoginRequestSchema,
|
|
101
115
|
SignupRequestSchema,
|
|
102
116
|
SignupResponseSchema,
|
|
103
117
|
TokenResponseSchema
|
|
104
|
-
} from "./chunk-
|
|
118
|
+
} from "./chunk-J76VB5SE.js";
|
|
105
119
|
import {
|
|
106
120
|
FriendBlockItemResponseSchema,
|
|
107
121
|
FriendListItemResponseSchema,
|
|
108
122
|
FriendRequestItemResponseSchema,
|
|
109
123
|
FriendRequestMemberSchema,
|
|
110
124
|
FriendRequestStatusSchema
|
|
111
|
-
} from "./chunk-
|
|
112
|
-
import {
|
|
113
|
-
AcceptInvitationResponseSchema,
|
|
114
|
-
CreateInvitationRequestSchema,
|
|
115
|
-
InvitationListItemResponseSchema,
|
|
116
|
-
SendInvitationResponseSchema
|
|
117
|
-
} from "./chunk-5QLCZOPJ.js";
|
|
118
|
-
import {
|
|
119
|
-
FriendMealItemResponseSchema,
|
|
120
|
-
FriendMealQuerySchema,
|
|
121
|
-
MealStatusActionSchema,
|
|
122
|
-
MealStatusResponseSchema,
|
|
123
|
-
MealStatusSchema,
|
|
124
|
-
UpdateMealStatusRequestSchema
|
|
125
|
-
} from "./chunk-O56CI56W.js";
|
|
125
|
+
} from "./chunk-U6OQQOPN.js";
|
|
126
126
|
import {
|
|
127
127
|
ISODateStringSchema,
|
|
128
128
|
ISODateTimeStringSchema,
|
|
129
129
|
TimeHHmmStringSchema
|
|
130
130
|
} from "./chunk-HRM3FQPL.js";
|
|
131
|
+
import {
|
|
132
|
+
AcceptInvitationResponseSchema,
|
|
133
|
+
CreateInvitationRequestSchema,
|
|
134
|
+
InvitationListItemResponseSchema,
|
|
135
|
+
SendInvitationResponseSchema
|
|
136
|
+
} from "./chunk-YGFAVC5N.js";
|
|
131
137
|
import {
|
|
132
138
|
CreateProfileRequestSchema,
|
|
133
139
|
MemberCoreSchema,
|
|
@@ -141,7 +147,7 @@ import {
|
|
|
141
147
|
ProfileDetailResponseSchema,
|
|
142
148
|
UpdatePreferenceRequestSchema,
|
|
143
149
|
UpdateProfileRequestSchema
|
|
144
|
-
} from "./chunk-
|
|
150
|
+
} from "./chunk-KRVEQVRC.js";
|
|
145
151
|
import {
|
|
146
152
|
ArticleIdSchema,
|
|
147
153
|
CommentIdSchema,
|
|
@@ -162,7 +168,7 @@ import {
|
|
|
162
168
|
SubscriptionIdSchema,
|
|
163
169
|
UserIdSchema,
|
|
164
170
|
__export
|
|
165
|
-
} from "./chunk-
|
|
171
|
+
} from "./chunk-H77ISYYC.js";
|
|
166
172
|
|
|
167
173
|
// src/domain/index.ts
|
|
168
174
|
var domain_exports = {};
|
|
@@ -300,11 +306,17 @@ __export(domain_exports, {
|
|
|
300
306
|
makeApiResponseSchema: () => makeApiResponseSchema,
|
|
301
307
|
makeApiSuccessSchema: () => makeApiSuccessSchema,
|
|
302
308
|
toArticleId: () => toArticleId,
|
|
309
|
+
toCommentId: () => toCommentId,
|
|
310
|
+
toCouponId: () => toCouponId,
|
|
311
|
+
toFriendRequestId: () => toFriendRequestId,
|
|
303
312
|
toInvitationId: () => toInvitationId,
|
|
304
313
|
toMemberId: () => toMemberId,
|
|
314
|
+
toPlanId: () => toPlanId,
|
|
305
315
|
toRecruitId: () => toRecruitId,
|
|
316
|
+
toReferralCode: () => toReferralCode,
|
|
306
317
|
toRestaurantId: () => toRestaurantId,
|
|
307
|
-
toRoomId: () => toRoomId
|
|
318
|
+
toRoomId: () => toRoomId,
|
|
319
|
+
toSubscriptionId: () => toSubscriptionId
|
|
308
320
|
});
|
|
309
321
|
|
|
310
322
|
export {
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
LocationCandidateSchema
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-M5OSCHMV.js";
|
|
4
4
|
import {
|
|
5
5
|
RestaurantSchema
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-GTVEQYJW.js";
|
|
7
7
|
import {
|
|
8
8
|
ISODateTimeStringSchema
|
|
9
9
|
} from "./chunk-HRM3FQPL.js";
|
|
10
10
|
import {
|
|
11
11
|
MemberCoreSchema
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-KRVEQVRC.js";
|
|
13
13
|
import {
|
|
14
14
|
PlanIdSchema
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-H77ISYYC.js";
|
|
16
16
|
|
|
17
17
|
// src/domain/plan/plan.schema.ts
|
|
18
18
|
import { z } from "zod";
|
|
@@ -10,11 +10,11 @@ import {
|
|
|
10
10
|
FoodAnalysisResultSchema,
|
|
11
11
|
PageArticleSummaryResponseSchema,
|
|
12
12
|
PresignArticleResponseSchema
|
|
13
|
-
} from "../../chunk-
|
|
14
|
-
import "../../chunk-
|
|
13
|
+
} from "../../chunk-TY4WZEIZ.js";
|
|
14
|
+
import "../../chunk-GTVEQYJW.js";
|
|
15
15
|
import "../../chunk-HRM3FQPL.js";
|
|
16
|
-
import "../../chunk-
|
|
17
|
-
import "../../chunk-
|
|
16
|
+
import "../../chunk-KRVEQVRC.js";
|
|
17
|
+
import "../../chunk-H77ISYYC.js";
|
|
18
18
|
export {
|
|
19
19
|
ArticleCommentSchema,
|
|
20
20
|
ArticleCoreSchema,
|
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
SignupRequestSchema,
|
|
4
4
|
SignupResponseSchema,
|
|
5
5
|
TokenResponseSchema
|
|
6
|
-
} from "../../chunk-
|
|
7
|
-
import "../../chunk-
|
|
8
|
-
import "../../chunk-
|
|
6
|
+
} from "../../chunk-J76VB5SE.js";
|
|
7
|
+
import "../../chunk-KRVEQVRC.js";
|
|
8
|
+
import "../../chunk-H77ISYYC.js";
|
|
9
9
|
export {
|
|
10
10
|
LoginRequestSchema,
|
|
11
11
|
SignupRequestSchema,
|
|
@@ -68,11 +68,17 @@ __export(common_exports, {
|
|
|
68
68
|
makeApiResponseSchema: () => makeApiResponseSchema,
|
|
69
69
|
makeApiSuccessSchema: () => makeApiSuccessSchema,
|
|
70
70
|
toArticleId: () => toArticleId,
|
|
71
|
+
toCommentId: () => toCommentId,
|
|
72
|
+
toCouponId: () => toCouponId,
|
|
73
|
+
toFriendRequestId: () => toFriendRequestId,
|
|
71
74
|
toInvitationId: () => toInvitationId,
|
|
72
75
|
toMemberId: () => toMemberId,
|
|
76
|
+
toPlanId: () => toPlanId,
|
|
73
77
|
toRecruitId: () => toRecruitId,
|
|
78
|
+
toReferralCode: () => toReferralCode,
|
|
74
79
|
toRestaurantId: () => toRestaurantId,
|
|
75
|
-
toRoomId: () => toRoomId
|
|
80
|
+
toRoomId: () => toRoomId,
|
|
81
|
+
toSubscriptionId: () => toSubscriptionId
|
|
76
82
|
});
|
|
77
83
|
module.exports = __toCommonJS(common_exports);
|
|
78
84
|
|
|
@@ -708,6 +714,12 @@ var toRecruitId = (value) => RecruitIdSchema.parse(value);
|
|
|
708
714
|
var toInvitationId = (value) => InvitationIdSchema.parse(value);
|
|
709
715
|
var toRoomId = (value) => RoomIdSchema.parse(value);
|
|
710
716
|
var toRestaurantId = (value) => RestaurantIdSchema.parse(value);
|
|
717
|
+
var toCommentId = (value) => CommentIdSchema.parse(value);
|
|
718
|
+
var toPlanId = (value) => PlanIdSchema.parse(value);
|
|
719
|
+
var toCouponId = (value) => CouponIdSchema.parse(value);
|
|
720
|
+
var toSubscriptionId = (value) => SubscriptionIdSchema.parse(value);
|
|
721
|
+
var toFriendRequestId = (value) => FriendRequestIdSchema.parse(value);
|
|
722
|
+
var toReferralCode = (value) => ReferralCodeSchema.parse(value);
|
|
711
723
|
// Annotate the CommonJS export names for ESM import in node:
|
|
712
724
|
0 && (module.exports = {
|
|
713
725
|
ApiFailureSchema,
|
|
@@ -748,9 +760,15 @@ var toRestaurantId = (value) => RestaurantIdSchema.parse(value);
|
|
|
748
760
|
makeApiResponseSchema,
|
|
749
761
|
makeApiSuccessSchema,
|
|
750
762
|
toArticleId,
|
|
763
|
+
toCommentId,
|
|
764
|
+
toCouponId,
|
|
765
|
+
toFriendRequestId,
|
|
751
766
|
toInvitationId,
|
|
752
767
|
toMemberId,
|
|
768
|
+
toPlanId,
|
|
753
769
|
toRecruitId,
|
|
770
|
+
toReferralCode,
|
|
754
771
|
toRestaurantId,
|
|
755
|
-
toRoomId
|
|
772
|
+
toRoomId,
|
|
773
|
+
toSubscriptionId
|
|
756
774
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
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
|
|
2
|
+
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';
|
|
3
3
|
|
|
4
4
|
declare const apiContract: {
|
|
5
5
|
readonly auth: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
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
|
|
2
|
+
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';
|
|
3
3
|
|
|
4
4
|
declare const apiContract: {
|
|
5
5
|
readonly auth: {
|
|
@@ -12,33 +12,39 @@ import {
|
|
|
12
12
|
makeApiResponseSchema,
|
|
13
13
|
makeApiSuccessSchema,
|
|
14
14
|
toArticleId,
|
|
15
|
+
toCommentId,
|
|
16
|
+
toCouponId,
|
|
17
|
+
toFriendRequestId,
|
|
15
18
|
toInvitationId,
|
|
16
19
|
toMemberId,
|
|
20
|
+
toPlanId,
|
|
17
21
|
toRecruitId,
|
|
22
|
+
toReferralCode,
|
|
18
23
|
toRestaurantId,
|
|
19
|
-
toRoomId
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import "../../chunk-
|
|
23
|
-
import "../../chunk-
|
|
24
|
+
toRoomId,
|
|
25
|
+
toSubscriptionId
|
|
26
|
+
} from "../../chunk-JEUH3JDZ.js";
|
|
27
|
+
import "../../chunk-UJJMW7II.js";
|
|
28
|
+
import "../../chunk-W3YQYI4R.js";
|
|
29
|
+
import "../../chunk-VAWYU5JG.js";
|
|
30
|
+
import "../../chunk-M5OSCHMV.js";
|
|
24
31
|
import {
|
|
25
32
|
PageMetaSchema,
|
|
26
33
|
PageQuerySchema,
|
|
27
34
|
PageResponseSchema,
|
|
28
35
|
SortDirectionSchema
|
|
29
|
-
} from "../../chunk-
|
|
30
|
-
import "../../chunk-
|
|
31
|
-
import "../../chunk-
|
|
32
|
-
import "../../chunk-
|
|
33
|
-
import "../../chunk-5QLCZOPJ.js";
|
|
34
|
-
import "../../chunk-O56CI56W.js";
|
|
35
|
-
import "../../chunk-NJTV6DRT.js";
|
|
36
|
+
} from "../../chunk-TY4WZEIZ.js";
|
|
37
|
+
import "../../chunk-GTVEQYJW.js";
|
|
38
|
+
import "../../chunk-J76VB5SE.js";
|
|
39
|
+
import "../../chunk-U6OQQOPN.js";
|
|
36
40
|
import {
|
|
37
41
|
ISODateStringSchema,
|
|
38
42
|
ISODateTimeStringSchema,
|
|
39
43
|
TimeHHmmStringSchema
|
|
40
44
|
} from "../../chunk-HRM3FQPL.js";
|
|
41
|
-
import "../../chunk-
|
|
45
|
+
import "../../chunk-YGFAVC5N.js";
|
|
46
|
+
import "../../chunk-NJTV6DRT.js";
|
|
47
|
+
import "../../chunk-KRVEQVRC.js";
|
|
42
48
|
import {
|
|
43
49
|
ArticleIdSchema,
|
|
44
50
|
CommentIdSchema,
|
|
@@ -58,7 +64,7 @@ import {
|
|
|
58
64
|
RoomIdSchema,
|
|
59
65
|
SubscriptionIdSchema,
|
|
60
66
|
UserIdSchema
|
|
61
|
-
} from "../../chunk-
|
|
67
|
+
} from "../../chunk-H77ISYYC.js";
|
|
62
68
|
export {
|
|
63
69
|
ApiFailureSchema,
|
|
64
70
|
ApiResponseSchema,
|
|
@@ -98,9 +104,15 @@ export {
|
|
|
98
104
|
makeApiResponseSchema,
|
|
99
105
|
makeApiSuccessSchema,
|
|
100
106
|
toArticleId,
|
|
107
|
+
toCommentId,
|
|
108
|
+
toCouponId,
|
|
109
|
+
toFriendRequestId,
|
|
101
110
|
toInvitationId,
|
|
102
111
|
toMemberId,
|
|
112
|
+
toPlanId,
|
|
103
113
|
toRecruitId,
|
|
114
|
+
toReferralCode,
|
|
104
115
|
toRestaurantId,
|
|
105
|
-
toRoomId
|
|
116
|
+
toRoomId,
|
|
117
|
+
toSubscriptionId
|
|
106
118
|
};
|
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
FriendRequestItemResponseSchema,
|
|
5
5
|
FriendRequestMemberSchema,
|
|
6
6
|
FriendRequestStatusSchema
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-U6OQQOPN.js";
|
|
8
8
|
import "../../chunk-HRM3FQPL.js";
|
|
9
|
-
import "../../chunk-
|
|
10
|
-
import "../../chunk-
|
|
9
|
+
import "../../chunk-KRVEQVRC.js";
|
|
10
|
+
import "../../chunk-H77ISYYC.js";
|
|
11
11
|
export {
|
|
12
12
|
FriendBlockItemResponseSchema,
|
|
13
13
|
FriendListItemResponseSchema,
|
package/dist/domain/index.cjs
CHANGED
|
@@ -163,11 +163,17 @@ __export(domain_exports, {
|
|
|
163
163
|
makeApiResponseSchema: () => makeApiResponseSchema,
|
|
164
164
|
makeApiSuccessSchema: () => makeApiSuccessSchema,
|
|
165
165
|
toArticleId: () => toArticleId,
|
|
166
|
+
toCommentId: () => toCommentId,
|
|
167
|
+
toCouponId: () => toCouponId,
|
|
168
|
+
toFriendRequestId: () => toFriendRequestId,
|
|
166
169
|
toInvitationId: () => toInvitationId,
|
|
167
170
|
toMemberId: () => toMemberId,
|
|
171
|
+
toPlanId: () => toPlanId,
|
|
168
172
|
toRecruitId: () => toRecruitId,
|
|
173
|
+
toReferralCode: () => toReferralCode,
|
|
169
174
|
toRestaurantId: () => toRestaurantId,
|
|
170
|
-
toRoomId: () => toRoomId
|
|
175
|
+
toRoomId: () => toRoomId,
|
|
176
|
+
toSubscriptionId: () => toSubscriptionId
|
|
171
177
|
});
|
|
172
178
|
module.exports = __toCommonJS(domain_exports);
|
|
173
179
|
|
|
@@ -831,6 +837,12 @@ var toRecruitId = (value) => RecruitIdSchema.parse(value);
|
|
|
831
837
|
var toInvitationId = (value) => InvitationIdSchema.parse(value);
|
|
832
838
|
var toRoomId = (value) => RoomIdSchema.parse(value);
|
|
833
839
|
var toRestaurantId = (value) => RestaurantIdSchema.parse(value);
|
|
840
|
+
var toCommentId = (value) => CommentIdSchema.parse(value);
|
|
841
|
+
var toPlanId = (value) => PlanIdSchema.parse(value);
|
|
842
|
+
var toCouponId = (value) => CouponIdSchema.parse(value);
|
|
843
|
+
var toSubscriptionId = (value) => SubscriptionIdSchema.parse(value);
|
|
844
|
+
var toFriendRequestId = (value) => FriendRequestIdSchema.parse(value);
|
|
845
|
+
var toReferralCode = (value) => ReferralCodeSchema.parse(value);
|
|
834
846
|
// Annotate the CommonJS export names for ESM import in node:
|
|
835
847
|
0 && (module.exports = {
|
|
836
848
|
AcceptInvitationResponseSchema,
|
|
@@ -966,9 +978,15 @@ var toRestaurantId = (value) => RestaurantIdSchema.parse(value);
|
|
|
966
978
|
makeApiResponseSchema,
|
|
967
979
|
makeApiSuccessSchema,
|
|
968
980
|
toArticleId,
|
|
981
|
+
toCommentId,
|
|
982
|
+
toCouponId,
|
|
983
|
+
toFriendRequestId,
|
|
969
984
|
toInvitationId,
|
|
970
985
|
toMemberId,
|
|
986
|
+
toPlanId,
|
|
971
987
|
toRecruitId,
|
|
988
|
+
toReferralCode,
|
|
972
989
|
toRestaurantId,
|
|
973
|
-
toRoomId
|
|
990
|
+
toRoomId,
|
|
991
|
+
toSubscriptionId
|
|
974
992
|
});
|