react-covideo-embed 0.1.32 → 0.1.34

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.
@@ -0,0 +1 @@
1
+ export declare const LesaTV: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ type Props = {
2
+ page: number;
3
+ size: number;
4
+ count: number;
5
+ };
6
+ export declare const PageInfo: ({ page, size, count }: Props) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,6 @@
1
+ type Props = {
2
+ prevSearch: string;
3
+ handleSearch: (searchTerm: string) => void;
4
+ };
5
+ export declare const Search: ({ prevSearch, handleSearch }: Props) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,2 @@
1
+ export { Search } from './Search';
2
+ export { PageInfo } from './PageInfo';
@@ -0,0 +1,10 @@
1
+ export declare const FAILED_VIDEOS_PROCESSING_ID = 2;
2
+ type Props = {
3
+ thumbnail: string;
4
+ duration: number;
5
+ videoId: string;
6
+ emailStatus?: string;
7
+ processing?: number;
8
+ };
9
+ export declare const VideoItemThumbnail: ({ thumbnail, duration, videoId, emailStatus, processing, }: Props) => import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -1,2 +1,2 @@
1
1
  import * as React from 'react';
2
- export declare const RecordScreen: React.MemoExoticComponent<({ onRecordingStart, onRecordingEnd, onUpload, uploadDisabled, onRecordingUrlGeneration, }: any) => import("react/jsx-runtime").JSX.Element>;
2
+ export declare const RecordScreen: React.MemoExoticComponent<({ onRecordingStart, onRecordingEnd, uploadDisabled, onRecordingUrlGeneration, }: any) => import("react/jsx-runtime").JSX.Element>;
package/build/index.d.ts CHANGED
@@ -16,9 +16,10 @@ export declare enum Feature {
16
16
  VOICEOVER = "voiceover",
17
17
  REACTIONS = "reactions",
18
18
  AI_ASSIST = "aiAssist",
19
- UPGRADE_MESSAGE = "upgradeMessage"
19
+ UPGRADE_MESSAGE = "upgradeMessage",
20
+ LESA_TV = "lesaTV"
20
21
  }
21
- export type FeatureType = 'insert' | 'recordScreen' | 'recordBoth' | 'recordCam' | 'upload' | 'trim' | 'merge' | 'wheelsTV' | 'voiceover' | 'quickshare' | 'folder' | 'landingPage' | 'CTA' | 'reactions' | 'aiAssist' | 'upgradeMessage';
22
+ export type FeatureType = 'insert' | 'recordScreen' | 'recordBoth' | 'recordCam' | 'upload' | 'trim' | 'merge' | 'wheelsTV' | 'voiceover' | 'quickshare' | 'folder' | 'landingPage' | 'CTA' | 'reactions' | 'aiAssist' | 'upgradeMessage' | 'lesaTV';
22
23
  export declare enum Environment {
23
24
  DEVELOPMENT = "development",
24
25
  SANDBOX = "sandbox",