@connectedxm/admin 1.7.0 → 1.7.2
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.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1428,6 +1428,7 @@ interface BaseEventPass {
|
|
|
1428
1428
|
reservation: BaseEventRoomTypeReservation | null;
|
|
1429
1429
|
couponId: string | null;
|
|
1430
1430
|
coupon: BaseCoupon | null;
|
|
1431
|
+
packageId: string | null;
|
|
1431
1432
|
createdAt: string;
|
|
1432
1433
|
updatedAt: string;
|
|
1433
1434
|
}
|
|
@@ -1435,6 +1436,7 @@ interface EventPass extends BaseEventPass {
|
|
|
1435
1436
|
passAddOns: PassAddOn[];
|
|
1436
1437
|
attendeeId: string;
|
|
1437
1438
|
attendee: BaseEventAttendee;
|
|
1439
|
+
package: BaseEventPackage | null;
|
|
1438
1440
|
payerId: string | null;
|
|
1439
1441
|
payer: BaseAccount | null;
|
|
1440
1442
|
amtPaid: number;
|
|
@@ -1713,6 +1715,7 @@ interface BaseEventAttendee {
|
|
|
1713
1715
|
interface EventAttendee extends BaseEventAttendee {
|
|
1714
1716
|
payments: BasePayment[];
|
|
1715
1717
|
passes: BaseEventPass[];
|
|
1718
|
+
packages: BaseAttendeePackage[];
|
|
1716
1719
|
coupons: BaseCoupon[];
|
|
1717
1720
|
createdAt: string;
|
|
1718
1721
|
updatedAt: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1428,6 +1428,7 @@ interface BaseEventPass {
|
|
|
1428
1428
|
reservation: BaseEventRoomTypeReservation | null;
|
|
1429
1429
|
couponId: string | null;
|
|
1430
1430
|
coupon: BaseCoupon | null;
|
|
1431
|
+
packageId: string | null;
|
|
1431
1432
|
createdAt: string;
|
|
1432
1433
|
updatedAt: string;
|
|
1433
1434
|
}
|
|
@@ -1435,6 +1436,7 @@ interface EventPass extends BaseEventPass {
|
|
|
1435
1436
|
passAddOns: PassAddOn[];
|
|
1436
1437
|
attendeeId: string;
|
|
1437
1438
|
attendee: BaseEventAttendee;
|
|
1439
|
+
package: BaseEventPackage | null;
|
|
1438
1440
|
payerId: string | null;
|
|
1439
1441
|
payer: BaseAccount | null;
|
|
1440
1442
|
amtPaid: number;
|
|
@@ -1713,6 +1715,7 @@ interface BaseEventAttendee {
|
|
|
1713
1715
|
interface EventAttendee extends BaseEventAttendee {
|
|
1714
1716
|
payments: BasePayment[];
|
|
1715
1717
|
passes: BaseEventPass[];
|
|
1718
|
+
packages: BaseAttendeePackage[];
|
|
1716
1719
|
coupons: BaseCoupon[];
|
|
1717
1720
|
createdAt: string;
|
|
1718
1721
|
updatedAt: string;
|