@connectedxm/admin-sdk 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/api.ts CHANGED
@@ -1146,6 +1146,7 @@ export interface BaseCoupon {
1146
1146
  'applyToPassType': boolean;
1147
1147
  'applyToAddOns': boolean;
1148
1148
  'applyToReservation': boolean;
1149
+ 'applyToSessions': boolean;
1149
1150
  'registrationId': string | null;
1150
1151
  'registration': BaseCouponRegistration | null;
1151
1152
  }
@@ -1248,6 +1249,7 @@ export interface BaseEventAddOn {
1248
1249
  'supply': number | null;
1249
1250
  'price': number;
1250
1251
  'pricePerNight': boolean;
1252
+ 'includedNights': number;
1251
1253
  'sortOrder': number;
1252
1254
  'imageId': string | null;
1253
1255
  'image': BaseImage | null;
@@ -3481,6 +3483,7 @@ export interface Coupon {
3481
3483
  'applyToPassType': boolean;
3482
3484
  'applyToAddOns': boolean;
3483
3485
  'applyToReservation': boolean;
3486
+ 'applyToSessions': boolean;
3484
3487
  'registrationId': string | null;
3485
3488
  'registration': BaseEventAttendee | null;
3486
3489
  'lineItem': PaymentLineItem | null;
@@ -4846,6 +4849,7 @@ export interface EventAddOn {
4846
4849
  'supply': number | null;
4847
4850
  'price': number;
4848
4851
  'pricePerNight': boolean;
4852
+ 'includedNights': number;
4849
4853
  'sortOrder': number;
4850
4854
  'imageId': string | null;
4851
4855
  'image': BaseImage | null;
@@ -4873,6 +4877,7 @@ export interface EventAddOnCreateInputs {
4873
4877
  'longDescription'?: string | null;
4874
4878
  'price': AdvertisementCreateInputsWeight | null;
4875
4879
  'pricePerNight'?: boolean;
4880
+ 'includedNights'?: number;
4876
4881
  'supply'?: AdvertisementCreateInputsWeight | null;
4877
4882
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4878
4883
  'imageId'?: string | null;
@@ -4901,6 +4906,7 @@ export interface EventAddOnUpdateInputs {
4901
4906
  'longDescription'?: string | null;
4902
4907
  'price'?: AdvertisementCreateInputsWeight | null;
4903
4908
  'pricePerNight'?: boolean;
4909
+ 'includedNights'?: number;
4904
4910
  'supply'?: AdvertisementCreateInputsWeight | null;
4905
4911
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4906
4912
  'imageId'?: string | null;
@@ -5020,6 +5026,7 @@ export interface EventCouponCreateInputs {
5020
5026
  'applyToPassType'?: boolean;
5021
5027
  'applyToAddOns'?: boolean;
5022
5028
  'applyToReservation'?: boolean;
5029
+ 'applyToSessions'?: boolean;
5023
5030
  }
5024
5031
  export interface EventCouponUpdateInputs {
5025
5032
  'code'?: string | null;
@@ -5040,6 +5047,7 @@ export interface EventCouponUpdateInputs {
5040
5047
  'applyToPassType'?: boolean;
5041
5048
  'applyToAddOns'?: boolean;
5042
5049
  'applyToReservation'?: boolean;
5050
+ 'applyToSessions'?: boolean;
5043
5051
  }
5044
5052
  export interface EventCreateInputs {
5045
5053
  'eventType': EventType;
package/dist/api.d.ts CHANGED
@@ -1047,6 +1047,7 @@ export interface BaseCoupon {
1047
1047
  'applyToPassType': boolean;
1048
1048
  'applyToAddOns': boolean;
1049
1049
  'applyToReservation': boolean;
1050
+ 'applyToSessions': boolean;
1050
1051
  'registrationId': string | null;
1051
1052
  'registration': BaseCouponRegistration | null;
1052
1053
  }
@@ -1143,6 +1144,7 @@ export interface BaseEventAddOn {
1143
1144
  'supply': number | null;
1144
1145
  'price': number;
1145
1146
  'pricePerNight': boolean;
1147
+ 'includedNights': number;
1146
1148
  'sortOrder': number;
1147
1149
  'imageId': string | null;
1148
1150
  'image': BaseImage | null;
@@ -3250,6 +3252,7 @@ export interface Coupon {
3250
3252
  'applyToPassType': boolean;
3251
3253
  'applyToAddOns': boolean;
3252
3254
  'applyToReservation': boolean;
3255
+ 'applyToSessions': boolean;
3253
3256
  'registrationId': string | null;
3254
3257
  'registration': BaseEventAttendee | null;
3255
3258
  'lineItem': PaymentLineItem | null;
@@ -4388,6 +4391,7 @@ export interface EventAddOn {
4388
4391
  'supply': number | null;
4389
4392
  'price': number;
4390
4393
  'pricePerNight': boolean;
4394
+ 'includedNights': number;
4391
4395
  'sortOrder': number;
4392
4396
  'imageId': string | null;
4393
4397
  'image': BaseImage | null;
@@ -4413,6 +4417,7 @@ export interface EventAddOnCreateInputs {
4413
4417
  'longDescription'?: string | null;
4414
4418
  'price': AdvertisementCreateInputsWeight | null;
4415
4419
  'pricePerNight'?: boolean;
4420
+ 'includedNights'?: number;
4416
4421
  'supply'?: AdvertisementCreateInputsWeight | null;
4417
4422
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4418
4423
  'imageId'?: string | null;
@@ -4439,6 +4444,7 @@ export interface EventAddOnUpdateInputs {
4439
4444
  'longDescription'?: string | null;
4440
4445
  'price'?: AdvertisementCreateInputsWeight | null;
4441
4446
  'pricePerNight'?: boolean;
4447
+ 'includedNights'?: number;
4442
4448
  'supply'?: AdvertisementCreateInputsWeight | null;
4443
4449
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4444
4450
  'imageId'?: string | null;
@@ -4547,6 +4553,7 @@ export interface EventCouponCreateInputs {
4547
4553
  'applyToPassType'?: boolean;
4548
4554
  'applyToAddOns'?: boolean;
4549
4555
  'applyToReservation'?: boolean;
4556
+ 'applyToSessions'?: boolean;
4550
4557
  }
4551
4558
  export interface EventCouponUpdateInputs {
4552
4559
  'code'?: string | null;
@@ -4567,6 +4574,7 @@ export interface EventCouponUpdateInputs {
4567
4574
  'applyToPassType'?: boolean;
4568
4575
  'applyToAddOns'?: boolean;
4569
4576
  'applyToReservation'?: boolean;
4577
+ 'applyToSessions'?: boolean;
4570
4578
  }
4571
4579
  export interface EventCreateInputs {
4572
4580
  'eventType': EventType;
package/dist/esm/api.d.ts CHANGED
@@ -1047,6 +1047,7 @@ export interface BaseCoupon {
1047
1047
  'applyToPassType': boolean;
1048
1048
  'applyToAddOns': boolean;
1049
1049
  'applyToReservation': boolean;
1050
+ 'applyToSessions': boolean;
1050
1051
  'registrationId': string | null;
1051
1052
  'registration': BaseCouponRegistration | null;
1052
1053
  }
@@ -1143,6 +1144,7 @@ export interface BaseEventAddOn {
1143
1144
  'supply': number | null;
1144
1145
  'price': number;
1145
1146
  'pricePerNight': boolean;
1147
+ 'includedNights': number;
1146
1148
  'sortOrder': number;
1147
1149
  'imageId': string | null;
1148
1150
  'image': BaseImage | null;
@@ -3250,6 +3252,7 @@ export interface Coupon {
3250
3252
  'applyToPassType': boolean;
3251
3253
  'applyToAddOns': boolean;
3252
3254
  'applyToReservation': boolean;
3255
+ 'applyToSessions': boolean;
3253
3256
  'registrationId': string | null;
3254
3257
  'registration': BaseEventAttendee | null;
3255
3258
  'lineItem': PaymentLineItem | null;
@@ -4388,6 +4391,7 @@ export interface EventAddOn {
4388
4391
  'supply': number | null;
4389
4392
  'price': number;
4390
4393
  'pricePerNight': boolean;
4394
+ 'includedNights': number;
4391
4395
  'sortOrder': number;
4392
4396
  'imageId': string | null;
4393
4397
  'image': BaseImage | null;
@@ -4413,6 +4417,7 @@ export interface EventAddOnCreateInputs {
4413
4417
  'longDescription'?: string | null;
4414
4418
  'price': AdvertisementCreateInputsWeight | null;
4415
4419
  'pricePerNight'?: boolean;
4420
+ 'includedNights'?: number;
4416
4421
  'supply'?: AdvertisementCreateInputsWeight | null;
4417
4422
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4418
4423
  'imageId'?: string | null;
@@ -4439,6 +4444,7 @@ export interface EventAddOnUpdateInputs {
4439
4444
  'longDescription'?: string | null;
4440
4445
  'price'?: AdvertisementCreateInputsWeight | null;
4441
4446
  'pricePerNight'?: boolean;
4447
+ 'includedNights'?: number;
4442
4448
  'supply'?: AdvertisementCreateInputsWeight | null;
4443
4449
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4444
4450
  'imageId'?: string | null;
@@ -4547,6 +4553,7 @@ export interface EventCouponCreateInputs {
4547
4553
  'applyToPassType'?: boolean;
4548
4554
  'applyToAddOns'?: boolean;
4549
4555
  'applyToReservation'?: boolean;
4556
+ 'applyToSessions'?: boolean;
4550
4557
  }
4551
4558
  export interface EventCouponUpdateInputs {
4552
4559
  'code'?: string | null;
@@ -4567,6 +4574,7 @@ export interface EventCouponUpdateInputs {
4567
4574
  'applyToPassType'?: boolean;
4568
4575
  'applyToAddOns'?: boolean;
4569
4576
  'applyToReservation'?: boolean;
4577
+ 'applyToSessions'?: boolean;
4570
4578
  }
4571
4579
  export interface EventCreateInputs {
4572
4580
  'eventType': EventType;
@@ -26,6 +26,7 @@ Name | Type | Description | Notes
26
26
  **applyToPassType** | **boolean** | | [default to undefined]
27
27
  **applyToAddOns** | **boolean** | | [default to undefined]
28
28
  **applyToReservation** | **boolean** | | [default to undefined]
29
+ **applyToSessions** | **boolean** | | [default to undefined]
29
30
  **registrationId** | **string** | | [default to undefined]
30
31
  **registration** | [**BaseCouponRegistration**](BaseCouponRegistration.md) | | [default to undefined]
31
32
 
@@ -56,6 +57,7 @@ const instance: BaseCoupon = {
56
57
  applyToPassType,
57
58
  applyToAddOns,
58
59
  applyToReservation,
60
+ applyToSessions,
59
61
  registrationId,
60
62
  registration,
61
63
  };
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **supply** | **number** | | [default to undefined]
12
12
  **price** | **number** | | [default to undefined]
13
13
  **pricePerNight** | **boolean** | | [default to undefined]
14
+ **includedNights** | **number** | | [default to undefined]
14
15
  **sortOrder** | **number** | | [default to undefined]
15
16
  **imageId** | **string** | | [default to undefined]
16
17
  **image** | [**BaseImage**](BaseImage.md) | | [default to undefined]
@@ -33,6 +34,7 @@ const instance: BaseEventAddOn = {
33
34
  supply,
34
35
  price,
35
36
  pricePerNight,
37
+ includedNights,
36
38
  sortOrder,
37
39
  imageId,
38
40
  image,
package/docs/Coupon.md CHANGED
@@ -26,6 +26,7 @@ Name | Type | Description | Notes
26
26
  **applyToPassType** | **boolean** | | [default to undefined]
27
27
  **applyToAddOns** | **boolean** | | [default to undefined]
28
28
  **applyToReservation** | **boolean** | | [default to undefined]
29
+ **applyToSessions** | **boolean** | | [default to undefined]
29
30
  **registrationId** | **string** | | [default to undefined]
30
31
  **registration** | [**BaseEventAttendee**](BaseEventAttendee.md) | | [default to undefined]
31
32
  **lineItem** | [**PaymentLineItem**](PaymentLineItem.md) | | [default to undefined]
@@ -62,6 +63,7 @@ const instance: Coupon = {
62
63
  applyToPassType,
63
64
  applyToAddOns,
64
65
  applyToReservation,
66
+ applyToSessions,
65
67
  registrationId,
66
68
  registration,
67
69
  lineItem,
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **supply** | **number** | | [default to undefined]
12
12
  **price** | **number** | | [default to undefined]
13
13
  **pricePerNight** | **boolean** | | [default to undefined]
14
+ **includedNights** | **number** | | [default to undefined]
14
15
  **sortOrder** | **number** | | [default to undefined]
15
16
  **imageId** | **string** | | [default to undefined]
16
17
  **image** | [**BaseImage**](BaseImage.md) | | [default to undefined]
@@ -39,6 +40,7 @@ const instance: EventAddOn = {
39
40
  supply,
40
41
  price,
41
42
  pricePerNight,
43
+ includedNights,
42
44
  sortOrder,
43
45
  imageId,
44
46
  image,
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **longDescription** | **string** | | [optional] [default to undefined]
11
11
  **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [default to undefined]
12
12
  **pricePerNight** | **boolean** | | [optional] [default to undefined]
13
+ **includedNights** | **number** | | [optional] [default to undefined]
13
14
  **supply** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
14
15
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
15
16
  **imageId** | **string** | | [optional] [default to undefined]
@@ -28,6 +29,7 @@ const instance: EventAddOnCreateInputs = {
28
29
  longDescription,
29
30
  price,
30
31
  pricePerNight,
32
+ includedNights,
31
33
  supply,
32
34
  sortOrder,
33
35
  imageId,
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **longDescription** | **string** | | [optional] [default to undefined]
11
11
  **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
12
12
  **pricePerNight** | **boolean** | | [optional] [default to undefined]
13
+ **includedNights** | **number** | | [optional] [default to undefined]
13
14
  **supply** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
14
15
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
15
16
  **imageId** | **string** | | [optional] [default to undefined]
@@ -28,6 +29,7 @@ const instance: EventAddOnUpdateInputs = {
28
29
  longDescription,
29
30
  price,
30
31
  pricePerNight,
32
+ includedNights,
31
33
  supply,
32
34
  sortOrder,
33
35
  imageId,
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
23
23
  **applyToPassType** | **boolean** | | [optional] [default to undefined]
24
24
  **applyToAddOns** | **boolean** | | [optional] [default to undefined]
25
25
  **applyToReservation** | **boolean** | | [optional] [default to undefined]
26
+ **applyToSessions** | **boolean** | | [optional] [default to undefined]
26
27
 
27
28
  ## Example
28
29
 
@@ -48,6 +49,7 @@ const instance: EventCouponCreateInputs = {
48
49
  applyToPassType,
49
50
  applyToAddOns,
50
51
  applyToReservation,
52
+ applyToSessions,
51
53
  };
52
54
  ```
53
55
 
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
23
23
  **applyToPassType** | **boolean** | | [optional] [default to undefined]
24
24
  **applyToAddOns** | **boolean** | | [optional] [default to undefined]
25
25
  **applyToReservation** | **boolean** | | [optional] [default to undefined]
26
+ **applyToSessions** | **boolean** | | [optional] [default to undefined]
26
27
 
27
28
  ## Example
28
29
 
@@ -48,6 +49,7 @@ const instance: EventCouponUpdateInputs = {
48
49
  applyToPassType,
49
50
  applyToAddOns,
50
51
  applyToReservation,
52
+ applyToSessions,
51
53
  };
52
54
  ```
53
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.28.0",
3
+ "version": "6.28.2",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {