@connectedxm/admin 6.28.0 → 6.28.2
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/openapi.json +20 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -802,6 +802,7 @@ interface BaseCoupon {
|
|
|
802
802
|
applyToPassType: boolean;
|
|
803
803
|
applyToAddOns: boolean;
|
|
804
804
|
applyToReservation: boolean;
|
|
805
|
+
applyToSessions: boolean;
|
|
805
806
|
registrationId: string | null;
|
|
806
807
|
registration: {
|
|
807
808
|
accountId: string;
|
|
@@ -851,6 +852,7 @@ interface BaseEventAddOn {
|
|
|
851
852
|
supply: number | null;
|
|
852
853
|
price: number;
|
|
853
854
|
pricePerNight: boolean;
|
|
855
|
+
includedNights: number;
|
|
854
856
|
sortOrder: number;
|
|
855
857
|
imageId: string | null;
|
|
856
858
|
image: BaseImage | null;
|
|
@@ -5126,6 +5128,7 @@ interface EventAddOnCreateInputs {
|
|
|
5126
5128
|
longDescription?: string | null;
|
|
5127
5129
|
price: number | string | null;
|
|
5128
5130
|
pricePerNight?: boolean;
|
|
5131
|
+
includedNights?: number;
|
|
5129
5132
|
supply?: number | string | null;
|
|
5130
5133
|
sortOrder?: number | string | null;
|
|
5131
5134
|
imageId?: string | null;
|
|
@@ -5144,6 +5147,7 @@ interface EventAddOnUpdateInputs {
|
|
|
5144
5147
|
longDescription?: string | null;
|
|
5145
5148
|
price?: number | string | null;
|
|
5146
5149
|
pricePerNight?: boolean;
|
|
5150
|
+
includedNights?: number;
|
|
5147
5151
|
supply?: number | string | null;
|
|
5148
5152
|
sortOrder?: number | string | null;
|
|
5149
5153
|
imageId?: string | null;
|
|
@@ -5182,6 +5186,7 @@ interface EventCouponCreateInputs {
|
|
|
5182
5186
|
applyToPassType?: boolean;
|
|
5183
5187
|
applyToAddOns?: boolean;
|
|
5184
5188
|
applyToReservation?: boolean;
|
|
5189
|
+
applyToSessions?: boolean;
|
|
5185
5190
|
}
|
|
5186
5191
|
interface EventCouponUpdateInputs {
|
|
5187
5192
|
code?: string | null;
|
|
@@ -5202,6 +5207,7 @@ interface EventCouponUpdateInputs {
|
|
|
5202
5207
|
applyToPassType?: boolean;
|
|
5203
5208
|
applyToAddOns?: boolean;
|
|
5204
5209
|
applyToReservation?: boolean;
|
|
5210
|
+
applyToSessions?: boolean;
|
|
5205
5211
|
}
|
|
5206
5212
|
interface EventVariantCouponCreateInputs {
|
|
5207
5213
|
quantity?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -802,6 +802,7 @@ interface BaseCoupon {
|
|
|
802
802
|
applyToPassType: boolean;
|
|
803
803
|
applyToAddOns: boolean;
|
|
804
804
|
applyToReservation: boolean;
|
|
805
|
+
applyToSessions: boolean;
|
|
805
806
|
registrationId: string | null;
|
|
806
807
|
registration: {
|
|
807
808
|
accountId: string;
|
|
@@ -851,6 +852,7 @@ interface BaseEventAddOn {
|
|
|
851
852
|
supply: number | null;
|
|
852
853
|
price: number;
|
|
853
854
|
pricePerNight: boolean;
|
|
855
|
+
includedNights: number;
|
|
854
856
|
sortOrder: number;
|
|
855
857
|
imageId: string | null;
|
|
856
858
|
image: BaseImage | null;
|
|
@@ -5126,6 +5128,7 @@ interface EventAddOnCreateInputs {
|
|
|
5126
5128
|
longDescription?: string | null;
|
|
5127
5129
|
price: number | string | null;
|
|
5128
5130
|
pricePerNight?: boolean;
|
|
5131
|
+
includedNights?: number;
|
|
5129
5132
|
supply?: number | string | null;
|
|
5130
5133
|
sortOrder?: number | string | null;
|
|
5131
5134
|
imageId?: string | null;
|
|
@@ -5144,6 +5147,7 @@ interface EventAddOnUpdateInputs {
|
|
|
5144
5147
|
longDescription?: string | null;
|
|
5145
5148
|
price?: number | string | null;
|
|
5146
5149
|
pricePerNight?: boolean;
|
|
5150
|
+
includedNights?: number;
|
|
5147
5151
|
supply?: number | string | null;
|
|
5148
5152
|
sortOrder?: number | string | null;
|
|
5149
5153
|
imageId?: string | null;
|
|
@@ -5182,6 +5186,7 @@ interface EventCouponCreateInputs {
|
|
|
5182
5186
|
applyToPassType?: boolean;
|
|
5183
5187
|
applyToAddOns?: boolean;
|
|
5184
5188
|
applyToReservation?: boolean;
|
|
5189
|
+
applyToSessions?: boolean;
|
|
5185
5190
|
}
|
|
5186
5191
|
interface EventCouponUpdateInputs {
|
|
5187
5192
|
code?: string | null;
|
|
@@ -5202,6 +5207,7 @@ interface EventCouponUpdateInputs {
|
|
|
5202
5207
|
applyToPassType?: boolean;
|
|
5203
5208
|
applyToAddOns?: boolean;
|
|
5204
5209
|
applyToReservation?: boolean;
|
|
5210
|
+
applyToSessions?: boolean;
|
|
5205
5211
|
}
|
|
5206
5212
|
interface EventVariantCouponCreateInputs {
|
|
5207
5213
|
quantity?: number;
|
package/openapi.json
CHANGED
|
@@ -95650,6 +95650,9 @@
|
|
|
95650
95650
|
"applyToReservation": {
|
|
95651
95651
|
"type": "boolean"
|
|
95652
95652
|
},
|
|
95653
|
+
"applyToSessions": {
|
|
95654
|
+
"type": "boolean"
|
|
95655
|
+
},
|
|
95653
95656
|
"registrationId": {
|
|
95654
95657
|
"type": "string",
|
|
95655
95658
|
"nullable": true
|
|
@@ -95689,6 +95692,7 @@
|
|
|
95689
95692
|
"applyToPassType",
|
|
95690
95693
|
"applyToAddOns",
|
|
95691
95694
|
"applyToReservation",
|
|
95695
|
+
"applyToSessions",
|
|
95692
95696
|
"registrationId",
|
|
95693
95697
|
"registration"
|
|
95694
95698
|
]
|
|
@@ -95880,6 +95884,9 @@
|
|
|
95880
95884
|
"pricePerNight": {
|
|
95881
95885
|
"type": "boolean"
|
|
95882
95886
|
},
|
|
95887
|
+
"includedNights": {
|
|
95888
|
+
"type": "number"
|
|
95889
|
+
},
|
|
95883
95890
|
"sortOrder": {
|
|
95884
95891
|
"type": "number"
|
|
95885
95892
|
},
|
|
@@ -95923,6 +95930,7 @@
|
|
|
95923
95930
|
"supply",
|
|
95924
95931
|
"price",
|
|
95925
95932
|
"pricePerNight",
|
|
95933
|
+
"includedNights",
|
|
95926
95934
|
"sortOrder",
|
|
95927
95935
|
"imageId",
|
|
95928
95936
|
"image",
|
|
@@ -113886,6 +113894,9 @@
|
|
|
113886
113894
|
"pricePerNight": {
|
|
113887
113895
|
"type": "boolean"
|
|
113888
113896
|
},
|
|
113897
|
+
"includedNights": {
|
|
113898
|
+
"type": "number"
|
|
113899
|
+
},
|
|
113889
113900
|
"supply": {
|
|
113890
113901
|
"oneOf": [
|
|
113891
113902
|
{
|
|
@@ -113975,6 +113986,9 @@
|
|
|
113975
113986
|
"pricePerNight": {
|
|
113976
113987
|
"type": "boolean"
|
|
113977
113988
|
},
|
|
113989
|
+
"includedNights": {
|
|
113990
|
+
"type": "number"
|
|
113991
|
+
},
|
|
113978
113992
|
"supply": {
|
|
113979
113993
|
"oneOf": [
|
|
113980
113994
|
{
|
|
@@ -114177,6 +114191,9 @@
|
|
|
114177
114191
|
},
|
|
114178
114192
|
"applyToReservation": {
|
|
114179
114193
|
"type": "boolean"
|
|
114194
|
+
},
|
|
114195
|
+
"applyToSessions": {
|
|
114196
|
+
"type": "boolean"
|
|
114180
114197
|
}
|
|
114181
114198
|
},
|
|
114182
114199
|
"required": [
|
|
@@ -114302,6 +114319,9 @@
|
|
|
114302
114319
|
},
|
|
114303
114320
|
"applyToReservation": {
|
|
114304
114321
|
"type": "boolean"
|
|
114322
|
+
},
|
|
114323
|
+
"applyToSessions": {
|
|
114324
|
+
"type": "boolean"
|
|
114305
114325
|
}
|
|
114306
114326
|
}
|
|
114307
114327
|
},
|