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 +2 -2
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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">;
|