@kimdaegyu/babmukdang-shared 2.0.3 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -88,6 +88,12 @@ __export(meal_plan_exports, {
88
88
  MealPlanDecisionTaskKeySchema: () => MealPlanDecisionTaskKeySchema,
89
89
  MealPlanDecisionTaskProgressSchema: () => MealPlanDecisionTaskProgressSchema,
90
90
  MealPlanDecisionTaskStatusSchema: () => MealPlanDecisionTaskStatusSchema,
91
+ MealPlanDecisionVoteSocketAckSchema: () => MealPlanDecisionVoteSocketAckSchema,
92
+ MealPlanDecisionVoteSocketErrorSchema: () => MealPlanDecisionVoteSocketErrorSchema,
93
+ MealPlanDecisionVoteSocketEvent: () => MealPlanDecisionVoteSocketEvent,
94
+ MealPlanDecisionVoteSocketFailureAckSchema: () => MealPlanDecisionVoteSocketFailureAckSchema,
95
+ MealPlanDecisionVoteSocketPayloadSchema: () => MealPlanDecisionVoteSocketPayloadSchema,
96
+ MealPlanDecisionVoteSocketSuccessAckSchema: () => MealPlanDecisionVoteSocketSuccessAckSchema,
91
97
  MealPlanGuestParticipantSchema: () => MealPlanGuestParticipantSchema,
92
98
  MealPlanGuestSessionQuerySchema: () => MealPlanGuestSessionQuerySchema,
93
99
  MealPlanGuestSessionResponseSchema: () => MealPlanGuestSessionResponseSchema,
@@ -1162,219 +1168,244 @@ var MealPlanNotificationSchema = import_zod12.z.object({
1162
1168
  readAt: ISODateTimeStringSchema.nullable()
1163
1169
  });
1164
1170
 
1165
- // src/domain/meal-plan/meal-plan-share-link.schema.ts
1171
+ // src/domain/meal-plan/meal-plan.socket.ts
1166
1172
  var import_zod13 = require("zod");
1167
- var CreateMealPlanShareLinkRequestSchema = import_zod13.z.object({
1173
+ var MealPlanDecisionVoteSocketEvent = "mealPlan:decision:vote";
1174
+ var MealPlanDecisionVoteSocketPayloadSchema = CreateMealPlanVoteRequestSchema.extend({
1175
+ mealPlanId: MealPlanIdSchema,
1176
+ stageId: MealPlanDecisionStageIdSchema,
1177
+ guestSessionToken: import_zod13.z.string().min(1).optional()
1178
+ });
1179
+ var MealPlanDecisionVoteSocketErrorSchema = import_zod13.z.object({
1180
+ code: import_zod13.z.string().min(1),
1181
+ message: import_zod13.z.string().min(1)
1182
+ });
1183
+ var MealPlanDecisionVoteSocketSuccessAckSchema = import_zod13.z.object({
1184
+ ok: import_zod13.z.literal(true),
1185
+ mealPlan: MealPlanResponseSchema
1186
+ });
1187
+ var MealPlanDecisionVoteSocketFailureAckSchema = import_zod13.z.object({
1188
+ ok: import_zod13.z.literal(false),
1189
+ error: MealPlanDecisionVoteSocketErrorSchema
1190
+ });
1191
+ var MealPlanDecisionVoteSocketAckSchema = import_zod13.z.discriminatedUnion("ok", [
1192
+ MealPlanDecisionVoteSocketSuccessAckSchema,
1193
+ MealPlanDecisionVoteSocketFailureAckSchema
1194
+ ]);
1195
+
1196
+ // src/domain/meal-plan/meal-plan-share-link.schema.ts
1197
+ var import_zod14 = require("zod");
1198
+ var CreateMealPlanShareLinkRequestSchema = import_zod14.z.object({
1168
1199
  expiresAt: ISODateTimeStringSchema.optional(),
1169
- guestJoinEnabled: import_zod13.z.boolean().default(true)
1200
+ guestJoinEnabled: import_zod14.z.boolean().default(true)
1170
1201
  });
1171
- var MealPlanShareLinkSummarySchema = import_zod13.z.object({
1202
+ var MealPlanShareLinkSummarySchema = import_zod14.z.object({
1172
1203
  shareLinkId: MealPlanShareLinkIdSchema,
1173
1204
  mealPlanId: MealPlanIdSchema,
1174
1205
  token: MealPlanShareLinkTokenSchema,
1175
- url: import_zod13.z.string().url(),
1206
+ url: import_zod14.z.string().url(),
1176
1207
  expiresAt: ISODateTimeStringSchema,
1177
- guestJoinEnabled: import_zod13.z.boolean(),
1208
+ guestJoinEnabled: import_zod14.z.boolean(),
1178
1209
  createdAt: ISODateTimeStringSchema
1179
1210
  });
1180
- var MealPlanSharePreviewResponseSchema = import_zod13.z.object({
1211
+ var MealPlanSharePreviewResponseSchema = import_zod14.z.object({
1181
1212
  mealPlanId: MealPlanIdSchema,
1182
1213
  token: MealPlanShareLinkTokenSchema,
1183
- title: import_zod13.z.string(),
1184
- ownerName: import_zod13.z.string(),
1185
- participantCount: import_zod13.z.number().int().min(1),
1214
+ title: import_zod14.z.string(),
1215
+ ownerName: import_zod14.z.string(),
1216
+ participantCount: import_zod14.z.number().int().min(1),
1186
1217
  expiresAt: ISODateTimeStringSchema,
1187
- guestJoinEnabled: import_zod13.z.boolean()
1218
+ guestJoinEnabled: import_zod14.z.boolean()
1188
1219
  });
1189
- var JoinMealPlanGuestRequestSchema = import_zod13.z.object({
1190
- nickname: import_zod13.z.string().min(1).max(50),
1191
- password: import_zod13.z.string().min(1).max(100).optional()
1220
+ var JoinMealPlanGuestRequestSchema = import_zod14.z.object({
1221
+ nickname: import_zod14.z.string().min(1).max(50),
1222
+ password: import_zod14.z.string().min(1).max(100).optional()
1192
1223
  });
1193
- var JoinMealPlanGuestResponseSchema = import_zod13.z.object({
1224
+ var JoinMealPlanGuestResponseSchema = import_zod14.z.object({
1194
1225
  mealPlanId: MealPlanIdSchema,
1195
- guestId: import_zod13.z.string().min(1),
1196
- sessionToken: import_zod13.z.string().min(1)
1226
+ guestId: import_zod14.z.string().min(1),
1227
+ sessionToken: import_zod14.z.string().min(1)
1197
1228
  });
1198
- var MealPlanGuestSessionQuerySchema = import_zod13.z.object({
1199
- sessionToken: import_zod13.z.string().min(1)
1229
+ var MealPlanGuestSessionQuerySchema = import_zod14.z.object({
1230
+ sessionToken: import_zod14.z.string().min(1)
1200
1231
  });
1201
- var MealPlanGuestSessionResponseSchema = import_zod13.z.object({
1232
+ var MealPlanGuestSessionResponseSchema = import_zod14.z.object({
1202
1233
  mealPlan: MealPlanResponseSchema,
1203
1234
  token: MealPlanShareLinkTokenSchema,
1204
- guestId: import_zod13.z.string().min(1),
1205
- nickname: import_zod13.z.string().min(1).max(50),
1206
- sessionToken: import_zod13.z.string().min(1)
1235
+ guestId: import_zod14.z.string().min(1),
1236
+ nickname: import_zod14.z.string().min(1).max(50),
1237
+ sessionToken: import_zod14.z.string().min(1)
1207
1238
  });
1208
1239
 
1209
1240
  // src/domain/meal-plan/meal-group.schema.ts
1210
- var import_zod14 = require("zod");
1211
- var MealGroupMemberRoleSchema = import_zod14.z.enum([
1241
+ var import_zod15 = require("zod");
1242
+ var MealGroupMemberRoleSchema = import_zod15.z.enum([
1212
1243
  "OWNER",
1213
1244
  "MEMBER"
1214
1245
  ]);
1215
- var MealGroupMemberSchema = import_zod14.z.object({
1246
+ var MealGroupMemberSchema = import_zod15.z.object({
1216
1247
  member: MemberCoreSchema,
1217
1248
  role: MealGroupMemberRoleSchema,
1218
1249
  joinedAt: ISODateTimeStringSchema
1219
1250
  });
1220
- var MealGroupResponseSchema = import_zod14.z.object({
1251
+ var MealGroupResponseSchema = import_zod15.z.object({
1221
1252
  mealGroupId: MealGroupIdSchema,
1222
- name: import_zod14.z.string().min(1).max(50),
1253
+ name: import_zod15.z.string().min(1).max(50),
1223
1254
  owner: MemberCoreSchema,
1224
- profileImageUrl: import_zod14.z.string().url().nullable(),
1225
- members: import_zod14.z.array(MealGroupMemberSchema),
1226
- recentMealPlanIds: import_zod14.z.array(MealPlanIdSchema),
1255
+ profileImageUrl: import_zod15.z.string().url().nullable(),
1256
+ members: import_zod15.z.array(MealGroupMemberSchema),
1257
+ recentMealPlanIds: import_zod15.z.array(MealPlanIdSchema),
1227
1258
  createdAt: ISODateTimeStringSchema,
1228
1259
  updatedAt: ISODateTimeStringSchema
1229
1260
  });
1230
- var CreateMealGroupRequestSchema = import_zod14.z.object({
1231
- name: import_zod14.z.string().min(1).max(50),
1232
- memberIds: import_zod14.z.array(import_zod14.z.number().int().positive()).min(1),
1233
- profileImageUrl: import_zod14.z.string().url().nullable().optional(),
1261
+ var CreateMealGroupRequestSchema = import_zod15.z.object({
1262
+ name: import_zod15.z.string().min(1).max(50),
1263
+ memberIds: import_zod15.z.array(import_zod15.z.number().int().positive()).min(1),
1264
+ profileImageUrl: import_zod15.z.string().url().nullable().optional(),
1234
1265
  sourceMealPlanId: MealPlanIdSchema.optional()
1235
1266
  });
1236
- var StartMealPlanFromGroupRequestSchema = import_zod14.z.object({
1237
- title: import_zod14.z.string().min(1).max(100).optional()
1267
+ var StartMealPlanFromGroupRequestSchema = import_zod15.z.object({
1268
+ title: import_zod15.z.string().min(1).max(100).optional()
1238
1269
  });
1239
- var AddMealGroupMemberRequestSchema = import_zod14.z.object({
1240
- memberId: import_zod14.z.number().int().positive(),
1270
+ var AddMealGroupMemberRequestSchema = import_zod15.z.object({
1271
+ memberId: import_zod15.z.number().int().positive(),
1241
1272
  role: MealGroupMemberRoleSchema.default("MEMBER")
1242
1273
  });
1243
- var UpdateMealGroupMemberRoleRequestSchema = import_zod14.z.object({
1274
+ var UpdateMealGroupMemberRoleRequestSchema = import_zod15.z.object({
1244
1275
  role: MealGroupMemberRoleSchema
1245
1276
  });
1246
1277
  var MealGroupHistoryItemSchema = MyMealPlanListItemSchema.extend({});
1247
- var MealGroupPreferenceSummarySchema = import_zod14.z.object({
1278
+ var MealGroupPreferenceSummarySchema = import_zod15.z.object({
1248
1279
  mealGroupId: MealGroupIdSchema,
1249
- frequentMenuCategories: import_zod14.z.array(import_zod14.z.object({ label: import_zod14.z.string(), count: import_zod14.z.number().int().min(0) })),
1250
- frequentRestaurants: import_zod14.z.array(import_zod14.z.object({ restaurantName: import_zod14.z.string(), count: import_zod14.z.number().int().min(0) })),
1251
- recentMenuCategories: import_zod14.z.array(import_zod14.z.string()),
1252
- recommendationContext: import_zod14.z.object({
1253
- preferredMenuCategories: import_zod14.z.array(import_zod14.z.string()),
1254
- excludedMenuCategories: import_zod14.z.array(import_zod14.z.string()),
1255
- candidateMenuCategories: import_zod14.z.array(import_zod14.z.string())
1280
+ frequentMenuCategories: import_zod15.z.array(import_zod15.z.object({ label: import_zod15.z.string(), count: import_zod15.z.number().int().min(0) })),
1281
+ frequentRestaurants: import_zod15.z.array(import_zod15.z.object({ restaurantName: import_zod15.z.string(), count: import_zod15.z.number().int().min(0) })),
1282
+ recentMenuCategories: import_zod15.z.array(import_zod15.z.string()),
1283
+ recommendationContext: import_zod15.z.object({
1284
+ preferredMenuCategories: import_zod15.z.array(import_zod15.z.string()),
1285
+ excludedMenuCategories: import_zod15.z.array(import_zod15.z.string()),
1286
+ candidateMenuCategories: import_zod15.z.array(import_zod15.z.string())
1256
1287
  })
1257
1288
  });
1258
- var MealGroupHistoryResponseSchema = import_zod14.z.array(MealGroupHistoryItemSchema);
1289
+ var MealGroupHistoryResponseSchema = import_zod15.z.array(MealGroupHistoryItemSchema);
1259
1290
 
1260
1291
  // src/domain/meal-plan/meal-plan-home-map.schema.ts
1261
- var import_zod15 = require("zod");
1262
- var HomeMealPlanActionKindSchema = import_zod15.z.enum([
1292
+ var import_zod16 = require("zod");
1293
+ var HomeMealPlanActionKindSchema = import_zod16.z.enum([
1263
1294
  "CONTINUE_DECISION",
1264
1295
  "TODAY_UPCOMING",
1265
1296
  "RECORD_NEEDED",
1266
1297
  "RESPOND_JOIN_REQUEST",
1267
1298
  "NOTIFICATION_FOLLOW_UP"
1268
1299
  ]);
1269
- var HomeMealPlanActionCardSchema = import_zod15.z.object({
1270
- actionId: import_zod15.z.string().min(1),
1300
+ var HomeMealPlanActionCardSchema = import_zod16.z.object({
1301
+ actionId: import_zod16.z.string().min(1),
1271
1302
  kind: HomeMealPlanActionKindSchema,
1272
- priority: import_zod15.z.number().int().min(0),
1273
- title: import_zod15.z.string().min(1),
1274
- description: import_zod15.z.string().min(1),
1275
- primaryAction: import_zod15.z.object({
1276
- label: import_zod15.z.string().min(1),
1277
- href: import_zod15.z.string().min(1)
1303
+ priority: import_zod16.z.number().int().min(0),
1304
+ title: import_zod16.z.string().min(1),
1305
+ description: import_zod16.z.string().min(1),
1306
+ primaryAction: import_zod16.z.object({
1307
+ label: import_zod16.z.string().min(1),
1308
+ href: import_zod16.z.string().min(1)
1278
1309
  }),
1279
1310
  mealPlan: MyMealPlanListItemSchema.nullable(),
1280
1311
  joinRequest: MealPlanJoinRequestSummarySchema.nullable(),
1281
1312
  notification: MealPlanNotificationSchema.nullable().default(null)
1282
1313
  });
1283
- var HomeMealPlanDashboardResponseSchema = import_zod15.z.object({
1314
+ var HomeMealPlanDashboardResponseSchema = import_zod16.z.object({
1284
1315
  generatedAt: ISODateTimeStringSchema,
1285
- inProgress: import_zod15.z.array(MyMealPlanListItemSchema),
1286
- today: import_zod15.z.array(MyMealPlanListItemSchema),
1287
- recordNeeded: import_zod15.z.array(MyMealPlanListItemSchema),
1288
- pendingJoinRequests: import_zod15.z.array(MealPlanJoinRequestSummarySchema),
1289
- unreadNotifications: import_zod15.z.array(MealPlanNotificationSchema).default([]),
1290
- nextActions: import_zod15.z.array(HomeMealPlanActionCardSchema)
1291
- });
1292
- var MealMapLayerSchema = import_zod15.z.enum([
1316
+ inProgress: import_zod16.z.array(MyMealPlanListItemSchema),
1317
+ today: import_zod16.z.array(MyMealPlanListItemSchema),
1318
+ recordNeeded: import_zod16.z.array(MyMealPlanListItemSchema),
1319
+ pendingJoinRequests: import_zod16.z.array(MealPlanJoinRequestSummarySchema),
1320
+ unreadNotifications: import_zod16.z.array(MealPlanNotificationSchema).default([]),
1321
+ nextActions: import_zod16.z.array(HomeMealPlanActionCardSchema)
1322
+ });
1323
+ var MealMapLayerSchema = import_zod16.z.enum([
1293
1324
  "MY_MEAL_PLAN_PLACE",
1294
1325
  "NEARBY_FRIEND_MEAL_PLAN",
1295
1326
  "FRIEND_RECORD_LOCATION",
1296
1327
  "RESTAURANT_CANDIDATE"
1297
1328
  ]);
1298
- var MealMapMarkerBaseSchema = import_zod15.z.object({
1299
- markerId: import_zod15.z.string().min(1),
1300
- lat: import_zod15.z.number().min(-90).max(90),
1301
- lng: import_zod15.z.number().min(-180).max(180),
1302
- title: import_zod15.z.string().min(1),
1303
- subtitle: import_zod15.z.string().nullable(),
1304
- href: import_zod15.z.string().min(1).nullable(),
1329
+ var MealMapMarkerBaseSchema = import_zod16.z.object({
1330
+ markerId: import_zod16.z.string().min(1),
1331
+ lat: import_zod16.z.number().min(-90).max(90),
1332
+ lng: import_zod16.z.number().min(-180).max(180),
1333
+ title: import_zod16.z.string().min(1),
1334
+ subtitle: import_zod16.z.string().nullable(),
1335
+ href: import_zod16.z.string().min(1).nullable(),
1305
1336
  mealPlanId: MealPlanIdSchema.nullable(),
1306
1337
  articleId: ArticleIdSchema.nullable(),
1307
1338
  restaurant: RestaurantSchema.nullable(),
1308
- distanceMeters: import_zod15.z.number().int().min(0).nullable(),
1339
+ distanceMeters: import_zod16.z.number().int().min(0).nullable(),
1309
1340
  updatedAt: ISODateTimeStringSchema
1310
1341
  });
1311
- var MealMapMyMealPlanPlaceMetadataSchema = import_zod15.z.object({
1342
+ var MealMapMyMealPlanPlaceMetadataSchema = import_zod16.z.object({
1312
1343
  ownerId: MemberIdSchema.nullable().default(null),
1313
- status: import_zod15.z.string().min(1),
1314
- participantCount: import_zod15.z.number().int().min(1),
1315
- source: import_zod15.z.string().min(1)
1344
+ status: import_zod16.z.string().min(1),
1345
+ participantCount: import_zod16.z.number().int().min(1),
1346
+ source: import_zod16.z.string().min(1)
1316
1347
  });
1317
- var MealMapNearbyFriendMealPlanMetadataSchema = import_zod15.z.object({
1348
+ var MealMapNearbyFriendMealPlanMetadataSchema = import_zod16.z.object({
1318
1349
  ownerId: MemberIdSchema.nullable().default(null),
1319
- ownerName: import_zod15.z.string().min(1),
1320
- participantCount: import_zod15.z.number().int().min(1),
1350
+ ownerName: import_zod16.z.string().min(1),
1351
+ participantCount: import_zod16.z.number().int().min(1),
1321
1352
  expiresAt: ISODateTimeStringSchema.nullable(),
1322
- source: import_zod15.z.string().min(1)
1353
+ source: import_zod16.z.string().min(1)
1323
1354
  });
1324
- var MealMapFriendRecordLocationMetadataSchema = import_zod15.z.object({
1355
+ var MealMapFriendRecordLocationMetadataSchema = import_zod16.z.object({
1325
1356
  authorId: MemberIdSchema.nullable().default(null),
1326
- authorName: import_zod15.z.string().min(1),
1327
- imageUrl: import_zod15.z.string().nullable().default(null),
1328
- mealDate: import_zod15.z.string().min(1)
1357
+ authorName: import_zod16.z.string().min(1),
1358
+ imageUrl: import_zod16.z.string().nullable().default(null),
1359
+ mealDate: import_zod16.z.string().min(1)
1329
1360
  });
1330
- var MealMapRestaurantCandidateCompletionBlockedReasonSchema = import_zod15.z.enum([
1361
+ var MealMapRestaurantCandidateCompletionBlockedReasonSchema = import_zod16.z.enum([
1331
1362
  "OWNER_ONLY",
1332
1363
  "STAGE_ALREADY_COMPLETED",
1333
1364
  "MEAL_PLAN_NOT_MUTABLE"
1334
1365
  ]);
1335
- var MealMapRestaurantCandidateMetadataSchema = import_zod15.z.object({
1366
+ var MealMapRestaurantCandidateMetadataSchema = import_zod16.z.object({
1336
1367
  stageId: MealPlanDecisionStageIdSchema,
1337
1368
  ownerId: MemberIdSchema.nullable().default(null),
1338
- status: import_zod15.z.string().min(1),
1339
- source: import_zod15.z.enum(["search", "fallback", "manual"]).default("search"),
1340
- stageStatus: import_zod15.z.enum(["OPEN", "COMPLETED", "REOPENED"]).default("OPEN"),
1341
- canVote: import_zod15.z.boolean().default(false),
1342
- canCompleteStage: import_zod15.z.boolean().default(false),
1369
+ status: import_zod16.z.string().min(1),
1370
+ source: import_zod16.z.enum(["search", "fallback", "manual"]).default("search"),
1371
+ stageStatus: import_zod16.z.enum(["OPEN", "COMPLETED", "REOPENED"]).default("OPEN"),
1372
+ canVote: import_zod16.z.boolean().default(false),
1373
+ canCompleteStage: import_zod16.z.boolean().default(false),
1343
1374
  completionBlockedReason: MealMapRestaurantCandidateCompletionBlockedReasonSchema.nullable().default(null)
1344
1375
  });
1345
- var MealMapMarkerSchema = import_zod15.z.discriminatedUnion("layer", [
1376
+ var MealMapMarkerSchema = import_zod16.z.discriminatedUnion("layer", [
1346
1377
  MealMapMarkerBaseSchema.extend({
1347
- layer: import_zod15.z.literal("MY_MEAL_PLAN_PLACE"),
1378
+ layer: import_zod16.z.literal("MY_MEAL_PLAN_PLACE"),
1348
1379
  metadata: MealMapMyMealPlanPlaceMetadataSchema
1349
1380
  }),
1350
1381
  MealMapMarkerBaseSchema.extend({
1351
- layer: import_zod15.z.literal("NEARBY_FRIEND_MEAL_PLAN"),
1382
+ layer: import_zod16.z.literal("NEARBY_FRIEND_MEAL_PLAN"),
1352
1383
  metadata: MealMapNearbyFriendMealPlanMetadataSchema
1353
1384
  }),
1354
1385
  MealMapMarkerBaseSchema.extend({
1355
- layer: import_zod15.z.literal("FRIEND_RECORD_LOCATION"),
1386
+ layer: import_zod16.z.literal("FRIEND_RECORD_LOCATION"),
1356
1387
  metadata: MealMapFriendRecordLocationMetadataSchema
1357
1388
  }),
1358
1389
  MealMapMarkerBaseSchema.extend({
1359
- layer: import_zod15.z.literal("RESTAURANT_CANDIDATE"),
1390
+ layer: import_zod16.z.literal("RESTAURANT_CANDIDATE"),
1360
1391
  metadata: MealMapRestaurantCandidateMetadataSchema
1361
1392
  })
1362
1393
  ]);
1363
- var MealMapQuerySchema = import_zod15.z.object({
1364
- friendRecordDays: import_zod15.z.coerce.number().int().min(1).max(90).optional().default(7)
1394
+ var MealMapQuerySchema = import_zod16.z.object({
1395
+ friendRecordDays: import_zod16.z.coerce.number().int().min(1).max(90).optional().default(7)
1365
1396
  });
1366
- var MealMapResponseSchema = import_zod15.z.object({
1397
+ var MealMapResponseSchema = import_zod16.z.object({
1367
1398
  generatedAt: ISODateTimeStringSchema,
1368
- center: import_zod15.z.object({
1369
- lat: import_zod15.z.number().min(-90).max(90),
1370
- lng: import_zod15.z.number().min(-180).max(180),
1371
- source: import_zod15.z.enum(["LAST_KNOWN_LOCATION", "MY_MEAL_PLAN", "DEFAULT"])
1399
+ center: import_zod16.z.object({
1400
+ lat: import_zod16.z.number().min(-90).max(90),
1401
+ lng: import_zod16.z.number().min(-180).max(180),
1402
+ source: import_zod16.z.enum(["LAST_KNOWN_LOCATION", "MY_MEAL_PLAN", "DEFAULT"])
1372
1403
  }),
1373
- layers: import_zod15.z.object({
1374
- myMealPlanPlaces: import_zod15.z.array(MealMapMarkerSchema),
1375
- nearbyFriendMealPlans: import_zod15.z.array(MealMapMarkerSchema),
1376
- friendRecordLocations: import_zod15.z.array(MealMapMarkerSchema),
1377
- restaurantCandidates: import_zod15.z.array(MealMapMarkerSchema)
1404
+ layers: import_zod16.z.object({
1405
+ myMealPlanPlaces: import_zod16.z.array(MealMapMarkerSchema),
1406
+ nearbyFriendMealPlans: import_zod16.z.array(MealMapMarkerSchema),
1407
+ friendRecordLocations: import_zod16.z.array(MealMapMarkerSchema),
1408
+ restaurantCandidates: import_zod16.z.array(MealMapMarkerSchema)
1378
1409
  })
1379
1410
  });
1380
1411
 
@@ -1473,6 +1504,12 @@ function compareMealPlanNotificationsByPriority(channel) {
1473
1504
  MealPlanDecisionTaskKeySchema,
1474
1505
  MealPlanDecisionTaskProgressSchema,
1475
1506
  MealPlanDecisionTaskStatusSchema,
1507
+ MealPlanDecisionVoteSocketAckSchema,
1508
+ MealPlanDecisionVoteSocketErrorSchema,
1509
+ MealPlanDecisionVoteSocketEvent,
1510
+ MealPlanDecisionVoteSocketFailureAckSchema,
1511
+ MealPlanDecisionVoteSocketPayloadSchema,
1512
+ MealPlanDecisionVoteSocketSuccessAckSchema,
1476
1513
  MealPlanGuestParticipantSchema,
1477
1514
  MealPlanGuestSessionQuerySchema,
1478
1515
  MealPlanGuestSessionResponseSchema,