@vouchfor/embeds 0.0.0-experiment.0dd23b5 → 0.0.0-experiment.14fd0e7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,20 +0,0 @@
1
- import type { Embed } from '..';
2
- import type { TemplateInstance } from '@vouchfor/canvas-video';
3
- import type { ReactiveControllerHost } from 'lit';
4
- type EmbedHost = ReactiveControllerHost & Embed;
5
- declare class FetcherController {
6
- host: EmbedHost;
7
- private _fetching;
8
- private _vouch?;
9
- private _template?;
10
- set fetching(value: boolean);
11
- get fetching(): boolean;
12
- set vouch(value: import("@vouchfor/media-player/dist/src/components/MediaPlayer/types").Vouch | undefined);
13
- get vouch(): import("@vouchfor/media-player/dist/src/components/MediaPlayer/types").Vouch | undefined;
14
- set template(value: TemplateInstance | undefined);
15
- get template(): TemplateInstance | undefined;
16
- private getVouch;
17
- private getTemplate;
18
- constructor(host: EmbedHost);
19
- }
20
- export { FetcherController };
@@ -1,18 +0,0 @@
1
- type Environment = 'dev' | 'staging' | 'prod';
2
- type GetEnvUrlsReturn = {
3
- marketingUrl: string;
4
- videoUrl: string;
5
- publicApiUrl: string;
6
- embedApiUrl: string;
7
- publicRecorderUrl: string;
8
- };
9
- declare const marketingUrl = "https://vouchfor.com";
10
- declare const devEmbedApiUrl = "http://localhost:6060/v1";
11
- declare const stagingEmbedApiUrl = "https://embed-staging.vouchfor.com/v1";
12
- declare const prodEmbedApiUrl = "https://embed.vouchfor.com/v1";
13
- declare const devPublicRecorderUrl = "https://dev.vouchfor.com";
14
- declare const stagingPublicRecorderUrl = "https://staging.vouchfor.com";
15
- declare const prodPublicRecorderUrl = "https://app.vouchfor.com";
16
- declare function getEnvUrls(env: Environment): GetEnvUrlsReturn;
17
- export { marketingUrl, devEmbedApiUrl, stagingEmbedApiUrl, prodEmbedApiUrl, devPublicRecorderUrl, stagingPublicRecorderUrl, prodPublicRecorderUrl, getEnvUrls };
18
- export type { Environment };
File without changes
File without changes