@mat3ra/made 2025.9.16-0 → 2025.10.7-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.
@@ -1,7 +1,7 @@
1
1
  import { Vector3DSchema } from "@mat3ra/esse/dist/js/types";
2
2
  import { Lattice } from "../lattice";
3
- type KPointCoordinates = number[];
4
- type KPointPath = Array<{
3
+ export type KPointCoordinates = number[];
4
+ export type KPointPath = Array<{
5
5
  point: string;
6
6
  steps: number;
7
7
  coordinates: KPointCoordinates;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mat3ra/made",
3
- "version": "2025.9.16-0",
3
+ "version": "2025.10.7-0",
4
4
  "description": "MAterials DEsign library",
5
5
  "scripts": {
6
6
  "lint": "eslint --cache src/js tests/js && prettier --write src/js tests/js",
@@ -7,8 +7,8 @@ import { Lattice } from "../lattice";
7
7
  import { paths } from "./paths";
8
8
  import { symmetryPoints } from "./symmetry_points";
9
9
 
10
- type KPointCoordinates = number[];
11
- type KPointPath = Array<{
10
+ export type KPointCoordinates = number[];
11
+ export type KPointPath = Array<{
12
12
  point: string;
13
13
  steps: number;
14
14
  coordinates: KPointCoordinates;