@speedkit/cli 3.5.0 → 3.5.1
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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/dist/services/onboarding/browser/executable/executable-validator.d.ts +1 -1
- package/dist/services/onboarding/onboarding-model.d.ts +1 -1
- package/dist/services/onboarding/onboarding-model.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.5.1](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.5.0...v3.5.1) (2025-08-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **onboarding:** unknown version ([9a1e856](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/9a1e856f50b24b7fab8e440f2e92ee2f66aa7c07))
|
|
7
|
+
|
|
1
8
|
# [3.5.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.4.3...v3.5.0) (2025-08-20)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ export declare class ExecutableValidator {
|
|
|
4
4
|
readonly userConfig: UserCliConfig;
|
|
5
5
|
private cli;
|
|
6
6
|
constructor(userConfig: UserCliConfig, cli: CliServiceInterface);
|
|
7
|
-
validateOrInstall(): Promise<string>;
|
|
7
|
+
validateOrInstall(): Promise<string | undefined>;
|
|
8
8
|
private getCurrentBrowserVersion;
|
|
9
9
|
private getExecutablePathFromPuppeteer;
|
|
10
10
|
private isValidBrowserExecutable;
|
|
@@ -38,7 +38,7 @@ export declare class BrowserContext {
|
|
|
38
38
|
userAgent?: string;
|
|
39
39
|
readonly browserArgs: string[];
|
|
40
40
|
readonly chromePath: string;
|
|
41
|
-
constructor(domain: string, browserVersionString
|
|
41
|
+
constructor(domain: string, browserVersionString?: string, chromeFlags?: string[], userConfig?: UserCliConfig, userAgent?: string);
|
|
42
42
|
private isChromeBrowser;
|
|
43
43
|
private getBrowserExtensionPath;
|
|
44
44
|
getPuppeteerLaunchOptions(): Parameters<VanillaPuppeteer["launch"]>[0];
|
|
@@ -46,7 +46,7 @@ class BrowserContext {
|
|
|
46
46
|
userAgent;
|
|
47
47
|
browserArgs;
|
|
48
48
|
chromePath;
|
|
49
|
-
constructor(domain, browserVersionString, chromeFlags, userConfig, userAgent) {
|
|
49
|
+
constructor(domain, browserVersionString = "unknown", chromeFlags, userConfig, userAgent) {
|
|
50
50
|
this.domain = domain;
|
|
51
51
|
this.browserVersionString = browserVersionString;
|
|
52
52
|
this.chromeFlags = chromeFlags;
|
package/oclif.manifest.json
CHANGED