@delopay/sdk 0.72.0 → 0.73.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
|
@@ -2300,6 +2300,12 @@ interface ConnectorResponse {
|
|
|
2300
2300
|
connector_label?: string | null;
|
|
2301
2301
|
connector_account_details?: Record<string, unknown> | null;
|
|
2302
2302
|
payment_methods_enabled?: Record<string, unknown>[] | null;
|
|
2303
|
+
/**
|
|
2304
|
+
* PaymentMethodType strings this connector's Stripe account cannot use
|
|
2305
|
+
* (region/activation). The dashboard greys these out in the picker. Present
|
|
2306
|
+
* only for Stripe; absent/null means "gate nothing" (fail-open).
|
|
2307
|
+
*/
|
|
2308
|
+
unsupported_payment_method_types?: string[] | null;
|
|
2303
2309
|
metadata?: Record<string, unknown> | null;
|
|
2304
2310
|
test_mode?: boolean | null;
|
|
2305
2311
|
disabled?: boolean | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2300,6 +2300,12 @@ interface ConnectorResponse {
|
|
|
2300
2300
|
connector_label?: string | null;
|
|
2301
2301
|
connector_account_details?: Record<string, unknown> | null;
|
|
2302
2302
|
payment_methods_enabled?: Record<string, unknown>[] | null;
|
|
2303
|
+
/**
|
|
2304
|
+
* PaymentMethodType strings this connector's Stripe account cannot use
|
|
2305
|
+
* (region/activation). The dashboard greys these out in the picker. Present
|
|
2306
|
+
* only for Stripe; absent/null means "gate nothing" (fail-open).
|
|
2307
|
+
*/
|
|
2308
|
+
unsupported_payment_method_types?: string[] | null;
|
|
2303
2309
|
metadata?: Record<string, unknown> | null;
|
|
2304
2310
|
test_mode?: boolean | null;
|
|
2305
2311
|
disabled?: boolean | null;
|