@fiado/type-kit 1.9.27 → 1.9.29

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.
@@ -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
  }
@@ -45,5 +45,6 @@ export declare enum ProductSubtypeEnum {
45
45
  P2P_TERN_OTHER_IN = "TERN_OTHER_IN",
46
46
  P2P_TERN_POCKET = "TERN_POCKET",
47
47
  CP_ACH_OUT = "ACH_OUT",
48
- CP_ACH_IN = "ACH_IN"
48
+ CP_ACH_IN = "ACH_IN",
49
+ CP_MC_SEND = "MC_SEND"
49
50
  }
@@ -59,4 +59,5 @@ var ProductSubtypeEnum;
59
59
  // CP
60
60
  ProductSubtypeEnum["CP_ACH_OUT"] = "ACH_OUT";
61
61
  ProductSubtypeEnum["CP_ACH_IN"] = "ACH_IN";
62
+ ProductSubtypeEnum["CP_MC_SEND"] = "MC_SEND";
62
63
  })(ProductSubtypeEnum || (exports.ProductSubtypeEnum = ProductSubtypeEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.9.27",
3
+ "version": "1.9.29",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -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
  }
@@ -64,4 +64,5 @@ export enum ProductSubtypeEnum {
64
64
  // CP
65
65
  CP_ACH_OUT = "ACH_OUT",
66
66
  CP_ACH_IN = "ACH_IN",
67
+ CP_MC_SEND = "MC_SEND",
67
68
  }