@kimdaegyu/babmukdang-shared 1.0.7 → 1.1.1

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 (78) hide show
  1. package/dist/chunk-4XAGRJUM.js +61 -0
  2. package/dist/chunk-5QLCZOPJ.js +34 -0
  3. package/dist/chunk-AATETFLU.js +312 -0
  4. package/dist/chunk-ADIREWTX.js +72 -0
  5. package/dist/chunk-ET2Z5ZYA.js +37 -0
  6. package/dist/chunk-HRM3FQPL.js +12 -0
  7. package/dist/chunk-JNJRBUKR.js +30 -0
  8. package/dist/chunk-M7HH7FMO.js +40 -0
  9. package/dist/chunk-NAPCX4Q6.js +183 -0
  10. package/dist/chunk-NCVWB52E.js +0 -0
  11. package/dist/chunk-NJTV6DRT.js +0 -0
  12. package/dist/chunk-O56CI56W.js +37 -0
  13. package/dist/chunk-PFSZSKD5.js +0 -0
  14. package/dist/chunk-RHQHBUO4.js +78 -0
  15. package/dist/chunk-XTBVYY5B.js +286 -0
  16. package/dist/chunk-XWTMYXPO.js +109 -0
  17. package/dist/chunk-YJ7RUOEJ.js +35 -0
  18. package/dist/domain/article/index.cjs +243 -0
  19. package/dist/domain/article/index.d.cts +952 -0
  20. package/dist/domain/article/index.d.ts +952 -0
  21. package/dist/domain/article/index.js +30 -0
  22. package/dist/domain/auth/index.cjs +141 -0
  23. package/dist/domain/auth/index.d.cts +72 -0
  24. package/dist/domain/auth/index.d.ts +72 -0
  25. package/dist/domain/auth/index.js +14 -0
  26. package/dist/domain/common/index.cjs +756 -0
  27. package/dist/domain/common/index.d.cts +2689 -0
  28. package/dist/domain/common/index.d.ts +2689 -0
  29. package/dist/domain/common/index.js +106 -0
  30. package/dist/domain/friend/index.cjs +148 -0
  31. package/dist/domain/friend/index.d.cts +117 -0
  32. package/dist/domain/friend/index.d.ts +117 -0
  33. package/dist/domain/friend/index.js +17 -0
  34. package/dist/domain/index.cjs +974 -0
  35. package/dist/domain/index.d.cts +14 -0
  36. package/dist/domain/index.d.ts +14 -0
  37. package/dist/domain/index.js +308 -0
  38. package/dist/domain/invitation/index.cjs +82 -0
  39. package/dist/domain/invitation/index.d.cts +64 -0
  40. package/dist/domain/invitation/index.d.ts +64 -0
  41. package/dist/domain/invitation/index.js +13 -0
  42. package/dist/domain/meal/index.cjs +154 -0
  43. package/dist/domain/meal/index.d.cts +66 -0
  44. package/dist/domain/meal/index.d.ts +66 -0
  45. package/dist/domain/meal/index.js +20 -0
  46. package/dist/domain/member/index.cjs +136 -0
  47. package/dist/domain/member/index.d.cts +332 -0
  48. package/dist/domain/member/index.d.ts +332 -0
  49. package/dist/domain/member/index.js +30 -0
  50. package/dist/domain/plan/index.cjs +278 -0
  51. package/dist/domain/plan/index.d.cts +178 -0
  52. package/dist/domain/plan/index.d.ts +178 -0
  53. package/dist/domain/plan/index.js +18 -0
  54. package/dist/domain/promotion/index.cjs +134 -0
  55. package/dist/domain/promotion/index.d.cts +114 -0
  56. package/dist/domain/promotion/index.d.ts +114 -0
  57. package/dist/domain/promotion/index.js +24 -0
  58. package/dist/domain/recruit/index.cjs +181 -0
  59. package/dist/domain/recruit/index.d.cts +130 -0
  60. package/dist/domain/recruit/index.d.ts +130 -0
  61. package/dist/domain/recruit/index.js +29 -0
  62. package/dist/domain/restaurant/index.cjs +85 -0
  63. package/dist/domain/restaurant/index.d.cts +82 -0
  64. package/dist/domain/restaurant/index.d.ts +82 -0
  65. package/dist/domain/restaurant/index.js +10 -0
  66. package/dist/domain/room/index.cjs +344 -0
  67. package/dist/domain/room/index.d.cts +1482 -0
  68. package/dist/domain/room/index.d.ts +1482 -0
  69. package/dist/domain/room/index.js +74 -0
  70. package/dist/id-_a-oManb.d.cts +58 -0
  71. package/dist/id-_a-oManb.d.ts +58 -0
  72. package/dist/index-CqcSqpDV.d.ts +286 -0
  73. package/dist/index-HEHaDbrV.d.cts +286 -0
  74. package/dist/index.cjs +825 -21
  75. package/dist/index.d.cts +108 -616
  76. package/dist/index.d.ts +108 -616
  77. package/dist/index.js +33 -36
  78. package/package.json +55 -39
@@ -0,0 +1,952 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const ArticleSortBySchema: z.ZodEnum<["createdAt", "likeCount", "commentCount"]>;
4
+ declare const ArticleListQuerySchema: z.ZodObject<{
5
+ page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
6
+ size: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
7
+ } & {
8
+ sortBy: z.ZodDefault<z.ZodOptional<z.ZodEnum<["createdAt", "likeCount", "commentCount"]>>>;
9
+ direction: z.ZodDefault<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
10
+ }, "strip", z.ZodTypeAny, {
11
+ page: number;
12
+ size: number;
13
+ sortBy: "createdAt" | "likeCount" | "commentCount";
14
+ direction: "asc" | "desc";
15
+ }, {
16
+ page?: number | undefined;
17
+ size?: number | undefined;
18
+ sortBy?: "createdAt" | "likeCount" | "commentCount" | undefined;
19
+ direction?: "asc" | "desc" | undefined;
20
+ }>;
21
+ declare const PresignArticleResponseSchema: z.ZodObject<{
22
+ key: z.ZodString;
23
+ putUrl: z.ZodString;
24
+ cdnUrl: z.ZodString;
25
+ }, "strip", z.ZodTypeAny, {
26
+ key: string;
27
+ putUrl: string;
28
+ cdnUrl: string;
29
+ }, {
30
+ key: string;
31
+ putUrl: string;
32
+ cdnUrl: string;
33
+ }>;
34
+ declare const FoodAnalysisResultSchema: z.ZodObject<{
35
+ code: z.ZodBranded<z.ZodString, "FoodCode">;
36
+ label: z.ZodBranded<z.ZodString, "FoodLabel">;
37
+ } & {
38
+ confidence: z.ZodNumber;
39
+ tsUtc: z.ZodOptional<z.ZodString>;
40
+ }, "strip", z.ZodTypeAny, {
41
+ code: string & z.BRAND<"FoodCode">;
42
+ label: string & z.BRAND<"FoodLabel">;
43
+ confidence: number;
44
+ tsUtc?: string | undefined;
45
+ }, {
46
+ code: string;
47
+ label: string;
48
+ confidence: number;
49
+ tsUtc?: string | undefined;
50
+ }>;
51
+ declare const CreateArticleRequestSchema: z.ZodObject<{
52
+ imageUrl: z.ZodString;
53
+ mealDate: z.ZodString;
54
+ restaurant: z.ZodObject<{
55
+ restaurantId: z.ZodBranded<z.ZodString, "RestaurantId">;
56
+ placeName: z.ZodString;
57
+ categoryName: z.ZodString;
58
+ categoryGroupName: z.ZodString;
59
+ distance: z.ZodOptional<z.ZodString>;
60
+ roadAddressName: z.ZodString;
61
+ addressName: z.ZodString;
62
+ phone: z.ZodNullable<z.ZodString>;
63
+ placeUrl: z.ZodNullable<z.ZodString>;
64
+ lat: z.ZodNumber;
65
+ lng: z.ZodNumber;
66
+ }, "strip", z.ZodTypeAny, {
67
+ restaurantId: string & z.BRAND<"RestaurantId">;
68
+ placeName: string;
69
+ categoryName: string;
70
+ categoryGroupName: string;
71
+ roadAddressName: string;
72
+ addressName: string;
73
+ phone: string | null;
74
+ placeUrl: string | null;
75
+ lat: number;
76
+ lng: number;
77
+ distance?: string | undefined;
78
+ }, {
79
+ restaurantId: string;
80
+ placeName: string;
81
+ categoryName: string;
82
+ categoryGroupName: string;
83
+ roadAddressName: string;
84
+ addressName: string;
85
+ phone: string | null;
86
+ placeUrl: string | null;
87
+ lat: number;
88
+ lng: number;
89
+ distance?: string | undefined;
90
+ }>;
91
+ taggedMemberIds: z.ZodDefault<z.ZodArray<z.ZodBranded<z.ZodNumber, "MemberId">, "many">>;
92
+ foodAnalysis: z.ZodOptional<z.ZodObject<{
93
+ code: z.ZodBranded<z.ZodString, "FoodCode">;
94
+ label: z.ZodBranded<z.ZodString, "FoodLabel">;
95
+ } & {
96
+ confidence: z.ZodNumber;
97
+ tsUtc: z.ZodOptional<z.ZodString>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ code: string & z.BRAND<"FoodCode">;
100
+ label: string & z.BRAND<"FoodLabel">;
101
+ confidence: number;
102
+ tsUtc?: string | undefined;
103
+ }, {
104
+ code: string;
105
+ label: string;
106
+ confidence: number;
107
+ tsUtc?: string | undefined;
108
+ }>>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ imageUrl: string;
111
+ mealDate: string;
112
+ restaurant: {
113
+ restaurantId: string & z.BRAND<"RestaurantId">;
114
+ placeName: string;
115
+ categoryName: string;
116
+ categoryGroupName: string;
117
+ roadAddressName: string;
118
+ addressName: string;
119
+ phone: string | null;
120
+ placeUrl: string | null;
121
+ lat: number;
122
+ lng: number;
123
+ distance?: string | undefined;
124
+ };
125
+ taggedMemberIds: (number & z.BRAND<"MemberId">)[];
126
+ foodAnalysis?: {
127
+ code: string & z.BRAND<"FoodCode">;
128
+ label: string & z.BRAND<"FoodLabel">;
129
+ confidence: number;
130
+ tsUtc?: string | undefined;
131
+ } | undefined;
132
+ }, {
133
+ imageUrl: string;
134
+ mealDate: string;
135
+ restaurant: {
136
+ restaurantId: string;
137
+ placeName: string;
138
+ categoryName: string;
139
+ categoryGroupName: string;
140
+ roadAddressName: string;
141
+ addressName: string;
142
+ phone: string | null;
143
+ placeUrl: string | null;
144
+ lat: number;
145
+ lng: number;
146
+ distance?: string | undefined;
147
+ };
148
+ taggedMemberIds?: number[] | undefined;
149
+ foodAnalysis?: {
150
+ code: string;
151
+ label: string;
152
+ confidence: number;
153
+ tsUtc?: string | undefined;
154
+ } | undefined;
155
+ }>;
156
+ declare const CreateCommentRequestSchema: z.ZodObject<{
157
+ content: z.ZodString;
158
+ parentCommentId: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodNumber, "CommentId">>>;
159
+ }, "strip", z.ZodTypeAny, {
160
+ content: string;
161
+ parentCommentId?: (number & z.BRAND<"CommentId">) | null | undefined;
162
+ }, {
163
+ content: string;
164
+ parentCommentId?: number | null | undefined;
165
+ }>;
166
+ declare const ArticleCommentSchema: z.ZodObject<{
167
+ commentId: z.ZodBranded<z.ZodNumber, "CommentId">;
168
+ author: z.ZodObject<{
169
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
170
+ username: z.ZodString;
171
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
172
+ }, "strip", z.ZodTypeAny, {
173
+ memberId: number & z.BRAND<"MemberId">;
174
+ username: string;
175
+ profileImageUrl?: string | null | undefined;
176
+ }, {
177
+ memberId: number;
178
+ username: string;
179
+ profileImageUrl?: string | null | undefined;
180
+ }>;
181
+ parentCommentId: z.ZodNullable<z.ZodBranded<z.ZodNumber, "CommentId">>;
182
+ content: z.ZodString;
183
+ createdAt: z.ZodString;
184
+ updatedAt: z.ZodString;
185
+ }, "strip", z.ZodTypeAny, {
186
+ createdAt: string;
187
+ content: string;
188
+ parentCommentId: (number & z.BRAND<"CommentId">) | null;
189
+ commentId: number & z.BRAND<"CommentId">;
190
+ author: {
191
+ memberId: number & z.BRAND<"MemberId">;
192
+ username: string;
193
+ profileImageUrl?: string | null | undefined;
194
+ };
195
+ updatedAt: string;
196
+ }, {
197
+ createdAt: string;
198
+ content: string;
199
+ parentCommentId: number | null;
200
+ commentId: number;
201
+ author: {
202
+ memberId: number;
203
+ username: string;
204
+ profileImageUrl?: string | null | undefined;
205
+ };
206
+ updatedAt: string;
207
+ }>;
208
+ declare const ArticleCoreSchema: z.ZodObject<{
209
+ articleId: z.ZodBranded<z.ZodNumber, "ArticleId">;
210
+ author: z.ZodObject<{
211
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
212
+ username: z.ZodString;
213
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
214
+ }, "strip", z.ZodTypeAny, {
215
+ memberId: number & z.BRAND<"MemberId">;
216
+ username: string;
217
+ profileImageUrl?: string | null | undefined;
218
+ }, {
219
+ memberId: number;
220
+ username: string;
221
+ profileImageUrl?: string | null | undefined;
222
+ }>;
223
+ imageUrl: z.ZodString;
224
+ mealDate: z.ZodString;
225
+ restaurant: z.ZodObject<{
226
+ restaurantId: z.ZodBranded<z.ZodString, "RestaurantId">;
227
+ placeName: z.ZodString;
228
+ categoryName: z.ZodString;
229
+ categoryGroupName: z.ZodString;
230
+ distance: z.ZodOptional<z.ZodString>;
231
+ roadAddressName: z.ZodString;
232
+ addressName: z.ZodString;
233
+ phone: z.ZodNullable<z.ZodString>;
234
+ placeUrl: z.ZodNullable<z.ZodString>;
235
+ lat: z.ZodNumber;
236
+ lng: z.ZodNumber;
237
+ }, "strip", z.ZodTypeAny, {
238
+ restaurantId: string & z.BRAND<"RestaurantId">;
239
+ placeName: string;
240
+ categoryName: string;
241
+ categoryGroupName: string;
242
+ roadAddressName: string;
243
+ addressName: string;
244
+ phone: string | null;
245
+ placeUrl: string | null;
246
+ lat: number;
247
+ lng: number;
248
+ distance?: string | undefined;
249
+ }, {
250
+ restaurantId: string;
251
+ placeName: string;
252
+ categoryName: string;
253
+ categoryGroupName: string;
254
+ roadAddressName: string;
255
+ addressName: string;
256
+ phone: string | null;
257
+ placeUrl: string | null;
258
+ lat: number;
259
+ lng: number;
260
+ distance?: string | undefined;
261
+ }>;
262
+ createdAt: z.ZodString;
263
+ updatedAt: z.ZodString;
264
+ expiresAt: z.ZodString;
265
+ taggedMembers: z.ZodArray<z.ZodObject<{
266
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
267
+ username: z.ZodString;
268
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
269
+ }, "strip", z.ZodTypeAny, {
270
+ memberId: number & z.BRAND<"MemberId">;
271
+ username: string;
272
+ profileImageUrl?: string | null | undefined;
273
+ }, {
274
+ memberId: number;
275
+ username: string;
276
+ profileImageUrl?: string | null | undefined;
277
+ }>, "many">;
278
+ }, "strip", z.ZodTypeAny, {
279
+ createdAt: string;
280
+ imageUrl: string;
281
+ mealDate: string;
282
+ restaurant: {
283
+ restaurantId: string & z.BRAND<"RestaurantId">;
284
+ placeName: string;
285
+ categoryName: string;
286
+ categoryGroupName: string;
287
+ roadAddressName: string;
288
+ addressName: string;
289
+ phone: string | null;
290
+ placeUrl: string | null;
291
+ lat: number;
292
+ lng: number;
293
+ distance?: string | undefined;
294
+ };
295
+ author: {
296
+ memberId: number & z.BRAND<"MemberId">;
297
+ username: string;
298
+ profileImageUrl?: string | null | undefined;
299
+ };
300
+ updatedAt: string;
301
+ articleId: number & z.BRAND<"ArticleId">;
302
+ expiresAt: string;
303
+ taggedMembers: {
304
+ memberId: number & z.BRAND<"MemberId">;
305
+ username: string;
306
+ profileImageUrl?: string | null | undefined;
307
+ }[];
308
+ }, {
309
+ createdAt: string;
310
+ imageUrl: string;
311
+ mealDate: string;
312
+ restaurant: {
313
+ restaurantId: string;
314
+ placeName: string;
315
+ categoryName: string;
316
+ categoryGroupName: string;
317
+ roadAddressName: string;
318
+ addressName: string;
319
+ phone: string | null;
320
+ placeUrl: string | null;
321
+ lat: number;
322
+ lng: number;
323
+ distance?: string | undefined;
324
+ };
325
+ author: {
326
+ memberId: number;
327
+ username: string;
328
+ profileImageUrl?: string | null | undefined;
329
+ };
330
+ updatedAt: string;
331
+ articleId: number;
332
+ expiresAt: string;
333
+ taggedMembers: {
334
+ memberId: number;
335
+ username: string;
336
+ profileImageUrl?: string | null | undefined;
337
+ }[];
338
+ }>;
339
+ declare const ArticleSummaryResponseSchema: z.ZodObject<{
340
+ articleId: z.ZodBranded<z.ZodNumber, "ArticleId">;
341
+ author: z.ZodObject<{
342
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
343
+ username: z.ZodString;
344
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
345
+ }, "strip", z.ZodTypeAny, {
346
+ memberId: number & z.BRAND<"MemberId">;
347
+ username: string;
348
+ profileImageUrl?: string | null | undefined;
349
+ }, {
350
+ memberId: number;
351
+ username: string;
352
+ profileImageUrl?: string | null | undefined;
353
+ }>;
354
+ imageUrl: z.ZodString;
355
+ mealDate: z.ZodString;
356
+ restaurant: z.ZodObject<{
357
+ restaurantId: z.ZodBranded<z.ZodString, "RestaurantId">;
358
+ placeName: z.ZodString;
359
+ categoryName: z.ZodString;
360
+ categoryGroupName: z.ZodString;
361
+ distance: z.ZodOptional<z.ZodString>;
362
+ roadAddressName: z.ZodString;
363
+ addressName: z.ZodString;
364
+ phone: z.ZodNullable<z.ZodString>;
365
+ placeUrl: z.ZodNullable<z.ZodString>;
366
+ lat: z.ZodNumber;
367
+ lng: z.ZodNumber;
368
+ }, "strip", z.ZodTypeAny, {
369
+ restaurantId: string & z.BRAND<"RestaurantId">;
370
+ placeName: string;
371
+ categoryName: string;
372
+ categoryGroupName: string;
373
+ roadAddressName: string;
374
+ addressName: string;
375
+ phone: string | null;
376
+ placeUrl: string | null;
377
+ lat: number;
378
+ lng: number;
379
+ distance?: string | undefined;
380
+ }, {
381
+ restaurantId: string;
382
+ placeName: string;
383
+ categoryName: string;
384
+ categoryGroupName: string;
385
+ roadAddressName: string;
386
+ addressName: string;
387
+ phone: string | null;
388
+ placeUrl: string | null;
389
+ lat: number;
390
+ lng: number;
391
+ distance?: string | undefined;
392
+ }>;
393
+ createdAt: z.ZodString;
394
+ updatedAt: z.ZodString;
395
+ expiresAt: z.ZodString;
396
+ taggedMembers: z.ZodArray<z.ZodObject<{
397
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
398
+ username: z.ZodString;
399
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
400
+ }, "strip", z.ZodTypeAny, {
401
+ memberId: number & z.BRAND<"MemberId">;
402
+ username: string;
403
+ profileImageUrl?: string | null | undefined;
404
+ }, {
405
+ memberId: number;
406
+ username: string;
407
+ profileImageUrl?: string | null | undefined;
408
+ }>, "many">;
409
+ } & {
410
+ likeCount: z.ZodNumber;
411
+ commentCount: z.ZodNumber;
412
+ likedByMe: z.ZodBoolean;
413
+ }, "strip", z.ZodTypeAny, {
414
+ createdAt: string;
415
+ likeCount: number;
416
+ commentCount: number;
417
+ imageUrl: string;
418
+ mealDate: string;
419
+ restaurant: {
420
+ restaurantId: string & z.BRAND<"RestaurantId">;
421
+ placeName: string;
422
+ categoryName: string;
423
+ categoryGroupName: string;
424
+ roadAddressName: string;
425
+ addressName: string;
426
+ phone: string | null;
427
+ placeUrl: string | null;
428
+ lat: number;
429
+ lng: number;
430
+ distance?: string | undefined;
431
+ };
432
+ author: {
433
+ memberId: number & z.BRAND<"MemberId">;
434
+ username: string;
435
+ profileImageUrl?: string | null | undefined;
436
+ };
437
+ updatedAt: string;
438
+ articleId: number & z.BRAND<"ArticleId">;
439
+ expiresAt: string;
440
+ taggedMembers: {
441
+ memberId: number & z.BRAND<"MemberId">;
442
+ username: string;
443
+ profileImageUrl?: string | null | undefined;
444
+ }[];
445
+ likedByMe: boolean;
446
+ }, {
447
+ createdAt: string;
448
+ likeCount: number;
449
+ commentCount: number;
450
+ imageUrl: string;
451
+ mealDate: string;
452
+ restaurant: {
453
+ restaurantId: string;
454
+ placeName: string;
455
+ categoryName: string;
456
+ categoryGroupName: string;
457
+ roadAddressName: string;
458
+ addressName: string;
459
+ phone: string | null;
460
+ placeUrl: string | null;
461
+ lat: number;
462
+ lng: number;
463
+ distance?: string | undefined;
464
+ };
465
+ author: {
466
+ memberId: number;
467
+ username: string;
468
+ profileImageUrl?: string | null | undefined;
469
+ };
470
+ updatedAt: string;
471
+ articleId: number;
472
+ expiresAt: string;
473
+ taggedMembers: {
474
+ memberId: number;
475
+ username: string;
476
+ profileImageUrl?: string | null | undefined;
477
+ }[];
478
+ likedByMe: boolean;
479
+ }>;
480
+ declare const ArticleDetailResponseSchema: z.ZodObject<{
481
+ articleId: z.ZodBranded<z.ZodNumber, "ArticleId">;
482
+ author: z.ZodObject<{
483
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
484
+ username: z.ZodString;
485
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
486
+ }, "strip", z.ZodTypeAny, {
487
+ memberId: number & z.BRAND<"MemberId">;
488
+ username: string;
489
+ profileImageUrl?: string | null | undefined;
490
+ }, {
491
+ memberId: number;
492
+ username: string;
493
+ profileImageUrl?: string | null | undefined;
494
+ }>;
495
+ imageUrl: z.ZodString;
496
+ mealDate: z.ZodString;
497
+ restaurant: z.ZodObject<{
498
+ restaurantId: z.ZodBranded<z.ZodString, "RestaurantId">;
499
+ placeName: z.ZodString;
500
+ categoryName: z.ZodString;
501
+ categoryGroupName: z.ZodString;
502
+ distance: z.ZodOptional<z.ZodString>;
503
+ roadAddressName: z.ZodString;
504
+ addressName: z.ZodString;
505
+ phone: z.ZodNullable<z.ZodString>;
506
+ placeUrl: z.ZodNullable<z.ZodString>;
507
+ lat: z.ZodNumber;
508
+ lng: z.ZodNumber;
509
+ }, "strip", z.ZodTypeAny, {
510
+ restaurantId: string & z.BRAND<"RestaurantId">;
511
+ placeName: string;
512
+ categoryName: string;
513
+ categoryGroupName: string;
514
+ roadAddressName: string;
515
+ addressName: string;
516
+ phone: string | null;
517
+ placeUrl: string | null;
518
+ lat: number;
519
+ lng: number;
520
+ distance?: string | undefined;
521
+ }, {
522
+ restaurantId: string;
523
+ placeName: string;
524
+ categoryName: string;
525
+ categoryGroupName: string;
526
+ roadAddressName: string;
527
+ addressName: string;
528
+ phone: string | null;
529
+ placeUrl: string | null;
530
+ lat: number;
531
+ lng: number;
532
+ distance?: string | undefined;
533
+ }>;
534
+ createdAt: z.ZodString;
535
+ updatedAt: z.ZodString;
536
+ expiresAt: z.ZodString;
537
+ taggedMembers: z.ZodArray<z.ZodObject<{
538
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
539
+ username: z.ZodString;
540
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
541
+ }, "strip", z.ZodTypeAny, {
542
+ memberId: number & z.BRAND<"MemberId">;
543
+ username: string;
544
+ profileImageUrl?: string | null | undefined;
545
+ }, {
546
+ memberId: number;
547
+ username: string;
548
+ profileImageUrl?: string | null | undefined;
549
+ }>, "many">;
550
+ } & {
551
+ likeCount: z.ZodNumber;
552
+ commentCount: z.ZodNumber;
553
+ likedByMe: z.ZodBoolean;
554
+ } & {
555
+ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
556
+ commentId: z.ZodBranded<z.ZodNumber, "CommentId">;
557
+ author: z.ZodObject<{
558
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
559
+ username: z.ZodString;
560
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
561
+ }, "strip", z.ZodTypeAny, {
562
+ memberId: number & z.BRAND<"MemberId">;
563
+ username: string;
564
+ profileImageUrl?: string | null | undefined;
565
+ }, {
566
+ memberId: number;
567
+ username: string;
568
+ profileImageUrl?: string | null | undefined;
569
+ }>;
570
+ parentCommentId: z.ZodNullable<z.ZodBranded<z.ZodNumber, "CommentId">>;
571
+ content: z.ZodString;
572
+ createdAt: z.ZodString;
573
+ updatedAt: z.ZodString;
574
+ }, "strip", z.ZodTypeAny, {
575
+ createdAt: string;
576
+ content: string;
577
+ parentCommentId: (number & z.BRAND<"CommentId">) | null;
578
+ commentId: number & z.BRAND<"CommentId">;
579
+ author: {
580
+ memberId: number & z.BRAND<"MemberId">;
581
+ username: string;
582
+ profileImageUrl?: string | null | undefined;
583
+ };
584
+ updatedAt: string;
585
+ }, {
586
+ createdAt: string;
587
+ content: string;
588
+ parentCommentId: number | null;
589
+ commentId: number;
590
+ author: {
591
+ memberId: number;
592
+ username: string;
593
+ profileImageUrl?: string | null | undefined;
594
+ };
595
+ updatedAt: string;
596
+ }>, "many">>;
597
+ }, "strip", z.ZodTypeAny, {
598
+ createdAt: string;
599
+ likeCount: number;
600
+ commentCount: number;
601
+ imageUrl: string;
602
+ mealDate: string;
603
+ restaurant: {
604
+ restaurantId: string & z.BRAND<"RestaurantId">;
605
+ placeName: string;
606
+ categoryName: string;
607
+ categoryGroupName: string;
608
+ roadAddressName: string;
609
+ addressName: string;
610
+ phone: string | null;
611
+ placeUrl: string | null;
612
+ lat: number;
613
+ lng: number;
614
+ distance?: string | undefined;
615
+ };
616
+ author: {
617
+ memberId: number & z.BRAND<"MemberId">;
618
+ username: string;
619
+ profileImageUrl?: string | null | undefined;
620
+ };
621
+ updatedAt: string;
622
+ articleId: number & z.BRAND<"ArticleId">;
623
+ expiresAt: string;
624
+ taggedMembers: {
625
+ memberId: number & z.BRAND<"MemberId">;
626
+ username: string;
627
+ profileImageUrl?: string | null | undefined;
628
+ }[];
629
+ likedByMe: boolean;
630
+ comments?: {
631
+ createdAt: string;
632
+ content: string;
633
+ parentCommentId: (number & z.BRAND<"CommentId">) | null;
634
+ commentId: number & z.BRAND<"CommentId">;
635
+ author: {
636
+ memberId: number & z.BRAND<"MemberId">;
637
+ username: string;
638
+ profileImageUrl?: string | null | undefined;
639
+ };
640
+ updatedAt: string;
641
+ }[] | undefined;
642
+ }, {
643
+ createdAt: string;
644
+ likeCount: number;
645
+ commentCount: number;
646
+ imageUrl: string;
647
+ mealDate: string;
648
+ restaurant: {
649
+ restaurantId: string;
650
+ placeName: string;
651
+ categoryName: string;
652
+ categoryGroupName: string;
653
+ roadAddressName: string;
654
+ addressName: string;
655
+ phone: string | null;
656
+ placeUrl: string | null;
657
+ lat: number;
658
+ lng: number;
659
+ distance?: string | undefined;
660
+ };
661
+ author: {
662
+ memberId: number;
663
+ username: string;
664
+ profileImageUrl?: string | null | undefined;
665
+ };
666
+ updatedAt: string;
667
+ articleId: number;
668
+ expiresAt: string;
669
+ taggedMembers: {
670
+ memberId: number;
671
+ username: string;
672
+ profileImageUrl?: string | null | undefined;
673
+ }[];
674
+ likedByMe: boolean;
675
+ comments?: {
676
+ createdAt: string;
677
+ content: string;
678
+ parentCommentId: number | null;
679
+ commentId: number;
680
+ author: {
681
+ memberId: number;
682
+ username: string;
683
+ profileImageUrl?: string | null | undefined;
684
+ };
685
+ updatedAt: string;
686
+ }[] | undefined;
687
+ }>;
688
+ declare const PageArticleSummaryResponseSchema: z.ZodObject<{
689
+ items: z.ZodArray<z.ZodObject<{
690
+ articleId: z.ZodBranded<z.ZodNumber, "ArticleId">;
691
+ author: z.ZodObject<{
692
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
693
+ username: z.ZodString;
694
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
695
+ }, "strip", z.ZodTypeAny, {
696
+ memberId: number & z.BRAND<"MemberId">;
697
+ username: string;
698
+ profileImageUrl?: string | null | undefined;
699
+ }, {
700
+ memberId: number;
701
+ username: string;
702
+ profileImageUrl?: string | null | undefined;
703
+ }>;
704
+ imageUrl: z.ZodString;
705
+ mealDate: z.ZodString;
706
+ restaurant: z.ZodObject<{
707
+ restaurantId: z.ZodBranded<z.ZodString, "RestaurantId">;
708
+ placeName: z.ZodString;
709
+ categoryName: z.ZodString;
710
+ categoryGroupName: z.ZodString;
711
+ distance: z.ZodOptional<z.ZodString>;
712
+ roadAddressName: z.ZodString;
713
+ addressName: z.ZodString;
714
+ phone: z.ZodNullable<z.ZodString>;
715
+ placeUrl: z.ZodNullable<z.ZodString>;
716
+ lat: z.ZodNumber;
717
+ lng: z.ZodNumber;
718
+ }, "strip", z.ZodTypeAny, {
719
+ restaurantId: string & z.BRAND<"RestaurantId">;
720
+ placeName: string;
721
+ categoryName: string;
722
+ categoryGroupName: string;
723
+ roadAddressName: string;
724
+ addressName: string;
725
+ phone: string | null;
726
+ placeUrl: string | null;
727
+ lat: number;
728
+ lng: number;
729
+ distance?: string | undefined;
730
+ }, {
731
+ restaurantId: string;
732
+ placeName: string;
733
+ categoryName: string;
734
+ categoryGroupName: string;
735
+ roadAddressName: string;
736
+ addressName: string;
737
+ phone: string | null;
738
+ placeUrl: string | null;
739
+ lat: number;
740
+ lng: number;
741
+ distance?: string | undefined;
742
+ }>;
743
+ createdAt: z.ZodString;
744
+ updatedAt: z.ZodString;
745
+ expiresAt: z.ZodString;
746
+ taggedMembers: z.ZodArray<z.ZodObject<{
747
+ memberId: z.ZodBranded<z.ZodNumber, "MemberId">;
748
+ username: z.ZodString;
749
+ profileImageUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
750
+ }, "strip", z.ZodTypeAny, {
751
+ memberId: number & z.BRAND<"MemberId">;
752
+ username: string;
753
+ profileImageUrl?: string | null | undefined;
754
+ }, {
755
+ memberId: number;
756
+ username: string;
757
+ profileImageUrl?: string | null | undefined;
758
+ }>, "many">;
759
+ } & {
760
+ likeCount: z.ZodNumber;
761
+ commentCount: z.ZodNumber;
762
+ likedByMe: z.ZodBoolean;
763
+ }, "strip", z.ZodTypeAny, {
764
+ createdAt: string;
765
+ likeCount: number;
766
+ commentCount: number;
767
+ imageUrl: string;
768
+ mealDate: string;
769
+ restaurant: {
770
+ restaurantId: string & z.BRAND<"RestaurantId">;
771
+ placeName: string;
772
+ categoryName: string;
773
+ categoryGroupName: string;
774
+ roadAddressName: string;
775
+ addressName: string;
776
+ phone: string | null;
777
+ placeUrl: string | null;
778
+ lat: number;
779
+ lng: number;
780
+ distance?: string | undefined;
781
+ };
782
+ author: {
783
+ memberId: number & z.BRAND<"MemberId">;
784
+ username: string;
785
+ profileImageUrl?: string | null | undefined;
786
+ };
787
+ updatedAt: string;
788
+ articleId: number & z.BRAND<"ArticleId">;
789
+ expiresAt: string;
790
+ taggedMembers: {
791
+ memberId: number & z.BRAND<"MemberId">;
792
+ username: string;
793
+ profileImageUrl?: string | null | undefined;
794
+ }[];
795
+ likedByMe: boolean;
796
+ }, {
797
+ createdAt: string;
798
+ likeCount: number;
799
+ commentCount: number;
800
+ imageUrl: string;
801
+ mealDate: string;
802
+ restaurant: {
803
+ restaurantId: string;
804
+ placeName: string;
805
+ categoryName: string;
806
+ categoryGroupName: string;
807
+ roadAddressName: string;
808
+ addressName: string;
809
+ phone: string | null;
810
+ placeUrl: string | null;
811
+ lat: number;
812
+ lng: number;
813
+ distance?: string | undefined;
814
+ };
815
+ author: {
816
+ memberId: number;
817
+ username: string;
818
+ profileImageUrl?: string | null | undefined;
819
+ };
820
+ updatedAt: string;
821
+ articleId: number;
822
+ expiresAt: string;
823
+ taggedMembers: {
824
+ memberId: number;
825
+ username: string;
826
+ profileImageUrl?: string | null | undefined;
827
+ }[];
828
+ likedByMe: boolean;
829
+ }>, "many">;
830
+ meta: z.ZodObject<{
831
+ page: z.ZodNumber;
832
+ size: z.ZodNumber;
833
+ totalItems: z.ZodNumber;
834
+ totalPages: z.ZodNumber;
835
+ hasNext: z.ZodBoolean;
836
+ hasPrevious: z.ZodBoolean;
837
+ }, "strip", z.ZodTypeAny, {
838
+ page: number;
839
+ size: number;
840
+ totalItems: number;
841
+ totalPages: number;
842
+ hasNext: boolean;
843
+ hasPrevious: boolean;
844
+ }, {
845
+ page: number;
846
+ size: number;
847
+ totalItems: number;
848
+ totalPages: number;
849
+ hasNext: boolean;
850
+ hasPrevious: boolean;
851
+ }>;
852
+ }, "strip", z.ZodTypeAny, {
853
+ items: {
854
+ createdAt: string;
855
+ likeCount: number;
856
+ commentCount: number;
857
+ imageUrl: string;
858
+ mealDate: string;
859
+ restaurant: {
860
+ restaurantId: string & z.BRAND<"RestaurantId">;
861
+ placeName: string;
862
+ categoryName: string;
863
+ categoryGroupName: string;
864
+ roadAddressName: string;
865
+ addressName: string;
866
+ phone: string | null;
867
+ placeUrl: string | null;
868
+ lat: number;
869
+ lng: number;
870
+ distance?: string | undefined;
871
+ };
872
+ author: {
873
+ memberId: number & z.BRAND<"MemberId">;
874
+ username: string;
875
+ profileImageUrl?: string | null | undefined;
876
+ };
877
+ updatedAt: string;
878
+ articleId: number & z.BRAND<"ArticleId">;
879
+ expiresAt: string;
880
+ taggedMembers: {
881
+ memberId: number & z.BRAND<"MemberId">;
882
+ username: string;
883
+ profileImageUrl?: string | null | undefined;
884
+ }[];
885
+ likedByMe: boolean;
886
+ }[];
887
+ meta: {
888
+ page: number;
889
+ size: number;
890
+ totalItems: number;
891
+ totalPages: number;
892
+ hasNext: boolean;
893
+ hasPrevious: boolean;
894
+ };
895
+ }, {
896
+ items: {
897
+ createdAt: string;
898
+ likeCount: number;
899
+ commentCount: number;
900
+ imageUrl: string;
901
+ mealDate: string;
902
+ restaurant: {
903
+ restaurantId: string;
904
+ placeName: string;
905
+ categoryName: string;
906
+ categoryGroupName: string;
907
+ roadAddressName: string;
908
+ addressName: string;
909
+ phone: string | null;
910
+ placeUrl: string | null;
911
+ lat: number;
912
+ lng: number;
913
+ distance?: string | undefined;
914
+ };
915
+ author: {
916
+ memberId: number;
917
+ username: string;
918
+ profileImageUrl?: string | null | undefined;
919
+ };
920
+ updatedAt: string;
921
+ articleId: number;
922
+ expiresAt: string;
923
+ taggedMembers: {
924
+ memberId: number;
925
+ username: string;
926
+ profileImageUrl?: string | null | undefined;
927
+ }[];
928
+ likedByMe: boolean;
929
+ }[];
930
+ meta: {
931
+ page: number;
932
+ size: number;
933
+ totalItems: number;
934
+ totalPages: number;
935
+ hasNext: boolean;
936
+ hasPrevious: boolean;
937
+ };
938
+ }>;
939
+
940
+ type CreateArticleRequest = z.infer<typeof CreateArticleRequestSchema>;
941
+ type CreateCommentRequest = z.infer<typeof CreateCommentRequestSchema>;
942
+ type ArticleSortBy = z.infer<typeof ArticleSortBySchema>;
943
+ type ArticleListQueryRequest = z.infer<typeof ArticleListQuerySchema>;
944
+ type FoodAnalysisResult = z.infer<typeof FoodAnalysisResultSchema>;
945
+ type ArticleSummaryResponse = z.infer<typeof ArticleSummaryResponseSchema>;
946
+ type ArticleDetailResponse = z.infer<typeof ArticleDetailResponseSchema>;
947
+ type PageArticleSummaryResponse = z.infer<typeof PageArticleSummaryResponseSchema>;
948
+ type PresignArticleResponse = z.infer<typeof PresignArticleResponseSchema>;
949
+ type ArticleCore = z.infer<typeof ArticleCoreSchema>;
950
+ type ArticleComment = z.infer<typeof ArticleCommentSchema>;
951
+
952
+ export { type ArticleComment, ArticleCommentSchema, type ArticleCore, ArticleCoreSchema, type ArticleDetailResponse, ArticleDetailResponseSchema, type ArticleListQueryRequest, ArticleListQuerySchema, type ArticleSortBy, ArticleSortBySchema, type ArticleSummaryResponse, ArticleSummaryResponseSchema, type CreateArticleRequest, CreateArticleRequestSchema, type CreateCommentRequest, CreateCommentRequestSchema, type FoodAnalysisResult, FoodAnalysisResultSchema, type PageArticleSummaryResponse, PageArticleSummaryResponseSchema, type PresignArticleResponse, PresignArticleResponseSchema };