circuit-json 0.0.318 → 0.0.319

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
@@ -1604,6 +1604,7 @@ interface PcbPlatedHoleCircle {
1604
1604
  pcb_port_id?: string
1605
1605
  pcb_plated_hole_id: string
1606
1606
  soldermask_margin?: number
1607
+ is_covered_with_solder_mask?: boolean
1607
1608
  }
1608
1609
 
1609
1610
  interface PcbHolePillWithRectPad {
package/dist/index.d.mts CHANGED
@@ -1257,6 +1257,7 @@ interface PcbPlatedHoleCircle {
1257
1257
  pcb_port_id?: string;
1258
1258
  pcb_plated_hole_id: string;
1259
1259
  soldermask_margin?: number;
1260
+ is_covered_with_solder_mask?: boolean;
1260
1261
  }
1261
1262
  /**
1262
1263
  * Defines an oval or pill-shaped plated hole on the PCB
@@ -1405,6 +1406,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
1405
1406
  pcb_port_id: z.ZodOptional<z.ZodString>;
1406
1407
  pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1407
1408
  soldermask_margin: z.ZodOptional<z.ZodNumber>;
1409
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
1408
1410
  }, "strip", z.ZodTypeAny, {
1409
1411
  x: number;
1410
1412
  y: number;
@@ -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;
@@ -15155,6 +15159,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15155
15159
  pcb_port_id: z.ZodOptional<z.ZodString>;
15156
15160
  pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15157
15161
  soldermask_margin: z.ZodOptional<z.ZodNumber>;
15162
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
15158
15163
  }, "strip", z.ZodTypeAny, {
15159
15164
  x: number;
15160
15165
  y: number;
@@ -15167,6 +15172,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15167
15172
  pcb_component_id?: string | undefined;
15168
15173
  subcircuit_id?: string | undefined;
15169
15174
  pcb_group_id?: string | undefined;
15175
+ is_covered_with_solder_mask?: boolean | undefined;
15170
15176
  soldermask_margin?: number | undefined;
15171
15177
  port_hints?: string[] | undefined;
15172
15178
  pcb_port_id?: string | undefined;
@@ -15183,6 +15189,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
15183
15189
  pcb_component_id?: string | undefined;
15184
15190
  subcircuit_id?: string | undefined;
15185
15191
  pcb_group_id?: string | undefined;
15192
+ is_covered_with_solder_mask?: boolean | undefined;
15186
15193
  soldermask_margin?: number | undefined;
15187
15194
  port_hints?: string[] | undefined;
15188
15195
  pcb_port_id?: string | undefined;
@@ -23062,6 +23069,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23062
23069
  pcb_port_id: z.ZodOptional<z.ZodString>;
23063
23070
  pcb_plated_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
23064
23071
  soldermask_margin: z.ZodOptional<z.ZodNumber>;
23072
+ is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
23065
23073
  }, "strip", z.ZodTypeAny, {
23066
23074
  x: number;
23067
23075
  y: number;
@@ -23074,6 +23082,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23074
23082
  pcb_component_id?: string | undefined;
23075
23083
  subcircuit_id?: string | undefined;
23076
23084
  pcb_group_id?: string | undefined;
23085
+ is_covered_with_solder_mask?: boolean | undefined;
23077
23086
  soldermask_margin?: number | undefined;
23078
23087
  port_hints?: string[] | undefined;
23079
23088
  pcb_port_id?: string | undefined;
@@ -23090,6 +23099,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
23090
23099
  pcb_component_id?: string | undefined;
23091
23100
  subcircuit_id?: string | undefined;
23092
23101
  pcb_group_id?: string | undefined;
23102
+ is_covered_with_solder_mask?: boolean | undefined;
23093
23103
  soldermask_margin?: number | undefined;
23094
23104
  port_hints?: string[] | undefined;
23095
23105
  pcb_port_id?: string | undefined;
package/dist/index.mjs CHANGED
@@ -1413,7 +1413,8 @@ var pcb_plated_hole_circle = z72.object({
1413
1413
  pcb_component_id: z72.string().optional(),
1414
1414
  pcb_port_id: z72.string().optional(),
1415
1415
  pcb_plated_hole_id: getZodPrefixedIdWithDefault("pcb_plated_hole"),
1416
- soldermask_margin: z72.number().optional()
1416
+ soldermask_margin: z72.number().optional(),
1417
+ is_covered_with_solder_mask: z72.boolean().optional()
1417
1418
  });
1418
1419
  var pcb_plated_hole_oval = z72.object({
1419
1420
  type: z72.literal("pcb_plated_hole"),