@connectedxm/admin 3.4.7 → 3.4.8
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 +10 -2
- package/dist/index.d.ts +10 -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,7 +1719,6 @@ 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
1724
|
}
|
|
@@ -1728,7 +1728,6 @@ interface PaymentLineItem extends BasePaymentLineItem {
|
|
|
1728
1728
|
passAddOn: BasePassAddOn | null;
|
|
1729
1729
|
reservation: BaseEventRoomTypeReservation | null;
|
|
1730
1730
|
access: BaseEventSessionAccess | null;
|
|
1731
|
-
invoice: BaseInvoice | null;
|
|
1732
1731
|
booking: BaseBooking | null;
|
|
1733
1732
|
subscription: BaseSubscription | null;
|
|
1734
1733
|
coupon: BaseCoupon | null;
|
|
@@ -1880,6 +1879,7 @@ interface BaseRegistrationQuestion {
|
|
|
1880
1879
|
mutable: boolean;
|
|
1881
1880
|
min: string | null;
|
|
1882
1881
|
max: string | null;
|
|
1882
|
+
masked: boolean;
|
|
1883
1883
|
validation: string | null;
|
|
1884
1884
|
validationMessage: string | null;
|
|
1885
1885
|
locationOption: LocationQuestionOption | null;
|
|
@@ -2284,6 +2284,7 @@ interface BaseEventSessionQuestion {
|
|
|
2284
2284
|
mutable: boolean;
|
|
2285
2285
|
min: string | null;
|
|
2286
2286
|
max: string | null;
|
|
2287
|
+
masked: boolean;
|
|
2287
2288
|
validation: string | null;
|
|
2288
2289
|
validationMessage: string | null;
|
|
2289
2290
|
locationOption: LocationQuestionOption | null;
|
|
@@ -3522,6 +3523,7 @@ interface BaseSurveyQuestion {
|
|
|
3522
3523
|
mutable: boolean;
|
|
3523
3524
|
min: string | null;
|
|
3524
3525
|
max: string | null;
|
|
3526
|
+
masked: boolean;
|
|
3525
3527
|
validation: string | null;
|
|
3526
3528
|
validationMessage: string | null;
|
|
3527
3529
|
locationOption: LocationQuestionOption | null;
|
|
@@ -4518,6 +4520,7 @@ interface EventSessionQuestionCreateInputs {
|
|
|
4518
4520
|
price?: number | string | null;
|
|
4519
4521
|
supply?: number | string | null;
|
|
4520
4522
|
searchListId?: string | null;
|
|
4523
|
+
masked?: boolean;
|
|
4521
4524
|
}
|
|
4522
4525
|
interface EventSessionQuestionTranslationUpdateInputs {
|
|
4523
4526
|
label?: string | null;
|
|
@@ -4536,6 +4539,7 @@ interface EventSessionQuestionUpdateInputs {
|
|
|
4536
4539
|
mutable?: boolean;
|
|
4537
4540
|
min?: string | null;
|
|
4538
4541
|
max?: string | null;
|
|
4542
|
+
masked?: boolean;
|
|
4539
4543
|
validation?: string | null;
|
|
4540
4544
|
validationMessage?: string | null;
|
|
4541
4545
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -4927,6 +4931,7 @@ interface EventQuestionCreateInputs {
|
|
|
4927
4931
|
featured?: boolean;
|
|
4928
4932
|
choices?: string[] | null;
|
|
4929
4933
|
searchListId?: string | null;
|
|
4934
|
+
masked?: boolean;
|
|
4930
4935
|
}
|
|
4931
4936
|
interface EventQuestionTranslationUpdateInputs {
|
|
4932
4937
|
label?: string | null;
|
|
@@ -4945,6 +4950,7 @@ interface EventQuestionUpdateInputs {
|
|
|
4945
4950
|
mutable?: boolean;
|
|
4946
4951
|
min?: string | null;
|
|
4947
4952
|
max?: string | null;
|
|
4953
|
+
masked?: boolean;
|
|
4948
4954
|
validation?: string | null;
|
|
4949
4955
|
validationMessage?: string | null;
|
|
4950
4956
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -5717,6 +5723,7 @@ interface SurveyQuestionCreateInputs {
|
|
|
5717
5723
|
featured?: boolean;
|
|
5718
5724
|
choices?: string[] | null;
|
|
5719
5725
|
searchListId?: string | null;
|
|
5726
|
+
masked?: boolean;
|
|
5720
5727
|
}
|
|
5721
5728
|
interface SurveyQuestionTranslationUpdateInputs {
|
|
5722
5729
|
label?: string | null;
|
|
@@ -5735,6 +5742,7 @@ interface SurveyQuestionUpdateInputs {
|
|
|
5735
5742
|
mutable?: boolean;
|
|
5736
5743
|
min?: string | null;
|
|
5737
5744
|
max?: string | null;
|
|
5745
|
+
masked?: boolean;
|
|
5738
5746
|
validation?: string | null;
|
|
5739
5747
|
validationMessage?: string | null;
|
|
5740
5748
|
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,7 +1719,6 @@ 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
1724
|
}
|
|
@@ -1728,7 +1728,6 @@ interface PaymentLineItem extends BasePaymentLineItem {
|
|
|
1728
1728
|
passAddOn: BasePassAddOn | null;
|
|
1729
1729
|
reservation: BaseEventRoomTypeReservation | null;
|
|
1730
1730
|
access: BaseEventSessionAccess | null;
|
|
1731
|
-
invoice: BaseInvoice | null;
|
|
1732
1731
|
booking: BaseBooking | null;
|
|
1733
1732
|
subscription: BaseSubscription | null;
|
|
1734
1733
|
coupon: BaseCoupon | null;
|
|
@@ -1880,6 +1879,7 @@ interface BaseRegistrationQuestion {
|
|
|
1880
1879
|
mutable: boolean;
|
|
1881
1880
|
min: string | null;
|
|
1882
1881
|
max: string | null;
|
|
1882
|
+
masked: boolean;
|
|
1883
1883
|
validation: string | null;
|
|
1884
1884
|
validationMessage: string | null;
|
|
1885
1885
|
locationOption: LocationQuestionOption | null;
|
|
@@ -2284,6 +2284,7 @@ interface BaseEventSessionQuestion {
|
|
|
2284
2284
|
mutable: boolean;
|
|
2285
2285
|
min: string | null;
|
|
2286
2286
|
max: string | null;
|
|
2287
|
+
masked: boolean;
|
|
2287
2288
|
validation: string | null;
|
|
2288
2289
|
validationMessage: string | null;
|
|
2289
2290
|
locationOption: LocationQuestionOption | null;
|
|
@@ -3522,6 +3523,7 @@ interface BaseSurveyQuestion {
|
|
|
3522
3523
|
mutable: boolean;
|
|
3523
3524
|
min: string | null;
|
|
3524
3525
|
max: string | null;
|
|
3526
|
+
masked: boolean;
|
|
3525
3527
|
validation: string | null;
|
|
3526
3528
|
validationMessage: string | null;
|
|
3527
3529
|
locationOption: LocationQuestionOption | null;
|
|
@@ -4518,6 +4520,7 @@ interface EventSessionQuestionCreateInputs {
|
|
|
4518
4520
|
price?: number | string | null;
|
|
4519
4521
|
supply?: number | string | null;
|
|
4520
4522
|
searchListId?: string | null;
|
|
4523
|
+
masked?: boolean;
|
|
4521
4524
|
}
|
|
4522
4525
|
interface EventSessionQuestionTranslationUpdateInputs {
|
|
4523
4526
|
label?: string | null;
|
|
@@ -4536,6 +4539,7 @@ interface EventSessionQuestionUpdateInputs {
|
|
|
4536
4539
|
mutable?: boolean;
|
|
4537
4540
|
min?: string | null;
|
|
4538
4541
|
max?: string | null;
|
|
4542
|
+
masked?: boolean;
|
|
4539
4543
|
validation?: string | null;
|
|
4540
4544
|
validationMessage?: string | null;
|
|
4541
4545
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -4927,6 +4931,7 @@ interface EventQuestionCreateInputs {
|
|
|
4927
4931
|
featured?: boolean;
|
|
4928
4932
|
choices?: string[] | null;
|
|
4929
4933
|
searchListId?: string | null;
|
|
4934
|
+
masked?: boolean;
|
|
4930
4935
|
}
|
|
4931
4936
|
interface EventQuestionTranslationUpdateInputs {
|
|
4932
4937
|
label?: string | null;
|
|
@@ -4945,6 +4950,7 @@ interface EventQuestionUpdateInputs {
|
|
|
4945
4950
|
mutable?: boolean;
|
|
4946
4951
|
min?: string | null;
|
|
4947
4952
|
max?: string | null;
|
|
4953
|
+
masked?: boolean;
|
|
4948
4954
|
validation?: string | null;
|
|
4949
4955
|
validationMessage?: string | null;
|
|
4950
4956
|
locationOption?: LocationQuestionOption | null;
|
|
@@ -5717,6 +5723,7 @@ interface SurveyQuestionCreateInputs {
|
|
|
5717
5723
|
featured?: boolean;
|
|
5718
5724
|
choices?: string[] | null;
|
|
5719
5725
|
searchListId?: string | null;
|
|
5726
|
+
masked?: boolean;
|
|
5720
5727
|
}
|
|
5721
5728
|
interface SurveyQuestionTranslationUpdateInputs {
|
|
5722
5729
|
label?: string | null;
|
|
@@ -5735,6 +5742,7 @@ interface SurveyQuestionUpdateInputs {
|
|
|
5735
5742
|
mutable?: boolean;
|
|
5736
5743
|
min?: string | null;
|
|
5737
5744
|
max?: string | null;
|
|
5745
|
+
masked?: boolean;
|
|
5738
5746
|
validation?: string | null;
|
|
5739
5747
|
validationMessage?: string | null;
|
|
5740
5748
|
locationOption?: LocationQuestionOption | null;
|