@delopay/sdk 0.45.0 → 0.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -552,6 +552,12 @@ interface PaymentMethodResponse {
|
|
|
552
552
|
}
|
|
553
553
|
interface PaymentMethodListParams {
|
|
554
554
|
client_secret?: string | null;
|
|
555
|
+
/**
|
|
556
|
+
* ISO 3166-1 alpha-2 country code. Drives the geo-aware availability resolver
|
|
557
|
+
* as the highest-precedence country signal (explicit hint > billing > IP-geo),
|
|
558
|
+
* so the returned set reflects what a customer in that country would see.
|
|
559
|
+
*/
|
|
560
|
+
country?: string | null;
|
|
555
561
|
}
|
|
556
562
|
interface CustomerPaymentMethodsListParams {
|
|
557
563
|
client_secret?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -552,6 +552,12 @@ interface PaymentMethodResponse {
|
|
|
552
552
|
}
|
|
553
553
|
interface PaymentMethodListParams {
|
|
554
554
|
client_secret?: string | null;
|
|
555
|
+
/**
|
|
556
|
+
* ISO 3166-1 alpha-2 country code. Drives the geo-aware availability resolver
|
|
557
|
+
* as the highest-precedence country signal (explicit hint > billing > IP-geo),
|
|
558
|
+
* so the returned set reflects what a customer in that country would see.
|
|
559
|
+
*/
|
|
560
|
+
country?: string | null;
|
|
555
561
|
}
|
|
556
562
|
interface CustomerPaymentMethodsListParams {
|
|
557
563
|
client_secret?: string | null;
|