@fiado/type-kit 1.9.28 → 1.9.30

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.
@@ -6,5 +6,6 @@ export declare class BankAccountAchTransferResponse {
6
6
  bankInfo: BankInfo;
7
7
  transferType: string;
8
8
  status: AchTransferStatusEnum;
9
+ trackingNumber: string;
9
10
  amount: number;
10
11
  }
@@ -1,8 +1,10 @@
1
+ import { ExternalAccountOwnershipEnum } from "../enums/ExternalAccountOwnershipEnum";
1
2
  import { ExternalAccountTypeEnum } from "../enums/ExternalAccountTypeEnum";
2
3
  export default class GetExternalBankAccountResponse {
3
4
  id: string;
4
5
  countryId: string;
5
6
  accountNumber: string | null;
7
+ routingNumber?: string | null;
6
8
  bankId: string;
7
9
  alias: string | null;
8
10
  directoryId: string;
@@ -11,4 +13,5 @@ export default class GetExternalBankAccountResponse {
11
13
  accountType: ExternalAccountTypeEnum;
12
14
  bankName: string | null;
13
15
  iconUrl: string | null;
16
+ ownership?: ExternalAccountOwnershipEnum;
14
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.9.28",
3
+ "version": "1.9.30",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -7,5 +7,6 @@ export class BankAccountAchTransferResponse {
7
7
  bankInfo!: BankInfo;
8
8
  transferType!: string;
9
9
  status: AchTransferStatusEnum;
10
+ trackingNumber: string;
10
11
  amount!: number;
11
12
  }
@@ -1,9 +1,11 @@
1
- import {ExternalAccountTypeEnum} from "../enums/ExternalAccountTypeEnum";
1
+ import { ExternalAccountOwnershipEnum } from "../enums/ExternalAccountOwnershipEnum";
2
+ import { ExternalAccountTypeEnum } from "../enums/ExternalAccountTypeEnum";
2
3
 
3
4
  export default class GetExternalBankAccountResponse {
4
5
  id: string;
5
6
  countryId: string;
6
7
  accountNumber: string | null;
8
+ routingNumber?: string | null;
7
9
  bankId: string;
8
10
  alias: string | null;
9
11
  directoryId: string;
@@ -11,5 +13,6 @@ export default class GetExternalBankAccountResponse {
11
13
  accountHolderName: string;
12
14
  accountType: ExternalAccountTypeEnum;
13
15
  bankName: string | null;
14
- iconUrl: string | null
16
+ iconUrl: string | null;
17
+ ownership?: ExternalAccountOwnershipEnum;
15
18
  }