From 16016371df3870d627d03f0f47097e1cc5d0a552 Mon Sep 17 00:00:00 2001 From: Kamil Pajdzik <99290280+kamil-stripe@users.noreply.github.com> Date: Fri, 1 Apr 2022 12:39:24 -0700 Subject: [PATCH] API Updates (#1259) --- lib/Event.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Event.php b/lib/Event.php index 5804d21de..469b75222 100644 --- a/lib/Event.php +++ b/lib/Event.php @@ -163,6 +163,7 @@ class Event extends ApiResource const PAYMENT_INTENT_AMOUNT_CAPTURABLE_UPDATED = 'payment_intent.amount_capturable_updated'; const PAYMENT_INTENT_CANCELED = 'payment_intent.canceled'; const PAYMENT_INTENT_CREATED = 'payment_intent.created'; + const PAYMENT_INTENT_PARTIALLY_FUNDED = 'payment_intent.partially_funded'; const PAYMENT_INTENT_PAYMENT_FAILED = 'payment_intent.payment_failed'; const PAYMENT_INTENT_PROCESSING = 'payment_intent.processing'; const PAYMENT_INTENT_REQUIRES_ACTION = 'payment_intent.requires_action'; @@ -228,6 +229,8 @@ class Event extends ApiResource const SUBSCRIPTION_SCHEDULE_UPDATED = 'subscription_schedule.updated'; const TAX_RATE_CREATED = 'tax_rate.created'; const TAX_RATE_UPDATED = 'tax_rate.updated'; + const TERMINAL_READER_ACTION_FAILED = 'terminal.reader.action_failed'; + const TERMINAL_READER_ACTION_SUCCEEDED = 'terminal.reader.action_succeeded'; const TEST_HELPERS_TEST_CLOCK_ADVANCING = 'test_helpers.test_clock.advancing'; const TEST_HELPERS_TEST_CLOCK_CREATED = 'test_helpers.test_clock.created'; const TEST_HELPERS_TEST_CLOCK_DELETED = 'test_helpers.test_clock.deleted';