@clickview/online 0.0.7-rc.2 → 0.0.7-rc.3

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.
@@ -23,7 +23,7 @@ export declare const ArrayHelper: {
23
23
  * @param arr array of values
24
24
  * @param value value to be added or removed.
25
25
  */
26
- addOrRemove<T_13 = import("react").Key>(arr: T_13[], value: T_13): T_13[];
26
+ addOrRemove<T_13 = import("react").ReactText>(arr: T_13[], value: T_13): T_13[];
27
27
  /**
28
28
  * This is the same addOrRemove function above, except it doesn't mutate the array in the argument
29
29
  * and returns a branch new array.
@@ -5,6 +5,6 @@ export declare const TextHelper: {
5
5
  escapeRegExp(str: string): string;
6
6
  slugify(str: string): string;
7
7
  linkifyText(text: string, options?: ObjectHash): string;
8
- isEqual(str1: import("react").Key, str2: import("react").Key): boolean;
8
+ isEqual(str1: import("react").ReactText, str2: import("react").ReactText): boolean;
9
9
  toTitleCase(str: string): string;
10
10
  };
@@ -3,7 +3,7 @@ import { ClassificationType } from "../../enums/ClassificationType";
3
3
  export interface Classification extends BaseObject {
4
4
  presentationId: string;
5
5
  parentIds: string[];
6
- subjectIds: string[];
6
+ backboneClassificationIds: string[];
7
7
  type: ClassificationType;
8
8
  emphasize?: boolean;
9
9
  slug: string;
@@ -1,5 +1,5 @@
1
1
  export interface PresentationAudience {
2
- levelIds: string[];
2
+ backboneAudienceIds: string[];
3
3
  masterId: string;
4
4
  name: string;
5
5
  presentationId: string;
@@ -4,7 +4,7 @@ export interface Subject extends BaseObject {
4
4
  banner?: Banner;
5
5
  thumbnail?: Thumbnail;
6
6
  children?: Subject[];
7
- subjectIds: string[];
7
+ backboneClassificationIds: string[];
8
8
  playlists?: PlaylistCollection;
9
9
  videos?: VideoCollection;
10
10
  series?: SeriesCollection;