@connectedxm/client 6.0.1 → 6.0.3
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.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -597,6 +597,7 @@ interface BasePass {
|
|
|
597
597
|
interface Pass extends BasePass {
|
|
598
598
|
package: BaseAttendeePackage | null;
|
|
599
599
|
matches: BaseMatch[];
|
|
600
|
+
lineItem: PaymentLineItem | null;
|
|
600
601
|
updatedAt: string;
|
|
601
602
|
payerId: string | null;
|
|
602
603
|
}
|
|
@@ -1304,6 +1305,7 @@ interface BasePaymentLineItem {
|
|
|
1304
1305
|
paid: number;
|
|
1305
1306
|
refunded: number;
|
|
1306
1307
|
discount: number;
|
|
1308
|
+
deferred: number;
|
|
1307
1309
|
taxable: boolean;
|
|
1308
1310
|
eventId: string | null;
|
|
1309
1311
|
accountId: string | null;
|
|
@@ -1760,7 +1762,6 @@ interface BasePaymentIntent {
|
|
|
1760
1762
|
description: string | null;
|
|
1761
1763
|
secret: string;
|
|
1762
1764
|
referenceId: string;
|
|
1763
|
-
amount: number;
|
|
1764
1765
|
currency: string;
|
|
1765
1766
|
metadata: Record<string, any>;
|
|
1766
1767
|
eventId: string | null;
|