diff options
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/taler-util/src/wallet-types.ts | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts index f2384ad8e..93653240b 100644 --- a/packages/taler-util/src/wallet-types.ts +++ b/packages/taler-util/src/wallet-types.ts @@ -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 { | 
