react-covideo-embed 1.0.90 → 1.0.91
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.
- package/build/index.js +519 -519
- package/build/index.js.map +1 -1
- package/build/react-covideo-embed.esm.js +5625 -5600
- package/build/react-covideo-embed.esm.js.map +1 -1
- package/dist/app/pages/quickVideos/QuickVideos.d.ts +1 -0
- package/dist/index.d.ts +7 -2
- package/dist/lib/context/ConfigurationContext.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const QuickVideos: () => import("react/jsx-runtime").JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -37,9 +37,10 @@ export declare enum Environment {
|
|
|
37
37
|
export declare enum Flow {
|
|
38
38
|
FULL = "full",
|
|
39
39
|
RECORD_CAMERA_ONLY = "recordCameraOnly",
|
|
40
|
-
PREVIEW_VIDEO = "previewVideo"
|
|
40
|
+
PREVIEW_VIDEO = "previewVideo",
|
|
41
|
+
QUICK_VIDEOS_ONLY = "quickVideosOnly"
|
|
41
42
|
}
|
|
42
|
-
export type FlowType = 'full' | 'recordCameraOnly' | 'previewVideo';
|
|
43
|
+
export type FlowType = 'full' | 'recordCameraOnly' | 'previewVideo' | 'quickVideosOnly';
|
|
43
44
|
export type EnvironmentType = 'development' | 'sandbox' | 'staging' | 'production';
|
|
44
45
|
export type ShareData = {
|
|
45
46
|
url: string;
|
|
@@ -82,6 +83,10 @@ export type CovideoEmbedProps = {
|
|
|
82
83
|
hideFeatures?: Feature[] | FeatureType[];
|
|
83
84
|
/** Which product flow to use */
|
|
84
85
|
flow?: Flow | FlowType;
|
|
86
|
+
/**
|
|
87
|
+
* Lead opportunity ID required for the Quick Videos Only flow.
|
|
88
|
+
*/
|
|
89
|
+
leadOpportunityId?: string;
|
|
85
90
|
/** Optional preview video id that triggers internal navigation to /preview/:videoId. */
|
|
86
91
|
previewVideoId?: string;
|
|
87
92
|
/** Enables analytics tracking in the player. */
|