From 4b3869ef2cbe53c78d7b037a552afbf5134557b7 Mon Sep 17 00:00:00 2001 From: Stevche Radevski Date: Fri, 7 Mar 2025 20:58:37 +0100 Subject: [PATCH] fix: Add created at and updated at dates to payment session (#11774) --- packages/core/types/src/payment/common.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/core/types/src/payment/common.ts b/packages/core/types/src/payment/common.ts index ffe72c5967..e65597b380 100644 --- a/packages/core/types/src/payment/common.ts +++ b/packages/core/types/src/payment/common.ts @@ -552,6 +552,16 @@ export interface PaymentSessionDTO { */ authorized_at?: Date + /** + * When the payment session was created + */ + created_at: Date | string + + /** + * When the payment session was updated + */ + updated_at: Date | string + /** * The ID of the associated payment collection. */