react-covideo-embed 0.1.14 → 0.1.17
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.
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { InventoryItem } from 'lib/context';
|
|
2
|
-
export declare const noInventoryItemsMsg: import("react/jsx-runtime").JSX.Element;
|
|
3
2
|
type Props = {
|
|
4
3
|
onChangeVehicle: (item: InventoryItem) => void;
|
|
5
4
|
handleChangeVehicleButtonPress: () => void;
|
|
@@ -10,5 +9,5 @@ type Props = {
|
|
|
10
9
|
fetchSold?: boolean;
|
|
11
10
|
addingVehicle?: boolean;
|
|
12
11
|
};
|
|
13
|
-
export declare const VehicleSearch: ({ onChangeVehicle, handleChangeVehicleButtonPress, handleRemoveVehicleButtonPress, setAddingVehicle, selectedVin, placeholder, fetchSold, addingVehicle, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const VehicleSearch: ({ onChangeVehicle, handleChangeVehicleButtonPress, handleRemoveVehicleButtonPress, setAddingVehicle, selectedVin, placeholder, fetchSold, addingVehicle, }: Props) => import("react/jsx-runtime").JSX.Element | null;
|
|
14
13
|
export {};
|
package/build/index.d.ts
CHANGED
|
@@ -14,14 +14,16 @@ export declare enum Feature {
|
|
|
14
14
|
QUICKSHARE = "quickshare",
|
|
15
15
|
CTA = "CTA",
|
|
16
16
|
VOICEOVER = "voiceover",
|
|
17
|
-
REACTIONS = "reactions"
|
|
17
|
+
REACTIONS = "reactions",
|
|
18
|
+
UPGRADE_MESSAGE = "upgradeMessage"
|
|
18
19
|
}
|
|
19
|
-
export type FeatureType = 'insert' | 'recordScreen' | 'recordBoth' | 'recordCam' | 'upload' | 'trim' | 'merge' | 'wheelsTV' | 'voiceover' | 'quickshare' | 'folder' | 'landingPage' | 'CTA' | 'reactions';
|
|
20
|
+
export type FeatureType = 'insert' | 'recordScreen' | 'recordBoth' | 'recordCam' | 'upload' | 'trim' | 'merge' | 'wheelsTV' | 'voiceover' | 'quickshare' | 'folder' | 'landingPage' | 'CTA' | 'reactions' | 'upgradeMessage';
|
|
20
21
|
export declare enum Environment {
|
|
22
|
+
DEVELOPMENT = "development",
|
|
21
23
|
SANDBOX = "sandbox",
|
|
22
24
|
PRODUCTION = "production"
|
|
23
25
|
}
|
|
24
|
-
export type EnvironmentType = 'sandbox' | 'production';
|
|
26
|
+
export type EnvironmentType = 'development' | 'sandbox' | 'production';
|
|
25
27
|
export type ShareData = {
|
|
26
28
|
url: string;
|
|
27
29
|
thumbnail: string;
|