From 51d725de52ecd87649b6525e6e926047df5051c6 Mon Sep 17 00:00:00 2001 From: rebilly-machine-user Date: Fri, 4 Oct 2024 18:45:10 +0000 Subject: [PATCH] update SDK from api-definitions --- .changeset/spicy-dryers-build.md | 5 +++++ .changeset/tame-deers-pull.md | 5 +++++ .changeset/warm-pants-shake.md | 5 +++++ src/Model/DigitalWalletTokenPaymentInstrument.php | 2 ++ src/Model/PaymentCard.php | 2 ++ 5 files changed, 19 insertions(+) create mode 100644 .changeset/spicy-dryers-build.md create mode 100644 .changeset/tame-deers-pull.md create mode 100644 .changeset/warm-pants-shake.md diff --git a/.changeset/spicy-dryers-build.md b/.changeset/spicy-dryers-build.md new file mode 100644 index 000000000..4d0998a5a --- /dev/null +++ b/.changeset/spicy-dryers-build.md @@ -0,0 +1,5 @@ +--- +"@rebilly/client-php": patch +--- + +SDK Generator updated diff --git a/.changeset/tame-deers-pull.md b/.changeset/tame-deers-pull.md new file mode 100644 index 000000000..dd41cd8a4 --- /dev/null +++ b/.changeset/tame-deers-pull.md @@ -0,0 +1,5 @@ +--- +"@rebilly/client-php": patch +--- + +feat(be): Add support for Samsung Pay digital wallet Rebilly/rebilly#7760 diff --git a/.changeset/warm-pants-shake.md b/.changeset/warm-pants-shake.md new file mode 100644 index 000000000..3d123b9d7 --- /dev/null +++ b/.changeset/warm-pants-shake.md @@ -0,0 +1,5 @@ +--- +"@rebilly/client-php": patch +--- + +feat(be,api-definitions): Increase plan quantity limits Rebilly/rebilly#7895 diff --git a/src/Model/DigitalWalletTokenPaymentInstrument.php b/src/Model/DigitalWalletTokenPaymentInstrument.php index f6b23e911..7be290c14 100644 --- a/src/Model/DigitalWalletTokenPaymentInstrument.php +++ b/src/Model/DigitalWalletTokenPaymentInstrument.php @@ -21,6 +21,8 @@ class DigitalWalletTokenPaymentInstrument implements JsonSerializable public const TYPE_GOOGLE_PAY = 'Google Pay'; + public const TYPE_SAMSUNG_PAY = 'Samsung Pay'; + public const BRAND_VISA = 'Visa'; public const BRAND_MASTER_CARD = 'MasterCard'; diff --git a/src/Model/PaymentCard.php b/src/Model/PaymentCard.php index e6d026080..ae4af193a 100644 --- a/src/Model/PaymentCard.php +++ b/src/Model/PaymentCard.php @@ -60,6 +60,8 @@ class PaymentCard implements PaymentInstrument public const DIGITAL_WALLET_GOOGLE_PAY = 'Google Pay'; + public const DIGITAL_WALLET_SAMSUNG_PAY = 'Samsung Pay'; + public const DIGITAL_WALLET_NULL = 'null'; private array $fields = [];