mark proposalid as depreacted
This commit is contained in:
parent
bf3e99ea27
commit
2f072a4c12
@ -776,7 +776,7 @@ export const codecForPreparePayResultAlreadyConfirmed =
|
||||
.property("amountEffective", codecOptional(codecForAmountString()))
|
||||
.property("amountRaw", codecForAmountString())
|
||||
.property("paid", codecForBoolean())
|
||||
.property("talerUri", codecOptional(codecForString()))
|
||||
.property("talerUri", codecForString())
|
||||
.property("contractTerms", codecForAny())
|
||||
.property("contractTermsHash", codecForString())
|
||||
.property("transactionId", codecForTransactionIdStr())
|
||||
@ -828,6 +828,9 @@ export interface PreparePayResultPaymentPossible {
|
||||
export interface PreparePayResultInsufficientBalance {
|
||||
status: PreparePayResultType.InsufficientBalance;
|
||||
transactionId: TransactionIdStr;
|
||||
/**
|
||||
* @deprecated use transactionId
|
||||
*/
|
||||
proposalId: string;
|
||||
contractTerms: MerchantContractTerms;
|
||||
amountRaw: string;
|
||||
@ -843,8 +846,11 @@ export interface PreparePayResultAlreadyConfirmed {
|
||||
amountRaw: string;
|
||||
amountEffective: string | undefined;
|
||||
contractTermsHash: string;
|
||||
/**
|
||||
* @deprecated use transactionId
|
||||
*/
|
||||
proposalId: string;
|
||||
talerUri?: string;
|
||||
talerUri: string;
|
||||
}
|
||||
|
||||
export interface BankWithdrawDetails {
|
||||
|
Loading…
Reference in New Issue
Block a user