@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.cjs
CHANGED
|
@@ -1956,8 +1956,8 @@ 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
|
-
` -
|
|
1959
|
+
` - DirId: ${browser.dirId}`,
|
|
1960
|
+
` - BrowserCore: ${browser.coreType || "Chrome"} ${browser.coreVersion}`,
|
|
1961
1961
|
` - OS: ${browser.os} ${browser.osVersion}`
|
|
1962
1962
|
];
|
|
1963
1963
|
if (browser.windowRemark) {
|
|
@@ -2192,15 +2192,14 @@ var GetBrowserDetail = class {
|
|
|
2192
2192
|
text = `**Browser Details Summary**
|
|
2193
2193
|
|
|
2194
2194
|
**ID:** \`${detail.dirId}\`
|
|
2195
|
-
**
|
|
2195
|
+
**DirId**: \`${detail.dirId}\`
|
|
2196
2196
|
**Serial No:** ${serialNo}
|
|
2197
2197
|
**Name:** ${detail.windowName}
|
|
2198
2198
|
**Project:** ${detail.projectName} (ID: ${detail.projectId})
|
|
2199
2199
|
**OS:** ${detail.os} ${detail.osVersion}
|
|
2200
|
-
**
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
**Search Engine:** ${detail.searchEngine}
|
|
2200
|
+
**BrowserCore**: ${detail.coreType || "Chrome"} ${detail.coreVersion}
|
|
2201
|
+
`, +`**Auto Latest Core:** ${detail.useLatestCore == 1 ? "\u2705 Enabled" : "\u274C Disabled"}
|
|
2202
|
+
` + `**Search Engine:** ${detail.searchEngine}
|
|
2204
2203
|
**Open Status:** ${detail.openStatus ? "\u2705 Opened" : "\u274C Closed"}
|
|
2205
2204
|
**Cookies:** ${cookieCount} stored (excluded from response to save tokens)
|
|
2206
2205
|
|