ggez-banking-sdk 0.3.18 → 0.3.20

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.
@@ -110,9 +110,10 @@ const FillCreateGatewayCryptoTransactionData = (data) => {
110
110
  },
111
111
  validate: data.validate,
112
112
  bank_account: {
113
+ type: data.bankAccountType,
113
114
  holder_name: data.holderName,
114
115
  currency_code: data.bankCurrencyCode,
115
- account_number: data.bankAccountNumber,
116
+ number: data.bankAccountNumber,
116
117
  sort_code: data.bankSortCode,
117
118
  },
118
119
  };
@@ -44,5 +44,6 @@ interface ICreateGatewayCryptoTransactionData {
44
44
  bankCurrencyCode: string;
45
45
  bankAccountNumber: string;
46
46
  bankSortCode: string;
47
+ bankAccountType: number;
47
48
  }
48
49
  export type { IInquiryTransactionData, ICreateSystemTransactionData, ICreateBlockchainTransactionData, ICreateGatewayCryptoTransactionData, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.3.18",
3
+ "version": "0.3.20",
4
4
  "description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",