react-covideo-embed 1.0.28-sandbox.0 → 1.0.29

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/README.md CHANGED
@@ -58,7 +58,8 @@ Explore the capabilities of react-covideo-embed through our [Demo Project](https
58
58
  - **Parameters**:
59
59
  - `shareData`: Object containing the URL and HTML of the inserted video.
60
60
  - `url`: `string` - The URL of the inserted video.
61
- - `thumbnail`: `string` - The URL of the thumbnail of the inserted video.
61
+ - `thumbnail`: `string` - The HTML of the thumbnail of the inserted video.
62
+ - `image`: `string` - The URL of the thumbnail of the inserted video.
62
63
  - `html`: `string` - The HTML representation of the inserted video.
63
64
  - `token`: `string` - The auth token used to fetch the shareData.
64
65
 
package/build/index.d.ts CHANGED
@@ -26,12 +26,14 @@ export type FeatureType = 'insert' | 'recordScreen' | 'recordBoth' | 'recordCam'
26
26
  export declare enum Environment {
27
27
  DEVELOPMENT = "development",
28
28
  SANDBOX = "sandbox",
29
+ STAGING = "staging",
29
30
  PRODUCTION = "production"
30
31
  }
31
- export type EnvironmentType = 'development' | 'sandbox' | 'production';
32
+ export type EnvironmentType = 'development' | 'sandbox' | 'staging' | 'production';
32
33
  export type ShareData = {
33
34
  url: string;
34
35
  thumbnail: string;
36
+ image: string;
35
37
  html: string;
36
38
  token: string;
37
39
  };