@clementine-solutions/jane-io 1.0.11 → 1.0.12

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.
@@ -30,7 +30,7 @@ export function detectStructuralType(input) {
30
30
  return 'boolean';
31
31
  if (typeof input === 'bigint')
32
32
  return 'bigint';
33
- if (input === null)
33
+ if (input === null || input === undefined)
34
34
  return 'unknown';
35
35
  if (Array.isArray(input))
36
36
  return 'array';
package/dist/index.d.ts CHANGED
@@ -17,6 +17,7 @@ export * from './core/boundary-rules/index.js';
17
17
  export * from './core/analysis/index.js';
18
18
  export * from './core/common/index.js';
19
19
  export * from './core/pipeline/index.js';
20
+ export * from './core/shapes/index.js';
20
21
  /**
21
22
  * The default Jane instance configured with the library’s built‑in policy.
22
23
  *
package/dist/index.js CHANGED
@@ -25,6 +25,7 @@ export * from './core/boundary-rules/index.js';
25
25
  export * from './core/analysis/index.js';
26
26
  export * from './core/common/index.js';
27
27
  export * from './core/pipeline/index.js';
28
+ export * from './core/shapes/index.js';
28
29
  /* ——— * ————— * ————— * ————— * ————— * ————— * ————— * ————— * ————— * ——— *\
29
30
  |* Jane *|
30
31
  \* ——— * ————— * ————— * ————— * ————— * ————— * ————— * ————— * ————— * ——— */
package/package.json CHANGED
@@ -110,5 +110,5 @@
110
110
  "registry": "https://registry.npmjs.org/",
111
111
  "ignoreScripts": true
112
112
  },
113
- "version": "1.0.11"
113
+ "version": "1.0.12"
114
114
  }