circuit-json 0.0.351 → 0.0.353

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.
package/dist/index.d.mts CHANGED
@@ -13328,8 +13328,8 @@ interface UnknownErrorFindingPart {
13328
13328
 
13329
13329
  type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError | UnknownErrorFindingPart | SimulationUnknownExperimentError | SourcePinMustBeConnectedError;
13330
13330
 
13331
- type PcbRenderLayer = "top_silkscreen" | "bottom_silkscreen" | "top_copper" | "bottom_copper" | "top_soldermask" | "bottom_soldermask" | "top_fabrication_note" | "bottom_fabrication_note" | "top_user_note" | "bottom_user_note" | "inner1_copper" | "inner2_copper" | "inner3_copper" | "inner4_copper" | "inner5_copper" | "inner6_copper";
13332
- declare const pcbRenderLayer: z.ZodEnum<["top_silkscreen", "bottom_silkscreen", "top_copper", "bottom_copper", "top_soldermask", "bottom_soldermask", "top_fabrication_note", "bottom_fabrication_note", "top_user_note", "bottom_user_note", "inner1_copper", "inner2_copper", "inner3_copper", "inner4_copper", "inner5_copper", "inner6_copper"]>;
13331
+ type PcbRenderLayer = "top_silkscreen" | "bottom_silkscreen" | "top_copper" | "bottom_copper" | "top_soldermask" | "bottom_soldermask" | "top_fabrication_note" | "bottom_fabrication_note" | "top_user_note" | "bottom_user_note" | "inner1_copper" | "inner2_copper" | "inner3_copper" | "inner4_copper" | "inner5_copper" | "inner6_copper" | "edge_cuts" | "drill";
13332
+ declare const pcbRenderLayer: z.ZodEnum<["top_silkscreen", "bottom_silkscreen", "top_copper", "bottom_copper", "top_soldermask", "bottom_soldermask", "top_fabrication_note", "bottom_fabrication_note", "top_user_note", "bottom_user_note", "inner1_copper", "inner2_copper", "inner3_copper", "inner4_copper", "inner5_copper", "inner6_copper", "edge_cuts", "drill"]>;
13333
13333
 
13334
13334
  declare const cad_component: z.ZodObject<{
13335
13335
  type: z.ZodLiteral<"cad_component">;
package/dist/index.mjs CHANGED
@@ -338,7 +338,9 @@ var pcbRenderLayer = z7.enum([
338
338
  "inner3_copper",
339
339
  "inner4_copper",
340
340
  "inner5_copper",
341
- "inner6_copper"
341
+ "inner6_copper",
342
+ "edge_cuts",
343
+ "drill"
342
344
  ]);
343
345
  expectTypesMatch(true);
344
346