@connectedxm/admin 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/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/openapi.json +33 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -851,6 +851,7 @@ interface BaseEventAddOn {
|
|
|
851
851
|
supply: number | null;
|
|
852
852
|
price: number;
|
|
853
853
|
pricePerNight: boolean;
|
|
854
|
+
includedNights: number;
|
|
854
855
|
sortOrder: number;
|
|
855
856
|
imageId: string | null;
|
|
856
857
|
image: BaseImage | null;
|
|
@@ -2452,6 +2453,8 @@ interface EventSession extends BaseEventSession {
|
|
|
2452
2453
|
event: BaseEvent;
|
|
2453
2454
|
speakers: BaseEventSpeaker[];
|
|
2454
2455
|
meetingId: string | null;
|
|
2456
|
+
autoRefundEnabled: boolean;
|
|
2457
|
+
autoRefundPercentage: number | null;
|
|
2455
2458
|
meeting: BaseMeeting | null;
|
|
2456
2459
|
blocks: BaseEventBlock[] | null;
|
|
2457
2460
|
activationId: string | null;
|
|
@@ -5124,6 +5127,7 @@ interface EventAddOnCreateInputs {
|
|
|
5124
5127
|
longDescription?: string | null;
|
|
5125
5128
|
price: number | string | null;
|
|
5126
5129
|
pricePerNight?: boolean;
|
|
5130
|
+
includedNights?: number;
|
|
5127
5131
|
supply?: number | string | null;
|
|
5128
5132
|
sortOrder?: number | string | null;
|
|
5129
5133
|
imageId?: string | null;
|
|
@@ -5142,6 +5146,7 @@ interface EventAddOnUpdateInputs {
|
|
|
5142
5146
|
longDescription?: string | null;
|
|
5143
5147
|
price?: number | string | null;
|
|
5144
5148
|
pricePerNight?: boolean;
|
|
5149
|
+
includedNights?: number;
|
|
5145
5150
|
supply?: number | string | null;
|
|
5146
5151
|
sortOrder?: number | string | null;
|
|
5147
5152
|
imageId?: string | null;
|
|
@@ -5517,6 +5522,8 @@ interface EventSessionCreateInputs {
|
|
|
5517
5522
|
allowQuickRegister?: boolean;
|
|
5518
5523
|
limit?: number | string | null;
|
|
5519
5524
|
price?: number | string | null;
|
|
5525
|
+
autoRefundEnabled?: boolean;
|
|
5526
|
+
autoRefundPercentage?: number | null;
|
|
5520
5527
|
locationId?: string | null;
|
|
5521
5528
|
roundName?: string | null;
|
|
5522
5529
|
matchName?: string | null;
|
|
@@ -5558,6 +5565,8 @@ interface EventSessionUpdateInputs {
|
|
|
5558
5565
|
allowQuickRegister?: boolean;
|
|
5559
5566
|
limit?: number | string | null;
|
|
5560
5567
|
price?: number | string | null;
|
|
5568
|
+
autoRefundEnabled?: boolean;
|
|
5569
|
+
autoRefundPercentage?: number | null;
|
|
5561
5570
|
locationId?: string | null;
|
|
5562
5571
|
roundName?: string | null;
|
|
5563
5572
|
matchName?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -851,6 +851,7 @@ interface BaseEventAddOn {
|
|
|
851
851
|
supply: number | null;
|
|
852
852
|
price: number;
|
|
853
853
|
pricePerNight: boolean;
|
|
854
|
+
includedNights: number;
|
|
854
855
|
sortOrder: number;
|
|
855
856
|
imageId: string | null;
|
|
856
857
|
image: BaseImage | null;
|
|
@@ -2452,6 +2453,8 @@ interface EventSession extends BaseEventSession {
|
|
|
2452
2453
|
event: BaseEvent;
|
|
2453
2454
|
speakers: BaseEventSpeaker[];
|
|
2454
2455
|
meetingId: string | null;
|
|
2456
|
+
autoRefundEnabled: boolean;
|
|
2457
|
+
autoRefundPercentage: number | null;
|
|
2455
2458
|
meeting: BaseMeeting | null;
|
|
2456
2459
|
blocks: BaseEventBlock[] | null;
|
|
2457
2460
|
activationId: string | null;
|
|
@@ -5124,6 +5127,7 @@ interface EventAddOnCreateInputs {
|
|
|
5124
5127
|
longDescription?: string | null;
|
|
5125
5128
|
price: number | string | null;
|
|
5126
5129
|
pricePerNight?: boolean;
|
|
5130
|
+
includedNights?: number;
|
|
5127
5131
|
supply?: number | string | null;
|
|
5128
5132
|
sortOrder?: number | string | null;
|
|
5129
5133
|
imageId?: string | null;
|
|
@@ -5142,6 +5146,7 @@ interface EventAddOnUpdateInputs {
|
|
|
5142
5146
|
longDescription?: string | null;
|
|
5143
5147
|
price?: number | string | null;
|
|
5144
5148
|
pricePerNight?: boolean;
|
|
5149
|
+
includedNights?: number;
|
|
5145
5150
|
supply?: number | string | null;
|
|
5146
5151
|
sortOrder?: number | string | null;
|
|
5147
5152
|
imageId?: string | null;
|
|
@@ -5517,6 +5522,8 @@ interface EventSessionCreateInputs {
|
|
|
5517
5522
|
allowQuickRegister?: boolean;
|
|
5518
5523
|
limit?: number | string | null;
|
|
5519
5524
|
price?: number | string | null;
|
|
5525
|
+
autoRefundEnabled?: boolean;
|
|
5526
|
+
autoRefundPercentage?: number | null;
|
|
5520
5527
|
locationId?: string | null;
|
|
5521
5528
|
roundName?: string | null;
|
|
5522
5529
|
matchName?: string | null;
|
|
@@ -5558,6 +5565,8 @@ interface EventSessionUpdateInputs {
|
|
|
5558
5565
|
allowQuickRegister?: boolean;
|
|
5559
5566
|
limit?: number | string | null;
|
|
5560
5567
|
price?: number | string | null;
|
|
5568
|
+
autoRefundEnabled?: boolean;
|
|
5569
|
+
autoRefundPercentage?: number | null;
|
|
5561
5570
|
locationId?: string | null;
|
|
5562
5571
|
roundName?: string | null;
|
|
5563
5572
|
matchName?: string | null;
|
package/openapi.json
CHANGED
|
@@ -95880,6 +95880,9 @@
|
|
|
95880
95880
|
"pricePerNight": {
|
|
95881
95881
|
"type": "boolean"
|
|
95882
95882
|
},
|
|
95883
|
+
"includedNights": {
|
|
95884
|
+
"type": "number"
|
|
95885
|
+
},
|
|
95883
95886
|
"sortOrder": {
|
|
95884
95887
|
"type": "number"
|
|
95885
95888
|
},
|
|
@@ -95923,6 +95926,7 @@
|
|
|
95923
95926
|
"supply",
|
|
95924
95927
|
"price",
|
|
95925
95928
|
"pricePerNight",
|
|
95929
|
+
"includedNights",
|
|
95926
95930
|
"sortOrder",
|
|
95927
95931
|
"imageId",
|
|
95928
95932
|
"image",
|
|
@@ -102716,6 +102720,13 @@
|
|
|
102716
102720
|
"type": "string",
|
|
102717
102721
|
"nullable": true
|
|
102718
102722
|
},
|
|
102723
|
+
"autoRefundEnabled": {
|
|
102724
|
+
"type": "boolean"
|
|
102725
|
+
},
|
|
102726
|
+
"autoRefundPercentage": {
|
|
102727
|
+
"type": "number",
|
|
102728
|
+
"nullable": true
|
|
102729
|
+
},
|
|
102719
102730
|
"meeting": {
|
|
102720
102731
|
"allOf": [
|
|
102721
102732
|
{
|
|
@@ -102764,6 +102775,8 @@
|
|
|
102764
102775
|
"event",
|
|
102765
102776
|
"speakers",
|
|
102766
102777
|
"meetingId",
|
|
102778
|
+
"autoRefundEnabled",
|
|
102779
|
+
"autoRefundPercentage",
|
|
102767
102780
|
"meeting",
|
|
102768
102781
|
"blocks",
|
|
102769
102782
|
"activationId",
|
|
@@ -113877,6 +113890,9 @@
|
|
|
113877
113890
|
"pricePerNight": {
|
|
113878
113891
|
"type": "boolean"
|
|
113879
113892
|
},
|
|
113893
|
+
"includedNights": {
|
|
113894
|
+
"type": "number"
|
|
113895
|
+
},
|
|
113880
113896
|
"supply": {
|
|
113881
113897
|
"oneOf": [
|
|
113882
113898
|
{
|
|
@@ -113966,6 +113982,9 @@
|
|
|
113966
113982
|
"pricePerNight": {
|
|
113967
113983
|
"type": "boolean"
|
|
113968
113984
|
},
|
|
113985
|
+
"includedNights": {
|
|
113986
|
+
"type": "number"
|
|
113987
|
+
},
|
|
113969
113988
|
"supply": {
|
|
113970
113989
|
"oneOf": [
|
|
113971
113990
|
{
|
|
@@ -115630,6 +115649,13 @@
|
|
|
115630
115649
|
],
|
|
115631
115650
|
"nullable": true
|
|
115632
115651
|
},
|
|
115652
|
+
"autoRefundEnabled": {
|
|
115653
|
+
"type": "boolean"
|
|
115654
|
+
},
|
|
115655
|
+
"autoRefundPercentage": {
|
|
115656
|
+
"type": "number",
|
|
115657
|
+
"nullable": true
|
|
115658
|
+
},
|
|
115633
115659
|
"locationId": {
|
|
115634
115660
|
"type": "string",
|
|
115635
115661
|
"nullable": true
|
|
@@ -115801,6 +115827,13 @@
|
|
|
115801
115827
|
],
|
|
115802
115828
|
"nullable": true
|
|
115803
115829
|
},
|
|
115830
|
+
"autoRefundEnabled": {
|
|
115831
|
+
"type": "boolean"
|
|
115832
|
+
},
|
|
115833
|
+
"autoRefundPercentage": {
|
|
115834
|
+
"type": "number",
|
|
115835
|
+
"nullable": true
|
|
115836
|
+
},
|
|
115804
115837
|
"locationId": {
|
|
115805
115838
|
"type": "string",
|
|
115806
115839
|
"nullable": true
|