@stashfin/mysql2 1.4.84 → 1.4.86
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/models/Customer.d.ts +4 -3
- package/package.json +1 -1
package/models/Customer.d.ts
CHANGED
|
@@ -146,6 +146,7 @@ export interface CustomerDocumentsTable {
|
|
|
146
146
|
aadhaar_url?: string | null;
|
|
147
147
|
address_proof_url?: string | null;
|
|
148
148
|
selfiee_url?: string | null;
|
|
149
|
+
account_analytics_url?: string | null;
|
|
149
150
|
created_at?: Date | null;
|
|
150
151
|
updated_at?: Date | null;
|
|
151
152
|
}
|
|
@@ -207,13 +208,13 @@ export interface AaTransactionsTable {
|
|
|
207
208
|
amount?: number | null;
|
|
208
209
|
balance?: number | null;
|
|
209
210
|
category?: string | null;
|
|
210
|
-
|
|
211
|
+
category_code?: string | null;
|
|
211
212
|
customer_id?: number | null;
|
|
212
|
-
|
|
213
|
+
merchant_name?: string | null;
|
|
213
214
|
narration?: string | null;
|
|
214
215
|
payment_mode?: string | null;
|
|
215
216
|
reference?: string | null;
|
|
216
|
-
|
|
217
|
+
sub_category?: string | null;
|
|
217
218
|
txn_date?: Date | null;
|
|
218
219
|
txn_id?: string | null;
|
|
219
220
|
type?: string | null;
|