@delopay/sdk 0.37.0 → 0.38.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/internal.d.cts +6 -0
- package/dist/internal.d.ts +6 -0
- package/package.json +1 -1
package/dist/internal.d.cts
CHANGED
|
@@ -464,6 +464,11 @@ interface UpsertConnectorRestrictionRequest {
|
|
|
464
464
|
* when `visibility === 'beta'`; ignored for `'public'` /
|
|
465
465
|
* `'disabled'` (collapsed to an empty array). */
|
|
466
466
|
allowed_merchant_ids: string[];
|
|
467
|
+
/** Merchant IDs blocked from attaching this connector. A DENY
|
|
468
|
+
* override that beats both `visibility` (even `'public'`) and
|
|
469
|
+
* `allowed_merchant_ids` — a denied merchant is always rejected.
|
|
470
|
+
* Honored for every visibility mode. */
|
|
471
|
+
denied_merchant_ids?: string[];
|
|
467
472
|
/** Optional audit note (e.g. `"beta access — Marcel"`). */
|
|
468
473
|
reason?: string | null;
|
|
469
474
|
}
|
|
@@ -471,6 +476,7 @@ interface ConnectorRestrictionResponse {
|
|
|
471
476
|
connector_name: string;
|
|
472
477
|
visibility: ConnectorVisibility;
|
|
473
478
|
allowed_merchant_ids: string[];
|
|
479
|
+
denied_merchant_ids: string[];
|
|
474
480
|
reason: string | null;
|
|
475
481
|
/** ISO 8601 datetime. */
|
|
476
482
|
created_at: string;
|
package/dist/internal.d.ts
CHANGED
|
@@ -464,6 +464,11 @@ interface UpsertConnectorRestrictionRequest {
|
|
|
464
464
|
* when `visibility === 'beta'`; ignored for `'public'` /
|
|
465
465
|
* `'disabled'` (collapsed to an empty array). */
|
|
466
466
|
allowed_merchant_ids: string[];
|
|
467
|
+
/** Merchant IDs blocked from attaching this connector. A DENY
|
|
468
|
+
* override that beats both `visibility` (even `'public'`) and
|
|
469
|
+
* `allowed_merchant_ids` — a denied merchant is always rejected.
|
|
470
|
+
* Honored for every visibility mode. */
|
|
471
|
+
denied_merchant_ids?: string[];
|
|
467
472
|
/** Optional audit note (e.g. `"beta access — Marcel"`). */
|
|
468
473
|
reason?: string | null;
|
|
469
474
|
}
|
|
@@ -471,6 +476,7 @@ interface ConnectorRestrictionResponse {
|
|
|
471
476
|
connector_name: string;
|
|
472
477
|
visibility: ConnectorVisibility;
|
|
473
478
|
allowed_merchant_ids: string[];
|
|
479
|
+
denied_merchant_ids: string[];
|
|
474
480
|
reason: string | null;
|
|
475
481
|
/** ISO 8601 datetime. */
|
|
476
482
|
created_at: string;
|