@connectedxm/client 6.4.2 → 6.4.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.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -389,6 +389,7 @@ interface Event extends BaseEvent {
|
|
|
389
389
|
speakers: number;
|
|
390
390
|
sponsorshipLevels: number;
|
|
391
391
|
media: number;
|
|
392
|
+
roomTypes: number;
|
|
392
393
|
};
|
|
393
394
|
}
|
|
394
395
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
@@ -446,6 +447,7 @@ interface BaseRegistrationQuestion {
|
|
|
446
447
|
mutable: boolean;
|
|
447
448
|
min: string | null;
|
|
448
449
|
max: string | null;
|
|
450
|
+
masked: boolean;
|
|
449
451
|
validation: string | null;
|
|
450
452
|
validationMessage: string | null;
|
|
451
453
|
locationOption: LocationQuestionOption | null;
|
|
@@ -933,6 +935,7 @@ interface BaseEventSessionQuestion {
|
|
|
933
935
|
mutable: boolean;
|
|
934
936
|
min: string | null;
|
|
935
937
|
max: string | null;
|
|
938
|
+
masked: boolean;
|
|
936
939
|
validation: string | null;
|
|
937
940
|
validationMessage: string | null;
|
|
938
941
|
locationOption: LocationQuestionOption | null;
|
|
@@ -1285,6 +1288,7 @@ interface Payment extends BasePayment {
|
|
|
1285
1288
|
space: BaseBookingSpace | null;
|
|
1286
1289
|
membership: BaseSubscriptionProduct | null;
|
|
1287
1290
|
coupon: BaseCoupon | null;
|
|
1291
|
+
invoice: BaseInvoice | null;
|
|
1288
1292
|
lineItems: PaymentLineItem[];
|
|
1289
1293
|
}
|
|
1290
1294
|
declare enum PaymentLineItemType {
|
|
@@ -1322,7 +1326,6 @@ interface BasePaymentLineItem {
|
|
|
1322
1326
|
passAddOnId: string | null;
|
|
1323
1327
|
reservationId: string | null;
|
|
1324
1328
|
accessId: string | null;
|
|
1325
|
-
invoiceId: string | null;
|
|
1326
1329
|
bookingId: string | null;
|
|
1327
1330
|
subscriptionId: string | null;
|
|
1328
1331
|
paymentId: number;
|
|
@@ -1640,7 +1643,6 @@ interface BaseInvoice {
|
|
|
1640
1643
|
}
|
|
1641
1644
|
interface Invoice extends BaseInvoice {
|
|
1642
1645
|
lineItems: BaseInvoiceLineItem[];
|
|
1643
|
-
lineItem: PaymentLineItem | null;
|
|
1644
1646
|
createdAt: string;
|
|
1645
1647
|
updatedAt: string;
|
|
1646
1648
|
type?: string;
|
|
@@ -1651,6 +1653,7 @@ interface Invoice extends BaseInvoice {
|
|
|
1651
1653
|
event: BaseEvent | null;
|
|
1652
1654
|
organization: BaseOrganization;
|
|
1653
1655
|
notes: string | null;
|
|
1656
|
+
payments: BasePayment[];
|
|
1654
1657
|
}
|
|
1655
1658
|
interface BaseInvoiceLineItem {
|
|
1656
1659
|
id: string;
|
|
@@ -2298,6 +2301,7 @@ interface BaseSurveyQuestion {
|
|
|
2298
2301
|
mutable: boolean;
|
|
2299
2302
|
min: string | null;
|
|
2300
2303
|
max: string | null;
|
|
2304
|
+
masked: boolean;
|
|
2301
2305
|
validation: string | null;
|
|
2302
2306
|
validationMessage: string | null;
|
|
2303
2307
|
locationOption: LocationQuestionOption | null;
|