circuit-json 0.0.312 → 0.0.314
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 -0
- package/dist/index.d.mts +280 -2
- package/dist/index.mjs +18 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2597,6 +2597,7 @@ interface SchematicVoltageProbe {
|
|
|
2597
2597
|
schematic_trace_id: string
|
|
2598
2598
|
voltage?: number
|
|
2599
2599
|
subcircuit_id?: string
|
|
2600
|
+
color?: string
|
|
2600
2601
|
}
|
|
2601
2602
|
```
|
|
2602
2603
|
|
|
@@ -2651,6 +2652,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
2651
2652
|
start_time_ms: number
|
|
2652
2653
|
end_time_ms: number
|
|
2653
2654
|
name?: string
|
|
2655
|
+
color?: string
|
|
2654
2656
|
}
|
|
2655
2657
|
```
|
|
2656
2658
|
|
|
@@ -2687,6 +2689,7 @@ interface SimulationVoltageProbe {
|
|
|
2687
2689
|
source_port_id?: string
|
|
2688
2690
|
source_net_id?: string
|
|
2689
2691
|
subcircuit_id?: string
|
|
2692
|
+
color?: string
|
|
2690
2693
|
}
|
|
2691
2694
|
```
|
|
2692
2695
|
|
package/dist/index.d.mts
CHANGED
|
@@ -5384,6 +5384,83 @@ interface PcbCutoutPolygon {
|
|
|
5384
5384
|
shape: "polygon";
|
|
5385
5385
|
points: Point[];
|
|
5386
5386
|
}
|
|
5387
|
+
declare const pcb_cutout_path: z.ZodObject<{
|
|
5388
|
+
type: z.ZodLiteral<"pcb_cutout">;
|
|
5389
|
+
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5390
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5391
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5392
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5393
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5394
|
+
} & {
|
|
5395
|
+
shape: z.ZodLiteral<"path">;
|
|
5396
|
+
route: z.ZodArray<z.ZodObject<{
|
|
5397
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5398
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5399
|
+
}, "strip", z.ZodTypeAny, {
|
|
5400
|
+
x: number;
|
|
5401
|
+
y: number;
|
|
5402
|
+
}, {
|
|
5403
|
+
x: string | number;
|
|
5404
|
+
y: string | number;
|
|
5405
|
+
}>, "many">;
|
|
5406
|
+
slot_width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5407
|
+
slot_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5408
|
+
space_between_slots: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5409
|
+
slot_corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5410
|
+
}, "strip", z.ZodTypeAny, {
|
|
5411
|
+
type: "pcb_cutout";
|
|
5412
|
+
shape: "path";
|
|
5413
|
+
route: {
|
|
5414
|
+
x: number;
|
|
5415
|
+
y: number;
|
|
5416
|
+
}[];
|
|
5417
|
+
pcb_cutout_id: string;
|
|
5418
|
+
slot_width: number;
|
|
5419
|
+
subcircuit_id?: string | undefined;
|
|
5420
|
+
pcb_group_id?: string | undefined;
|
|
5421
|
+
pcb_board_id?: string | undefined;
|
|
5422
|
+
pcb_panel_id?: string | undefined;
|
|
5423
|
+
slot_length?: number | undefined;
|
|
5424
|
+
space_between_slots?: number | undefined;
|
|
5425
|
+
slot_corner_radius?: number | undefined;
|
|
5426
|
+
}, {
|
|
5427
|
+
type: "pcb_cutout";
|
|
5428
|
+
shape: "path";
|
|
5429
|
+
route: {
|
|
5430
|
+
x: string | number;
|
|
5431
|
+
y: string | number;
|
|
5432
|
+
}[];
|
|
5433
|
+
slot_width: string | number;
|
|
5434
|
+
subcircuit_id?: string | undefined;
|
|
5435
|
+
pcb_group_id?: string | undefined;
|
|
5436
|
+
pcb_board_id?: string | undefined;
|
|
5437
|
+
pcb_panel_id?: string | undefined;
|
|
5438
|
+
pcb_cutout_id?: string | undefined;
|
|
5439
|
+
slot_length?: string | number | undefined;
|
|
5440
|
+
space_between_slots?: string | number | undefined;
|
|
5441
|
+
slot_corner_radius?: string | number | undefined;
|
|
5442
|
+
}>;
|
|
5443
|
+
type PcbCutoutPathInput = z.input<typeof pcb_cutout_path>;
|
|
5444
|
+
/**
|
|
5445
|
+
* Defines a path-based cutout on the PCB, creating slots along the specified path.
|
|
5446
|
+
* When slot_length and space_between_slots are specified, creates a dashed pattern of slots.
|
|
5447
|
+
* When they are omitted, creates a continuous slot along the entire path.
|
|
5448
|
+
* The slot_corner_radius controls the rounding of slot corners (0 = square, slot_width/2 = circle).
|
|
5449
|
+
*/
|
|
5450
|
+
interface PcbCutoutPath {
|
|
5451
|
+
type: "pcb_cutout";
|
|
5452
|
+
pcb_cutout_id: string;
|
|
5453
|
+
pcb_group_id?: string;
|
|
5454
|
+
subcircuit_id?: string;
|
|
5455
|
+
pcb_board_id?: string;
|
|
5456
|
+
pcb_panel_id?: string;
|
|
5457
|
+
shape: "path";
|
|
5458
|
+
route: Point[];
|
|
5459
|
+
slot_width: Length;
|
|
5460
|
+
slot_length?: Length;
|
|
5461
|
+
space_between_slots?: Length;
|
|
5462
|
+
slot_corner_radius?: Length;
|
|
5463
|
+
}
|
|
5387
5464
|
declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
5388
5465
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
5389
5466
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -5525,9 +5602,64 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5525
5602
|
pcb_board_id?: string | undefined;
|
|
5526
5603
|
pcb_panel_id?: string | undefined;
|
|
5527
5604
|
pcb_cutout_id?: string | undefined;
|
|
5605
|
+
}>, z.ZodObject<{
|
|
5606
|
+
type: z.ZodLiteral<"pcb_cutout">;
|
|
5607
|
+
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5608
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5609
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5610
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5611
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5612
|
+
} & {
|
|
5613
|
+
shape: z.ZodLiteral<"path">;
|
|
5614
|
+
route: z.ZodArray<z.ZodObject<{
|
|
5615
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5616
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5617
|
+
}, "strip", z.ZodTypeAny, {
|
|
5618
|
+
x: number;
|
|
5619
|
+
y: number;
|
|
5620
|
+
}, {
|
|
5621
|
+
x: string | number;
|
|
5622
|
+
y: string | number;
|
|
5623
|
+
}>, "many">;
|
|
5624
|
+
slot_width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5625
|
+
slot_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5626
|
+
space_between_slots: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5627
|
+
slot_corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5628
|
+
}, "strip", z.ZodTypeAny, {
|
|
5629
|
+
type: "pcb_cutout";
|
|
5630
|
+
shape: "path";
|
|
5631
|
+
route: {
|
|
5632
|
+
x: number;
|
|
5633
|
+
y: number;
|
|
5634
|
+
}[];
|
|
5635
|
+
pcb_cutout_id: string;
|
|
5636
|
+
slot_width: number;
|
|
5637
|
+
subcircuit_id?: string | undefined;
|
|
5638
|
+
pcb_group_id?: string | undefined;
|
|
5639
|
+
pcb_board_id?: string | undefined;
|
|
5640
|
+
pcb_panel_id?: string | undefined;
|
|
5641
|
+
slot_length?: number | undefined;
|
|
5642
|
+
space_between_slots?: number | undefined;
|
|
5643
|
+
slot_corner_radius?: number | undefined;
|
|
5644
|
+
}, {
|
|
5645
|
+
type: "pcb_cutout";
|
|
5646
|
+
shape: "path";
|
|
5647
|
+
route: {
|
|
5648
|
+
x: string | number;
|
|
5649
|
+
y: string | number;
|
|
5650
|
+
}[];
|
|
5651
|
+
slot_width: string | number;
|
|
5652
|
+
subcircuit_id?: string | undefined;
|
|
5653
|
+
pcb_group_id?: string | undefined;
|
|
5654
|
+
pcb_board_id?: string | undefined;
|
|
5655
|
+
pcb_panel_id?: string | undefined;
|
|
5656
|
+
pcb_cutout_id?: string | undefined;
|
|
5657
|
+
slot_length?: string | number | undefined;
|
|
5658
|
+
space_between_slots?: string | number | undefined;
|
|
5659
|
+
slot_corner_radius?: string | number | undefined;
|
|
5528
5660
|
}>]>;
|
|
5529
5661
|
type PcbCutoutInput = z.input<typeof pcb_cutout>;
|
|
5530
|
-
type PcbCutout = PcbCutoutRect | PcbCutoutCircle | PcbCutoutPolygon;
|
|
5662
|
+
type PcbCutout = PcbCutoutRect | PcbCutoutCircle | PcbCutoutPolygon | PcbCutoutPath;
|
|
5531
5663
|
|
|
5532
5664
|
declare const pcb_missing_footprint_error: z.ZodObject<{
|
|
5533
5665
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
@@ -8718,6 +8850,7 @@ interface SchematicVoltageProbe {
|
|
|
8718
8850
|
schematic_trace_id: string;
|
|
8719
8851
|
voltage?: number;
|
|
8720
8852
|
subcircuit_id?: string;
|
|
8853
|
+
color?: string;
|
|
8721
8854
|
}
|
|
8722
8855
|
declare const schematic_voltage_probe: z.ZodObject<{
|
|
8723
8856
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
@@ -8736,6 +8869,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8736
8869
|
schematic_trace_id: z.ZodString;
|
|
8737
8870
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8738
8871
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8872
|
+
color: z.ZodOptional<z.ZodString>;
|
|
8739
8873
|
}, "strip", z.ZodTypeAny, {
|
|
8740
8874
|
type: "schematic_voltage_probe";
|
|
8741
8875
|
schematic_trace_id: string;
|
|
@@ -8746,6 +8880,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8746
8880
|
schematic_voltage_probe_id: string;
|
|
8747
8881
|
source_component_id?: string | undefined;
|
|
8748
8882
|
subcircuit_id?: string | undefined;
|
|
8883
|
+
color?: string | undefined;
|
|
8749
8884
|
voltage?: number | undefined;
|
|
8750
8885
|
}, {
|
|
8751
8886
|
type: "schematic_voltage_probe";
|
|
@@ -8757,6 +8892,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8757
8892
|
schematic_voltage_probe_id: string;
|
|
8758
8893
|
source_component_id?: string | undefined;
|
|
8759
8894
|
subcircuit_id?: string | undefined;
|
|
8895
|
+
color?: string | undefined;
|
|
8760
8896
|
voltage?: string | number | undefined;
|
|
8761
8897
|
}>;
|
|
8762
8898
|
type SchematicVoltageProbeInput = z.input<typeof schematic_voltage_probe>;
|
|
@@ -9286,6 +9422,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
9286
9422
|
start_time_ms: number;
|
|
9287
9423
|
end_time_ms: number;
|
|
9288
9424
|
name?: string;
|
|
9425
|
+
color?: string;
|
|
9289
9426
|
}
|
|
9290
9427
|
declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
9291
9428
|
type: z.ZodLiteral<"simulation_transient_voltage_graph">;
|
|
@@ -9299,6 +9436,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9299
9436
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
9300
9437
|
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
9301
9438
|
name: z.ZodOptional<z.ZodString>;
|
|
9439
|
+
color: z.ZodOptional<z.ZodString>;
|
|
9302
9440
|
}, "strip", z.ZodTypeAny, {
|
|
9303
9441
|
type: "simulation_transient_voltage_graph";
|
|
9304
9442
|
simulation_experiment_id: string;
|
|
@@ -9310,6 +9448,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9310
9448
|
name?: string | undefined;
|
|
9311
9449
|
source_component_id?: string | undefined;
|
|
9312
9450
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
9451
|
+
color?: string | undefined;
|
|
9313
9452
|
timestamps_ms?: number[] | undefined;
|
|
9314
9453
|
}, {
|
|
9315
9454
|
type: "simulation_transient_voltage_graph";
|
|
@@ -9321,6 +9460,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9321
9460
|
name?: string | undefined;
|
|
9322
9461
|
source_component_id?: string | undefined;
|
|
9323
9462
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
9463
|
+
color?: string | undefined;
|
|
9324
9464
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
9325
9465
|
timestamps_ms?: number[] | undefined;
|
|
9326
9466
|
}>;
|
|
@@ -9369,6 +9509,7 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9369
9509
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
9370
9510
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
9371
9511
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9512
|
+
color: z.ZodOptional<z.ZodString>;
|
|
9372
9513
|
}, "strip", z.ZodTypeAny, {
|
|
9373
9514
|
type: "simulation_voltage_probe";
|
|
9374
9515
|
simulation_voltage_probe_id: string;
|
|
@@ -9376,12 +9517,14 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9376
9517
|
subcircuit_id?: string | undefined;
|
|
9377
9518
|
source_port_id?: string | undefined;
|
|
9378
9519
|
source_net_id?: string | undefined;
|
|
9520
|
+
color?: string | undefined;
|
|
9379
9521
|
}, {
|
|
9380
9522
|
type: "simulation_voltage_probe";
|
|
9381
9523
|
source_component_id?: string | undefined;
|
|
9382
9524
|
subcircuit_id?: string | undefined;
|
|
9383
9525
|
source_port_id?: string | undefined;
|
|
9384
9526
|
source_net_id?: string | undefined;
|
|
9527
|
+
color?: string | undefined;
|
|
9385
9528
|
simulation_voltage_probe_id?: string | undefined;
|
|
9386
9529
|
}>, {
|
|
9387
9530
|
type: "simulation_voltage_probe";
|
|
@@ -9390,12 +9533,14 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9390
9533
|
subcircuit_id?: string | undefined;
|
|
9391
9534
|
source_port_id?: string | undefined;
|
|
9392
9535
|
source_net_id?: string | undefined;
|
|
9536
|
+
color?: string | undefined;
|
|
9393
9537
|
}, {
|
|
9394
9538
|
type: "simulation_voltage_probe";
|
|
9395
9539
|
source_component_id?: string | undefined;
|
|
9396
9540
|
subcircuit_id?: string | undefined;
|
|
9397
9541
|
source_port_id?: string | undefined;
|
|
9398
9542
|
source_net_id?: string | undefined;
|
|
9543
|
+
color?: string | undefined;
|
|
9399
9544
|
simulation_voltage_probe_id?: string | undefined;
|
|
9400
9545
|
}>;
|
|
9401
9546
|
type SimulationVoltageProbeInput = z.input<typeof simulation_voltage_probe>;
|
|
@@ -9409,6 +9554,7 @@ interface SimulationVoltageProbe {
|
|
|
9409
9554
|
source_port_id?: string;
|
|
9410
9555
|
source_net_id?: string;
|
|
9411
9556
|
subcircuit_id?: string;
|
|
9557
|
+
color?: string;
|
|
9412
9558
|
}
|
|
9413
9559
|
|
|
9414
9560
|
declare const simulation_unknown_experiment_error: z.ZodObject<{
|
|
@@ -17896,6 +18042,61 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17896
18042
|
pcb_board_id?: string | undefined;
|
|
17897
18043
|
pcb_panel_id?: string | undefined;
|
|
17898
18044
|
pcb_cutout_id?: string | undefined;
|
|
18045
|
+
}>, z.ZodObject<{
|
|
18046
|
+
type: z.ZodLiteral<"pcb_cutout">;
|
|
18047
|
+
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
18048
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
18049
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18050
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
18051
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
18052
|
+
} & {
|
|
18053
|
+
shape: z.ZodLiteral<"path">;
|
|
18054
|
+
route: z.ZodArray<z.ZodObject<{
|
|
18055
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18056
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18057
|
+
}, "strip", z.ZodTypeAny, {
|
|
18058
|
+
x: number;
|
|
18059
|
+
y: number;
|
|
18060
|
+
}, {
|
|
18061
|
+
x: string | number;
|
|
18062
|
+
y: string | number;
|
|
18063
|
+
}>, "many">;
|
|
18064
|
+
slot_width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18065
|
+
slot_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18066
|
+
space_between_slots: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18067
|
+
slot_corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18068
|
+
}, "strip", z.ZodTypeAny, {
|
|
18069
|
+
type: "pcb_cutout";
|
|
18070
|
+
shape: "path";
|
|
18071
|
+
route: {
|
|
18072
|
+
x: number;
|
|
18073
|
+
y: number;
|
|
18074
|
+
}[];
|
|
18075
|
+
pcb_cutout_id: string;
|
|
18076
|
+
slot_width: number;
|
|
18077
|
+
subcircuit_id?: string | undefined;
|
|
18078
|
+
pcb_group_id?: string | undefined;
|
|
18079
|
+
pcb_board_id?: string | undefined;
|
|
18080
|
+
pcb_panel_id?: string | undefined;
|
|
18081
|
+
slot_length?: number | undefined;
|
|
18082
|
+
space_between_slots?: number | undefined;
|
|
18083
|
+
slot_corner_radius?: number | undefined;
|
|
18084
|
+
}, {
|
|
18085
|
+
type: "pcb_cutout";
|
|
18086
|
+
shape: "path";
|
|
18087
|
+
route: {
|
|
18088
|
+
x: string | number;
|
|
18089
|
+
y: string | number;
|
|
18090
|
+
}[];
|
|
18091
|
+
slot_width: string | number;
|
|
18092
|
+
subcircuit_id?: string | undefined;
|
|
18093
|
+
pcb_group_id?: string | undefined;
|
|
18094
|
+
pcb_board_id?: string | undefined;
|
|
18095
|
+
pcb_panel_id?: string | undefined;
|
|
18096
|
+
pcb_cutout_id?: string | undefined;
|
|
18097
|
+
slot_length?: string | number | undefined;
|
|
18098
|
+
space_between_slots?: string | number | undefined;
|
|
18099
|
+
slot_corner_radius?: string | number | undefined;
|
|
17899
18100
|
}>]>, z.ZodObject<{
|
|
17900
18101
|
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
17901
18102
|
pcb_ground_plane_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -19519,6 +19720,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19519
19720
|
schematic_trace_id: z.ZodString;
|
|
19520
19721
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19521
19722
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19723
|
+
color: z.ZodOptional<z.ZodString>;
|
|
19522
19724
|
}, "strip", z.ZodTypeAny, {
|
|
19523
19725
|
type: "schematic_voltage_probe";
|
|
19524
19726
|
schematic_trace_id: string;
|
|
@@ -19529,6 +19731,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19529
19731
|
schematic_voltage_probe_id: string;
|
|
19530
19732
|
source_component_id?: string | undefined;
|
|
19531
19733
|
subcircuit_id?: string | undefined;
|
|
19734
|
+
color?: string | undefined;
|
|
19532
19735
|
voltage?: number | undefined;
|
|
19533
19736
|
}, {
|
|
19534
19737
|
type: "schematic_voltage_probe";
|
|
@@ -19540,6 +19743,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19540
19743
|
schematic_voltage_probe_id: string;
|
|
19541
19744
|
source_component_id?: string | undefined;
|
|
19542
19745
|
subcircuit_id?: string | undefined;
|
|
19746
|
+
color?: string | undefined;
|
|
19543
19747
|
voltage?: string | number | undefined;
|
|
19544
19748
|
}>, z.ZodObject<{
|
|
19545
19749
|
type: z.ZodLiteral<"schematic_manual_edit_conflict_warning">;
|
|
@@ -19983,6 +20187,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19983
20187
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19984
20188
|
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19985
20189
|
name: z.ZodOptional<z.ZodString>;
|
|
20190
|
+
color: z.ZodOptional<z.ZodString>;
|
|
19986
20191
|
}, "strip", z.ZodTypeAny, {
|
|
19987
20192
|
type: "simulation_transient_voltage_graph";
|
|
19988
20193
|
simulation_experiment_id: string;
|
|
@@ -19994,6 +20199,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19994
20199
|
name?: string | undefined;
|
|
19995
20200
|
source_component_id?: string | undefined;
|
|
19996
20201
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
20202
|
+
color?: string | undefined;
|
|
19997
20203
|
timestamps_ms?: number[] | undefined;
|
|
19998
20204
|
}, {
|
|
19999
20205
|
type: "simulation_transient_voltage_graph";
|
|
@@ -20005,6 +20211,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20005
20211
|
name?: string | undefined;
|
|
20006
20212
|
source_component_id?: string | undefined;
|
|
20007
20213
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
20214
|
+
color?: string | undefined;
|
|
20008
20215
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
20009
20216
|
timestamps_ms?: number[] | undefined;
|
|
20010
20217
|
}>, z.ZodObject<{
|
|
@@ -20038,6 +20245,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20038
20245
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
20039
20246
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
20040
20247
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20248
|
+
color: z.ZodOptional<z.ZodString>;
|
|
20041
20249
|
}, "strip", z.ZodTypeAny, {
|
|
20042
20250
|
type: "simulation_voltage_probe";
|
|
20043
20251
|
simulation_voltage_probe_id: string;
|
|
@@ -20045,12 +20253,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20045
20253
|
subcircuit_id?: string | undefined;
|
|
20046
20254
|
source_port_id?: string | undefined;
|
|
20047
20255
|
source_net_id?: string | undefined;
|
|
20256
|
+
color?: string | undefined;
|
|
20048
20257
|
}, {
|
|
20049
20258
|
type: "simulation_voltage_probe";
|
|
20050
20259
|
source_component_id?: string | undefined;
|
|
20051
20260
|
subcircuit_id?: string | undefined;
|
|
20052
20261
|
source_port_id?: string | undefined;
|
|
20053
20262
|
source_net_id?: string | undefined;
|
|
20263
|
+
color?: string | undefined;
|
|
20054
20264
|
simulation_voltage_probe_id?: string | undefined;
|
|
20055
20265
|
}>, {
|
|
20056
20266
|
type: "simulation_voltage_probe";
|
|
@@ -20059,12 +20269,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20059
20269
|
subcircuit_id?: string | undefined;
|
|
20060
20270
|
source_port_id?: string | undefined;
|
|
20061
20271
|
source_net_id?: string | undefined;
|
|
20272
|
+
color?: string | undefined;
|
|
20062
20273
|
}, {
|
|
20063
20274
|
type: "simulation_voltage_probe";
|
|
20064
20275
|
source_component_id?: string | undefined;
|
|
20065
20276
|
subcircuit_id?: string | undefined;
|
|
20066
20277
|
source_port_id?: string | undefined;
|
|
20067
20278
|
source_net_id?: string | undefined;
|
|
20279
|
+
color?: string | undefined;
|
|
20068
20280
|
simulation_voltage_probe_id?: string | undefined;
|
|
20069
20281
|
}>, z.ZodObject<{
|
|
20070
20282
|
type: z.ZodLiteral<"simulation_unknown_experiment_error">;
|
|
@@ -25639,6 +25851,61 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25639
25851
|
pcb_board_id?: string | undefined;
|
|
25640
25852
|
pcb_panel_id?: string | undefined;
|
|
25641
25853
|
pcb_cutout_id?: string | undefined;
|
|
25854
|
+
}>, z.ZodObject<{
|
|
25855
|
+
type: z.ZodLiteral<"pcb_cutout">;
|
|
25856
|
+
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25857
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25858
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25859
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
25860
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
25861
|
+
} & {
|
|
25862
|
+
shape: z.ZodLiteral<"path">;
|
|
25863
|
+
route: z.ZodArray<z.ZodObject<{
|
|
25864
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25865
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25866
|
+
}, "strip", z.ZodTypeAny, {
|
|
25867
|
+
x: number;
|
|
25868
|
+
y: number;
|
|
25869
|
+
}, {
|
|
25870
|
+
x: string | number;
|
|
25871
|
+
y: string | number;
|
|
25872
|
+
}>, "many">;
|
|
25873
|
+
slot_width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25874
|
+
slot_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25875
|
+
space_between_slots: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25876
|
+
slot_corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25877
|
+
}, "strip", z.ZodTypeAny, {
|
|
25878
|
+
type: "pcb_cutout";
|
|
25879
|
+
shape: "path";
|
|
25880
|
+
route: {
|
|
25881
|
+
x: number;
|
|
25882
|
+
y: number;
|
|
25883
|
+
}[];
|
|
25884
|
+
pcb_cutout_id: string;
|
|
25885
|
+
slot_width: number;
|
|
25886
|
+
subcircuit_id?: string | undefined;
|
|
25887
|
+
pcb_group_id?: string | undefined;
|
|
25888
|
+
pcb_board_id?: string | undefined;
|
|
25889
|
+
pcb_panel_id?: string | undefined;
|
|
25890
|
+
slot_length?: number | undefined;
|
|
25891
|
+
space_between_slots?: number | undefined;
|
|
25892
|
+
slot_corner_radius?: number | undefined;
|
|
25893
|
+
}, {
|
|
25894
|
+
type: "pcb_cutout";
|
|
25895
|
+
shape: "path";
|
|
25896
|
+
route: {
|
|
25897
|
+
x: string | number;
|
|
25898
|
+
y: string | number;
|
|
25899
|
+
}[];
|
|
25900
|
+
slot_width: string | number;
|
|
25901
|
+
subcircuit_id?: string | undefined;
|
|
25902
|
+
pcb_group_id?: string | undefined;
|
|
25903
|
+
pcb_board_id?: string | undefined;
|
|
25904
|
+
pcb_panel_id?: string | undefined;
|
|
25905
|
+
pcb_cutout_id?: string | undefined;
|
|
25906
|
+
slot_length?: string | number | undefined;
|
|
25907
|
+
space_between_slots?: string | number | undefined;
|
|
25908
|
+
slot_corner_radius?: string | number | undefined;
|
|
25642
25909
|
}>]>, z.ZodObject<{
|
|
25643
25910
|
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
25644
25911
|
pcb_ground_plane_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -27262,6 +27529,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27262
27529
|
schematic_trace_id: z.ZodString;
|
|
27263
27530
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27264
27531
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27532
|
+
color: z.ZodOptional<z.ZodString>;
|
|
27265
27533
|
}, "strip", z.ZodTypeAny, {
|
|
27266
27534
|
type: "schematic_voltage_probe";
|
|
27267
27535
|
schematic_trace_id: string;
|
|
@@ -27272,6 +27540,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27272
27540
|
schematic_voltage_probe_id: string;
|
|
27273
27541
|
source_component_id?: string | undefined;
|
|
27274
27542
|
subcircuit_id?: string | undefined;
|
|
27543
|
+
color?: string | undefined;
|
|
27275
27544
|
voltage?: number | undefined;
|
|
27276
27545
|
}, {
|
|
27277
27546
|
type: "schematic_voltage_probe";
|
|
@@ -27283,6 +27552,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27283
27552
|
schematic_voltage_probe_id: string;
|
|
27284
27553
|
source_component_id?: string | undefined;
|
|
27285
27554
|
subcircuit_id?: string | undefined;
|
|
27555
|
+
color?: string | undefined;
|
|
27286
27556
|
voltage?: string | number | undefined;
|
|
27287
27557
|
}>, z.ZodObject<{
|
|
27288
27558
|
type: z.ZodLiteral<"schematic_manual_edit_conflict_warning">;
|
|
@@ -27726,6 +27996,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27726
27996
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27727
27997
|
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27728
27998
|
name: z.ZodOptional<z.ZodString>;
|
|
27999
|
+
color: z.ZodOptional<z.ZodString>;
|
|
27729
28000
|
}, "strip", z.ZodTypeAny, {
|
|
27730
28001
|
type: "simulation_transient_voltage_graph";
|
|
27731
28002
|
simulation_experiment_id: string;
|
|
@@ -27737,6 +28008,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27737
28008
|
name?: string | undefined;
|
|
27738
28009
|
source_component_id?: string | undefined;
|
|
27739
28010
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
28011
|
+
color?: string | undefined;
|
|
27740
28012
|
timestamps_ms?: number[] | undefined;
|
|
27741
28013
|
}, {
|
|
27742
28014
|
type: "simulation_transient_voltage_graph";
|
|
@@ -27748,6 +28020,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27748
28020
|
name?: string | undefined;
|
|
27749
28021
|
source_component_id?: string | undefined;
|
|
27750
28022
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
28023
|
+
color?: string | undefined;
|
|
27751
28024
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
27752
28025
|
timestamps_ms?: number[] | undefined;
|
|
27753
28026
|
}>, z.ZodObject<{
|
|
@@ -27781,6 +28054,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27781
28054
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
27782
28055
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
27783
28056
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
28057
|
+
color: z.ZodOptional<z.ZodString>;
|
|
27784
28058
|
}, "strip", z.ZodTypeAny, {
|
|
27785
28059
|
type: "simulation_voltage_probe";
|
|
27786
28060
|
simulation_voltage_probe_id: string;
|
|
@@ -27788,12 +28062,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27788
28062
|
subcircuit_id?: string | undefined;
|
|
27789
28063
|
source_port_id?: string | undefined;
|
|
27790
28064
|
source_net_id?: string | undefined;
|
|
28065
|
+
color?: string | undefined;
|
|
27791
28066
|
}, {
|
|
27792
28067
|
type: "simulation_voltage_probe";
|
|
27793
28068
|
source_component_id?: string | undefined;
|
|
27794
28069
|
subcircuit_id?: string | undefined;
|
|
27795
28070
|
source_port_id?: string | undefined;
|
|
27796
28071
|
source_net_id?: string | undefined;
|
|
28072
|
+
color?: string | undefined;
|
|
27797
28073
|
simulation_voltage_probe_id?: string | undefined;
|
|
27798
28074
|
}>, {
|
|
27799
28075
|
type: "simulation_voltage_probe";
|
|
@@ -27802,12 +28078,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27802
28078
|
subcircuit_id?: string | undefined;
|
|
27803
28079
|
source_port_id?: string | undefined;
|
|
27804
28080
|
source_net_id?: string | undefined;
|
|
28081
|
+
color?: string | undefined;
|
|
27805
28082
|
}, {
|
|
27806
28083
|
type: "simulation_voltage_probe";
|
|
27807
28084
|
source_component_id?: string | undefined;
|
|
27808
28085
|
subcircuit_id?: string | undefined;
|
|
27809
28086
|
source_port_id?: string | undefined;
|
|
27810
28087
|
source_net_id?: string | undefined;
|
|
28088
|
+
color?: string | undefined;
|
|
27811
28089
|
simulation_voltage_probe_id?: string | undefined;
|
|
27812
28090
|
}>, z.ZodObject<{
|
|
27813
28091
|
type: z.ZodLiteral<"simulation_unknown_experiment_error">;
|
|
@@ -27847,4 +28125,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
27847
28125
|
*/
|
|
27848
28126
|
type CircuitJson = AnyCircuitElement[];
|
|
27849
28127
|
|
|
27850
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, 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 LayerRef, type LayerRefInput, type Length, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, 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 PcbPanel, type PcbPanelInput, 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 PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, 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 PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, 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_panel, 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_line, pcb_silkscreen_oval, pcb_silkscreen_path, 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_via, pcb_trace_route_point_wire, pcb_via, pcb_via_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
28128
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, 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 LayerRef, type LayerRefInput, type Length, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, 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 PcbPanel, type PcbPanelInput, 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 PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, 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 PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, 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_panel, 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_line, pcb_silkscreen_oval, pcb_silkscreen_path, 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_via, pcb_trace_route_point_wire, pcb_via, pcb_via_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|