@fiado/type-kit 3.129.0 → 3.130.0
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.
|
@@ -13,6 +13,12 @@ export declare class RemittanceBackofficeUserView {
|
|
|
13
13
|
unirSignupDate?: string;
|
|
14
14
|
activatedAt: string;
|
|
15
15
|
lastDataSyncAt?: string;
|
|
16
|
+
txCount?: number;
|
|
17
|
+
totalSentUSD?: number;
|
|
18
|
+
lastTxAt?: string;
|
|
19
|
+
cancelledTxCount?: number;
|
|
20
|
+
cancelledVolumeUSD?: number;
|
|
21
|
+
beneficiaryCount?: number;
|
|
16
22
|
createdAt: string;
|
|
17
23
|
updatedAt: string;
|
|
18
24
|
}
|
package/package.json
CHANGED
|
@@ -13,6 +13,14 @@ export class RemittanceBackofficeUserView {
|
|
|
13
13
|
unirSignupDate?: string;
|
|
14
14
|
activatedAt!: string;
|
|
15
15
|
lastDataSyncAt?: string;
|
|
16
|
+
// Contadores denormalizados (B1) para el listado de Operación. Volumen BRUTO
|
|
17
|
+
// (incluye canceladas); las canceladas se rastrean aparte para derivar el neto.
|
|
18
|
+
txCount?: number;
|
|
19
|
+
totalSentUSD?: number;
|
|
20
|
+
lastTxAt?: string;
|
|
21
|
+
cancelledTxCount?: number;
|
|
22
|
+
cancelledVolumeUSD?: number;
|
|
23
|
+
beneficiaryCount?: number;
|
|
16
24
|
createdAt!: string;
|
|
17
25
|
updatedAt!: string;
|
|
18
26
|
}
|