@storm-software/git-tools 2.124.47 → 2.124.49

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.
@@ -375,7 +375,7 @@ function config(newConfig) {
375
375
  return globalConfig;
376
376
  }
377
377
 
378
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/util.js
378
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/util.js
379
379
  var util_exports = {};
380
380
  __export(util_exports, {
381
381
  BIGINT_FORMAT_RANGES: () => BIGINT_FORMAT_RANGES,
@@ -449,7 +449,7 @@ function assertNotEqual(val) {
449
449
  function assertIs(_arg) {
450
450
  }
451
451
  function assertNever(_x) {
452
- throw new Error();
452
+ throw new Error("Unexpected value in exhaustive check");
453
453
  }
454
454
  function assert(_) {
455
455
  }
@@ -1013,7 +1013,7 @@ var Class = class {
1013
1013
  }
1014
1014
  };
1015
1015
 
1016
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/errors.js
1016
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/errors.js
1017
1017
  var initializer = (inst, def) => {
1018
1018
  inst.name = "$ZodError";
1019
1019
  Object.defineProperty(inst, "_zod", {
@@ -1033,7 +1033,7 @@ var initializer = (inst, def) => {
1033
1033
  var $ZodError = $constructor("$ZodError", initializer);
1034
1034
  var $ZodRealError = $constructor("$ZodError", initializer, { Parent: Error });
1035
1035
 
1036
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/parse.js
1036
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/parse.js
1037
1037
  var _parse = (_Err) => (schema, value, _ctx, _params) => {
1038
1038
  const ctx = _ctx ? Object.assign(_ctx, { async: false }) : { async: false };
1039
1039
  const result = schema._zod.run({ value, issues: [] }, ctx);
@@ -1090,7 +1090,7 @@ var string = (params) => {
1090
1090
  };
1091
1091
  var boolean = /^(?:true|false)$/i;
1092
1092
 
1093
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/checks.js
1093
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/checks.js
1094
1094
  var $ZodCheck = /* @__PURE__ */ $constructor("$ZodCheck", (inst, def) => {
1095
1095
  var _a2;
1096
1096
  inst._zod ?? (inst._zod = {});
@@ -1182,14 +1182,14 @@ var $ZodCheckOverwrite = /* @__PURE__ */ $constructor("$ZodCheckOverwrite", (ins
1182
1182
  };
1183
1183
  });
1184
1184
 
1185
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/versions.js
1185
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/versions.js
1186
1186
  var version = {
1187
1187
  major: 4,
1188
- minor: 1,
1189
- patch: 13
1188
+ minor: 2,
1189
+ patch: 0
1190
1190
  };
1191
1191
 
1192
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/schemas.js
1192
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/schemas.js
1193
1193
  var $ZodType = /* @__PURE__ */ $constructor("$ZodType", (inst, def) => {
1194
1194
  var _a2;
1195
1195
  inst ?? (inst = {});
@@ -1689,15 +1689,18 @@ var $ZodRecord = /* @__PURE__ */ $constructor("$ZodRecord", (inst, def) => {
1689
1689
  throw new Error("Async schemas not supported in object keys currently");
1690
1690
  }
1691
1691
  if (keyResult.issues.length) {
1692
- payload.issues.push({
1693
- code: "invalid_key",
1694
- origin: "record",
1695
- issues: keyResult.issues.map((iss) => finalizeIssue(iss, ctx, config())),
1696
- input: key,
1697
- path: [key],
1698
- inst
1699
- });
1700
- payload.value[keyResult.value] = keyResult.value;
1692
+ if (def.mode === "loose") {
1693
+ payload.value[key] = input[key];
1694
+ } else {
1695
+ payload.issues.push({
1696
+ code: "invalid_key",
1697
+ origin: "record",
1698
+ issues: keyResult.issues.map((iss) => finalizeIssue(iss, ctx, config())),
1699
+ input: key,
1700
+ path: [key],
1701
+ inst
1702
+ });
1703
+ }
1701
1704
  continue;
1702
1705
  }
1703
1706
  const result = def.valueType._zod.run({ value: input[key], issues: [] }, ctx);
@@ -1837,7 +1840,7 @@ function handleDefaultResult(payload, def) {
1837
1840
  return payload;
1838
1841
  }
1839
1842
 
1840
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/registries.js
1843
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/registries.js
1841
1844
  var _a;
1842
1845
  var $ZodRegistry = class {
1843
1846
  constructor() {
@@ -1887,7 +1890,7 @@ function registry() {
1887
1890
  }
1888
1891
  (_a = globalThis).__zod_globalRegistry ?? (_a.__zod_globalRegistry = registry());
1889
1892
 
1890
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/core/api.js
1893
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/core/api.js
1891
1894
  function _string(Class2, params) {
1892
1895
  return new Class2({
1893
1896
  type: "string",
@@ -1942,7 +1945,7 @@ function _toLowerCase() {
1942
1945
  return _overwrite((input) => input.toLowerCase());
1943
1946
  }
1944
1947
 
1945
- // ../../node_modules/.pnpm/zod@4.1.13/node_modules/zod/v4/mini/schemas.js
1948
+ // ../../node_modules/.pnpm/zod@4.2.0/node_modules/zod/v4/mini/schemas.js
1946
1949
  var ZodMiniType = /* @__PURE__ */ $constructor("ZodMiniType", (inst, def) => {
1947
1950
  if (!inst._zod)
1948
1951
  throw new Error("Uninitialized schema in ZodMiniType.");
@@ -3773,5 +3776,5 @@ function getWorkspaceConfig(skipLogs = true, options = {}) {
3773
3776
  }
3774
3777
 
3775
3778
  export { STORM_DEFAULT_RELEASE_BANNER, defu, exitWithError, exitWithSuccess, findWorkspaceRootSafe, getConfig, getWorkspaceConfig, handleProcess, isVerbose, joinPaths, writeDebug, writeError, writeFatal, writeInfo, writeSuccess, writeTrace, writeWarning };
3776
- //# sourceMappingURL=chunk-XFXTHGZZ.js.map
3777
- //# sourceMappingURL=chunk-XFXTHGZZ.js.map
3779
+ //# sourceMappingURL=chunk-XVJVSDUV.js.map
3780
+ //# sourceMappingURL=chunk-XVJVSDUV.js.map