circuit-json 0.0.435 → 0.0.436
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/dist/index.d.mts +462 -1
- package/dist/index.mjs +137 -48
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -26312,6 +26312,62 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
26312
26312
|
}>;
|
|
26313
26313
|
type SimulationTransientVoltageGraphInput = z.input<typeof simulation_transient_voltage_graph>;
|
|
26314
26314
|
|
|
26315
|
+
interface SimulationTransientCurrentGraph {
|
|
26316
|
+
type: "simulation_transient_current_graph";
|
|
26317
|
+
simulation_transient_current_graph_id: string;
|
|
26318
|
+
simulation_experiment_id: string;
|
|
26319
|
+
timestamps_ms?: number[];
|
|
26320
|
+
current_levels: number[];
|
|
26321
|
+
source_component_id?: string;
|
|
26322
|
+
subcircuit_connectivity_map_key?: string;
|
|
26323
|
+
time_per_step: number;
|
|
26324
|
+
start_time_ms: number;
|
|
26325
|
+
end_time_ms: number;
|
|
26326
|
+
name?: string;
|
|
26327
|
+
color?: string;
|
|
26328
|
+
}
|
|
26329
|
+
declare const simulation_transient_current_graph: z.ZodObject<{
|
|
26330
|
+
type: z.ZodLiteral<"simulation_transient_current_graph">;
|
|
26331
|
+
simulation_transient_current_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
26332
|
+
simulation_experiment_id: z.ZodString;
|
|
26333
|
+
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
26334
|
+
current_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
26335
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
26336
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
26337
|
+
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
26338
|
+
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
26339
|
+
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
26340
|
+
name: z.ZodOptional<z.ZodString>;
|
|
26341
|
+
color: z.ZodOptional<z.ZodString>;
|
|
26342
|
+
}, "strip", z.ZodTypeAny, {
|
|
26343
|
+
type: "simulation_transient_current_graph";
|
|
26344
|
+
simulation_experiment_id: string;
|
|
26345
|
+
time_per_step: number;
|
|
26346
|
+
start_time_ms: number;
|
|
26347
|
+
end_time_ms: number;
|
|
26348
|
+
simulation_transient_current_graph_id: string;
|
|
26349
|
+
current_levels: number[];
|
|
26350
|
+
name?: string | undefined;
|
|
26351
|
+
source_component_id?: string | undefined;
|
|
26352
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
26353
|
+
color?: string | undefined;
|
|
26354
|
+
timestamps_ms?: number[] | undefined;
|
|
26355
|
+
}, {
|
|
26356
|
+
type: "simulation_transient_current_graph";
|
|
26357
|
+
simulation_experiment_id: string;
|
|
26358
|
+
time_per_step: string | number;
|
|
26359
|
+
start_time_ms: string | number;
|
|
26360
|
+
end_time_ms: string | number;
|
|
26361
|
+
current_levels: number[];
|
|
26362
|
+
name?: string | undefined;
|
|
26363
|
+
source_component_id?: string | undefined;
|
|
26364
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
26365
|
+
color?: string | undefined;
|
|
26366
|
+
timestamps_ms?: number[] | undefined;
|
|
26367
|
+
simulation_transient_current_graph_id?: string | undefined;
|
|
26368
|
+
}>;
|
|
26369
|
+
type SimulationTransientCurrentGraphInput = z.input<typeof simulation_transient_current_graph>;
|
|
26370
|
+
|
|
26315
26371
|
declare const simulation_switch: z.ZodObject<{
|
|
26316
26372
|
type: z.ZodLiteral<"simulation_switch">;
|
|
26317
26373
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -26486,6 +26542,143 @@ interface SimulationVoltageProbeDisplayOptions {
|
|
|
26486
26542
|
units_per_div?: number;
|
|
26487
26543
|
}
|
|
26488
26544
|
|
|
26545
|
+
declare const simulation_current_probe_display_options: z.ZodObject<{
|
|
26546
|
+
label: z.ZodOptional<z.ZodString>;
|
|
26547
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
26548
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
26549
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
26550
|
+
}, "strip", z.ZodTypeAny, {
|
|
26551
|
+
center?: number | undefined;
|
|
26552
|
+
label?: string | undefined;
|
|
26553
|
+
offset_divs?: number | undefined;
|
|
26554
|
+
units_per_div?: number | undefined;
|
|
26555
|
+
}, {
|
|
26556
|
+
center?: number | undefined;
|
|
26557
|
+
label?: string | undefined;
|
|
26558
|
+
offset_divs?: number | undefined;
|
|
26559
|
+
units_per_div?: number | undefined;
|
|
26560
|
+
}>;
|
|
26561
|
+
declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
|
|
26562
|
+
type: z.ZodLiteral<"simulation_current_probe">;
|
|
26563
|
+
simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
26564
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
26565
|
+
name: z.ZodOptional<z.ZodString>;
|
|
26566
|
+
positive_source_port_id: z.ZodOptional<z.ZodString>;
|
|
26567
|
+
negative_source_port_id: z.ZodOptional<z.ZodString>;
|
|
26568
|
+
positive_source_net_id: z.ZodOptional<z.ZodString>;
|
|
26569
|
+
negative_source_net_id: z.ZodOptional<z.ZodString>;
|
|
26570
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
26571
|
+
color: z.ZodOptional<z.ZodString>;
|
|
26572
|
+
display_options: z.ZodOptional<z.ZodObject<{
|
|
26573
|
+
label: z.ZodOptional<z.ZodString>;
|
|
26574
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
26575
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
26576
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
26577
|
+
}, "strip", z.ZodTypeAny, {
|
|
26578
|
+
center?: number | undefined;
|
|
26579
|
+
label?: string | undefined;
|
|
26580
|
+
offset_divs?: number | undefined;
|
|
26581
|
+
units_per_div?: number | undefined;
|
|
26582
|
+
}, {
|
|
26583
|
+
center?: number | undefined;
|
|
26584
|
+
label?: string | undefined;
|
|
26585
|
+
offset_divs?: number | undefined;
|
|
26586
|
+
units_per_div?: number | undefined;
|
|
26587
|
+
}>>;
|
|
26588
|
+
}, "strip", z.ZodTypeAny, {
|
|
26589
|
+
type: "simulation_current_probe";
|
|
26590
|
+
simulation_current_probe_id: string;
|
|
26591
|
+
name?: string | undefined;
|
|
26592
|
+
source_component_id?: string | undefined;
|
|
26593
|
+
subcircuit_id?: string | undefined;
|
|
26594
|
+
color?: string | undefined;
|
|
26595
|
+
positive_source_port_id?: string | undefined;
|
|
26596
|
+
negative_source_port_id?: string | undefined;
|
|
26597
|
+
positive_source_net_id?: string | undefined;
|
|
26598
|
+
negative_source_net_id?: string | undefined;
|
|
26599
|
+
display_options?: {
|
|
26600
|
+
center?: number | undefined;
|
|
26601
|
+
label?: string | undefined;
|
|
26602
|
+
offset_divs?: number | undefined;
|
|
26603
|
+
units_per_div?: number | undefined;
|
|
26604
|
+
} | undefined;
|
|
26605
|
+
}, {
|
|
26606
|
+
type: "simulation_current_probe";
|
|
26607
|
+
name?: string | undefined;
|
|
26608
|
+
source_component_id?: string | undefined;
|
|
26609
|
+
subcircuit_id?: string | undefined;
|
|
26610
|
+
color?: string | undefined;
|
|
26611
|
+
positive_source_port_id?: string | undefined;
|
|
26612
|
+
negative_source_port_id?: string | undefined;
|
|
26613
|
+
positive_source_net_id?: string | undefined;
|
|
26614
|
+
negative_source_net_id?: string | undefined;
|
|
26615
|
+
display_options?: {
|
|
26616
|
+
center?: number | undefined;
|
|
26617
|
+
label?: string | undefined;
|
|
26618
|
+
offset_divs?: number | undefined;
|
|
26619
|
+
units_per_div?: number | undefined;
|
|
26620
|
+
} | undefined;
|
|
26621
|
+
simulation_current_probe_id?: string | undefined;
|
|
26622
|
+
}>, {
|
|
26623
|
+
type: "simulation_current_probe";
|
|
26624
|
+
simulation_current_probe_id: string;
|
|
26625
|
+
name?: string | undefined;
|
|
26626
|
+
source_component_id?: string | undefined;
|
|
26627
|
+
subcircuit_id?: string | undefined;
|
|
26628
|
+
color?: string | undefined;
|
|
26629
|
+
positive_source_port_id?: string | undefined;
|
|
26630
|
+
negative_source_port_id?: string | undefined;
|
|
26631
|
+
positive_source_net_id?: string | undefined;
|
|
26632
|
+
negative_source_net_id?: string | undefined;
|
|
26633
|
+
display_options?: {
|
|
26634
|
+
center?: number | undefined;
|
|
26635
|
+
label?: string | undefined;
|
|
26636
|
+
offset_divs?: number | undefined;
|
|
26637
|
+
units_per_div?: number | undefined;
|
|
26638
|
+
} | undefined;
|
|
26639
|
+
}, {
|
|
26640
|
+
type: "simulation_current_probe";
|
|
26641
|
+
name?: string | undefined;
|
|
26642
|
+
source_component_id?: string | undefined;
|
|
26643
|
+
subcircuit_id?: string | undefined;
|
|
26644
|
+
color?: string | undefined;
|
|
26645
|
+
positive_source_port_id?: string | undefined;
|
|
26646
|
+
negative_source_port_id?: string | undefined;
|
|
26647
|
+
positive_source_net_id?: string | undefined;
|
|
26648
|
+
negative_source_net_id?: string | undefined;
|
|
26649
|
+
display_options?: {
|
|
26650
|
+
center?: number | undefined;
|
|
26651
|
+
label?: string | undefined;
|
|
26652
|
+
offset_divs?: number | undefined;
|
|
26653
|
+
units_per_div?: number | undefined;
|
|
26654
|
+
} | undefined;
|
|
26655
|
+
simulation_current_probe_id?: string | undefined;
|
|
26656
|
+
}>;
|
|
26657
|
+
type SimulationCurrentProbeInput = z.input<typeof simulation_current_probe>;
|
|
26658
|
+
/**
|
|
26659
|
+
* Defines a current probe for simulation. It measures current flowing from the
|
|
26660
|
+
* positive endpoint to the negative endpoint.
|
|
26661
|
+
*/
|
|
26662
|
+
interface SimulationCurrentProbe {
|
|
26663
|
+
type: "simulation_current_probe";
|
|
26664
|
+
simulation_current_probe_id: string;
|
|
26665
|
+
source_component_id?: string;
|
|
26666
|
+
name?: string;
|
|
26667
|
+
positive_source_port_id?: string;
|
|
26668
|
+
negative_source_port_id?: string;
|
|
26669
|
+
positive_source_net_id?: string;
|
|
26670
|
+
negative_source_net_id?: string;
|
|
26671
|
+
subcircuit_id?: string;
|
|
26672
|
+
color?: string;
|
|
26673
|
+
display_options?: SimulationCurrentProbeDisplayOptions;
|
|
26674
|
+
}
|
|
26675
|
+
interface SimulationCurrentProbeDisplayOptions {
|
|
26676
|
+
label?: string;
|
|
26677
|
+
center?: number;
|
|
26678
|
+
offset_divs?: number;
|
|
26679
|
+
units_per_div?: number;
|
|
26680
|
+
}
|
|
26681
|
+
|
|
26489
26682
|
declare const simulation_unknown_experiment_error: z.ZodObject<{
|
|
26490
26683
|
message: z.ZodString;
|
|
26491
26684
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -52255,6 +52448,45 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52255
52448
|
color?: string | undefined;
|
|
52256
52449
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
52257
52450
|
timestamps_ms?: number[] | undefined;
|
|
52451
|
+
}>, z.ZodObject<{
|
|
52452
|
+
type: z.ZodLiteral<"simulation_transient_current_graph">;
|
|
52453
|
+
simulation_transient_current_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52454
|
+
simulation_experiment_id: z.ZodString;
|
|
52455
|
+
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
52456
|
+
current_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
52457
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
52458
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
52459
|
+
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
52460
|
+
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
52461
|
+
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
52462
|
+
name: z.ZodOptional<z.ZodString>;
|
|
52463
|
+
color: z.ZodOptional<z.ZodString>;
|
|
52464
|
+
}, "strip", z.ZodTypeAny, {
|
|
52465
|
+
type: "simulation_transient_current_graph";
|
|
52466
|
+
simulation_experiment_id: string;
|
|
52467
|
+
time_per_step: number;
|
|
52468
|
+
start_time_ms: number;
|
|
52469
|
+
end_time_ms: number;
|
|
52470
|
+
simulation_transient_current_graph_id: string;
|
|
52471
|
+
current_levels: number[];
|
|
52472
|
+
name?: string | undefined;
|
|
52473
|
+
source_component_id?: string | undefined;
|
|
52474
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
52475
|
+
color?: string | undefined;
|
|
52476
|
+
timestamps_ms?: number[] | undefined;
|
|
52477
|
+
}, {
|
|
52478
|
+
type: "simulation_transient_current_graph";
|
|
52479
|
+
simulation_experiment_id: string;
|
|
52480
|
+
time_per_step: string | number;
|
|
52481
|
+
start_time_ms: string | number;
|
|
52482
|
+
end_time_ms: string | number;
|
|
52483
|
+
current_levels: number[];
|
|
52484
|
+
name?: string | undefined;
|
|
52485
|
+
source_component_id?: string | undefined;
|
|
52486
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
52487
|
+
color?: string | undefined;
|
|
52488
|
+
timestamps_ms?: number[] | undefined;
|
|
52489
|
+
simulation_transient_current_graph_id?: string | undefined;
|
|
52258
52490
|
}>, z.ZodObject<{
|
|
52259
52491
|
type: z.ZodLiteral<"simulation_switch">;
|
|
52260
52492
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -52374,6 +52606,101 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52374
52606
|
offset_divs?: number | undefined;
|
|
52375
52607
|
units_per_div?: number | undefined;
|
|
52376
52608
|
} | undefined;
|
|
52609
|
+
}>, z.ZodEffects<z.ZodObject<{
|
|
52610
|
+
type: z.ZodLiteral<"simulation_current_probe">;
|
|
52611
|
+
simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52612
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
52613
|
+
name: z.ZodOptional<z.ZodString>;
|
|
52614
|
+
positive_source_port_id: z.ZodOptional<z.ZodString>;
|
|
52615
|
+
negative_source_port_id: z.ZodOptional<z.ZodString>;
|
|
52616
|
+
positive_source_net_id: z.ZodOptional<z.ZodString>;
|
|
52617
|
+
negative_source_net_id: z.ZodOptional<z.ZodString>;
|
|
52618
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52619
|
+
color: z.ZodOptional<z.ZodString>;
|
|
52620
|
+
display_options: z.ZodOptional<z.ZodObject<{
|
|
52621
|
+
label: z.ZodOptional<z.ZodString>;
|
|
52622
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
52623
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
52624
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
52625
|
+
}, "strip", z.ZodTypeAny, {
|
|
52626
|
+
center?: number | undefined;
|
|
52627
|
+
label?: string | undefined;
|
|
52628
|
+
offset_divs?: number | undefined;
|
|
52629
|
+
units_per_div?: number | undefined;
|
|
52630
|
+
}, {
|
|
52631
|
+
center?: number | undefined;
|
|
52632
|
+
label?: string | undefined;
|
|
52633
|
+
offset_divs?: number | undefined;
|
|
52634
|
+
units_per_div?: number | undefined;
|
|
52635
|
+
}>>;
|
|
52636
|
+
}, "strip", z.ZodTypeAny, {
|
|
52637
|
+
type: "simulation_current_probe";
|
|
52638
|
+
simulation_current_probe_id: string;
|
|
52639
|
+
name?: string | undefined;
|
|
52640
|
+
source_component_id?: string | undefined;
|
|
52641
|
+
subcircuit_id?: string | undefined;
|
|
52642
|
+
color?: string | undefined;
|
|
52643
|
+
positive_source_port_id?: string | undefined;
|
|
52644
|
+
negative_source_port_id?: string | undefined;
|
|
52645
|
+
positive_source_net_id?: string | undefined;
|
|
52646
|
+
negative_source_net_id?: string | undefined;
|
|
52647
|
+
display_options?: {
|
|
52648
|
+
center?: number | undefined;
|
|
52649
|
+
label?: string | undefined;
|
|
52650
|
+
offset_divs?: number | undefined;
|
|
52651
|
+
units_per_div?: number | undefined;
|
|
52652
|
+
} | undefined;
|
|
52653
|
+
}, {
|
|
52654
|
+
type: "simulation_current_probe";
|
|
52655
|
+
name?: string | undefined;
|
|
52656
|
+
source_component_id?: string | undefined;
|
|
52657
|
+
subcircuit_id?: string | undefined;
|
|
52658
|
+
color?: string | undefined;
|
|
52659
|
+
positive_source_port_id?: string | undefined;
|
|
52660
|
+
negative_source_port_id?: string | undefined;
|
|
52661
|
+
positive_source_net_id?: string | undefined;
|
|
52662
|
+
negative_source_net_id?: string | undefined;
|
|
52663
|
+
display_options?: {
|
|
52664
|
+
center?: number | undefined;
|
|
52665
|
+
label?: string | undefined;
|
|
52666
|
+
offset_divs?: number | undefined;
|
|
52667
|
+
units_per_div?: number | undefined;
|
|
52668
|
+
} | undefined;
|
|
52669
|
+
simulation_current_probe_id?: string | undefined;
|
|
52670
|
+
}>, {
|
|
52671
|
+
type: "simulation_current_probe";
|
|
52672
|
+
simulation_current_probe_id: string;
|
|
52673
|
+
name?: string | undefined;
|
|
52674
|
+
source_component_id?: string | undefined;
|
|
52675
|
+
subcircuit_id?: string | undefined;
|
|
52676
|
+
color?: string | undefined;
|
|
52677
|
+
positive_source_port_id?: string | undefined;
|
|
52678
|
+
negative_source_port_id?: string | undefined;
|
|
52679
|
+
positive_source_net_id?: string | undefined;
|
|
52680
|
+
negative_source_net_id?: string | undefined;
|
|
52681
|
+
display_options?: {
|
|
52682
|
+
center?: number | undefined;
|
|
52683
|
+
label?: string | undefined;
|
|
52684
|
+
offset_divs?: number | undefined;
|
|
52685
|
+
units_per_div?: number | undefined;
|
|
52686
|
+
} | undefined;
|
|
52687
|
+
}, {
|
|
52688
|
+
type: "simulation_current_probe";
|
|
52689
|
+
name?: string | undefined;
|
|
52690
|
+
source_component_id?: string | undefined;
|
|
52691
|
+
subcircuit_id?: string | undefined;
|
|
52692
|
+
color?: string | undefined;
|
|
52693
|
+
positive_source_port_id?: string | undefined;
|
|
52694
|
+
negative_source_port_id?: string | undefined;
|
|
52695
|
+
positive_source_net_id?: string | undefined;
|
|
52696
|
+
negative_source_net_id?: string | undefined;
|
|
52697
|
+
display_options?: {
|
|
52698
|
+
center?: number | undefined;
|
|
52699
|
+
label?: string | undefined;
|
|
52700
|
+
offset_divs?: number | undefined;
|
|
52701
|
+
units_per_div?: number | undefined;
|
|
52702
|
+
} | undefined;
|
|
52703
|
+
simulation_current_probe_id?: string | undefined;
|
|
52377
52704
|
}>, z.ZodObject<{
|
|
52378
52705
|
message: z.ZodString;
|
|
52379
52706
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -70908,6 +71235,45 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70908
71235
|
color?: string | undefined;
|
|
70909
71236
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
70910
71237
|
timestamps_ms?: number[] | undefined;
|
|
71238
|
+
}>, z.ZodObject<{
|
|
71239
|
+
type: z.ZodLiteral<"simulation_transient_current_graph">;
|
|
71240
|
+
simulation_transient_current_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
71241
|
+
simulation_experiment_id: z.ZodString;
|
|
71242
|
+
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
71243
|
+
current_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
71244
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
71245
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
71246
|
+
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
71247
|
+
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
71248
|
+
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
71249
|
+
name: z.ZodOptional<z.ZodString>;
|
|
71250
|
+
color: z.ZodOptional<z.ZodString>;
|
|
71251
|
+
}, "strip", z.ZodTypeAny, {
|
|
71252
|
+
type: "simulation_transient_current_graph";
|
|
71253
|
+
simulation_experiment_id: string;
|
|
71254
|
+
time_per_step: number;
|
|
71255
|
+
start_time_ms: number;
|
|
71256
|
+
end_time_ms: number;
|
|
71257
|
+
simulation_transient_current_graph_id: string;
|
|
71258
|
+
current_levels: number[];
|
|
71259
|
+
name?: string | undefined;
|
|
71260
|
+
source_component_id?: string | undefined;
|
|
71261
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
71262
|
+
color?: string | undefined;
|
|
71263
|
+
timestamps_ms?: number[] | undefined;
|
|
71264
|
+
}, {
|
|
71265
|
+
type: "simulation_transient_current_graph";
|
|
71266
|
+
simulation_experiment_id: string;
|
|
71267
|
+
time_per_step: string | number;
|
|
71268
|
+
start_time_ms: string | number;
|
|
71269
|
+
end_time_ms: string | number;
|
|
71270
|
+
current_levels: number[];
|
|
71271
|
+
name?: string | undefined;
|
|
71272
|
+
source_component_id?: string | undefined;
|
|
71273
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
71274
|
+
color?: string | undefined;
|
|
71275
|
+
timestamps_ms?: number[] | undefined;
|
|
71276
|
+
simulation_transient_current_graph_id?: string | undefined;
|
|
70911
71277
|
}>, z.ZodObject<{
|
|
70912
71278
|
type: z.ZodLiteral<"simulation_switch">;
|
|
70913
71279
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -71027,6 +71393,101 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
71027
71393
|
offset_divs?: number | undefined;
|
|
71028
71394
|
units_per_div?: number | undefined;
|
|
71029
71395
|
} | undefined;
|
|
71396
|
+
}>, z.ZodEffects<z.ZodObject<{
|
|
71397
|
+
type: z.ZodLiteral<"simulation_current_probe">;
|
|
71398
|
+
simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
71399
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
71400
|
+
name: z.ZodOptional<z.ZodString>;
|
|
71401
|
+
positive_source_port_id: z.ZodOptional<z.ZodString>;
|
|
71402
|
+
negative_source_port_id: z.ZodOptional<z.ZodString>;
|
|
71403
|
+
positive_source_net_id: z.ZodOptional<z.ZodString>;
|
|
71404
|
+
negative_source_net_id: z.ZodOptional<z.ZodString>;
|
|
71405
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
71406
|
+
color: z.ZodOptional<z.ZodString>;
|
|
71407
|
+
display_options: z.ZodOptional<z.ZodObject<{
|
|
71408
|
+
label: z.ZodOptional<z.ZodString>;
|
|
71409
|
+
center: z.ZodOptional<z.ZodNumber>;
|
|
71410
|
+
offset_divs: z.ZodOptional<z.ZodNumber>;
|
|
71411
|
+
units_per_div: z.ZodOptional<z.ZodNumber>;
|
|
71412
|
+
}, "strip", z.ZodTypeAny, {
|
|
71413
|
+
center?: number | undefined;
|
|
71414
|
+
label?: string | undefined;
|
|
71415
|
+
offset_divs?: number | undefined;
|
|
71416
|
+
units_per_div?: number | undefined;
|
|
71417
|
+
}, {
|
|
71418
|
+
center?: number | undefined;
|
|
71419
|
+
label?: string | undefined;
|
|
71420
|
+
offset_divs?: number | undefined;
|
|
71421
|
+
units_per_div?: number | undefined;
|
|
71422
|
+
}>>;
|
|
71423
|
+
}, "strip", z.ZodTypeAny, {
|
|
71424
|
+
type: "simulation_current_probe";
|
|
71425
|
+
simulation_current_probe_id: string;
|
|
71426
|
+
name?: string | undefined;
|
|
71427
|
+
source_component_id?: string | undefined;
|
|
71428
|
+
subcircuit_id?: string | undefined;
|
|
71429
|
+
color?: string | undefined;
|
|
71430
|
+
positive_source_port_id?: string | undefined;
|
|
71431
|
+
negative_source_port_id?: string | undefined;
|
|
71432
|
+
positive_source_net_id?: string | undefined;
|
|
71433
|
+
negative_source_net_id?: string | undefined;
|
|
71434
|
+
display_options?: {
|
|
71435
|
+
center?: number | undefined;
|
|
71436
|
+
label?: string | undefined;
|
|
71437
|
+
offset_divs?: number | undefined;
|
|
71438
|
+
units_per_div?: number | undefined;
|
|
71439
|
+
} | undefined;
|
|
71440
|
+
}, {
|
|
71441
|
+
type: "simulation_current_probe";
|
|
71442
|
+
name?: string | undefined;
|
|
71443
|
+
source_component_id?: string | undefined;
|
|
71444
|
+
subcircuit_id?: string | undefined;
|
|
71445
|
+
color?: string | undefined;
|
|
71446
|
+
positive_source_port_id?: string | undefined;
|
|
71447
|
+
negative_source_port_id?: string | undefined;
|
|
71448
|
+
positive_source_net_id?: string | undefined;
|
|
71449
|
+
negative_source_net_id?: string | undefined;
|
|
71450
|
+
display_options?: {
|
|
71451
|
+
center?: number | undefined;
|
|
71452
|
+
label?: string | undefined;
|
|
71453
|
+
offset_divs?: number | undefined;
|
|
71454
|
+
units_per_div?: number | undefined;
|
|
71455
|
+
} | undefined;
|
|
71456
|
+
simulation_current_probe_id?: string | undefined;
|
|
71457
|
+
}>, {
|
|
71458
|
+
type: "simulation_current_probe";
|
|
71459
|
+
simulation_current_probe_id: string;
|
|
71460
|
+
name?: string | undefined;
|
|
71461
|
+
source_component_id?: string | undefined;
|
|
71462
|
+
subcircuit_id?: string | undefined;
|
|
71463
|
+
color?: string | undefined;
|
|
71464
|
+
positive_source_port_id?: string | undefined;
|
|
71465
|
+
negative_source_port_id?: string | undefined;
|
|
71466
|
+
positive_source_net_id?: string | undefined;
|
|
71467
|
+
negative_source_net_id?: string | undefined;
|
|
71468
|
+
display_options?: {
|
|
71469
|
+
center?: number | undefined;
|
|
71470
|
+
label?: string | undefined;
|
|
71471
|
+
offset_divs?: number | undefined;
|
|
71472
|
+
units_per_div?: number | undefined;
|
|
71473
|
+
} | undefined;
|
|
71474
|
+
}, {
|
|
71475
|
+
type: "simulation_current_probe";
|
|
71476
|
+
name?: string | undefined;
|
|
71477
|
+
source_component_id?: string | undefined;
|
|
71478
|
+
subcircuit_id?: string | undefined;
|
|
71479
|
+
color?: string | undefined;
|
|
71480
|
+
positive_source_port_id?: string | undefined;
|
|
71481
|
+
negative_source_port_id?: string | undefined;
|
|
71482
|
+
positive_source_net_id?: string | undefined;
|
|
71483
|
+
negative_source_net_id?: string | undefined;
|
|
71484
|
+
display_options?: {
|
|
71485
|
+
center?: number | undefined;
|
|
71486
|
+
label?: string | undefined;
|
|
71487
|
+
offset_divs?: number | undefined;
|
|
71488
|
+
units_per_div?: number | undefined;
|
|
71489
|
+
} | undefined;
|
|
71490
|
+
simulation_current_probe_id?: string | undefined;
|
|
71030
71491
|
}>, z.ZodObject<{
|
|
71031
71492
|
message: z.ZodString;
|
|
71032
71493
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -71114,4 +71575,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
71114
71575
|
*/
|
|
71115
71576
|
type CircuitJson = AnyCircuitElement[];
|
|
71116
71577
|
|
|
71117
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeDisplayOptions, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_probe_display_options, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
71578
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentProbe, type SimulationCurrentProbeDisplayOptions, type SimulationCurrentProbeInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeDisplayOptions, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_probe, simulation_current_probe_display_options, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_probe_display_options, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|