circuit-json 0.0.245 → 0.0.247
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 +122 -8
- package/dist/index.mjs +124 -104
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3967,6 +3967,50 @@ interface PcbMissingFootprintError {
|
|
|
3967
3967
|
*/
|
|
3968
3968
|
type PCBMissingFootprintError = PcbMissingFootprintError;
|
|
3969
3969
|
|
|
3970
|
+
declare const external_footprint_load_error: z.ZodObject<{
|
|
3971
|
+
type: z.ZodLiteral<"external_footprint_load_error">;
|
|
3972
|
+
external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3973
|
+
pcb_component_id: z.ZodString;
|
|
3974
|
+
source_component_id: z.ZodString;
|
|
3975
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
3976
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3977
|
+
footprinter_string: z.ZodOptional<z.ZodString>;
|
|
3978
|
+
error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
|
|
3979
|
+
message: z.ZodString;
|
|
3980
|
+
}, "strip", z.ZodTypeAny, {
|
|
3981
|
+
message: string;
|
|
3982
|
+
type: "external_footprint_load_error";
|
|
3983
|
+
pcb_component_id: string;
|
|
3984
|
+
source_component_id: string;
|
|
3985
|
+
error_type: "external_footprint_load_error";
|
|
3986
|
+
external_footprint_load_error_id: string;
|
|
3987
|
+
subcircuit_id?: string | undefined;
|
|
3988
|
+
pcb_group_id?: string | undefined;
|
|
3989
|
+
footprinter_string?: string | undefined;
|
|
3990
|
+
}, {
|
|
3991
|
+
message: string;
|
|
3992
|
+
type: "external_footprint_load_error";
|
|
3993
|
+
pcb_component_id: string;
|
|
3994
|
+
source_component_id: string;
|
|
3995
|
+
subcircuit_id?: string | undefined;
|
|
3996
|
+
pcb_group_id?: string | undefined;
|
|
3997
|
+
error_type?: "external_footprint_load_error" | undefined;
|
|
3998
|
+
external_footprint_load_error_id?: string | undefined;
|
|
3999
|
+
footprinter_string?: string | undefined;
|
|
4000
|
+
}>;
|
|
4001
|
+
type ExternalFootprintLoadErrorInput = z.input<typeof external_footprint_load_error>;
|
|
4002
|
+
interface ExternalFootprintLoadError {
|
|
4003
|
+
type: "external_footprint_load_error";
|
|
4004
|
+
external_footprint_load_error_id: string;
|
|
4005
|
+
pcb_component_id: string;
|
|
4006
|
+
source_component_id: string;
|
|
4007
|
+
pcb_group_id?: string;
|
|
4008
|
+
subcircuit_id?: string;
|
|
4009
|
+
footprinter_string?: string;
|
|
4010
|
+
error_type: "external_footprint_load_error";
|
|
4011
|
+
message: string;
|
|
4012
|
+
}
|
|
4013
|
+
|
|
3970
4014
|
declare const pcb_group: z.ZodObject<{
|
|
3971
4015
|
type: z.ZodLiteral<"pcb_group">;
|
|
3972
4016
|
pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -4919,7 +4963,7 @@ declare const pcb_copper_pour: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
4919
4963
|
type PcbCopperPourInput = z.input<typeof pcb_copper_pour>;
|
|
4920
4964
|
type PcbCopperPour = PcbCopperPourRect | PcbCopperPourBRep | PcbCopperPourPolygon;
|
|
4921
4965
|
|
|
4922
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour;
|
|
4966
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour;
|
|
4923
4967
|
|
|
4924
4968
|
interface SchematicBox {
|
|
4925
4969
|
type: "schematic_box";
|
|
@@ -9258,6 +9302,7 @@ declare const cad_component: z.ZodObject<{
|
|
|
9258
9302
|
model_gltf_url: z.ZodOptional<z.ZodString>;
|
|
9259
9303
|
model_glb_url: z.ZodOptional<z.ZodString>;
|
|
9260
9304
|
model_step_url: z.ZodOptional<z.ZodString>;
|
|
9305
|
+
model_wrl_url: z.ZodOptional<z.ZodString>;
|
|
9261
9306
|
model_jscad: z.ZodOptional<z.ZodAny>;
|
|
9262
9307
|
}, "strip", z.ZodTypeAny, {
|
|
9263
9308
|
type: "cad_component";
|
|
@@ -9276,18 +9321,19 @@ declare const cad_component: z.ZodObject<{
|
|
|
9276
9321
|
z: number;
|
|
9277
9322
|
} | undefined;
|
|
9278
9323
|
subcircuit_id?: string | undefined;
|
|
9324
|
+
footprinter_string?: string | undefined;
|
|
9279
9325
|
size?: {
|
|
9280
9326
|
x: number;
|
|
9281
9327
|
y: number;
|
|
9282
9328
|
z: number;
|
|
9283
9329
|
} | undefined;
|
|
9284
|
-
footprinter_string?: string | undefined;
|
|
9285
9330
|
model_obj_url?: string | undefined;
|
|
9286
9331
|
model_stl_url?: string | undefined;
|
|
9287
9332
|
model_3mf_url?: string | undefined;
|
|
9288
9333
|
model_gltf_url?: string | undefined;
|
|
9289
9334
|
model_glb_url?: string | undefined;
|
|
9290
9335
|
model_step_url?: string | undefined;
|
|
9336
|
+
model_wrl_url?: string | undefined;
|
|
9291
9337
|
model_jscad?: any;
|
|
9292
9338
|
}, {
|
|
9293
9339
|
type: "cad_component";
|
|
@@ -9308,18 +9354,19 @@ declare const cad_component: z.ZodObject<{
|
|
|
9308
9354
|
z: string | number;
|
|
9309
9355
|
} | undefined;
|
|
9310
9356
|
subcircuit_id?: string | undefined;
|
|
9357
|
+
footprinter_string?: string | undefined;
|
|
9311
9358
|
size?: {
|
|
9312
9359
|
x: string | number;
|
|
9313
9360
|
y: string | number;
|
|
9314
9361
|
z: string | number;
|
|
9315
9362
|
} | undefined;
|
|
9316
|
-
footprinter_string?: string | undefined;
|
|
9317
9363
|
model_obj_url?: string | undefined;
|
|
9318
9364
|
model_stl_url?: string | undefined;
|
|
9319
9365
|
model_3mf_url?: string | undefined;
|
|
9320
9366
|
model_gltf_url?: string | undefined;
|
|
9321
9367
|
model_glb_url?: string | undefined;
|
|
9322
9368
|
model_step_url?: string | undefined;
|
|
9369
|
+
model_wrl_url?: string | undefined;
|
|
9323
9370
|
model_jscad?: any;
|
|
9324
9371
|
}>;
|
|
9325
9372
|
type CadComponentInput = z.input<typeof cad_component>;
|
|
@@ -9340,6 +9387,7 @@ interface CadComponent {
|
|
|
9340
9387
|
model_gltf_url?: string;
|
|
9341
9388
|
model_glb_url?: string;
|
|
9342
9389
|
model_step_url?: string;
|
|
9390
|
+
model_wrl_url?: string;
|
|
9343
9391
|
model_jscad?: any;
|
|
9344
9392
|
}
|
|
9345
9393
|
|
|
@@ -11615,6 +11663,36 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11615
11663
|
pcb_group_id?: string | undefined;
|
|
11616
11664
|
error_type?: "pcb_missing_footprint_error" | undefined;
|
|
11617
11665
|
pcb_missing_footprint_error_id?: string | undefined;
|
|
11666
|
+
}>, z.ZodObject<{
|
|
11667
|
+
type: z.ZodLiteral<"external_footprint_load_error">;
|
|
11668
|
+
external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11669
|
+
pcb_component_id: z.ZodString;
|
|
11670
|
+
source_component_id: z.ZodString;
|
|
11671
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
11672
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11673
|
+
footprinter_string: z.ZodOptional<z.ZodString>;
|
|
11674
|
+
error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
|
|
11675
|
+
message: z.ZodString;
|
|
11676
|
+
}, "strip", z.ZodTypeAny, {
|
|
11677
|
+
message: string;
|
|
11678
|
+
type: "external_footprint_load_error";
|
|
11679
|
+
pcb_component_id: string;
|
|
11680
|
+
source_component_id: string;
|
|
11681
|
+
error_type: "external_footprint_load_error";
|
|
11682
|
+
external_footprint_load_error_id: string;
|
|
11683
|
+
subcircuit_id?: string | undefined;
|
|
11684
|
+
pcb_group_id?: string | undefined;
|
|
11685
|
+
footprinter_string?: string | undefined;
|
|
11686
|
+
}, {
|
|
11687
|
+
message: string;
|
|
11688
|
+
type: "external_footprint_load_error";
|
|
11689
|
+
pcb_component_id: string;
|
|
11690
|
+
source_component_id: string;
|
|
11691
|
+
subcircuit_id?: string | undefined;
|
|
11692
|
+
pcb_group_id?: string | undefined;
|
|
11693
|
+
error_type?: "external_footprint_load_error" | undefined;
|
|
11694
|
+
external_footprint_load_error_id?: string | undefined;
|
|
11695
|
+
footprinter_string?: string | undefined;
|
|
11618
11696
|
}>, z.ZodObject<{
|
|
11619
11697
|
type: z.ZodLiteral<"pcb_manual_edit_conflict_warning">;
|
|
11620
11698
|
pcb_manual_edit_conflict_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -15323,6 +15401,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15323
15401
|
model_gltf_url: z.ZodOptional<z.ZodString>;
|
|
15324
15402
|
model_glb_url: z.ZodOptional<z.ZodString>;
|
|
15325
15403
|
model_step_url: z.ZodOptional<z.ZodString>;
|
|
15404
|
+
model_wrl_url: z.ZodOptional<z.ZodString>;
|
|
15326
15405
|
model_jscad: z.ZodOptional<z.ZodAny>;
|
|
15327
15406
|
}, "strip", z.ZodTypeAny, {
|
|
15328
15407
|
type: "cad_component";
|
|
@@ -15341,18 +15420,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15341
15420
|
z: number;
|
|
15342
15421
|
} | undefined;
|
|
15343
15422
|
subcircuit_id?: string | undefined;
|
|
15423
|
+
footprinter_string?: string | undefined;
|
|
15344
15424
|
size?: {
|
|
15345
15425
|
x: number;
|
|
15346
15426
|
y: number;
|
|
15347
15427
|
z: number;
|
|
15348
15428
|
} | undefined;
|
|
15349
|
-
footprinter_string?: string | undefined;
|
|
15350
15429
|
model_obj_url?: string | undefined;
|
|
15351
15430
|
model_stl_url?: string | undefined;
|
|
15352
15431
|
model_3mf_url?: string | undefined;
|
|
15353
15432
|
model_gltf_url?: string | undefined;
|
|
15354
15433
|
model_glb_url?: string | undefined;
|
|
15355
15434
|
model_step_url?: string | undefined;
|
|
15435
|
+
model_wrl_url?: string | undefined;
|
|
15356
15436
|
model_jscad?: any;
|
|
15357
15437
|
}, {
|
|
15358
15438
|
type: "cad_component";
|
|
@@ -15373,18 +15453,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15373
15453
|
z: string | number;
|
|
15374
15454
|
} | undefined;
|
|
15375
15455
|
subcircuit_id?: string | undefined;
|
|
15456
|
+
footprinter_string?: string | undefined;
|
|
15376
15457
|
size?: {
|
|
15377
15458
|
x: string | number;
|
|
15378
15459
|
y: string | number;
|
|
15379
15460
|
z: string | number;
|
|
15380
15461
|
} | undefined;
|
|
15381
|
-
footprinter_string?: string | undefined;
|
|
15382
15462
|
model_obj_url?: string | undefined;
|
|
15383
15463
|
model_stl_url?: string | undefined;
|
|
15384
15464
|
model_3mf_url?: string | undefined;
|
|
15385
15465
|
model_gltf_url?: string | undefined;
|
|
15386
15466
|
model_glb_url?: string | undefined;
|
|
15387
15467
|
model_step_url?: string | undefined;
|
|
15468
|
+
model_wrl_url?: string | undefined;
|
|
15388
15469
|
model_jscad?: any;
|
|
15389
15470
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
15390
15471
|
type: z.ZodLiteral<"simulation_voltage_source">;
|
|
@@ -17552,6 +17633,36 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17552
17633
|
pcb_group_id?: string | undefined;
|
|
17553
17634
|
error_type?: "pcb_missing_footprint_error" | undefined;
|
|
17554
17635
|
pcb_missing_footprint_error_id?: string | undefined;
|
|
17636
|
+
}>, z.ZodObject<{
|
|
17637
|
+
type: z.ZodLiteral<"external_footprint_load_error">;
|
|
17638
|
+
external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17639
|
+
pcb_component_id: z.ZodString;
|
|
17640
|
+
source_component_id: z.ZodString;
|
|
17641
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17642
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17643
|
+
footprinter_string: z.ZodOptional<z.ZodString>;
|
|
17644
|
+
error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
|
|
17645
|
+
message: z.ZodString;
|
|
17646
|
+
}, "strip", z.ZodTypeAny, {
|
|
17647
|
+
message: string;
|
|
17648
|
+
type: "external_footprint_load_error";
|
|
17649
|
+
pcb_component_id: string;
|
|
17650
|
+
source_component_id: string;
|
|
17651
|
+
error_type: "external_footprint_load_error";
|
|
17652
|
+
external_footprint_load_error_id: string;
|
|
17653
|
+
subcircuit_id?: string | undefined;
|
|
17654
|
+
pcb_group_id?: string | undefined;
|
|
17655
|
+
footprinter_string?: string | undefined;
|
|
17656
|
+
}, {
|
|
17657
|
+
message: string;
|
|
17658
|
+
type: "external_footprint_load_error";
|
|
17659
|
+
pcb_component_id: string;
|
|
17660
|
+
source_component_id: string;
|
|
17661
|
+
subcircuit_id?: string | undefined;
|
|
17662
|
+
pcb_group_id?: string | undefined;
|
|
17663
|
+
error_type?: "external_footprint_load_error" | undefined;
|
|
17664
|
+
external_footprint_load_error_id?: string | undefined;
|
|
17665
|
+
footprinter_string?: string | undefined;
|
|
17555
17666
|
}>, z.ZodObject<{
|
|
17556
17667
|
type: z.ZodLiteral<"pcb_manual_edit_conflict_warning">;
|
|
17557
17668
|
pcb_manual_edit_conflict_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -21260,6 +21371,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21260
21371
|
model_gltf_url: z.ZodOptional<z.ZodString>;
|
|
21261
21372
|
model_glb_url: z.ZodOptional<z.ZodString>;
|
|
21262
21373
|
model_step_url: z.ZodOptional<z.ZodString>;
|
|
21374
|
+
model_wrl_url: z.ZodOptional<z.ZodString>;
|
|
21263
21375
|
model_jscad: z.ZodOptional<z.ZodAny>;
|
|
21264
21376
|
}, "strip", z.ZodTypeAny, {
|
|
21265
21377
|
type: "cad_component";
|
|
@@ -21278,18 +21390,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21278
21390
|
z: number;
|
|
21279
21391
|
} | undefined;
|
|
21280
21392
|
subcircuit_id?: string | undefined;
|
|
21393
|
+
footprinter_string?: string | undefined;
|
|
21281
21394
|
size?: {
|
|
21282
21395
|
x: number;
|
|
21283
21396
|
y: number;
|
|
21284
21397
|
z: number;
|
|
21285
21398
|
} | undefined;
|
|
21286
|
-
footprinter_string?: string | undefined;
|
|
21287
21399
|
model_obj_url?: string | undefined;
|
|
21288
21400
|
model_stl_url?: string | undefined;
|
|
21289
21401
|
model_3mf_url?: string | undefined;
|
|
21290
21402
|
model_gltf_url?: string | undefined;
|
|
21291
21403
|
model_glb_url?: string | undefined;
|
|
21292
21404
|
model_step_url?: string | undefined;
|
|
21405
|
+
model_wrl_url?: string | undefined;
|
|
21293
21406
|
model_jscad?: any;
|
|
21294
21407
|
}, {
|
|
21295
21408
|
type: "cad_component";
|
|
@@ -21310,18 +21423,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21310
21423
|
z: string | number;
|
|
21311
21424
|
} | undefined;
|
|
21312
21425
|
subcircuit_id?: string | undefined;
|
|
21426
|
+
footprinter_string?: string | undefined;
|
|
21313
21427
|
size?: {
|
|
21314
21428
|
x: string | number;
|
|
21315
21429
|
y: string | number;
|
|
21316
21430
|
z: string | number;
|
|
21317
21431
|
} | undefined;
|
|
21318
|
-
footprinter_string?: string | undefined;
|
|
21319
21432
|
model_obj_url?: string | undefined;
|
|
21320
21433
|
model_stl_url?: string | undefined;
|
|
21321
21434
|
model_3mf_url?: string | undefined;
|
|
21322
21435
|
model_gltf_url?: string | undefined;
|
|
21323
21436
|
model_glb_url?: string | undefined;
|
|
21324
21437
|
model_step_url?: string | undefined;
|
|
21438
|
+
model_wrl_url?: string | undefined;
|
|
21325
21439
|
model_jscad?: any;
|
|
21326
21440
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
21327
21441
|
type: z.ZodLiteral<"simulation_voltage_source">;
|
|
@@ -21409,4 +21523,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
21409
21523
|
*/
|
|
21410
21524
|
type CircuitJson = AnyCircuitElement[];
|
|
21411
21525
|
|
|
21412
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, 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 PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, 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 PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, 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 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 SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_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_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, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_box, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, 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_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|
|
21526
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, 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 PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, 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 PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, 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 PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, 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 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 SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, current, distance, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_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_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, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_box, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, 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_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|