kicadts 0.0.5 → 0.0.6

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4135,9 +4135,9 @@ SxClass.register(Property);
4135
4135
 
4136
4136
  // lib/sexpr/classes/SheetInstances.ts
4137
4137
  var SheetInstances = class _SheetInstances extends SxClass {
4138
- static token = "instances";
4139
- static parentToken = "sheet";
4140
- token = "instances";
4138
+ static token = "sheet_instances";
4139
+ static parentToken = "kicad_sch";
4140
+ token = "sheet_instances";
4141
4141
  projects = [];
4142
4142
  static fromSexprPrimitives(primitiveSexprs) {
4143
4143
  const instances = new _SheetInstances();
@@ -4152,7 +4152,7 @@ var SheetInstances = class _SheetInstances extends SxClass {
4152
4152
  return [...this.projects];
4153
4153
  }
4154
4154
  getString() {
4155
- const lines = ["(instances"];
4155
+ const lines = ["(sheet_instances"];
4156
4156
  for (const project of this.projects) {
4157
4157
  lines.push(project.getStringIndented());
4158
4158
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kicadts",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",