-
Notifications
You must be signed in to change notification settings - Fork 4
/
seedData.js
35 lines (34 loc) · 942 Bytes
/
seedData.js
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
const seedData = {
accounts: [
{
id: 'ce04e0a2-ecec-11ec-b7ed-f33adcba9538',
name: 'Our Favorite Customer',
createdAt: '2022-06-23T23:51:24.077Z',
updatedAt: '2022-06-23T23:51:24.077Z',
checkrAccount: {state: 'disconnected'},
},
],
candidates: [
{
id: 'efb0d238-a455-41c6-b923-e0cc4f5761e7',
email: '[email protected]',
name: 'Marge Simpson',
notes: 'foobar',
phone: '1111111111',
step: 'Interviewing',
createdAt: '2022-06-02 18:16:33.512 +00:00',
updatedAt: '2022-06-02 18:16:33.512 +00:00',
},
{
id: 'c44c8c7b-b07f-4a03-89ef-34396af15820',
email: '[email protected]',
name: 'Homer Simpson',
notes: 'foobar',
phone: '2222222222',
step: 'Pass',
createdAt: '2022-06-02 18:17:05.127 +00:00',
updatedAt: '2022-06-02 18:17:05.127 +00:00',
},
],
}
export default seedData