@vouchfor/embeds 0.0.0-experiment.d900f80 → 0.0.0-experiment.dce2e9b

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,6 +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
+ trackingSource?: string;
8
9
  vouchId?: string;
9
10
  templateId?: string;
10
11
  };
@@ -15,6 +16,7 @@ declare class Embed extends LitElement {
15
16
  templateId: EmbedProps['templateId'];
16
17
  env: EmbedProps['env'];
17
18
  apiKey: EmbedProps['apiKey'];
19
+ trackingSource: EmbedProps['trackingSource'];
18
20
  controls: EmbedProps['controls'];
19
21
  preload: EmbedProps['preload'];
20
22
  autoplay: EmbedProps['autoplay'];
@@ -46,7 +48,7 @@ declare class Embed extends LitElement {
46
48
  play(): void;
47
49
  pause(): void;
48
50
  setScene(index: number): void;
49
- render(): import("lit-html").TemplateResult<1>;
51
+ render(): import("lit").TemplateResult<1>;
50
52
  }
51
53
  declare global {
52
54
  interface HTMLElementTagNameMap {