@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
|
@@ -1674,6 +1674,18 @@ var Routing = class {
|
|
|
1674
1674
|
async list() {
|
|
1675
1675
|
return this.request("GET", "/routing");
|
|
1676
1676
|
}
|
|
1677
|
+
/**
|
|
1678
|
+
* Connector names denied at routing for a shop (explicit denies plus
|
|
1679
|
+
* whitelist-implied exclusions). Read-only; surfaced in the routing builder.
|
|
1680
|
+
*
|
|
1681
|
+
* `GET /routing/connector-restrictions/{profileId}`
|
|
1682
|
+
*/
|
|
1683
|
+
async connectorRestrictions(profileId) {
|
|
1684
|
+
return this.request(
|
|
1685
|
+
"GET",
|
|
1686
|
+
`/routing/connector-restrictions/${encodeURIComponent(profileId)}`
|
|
1687
|
+
);
|
|
1688
|
+
}
|
|
1677
1689
|
// --- Advanced operations (Task 3.4) ---
|
|
1678
1690
|
/** Get active routing config. `GET /routing/active` */
|
|
1679
1691
|
async getActive() {
|
|
@@ -3796,4 +3808,4 @@ export {
|
|
|
3796
3808
|
applyBrandingVariables,
|
|
3797
3809
|
shadowFor
|
|
3798
3810
|
};
|
|
3799
|
-
//# sourceMappingURL=chunk-
|
|
3811
|
+
//# sourceMappingURL=chunk-HIKVDY3V.js.map
|