@feedmepos/mf-order-setting 0.0.60-prod → 0.0.63-prod

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 (39) hide show
  1. package/dist/{KioskDevicesView-DRgZJgHO.js → KioskDevicesView-D-RZUu0W.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CZ6pa8Xh.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BKALec_y.js} +3 -3
  3. package/dist/{KioskSettingView-DVN4bTT4.js → KioskSettingView-BgDVaUU6.js} +3 -3
  4. package/dist/{KioskView-CmHhShkd.js → KioskView-CBDEN6lZ.js} +4 -4
  5. package/dist/OrderSettingsView-CrDwgef9.js +56883 -0
  6. package/dist/{app-D4H4nuew.js → app-BMblFPtQ.js} +2388 -2321
  7. package/dist/app.js +3 -3
  8. package/dist/{dayjs.min-DOI5QB21.js → dayjs.min-0LOWyVEQ.js} +1 -1
  9. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +30 -3
  10. package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +20 -2
  11. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  12. package/dist/index-D5Ao4tWD.js +19656 -0
  13. package/dist/{index-BdJJKX0e.js → index-FP2iiNEg.js} +3 -3
  14. package/dist/menu.dto-BdFq_BB_.js +96924 -0
  15. package/dist/package/entity/booking/booking.do.d.ts +520 -45
  16. package/dist/package/entity/delivery/delivery.dto.d.ts +104 -9
  17. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +114 -19
  18. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +225 -45
  19. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +426 -80
  20. package/dist/package/entity/member/member.dto.d.ts +84 -7
  21. package/dist/package/entity/order/order.dto.d.ts +112 -17
  22. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +104 -9
  23. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +104 -9
  24. package/dist/package/entity/order-platform/order-platform.dto.d.ts +75 -15
  25. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +104 -9
  26. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +120 -0
  27. package/dist/package/entity/queue/queue.dto.d.ts +6 -6
  28. package/package.json +3 -2
  29. package/src/views/order-settings/delivery/DeliverySetting.vue +2 -1
  30. package/src/views/order-settings/delivery/inhouse/CurrencyInput.vue +6 -5
  31. package/src/views/order-settings/delivery/inhouse/ZoneDialog.vue +8 -4
  32. package/src/views/order-settings/dine-in/DineInSetting.vue +4 -6
  33. package/src/views/order-settings/dine-in/PaymentType.vue +27 -22
  34. package/src/views/order-settings/general/GeneralSetting.vue +2 -1
  35. package/src/views/order-settings/queue/QueueSetting.vue +2 -1
  36. package/src/views/order-settings/sms/SmsSetting.vue +2 -1
  37. package/dist/OrderSettingsView-q1TUGzEA.js +0 -32195
  38. package/dist/index-CEeonoD9.js +0 -19758
  39. package/dist/menu.dto-BlTCG2YJ.js +0 -120873
@@ -24,18 +24,21 @@ export declare const FdoBookingBase: z.ZodObject<{
24
24
  attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
25
25
  key: z.ZodString;
26
26
  type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
27
- entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
27
+ entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
28
28
  options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
29
+ readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
29
30
  }, "strip", z.ZodTypeAny, {
30
31
  options?: any[] | null | undefined;
32
+ readonly?: boolean | null | undefined;
31
33
  type: "string" | "number" | "boolean" | "date";
32
34
  key: string;
33
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
35
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
34
36
  }, {
35
37
  options?: any[] | null | undefined;
38
+ readonly?: boolean | null | undefined;
36
39
  type: "string" | "number" | "boolean" | "date";
37
40
  key: string;
38
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
41
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
39
42
  }>, "many">>>;
40
43
  pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
41
44
  _id: z.ZodEffects<z.ZodString, string, string>;
@@ -278,10 +281,48 @@ export declare const FdoBookingBase: z.ZodObject<{
278
281
  customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
279
282
  url: z.ZodString;
280
283
  restaurantIds: z.ZodArray<z.ZodString, "many">;
284
+ schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
285
+ enabled: z.ZodBoolean;
286
+ startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
287
+ endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
288
+ startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
289
+ endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
290
+ repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
291
+ }, "strip", z.ZodTypeAny, {
292
+ endTime?: string | null | undefined;
293
+ startTime?: string | null | undefined;
294
+ startDate?: string | null | undefined;
295
+ endDate?: string | null | undefined;
296
+ repeatDays?: string[] | null | undefined;
297
+ enabled: boolean;
298
+ }, {
299
+ endTime?: string | null | undefined;
300
+ startTime?: string | null | undefined;
301
+ startDate?: string | null | undefined;
302
+ endDate?: string | null | undefined;
303
+ repeatDays?: string[] | null | undefined;
304
+ enabled: boolean;
305
+ }>>>;
281
306
  }, "strip", z.ZodTypeAny, {
307
+ schedule?: {
308
+ endTime?: string | null | undefined;
309
+ startTime?: string | null | undefined;
310
+ startDate?: string | null | undefined;
311
+ endDate?: string | null | undefined;
312
+ repeatDays?: string[] | null | undefined;
313
+ enabled: boolean;
314
+ } | null | undefined;
282
315
  url: string;
283
316
  restaurantIds: string[];
284
317
  }, {
318
+ schedule?: {
319
+ endTime?: string | null | undefined;
320
+ startTime?: string | null | undefined;
321
+ startDate?: string | null | undefined;
322
+ endDate?: string | null | undefined;
323
+ repeatDays?: string[] | null | undefined;
324
+ enabled: boolean;
325
+ } | null | undefined;
285
326
  url: string;
286
327
  restaurantIds: string[];
287
328
  }>, "many">>>;
@@ -292,9 +333,10 @@ export declare const FdoBookingBase: z.ZodObject<{
292
333
  agentId?: string | null | undefined;
293
334
  attributeSettings?: {
294
335
  options?: any[] | null | undefined;
336
+ readonly?: boolean | null | undefined;
295
337
  type: "string" | "number" | "boolean" | "date";
296
338
  key: string;
297
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
339
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
298
340
  }[] | null | undefined;
299
341
  pf_agent?: {
300
342
  clickupId?: string | null | undefined;
@@ -343,6 +385,14 @@ export declare const FdoBookingBase: z.ZodObject<{
343
385
  contact: string;
344
386
  }[] | null | undefined;
345
387
  customerDisplayImages?: {
388
+ schedule?: {
389
+ endTime?: string | null | undefined;
390
+ startTime?: string | null | undefined;
391
+ startDate?: string | null | undefined;
392
+ endDate?: string | null | undefined;
393
+ repeatDays?: string[] | null | undefined;
394
+ enabled: boolean;
395
+ } | null | undefined;
346
396
  url: string;
347
397
  restaurantIds: string[];
348
398
  }[] | null | undefined;
@@ -359,9 +409,10 @@ export declare const FdoBookingBase: z.ZodObject<{
359
409
  agentId?: string | null | undefined;
360
410
  attributeSettings?: {
361
411
  options?: any[] | null | undefined;
412
+ readonly?: boolean | null | undefined;
362
413
  type: "string" | "number" | "boolean" | "date";
363
414
  key: string;
364
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
415
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
365
416
  }[] | null | undefined;
366
417
  pf_agent?: {
367
418
  clickupId?: string | null | undefined;
@@ -410,6 +461,14 @@ export declare const FdoBookingBase: z.ZodObject<{
410
461
  contact: string;
411
462
  }[] | null | undefined;
412
463
  customerDisplayImages?: {
464
+ schedule?: {
465
+ endTime?: string | null | undefined;
466
+ startTime?: string | null | undefined;
467
+ startDate?: string | null | undefined;
468
+ endDate?: string | null | undefined;
469
+ repeatDays?: string[] | null | undefined;
470
+ enabled: boolean;
471
+ } | null | undefined;
413
472
  url: string;
414
473
  restaurantIds: string[];
415
474
  }[] | null | undefined;
@@ -2014,9 +2073,10 @@ export declare const FdoBookingBase: z.ZodObject<{
2014
2073
  agentId?: string | null | undefined;
2015
2074
  attributeSettings?: {
2016
2075
  options?: any[] | null | undefined;
2076
+ readonly?: boolean | null | undefined;
2017
2077
  type: "string" | "number" | "boolean" | "date";
2018
2078
  key: string;
2019
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2079
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2020
2080
  }[] | null | undefined;
2021
2081
  pf_agent?: {
2022
2082
  clickupId?: string | null | undefined;
@@ -2065,6 +2125,14 @@ export declare const FdoBookingBase: z.ZodObject<{
2065
2125
  contact: string;
2066
2126
  }[] | null | undefined;
2067
2127
  customerDisplayImages?: {
2128
+ schedule?: {
2129
+ endTime?: string | null | undefined;
2130
+ startTime?: string | null | undefined;
2131
+ startDate?: string | null | undefined;
2132
+ endDate?: string | null | undefined;
2133
+ repeatDays?: string[] | null | undefined;
2134
+ enabled: boolean;
2135
+ } | null | undefined;
2068
2136
  url: string;
2069
2137
  restaurantIds: string[];
2070
2138
  }[] | null | undefined;
@@ -2346,9 +2414,10 @@ export declare const FdoBookingBase: z.ZodObject<{
2346
2414
  agentId?: string | null | undefined;
2347
2415
  attributeSettings?: {
2348
2416
  options?: any[] | null | undefined;
2417
+ readonly?: boolean | null | undefined;
2349
2418
  type: "string" | "number" | "boolean" | "date";
2350
2419
  key: string;
2351
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2420
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2352
2421
  }[] | null | undefined;
2353
2422
  pf_agent?: {
2354
2423
  clickupId?: string | null | undefined;
@@ -2397,6 +2466,14 @@ export declare const FdoBookingBase: z.ZodObject<{
2397
2466
  contact: string;
2398
2467
  }[] | null | undefined;
2399
2468
  customerDisplayImages?: {
2469
+ schedule?: {
2470
+ endTime?: string | null | undefined;
2471
+ startTime?: string | null | undefined;
2472
+ startDate?: string | null | undefined;
2473
+ endDate?: string | null | undefined;
2474
+ repeatDays?: string[] | null | undefined;
2475
+ enabled: boolean;
2476
+ } | null | undefined;
2400
2477
  url: string;
2401
2478
  restaurantIds: string[];
2402
2479
  }[] | null | undefined;
@@ -2749,9 +2826,10 @@ export declare const FdoBookingBase: z.ZodObject<{
2749
2826
  agentId?: string | null | undefined;
2750
2827
  attributeSettings?: {
2751
2828
  options?: any[] | null | undefined;
2829
+ readonly?: boolean | null | undefined;
2752
2830
  type: "string" | "number" | "boolean" | "date";
2753
2831
  key: string;
2754
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2832
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2755
2833
  }[] | null | undefined;
2756
2834
  pf_agent?: {
2757
2835
  clickupId?: string | null | undefined;
@@ -2800,6 +2878,14 @@ export declare const FdoBookingBase: z.ZodObject<{
2800
2878
  contact: string;
2801
2879
  }[] | null | undefined;
2802
2880
  customerDisplayImages?: {
2881
+ schedule?: {
2882
+ endTime?: string | null | undefined;
2883
+ startTime?: string | null | undefined;
2884
+ startDate?: string | null | undefined;
2885
+ endDate?: string | null | undefined;
2886
+ repeatDays?: string[] | null | undefined;
2887
+ enabled: boolean;
2888
+ } | null | undefined;
2803
2889
  url: string;
2804
2890
  restaurantIds: string[];
2805
2891
  }[] | null | undefined;
@@ -3108,9 +3194,10 @@ export declare const FdoBookingBase: z.ZodObject<{
3108
3194
  agentId?: string | null | undefined;
3109
3195
  attributeSettings?: {
3110
3196
  options?: any[] | null | undefined;
3197
+ readonly?: boolean | null | undefined;
3111
3198
  type: "string" | "number" | "boolean" | "date";
3112
3199
  key: string;
3113
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
3200
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
3114
3201
  }[] | null | undefined;
3115
3202
  pf_agent?: {
3116
3203
  clickupId?: string | null | undefined;
@@ -3159,6 +3246,14 @@ export declare const FdoBookingBase: z.ZodObject<{
3159
3246
  contact: string;
3160
3247
  }[] | null | undefined;
3161
3248
  customerDisplayImages?: {
3249
+ schedule?: {
3250
+ endTime?: string | null | undefined;
3251
+ startTime?: string | null | undefined;
3252
+ startDate?: string | null | undefined;
3253
+ endDate?: string | null | undefined;
3254
+ repeatDays?: string[] | null | undefined;
3255
+ enabled: boolean;
3256
+ } | null | undefined;
3162
3257
  url: string;
3163
3258
  restaurantIds: string[];
3164
3259
  }[] | null | undefined;
@@ -3339,18 +3434,21 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
3339
3434
  attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3340
3435
  key: z.ZodString;
3341
3436
  type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
3342
- entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
3437
+ entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
3343
3438
  options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
3439
+ readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3344
3440
  }, "strip", z.ZodTypeAny, {
3345
3441
  options?: any[] | null | undefined;
3442
+ readonly?: boolean | null | undefined;
3346
3443
  type: "string" | "number" | "boolean" | "date";
3347
3444
  key: string;
3348
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
3445
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
3349
3446
  }, {
3350
3447
  options?: any[] | null | undefined;
3448
+ readonly?: boolean | null | undefined;
3351
3449
  type: "string" | "number" | "boolean" | "date";
3352
3450
  key: string;
3353
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
3451
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
3354
3452
  }>, "many">>>;
3355
3453
  pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
3356
3454
  _id: z.ZodEffects<z.ZodString, string, string>;
@@ -3593,10 +3691,48 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
3593
3691
  customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3594
3692
  url: z.ZodString;
3595
3693
  restaurantIds: z.ZodArray<z.ZodString, "many">;
3694
+ schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3695
+ enabled: z.ZodBoolean;
3696
+ startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3697
+ endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3698
+ startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3699
+ endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3700
+ repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
3701
+ }, "strip", z.ZodTypeAny, {
3702
+ endTime?: string | null | undefined;
3703
+ startTime?: string | null | undefined;
3704
+ startDate?: string | null | undefined;
3705
+ endDate?: string | null | undefined;
3706
+ repeatDays?: string[] | null | undefined;
3707
+ enabled: boolean;
3708
+ }, {
3709
+ endTime?: string | null | undefined;
3710
+ startTime?: string | null | undefined;
3711
+ startDate?: string | null | undefined;
3712
+ endDate?: string | null | undefined;
3713
+ repeatDays?: string[] | null | undefined;
3714
+ enabled: boolean;
3715
+ }>>>;
3596
3716
  }, "strip", z.ZodTypeAny, {
3717
+ schedule?: {
3718
+ endTime?: string | null | undefined;
3719
+ startTime?: string | null | undefined;
3720
+ startDate?: string | null | undefined;
3721
+ endDate?: string | null | undefined;
3722
+ repeatDays?: string[] | null | undefined;
3723
+ enabled: boolean;
3724
+ } | null | undefined;
3597
3725
  url: string;
3598
3726
  restaurantIds: string[];
3599
3727
  }, {
3728
+ schedule?: {
3729
+ endTime?: string | null | undefined;
3730
+ startTime?: string | null | undefined;
3731
+ startDate?: string | null | undefined;
3732
+ endDate?: string | null | undefined;
3733
+ repeatDays?: string[] | null | undefined;
3734
+ enabled: boolean;
3735
+ } | null | undefined;
3600
3736
  url: string;
3601
3737
  restaurantIds: string[];
3602
3738
  }>, "many">>>;
@@ -3607,9 +3743,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
3607
3743
  agentId?: string | null | undefined;
3608
3744
  attributeSettings?: {
3609
3745
  options?: any[] | null | undefined;
3746
+ readonly?: boolean | null | undefined;
3610
3747
  type: "string" | "number" | "boolean" | "date";
3611
3748
  key: string;
3612
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
3749
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
3613
3750
  }[] | null | undefined;
3614
3751
  pf_agent?: {
3615
3752
  clickupId?: string | null | undefined;
@@ -3658,6 +3795,14 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
3658
3795
  contact: string;
3659
3796
  }[] | null | undefined;
3660
3797
  customerDisplayImages?: {
3798
+ schedule?: {
3799
+ endTime?: string | null | undefined;
3800
+ startTime?: string | null | undefined;
3801
+ startDate?: string | null | undefined;
3802
+ endDate?: string | null | undefined;
3803
+ repeatDays?: string[] | null | undefined;
3804
+ enabled: boolean;
3805
+ } | null | undefined;
3661
3806
  url: string;
3662
3807
  restaurantIds: string[];
3663
3808
  }[] | null | undefined;
@@ -3674,9 +3819,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
3674
3819
  agentId?: string | null | undefined;
3675
3820
  attributeSettings?: {
3676
3821
  options?: any[] | null | undefined;
3822
+ readonly?: boolean | null | undefined;
3677
3823
  type: "string" | "number" | "boolean" | "date";
3678
3824
  key: string;
3679
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
3825
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
3680
3826
  }[] | null | undefined;
3681
3827
  pf_agent?: {
3682
3828
  clickupId?: string | null | undefined;
@@ -3725,6 +3871,14 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
3725
3871
  contact: string;
3726
3872
  }[] | null | undefined;
3727
3873
  customerDisplayImages?: {
3874
+ schedule?: {
3875
+ endTime?: string | null | undefined;
3876
+ startTime?: string | null | undefined;
3877
+ startDate?: string | null | undefined;
3878
+ endDate?: string | null | undefined;
3879
+ repeatDays?: string[] | null | undefined;
3880
+ enabled: boolean;
3881
+ } | null | undefined;
3728
3882
  url: string;
3729
3883
  restaurantIds: string[];
3730
3884
  }[] | null | undefined;
@@ -5329,9 +5483,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
5329
5483
  agentId?: string | null | undefined;
5330
5484
  attributeSettings?: {
5331
5485
  options?: any[] | null | undefined;
5486
+ readonly?: boolean | null | undefined;
5332
5487
  type: "string" | "number" | "boolean" | "date";
5333
5488
  key: string;
5334
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
5489
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
5335
5490
  }[] | null | undefined;
5336
5491
  pf_agent?: {
5337
5492
  clickupId?: string | null | undefined;
@@ -5380,6 +5535,14 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
5380
5535
  contact: string;
5381
5536
  }[] | null | undefined;
5382
5537
  customerDisplayImages?: {
5538
+ schedule?: {
5539
+ endTime?: string | null | undefined;
5540
+ startTime?: string | null | undefined;
5541
+ startDate?: string | null | undefined;
5542
+ endDate?: string | null | undefined;
5543
+ repeatDays?: string[] | null | undefined;
5544
+ enabled: boolean;
5545
+ } | null | undefined;
5383
5546
  url: string;
5384
5547
  restaurantIds: string[];
5385
5548
  }[] | null | undefined;
@@ -5661,9 +5824,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
5661
5824
  agentId?: string | null | undefined;
5662
5825
  attributeSettings?: {
5663
5826
  options?: any[] | null | undefined;
5827
+ readonly?: boolean | null | undefined;
5664
5828
  type: "string" | "number" | "boolean" | "date";
5665
5829
  key: string;
5666
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
5830
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
5667
5831
  }[] | null | undefined;
5668
5832
  pf_agent?: {
5669
5833
  clickupId?: string | null | undefined;
@@ -5712,6 +5876,14 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
5712
5876
  contact: string;
5713
5877
  }[] | null | undefined;
5714
5878
  customerDisplayImages?: {
5879
+ schedule?: {
5880
+ endTime?: string | null | undefined;
5881
+ startTime?: string | null | undefined;
5882
+ startDate?: string | null | undefined;
5883
+ endDate?: string | null | undefined;
5884
+ repeatDays?: string[] | null | undefined;
5885
+ enabled: boolean;
5886
+ } | null | undefined;
5715
5887
  url: string;
5716
5888
  restaurantIds: string[];
5717
5889
  }[] | null | undefined;
@@ -6066,9 +6238,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
6066
6238
  agentId?: string | null | undefined;
6067
6239
  attributeSettings?: {
6068
6240
  options?: any[] | null | undefined;
6241
+ readonly?: boolean | null | undefined;
6069
6242
  type: "string" | "number" | "boolean" | "date";
6070
6243
  key: string;
6071
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
6244
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
6072
6245
  }[] | null | undefined;
6073
6246
  pf_agent?: {
6074
6247
  clickupId?: string | null | undefined;
@@ -6117,6 +6290,14 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
6117
6290
  contact: string;
6118
6291
  }[] | null | undefined;
6119
6292
  customerDisplayImages?: {
6293
+ schedule?: {
6294
+ endTime?: string | null | undefined;
6295
+ startTime?: string | null | undefined;
6296
+ startDate?: string | null | undefined;
6297
+ endDate?: string | null | undefined;
6298
+ repeatDays?: string[] | null | undefined;
6299
+ enabled: boolean;
6300
+ } | null | undefined;
6120
6301
  url: string;
6121
6302
  restaurantIds: string[];
6122
6303
  }[] | null | undefined;
@@ -6425,9 +6606,10 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
6425
6606
  agentId?: string | null | undefined;
6426
6607
  attributeSettings?: {
6427
6608
  options?: any[] | null | undefined;
6609
+ readonly?: boolean | null | undefined;
6428
6610
  type: "string" | "number" | "boolean" | "date";
6429
6611
  key: string;
6430
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
6612
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
6431
6613
  }[] | null | undefined;
6432
6614
  pf_agent?: {
6433
6615
  clickupId?: string | null | undefined;
@@ -6476,6 +6658,14 @@ export declare const FdoBookingQueue: z.ZodObject<z.extendShape<{
6476
6658
  contact: string;
6477
6659
  }[] | null | undefined;
6478
6660
  customerDisplayImages?: {
6661
+ schedule?: {
6662
+ endTime?: string | null | undefined;
6663
+ startTime?: string | null | undefined;
6664
+ startDate?: string | null | undefined;
6665
+ endDate?: string | null | undefined;
6666
+ repeatDays?: string[] | null | undefined;
6667
+ enabled: boolean;
6668
+ } | null | undefined;
6479
6669
  url: string;
6480
6670
  restaurantIds: string[];
6481
6671
  }[] | null | undefined;
@@ -6657,18 +6847,21 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
6657
6847
  attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
6658
6848
  key: z.ZodString;
6659
6849
  type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
6660
- entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
6850
+ entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
6661
6851
  options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
6852
+ readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
6662
6853
  }, "strip", z.ZodTypeAny, {
6663
6854
  options?: any[] | null | undefined;
6855
+ readonly?: boolean | null | undefined;
6664
6856
  type: "string" | "number" | "boolean" | "date";
6665
6857
  key: string;
6666
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
6858
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
6667
6859
  }, {
6668
6860
  options?: any[] | null | undefined;
6861
+ readonly?: boolean | null | undefined;
6669
6862
  type: "string" | "number" | "boolean" | "date";
6670
6863
  key: string;
6671
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
6864
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
6672
6865
  }>, "many">>>;
6673
6866
  pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
6674
6867
  _id: z.ZodEffects<z.ZodString, string, string>;
@@ -6911,10 +7104,48 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
6911
7104
  customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
6912
7105
  url: z.ZodString;
6913
7106
  restaurantIds: z.ZodArray<z.ZodString, "many">;
7107
+ schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7108
+ enabled: z.ZodBoolean;
7109
+ startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7110
+ endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7111
+ startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7112
+ endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7113
+ repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
7114
+ }, "strip", z.ZodTypeAny, {
7115
+ endTime?: string | null | undefined;
7116
+ startTime?: string | null | undefined;
7117
+ startDate?: string | null | undefined;
7118
+ endDate?: string | null | undefined;
7119
+ repeatDays?: string[] | null | undefined;
7120
+ enabled: boolean;
7121
+ }, {
7122
+ endTime?: string | null | undefined;
7123
+ startTime?: string | null | undefined;
7124
+ startDate?: string | null | undefined;
7125
+ endDate?: string | null | undefined;
7126
+ repeatDays?: string[] | null | undefined;
7127
+ enabled: boolean;
7128
+ }>>>;
6914
7129
  }, "strip", z.ZodTypeAny, {
7130
+ schedule?: {
7131
+ endTime?: string | null | undefined;
7132
+ startTime?: string | null | undefined;
7133
+ startDate?: string | null | undefined;
7134
+ endDate?: string | null | undefined;
7135
+ repeatDays?: string[] | null | undefined;
7136
+ enabled: boolean;
7137
+ } | null | undefined;
6915
7138
  url: string;
6916
7139
  restaurantIds: string[];
6917
7140
  }, {
7141
+ schedule?: {
7142
+ endTime?: string | null | undefined;
7143
+ startTime?: string | null | undefined;
7144
+ startDate?: string | null | undefined;
7145
+ endDate?: string | null | undefined;
7146
+ repeatDays?: string[] | null | undefined;
7147
+ enabled: boolean;
7148
+ } | null | undefined;
6918
7149
  url: string;
6919
7150
  restaurantIds: string[];
6920
7151
  }>, "many">>>;
@@ -6925,9 +7156,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
6925
7156
  agentId?: string | null | undefined;
6926
7157
  attributeSettings?: {
6927
7158
  options?: any[] | null | undefined;
7159
+ readonly?: boolean | null | undefined;
6928
7160
  type: "string" | "number" | "boolean" | "date";
6929
7161
  key: string;
6930
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
7162
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
6931
7163
  }[] | null | undefined;
6932
7164
  pf_agent?: {
6933
7165
  clickupId?: string | null | undefined;
@@ -6976,6 +7208,14 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
6976
7208
  contact: string;
6977
7209
  }[] | null | undefined;
6978
7210
  customerDisplayImages?: {
7211
+ schedule?: {
7212
+ endTime?: string | null | undefined;
7213
+ startTime?: string | null | undefined;
7214
+ startDate?: string | null | undefined;
7215
+ endDate?: string | null | undefined;
7216
+ repeatDays?: string[] | null | undefined;
7217
+ enabled: boolean;
7218
+ } | null | undefined;
6979
7219
  url: string;
6980
7220
  restaurantIds: string[];
6981
7221
  }[] | null | undefined;
@@ -6992,9 +7232,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
6992
7232
  agentId?: string | null | undefined;
6993
7233
  attributeSettings?: {
6994
7234
  options?: any[] | null | undefined;
7235
+ readonly?: boolean | null | undefined;
6995
7236
  type: "string" | "number" | "boolean" | "date";
6996
7237
  key: string;
6997
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
7238
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
6998
7239
  }[] | null | undefined;
6999
7240
  pf_agent?: {
7000
7241
  clickupId?: string | null | undefined;
@@ -7043,6 +7284,14 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
7043
7284
  contact: string;
7044
7285
  }[] | null | undefined;
7045
7286
  customerDisplayImages?: {
7287
+ schedule?: {
7288
+ endTime?: string | null | undefined;
7289
+ startTime?: string | null | undefined;
7290
+ startDate?: string | null | undefined;
7291
+ endDate?: string | null | undefined;
7292
+ repeatDays?: string[] | null | undefined;
7293
+ enabled: boolean;
7294
+ } | null | undefined;
7046
7295
  url: string;
7047
7296
  restaurantIds: string[];
7048
7297
  }[] | null | undefined;
@@ -8647,9 +8896,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
8647
8896
  agentId?: string | null | undefined;
8648
8897
  attributeSettings?: {
8649
8898
  options?: any[] | null | undefined;
8899
+ readonly?: boolean | null | undefined;
8650
8900
  type: "string" | "number" | "boolean" | "date";
8651
8901
  key: string;
8652
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
8902
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8653
8903
  }[] | null | undefined;
8654
8904
  pf_agent?: {
8655
8905
  clickupId?: string | null | undefined;
@@ -8698,6 +8948,14 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
8698
8948
  contact: string;
8699
8949
  }[] | null | undefined;
8700
8950
  customerDisplayImages?: {
8951
+ schedule?: {
8952
+ endTime?: string | null | undefined;
8953
+ startTime?: string | null | undefined;
8954
+ startDate?: string | null | undefined;
8955
+ endDate?: string | null | undefined;
8956
+ repeatDays?: string[] | null | undefined;
8957
+ enabled: boolean;
8958
+ } | null | undefined;
8701
8959
  url: string;
8702
8960
  restaurantIds: string[];
8703
8961
  }[] | null | undefined;
@@ -8979,9 +9237,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
8979
9237
  agentId?: string | null | undefined;
8980
9238
  attributeSettings?: {
8981
9239
  options?: any[] | null | undefined;
9240
+ readonly?: boolean | null | undefined;
8982
9241
  type: "string" | "number" | "boolean" | "date";
8983
9242
  key: string;
8984
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
9243
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8985
9244
  }[] | null | undefined;
8986
9245
  pf_agent?: {
8987
9246
  clickupId?: string | null | undefined;
@@ -9030,6 +9289,14 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
9030
9289
  contact: string;
9031
9290
  }[] | null | undefined;
9032
9291
  customerDisplayImages?: {
9292
+ schedule?: {
9293
+ endTime?: string | null | undefined;
9294
+ startTime?: string | null | undefined;
9295
+ startDate?: string | null | undefined;
9296
+ endDate?: string | null | undefined;
9297
+ repeatDays?: string[] | null | undefined;
9298
+ enabled: boolean;
9299
+ } | null | undefined;
9033
9300
  url: string;
9034
9301
  restaurantIds: string[];
9035
9302
  }[] | null | undefined;
@@ -9385,9 +9652,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
9385
9652
  agentId?: string | null | undefined;
9386
9653
  attributeSettings?: {
9387
9654
  options?: any[] | null | undefined;
9655
+ readonly?: boolean | null | undefined;
9388
9656
  type: "string" | "number" | "boolean" | "date";
9389
9657
  key: string;
9390
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
9658
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
9391
9659
  }[] | null | undefined;
9392
9660
  pf_agent?: {
9393
9661
  clickupId?: string | null | undefined;
@@ -9436,6 +9704,14 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
9436
9704
  contact: string;
9437
9705
  }[] | null | undefined;
9438
9706
  customerDisplayImages?: {
9707
+ schedule?: {
9708
+ endTime?: string | null | undefined;
9709
+ startTime?: string | null | undefined;
9710
+ startDate?: string | null | undefined;
9711
+ endDate?: string | null | undefined;
9712
+ repeatDays?: string[] | null | undefined;
9713
+ enabled: boolean;
9714
+ } | null | undefined;
9439
9715
  url: string;
9440
9716
  restaurantIds: string[];
9441
9717
  }[] | null | undefined;
@@ -9745,9 +10021,10 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
9745
10021
  agentId?: string | null | undefined;
9746
10022
  attributeSettings?: {
9747
10023
  options?: any[] | null | undefined;
10024
+ readonly?: boolean | null | undefined;
9748
10025
  type: "string" | "number" | "boolean" | "date";
9749
10026
  key: string;
9750
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
10027
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
9751
10028
  }[] | null | undefined;
9752
10029
  pf_agent?: {
9753
10030
  clickupId?: string | null | undefined;
@@ -9796,6 +10073,14 @@ export declare const FdoBookingReservation: z.ZodObject<z.extendShape<{
9796
10073
  contact: string;
9797
10074
  }[] | null | undefined;
9798
10075
  customerDisplayImages?: {
10076
+ schedule?: {
10077
+ endTime?: string | null | undefined;
10078
+ startTime?: string | null | undefined;
10079
+ startDate?: string | null | undefined;
10080
+ endDate?: string | null | undefined;
10081
+ repeatDays?: string[] | null | undefined;
10082
+ enabled: boolean;
10083
+ } | null | undefined;
9799
10084
  url: string;
9800
10085
  restaurantIds: string[];
9801
10086
  }[] | null | undefined;
@@ -9978,18 +10263,21 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
9978
10263
  attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
9979
10264
  key: z.ZodString;
9980
10265
  type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
9981
- entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
10266
+ entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
9982
10267
  options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
10268
+ readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
9983
10269
  }, "strip", z.ZodTypeAny, {
9984
10270
  options?: any[] | null | undefined;
10271
+ readonly?: boolean | null | undefined;
9985
10272
  type: "string" | "number" | "boolean" | "date";
9986
10273
  key: string;
9987
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
10274
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
9988
10275
  }, {
9989
10276
  options?: any[] | null | undefined;
10277
+ readonly?: boolean | null | undefined;
9990
10278
  type: "string" | "number" | "boolean" | "date";
9991
10279
  key: string;
9992
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
10280
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
9993
10281
  }>, "many">>>;
9994
10282
  pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
9995
10283
  _id: z.ZodEffects<z.ZodString, string, string>;
@@ -10232,10 +10520,48 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
10232
10520
  customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
10233
10521
  url: z.ZodString;
10234
10522
  restaurantIds: z.ZodArray<z.ZodString, "many">;
10523
+ schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
10524
+ enabled: z.ZodBoolean;
10525
+ startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10526
+ endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10527
+ startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10528
+ endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10529
+ repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
10530
+ }, "strip", z.ZodTypeAny, {
10531
+ endTime?: string | null | undefined;
10532
+ startTime?: string | null | undefined;
10533
+ startDate?: string | null | undefined;
10534
+ endDate?: string | null | undefined;
10535
+ repeatDays?: string[] | null | undefined;
10536
+ enabled: boolean;
10537
+ }, {
10538
+ endTime?: string | null | undefined;
10539
+ startTime?: string | null | undefined;
10540
+ startDate?: string | null | undefined;
10541
+ endDate?: string | null | undefined;
10542
+ repeatDays?: string[] | null | undefined;
10543
+ enabled: boolean;
10544
+ }>>>;
10235
10545
  }, "strip", z.ZodTypeAny, {
10546
+ schedule?: {
10547
+ endTime?: string | null | undefined;
10548
+ startTime?: string | null | undefined;
10549
+ startDate?: string | null | undefined;
10550
+ endDate?: string | null | undefined;
10551
+ repeatDays?: string[] | null | undefined;
10552
+ enabled: boolean;
10553
+ } | null | undefined;
10236
10554
  url: string;
10237
10555
  restaurantIds: string[];
10238
10556
  }, {
10557
+ schedule?: {
10558
+ endTime?: string | null | undefined;
10559
+ startTime?: string | null | undefined;
10560
+ startDate?: string | null | undefined;
10561
+ endDate?: string | null | undefined;
10562
+ repeatDays?: string[] | null | undefined;
10563
+ enabled: boolean;
10564
+ } | null | undefined;
10239
10565
  url: string;
10240
10566
  restaurantIds: string[];
10241
10567
  }>, "many">>>;
@@ -10246,9 +10572,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
10246
10572
  agentId?: string | null | undefined;
10247
10573
  attributeSettings?: {
10248
10574
  options?: any[] | null | undefined;
10575
+ readonly?: boolean | null | undefined;
10249
10576
  type: "string" | "number" | "boolean" | "date";
10250
10577
  key: string;
10251
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
10578
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
10252
10579
  }[] | null | undefined;
10253
10580
  pf_agent?: {
10254
10581
  clickupId?: string | null | undefined;
@@ -10297,6 +10624,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
10297
10624
  contact: string;
10298
10625
  }[] | null | undefined;
10299
10626
  customerDisplayImages?: {
10627
+ schedule?: {
10628
+ endTime?: string | null | undefined;
10629
+ startTime?: string | null | undefined;
10630
+ startDate?: string | null | undefined;
10631
+ endDate?: string | null | undefined;
10632
+ repeatDays?: string[] | null | undefined;
10633
+ enabled: boolean;
10634
+ } | null | undefined;
10300
10635
  url: string;
10301
10636
  restaurantIds: string[];
10302
10637
  }[] | null | undefined;
@@ -10313,9 +10648,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
10313
10648
  agentId?: string | null | undefined;
10314
10649
  attributeSettings?: {
10315
10650
  options?: any[] | null | undefined;
10651
+ readonly?: boolean | null | undefined;
10316
10652
  type: "string" | "number" | "boolean" | "date";
10317
10653
  key: string;
10318
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
10654
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
10319
10655
  }[] | null | undefined;
10320
10656
  pf_agent?: {
10321
10657
  clickupId?: string | null | undefined;
@@ -10364,6 +10700,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
10364
10700
  contact: string;
10365
10701
  }[] | null | undefined;
10366
10702
  customerDisplayImages?: {
10703
+ schedule?: {
10704
+ endTime?: string | null | undefined;
10705
+ startTime?: string | null | undefined;
10706
+ startDate?: string | null | undefined;
10707
+ endDate?: string | null | undefined;
10708
+ repeatDays?: string[] | null | undefined;
10709
+ enabled: boolean;
10710
+ } | null | undefined;
10367
10711
  url: string;
10368
10712
  restaurantIds: string[];
10369
10713
  }[] | null | undefined;
@@ -11968,9 +12312,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
11968
12312
  agentId?: string | null | undefined;
11969
12313
  attributeSettings?: {
11970
12314
  options?: any[] | null | undefined;
12315
+ readonly?: boolean | null | undefined;
11971
12316
  type: "string" | "number" | "boolean" | "date";
11972
12317
  key: string;
11973
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
12318
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
11974
12319
  }[] | null | undefined;
11975
12320
  pf_agent?: {
11976
12321
  clickupId?: string | null | undefined;
@@ -12019,6 +12364,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
12019
12364
  contact: string;
12020
12365
  }[] | null | undefined;
12021
12366
  customerDisplayImages?: {
12367
+ schedule?: {
12368
+ endTime?: string | null | undefined;
12369
+ startTime?: string | null | undefined;
12370
+ startDate?: string | null | undefined;
12371
+ endDate?: string | null | undefined;
12372
+ repeatDays?: string[] | null | undefined;
12373
+ enabled: boolean;
12374
+ } | null | undefined;
12022
12375
  url: string;
12023
12376
  restaurantIds: string[];
12024
12377
  }[] | null | undefined;
@@ -12300,9 +12653,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
12300
12653
  agentId?: string | null | undefined;
12301
12654
  attributeSettings?: {
12302
12655
  options?: any[] | null | undefined;
12656
+ readonly?: boolean | null | undefined;
12303
12657
  type: "string" | "number" | "boolean" | "date";
12304
12658
  key: string;
12305
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
12659
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
12306
12660
  }[] | null | undefined;
12307
12661
  pf_agent?: {
12308
12662
  clickupId?: string | null | undefined;
@@ -12351,6 +12705,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
12351
12705
  contact: string;
12352
12706
  }[] | null | undefined;
12353
12707
  customerDisplayImages?: {
12708
+ schedule?: {
12709
+ endTime?: string | null | undefined;
12710
+ startTime?: string | null | undefined;
12711
+ startDate?: string | null | undefined;
12712
+ endDate?: string | null | undefined;
12713
+ repeatDays?: string[] | null | undefined;
12714
+ enabled: boolean;
12715
+ } | null | undefined;
12354
12716
  url: string;
12355
12717
  restaurantIds: string[];
12356
12718
  }[] | null | undefined;
@@ -12705,9 +13067,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
12705
13067
  agentId?: string | null | undefined;
12706
13068
  attributeSettings?: {
12707
13069
  options?: any[] | null | undefined;
13070
+ readonly?: boolean | null | undefined;
12708
13071
  type: "string" | "number" | "boolean" | "date";
12709
13072
  key: string;
12710
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
13073
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
12711
13074
  }[] | null | undefined;
12712
13075
  pf_agent?: {
12713
13076
  clickupId?: string | null | undefined;
@@ -12756,6 +13119,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
12756
13119
  contact: string;
12757
13120
  }[] | null | undefined;
12758
13121
  customerDisplayImages?: {
13122
+ schedule?: {
13123
+ endTime?: string | null | undefined;
13124
+ startTime?: string | null | undefined;
13125
+ startDate?: string | null | undefined;
13126
+ endDate?: string | null | undefined;
13127
+ repeatDays?: string[] | null | undefined;
13128
+ enabled: boolean;
13129
+ } | null | undefined;
12759
13130
  url: string;
12760
13131
  restaurantIds: string[];
12761
13132
  }[] | null | undefined;
@@ -13064,9 +13435,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13064
13435
  agentId?: string | null | undefined;
13065
13436
  attributeSettings?: {
13066
13437
  options?: any[] | null | undefined;
13438
+ readonly?: boolean | null | undefined;
13067
13439
  type: "string" | "number" | "boolean" | "date";
13068
13440
  key: string;
13069
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
13441
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
13070
13442
  }[] | null | undefined;
13071
13443
  pf_agent?: {
13072
13444
  clickupId?: string | null | undefined;
@@ -13115,6 +13487,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13115
13487
  contact: string;
13116
13488
  }[] | null | undefined;
13117
13489
  customerDisplayImages?: {
13490
+ schedule?: {
13491
+ endTime?: string | null | undefined;
13492
+ startTime?: string | null | undefined;
13493
+ startDate?: string | null | undefined;
13494
+ endDate?: string | null | undefined;
13495
+ repeatDays?: string[] | null | undefined;
13496
+ enabled: boolean;
13497
+ } | null | undefined;
13118
13498
  url: string;
13119
13499
  restaurantIds: string[];
13120
13500
  }[] | null | undefined;
@@ -13294,18 +13674,21 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13294
13674
  attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
13295
13675
  key: z.ZodString;
13296
13676
  type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
13297
- entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
13677
+ entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
13298
13678
  options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
13679
+ readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
13299
13680
  }, "strip", z.ZodTypeAny, {
13300
13681
  options?: any[] | null | undefined;
13682
+ readonly?: boolean | null | undefined;
13301
13683
  type: "string" | "number" | "boolean" | "date";
13302
13684
  key: string;
13303
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
13685
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
13304
13686
  }, {
13305
13687
  options?: any[] | null | undefined;
13688
+ readonly?: boolean | null | undefined;
13306
13689
  type: "string" | "number" | "boolean" | "date";
13307
13690
  key: string;
13308
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
13691
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
13309
13692
  }>, "many">>>;
13310
13693
  pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
13311
13694
  _id: z.ZodEffects<z.ZodString, string, string>;
@@ -13548,10 +13931,48 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13548
13931
  customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
13549
13932
  url: z.ZodString;
13550
13933
  restaurantIds: z.ZodArray<z.ZodString, "many">;
13934
+ schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
13935
+ enabled: z.ZodBoolean;
13936
+ startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13937
+ endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13938
+ startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13939
+ endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13940
+ repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
13941
+ }, "strip", z.ZodTypeAny, {
13942
+ endTime?: string | null | undefined;
13943
+ startTime?: string | null | undefined;
13944
+ startDate?: string | null | undefined;
13945
+ endDate?: string | null | undefined;
13946
+ repeatDays?: string[] | null | undefined;
13947
+ enabled: boolean;
13948
+ }, {
13949
+ endTime?: string | null | undefined;
13950
+ startTime?: string | null | undefined;
13951
+ startDate?: string | null | undefined;
13952
+ endDate?: string | null | undefined;
13953
+ repeatDays?: string[] | null | undefined;
13954
+ enabled: boolean;
13955
+ }>>>;
13551
13956
  }, "strip", z.ZodTypeAny, {
13957
+ schedule?: {
13958
+ endTime?: string | null | undefined;
13959
+ startTime?: string | null | undefined;
13960
+ startDate?: string | null | undefined;
13961
+ endDate?: string | null | undefined;
13962
+ repeatDays?: string[] | null | undefined;
13963
+ enabled: boolean;
13964
+ } | null | undefined;
13552
13965
  url: string;
13553
13966
  restaurantIds: string[];
13554
13967
  }, {
13968
+ schedule?: {
13969
+ endTime?: string | null | undefined;
13970
+ startTime?: string | null | undefined;
13971
+ startDate?: string | null | undefined;
13972
+ endDate?: string | null | undefined;
13973
+ repeatDays?: string[] | null | undefined;
13974
+ enabled: boolean;
13975
+ } | null | undefined;
13555
13976
  url: string;
13556
13977
  restaurantIds: string[];
13557
13978
  }>, "many">>>;
@@ -13562,9 +13983,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13562
13983
  agentId?: string | null | undefined;
13563
13984
  attributeSettings?: {
13564
13985
  options?: any[] | null | undefined;
13986
+ readonly?: boolean | null | undefined;
13565
13987
  type: "string" | "number" | "boolean" | "date";
13566
13988
  key: string;
13567
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
13989
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
13568
13990
  }[] | null | undefined;
13569
13991
  pf_agent?: {
13570
13992
  clickupId?: string | null | undefined;
@@ -13613,6 +14035,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13613
14035
  contact: string;
13614
14036
  }[] | null | undefined;
13615
14037
  customerDisplayImages?: {
14038
+ schedule?: {
14039
+ endTime?: string | null | undefined;
14040
+ startTime?: string | null | undefined;
14041
+ startDate?: string | null | undefined;
14042
+ endDate?: string | null | undefined;
14043
+ repeatDays?: string[] | null | undefined;
14044
+ enabled: boolean;
14045
+ } | null | undefined;
13616
14046
  url: string;
13617
14047
  restaurantIds: string[];
13618
14048
  }[] | null | undefined;
@@ -13629,9 +14059,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13629
14059
  agentId?: string | null | undefined;
13630
14060
  attributeSettings?: {
13631
14061
  options?: any[] | null | undefined;
14062
+ readonly?: boolean | null | undefined;
13632
14063
  type: "string" | "number" | "boolean" | "date";
13633
14064
  key: string;
13634
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
14065
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
13635
14066
  }[] | null | undefined;
13636
14067
  pf_agent?: {
13637
14068
  clickupId?: string | null | undefined;
@@ -13680,6 +14111,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
13680
14111
  contact: string;
13681
14112
  }[] | null | undefined;
13682
14113
  customerDisplayImages?: {
14114
+ schedule?: {
14115
+ endTime?: string | null | undefined;
14116
+ startTime?: string | null | undefined;
14117
+ startDate?: string | null | undefined;
14118
+ endDate?: string | null | undefined;
14119
+ repeatDays?: string[] | null | undefined;
14120
+ enabled: boolean;
14121
+ } | null | undefined;
13683
14122
  url: string;
13684
14123
  restaurantIds: string[];
13685
14124
  }[] | null | undefined;
@@ -15284,9 +15723,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
15284
15723
  agentId?: string | null | undefined;
15285
15724
  attributeSettings?: {
15286
15725
  options?: any[] | null | undefined;
15726
+ readonly?: boolean | null | undefined;
15287
15727
  type: "string" | "number" | "boolean" | "date";
15288
15728
  key: string;
15289
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
15729
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
15290
15730
  }[] | null | undefined;
15291
15731
  pf_agent?: {
15292
15732
  clickupId?: string | null | undefined;
@@ -15335,6 +15775,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
15335
15775
  contact: string;
15336
15776
  }[] | null | undefined;
15337
15777
  customerDisplayImages?: {
15778
+ schedule?: {
15779
+ endTime?: string | null | undefined;
15780
+ startTime?: string | null | undefined;
15781
+ startDate?: string | null | undefined;
15782
+ endDate?: string | null | undefined;
15783
+ repeatDays?: string[] | null | undefined;
15784
+ enabled: boolean;
15785
+ } | null | undefined;
15338
15786
  url: string;
15339
15787
  restaurantIds: string[];
15340
15788
  }[] | null | undefined;
@@ -15616,9 +16064,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
15616
16064
  agentId?: string | null | undefined;
15617
16065
  attributeSettings?: {
15618
16066
  options?: any[] | null | undefined;
16067
+ readonly?: boolean | null | undefined;
15619
16068
  type: "string" | "number" | "boolean" | "date";
15620
16069
  key: string;
15621
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
16070
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
15622
16071
  }[] | null | undefined;
15623
16072
  pf_agent?: {
15624
16073
  clickupId?: string | null | undefined;
@@ -15667,6 +16116,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
15667
16116
  contact: string;
15668
16117
  }[] | null | undefined;
15669
16118
  customerDisplayImages?: {
16119
+ schedule?: {
16120
+ endTime?: string | null | undefined;
16121
+ startTime?: string | null | undefined;
16122
+ startDate?: string | null | undefined;
16123
+ endDate?: string | null | undefined;
16124
+ repeatDays?: string[] | null | undefined;
16125
+ enabled: boolean;
16126
+ } | null | undefined;
15670
16127
  url: string;
15671
16128
  restaurantIds: string[];
15672
16129
  }[] | null | undefined;
@@ -16022,9 +16479,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
16022
16479
  agentId?: string | null | undefined;
16023
16480
  attributeSettings?: {
16024
16481
  options?: any[] | null | undefined;
16482
+ readonly?: boolean | null | undefined;
16025
16483
  type: "string" | "number" | "boolean" | "date";
16026
16484
  key: string;
16027
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
16485
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
16028
16486
  }[] | null | undefined;
16029
16487
  pf_agent?: {
16030
16488
  clickupId?: string | null | undefined;
@@ -16073,6 +16531,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
16073
16531
  contact: string;
16074
16532
  }[] | null | undefined;
16075
16533
  customerDisplayImages?: {
16534
+ schedule?: {
16535
+ endTime?: string | null | undefined;
16536
+ startTime?: string | null | undefined;
16537
+ startDate?: string | null | undefined;
16538
+ endDate?: string | null | undefined;
16539
+ repeatDays?: string[] | null | undefined;
16540
+ enabled: boolean;
16541
+ } | null | undefined;
16076
16542
  url: string;
16077
16543
  restaurantIds: string[];
16078
16544
  }[] | null | undefined;
@@ -16382,9 +16848,10 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
16382
16848
  agentId?: string | null | undefined;
16383
16849
  attributeSettings?: {
16384
16850
  options?: any[] | null | undefined;
16851
+ readonly?: boolean | null | undefined;
16385
16852
  type: "string" | "number" | "boolean" | "date";
16386
16853
  key: string;
16387
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
16854
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
16388
16855
  }[] | null | undefined;
16389
16856
  pf_agent?: {
16390
16857
  clickupId?: string | null | undefined;
@@ -16433,6 +16900,14 @@ export declare const FdoBooking: z.ZodDiscriminatedUnion<"type", z.Primitive, z.
16433
16900
  contact: string;
16434
16901
  }[] | null | undefined;
16435
16902
  customerDisplayImages?: {
16903
+ schedule?: {
16904
+ endTime?: string | null | undefined;
16905
+ startTime?: string | null | undefined;
16906
+ startDate?: string | null | undefined;
16907
+ endDate?: string | null | undefined;
16908
+ repeatDays?: string[] | null | undefined;
16909
+ enabled: boolean;
16910
+ } | null | undefined;
16436
16911
  url: string;
16437
16912
  restaurantIds: string[];
16438
16913
  }[] | null | undefined;