diff options
Diffstat (limited to 'packages/taler-util/src')
| -rw-r--r-- | packages/taler-util/src/walletTypes.ts | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-util/src/walletTypes.ts b/packages/taler-util/src/walletTypes.ts index 95772a58b..e79aa0b36 100644 --- a/packages/taler-util/src/walletTypes.ts +++ b/packages/taler-util/src/walletTypes.ts @@ -874,7 +874,7 @@ export const codecForTestPayArgs = (): Codec<TestPayArgs> =>  export interface IntegrationTestArgs {    exchangeBaseUrl: string;    bankBaseUrl: string; -  bankAccessApiBaseUrl: string; +  bankAccessApiBaseUrl?: string;    merchantBaseUrl: string;    merchantAuthToken?: string;    amountToWithdraw: string; @@ -889,7 +889,7 @@ export const codecForIntegrationTestArgs = (): Codec<IntegrationTestArgs> =>      .property("merchantAuthToken", codecOptional(codecForString()))      .property("amountToSpend", codecForAmountString())      .property("amountToWithdraw", codecForAmountString()) -    .property("bankAccessApiBaseUrl", codecForAmountString()) +    .property("bankAccessApiBaseUrl", codecOptional(codecForAmountString()))      .build("IntegrationTestArgs");  export interface AddExchangeRequest {  | 
