@connectedxm/client 8.1.0 → 8.1.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.ts +16 -16
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -864,22 +864,10 @@ interface BaseSession {
|
|
|
864
864
|
eventId: string;
|
|
865
865
|
taxCode: string | null;
|
|
866
866
|
taxIncluded: boolean;
|
|
867
|
+
autoRefundEnabled: boolean;
|
|
868
|
+
autoRefundPercentage: number;
|
|
867
869
|
blocks: BaseBlock[];
|
|
868
870
|
}
|
|
869
|
-
interface BaseEventSessionTime {
|
|
870
|
-
id: string;
|
|
871
|
-
name: string;
|
|
872
|
-
description: string | null;
|
|
873
|
-
startTime: string;
|
|
874
|
-
speakers: BaseSpeaker[];
|
|
875
|
-
}
|
|
876
|
-
interface EventSessionTime extends BaseEventSessionTime {
|
|
877
|
-
}
|
|
878
|
-
interface SessionPrice {
|
|
879
|
-
id: string;
|
|
880
|
-
passTypeId: string;
|
|
881
|
-
price: number;
|
|
882
|
-
}
|
|
883
871
|
interface Session extends BaseSession {
|
|
884
872
|
longDescription: string | null;
|
|
885
873
|
prices?: SessionPrice[];
|
|
@@ -892,8 +880,6 @@ interface Session extends BaseSession {
|
|
|
892
880
|
}[];
|
|
893
881
|
meeting: BaseMeeting | null;
|
|
894
882
|
streams: BaseStreamInput[];
|
|
895
|
-
autoRefundEnabled: boolean;
|
|
896
|
-
autoRefundPercentage: number;
|
|
897
883
|
surveys: BaseSurvey[];
|
|
898
884
|
activation: BaseEventActivation | null;
|
|
899
885
|
times: BaseEventSessionTime[];
|
|
@@ -901,6 +887,20 @@ interface Session extends BaseSession {
|
|
|
901
887
|
sections: number;
|
|
902
888
|
};
|
|
903
889
|
}
|
|
890
|
+
interface BaseEventSessionTime {
|
|
891
|
+
id: string;
|
|
892
|
+
name: string;
|
|
893
|
+
description: string | null;
|
|
894
|
+
startTime: string;
|
|
895
|
+
speakers: BaseSpeaker[];
|
|
896
|
+
}
|
|
897
|
+
interface EventSessionTime extends BaseEventSessionTime {
|
|
898
|
+
}
|
|
899
|
+
interface SessionPrice {
|
|
900
|
+
id: string;
|
|
901
|
+
passTypeId: string;
|
|
902
|
+
price: number;
|
|
903
|
+
}
|
|
904
904
|
interface BaseBlock {
|
|
905
905
|
id: string;
|
|
906
906
|
name: string;
|