diff options
author | Florian Dold <florian@dold.me> | 2021-02-04 18:26:22 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-02-04 18:26:22 +0100 |
commit | 8425d79d48636028612790588c1f57907abbb5fa (patch) | |
tree | f7ce328d8ce50b4ad7a1c96f9b5c322c1cb34197 | |
parent | b4d85be1c8fe74fe538670223b684789907f39b4 (diff) |
make auth token optional
-rw-r--r-- | packages/taler-wallet-core/src/types/walletTypes.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-wallet-core/src/types/walletTypes.ts b/packages/taler-wallet-core/src/types/walletTypes.ts index 1b98df276..022140911 100644 --- a/packages/taler-wallet-core/src/types/walletTypes.ts +++ b/packages/taler-wallet-core/src/types/walletTypes.ts @@ -689,7 +689,7 @@ export interface GetExchangeTosResult { export interface TestPayArgs { merchantBaseUrl: string; - merchantAuthToken: string; + merchantAuthToken?: string; amount: string; summary: string; } @@ -697,7 +697,7 @@ export interface TestPayArgs { export const codecForTestPayArgs = (): Codec<TestPayArgs> => buildCodecForObject<TestPayArgs>() .property("merchantBaseUrl", codecForString()) - .property("merchantAuthToken", codecForString()) + .property("merchantAuthToken", codecOptional(codecForString())) .property("amount", codecForString()) .property("summary", codecForString()) .build("TestPayArgs"); @@ -706,7 +706,7 @@ export interface IntegrationTestArgs { exchangeBaseUrl: string; bankBaseUrl: string; merchantBaseUrl: string; - merchantAuthToken: string; + merchantAuthToken?: string; amountToWithdraw: string; amountToSpend: string; } @@ -716,7 +716,7 @@ export const codecForIntegrationTestArgs = (): Codec<IntegrationTestArgs> => .property("exchangeBaseUrl", codecForString()) .property("bankBaseUrl", codecForString()) .property("merchantBaseUrl", codecForString()) - .property("merchantAuthToken", codecForString()) + .property("merchantAuthToken", codecOptional(codecForString())) .property("amountToSpend", codecForAmountString()) .property("amountToWithdraw", codecForAmountString()) .build("IntegrationTestArgs"); |