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

Add defaultValues to StripePaymentElementOptions interface #332

Merged
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions tests/types/src/valid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,21 @@ const afterpayClearpayMessageElement = elements.create(
);

const paymentElement: StripePaymentElement = elements.create('payment', {
defaultValues: {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure how exhaustive I should be for the tests. Please let me know if anything can be added!

billingDetails: {
name: 'Jane Doe',
email: 'jane.doe@example.com',
phone: '8004444444',
address: {
line1: '354 Oyster Point Blvd',
line2: '',
city: 'South San Francisco',
state: 'CA',
country: 'US',
postal_code: '94080',
},
},
},
fields: {
billingDetails: {
email: 'never',
Expand Down
21 changes: 21 additions & 0 deletions types/stripe-js/elements/payment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,22 @@ export type StripePaymentElement = StripeElementBase & {
collapse(): StripePaymentElement;
};

export interface DefaultValuesOption {
billingDetails?: {
name?: string;
email?: string;
phone?: string;
address?: {
country?: string;
postal_code?: string;
state?: string;
city?: string;
line1?: string;
line2?: string;
};
};
}

export type FieldOption = 'auto' | 'never';

export interface FieldsOption {
Expand Down Expand Up @@ -152,6 +168,11 @@ export interface WalletsOption {
}

export interface StripePaymentElementOptions {
/**
* Provide initial customer information that will be displayed in the Payment Element.
*/
defaultValues?: DefaultValuesOption;

/**
* Override the business name displayed in the Payment Element.
* By default the PaymentElement will use your Stripe account or business name.
Expand Down