terminalhire 0.17.0 → 0.17.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-bounties.js +15 -2
- package/dist/bin/jpi-chat-read.js +14 -5
- package/dist/bin/jpi-chat.js +16 -7
- package/dist/bin/jpi-contribute.js +11 -2
- package/dist/bin/jpi-devs.js +15 -2
- package/dist/bin/jpi-dispatch.js +33 -16
- package/dist/bin/jpi-inbox.js +16 -7
- package/dist/bin/jpi-intro.js +12 -3
- package/dist/bin/jpi-jobs.js +15 -2
- package/dist/bin/jpi-learn.js +11 -2
- package/dist/bin/jpi-link.js +1 -1
- package/dist/bin/jpi-login.js +17 -4
- package/dist/bin/jpi-profile.js +11 -2
- package/dist/bin/jpi-project.js +13 -0
- package/dist/bin/jpi-refresh.js +22 -5
- package/dist/bin/jpi-save.js +11 -2
- package/dist/bin/jpi-spinner.js +491 -8
- package/dist/bin/jpi-sync.js +12 -3
- package/dist/bin/jpi-trajectory.js +13 -4
- package/dist/bin/peer-connect-prompt.js +1 -1
- package/dist/bin/spinner.js +491 -2
- package/dist/src/chat-client.js +6 -3
- package/dist/src/chat-keystore.js +5 -2
- package/dist/src/github-auth.js +2 -2
- package/dist/src/intro.js +12 -3
- package/dist/src/link.js +1 -1
- package/dist/src/profile.js +5 -2
- package/dist/src/signal.js +3 -0
- package/dist/src/trajectory.js +13 -4
- package/package.json +1 -1
package/dist/bin/jpi-bounties.js
CHANGED
|
@@ -6345,6 +6345,17 @@ var init_legible = __esm({
|
|
|
6345
6345
|
}
|
|
6346
6346
|
});
|
|
6347
6347
|
|
|
6348
|
+
// ../../packages/core/src/short-token.ts
|
|
6349
|
+
import { createHash as createHash2 } from "crypto";
|
|
6350
|
+
function contributeShortToken(id) {
|
|
6351
|
+
return createHash2("sha256").update(id, "utf8").digest("base64url").slice(0, 8);
|
|
6352
|
+
}
|
|
6353
|
+
var init_short_token = __esm({
|
|
6354
|
+
"../../packages/core/src/short-token.ts"() {
|
|
6355
|
+
"use strict";
|
|
6356
|
+
}
|
|
6357
|
+
});
|
|
6358
|
+
|
|
6348
6359
|
// ../../packages/core/src/index.ts
|
|
6349
6360
|
var src_exports = {};
|
|
6350
6361
|
__export(src_exports, {
|
|
@@ -6388,6 +6399,7 @@ __export(src_exports, {
|
|
|
6388
6399
|
composeIntroEmail: () => composeIntroEmail,
|
|
6389
6400
|
computeAcceptanceCredential: () => computeAcceptanceCredential,
|
|
6390
6401
|
computeAcceptanceCredentialPublic: () => computeAcceptanceCredentialPublic,
|
|
6402
|
+
contributeShortToken: () => contributeShortToken,
|
|
6391
6403
|
coreTagsFromTitle: () => coreTagsFromTitle,
|
|
6392
6404
|
decorate: () => decorate,
|
|
6393
6405
|
decryptMessage: () => decryptMessage,
|
|
@@ -6455,6 +6467,7 @@ var init_src = __esm({
|
|
|
6455
6467
|
init_chatCrypto();
|
|
6456
6468
|
init_job_status();
|
|
6457
6469
|
init_legible();
|
|
6470
|
+
init_short_token();
|
|
6458
6471
|
}
|
|
6459
6472
|
});
|
|
6460
6473
|
|
|
@@ -6466,9 +6479,9 @@ var init_keytar = __esm({
|
|
|
6466
6479
|
}
|
|
6467
6480
|
});
|
|
6468
6481
|
|
|
6469
|
-
// node-file:/Users
|
|
6482
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
6470
6483
|
var require_keytar = __commonJS({
|
|
6471
|
-
"node-file:/Users
|
|
6484
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
6472
6485
|
"use strict";
|
|
6473
6486
|
init_keytar();
|
|
6474
6487
|
try {
|
|
@@ -3865,6 +3865,14 @@ var init_legible = __esm({
|
|
|
3865
3865
|
}
|
|
3866
3866
|
});
|
|
3867
3867
|
|
|
3868
|
+
// ../../packages/core/src/short-token.ts
|
|
3869
|
+
import { createHash as createHash2 } from "crypto";
|
|
3870
|
+
var init_short_token = __esm({
|
|
3871
|
+
"../../packages/core/src/short-token.ts"() {
|
|
3872
|
+
"use strict";
|
|
3873
|
+
}
|
|
3874
|
+
});
|
|
3875
|
+
|
|
3868
3876
|
// ../../packages/core/src/index.ts
|
|
3869
3877
|
var init_src = __esm({
|
|
3870
3878
|
"../../packages/core/src/index.ts"() {
|
|
@@ -3881,6 +3889,7 @@ var init_src = __esm({
|
|
|
3881
3889
|
init_chatCrypto();
|
|
3882
3890
|
init_job_status();
|
|
3883
3891
|
init_legible();
|
|
3892
|
+
init_short_token();
|
|
3884
3893
|
}
|
|
3885
3894
|
});
|
|
3886
3895
|
|
|
@@ -3892,9 +3901,9 @@ var init_keytar = __esm({
|
|
|
3892
3901
|
}
|
|
3893
3902
|
});
|
|
3894
3903
|
|
|
3895
|
-
// node-file:/Users
|
|
3904
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
3896
3905
|
var require_keytar = __commonJS({
|
|
3897
|
-
"node-file:/Users
|
|
3906
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
3898
3907
|
"use strict";
|
|
3899
3908
|
init_keytar();
|
|
3900
3909
|
try {
|
|
@@ -4267,7 +4276,7 @@ var init_chat_client = __esm({
|
|
|
4267
4276
|
init_src();
|
|
4268
4277
|
init_chat_keystore();
|
|
4269
4278
|
init_web_session();
|
|
4270
|
-
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
4279
|
+
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
4271
4280
|
GH_SESSION_COOKIE = "__jpi_gh_session";
|
|
4272
4281
|
TERMINALHIRE_DIR3 = join5(homedir4(), ".terminalhire");
|
|
4273
4282
|
PEERS_FILE = join5(TERMINALHIRE_DIR3, "chat-peers.json");
|
|
@@ -4485,7 +4494,7 @@ var init_jpi_chat = __esm({
|
|
|
4485
4494
|
init_chat_client();
|
|
4486
4495
|
init_config();
|
|
4487
4496
|
init_web_session();
|
|
4488
|
-
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
4497
|
+
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
4489
4498
|
GH_SESSION_COOKIE2 = "__jpi_gh_session";
|
|
4490
4499
|
ANSI_CSI = /\x1b\[[0-?]*[ -/]*[@-~]/g;
|
|
4491
4500
|
ANSI_OSC = /\x1b\][^\x07\x1b]*(?:\x07|\x1b\\)/g;
|
|
@@ -4873,7 +4882,7 @@ var init_jpi_chat_read = __esm({
|
|
|
4873
4882
|
init_chat_client();
|
|
4874
4883
|
init_web_session();
|
|
4875
4884
|
init_jpi_chat();
|
|
4876
|
-
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
4885
|
+
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
4877
4886
|
GH_SESSION_COOKIE3 = "__jpi_gh_session";
|
|
4878
4887
|
TERMINALHIRE_DIR5 = process.env.TERMINALHIRE_DIR || join8(homedir7(), ".terminalhire");
|
|
4879
4888
|
READS_FILE = join8(TERMINALHIRE_DIR5, "chat-reads.json");
|
package/dist/bin/jpi-chat.js
CHANGED
|
@@ -3893,6 +3893,14 @@ var init_legible = __esm({
|
|
|
3893
3893
|
}
|
|
3894
3894
|
});
|
|
3895
3895
|
|
|
3896
|
+
// ../../packages/core/src/short-token.ts
|
|
3897
|
+
import { createHash as createHash2 } from "crypto";
|
|
3898
|
+
var init_short_token = __esm({
|
|
3899
|
+
"../../packages/core/src/short-token.ts"() {
|
|
3900
|
+
"use strict";
|
|
3901
|
+
}
|
|
3902
|
+
});
|
|
3903
|
+
|
|
3896
3904
|
// ../../packages/core/src/index.ts
|
|
3897
3905
|
var init_src = __esm({
|
|
3898
3906
|
"../../packages/core/src/index.ts"() {
|
|
@@ -3909,6 +3917,7 @@ var init_src = __esm({
|
|
|
3909
3917
|
init_chatCrypto();
|
|
3910
3918
|
init_job_status();
|
|
3911
3919
|
init_legible();
|
|
3920
|
+
init_short_token();
|
|
3912
3921
|
}
|
|
3913
3922
|
});
|
|
3914
3923
|
|
|
@@ -3920,9 +3929,9 @@ var init_keytar = __esm({
|
|
|
3920
3929
|
}
|
|
3921
3930
|
});
|
|
3922
3931
|
|
|
3923
|
-
// node-file:/Users
|
|
3932
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
3924
3933
|
var require_keytar = __commonJS({
|
|
3925
|
-
"node-file:/Users
|
|
3934
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
3926
3935
|
"use strict";
|
|
3927
3936
|
init_keytar();
|
|
3928
3937
|
try {
|
|
@@ -4295,7 +4304,7 @@ var init_chat_client = __esm({
|
|
|
4295
4304
|
init_src();
|
|
4296
4305
|
init_chat_keystore();
|
|
4297
4306
|
init_web_session();
|
|
4298
|
-
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
4307
|
+
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
4299
4308
|
GH_SESSION_COOKIE = "__jpi_gh_session";
|
|
4300
4309
|
TERMINALHIRE_DIR3 = join5(homedir4(), ".terminalhire");
|
|
4301
4310
|
PEERS_FILE = join5(TERMINALHIRE_DIR3, "chat-peers.json");
|
|
@@ -4770,7 +4779,7 @@ var init_jpi_chat_read = __esm({
|
|
|
4770
4779
|
init_chat_client();
|
|
4771
4780
|
init_web_session();
|
|
4772
4781
|
init_jpi_chat();
|
|
4773
|
-
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
4782
|
+
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
4774
4783
|
GH_SESSION_COOKIE2 = "__jpi_gh_session";
|
|
4775
4784
|
TERMINALHIRE_DIR5 = process.env.TERMINALHIRE_DIR || join7(homedir6(), ".terminalhire");
|
|
4776
4785
|
READS_FILE = join7(TERMINALHIRE_DIR5, "chat-reads.json");
|
|
@@ -5435,7 +5444,7 @@ var init_intro2 = __esm({
|
|
|
5435
5444
|
"use strict";
|
|
5436
5445
|
init_src();
|
|
5437
5446
|
init_web_session();
|
|
5438
|
-
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
5447
|
+
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
5439
5448
|
GH_SESSION_COOKIE3 = "__jpi_gh_session";
|
|
5440
5449
|
UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
5441
5450
|
}
|
|
@@ -6734,7 +6743,7 @@ var init_jpi_chat = __esm({
|
|
|
6734
6743
|
init_chat_client();
|
|
6735
6744
|
init_config();
|
|
6736
6745
|
init_web_session();
|
|
6737
|
-
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
6746
|
+
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
6738
6747
|
GH_SESSION_COOKIE4 = "__jpi_gh_session";
|
|
6739
6748
|
HIDE_CURSOR2 = "\x1B[?25l";
|
|
6740
6749
|
SHOW_CURSOR2 = "\x1B[?25h";
|
|
@@ -6757,7 +6766,7 @@ var init_jpi_chat = __esm({
|
|
|
6757
6766
|
CHAT_AT_REST = "Your private key is encrypted against casual access, not full machine compromise.";
|
|
6758
6767
|
CHAT_CODE_OF_CONDUCT = "Code of conduct: keep it professional \u2014 harassment, spam, or abuse gets you blocked and removed.";
|
|
6759
6768
|
CHAT_MIN_AGE = "You must be at least 13 years old to use connections chat.";
|
|
6760
|
-
DEPOSIT_CTA = "\n Keep building together \u2014 publish your r\xE9sum\xE9 so more builders find you:\n https://
|
|
6769
|
+
DEPOSIT_CTA = "\n Keep building together \u2014 publish your r\xE9sum\xE9 so more builders find you:\n https://terminalhire.com/dashboard\n\n";
|
|
6761
6770
|
ACTIVE_WINDOW_MS = 2 * 60 * 1e3;
|
|
6762
6771
|
}
|
|
6763
6772
|
});
|
|
@@ -1179,6 +1179,14 @@ var init_legible = __esm({
|
|
|
1179
1179
|
}
|
|
1180
1180
|
});
|
|
1181
1181
|
|
|
1182
|
+
// ../../packages/core/src/short-token.ts
|
|
1183
|
+
import { createHash as createHash2 } from "crypto";
|
|
1184
|
+
var init_short_token = __esm({
|
|
1185
|
+
"../../packages/core/src/short-token.ts"() {
|
|
1186
|
+
"use strict";
|
|
1187
|
+
}
|
|
1188
|
+
});
|
|
1189
|
+
|
|
1182
1190
|
// ../../packages/core/src/index.ts
|
|
1183
1191
|
var init_src = __esm({
|
|
1184
1192
|
"../../packages/core/src/index.ts"() {
|
|
@@ -1195,6 +1203,7 @@ var init_src = __esm({
|
|
|
1195
1203
|
init_chatCrypto();
|
|
1196
1204
|
init_job_status();
|
|
1197
1205
|
init_legible();
|
|
1206
|
+
init_short_token();
|
|
1198
1207
|
}
|
|
1199
1208
|
});
|
|
1200
1209
|
|
|
@@ -1206,9 +1215,9 @@ var init_keytar = __esm({
|
|
|
1206
1215
|
}
|
|
1207
1216
|
});
|
|
1208
1217
|
|
|
1209
|
-
// node-file:/Users
|
|
1218
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
1210
1219
|
var require_keytar = __commonJS({
|
|
1211
|
-
"node-file:/Users
|
|
1220
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
1212
1221
|
"use strict";
|
|
1213
1222
|
init_keytar();
|
|
1214
1223
|
try {
|
package/dist/bin/jpi-devs.js
CHANGED
|
@@ -6345,6 +6345,17 @@ var init_legible = __esm({
|
|
|
6345
6345
|
}
|
|
6346
6346
|
});
|
|
6347
6347
|
|
|
6348
|
+
// ../../packages/core/src/short-token.ts
|
|
6349
|
+
import { createHash as createHash2 } from "crypto";
|
|
6350
|
+
function contributeShortToken(id) {
|
|
6351
|
+
return createHash2("sha256").update(id, "utf8").digest("base64url").slice(0, 8);
|
|
6352
|
+
}
|
|
6353
|
+
var init_short_token = __esm({
|
|
6354
|
+
"../../packages/core/src/short-token.ts"() {
|
|
6355
|
+
"use strict";
|
|
6356
|
+
}
|
|
6357
|
+
});
|
|
6358
|
+
|
|
6348
6359
|
// ../../packages/core/src/index.ts
|
|
6349
6360
|
var src_exports = {};
|
|
6350
6361
|
__export(src_exports, {
|
|
@@ -6388,6 +6399,7 @@ __export(src_exports, {
|
|
|
6388
6399
|
composeIntroEmail: () => composeIntroEmail,
|
|
6389
6400
|
computeAcceptanceCredential: () => computeAcceptanceCredential,
|
|
6390
6401
|
computeAcceptanceCredentialPublic: () => computeAcceptanceCredentialPublic,
|
|
6402
|
+
contributeShortToken: () => contributeShortToken,
|
|
6391
6403
|
coreTagsFromTitle: () => coreTagsFromTitle,
|
|
6392
6404
|
decorate: () => decorate,
|
|
6393
6405
|
decryptMessage: () => decryptMessage,
|
|
@@ -6455,6 +6467,7 @@ var init_src = __esm({
|
|
|
6455
6467
|
init_chatCrypto();
|
|
6456
6468
|
init_job_status();
|
|
6457
6469
|
init_legible();
|
|
6470
|
+
init_short_token();
|
|
6458
6471
|
}
|
|
6459
6472
|
});
|
|
6460
6473
|
|
|
@@ -6466,9 +6479,9 @@ var init_keytar = __esm({
|
|
|
6466
6479
|
}
|
|
6467
6480
|
});
|
|
6468
6481
|
|
|
6469
|
-
// node-file:/Users
|
|
6482
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
6470
6483
|
var require_keytar = __commonJS({
|
|
6471
|
-
"node-file:/Users
|
|
6484
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
6472
6485
|
"use strict";
|
|
6473
6486
|
init_keytar();
|
|
6474
6487
|
try {
|
package/dist/bin/jpi-dispatch.js
CHANGED
|
@@ -296,9 +296,9 @@ var init_keytar = __esm({
|
|
|
296
296
|
}
|
|
297
297
|
});
|
|
298
298
|
|
|
299
|
-
// node-file:/Users
|
|
299
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
300
300
|
var require_keytar = __commonJS({
|
|
301
|
-
"node-file:/Users
|
|
301
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
302
302
|
"use strict";
|
|
303
303
|
init_keytar();
|
|
304
304
|
try {
|
|
@@ -7163,6 +7163,17 @@ var init_legible = __esm({
|
|
|
7163
7163
|
}
|
|
7164
7164
|
});
|
|
7165
7165
|
|
|
7166
|
+
// ../../packages/core/src/short-token.ts
|
|
7167
|
+
import { createHash as createHash2 } from "crypto";
|
|
7168
|
+
function contributeShortToken(id) {
|
|
7169
|
+
return createHash2("sha256").update(id, "utf8").digest("base64url").slice(0, 8);
|
|
7170
|
+
}
|
|
7171
|
+
var init_short_token = __esm({
|
|
7172
|
+
"../../packages/core/src/short-token.ts"() {
|
|
7173
|
+
"use strict";
|
|
7174
|
+
}
|
|
7175
|
+
});
|
|
7176
|
+
|
|
7166
7177
|
// ../../packages/core/src/index.ts
|
|
7167
7178
|
var src_exports = {};
|
|
7168
7179
|
__export(src_exports, {
|
|
@@ -7206,6 +7217,7 @@ __export(src_exports, {
|
|
|
7206
7217
|
composeIntroEmail: () => composeIntroEmail,
|
|
7207
7218
|
computeAcceptanceCredential: () => computeAcceptanceCredential,
|
|
7208
7219
|
computeAcceptanceCredentialPublic: () => computeAcceptanceCredentialPublic,
|
|
7220
|
+
contributeShortToken: () => contributeShortToken,
|
|
7209
7221
|
coreTagsFromTitle: () => coreTagsFromTitle,
|
|
7210
7222
|
decorate: () => decorate,
|
|
7211
7223
|
decryptMessage: () => decryptMessage,
|
|
@@ -7273,6 +7285,7 @@ var init_src = __esm({
|
|
|
7273
7285
|
init_chatCrypto();
|
|
7274
7286
|
init_job_status();
|
|
7275
7287
|
init_legible();
|
|
7288
|
+
init_short_token();
|
|
7276
7289
|
}
|
|
7277
7290
|
});
|
|
7278
7291
|
|
|
@@ -7611,7 +7624,7 @@ var init_peer_connect_prompt = __esm({
|
|
|
7611
7624
|
"use strict";
|
|
7612
7625
|
init_config();
|
|
7613
7626
|
init_open_url();
|
|
7614
|
-
OAUTH_BASE = "https://
|
|
7627
|
+
OAUTH_BASE = "https://terminalhire.com";
|
|
7615
7628
|
PROMPT = [
|
|
7616
7629
|
"",
|
|
7617
7630
|
" Connect with other builders?",
|
|
@@ -7718,7 +7731,7 @@ async function runLogin() {
|
|
|
7718
7731
|
const skipWeb = process.argv.includes("--no-web");
|
|
7719
7732
|
if (!isMock && !skipWeb) {
|
|
7720
7733
|
try {
|
|
7721
|
-
const OAUTH_BASE3 = "https://
|
|
7734
|
+
const OAUTH_BASE3 = "https://terminalhire.com";
|
|
7722
7735
|
const webUrl = `${OAUTH_BASE3}/api/auth/github?next=/dashboard`;
|
|
7723
7736
|
console.log(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500");
|
|
7724
7737
|
console.log(" Your web profile & r\xE9sum\xE9 \u2014 public GitHub data only,");
|
|
@@ -10547,8 +10560,8 @@ var init_trajectory = __esm({
|
|
|
10547
10560
|
"cap:agentic-workflow": "Agent orchestration",
|
|
10548
10561
|
"mcp:custom": "Private integrations"
|
|
10549
10562
|
};
|
|
10550
|
-
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
10551
|
-
OAUTH_BASE2 = "https://
|
|
10563
|
+
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
10564
|
+
OAUTH_BASE2 = "https://terminalhire.com";
|
|
10552
10565
|
GH_SESSION_COOKIE = "__jpi_gh_session";
|
|
10553
10566
|
PUSH_DENYLIST = ["rework", "recovery", "within_session", "fatigue", "vector", "mcp__"];
|
|
10554
10567
|
}
|
|
@@ -10966,7 +10979,7 @@ var init_intro2 = __esm({
|
|
|
10966
10979
|
"use strict";
|
|
10967
10980
|
init_src();
|
|
10968
10981
|
init_web_session();
|
|
10969
|
-
LINK_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
10982
|
+
LINK_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
10970
10983
|
GH_SESSION_COOKIE2 = "__jpi_gh_session";
|
|
10971
10984
|
UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
10972
10985
|
}
|
|
@@ -11245,7 +11258,7 @@ var init_chat_client = __esm({
|
|
|
11245
11258
|
init_src();
|
|
11246
11259
|
init_chat_keystore();
|
|
11247
11260
|
init_web_session();
|
|
11248
|
-
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
11261
|
+
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
11249
11262
|
GH_SESSION_COOKIE3 = "__jpi_gh_session";
|
|
11250
11263
|
TERMINALHIRE_DIR14 = join18(homedir17(), ".terminalhire");
|
|
11251
11264
|
PEERS_FILE = join18(TERMINALHIRE_DIR14, "chat-peers.json");
|
|
@@ -11679,7 +11692,7 @@ var init_jpi_chat_read = __esm({
|
|
|
11679
11692
|
init_chat_client();
|
|
11680
11693
|
init_web_session();
|
|
11681
11694
|
init_jpi_chat();
|
|
11682
|
-
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
11695
|
+
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
11683
11696
|
GH_SESSION_COOKIE4 = "__jpi_gh_session";
|
|
11684
11697
|
TERMINALHIRE_DIR15 = process.env.TERMINALHIRE_DIR || join19(homedir18(), ".terminalhire");
|
|
11685
11698
|
READS_FILE = join19(TERMINALHIRE_DIR15, "chat-reads.json");
|
|
@@ -13002,7 +13015,7 @@ var init_jpi_chat = __esm({
|
|
|
13002
13015
|
init_chat_client();
|
|
13003
13016
|
init_config();
|
|
13004
13017
|
init_web_session();
|
|
13005
|
-
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
13018
|
+
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
13006
13019
|
GH_SESSION_COOKIE5 = "__jpi_gh_session";
|
|
13007
13020
|
HIDE_CURSOR2 = "\x1B[?25l";
|
|
13008
13021
|
SHOW_CURSOR2 = "\x1B[?25h";
|
|
@@ -13025,7 +13038,7 @@ var init_jpi_chat = __esm({
|
|
|
13025
13038
|
CHAT_AT_REST = "Your private key is encrypted against casual access, not full machine compromise.";
|
|
13026
13039
|
CHAT_CODE_OF_CONDUCT = "Code of conduct: keep it professional \u2014 harassment, spam, or abuse gets you blocked and removed.";
|
|
13027
13040
|
CHAT_MIN_AGE = "You must be at least 13 years old to use connections chat.";
|
|
13028
|
-
DEPOSIT_CTA = "\n Keep building together \u2014 publish your r\xE9sum\xE9 so more builders find you:\n https://
|
|
13041
|
+
DEPOSIT_CTA = "\n Keep building together \u2014 publish your r\xE9sum\xE9 so more builders find you:\n https://terminalhire.com/dashboard\n\n";
|
|
13029
13042
|
ACTIVE_WINDOW_MS = 2 * 60 * 1e3;
|
|
13030
13043
|
}
|
|
13031
13044
|
});
|
|
@@ -35722,7 +35735,7 @@ var init_link = __esm({
|
|
|
35722
35735
|
"use strict";
|
|
35723
35736
|
init_web_session();
|
|
35724
35737
|
init_config();
|
|
35725
|
-
LINK_BASE3 = "https://
|
|
35738
|
+
LINK_BASE3 = "https://terminalhire.com";
|
|
35726
35739
|
GH_SESSION_COOKIE6 = "__jpi_gh_session";
|
|
35727
35740
|
LINK_TIMEOUT_MS = 12e4;
|
|
35728
35741
|
LINKED_HTML = `<!doctype html><html><head><meta charset="utf-8"><title>terminalhire</title></head>
|
|
@@ -36749,9 +36762,12 @@ function buildTipsDetailed(topMatches, baseUrl, max = 8, opts = {}) {
|
|
|
36749
36762
|
const repo = m.repo || companyRaw;
|
|
36750
36763
|
out.push(`\u{1F48E} ${money} \xB7 ${title} \xB7 ${repo} \xB7 ${pct2}% \u2014 ${url}`);
|
|
36751
36764
|
} else if (source === "contribute") {
|
|
36752
|
-
const
|
|
36765
|
+
const repoFull = m.repo || companyRaw;
|
|
36766
|
+
const slashIdx = repoFull.indexOf("/");
|
|
36767
|
+
const repoName = slashIdx >= 0 ? repoFull.slice(slashIdx + 1) : repoFull;
|
|
36753
36768
|
const num = m.issueNumber != null ? ` #${m.issueNumber}` : "";
|
|
36754
|
-
|
|
36769
|
+
const shortUrl = `${base}/c/${contributeShortToken(String(m.id))}`;
|
|
36770
|
+
out.push(`\u2197 contribute \xB7 ${repoName}${num} \xB7 counts on your r\xE9sum\xE9 \xB7 ${pct2}% \u2014 ${shortUrl}`);
|
|
36755
36771
|
} else {
|
|
36756
36772
|
out.push(`\u2197 ${title} @ ${company} \xB7 ${pct2}% \u2014 ${url}`);
|
|
36757
36773
|
}
|
|
@@ -36809,6 +36825,7 @@ var init_spinner_render = __esm({
|
|
|
36809
36825
|
init_spinner_verbs();
|
|
36810
36826
|
init_spinner_seen();
|
|
36811
36827
|
init_spinner_io();
|
|
36828
|
+
init_src();
|
|
36812
36829
|
}
|
|
36813
36830
|
});
|
|
36814
36831
|
|
|
@@ -37410,7 +37427,7 @@ var init_jpi_sync = __esm({
|
|
|
37410
37427
|
TH_DIR2 = process.env["TERMINALHIRE_DIR"] || join28(homedir25(), ".terminalhire");
|
|
37411
37428
|
TIER1_MARKER = join28(TH_DIR2, "tier1.json");
|
|
37412
37429
|
API_URL6 = process.env["TERMINALHIRE_API_URL"] || process.env["JPI_API_URL"] || "https://terminalhire.com";
|
|
37413
|
-
SYNC_BASE = "https://
|
|
37430
|
+
SYNC_BASE = "https://terminalhire.com";
|
|
37414
37431
|
POLL_INTERVAL_MS = 2e3;
|
|
37415
37432
|
POLL_TIMEOUT_MS = 10 * 60 * 1e3;
|
|
37416
37433
|
CONSENT_VERSION = 1;
|
|
@@ -37878,7 +37895,7 @@ var init_jpi_refresh = __esm({
|
|
|
37878
37895
|
init_web_session();
|
|
37879
37896
|
GH_SESSION_COOKIE7 = "__jpi_gh_session";
|
|
37880
37897
|
__dirname4 = fileURLToPath5(new URL(".", import.meta.url));
|
|
37881
|
-
API_URL7 = process.env["TERMINALHIRE_API_URL"] ?? process.env["JPI_API_URL"] ?? "https://
|
|
37898
|
+
API_URL7 = process.env["TERMINALHIRE_API_URL"] ?? process.env["JPI_API_URL"] ?? "https://terminalhire.com";
|
|
37882
37899
|
}
|
|
37883
37900
|
});
|
|
37884
37901
|
|
package/dist/bin/jpi-inbox.js
CHANGED
|
@@ -3893,6 +3893,14 @@ var init_legible = __esm({
|
|
|
3893
3893
|
}
|
|
3894
3894
|
});
|
|
3895
3895
|
|
|
3896
|
+
// ../../packages/core/src/short-token.ts
|
|
3897
|
+
import { createHash as createHash2 } from "crypto";
|
|
3898
|
+
var init_short_token = __esm({
|
|
3899
|
+
"../../packages/core/src/short-token.ts"() {
|
|
3900
|
+
"use strict";
|
|
3901
|
+
}
|
|
3902
|
+
});
|
|
3903
|
+
|
|
3896
3904
|
// ../../packages/core/src/index.ts
|
|
3897
3905
|
var init_src = __esm({
|
|
3898
3906
|
"../../packages/core/src/index.ts"() {
|
|
@@ -3909,6 +3917,7 @@ var init_src = __esm({
|
|
|
3909
3917
|
init_chatCrypto();
|
|
3910
3918
|
init_job_status();
|
|
3911
3919
|
init_legible();
|
|
3920
|
+
init_short_token();
|
|
3912
3921
|
}
|
|
3913
3922
|
});
|
|
3914
3923
|
|
|
@@ -3920,9 +3929,9 @@ var init_keytar = __esm({
|
|
|
3920
3929
|
}
|
|
3921
3930
|
});
|
|
3922
3931
|
|
|
3923
|
-
// node-file:/Users
|
|
3932
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
3924
3933
|
var require_keytar = __commonJS({
|
|
3925
|
-
"node-file:/Users
|
|
3934
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
3926
3935
|
"use strict";
|
|
3927
3936
|
init_keytar();
|
|
3928
3937
|
try {
|
|
@@ -4295,7 +4304,7 @@ var init_chat_client = __esm({
|
|
|
4295
4304
|
init_src();
|
|
4296
4305
|
init_chat_keystore();
|
|
4297
4306
|
init_web_session();
|
|
4298
|
-
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
4307
|
+
CHAT_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
4299
4308
|
GH_SESSION_COOKIE = "__jpi_gh_session";
|
|
4300
4309
|
TERMINALHIRE_DIR3 = join5(homedir4(), ".terminalhire");
|
|
4301
4310
|
PEERS_FILE = join5(TERMINALHIRE_DIR3, "chat-peers.json");
|
|
@@ -4770,7 +4779,7 @@ var init_jpi_chat_read = __esm({
|
|
|
4770
4779
|
init_chat_client();
|
|
4771
4780
|
init_web_session();
|
|
4772
4781
|
init_jpi_chat();
|
|
4773
|
-
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
4782
|
+
CHAT_BASE2 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
4774
4783
|
GH_SESSION_COOKIE2 = "__jpi_gh_session";
|
|
4775
4784
|
TERMINALHIRE_DIR5 = process.env.TERMINALHIRE_DIR || join7(homedir6(), ".terminalhire");
|
|
4776
4785
|
READS_FILE = join7(TERMINALHIRE_DIR5, "chat-reads.json");
|
|
@@ -5629,7 +5638,7 @@ var init_jpi_chat = __esm({
|
|
|
5629
5638
|
init_chat_client();
|
|
5630
5639
|
init_config();
|
|
5631
5640
|
init_web_session();
|
|
5632
|
-
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
5641
|
+
CHAT_BASE3 = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
5633
5642
|
GH_SESSION_COOKIE3 = "__jpi_gh_session";
|
|
5634
5643
|
HIDE_CURSOR = "\x1B[?25l";
|
|
5635
5644
|
SHOW_CURSOR = "\x1B[?25h";
|
|
@@ -5652,7 +5661,7 @@ var init_jpi_chat = __esm({
|
|
|
5652
5661
|
CHAT_AT_REST = "Your private key is encrypted against casual access, not full machine compromise.";
|
|
5653
5662
|
CHAT_CODE_OF_CONDUCT = "Code of conduct: keep it professional \u2014 harassment, spam, or abuse gets you blocked and removed.";
|
|
5654
5663
|
CHAT_MIN_AGE = "You must be at least 13 years old to use connections chat.";
|
|
5655
|
-
DEPOSIT_CTA = "\n Keep building together \u2014 publish your r\xE9sum\xE9 so more builders find you:\n https://
|
|
5664
|
+
DEPOSIT_CTA = "\n Keep building together \u2014 publish your r\xE9sum\xE9 so more builders find you:\n https://terminalhire.com/dashboard\n\n";
|
|
5656
5665
|
ACTIVE_WINDOW_MS = 2 * 60 * 1e3;
|
|
5657
5666
|
}
|
|
5658
5667
|
});
|
|
@@ -6073,7 +6082,7 @@ var init_intro2 = __esm({
|
|
|
6073
6082
|
"use strict";
|
|
6074
6083
|
init_src();
|
|
6075
6084
|
init_web_session();
|
|
6076
|
-
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
6085
|
+
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
6077
6086
|
GH_SESSION_COOKIE4 = "__jpi_gh_session";
|
|
6078
6087
|
UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
6079
6088
|
}
|
package/dist/bin/jpi-intro.js
CHANGED
|
@@ -872,6 +872,14 @@ var init_legible = __esm({
|
|
|
872
872
|
}
|
|
873
873
|
});
|
|
874
874
|
|
|
875
|
+
// ../../packages/core/src/short-token.ts
|
|
876
|
+
import { createHash as createHash2 } from "crypto";
|
|
877
|
+
var init_short_token = __esm({
|
|
878
|
+
"../../packages/core/src/short-token.ts"() {
|
|
879
|
+
"use strict";
|
|
880
|
+
}
|
|
881
|
+
});
|
|
882
|
+
|
|
875
883
|
// ../../packages/core/src/index.ts
|
|
876
884
|
var init_src = __esm({
|
|
877
885
|
"../../packages/core/src/index.ts"() {
|
|
@@ -888,6 +896,7 @@ var init_src = __esm({
|
|
|
888
896
|
init_chatCrypto();
|
|
889
897
|
init_job_status();
|
|
890
898
|
init_legible();
|
|
899
|
+
init_short_token();
|
|
891
900
|
}
|
|
892
901
|
});
|
|
893
902
|
|
|
@@ -938,9 +947,9 @@ var init_keytar = __esm({
|
|
|
938
947
|
}
|
|
939
948
|
});
|
|
940
949
|
|
|
941
|
-
// node-file:/Users
|
|
950
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
942
951
|
var require_keytar = __commonJS({
|
|
943
|
-
"node-file:/Users
|
|
952
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
944
953
|
"use strict";
|
|
945
954
|
init_keytar();
|
|
946
955
|
try {
|
|
@@ -1645,7 +1654,7 @@ var init_intro2 = __esm({
|
|
|
1645
1654
|
"use strict";
|
|
1646
1655
|
init_src();
|
|
1647
1656
|
init_web_session();
|
|
1648
|
-
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://
|
|
1657
|
+
LINK_BASE = process.env["TERMINALHIRE_API_URL"] || "https://terminalhire.com";
|
|
1649
1658
|
GH_SESSION_COOKIE = "__jpi_gh_session";
|
|
1650
1659
|
UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;
|
|
1651
1660
|
}
|
package/dist/bin/jpi-jobs.js
CHANGED
|
@@ -6345,6 +6345,17 @@ var init_legible = __esm({
|
|
|
6345
6345
|
}
|
|
6346
6346
|
});
|
|
6347
6347
|
|
|
6348
|
+
// ../../packages/core/src/short-token.ts
|
|
6349
|
+
import { createHash as createHash2 } from "crypto";
|
|
6350
|
+
function contributeShortToken(id) {
|
|
6351
|
+
return createHash2("sha256").update(id, "utf8").digest("base64url").slice(0, 8);
|
|
6352
|
+
}
|
|
6353
|
+
var init_short_token = __esm({
|
|
6354
|
+
"../../packages/core/src/short-token.ts"() {
|
|
6355
|
+
"use strict";
|
|
6356
|
+
}
|
|
6357
|
+
});
|
|
6358
|
+
|
|
6348
6359
|
// ../../packages/core/src/index.ts
|
|
6349
6360
|
var src_exports = {};
|
|
6350
6361
|
__export(src_exports, {
|
|
@@ -6388,6 +6399,7 @@ __export(src_exports, {
|
|
|
6388
6399
|
composeIntroEmail: () => composeIntroEmail,
|
|
6389
6400
|
computeAcceptanceCredential: () => computeAcceptanceCredential,
|
|
6390
6401
|
computeAcceptanceCredentialPublic: () => computeAcceptanceCredentialPublic,
|
|
6402
|
+
contributeShortToken: () => contributeShortToken,
|
|
6391
6403
|
coreTagsFromTitle: () => coreTagsFromTitle,
|
|
6392
6404
|
decorate: () => decorate,
|
|
6393
6405
|
decryptMessage: () => decryptMessage,
|
|
@@ -6455,6 +6467,7 @@ var init_src = __esm({
|
|
|
6455
6467
|
init_chatCrypto();
|
|
6456
6468
|
init_job_status();
|
|
6457
6469
|
init_legible();
|
|
6470
|
+
init_short_token();
|
|
6458
6471
|
}
|
|
6459
6472
|
});
|
|
6460
6473
|
|
|
@@ -6466,9 +6479,9 @@ var init_keytar = __esm({
|
|
|
6466
6479
|
}
|
|
6467
6480
|
});
|
|
6468
6481
|
|
|
6469
|
-
// node-file:/Users
|
|
6482
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
6470
6483
|
var require_keytar = __commonJS({
|
|
6471
|
-
"node-file:/Users
|
|
6484
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
6472
6485
|
"use strict";
|
|
6473
6486
|
init_keytar();
|
|
6474
6487
|
try {
|
package/dist/bin/jpi-learn.js
CHANGED
|
@@ -861,6 +861,14 @@ var init_legible = __esm({
|
|
|
861
861
|
}
|
|
862
862
|
});
|
|
863
863
|
|
|
864
|
+
// ../../packages/core/src/short-token.ts
|
|
865
|
+
import { createHash as createHash2 } from "crypto";
|
|
866
|
+
var init_short_token = __esm({
|
|
867
|
+
"../../packages/core/src/short-token.ts"() {
|
|
868
|
+
"use strict";
|
|
869
|
+
}
|
|
870
|
+
});
|
|
871
|
+
|
|
864
872
|
// ../../packages/core/src/index.ts
|
|
865
873
|
var init_src = __esm({
|
|
866
874
|
"../../packages/core/src/index.ts"() {
|
|
@@ -877,6 +885,7 @@ var init_src = __esm({
|
|
|
877
885
|
init_chatCrypto();
|
|
878
886
|
init_job_status();
|
|
879
887
|
init_legible();
|
|
888
|
+
init_short_token();
|
|
880
889
|
}
|
|
881
890
|
});
|
|
882
891
|
|
|
@@ -1150,9 +1159,9 @@ var init_keytar = __esm({
|
|
|
1150
1159
|
}
|
|
1151
1160
|
});
|
|
1152
1161
|
|
|
1153
|
-
// node-file:/Users
|
|
1162
|
+
// node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node
|
|
1154
1163
|
var require_keytar = __commonJS({
|
|
1155
|
-
"node-file:/Users
|
|
1164
|
+
"node-file:/private/tmp/claude-501/-Users-ericgang-job-placement-inline/3ffac25b-ca95-4a86-9e17-a4cf326551de/scratchpad/rel/node_modules/keytar/build/Release/keytar.node"(exports, module) {
|
|
1156
1165
|
"use strict";
|
|
1157
1166
|
init_keytar();
|
|
1158
1167
|
try {
|
package/dist/bin/jpi-link.js
CHANGED
|
@@ -296,7 +296,7 @@ var init_link = __esm({
|
|
|
296
296
|
"use strict";
|
|
297
297
|
init_web_session();
|
|
298
298
|
init_config();
|
|
299
|
-
LINK_BASE = "https://
|
|
299
|
+
LINK_BASE = "https://terminalhire.com";
|
|
300
300
|
GH_SESSION_COOKIE = "__jpi_gh_session";
|
|
301
301
|
LINK_TIMEOUT_MS = 12e4;
|
|
302
302
|
LINKED_HTML = `<!doctype html><html><head><meta charset="utf-8"><title>terminalhire</title></head>
|