circuit-json 0.0.326 → 0.0.327

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/README.md CHANGED
@@ -1632,6 +1632,7 @@ interface PcbPlatedHoleCircle {
1632
1632
  subcircuit_id?: string
1633
1633
  outer_diameter: number
1634
1634
  hole_diameter: number
1635
+ is_covered_with_solder_mask?: boolean
1635
1636
  x: Distance
1636
1637
  y: Distance
1637
1638
  layers: LayerRef[]
package/dist/index.d.mts CHANGED
@@ -1249,6 +1249,7 @@ interface PcbPlatedHoleCircle {
1249
1249
  subcircuit_id?: string;
1250
1250
  outer_diameter: number;
1251
1251
  hole_diameter: number;
1252
+ is_covered_with_solder_mask?: boolean;
1252
1253
  x: Distance;
1253
1254
  y: Distance;
1254
1255
  layers: LayerRef[];
@@ -1389,6 +1390,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
1389
1390
  subcircuit_id: z.ZodOptional<z.ZodString>;
1390
1391
  outer_diameter: z.ZodNumber;
1391
1392
  hole_diameter: z.ZodNumber;
1393
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
1392
1394
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
1393
1395
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
1394
1396
  layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
@@ -1417,6 +1419,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
1417
1419
  pcb_component_id?: string | undefined;
1418
1420
  subcircuit_id?: string | undefined;
1419
1421
  pcb_group_id?: string | undefined;
1422
+ is_covered_with_solder_mask?: boolean | undefined;
1420
1423
  soldermask_margin?: number | undefined;
1421
1424
  port_hints?: string[] | undefined;
1422
1425
  pcb_port_id?: string | undefined;
@@ -1433,6 +1436,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
1433
1436
  pcb_component_id?: string | undefined;
1434
1437
  subcircuit_id?: string | undefined;
1435
1438
  pcb_group_id?: string | undefined;
1439
+ is_covered_with_solder_mask?: boolean | undefined;
1436
1440
  soldermask_margin?: number | undefined;
1437
1441
  port_hints?: string[] | undefined;
1438
1442
  pcb_port_id?: string | undefined;
@@ -15351,6 +15355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15351
15355
  subcircuit_id: z.ZodOptional<z.ZodString>;
15352
15356
  outer_diameter: z.ZodNumber;
15353
15357
  hole_diameter: z.ZodNumber;
15358
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
15354
15359
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15355
15360
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15356
15361
  layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
@@ -15379,6 +15384,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15379
15384
  pcb_component_id?: string | undefined;
15380
15385
  subcircuit_id?: string | undefined;
15381
15386
  pcb_group_id?: string | undefined;
15387
+ is_covered_with_solder_mask?: boolean | undefined;
15382
15388
  soldermask_margin?: number | undefined;
15383
15389
  port_hints?: string[] | undefined;
15384
15390
  pcb_port_id?: string | undefined;
@@ -15395,6 +15401,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15395
15401
  pcb_component_id?: string | undefined;
15396
15402
  subcircuit_id?: string | undefined;
15397
15403
  pcb_group_id?: string | undefined;
15404
+ is_covered_with_solder_mask?: boolean | undefined;
15398
15405
  soldermask_margin?: number | undefined;
15399
15406
  port_hints?: string[] | undefined;
15400
15407
  pcb_port_id?: string | undefined;
@@ -23338,6 +23345,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23338
23345
  subcircuit_id: z.ZodOptional<z.ZodString>;
23339
23346
  outer_diameter: z.ZodNumber;
23340
23347
  hole_diameter: z.ZodNumber;
23348
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
23341
23349
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
23342
23350
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
23343
23351
  layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
@@ -23366,6 +23374,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23366
23374
  pcb_component_id?: string | undefined;
23367
23375
  subcircuit_id?: string | undefined;
23368
23376
  pcb_group_id?: string | undefined;
23377
+ is_covered_with_solder_mask?: boolean | undefined;
23369
23378
  soldermask_margin?: number | undefined;
23370
23379
  port_hints?: string[] | undefined;
23371
23380
  pcb_port_id?: string | undefined;
@@ -23382,6 +23391,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23382
23391
  pcb_component_id?: string | undefined;
23383
23392
  subcircuit_id?: string | undefined;
23384
23393
  pcb_group_id?: string | undefined;
23394
+ is_covered_with_solder_mask?: boolean | undefined;
23385
23395
  soldermask_margin?: number | undefined;
23386
23396
  port_hints?: string[] | undefined;
23387
23397
  pcb_port_id?: string | undefined;
package/dist/index.mjs CHANGED
@@ -1432,6 +1432,7 @@ var pcb_plated_hole_circle = z74.object({
1432
1432
  subcircuit_id: z74.string().optional(),
1433
1433
  outer_diameter: z74.number(),
1434
1434
  hole_diameter: z74.number(),
1435
+ is_covered_with_solder_mask: z74.boolean().optional(),
1435
1436
  x: distance,
1436
1437
  y: distance,
1437
1438
  layers: z74.array(layer_ref),