@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.js
CHANGED
|
@@ -1950,8 +1950,7 @@ var ListBrowsers = class {
|
|
|
1950
1950
|
const serialNo = `${browser.workspaceName?.slice(0, 3).toLocaleUpperCase()}-${browser.windowSortNum}`;
|
|
1951
1951
|
const info = [
|
|
1952
1952
|
`Profile Name: **${browser.windowName || "Unnamed"}** (SN: ${serialNo})`,
|
|
1953
|
-
` -
|
|
1954
|
-
` - CoreType: ${browser.coreType || "Chrome"}`,
|
|
1953
|
+
` - BrowserCore: ${browser.coreType || "Chrome"} ${browser.coreVersion}`,
|
|
1955
1954
|
` - OS: ${browser.os} ${browser.osVersion}`
|
|
1956
1955
|
];
|
|
1957
1956
|
if (browser.windowRemark) {
|
|
@@ -2191,10 +2190,9 @@ var GetBrowserDetail = class {
|
|
|
2191
2190
|
**Name:** ${detail.windowName}
|
|
2192
2191
|
**Project:** ${detail.projectName} (ID: ${detail.projectId})
|
|
2193
2192
|
**OS:** ${detail.os} ${detail.osVersion}
|
|
2194
|
-
**
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
**Search Engine:** ${detail.searchEngine}
|
|
2193
|
+
**BrowserCore**: ${detail.coreType || "Chrome"} ${detail.coreVersion}
|
|
2194
|
+
`, +`**Auto Latest Core:** ${detail.useLatestCore == 1 ? "\u2705 Enabled" : "\u274C Disabled"}
|
|
2195
|
+
` + `**Search Engine:** ${detail.searchEngine}
|
|
2198
2196
|
**Open Status:** ${detail.openStatus ? "\u2705 Opened" : "\u274C Closed"}
|
|
2199
2197
|
**Cookies:** ${cookieCount} stored (excluded from response to save tokens)
|
|
2200
2198
|
|