@connectedxm/client 8.1.0 → 8.1.2

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +18 -16
  2. 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;
@@ -2940,6 +2940,7 @@ interface EventConfig {
2940
2940
  height: number;
2941
2941
  } | null;
2942
2942
  pricePerNight: boolean;
2943
+ includedNights: number;
2943
2944
  allowedPassTypesIds: string[];
2944
2945
  allowedTiersIds: string[];
2945
2946
  disallowedTiersIds: string[];
@@ -3000,6 +3001,7 @@ interface EventConfig {
3000
3001
  HAS_SESSIONS_STEP: boolean;
3001
3002
  SESSIONS: {
3002
3003
  id: string;
3004
+ slug: string;
3003
3005
  name: string;
3004
3006
  description: string;
3005
3007
  price: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "8.1.0",
3
+ "version": "8.1.2",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",