@connectedxm/admin 2.10.4 → 2.10.5
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/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1595,6 +1595,8 @@ interface Payment extends BasePayment {
|
|
|
1595
1595
|
account: BaseAccount;
|
|
1596
1596
|
bypassedId: string | null;
|
|
1597
1597
|
bypassedBy: BaseUser | null;
|
|
1598
|
+
refunds: BasePayment[];
|
|
1599
|
+
refunded: Omit<BasePayment, "refunded"> | null;
|
|
1598
1600
|
integration: {
|
|
1599
1601
|
type: PaymentIntegrationType;
|
|
1600
1602
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1595,6 +1595,8 @@ interface Payment extends BasePayment {
|
|
|
1595
1595
|
account: BaseAccount;
|
|
1596
1596
|
bypassedId: string | null;
|
|
1597
1597
|
bypassedBy: BaseUser | null;
|
|
1598
|
+
refunds: BasePayment[];
|
|
1599
|
+
refunded: Omit<BasePayment, "refunded"> | null;
|
|
1598
1600
|
integration: {
|
|
1599
1601
|
type: PaymentIntegrationType;
|
|
1600
1602
|
};
|