-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
68 lines (59 loc) · 1.23 KB
/
types.ts
File metadata and controls
68 lines (59 loc) · 1.23 KB
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
export interface NhongaConfig {
apiKey: string;
secretKey?: string;
baseUrl?: string;
}
export interface CreatePaymentRequest {
amount: number;
context: string;
callbackUrl?: string;
returnUrl?: string;
currency?: 'MZN' | 'USD';
environment?: 'prod' | 'dev';
}
export interface CreatePaymentResponse {
success: boolean;
error: string | null;
redirectUrl?: string;
id?: string;
}
export interface PaymentStatusRequest {
id: string;
}
export interface PaymentStatusResponse {
success: boolean;
status: 'pending' | 'completed' | 'cancelled';
amount: number;
tax: number;
method: string;
currency: string;
}
export interface MobilePaymentRequest {
method: 'mpesa' | 'emola';
amount: number;
context: string;
useremail: string;
userwhatsApp: string;
phone: string;
}
export interface MobilePaymentResponse {
success: boolean;
error: string | null;
id?: string;
currency?: string;
}
export interface WebhookPayload {
id: string;
productId: string;
method: string;
paid: number;
received: number;
fee: number;
context: string;
}
export class NhongaError extends Error {
constructor(message: string, public statusCode?: number) {
super(message);
this.name = 'NhongaError';
}
}