Farmbot-Web-App/frontend/__test_support__/fake_state/images.ts

59 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-08-01 07:03:35 -06:00
import { TaggedImage, SpecialStatus } from "farmbot";
2017-06-29 12:54:02 -06:00
export let fakeImages: TaggedImage[] = [
{
2017-10-27 07:31:25 -06:00
"kind": "Image",
"specialStatus": SpecialStatus.SAVED,
2017-06-29 12:54:02 -06:00
"body": {
"id": 9,
"device_id": 8,
"attachment_processed_at": "2017-06-01T14:16:55.709Z",
"updated_at": "2017-06-01T14:16:55.715Z",
"created_at": "2017-06-01T14:15:50.666Z",
"attachment_url": "imgur.com",
"meta": {
"x": 632,
"y": 347,
"z": 164
}
},
"uuid": "Image.9.3"
2017-06-29 12:54:02 -06:00
},
{
2017-10-27 07:31:25 -06:00
"kind": "Image",
"specialStatus": SpecialStatus.SAVED,
2017-06-29 12:54:02 -06:00
"body": {
"id": 8,
"device_id": 8,
"attachment_processed_at": "2017-06-01T14:16:45.899Z",
"updated_at": "2017-06-01T14:16:45.903Z",
"created_at": "2017-06-01T14:14:22.747Z",
"attachment_url": "imgur.com",
"meta": {
"x": 632,
"y": 347,
"z": 164
}
},
"uuid": "Image.8.4"
2017-06-29 12:54:02 -06:00
},
{
2017-10-27 07:31:25 -06:00
"kind": "Image",
"specialStatus": SpecialStatus.SAVED,
2017-06-29 12:54:02 -06:00
"body": {
"id": 7,
"device_id": 8,
"attachment_processed_at": "2017-06-01T14:16:34.839Z",
"updated_at": "2017-06-01T14:16:34.984Z",
"created_at": "2017-06-01T14:14:22.726Z",
"attachment_url": "imgur.com",
"meta": {
"x": 266,
"y": 330,
"z": 53
}
},
"uuid": "Image.7.5"
2017-06-29 12:54:02 -06:00
}
];