aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/merchant-api-types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-util/src/merchant-api-types.ts')
-rw-r--r--packages/taler-util/src/merchant-api-types.ts20
1 files changed, 1 insertions, 19 deletions
diff --git a/packages/taler-util/src/merchant-api-types.ts b/packages/taler-util/src/merchant-api-types.ts
index ce30aa054..9933b93dc 100644
--- a/packages/taler-util/src/merchant-api-types.ts
+++ b/packages/taler-util/src/merchant-api-types.ts
@@ -47,7 +47,7 @@ import {
WireAccount,
codecForWireAccount,
codecForList,
- HashCodeString,
+ FacadeCredentials,
} from "@gnu-taler/taler-util";
export interface MerchantPostOrderRequest {
@@ -401,21 +401,3 @@ export interface AccountAddDetails {
// To really delete credentials, set them to the type: "none".
credit_facade_credentials?: FacadeCredentials;
}
-
-export type FacadeCredentials =
- | NoFacadeCredentials
- | BasicAuthFacadeCredentials;
-
-export interface NoFacadeCredentials {
- type: "none";
-}
-
-export interface BasicAuthFacadeCredentials {
- type: "basic";
-
- // Username to use to authenticate
- username: string;
-
- // Password to use to authenticate
- password: string;
-}