@kimdaegyu/babmukdang-shared 2.0.2 → 2.0.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.
Files changed (52) hide show
  1. package/dist/{chunk-EX7S5FI5.js → chunk-3TY6OPD3.js} +4 -4
  2. package/dist/{chunk-QUAG5LF5.js → chunk-6O2YTBVC.js} +4 -11
  3. package/dist/{chunk-TOXRHSD6.js → chunk-7JYVBXKQ.js} +1 -1
  4. package/dist/chunk-7UZD4LBQ.js +459 -0
  5. package/dist/chunk-BSJC7OVV.js +10 -0
  6. package/dist/{chunk-YV734GYZ.js → chunk-C63TN7L3.js} +9 -26
  7. package/dist/{chunk-Q4BPFDVB.js → chunk-CGFW5LYV.js} +6 -34
  8. package/dist/{chunk-TIOX7OHA.js → chunk-GOOH2LGN.js} +24 -58
  9. package/dist/{chunk-EYZU5HPG.js → chunk-HRM3FQPL.js} +1 -4
  10. package/dist/{chunk-3BLXZW4U.js → chunk-LEH6UFL7.js} +11 -35
  11. package/dist/{chunk-P3MYMK34.js → chunk-NENVUHL5.js} +9 -17
  12. package/dist/{chunk-IPANLE7B.js → chunk-OPMBGBYS.js} +34 -34
  13. package/dist/{chunk-G7TITUHT.js → chunk-QFPVAJ2U.js} +1 -1
  14. package/dist/{chunk-65DWKLP6.js → chunk-RZPNVRRS.js} +5 -14
  15. package/dist/{chunk-DRCY5UNQ.js → chunk-VD3VGLBQ.js} +4 -9
  16. package/dist/{chunk-GESEM4IA.js → chunk-WYBFBLQC.js} +6 -17
  17. package/dist/{chunk-6R5CCY5Q.js → chunk-XMRYAG3V.js} +0 -2
  18. package/dist/domain/article/index.cjs +13 -41
  19. package/dist/domain/article/index.js +5 -5
  20. package/dist/domain/auth/index.cjs +8 -25
  21. package/dist/domain/auth/index.js +3 -3
  22. package/dist/domain/common/index.cjs +735 -1332
  23. package/dist/domain/common/index.js +15 -14
  24. package/dist/domain/food/index.cjs +5 -28
  25. package/dist/domain/food/index.d.cts +4 -4
  26. package/dist/domain/food/index.d.ts +4 -4
  27. package/dist/domain/food/index.js +7 -5
  28. package/dist/domain/friend/index.cjs +10 -35
  29. package/dist/domain/friend/index.js +4 -4
  30. package/dist/domain/index.cjs +736 -1476
  31. package/dist/domain/index.d.cts +4 -5
  32. package/dist/domain/index.d.ts +4 -5
  33. package/dist/domain/index.js +35 -35
  34. package/dist/domain/live-activity/index.cjs +422 -371
  35. package/dist/domain/live-activity/index.js +9 -8
  36. package/dist/domain/meal/index.cjs +11 -38
  37. package/dist/domain/meal/index.js +4 -4
  38. package/dist/domain/meal-plan/index.cjs +462 -426
  39. package/dist/domain/meal-plan/index.d.cts +149 -50
  40. package/dist/domain/meal-plan/index.d.ts +149 -50
  41. package/dist/domain/meal-plan/index.js +7 -8
  42. package/dist/domain/member/index.cjs +8 -25
  43. package/dist/domain/member/index.js +2 -2
  44. package/dist/domain/promotion/index.cjs +4 -16
  45. package/dist/domain/promotion/index.js +3 -3
  46. package/dist/domain/push/index.cjs +392 -341
  47. package/dist/domain/push/index.js +7 -6
  48. package/dist/domain/restaurant/index.js +2 -2
  49. package/dist/index.cjs +736 -1475
  50. package/dist/index.js +17 -16
  51. package/package.json +1 -1
  52. package/dist/chunk-KREAZLLH.js +0 -1062
@@ -29,7 +29,9 @@ declare const MealPlanRecommendationContextSchema: z.ZodObject<{
29
29
  address: z.ZodDefault<z.ZodString>;
30
30
  source: z.ZodDefault<z.ZodEnum<{
31
31
  manual: "manual";
32
+ "map-marker": "map-marker";
32
33
  midpoint: "midpoint";
34
+ "user-location": "user-location";
33
35
  search: "search";
34
36
  "recent-place": "recent-place";
35
37
  fallback: "fallback";
@@ -63,7 +65,9 @@ declare const CreateMealPlanRequestSchema: z.ZodObject<{
63
65
  address: z.ZodDefault<z.ZodString>;
64
66
  source: z.ZodDefault<z.ZodEnum<{
65
67
  manual: "manual";
68
+ "map-marker": "map-marker";
66
69
  midpoint: "midpoint";
70
+ "user-location": "user-location";
67
71
  search: "search";
68
72
  "recent-place": "recent-place";
69
73
  fallback: "fallback";
@@ -93,7 +97,9 @@ declare const UpdateMealPlanContextRequestSchema: z.ZodObject<{
93
97
  address: z.ZodDefault<z.ZodString>;
94
98
  source: z.ZodDefault<z.ZodEnum<{
95
99
  manual: "manual";
100
+ "map-marker": "map-marker";
96
101
  midpoint: "midpoint";
102
+ "user-location": "user-location";
97
103
  search: "search";
98
104
  "recent-place": "recent-place";
99
105
  fallback: "fallback";
@@ -123,7 +129,6 @@ declare const MealPlanViewerPermissionsSchema: z.ZodObject<{
123
129
  canVote: z.ZodBoolean;
124
130
  canChat: z.ZodBoolean;
125
131
  canReadyMealPlan: z.ZodBoolean;
126
- canReadyDecisionTask: z.ZodBoolean;
127
132
  canRequestChange: z.ZodBoolean;
128
133
  canReopenDecisionTask: z.ZodBoolean;
129
134
  canConfirmDecisionSnapshot: z.ZodBoolean;
@@ -266,7 +271,9 @@ declare const MealPlanResponseSchema: z.ZodObject<{
266
271
  address: z.ZodDefault<z.ZodString>;
267
272
  source: z.ZodDefault<z.ZodEnum<{
268
273
  manual: "manual";
274
+ "map-marker": "map-marker";
269
275
  midpoint: "midpoint";
276
+ "user-location": "user-location";
270
277
  search: "search";
271
278
  "recent-place": "recent-place";
272
279
  fallback: "fallback";
@@ -290,6 +297,13 @@ declare const MealPlanResponseSchema: z.ZodObject<{
290
297
  "manual-search": "manual-search";
291
298
  }>;
292
299
  score: z.ZodDefault<z.ZodNumber>;
300
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
301
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
302
+ src: z.ZodString;
303
+ avifSrcset: z.ZodOptional<z.ZodString>;
304
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
305
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
306
+ }, z.core.$strip>>>;
293
307
  createdAt: z.ZodString;
294
308
  }, z.core.$strip>;
295
309
  }, z.core.$strip>, z.ZodObject<{
@@ -344,7 +358,9 @@ declare const MealPlanResponseSchema: z.ZodObject<{
344
358
  address: z.ZodDefault<z.ZodString>;
345
359
  source: z.ZodDefault<z.ZodEnum<{
346
360
  manual: "manual";
361
+ "map-marker": "map-marker";
347
362
  midpoint: "midpoint";
363
+ "user-location": "user-location";
348
364
  search: "search";
349
365
  "recent-place": "recent-place";
350
366
  fallback: "fallback";
@@ -368,6 +384,13 @@ declare const MealPlanResponseSchema: z.ZodObject<{
368
384
  "manual-search": "manual-search";
369
385
  }>;
370
386
  score: z.ZodDefault<z.ZodNumber>;
387
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
388
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
389
+ src: z.ZodString;
390
+ avifSrcset: z.ZodOptional<z.ZodString>;
391
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
392
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
393
+ }, z.core.$strip>>>;
371
394
  createdAt: z.ZodString;
372
395
  }, z.core.$strip>;
373
396
  }, z.core.$strip>, z.ZodObject<{
@@ -414,7 +437,9 @@ declare const MealPlanResponseSchema: z.ZodObject<{
414
437
  address: z.ZodDefault<z.ZodString>;
415
438
  source: z.ZodDefault<z.ZodEnum<{
416
439
  manual: "manual";
440
+ "map-marker": "map-marker";
417
441
  midpoint: "midpoint";
442
+ "user-location": "user-location";
418
443
  search: "search";
419
444
  "recent-place": "recent-place";
420
445
  fallback: "fallback";
@@ -438,6 +463,13 @@ declare const MealPlanResponseSchema: z.ZodObject<{
438
463
  "manual-search": "manual-search";
439
464
  }>;
440
465
  score: z.ZodDefault<z.ZodNumber>;
466
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
467
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
468
+ src: z.ZodString;
469
+ avifSrcset: z.ZodOptional<z.ZodString>;
470
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
471
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
472
+ }, z.core.$strip>>>;
441
473
  createdAt: z.ZodString;
442
474
  }, z.core.$strip>;
443
475
  }, z.core.$strip>, z.ZodObject<{
@@ -505,13 +537,10 @@ declare const MealPlanResponseSchema: z.ZodObject<{
505
537
  }>;
506
538
  status: z.ZodEnum<{
507
539
  OPEN: "OPEN";
508
- READY: "READY";
509
540
  STALE: "STALE";
510
541
  LOCKED: "LOCKED";
511
542
  RESOLVED: "RESOLVED";
512
543
  }>;
513
- readyCount: z.ZodNumber;
514
- participantCount: z.ZodNumber;
515
544
  blockers: z.ZodDefault<z.ZodArray<z.ZodString>>;
516
545
  updatedAt: z.ZodString;
517
546
  }, z.core.$strip>>;
@@ -541,7 +570,6 @@ declare const MealPlanResponseSchema: z.ZodObject<{
541
570
  TOP_PICKED_MENU: "TOP_PICKED_MENU";
542
571
  TOP_PICKED_RESTAURANT: "TOP_PICKED_RESTAURANT";
543
572
  OWNER_CONFIRMED: "OWNER_CONFIRMED";
544
- TASK_ALL_READY: "TASK_ALL_READY";
545
573
  MANUAL_SELECTION: "MANUAL_SELECTION";
546
574
  }>;
547
575
  score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -594,7 +622,6 @@ declare const MealPlanResponseSchema: z.ZodObject<{
594
622
  canVote: z.ZodBoolean;
595
623
  canChat: z.ZodBoolean;
596
624
  canReadyMealPlan: z.ZodBoolean;
597
- canReadyDecisionTask: z.ZodBoolean;
598
625
  canRequestChange: z.ZodBoolean;
599
626
  canReopenDecisionTask: z.ZodBoolean;
600
627
  canConfirmDecisionSnapshot: z.ZodBoolean;
@@ -603,18 +630,6 @@ declare const MealPlanResponseSchema: z.ZodObject<{
603
630
  canRecordMealPlan: z.ZodBoolean;
604
631
  canCancelMealPlan: z.ZodBoolean;
605
632
  }, z.core.$strip>;
606
- viewerTaskReadyMap: z.ZodRecord<z.ZodEnum<{
607
- FINAL_CONFIRMATION: "FINAL_CONFIRMATION";
608
- SCHEDULE_DATE: "SCHEDULE_DATE";
609
- SCHEDULE_TIME: "SCHEDULE_TIME";
610
- LOCATION_CANDIDATE: "LOCATION_CANDIDATE";
611
- LOCATION_VOTE: "LOCATION_VOTE";
612
- EXCLUDE_MENU: "EXCLUDE_MENU";
613
- PREFER_MENU: "PREFER_MENU";
614
- MENU_PICK: "MENU_PICK";
615
- RESTAURANT_SEARCH: "RESTAURANT_SEARCH";
616
- RESTAURANT_PICK: "RESTAURANT_PICK";
617
- }>, z.ZodBoolean>;
618
633
  selectedDate: z.ZodNullable<z.ZodString>;
619
634
  selectedTime: z.ZodNullable<z.ZodString>;
620
635
  selectedArea: z.ZodNullable<z.ZodObject<{
@@ -625,7 +640,9 @@ declare const MealPlanResponseSchema: z.ZodObject<{
625
640
  address: z.ZodDefault<z.ZodString>;
626
641
  source: z.ZodDefault<z.ZodEnum<{
627
642
  manual: "manual";
643
+ "map-marker": "map-marker";
628
644
  midpoint: "midpoint";
645
+ "user-location": "user-location";
629
646
  search: "search";
630
647
  "recent-place": "recent-place";
631
648
  fallback: "fallback";
@@ -1336,7 +1353,9 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1336
1353
  address: z.ZodDefault<z.ZodString>;
1337
1354
  source: z.ZodDefault<z.ZodEnum<{
1338
1355
  manual: "manual";
1356
+ "map-marker": "map-marker";
1339
1357
  midpoint: "midpoint";
1358
+ "user-location": "user-location";
1340
1359
  search: "search";
1341
1360
  "recent-place": "recent-place";
1342
1361
  fallback: "fallback";
@@ -1360,6 +1379,13 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1360
1379
  "manual-search": "manual-search";
1361
1380
  }>;
1362
1381
  score: z.ZodDefault<z.ZodNumber>;
1382
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1383
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1384
+ src: z.ZodString;
1385
+ avifSrcset: z.ZodOptional<z.ZodString>;
1386
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
1387
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
1388
+ }, z.core.$strip>>>;
1363
1389
  createdAt: z.ZodString;
1364
1390
  }, z.core.$strip>;
1365
1391
  }, z.core.$strip>, z.ZodObject<{
@@ -1414,7 +1440,9 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1414
1440
  address: z.ZodDefault<z.ZodString>;
1415
1441
  source: z.ZodDefault<z.ZodEnum<{
1416
1442
  manual: "manual";
1443
+ "map-marker": "map-marker";
1417
1444
  midpoint: "midpoint";
1445
+ "user-location": "user-location";
1418
1446
  search: "search";
1419
1447
  "recent-place": "recent-place";
1420
1448
  fallback: "fallback";
@@ -1438,6 +1466,13 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1438
1466
  "manual-search": "manual-search";
1439
1467
  }>;
1440
1468
  score: z.ZodDefault<z.ZodNumber>;
1469
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1470
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1471
+ src: z.ZodString;
1472
+ avifSrcset: z.ZodOptional<z.ZodString>;
1473
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
1474
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
1475
+ }, z.core.$strip>>>;
1441
1476
  createdAt: z.ZodString;
1442
1477
  }, z.core.$strip>;
1443
1478
  }, z.core.$strip>, z.ZodObject<{
@@ -1484,7 +1519,9 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1484
1519
  address: z.ZodDefault<z.ZodString>;
1485
1520
  source: z.ZodDefault<z.ZodEnum<{
1486
1521
  manual: "manual";
1522
+ "map-marker": "map-marker";
1487
1523
  midpoint: "midpoint";
1524
+ "user-location": "user-location";
1488
1525
  search: "search";
1489
1526
  "recent-place": "recent-place";
1490
1527
  fallback: "fallback";
@@ -1508,6 +1545,13 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1508
1545
  "manual-search": "manual-search";
1509
1546
  }>;
1510
1547
  score: z.ZodDefault<z.ZodNumber>;
1548
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
1549
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
1550
+ src: z.ZodString;
1551
+ avifSrcset: z.ZodOptional<z.ZodString>;
1552
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
1553
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
1554
+ }, z.core.$strip>>>;
1511
1555
  createdAt: z.ZodString;
1512
1556
  }, z.core.$strip>;
1513
1557
  }, z.core.$strip>, z.ZodObject<{
@@ -1575,13 +1619,10 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1575
1619
  }>;
1576
1620
  status: z.ZodEnum<{
1577
1621
  OPEN: "OPEN";
1578
- READY: "READY";
1579
1622
  STALE: "STALE";
1580
1623
  LOCKED: "LOCKED";
1581
1624
  RESOLVED: "RESOLVED";
1582
1625
  }>;
1583
- readyCount: z.ZodNumber;
1584
- participantCount: z.ZodNumber;
1585
1626
  blockers: z.ZodDefault<z.ZodArray<z.ZodString>>;
1586
1627
  updatedAt: z.ZodString;
1587
1628
  }, z.core.$strip>>;
@@ -1611,7 +1652,6 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1611
1652
  TOP_PICKED_MENU: "TOP_PICKED_MENU";
1612
1653
  TOP_PICKED_RESTAURANT: "TOP_PICKED_RESTAURANT";
1613
1654
  OWNER_CONFIRMED: "OWNER_CONFIRMED";
1614
- TASK_ALL_READY: "TASK_ALL_READY";
1615
1655
  MANUAL_SELECTION: "MANUAL_SELECTION";
1616
1656
  }>;
1617
1657
  score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -1664,7 +1704,6 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1664
1704
  canVote: z.ZodBoolean;
1665
1705
  canChat: z.ZodBoolean;
1666
1706
  canReadyMealPlan: z.ZodBoolean;
1667
- canReadyDecisionTask: z.ZodBoolean;
1668
1707
  canRequestChange: z.ZodBoolean;
1669
1708
  canReopenDecisionTask: z.ZodBoolean;
1670
1709
  canConfirmDecisionSnapshot: z.ZodBoolean;
@@ -1673,18 +1712,6 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1673
1712
  canRecordMealPlan: z.ZodBoolean;
1674
1713
  canCancelMealPlan: z.ZodBoolean;
1675
1714
  }, z.core.$strip>;
1676
- viewerTaskReadyMap: z.ZodRecord<z.ZodEnum<{
1677
- FINAL_CONFIRMATION: "FINAL_CONFIRMATION";
1678
- SCHEDULE_DATE: "SCHEDULE_DATE";
1679
- SCHEDULE_TIME: "SCHEDULE_TIME";
1680
- LOCATION_CANDIDATE: "LOCATION_CANDIDATE";
1681
- LOCATION_VOTE: "LOCATION_VOTE";
1682
- EXCLUDE_MENU: "EXCLUDE_MENU";
1683
- PREFER_MENU: "PREFER_MENU";
1684
- MENU_PICK: "MENU_PICK";
1685
- RESTAURANT_SEARCH: "RESTAURANT_SEARCH";
1686
- RESTAURANT_PICK: "RESTAURANT_PICK";
1687
- }>, z.ZodBoolean>;
1688
1715
  selectedDate: z.ZodNullable<z.ZodString>;
1689
1716
  selectedTime: z.ZodNullable<z.ZodString>;
1690
1717
  selectedArea: z.ZodNullable<z.ZodObject<{
@@ -1695,7 +1722,9 @@ declare const MealPlanGuestSessionResponseSchema: z.ZodObject<{
1695
1722
  address: z.ZodDefault<z.ZodString>;
1696
1723
  source: z.ZodDefault<z.ZodEnum<{
1697
1724
  manual: "manual";
1725
+ "map-marker": "map-marker";
1698
1726
  midpoint: "midpoint";
1727
+ "user-location": "user-location";
1699
1728
  search: "search";
1700
1729
  "recent-place": "recent-place";
1701
1730
  fallback: "fallback";
@@ -3054,7 +3083,9 @@ declare const MealPlanDecisionStageIdSchema: z.core.$ZodBranded<z.ZodString, "Me
3054
3083
  declare const MealPlanVoteIdSchema: z.core.$ZodBranded<z.ZodString, "MealPlanVoteId", "out">;
3055
3084
  declare const MealPlanLocationCandidateSourceSchema: z.ZodEnum<{
3056
3085
  manual: "manual";
3086
+ "map-marker": "map-marker";
3057
3087
  midpoint: "midpoint";
3088
+ "user-location": "user-location";
3058
3089
  search: "search";
3059
3090
  "recent-place": "recent-place";
3060
3091
  fallback: "fallback";
@@ -3067,7 +3098,9 @@ declare const MealPlanLocationCandidateSchema: z.ZodObject<{
3067
3098
  address: z.ZodDefault<z.ZodString>;
3068
3099
  source: z.ZodDefault<z.ZodEnum<{
3069
3100
  manual: "manual";
3101
+ "map-marker": "map-marker";
3070
3102
  midpoint: "midpoint";
3103
+ "user-location": "user-location";
3071
3104
  search: "search";
3072
3105
  "recent-place": "recent-place";
3073
3106
  fallback: "fallback";
@@ -3096,6 +3129,13 @@ declare const MealPlanMenuCandidateSchema: z.ZodObject<{
3096
3129
  "manual-search": "manual-search";
3097
3130
  }>;
3098
3131
  score: z.ZodDefault<z.ZodNumber>;
3132
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3133
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3134
+ src: z.ZodString;
3135
+ avifSrcset: z.ZodOptional<z.ZodString>;
3136
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3137
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3138
+ }, z.core.$strip>>>;
3099
3139
  createdAt: z.ZodString;
3100
3140
  }, z.core.$strip>;
3101
3141
  declare const MealPlanRestaurantCandidateSchema: z.ZodObject<{
@@ -3192,7 +3232,9 @@ declare const MealPlanDecisionCandidateSchema: z.ZodDiscriminatedUnion<[z.ZodObj
3192
3232
  address: z.ZodDefault<z.ZodString>;
3193
3233
  source: z.ZodDefault<z.ZodEnum<{
3194
3234
  manual: "manual";
3235
+ "map-marker": "map-marker";
3195
3236
  midpoint: "midpoint";
3237
+ "user-location": "user-location";
3196
3238
  search: "search";
3197
3239
  "recent-place": "recent-place";
3198
3240
  fallback: "fallback";
@@ -3216,6 +3258,13 @@ declare const MealPlanDecisionCandidateSchema: z.ZodDiscriminatedUnion<[z.ZodObj
3216
3258
  "manual-search": "manual-search";
3217
3259
  }>;
3218
3260
  score: z.ZodDefault<z.ZodNumber>;
3261
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3262
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3263
+ src: z.ZodString;
3264
+ avifSrcset: z.ZodOptional<z.ZodString>;
3265
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3266
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3267
+ }, z.core.$strip>>>;
3219
3268
  createdAt: z.ZodString;
3220
3269
  }, z.core.$strip>;
3221
3270
  }, z.core.$strip>, z.ZodObject<{
@@ -3270,7 +3319,9 @@ declare const MealPlanVoteSchema: z.ZodObject<{
3270
3319
  address: z.ZodDefault<z.ZodString>;
3271
3320
  source: z.ZodDefault<z.ZodEnum<{
3272
3321
  manual: "manual";
3322
+ "map-marker": "map-marker";
3273
3323
  midpoint: "midpoint";
3324
+ "user-location": "user-location";
3274
3325
  search: "search";
3275
3326
  "recent-place": "recent-place";
3276
3327
  fallback: "fallback";
@@ -3294,6 +3345,13 @@ declare const MealPlanVoteSchema: z.ZodObject<{
3294
3345
  "manual-search": "manual-search";
3295
3346
  }>;
3296
3347
  score: z.ZodDefault<z.ZodNumber>;
3348
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3349
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3350
+ src: z.ZodString;
3351
+ avifSrcset: z.ZodOptional<z.ZodString>;
3352
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3353
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3354
+ }, z.core.$strip>>>;
3297
3355
  createdAt: z.ZodString;
3298
3356
  }, z.core.$strip>;
3299
3357
  }, z.core.$strip>, z.ZodObject<{
@@ -3355,7 +3413,9 @@ declare const MealPlanDecisionStageResponseSchema: z.ZodObject<{
3355
3413
  address: z.ZodDefault<z.ZodString>;
3356
3414
  source: z.ZodDefault<z.ZodEnum<{
3357
3415
  manual: "manual";
3416
+ "map-marker": "map-marker";
3358
3417
  midpoint: "midpoint";
3418
+ "user-location": "user-location";
3359
3419
  search: "search";
3360
3420
  "recent-place": "recent-place";
3361
3421
  fallback: "fallback";
@@ -3379,6 +3439,13 @@ declare const MealPlanDecisionStageResponseSchema: z.ZodObject<{
3379
3439
  "manual-search": "manual-search";
3380
3440
  }>;
3381
3441
  score: z.ZodDefault<z.ZodNumber>;
3442
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3443
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3444
+ src: z.ZodString;
3445
+ avifSrcset: z.ZodOptional<z.ZodString>;
3446
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3447
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3448
+ }, z.core.$strip>>>;
3382
3449
  createdAt: z.ZodString;
3383
3450
  }, z.core.$strip>;
3384
3451
  }, z.core.$strip>, z.ZodObject<{
@@ -3433,7 +3500,9 @@ declare const MealPlanDecisionStageResponseSchema: z.ZodObject<{
3433
3500
  address: z.ZodDefault<z.ZodString>;
3434
3501
  source: z.ZodDefault<z.ZodEnum<{
3435
3502
  manual: "manual";
3503
+ "map-marker": "map-marker";
3436
3504
  midpoint: "midpoint";
3505
+ "user-location": "user-location";
3437
3506
  search: "search";
3438
3507
  "recent-place": "recent-place";
3439
3508
  fallback: "fallback";
@@ -3457,6 +3526,13 @@ declare const MealPlanDecisionStageResponseSchema: z.ZodObject<{
3457
3526
  "manual-search": "manual-search";
3458
3527
  }>;
3459
3528
  score: z.ZodDefault<z.ZodNumber>;
3529
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3530
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3531
+ src: z.ZodString;
3532
+ avifSrcset: z.ZodOptional<z.ZodString>;
3533
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3534
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3535
+ }, z.core.$strip>>>;
3460
3536
  createdAt: z.ZodString;
3461
3537
  }, z.core.$strip>;
3462
3538
  }, z.core.$strip>, z.ZodObject<{
@@ -3503,7 +3579,9 @@ declare const MealPlanDecisionStageResponseSchema: z.ZodObject<{
3503
3579
  address: z.ZodDefault<z.ZodString>;
3504
3580
  source: z.ZodDefault<z.ZodEnum<{
3505
3581
  manual: "manual";
3582
+ "map-marker": "map-marker";
3506
3583
  midpoint: "midpoint";
3584
+ "user-location": "user-location";
3507
3585
  search: "search";
3508
3586
  "recent-place": "recent-place";
3509
3587
  fallback: "fallback";
@@ -3527,6 +3605,13 @@ declare const MealPlanDecisionStageResponseSchema: z.ZodObject<{
3527
3605
  "manual-search": "manual-search";
3528
3606
  }>;
3529
3607
  score: z.ZodDefault<z.ZodNumber>;
3608
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3609
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3610
+ src: z.ZodString;
3611
+ avifSrcset: z.ZodOptional<z.ZodString>;
3612
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3613
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3614
+ }, z.core.$strip>>>;
3530
3615
  createdAt: z.ZodString;
3531
3616
  }, z.core.$strip>;
3532
3617
  }, z.core.$strip>, z.ZodObject<{
@@ -3599,7 +3684,9 @@ declare const CreateMealPlanVoteRequestSchema: z.ZodObject<{
3599
3684
  address: z.ZodDefault<z.ZodString>;
3600
3685
  source: z.ZodDefault<z.ZodEnum<{
3601
3686
  manual: "manual";
3687
+ "map-marker": "map-marker";
3602
3688
  midpoint: "midpoint";
3689
+ "user-location": "user-location";
3603
3690
  search: "search";
3604
3691
  "recent-place": "recent-place";
3605
3692
  fallback: "fallback";
@@ -3623,6 +3710,13 @@ declare const CreateMealPlanVoteRequestSchema: z.ZodObject<{
3623
3710
  "manual-search": "manual-search";
3624
3711
  }>;
3625
3712
  score: z.ZodDefault<z.ZodNumber>;
3713
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3714
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3715
+ src: z.ZodString;
3716
+ avifSrcset: z.ZodOptional<z.ZodString>;
3717
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3718
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3719
+ }, z.core.$strip>>>;
3626
3720
  createdAt: z.ZodString;
3627
3721
  }, z.core.$strip>;
3628
3722
  }, z.core.$strip>, z.ZodObject<{
@@ -3669,7 +3763,9 @@ declare const CompleteMealPlanDecisionStageRequestSchema: z.ZodObject<{
3669
3763
  address: z.ZodDefault<z.ZodString>;
3670
3764
  source: z.ZodDefault<z.ZodEnum<{
3671
3765
  manual: "manual";
3766
+ "map-marker": "map-marker";
3672
3767
  midpoint: "midpoint";
3768
+ "user-location": "user-location";
3673
3769
  search: "search";
3674
3770
  "recent-place": "recent-place";
3675
3771
  fallback: "fallback";
@@ -3693,6 +3789,13 @@ declare const CompleteMealPlanDecisionStageRequestSchema: z.ZodObject<{
3693
3789
  "manual-search": "manual-search";
3694
3790
  }>;
3695
3791
  score: z.ZodDefault<z.ZodNumber>;
3792
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3793
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3794
+ src: z.ZodString;
3795
+ avifSrcset: z.ZodOptional<z.ZodString>;
3796
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3797
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3798
+ }, z.core.$strip>>>;
3696
3799
  createdAt: z.ZodString;
3697
3800
  }, z.core.$strip>;
3698
3801
  }, z.core.$strip>, z.ZodObject<{
@@ -3754,7 +3857,9 @@ declare const CreateMealPlanChangeRequestSchema: z.ZodObject<{
3754
3857
  address: z.ZodDefault<z.ZodString>;
3755
3858
  source: z.ZodDefault<z.ZodEnum<{
3756
3859
  manual: "manual";
3860
+ "map-marker": "map-marker";
3757
3861
  midpoint: "midpoint";
3862
+ "user-location": "user-location";
3758
3863
  search: "search";
3759
3864
  "recent-place": "recent-place";
3760
3865
  fallback: "fallback";
@@ -3778,6 +3883,13 @@ declare const CreateMealPlanChangeRequestSchema: z.ZodObject<{
3778
3883
  "manual-search": "manual-search";
3779
3884
  }>;
3780
3885
  score: z.ZodDefault<z.ZodNumber>;
3886
+ imageUrl: z.ZodDefault<z.ZodNullable<z.ZodString>>;
3887
+ image: z.ZodDefault<z.ZodNullable<z.ZodObject<{
3888
+ src: z.ZodString;
3889
+ avifSrcset: z.ZodOptional<z.ZodString>;
3890
+ thumbhashDataURL: z.ZodOptional<z.ZodString>;
3891
+ aspectRatio: z.ZodOptional<z.ZodNumber>;
3892
+ }, z.core.$strip>>>;
3781
3893
  createdAt: z.ZodString;
3782
3894
  }, z.core.$strip>;
3783
3895
  }, z.core.$strip>, z.ZodObject<{
@@ -3840,7 +3952,6 @@ declare const MealPlanDecisionTaskKeySchema: z.ZodEnum<{
3840
3952
  }>;
3841
3953
  declare const MealPlanDecisionTaskStatusSchema: z.ZodEnum<{
3842
3954
  OPEN: "OPEN";
3843
- READY: "READY";
3844
3955
  STALE: "STALE";
3845
3956
  LOCKED: "LOCKED";
3846
3957
  RESOLVED: "RESOLVED";
@@ -3865,7 +3976,6 @@ declare const MealPlanDecisionReasonSchema: z.ZodEnum<{
3865
3976
  TOP_PICKED_MENU: "TOP_PICKED_MENU";
3866
3977
  TOP_PICKED_RESTAURANT: "TOP_PICKED_RESTAURANT";
3867
3978
  OWNER_CONFIRMED: "OWNER_CONFIRMED";
3868
- TASK_ALL_READY: "TASK_ALL_READY";
3869
3979
  MANUAL_SELECTION: "MANUAL_SELECTION";
3870
3980
  }>;
3871
3981
  declare const MealPlanDecisionActorTypeSchema: z.ZodEnum<{
@@ -3897,7 +4007,6 @@ declare const MealPlanDecisionSnapshotSchema: z.ZodObject<{
3897
4007
  TOP_PICKED_MENU: "TOP_PICKED_MENU";
3898
4008
  TOP_PICKED_RESTAURANT: "TOP_PICKED_RESTAURANT";
3899
4009
  OWNER_CONFIRMED: "OWNER_CONFIRMED";
3900
- TASK_ALL_READY: "TASK_ALL_READY";
3901
4010
  MANUAL_SELECTION: "MANUAL_SELECTION";
3902
4011
  }>;
3903
4012
  score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -3938,13 +4047,10 @@ declare const MealPlanDecisionTaskProgressSchema: z.ZodObject<{
3938
4047
  }>;
3939
4048
  status: z.ZodEnum<{
3940
4049
  OPEN: "OPEN";
3941
- READY: "READY";
3942
4050
  STALE: "STALE";
3943
4051
  LOCKED: "LOCKED";
3944
4052
  RESOLVED: "RESOLVED";
3945
4053
  }>;
3946
- readyCount: z.ZodNumber;
3947
- participantCount: z.ZodNumber;
3948
4054
  blockers: z.ZodDefault<z.ZodArray<z.ZodString>>;
3949
4055
  updatedAt: z.ZodString;
3950
4056
  }, z.core.$strip>;
@@ -3966,13 +4072,10 @@ declare const MealPlanDecisionProgressSchema: z.ZodObject<{
3966
4072
  }>;
3967
4073
  status: z.ZodEnum<{
3968
4074
  OPEN: "OPEN";
3969
- READY: "READY";
3970
4075
  STALE: "STALE";
3971
4076
  LOCKED: "LOCKED";
3972
4077
  RESOLVED: "RESOLVED";
3973
4078
  }>;
3974
- readyCount: z.ZodNumber;
3975
- participantCount: z.ZodNumber;
3976
4079
  blockers: z.ZodDefault<z.ZodArray<z.ZodString>>;
3977
4080
  updatedAt: z.ZodString;
3978
4081
  }, z.core.$strip>>;
@@ -4002,7 +4105,6 @@ declare const MealPlanDecisionProgressSchema: z.ZodObject<{
4002
4105
  TOP_PICKED_MENU: "TOP_PICKED_MENU";
4003
4106
  TOP_PICKED_RESTAURANT: "TOP_PICKED_RESTAURANT";
4004
4107
  OWNER_CONFIRMED: "OWNER_CONFIRMED";
4005
- TASK_ALL_READY: "TASK_ALL_READY";
4006
4108
  MANUAL_SELECTION: "MANUAL_SELECTION";
4007
4109
  }>;
4008
4110
  score: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
@@ -4031,9 +4133,6 @@ declare const MealPlanDecisionProgressSchema: z.ZodObject<{
4031
4133
  version: z.ZodNumber;
4032
4134
  updatedAt: z.ZodString;
4033
4135
  }, z.core.$strip>;
4034
- declare const MealPlanDecisionTaskReadyRequestSchema: z.ZodObject<{
4035
- isReady: z.ZodBoolean;
4036
- }, z.core.$strip>;
4037
4136
  declare const ReopenMealPlanDecisionTaskRequestSchema: z.ZodObject<{
4038
4137
  reason: z.ZodOptional<z.ZodString>;
4039
4138
  }, z.core.$strip>;
@@ -4369,6 +4468,7 @@ type MealPlanDecisionStageType = z.infer<typeof MealPlanDecisionStageTypeSchema>
4369
4468
  type MealPlanDecisionStageStatus = z.infer<typeof MealPlanDecisionStageStatusSchema>;
4370
4469
  type MealPlanVoteType = z.infer<typeof MealPlanVoteTypeSchema>;
4371
4470
  type MealPlanLocationCandidate = z.infer<typeof MealPlanLocationCandidateSchema>;
4471
+ type MealPlanLocationCandidateSource = z.infer<typeof MealPlanLocationCandidateSourceSchema>;
4372
4472
  type MealPlanMenuCandidate = z.infer<typeof MealPlanMenuCandidateSchema>;
4373
4473
  type MealPlanMenuCandidateSource = z.infer<typeof MealPlanMenuCandidateSourceSchema>;
4374
4474
  type MealPlanRestaurantCandidate = z.infer<typeof MealPlanRestaurantCandidateSchema>;
@@ -4384,7 +4484,6 @@ type MealPlanDecisionFinalField = z.infer<typeof MealPlanDecisionFinalFieldSchem
4384
4484
  type MealPlanDecisionSnapshotStatus = z.infer<typeof MealPlanDecisionSnapshotStatusSchema>;
4385
4485
  type MealPlanDecisionReason = z.infer<typeof MealPlanDecisionReasonSchema>;
4386
4486
  type MealPlanDecisionActorType = z.infer<typeof MealPlanDecisionActorTypeSchema>;
4387
- type MealPlanDecisionTaskReadyRequest = z.infer<typeof MealPlanDecisionTaskReadyRequestSchema>;
4388
4487
  type ReopenMealPlanDecisionTaskRequest = z.infer<typeof ReopenMealPlanDecisionTaskRequestSchema>;
4389
4488
  type ConfirmMealPlanDecisionSnapshotRequest = z.infer<typeof ConfirmMealPlanDecisionSnapshotRequestSchema>;
4390
4489
  type CreateMealPlanVoteRequest = z.infer<typeof CreateMealPlanVoteRequestSchema>;
@@ -4421,4 +4520,4 @@ declare function getMealPlanLiveActivityBehavior(kind: string): "NONE" | "START_
4421
4520
  declare function shouldShowForegroundToast(kind: string): boolean;
4422
4521
  declare function compareMealPlanNotificationsByPriority(channel: MealPlanNotificationPriorityChannel): (a: Pick<MealPlanNotification, "kind" | "createdAt" | "readAt">, b: Pick<MealPlanNotification, "kind" | "createdAt" | "readAt">) => number;
4423
4522
 
4424
- export { type AddMealGroupMemberRequest, AddMealGroupMemberRequestSchema, type CompleteMealPlanDecisionStageRequest, CompleteMealPlanDecisionStageRequestSchema, type ConfirmMealPlanDecisionSnapshotRequest, ConfirmMealPlanDecisionSnapshotRequestSchema, type CreateMealGroupRequest, CreateMealGroupRequestSchema, type CreateMealPlanChangeRequest, CreateMealPlanChangeRequestSchema, type CreateMealPlanInviteRequest, CreateMealPlanInviteRequestSchema, type CreateMealPlanJoinRequest, CreateMealPlanJoinRequestSchema, type CreateMealPlanParticipantRequest, CreateMealPlanParticipantRequestSchema, type CreateMealPlanRequest, CreateMealPlanRequestSchema, type CreateMealPlanResponse, CreateMealPlanResponseSchema, type CreateMealPlanShareLinkRequest, CreateMealPlanShareLinkRequestSchema, type CreateMealPlanVoteRequest, CreateMealPlanVoteRequestSchema, type ExposeMealPlanToNearbyFriendsRequest, ExposeMealPlanToNearbyFriendsRequestSchema, type ExposeMealPlanToNearbyFriendsResponse, ExposeMealPlanToNearbyFriendsResponseSchema, type HomeMealPlanActionCard, HomeMealPlanActionCardSchema, type HomeMealPlanActionKind, HomeMealPlanActionKindSchema, type HomeMealPlanDashboardResponse, HomeMealPlanDashboardResponseSchema, type JoinMealPlanGuestRequest, JoinMealPlanGuestRequestSchema, type JoinMealPlanGuestResponse, JoinMealPlanGuestResponseSchema, MEAL_PLAN_NOTIFICATION_PRIORITY_POLICIES, type MealGroupHistoryItem, MealGroupHistoryItemSchema, type MealGroupHistoryResponse, MealGroupHistoryResponseSchema, type MealGroupMember, type MealGroupMemberRole, MealGroupMemberRoleSchema, MealGroupMemberSchema, type MealGroupPreferenceSummary, MealGroupPreferenceSummarySchema, type MealGroupResponse, MealGroupResponseSchema, type MealMapFriendRecordLocationMetadata, MealMapFriendRecordLocationMetadataSchema, type MealMapLayer, MealMapLayerSchema, type MealMapMarker, MealMapMarkerSchema, type MealMapMyMealPlanPlaceMetadata, MealMapMyMealPlanPlaceMetadataSchema, type MealMapNearbyFriendMealPlanMetadata, MealMapNearbyFriendMealPlanMetadataSchema, type MealMapQuery, MealMapQuerySchema, type MealMapResponse, MealMapResponseSchema, type MealMapRestaurantCandidateCompletionBlockedReason, MealMapRestaurantCandidateCompletionBlockedReasonSchema, type MealMapRestaurantCandidateMetadata, MealMapRestaurantCandidateMetadataSchema, type MealPlanChangeRequestStatus, MealPlanChangeRequestStatusSchema, type MealPlanChangeRequestSummary, MealPlanChangeRequestSummarySchema, type MealPlanChannel, MealPlanChannelSchema, type MealPlanChatMessageKind, MealPlanChatMessageKindSchema, type MealPlanChatMessageListResponse, MealPlanChatMessageListResponseSchema, type MealPlanChatMessageResponse, MealPlanChatMessageResponseSchema, type MealPlanChatRoomSummary, MealPlanChatRoomSummarySchema, type MealPlanChatSystemPayload, MealPlanChatSystemPayloadSchema, type MealPlanDecisionActorType, MealPlanDecisionActorTypeSchema, type MealPlanDecisionCandidate, MealPlanDecisionCandidateSchema, type MealPlanDecisionFinalField, MealPlanDecisionFinalFieldSchema, type MealPlanDecisionProgress, MealPlanDecisionProgressSchema, type MealPlanDecisionReason, MealPlanDecisionReasonSchema, type MealPlanDecisionSnapshot, MealPlanDecisionSnapshotSchema, type MealPlanDecisionSnapshotStatus, MealPlanDecisionSnapshotStatusSchema, MealPlanDecisionStageIdSchema, type MealPlanDecisionStageMetadata, MealPlanDecisionStageMetadataSchema, type MealPlanDecisionStageResponse, MealPlanDecisionStageResponseSchema, type MealPlanDecisionStageStatus, MealPlanDecisionStageStatusSchema, type MealPlanDecisionStageType, MealPlanDecisionStageTypeSchema, type MealPlanDecisionTaskKey, MealPlanDecisionTaskKeySchema, type MealPlanDecisionTaskProgress, MealPlanDecisionTaskProgressSchema, type MealPlanDecisionTaskReadyRequest, MealPlanDecisionTaskReadyRequestSchema, type MealPlanDecisionTaskStatus, MealPlanDecisionTaskStatusSchema, type MealPlanGuestParticipant, MealPlanGuestParticipantSchema, type MealPlanGuestSessionQuery, MealPlanGuestSessionQuerySchema, type MealPlanGuestSessionResponse, MealPlanGuestSessionResponseSchema, type MealPlanInviteListResponse, MealPlanInviteListResponseSchema, type MealPlanInviteStatus, MealPlanInviteStatusSchema, type MealPlanInviteSummary, MealPlanInviteSummarySchema, type MealPlanJoinRequestStatus, MealPlanJoinRequestStatusSchema, type MealPlanJoinRequestSummary, MealPlanJoinRequestSummarySchema, type MealPlanJoinSource, MealPlanJoinSourceSchema, MealPlanLatitudeSchema, type MealPlanLiveActivityBehavior, MealPlanLiveActivityBehaviorSchema, type MealPlanLocationCandidate, MealPlanLocationCandidateIdSchema, MealPlanLocationCandidateSchema, MealPlanLocationCandidateSourceSchema, MealPlanLongitudeSchema, type MealPlanMenuCandidate, MealPlanMenuCandidateIdSchema, MealPlanMenuCandidateSchema, type MealPlanMenuCandidateSource, MealPlanMenuCandidateSourceSchema, type MealPlanNearbyFriendExposureBatchSummary, MealPlanNearbyFriendExposureBatchSummarySchema, MealPlanNearbyFriendExposureIdSchema, type MealPlanNearbyFriendExposureNotificationStatus, MealPlanNearbyFriendExposureNotificationStatusSchema, type MealPlanNearbyFriendExposureStatus, MealPlanNearbyFriendExposureStatusSchema, type MealPlanNearbyFriendExposureSummary, MealPlanNearbyFriendExposureSummarySchema, type MealPlanNearbyFriendRejectionReason, MealPlanNearbyFriendRejectionReasonSchema, type MealPlanNearbyFriendRejectionSummary, MealPlanNearbyFriendRejectionSummarySchema, type MealPlanNotification$1 as MealPlanNotification, type MealPlanNotificationKind$1 as MealPlanNotificationKind, MealPlanNotificationKindSchema, type MealPlanNotificationPriorityChannel$1 as MealPlanNotificationPriorityChannel, MealPlanNotificationPriorityChannelSchema, type MealPlanNotificationPriorityPolicy, type MealPlanNotificationPriorityPolicyItem, MealPlanNotificationPriorityPolicyItemSchema, MealPlanNotificationSchema, MealPlanParticipantIdSchema, type MealPlanParticipantResponse, MealPlanParticipantResponseSchema, type MealPlanParticipantRole, MealPlanParticipantRoleSchema, type MealPlanParticipantStatus, MealPlanParticipantStatusSchema, type MealPlanRecommendationContext, MealPlanRecommendationContextSchema, type MealPlanResponse, MealPlanResponseSchema, type MealPlanRestaurantCandidate, MealPlanRestaurantCandidateSchema, type MealPlanRestaurantSearchState, MealPlanRestaurantSearchStateSchema, type MealPlanRestaurantSearchStatus, MealPlanRestaurantSearchStatusSchema, type MealPlanShareLinkSummary, MealPlanShareLinkSummarySchema, type MealPlanSharePreviewResponse, MealPlanSharePreviewResponseSchema, type MealPlanStatus, MealPlanStatusSchema, type MealPlanSystemMessage, type MealPlanSystemMessageKind, MealPlanSystemMessageKindSchema, MealPlanSystemMessageSchema, type MealPlanViewerPermissions, MealPlanViewerPermissionsSchema, type MealPlanViewerRole, MealPlanViewerRoleSchema, type MealPlanVote, MealPlanVoteIdSchema, MealPlanVoteSchema, type MealPlanVoteType, MealPlanVoteTypeSchema, type MyMealPlanGroup, MyMealPlanGroupSchema, type MyMealPlanListItem, MyMealPlanListItemSchema, type MyMealPlanListResponse, MyMealPlanListResponseSchema, type NearbyFriendExposureEligibility, NearbyFriendExposureEligibilitySchema, type NearbyFriendMealPlanSummary, NearbyFriendMealPlanSummarySchema, type ReopenMealPlanDecisionTaskRequest, ReopenMealPlanDecisionTaskRequestSchema, type SendMealPlanChatMessageRequest, SendMealPlanChatMessageRequestSchema, type SendMealPlanInviteResponse, SendMealPlanInviteResponseSchema, type StartMealPlanFromGroupRequest, StartMealPlanFromGroupRequestSchema, type UpdateMealGroupMemberRoleRequest, UpdateMealGroupMemberRoleRequestSchema, type UpdateMealPlanContextRequest, UpdateMealPlanContextRequestSchema, compareMealPlanNotificationsByPriority, getMealPlanLiveActivityBehavior, getMealPlanNotificationPriority, getMealPlanNotificationPriorityPolicy, shouldShowForegroundToast };
4523
+ export { type AddMealGroupMemberRequest, AddMealGroupMemberRequestSchema, type CompleteMealPlanDecisionStageRequest, CompleteMealPlanDecisionStageRequestSchema, type ConfirmMealPlanDecisionSnapshotRequest, ConfirmMealPlanDecisionSnapshotRequestSchema, type CreateMealGroupRequest, CreateMealGroupRequestSchema, type CreateMealPlanChangeRequest, CreateMealPlanChangeRequestSchema, type CreateMealPlanInviteRequest, CreateMealPlanInviteRequestSchema, type CreateMealPlanJoinRequest, CreateMealPlanJoinRequestSchema, type CreateMealPlanParticipantRequest, CreateMealPlanParticipantRequestSchema, type CreateMealPlanRequest, CreateMealPlanRequestSchema, type CreateMealPlanResponse, CreateMealPlanResponseSchema, type CreateMealPlanShareLinkRequest, CreateMealPlanShareLinkRequestSchema, type CreateMealPlanVoteRequest, CreateMealPlanVoteRequestSchema, type ExposeMealPlanToNearbyFriendsRequest, ExposeMealPlanToNearbyFriendsRequestSchema, type ExposeMealPlanToNearbyFriendsResponse, ExposeMealPlanToNearbyFriendsResponseSchema, type HomeMealPlanActionCard, HomeMealPlanActionCardSchema, type HomeMealPlanActionKind, HomeMealPlanActionKindSchema, type HomeMealPlanDashboardResponse, HomeMealPlanDashboardResponseSchema, type JoinMealPlanGuestRequest, JoinMealPlanGuestRequestSchema, type JoinMealPlanGuestResponse, JoinMealPlanGuestResponseSchema, MEAL_PLAN_NOTIFICATION_PRIORITY_POLICIES, type MealGroupHistoryItem, MealGroupHistoryItemSchema, type MealGroupHistoryResponse, MealGroupHistoryResponseSchema, type MealGroupMember, type MealGroupMemberRole, MealGroupMemberRoleSchema, MealGroupMemberSchema, type MealGroupPreferenceSummary, MealGroupPreferenceSummarySchema, type MealGroupResponse, MealGroupResponseSchema, type MealMapFriendRecordLocationMetadata, MealMapFriendRecordLocationMetadataSchema, type MealMapLayer, MealMapLayerSchema, type MealMapMarker, MealMapMarkerSchema, type MealMapMyMealPlanPlaceMetadata, MealMapMyMealPlanPlaceMetadataSchema, type MealMapNearbyFriendMealPlanMetadata, MealMapNearbyFriendMealPlanMetadataSchema, type MealMapQuery, MealMapQuerySchema, type MealMapResponse, MealMapResponseSchema, type MealMapRestaurantCandidateCompletionBlockedReason, MealMapRestaurantCandidateCompletionBlockedReasonSchema, type MealMapRestaurantCandidateMetadata, MealMapRestaurantCandidateMetadataSchema, type MealPlanChangeRequestStatus, MealPlanChangeRequestStatusSchema, type MealPlanChangeRequestSummary, MealPlanChangeRequestSummarySchema, type MealPlanChannel, MealPlanChannelSchema, type MealPlanChatMessageKind, MealPlanChatMessageKindSchema, type MealPlanChatMessageListResponse, MealPlanChatMessageListResponseSchema, type MealPlanChatMessageResponse, MealPlanChatMessageResponseSchema, type MealPlanChatRoomSummary, MealPlanChatRoomSummarySchema, type MealPlanChatSystemPayload, MealPlanChatSystemPayloadSchema, type MealPlanDecisionActorType, MealPlanDecisionActorTypeSchema, type MealPlanDecisionCandidate, MealPlanDecisionCandidateSchema, type MealPlanDecisionFinalField, MealPlanDecisionFinalFieldSchema, type MealPlanDecisionProgress, MealPlanDecisionProgressSchema, type MealPlanDecisionReason, MealPlanDecisionReasonSchema, type MealPlanDecisionSnapshot, MealPlanDecisionSnapshotSchema, type MealPlanDecisionSnapshotStatus, MealPlanDecisionSnapshotStatusSchema, MealPlanDecisionStageIdSchema, type MealPlanDecisionStageMetadata, MealPlanDecisionStageMetadataSchema, type MealPlanDecisionStageResponse, MealPlanDecisionStageResponseSchema, type MealPlanDecisionStageStatus, MealPlanDecisionStageStatusSchema, type MealPlanDecisionStageType, MealPlanDecisionStageTypeSchema, type MealPlanDecisionTaskKey, MealPlanDecisionTaskKeySchema, type MealPlanDecisionTaskProgress, MealPlanDecisionTaskProgressSchema, type MealPlanDecisionTaskStatus, MealPlanDecisionTaskStatusSchema, type MealPlanGuestParticipant, MealPlanGuestParticipantSchema, type MealPlanGuestSessionQuery, MealPlanGuestSessionQuerySchema, type MealPlanGuestSessionResponse, MealPlanGuestSessionResponseSchema, type MealPlanInviteListResponse, MealPlanInviteListResponseSchema, type MealPlanInviteStatus, MealPlanInviteStatusSchema, type MealPlanInviteSummary, MealPlanInviteSummarySchema, type MealPlanJoinRequestStatus, MealPlanJoinRequestStatusSchema, type MealPlanJoinRequestSummary, MealPlanJoinRequestSummarySchema, type MealPlanJoinSource, MealPlanJoinSourceSchema, MealPlanLatitudeSchema, type MealPlanLiveActivityBehavior, MealPlanLiveActivityBehaviorSchema, type MealPlanLocationCandidate, MealPlanLocationCandidateIdSchema, MealPlanLocationCandidateSchema, type MealPlanLocationCandidateSource, MealPlanLocationCandidateSourceSchema, MealPlanLongitudeSchema, type MealPlanMenuCandidate, MealPlanMenuCandidateIdSchema, MealPlanMenuCandidateSchema, type MealPlanMenuCandidateSource, MealPlanMenuCandidateSourceSchema, type MealPlanNearbyFriendExposureBatchSummary, MealPlanNearbyFriendExposureBatchSummarySchema, MealPlanNearbyFriendExposureIdSchema, type MealPlanNearbyFriendExposureNotificationStatus, MealPlanNearbyFriendExposureNotificationStatusSchema, type MealPlanNearbyFriendExposureStatus, MealPlanNearbyFriendExposureStatusSchema, type MealPlanNearbyFriendExposureSummary, MealPlanNearbyFriendExposureSummarySchema, type MealPlanNearbyFriendRejectionReason, MealPlanNearbyFriendRejectionReasonSchema, type MealPlanNearbyFriendRejectionSummary, MealPlanNearbyFriendRejectionSummarySchema, type MealPlanNotification$1 as MealPlanNotification, type MealPlanNotificationKind$1 as MealPlanNotificationKind, MealPlanNotificationKindSchema, type MealPlanNotificationPriorityChannel$1 as MealPlanNotificationPriorityChannel, MealPlanNotificationPriorityChannelSchema, type MealPlanNotificationPriorityPolicy, type MealPlanNotificationPriorityPolicyItem, MealPlanNotificationPriorityPolicyItemSchema, MealPlanNotificationSchema, MealPlanParticipantIdSchema, type MealPlanParticipantResponse, MealPlanParticipantResponseSchema, type MealPlanParticipantRole, MealPlanParticipantRoleSchema, type MealPlanParticipantStatus, MealPlanParticipantStatusSchema, type MealPlanRecommendationContext, MealPlanRecommendationContextSchema, type MealPlanResponse, MealPlanResponseSchema, type MealPlanRestaurantCandidate, MealPlanRestaurantCandidateSchema, type MealPlanRestaurantSearchState, MealPlanRestaurantSearchStateSchema, type MealPlanRestaurantSearchStatus, MealPlanRestaurantSearchStatusSchema, type MealPlanShareLinkSummary, MealPlanShareLinkSummarySchema, type MealPlanSharePreviewResponse, MealPlanSharePreviewResponseSchema, type MealPlanStatus, MealPlanStatusSchema, type MealPlanSystemMessage, type MealPlanSystemMessageKind, MealPlanSystemMessageKindSchema, MealPlanSystemMessageSchema, type MealPlanViewerPermissions, MealPlanViewerPermissionsSchema, type MealPlanViewerRole, MealPlanViewerRoleSchema, type MealPlanVote, MealPlanVoteIdSchema, MealPlanVoteSchema, type MealPlanVoteType, MealPlanVoteTypeSchema, type MyMealPlanGroup, MyMealPlanGroupSchema, type MyMealPlanListItem, MyMealPlanListItemSchema, type MyMealPlanListResponse, MyMealPlanListResponseSchema, type NearbyFriendExposureEligibility, NearbyFriendExposureEligibilitySchema, type NearbyFriendMealPlanSummary, NearbyFriendMealPlanSummarySchema, type ReopenMealPlanDecisionTaskRequest, ReopenMealPlanDecisionTaskRequestSchema, type SendMealPlanChatMessageRequest, SendMealPlanChatMessageRequestSchema, type SendMealPlanInviteResponse, SendMealPlanInviteResponseSchema, type StartMealPlanFromGroupRequest, StartMealPlanFromGroupRequestSchema, type UpdateMealGroupMemberRoleRequest, UpdateMealGroupMemberRoleRequestSchema, type UpdateMealPlanContextRequest, UpdateMealPlanContextRequestSchema, compareMealPlanNotificationsByPriority, getMealPlanLiveActivityBehavior, getMealPlanNotificationPriority, getMealPlanNotificationPriorityPolicy, shouldShowForegroundToast };