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