contacts.js 801 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. export const contacts = [
  2. // user with edited name
  3. {
  4. type: 'user',
  5. email: 'test-user@example.com',
  6. first_name: 'Test',
  7. last_name: 'User',
  8. name: 'Test User',
  9. },
  10. // user with default name (email prefix)
  11. {
  12. type: 'user',
  13. email: 'test@example.com',
  14. first_name: 'test',
  15. },
  16. // no last name
  17. {
  18. type: 'user',
  19. first_name: 'Eratosthenes',
  20. email: 'eratosthenes@example.com',
  21. },
  22. // more users
  23. {
  24. type: 'user',
  25. first_name: 'Claudius',
  26. last_name: 'Ptolemy',
  27. email: 'ptolemy@example.com',
  28. },
  29. {
  30. type: 'user',
  31. first_name: 'Abd al-Rahman',
  32. last_name: 'Al-Sufi',
  33. email: 'al-sufi@example.com',
  34. },
  35. {
  36. type: 'user',
  37. first_name: 'Nicolaus',
  38. last_name: 'Copernicus',
  39. email: 'copernicus@example.com',
  40. },
  41. ]