Bump and Migrate logic chartjs 2.9.4 to 4.5.0, bump stripe-php from 17.2.1 to 17.6.0, fontawesome-free from 5.15.4 to 7.0.0, fullcalendar from 6.1.17 to 6.1.19, TinyMCE from 7.9.1 to 8.0.2, bootsatrap js bundle from 4.6.1 to 4.6.2, DataTables from 2.3.1 to 2.3.3
This commit is contained in:
@@ -16,7 +16,7 @@ class ReaderService extends \Stripe\Service\AbstractService
|
||||
* accepting a payment, saving a card or refunding a transaction.
|
||||
*
|
||||
* @param string $id
|
||||
* @param null|array{amount_tip?: int, card_present?: array{number?: string}, expand?: string[], interac_present?: array{number?: string}, type?: string} $params
|
||||
* @param null|array{amount_tip?: int, card?: array{cvc?: string, exp_month: int, exp_year: int, number: string}, card_present?: array{number?: string}, expand?: string[], interac_present?: array{number?: string}, type?: string} $params
|
||||
* @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
|
||||
*
|
||||
* @return \Stripe\Terminal\Reader
|
||||
@@ -27,4 +27,38 @@ class ReaderService extends \Stripe\Service\AbstractService
|
||||
{
|
||||
return $this->request('post', $this->buildPath('/v1/test_helpers/terminal/readers/%s/present_payment_method', $id), $params, $opts);
|
||||
}
|
||||
|
||||
/**
|
||||
* Use this endpoint to trigger a successful input collection on a simulated
|
||||
* reader.
|
||||
*
|
||||
* @param string $id
|
||||
* @param null|array{expand?: string[], skip_non_required_inputs?: string} $params
|
||||
* @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
|
||||
*
|
||||
* @return \Stripe\Terminal\Reader
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*/
|
||||
public function succeedInputCollection($id, $params = null, $opts = null)
|
||||
{
|
||||
return $this->request('post', $this->buildPath('/v1/test_helpers/terminal/readers/%s/succeed_input_collection', $id), $params, $opts);
|
||||
}
|
||||
|
||||
/**
|
||||
* Use this endpoint to complete an input collection with a timeout error on a
|
||||
* simulated reader.
|
||||
*
|
||||
* @param string $id
|
||||
* @param null|array{expand?: string[]} $params
|
||||
* @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
|
||||
*
|
||||
* @return \Stripe\Terminal\Reader
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*/
|
||||
public function timeoutInputCollection($id, $params = null, $opts = null)
|
||||
{
|
||||
return $this->request('post', $this->buildPath('/v1/test_helpers/terminal/readers/%s/timeout_input_collection', $id), $params, $opts);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user