@connectedxm/admin-sdk 7.2.5 → 7.2.6

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
@@ -1519,6 +1519,7 @@ export interface BaseEventSession {
1519
1519
  'tracks': Array<BaseEventTrack>;
1520
1520
  'nonSession': boolean;
1521
1521
  'visibility': EventSessionVisibility;
1522
+ 'featured': boolean;
1522
1523
  'location': BaseEventSessionLocation | null;
1523
1524
  'registrationEnabled': boolean;
1524
1525
  'price': number | null;
@@ -5808,6 +5809,7 @@ export interface EventSession {
5808
5809
  'tracks': Array<BaseEventTrack>;
5809
5810
  'nonSession': boolean;
5810
5811
  'visibility': EventSessionVisibility;
5812
+ 'featured': boolean;
5811
5813
  'location': BaseEventSessionLocation | null;
5812
5814
  'registrationEnabled': boolean;
5813
5815
  'price': number | null;
@@ -5870,6 +5872,7 @@ export interface EventSessionCreateInputs {
5870
5872
  'nonSession'?: boolean;
5871
5873
  'imageId'?: string | null;
5872
5874
  'visibility'?: EventSessionVisibility;
5875
+ 'featured'?: boolean;
5873
5876
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5874
5877
  'registrationEnabled'?: boolean;
5875
5878
  'onsiteRegistration'?: boolean;
@@ -6234,6 +6237,7 @@ export interface EventSessionUpdateInputs {
6234
6237
  'nonSession'?: boolean;
6235
6238
  'imageId'?: string | null;
6236
6239
  'visibility'?: EventSessionVisibility;
6240
+ 'featured'?: boolean;
6237
6241
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
6238
6242
  'registrationEnabled'?: boolean;
6239
6243
  'onsiteRegistration'?: boolean;
package/dist/api.d.ts CHANGED
@@ -1400,6 +1400,7 @@ export interface BaseEventSession {
1400
1400
  'tracks': Array<BaseEventTrack>;
1401
1401
  'nonSession': boolean;
1402
1402
  'visibility': EventSessionVisibility;
1403
+ 'featured': boolean;
1403
1404
  'location': BaseEventSessionLocation | null;
1404
1405
  'registrationEnabled': boolean;
1405
1406
  'price': number | null;
@@ -5300,6 +5301,7 @@ export interface EventSession {
5300
5301
  'tracks': Array<BaseEventTrack>;
5301
5302
  'nonSession': boolean;
5302
5303
  'visibility': EventSessionVisibility;
5304
+ 'featured': boolean;
5303
5305
  'location': BaseEventSessionLocation | null;
5304
5306
  'registrationEnabled': boolean;
5305
5307
  'price': number | null;
@@ -5356,6 +5358,7 @@ export interface EventSessionCreateInputs {
5356
5358
  'nonSession'?: boolean;
5357
5359
  'imageId'?: string | null;
5358
5360
  'visibility'?: EventSessionVisibility;
5361
+ 'featured'?: boolean;
5359
5362
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5360
5363
  'registrationEnabled'?: boolean;
5361
5364
  'onsiteRegistration'?: boolean;
@@ -5709,6 +5712,7 @@ export interface EventSessionUpdateInputs {
5709
5712
  'nonSession'?: boolean;
5710
5713
  'imageId'?: string | null;
5711
5714
  'visibility'?: EventSessionVisibility;
5715
+ 'featured'?: boolean;
5712
5716
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5713
5717
  'registrationEnabled'?: boolean;
5714
5718
  'onsiteRegistration'?: boolean;
package/dist/esm/api.d.ts CHANGED
@@ -1400,6 +1400,7 @@ export interface BaseEventSession {
1400
1400
  'tracks': Array<BaseEventTrack>;
1401
1401
  'nonSession': boolean;
1402
1402
  'visibility': EventSessionVisibility;
1403
+ 'featured': boolean;
1403
1404
  'location': BaseEventSessionLocation | null;
1404
1405
  'registrationEnabled': boolean;
1405
1406
  'price': number | null;
@@ -5300,6 +5301,7 @@ export interface EventSession {
5300
5301
  'tracks': Array<BaseEventTrack>;
5301
5302
  'nonSession': boolean;
5302
5303
  'visibility': EventSessionVisibility;
5304
+ 'featured': boolean;
5303
5305
  'location': BaseEventSessionLocation | null;
5304
5306
  'registrationEnabled': boolean;
5305
5307
  'price': number | null;
@@ -5356,6 +5358,7 @@ export interface EventSessionCreateInputs {
5356
5358
  'nonSession'?: boolean;
5357
5359
  'imageId'?: string | null;
5358
5360
  'visibility'?: EventSessionVisibility;
5361
+ 'featured'?: boolean;
5359
5362
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5360
5363
  'registrationEnabled'?: boolean;
5361
5364
  'onsiteRegistration'?: boolean;
@@ -5709,6 +5712,7 @@ export interface EventSessionUpdateInputs {
5709
5712
  'nonSession'?: boolean;
5710
5713
  'imageId'?: string | null;
5711
5714
  'visibility'?: EventSessionVisibility;
5715
+ 'featured'?: boolean;
5712
5716
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5713
5717
  'registrationEnabled'?: boolean;
5714
5718
  'onsiteRegistration'?: boolean;
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
20
20
  **tracks** | [**Array&lt;BaseEventTrack&gt;**](BaseEventTrack.md) | | [default to undefined]
21
21
  **nonSession** | **boolean** | | [default to undefined]
22
22
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [default to undefined]
23
+ **featured** | **boolean** | | [default to undefined]
23
24
  **location** | [**BaseEventSessionLocation**](BaseEventSessionLocation.md) | | [default to undefined]
24
25
  **registrationEnabled** | **boolean** | | [default to undefined]
25
26
  **price** | **number** | | [default to undefined]
@@ -52,6 +53,7 @@ const instance: BaseEventSession = {
52
53
  tracks,
53
54
  nonSession,
54
55
  visibility,
56
+ featured,
55
57
  location,
56
58
  registrationEnabled,
57
59
  price,
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
20
20
  **tracks** | [**Array&lt;BaseEventTrack&gt;**](BaseEventTrack.md) | | [default to undefined]
21
21
  **nonSession** | **boolean** | | [default to undefined]
22
22
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [default to undefined]
23
+ **featured** | **boolean** | | [default to undefined]
23
24
  **location** | [**BaseEventSessionLocation**](BaseEventSessionLocation.md) | | [default to undefined]
24
25
  **registrationEnabled** | **boolean** | | [default to undefined]
25
26
  **price** | **number** | | [default to undefined]
@@ -68,6 +69,7 @@ const instance: EventSession = {
68
69
  tracks,
69
70
  nonSession,
70
71
  visibility,
72
+ featured,
71
73
  location,
72
74
  registrationEnabled,
73
75
  price,
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **nonSession** | **boolean** | | [optional] [default to undefined]
16
16
  **imageId** | **string** | | [optional] [default to undefined]
17
17
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [optional] [default to undefined]
18
+ **featured** | **boolean** | | [optional] [default to undefined]
18
19
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
19
20
  **registrationEnabled** | **boolean** | | [optional] [default to undefined]
20
21
  **onsiteRegistration** | **boolean** | | [optional] [default to undefined]
@@ -50,6 +51,7 @@ const instance: EventSessionCreateInputs = {
50
51
  nonSession,
51
52
  imageId,
52
53
  visibility,
54
+ featured,
53
55
  sortOrder,
54
56
  registrationEnabled,
55
57
  onsiteRegistration,
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **nonSession** | **boolean** | | [optional] [default to undefined]
16
16
  **imageId** | **string** | | [optional] [default to undefined]
17
17
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [optional] [default to undefined]
18
+ **featured** | **boolean** | | [optional] [default to undefined]
18
19
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
19
20
  **registrationEnabled** | **boolean** | | [optional] [default to undefined]
20
21
  **onsiteRegistration** | **boolean** | | [optional] [default to undefined]
@@ -50,6 +51,7 @@ const instance: EventSessionUpdateInputs = {
50
51
  nonSession,
51
52
  imageId,
52
53
  visibility,
54
+ featured,
53
55
  sortOrder,
54
56
  registrationEnabled,
55
57
  onsiteRegistration,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "7.2.5",
3
+ "version": "7.2.6",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {