Skip to content

Commit 6960820

Browse files
authored
retailer cellar inventory and sync (#6)
1 parent 3c44cc6 commit 6960820

File tree

3 files changed

+231
-92
lines changed

3 files changed

+231
-92
lines changed

fly.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ primary_region = 'iad'
66
[http_service]
77
internal_port = 80
88
force_https = true
9-
auto_stop_machines = 'stop'
9+
auto_stop_machines = 'suspend'
1010
auto_start_machines = true
11-
min_machines_running = 1
11+
min_machines_running = 0
1212
processes = ['app']
1313

1414
[[vm]]

src/types/Retailer.ts

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export interface RetailerInventory {
1717
retailerId: string;
1818
source: string;
1919
vintage: number;
20+
varietal: string;
2021
wineId: string;
2122
matched?: boolean;
2223
}
@@ -111,100 +112,109 @@ export const mockInventory: RetailerInventory[] = [
111112
{
112113
wineId: "w1",
113114
externalItemId: "KU346EH3JSHXWFOIH2EUJW2A",
114-
name: "Young Family Pinot Noir",
115+
name: "Young Family",
115116
producer: "The Clam Farm",
116117
retailerId: "r1",
117118
vintage: 2020,
119+
varietal: "Pinot Noir",
118120
price: "$36.90",
119121
source: "CANONICAL",
120-
description: "Lovely beautiful wine",
121-
matched: false,
122+
description: "Lovely beautiful wine"
122123
},
123124
{
124125
wineId: "w2",
125126
externalItemId: "RCKQTOXZK64TRTN6RF4SR4DB-1",
126-
name: "Austin Hope Cabernet Sauvignon",
127+
name: "Austin Hope",
127128
producer: "Hope Family Wines",
128129
retailerId: "r1",
129130
vintage: 2018,
131+
varietal: "Cabernet Sauvignon",
130132
price: "$59.99",
131133
source: "SQUARE",
132-
description: "A bold Cabernet Sauvignon from Paso Robles."
134+
description: "A bold Cabernet Sauvignon from Paso Robles.",
133135
},
134136
{
135137
wineId: "w3",
136138
externalItemId: "RCKQTOXZK64TRTN6RF4SR4DB-2",
137-
name: "Austin Hope Chardonnay",
139+
name: "Austin Hope",
138140
producer: "Hope Family Wines",
139141
retailerId: "r1",
140142
vintage: 2021,
143+
varietal: "Chardonnay",
141144
price: "$39.99",
142-
source: "SQUARE",
145+
source: "CANONICAL",
143146
description: "Vibrant Chardonnay with notes of citrus and oak.",
144-
matched: true
145147
},
146148
{
147149
wineId: "w4",
148150
externalItemId: "RCKQTOXZK64TRTN6RF4SR4DB-3",
149-
name: "Austin Hope Reserve Blend",
151+
name: "Austin Hope Reserve",
150152
producer: "Hope Family Wines",
151153
retailerId: "r1",
152154
vintage: 2021,
155+
varietal: "Blend",
153156
price: "$79.99",
154157
source: "SQUARE",
155-
description: "Premium blend with complex flavors and aromas."
158+
description: "Premium blend with complex flavors and aromas.",
159+
matched: true,
156160
},
157161
{
158162
wineId: "w5",
159163
externalItemId: "TRERADF23098432084ERE0889",
160-
name: "Auctioneer Cabernet Sauvignon",
164+
name: "Auctioneer",
161165
producer: "Auctioneer",
162166
retailerId: "r1",
163167
vintage: 2021,
168+
varietal: "Cabernet Sauvignon",
164169
price: "$45.00",
165170
source: "SQUARE",
166171
description: "Isabelle's favorite wine"
167172
},
168173
{
169174
wineId: "w6",
170175
externalItemId: "XCVMNCXV20384230948ZDF298-1",
171-
name: "Luli Chardonnay",
176+
name: "Luli",
172177
producer: "Luli Wines",
173178
retailerId: "r1",
174179
vintage: 2023,
180+
varietal: "Chardonnay",
175181
price: "$39.99",
176-
source: "CANONICAL",
182+
source: "SQUARE",
177183
description: "The Luli Chardonnay was made from hand-picked fruit and whole-cluster pressed grapes."
178184
},
179185
{
180186
wineId: "w7",
181187
externalItemId: "XCVMNCXV20384230948ZDF298-2",
182-
name: "Luli Monte Linda Pinot Noir",
188+
name: "Luli Monte Linda",
183189
producer: "Luli Wines",
184190
retailerId: "r1",
185191
vintage: 2022,
192+
varietal: "Pinot Noir",
186193
price: "$29.99",
187-
source: "SQUARE",
194+
source: "CANONICAL",
188195
description: "Luli Pinot Noir is made with classic winemaking techniques."
189196
},
190197
{
191198
wineId: "w9",
192199
externalItemId: "QERPI293784PIDF089324LJFDK",
193-
name: "Just a Wine Chardonnay",
200+
name: "Just a Wine",
194201
producer: "Producer",
195202
retailerId: "r1",
196203
vintage: 2023,
204+
varietal: "Chardonnay",
197205
price: "$15.99",
198206
source: "SQUARE",
199-
description: "Nothing special"
207+
description: "Nothing special",
208+
matched: true,
200209
},
201210
{
202211
wineId: "w10",
203212
externalItemId: "ZZC20384ENEOWR0238498023FF",
204-
name: "Just Another Wine Pinot Noir",
213+
name: "Just Another Wine",
205214
producer: "Producer",
206215
retailerId: "r1",
207216
vintage: 2022,
217+
varietal: "Pinot Noir",
208218
price: "$17.99",
209219
source: "SQUARE",
210220
description: "Still nothing special"

0 commit comments

Comments
 (0)