@wrongstack/core 0.281.1 → 0.281.3

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.
@@ -18376,7 +18376,7 @@ var CODEX_MODELS = [
18376
18376
  {
18377
18377
  id: "gpt-5.3-codex-spark",
18378
18378
  name: "GPT-5.3 Codex Spark",
18379
- description: "Ultra-fast coding model."
18379
+ description: "Ultra-fast coding model (research preview)."
18380
18380
  }
18381
18381
  ];
18382
18382
  var BY_ID = new Map(CODEX_MODELS.map((m) => [m.id, m]));
@@ -18653,6 +18653,7 @@ var FAMILY_BY_NPM = {
18653
18653
  "@ai-sdk/gateway": "openai-compatible",
18654
18654
  "@aihubmix/ai-sdk-provider": "openai-compatible",
18655
18655
  "venice-ai-sdk-provider": "openai-compatible",
18656
+ "@ai-sdk/deepseek": "openai-compatible",
18656
18657
  "@ai-sdk/google": "google"
18657
18658
  };
18658
18659
  function classifyFamily(npm) {
@@ -18752,7 +18753,9 @@ var DefaultModelsRegistry = class {
18752
18753
  }
18753
18754
  if (overlayAvailable) {
18754
18755
  console.warn(
18755
- `ModelsRegistry: models.dev unavailable (${toErrorMessage(err)}); serving curated overlay only.`
18756
+ `ModelsRegistry: models.dev unavailable (${toErrorMessage(
18757
+ err
18758
+ )}); serving curated overlay only.`
18756
18759
  );
18757
18760
  return {};
18758
18761
  }
@@ -18829,11 +18832,12 @@ var DefaultModelsRegistry = class {
18829
18832
  method: "GET",
18830
18833
  headers: { accept: "application/json" }
18831
18834
  });
18832
- if (!res.ok) throw new FetchError({
18833
- message: `HTTP ${res.status}`,
18834
- status: res.status,
18835
- context: { url: this.url, op: "refreshModels" }
18836
- });
18835
+ if (!res.ok)
18836
+ throw new FetchError({
18837
+ message: `HTTP ${res.status}`,
18838
+ status: res.status,
18839
+ context: { url: this.url, op: "refreshModels" }
18840
+ });
18837
18841
  const json = await res.json();
18838
18842
  const envelope = {
18839
18843
  fetchedAt: (/* @__PURE__ */ new Date()).toISOString(),