@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.
@@ -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;
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.37.0",
3
+ "version": "0.38.0",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,