@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.
- package/dist/{KioskDevicesView-DRgZJgHO.js → KioskDevicesView-D-RZUu0W.js} +1 -1
- 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
- package/dist/{KioskSettingView-DVN4bTT4.js → KioskSettingView-BgDVaUU6.js} +3 -3
- package/dist/{KioskView-CmHhShkd.js → KioskView-CBDEN6lZ.js} +4 -4
- package/dist/OrderSettingsView-CrDwgef9.js +56883 -0
- package/dist/{app-D4H4nuew.js → app-BMblFPtQ.js} +2388 -2321
- package/dist/app.js +3 -3
- package/dist/{dayjs.min-DOI5QB21.js → dayjs.min-0LOWyVEQ.js} +1 -1
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +30 -3
- package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +20 -2
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/index-D5Ao4tWD.js +19656 -0
- package/dist/{index-BdJJKX0e.js → index-FP2iiNEg.js} +3 -3
- package/dist/menu.dto-BdFq_BB_.js +96924 -0
- package/dist/package/entity/booking/booking.do.d.ts +520 -45
- package/dist/package/entity/delivery/delivery.dto.d.ts +104 -9
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +114 -19
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +225 -45
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +426 -80
- package/dist/package/entity/member/member.dto.d.ts +84 -7
- package/dist/package/entity/order/order.dto.d.ts +112 -17
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +104 -9
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +104 -9
- package/dist/package/entity/order-platform/order-platform.dto.d.ts +75 -15
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +104 -9
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +120 -0
- package/dist/package/entity/queue/queue.dto.d.ts +6 -6
- package/package.json +3 -2
- package/src/views/order-settings/delivery/DeliverySetting.vue +2 -1
- package/src/views/order-settings/delivery/inhouse/CurrencyInput.vue +6 -5
- package/src/views/order-settings/delivery/inhouse/ZoneDialog.vue +8 -4
- package/src/views/order-settings/dine-in/DineInSetting.vue +4 -6
- package/src/views/order-settings/dine-in/PaymentType.vue +27 -22
- package/src/views/order-settings/general/GeneralSetting.vue +2 -1
- package/src/views/order-settings/queue/QueueSetting.vue +2 -1
- package/src/views/order-settings/sms/SmsSetting.vue +2 -1
- package/dist/OrderSettingsView-q1TUGzEA.js +0 -32195
- package/dist/index-CEeonoD9.js +0 -19758
- package/dist/menu.dto-BlTCG2YJ.js +0 -120873
|
@@ -828,18 +828,21 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
828
828
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
829
829
|
key: z.ZodString;
|
|
830
830
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
831
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"
|
|
831
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
|
|
832
832
|
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
833
|
+
readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
833
834
|
}, "strip", z.ZodTypeAny, {
|
|
834
835
|
options?: any[] | null | undefined;
|
|
836
|
+
readonly?: boolean | null | undefined;
|
|
835
837
|
type: "string" | "number" | "boolean" | "date";
|
|
836
838
|
key: string;
|
|
837
|
-
entity: "restaurant" | "item" | "group" | "
|
|
839
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
838
840
|
}, {
|
|
839
841
|
options?: any[] | null | undefined;
|
|
842
|
+
readonly?: boolean | null | undefined;
|
|
840
843
|
type: "string" | "number" | "boolean" | "date";
|
|
841
844
|
key: string;
|
|
842
|
-
entity: "restaurant" | "item" | "group" | "
|
|
845
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
843
846
|
}>, "many">>>;
|
|
844
847
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
845
848
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1082,10 +1085,48 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1082
1085
|
customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1083
1086
|
url: z.ZodString;
|
|
1084
1087
|
restaurantIds: z.ZodArray<z.ZodString, "many">;
|
|
1088
|
+
schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1089
|
+
enabled: z.ZodBoolean;
|
|
1090
|
+
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1091
|
+
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1092
|
+
startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1093
|
+
endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1094
|
+
repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1095
|
+
}, "strip", z.ZodTypeAny, {
|
|
1096
|
+
endTime?: string | null | undefined;
|
|
1097
|
+
startTime?: string | null | undefined;
|
|
1098
|
+
startDate?: string | null | undefined;
|
|
1099
|
+
endDate?: string | null | undefined;
|
|
1100
|
+
repeatDays?: string[] | null | undefined;
|
|
1101
|
+
enabled: boolean;
|
|
1102
|
+
}, {
|
|
1103
|
+
endTime?: string | null | undefined;
|
|
1104
|
+
startTime?: string | null | undefined;
|
|
1105
|
+
startDate?: string | null | undefined;
|
|
1106
|
+
endDate?: string | null | undefined;
|
|
1107
|
+
repeatDays?: string[] | null | undefined;
|
|
1108
|
+
enabled: boolean;
|
|
1109
|
+
}>>>;
|
|
1085
1110
|
}, "strip", z.ZodTypeAny, {
|
|
1111
|
+
schedule?: {
|
|
1112
|
+
endTime?: string | null | undefined;
|
|
1113
|
+
startTime?: string | null | undefined;
|
|
1114
|
+
startDate?: string | null | undefined;
|
|
1115
|
+
endDate?: string | null | undefined;
|
|
1116
|
+
repeatDays?: string[] | null | undefined;
|
|
1117
|
+
enabled: boolean;
|
|
1118
|
+
} | null | undefined;
|
|
1086
1119
|
url: string;
|
|
1087
1120
|
restaurantIds: string[];
|
|
1088
1121
|
}, {
|
|
1122
|
+
schedule?: {
|
|
1123
|
+
endTime?: string | null | undefined;
|
|
1124
|
+
startTime?: string | null | undefined;
|
|
1125
|
+
startDate?: string | null | undefined;
|
|
1126
|
+
endDate?: string | null | undefined;
|
|
1127
|
+
repeatDays?: string[] | null | undefined;
|
|
1128
|
+
enabled: boolean;
|
|
1129
|
+
} | null | undefined;
|
|
1089
1130
|
url: string;
|
|
1090
1131
|
restaurantIds: string[];
|
|
1091
1132
|
}>, "many">>>;
|
|
@@ -1096,9 +1137,10 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1096
1137
|
agentId?: string | null | undefined;
|
|
1097
1138
|
attributeSettings?: {
|
|
1098
1139
|
options?: any[] | null | undefined;
|
|
1140
|
+
readonly?: boolean | null | undefined;
|
|
1099
1141
|
type: "string" | "number" | "boolean" | "date";
|
|
1100
1142
|
key: string;
|
|
1101
|
-
entity: "restaurant" | "item" | "group" | "
|
|
1143
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
1102
1144
|
}[] | null | undefined;
|
|
1103
1145
|
pf_agent?: {
|
|
1104
1146
|
clickupId?: string | null | undefined;
|
|
@@ -1147,6 +1189,14 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1147
1189
|
contact: string;
|
|
1148
1190
|
}[] | null | undefined;
|
|
1149
1191
|
customerDisplayImages?: {
|
|
1192
|
+
schedule?: {
|
|
1193
|
+
endTime?: string | null | undefined;
|
|
1194
|
+
startTime?: string | null | undefined;
|
|
1195
|
+
startDate?: string | null | undefined;
|
|
1196
|
+
endDate?: string | null | undefined;
|
|
1197
|
+
repeatDays?: string[] | null | undefined;
|
|
1198
|
+
enabled: boolean;
|
|
1199
|
+
} | null | undefined;
|
|
1150
1200
|
url: string;
|
|
1151
1201
|
restaurantIds: string[];
|
|
1152
1202
|
}[] | null | undefined;
|
|
@@ -1163,9 +1213,10 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1163
1213
|
agentId?: string | null | undefined;
|
|
1164
1214
|
attributeSettings?: {
|
|
1165
1215
|
options?: any[] | null | undefined;
|
|
1216
|
+
readonly?: boolean | null | undefined;
|
|
1166
1217
|
type: "string" | "number" | "boolean" | "date";
|
|
1167
1218
|
key: string;
|
|
1168
|
-
entity: "restaurant" | "item" | "group" | "
|
|
1219
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
1169
1220
|
}[] | null | undefined;
|
|
1170
1221
|
pf_agent?: {
|
|
1171
1222
|
clickupId?: string | null | undefined;
|
|
@@ -1214,6 +1265,14 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
1214
1265
|
contact: string;
|
|
1215
1266
|
}[] | null | undefined;
|
|
1216
1267
|
customerDisplayImages?: {
|
|
1268
|
+
schedule?: {
|
|
1269
|
+
endTime?: string | null | undefined;
|
|
1270
|
+
startTime?: string | null | undefined;
|
|
1271
|
+
startDate?: string | null | undefined;
|
|
1272
|
+
endDate?: string | null | undefined;
|
|
1273
|
+
repeatDays?: string[] | null | undefined;
|
|
1274
|
+
enabled: boolean;
|
|
1275
|
+
} | null | undefined;
|
|
1217
1276
|
url: string;
|
|
1218
1277
|
restaurantIds: string[];
|
|
1219
1278
|
}[] | null | undefined;
|
|
@@ -2818,9 +2877,10 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2818
2877
|
agentId?: string | null | undefined;
|
|
2819
2878
|
attributeSettings?: {
|
|
2820
2879
|
options?: any[] | null | undefined;
|
|
2880
|
+
readonly?: boolean | null | undefined;
|
|
2821
2881
|
type: "string" | "number" | "boolean" | "date";
|
|
2822
2882
|
key: string;
|
|
2823
|
-
entity: "restaurant" | "item" | "group" | "
|
|
2883
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
2824
2884
|
}[] | null | undefined;
|
|
2825
2885
|
pf_agent?: {
|
|
2826
2886
|
clickupId?: string | null | undefined;
|
|
@@ -2869,6 +2929,14 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2869
2929
|
contact: string;
|
|
2870
2930
|
}[] | null | undefined;
|
|
2871
2931
|
customerDisplayImages?: {
|
|
2932
|
+
schedule?: {
|
|
2933
|
+
endTime?: string | null | undefined;
|
|
2934
|
+
startTime?: string | null | undefined;
|
|
2935
|
+
startDate?: string | null | undefined;
|
|
2936
|
+
endDate?: string | null | undefined;
|
|
2937
|
+
repeatDays?: string[] | null | undefined;
|
|
2938
|
+
enabled: boolean;
|
|
2939
|
+
} | null | undefined;
|
|
2872
2940
|
url: string;
|
|
2873
2941
|
restaurantIds: string[];
|
|
2874
2942
|
}[] | null | undefined;
|
|
@@ -3150,9 +3218,10 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3150
3218
|
agentId?: string | null | undefined;
|
|
3151
3219
|
attributeSettings?: {
|
|
3152
3220
|
options?: any[] | null | undefined;
|
|
3221
|
+
readonly?: boolean | null | undefined;
|
|
3153
3222
|
type: "string" | "number" | "boolean" | "date";
|
|
3154
3223
|
key: string;
|
|
3155
|
-
entity: "restaurant" | "item" | "group" | "
|
|
3224
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
3156
3225
|
}[] | null | undefined;
|
|
3157
3226
|
pf_agent?: {
|
|
3158
3227
|
clickupId?: string | null | undefined;
|
|
@@ -3201,6 +3270,14 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3201
3270
|
contact: string;
|
|
3202
3271
|
}[] | null | undefined;
|
|
3203
3272
|
customerDisplayImages?: {
|
|
3273
|
+
schedule?: {
|
|
3274
|
+
endTime?: string | null | undefined;
|
|
3275
|
+
startTime?: string | null | undefined;
|
|
3276
|
+
startDate?: string | null | undefined;
|
|
3277
|
+
endDate?: string | null | undefined;
|
|
3278
|
+
repeatDays?: string[] | null | undefined;
|
|
3279
|
+
enabled: boolean;
|
|
3280
|
+
} | null | undefined;
|
|
3204
3281
|
url: string;
|
|
3205
3282
|
restaurantIds: string[];
|
|
3206
3283
|
}[] | null | undefined;
|
|
@@ -3484,9 +3561,10 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3484
3561
|
agentId?: string | null | undefined;
|
|
3485
3562
|
attributeSettings?: {
|
|
3486
3563
|
options?: any[] | null | undefined;
|
|
3564
|
+
readonly?: boolean | null | undefined;
|
|
3487
3565
|
type: "string" | "number" | "boolean" | "date";
|
|
3488
3566
|
key: string;
|
|
3489
|
-
entity: "restaurant" | "item" | "group" | "
|
|
3567
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
3490
3568
|
}[] | null | undefined;
|
|
3491
3569
|
pf_agent?: {
|
|
3492
3570
|
clickupId?: string | null | undefined;
|
|
@@ -3535,6 +3613,14 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3535
3613
|
contact: string;
|
|
3536
3614
|
}[] | null | undefined;
|
|
3537
3615
|
customerDisplayImages?: {
|
|
3616
|
+
schedule?: {
|
|
3617
|
+
endTime?: string | null | undefined;
|
|
3618
|
+
startTime?: string | null | undefined;
|
|
3619
|
+
startDate?: string | null | undefined;
|
|
3620
|
+
endDate?: string | null | undefined;
|
|
3621
|
+
repeatDays?: string[] | null | undefined;
|
|
3622
|
+
enabled: boolean;
|
|
3623
|
+
} | null | undefined;
|
|
3538
3624
|
url: string;
|
|
3539
3625
|
restaurantIds: string[];
|
|
3540
3626
|
}[] | null | undefined;
|
|
@@ -3975,9 +4061,10 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
3975
4061
|
agentId?: string | null | undefined;
|
|
3976
4062
|
attributeSettings?: {
|
|
3977
4063
|
options?: any[] | null | undefined;
|
|
4064
|
+
readonly?: boolean | null | undefined;
|
|
3978
4065
|
type: "string" | "number" | "boolean" | "date";
|
|
3979
4066
|
key: string;
|
|
3980
|
-
entity: "restaurant" | "item" | "group" | "
|
|
4067
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
3981
4068
|
}[] | null | undefined;
|
|
3982
4069
|
pf_agent?: {
|
|
3983
4070
|
clickupId?: string | null | undefined;
|
|
@@ -4026,6 +4113,14 @@ export declare const FdoFoodpandaOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4026
4113
|
contact: string;
|
|
4027
4114
|
}[] | null | undefined;
|
|
4028
4115
|
customerDisplayImages?: {
|
|
4116
|
+
schedule?: {
|
|
4117
|
+
endTime?: string | null | undefined;
|
|
4118
|
+
startTime?: string | null | undefined;
|
|
4119
|
+
startDate?: string | null | undefined;
|
|
4120
|
+
endDate?: string | null | undefined;
|
|
4121
|
+
repeatDays?: string[] | null | undefined;
|
|
4122
|
+
enabled: boolean;
|
|
4123
|
+
} | null | undefined;
|
|
4029
4124
|
url: string;
|
|
4030
4125
|
restaurantIds: string[];
|
|
4031
4126
|
}[] | null | undefined;
|
|
@@ -2374,18 +2374,21 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2374
2374
|
attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2375
2375
|
key: z.ZodString;
|
|
2376
2376
|
type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
|
|
2377
|
-
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"
|
|
2377
|
+
entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
|
|
2378
2378
|
options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
|
|
2379
|
+
readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
2379
2380
|
}, "strip", z.ZodTypeAny, {
|
|
2380
2381
|
options?: any[] | null | undefined;
|
|
2382
|
+
readonly?: boolean | null | undefined;
|
|
2381
2383
|
type: "string" | "number" | "boolean" | "date";
|
|
2382
2384
|
key: string;
|
|
2383
|
-
entity: "restaurant" | "item" | "group" | "
|
|
2385
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
2384
2386
|
}, {
|
|
2385
2387
|
options?: any[] | null | undefined;
|
|
2388
|
+
readonly?: boolean | null | undefined;
|
|
2386
2389
|
type: "string" | "number" | "boolean" | "date";
|
|
2387
2390
|
key: string;
|
|
2388
|
-
entity: "restaurant" | "item" | "group" | "
|
|
2391
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
2389
2392
|
}>, "many">>>;
|
|
2390
2393
|
pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
2391
2394
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2628,10 +2631,48 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2628
2631
|
customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2629
2632
|
url: z.ZodString;
|
|
2630
2633
|
restaurantIds: z.ZodArray<z.ZodString, "many">;
|
|
2634
|
+
schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2635
|
+
enabled: z.ZodBoolean;
|
|
2636
|
+
startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2637
|
+
endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2638
|
+
startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2639
|
+
endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2640
|
+
repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2641
|
+
}, "strip", z.ZodTypeAny, {
|
|
2642
|
+
endTime?: string | null | undefined;
|
|
2643
|
+
startTime?: string | null | undefined;
|
|
2644
|
+
startDate?: string | null | undefined;
|
|
2645
|
+
endDate?: string | null | undefined;
|
|
2646
|
+
repeatDays?: string[] | null | undefined;
|
|
2647
|
+
enabled: boolean;
|
|
2648
|
+
}, {
|
|
2649
|
+
endTime?: string | null | undefined;
|
|
2650
|
+
startTime?: string | null | undefined;
|
|
2651
|
+
startDate?: string | null | undefined;
|
|
2652
|
+
endDate?: string | null | undefined;
|
|
2653
|
+
repeatDays?: string[] | null | undefined;
|
|
2654
|
+
enabled: boolean;
|
|
2655
|
+
}>>>;
|
|
2631
2656
|
}, "strip", z.ZodTypeAny, {
|
|
2657
|
+
schedule?: {
|
|
2658
|
+
endTime?: string | null | undefined;
|
|
2659
|
+
startTime?: string | null | undefined;
|
|
2660
|
+
startDate?: string | null | undefined;
|
|
2661
|
+
endDate?: string | null | undefined;
|
|
2662
|
+
repeatDays?: string[] | null | undefined;
|
|
2663
|
+
enabled: boolean;
|
|
2664
|
+
} | null | undefined;
|
|
2632
2665
|
url: string;
|
|
2633
2666
|
restaurantIds: string[];
|
|
2634
2667
|
}, {
|
|
2668
|
+
schedule?: {
|
|
2669
|
+
endTime?: string | null | undefined;
|
|
2670
|
+
startTime?: string | null | undefined;
|
|
2671
|
+
startDate?: string | null | undefined;
|
|
2672
|
+
endDate?: string | null | undefined;
|
|
2673
|
+
repeatDays?: string[] | null | undefined;
|
|
2674
|
+
enabled: boolean;
|
|
2675
|
+
} | null | undefined;
|
|
2635
2676
|
url: string;
|
|
2636
2677
|
restaurantIds: string[];
|
|
2637
2678
|
}>, "many">>>;
|
|
@@ -2642,9 +2683,10 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2642
2683
|
agentId?: string | null | undefined;
|
|
2643
2684
|
attributeSettings?: {
|
|
2644
2685
|
options?: any[] | null | undefined;
|
|
2686
|
+
readonly?: boolean | null | undefined;
|
|
2645
2687
|
type: "string" | "number" | "boolean" | "date";
|
|
2646
2688
|
key: string;
|
|
2647
|
-
entity: "restaurant" | "item" | "group" | "
|
|
2689
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
2648
2690
|
}[] | null | undefined;
|
|
2649
2691
|
pf_agent?: {
|
|
2650
2692
|
clickupId?: string | null | undefined;
|
|
@@ -2693,6 +2735,14 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2693
2735
|
contact: string;
|
|
2694
2736
|
}[] | null | undefined;
|
|
2695
2737
|
customerDisplayImages?: {
|
|
2738
|
+
schedule?: {
|
|
2739
|
+
endTime?: string | null | undefined;
|
|
2740
|
+
startTime?: string | null | undefined;
|
|
2741
|
+
startDate?: string | null | undefined;
|
|
2742
|
+
endDate?: string | null | undefined;
|
|
2743
|
+
repeatDays?: string[] | null | undefined;
|
|
2744
|
+
enabled: boolean;
|
|
2745
|
+
} | null | undefined;
|
|
2696
2746
|
url: string;
|
|
2697
2747
|
restaurantIds: string[];
|
|
2698
2748
|
}[] | null | undefined;
|
|
@@ -2709,9 +2759,10 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2709
2759
|
agentId?: string | null | undefined;
|
|
2710
2760
|
attributeSettings?: {
|
|
2711
2761
|
options?: any[] | null | undefined;
|
|
2762
|
+
readonly?: boolean | null | undefined;
|
|
2712
2763
|
type: "string" | "number" | "boolean" | "date";
|
|
2713
2764
|
key: string;
|
|
2714
|
-
entity: "restaurant" | "item" | "group" | "
|
|
2765
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
2715
2766
|
}[] | null | undefined;
|
|
2716
2767
|
pf_agent?: {
|
|
2717
2768
|
clickupId?: string | null | undefined;
|
|
@@ -2760,6 +2811,14 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
2760
2811
|
contact: string;
|
|
2761
2812
|
}[] | null | undefined;
|
|
2762
2813
|
customerDisplayImages?: {
|
|
2814
|
+
schedule?: {
|
|
2815
|
+
endTime?: string | null | undefined;
|
|
2816
|
+
startTime?: string | null | undefined;
|
|
2817
|
+
startDate?: string | null | undefined;
|
|
2818
|
+
endDate?: string | null | undefined;
|
|
2819
|
+
repeatDays?: string[] | null | undefined;
|
|
2820
|
+
enabled: boolean;
|
|
2821
|
+
} | null | undefined;
|
|
2763
2822
|
url: string;
|
|
2764
2823
|
restaurantIds: string[];
|
|
2765
2824
|
}[] | null | undefined;
|
|
@@ -4364,9 +4423,10 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4364
4423
|
agentId?: string | null | undefined;
|
|
4365
4424
|
attributeSettings?: {
|
|
4366
4425
|
options?: any[] | null | undefined;
|
|
4426
|
+
readonly?: boolean | null | undefined;
|
|
4367
4427
|
type: "string" | "number" | "boolean" | "date";
|
|
4368
4428
|
key: string;
|
|
4369
|
-
entity: "restaurant" | "item" | "group" | "
|
|
4429
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
4370
4430
|
}[] | null | undefined;
|
|
4371
4431
|
pf_agent?: {
|
|
4372
4432
|
clickupId?: string | null | undefined;
|
|
@@ -4415,6 +4475,14 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4415
4475
|
contact: string;
|
|
4416
4476
|
}[] | null | undefined;
|
|
4417
4477
|
customerDisplayImages?: {
|
|
4478
|
+
schedule?: {
|
|
4479
|
+
endTime?: string | null | undefined;
|
|
4480
|
+
startTime?: string | null | undefined;
|
|
4481
|
+
startDate?: string | null | undefined;
|
|
4482
|
+
endDate?: string | null | undefined;
|
|
4483
|
+
repeatDays?: string[] | null | undefined;
|
|
4484
|
+
enabled: boolean;
|
|
4485
|
+
} | null | undefined;
|
|
4418
4486
|
url: string;
|
|
4419
4487
|
restaurantIds: string[];
|
|
4420
4488
|
}[] | null | undefined;
|
|
@@ -4696,9 +4764,10 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4696
4764
|
agentId?: string | null | undefined;
|
|
4697
4765
|
attributeSettings?: {
|
|
4698
4766
|
options?: any[] | null | undefined;
|
|
4767
|
+
readonly?: boolean | null | undefined;
|
|
4699
4768
|
type: "string" | "number" | "boolean" | "date";
|
|
4700
4769
|
key: string;
|
|
4701
|
-
entity: "restaurant" | "item" | "group" | "
|
|
4770
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
4702
4771
|
}[] | null | undefined;
|
|
4703
4772
|
pf_agent?: {
|
|
4704
4773
|
clickupId?: string | null | undefined;
|
|
@@ -4747,6 +4816,14 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
4747
4816
|
contact: string;
|
|
4748
4817
|
}[] | null | undefined;
|
|
4749
4818
|
customerDisplayImages?: {
|
|
4819
|
+
schedule?: {
|
|
4820
|
+
endTime?: string | null | undefined;
|
|
4821
|
+
startTime?: string | null | undefined;
|
|
4822
|
+
startDate?: string | null | undefined;
|
|
4823
|
+
endDate?: string | null | undefined;
|
|
4824
|
+
repeatDays?: string[] | null | undefined;
|
|
4825
|
+
enabled: boolean;
|
|
4826
|
+
} | null | undefined;
|
|
4750
4827
|
url: string;
|
|
4751
4828
|
restaurantIds: string[];
|
|
4752
4829
|
}[] | null | undefined;
|
|
@@ -5030,9 +5107,10 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5030
5107
|
agentId?: string | null | undefined;
|
|
5031
5108
|
attributeSettings?: {
|
|
5032
5109
|
options?: any[] | null | undefined;
|
|
5110
|
+
readonly?: boolean | null | undefined;
|
|
5033
5111
|
type: "string" | "number" | "boolean" | "date";
|
|
5034
5112
|
key: string;
|
|
5035
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5113
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5036
5114
|
}[] | null | undefined;
|
|
5037
5115
|
pf_agent?: {
|
|
5038
5116
|
clickupId?: string | null | undefined;
|
|
@@ -5081,6 +5159,14 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5081
5159
|
contact: string;
|
|
5082
5160
|
}[] | null | undefined;
|
|
5083
5161
|
customerDisplayImages?: {
|
|
5162
|
+
schedule?: {
|
|
5163
|
+
endTime?: string | null | undefined;
|
|
5164
|
+
startTime?: string | null | undefined;
|
|
5165
|
+
startDate?: string | null | undefined;
|
|
5166
|
+
endDate?: string | null | undefined;
|
|
5167
|
+
repeatDays?: string[] | null | undefined;
|
|
5168
|
+
enabled: boolean;
|
|
5169
|
+
} | null | undefined;
|
|
5084
5170
|
url: string;
|
|
5085
5171
|
restaurantIds: string[];
|
|
5086
5172
|
}[] | null | undefined;
|
|
@@ -5473,9 +5559,10 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5473
5559
|
agentId?: string | null | undefined;
|
|
5474
5560
|
attributeSettings?: {
|
|
5475
5561
|
options?: any[] | null | undefined;
|
|
5562
|
+
readonly?: boolean | null | undefined;
|
|
5476
5563
|
type: "string" | "number" | "boolean" | "date";
|
|
5477
5564
|
key: string;
|
|
5478
|
-
entity: "restaurant" | "item" | "group" | "
|
|
5565
|
+
entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
|
|
5479
5566
|
}[] | null | undefined;
|
|
5480
5567
|
pf_agent?: {
|
|
5481
5568
|
clickupId?: string | null | undefined;
|
|
@@ -5524,6 +5611,14 @@ export declare const FdoGrabfoodOrderOutput: z.ZodObject<z.extendShape<{
|
|
|
5524
5611
|
contact: string;
|
|
5525
5612
|
}[] | null | undefined;
|
|
5526
5613
|
customerDisplayImages?: {
|
|
5614
|
+
schedule?: {
|
|
5615
|
+
endTime?: string | null | undefined;
|
|
5616
|
+
startTime?: string | null | undefined;
|
|
5617
|
+
startDate?: string | null | undefined;
|
|
5618
|
+
endDate?: string | null | undefined;
|
|
5619
|
+
repeatDays?: string[] | null | undefined;
|
|
5620
|
+
enabled: boolean;
|
|
5621
|
+
} | null | undefined;
|
|
5527
5622
|
url: string;
|
|
5528
5623
|
restaurantIds: string[];
|
|
5529
5624
|
}[] | null | undefined;
|