@connectedxm/admin-sdk 6.27.2 → 6.28.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
@@ -1248,6 +1248,7 @@ export interface BaseEventAddOn {
1248
1248
  'supply': number | null;
1249
1249
  'price': number;
1250
1250
  'pricePerNight': boolean;
1251
+ 'includedNights': number;
1251
1252
  'sortOrder': number;
1252
1253
  'imageId': string | null;
1253
1254
  'image': BaseImage | null;
@@ -4846,6 +4847,7 @@ export interface EventAddOn {
4846
4847
  'supply': number | null;
4847
4848
  'price': number;
4848
4849
  'pricePerNight': boolean;
4850
+ 'includedNights': number;
4849
4851
  'sortOrder': number;
4850
4852
  'imageId': string | null;
4851
4853
  'image': BaseImage | null;
@@ -4873,6 +4875,7 @@ export interface EventAddOnCreateInputs {
4873
4875
  'longDescription'?: string | null;
4874
4876
  'price': AdvertisementCreateInputsWeight | null;
4875
4877
  'pricePerNight'?: boolean;
4878
+ 'includedNights'?: number;
4876
4879
  'supply'?: AdvertisementCreateInputsWeight | null;
4877
4880
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4878
4881
  'imageId'?: string | null;
@@ -4901,6 +4904,7 @@ export interface EventAddOnUpdateInputs {
4901
4904
  'longDescription'?: string | null;
4902
4905
  'price'?: AdvertisementCreateInputsWeight | null;
4903
4906
  'pricePerNight'?: boolean;
4907
+ 'includedNights'?: number;
4904
4908
  'supply'?: AdvertisementCreateInputsWeight | null;
4905
4909
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4906
4910
  'imageId'?: string | null;
@@ -5811,6 +5815,8 @@ export interface EventSession {
5811
5815
  'event': BaseEvent;
5812
5816
  'speakers': Array<BaseEventSpeaker>;
5813
5817
  'meetingId': string | null;
5818
+ 'autoRefundEnabled': boolean;
5819
+ 'autoRefundPercentage': number | null;
5814
5820
  'meeting': BaseMeeting | null;
5815
5821
  'blocks': Array<BaseEventBlock> | null;
5816
5822
  'activationId': string | null;
@@ -5860,6 +5866,8 @@ export interface EventSessionCreateInputs {
5860
5866
  'allowQuickRegister'?: boolean;
5861
5867
  'limit'?: AdvertisementCreateInputsWeight | null;
5862
5868
  'price'?: AdvertisementCreateInputsWeight | null;
5869
+ 'autoRefundEnabled'?: boolean;
5870
+ 'autoRefundPercentage'?: number | null;
5863
5871
  'locationId'?: string | null;
5864
5872
  'roundName'?: string | null;
5865
5873
  'matchName'?: string | null;
@@ -6228,6 +6236,8 @@ export interface EventSessionUpdateInputs {
6228
6236
  'allowQuickRegister'?: boolean;
6229
6237
  'limit'?: AdvertisementCreateInputsWeight | null;
6230
6238
  'price'?: AdvertisementCreateInputsWeight | null;
6239
+ 'autoRefundEnabled'?: boolean;
6240
+ 'autoRefundPercentage'?: number | null;
6231
6241
  'locationId'?: string | null;
6232
6242
  'roundName'?: string | null;
6233
6243
  'matchName'?: string | null;
package/dist/api.d.ts CHANGED
@@ -1143,6 +1143,7 @@ export interface BaseEventAddOn {
1143
1143
  'supply': number | null;
1144
1144
  'price': number;
1145
1145
  'pricePerNight': boolean;
1146
+ 'includedNights': number;
1146
1147
  'sortOrder': number;
1147
1148
  'imageId': string | null;
1148
1149
  'image': BaseImage | null;
@@ -4388,6 +4389,7 @@ export interface EventAddOn {
4388
4389
  'supply': number | null;
4389
4390
  'price': number;
4390
4391
  'pricePerNight': boolean;
4392
+ 'includedNights': number;
4391
4393
  'sortOrder': number;
4392
4394
  'imageId': string | null;
4393
4395
  'image': BaseImage | null;
@@ -4413,6 +4415,7 @@ export interface EventAddOnCreateInputs {
4413
4415
  'longDescription'?: string | null;
4414
4416
  'price': AdvertisementCreateInputsWeight | null;
4415
4417
  'pricePerNight'?: boolean;
4418
+ 'includedNights'?: number;
4416
4419
  'supply'?: AdvertisementCreateInputsWeight | null;
4417
4420
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4418
4421
  'imageId'?: string | null;
@@ -4439,6 +4442,7 @@ export interface EventAddOnUpdateInputs {
4439
4442
  'longDescription'?: string | null;
4440
4443
  'price'?: AdvertisementCreateInputsWeight | null;
4441
4444
  'pricePerNight'?: boolean;
4445
+ 'includedNights'?: number;
4442
4446
  'supply'?: AdvertisementCreateInputsWeight | null;
4443
4447
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4444
4448
  'imageId'?: string | null;
@@ -5300,6 +5304,8 @@ export interface EventSession {
5300
5304
  'event': BaseEvent;
5301
5305
  'speakers': Array<BaseEventSpeaker>;
5302
5306
  'meetingId': string | null;
5307
+ 'autoRefundEnabled': boolean;
5308
+ 'autoRefundPercentage': number | null;
5303
5309
  'meeting': BaseMeeting | null;
5304
5310
  'blocks': Array<BaseEventBlock> | null;
5305
5311
  'activationId': string | null;
@@ -5343,6 +5349,8 @@ export interface EventSessionCreateInputs {
5343
5349
  'allowQuickRegister'?: boolean;
5344
5350
  'limit'?: AdvertisementCreateInputsWeight | null;
5345
5351
  'price'?: AdvertisementCreateInputsWeight | null;
5352
+ 'autoRefundEnabled'?: boolean;
5353
+ 'autoRefundPercentage'?: number | null;
5346
5354
  'locationId'?: string | null;
5347
5355
  'roundName'?: string | null;
5348
5356
  'matchName'?: string | null;
@@ -5700,6 +5708,8 @@ export interface EventSessionUpdateInputs {
5700
5708
  'allowQuickRegister'?: boolean;
5701
5709
  'limit'?: AdvertisementCreateInputsWeight | null;
5702
5710
  'price'?: AdvertisementCreateInputsWeight | null;
5711
+ 'autoRefundEnabled'?: boolean;
5712
+ 'autoRefundPercentage'?: number | null;
5703
5713
  'locationId'?: string | null;
5704
5714
  'roundName'?: string | null;
5705
5715
  'matchName'?: string | null;
package/dist/esm/api.d.ts CHANGED
@@ -1143,6 +1143,7 @@ export interface BaseEventAddOn {
1143
1143
  'supply': number | null;
1144
1144
  'price': number;
1145
1145
  'pricePerNight': boolean;
1146
+ 'includedNights': number;
1146
1147
  'sortOrder': number;
1147
1148
  'imageId': string | null;
1148
1149
  'image': BaseImage | null;
@@ -4388,6 +4389,7 @@ export interface EventAddOn {
4388
4389
  'supply': number | null;
4389
4390
  'price': number;
4390
4391
  'pricePerNight': boolean;
4392
+ 'includedNights': number;
4391
4393
  'sortOrder': number;
4392
4394
  'imageId': string | null;
4393
4395
  'image': BaseImage | null;
@@ -4413,6 +4415,7 @@ export interface EventAddOnCreateInputs {
4413
4415
  'longDescription'?: string | null;
4414
4416
  'price': AdvertisementCreateInputsWeight | null;
4415
4417
  'pricePerNight'?: boolean;
4418
+ 'includedNights'?: number;
4416
4419
  'supply'?: AdvertisementCreateInputsWeight | null;
4417
4420
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4418
4421
  'imageId'?: string | null;
@@ -4439,6 +4442,7 @@ export interface EventAddOnUpdateInputs {
4439
4442
  'longDescription'?: string | null;
4440
4443
  'price'?: AdvertisementCreateInputsWeight | null;
4441
4444
  'pricePerNight'?: boolean;
4445
+ 'includedNights'?: number;
4442
4446
  'supply'?: AdvertisementCreateInputsWeight | null;
4443
4447
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
4444
4448
  'imageId'?: string | null;
@@ -5300,6 +5304,8 @@ export interface EventSession {
5300
5304
  'event': BaseEvent;
5301
5305
  'speakers': Array<BaseEventSpeaker>;
5302
5306
  'meetingId': string | null;
5307
+ 'autoRefundEnabled': boolean;
5308
+ 'autoRefundPercentage': number | null;
5303
5309
  'meeting': BaseMeeting | null;
5304
5310
  'blocks': Array<BaseEventBlock> | null;
5305
5311
  'activationId': string | null;
@@ -5343,6 +5349,8 @@ export interface EventSessionCreateInputs {
5343
5349
  'allowQuickRegister'?: boolean;
5344
5350
  'limit'?: AdvertisementCreateInputsWeight | null;
5345
5351
  'price'?: AdvertisementCreateInputsWeight | null;
5352
+ 'autoRefundEnabled'?: boolean;
5353
+ 'autoRefundPercentage'?: number | null;
5346
5354
  'locationId'?: string | null;
5347
5355
  'roundName'?: string | null;
5348
5356
  'matchName'?: string | null;
@@ -5700,6 +5708,8 @@ export interface EventSessionUpdateInputs {
5700
5708
  'allowQuickRegister'?: boolean;
5701
5709
  'limit'?: AdvertisementCreateInputsWeight | null;
5702
5710
  'price'?: AdvertisementCreateInputsWeight | null;
5711
+ 'autoRefundEnabled'?: boolean;
5712
+ 'autoRefundPercentage'?: number | null;
5703
5713
  'locationId'?: string | null;
5704
5714
  'roundName'?: string | null;
5705
5715
  'matchName'?: string | null;
@@ -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,
@@ -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,
@@ -37,6 +37,8 @@ Name | Type | Description | Notes
37
37
  **event** | [**BaseEvent**](BaseEvent.md) | | [default to undefined]
38
38
  **speakers** | [**Array&lt;BaseEventSpeaker&gt;**](BaseEventSpeaker.md) | | [default to undefined]
39
39
  **meetingId** | **string** | | [default to undefined]
40
+ **autoRefundEnabled** | **boolean** | | [default to undefined]
41
+ **autoRefundPercentage** | **number** | | [default to undefined]
40
42
  **meeting** | [**BaseMeeting**](BaseMeeting.md) | | [default to undefined]
41
43
  **blocks** | [**Array&lt;BaseEventBlock&gt;**](BaseEventBlock.md) | | [default to undefined]
42
44
  **activationId** | **string** | | [default to undefined]
@@ -83,6 +85,8 @@ const instance: EventSession = {
83
85
  event,
84
86
  speakers,
85
87
  meetingId,
88
+ autoRefundEnabled,
89
+ autoRefundPercentage,
86
90
  meeting,
87
91
  blocks,
88
92
  activationId,
@@ -21,6 +21,8 @@ Name | Type | Description | Notes
21
21
  **allowQuickRegister** | **boolean** | | [optional] [default to undefined]
22
22
  **limit** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
23
23
  **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
24
+ **autoRefundEnabled** | **boolean** | | [optional] [default to undefined]
25
+ **autoRefundPercentage** | **number** | | [optional] [default to undefined]
24
26
  **locationId** | **string** | | [optional] [default to undefined]
25
27
  **roundName** | **string** | | [optional] [default to undefined]
26
28
  **matchName** | **string** | | [optional] [default to undefined]
@@ -54,6 +56,8 @@ const instance: EventSessionCreateInputs = {
54
56
  allowQuickRegister,
55
57
  limit,
56
58
  price,
59
+ autoRefundEnabled,
60
+ autoRefundPercentage,
57
61
  locationId,
58
62
  roundName,
59
63
  matchName,
@@ -21,6 +21,8 @@ Name | Type | Description | Notes
21
21
  **allowQuickRegister** | **boolean** | | [optional] [default to undefined]
22
22
  **limit** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
23
23
  **price** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
24
+ **autoRefundEnabled** | **boolean** | | [optional] [default to undefined]
25
+ **autoRefundPercentage** | **number** | | [optional] [default to undefined]
24
26
  **locationId** | **string** | | [optional] [default to undefined]
25
27
  **roundName** | **string** | | [optional] [default to undefined]
26
28
  **matchName** | **string** | | [optional] [default to undefined]
@@ -54,6 +56,8 @@ const instance: EventSessionUpdateInputs = {
54
56
  allowQuickRegister,
55
57
  limit,
56
58
  price,
59
+ autoRefundEnabled,
60
+ autoRefundPercentage,
57
61
  locationId,
58
62
  roundName,
59
63
  matchName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.27.2",
3
+ "version": "6.28.1",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {