circuit-json 0.0.324 → 0.0.325

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
@@ -2141,6 +2141,7 @@ interface PcbVia {
2141
2141
  pcb_trace_id?: string
2142
2142
  net_is_assignable?: boolean
2143
2143
  net_assigned?: boolean
2144
+ is_tented?: boolean
2144
2145
  }
2145
2146
  ```
2146
2147
 
package/dist/index.d.mts CHANGED
@@ -3490,6 +3490,7 @@ declare const pcb_via: z.ZodObject<{
3490
3490
  pcb_trace_id: z.ZodOptional<z.ZodString>;
3491
3491
  net_is_assignable: z.ZodOptional<z.ZodBoolean>;
3492
3492
  net_assigned: z.ZodOptional<z.ZodBoolean>;
3493
+ is_tented: z.ZodOptional<z.ZodBoolean>;
3493
3494
  }, "strip", z.ZodTypeAny, {
3494
3495
  x: number;
3495
3496
  y: number;
@@ -3506,6 +3507,7 @@ declare const pcb_via: z.ZodObject<{
3506
3507
  subcircuit_connectivity_map_key?: string | undefined;
3507
3508
  net_is_assignable?: boolean | undefined;
3508
3509
  net_assigned?: boolean | undefined;
3510
+ is_tented?: boolean | undefined;
3509
3511
  }, {
3510
3512
  x: string | number;
3511
3513
  y: string | number;
@@ -3528,6 +3530,7 @@ declare const pcb_via: z.ZodObject<{
3528
3530
  subcircuit_connectivity_map_key?: string | undefined;
3529
3531
  net_is_assignable?: boolean | undefined;
3530
3532
  net_assigned?: boolean | undefined;
3533
+ is_tented?: boolean | undefined;
3531
3534
  }>;
3532
3535
  type PcbViaInput = z.input<typeof pcb_via>;
3533
3536
  /**
@@ -3551,6 +3554,7 @@ interface PcbVia {
3551
3554
  pcb_trace_id?: string;
3552
3555
  net_is_assignable?: boolean;
3553
3556
  net_assigned?: boolean;
3557
+ is_tented?: boolean;
3554
3558
  }
3555
3559
  /**
3556
3560
  * @deprecated use PcbVia
@@ -16053,6 +16057,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
16053
16057
  pcb_trace_id: z.ZodOptional<z.ZodString>;
16054
16058
  net_is_assignable: z.ZodOptional<z.ZodBoolean>;
16055
16059
  net_assigned: z.ZodOptional<z.ZodBoolean>;
16060
+ is_tented: z.ZodOptional<z.ZodBoolean>;
16056
16061
  }, "strip", z.ZodTypeAny, {
16057
16062
  x: number;
16058
16063
  y: number;
@@ -16069,6 +16074,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
16069
16074
  subcircuit_connectivity_map_key?: string | undefined;
16070
16075
  net_is_assignable?: boolean | undefined;
16071
16076
  net_assigned?: boolean | undefined;
16077
+ is_tented?: boolean | undefined;
16072
16078
  }, {
16073
16079
  x: string | number;
16074
16080
  y: string | number;
@@ -16091,6 +16097,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
16091
16097
  subcircuit_connectivity_map_key?: string | undefined;
16092
16098
  net_is_assignable?: boolean | undefined;
16093
16099
  net_assigned?: boolean | undefined;
16100
+ is_tented?: boolean | undefined;
16094
16101
  }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
16095
16102
  type: z.ZodLiteral<"pcb_smtpad">;
16096
16103
  shape: z.ZodLiteral<"circle">;
@@ -24000,6 +24007,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
24000
24007
  pcb_trace_id: z.ZodOptional<z.ZodString>;
24001
24008
  net_is_assignable: z.ZodOptional<z.ZodBoolean>;
24002
24009
  net_assigned: z.ZodOptional<z.ZodBoolean>;
24010
+ is_tented: z.ZodOptional<z.ZodBoolean>;
24003
24011
  }, "strip", z.ZodTypeAny, {
24004
24012
  x: number;
24005
24013
  y: number;
@@ -24016,6 +24024,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
24016
24024
  subcircuit_connectivity_map_key?: string | undefined;
24017
24025
  net_is_assignable?: boolean | undefined;
24018
24026
  net_assigned?: boolean | undefined;
24027
+ is_tented?: boolean | undefined;
24019
24028
  }, {
24020
24029
  x: string | number;
24021
24030
  y: string | number;
@@ -24038,6 +24047,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
24038
24047
  subcircuit_connectivity_map_key?: string | undefined;
24039
24048
  net_is_assignable?: boolean | undefined;
24040
24049
  net_assigned?: boolean | undefined;
24050
+ is_tented?: boolean | undefined;
24041
24051
  }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
24042
24052
  type: z.ZodLiteral<"pcb_smtpad">;
24043
24053
  shape: z.ZodLiteral<"circle">;
package/dist/index.mjs CHANGED
@@ -1949,7 +1949,8 @@ var pcb_via = z84.object({
1949
1949
  layers: z84.array(layer_ref),
1950
1950
  pcb_trace_id: z84.string().optional(),
1951
1951
  net_is_assignable: z84.boolean().optional(),
1952
- net_assigned: z84.boolean().optional()
1952
+ net_assigned: z84.boolean().optional(),
1953
+ is_tented: z84.boolean().optional()
1953
1954
  }).describe("Defines a via on the PCB");
1954
1955
  expectTypesMatch(true);
1955
1956