Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API Updates #1348

Merged
merged 1 commit into from Feb 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions types/2020-08-27/Issuing/Cards.d.ts
Expand Up @@ -2218,6 +2218,11 @@ declare module 'stripe' {
*/
metadata?: Stripe.Emptyable<Stripe.MetadataParam>;

/**
* The desired new PIN for this card.
*/
pin?: CardUpdateParams.Pin;

/**
* Rules that control spending for this card. Refer to our [documentation](https://stripe.com/docs/issuing/controls/spending-controls) for more details.
*/
Expand All @@ -2232,6 +2237,13 @@ declare module 'stripe' {
namespace CardUpdateParams {
type CancellationReason = 'lost' | 'stolen';

interface Pin {
/**
* The card's desired new PIN, encrypted under Stripe's public key.
*/
encrypted_number?: string;
}

interface SpendingControls {
/**
* Array of strings containing [categories](https://stripe.com/docs/api#issuing_authorization_object-merchant_data-category) of authorizations to allow. All other categories will be blocked. Cannot be set with `blocked_categories`.
Expand Down