remove unused interfaces
This commit is contained in:
parent
dcef82d677
commit
e7e337605e
@ -75,6 +75,10 @@ type DeviceIdString = string;
|
|||||||
*/
|
*/
|
||||||
type RawContractTerms = any;
|
type RawContractTerms = any;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unique identifier for an operation, used to either (a) reference
|
||||||
|
* the operation in a tombstone (b) disambiguate conflicting writes.
|
||||||
|
*/
|
||||||
type OperationUid = string;
|
type OperationUid = string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -201,7 +205,6 @@ export interface WalletBackupContentV1 {
|
|||||||
tombstones: Tombstone[];
|
tombstones: Tombstone[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tombstone in the format "<type>:<key>"
|
* Tombstone in the format "<type>:<key>"
|
||||||
*/
|
*/
|
||||||
|
@ -357,7 +357,6 @@ export interface AuditorRecord {
|
|||||||
expirationStamp: number;
|
expirationStamp: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export interface AuditorTrustInfo {
|
export interface AuditorTrustInfo {
|
||||||
/**
|
/**
|
||||||
* Base URL of the auditor.
|
* Base URL of the auditor.
|
||||||
@ -1231,31 +1230,6 @@ export enum RefundReason {
|
|||||||
AbortRefund = "abort-pay-refund",
|
AbortRefund = "abort-pay-refund",
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Record stored for every time we successfully submitted
|
|
||||||
* a payment to the merchant (both first time and re-play).
|
|
||||||
*/
|
|
||||||
export interface PayEventRecord {
|
|
||||||
proposalId: string;
|
|
||||||
sessionId: string | undefined;
|
|
||||||
isReplay: boolean;
|
|
||||||
timestamp: Timestamp;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ExchangeUpdatedEventRecord {
|
|
||||||
exchangeBaseUrl: string;
|
|
||||||
timestamp: Timestamp;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ReserveUpdatedEventRecord {
|
|
||||||
amountReserveBalance: string;
|
|
||||||
amountExpected: string;
|
|
||||||
reservePub: string;
|
|
||||||
timestamp: Timestamp;
|
|
||||||
reserveUpdateId: string;
|
|
||||||
newHistoryTransactions: ReserveTransaction[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface AllowedAuditorInfo {
|
export interface AllowedAuditorInfo {
|
||||||
auditorBaseUrl: string;
|
auditorBaseUrl: string;
|
||||||
auditorPub: string;
|
auditorPub: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user