@plyaz/types 1.27.5 → 1.27.7
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/auth/auth-events.d.ts +107 -0
- package/dist/auth/index.cjs +69 -0
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.d.ts +1 -0
- package/dist/auth/index.js +67 -1
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/types.d.ts +38 -0
- package/dist/index.cjs +69 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +67 -1
- package/dist/index.js.map +1 -1
- package/dist/payments/provider/payment-provider/types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -254,6 +254,10 @@ export interface PayoutAccountCapabilities {
|
|
|
254
254
|
canAcceptAlipay: boolean;
|
|
255
255
|
/** Can accept WeChat Pay payments (China / global). */
|
|
256
256
|
canAcceptWeChatPay: boolean;
|
|
257
|
+
/** **Can accept Pix instant payments (Brazil).** */
|
|
258
|
+
canAcceptPix: boolean;
|
|
259
|
+
/** **Can accept Boleto Bancário payments (Brazil).** */
|
|
260
|
+
canAcceptBoleto: boolean;
|
|
257
261
|
/** Can use Treasury-like products such as wallets or balance accounts. */
|
|
258
262
|
canUseTreasury: boolean;
|
|
259
263
|
/** Can issue virtual or physical cards (Stripe Issuing). */
|
package/package.json
CHANGED