react-covideo-embed 0.1.31 → 0.1.33

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,17 @@ export type WTVListParams = {
6
6
  ascOrder?: boolean;
7
7
  };
8
8
  export type WTVListItem = {
9
- animatedGifPath: string;
9
+ wtvId: number;
10
+ year: string;
10
11
  make: string;
11
12
  model: string;
12
- thumbnail: string;
13
- title: string;
14
- videoId: number;
15
- videoURL: string;
16
- year: number;
13
+ style: string;
14
+ trim: string;
15
+ wtvVideoId: string;
16
+ bodyStyle: string;
17
+ vehicleClass: string;
18
+ animatedGifPath: string;
19
+ createdAt: string;
17
20
  };
18
21
  export type WTVCopyParams = {
19
22
  title: string;
@@ -6,3 +6,4 @@ export declare const DEFAULT_FOLDER_NAMES: {
6
6
  VAULT: string;
7
7
  };
8
8
  export declare const COMPANY_FOLDER_ID = -1;
9
+ export declare const SHARED_FOLDER_PREFIX = "~~shared~~";
@@ -10,6 +10,7 @@ export interface Folder {
10
10
  folderId: number | string;
11
11
  name: string;
12
12
  isDeletable: boolean;
13
+ access?: string;
13
14
  }
14
15
  export interface SelectProps {
15
16
  label: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-covideo-embed",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
4
4
  "private": false,
5
5
  "description": "Covideo platform as an embeddable React component.",
6
6
  "main": "./build/index.js",