@connectedxm/admin-sdk 7.2.4 → 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;
@@ -1575,8 +1576,6 @@ export interface BaseEventSessionQuestion {
1575
1576
  'sortOrder': number;
1576
1577
  'featured': boolean;
1577
1578
  'choices': Array<BaseEventSessionQuestionChoice>;
1578
- 'price': number | null;
1579
- 'supply': number | null;
1580
1579
  }
1581
1580
 
1582
1581
 
@@ -5810,6 +5809,7 @@ export interface EventSession {
5810
5809
  'tracks': Array<BaseEventTrack>;
5811
5810
  'nonSession': boolean;
5812
5811
  'visibility': EventSessionVisibility;
5812
+ 'featured': boolean;
5813
5813
  'location': BaseEventSessionLocation | null;
5814
5814
  'registrationEnabled': boolean;
5815
5815
  'price': number | null;
@@ -5872,6 +5872,7 @@ export interface EventSessionCreateInputs {
5872
5872
  'nonSession'?: boolean;
5873
5873
  'imageId'?: string | null;
5874
5874
  'visibility'?: EventSessionVisibility;
5875
+ 'featured'?: boolean;
5875
5876
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5876
5877
  'registrationEnabled'?: boolean;
5877
5878
  'onsiteRegistration'?: boolean;
@@ -5968,8 +5969,6 @@ export interface EventSessionQuestion {
5968
5969
  'sortOrder': number;
5969
5970
  'featured': boolean;
5970
5971
  'choices': Array<BaseEventSessionQuestionChoice>;
5971
- 'price': number | null;
5972
- 'supply': number | null;
5973
5972
  'sections': Array<BaseEventSessionSectionQuestion>;
5974
5973
  'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
5975
5974
  'dashboardVisibility': boolean;
@@ -6055,8 +6054,6 @@ export interface EventSessionQuestionCreateInputs {
6055
6054
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
6056
6055
  'featured'?: boolean;
6057
6056
  'choices'?: Array<string> | null;
6058
- 'price'?: AdvertisementCreateInputsWeight | null;
6059
- 'supply'?: AdvertisementCreateInputsWeight | null;
6060
6057
  'searchListId'?: string | null;
6061
6058
  'masked'?: boolean;
6062
6059
  }
@@ -6132,8 +6129,6 @@ export interface EventSessionQuestionUpdateInputs {
6132
6129
  'locationOption'?: LocationQuestionOption | null;
6133
6130
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
6134
6131
  'featured'?: boolean;
6135
- 'price'?: AdvertisementCreateInputsWeight | null;
6136
- 'supply'?: AdvertisementCreateInputsWeight | null;
6137
6132
  'searchListId'?: string | null;
6138
6133
  }
6139
6134
 
@@ -6242,6 +6237,7 @@ export interface EventSessionUpdateInputs {
6242
6237
  'nonSession'?: boolean;
6243
6238
  'imageId'?: string | null;
6244
6239
  'visibility'?: EventSessionVisibility;
6240
+ 'featured'?: boolean;
6245
6241
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
6246
6242
  'registrationEnabled'?: boolean;
6247
6243
  'onsiteRegistration'?: boolean;
@@ -12279,8 +12275,6 @@ export interface RoundSessionQuestion {
12279
12275
  'sortOrder': number;
12280
12276
  'featured': boolean;
12281
12277
  'choices': Array<BaseEventSessionQuestionChoice>;
12282
- 'price': number | null;
12283
- 'supply': number | null;
12284
12278
  'sections': Array<BaseEventSessionSectionQuestion>;
12285
12279
  'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
12286
12280
  'dashboardVisibility': 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;
@@ -1452,8 +1453,6 @@ export interface BaseEventSessionQuestion {
1452
1453
  'sortOrder': number;
1453
1454
  'featured': boolean;
1454
1455
  'choices': Array<BaseEventSessionQuestionChoice>;
1455
- 'price': number | null;
1456
- 'supply': number | null;
1457
1456
  }
1458
1457
  export interface BaseEventSessionQuestionChoice {
1459
1458
  'id': string;
@@ -5302,6 +5301,7 @@ export interface EventSession {
5302
5301
  'tracks': Array<BaseEventTrack>;
5303
5302
  'nonSession': boolean;
5304
5303
  'visibility': EventSessionVisibility;
5304
+ 'featured': boolean;
5305
5305
  'location': BaseEventSessionLocation | null;
5306
5306
  'registrationEnabled': boolean;
5307
5307
  'price': number | null;
@@ -5358,6 +5358,7 @@ export interface EventSessionCreateInputs {
5358
5358
  'nonSession'?: boolean;
5359
5359
  'imageId'?: string | null;
5360
5360
  'visibility'?: EventSessionVisibility;
5361
+ 'featured'?: boolean;
5361
5362
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5362
5363
  'registrationEnabled'?: boolean;
5363
5364
  'onsiteRegistration'?: boolean;
@@ -5452,8 +5453,6 @@ export interface EventSessionQuestion {
5452
5453
  'sortOrder': number;
5453
5454
  'featured': boolean;
5454
5455
  'choices': Array<BaseEventSessionQuestionChoice>;
5455
- 'price': number | null;
5456
- 'supply': number | null;
5457
5456
  'sections': Array<BaseEventSessionSectionQuestion>;
5458
5457
  'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
5459
5458
  'dashboardVisibility': boolean;
@@ -5537,8 +5536,6 @@ export interface EventSessionQuestionCreateInputs {
5537
5536
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5538
5537
  'featured'?: boolean;
5539
5538
  'choices'?: Array<string> | null;
5540
- 'price'?: AdvertisementCreateInputsWeight | null;
5541
- 'supply'?: AdvertisementCreateInputsWeight | null;
5542
5539
  'searchListId'?: string | null;
5543
5540
  'masked'?: boolean;
5544
5541
  }
@@ -5609,8 +5606,6 @@ export interface EventSessionQuestionUpdateInputs {
5609
5606
  'locationOption'?: LocationQuestionOption | null;
5610
5607
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5611
5608
  'featured'?: boolean;
5612
- 'price'?: AdvertisementCreateInputsWeight | null;
5613
- 'supply'?: AdvertisementCreateInputsWeight | null;
5614
5609
  'searchListId'?: string | null;
5615
5610
  }
5616
5611
  export interface EventSessionSection {
@@ -5717,6 +5712,7 @@ export interface EventSessionUpdateInputs {
5717
5712
  'nonSession'?: boolean;
5718
5713
  'imageId'?: string | null;
5719
5714
  'visibility'?: EventSessionVisibility;
5715
+ 'featured'?: boolean;
5720
5716
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5721
5717
  'registrationEnabled'?: boolean;
5722
5718
  'onsiteRegistration'?: boolean;
@@ -10888,8 +10884,6 @@ export interface RoundSessionQuestion {
10888
10884
  'sortOrder': number;
10889
10885
  'featured': boolean;
10890
10886
  'choices': Array<BaseEventSessionQuestionChoice>;
10891
- 'price': number | null;
10892
- 'supply': number | null;
10893
10887
  'sections': Array<BaseEventSessionSectionQuestion>;
10894
10888
  'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
10895
10889
  'dashboardVisibility': 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;
@@ -1452,8 +1453,6 @@ export interface BaseEventSessionQuestion {
1452
1453
  'sortOrder': number;
1453
1454
  'featured': boolean;
1454
1455
  'choices': Array<BaseEventSessionQuestionChoice>;
1455
- 'price': number | null;
1456
- 'supply': number | null;
1457
1456
  }
1458
1457
  export interface BaseEventSessionQuestionChoice {
1459
1458
  'id': string;
@@ -5302,6 +5301,7 @@ export interface EventSession {
5302
5301
  'tracks': Array<BaseEventTrack>;
5303
5302
  'nonSession': boolean;
5304
5303
  'visibility': EventSessionVisibility;
5304
+ 'featured': boolean;
5305
5305
  'location': BaseEventSessionLocation | null;
5306
5306
  'registrationEnabled': boolean;
5307
5307
  'price': number | null;
@@ -5358,6 +5358,7 @@ export interface EventSessionCreateInputs {
5358
5358
  'nonSession'?: boolean;
5359
5359
  'imageId'?: string | null;
5360
5360
  'visibility'?: EventSessionVisibility;
5361
+ 'featured'?: boolean;
5361
5362
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5362
5363
  'registrationEnabled'?: boolean;
5363
5364
  'onsiteRegistration'?: boolean;
@@ -5452,8 +5453,6 @@ export interface EventSessionQuestion {
5452
5453
  'sortOrder': number;
5453
5454
  'featured': boolean;
5454
5455
  'choices': Array<BaseEventSessionQuestionChoice>;
5455
- 'price': number | null;
5456
- 'supply': number | null;
5457
5456
  'sections': Array<BaseEventSessionSectionQuestion>;
5458
5457
  'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
5459
5458
  'dashboardVisibility': boolean;
@@ -5537,8 +5536,6 @@ export interface EventSessionQuestionCreateInputs {
5537
5536
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5538
5537
  'featured'?: boolean;
5539
5538
  'choices'?: Array<string> | null;
5540
- 'price'?: AdvertisementCreateInputsWeight | null;
5541
- 'supply'?: AdvertisementCreateInputsWeight | null;
5542
5539
  'searchListId'?: string | null;
5543
5540
  'masked'?: boolean;
5544
5541
  }
@@ -5609,8 +5606,6 @@ export interface EventSessionQuestionUpdateInputs {
5609
5606
  'locationOption'?: LocationQuestionOption | null;
5610
5607
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5611
5608
  'featured'?: boolean;
5612
- 'price'?: AdvertisementCreateInputsWeight | null;
5613
- 'supply'?: AdvertisementCreateInputsWeight | null;
5614
5609
  'searchListId'?: string | null;
5615
5610
  }
5616
5611
  export interface EventSessionSection {
@@ -5717,6 +5712,7 @@ export interface EventSessionUpdateInputs {
5717
5712
  'nonSession'?: boolean;
5718
5713
  'imageId'?: string | null;
5719
5714
  'visibility'?: EventSessionVisibility;
5715
+ 'featured'?: boolean;
5720
5716
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5721
5717
  'registrationEnabled'?: boolean;
5722
5718
  'onsiteRegistration'?: boolean;
@@ -10888,8 +10884,6 @@ export interface RoundSessionQuestion {
10888
10884
  'sortOrder': number;
10889
10885
  'featured': boolean;
10890
10886
  'choices': Array<BaseEventSessionQuestionChoice>;
10891
- 'price': number | null;
10892
- 'supply': number | null;
10893
10887
  'sections': Array<BaseEventSessionSectionQuestion>;
10894
10888
  'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
10895
10889
  'dashboardVisibility': 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,
@@ -26,8 +26,6 @@ Name | Type | Description | Notes
26
26
  **sortOrder** | **number** | | [default to undefined]
27
27
  **featured** | **boolean** | | [default to undefined]
28
28
  **choices** | [**Array&lt;BaseEventSessionQuestionChoice&gt;**](BaseEventSessionQuestionChoice.md) | | [default to undefined]
29
- **price** | **number** | | [default to undefined]
30
- **supply** | **number** | | [default to undefined]
31
29
 
32
30
  ## Example
33
31
 
@@ -56,8 +54,6 @@ const instance: BaseEventSessionQuestion = {
56
54
  sortOrder,
57
55
  featured,
58
56
  choices,
59
- price,
60
- supply,
61
57
  };
62
58
  ```
63
59
 
@@ -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,
@@ -26,8 +26,6 @@ Name | Type | Description | Notes
26
26
  **sortOrder** | **number** | | [default to undefined]
27
27
  **featured** | **boolean** | | [default to undefined]
28
28
  **choices** | [**Array&lt;BaseEventSessionQuestionChoice&gt;**](BaseEventSessionQuestionChoice.md) | | [default to undefined]
29
- **price** | **number** | | [default to undefined]
30
- **supply** | **number** | | [default to undefined]
31
29
  **sections** | [**Array&lt;BaseEventSessionSectionQuestion&gt;**](BaseEventSessionSectionQuestion.md) | | [default to undefined]
32
30
  **subQuestionOf** | [**Array&lt;EventSessionQuestionChoiceSubQuestion&gt;**](EventSessionQuestionChoiceSubQuestion.md) | | [default to undefined]
33
31
  **dashboardVisibility** | **boolean** | | [default to undefined]
@@ -62,8 +60,6 @@ const instance: EventSessionQuestion = {
62
60
  sortOrder,
63
61
  featured,
64
62
  choices,
65
- price,
66
- supply,
67
63
  sections,
68
64
  subQuestionOf,
69
65
  dashboardVisibility,
@@ -26,8 +26,6 @@ Name | Type | Description | Notes
26
26
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
27
27
  **featured** | **boolean** | | [optional] [default to undefined]
28
28
  **choices** | **Array&lt;string&gt;** | | [optional] [default to undefined]
29
- **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
30
- **supply** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
31
29
  **searchListId** | **string** | | [optional] [default to undefined]
32
30
  **masked** | **boolean** | | [optional] [default to undefined]
33
31
 
@@ -58,8 +56,6 @@ const instance: EventSessionQuestionCreateInputs = {
58
56
  sortOrder,
59
57
  featured,
60
58
  choices,
61
- price,
62
- supply,
63
59
  searchListId,
64
60
  masked,
65
61
  };
@@ -23,8 +23,6 @@ Name | Type | Description | Notes
23
23
  **locationOption** | [**LocationQuestionOption**](LocationQuestionOption.md) | | [optional] [default to undefined]
24
24
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
25
25
  **featured** | **boolean** | | [optional] [default to undefined]
26
- **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
27
- **supply** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
28
26
  **searchListId** | **string** | | [optional] [default to undefined]
29
27
 
30
28
  ## Example
@@ -51,8 +49,6 @@ const instance: EventSessionQuestionUpdateInputs = {
51
49
  locationOption,
52
50
  sortOrder,
53
51
  featured,
54
- price,
55
- supply,
56
52
  searchListId,
57
53
  };
58
54
  ```
@@ -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,
@@ -26,8 +26,6 @@ Name | Type | Description | Notes
26
26
  **sortOrder** | **number** | | [default to undefined]
27
27
  **featured** | **boolean** | | [default to undefined]
28
28
  **choices** | [**Array&lt;BaseEventSessionQuestionChoice&gt;**](BaseEventSessionQuestionChoice.md) | | [default to undefined]
29
- **price** | **number** | | [default to undefined]
30
- **supply** | **number** | | [default to undefined]
31
29
  **sections** | [**Array&lt;BaseEventSessionSectionQuestion&gt;**](BaseEventSessionSectionQuestion.md) | | [default to undefined]
32
30
  **subQuestionOf** | [**Array&lt;EventSessionQuestionChoiceSubQuestion&gt;**](EventSessionQuestionChoiceSubQuestion.md) | | [default to undefined]
33
31
  **dashboardVisibility** | **boolean** | | [default to undefined]
@@ -64,8 +62,6 @@ const instance: RoundSessionQuestion = {
64
62
  sortOrder,
65
63
  featured,
66
64
  choices,
67
- price,
68
- supply,
69
65
  sections,
70
66
  subQuestionOf,
71
67
  dashboardVisibility,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "7.2.4",
3
+ "version": "7.2.6",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {