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