@vouchfor/embeds 0.0.0-experiment.899f364 → 0.0.0-experiment.8a05fac

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ declare class TrackingController implements ReactiveController {
10
10
  private _hasLoaded;
11
11
  private _answersViewed;
12
12
  private _streamedTime;
13
- private _streamedPrevTimestamp;
13
+ private _streamLatestTime;
14
14
  constructor(host: EmbedHost);
15
15
  private _findVouchId;
16
16
  private _createVisitor;
@@ -5,7 +5,7 @@ import type { Environment } from '../../utils/env';
5
5
  type EmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload' | 'autoplay' | 'controls'> & {
6
6
  env: Environment;
7
7
  apiKey: string;
8
- enableTracking?: boolean;
8
+ disableTracking?: boolean;
9
9
  trackingSource?: string;
10
10
  vouchId?: string;
11
11
  templateId?: string;
@@ -17,7 +17,7 @@ declare class Embed extends LitElement {
17
17
  templateId: EmbedProps['templateId'];
18
18
  env: EmbedProps['env'];
19
19
  apiKey: EmbedProps['apiKey'];
20
- enableTracking: EmbedProps['enableTracking'];
20
+ disableTracking: EmbedProps['disableTracking'];
21
21
  trackingSource: EmbedProps['trackingSource'];
22
22
  controls: EmbedProps['controls'];
23
23
  preload: EmbedProps['preload'];