@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/{chunk-DMNCVY25.js → chunk-HIKVDY3V.js} +13 -1
- package/dist/chunk-HIKVDY3V.js.map +1 -0
- package/dist/index.cjs +12 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +1 -1
- package/dist/internal.cjs +12 -0
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/internal.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-DMNCVY25.js.map +0 -1
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() {
|