resurgence-data 1.0.22 → 1.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/biller/biller-response.dto.d.ts +160 -0
- package/dist/biller/biller-response.dto.js +743 -0
- package/dist/biller/biller.dto.d.ts +219 -0
- package/dist/biller/biller.dto.js +1440 -0
- package/dist/biller/index.d.ts +2 -0
- package/dist/biller/index.js +18 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/biller/biller-response.dto.ts +599 -0
- package/src/biller/biller.dto.ts +1276 -0
- package/src/biller/index.ts +2 -0
- package/src/index.ts +1 -0
@@ -0,0 +1,160 @@
|
|
1
|
+
export declare class BillerCategoryResponseDTO {
|
2
|
+
id: string;
|
3
|
+
name: string;
|
4
|
+
description?: string;
|
5
|
+
billers?: BillerResponseDTO[];
|
6
|
+
}
|
7
|
+
export declare class ServiceResponseDTO {
|
8
|
+
id: string;
|
9
|
+
name: string;
|
10
|
+
chargeConfigurations?: BillerChargeConfigurationResponseDTO[];
|
11
|
+
}
|
12
|
+
export declare class BankResponseDTO {
|
13
|
+
id: string;
|
14
|
+
name: string;
|
15
|
+
slug: string;
|
16
|
+
code: string;
|
17
|
+
longCode: string;
|
18
|
+
settlementAccounts?: SettlementAccountResponseDTO[];
|
19
|
+
}
|
20
|
+
export declare class BillerResponseDTO {
|
21
|
+
id: string;
|
22
|
+
categoryId: string;
|
23
|
+
name: string;
|
24
|
+
live: boolean;
|
25
|
+
active: boolean;
|
26
|
+
slug?: string;
|
27
|
+
billerCode?: string;
|
28
|
+
createdAt: Date;
|
29
|
+
updatedAt: Date;
|
30
|
+
category: BillerCategoryResponseDTO;
|
31
|
+
settlementAccounts: SettlementAccountResponseDTO[];
|
32
|
+
profile?: BillerProfileResponseDTO;
|
33
|
+
chargeConfigurations: BillerChargeConfigurationResponseDTO[];
|
34
|
+
goLiveRequest?: GoLiveRequestResponseDTO;
|
35
|
+
documents: BillerDocumentResponseDTO[];
|
36
|
+
contact?: BillerContactResponseDTO;
|
37
|
+
customers: CustomerResponseDTO[];
|
38
|
+
items: BillerItemResponseDTO[];
|
39
|
+
invoices: InvoiceResponseDTO[];
|
40
|
+
}
|
41
|
+
export declare class BillerProfileResponseDTO {
|
42
|
+
id: string;
|
43
|
+
name?: string;
|
44
|
+
billerId: string;
|
45
|
+
hasTransactionLimit: boolean;
|
46
|
+
transactionLimit: number;
|
47
|
+
delimiter: string;
|
48
|
+
createdAt: Date;
|
49
|
+
updatedAt: Date;
|
50
|
+
biller: BillerResponseDTO;
|
51
|
+
}
|
52
|
+
export declare class BillerChargeConfigurationResponseDTO {
|
53
|
+
id: string;
|
54
|
+
serviceId: string;
|
55
|
+
active: boolean;
|
56
|
+
capped: boolean;
|
57
|
+
floored: boolean;
|
58
|
+
chargeCap: number;
|
59
|
+
chargeFloor: number;
|
60
|
+
currency: string;
|
61
|
+
chargeType: string;
|
62
|
+
fixedAmount: number;
|
63
|
+
percentAmount: number;
|
64
|
+
createdAt: Date;
|
65
|
+
updatedAt: Date;
|
66
|
+
biller?: BillerResponseDTO[];
|
67
|
+
service: ServiceResponseDTO;
|
68
|
+
}
|
69
|
+
export declare class SettlementAccountResponseDTO {
|
70
|
+
id: string;
|
71
|
+
billerId: string;
|
72
|
+
bankId: string;
|
73
|
+
default: boolean;
|
74
|
+
accountName: string;
|
75
|
+
accountNumber: string;
|
76
|
+
currency: string;
|
77
|
+
createdAt: Date;
|
78
|
+
updatedAt: Date;
|
79
|
+
biller: BillerResponseDTO;
|
80
|
+
bank: BankResponseDTO;
|
81
|
+
onboardedAccount?: OnboardedAccountResponseDTO;
|
82
|
+
}
|
83
|
+
export declare class OnboardedAccountResponseDTO {
|
84
|
+
id: string;
|
85
|
+
settlementAccountId: string;
|
86
|
+
vendor: string;
|
87
|
+
createdAt: Date;
|
88
|
+
updatedAt: Date;
|
89
|
+
settlementAccount: SettlementAccountResponseDTO;
|
90
|
+
}
|
91
|
+
export declare class BillerDocumentResponseDTO {
|
92
|
+
id: string;
|
93
|
+
billerId: string;
|
94
|
+
url: string;
|
95
|
+
type: string;
|
96
|
+
biller: BillerResponseDTO;
|
97
|
+
}
|
98
|
+
export declare class GoLiveRequestResponseDTO {
|
99
|
+
id: string;
|
100
|
+
billerId: string;
|
101
|
+
status: string;
|
102
|
+
createdAt: Date;
|
103
|
+
updatedAt: Date;
|
104
|
+
biller: BillerResponseDTO;
|
105
|
+
}
|
106
|
+
export declare class BillerContactResponseDTO {
|
107
|
+
id: string;
|
108
|
+
billerId: string;
|
109
|
+
contactName: string;
|
110
|
+
emailAddress: string;
|
111
|
+
phoneNumber?: string;
|
112
|
+
dob: Date;
|
113
|
+
address: string;
|
114
|
+
country: string;
|
115
|
+
city: string;
|
116
|
+
state: string;
|
117
|
+
createdAt: Date;
|
118
|
+
updatedAt: Date;
|
119
|
+
biller: BillerResponseDTO;
|
120
|
+
}
|
121
|
+
export declare class CustomerResponseDTO {
|
122
|
+
id: string;
|
123
|
+
billerId: string;
|
124
|
+
name: string;
|
125
|
+
emailAddress?: string;
|
126
|
+
phoneNumber?: string;
|
127
|
+
createdAt: Date;
|
128
|
+
updatedAt: Date;
|
129
|
+
biller: BillerResponseDTO;
|
130
|
+
invoices: InvoiceResponseDTO[];
|
131
|
+
}
|
132
|
+
export declare class BillerItemResponseDTO {
|
133
|
+
id: string;
|
134
|
+
billerId: string;
|
135
|
+
amount: number;
|
136
|
+
source?: string;
|
137
|
+
customerIdentifierName?: string;
|
138
|
+
serviceFee: number;
|
139
|
+
currency: string;
|
140
|
+
description?: string;
|
141
|
+
external: boolean;
|
142
|
+
createdAt: Date;
|
143
|
+
updatedAt: Date;
|
144
|
+
biller: BillerResponseDTO;
|
145
|
+
invoices: InvoiceResponseDTO[];
|
146
|
+
}
|
147
|
+
export declare class InvoiceResponseDTO {
|
148
|
+
id: string;
|
149
|
+
billerId: string;
|
150
|
+
customerId: string;
|
151
|
+
discountValue: number;
|
152
|
+
discountType: string;
|
153
|
+
dueDate: Date;
|
154
|
+
status: string;
|
155
|
+
createdAt: Date;
|
156
|
+
updatedAt: Date;
|
157
|
+
billerItems: BillerItemResponseDTO[];
|
158
|
+
biller: BillerResponseDTO;
|
159
|
+
customer: CustomerResponseDTO;
|
160
|
+
}
|