@delopay/sdk 0.105.0 → 0.107.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-IAZ4NPT2.js → chunk-P56D2ZU2.js} +19 -1
- package/dist/chunk-P56D2ZU2.js.map +1 -0
- package/dist/index.cjs +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +97 -4
- package/dist/index.d.ts +97 -4
- package/dist/index.js +1 -1
- package/dist/internal.cjs +18 -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-IAZ4NPT2.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -593,6 +593,24 @@ var Connectors = class {
|
|
|
593
593
|
`/account/${encodeURIComponent(accountId)}/connectors/epayouts/catalog/defaults`
|
|
594
594
|
);
|
|
595
595
|
}
|
|
596
|
+
/**
|
|
597
|
+
* Every connector's native-pane capabilities, as the router itself knows
|
|
598
|
+
* them — which rails a connector supports, and which methods it can publish
|
|
599
|
+
* as a pane with the confirm routing keys each one carries.
|
|
600
|
+
*
|
|
601
|
+
* Capability facts only: no label, sublabel or category comes back. A
|
|
602
|
+
* designer renders a method's copy from its own locale files, keyed by
|
|
603
|
+
* `key`, and takes `payment_method` / `payment_method_type` from here
|
|
604
|
+
* verbatim rather than deriving them client-side.
|
|
605
|
+
*
|
|
606
|
+
* `GET /account/{accountId}/connectors/native-panes/catalog`
|
|
607
|
+
*/
|
|
608
|
+
async getNativePanesCatalog(accountId) {
|
|
609
|
+
return this.request(
|
|
610
|
+
"GET",
|
|
611
|
+
`/account/${encodeURIComponent(accountId)}/connectors/native-panes/catalog`
|
|
612
|
+
);
|
|
613
|
+
}
|
|
596
614
|
/**
|
|
597
615
|
* Sweep the merchant's own e-Payouts module and return the rails it
|
|
598
616
|
* actually has enabled. Server-side this makes many upstream calls, so it
|