@@ -255,18 +255,103 @@ export default defineStack({
255255 object : 'account' ,
256256 mode : 'upsert' ,
257257 records : [
258- { _id : "1" , name : "TechCorp" , industry : "Technology" , type : "Customer" , billing_address : "100 Tech Blvd, Silicon Valley, CA" , website : "https://techcorp.com" , phone : "555-0100" } ,
259- { _id : "2" , name : "Software Inc" , industry : "Technology" , type : "Partner" , billing_address : "200 Cloud Way, Seattle, WA" , website : "https://softwareinc.com" , phone : "555-0200" } ,
260- { _id : "3" , name : "Good Grief LLC" , industry : "Retail" , type : "Customer" , billing_address : "300 Peanut Ave, Minneapolis, MN" , website : "https://peanuts.com" , phone : "555-0300" }
258+ {
259+ _id : "1" ,
260+ name : "ObjectStack HQ" ,
261+ industry : "Technology" ,
262+ type : "Partner" ,
263+ billing_address : "44 Tehama St, San Francisco, CA 94105" ,
264+ latitude : 37.7879 ,
265+ longitude : - 122.3961 ,
266+ website : "https://objectstack.com" ,
267+ phone : "555-0101"
268+ } ,
269+ {
270+ _id : "2" ,
271+ name : "Salesforce Tower" ,
272+ industry : "Technology" ,
273+ type : "Customer" ,
274+ billing_address : "415 Mission St, San Francisco, CA 94105" ,
275+ latitude : 37.7897 ,
276+ longitude : - 122.3972 ,
277+ website : "https://salesforce.com" ,
278+ phone : "555-0102"
279+ } ,
280+ {
281+ _id : "3" ,
282+ name : "Central Park Office" ,
283+ industry : "Finance" ,
284+ type : "Customer" ,
285+ billing_address : "New York, NY" ,
286+ latitude : 40.7829 ,
287+ longitude : - 73.9654 ,
288+ website : "https://finance.example.com" ,
289+ phone : "555-0103"
290+ } ,
291+ {
292+ _id : "4" ,
293+ name : "London Branch" ,
294+ industry : "Finance" ,
295+ type : "Partner" ,
296+ billing_address : "London, UK" ,
297+ latitude : 51.5074 ,
298+ longitude : - 0.1278 ,
299+ website : "https://uk.example.com" ,
300+ phone : "555-0104"
301+ } ,
302+ {
303+ _id : "5" ,
304+ name : "Tokyo Innovation Center" ,
305+ industry : "Technology" ,
306+ type : "Vendor" ,
307+ billing_address : "Tokyo, Japan" ,
308+ latitude : 35.6762 ,
309+ longitude : 139.6503 ,
310+ website : "https://jp.example.com" ,
311+ phone : "555-0105"
312+ }
261313 ]
262314 } ,
263315 {
264316 object : 'contact' ,
265317 mode : 'upsert' ,
266318 records : [
267- { _id : "1" , name : "Alice Johnson" , email : "alice@example.com" , phone : "555-0101" , title : "VP Sales" , company : "TechCorp" , status : "Active" } ,
268- { _id : "2" , name : "Bob Smith" , email : "bob@tech.com" , phone : "555-0102" , title : "Developer" , company : "Software Inc" , status : "Lead" } ,
269- { _id : "3" , name : "Charlie Brown" , email : "charlie@peanuts.com" , phone : "555-0103" , title : "Manager" , company : "Good Grief LLC" , status : "Customer" }
319+ {
320+ _id : "1" ,
321+ name : "Alice Johnson" ,
322+ email : "alice@example.com" ,
323+ phone : "555-0101" ,
324+ title : "VP Sales" ,
325+ company : "TechCorp" ,
326+ status : "Active" ,
327+ latitude : 40.7128 ,
328+ longitude : - 74.0060 , // NYC
329+ address : "New York, NY"
330+ } ,
331+ {
332+ _id : "2" ,
333+ name : "Bob Smith" ,
334+ email : "bob@tech.com" ,
335+ phone : "555-0102" ,
336+ title : "Developer" ,
337+ company : "Software Inc" ,
338+ status : "Lead" ,
339+ latitude : 47.6062 ,
340+ longitude : - 122.3321 , // Seattle
341+ address : "Seattle, WA"
342+ } ,
343+ {
344+ _id : "3" ,
345+ name : "Charlie Brown" ,
346+ email : "charlie@peanuts.com" ,
347+ phone : "555-0103" ,
348+ title : "Manager" ,
349+ company : "Good Grief LLC" ,
350+ status : "Customer" ,
351+ latitude : 44.9778 ,
352+ longitude : - 93.2650 , // Minneapolis
353+ address : "Minneapolis, MN"
354+ }
270355 ]
271356 } ,
272357 {
0 commit comments