openmates 0.11.0-alpha.34 → 0.11.0-alpha.35
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.
|
@@ -6757,7 +6757,7 @@ async function renderEmbedFullscreen(embed, client) {
|
|
|
6757
6757
|
break;
|
|
6758
6758
|
}
|
|
6759
6759
|
}
|
|
6760
|
-
async function renderSearchPreview(c, ln,
|
|
6760
|
+
async function renderSearchPreview(c, ln, _client) {
|
|
6761
6761
|
const count = resolveResultCount(c);
|
|
6762
6762
|
if (count !== null) ln(`\x1B[2m+ ${count} results\x1B[0m`);
|
|
6763
6763
|
else if (str(c.status) === "finished") ln("\x1B[2mNo results\x1B[0m");
|
|
@@ -6787,7 +6787,7 @@ async function renderSearchFullscreen(c, client) {
|
|
|
6787
6787
|
`);
|
|
6788
6788
|
}
|
|
6789
6789
|
}
|
|
6790
|
-
async function renderEventsSearchPreview(c, ln,
|
|
6790
|
+
async function renderEventsSearchPreview(c, ln, _client) {
|
|
6791
6791
|
const count = resolveResultCount(c);
|
|
6792
6792
|
if (count !== null) ln(`\x1B[2m+ ${count} events\x1B[0m`);
|
|
6793
6793
|
else if (str(c.status) === "finished") ln("\x1B[2mNo events found\x1B[0m");
|
|
@@ -6823,7 +6823,7 @@ async function renderEventsSearchFullscreen(c, client) {
|
|
|
6823
6823
|
`);
|
|
6824
6824
|
}
|
|
6825
6825
|
}
|
|
6826
|
-
async function renderVideosSearchPreview(c, ln,
|
|
6826
|
+
async function renderVideosSearchPreview(c, ln, _client) {
|
|
6827
6827
|
const count = resolveResultCount(c);
|
|
6828
6828
|
if (count !== null) ln(`\x1B[2m+ ${count} videos\x1B[0m`);
|
|
6829
6829
|
else if (str(c.status) === "finished") ln("\x1B[2mNo videos found\x1B[0m");
|
|
@@ -7005,7 +7005,7 @@ function renderMapsSearchFullscreen(c) {
|
|
|
7005
7005
|
console.log();
|
|
7006
7006
|
}
|
|
7007
7007
|
}
|
|
7008
|
-
async function renderTravelConnectionsPreview(c, ln,
|
|
7008
|
+
async function renderTravelConnectionsPreview(c, ln, _client) {
|
|
7009
7009
|
const count = resolveResultCount(c);
|
|
7010
7010
|
const results = c.results;
|
|
7011
7011
|
if (Array.isArray(results) && results.length > 0) {
|
|
@@ -7058,7 +7058,7 @@ async function renderTravelConnectionsFullscreen(c, client) {
|
|
|
7058
7058
|
console.log();
|
|
7059
7059
|
}
|
|
7060
7060
|
}
|
|
7061
|
-
async function renderTravelStaysPreview(c, ln,
|
|
7061
|
+
async function renderTravelStaysPreview(c, ln, _client) {
|
|
7062
7062
|
const count = resolveResultCount(c);
|
|
7063
7063
|
if (count !== null) ln(`\x1B[2m${count} stays\x1B[0m`);
|
|
7064
7064
|
}
|
|
@@ -7289,7 +7289,7 @@ function renderVideoTranscriptFullscreen(c) {
|
|
|
7289
7289
|
if (transcript) console.log(transcript);
|
|
7290
7290
|
else console.log("No transcript available.");
|
|
7291
7291
|
}
|
|
7292
|
-
async function renderHealthSearchPreview(c, ln,
|
|
7292
|
+
async function renderHealthSearchPreview(c, ln, _client) {
|
|
7293
7293
|
const count = resolveResultCount(c);
|
|
7294
7294
|
if (count !== null) ln(`\x1B[2m+ ${count} appointments\x1B[0m`);
|
|
7295
7295
|
else if (str(c.status) === "finished")
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmates",
|
|
3
|
-
"version": "0.11.0-alpha.
|
|
3
|
+
"version": "0.11.0-alpha.35",
|
|
4
4
|
"description": "OpenMates CLI and SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -55,9 +55,11 @@
|
|
|
55
55
|
"ws": "8.20.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
+
"@repo/eslint-config": "workspace:*",
|
|
58
59
|
"@types/node": "^24.5.0",
|
|
59
60
|
"@types/qrcode-terminal": "^0.12.2",
|
|
60
61
|
"@types/ws": "^8.18.1",
|
|
62
|
+
"eslint": "^9.35.0",
|
|
61
63
|
"tsup": "^8.5.0",
|
|
62
64
|
"typescript": "^5.9.2"
|
|
63
65
|
}
|