@sprucelabs/heartwood-view-controllers 125.0.27 → 126.0.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.
@@ -1,4 +1,4 @@
1
- import { CachedValue, Device, PowerBehaviorOptions, TheaterSettingValueTypes, TheatreSettingName } from '../types/heartwood.types';
1
+ import { CachedValue, Device, SubmitFeedbackOptions, PowerBehaviorOptions, TheaterSettingValueTypes, TheatreSettingName } from '../types/heartwood.types';
2
2
  import MockAudioController from './MockAudioController';
3
3
  export default class SpyDevice implements Device {
4
4
  lastCommand?: string;
@@ -11,6 +11,7 @@ export default class SpyDevice implements Device {
11
11
  private kioskSettings;
12
12
  private brightness;
13
13
  lastPowerBehaviorOptions?: PowerBehaviorOptions;
14
+ lastFeedbackOptions?: SubmitFeedbackOptions;
14
15
  setCachedValue(key: string, value: CachedValue): void;
15
16
  openUrl(url: string): void;
16
17
  getCachedValue(key: string): CachedValue;
@@ -24,6 +25,7 @@ export default class SpyDevice implements Device {
24
25
  turnTorchOff(): void;
25
26
  AudioController(audioFileUrl: string): Promise<MockAudioController>;
26
27
  setPowerBehavior(options: PowerBehaviorOptions): void;
28
+ submitFeedback(options: SubmitFeedbackOptions): void;
27
29
  }
28
30
  interface TrackedCommand {
29
31
  command: string;
@@ -70,4 +70,7 @@ export default class SpyDevice {
70
70
  setPowerBehavior(options) {
71
71
  this.lastPowerBehaviorOptions = options;
72
72
  }
73
+ submitFeedback(options) {
74
+ this.lastFeedbackOptions = options;
75
+ }
73
76
  }
@@ -267,6 +267,7 @@ export type StatusIndicatorStatus = NonNullable<StatusIndicator['status']>;
267
267
  export type TalkingSprucebot = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebot;
268
268
  export type NavigationRoute = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.NavigationRoute;
269
269
  export type LayoutStyle = NonNullable<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.SkillViewLayout['style']>;
270
+ export type Video = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Video;
270
271
  export type LayoutColumn = Card[];
271
272
  export type ListColumnWidth = NonNullable<List['columnWidths']>[number];
272
273
  export type DragAndDropListSortHandler = NonNullable<List['onDragAndDropSort']>;
@@ -518,11 +519,19 @@ export interface Device {
518
519
  sendCommand(command: string, payload?: Record<string, any>): void;
519
520
  turnTorchOn(brightness?: number): void;
520
521
  turnTorchOff(): void;
522
+ submitFeedback(options: SubmitFeedbackOptions): void;
521
523
  setTheatreSetting<N extends TheatreSettingName>(name: N, value: TheaterSettingValueTypes[N]): void;
522
524
  getTheatreSetting<N extends TheatreSettingName>(name: N): Promise<TheaterSettingValueTypes[N] | null>;
523
525
  AudioController(audioFileUrl: string): Promise<AudioController>;
524
526
  setPowerBehavior(options: PowerBehaviorOptions): void;
525
527
  }
528
+ export interface SubmitFeedbackOptions {
529
+ feedback: string;
530
+ context?: Record<string, any>;
531
+ fromPhone?: string;
532
+ fromEmail?: string;
533
+ fromPersonId?: string;
534
+ }
526
535
  export type AudioControllerStatus = 'pending' | 'stopped' | 'playing' | 'paused';
527
536
  export interface AudioController {
528
537
  play(): void;
@@ -1,4 +1,4 @@
1
- import { CachedValue, Device, PowerBehaviorOptions, TheaterSettingValueTypes, TheatreSettingName } from '../types/heartwood.types';
1
+ import { CachedValue, Device, SubmitFeedbackOptions, PowerBehaviorOptions, TheaterSettingValueTypes, TheatreSettingName } from '../types/heartwood.types';
2
2
  import MockAudioController from './MockAudioController';
3
3
  export default class SpyDevice implements Device {
4
4
  lastCommand?: string;
@@ -11,6 +11,7 @@ export default class SpyDevice implements Device {
11
11
  private kioskSettings;
12
12
  private brightness;
13
13
  lastPowerBehaviorOptions?: PowerBehaviorOptions;
14
+ lastFeedbackOptions?: SubmitFeedbackOptions;
14
15
  setCachedValue(key: string, value: CachedValue): void;
15
16
  openUrl(url: string): void;
16
17
  getCachedValue(key: string): CachedValue;
@@ -24,6 +25,7 @@ export default class SpyDevice implements Device {
24
25
  turnTorchOff(): void;
25
26
  AudioController(audioFileUrl: string): Promise<MockAudioController>;
26
27
  setPowerBehavior(options: PowerBehaviorOptions): void;
28
+ submitFeedback(options: SubmitFeedbackOptions): void;
27
29
  }
28
30
  interface TrackedCommand {
29
31
  command: string;
@@ -62,5 +62,8 @@ class SpyDevice {
62
62
  setPowerBehavior(options) {
63
63
  this.lastPowerBehaviorOptions = options;
64
64
  }
65
+ submitFeedback(options) {
66
+ this.lastFeedbackOptions = options;
67
+ }
65
68
  }
66
69
  exports.default = SpyDevice;
@@ -267,6 +267,7 @@ export type StatusIndicatorStatus = NonNullable<StatusIndicator['status']>;
267
267
  export type TalkingSprucebot = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebot;
268
268
  export type NavigationRoute = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.NavigationRoute;
269
269
  export type LayoutStyle = NonNullable<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.SkillViewLayout['style']>;
270
+ export type Video = SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Video;
270
271
  export type LayoutColumn = Card[];
271
272
  export type ListColumnWidth = NonNullable<List['columnWidths']>[number];
272
273
  export type DragAndDropListSortHandler = NonNullable<List['onDragAndDropSort']>;
@@ -518,11 +519,19 @@ export interface Device {
518
519
  sendCommand(command: string, payload?: Record<string, any>): void;
519
520
  turnTorchOn(brightness?: number): void;
520
521
  turnTorchOff(): void;
522
+ submitFeedback(options: SubmitFeedbackOptions): void;
521
523
  setTheatreSetting<N extends TheatreSettingName>(name: N, value: TheaterSettingValueTypes[N]): void;
522
524
  getTheatreSetting<N extends TheatreSettingName>(name: N): Promise<TheaterSettingValueTypes[N] | null>;
523
525
  AudioController(audioFileUrl: string): Promise<AudioController>;
524
526
  setPowerBehavior(options: PowerBehaviorOptions): void;
525
527
  }
528
+ export interface SubmitFeedbackOptions {
529
+ feedback: string;
530
+ context?: Record<string, any>;
531
+ fromPhone?: string;
532
+ fromEmail?: string;
533
+ fromPersonId?: string;
534
+ }
526
535
  export type AudioControllerStatus = 'pending' | 'stopped' | 'playing' | 'paused';
527
536
  export interface AudioController {
528
537
  play(): void;
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "sideEffects": false,
14
14
  "license": "MIT",
15
15
  "description": "All the power of Heartwood in one, convenient package.",
16
- "version": "125.0.27",
16
+ "version": "126.0.0",
17
17
  "skill": {
18
18
  "namespace": "HeartwoodViewControllers",
19
19
  "commandOverrides": {