@delopay/sdk 0.15.0 → 0.17.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-VQPHGGNQ.js → chunk-F6HWLDHA.js} +10 -1
- package/dist/{chunk-VQPHGGNQ.js.map → chunk-F6HWLDHA.js.map} +1 -1
- package/dist/index.cjs +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1 -1
- package/dist/internal.cjs +9 -0
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +15 -2
- package/dist/internal.d.ts +15 -2
- package/dist/internal.js +1 -1
- package/dist/internal.js.map +1 -1
- package/package.json +1 -1
|
@@ -2374,6 +2374,15 @@ var FeatureMatrix = class {
|
|
|
2374
2374
|
async retrieve() {
|
|
2375
2375
|
return this.request("GET", "/feature_matrix");
|
|
2376
2376
|
}
|
|
2377
|
+
/**
|
|
2378
|
+
* Retrieve the feature matrix scoped to a merchant. Beta connectors
|
|
2379
|
+
* are filtered against the merchant's allowlist so the dashboard only
|
|
2380
|
+
* surfaces connectors the merchant can actually attach.
|
|
2381
|
+
* `GET /feature_matrix/{merchantId}`
|
|
2382
|
+
*/
|
|
2383
|
+
async retrieveForMerchant(merchantId) {
|
|
2384
|
+
return this.request("GET", `/feature_matrix/${encodeURIComponent(merchantId)}`);
|
|
2385
|
+
}
|
|
2377
2386
|
};
|
|
2378
2387
|
|
|
2379
2388
|
// src/resources/files.ts
|
|
@@ -2877,4 +2886,4 @@ export {
|
|
|
2877
2886
|
Subscriptions,
|
|
2878
2887
|
Delopay
|
|
2879
2888
|
};
|
|
2880
|
-
//# sourceMappingURL=chunk-
|
|
2889
|
+
//# sourceMappingURL=chunk-F6HWLDHA.js.map
|