@imposium-hub/components 2.3.10-0 → 2.3.10-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.
@@ -74,7 +74,7 @@ export interface IImposiumAPI {
74
74
  getPlayerMetrics(storyId: string, start: number, end: number, alias: string): any;
75
75
  getSystemMetrics(storyId: string, start: number, end: number, step: number, alias: string): any;
76
76
  getOrganizations(page: number, itemsPerPage: number): Promise<any[]>;
77
- addOrganization(orgName: string): any;
77
+ addOrganization(orgName: string, enableCloudfront: boolean, defaultStory?: string): any;
78
78
  cancelExperiencePolling(): any;
79
79
  createCompositionAsset(storyId: string, compositionData: any, name?: string): Promise<any | Error>;
80
80
  createHTMLAsset(storyId: string, htmlData: any, name?: string): Promise<any | Error>;
@@ -74,7 +74,7 @@ export interface IImposiumAPI {
74
74
  getPlayerMetrics(storyId: string, start: number, end: number, alias: string): any;
75
75
  getSystemMetrics(storyId: string, start: number, end: number, step: number, alias: string): any;
76
76
  getOrganizations(page: number, itemsPerPage: number): Promise<any[]>;
77
- addOrganization(orgName: string): any;
77
+ addOrganization(orgName: string, enableCloudfront: boolean, defaultStory?: string): any;
78
78
  cancelExperiencePolling(): any;
79
79
  createCompositionAsset(storyId: string, compositionData: any, name?: string): Promise<any | Error>;
80
80
  createHTMLAsset(storyId: string, htmlData: any, name?: string): Promise<any | Error>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imposium-hub/components",
3
- "version": "2.3.10-0",
3
+ "version": "2.3.10-1",
4
4
  "description": "React & Typescript component / asset library for Imposium front-ends",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -123,7 +123,7 @@ export interface IImposiumAPI {
123
123
  getPlayerMetrics(storyId: string, start: number, end: number, alias: string);
124
124
  getSystemMetrics(storyId: string, start: number, end: number, step: number, alias: string);
125
125
  getOrganizations(page: number, itemsPerPage: number): Promise<any[]>;
126
- addOrganization(orgName: string);
126
+ addOrganization(orgName: string, enableCloudfront: boolean, defaultStory?: string);
127
127
  cancelExperiencePolling();
128
128
  createCompositionAsset(
129
129
  storyId: string,