-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmenus.ts
More file actions
433 lines (428 loc) · 11.7 KB
/
menus.ts
File metadata and controls
433 lines (428 loc) · 11.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
export interface MenuItem {
shortTitle: string;
title: string;
description: string;
originalTitle?: string;
}
export enum modes {
barista = "barista",
smoothie = "smoothie",
cocktail = "cocktail",
tea = "tea",
}
export type Menus = {
[key in modes]: {
items: MenuItem[];
modifiers?: string[];
};
};
export interface Order {
key: string;
manual?: boolean;
item: string;
modifiers?: string;
address?: string;
orderNumber?: number;
originalText?: string;
status: "queued" | "cancelled" | "ready" | "delivered";
reminded?: true;
}
export default {
barista: {
items: [
{
shortTitle: "Coffee",
title: "Coffee",
description: "Brewed coffee, black",
},
{
shortTitle: "Espresso",
title: "Espresso",
description: "30ml straight espresso shot",
},
{
shortTitle: "Double Espresso",
title: "Double Espresso",
description: "Double shot of espresso",
},
{
shortTitle: "Flat White",
title: "Flat White",
description: "Espresso with velvety milk",
},
{
shortTitle: "Macchiato",
title: "Macchiato",
description: 'Espresso "stained" with a splash of milk',
},
{
shortTitle: "Double Macchiato",
title: "Double Macchiato",
description: "Two shots of espresso marked with milk",
},
// { disable and prefer Caffè Latte to avoid confusion
// shortTitle: "Latte Macchiato",
// title: "Latte Macchiato",
// description: "Milk marked with espresso",
// },
{
shortTitle: "Iced Latte",
title: "Iced Latte",
description: "Espresso with cold milk and ice",
},
{
shortTitle: "Latte",
title: "Latte",
description: "Espresso with steamed milk",
},
{
shortTitle: "Mochaccino",
title: "Mochaccino",
description: "Espresso with chocolate and steamed milk",
},
{
shortTitle: "Various teas",
title: "Various teas",
description: "Selection of finest herbal and black teas",
},
{
shortTitle: "Ristretto",
title: "Ristretto",
description: "Concentrated shot of espresso",
},
{
shortTitle: "Cappuccino",
title: "Cappuccino",
description: "Espresso with steamed milk",
},
{
shortTitle: "British Breakfast Tea",
title: "British Breakfast Tea",
description: "Blend of black teas",
},
{
shortTitle: "Espresso Macchiato",
title: "Espresso Macchiato",
description: "Espresso with a dash of milk",
},
{
shortTitle: "Americano",
title: "Americano",
description: "Espresso with hot water",
},
{
shortTitle: "Iced Americano",
title: "Iced Americano",
description: "Espresso shots with cold water and ice.",
},
{
shortTitle: "Matcha",
title: "Matcha",
description:
"Powder made from ground-up green tea leaves brewed into tea.",
},
{
shortTitle: "Mocha",
title: "Caffè Mocha",
description: "Chocolate-flavoured variant of a caffè latte",
},
{
shortTitle: "Black Tea",
title: "Black Tea",
description: "Robust, bold, energizing, classic, versatile, comforting",
},
{
shortTitle: "Herbal Tea",
title: "Herbal Tea",
description: "Classic, diverse, hot beverage infused with leaves",
},
{
shortTitle: "Apple Chamomile",
title: "Apple Chamomile",
description: "Apple and chamomile tea",
},
{
shortTitle: "Hot Chocolate",
title: "Hot Chocolate",
description: "Rich chocolate and foamed milk",
},
{
shortTitle: "Earl Grey",
title: "Earl Grey",
description: "Blend of black tea scented with oil of bergamot",
},
{
shortTitle: "Chai",
title: "Chai",
description: "Spiced tea with milk",
},
{
shortTitle: "SMS Espresso",
title: "SMS Espresso",
description: "Shot of Espresso",
},
{
shortTitle: "Cloud Cappuccino",
title: "Cloud Cappuccino",
description: "Made with espresso, steamed milk and milk foam",
},
{ shortTitle: "Cafè Latte",
title: "Caffè Latte",
description:
"30 ml espresso with smooth micro-foamed milk"
},
{
shortTitle: "Twilio Latte",
title: "Twilio Latte",
description:
"Shot of espresso and steamed milk, topped with a thin layer of milk foam",
},
{
shortTitle: "Money Macchiato",
title: "Money Macchiato",
description: "An espresso and small amount of milk",
},
{
shortTitle: "Café Colada",
title: "Café Colada",
description: "Hand brewed Coffee + Turbinado Sugar",
},
{
shortTitle: "Cortadito",
title: "Cortadito",
description: "Espresso + Steamed Milk + Blended Sugar",
},
{
shortTitle: "Cortado",
title: "Cortado",
description: "One Shot of Espresso + Dash Steamed Milk",
},
{
shortTitle: "Caramelo Cortado",
title: "Caramelo Cortado",
description: "Espresso + Sweet Milk + Caramel",
},
{
shortTitle: "Café Con Leche",
title: "Café Con Leche",
description: "Espresso + Steamed Milk + Sugar Blended.",
},
{
shortTitle: "Café Dulce",
title: "Café Dulce",
description: "Espresso + Sweet Condensed Milk",
},
{
shortTitle: "Café Coco",
title: "Café Coco",
description: "Espresso + Coconut milk",
},
{
shortTitle: "Con Sabor",
title: "Con Sabor",
description: "Choice of Flavored Syrup Infused Into Any of The Above",
},
{
shortTitle: "Matcha Latte",
title: "Matcha Latte",
description: "Green tea whisked into steamed milk",
},
{
shortTitle: "Chai Latte",
title: "Chai Latte",
description: "Spiced Tea with steamed Milk",
},
{
shortTitle: "Matcha Green Tea",
title: "Matcha Green Tea",
description:
"Matcha Green Tea, Honey, Cashew Milk, Frozen Grape Ice Cubes & Honeycomb",
},
{
shortTitle: "Cucumber Juice",
title: "Cucumber Juice",
description:
"Cucumber Juice, Wildflower Honey, Parsley, Pellegrino, mint-garnished",
},
],
modifiers: [
"Decaf",
"Milk",
"Whole Milk",
"Soy Milk",
"Almond Milk",
"Oat Milk",
"Skim Milk",
"Semi-skimmed Milk",
"Half & Half",
"Coconut Milk",
"Rice Milk",
"Sugar Free Vanilla Syrup",
"Chocolate Caramel Syrup",
"Vanilla Syrup",
"Chocolate Syrup",
"Salted Caramel Syrup",
"Peppermint Syrup",
"Caramel Syrup",
"Hazelnut Syrup",
"Cinnamon Syrup",
"Coconut Syrup",
"Mint Syrup",
"Dulce de leche Syrup",
"Café de Olla Syrup",
"Chocolate Sauce",
"Chocolate Shavings",
"Whipped Cream",
"Brown Sugar Stick",
"White Sugar Stick",
],
},
smoothie: {
items: [
{
title: "Colombia (Red like Twilio!)",
shortTitle: "Colombia",
description: "Strawberry, Pineapple, Apple, Sunflower Seeds 🍓🍍🍏🌻",
},
{
title: "Aquamarine (Blue like SendGrid!)",
shortTitle: "Aquamarine",
description:
"Pineapple, Banana, Coconut Milk, Dates, Flaxseed 🍍🍌🥥🌴",
},
{
title: "Lambada (Green like Segment!)",
shortTitle: "Lambada",
description:
"Orange, Mango, Banana, Passion Fruit, Flaxseed, Coconut Oil 🍊🥭🍌🥥",
},
{
title: "Macarena",
shortTitle: "Macarena",
description: "Fruity 🍓🍍🍏 mix with exotic notes",
},
{
title: "La Isla Bonita",
shortTitle: "La Isla Bonita",
description: "Creamy 🍍🍌🥥 with a blue twist 💙",
},
{
title: "Des.pa.cito",
shortTitle: "Des.pa.cito",
description: "Green 🍏🍌🌿 with citrus zing 🍋",
},
],
},
tea: {
items: [
{
title: "Mango Black Tea with Boba",
shortTitle: "Mango Black Tea",
description: "Mango, Cane Sugar, Assam Black Tea, Boba 🥭🧋",
},
{
title: "Lychee Peachy Green Tea",
shortTitle: "Lychee Peachy Green Tea",
description: "Lychee, Peach, Jasmine Green Tea, Lychee Jelly 🍑🍵",
},
{
title: "Caramel Milk Tea",
shortTitle: "Caramel Milk Tea",
description: "Caramel, Oatmilk, Assam Black Tea 🍯🥛",
},
{
title: "Matcha Latte",
shortTitle: "Matcha Latte",
description: "Matcha green tea blended with milk 🍵🥛",
},
{
title: "Strawberry Matcha Latte",
shortTitle: "Strawberry Matcha Latte",
description: "Matcha, strawberry, and milk layered over ice 🍓🍵",
},
{
title: "Strawberry Lemonade Tea",
shortTitle: "Strawberry Lemonade Tea",
description: "Strawberry and lemonade tea served chilled 🍓🍋",
},
],
modifiers: ["Lactose Free Whole Milk", "Oat Milk"],
},
cocktail: {
items: [
{
title: "The SMSpresso - Espresso Martini",
shortTitle: "Espresso Martini",
description: "Vodka, Espresso, Coffee Liqueur, Sugar Syrup",
},
{
title: "Hot White Russian",
shortTitle: "Hot White Russian",
description: "Vodka, Coffee Liqueur, Cream",
},
{
title: "White Russian",
shortTitle: "White Russian",
description: "Coffee Liqueur, Vodka, Cream",
},
{
title: "Irish Coffee",
shortTitle: "Irish Coffee",
description: "Espresso, Irish Whiskey, Raw Sugar, Fresh Cream",
},
{
shortTitle: "Coffee",
title: "Regular Coffee",
description: "Brewed coffee, black",
},
{
title: "The API Pour - Mudslide",
shortTitle: "Mudslide",
description: "Vodka, Coffee Liqueur, Irish Cream, Cream",
},
{
shortTitle: "Espresso Martini",
description: "Espresso, Vodka, Coffee Liqueur",
title: "Espresso Martini",
},
{
title: "Maracuia Fitzgerald",
shortTitle: "Maracuia Fitzgerald",
description: "Gin, limão siciliano e maracujá; cítrico e herbal",
},
{
title: "Negroni",
shortTitle: "Negroni",
description: "Gin, vermute rosso e Campari; amargo e intenso",
},
{
title: "Macunaíma",
shortTitle: "Macunaíma",
description: "Cachaça, limão Taiti e Fener; cítrico e levemente amargo",
},
{
title: "Especiado (Não Alcoólico)",
shortTitle: "Especiado",
description:
"Maracujá, especiarias e limão; cítrico, frutado e picante",
},
{
title: "Verdejo (Não Alcoólico)",
shortTitle: "Verdejo",
description:
"Chá de laranja, manjericão e limão; herbal e levemente doce",
},
{
title: "Cosmopolitan",
shortTitle: "Cosmo",
description: "Vodka, Triple Sec, Cranberry Juice, Lime Juice",
},
{
title: "Appletini",
shortTitle: "Appletini",
description: "Vodka, Apple Schnapps, Apple Juice",
},
],
modifiers: ["Whipped Cream"],
},
} as Menus;