diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index dcf158c1c3..caaaa3cf0c 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v1518 \ No newline at end of file +v1520 \ No newline at end of file diff --git a/types/PaymentMethodDomainsResource.d.ts b/types/PaymentMethodDomainsResource.d.ts index e1e93bcf13..0be70a7db9 100644 --- a/types/PaymentMethodDomainsResource.d.ts +++ b/types/PaymentMethodDomainsResource.d.ts @@ -9,7 +9,7 @@ declare module 'stripe' { domain_name: string; /** - * Whether this payment method domain is enabled. If the domain is not enabled, payment methods that require a payment method domain will not appear in Elements. + * Whether this payment method domain is enabled. If the domain is not enabled, payment methods that require a payment method domain will not appear in Elements or Embedded Checkout. */ enabled?: boolean; @@ -28,7 +28,7 @@ declare module 'stripe' { interface PaymentMethodDomainUpdateParams { /** - * Whether this payment method domain is enabled. If the domain is not enabled, payment methods that require a payment method domain will not appear in Elements. + * Whether this payment method domain is enabled. If the domain is not enabled, payment methods that require a payment method domain will not appear in Elements or Embedded Checkout. */ enabled?: boolean; @@ -45,7 +45,7 @@ declare module 'stripe' { domain_name?: string; /** - * Whether this payment method domain is enabled. If the domain is not enabled, payment methods will not appear in Elements + * Whether this payment method domain is enabled. If the domain is not enabled, payment methods will not appear in Elements or Embedded Checkout */ enabled?: boolean; @@ -105,10 +105,10 @@ declare module 'stripe' { ): ApiListPromise; /** - * Some payment methods such as Apple Pay require additional steps to verify a domain. If the requirements weren't satisfied when the domain was created, the payment method will be inactive on the domain. - * The payment method doesn't appear in Elements for this domain until it is active. + * Some payment methods might require additional steps to register a domain. If the requirements weren't satisfied when the domain was created, the payment method will be inactive on the domain. + * The payment method doesn't appear in Elements or Embedded Checkout for this domain until it is active. * - * To activate a payment method on an existing payment method domain, complete the required validation steps specific to the payment method, and then validate the payment method domain with this endpoint. + * To activate a payment method on an existing payment method domain, complete the required registration steps specific to the payment method, and then validate the payment method domain with this endpoint. * * Related guides: [Payment method domains](https://stripe.com/docs/payments/payment-methods/pmd-registration). */