@connectedxm/client 8.0.12 → 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 -14
- 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[];
|
|
@@ -899,6 +887,20 @@ interface Session extends BaseSession {
|
|
|
899
887
|
sections: number;
|
|
900
888
|
};
|
|
901
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
|
+
}
|
|
902
904
|
interface BaseBlock {
|
|
903
905
|
id: string;
|
|
904
906
|
name: string;
|