@connectedxm/admin 3.4.7 → 3.4.9
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.cts +11 -2
- package/dist/index.d.ts +11 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1680,6 +1680,7 @@ interface Payment extends BasePayment {
|
|
|
1680
1680
|
space: BaseBookingSpace | null;
|
|
1681
1681
|
membership: BaseMembership | null;
|
|
1682
1682
|
coupon: BaseCoupon | null;
|
|
1683
|
+
invoice: BaseInvoice | null;
|
|
1683
1684
|
metadata?: any;
|
|
1684
1685
|
lineItems: Omit<PaymentLineItem, "payment">[];
|
|
1685
1686
|
}
|
|
@@ -1718,9 +1719,9 @@ interface BasePaymentLineItem {
|
|
|
1718
1719
|
passAddOnId: string | null;
|
|
1719
1720
|
reservationId: string | null;
|
|
1720
1721
|
accessId: string | null;
|
|
1721
|
-
invoiceId: string | null;
|
|
1722
1722
|
bookingId: string | null;
|
|
1723
1723
|
subscriptionId: string | null;
|
|
1724
|
+
invoiceId: string | null;
|
|
1724
1725
|
}
|
|
1725
1726
|
interface PaymentLineItem extends BasePaymentLineItem {
|
|
1726
1727
|
pass: BaseEventPass | null;
|
|
@@ -1728,7 +1729,6 @@ interface PaymentLineItem extends BasePaymentLineItem {
|
|
|
1728
1729
|
passAddOn: BasePassAddOn | null;
|
|
1729
1730
|
reservation: BaseEventRoomTypeReservation | null;
|
|
1730
1731
|
access: BaseEventSessionAccess | null;
|
|
1731
|
-
invoice: BaseInvoice | null;
|
|
1732
1732
|
booking: BaseBooking | null;
|
|
1733
1733
|
subscription: BaseSubscription | null;
|
|
1734
1734
|
coupon: BaseCoupon | null;
|
|
@@ -1880,6 +1880,7 @@ interface BaseRegistrationQuestion {
|
|
|
1880
1880
|
mutable: boolean;
|
|
1881
1881
|
min: string | null;
|
|
1882
1882
|
max: string | null;
|
|
1883
|
+
masked: boolean;
|
|
1883
1884
|
validation: string | null;
|
|
1884
1885
|
validationMessage: string | null;
|
|
1885
1886
|
locationOption: LocationQuestionOption | null;
|
|
@@ -2284,6 +2285,7 @@ interface BaseEventSessionQuestion {
|
|
|
2284
2285
|
mutable: boolean;
|
|
2285
2286
|
min: string | null;
|
|
2286
2287
|
max: string | null;
|
|
2288
|
+
masked: boolean;
|
|
2287
2289
|
validation: string | null;
|
|
2288
2290
|
validationMessage: string | null;
|
|
2289
2291
|
locationOption: LocationQuestionOption | null;
|
|
@@ -3522,6 +3524,7 @@ interface BaseSurveyQuestion {
|
|
|
3522
3524
|
mutable: boolean;
|
|
3523
3525
|
min: string | null;
|
|
3524
3526
|
max: string | null;
|
|
3527
|
+
masked: boolean;
|
|
3525
3528
|
validation: string | null;
|
|
3526
3529
|
validationMessage: string | null;
|
|
3527
3530
|
locationOption: LocationQuestionOption | null;
|
|
@@ -4518,6 +4521,7 @@ interface EventSessionQuestionCreateInputs {
|
|
|
4518
4521
|
price?: number | string | null;
|
|
4519
4522
|
supply?: number | string | null;
|
|
4520
4523
|
searchListId?: string | null;
|
|
4524
|
+
masked?: boolean;
|
|
4521
4525
|
}
|
|
4522
4526
|
interface EventSessionQuestionTranslationUpdateInputs {
|
|
4523
4527
|
label?: string | null;
|
|
@@ -4536,6 +4540,7 @@ interface EventSessionQuestionUpdateInputs {
|
|
|
4536
4540
|
mutable?: boolean;
|
|
4537
4541
|
min?: string | null;
|
|
4538
4542
|
max?: string | null;
|
|
4543
|
+
masked?: boolean;
|
|
4539
4544
|
validation?: string | null;
|
|
4540
4545
|
validationMessage?: string | null;
|
|
4541
4546
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -4927,6 +4932,7 @@ interface EventQuestionCreateInputs {
|
|
|
4927
4932
|
featured?: boolean;
|
|
4928
4933
|
choices?: string[] | null;
|
|
4929
4934
|
searchListId?: string | null;
|
|
4935
|
+
masked?: boolean;
|
|
4930
4936
|
}
|
|
4931
4937
|
interface EventQuestionTranslationUpdateInputs {
|
|
4932
4938
|
label?: string | null;
|
|
@@ -4945,6 +4951,7 @@ interface EventQuestionUpdateInputs {
|
|
|
4945
4951
|
mutable?: boolean;
|
|
4946
4952
|
min?: string | null;
|
|
4947
4953
|
max?: string | null;
|
|
4954
|
+
masked?: boolean;
|
|
4948
4955
|
validation?: string | null;
|
|
4949
4956
|
validationMessage?: string | null;
|
|
4950
4957
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -5717,6 +5724,7 @@ interface SurveyQuestionCreateInputs {
|
|
|
5717
5724
|
featured?: boolean;
|
|
5718
5725
|
choices?: string[] | null;
|
|
5719
5726
|
searchListId?: string | null;
|
|
5727
|
+
masked?: boolean;
|
|
5720
5728
|
}
|
|
5721
5729
|
interface SurveyQuestionTranslationUpdateInputs {
|
|
5722
5730
|
label?: string | null;
|
|
@@ -5735,6 +5743,7 @@ interface SurveyQuestionUpdateInputs {
|
|
|
5735
5743
|
mutable?: boolean;
|
|
5736
5744
|
min?: string | null;
|
|
5737
5745
|
max?: string | null;
|
|
5746
|
+
masked?: boolean;
|
|
5738
5747
|
validation?: string | null;
|
|
5739
5748
|
validationMessage?: string | null;
|
|
5740
5749
|
locationOption?: LocationQuestionOption | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1680,6 +1680,7 @@ interface Payment extends BasePayment {
|
|
|
1680
1680
|
space: BaseBookingSpace | null;
|
|
1681
1681
|
membership: BaseMembership | null;
|
|
1682
1682
|
coupon: BaseCoupon | null;
|
|
1683
|
+
invoice: BaseInvoice | null;
|
|
1683
1684
|
metadata?: any;
|
|
1684
1685
|
lineItems: Omit<PaymentLineItem, "payment">[];
|
|
1685
1686
|
}
|
|
@@ -1718,9 +1719,9 @@ interface BasePaymentLineItem {
|
|
|
1718
1719
|
passAddOnId: string | null;
|
|
1719
1720
|
reservationId: string | null;
|
|
1720
1721
|
accessId: string | null;
|
|
1721
|
-
invoiceId: string | null;
|
|
1722
1722
|
bookingId: string | null;
|
|
1723
1723
|
subscriptionId: string | null;
|
|
1724
|
+
invoiceId: string | null;
|
|
1724
1725
|
}
|
|
1725
1726
|
interface PaymentLineItem extends BasePaymentLineItem {
|
|
1726
1727
|
pass: BaseEventPass | null;
|
|
@@ -1728,7 +1729,6 @@ interface PaymentLineItem extends BasePaymentLineItem {
|
|
|
1728
1729
|
passAddOn: BasePassAddOn | null;
|
|
1729
1730
|
reservation: BaseEventRoomTypeReservation | null;
|
|
1730
1731
|
access: BaseEventSessionAccess | null;
|
|
1731
|
-
invoice: BaseInvoice | null;
|
|
1732
1732
|
booking: BaseBooking | null;
|
|
1733
1733
|
subscription: BaseSubscription | null;
|
|
1734
1734
|
coupon: BaseCoupon | null;
|
|
@@ -1880,6 +1880,7 @@ interface BaseRegistrationQuestion {
|
|
|
1880
1880
|
mutable: boolean;
|
|
1881
1881
|
min: string | null;
|
|
1882
1882
|
max: string | null;
|
|
1883
|
+
masked: boolean;
|
|
1883
1884
|
validation: string | null;
|
|
1884
1885
|
validationMessage: string | null;
|
|
1885
1886
|
locationOption: LocationQuestionOption | null;
|
|
@@ -2284,6 +2285,7 @@ interface BaseEventSessionQuestion {
|
|
|
2284
2285
|
mutable: boolean;
|
|
2285
2286
|
min: string | null;
|
|
2286
2287
|
max: string | null;
|
|
2288
|
+
masked: boolean;
|
|
2287
2289
|
validation: string | null;
|
|
2288
2290
|
validationMessage: string | null;
|
|
2289
2291
|
locationOption: LocationQuestionOption | null;
|
|
@@ -3522,6 +3524,7 @@ interface BaseSurveyQuestion {
|
|
|
3522
3524
|
mutable: boolean;
|
|
3523
3525
|
min: string | null;
|
|
3524
3526
|
max: string | null;
|
|
3527
|
+
masked: boolean;
|
|
3525
3528
|
validation: string | null;
|
|
3526
3529
|
validationMessage: string | null;
|
|
3527
3530
|
locationOption: LocationQuestionOption | null;
|
|
@@ -4518,6 +4521,7 @@ interface EventSessionQuestionCreateInputs {
|
|
|
4518
4521
|
price?: number | string | null;
|
|
4519
4522
|
supply?: number | string | null;
|
|
4520
4523
|
searchListId?: string | null;
|
|
4524
|
+
masked?: boolean;
|
|
4521
4525
|
}
|
|
4522
4526
|
interface EventSessionQuestionTranslationUpdateInputs {
|
|
4523
4527
|
label?: string | null;
|
|
@@ -4536,6 +4540,7 @@ interface EventSessionQuestionUpdateInputs {
|
|
|
4536
4540
|
mutable?: boolean;
|
|
4537
4541
|
min?: string | null;
|
|
4538
4542
|
max?: string | null;
|
|
4543
|
+
masked?: boolean;
|
|
4539
4544
|
validation?: string | null;
|
|
4540
4545
|
validationMessage?: string | null;
|
|
4541
4546
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -4927,6 +4932,7 @@ interface EventQuestionCreateInputs {
|
|
|
4927
4932
|
featured?: boolean;
|
|
4928
4933
|
choices?: string[] | null;
|
|
4929
4934
|
searchListId?: string | null;
|
|
4935
|
+
masked?: boolean;
|
|
4930
4936
|
}
|
|
4931
4937
|
interface EventQuestionTranslationUpdateInputs {
|
|
4932
4938
|
label?: string | null;
|
|
@@ -4945,6 +4951,7 @@ interface EventQuestionUpdateInputs {
|
|
|
4945
4951
|
mutable?: boolean;
|
|
4946
4952
|
min?: string | null;
|
|
4947
4953
|
max?: string | null;
|
|
4954
|
+
masked?: boolean;
|
|
4948
4955
|
validation?: string | null;
|
|
4949
4956
|
validationMessage?: string | null;
|
|
4950
4957
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -5717,6 +5724,7 @@ interface SurveyQuestionCreateInputs {
|
|
|
5717
5724
|
featured?: boolean;
|
|
5718
5725
|
choices?: string[] | null;
|
|
5719
5726
|
searchListId?: string | null;
|
|
5727
|
+
masked?: boolean;
|
|
5720
5728
|
}
|
|
5721
5729
|
interface SurveyQuestionTranslationUpdateInputs {
|
|
5722
5730
|
label?: string | null;
|
|
@@ -5735,6 +5743,7 @@ interface SurveyQuestionUpdateInputs {
|
|
|
5735
5743
|
mutable?: boolean;
|
|
5736
5744
|
min?: string | null;
|
|
5737
5745
|
max?: string | null;
|
|
5746
|
+
masked?: boolean;
|
|
5738
5747
|
validation?: string | null;
|
|
5739
5748
|
validationMessage?: string | null;
|
|
5740
5749
|
locationOption?: LocationQuestionOption | null;
|