diff --git a/.changeset/cold-fishes-know.md b/.changeset/cold-fishes-know.md new file mode 100644 index 000000000..de6708433 --- /dev/null +++ b/.changeset/cold-fishes-know.md @@ -0,0 +1,5 @@ +--- +"@rebilly/client-php": patch +--- + +build(deps): merge passing FE dependabot PRs Rebilly/rebilly#7937 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 = [];