@grunnverk/kodrdriv 1.3.0 → 1.5.0

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/constants.js CHANGED
@@ -1,9 +1,9 @@
1
1
  import os from 'os';
2
2
  import path from 'path';
3
3
 
4
- const VERSION = '1.3.0 (working/272db59 2026-01-21 20:56:50 -0800) darwin arm64 v24.8.0';
5
- const BUILD_HOSTNAME = 'Tims-MacBook-Pro.local';
6
- const BUILD_TIMESTAMP = '2026-01-22T15:30:23.373Z';
4
+ const VERSION = '1.5.0 (HEAD/49262e4 T:v1.5.0 2026-01-22 13:09:19 -0800) linux x64 v24.13.0';
5
+ const BUILD_HOSTNAME = 'runnervmymu0l';
6
+ const BUILD_TIMESTAMP = '2026-01-22T21:12:18.507Z';
7
7
  const PROGRAM_NAME = 'kodrdriv';
8
8
  const DEFAULT_OVERRIDES = false;
9
9
  const DATE_FORMAT_YEAR_MONTH_DAY_HOURS_MINUTES_SECONDS_MILLISECONDS = 'YYYY-MM-DD-HHmmss.SSS';
@@ -2251,7 +2251,7 @@ var Doc = class {
2251
2251
  var version = {
2252
2252
  major: 4,
2253
2253
  minor: 3,
2254
- patch: 5
2254
+ patch: 6
2255
2255
  };
2256
2256
 
2257
2257
  // node_modules/zod/v4/core/schemas.js
@@ -3542,7 +3542,7 @@ var $ZodRecord = /* @__PURE__ */ $constructor("$ZodRecord", (inst, def) => {
3542
3542
  if (keyResult instanceof Promise) {
3543
3543
  throw new Error("Async schemas not supported in object keys currently");
3544
3544
  }
3545
- const checkNumericKey = typeof key === "string" && number.test(key) && keyResult.issues.length && keyResult.issues.some((iss) => iss.code === "invalid_type" && iss.expected === "number");
3545
+ const checkNumericKey = typeof key === "string" && number.test(key) && keyResult.issues.length;
3546
3546
  if (checkNumericKey) {
3547
3547
  const retryResult = def.keyType._zod.run({ value: Number(key), issues: [] }, ctx);
3548
3548
  if (retryResult instanceof Promise) {
@@ -11090,7 +11090,7 @@ function finalize(ctx, schema) {
11090
11090
  }
11091
11091
  }
11092
11092
  }
11093
- if (refSchema.$ref) {
11093
+ if (refSchema.$ref && refSeen.def) {
11094
11094
  for (const key in schema2) {
11095
11095
  if (key === "$ref" || key === "allOf")
11096
11096
  continue;
@@ -13786,9 +13786,9 @@ import { formatErrorForMCP, extractCommandErrorDetails, getLogger as getCoreLogg
13786
13786
  // src/constants.ts
13787
13787
  import os from "os";
13788
13788
  import path from "path";
13789
- var VERSION = "1.3.0 (working/272db59 2026-01-21 20:56:50 -0800) darwin arm64 v24.8.0";
13790
- var BUILD_HOSTNAME = "Tims-MacBook-Pro.local";
13791
- var BUILD_TIMESTAMP = "2026-01-22T15:30:23.541Z";
13789
+ var VERSION = "1.5.0 (HEAD/49262e4 T:v1.5.0 2026-01-22 13:09:19 -0800) linux x64 v24.13.0";
13790
+ var BUILD_HOSTNAME = "runnervmymu0l";
13791
+ var BUILD_TIMESTAMP = "2026-01-22T21:12:18.853Z";
13792
13792
  var PROGRAM_NAME = "kodrdriv";
13793
13793
  var DATE_FORMAT_YEAR_MONTH_DAY_HOURS_MINUTES_SECONDS_MILLISECONDS = "YYYY-MM-DD-HHmmss.SSS";
13794
13794
  var DEFAULT_OUTPUT_DIRECTORY = "output/kodrdriv";