From 750c266b6c5af6488541c01dda0153334ff4faa1 Mon Sep 17 00:00:00 2001 From: nediam Date: Thu, 16 Jan 2020 16:02:13 +0100 Subject: [PATCH 1/5] hack for FULFILLMENT_STATUS_CHANGED --- src/Model/CheckoutFormStatus.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Model/CheckoutFormStatus.php b/src/Model/CheckoutFormStatus.php index ce5bb5b..2e52bdd 100644 --- a/src/Model/CheckoutFormStatus.php +++ b/src/Model/CheckoutFormStatus.php @@ -47,7 +47,8 @@ class CheckoutFormStatus const BOUGHT = 'BOUGHT'; const FILLED_IN = 'FILLED_IN'; const READY_FOR_PROCESSING = 'READY_FOR_PROCESSING'; - + const FULFILLMENT_STATUS_CHANGED = 'FULFILLMENT_STATUS_CHANGED'; + /** * Gets allowable values of the enum * @return string[] From 10432407207a3799220c32e1ef59305b7c17a791 Mon Sep 17 00:00:00 2001 From: nediam Date: Thu, 16 Jan 2020 16:10:19 +0100 Subject: [PATCH 2/5] hack for FULFILLMENT_STATUS_CHANGED --- src/Model/CheckoutFormStatus.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Model/CheckoutFormStatus.php b/src/Model/CheckoutFormStatus.php index 2e52bdd..4d6cab7 100644 --- a/src/Model/CheckoutFormStatus.php +++ b/src/Model/CheckoutFormStatus.php @@ -59,6 +59,7 @@ public static function getAllowableEnumValues() self::BOUGHT, self::FILLED_IN, self::READY_FOR_PROCESSING, + self::FULFILLMENT_STATUS_CHANGED, ]; } } From 4cde50c112b4873bb96ed267cc912a2567aae12f Mon Sep 17 00:00:00 2001 From: nediam Date: Wed, 6 May 2020 11:22:23 +0200 Subject: [PATCH 3/5] hack for BUYER_CANCELLED --- src/Model/CheckoutFormStatus.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Model/CheckoutFormStatus.php b/src/Model/CheckoutFormStatus.php index 4d6cab7..3b3fc72 100644 --- a/src/Model/CheckoutFormStatus.php +++ b/src/Model/CheckoutFormStatus.php @@ -48,6 +48,7 @@ class CheckoutFormStatus const FILLED_IN = 'FILLED_IN'; const READY_FOR_PROCESSING = 'READY_FOR_PROCESSING'; const FULFILLMENT_STATUS_CHANGED = 'FULFILLMENT_STATUS_CHANGED'; + const BUYER_CANCELLED = 'BUYER_CANCELLED'; /** * Gets allowable values of the enum @@ -60,6 +61,7 @@ public static function getAllowableEnumValues() self::FILLED_IN, self::READY_FOR_PROCESSING, self::FULFILLMENT_STATUS_CHANGED, + self::BUYER_CANCELLED, ]; } } From 13028cf907c99ec0a0397109f20f4b61ba42bc2c Mon Sep 17 00:00:00 2001 From: nediam Date: Wed, 10 Jun 2020 10:15:32 +0200 Subject: [PATCH 4/5] hack for CANCELLED --- src/Model/CheckoutFormStatus.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Model/CheckoutFormStatus.php b/src/Model/CheckoutFormStatus.php index 3b3fc72..ccac2c8 100644 --- a/src/Model/CheckoutFormStatus.php +++ b/src/Model/CheckoutFormStatus.php @@ -49,6 +49,7 @@ class CheckoutFormStatus const READY_FOR_PROCESSING = 'READY_FOR_PROCESSING'; const FULFILLMENT_STATUS_CHANGED = 'FULFILLMENT_STATUS_CHANGED'; const BUYER_CANCELLED = 'BUYER_CANCELLED'; + const CANCELLED = 'CANCELLED'; /** * Gets allowable values of the enum @@ -62,6 +63,7 @@ public static function getAllowableEnumValues() self::READY_FOR_PROCESSING, self::FULFILLMENT_STATUS_CHANGED, self::BUYER_CANCELLED, + self::CANCELLED, ]; } } From d75ddec309566025ba675aa039744b8d09452dcd Mon Sep 17 00:00:00 2001 From: nediam Date: Wed, 24 Feb 2021 12:56:20 +0100 Subject: [PATCH 5/5] added ETP as payment provider and EXTENDED_TERM in payment type --- src/Model/CheckoutFormPaymentProvider.php | 4 +++- src/Model/CheckoutFormPaymentType.php | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Model/CheckoutFormPaymentProvider.php b/src/Model/CheckoutFormPaymentProvider.php index 8184316..c02d361 100644 --- a/src/Model/CheckoutFormPaymentProvider.php +++ b/src/Model/CheckoutFormPaymentProvider.php @@ -47,7 +47,8 @@ class CheckoutFormPaymentProvider const P24 = 'P24'; const PAYU = 'PAYU'; const OFFLINE = 'OFFLINE'; - + const EPT = 'EPT'; + /** * Gets allowable values of the enum * @return string[] @@ -58,6 +59,7 @@ public static function getAllowableEnumValues() self::P24, self::PAYU, self::OFFLINE, + self::EPT, ]; } } diff --git a/src/Model/CheckoutFormPaymentType.php b/src/Model/CheckoutFormPaymentType.php index cbca3e8..604add2 100644 --- a/src/Model/CheckoutFormPaymentType.php +++ b/src/Model/CheckoutFormPaymentType.php @@ -48,6 +48,7 @@ class CheckoutFormPaymentType const WIRE_TRANSFER = 'WIRE_TRANSFER'; const ONLINE = 'ONLINE'; const SPLIT_PAYMENT = 'SPLIT_PAYMENT'; + const EXTENDED_TERM = 'EXTENDED_TERM'; /** * Gets allowable values of the enum @@ -60,6 +61,7 @@ public static function getAllowableEnumValues() self::WIRE_TRANSFER, self::ONLINE, self::SPLIT_PAYMENT, + self::EXTENDED_TERM, ]; } }