@connectedxm/admin-sdk 6.28.1 → 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
  }
@@ -3482,6 +3483,7 @@ export interface Coupon {
3482
3483
  'applyToPassType': boolean;
3483
3484
  'applyToAddOns': boolean;
3484
3485
  'applyToReservation': boolean;
3486
+ 'applyToSessions': boolean;
3485
3487
  'registrationId': string | null;
3486
3488
  'registration': BaseEventAttendee | null;
3487
3489
  'lineItem': PaymentLineItem | null;
@@ -5024,6 +5026,7 @@ export interface EventCouponCreateInputs {
5024
5026
  'applyToPassType'?: boolean;
5025
5027
  'applyToAddOns'?: boolean;
5026
5028
  'applyToReservation'?: boolean;
5029
+ 'applyToSessions'?: boolean;
5027
5030
  }
5028
5031
  export interface EventCouponUpdateInputs {
5029
5032
  'code'?: string | null;
@@ -5044,6 +5047,7 @@ export interface EventCouponUpdateInputs {
5044
5047
  'applyToPassType'?: boolean;
5045
5048
  'applyToAddOns'?: boolean;
5046
5049
  'applyToReservation'?: boolean;
5050
+ 'applyToSessions'?: boolean;
5047
5051
  }
5048
5052
  export interface EventCreateInputs {
5049
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
  }
@@ -3251,6 +3252,7 @@ export interface Coupon {
3251
3252
  'applyToPassType': boolean;
3252
3253
  'applyToAddOns': boolean;
3253
3254
  'applyToReservation': boolean;
3255
+ 'applyToSessions': boolean;
3254
3256
  'registrationId': string | null;
3255
3257
  'registration': BaseEventAttendee | null;
3256
3258
  'lineItem': PaymentLineItem | null;
@@ -4551,6 +4553,7 @@ export interface EventCouponCreateInputs {
4551
4553
  'applyToPassType'?: boolean;
4552
4554
  'applyToAddOns'?: boolean;
4553
4555
  'applyToReservation'?: boolean;
4556
+ 'applyToSessions'?: boolean;
4554
4557
  }
4555
4558
  export interface EventCouponUpdateInputs {
4556
4559
  'code'?: string | null;
@@ -4571,6 +4574,7 @@ export interface EventCouponUpdateInputs {
4571
4574
  'applyToPassType'?: boolean;
4572
4575
  'applyToAddOns'?: boolean;
4573
4576
  'applyToReservation'?: boolean;
4577
+ 'applyToSessions'?: boolean;
4574
4578
  }
4575
4579
  export interface EventCreateInputs {
4576
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
  }
@@ -3251,6 +3252,7 @@ export interface Coupon {
3251
3252
  'applyToPassType': boolean;
3252
3253
  'applyToAddOns': boolean;
3253
3254
  'applyToReservation': boolean;
3255
+ 'applyToSessions': boolean;
3254
3256
  'registrationId': string | null;
3255
3257
  'registration': BaseEventAttendee | null;
3256
3258
  'lineItem': PaymentLineItem | null;
@@ -4551,6 +4553,7 @@ export interface EventCouponCreateInputs {
4551
4553
  'applyToPassType'?: boolean;
4552
4554
  'applyToAddOns'?: boolean;
4553
4555
  'applyToReservation'?: boolean;
4556
+ 'applyToSessions'?: boolean;
4554
4557
  }
4555
4558
  export interface EventCouponUpdateInputs {
4556
4559
  'code'?: string | null;
@@ -4571,6 +4574,7 @@ export interface EventCouponUpdateInputs {
4571
4574
  'applyToPassType'?: boolean;
4572
4575
  'applyToAddOns'?: boolean;
4573
4576
  'applyToReservation'?: boolean;
4577
+ 'applyToSessions'?: boolean;
4574
4578
  }
4575
4579
  export interface EventCreateInputs {
4576
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
  };
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,
@@ -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.1",
3
+ "version": "6.28.2",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {