@unisphere/genie-types 1.23.1 → 1.24.0

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/index.esm.js CHANGED
@@ -3182,7 +3182,7 @@ for (var COLLECTION_NAME in DOMIterables) {
3182
3182
 
3183
3183
  handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
3184
3184
 
3185
- const SUPPORTED_LAYOUT_TYPES = new Set(['cinema', 'focusContent', 'balanced', 'floatingCorner']);
3185
+ const SUPPORTED_LAYOUT_TYPES = new Set(['cinema', 'focusContent', 'balanced', 'floatingCorner', 'fullscreenContent']);
3186
3186
 
3187
3187
  const blockVisualContextSchema = {
3188
3188
  type: 'object',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unisphere/genie-types",
3
- "version": "1.23.1",
3
+ "version": "1.24.0",
4
4
  "author": "kaltura",
5
5
  "license": "AGPL-3.0",
6
6
  "repository": {
@@ -12,7 +12,7 @@ export interface SlotEntry {
12
12
  mount: SlotMount;
13
13
  mode: SlotMode;
14
14
  }
15
- export type LayoutType = 'cinema' | 'focusContent' | 'balanced' | 'floatingCorner';
15
+ export type LayoutType = 'cinema' | 'focusContent' | 'balanced' | 'floatingCorner' | 'fullscreenContent';
16
16
  export declare const SUPPORTED_LAYOUT_TYPES: Set<string>;
17
17
  export interface LayoutConfig {
18
18
  type: LayoutType;
@@ -20,11 +20,12 @@ export interface LayoutConfig {
20
20
  }
21
21
  export interface VisualBehavior {
22
22
  pauseAfterSpeaking?: boolean;
23
+ pauseImmediately?: boolean;
23
24
  }
24
25
  export interface VisualTypeConfig {
25
26
  behavior?: VisualBehavior;
26
27
  layout?: LayoutConfig;
27
- slots?: Record<SlotType, SlotConfig>;
28
+ slots?: Partial<Record<SlotType, SlotConfig>>;
28
29
  }
29
30
  export interface ResolvedCapabilities {
30
31
  layout?: LayoutConfig;