circuit-json 0.0.310 → 0.0.312
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 +3 -4
- package/dist/index.d.mts +88 -46
- package/dist/index.mjs +4 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1136,7 +1136,6 @@ var schematic_voltage_probe = z61.object({
|
|
|
1136
1136
|
position: point,
|
|
1137
1137
|
schematic_trace_id: z61.string(),
|
|
1138
1138
|
voltage: voltage.optional(),
|
|
1139
|
-
name: z61.string().optional(),
|
|
1140
1139
|
subcircuit_id: z61.string().optional()
|
|
1141
1140
|
}).describe("Defines a voltage probe measurement point on a schematic trace");
|
|
1142
1141
|
expectTypesMatch(true);
|
|
@@ -2350,7 +2349,9 @@ var pcb_cutout_base = z106.object({
|
|
|
2350
2349
|
type: z106.literal("pcb_cutout"),
|
|
2351
2350
|
pcb_cutout_id: getZodPrefixedIdWithDefault("pcb_cutout"),
|
|
2352
2351
|
pcb_group_id: z106.string().optional(),
|
|
2353
|
-
subcircuit_id: z106.string().optional()
|
|
2352
|
+
subcircuit_id: z106.string().optional(),
|
|
2353
|
+
pcb_board_id: z106.string().optional(),
|
|
2354
|
+
pcb_panel_id: z106.string().optional()
|
|
2354
2355
|
});
|
|
2355
2356
|
var pcb_cutout_rect = pcb_cutout_base.extend({
|
|
2356
2357
|
shape: z106.literal("rect"),
|
|
@@ -2797,8 +2798,7 @@ var simulation_transient_voltage_graph = z127.object({
|
|
|
2797
2798
|
simulation_experiment_id: z127.string(),
|
|
2798
2799
|
timestamps_ms: z127.array(z127.number()).optional(),
|
|
2799
2800
|
voltage_levels: z127.array(z127.number()),
|
|
2800
|
-
|
|
2801
|
-
simulation_voltage_probe_id: z127.string().optional(),
|
|
2801
|
+
source_component_id: z127.string().optional(),
|
|
2802
2802
|
subcircuit_connectivity_map_key: z127.string().optional(),
|
|
2803
2803
|
time_per_step: duration_ms,
|
|
2804
2804
|
start_time_ms: ms,
|
|
@@ -2830,7 +2830,6 @@ var simulation_voltage_probe = z129.object({
|
|
|
2830
2830
|
source_component_id: z129.string().optional(),
|
|
2831
2831
|
source_port_id: z129.string().optional(),
|
|
2832
2832
|
source_net_id: z129.string().optional(),
|
|
2833
|
-
name: z129.string().optional(),
|
|
2834
2833
|
subcircuit_id: z129.string().optional()
|
|
2835
2834
|
}).describe(
|
|
2836
2835
|
"Defines a voltage probe for simulation, connected to a port or a net"
|