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