@connectedxm/admin-sdk 6.27.0 → 6.27.1

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
@@ -1490,6 +1490,7 @@ export interface BaseEventSession {
1490
1490
  'startTime': string;
1491
1491
  'endTime': string;
1492
1492
  'registrationEnd'?: string;
1493
+ 'onsiteRegistration': boolean;
1493
1494
  'allowQuickRegister': boolean;
1494
1495
  'tracks': Array<BaseEventTrack>;
1495
1496
  'nonSession': boolean;
@@ -5787,6 +5788,7 @@ export interface EventSession {
5787
5788
  'startTime': string;
5788
5789
  'endTime': string;
5789
5790
  'registrationEnd'?: string;
5791
+ 'onsiteRegistration': boolean;
5790
5792
  'allowQuickRegister': boolean;
5791
5793
  'tracks': Array<BaseEventTrack>;
5792
5794
  'nonSession': boolean;
@@ -5852,6 +5854,7 @@ export interface EventSessionCreateInputs {
5852
5854
  'visibility'?: EventSessionVisibility;
5853
5855
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5854
5856
  'registrationEnabled'?: boolean;
5857
+ 'onsiteRegistration'?: boolean;
5855
5858
  'allowQuickRegister'?: boolean;
5856
5859
  'limit'?: AdvertisementCreateInputsWeight | null;
5857
5860
  'price'?: AdvertisementCreateInputsWeight | null;
@@ -6214,6 +6217,7 @@ export interface EventSessionUpdateInputs {
6214
6217
  'visibility'?: EventSessionVisibility;
6215
6218
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
6216
6219
  'registrationEnabled'?: boolean;
6220
+ 'onsiteRegistration'?: boolean;
6217
6221
  'allowQuickRegister'?: boolean;
6218
6222
  'limit'?: AdvertisementCreateInputsWeight | null;
6219
6223
  'price'?: AdvertisementCreateInputsWeight | null;
package/dist/api.d.ts CHANGED
@@ -1373,6 +1373,7 @@ export interface BaseEventSession {
1373
1373
  'startTime': string;
1374
1374
  'endTime': string;
1375
1375
  'registrationEnd'?: string;
1376
+ 'onsiteRegistration': boolean;
1376
1377
  'allowQuickRegister': boolean;
1377
1378
  'tracks': Array<BaseEventTrack>;
1378
1379
  'nonSession': boolean;
@@ -5276,6 +5277,7 @@ export interface EventSession {
5276
5277
  'startTime': string;
5277
5278
  'endTime': string;
5278
5279
  'registrationEnd'?: string;
5280
+ 'onsiteRegistration': boolean;
5279
5281
  'allowQuickRegister': boolean;
5280
5282
  'tracks': Array<BaseEventTrack>;
5281
5283
  'nonSession': boolean;
@@ -5335,6 +5337,7 @@ export interface EventSessionCreateInputs {
5335
5337
  'visibility'?: EventSessionVisibility;
5336
5338
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5337
5339
  'registrationEnabled'?: boolean;
5340
+ 'onsiteRegistration'?: boolean;
5338
5341
  'allowQuickRegister'?: boolean;
5339
5342
  'limit'?: AdvertisementCreateInputsWeight | null;
5340
5343
  'price'?: AdvertisementCreateInputsWeight | null;
@@ -5686,6 +5689,7 @@ export interface EventSessionUpdateInputs {
5686
5689
  'visibility'?: EventSessionVisibility;
5687
5690
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5688
5691
  'registrationEnabled'?: boolean;
5692
+ 'onsiteRegistration'?: boolean;
5689
5693
  'allowQuickRegister'?: boolean;
5690
5694
  'limit'?: AdvertisementCreateInputsWeight | null;
5691
5695
  'price'?: AdvertisementCreateInputsWeight | null;
package/dist/esm/api.d.ts CHANGED
@@ -1373,6 +1373,7 @@ export interface BaseEventSession {
1373
1373
  'startTime': string;
1374
1374
  'endTime': string;
1375
1375
  'registrationEnd'?: string;
1376
+ 'onsiteRegistration': boolean;
1376
1377
  'allowQuickRegister': boolean;
1377
1378
  'tracks': Array<BaseEventTrack>;
1378
1379
  'nonSession': boolean;
@@ -5276,6 +5277,7 @@ export interface EventSession {
5276
5277
  'startTime': string;
5277
5278
  'endTime': string;
5278
5279
  'registrationEnd'?: string;
5280
+ 'onsiteRegistration': boolean;
5279
5281
  'allowQuickRegister': boolean;
5280
5282
  'tracks': Array<BaseEventTrack>;
5281
5283
  'nonSession': boolean;
@@ -5335,6 +5337,7 @@ export interface EventSessionCreateInputs {
5335
5337
  'visibility'?: EventSessionVisibility;
5336
5338
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5337
5339
  'registrationEnabled'?: boolean;
5340
+ 'onsiteRegistration'?: boolean;
5338
5341
  'allowQuickRegister'?: boolean;
5339
5342
  'limit'?: AdvertisementCreateInputsWeight | null;
5340
5343
  'price'?: AdvertisementCreateInputsWeight | null;
@@ -5686,6 +5689,7 @@ export interface EventSessionUpdateInputs {
5686
5689
  'visibility'?: EventSessionVisibility;
5687
5690
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5688
5691
  'registrationEnabled'?: boolean;
5692
+ 'onsiteRegistration'?: boolean;
5689
5693
  'allowQuickRegister'?: boolean;
5690
5694
  'limit'?: AdvertisementCreateInputsWeight | null;
5691
5695
  'price'?: AdvertisementCreateInputsWeight | null;
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **startTime** | **string** | | [default to undefined]
16
16
  **endTime** | **string** | | [default to undefined]
17
17
  **registrationEnd** | **string** | | [optional] [default to undefined]
18
+ **onsiteRegistration** | **boolean** | | [default to undefined]
18
19
  **allowQuickRegister** | **boolean** | | [default to undefined]
19
20
  **tracks** | [**Array&lt;BaseEventTrack&gt;**](BaseEventTrack.md) | | [default to undefined]
20
21
  **nonSession** | **boolean** | | [default to undefined]
@@ -45,6 +46,7 @@ const instance: BaseEventSession = {
45
46
  startTime,
46
47
  endTime,
47
48
  registrationEnd,
49
+ onsiteRegistration,
48
50
  allowQuickRegister,
49
51
  tracks,
50
52
  nonSession,
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **startTime** | **string** | | [default to undefined]
16
16
  **endTime** | **string** | | [default to undefined]
17
17
  **registrationEnd** | **string** | | [optional] [default to undefined]
18
+ **onsiteRegistration** | **boolean** | | [default to undefined]
18
19
  **allowQuickRegister** | **boolean** | | [default to undefined]
19
20
  **tracks** | [**Array&lt;BaseEventTrack&gt;**](BaseEventTrack.md) | | [default to undefined]
20
21
  **nonSession** | **boolean** | | [default to undefined]
@@ -59,6 +60,7 @@ const instance: EventSession = {
59
60
  startTime,
60
61
  endTime,
61
62
  registrationEnd,
63
+ onsiteRegistration,
62
64
  allowQuickRegister,
63
65
  tracks,
64
66
  nonSession,
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
17
17
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [optional] [default to undefined]
18
18
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
19
19
  **registrationEnabled** | **boolean** | | [optional] [default to undefined]
20
+ **onsiteRegistration** | **boolean** | | [optional] [default to undefined]
20
21
  **allowQuickRegister** | **boolean** | | [optional] [default to undefined]
21
22
  **limit** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
22
23
  **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
@@ -49,6 +50,7 @@ const instance: EventSessionCreateInputs = {
49
50
  visibility,
50
51
  sortOrder,
51
52
  registrationEnabled,
53
+ onsiteRegistration,
52
54
  allowQuickRegister,
53
55
  limit,
54
56
  price,
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
17
17
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [optional] [default to undefined]
18
18
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
19
19
  **registrationEnabled** | **boolean** | | [optional] [default to undefined]
20
+ **onsiteRegistration** | **boolean** | | [optional] [default to undefined]
20
21
  **allowQuickRegister** | **boolean** | | [optional] [default to undefined]
21
22
  **limit** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
22
23
  **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
@@ -49,6 +50,7 @@ const instance: EventSessionUpdateInputs = {
49
50
  visibility,
50
51
  sortOrder,
51
52
  registrationEnabled,
53
+ onsiteRegistration,
52
54
  allowQuickRegister,
53
55
  limit,
54
56
  price,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.27.0",
3
+ "version": "6.27.1",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {