react-covideo-embed 1.0.49 → 1.0.51

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.
@@ -6,14 +6,25 @@ export interface ILesaItem {
6
6
  model: string;
7
7
  vehicleCondition: VEHICLE_CONDITION;
8
8
  video: Video | null;
9
+ thumbnailUrl?: string;
10
+ lesaVehicleId: number;
11
+ lesaDealerId: number;
12
+ title: string;
13
+ vin: string;
14
+ updatedAt: string;
15
+ createdAt: string;
9
16
  }
10
17
  declare enum VEHICLE_CONDITION {
11
18
  NEW = "New",
12
- USED = "Used"
19
+ USED = "Used",
20
+ CERTIFIED = "Certified"
13
21
  }
14
22
  interface Video {
15
23
  url: string;
16
- fileName: string;
24
+ filename: string;
25
+ uuid: string | null;
26
+ createdAt: string | null;
27
+ captionsUrl: string;
17
28
  }
18
29
  type LesaParams = {
19
30
  limit: number;
@@ -1,6 +1,7 @@
1
1
  type LesaParams = {
2
2
  url: string;
3
3
  fileName: string;
4
+ lesaVehicleId: number;
4
5
  };
5
6
  export declare const useLesaVideosCopyMutation: ({ onSuccesCallback, }: {
6
7
  onSuccesCallback: () => void;
@@ -4,5 +4,6 @@ export declare enum AutomotiveRole {
4
4
  SERVICE_ADVISOR = "2",
5
5
  SERVICE_MANAGER = "3",
6
6
  SALESPERSON = "4",
7
- SALES_MANAGER = "5"
7
+ SALES_MANAGER = "5",
8
+ BDC = "6"
8
9
  }
@@ -0,0 +1,2 @@
1
+ export default CdkSmallLogoActive;
2
+ declare const CdkSmallLogoActive: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
@@ -0,0 +1,2 @@
1
+ export default CovideoSmallLogoActive;
2
+ declare const CovideoSmallLogoActive: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-covideo-embed",
3
- "version": "1.0.49",
3
+ "version": "1.0.51",
4
4
  "private": false,
5
5
  "description": "Covideo platform as an embeddable React component.",
6
6
  "main": "./build/index.js",