@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
|
@@ -478,6 +478,24 @@ var Connectors = class {
|
|
|
478
478
|
`/account/${encodeURIComponent(accountId)}/connectors/epayouts/catalog/defaults`
|
|
479
479
|
);
|
|
480
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* Every connector's native-pane capabilities, as the router itself knows
|
|
483
|
+
* them — which rails a connector supports, and which methods it can publish
|
|
484
|
+
* as a pane with the confirm routing keys each one carries.
|
|
485
|
+
*
|
|
486
|
+
* Capability facts only: no label, sublabel or category comes back. A
|
|
487
|
+
* designer renders a method's copy from its own locale files, keyed by
|
|
488
|
+
* `key`, and takes `payment_method` / `payment_method_type` from here
|
|
489
|
+
* verbatim rather than deriving them client-side.
|
|
490
|
+
*
|
|
491
|
+
* `GET /account/{accountId}/connectors/native-panes/catalog`
|
|
492
|
+
*/
|
|
493
|
+
async getNativePanesCatalog(accountId) {
|
|
494
|
+
return this.request(
|
|
495
|
+
"GET",
|
|
496
|
+
`/account/${encodeURIComponent(accountId)}/connectors/native-panes/catalog`
|
|
497
|
+
);
|
|
498
|
+
}
|
|
481
499
|
/**
|
|
482
500
|
* Sweep the merchant's own e-Payouts module and return the rails it
|
|
483
501
|
* actually has enabled. Server-side this makes many upstream calls, so it
|
|
@@ -6518,4 +6536,4 @@ export {
|
|
|
6518
6536
|
focusedCheckoutUrl,
|
|
6519
6537
|
CHECKOUT_EVENT_KINDS
|
|
6520
6538
|
};
|
|
6521
|
-
//# sourceMappingURL=chunk-
|
|
6539
|
+
//# sourceMappingURL=chunk-P56D2ZU2.js.map
|