summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/types/walletTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-02-04 17:13:31 +0100
committerFlorian Dold <florian@dold.me>2021-02-04 17:13:31 +0100
commitf262b288123d4198223274a3382b9a1110d3ca33 (patch)
treec94f505c0e4f3a4695f23138ed3b6a76c5befb1d /packages/taler-wallet-core/src/types/walletTypes.ts
parent83937a7198c17b267714b159f0e616a2536264d3 (diff)
downloadwallet-core-f262b288123d4198223274a3382b9a1110d3ca33.tar.gz
wallet-core-f262b288123d4198223274a3382b9a1110d3ca33.tar.bz2
wallet-core-f262b288123d4198223274a3382b9a1110d3ca33.zip
use new auth token for merchant in integration tests
Diffstat (limited to 'packages/taler-wallet-core/src/types/walletTypes.ts')
-rw-r--r--packages/taler-wallet-core/src/types/walletTypes.ts8
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 f195918ac..1b98df276 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;
- merchantApiKey: 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("merchantApiKey", codecForString())
+ .property("merchantAuthToken", codecForString())
.property("amount", codecForString())
.property("summary", codecForString())
.build("TestPayArgs");
@@ -706,7 +706,7 @@ export interface IntegrationTestArgs {
exchangeBaseUrl: string;
bankBaseUrl: string;
merchantBaseUrl: string;
- merchantApiKey: 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("merchantApiKey", codecForString())
+ .property("merchantAuthToken", codecForString())
.property("amountToSpend", codecForAmountString())
.property("amountToWithdraw", codecForAmountString())
.build("IntegrationTestArgs");