-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.d.ts
72 lines (60 loc) · 1.3 KB
/
api.d.ts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
type RemotePagination<T> = {
data: T[];
page: number;
total: number;
per_page: number;
total_pages: number;
};
type RemoteTimeStamp = {
updated_at: string;
created_at: string;
};
type RemoteUser = {
id: string;
email: string;
is_active: boolean;
} & RemoteTimeStamp;
type RemoteVehicle = {
id: string;
plate: string;
} & RemoteTimeStamp;
type RemoteVehicleType = {
id: string;
name: string;
price_per_hour: number;
initial_price: number;
} & RemoteTimeStamp;
type RemoteDetailedVehicle = RemoteVehicle & { type: RemoteVehicleType };
type RemoteTicket = {
id: string;
invoice: RemoteInvoice | null;
vehicle: RemoteDetailedVehicle;
} & RemoteTimeStamp;
type RemoteInvoice = {
id: string;
paid: number;
change: number;
charged: number;
status: RemoteInvoiceStatus;
} & RemoteTimeStamp;
type RemoteInvoiceStatus = 'paid' | 'pending';
type RemoteCashRegister = {
id: string;
name: string;
value: number;
quantity: number;
} & RemoteTimeStamp;
type RemoteTransactionLogType = 'IN' | 'OUT';
type RemoteTransactionLogBill = {
id: string;
value;
number: number;
quantity: number;
};
type RemoteTransactionLog = {
id: string;
bills: RemoteTransactionLogBill[];
ticket: RemoteTicket;
type: RemoteTransactionLogType;
total: number;
} & RemoteTimeStamp;