@connectedxm/admin 1.7.2 → 1.7.4
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1412,6 +1412,8 @@ declare enum PurchaseStatus {
|
|
|
1412
1412
|
}
|
|
1413
1413
|
interface BaseEventPass {
|
|
1414
1414
|
id: string;
|
|
1415
|
+
eventId: string;
|
|
1416
|
+
registrationId: string;
|
|
1415
1417
|
alternateId: number;
|
|
1416
1418
|
ticketId: string | null;
|
|
1417
1419
|
ticket: BaseEventPassType | null;
|
|
@@ -1436,7 +1438,7 @@ interface EventPass extends BaseEventPass {
|
|
|
1436
1438
|
passAddOns: PassAddOn[];
|
|
1437
1439
|
attendeeId: string;
|
|
1438
1440
|
attendee: BaseEventAttendee;
|
|
1439
|
-
package:
|
|
1441
|
+
package: BaseAttendeePackage | null;
|
|
1440
1442
|
payerId: string | null;
|
|
1441
1443
|
payer: BaseAccount | null;
|
|
1442
1444
|
amtPaid: number;
|
|
@@ -2786,6 +2788,7 @@ interface EventPackagePass extends BaseEventPackagePass {
|
|
|
2786
2788
|
}
|
|
2787
2789
|
interface BaseAttendeePackage {
|
|
2788
2790
|
id: string;
|
|
2791
|
+
eventId: string;
|
|
2789
2792
|
attendeeId: string;
|
|
2790
2793
|
packageId: string;
|
|
2791
2794
|
package: BaseEventPackage;
|
package/dist/index.d.ts
CHANGED
|
@@ -1412,6 +1412,8 @@ declare enum PurchaseStatus {
|
|
|
1412
1412
|
}
|
|
1413
1413
|
interface BaseEventPass {
|
|
1414
1414
|
id: string;
|
|
1415
|
+
eventId: string;
|
|
1416
|
+
registrationId: string;
|
|
1415
1417
|
alternateId: number;
|
|
1416
1418
|
ticketId: string | null;
|
|
1417
1419
|
ticket: BaseEventPassType | null;
|
|
@@ -1436,7 +1438,7 @@ interface EventPass extends BaseEventPass {
|
|
|
1436
1438
|
passAddOns: PassAddOn[];
|
|
1437
1439
|
attendeeId: string;
|
|
1438
1440
|
attendee: BaseEventAttendee;
|
|
1439
|
-
package:
|
|
1441
|
+
package: BaseAttendeePackage | null;
|
|
1440
1442
|
payerId: string | null;
|
|
1441
1443
|
payer: BaseAccount | null;
|
|
1442
1444
|
amtPaid: number;
|
|
@@ -2786,6 +2788,7 @@ interface EventPackagePass extends BaseEventPackagePass {
|
|
|
2786
2788
|
}
|
|
2787
2789
|
interface BaseAttendeePackage {
|
|
2788
2790
|
id: string;
|
|
2791
|
+
eventId: string;
|
|
2789
2792
|
attendeeId: string;
|
|
2790
2793
|
packageId: string;
|
|
2791
2794
|
package: BaseEventPackage;
|