@fiado/type-kit 1.3.8 → 1.4.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.
@@ -30,4 +30,6 @@ export declare class TransactionCreateRequest {
30
30
  product: Product;
31
31
  typeOfDirectoryId: TypeOfDirectoryId;
32
32
  status: TransactionStatusEnum;
33
+ pagoConfiadoAccountBalance?: Number;
34
+ targetPagoConfiadoAccountBalance?: Number;
33
35
  }
@@ -15,5 +15,6 @@ export declare class TransactionGetResponse {
15
15
  currencyId: CountryId;
16
16
  operation: OperationEnum;
17
17
  status: TransactionStatusEnum;
18
+ balance: number;
18
19
  }[];
19
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.3.8",
3
+ "version": "1.4.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -107,6 +107,9 @@ export class TransactionCreateRequest {
107
107
  @IsNotEmpty()
108
108
  @IsEnum(TransactionStatusEnum)
109
109
  status: TransactionStatusEnum;
110
+
111
+ pagoConfiadoAccountBalance?: Number;
112
+ targetPagoConfiadoAccountBalance?: Number;
110
113
  }
111
114
 
112
115
 
@@ -16,5 +16,6 @@ export class TransactionGetResponse {
16
16
  currencyId: CountryId;
17
17
  operation: OperationEnum;
18
18
  status: TransactionStatusEnum;
19
+ balance: number;
19
20
  }[]
20
21
  }