gearboxdownloadmodal 5.0.78 → 5.0.80

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.
@@ -24,6 +24,7 @@ interface CardProps {
24
24
  disabled: boolean;
25
25
  user: any;
26
26
  setSafariCopyLink: any;
27
+ isTest?: boolean;
27
28
  }
28
29
  declare const Card: FC<CardProps>;
29
30
  export default Card;
@@ -17,6 +17,7 @@ interface CardSectionProps {
17
17
  getDownloadCount: any;
18
18
  disabled: any;
19
19
  setSafariCopyLink: any;
20
+ isTest?: boolean;
20
21
  }
21
22
  declare const CardSection: FC<CardSectionProps>;
22
23
  export default CardSection;
@@ -12,6 +12,9 @@ interface TopBarProps {
12
12
  disabled: boolean;
13
13
  creditDownload: any;
14
14
  api: any;
15
+ user: any;
16
+ isTest?: boolean;
17
+ setIsTest?: any;
15
18
  }
16
19
  declare const TopBar: FC<TopBarProps>;
17
20
  export default TopBar;
@@ -11,6 +11,9 @@ interface TopBarInfoProps {
11
11
  disabled: boolean;
12
12
  creditDownload: any;
13
13
  api: string;
14
+ user: any;
15
+ isTest?: boolean;
16
+ setIsTest?: any;
14
17
  }
15
18
  declare const TopBarInfo: FC<TopBarInfoProps>;
16
19
  export default TopBarInfo;
@@ -1 +1 @@
1
- export default function createPlayableLink(api: string, selectedPlayableVersion: string, network: string): Promise<any>;
1
+ export default function createPlayableLink(api: string, selectedPlayableVersion: string, network: string, isTest?: boolean): Promise<any>;
@@ -3,6 +3,6 @@ type Urls = {
3
3
  iosUrl: string | undefined;
4
4
  googleUrl: string | undefined;
5
5
  } | null | undefined;
6
- declare function generateVersion(typeOfProduct: ProductType, versionId: string, networkName: string, urls: Urls, api: any, action: "copy" | "download" | null | undefined, setSafariCopyLink: any): Promise<unknown>;
6
+ declare function generateVersion(typeOfProduct: ProductType, versionId: string, networkName: string, urls: Urls, api: any, action: "copy" | "download" | null | undefined, setSafariCopyLink: any, isTest?: boolean): Promise<unknown>;
7
7
  declare function setFetchUrl(url: string): void;
8
8
  export { generateVersion, setFetchUrl };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gearboxdownloadmodal",
3
3
  "private": false,
4
- "version": "5.0.78",
4
+ "version": "5.0.80",
5
5
  "type": "module",
6
6
  "main": "dist/index.umd.js",
7
7
  "module": "dist/index.esm.js",