@cotal-ai/connector-codex 0.29.0 → 0.29.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/dist/host.js +5 -2
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/host.js
CHANGED
|
@@ -43827,6 +43827,9 @@ function isPublishPermissionDenied(e) {
|
|
|
43827
43827
|
function wsServers(servers) {
|
|
43828
43828
|
return /^wss?:\/\//i.test((servers.split(",")[0] ?? "").trim());
|
|
43829
43829
|
}
|
|
43830
|
+
function defaultProbeTimeoutMs(servers) {
|
|
43831
|
+
return wsServers(servers) ? 5e3 : 1e3;
|
|
43832
|
+
}
|
|
43830
43833
|
function dialerFor(servers) {
|
|
43831
43834
|
if (!wsServers(servers))
|
|
43832
43835
|
return import_transport_node14.connect;
|
|
@@ -43872,7 +43875,7 @@ function tcpDialable(server, timeoutMs) {
|
|
|
43872
43875
|
});
|
|
43873
43876
|
}
|
|
43874
43877
|
async function probeConnect(server = DEFAULT_SERVER, opts = {}) {
|
|
43875
|
-
const timeoutMs = opts.timeoutMs ??
|
|
43878
|
+
const timeoutMs = opts.timeoutMs ?? defaultProbeTimeoutMs(server);
|
|
43876
43879
|
const started = Date.now();
|
|
43877
43880
|
if (!await tcpDialable(server, timeoutMs))
|
|
43878
43881
|
return classifyProbeFailure(void 0, opts);
|
|
@@ -62056,7 +62059,7 @@ config(en_default());
|
|
|
62056
62059
|
|
|
62057
62060
|
// ../connector-core/dist/docs-bundle.generated.js
|
|
62058
62061
|
var DOCS_BUNDLE = {
|
|
62059
|
-
"version": "0.29.
|
|
62062
|
+
"version": "0.29.2",
|
|
62060
62063
|
"generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
|
|
62061
62064
|
"pages": [
|
|
62062
62065
|
{
|
package/dist/index.js
CHANGED
|
@@ -14831,7 +14831,7 @@ import { isConcreteChannel as isConcreteChannel3, channelInAllow as channelInAll
|
|
|
14831
14831
|
|
|
14832
14832
|
// ../connector-core/dist/docs-bundle.generated.js
|
|
14833
14833
|
var DOCS_BUNDLE = {
|
|
14834
|
-
"version": "0.29.
|
|
14834
|
+
"version": "0.29.2",
|
|
14835
14835
|
"generatedFrom": "docs/*.md + SPEC.md + spec/cotal-lang.md + spec/cotal.schema.json",
|
|
14836
14836
|
"pages": [
|
|
14837
14837
|
{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cotal-ai/connector-codex",
|
|
3
3
|
"description": "Cotal connector for OpenAI Codex: a host-mode peer driving codex app-server, with Codex's own TUI attached and the cotal_* tools served over a loopback MCP endpoint.",
|
|
4
|
-
"version": "0.29.
|
|
4
|
+
"version": "0.29.2",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"tsx": "^4.22.4",
|
|
28
28
|
"ws": "^8.21.0",
|
|
29
29
|
"zod": "^4.4.3",
|
|
30
|
-
"@cotal-ai/
|
|
31
|
-
"@cotal-ai/
|
|
32
|
-
"@cotal-ai/
|
|
30
|
+
"@cotal-ai/smoke-kit": "0.0.0",
|
|
31
|
+
"@cotal-ai/core": "0.29.2",
|
|
32
|
+
"@cotal-ai/connector-core": "0.29.2"
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
35
35
|
"dist"
|