terminalhire 0.30.0 → 0.30.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/dist/bin/jpi-dispatch.js
CHANGED
|
@@ -41714,7 +41714,6 @@ function interleaveBySource(topMatches) {
|
|
|
41714
41714
|
}
|
|
41715
41715
|
function buildTipsDetailed(topMatches, baseUrl, max = 8, opts = {}) {
|
|
41716
41716
|
const base = String(baseUrl || "https://terminalhire.com").replace(/\/+$/, "");
|
|
41717
|
-
const clickBase = opts.clickCatcher ? String(opts.clickCatcher).replace(/\/+$/, "") : base;
|
|
41718
41717
|
const out = [];
|
|
41719
41718
|
const surfacedIds = [];
|
|
41720
41719
|
const seenRole = /* @__PURE__ */ new Set();
|
|
@@ -41763,7 +41762,7 @@ function buildTipsDetailed(topMatches, baseUrl, max = 8, opts = {}) {
|
|
|
41763
41762
|
const company = titleCase(companyRaw);
|
|
41764
41763
|
const pct2 = Math.max(1, Math.min(99, Math.round((Number(m.score) || 0) * 100)));
|
|
41765
41764
|
const token = Buffer.from(String(m.id)).toString("base64url");
|
|
41766
|
-
const url = `${
|
|
41765
|
+
const url = `${base}/j/${token}`;
|
|
41767
41766
|
if (source === "bounty") {
|
|
41768
41767
|
const money = m.amountUSD != null ? `$${Number(m.amountUSD).toLocaleString()}` : "$\u2014";
|
|
41769
41768
|
const repo = m.repo || companyRaw;
|
package/dist/bin/jpi-refresh.js
CHANGED
|
@@ -9278,7 +9278,6 @@ function interleaveBySource(topMatches) {
|
|
|
9278
9278
|
}
|
|
9279
9279
|
function buildTipsDetailed(topMatches, baseUrl, max = 8, opts = {}) {
|
|
9280
9280
|
const base = String(baseUrl || "https://terminalhire.com").replace(/\/+$/, "");
|
|
9281
|
-
const clickBase = opts.clickCatcher ? String(opts.clickCatcher).replace(/\/+$/, "") : base;
|
|
9282
9281
|
const out = [];
|
|
9283
9282
|
const surfacedIds = [];
|
|
9284
9283
|
const seenRole = /* @__PURE__ */ new Set();
|
|
@@ -9327,7 +9326,7 @@ function buildTipsDetailed(topMatches, baseUrl, max = 8, opts = {}) {
|
|
|
9327
9326
|
const company = titleCase(companyRaw);
|
|
9328
9327
|
const pct = Math.max(1, Math.min(99, Math.round((Number(m.score) || 0) * 100)));
|
|
9329
9328
|
const token = Buffer.from(String(m.id)).toString("base64url");
|
|
9330
|
-
const url = `${
|
|
9329
|
+
const url = `${base}/j/${token}`;
|
|
9331
9330
|
if (source === "bounty") {
|
|
9332
9331
|
const money = m.amountUSD != null ? `$${Number(m.amountUSD).toLocaleString()}` : "$\u2014";
|
|
9333
9332
|
const repo = m.repo || companyRaw;
|
package/dist/bin/spinner.js
CHANGED
|
@@ -964,7 +964,6 @@ function interleaveBySource(topMatches) {
|
|
|
964
964
|
}
|
|
965
965
|
function buildTipsDetailed(topMatches, baseUrl, max = 8, opts = {}) {
|
|
966
966
|
const base = String(baseUrl || "https://terminalhire.com").replace(/\/+$/, "");
|
|
967
|
-
const clickBase = opts.clickCatcher ? String(opts.clickCatcher).replace(/\/+$/, "") : base;
|
|
968
967
|
const out = [];
|
|
969
968
|
const surfacedIds = [];
|
|
970
969
|
const seenRole = /* @__PURE__ */ new Set();
|
|
@@ -1013,7 +1012,7 @@ function buildTipsDetailed(topMatches, baseUrl, max = 8, opts = {}) {
|
|
|
1013
1012
|
const company = titleCase(companyRaw);
|
|
1014
1013
|
const pct = Math.max(1, Math.min(99, Math.round((Number(m.score) || 0) * 100)));
|
|
1015
1014
|
const token = Buffer.from(String(m.id)).toString("base64url");
|
|
1016
|
-
const url = `${
|
|
1015
|
+
const url = `${base}/j/${token}`;
|
|
1017
1016
|
if (source === "bounty") {
|
|
1018
1017
|
const money = m.amountUSD != null ? `$${Number(m.amountUSD).toLocaleString()}` : "$\u2014";
|
|
1019
1018
|
const repo = m.repo || companyRaw;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terminalhire",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.1",
|
|
4
4
|
"description": "Local-first job matching for developers — ambient job matches in the Claude Code spinner. Matching runs on your machine; your profile never leaves it.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|