-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.types.ts
135 lines (121 loc) · 2.37 KB
/
common.types.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import { $Enums } from '@prisma/client';
export enum Role {
USER = 'USER',
ADMIN = 'ADMIN'
}
export type Item = {
description: string;
quantity: number;
price: number;
total: number;
};
interface DatabaseRecord {
id: string;
createdAt?: Date;
updatedAt?: Date;
}
export interface Business extends DatabaseRecord {
name: string;
logo: string;
description?: string;
email?: string;
phoneNumber?: string;
registrationNumber?: string;
address?: string;
}
export interface Customer extends DatabaseRecord {
name: string;
email: string;
phoneNumber: string;
address?: string;
businessId: string;
}
export interface Invoice extends DatabaseRecord {
amount: number;
dueDate: string;
status: $Enums.InvoiceStatus;
items: Item[];
address?: string;
businessId: string;
customerId: string;
invoiceId: string;
paymentLink?: string;
}
export type SuccessResponse<T> = {
message: string;
data: T;
};
export type ErrorResponse = {
message: string;
errors?: string[];
};
export type AnalyticsResponse = {
customers: {
count: string;
monthlyPercentageChange: string;
};
revenue: {
amount: string;
monthlyPercentageChange: string;
};
outstanding: {
amount: string;
monthlyPercentageChange: string;
};
withdrawals: {
amount: string;
monthlyPercentageChange: string;
};
};
export type SelectedInvoiceFields = Pick<Invoice, 'id' | 'invoiceId' | 'amount' | 'dueDate' | 'status'>
export type GetCustomerResponse = {
customer: Customer;
invoices: SelectedInvoiceFields[];
stats: {
paid: {
amount: string;
monthlyPercentageChange: string;
};
unpaid: {
amount: string;
monthlyPercentageChange: string;
};
chart: {
month: string;
paid: number;
unpaid: number;
}[];
}
}
interface PaystackBaseResponse {
status: boolean;
message: string;
}
export interface PaystackInitializeResponse extends PaystackBaseResponse {
data: {
authorization_url: string;
access_code: string;
reference: string;
};
}
export interface PaystackVerifyResponse extends PaystackBaseResponse {
data: {
status: 'abandoned' | 'success';
reference: string;
amount: number;
};
}
export interface PaystackWebhookResponse {
event: 'charge.success';
data: {
status: 'abandoned' | 'success';
reference: string;
amount: number;
metadata: {
businessName: string;
businessEmail: string;
customerName: string;
customerEmail: string;
};
};
}