circuit-json 0.0.280 → 0.0.281
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 +1 -0
- package/dist/index.d.mts +10 -0
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2445,6 +2445,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
2445
2445
|
timestamps_ms?: number[]
|
|
2446
2446
|
voltage_levels: number[]
|
|
2447
2447
|
schematic_voltage_probe_id?: string
|
|
2448
|
+
simulation_voltage_probe_id?: string
|
|
2448
2449
|
subcircuit_connectivity_map_key?: string
|
|
2449
2450
|
time_per_step: number
|
|
2450
2451
|
start_time_ms: number
|
package/dist/index.d.mts
CHANGED
|
@@ -11206,6 +11206,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
11206
11206
|
timestamps_ms?: number[];
|
|
11207
11207
|
voltage_levels: number[];
|
|
11208
11208
|
schematic_voltage_probe_id?: string;
|
|
11209
|
+
simulation_voltage_probe_id?: string;
|
|
11209
11210
|
subcircuit_connectivity_map_key?: string;
|
|
11210
11211
|
time_per_step: number;
|
|
11211
11212
|
start_time_ms: number;
|
|
@@ -11219,6 +11220,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
11219
11220
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
11220
11221
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
11221
11222
|
schematic_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
11223
|
+
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
11222
11224
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
11223
11225
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11224
11226
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11236,6 +11238,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
11236
11238
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
11237
11239
|
schematic_voltage_probe_id?: string | undefined;
|
|
11238
11240
|
timestamps_ms?: number[] | undefined;
|
|
11241
|
+
simulation_voltage_probe_id?: string | undefined;
|
|
11239
11242
|
}, {
|
|
11240
11243
|
type: "simulation_transient_voltage_graph";
|
|
11241
11244
|
simulation_experiment_id: string;
|
|
@@ -11248,6 +11251,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
11248
11251
|
schematic_voltage_probe_id?: string | undefined;
|
|
11249
11252
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
11250
11253
|
timestamps_ms?: number[] | undefined;
|
|
11254
|
+
simulation_voltage_probe_id?: string | undefined;
|
|
11251
11255
|
}>;
|
|
11252
11256
|
type SimulationTransientVoltageGraphInput = z.input<typeof simulation_transient_voltage_graph>;
|
|
11253
11257
|
|
|
@@ -18387,6 +18391,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18387
18391
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
18388
18392
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
18389
18393
|
schematic_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
18394
|
+
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
18390
18395
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
18391
18396
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18392
18397
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -18404,6 +18409,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18404
18409
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
18405
18410
|
schematic_voltage_probe_id?: string | undefined;
|
|
18406
18411
|
timestamps_ms?: number[] | undefined;
|
|
18412
|
+
simulation_voltage_probe_id?: string | undefined;
|
|
18407
18413
|
}, {
|
|
18408
18414
|
type: "simulation_transient_voltage_graph";
|
|
18409
18415
|
simulation_experiment_id: string;
|
|
@@ -18416,6 +18422,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18416
18422
|
schematic_voltage_probe_id?: string | undefined;
|
|
18417
18423
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
18418
18424
|
timestamps_ms?: number[] | undefined;
|
|
18425
|
+
simulation_voltage_probe_id?: string | undefined;
|
|
18419
18426
|
}>, z.ZodObject<{
|
|
18420
18427
|
type: z.ZodLiteral<"simulation_switch">;
|
|
18421
18428
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -25531,6 +25538,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25531
25538
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
25532
25539
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
25533
25540
|
schematic_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
25541
|
+
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
25534
25542
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
25535
25543
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25536
25544
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -25548,6 +25556,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25548
25556
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
25549
25557
|
schematic_voltage_probe_id?: string | undefined;
|
|
25550
25558
|
timestamps_ms?: number[] | undefined;
|
|
25559
|
+
simulation_voltage_probe_id?: string | undefined;
|
|
25551
25560
|
}, {
|
|
25552
25561
|
type: "simulation_transient_voltage_graph";
|
|
25553
25562
|
simulation_experiment_id: string;
|
|
@@ -25560,6 +25569,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25560
25569
|
schematic_voltage_probe_id?: string | undefined;
|
|
25561
25570
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
25562
25571
|
timestamps_ms?: number[] | undefined;
|
|
25572
|
+
simulation_voltage_probe_id?: string | undefined;
|
|
25563
25573
|
}>, z.ZodObject<{
|
|
25564
25574
|
type: z.ZodLiteral<"simulation_switch">;
|
|
25565
25575
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
package/dist/index.mjs
CHANGED
|
@@ -2593,6 +2593,7 @@ var simulation_transient_voltage_graph = z120.object({
|
|
|
2593
2593
|
timestamps_ms: z120.array(z120.number()).optional(),
|
|
2594
2594
|
voltage_levels: z120.array(z120.number()),
|
|
2595
2595
|
schematic_voltage_probe_id: z120.string().optional(),
|
|
2596
|
+
simulation_voltage_probe_id: z120.string().optional(),
|
|
2596
2597
|
subcircuit_connectivity_map_key: z120.string().optional(),
|
|
2597
2598
|
time_per_step: duration_ms,
|
|
2598
2599
|
start_time_ms: ms,
|