@stripe/stripe-js
Advanced tools
Comparing version 1.24.0 to 1.25.0
@@ -57,3 +57,3 @@ function _typeof(obj) { | ||
name: 'stripe-js', | ||
version: "1.24.0", | ||
version: "1.25.0", | ||
startTime: startTime | ||
@@ -60,0 +60,0 @@ }); |
@@ -61,3 +61,3 @@ 'use strict'; | ||
name: 'stripe-js', | ||
version: "1.24.0", | ||
version: "1.25.0", | ||
startTime: startTime | ||
@@ -64,0 +64,0 @@ }); |
@@ -41,3 +41,3 @@ var V3_URL = 'https://js.stripe.com/v3'; | ||
name: 'stripe-js', | ||
version: "1.24.0", | ||
version: "1.25.0", | ||
startTime: startTime | ||
@@ -44,0 +44,0 @@ }); |
@@ -45,3 +45,3 @@ 'use strict'; | ||
name: 'stripe-js', | ||
version: "1.24.0", | ||
version: "1.25.0", | ||
startTime: startTime | ||
@@ -48,0 +48,0 @@ }); |
{ | ||
"name": "@stripe/stripe-js", | ||
"version": "1.24.0", | ||
"version": "1.25.0", | ||
"description": "Stripe.js loading utility", | ||
@@ -5,0 +5,0 @@ "main": "dist/stripe.js", |
@@ -98,2 +98,27 @@ import {StripeElementBase, StripeElementChangeEvent} from './base'; | ||
allowedCountries?: string[] | null; | ||
/** | ||
* Whether or not ShippingAddressElement accepts PO boxes | ||
*/ | ||
blockPoBox?: boolean; | ||
/** | ||
* Default value for ShippingAddressElement fields | ||
*/ | ||
defaultValues?: { | ||
name?: string | null; | ||
address?: { | ||
line1?: string | null; | ||
line2?: string | null; | ||
city?: string | null; | ||
state?: string | null; | ||
postal_code?: string | null; | ||
country: string; | ||
}; | ||
}; | ||
/** | ||
* Whether or not ShippingAddressElement provides autocomplete suggestions | ||
*/ | ||
disableAutocomplete?: boolean; | ||
} | ||
@@ -128,11 +153,11 @@ | ||
name: string; | ||
addressLine1: string; | ||
addressLine2: string; | ||
locality: string; | ||
administrativeArea: string; | ||
postalCode: string; | ||
country: string; | ||
dependentLocality: string; | ||
sortingCode: string; | ||
address: { | ||
line1: string; | ||
line2: string; | ||
city: string; | ||
state: string; | ||
postal_code: string; | ||
country: string; | ||
}; | ||
}; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
334782
8864