omnius 1.0.311 → 1.0.313

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 CHANGED
@@ -556271,6 +556271,37 @@ function nowIso2(now2 = /* @__PURE__ */ new Date()) {
556271
556271
  function cleanText(value2, max = 600) {
556272
556272
  return String(value2 ?? "").replace(/\s+/g, " ").trim().slice(0, max);
556273
556273
  }
556274
+ function convertPipesToUnicode(text2) {
556275
+ return text2.replace(/\|/g, "│");
556276
+ }
556277
+ function wrapText(text2, width = 120) {
556278
+ const lines = text2.split("\n");
556279
+ const wrapped = [];
556280
+ for (const line of lines) {
556281
+ if (line.length <= width) {
556282
+ wrapped.push(line);
556283
+ continue;
556284
+ }
556285
+ const words = line.split(/\s+/);
556286
+ let current = "";
556287
+ for (const word2 of words) {
556288
+ if (current.length === 0) {
556289
+ current = word2;
556290
+ } else if (current.length + 1 + word2.length <= width) {
556291
+ current += " " + word2;
556292
+ } else {
556293
+ wrapped.push(current);
556294
+ current = word2;
556295
+ }
556296
+ }
556297
+ if (current.length > 0)
556298
+ wrapped.push(current);
556299
+ }
556300
+ return wrapped.join("\n");
556301
+ }
556302
+ function formatEvidenceSummary(summary) {
556303
+ return wrapText(convertPipesToUnicode(summary), 120);
556304
+ }
556274
556305
  function nextId2(prefix, count) {
556275
556306
  return `${prefix}_${String(count + 1).padStart(4, "0")}`;
556276
556307
  }
@@ -556421,7 +556452,7 @@ function buildCriticPacketFromLedger(ledger) {
556421
556452
  lines.push("- none recorded");
556422
556453
  for (const evidence of ledger.evidence.slice(-40)) {
556423
556454
  const status = evidence.success === true ? "ok" : evidence.success === false ? "failed" : "unknown";
556424
- lines.push(`- ${evidence.id} [${status}] ${evidence.kind}${evidence.toolName ? `/${evidence.toolName}` : ""}: ${evidence.summary}`);
556455
+ lines.push(`- ${evidence.id} [${status}] ${evidence.kind}${evidence.toolName ? `/${evidence.toolName}` : ""}: ${formatEvidenceSummary(evidence.summary)}`);
556425
556456
  }
556426
556457
  if (latestCritique) {
556427
556458
  lines.push("");
@@ -556436,7 +556467,7 @@ function buildCriticPacketFromLedger(ledger) {
556436
556467
  lines.push("- none recorded");
556437
556468
  for (const evidence of evidenceSinceCritique) {
556438
556469
  const status = evidence.success === true ? "ok" : evidence.success === false ? "failed" : "unknown";
556439
- lines.push(`- ${evidence.id} [${status}] ${evidence.summary}`);
556470
+ lines.push(`- ${evidence.id} [${status}] ${formatEvidenceSummary(evidence.summary)}`);
556440
556471
  }
556441
556472
  }
556442
556473
  if (ledger.unresolved.length > 0) {
@@ -580754,12 +580785,18 @@ ${result}`
580754
580785
  return true;
580755
580786
  if (/model is loading|server busy|overloaded/i.test(msg))
580756
580787
  return true;
580788
+ if (this.isGpuSlotUnavailableError(err))
580789
+ return true;
580757
580790
  if (/multiaddrs failed|all multiaddrs failed|dial to peer failed|stream was reset|Cannot reach peer/i.test(msg))
580758
580791
  return true;
580759
580792
  if (/NATS.*timeout|relay.*timeout|invoke.*timeout/i.test(msg))
580760
580793
  return true;
580761
580794
  return false;
580762
580795
  }
580796
+ isGpuSlotUnavailableError(err) {
580797
+ const msg = err instanceof Error ? err.message : String(err);
580798
+ return /No GPU slot available after 30s\. All slots occupied\./i.test(msg);
580799
+ }
580763
580800
  /** Detect 402 payment-required errors that should trigger key rotation */
580764
580801
  isPaymentRequiredError(err) {
580765
580802
  const msg = err instanceof Error ? err.message : String(err);
@@ -580967,16 +581004,18 @@ ${description}`
580967
581004
  return true;
580968
581005
  }
580969
581006
  /**
580970
- * Retry a failed model request up to 3 times with exponential backoff.
580971
- * Returns the response on success, or null if all retries failed.
581007
+ * Retry a failed model request. Network outages and GPU slot saturation wait
581008
+ * until recovery; other transient backend errors use bounded backoff.
581009
+ * Returns the response on success, or null if recovery did not apply.
580972
581010
  */
580973
581011
  async retryOnTransient(initialErr, chatRequest, turn) {
580974
581012
  if (!this.isTransientError(initialErr))
580975
581013
  return null;
580976
581014
  const errMsg = initialErr instanceof Error ? initialErr.message : String(initialErr);
580977
581015
  const isNetworkError2 = /fetch failed|ECONNREFUSED|ECONNRESET|ETIMEDOUT|socket hang up/i.test(errMsg);
580978
- const maxRetries = isNetworkError2 ? Infinity : 3;
580979
- const baseDelayMs = isNetworkError2 ? 5e3 : 3e3;
581016
+ const isGpuSlotUnavailable = this.isGpuSlotUnavailableError(initialErr);
581017
+ const maxRetries = isNetworkError2 || isGpuSlotUnavailable ? Infinity : 3;
581018
+ const baseDelayMs = isGpuSlotUnavailable ? 1e3 : isNetworkError2 ? 5e3 : 3e3;
580980
581019
  const maxDelayMs = 6e4;
580981
581020
  const backend = this.backend;
580982
581021
  let attempt = 1;
@@ -581014,13 +581053,21 @@ ${description}`
581014
581053
  return null;
581015
581054
  }
581016
581055
  }
581017
- const delay3 = Math.min(baseDelayMs * Math.pow(2, attempt - 1), maxDelayMs);
581056
+ const delay3 = isGpuSlotUnavailable ? baseDelayMs : Math.min(baseDelayMs * Math.pow(2, attempt - 1), maxDelayMs);
581018
581057
  const attemptLabel = maxRetries === Infinity ? `${attempt}` : `${attempt}/${maxRetries}`;
581019
- this.emit({
581020
- type: "status",
581021
- content: `Backend error — retrying in ${(delay3 / 1e3).toFixed(0)}s (attempt ${attemptLabel})`,
581022
- timestamp: (/* @__PURE__ */ new Date()).toISOString()
581023
- });
581058
+ if (isGpuSlotUnavailable) {
581059
+ this.emit({
581060
+ type: "status",
581061
+ content: `Waiting for free GPU${".".repeat(attempt + 2)}`,
581062
+ timestamp: (/* @__PURE__ */ new Date()).toISOString()
581063
+ });
581064
+ } else {
581065
+ this.emit({
581066
+ type: "status",
581067
+ content: `Backend error — retrying in ${(delay3 / 1e3).toFixed(0)}s (attempt ${attemptLabel})`,
581068
+ timestamp: (/* @__PURE__ */ new Date()).toISOString()
581069
+ });
581070
+ }
581024
581071
  await new Promise((r2) => setTimeout(r2, delay3));
581025
581072
  if (this.aborted)
581026
581073
  return null;
@@ -581028,7 +581075,7 @@ ${description}`
581028
581075
  const response = this.options.streamEnabled && this.hasStreamingSupport() ? await this.streamingRequest(chatRequest, turn) : await this.backend.chatCompletion(chatRequest);
581029
581076
  this.emit({
581030
581077
  type: "status",
581031
- content: `Backend recovered on attempt ${attempt}`,
581078
+ content: isGpuSlotUnavailable ? "GPU Free, Resuming" : `Backend recovered on attempt ${attempt}`,
581032
581079
  timestamp: (/* @__PURE__ */ new Date()).toISOString()
581033
581080
  });
581034
581081
  return response;
@@ -610371,7 +610418,7 @@ ${CONTENT_BG_SEQ}`);
610371
610418
  // amber — cohere
610372
610419
  });
610373
610420
  }
610374
- const tokInRaw = m2.promptTokens > 0 ? m2.promptTokens : Math.max(m2.estimatedContextTokens, 0);
610421
+ const tokInRaw = m2.promptTokens > 0 ? m2.promptTokens + (this.isStreaming ? this._streamingTokens : 0) : Math.max(m2.estimatedContextTokens, 0);
610375
610422
  const effectiveOut = this.effectiveCompletionTokens;
610376
610423
  const tokOutRaw = effectiveOut > 0 ? effectiveOut : Math.ceil(
610377
610424
  m2.totalTokens > 0 ? m2.totalTokens - m2.promptTokens : m2.estimatedContextTokens * 0.3
@@ -613300,7 +613347,7 @@ import { promisify as promisify6 } from "node:util";
613300
613347
  import { existsSync as existsSync112, writeFileSync as writeFileSync58, readFileSync as readFileSync93, appendFileSync as appendFileSync10, mkdirSync as mkdirSync67 } from "node:fs";
613301
613348
  import { join as join127 } from "node:path";
613302
613349
  import { homedir as homedir41, platform as platform5 } from "node:os";
613303
- function wrapText(value2, width) {
613350
+ function wrapText2(value2, width) {
613304
613351
  const words = value2.split(/\s+/).filter(Boolean);
613305
613352
  const lines = [];
613306
613353
  let line = "";
@@ -614745,7 +614792,7 @@ ${c3.cyan(OMNIUS_FIRST_RUN_BANNER)}
614745
614792
  };
614746
614793
  const boxWrappedDimLine = (content, indent = " ") => {
614747
614794
  const formatted = formatMarkdownBlock(content);
614748
- const lines = wrapText(formatted, Math.max(1, boxW - visibleLen2(indent)));
614795
+ const lines = wrapText2(formatted, Math.max(1, boxW - visibleLen2(indent)));
614749
614796
  for (const line of lines) {
614750
614797
  process.stdout.write(boxLine(`${indent}${c3.dim(line)}`));
614751
614798
  }
@@ -705577,6 +705624,68 @@ ${entry.fullContent}`
705577
705624
  }, 33);
705578
705625
  liveShellBlock.repaintTimer.unref?.();
705579
705626
  };
705627
+ let gpuRecoveryBlock = null;
705628
+ const buildGpuRecoveryBlockLines = (state, width) => {
705629
+ if (state.done) return [`${c3.dim("∙")} ${c3.dim("GPU Free, Resuming")}`];
705630
+ const label = "Waiting for free GPU";
705631
+ const maxDots = Math.max(3, width - label.length - 4);
705632
+ const text2 = `${label}${".".repeat(Math.min(state.dots, maxDots))}`;
705633
+ return [`${c3.dim("∙")} ${c3.dim(text2)}`];
705634
+ };
705635
+ const stopGpuRecoveryTimer = (state = gpuRecoveryBlock) => {
705636
+ if (!state?.timer) return;
705637
+ clearInterval(state.timer);
705638
+ state.timer = null;
705639
+ };
705640
+ const startGpuRecoveryBlock = (initialDots) => {
705641
+ if (!statusBar?.isActive || isNeovimActive() || isOverlayActive()) {
705642
+ return false;
705643
+ }
705644
+ let state = gpuRecoveryBlock;
705645
+ if (!state || state.done) {
705646
+ const id = `gpu-recovery-${Date.now()}-${Math.random().toString(36).slice(2, 8)}`;
705647
+ state = {
705648
+ id,
705649
+ dots: Math.max(3, initialDots),
705650
+ done: false,
705651
+ timer: null
705652
+ };
705653
+ gpuRecoveryBlock = state;
705654
+ statusBar.registerDynamicBlock(
705655
+ id,
705656
+ (width) => buildGpuRecoveryBlockLines(state, width)
705657
+ );
705658
+ statusBar.appendDynamicBlock(id);
705659
+ } else {
705660
+ state.dots = Math.max(state.dots, initialDots, 3);
705661
+ statusBar.refreshDisplay();
705662
+ }
705663
+ if (!state.timer) {
705664
+ state.timer = setInterval(() => {
705665
+ if (state.done) {
705666
+ stopGpuRecoveryTimer(state);
705667
+ return;
705668
+ }
705669
+ state.dots += 1;
705670
+ if (statusBar?.isActive && !isNeovimActive() && !isOverlayActive()) {
705671
+ statusBar.refreshDisplay();
705672
+ }
705673
+ }, 1e3);
705674
+ state.timer.unref?.();
705675
+ }
705676
+ return true;
705677
+ };
705678
+ const finishGpuRecoveryBlock = () => {
705679
+ const state = gpuRecoveryBlock;
705680
+ if (!state) return false;
705681
+ state.done = true;
705682
+ stopGpuRecoveryTimer(state);
705683
+ if (!statusBar?.isActive || isNeovimActive() || isOverlayActive()) {
705684
+ return false;
705685
+ }
705686
+ statusBar.refreshDisplay();
705687
+ return true;
705688
+ };
705580
705689
  runner.onEvent((event) => {
705581
705690
  emotionEngine?.appraise(event);
705582
705691
  switch (event.type) {
@@ -705933,7 +706042,19 @@ ${entry.fullContent}`
705933
706042
  scheduleLiveShellRepaint();
705934
706043
  break;
705935
706044
  }
705936
- if (!config.debug) break;
706045
+ const statusContent = event.content ?? "";
706046
+ const gpuWaitingStatus = /^Waiting for free GPU\.{3,}$/.test(
706047
+ statusContent
706048
+ );
706049
+ const gpuResumeStatus = statusContent === "GPU Free, Resuming";
706050
+ if (gpuWaitingStatus) {
706051
+ const dotCount = statusContent.match(/\.+$/)?.[0]?.length ?? 3;
706052
+ if (startGpuRecoveryBlock(dotCount)) break;
706053
+ } else if (gpuResumeStatus && finishGpuRecoveryBlock()) {
706054
+ break;
706055
+ }
706056
+ const gpuRecoveryStatus = gpuWaitingStatus || gpuResumeStatus;
706057
+ if (!config.debug && !gpuRecoveryStatus) break;
705937
706058
  if (isNeovimActive()) {
705938
706059
  writeToNeovimOutput(
705939
706060
  `\x1B[38;5;250m${event.content ?? ""}\x1B[0m\r
@@ -706514,6 +706635,7 @@ When done, either call task_complete with your answer, or use FINAL_VAR(variable
706514
706635
  } catch {
706515
706636
  }
706516
706637
  }
706638
+ stopGpuRecoveryTimer();
706517
706639
  if (backend && typeof backend.stop === "function") {
706518
706640
  backend.stop();
706519
706641
  }
@@ -706526,7 +706648,9 @@ When done, either call task_complete with your answer, or use FINAL_VAR(variable
706526
706648
  }
706527
706649
  }
706528
706650
  )
706529
- );
706651
+ ).finally(() => {
706652
+ stopGpuRecoveryTimer();
706653
+ });
706530
706654
  return {
706531
706655
  runner,
706532
706656
  promise,
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.311",
3
+ "version": "1.0.313",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.311",
9
+ "version": "1.0.313",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
@@ -704,9 +704,9 @@
704
704
  }
705
705
  },
706
706
  "node_modules/@libp2p/http-fetch": {
707
- "version": "4.0.2",
708
- "resolved": "https://registry.npmjs.org/@libp2p/http-fetch/-/http-fetch-4.0.2.tgz",
709
- "integrity": "sha512-fpUfevPjinWgEit+NO7LcYPH2of0pv+qHfznB0zchwJr1ngpb5EBzk4IqU8xCkO3LkdObKAxwz9fvrQvAFxUXA==",
707
+ "version": "4.0.3",
708
+ "resolved": "https://registry.npmjs.org/@libp2p/http-fetch/-/http-fetch-4.0.3.tgz",
709
+ "integrity": "sha512-JyjwtiQirLLlGRV6gb9kgJlsP3byiDbcp0IfzG3sbKEfbc1grTEqqlFFCXSfG/bqcBT0/Hk/MGCFT5KXzINzkA==",
710
710
  "license": "Apache-2.0 OR MIT",
711
711
  "dependencies": {
712
712
  "@achingbrain/http-parser-js": "^0.5.9",
@@ -716,9 +716,9 @@
716
716
  }
717
717
  },
718
718
  "node_modules/@libp2p/http-peer-id-auth": {
719
- "version": "2.0.1",
720
- "resolved": "https://registry.npmjs.org/@libp2p/http-peer-id-auth/-/http-peer-id-auth-2.0.1.tgz",
721
- "integrity": "sha512-CKXuhHQ4+lxBEZkAdXPsSBMU2N9ajPEo+zX7Yj32NXjRjlRkoRCQBwpUtW/GzJVG0bgxp4bDRqFsMJjKpBM4CQ==",
719
+ "version": "2.0.2",
720
+ "resolved": "https://registry.npmjs.org/@libp2p/http-peer-id-auth/-/http-peer-id-auth-2.0.2.tgz",
721
+ "integrity": "sha512-db2f81mF5Dn/AcEkRmVlSSSSbu8BCXul2zuZtDQZwpBcH5RfF4eAe3SK+GG9r1SLxxPtrVdcYWgN6ywEVzOaUw==",
722
722
  "license": "Apache-2.0 OR MIT",
723
723
  "dependencies": {
724
724
  "@libp2p/crypto": "^5.1.15",
@@ -729,30 +729,54 @@
729
729
  }
730
730
  },
731
731
  "node_modules/@libp2p/http-utils": {
732
- "version": "2.0.2",
733
- "resolved": "https://registry.npmjs.org/@libp2p/http-utils/-/http-utils-2.0.2.tgz",
734
- "integrity": "sha512-Fx+C3hqSv7Y+lc41kUXVuiLqBWv8j3OWWdOf0R6og61pOS97/GJeDj5uAFHbCZxr2RNihhnpi8OjJ8b/bAJJmw==",
732
+ "version": "2.0.5",
733
+ "resolved": "https://registry.npmjs.org/@libp2p/http-utils/-/http-utils-2.0.5.tgz",
734
+ "integrity": "sha512-7+CYWM0MxjbVbPdCIn3SOjgxhoJpPlimLtoquIdeQC2xq4Y+d1NYqS5Ii2fbrWIwEPiJauuGxBgUs0Rz29wYGQ==",
735
735
  "license": "Apache-2.0 OR MIT",
736
736
  "dependencies": {
737
737
  "@achingbrain/http-parser-js": "^0.5.9",
738
738
  "@libp2p/interface": "^3.2.0",
739
739
  "@libp2p/peer-id": "^6.0.6",
740
740
  "@libp2p/utils": "^7.0.15",
741
- "@multiformats/multiaddr": "^13.0.1",
741
+ "@multiformats/multiaddr": "^13.0.3",
742
742
  "@multiformats/multiaddr-to-uri": "^12.0.0",
743
743
  "@multiformats/uri-to-multiaddr": "^10.0.0",
744
744
  "it-to-browser-readablestream": "^2.0.14",
745
- "multiformats": "^13.4.2",
745
+ "multiformats": "^14.0.0",
746
746
  "race-event": "^1.6.1",
747
747
  "readable-stream": "^4.7.0",
748
- "uint8arraylist": "^2.4.8",
748
+ "uint8arraylist": "^3.0.2",
749
749
  "uint8arrays": "^5.1.0"
750
750
  }
751
751
  },
752
+ "node_modules/@libp2p/http-utils/node_modules/multiformats": {
753
+ "version": "14.0.0",
754
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
755
+ "integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
756
+ "license": "Apache-2.0 OR MIT"
757
+ },
758
+ "node_modules/@libp2p/http-utils/node_modules/uint8arraylist": {
759
+ "version": "3.0.2",
760
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
761
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
762
+ "license": "Apache-2.0 OR MIT",
763
+ "dependencies": {
764
+ "uint8arrays": "^6.0.0"
765
+ }
766
+ },
767
+ "node_modules/@libp2p/http-utils/node_modules/uint8arraylist/node_modules/uint8arrays": {
768
+ "version": "6.1.1",
769
+ "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
770
+ "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
771
+ "license": "Apache-2.0 OR MIT",
772
+ "dependencies": {
773
+ "multiformats": "^14.0.0"
774
+ }
775
+ },
752
776
  "node_modules/@libp2p/http-websocket": {
753
- "version": "2.0.2",
754
- "resolved": "https://registry.npmjs.org/@libp2p/http-websocket/-/http-websocket-2.0.2.tgz",
755
- "integrity": "sha512-wPvosBSHAkbX9yi8NCFout9y7pamyT8nOEVZkjPhBBuIHerI6Q21NFopavtq+xLht+WOPcwJkEcNs/sFqABs4g==",
777
+ "version": "2.0.3",
778
+ "resolved": "https://registry.npmjs.org/@libp2p/http-websocket/-/http-websocket-2.0.3.tgz",
779
+ "integrity": "sha512-irUeCm0k1GcO4EgaRLm18O45Fk4vTLckp1T/kReQ5tgDUBpENaNWBvYnSHqKtJZXGO1329RJZ186xo2BIX2DOg==",
756
780
  "license": "Apache-2.0 OR MIT",
757
781
  "dependencies": {
758
782
  "@achingbrain/http-parser-js": "^0.5.9",
@@ -760,13 +784,37 @@
760
784
  "@libp2p/interface": "^3.2.0",
761
785
  "@libp2p/interface-internal": "^3.1.0",
762
786
  "@libp2p/utils": "^7.0.15",
763
- "@multiformats/multiaddr": "^13.0.1",
764
- "multiformats": "^13.4.2",
787
+ "@multiformats/multiaddr": "^13.0.3",
788
+ "multiformats": "^14.0.0",
765
789
  "race-event": "^1.6.1",
766
- "uint8arraylist": "^2.4.8",
790
+ "uint8arraylist": "^3.0.2",
767
791
  "uint8arrays": "^5.1.0"
768
792
  }
769
793
  },
794
+ "node_modules/@libp2p/http-websocket/node_modules/multiformats": {
795
+ "version": "14.0.0",
796
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
797
+ "integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
798
+ "license": "Apache-2.0 OR MIT"
799
+ },
800
+ "node_modules/@libp2p/http-websocket/node_modules/uint8arraylist": {
801
+ "version": "3.0.2",
802
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
803
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
804
+ "license": "Apache-2.0 OR MIT",
805
+ "dependencies": {
806
+ "uint8arrays": "^6.0.0"
807
+ }
808
+ },
809
+ "node_modules/@libp2p/http-websocket/node_modules/uint8arraylist/node_modules/uint8arrays": {
810
+ "version": "6.1.1",
811
+ "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
812
+ "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
813
+ "license": "Apache-2.0 OR MIT",
814
+ "dependencies": {
815
+ "multiformats": "^14.0.0"
816
+ }
817
+ },
770
818
  "node_modules/@libp2p/http/node_modules/cookie": {
771
819
  "version": "1.1.1",
772
820
  "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
@@ -965,19 +1013,19 @@
965
1013
  }
966
1014
  },
967
1015
  "node_modules/@libp2p/peer-record": {
968
- "version": "9.0.11",
969
- "resolved": "https://registry.npmjs.org/@libp2p/peer-record/-/peer-record-9.0.11.tgz",
970
- "integrity": "sha512-8bRt7mOXdFmiGpNNziytrX0rhj9uUBjv8SRZt/tuPvLKn3LUl9M6Z9e2atX0Cai2UENw7T8IR3AE/cVaunjgxA==",
1016
+ "version": "9.0.12",
1017
+ "resolved": "https://registry.npmjs.org/@libp2p/peer-record/-/peer-record-9.0.12.tgz",
1018
+ "integrity": "sha512-tYGHo9gSO1ZqQripsEtpzxMrWDnmCMgFe8c1TKcml8dZUBCAsM9k5js25RKb0HA1aqZ2VX54XPFazpbjVs3tow==",
971
1019
  "license": "Apache-2.0 OR MIT",
972
1020
  "dependencies": {
973
- "@libp2p/crypto": "^5.1.19",
974
- "@libp2p/interface": "^3.2.3",
975
- "@libp2p/peer-id": "^6.0.10",
1021
+ "@libp2p/crypto": "^5.1.20",
1022
+ "@libp2p/interface": "^3.2.4",
1023
+ "@libp2p/peer-id": "^6.0.11",
976
1024
  "@multiformats/multiaddr": "^13.0.3",
977
1025
  "multiformats": "^14.0.0",
978
- "protons-runtime": "^6.0.1",
979
- "uint8-varint": "^2.0.4",
980
- "uint8arraylist": "^2.4.8",
1026
+ "protons-runtime": "^7.0.0",
1027
+ "uint8-varint": "^3.0.0",
1028
+ "uint8arraylist": "^3.0.2",
981
1029
  "uint8arrays": "^6.1.1"
982
1030
  }
983
1031
  },
@@ -988,29 +1036,33 @@
988
1036
  "license": "Apache-2.0 OR MIT"
989
1037
  },
990
1038
  "node_modules/@libp2p/peer-record/node_modules/protons-runtime": {
991
- "version": "6.0.2",
992
- "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-6.0.2.tgz",
993
- "integrity": "sha512-hiyjyANwGcgmzc+tXc1/ZcSZhKnl5MDjaVNWkISHBgadaU0sjTgKIKZMZ62d9J9zlSTyKHCs/osPkQ/3Z+7yeA==",
1039
+ "version": "7.0.0",
1040
+ "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-7.0.0.tgz",
1041
+ "integrity": "sha512-r/e72006xoVND4Uvf1aIs4OQOkJaASBU3ip4DzOWAktoKAkTiOYqKoS3TYMBm8HnnYU8+h0uEzr5gIRwk/pmTg==",
994
1042
  "license": "Apache-2.0 OR MIT",
995
1043
  "dependencies": {
996
- "uint8-varint": "^2.0.4",
997
- "uint8arraylist": "^2.4.8",
998
- "uint8arrays": "^5.1.0"
1044
+ "uint8-varint": "^3.0.0",
1045
+ "uint8arraylist": "^3.0.0",
1046
+ "uint8arrays": "^6.0.0"
999
1047
  }
1000
1048
  },
1001
- "node_modules/@libp2p/peer-record/node_modules/protons-runtime/node_modules/multiformats": {
1002
- "version": "13.4.2",
1003
- "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-13.4.2.tgz",
1004
- "integrity": "sha512-eh6eHCrRi1+POZ3dA+Dq1C6jhP1GNtr9CRINMb67OKzqW9I5DUuZM/3jLPlzhgpGeiNUlEGEbkCYChXMCc/8DQ==",
1005
- "license": "Apache-2.0 OR MIT"
1049
+ "node_modules/@libp2p/peer-record/node_modules/uint8-varint": {
1050
+ "version": "3.0.0",
1051
+ "resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
1052
+ "integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
1053
+ "license": "Apache-2.0 OR MIT",
1054
+ "dependencies": {
1055
+ "uint8arraylist": "^3.0.1",
1056
+ "uint8arrays": "^6.1.0"
1057
+ }
1006
1058
  },
1007
- "node_modules/@libp2p/peer-record/node_modules/protons-runtime/node_modules/uint8arrays": {
1008
- "version": "5.1.1",
1009
- "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-5.1.1.tgz",
1010
- "integrity": "sha512-9muQwa4wZG4dKi9gMAIBtnk2Pw87SRpvWTH6lOGm19V2Uqxr4uomUf2PGqPnWc+qs06sN8owUU4jfcoWOcfwVQ==",
1059
+ "node_modules/@libp2p/peer-record/node_modules/uint8arraylist": {
1060
+ "version": "3.0.2",
1061
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
1062
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
1011
1063
  "license": "Apache-2.0 OR MIT",
1012
1064
  "dependencies": {
1013
- "multiformats": "^13.0.0"
1065
+ "uint8arrays": "^6.0.0"
1014
1066
  }
1015
1067
  },
1016
1068
  "node_modules/@libp2p/peer-record/node_modules/uint8arrays": {
@@ -1077,34 +1129,50 @@
1077
1129
  }
1078
1130
  },
1079
1131
  "node_modules/@libp2p/record": {
1080
- "version": "4.0.13",
1081
- "resolved": "https://registry.npmjs.org/@libp2p/record/-/record-4.0.13.tgz",
1082
- "integrity": "sha512-f3kUWL09E7mNdIDOqClOimEURQFwYP9Zo8Ozpstk4BDCGf+8IJOe9X6s/Fs+eQMXrCo1PiS/kHT0xs65YR2OHg==",
1132
+ "version": "4.0.14",
1133
+ "resolved": "https://registry.npmjs.org/@libp2p/record/-/record-4.0.14.tgz",
1134
+ "integrity": "sha512-YObHdE1dkAiVDPR+YHIFcCD5YMppP0lj2shnMj0L5PgLka8lnZgaY5AjiQo+DMvLFhRvNIMHyxlE9WQUbrM1wA==",
1083
1135
  "license": "Apache-2.0 OR MIT",
1084
1136
  "dependencies": {
1085
- "protons-runtime": "^6.0.1",
1086
- "uint8arraylist": "^2.4.8",
1137
+ "protons-runtime": "^7.0.0",
1138
+ "uint8arraylist": "^3.0.2",
1087
1139
  "uint8arrays": "^6.1.1"
1088
1140
  }
1089
1141
  },
1142
+ "node_modules/@libp2p/record/node_modules/multiformats": {
1143
+ "version": "14.0.0",
1144
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
1145
+ "integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
1146
+ "license": "Apache-2.0 OR MIT"
1147
+ },
1090
1148
  "node_modules/@libp2p/record/node_modules/protons-runtime": {
1091
- "version": "6.0.2",
1092
- "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-6.0.2.tgz",
1093
- "integrity": "sha512-hiyjyANwGcgmzc+tXc1/ZcSZhKnl5MDjaVNWkISHBgadaU0sjTgKIKZMZ62d9J9zlSTyKHCs/osPkQ/3Z+7yeA==",
1149
+ "version": "7.0.0",
1150
+ "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-7.0.0.tgz",
1151
+ "integrity": "sha512-r/e72006xoVND4Uvf1aIs4OQOkJaASBU3ip4DzOWAktoKAkTiOYqKoS3TYMBm8HnnYU8+h0uEzr5gIRwk/pmTg==",
1094
1152
  "license": "Apache-2.0 OR MIT",
1095
1153
  "dependencies": {
1096
- "uint8-varint": "^2.0.4",
1097
- "uint8arraylist": "^2.4.8",
1098
- "uint8arrays": "^5.1.0"
1154
+ "uint8-varint": "^3.0.0",
1155
+ "uint8arraylist": "^3.0.0",
1156
+ "uint8arrays": "^6.0.0"
1099
1157
  }
1100
1158
  },
1101
- "node_modules/@libp2p/record/node_modules/protons-runtime/node_modules/uint8arrays": {
1102
- "version": "5.1.1",
1103
- "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-5.1.1.tgz",
1104
- "integrity": "sha512-9muQwa4wZG4dKi9gMAIBtnk2Pw87SRpvWTH6lOGm19V2Uqxr4uomUf2PGqPnWc+qs06sN8owUU4jfcoWOcfwVQ==",
1159
+ "node_modules/@libp2p/record/node_modules/uint8-varint": {
1160
+ "version": "3.0.0",
1161
+ "resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
1162
+ "integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
1105
1163
  "license": "Apache-2.0 OR MIT",
1106
1164
  "dependencies": {
1107
- "multiformats": "^13.0.0"
1165
+ "uint8arraylist": "^3.0.1",
1166
+ "uint8arrays": "^6.1.0"
1167
+ }
1168
+ },
1169
+ "node_modules/@libp2p/record/node_modules/uint8arraylist": {
1170
+ "version": "3.0.2",
1171
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
1172
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
1173
+ "license": "Apache-2.0 OR MIT",
1174
+ "dependencies": {
1175
+ "uint8arrays": "^6.0.0"
1108
1176
  }
1109
1177
  },
1110
1178
  "node_modules/@libp2p/record/node_modules/uint8arrays": {
@@ -1116,12 +1184,6 @@
1116
1184
  "multiformats": "^14.0.0"
1117
1185
  }
1118
1186
  },
1119
- "node_modules/@libp2p/record/node_modules/uint8arrays/node_modules/multiformats": {
1120
- "version": "14.0.0",
1121
- "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
1122
- "integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
1123
- "license": "Apache-2.0 OR MIT"
1124
- },
1125
1187
  "node_modules/@libp2p/tcp": {
1126
1188
  "version": "11.0.13",
1127
1189
  "resolved": "https://registry.npmjs.org/@libp2p/tcp/-/tcp-11.0.13.tgz",
@@ -1210,27 +1272,27 @@
1210
1272
  }
1211
1273
  },
1212
1274
  "node_modules/@libp2p/webrtc": {
1213
- "version": "6.0.24",
1214
- "resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.24.tgz",
1215
- "integrity": "sha512-+YHoA9L12qeJ25v0etFuh7Sq+TNg1LAa2CUoqd+E35pl1WmKCeo8DOHi3NghNXOZNQzvVA2nFhggKwgAFD1Nzw==",
1275
+ "version": "6.0.25",
1276
+ "resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.25.tgz",
1277
+ "integrity": "sha512-c7QwXOjqBR+xgCIE8bv/A1NGQQMX3Sfrek+CD5n+XJur2TOoEmNjYyRX98Yt2h5YzbD083/bZK7ITZiu9xSdmQ==",
1216
1278
  "license": "Apache-2.0 OR MIT",
1217
1279
  "dependencies": {
1218
1280
  "@chainsafe/is-ip": "^2.1.0",
1219
1281
  "@chainsafe/libp2p-noise": "^17.0.0",
1220
- "@libp2p/crypto": "^5.1.19",
1221
- "@libp2p/interface": "^3.2.3",
1222
- "@libp2p/interface-internal": "^3.1.6",
1223
- "@libp2p/keychain": "^6.1.2",
1224
- "@libp2p/peer-id": "^6.0.10",
1225
- "@libp2p/utils": "^7.2.2",
1282
+ "@libp2p/crypto": "^5.1.20",
1283
+ "@libp2p/interface": "^3.2.4",
1284
+ "@libp2p/interface-internal": "^3.1.7",
1285
+ "@libp2p/keychain": "^6.1.3",
1286
+ "@libp2p/peer-id": "^6.0.11",
1287
+ "@libp2p/utils": "^7.2.3",
1226
1288
  "@multiformats/multiaddr": "^13.0.3",
1227
1289
  "@multiformats/multiaddr-matcher": "^3.0.2",
1228
1290
  "@peculiar/webcrypto": "^1.5.0",
1229
1291
  "@peculiar/x509": "^2.0.0",
1230
1292
  "get-port": "^7.1.0",
1231
- "interface-datastore": "^9.0.1",
1232
- "it-length-prefixed": "^10.0.1",
1233
- "it-protobuf-stream": "^2.0.3",
1293
+ "interface-datastore": "^10.0.1",
1294
+ "it-length-prefixed": "^11.0.1",
1295
+ "it-protobuf-stream": "^3.0.0",
1234
1296
  "it-pushable": "^3.2.3",
1235
1297
  "it-stream-types": "^2.0.2",
1236
1298
  "main-event": "^1.0.1",
@@ -1241,12 +1303,12 @@
1241
1303
  "p-timeout": "^7.0.0",
1242
1304
  "p-wait-for": "^6.0.0",
1243
1305
  "progress-events": "^1.0.1",
1244
- "protons-runtime": "^6.0.1",
1306
+ "protons-runtime": "^7.0.0",
1245
1307
  "race-signal": "^2.0.0",
1246
1308
  "react-native-webrtc": "^124.0.6",
1247
1309
  "reflect-metadata": "^0.2.2",
1248
- "uint8-varint": "^2.0.4",
1249
- "uint8arraylist": "^2.4.8",
1310
+ "uint8-varint": "^3.0.0",
1311
+ "uint8arraylist": "^3.0.2",
1250
1312
  "uint8arrays": "^6.1.1"
1251
1313
  }
1252
1314
  },
@@ -1271,6 +1333,49 @@
1271
1333
  "node": ">=20.0.0"
1272
1334
  }
1273
1335
  },
1336
+ "node_modules/@libp2p/webrtc/node_modules/interface-datastore": {
1337
+ "version": "10.0.1",
1338
+ "resolved": "https://registry.npmjs.org/interface-datastore/-/interface-datastore-10.0.1.tgz",
1339
+ "integrity": "sha512-DYMj/Og5Cz1Qwkx6/x5KRvR8SYEX7rVAv3KKCm2NzTwWSfpNAC4PahjcYbHyoZBP6zPWrhQv5n5wE+vaDdgSAg==",
1340
+ "license": "Apache-2.0 OR MIT",
1341
+ "dependencies": {
1342
+ "abort-error": "^1.0.2",
1343
+ "interface-store": "^8.0.0",
1344
+ "uint8arrays": "^6.1.1"
1345
+ }
1346
+ },
1347
+ "node_modules/@libp2p/webrtc/node_modules/interface-store": {
1348
+ "version": "8.0.0",
1349
+ "resolved": "https://registry.npmjs.org/interface-store/-/interface-store-8.0.0.tgz",
1350
+ "integrity": "sha512-e2+s3EEROzM+Wlas4hU3zveTUscvVMf1BOvdsJfpzFm19SoEXLVadpACjWOnM491HqGpvtfFnevyiaN8W+I6Eg==",
1351
+ "license": "Apache-2.0 OR MIT",
1352
+ "dependencies": {
1353
+ "abort-error": "^1.0.2"
1354
+ }
1355
+ },
1356
+ "node_modules/@libp2p/webrtc/node_modules/it-length-prefixed": {
1357
+ "version": "11.0.1",
1358
+ "resolved": "https://registry.npmjs.org/it-length-prefixed/-/it-length-prefixed-11.0.1.tgz",
1359
+ "integrity": "sha512-0Cy4RHFiL2CH060Lkigq0N37VaPg7oSylG6YjXErq+ccJFYcNEWNzxNjbqceio/sY1C+q84vZXOCE6/C0flYfQ==",
1360
+ "license": "Apache-2.0 OR MIT",
1361
+ "dependencies": {
1362
+ "it-reader": "^7.0.0",
1363
+ "it-stream-types": "^2.0.1",
1364
+ "uint8-varint": "^3.0.0",
1365
+ "uint8arraylist": "^3.0.1",
1366
+ "uint8arrays": "^6.1.0"
1367
+ }
1368
+ },
1369
+ "node_modules/@libp2p/webrtc/node_modules/it-reader": {
1370
+ "version": "7.0.0",
1371
+ "resolved": "https://registry.npmjs.org/it-reader/-/it-reader-7.0.0.tgz",
1372
+ "integrity": "sha512-bTWQPHH1if8N1K9XeidDjhTDm51ALbOksMa9uCZVVsQkoIPXP0XVKM88/Ynqr7HS18La/P1Kvu7C73j4rRoKWQ==",
1373
+ "license": "Apache-2.0 OR MIT",
1374
+ "dependencies": {
1375
+ "it-stream-types": "^2.0.1",
1376
+ "uint8arraylist": "^3.0.1"
1377
+ }
1378
+ },
1274
1379
  "node_modules/@libp2p/webrtc/node_modules/multiformats": {
1275
1380
  "version": "14.0.0",
1276
1381
  "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
@@ -1291,29 +1396,33 @@
1291
1396
  }
1292
1397
  },
1293
1398
  "node_modules/@libp2p/webrtc/node_modules/protons-runtime": {
1294
- "version": "6.0.2",
1295
- "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-6.0.2.tgz",
1296
- "integrity": "sha512-hiyjyANwGcgmzc+tXc1/ZcSZhKnl5MDjaVNWkISHBgadaU0sjTgKIKZMZ62d9J9zlSTyKHCs/osPkQ/3Z+7yeA==",
1399
+ "version": "7.0.0",
1400
+ "resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-7.0.0.tgz",
1401
+ "integrity": "sha512-r/e72006xoVND4Uvf1aIs4OQOkJaASBU3ip4DzOWAktoKAkTiOYqKoS3TYMBm8HnnYU8+h0uEzr5gIRwk/pmTg==",
1297
1402
  "license": "Apache-2.0 OR MIT",
1298
1403
  "dependencies": {
1299
- "uint8-varint": "^2.0.4",
1300
- "uint8arraylist": "^2.4.8",
1301
- "uint8arrays": "^5.1.0"
1404
+ "uint8-varint": "^3.0.0",
1405
+ "uint8arraylist": "^3.0.0",
1406
+ "uint8arrays": "^6.0.0"
1302
1407
  }
1303
1408
  },
1304
- "node_modules/@libp2p/webrtc/node_modules/protons-runtime/node_modules/multiformats": {
1305
- "version": "13.4.2",
1306
- "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-13.4.2.tgz",
1307
- "integrity": "sha512-eh6eHCrRi1+POZ3dA+Dq1C6jhP1GNtr9CRINMb67OKzqW9I5DUuZM/3jLPlzhgpGeiNUlEGEbkCYChXMCc/8DQ==",
1308
- "license": "Apache-2.0 OR MIT"
1409
+ "node_modules/@libp2p/webrtc/node_modules/uint8-varint": {
1410
+ "version": "3.0.0",
1411
+ "resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
1412
+ "integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
1413
+ "license": "Apache-2.0 OR MIT",
1414
+ "dependencies": {
1415
+ "uint8arraylist": "^3.0.1",
1416
+ "uint8arrays": "^6.1.0"
1417
+ }
1309
1418
  },
1310
- "node_modules/@libp2p/webrtc/node_modules/protons-runtime/node_modules/uint8arrays": {
1311
- "version": "5.1.1",
1312
- "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-5.1.1.tgz",
1313
- "integrity": "sha512-9muQwa4wZG4dKi9gMAIBtnk2Pw87SRpvWTH6lOGm19V2Uqxr4uomUf2PGqPnWc+qs06sN8owUU4jfcoWOcfwVQ==",
1419
+ "node_modules/@libp2p/webrtc/node_modules/uint8arraylist": {
1420
+ "version": "3.0.2",
1421
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
1422
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
1314
1423
  "license": "Apache-2.0 OR MIT",
1315
1424
  "dependencies": {
1316
- "multiformats": "^13.0.0"
1425
+ "uint8arrays": "^6.0.0"
1317
1426
  }
1318
1427
  },
1319
1428
  "node_modules/@libp2p/webrtc/node_modules/uint8arrays": {
@@ -2301,9 +2410,9 @@
2301
2410
  "license": "MIT"
2302
2411
  },
2303
2412
  "node_modules/axios": {
2304
- "version": "1.17.0",
2305
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.17.0.tgz",
2306
- "integrity": "sha512-J8SwNxprqqpbfenehxWYXE7CW+wM1BB4w3+N+g+/Wx40xM4rsLrfPmHHxSWIxJLYDgSY/HqlFPIYb2/S3rxafw==",
2413
+ "version": "1.18.0",
2414
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.18.0.tgz",
2415
+ "integrity": "sha512-E32NzpYKp++W7XRe52rHiXV2ehxmh3wbdgO7MHeFM+vqxLBYHzt0ElkiImtOBxtOmyp0yoC8C6uESVV84Y2/hw==",
2307
2416
  "license": "MIT",
2308
2417
  "dependencies": {
2309
2418
  "follow-redirects": "^1.16.0",
@@ -2464,9 +2573,9 @@
2464
2573
  "license": "MIT"
2465
2574
  },
2466
2575
  "node_modules/better-sqlite3": {
2467
- "version": "12.10.0",
2468
- "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.10.0.tgz",
2469
- "integrity": "sha512-CyzaZRQKyHkB2ZInfTTl2nvT33EbDpjkLEbE8/Zck3Ll6O0qqvuGdrJ45HgtH+HykRg88ITY3AdreBGN70aBSQ==",
2576
+ "version": "12.11.1",
2577
+ "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.11.1.tgz",
2578
+ "integrity": "sha512-dq9AtApgg5PGFtBzPFSBl3HZQjHok5gaQCM6zh2Yk0aSmDCs1CbnVI8/HgASQkNKsWFpseIO9beg5xxpYhbIfA==",
2470
2579
  "hasInstallScript": true,
2471
2580
  "license": "MIT",
2472
2581
  "optional": true,
@@ -2557,20 +2666,20 @@
2557
2666
  }
2558
2667
  },
2559
2668
  "node_modules/body-parser": {
2560
- "version": "2.2.2",
2561
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
2562
- "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
2669
+ "version": "2.3.0",
2670
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz",
2671
+ "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==",
2563
2672
  "license": "MIT",
2564
2673
  "dependencies": {
2565
2674
  "bytes": "^3.1.2",
2566
- "content-type": "^1.0.5",
2675
+ "content-type": "^2.0.0",
2567
2676
  "debug": "^4.4.3",
2568
- "http-errors": "^2.0.0",
2569
- "iconv-lite": "^0.7.0",
2677
+ "http-errors": "^2.0.1",
2678
+ "iconv-lite": "^0.7.2",
2570
2679
  "on-finished": "^2.4.1",
2571
- "qs": "^6.14.1",
2572
- "raw-body": "^3.0.1",
2573
- "type-is": "^2.0.1"
2680
+ "qs": "^6.15.2",
2681
+ "raw-body": "^3.0.2",
2682
+ "type-is": "^2.1.0"
2574
2683
  },
2575
2684
  "engines": {
2576
2685
  "node": ">=18"
@@ -2580,6 +2689,19 @@
2580
2689
  "url": "https://opencollective.com/express"
2581
2690
  }
2582
2691
  },
2692
+ "node_modules/body-parser/node_modules/content-type": {
2693
+ "version": "2.0.0",
2694
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
2695
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
2696
+ "license": "MIT",
2697
+ "engines": {
2698
+ "node": ">=18"
2699
+ },
2700
+ "funding": {
2701
+ "type": "opencollective",
2702
+ "url": "https://opencollective.com/express"
2703
+ }
2704
+ },
2583
2705
  "node_modules/brace-expansion": {
2584
2706
  "version": "5.0.6",
2585
2707
  "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
@@ -4530,15 +4652,39 @@
4530
4652
  }
4531
4653
  },
4532
4654
  "node_modules/it-protobuf-stream": {
4533
- "version": "2.0.6",
4534
- "resolved": "https://registry.npmjs.org/it-protobuf-stream/-/it-protobuf-stream-2.0.6.tgz",
4535
- "integrity": "sha512-yr1ll0PN4DFrI4gyEMXy4OgcO3Glb7U0J+Scpx1lxOVnuszpcSc0idhxXHMZcDqAIUJgo8JmNHT9Ry6m6vVeJw==",
4655
+ "version": "3.0.0",
4656
+ "resolved": "https://registry.npmjs.org/it-protobuf-stream/-/it-protobuf-stream-3.0.0.tgz",
4657
+ "integrity": "sha512-slFaik6WDN2SqVCFW1XS35HLbFwOkVolTEgBiB2hx1l1482b9yMhZp5d6PAe5OsjgXXaSE3qTTiVRk+ZFzPo4g==",
4536
4658
  "license": "Apache-2.0 OR MIT",
4537
4659
  "dependencies": {
4538
4660
  "abort-error": "^1.0.2",
4539
4661
  "it-length-prefixed-stream": "^2.0.0",
4540
4662
  "it-stream-types": "^2.0.2",
4541
- "uint8arraylist": "^2.4.8"
4663
+ "uint8arraylist": "^3.0.1"
4664
+ }
4665
+ },
4666
+ "node_modules/it-protobuf-stream/node_modules/multiformats": {
4667
+ "version": "14.0.0",
4668
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
4669
+ "integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
4670
+ "license": "Apache-2.0 OR MIT"
4671
+ },
4672
+ "node_modules/it-protobuf-stream/node_modules/uint8arraylist": {
4673
+ "version": "3.0.2",
4674
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
4675
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
4676
+ "license": "Apache-2.0 OR MIT",
4677
+ "dependencies": {
4678
+ "uint8arrays": "^6.0.0"
4679
+ }
4680
+ },
4681
+ "node_modules/it-protobuf-stream/node_modules/uint8arrays": {
4682
+ "version": "6.1.1",
4683
+ "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
4684
+ "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
4685
+ "license": "Apache-2.0 OR MIT",
4686
+ "dependencies": {
4687
+ "multiformats": "^14.0.0"
4542
4688
  }
4543
4689
  },
4544
4690
  "node_modules/it-pushable": {
@@ -7042,9 +7188,9 @@
7042
7188
  }
7043
7189
  },
7044
7190
  "node_modules/undici": {
7045
- "version": "7.27.2",
7046
- "resolved": "https://registry.npmjs.org/undici/-/undici-7.27.2.tgz",
7047
- "integrity": "sha512-uZsKNuzQxDMUY6M3pIMvy5tvlGmtq8XJ2oLAkfRKGNu+1VQAIvLy2xIVG5ATZl5wDXl/tddByAWCizRbOme+TA==",
7191
+ "version": "7.28.0",
7192
+ "resolved": "https://registry.npmjs.org/undici/-/undici-7.28.0.tgz",
7193
+ "integrity": "sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==",
7048
7194
  "license": "MIT",
7049
7195
  "engines": {
7050
7196
  "node": ">=20.18.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.311",
3
+ "version": "1.0.313",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",