zephex 2.0.14 → 2.0.15
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/index.js +19831 -11881
- package/dist/tools/architecture/index.js +5 -2
- package/dist/tools/context/index.js +5 -2
- package/dist/tools/reader/readCode.js +1012 -107
- package/dist/tools/scope_task/index.js +54 -4
- package/dist/tools/search/findCode.js +66 -7
- package/dist/tools/server.js +1072 -141
- package/dist/tools/thinking/index.js +5 -2
- package/package.json +2 -1
|
@@ -197388,10 +197388,13 @@ function getSupabaseClient() {
|
|
|
197388
197388
|
},
|
|
197389
197389
|
global: {
|
|
197390
197390
|
fetch: (url3, options = {}) => {
|
|
197391
|
+
const controller = new AbortController;
|
|
197392
|
+
const timeout = setTimeout(() => controller.abort(), 8000);
|
|
197391
197393
|
return fetch(url3, {
|
|
197392
197394
|
...options,
|
|
197393
|
-
keepalive: true
|
|
197394
|
-
|
|
197395
|
+
keepalive: true,
|
|
197396
|
+
signal: controller.signal
|
|
197397
|
+
}).finally(() => clearTimeout(timeout));
|
|
197395
197398
|
},
|
|
197396
197399
|
headers: {
|
|
197397
197400
|
Connection: "keep-alive",
|
|
@@ -34436,10 +34436,13 @@ function getSupabaseClient() {
|
|
|
34436
34436
|
},
|
|
34437
34437
|
global: {
|
|
34438
34438
|
fetch: (url3, options = {}) => {
|
|
34439
|
+
const controller = new AbortController;
|
|
34440
|
+
const timeout = setTimeout(() => controller.abort(), 8000);
|
|
34439
34441
|
return fetch(url3, {
|
|
34440
34442
|
...options,
|
|
34441
|
-
keepalive: true
|
|
34442
|
-
|
|
34443
|
+
keepalive: true,
|
|
34444
|
+
signal: controller.signal
|
|
34445
|
+
}).finally(() => clearTimeout(timeout));
|
|
34443
34446
|
},
|
|
34444
34447
|
headers: {
|
|
34445
34448
|
Connection: "keep-alive",
|