@roxybrowser/openapi 1.0.14-beta.0 → 1.0.14-beta.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/lib/cli.cjs +4 -6
- package/lib/cli.cjs.map +1 -1
- package/lib/cli.js +4 -6
- package/lib/cli.js.map +1 -1
- package/lib/index.cjs +4 -6
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +4 -6
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/cli.cjs
CHANGED
|
@@ -1956,8 +1956,7 @@ var ListBrowsers = class {
|
|
|
1956
1956
|
const serialNo = `${browser.workspaceName?.slice(0, 3).toLocaleUpperCase()}-${browser.windowSortNum}`;
|
|
1957
1957
|
const info = [
|
|
1958
1958
|
`Profile Name: **${browser.windowName || "Unnamed"}** (SN: ${serialNo})`,
|
|
1959
|
-
` -
|
|
1960
|
-
` - CoreType: ${browser.coreType || "Chrome"}`,
|
|
1959
|
+
` - BrowserCore: ${browser.coreType || "Chrome"} ${browser.coreVersion}`,
|
|
1961
1960
|
` - OS: ${browser.os} ${browser.osVersion}`
|
|
1962
1961
|
];
|
|
1963
1962
|
if (browser.windowRemark) {
|
|
@@ -2197,10 +2196,9 @@ var GetBrowserDetail = class {
|
|
|
2197
2196
|
**Name:** ${detail.windowName}
|
|
2198
2197
|
**Project:** ${detail.projectName} (ID: ${detail.projectId})
|
|
2199
2198
|
**OS:** ${detail.os} ${detail.osVersion}
|
|
2200
|
-
**
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
**Search Engine:** ${detail.searchEngine}
|
|
2199
|
+
**BrowserCore**: ${detail.coreType || "Chrome"} ${detail.coreVersion}
|
|
2200
|
+
`, +`**Auto Latest Core:** ${detail.useLatestCore == 1 ? "\u2705 Enabled" : "\u274C Disabled"}
|
|
2201
|
+
` + `**Search Engine:** ${detail.searchEngine}
|
|
2204
2202
|
**Open Status:** ${detail.openStatus ? "\u2705 Opened" : "\u274C Closed"}
|
|
2205
2203
|
**Cookies:** ${cookieCount} stored (excluded from response to save tokens)
|
|
2206
2204
|
|