@delopay/sdk 0.41.0 → 0.42.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.cjs CHANGED
@@ -1743,6 +1743,18 @@ var Routing = class {
1743
1743
  async list() {
1744
1744
  return this.request("GET", "/routing");
1745
1745
  }
1746
+ /**
1747
+ * Connector names denied at routing for a shop (explicit denies plus
1748
+ * whitelist-implied exclusions). Read-only; surfaced in the routing builder.
1749
+ *
1750
+ * `GET /routing/connector-restrictions/{profileId}`
1751
+ */
1752
+ async connectorRestrictions(profileId) {
1753
+ return this.request(
1754
+ "GET",
1755
+ `/routing/connector-restrictions/${encodeURIComponent(profileId)}`
1756
+ );
1757
+ }
1746
1758
  // --- Advanced operations (Task 3.4) ---
1747
1759
  /** Get active routing config. `GET /routing/active` */
1748
1760
  async getActive() {