@fiado/type-kit 3.130.0 → 3.131.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.
@@ -19,6 +19,10 @@ export declare class RemittanceBackofficeTransaction {
19
19
  receivedAmount: number;
20
20
  receivedCurrency: string;
21
21
  exchangeRate: number;
22
+ /** Tasa wholesale de UNIR (partnerExchangeRate). Se persiste en el sync; ausente hasta el 1er sync (o mientras UNIR la mande null). */
23
+ wholesaleRate?: number;
24
+ /** Moneda de la tasa wholesale (partnerFxCurrency). */
25
+ wholesaleCurrency?: string;
22
26
  serviceFee: number;
23
27
  stateFee?: number;
24
28
  totalAmount?: number;
@@ -3,4 +3,6 @@ import { RemittanceBackofficeTransaction } from "./RemittanceBackofficeTransacti
3
3
  export declare class RemittanceBackofficeTxListResponse {
4
4
  items: RemittanceBackofficeTransaction[];
5
5
  index?: string;
6
+ /** Total de tx que matchean el filtro (COUNT). Opcional: ausente si no se solicitó. */
7
+ total?: number;
6
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.130.0",
3
+ "version": "3.131.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -20,6 +20,10 @@ export class RemittanceBackofficeTransaction {
20
20
  receivedAmount!: number;
21
21
  receivedCurrency!: string;
22
22
  exchangeRate!: number;
23
+ /** Tasa wholesale de UNIR (partnerExchangeRate). Se persiste en el sync; ausente hasta el 1er sync (o mientras UNIR la mande null). */
24
+ wholesaleRate?: number;
25
+ /** Moneda de la tasa wholesale (partnerFxCurrency). */
26
+ wholesaleCurrency?: string;
23
27
  serviceFee!: number;
24
28
  stateFee?: number;
25
29
  totalAmount?: number;
@@ -4,4 +4,6 @@ import { RemittanceBackofficeTransaction } from "./RemittanceBackofficeTransacti
4
4
  export class RemittanceBackofficeTxListResponse {
5
5
  items!: RemittanceBackofficeTransaction[];
6
6
  index?: string;
7
+ /** Total de tx que matchean el filtro (COUNT). Opcional: ausente si no se solicitó. */
8
+ total?: number;
7
9
  }