@concord-consortium/lara-interactive-api 1.7.0 → 1.7.1-pre.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.
Files changed (3) hide show
  1. package/index-bundle.d.ts +3 -2
  2. package/index.js +2584 -2584
  3. package/package.json +1 -1
package/index-bundle.d.ts CHANGED
@@ -65,9 +65,10 @@ interface IHostModalSupport extends IHostFeatureSupport {
65
65
  lightbox?: boolean;
66
66
  alert?: boolean;
67
67
  }
68
- interface IHostFeatures extends Record<string, IHostFeatureSupport | undefined> {
68
+ interface IHostFeatures extends Record<string, IHostFeatureSupport | string | undefined> {
69
69
  modal?: IHostModalSupport;
70
70
  getFirebaseJwt?: IHostFeatureSupport;
71
+ domain?: string;
71
72
  }
72
73
  interface IRuntimeInitInteractive<InteractiveState = {}, AuthoredState = {}, GlobalInteractiveState = {}> extends IInteractiveStateProps<InteractiveState> {
73
74
  version: 1;
@@ -112,7 +113,7 @@ interface IAuthoringInitInteractive<AuthoredState = {}> {
112
113
  authoredState: AuthoredState | null;
113
114
  themeInfo: IThemeInfo;
114
115
  interactiveItemId: string;
115
- linkedInteractives: ILinkedInteractive[];
116
+ linkedInteractives?: ILinkedInteractive[];
116
117
  }
117
118
  interface IReportInitInteractive<InteractiveState = {}, AuthoredState = {}> {
118
119
  version: 1;