From de05c7fa6d0f53fc2f6b94d53bda6c312522b25b Mon Sep 17 00:00:00 2001 From: Seweryn Kras Date: Tue, 28 May 2024 16:51:31 +0200 Subject: [PATCH] chore: make payment process options partial in payment module createAgreementPaymentProcess --- src/payment/payment.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/payment/payment.module.ts b/src/payment/payment.module.ts index ba4a6000b..8749a8234 100644 --- a/src/payment/payment.module.ts +++ b/src/payment/payment.module.ts @@ -59,7 +59,7 @@ export interface PaymentModule { createAgreementPaymentProcess( agreement: Agreement, allocation: Allocation, - options?: PaymentProcessOptions, + options?: Partial, ): AgreementPaymentProcess; /** @@ -167,7 +167,7 @@ export class PaymentModuleImpl implements PaymentModule { createAgreementPaymentProcess( agreement: Agreement, allocation: Allocation, - options?: PaymentProcessOptions, + options?: Partial, ): AgreementPaymentProcess { return new AgreementPaymentProcess( agreement,