@roxybrowser/openapi 1.0.14-beta.0 → 1.0.14-beta.2
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 +6 -7
- package/lib/cli.cjs.map +1 -1
- package/lib/cli.js +6 -7
- package/lib/cli.js.map +1 -1
- package/lib/index.cjs +6 -7
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +6 -7
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -1950,8 +1950,8 @@ 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
|
-
` -
|
|
1953
|
+
` - DirId: ${browser.dirId}`,
|
|
1954
|
+
` - BrowserCore: ${browser.coreType || "Chrome"} ${browser.coreVersion}`,
|
|
1955
1955
|
` - OS: ${browser.os} ${browser.osVersion}`
|
|
1956
1956
|
];
|
|
1957
1957
|
if (browser.windowRemark) {
|
|
@@ -2186,15 +2186,14 @@ var GetBrowserDetail = class {
|
|
|
2186
2186
|
text = `**Browser Details Summary**
|
|
2187
2187
|
|
|
2188
2188
|
**ID:** \`${detail.dirId}\`
|
|
2189
|
-
**
|
|
2189
|
+
**DirId**: \`${detail.dirId}\`
|
|
2190
2190
|
**Serial No:** ${serialNo}
|
|
2191
2191
|
**Name:** ${detail.windowName}
|
|
2192
2192
|
**Project:** ${detail.projectName} (ID: ${detail.projectId})
|
|
2193
2193
|
**OS:** ${detail.os} ${detail.osVersion}
|
|
2194
|
-
**
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
**Search Engine:** ${detail.searchEngine}
|
|
2194
|
+
**BrowserCore**: ${detail.coreType || "Chrome"} ${detail.coreVersion}
|
|
2195
|
+
`, +`**Auto Latest Core:** ${detail.useLatestCore == 1 ? "\u2705 Enabled" : "\u274C Disabled"}
|
|
2196
|
+
` + `**Search Engine:** ${detail.searchEngine}
|
|
2198
2197
|
**Open Status:** ${detail.openStatus ? "\u2705 Opened" : "\u274C Closed"}
|
|
2199
2198
|
**Cookies:** ${cookieCount} stored (excluded from response to save tokens)
|
|
2200
2199
|
|