Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ export { default as HttpURLConnectionClient } from "./httpClient/httpURLConnecti
// Export a custom exception for HTTP client errors
export { default as HttpClientException } from "./httpClient/httpClientException";

// Export NexoCrypto for local terminal API security
// Export NexoCrypto and its exceptions for local terminal API security
export { default as NexoCrypto } from "./security/nexoCrypto";
export { default as InvalidSecurityKeyException } from "./security/exception/invalidSecurityKeyException";

// Export all the typings under the `Types` namespace
export * as Types from "./typings";
Expand Down
4 changes: 2 additions & 2 deletions src/typings/checkout/sepaDirectDebitDetails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ export class SepaDirectDebitDetails {
/**
* The International Bank Account Number (IBAN).
*/
"iban": string;
"iban"?: string;
/**
* The name of the bank account holder.
*/
"ownerName": string;
"ownerName"?: string;
/**
* This is the `recurringDetailReference` returned in the response when you created the token.
*
Expand Down