@powerlines/deepkit 0.5.105 → 0.5.107

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.
@@ -8,7 +8,7 @@ var isNull$1 = require('@stryke/type-checks/is-null');
8
8
  var isString$1 = require('@stryke/type-checks/is-string');
9
9
  var isUndefined$1 = require('@stryke/type-checks/is-undefined');
10
10
 
11
- // ../../node_modules/.pnpm/@stryke+helpers@0.9.36/node_modules/@stryke/helpers/dist/get-unique.mjs
11
+ // ../../node_modules/.pnpm/@stryke+helpers@0.9.37/node_modules/@stryke/helpers/dist/get-unique.mjs
12
12
  function getUniqueBy(arr, mapper = (item) => item) {
13
13
  const map = /* @__PURE__ */ new Map();
14
14
  for (const item of arr) {
@@ -19,13 +19,13 @@ function getUniqueBy(arr, mapper = (item) => item) {
19
19
  }
20
20
  chunkUSNT2KNT_cjs.__name(getUniqueBy, "getUniqueBy");
21
21
 
22
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/get-object-tag.mjs
22
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/get-object-tag.mjs
23
23
  var getObjectTag = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
24
24
  if (value == null) return value === void 0 ? "[object Undefined]" : "[object Null]";
25
25
  return Object.prototype.toString.call(value);
26
26
  }, "getObjectTag");
27
27
 
28
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-plain-object.mjs
28
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-plain-object.mjs
29
29
  var isObjectLike = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((obj) => {
30
30
  return typeof obj === "object" && obj !== null;
31
31
  }, "isObjectLike");
@@ -37,7 +37,7 @@ var isPlainObject = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((obj) => {
37
37
  return Object.getPrototypeOf(obj) === proto;
38
38
  }, "isPlainObject");
39
39
 
40
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-object.mjs
40
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-object.mjs
41
41
  var isObject = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
42
42
  try {
43
43
  return typeof value === "object" || Boolean(value) && value?.constructor === Object || isPlainObject(value);
@@ -46,7 +46,7 @@ var isObject = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
46
46
  }
47
47
  }, "isObject");
48
48
 
49
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-string.mjs
49
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-string.mjs
50
50
  var isString = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
51
51
  try {
52
52
  return typeof value === "string";
@@ -55,10 +55,10 @@ var isString = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
55
55
  }
56
56
  }, "isString");
57
57
 
58
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/types/src/base.mjs
58
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/types/src/base.mjs
59
59
  var EMPTY_STRING = "";
60
60
 
61
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/strip-comments.mjs
61
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/strip-comments.mjs
62
62
  var singleComment = Symbol("singleComment");
63
63
  var multiComment = Symbol("multiComment");
64
64
  function stripWithoutWhitespace() {
@@ -144,7 +144,7 @@ function stripComments(value, { whitespace = true, trailingCommas = false } = {}
144
144
  }
145
145
  chunkUSNT2KNT_cjs.__name(stripComments, "stripComments");
146
146
 
147
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/parse.mjs
147
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/parse.mjs
148
148
  var suspectProtoRx = /"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/;
149
149
  var suspectConstructorRx = /"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/;
150
150
  var JsonSigRx = /^\s*["[{]|^\s*-?\d{1,16}(?:\.\d{1,17})?(?:E[+-]?\d+)?\s*$/i;
@@ -194,7 +194,7 @@ function parse(value, options = {}) {
194
194
  }
195
195
  chunkUSNT2KNT_cjs.__name(parse, "parse");
196
196
 
197
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/code-frames.mjs
197
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/code-frames.mjs
198
198
  var NEWLINE = /\r\n|[\n\r\u2028\u2029]/;
199
199
  function getMarkerLines(loc, source, opts = {}) {
200
200
  const startLoc = {
@@ -1202,7 +1202,7 @@ var LinesAndColumns = (
1202
1202
  })()
1203
1203
  );
1204
1204
 
1205
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/parse-error.mjs
1205
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/parse-error.mjs
1206
1206
  function formatParseError(input, parseError) {
1207
1207
  const { error, offset, length } = parseError;
1208
1208
  const result = new LinesAndColumns(input).locationForIndex(offset);
@@ -1225,7 +1225,7 @@ ${codeFrameColumns(input, {
1225
1225
  }
1226
1226
  chunkUSNT2KNT_cjs.__name(formatParseError, "formatParseError");
1227
1227
 
1228
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-number.mjs
1228
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-number.mjs
1229
1229
  var isNumber = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
1230
1230
  try {
1231
1231
  return value instanceof Number || typeof value === "number" || Number(value) === value;
@@ -1234,12 +1234,12 @@ var isNumber = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
1234
1234
  }
1235
1235
  }, "isNumber");
1236
1236
 
1237
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-undefined.mjs
1237
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-undefined.mjs
1238
1238
  var isUndefined = /* @__PURE__ */ chunkUSNT2KNT_cjs.__name((value) => {
1239
1239
  return value === void 0;
1240
1240
  }, "isUndefined");
1241
1241
 
1242
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/stringify.mjs
1242
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/stringify.mjs
1243
1243
  var invalidKeyChars = [
1244
1244
  "@",
1245
1245
  "/",
@@ -2170,7 +2170,7 @@ SuperJSON.registerCustom;
2170
2170
  SuperJSON.registerSymbol;
2171
2171
  SuperJSON.allowErrorProps;
2172
2172
 
2173
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/storm-json.mjs
2173
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/storm-json.mjs
2174
2174
  var StormJSON = class StormJSON2 extends SuperJSON {
2175
2175
  static {
2176
2176
  chunkUSNT2KNT_cjs.__name(this, "StormJSON");
@@ -6,7 +6,7 @@ import { isNull as isNull$1 } from '@stryke/type-checks/is-null';
6
6
  import { isString as isString$1 } from '@stryke/type-checks/is-string';
7
7
  import { isUndefined as isUndefined$1 } from '@stryke/type-checks/is-undefined';
8
8
 
9
- // ../../node_modules/.pnpm/@stryke+helpers@0.9.36/node_modules/@stryke/helpers/dist/get-unique.mjs
9
+ // ../../node_modules/.pnpm/@stryke+helpers@0.9.37/node_modules/@stryke/helpers/dist/get-unique.mjs
10
10
  function getUniqueBy(arr, mapper = (item) => item) {
11
11
  const map = /* @__PURE__ */ new Map();
12
12
  for (const item of arr) {
@@ -17,13 +17,13 @@ function getUniqueBy(arr, mapper = (item) => item) {
17
17
  }
18
18
  __name(getUniqueBy, "getUniqueBy");
19
19
 
20
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/get-object-tag.mjs
20
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/get-object-tag.mjs
21
21
  var getObjectTag = /* @__PURE__ */ __name((value) => {
22
22
  if (value == null) return value === void 0 ? "[object Undefined]" : "[object Null]";
23
23
  return Object.prototype.toString.call(value);
24
24
  }, "getObjectTag");
25
25
 
26
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-plain-object.mjs
26
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-plain-object.mjs
27
27
  var isObjectLike = /* @__PURE__ */ __name((obj) => {
28
28
  return typeof obj === "object" && obj !== null;
29
29
  }, "isObjectLike");
@@ -35,7 +35,7 @@ var isPlainObject = /* @__PURE__ */ __name((obj) => {
35
35
  return Object.getPrototypeOf(obj) === proto;
36
36
  }, "isPlainObject");
37
37
 
38
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-object.mjs
38
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-object.mjs
39
39
  var isObject = /* @__PURE__ */ __name((value) => {
40
40
  try {
41
41
  return typeof value === "object" || Boolean(value) && value?.constructor === Object || isPlainObject(value);
@@ -44,7 +44,7 @@ var isObject = /* @__PURE__ */ __name((value) => {
44
44
  }
45
45
  }, "isObject");
46
46
 
47
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-string.mjs
47
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-string.mjs
48
48
  var isString = /* @__PURE__ */ __name((value) => {
49
49
  try {
50
50
  return typeof value === "string";
@@ -53,10 +53,10 @@ var isString = /* @__PURE__ */ __name((value) => {
53
53
  }
54
54
  }, "isString");
55
55
 
56
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/types/src/base.mjs
56
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/types/src/base.mjs
57
57
  var EMPTY_STRING = "";
58
58
 
59
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/strip-comments.mjs
59
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/strip-comments.mjs
60
60
  var singleComment = Symbol("singleComment");
61
61
  var multiComment = Symbol("multiComment");
62
62
  function stripWithoutWhitespace() {
@@ -142,7 +142,7 @@ function stripComments(value, { whitespace = true, trailingCommas = false } = {}
142
142
  }
143
143
  __name(stripComments, "stripComments");
144
144
 
145
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/parse.mjs
145
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/parse.mjs
146
146
  var suspectProtoRx = /"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/;
147
147
  var suspectConstructorRx = /"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/;
148
148
  var JsonSigRx = /^\s*["[{]|^\s*-?\d{1,16}(?:\.\d{1,17})?(?:E[+-]?\d+)?\s*$/i;
@@ -192,7 +192,7 @@ function parse(value, options = {}) {
192
192
  }
193
193
  __name(parse, "parse");
194
194
 
195
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/code-frames.mjs
195
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/code-frames.mjs
196
196
  var NEWLINE = /\r\n|[\n\r\u2028\u2029]/;
197
197
  function getMarkerLines(loc, source, opts = {}) {
198
198
  const startLoc = {
@@ -1200,7 +1200,7 @@ var LinesAndColumns = (
1200
1200
  })()
1201
1201
  );
1202
1202
 
1203
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/parse-error.mjs
1203
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/parse-error.mjs
1204
1204
  function formatParseError(input, parseError) {
1205
1205
  const { error, offset, length } = parseError;
1206
1206
  const result = new LinesAndColumns(input).locationForIndex(offset);
@@ -1223,7 +1223,7 @@ ${codeFrameColumns(input, {
1223
1223
  }
1224
1224
  __name(formatParseError, "formatParseError");
1225
1225
 
1226
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-number.mjs
1226
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-number.mjs
1227
1227
  var isNumber = /* @__PURE__ */ __name((value) => {
1228
1228
  try {
1229
1229
  return value instanceof Number || typeof value === "number" || Number(value) === value;
@@ -1232,12 +1232,12 @@ var isNumber = /* @__PURE__ */ __name((value) => {
1232
1232
  }
1233
1233
  }, "isNumber");
1234
1234
 
1235
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/type-checks/src/is-undefined.mjs
1235
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/type-checks/src/is-undefined.mjs
1236
1236
  var isUndefined = /* @__PURE__ */ __name((value) => {
1237
1237
  return value === void 0;
1238
1238
  }, "isUndefined");
1239
1239
 
1240
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/utils/stringify.mjs
1240
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/utils/stringify.mjs
1241
1241
  var invalidKeyChars = [
1242
1242
  "@",
1243
1243
  "/",
@@ -2168,7 +2168,7 @@ SuperJSON.registerCustom;
2168
2168
  SuperJSON.registerSymbol;
2169
2169
  SuperJSON.allowErrorProps;
2170
2170
 
2171
- // ../../node_modules/.pnpm/@stryke+json@0.9.37/node_modules/@stryke/json/dist/storm-json.mjs
2171
+ // ../../node_modules/.pnpm/@stryke+json@0.9.38/node_modules/@stryke/json/dist/storm-json.mjs
2172
2172
  var StormJSON = class StormJSON2 extends SuperJSON {
2173
2173
  static {
2174
2174
  __name(this, "StormJSON");
package/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkZWL5JSVT_cjs = require('./chunk-ZWL5JSVT.cjs');
3
+ var chunkPVXKP24M_cjs = require('./chunk-PVXKP24M.cjs');
4
4
  var chunk7FXYDYVQ_cjs = require('./chunk-7FXYDYVQ.cjs');
5
5
  var chunkKGCRCOJQ_cjs = require('./chunk-KGCRCOJQ.cjs');
6
6
  var chunkCJMS4ES3_cjs = require('./chunk-CJMS4ES3.cjs');
@@ -14,31 +14,31 @@ require('./chunk-ORA4UQMU.cjs');
14
14
 
15
15
  Object.defineProperty(exports, "getEnumReflectionType", {
16
16
  enumerable: true,
17
- get: function () { return chunkZWL5JSVT_cjs.getEnumReflectionType; }
17
+ get: function () { return chunkPVXKP24M_cjs.getEnumReflectionType; }
18
18
  });
19
19
  Object.defineProperty(exports, "getUnionTypes", {
20
20
  enumerable: true,
21
- get: function () { return chunkZWL5JSVT_cjs.getUnionTypes; }
21
+ get: function () { return chunkPVXKP24M_cjs.getUnionTypes; }
22
22
  });
23
23
  Object.defineProperty(exports, "isStringUnion", {
24
24
  enumerable: true,
25
- get: function () { return chunkZWL5JSVT_cjs.isStringUnion; }
25
+ get: function () { return chunkPVXKP24M_cjs.isStringUnion; }
26
26
  });
27
27
  Object.defineProperty(exports, "kindToName", {
28
28
  enumerable: true,
29
- get: function () { return chunkZWL5JSVT_cjs.kindToName; }
29
+ get: function () { return chunkPVXKP24M_cjs.kindToName; }
30
30
  });
31
31
  Object.defineProperty(exports, "stringifyDefaultValue", {
32
32
  enumerable: true,
33
- get: function () { return chunkZWL5JSVT_cjs.stringifyDefaultValue; }
33
+ get: function () { return chunkPVXKP24M_cjs.stringifyDefaultValue; }
34
34
  });
35
35
  Object.defineProperty(exports, "stringifyStringValue", {
36
36
  enumerable: true,
37
- get: function () { return chunkZWL5JSVT_cjs.stringifyStringValue; }
37
+ get: function () { return chunkPVXKP24M_cjs.stringifyStringValue; }
38
38
  });
39
39
  Object.defineProperty(exports, "stringifyValue", {
40
40
  enumerable: true,
41
- get: function () { return chunkZWL5JSVT_cjs.stringifyValue; }
41
+ get: function () { return chunkPVXKP24M_cjs.stringifyValue; }
42
42
  });
43
43
  Object.defineProperty(exports, "convertFromCapnp", {
44
44
  enumerable: true,
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { getEnumReflectionType, getUnionTypes, isStringUnion, kindToName, stringifyDefaultValue, stringifyStringValue, stringifyValue } from './chunk-JPFSTX7K.js';
1
+ export { getEnumReflectionType, getUnionTypes, isStringUnion, kindToName, stringifyDefaultValue, stringifyStringValue, stringifyValue } from './chunk-RX7JMZDF.js';
2
2
  export { convertFromCapnp, convertFromCapnpArray, convertFromCapnpBase, convertFromCapnpClassType, convertFromCapnpDefault, convertFromCapnpEnum, convertFromCapnpFunction, convertFromCapnpIndexAccessOrigin, convertFromCapnpInfer, convertFromCapnpIntersection, convertFromCapnpLiteral, convertFromCapnpMethodSignature, convertFromCapnpObjectLiteral, convertFromCapnpOther, convertFromCapnpParameter, convertFromCapnpProperty, convertFromCapnpPropertySignature, convertFromCapnpSimple, convertFromCapnpTagsReflection, convertFromCapnpTuple, convertFromCapnpTupleMember, convertFromCapnpUnion, convertToCapnp, convertToCapnpArray, convertToCapnpBase, convertToCapnpClassType, convertToCapnpDefault, convertToCapnpEnum, convertToCapnpFunction, convertToCapnpIndexAccessOrigin, convertToCapnpInfer, convertToCapnpIntersection, convertToCapnpLiteral, convertToCapnpMethod, convertToCapnpMethodSignature, convertToCapnpObjectLiteral, convertToCapnpOther, convertToCapnpParameter, convertToCapnpProperty, convertToCapnpPropertySignature, convertToCapnpSimple, convertToCapnpTagsReflection, convertToCapnpTuple, convertToCapnpTupleMember, convertToCapnpUnion } from './chunk-TDYIUJGY.js';
3
3
  export { reflectType } from './chunk-XHSSGKUT.js';
4
4
  export { esbuildPlugin } from './chunk-JE36RI7U.js';
@@ -1,35 +1,35 @@
1
1
  'use strict';
2
2
 
3
- var chunkZWL5JSVT_cjs = require('./chunk-ZWL5JSVT.cjs');
3
+ var chunkPVXKP24M_cjs = require('./chunk-PVXKP24M.cjs');
4
4
  require('./chunk-USNT2KNT.cjs');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "getEnumReflectionType", {
9
9
  enumerable: true,
10
- get: function () { return chunkZWL5JSVT_cjs.getEnumReflectionType; }
10
+ get: function () { return chunkPVXKP24M_cjs.getEnumReflectionType; }
11
11
  });
12
12
  Object.defineProperty(exports, "getUnionTypes", {
13
13
  enumerable: true,
14
- get: function () { return chunkZWL5JSVT_cjs.getUnionTypes; }
14
+ get: function () { return chunkPVXKP24M_cjs.getUnionTypes; }
15
15
  });
16
16
  Object.defineProperty(exports, "isStringUnion", {
17
17
  enumerable: true,
18
- get: function () { return chunkZWL5JSVT_cjs.isStringUnion; }
18
+ get: function () { return chunkPVXKP24M_cjs.isStringUnion; }
19
19
  });
20
20
  Object.defineProperty(exports, "kindToName", {
21
21
  enumerable: true,
22
- get: function () { return chunkZWL5JSVT_cjs.kindToName; }
22
+ get: function () { return chunkPVXKP24M_cjs.kindToName; }
23
23
  });
24
24
  Object.defineProperty(exports, "stringifyDefaultValue", {
25
25
  enumerable: true,
26
- get: function () { return chunkZWL5JSVT_cjs.stringifyDefaultValue; }
26
+ get: function () { return chunkPVXKP24M_cjs.stringifyDefaultValue; }
27
27
  });
28
28
  Object.defineProperty(exports, "stringifyStringValue", {
29
29
  enumerable: true,
30
- get: function () { return chunkZWL5JSVT_cjs.stringifyStringValue; }
30
+ get: function () { return chunkPVXKP24M_cjs.stringifyStringValue; }
31
31
  });
32
32
  Object.defineProperty(exports, "stringifyValue", {
33
33
  enumerable: true,
34
- get: function () { return chunkZWL5JSVT_cjs.stringifyValue; }
34
+ get: function () { return chunkPVXKP24M_cjs.stringifyValue; }
35
35
  });
package/dist/utilities.js CHANGED
@@ -1,2 +1,2 @@
1
- export { getEnumReflectionType, getUnionTypes, isStringUnion, kindToName, stringifyDefaultValue, stringifyStringValue, stringifyValue } from './chunk-JPFSTX7K.js';
1
+ export { getEnumReflectionType, getUnionTypes, isStringUnion, kindToName, stringifyDefaultValue, stringifyStringValue, stringifyValue } from './chunk-RX7JMZDF.js';
2
2
  import './chunk-SHUYVCID.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/deepkit",
3
- "version": "0.5.105",
3
+ "version": "0.5.107",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
6
6
  "repository": {
@@ -117,15 +117,15 @@
117
117
  "keywords": ["deepkit", "powerlines", "storm-software"],
118
118
  "dependencies": {
119
119
  "@storm-software/config-tools": "^1.188.80",
120
- "@stryke/capnp": "^0.12.60",
121
- "@stryke/fs": "^0.33.35",
122
- "@stryke/path": "^0.25.3",
123
- "@stryke/type-checks": "^0.5.19",
124
- "@stryke/types": "^0.10.33",
120
+ "@stryke/capnp": "^0.12.61",
121
+ "@stryke/fs": "^0.33.36",
122
+ "@stryke/path": "^0.26.0",
123
+ "@stryke/type-checks": "^0.5.20",
124
+ "@stryke/types": "^0.10.34",
125
125
  "defu": "^6.1.4",
126
126
  "esbuild": "^0.25.12",
127
127
  "jiti": "^2.6.1",
128
- "powerlines": "^0.37.62",
128
+ "powerlines": "^0.37.64",
129
129
  "typescript": "^5.9.3"
130
130
  },
131
131
  "devDependencies": {
@@ -138,5 +138,5 @@
138
138
  "tsup": "8.4.0"
139
139
  },
140
140
  "publishConfig": { "access": "public" },
141
- "gitHead": "b535c27a2e65db3f031f63ee1a0d5a9140917c0a"
141
+ "gitHead": "c26fbdcddafca37c6a2c1838ec0f794fc0b084a4"
142
142
  }