@feedmepos/mf-order-setting 0.0.36 → 0.0.37
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-wPKewwAS.js → KioskDevicesView-D9PQ22G6.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-BCJPU2la.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BuwHk_0a.js} +2 -2
- package/dist/{KioskSettingView-CV54HpY2.js → KioskSettingView-C98iSa7q.js} +1 -1
- package/dist/{KioskView-B4mggCt0.js → KioskView-C6s4u6vt.js} +7 -7
- package/dist/{OrderSettingsView-CKGRFx_2.js → OrderSettingsView-DFB_C-VO.js} +6030 -5897
- package/dist/{app-D4exdzAx.js → app-86WCOyBO.js} +21 -9
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-C_sCJHuD.js → dayjs.min-BiuO1l2_.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +12 -0
- package/dist/frontend/mf-order/src/helpers/order-setting.d.ts +6 -0
- package/dist/frontend/mf-order/src/main.d.ts +12 -0
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +27 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-Cvhc_ltu.js → index-DZKSDqn_.js} +2 -2
- package/dist/menu.dto-CT1XwUKO.js +127978 -0
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +24 -24
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +48 -48
- package/dist/package/entity/order/menu/menu.dto.d.ts +10 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +48 -48
- package/dist/package/entity/order/order.do.d.ts +20 -8
- package/dist/package/entity/order/order.dto.d.ts +280 -164
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +33 -0
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +18 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +168 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +134 -0
- package/dist/package/entity/order-setting/queue/queue.do.d.ts +95 -1613
- package/dist/package/entity/order-setting/queue/queue.dto.d.ts +62 -110
- package/dist/package/entity/order-setting/sequence/sequence.do.d.ts +72 -0
- package/dist/package/entity/order-setting/sequence/sequence.dto.d.ts +101 -0
- package/dist/package/entity/queue/queue.do.d.ts +18 -6
- package/dist/package/entity/queue/queue.dto.d.ts +52 -38
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +81 -17
- package/package.json +1 -1
- package/src/helpers/order-setting.ts +20 -0
- package/src/locales/en-US.json +4 -0
- package/src/locales/th-TH.json +4 -0
- package/src/locales/zh-CN.json +4 -0
- package/src/stores/order-setting/mapper.ts +56 -56
- package/src/views/order-settings/general/GeneralSetting.vue +159 -4
- package/dist/menu.dto-CeUdKgTW.js +0 -103445
|
@@ -1,171 +1,255 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
declare const BaseOrderNumberSettings: z.ZodObject<{
|
|
3
|
+
prefix: z.ZodString;
|
|
4
|
+
current: z.ZodNumber;
|
|
5
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
6
|
+
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
digit?: number | null | undefined;
|
|
8
|
+
prefix: string;
|
|
9
|
+
current: number;
|
|
10
|
+
}, {
|
|
11
|
+
digit?: number | null | undefined;
|
|
12
|
+
prefix: string;
|
|
13
|
+
current: number;
|
|
14
|
+
}>;
|
|
2
15
|
export declare const OrderTakeawaySequenceDto: z.ZodObject<z.extendShape<{
|
|
16
|
+
prefix: z.ZodString;
|
|
3
17
|
current: z.ZodNumber;
|
|
18
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
4
19
|
}, {
|
|
5
20
|
prefix: z.ZodDefault<z.ZodString>;
|
|
6
21
|
current: z.ZodDefault<z.ZodNumber>;
|
|
7
22
|
}>, "strip", z.ZodTypeAny, {
|
|
23
|
+
digit?: number | null | undefined;
|
|
8
24
|
prefix: string;
|
|
9
25
|
current: number;
|
|
10
26
|
}, {
|
|
11
27
|
prefix?: string | undefined;
|
|
12
28
|
current?: number | undefined;
|
|
29
|
+
digit?: number | null | undefined;
|
|
13
30
|
}>;
|
|
14
31
|
export declare const OrderPickUpSequenceDto: z.ZodObject<z.extendShape<{
|
|
32
|
+
prefix: z.ZodString;
|
|
15
33
|
current: z.ZodNumber;
|
|
34
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
16
35
|
}, {
|
|
17
36
|
prefix: z.ZodDefault<z.ZodString>;
|
|
18
37
|
current: z.ZodDefault<z.ZodNumber>;
|
|
19
38
|
}>, "strip", z.ZodTypeAny, {
|
|
39
|
+
digit?: number | null | undefined;
|
|
20
40
|
prefix: string;
|
|
21
41
|
current: number;
|
|
22
42
|
}, {
|
|
23
43
|
prefix?: string | undefined;
|
|
24
44
|
current?: number | undefined;
|
|
45
|
+
digit?: number | null | undefined;
|
|
25
46
|
}>;
|
|
26
47
|
export declare const OrderDeliveryInHouseSequenceDto: z.ZodObject<z.extendShape<{
|
|
48
|
+
prefix: z.ZodString;
|
|
27
49
|
current: z.ZodNumber;
|
|
50
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
28
51
|
}, {
|
|
29
52
|
prefix: z.ZodDefault<z.ZodString>;
|
|
30
53
|
current: z.ZodDefault<z.ZodNumber>;
|
|
31
54
|
}>, "strip", z.ZodTypeAny, {
|
|
55
|
+
digit?: number | null | undefined;
|
|
32
56
|
prefix: string;
|
|
33
57
|
current: number;
|
|
34
58
|
}, {
|
|
35
59
|
prefix?: string | undefined;
|
|
36
60
|
current?: number | undefined;
|
|
61
|
+
digit?: number | null | undefined;
|
|
37
62
|
}>;
|
|
38
63
|
export declare const OrderDeliveryFeedMeSequenceDto: z.ZodObject<z.extendShape<{
|
|
64
|
+
prefix: z.ZodString;
|
|
39
65
|
current: z.ZodNumber;
|
|
66
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
40
67
|
}, {
|
|
41
68
|
prefix: z.ZodDefault<z.ZodString>;
|
|
42
69
|
current: z.ZodDefault<z.ZodNumber>;
|
|
43
70
|
}>, "strip", z.ZodTypeAny, {
|
|
71
|
+
digit?: number | null | undefined;
|
|
44
72
|
prefix: string;
|
|
45
73
|
current: number;
|
|
46
74
|
}, {
|
|
47
75
|
prefix?: string | undefined;
|
|
48
76
|
current?: number | undefined;
|
|
77
|
+
digit?: number | null | undefined;
|
|
49
78
|
}>;
|
|
50
79
|
export declare const OrderReservationSequenceDto: z.ZodObject<z.extendShape<{
|
|
80
|
+
prefix: z.ZodString;
|
|
51
81
|
current: z.ZodNumber;
|
|
82
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
52
83
|
}, {
|
|
53
84
|
prefix: z.ZodDefault<z.ZodString>;
|
|
54
85
|
current: z.ZodDefault<z.ZodNumber>;
|
|
55
86
|
}>, "strip", z.ZodTypeAny, {
|
|
87
|
+
digit?: number | null | undefined;
|
|
56
88
|
prefix: string;
|
|
57
89
|
current: number;
|
|
58
90
|
}, {
|
|
59
91
|
prefix?: string | undefined;
|
|
60
92
|
current?: number | undefined;
|
|
93
|
+
digit?: number | null | undefined;
|
|
61
94
|
}>;
|
|
62
95
|
export declare const OrderKioskDineInSequenceDto: z.ZodObject<z.extendShape<{
|
|
96
|
+
prefix: z.ZodString;
|
|
63
97
|
current: z.ZodNumber;
|
|
98
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
64
99
|
}, {
|
|
65
100
|
prefix: z.ZodDefault<z.ZodString>;
|
|
66
101
|
current: z.ZodDefault<z.ZodNumber>;
|
|
67
102
|
}>, "strip", z.ZodTypeAny, {
|
|
103
|
+
digit?: number | null | undefined;
|
|
68
104
|
prefix: string;
|
|
69
105
|
current: number;
|
|
70
106
|
}, {
|
|
71
107
|
prefix?: string | undefined;
|
|
72
108
|
current?: number | undefined;
|
|
109
|
+
digit?: number | null | undefined;
|
|
110
|
+
}>;
|
|
111
|
+
export declare const OrderSequenceSettingsAutoResetDto: z.ZodObject<{
|
|
112
|
+
resetTime: z.ZodString;
|
|
113
|
+
}, "strip", z.ZodTypeAny, {
|
|
114
|
+
resetTime: string;
|
|
115
|
+
}, {
|
|
116
|
+
resetTime: string;
|
|
73
117
|
}>;
|
|
74
118
|
export declare const OrderSequenceSettingsDto: z.ZodObject<{
|
|
119
|
+
autoReset: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
120
|
+
resetTime: z.ZodString;
|
|
121
|
+
}, "strip", z.ZodTypeAny, {
|
|
122
|
+
resetTime: string;
|
|
123
|
+
}, {
|
|
124
|
+
resetTime: string;
|
|
125
|
+
}>>>;
|
|
75
126
|
takeaway: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
127
|
+
prefix: z.ZodString;
|
|
76
128
|
current: z.ZodNumber;
|
|
129
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
77
130
|
}, {
|
|
78
131
|
prefix: z.ZodDefault<z.ZodString>;
|
|
79
132
|
current: z.ZodDefault<z.ZodNumber>;
|
|
80
133
|
}>, "strip", z.ZodTypeAny, {
|
|
134
|
+
digit?: number | null | undefined;
|
|
81
135
|
prefix: string;
|
|
82
136
|
current: number;
|
|
83
137
|
}, {
|
|
84
138
|
prefix?: string | undefined;
|
|
85
139
|
current?: number | undefined;
|
|
140
|
+
digit?: number | null | undefined;
|
|
86
141
|
}>>;
|
|
87
142
|
pickup: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
143
|
+
prefix: z.ZodString;
|
|
88
144
|
current: z.ZodNumber;
|
|
145
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
89
146
|
}, {
|
|
90
147
|
prefix: z.ZodDefault<z.ZodString>;
|
|
91
148
|
current: z.ZodDefault<z.ZodNumber>;
|
|
92
149
|
}>, "strip", z.ZodTypeAny, {
|
|
150
|
+
digit?: number | null | undefined;
|
|
93
151
|
prefix: string;
|
|
94
152
|
current: number;
|
|
95
153
|
}, {
|
|
96
154
|
prefix?: string | undefined;
|
|
97
155
|
current?: number | undefined;
|
|
156
|
+
digit?: number | null | undefined;
|
|
98
157
|
}>>;
|
|
99
158
|
inHouseDelivery: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
159
|
+
prefix: z.ZodString;
|
|
100
160
|
current: z.ZodNumber;
|
|
161
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
101
162
|
}, {
|
|
102
163
|
prefix: z.ZodDefault<z.ZodString>;
|
|
103
164
|
current: z.ZodDefault<z.ZodNumber>;
|
|
104
165
|
}>, "strip", z.ZodTypeAny, {
|
|
166
|
+
digit?: number | null | undefined;
|
|
105
167
|
prefix: string;
|
|
106
168
|
current: number;
|
|
107
169
|
}, {
|
|
108
170
|
prefix?: string | undefined;
|
|
109
171
|
current?: number | undefined;
|
|
172
|
+
digit?: number | null | undefined;
|
|
110
173
|
}>>;
|
|
111
174
|
feedMeDelivery: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
175
|
+
prefix: z.ZodString;
|
|
112
176
|
current: z.ZodNumber;
|
|
177
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
113
178
|
}, {
|
|
114
179
|
prefix: z.ZodDefault<z.ZodString>;
|
|
115
180
|
current: z.ZodDefault<z.ZodNumber>;
|
|
116
181
|
}>, "strip", z.ZodTypeAny, {
|
|
182
|
+
digit?: number | null | undefined;
|
|
117
183
|
prefix: string;
|
|
118
184
|
current: number;
|
|
119
185
|
}, {
|
|
120
186
|
prefix?: string | undefined;
|
|
121
187
|
current?: number | undefined;
|
|
188
|
+
digit?: number | null | undefined;
|
|
122
189
|
}>>;
|
|
123
190
|
reservation: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
191
|
+
prefix: z.ZodString;
|
|
124
192
|
current: z.ZodNumber;
|
|
193
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
125
194
|
}, {
|
|
126
195
|
prefix: z.ZodDefault<z.ZodString>;
|
|
127
196
|
current: z.ZodDefault<z.ZodNumber>;
|
|
128
197
|
}>, "strip", z.ZodTypeAny, {
|
|
198
|
+
digit?: number | null | undefined;
|
|
129
199
|
prefix: string;
|
|
130
200
|
current: number;
|
|
131
201
|
}, {
|
|
132
202
|
prefix?: string | undefined;
|
|
133
203
|
current?: number | undefined;
|
|
204
|
+
digit?: number | null | undefined;
|
|
134
205
|
}>>;
|
|
135
206
|
kioskDineIn: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
207
|
+
prefix: z.ZodString;
|
|
136
208
|
current: z.ZodNumber;
|
|
209
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
137
210
|
}, {
|
|
138
211
|
prefix: z.ZodDefault<z.ZodString>;
|
|
139
212
|
current: z.ZodDefault<z.ZodNumber>;
|
|
140
213
|
}>, "strip", z.ZodTypeAny, {
|
|
214
|
+
digit?: number | null | undefined;
|
|
141
215
|
prefix: string;
|
|
142
216
|
current: number;
|
|
143
217
|
}, {
|
|
144
218
|
prefix?: string | undefined;
|
|
145
219
|
current?: number | undefined;
|
|
220
|
+
digit?: number | null | undefined;
|
|
146
221
|
}>>;
|
|
147
222
|
}, "strip", z.ZodTypeAny, {
|
|
148
223
|
pickup?: {
|
|
224
|
+
digit?: number | null | undefined;
|
|
149
225
|
prefix: string;
|
|
150
226
|
current: number;
|
|
151
227
|
} | undefined;
|
|
152
228
|
takeaway?: {
|
|
229
|
+
digit?: number | null | undefined;
|
|
153
230
|
prefix: string;
|
|
154
231
|
current: number;
|
|
155
232
|
} | undefined;
|
|
156
233
|
inHouseDelivery?: {
|
|
234
|
+
digit?: number | null | undefined;
|
|
157
235
|
prefix: string;
|
|
158
236
|
current: number;
|
|
159
237
|
} | undefined;
|
|
238
|
+
autoReset?: {
|
|
239
|
+
resetTime: string;
|
|
240
|
+
} | null | undefined;
|
|
160
241
|
feedMeDelivery?: {
|
|
242
|
+
digit?: number | null | undefined;
|
|
161
243
|
prefix: string;
|
|
162
244
|
current: number;
|
|
163
245
|
} | undefined;
|
|
164
246
|
reservation?: {
|
|
247
|
+
digit?: number | null | undefined;
|
|
165
248
|
prefix: string;
|
|
166
249
|
current: number;
|
|
167
250
|
} | undefined;
|
|
168
251
|
kioskDineIn?: {
|
|
252
|
+
digit?: number | null | undefined;
|
|
169
253
|
prefix: string;
|
|
170
254
|
current: number;
|
|
171
255
|
} | undefined;
|
|
@@ -173,56 +257,72 @@ export declare const OrderSequenceSettingsDto: z.ZodObject<{
|
|
|
173
257
|
pickup?: {
|
|
174
258
|
prefix?: string | undefined;
|
|
175
259
|
current?: number | undefined;
|
|
260
|
+
digit?: number | null | undefined;
|
|
176
261
|
} | undefined;
|
|
177
262
|
takeaway?: {
|
|
178
263
|
prefix?: string | undefined;
|
|
179
264
|
current?: number | undefined;
|
|
265
|
+
digit?: number | null | undefined;
|
|
180
266
|
} | undefined;
|
|
181
267
|
inHouseDelivery?: {
|
|
182
268
|
prefix?: string | undefined;
|
|
183
269
|
current?: number | undefined;
|
|
270
|
+
digit?: number | null | undefined;
|
|
184
271
|
} | undefined;
|
|
272
|
+
autoReset?: {
|
|
273
|
+
resetTime: string;
|
|
274
|
+
} | null | undefined;
|
|
185
275
|
feedMeDelivery?: {
|
|
186
276
|
prefix?: string | undefined;
|
|
187
277
|
current?: number | undefined;
|
|
278
|
+
digit?: number | null | undefined;
|
|
188
279
|
} | undefined;
|
|
189
280
|
reservation?: {
|
|
190
281
|
prefix?: string | undefined;
|
|
191
282
|
current?: number | undefined;
|
|
283
|
+
digit?: number | null | undefined;
|
|
192
284
|
} | undefined;
|
|
193
285
|
kioskDineIn?: {
|
|
194
286
|
prefix?: string | undefined;
|
|
195
287
|
current?: number | undefined;
|
|
288
|
+
digit?: number | null | undefined;
|
|
196
289
|
} | undefined;
|
|
197
290
|
}>;
|
|
198
291
|
export declare const FdtoOrderSequenceSettings: z.ZodObject<{
|
|
199
292
|
prefix: z.ZodString;
|
|
200
293
|
current: z.ZodNumber;
|
|
294
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
201
295
|
}, "strip", z.ZodTypeAny, {
|
|
296
|
+
digit?: number | null | undefined;
|
|
202
297
|
prefix: string;
|
|
203
298
|
current: number;
|
|
204
299
|
}, {
|
|
300
|
+
digit?: number | null | undefined;
|
|
205
301
|
prefix: string;
|
|
206
302
|
current: number;
|
|
207
303
|
}>;
|
|
208
304
|
export declare const OrderSequenceSettingDto: z.ZodObject<z.extendShape<{
|
|
209
305
|
prefix: z.ZodString;
|
|
210
306
|
current: z.ZodNumber;
|
|
307
|
+
digit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
211
308
|
}, {
|
|
212
309
|
next: z.ZodNumber;
|
|
213
310
|
code: z.ZodString;
|
|
214
311
|
}>, "strip", z.ZodTypeAny, {
|
|
312
|
+
digit?: number | null | undefined;
|
|
215
313
|
code: string;
|
|
216
314
|
prefix: string;
|
|
217
315
|
current: number;
|
|
218
316
|
next: number;
|
|
219
317
|
}, {
|
|
318
|
+
digit?: number | null | undefined;
|
|
220
319
|
code: string;
|
|
221
320
|
prefix: string;
|
|
222
321
|
current: number;
|
|
223
322
|
next: number;
|
|
224
323
|
}>;
|
|
225
324
|
export type OrderSequenceSettingDto = z.infer<typeof OrderSequenceSettingDto>;
|
|
325
|
+
export type BaseOrderNumberSettings = z.infer<typeof BaseOrderNumberSettings>;
|
|
226
326
|
export type OrderTakeawaySequenceDto = z.infer<typeof OrderTakeawaySequenceDto>;
|
|
227
327
|
export type OrderPickUpSequenceDto = z.infer<typeof OrderPickUpSequenceDto>;
|
|
228
328
|
export type OrderDeliveryInHouseSequenceDto = z.infer<typeof OrderDeliveryInHouseSequenceDto>;
|
|
@@ -231,3 +331,4 @@ export type OrderReservationSequenceDto = z.infer<typeof OrderReservationSequenc
|
|
|
231
331
|
export type OrderKioskDineInSequenceDto = z.infer<typeof OrderKioskDineInSequenceDto>;
|
|
232
332
|
export type OrderSequenceSettingsDto = z.infer<typeof OrderSequenceSettingsDto>;
|
|
233
333
|
export type FdtoOrderSequenceSettings = z.infer<typeof FdtoOrderSequenceSettings>;
|
|
334
|
+
export {};
|
|
@@ -1318,11 +1318,11 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
|
|
|
1318
1318
|
}, "strip", z.ZodTypeAny, {
|
|
1319
1319
|
id?: string | null | undefined;
|
|
1320
1320
|
remark?: string | null | undefined;
|
|
1321
|
+
productId?: string | null | undefined;
|
|
1321
1322
|
is?: {
|
|
1322
1323
|
delivery?: boolean | null | undefined;
|
|
1323
1324
|
takeaway: boolean;
|
|
1324
1325
|
} | null | undefined;
|
|
1325
|
-
productId?: string | null | undefined;
|
|
1326
1326
|
nettTotal?: {
|
|
1327
1327
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
1328
1328
|
amount: number;
|
|
@@ -1502,11 +1502,11 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
|
|
|
1502
1502
|
}, {
|
|
1503
1503
|
id?: string | null | undefined;
|
|
1504
1504
|
remark?: string | null | undefined;
|
|
1505
|
+
productId?: string | null | undefined;
|
|
1505
1506
|
is?: {
|
|
1506
1507
|
delivery?: boolean | null | undefined;
|
|
1507
1508
|
takeaway: boolean;
|
|
1508
1509
|
} | null | undefined;
|
|
1509
|
-
productId?: string | null | undefined;
|
|
1510
1510
|
nettTotal?: {
|
|
1511
1511
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
1512
1512
|
amount: number;
|
|
@@ -2665,11 +2665,11 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
2665
2665
|
}, "strip", z.ZodTypeAny, {
|
|
2666
2666
|
id?: string | null | undefined;
|
|
2667
2667
|
remark?: string | null | undefined;
|
|
2668
|
+
productId?: string | null | undefined;
|
|
2668
2669
|
is?: {
|
|
2669
2670
|
delivery?: boolean | null | undefined;
|
|
2670
2671
|
takeaway: boolean;
|
|
2671
2672
|
} | null | undefined;
|
|
2672
|
-
productId?: string | null | undefined;
|
|
2673
2673
|
nettTotal?: {
|
|
2674
2674
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
2675
2675
|
amount: number;
|
|
@@ -2849,11 +2849,11 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
2849
2849
|
}, {
|
|
2850
2850
|
id?: string | null | undefined;
|
|
2851
2851
|
remark?: string | null | undefined;
|
|
2852
|
+
productId?: string | null | undefined;
|
|
2852
2853
|
is?: {
|
|
2853
2854
|
delivery?: boolean | null | undefined;
|
|
2854
2855
|
takeaway: boolean;
|
|
2855
2856
|
} | null | undefined;
|
|
2856
|
-
productId?: string | null | undefined;
|
|
2857
2857
|
nettTotal?: {
|
|
2858
2858
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
2859
2859
|
amount: number;
|
|
@@ -3054,11 +3054,11 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
3054
3054
|
product: {
|
|
3055
3055
|
id?: string | null | undefined;
|
|
3056
3056
|
remark?: string | null | undefined;
|
|
3057
|
+
productId?: string | null | undefined;
|
|
3057
3058
|
is?: {
|
|
3058
3059
|
delivery?: boolean | null | undefined;
|
|
3059
3060
|
takeaway: boolean;
|
|
3060
3061
|
} | null | undefined;
|
|
3061
|
-
productId?: string | null | undefined;
|
|
3062
3062
|
nettTotal?: {
|
|
3063
3063
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
3064
3064
|
amount: number;
|
|
@@ -3259,11 +3259,11 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
3259
3259
|
product: {
|
|
3260
3260
|
id?: string | null | undefined;
|
|
3261
3261
|
remark?: string | null | undefined;
|
|
3262
|
+
productId?: string | null | undefined;
|
|
3262
3263
|
is?: {
|
|
3263
3264
|
delivery?: boolean | null | undefined;
|
|
3264
3265
|
takeaway: boolean;
|
|
3265
3266
|
} | null | undefined;
|
|
3266
|
-
productId?: string | null | undefined;
|
|
3267
3267
|
nettTotal?: {
|
|
3268
3268
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
3269
3269
|
amount: number;
|
|
@@ -3444,4 +3444,16 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
|
|
|
3444
3444
|
}>;
|
|
3445
3445
|
export type FdoRestaurantQueueCart = z.infer<typeof FdoRestaurantQueueCart>;
|
|
3446
3446
|
export declare const FdoRestaurantQueue: z.AnyZodObject;
|
|
3447
|
+
export declare const FdoRestaurantQueues: z.ZodObject<{
|
|
3448
|
+
queues: z.ZodArray<z.AnyZodObject, "many">;
|
|
3449
|
+
}, "strip", z.ZodTypeAny, {
|
|
3450
|
+
queues: {
|
|
3451
|
+
[x: string]: any;
|
|
3452
|
+
}[];
|
|
3453
|
+
}, {
|
|
3454
|
+
queues: {
|
|
3455
|
+
[x: string]: any;
|
|
3456
|
+
}[];
|
|
3457
|
+
}>;
|
|
3447
3458
|
export type FdoRestaurantQueue = z.infer<typeof FdoRestaurantQueue>;
|
|
3459
|
+
export type FdoRestaurantQueues = z.infer<typeof FdoRestaurantQueues>;
|