circuit-json 0.0.290 → 0.0.292
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 +29 -0
- package/dist/index.d.mts +218 -3
- package/dist/index.mjs +991 -963
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,6 +80,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
80
80
|
- [SourceSimpleTransistor](#sourcesimpletransistor)
|
|
81
81
|
- [SourceTrace](#sourcetrace)
|
|
82
82
|
- [SourceTraceNotConnectedError](#sourcetracenotconnectederror)
|
|
83
|
+
- [UnknownErrorFindingPart](#unknownerrorfindingpart)
|
|
83
84
|
- [CAD Components](#cad-components)
|
|
84
85
|
- [CadComponent](#cadcomponent)
|
|
85
86
|
- [PCB Elements](#pcb-elements)
|
|
@@ -784,6 +785,24 @@ interface SourceTraceNotConnectedError {
|
|
|
784
785
|
}
|
|
785
786
|
```
|
|
786
787
|
|
|
788
|
+
### UnknownErrorFindingPart
|
|
789
|
+
|
|
790
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/unknown_error_finding_part.ts)
|
|
791
|
+
|
|
792
|
+
```typescript
|
|
793
|
+
/** Error emitted when an unexpected error occurs while finding a part.
|
|
794
|
+
* This includes cases where the API returns HTML instead of JSON,
|
|
795
|
+
* network failures, or other unexpected responses. */
|
|
796
|
+
interface UnknownErrorFindingPart {
|
|
797
|
+
type: "unknown_error_finding_part"
|
|
798
|
+
unknown_error_finding_part_id: string
|
|
799
|
+
error_type: "unknown_error_finding_part"
|
|
800
|
+
message: string
|
|
801
|
+
source_component_id?: string
|
|
802
|
+
subcircuit_id?: string
|
|
803
|
+
}
|
|
804
|
+
```
|
|
805
|
+
|
|
787
806
|
## CAD Components
|
|
788
807
|
|
|
789
808
|
### CadComponent
|
|
@@ -1074,6 +1093,11 @@ interface PcbFabricationNoteDimension {
|
|
|
1074
1093
|
to: Point
|
|
1075
1094
|
text?: string
|
|
1076
1095
|
offset?: Length
|
|
1096
|
+
offset_distance?: Length
|
|
1097
|
+
offset_direction?: {
|
|
1098
|
+
x: number
|
|
1099
|
+
y: number
|
|
1100
|
+
}
|
|
1077
1101
|
font: "tscircuit2024"
|
|
1078
1102
|
font_size: Length
|
|
1079
1103
|
color?: string
|
|
@@ -1342,6 +1366,11 @@ interface PcbNoteDimension {
|
|
|
1342
1366
|
from: Point
|
|
1343
1367
|
to: Point
|
|
1344
1368
|
text?: string
|
|
1369
|
+
offset_distance?: Length
|
|
1370
|
+
offset_direction?: {
|
|
1371
|
+
x: number
|
|
1372
|
+
y: number
|
|
1373
|
+
}
|
|
1345
1374
|
font: "tscircuit2024"
|
|
1346
1375
|
font_size: Length
|
|
1347
1376
|
color?: string
|
package/dist/index.d.mts
CHANGED
|
@@ -4014,6 +4014,17 @@ declare const pcb_fabrication_note_dimension: z.ZodObject<{
|
|
|
4014
4014
|
}>;
|
|
4015
4015
|
text: z.ZodOptional<z.ZodString>;
|
|
4016
4016
|
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4017
|
+
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4018
|
+
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
4019
|
+
x: z.ZodNumber;
|
|
4020
|
+
y: z.ZodNumber;
|
|
4021
|
+
}, "strip", z.ZodTypeAny, {
|
|
4022
|
+
x: number;
|
|
4023
|
+
y: number;
|
|
4024
|
+
}, {
|
|
4025
|
+
x: number;
|
|
4026
|
+
y: number;
|
|
4027
|
+
}>>;
|
|
4017
4028
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
4018
4029
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4019
4030
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -4039,6 +4050,11 @@ declare const pcb_fabrication_note_dimension: z.ZodObject<{
|
|
|
4039
4050
|
text?: string | undefined;
|
|
4040
4051
|
color?: string | undefined;
|
|
4041
4052
|
offset?: number | undefined;
|
|
4053
|
+
offset_distance?: number | undefined;
|
|
4054
|
+
offset_direction?: {
|
|
4055
|
+
x: number;
|
|
4056
|
+
y: number;
|
|
4057
|
+
} | undefined;
|
|
4042
4058
|
}, {
|
|
4043
4059
|
type: "pcb_fabrication_note_dimension";
|
|
4044
4060
|
pcb_component_id: string;
|
|
@@ -4059,6 +4075,11 @@ declare const pcb_fabrication_note_dimension: z.ZodObject<{
|
|
|
4059
4075
|
color?: string | undefined;
|
|
4060
4076
|
pcb_fabrication_note_dimension_id?: string | undefined;
|
|
4061
4077
|
offset?: string | number | undefined;
|
|
4078
|
+
offset_distance?: string | number | undefined;
|
|
4079
|
+
offset_direction?: {
|
|
4080
|
+
x: number;
|
|
4081
|
+
y: number;
|
|
4082
|
+
} | undefined;
|
|
4062
4083
|
arrow_size?: string | number | undefined;
|
|
4063
4084
|
}>;
|
|
4064
4085
|
type PcbFabricationNoteDimensionInput = z.input<typeof pcb_fabrication_note_dimension>;
|
|
@@ -4076,6 +4097,11 @@ interface PcbFabricationNoteDimension {
|
|
|
4076
4097
|
to: Point;
|
|
4077
4098
|
text?: string;
|
|
4078
4099
|
offset?: Length;
|
|
4100
|
+
offset_distance?: Length;
|
|
4101
|
+
offset_direction?: {
|
|
4102
|
+
x: number;
|
|
4103
|
+
y: number;
|
|
4104
|
+
};
|
|
4079
4105
|
font: "tscircuit2024";
|
|
4080
4106
|
font_size: Length;
|
|
4081
4107
|
color?: string;
|
|
@@ -4407,6 +4433,17 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4407
4433
|
y: string | number;
|
|
4408
4434
|
}>;
|
|
4409
4435
|
text: z.ZodOptional<z.ZodString>;
|
|
4436
|
+
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4437
|
+
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
4438
|
+
x: z.ZodNumber;
|
|
4439
|
+
y: z.ZodNumber;
|
|
4440
|
+
}, "strip", z.ZodTypeAny, {
|
|
4441
|
+
x: number;
|
|
4442
|
+
y: number;
|
|
4443
|
+
}, {
|
|
4444
|
+
x: number;
|
|
4445
|
+
y: number;
|
|
4446
|
+
}>>;
|
|
4410
4447
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
4411
4448
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4412
4449
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -4431,6 +4468,11 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4431
4468
|
pcb_group_id?: string | undefined;
|
|
4432
4469
|
text?: string | undefined;
|
|
4433
4470
|
color?: string | undefined;
|
|
4471
|
+
offset_distance?: number | undefined;
|
|
4472
|
+
offset_direction?: {
|
|
4473
|
+
x: number;
|
|
4474
|
+
y: number;
|
|
4475
|
+
} | undefined;
|
|
4434
4476
|
}, {
|
|
4435
4477
|
type: "pcb_note_dimension";
|
|
4436
4478
|
from: {
|
|
@@ -4449,6 +4491,11 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4449
4491
|
font?: "tscircuit2024" | undefined;
|
|
4450
4492
|
font_size?: string | number | undefined;
|
|
4451
4493
|
color?: string | undefined;
|
|
4494
|
+
offset_distance?: string | number | undefined;
|
|
4495
|
+
offset_direction?: {
|
|
4496
|
+
x: number;
|
|
4497
|
+
y: number;
|
|
4498
|
+
} | undefined;
|
|
4452
4499
|
arrow_size?: string | number | undefined;
|
|
4453
4500
|
pcb_note_dimension_id?: string | undefined;
|
|
4454
4501
|
}>;
|
|
@@ -4466,6 +4513,11 @@ interface PcbNoteDimension {
|
|
|
4466
4513
|
from: Point;
|
|
4467
4514
|
to: Point;
|
|
4468
4515
|
text?: string;
|
|
4516
|
+
offset_distance?: Length;
|
|
4517
|
+
offset_direction?: {
|
|
4518
|
+
x: number;
|
|
4519
|
+
y: number;
|
|
4520
|
+
};
|
|
4469
4521
|
font: "tscircuit2024";
|
|
4470
4522
|
font_size: Length;
|
|
4471
4523
|
color?: string;
|
|
@@ -8399,8 +8451,6 @@ interface SchematicTableCell {
|
|
|
8399
8451
|
subcircuit_id?: string;
|
|
8400
8452
|
}
|
|
8401
8453
|
|
|
8402
|
-
type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError;
|
|
8403
|
-
|
|
8404
8454
|
interface SourceComponentBase {
|
|
8405
8455
|
type: "source_component";
|
|
8406
8456
|
ftype?: string;
|
|
@@ -11023,6 +11073,45 @@ interface SourceManuallyPlacedVia {
|
|
|
11023
11073
|
source_trace_id?: string;
|
|
11024
11074
|
}
|
|
11025
11075
|
|
|
11076
|
+
declare const unknown_error_finding_part: z.ZodObject<{
|
|
11077
|
+
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
11078
|
+
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11079
|
+
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
11080
|
+
message: z.ZodString;
|
|
11081
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
11082
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11083
|
+
}, "strip", z.ZodTypeAny, {
|
|
11084
|
+
message: string;
|
|
11085
|
+
type: "unknown_error_finding_part";
|
|
11086
|
+
error_type: "unknown_error_finding_part";
|
|
11087
|
+
unknown_error_finding_part_id: string;
|
|
11088
|
+
source_component_id?: string | undefined;
|
|
11089
|
+
subcircuit_id?: string | undefined;
|
|
11090
|
+
}, {
|
|
11091
|
+
message: string;
|
|
11092
|
+
type: "unknown_error_finding_part";
|
|
11093
|
+
source_component_id?: string | undefined;
|
|
11094
|
+
subcircuit_id?: string | undefined;
|
|
11095
|
+
error_type?: "unknown_error_finding_part" | undefined;
|
|
11096
|
+
unknown_error_finding_part_id?: string | undefined;
|
|
11097
|
+
}>;
|
|
11098
|
+
type UnknownErrorFindingPartInput = z.input<typeof unknown_error_finding_part>;
|
|
11099
|
+
/**
|
|
11100
|
+
* Error emitted when an unexpected error occurs while finding a part.
|
|
11101
|
+
* This includes cases where the API returns HTML instead of JSON,
|
|
11102
|
+
* network failures, or other unexpected responses.
|
|
11103
|
+
*/
|
|
11104
|
+
interface UnknownErrorFindingPart {
|
|
11105
|
+
type: "unknown_error_finding_part";
|
|
11106
|
+
unknown_error_finding_part_id: string;
|
|
11107
|
+
error_type: "unknown_error_finding_part";
|
|
11108
|
+
message: string;
|
|
11109
|
+
source_component_id?: string;
|
|
11110
|
+
subcircuit_id?: string;
|
|
11111
|
+
}
|
|
11112
|
+
|
|
11113
|
+
type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError | UnknownErrorFindingPart;
|
|
11114
|
+
|
|
11026
11115
|
declare const cad_component: z.ZodObject<{
|
|
11027
11116
|
type: z.ZodLiteral<"cad_component">;
|
|
11028
11117
|
cad_component_id: z.ZodString;
|
|
@@ -13510,6 +13599,27 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13510
13599
|
subcircuit_id?: string | undefined;
|
|
13511
13600
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
13512
13601
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
13602
|
+
}>, z.ZodObject<{
|
|
13603
|
+
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
13604
|
+
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13605
|
+
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
13606
|
+
message: z.ZodString;
|
|
13607
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
13608
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13609
|
+
}, "strip", z.ZodTypeAny, {
|
|
13610
|
+
message: string;
|
|
13611
|
+
type: "unknown_error_finding_part";
|
|
13612
|
+
error_type: "unknown_error_finding_part";
|
|
13613
|
+
unknown_error_finding_part_id: string;
|
|
13614
|
+
source_component_id?: string | undefined;
|
|
13615
|
+
subcircuit_id?: string | undefined;
|
|
13616
|
+
}, {
|
|
13617
|
+
message: string;
|
|
13618
|
+
type: "unknown_error_finding_part";
|
|
13619
|
+
source_component_id?: string | undefined;
|
|
13620
|
+
subcircuit_id?: string | undefined;
|
|
13621
|
+
error_type?: "unknown_error_finding_part" | undefined;
|
|
13622
|
+
unknown_error_finding_part_id?: string | undefined;
|
|
13513
13623
|
}>, z.ZodObject<{
|
|
13514
13624
|
type: z.ZodLiteral<"pcb_component">;
|
|
13515
13625
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -16145,6 +16255,17 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16145
16255
|
}>;
|
|
16146
16256
|
text: z.ZodOptional<z.ZodString>;
|
|
16147
16257
|
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16258
|
+
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16259
|
+
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
16260
|
+
x: z.ZodNumber;
|
|
16261
|
+
y: z.ZodNumber;
|
|
16262
|
+
}, "strip", z.ZodTypeAny, {
|
|
16263
|
+
x: number;
|
|
16264
|
+
y: number;
|
|
16265
|
+
}, {
|
|
16266
|
+
x: number;
|
|
16267
|
+
y: number;
|
|
16268
|
+
}>>;
|
|
16148
16269
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
16149
16270
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16150
16271
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -16170,6 +16291,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16170
16291
|
text?: string | undefined;
|
|
16171
16292
|
color?: string | undefined;
|
|
16172
16293
|
offset?: number | undefined;
|
|
16294
|
+
offset_distance?: number | undefined;
|
|
16295
|
+
offset_direction?: {
|
|
16296
|
+
x: number;
|
|
16297
|
+
y: number;
|
|
16298
|
+
} | undefined;
|
|
16173
16299
|
}, {
|
|
16174
16300
|
type: "pcb_fabrication_note_dimension";
|
|
16175
16301
|
pcb_component_id: string;
|
|
@@ -16190,6 +16316,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16190
16316
|
color?: string | undefined;
|
|
16191
16317
|
pcb_fabrication_note_dimension_id?: string | undefined;
|
|
16192
16318
|
offset?: string | number | undefined;
|
|
16319
|
+
offset_distance?: string | number | undefined;
|
|
16320
|
+
offset_direction?: {
|
|
16321
|
+
x: number;
|
|
16322
|
+
y: number;
|
|
16323
|
+
} | undefined;
|
|
16193
16324
|
arrow_size?: string | number | undefined;
|
|
16194
16325
|
}>, z.ZodObject<{
|
|
16195
16326
|
type: z.ZodLiteral<"pcb_note_text">;
|
|
@@ -16429,6 +16560,17 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16429
16560
|
y: string | number;
|
|
16430
16561
|
}>;
|
|
16431
16562
|
text: z.ZodOptional<z.ZodString>;
|
|
16563
|
+
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16564
|
+
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
16565
|
+
x: z.ZodNumber;
|
|
16566
|
+
y: z.ZodNumber;
|
|
16567
|
+
}, "strip", z.ZodTypeAny, {
|
|
16568
|
+
x: number;
|
|
16569
|
+
y: number;
|
|
16570
|
+
}, {
|
|
16571
|
+
x: number;
|
|
16572
|
+
y: number;
|
|
16573
|
+
}>>;
|
|
16432
16574
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
16433
16575
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16434
16576
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -16453,6 +16595,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16453
16595
|
pcb_group_id?: string | undefined;
|
|
16454
16596
|
text?: string | undefined;
|
|
16455
16597
|
color?: string | undefined;
|
|
16598
|
+
offset_distance?: number | undefined;
|
|
16599
|
+
offset_direction?: {
|
|
16600
|
+
x: number;
|
|
16601
|
+
y: number;
|
|
16602
|
+
} | undefined;
|
|
16456
16603
|
}, {
|
|
16457
16604
|
type: "pcb_note_dimension";
|
|
16458
16605
|
from: {
|
|
@@ -16471,6 +16618,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16471
16618
|
font?: "tscircuit2024" | undefined;
|
|
16472
16619
|
font_size?: string | number | undefined;
|
|
16473
16620
|
color?: string | undefined;
|
|
16621
|
+
offset_distance?: string | number | undefined;
|
|
16622
|
+
offset_direction?: {
|
|
16623
|
+
x: number;
|
|
16624
|
+
y: number;
|
|
16625
|
+
} | undefined;
|
|
16474
16626
|
arrow_size?: string | number | undefined;
|
|
16475
16627
|
pcb_note_dimension_id?: string | undefined;
|
|
16476
16628
|
}>, z.ZodObject<{
|
|
@@ -20796,6 +20948,27 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20796
20948
|
subcircuit_id?: string | undefined;
|
|
20797
20949
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
20798
20950
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
20951
|
+
}>, z.ZodObject<{
|
|
20952
|
+
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
20953
|
+
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20954
|
+
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
20955
|
+
message: z.ZodString;
|
|
20956
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
20957
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20958
|
+
}, "strip", z.ZodTypeAny, {
|
|
20959
|
+
message: string;
|
|
20960
|
+
type: "unknown_error_finding_part";
|
|
20961
|
+
error_type: "unknown_error_finding_part";
|
|
20962
|
+
unknown_error_finding_part_id: string;
|
|
20963
|
+
source_component_id?: string | undefined;
|
|
20964
|
+
subcircuit_id?: string | undefined;
|
|
20965
|
+
}, {
|
|
20966
|
+
message: string;
|
|
20967
|
+
type: "unknown_error_finding_part";
|
|
20968
|
+
source_component_id?: string | undefined;
|
|
20969
|
+
subcircuit_id?: string | undefined;
|
|
20970
|
+
error_type?: "unknown_error_finding_part" | undefined;
|
|
20971
|
+
unknown_error_finding_part_id?: string | undefined;
|
|
20799
20972
|
}>, z.ZodObject<{
|
|
20800
20973
|
type: z.ZodLiteral<"pcb_component">;
|
|
20801
20974
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -23431,6 +23604,17 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23431
23604
|
}>;
|
|
23432
23605
|
text: z.ZodOptional<z.ZodString>;
|
|
23433
23606
|
offset: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23607
|
+
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23608
|
+
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
23609
|
+
x: z.ZodNumber;
|
|
23610
|
+
y: z.ZodNumber;
|
|
23611
|
+
}, "strip", z.ZodTypeAny, {
|
|
23612
|
+
x: number;
|
|
23613
|
+
y: number;
|
|
23614
|
+
}, {
|
|
23615
|
+
x: number;
|
|
23616
|
+
y: number;
|
|
23617
|
+
}>>;
|
|
23434
23618
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
23435
23619
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23436
23620
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -23456,6 +23640,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23456
23640
|
text?: string | undefined;
|
|
23457
23641
|
color?: string | undefined;
|
|
23458
23642
|
offset?: number | undefined;
|
|
23643
|
+
offset_distance?: number | undefined;
|
|
23644
|
+
offset_direction?: {
|
|
23645
|
+
x: number;
|
|
23646
|
+
y: number;
|
|
23647
|
+
} | undefined;
|
|
23459
23648
|
}, {
|
|
23460
23649
|
type: "pcb_fabrication_note_dimension";
|
|
23461
23650
|
pcb_component_id: string;
|
|
@@ -23476,6 +23665,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23476
23665
|
color?: string | undefined;
|
|
23477
23666
|
pcb_fabrication_note_dimension_id?: string | undefined;
|
|
23478
23667
|
offset?: string | number | undefined;
|
|
23668
|
+
offset_distance?: string | number | undefined;
|
|
23669
|
+
offset_direction?: {
|
|
23670
|
+
x: number;
|
|
23671
|
+
y: number;
|
|
23672
|
+
} | undefined;
|
|
23479
23673
|
arrow_size?: string | number | undefined;
|
|
23480
23674
|
}>, z.ZodObject<{
|
|
23481
23675
|
type: z.ZodLiteral<"pcb_note_text">;
|
|
@@ -23715,6 +23909,17 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23715
23909
|
y: string | number;
|
|
23716
23910
|
}>;
|
|
23717
23911
|
text: z.ZodOptional<z.ZodString>;
|
|
23912
|
+
offset_distance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23913
|
+
offset_direction: z.ZodOptional<z.ZodObject<{
|
|
23914
|
+
x: z.ZodNumber;
|
|
23915
|
+
y: z.ZodNumber;
|
|
23916
|
+
}, "strip", z.ZodTypeAny, {
|
|
23917
|
+
x: number;
|
|
23918
|
+
y: number;
|
|
23919
|
+
}, {
|
|
23920
|
+
x: number;
|
|
23921
|
+
y: number;
|
|
23922
|
+
}>>;
|
|
23718
23923
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
23719
23924
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23720
23925
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -23739,6 +23944,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23739
23944
|
pcb_group_id?: string | undefined;
|
|
23740
23945
|
text?: string | undefined;
|
|
23741
23946
|
color?: string | undefined;
|
|
23947
|
+
offset_distance?: number | undefined;
|
|
23948
|
+
offset_direction?: {
|
|
23949
|
+
x: number;
|
|
23950
|
+
y: number;
|
|
23951
|
+
} | undefined;
|
|
23742
23952
|
}, {
|
|
23743
23953
|
type: "pcb_note_dimension";
|
|
23744
23954
|
from: {
|
|
@@ -23757,6 +23967,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23757
23967
|
font?: "tscircuit2024" | undefined;
|
|
23758
23968
|
font_size?: string | number | undefined;
|
|
23759
23969
|
color?: string | undefined;
|
|
23970
|
+
offset_distance?: string | number | undefined;
|
|
23971
|
+
offset_direction?: {
|
|
23972
|
+
x: number;
|
|
23973
|
+
y: number;
|
|
23974
|
+
} | undefined;
|
|
23760
23975
|
arrow_size?: string | number | undefined;
|
|
23761
23976
|
pcb_note_dimension_id?: string | undefined;
|
|
23762
23977
|
}>, z.ZodObject<{
|
|
@@ -26120,4 +26335,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
26120
26335
|
*/
|
|
26121
26336
|
type CircuitJson = AnyCircuitElement[];
|
|
26122
26337
|
|
|
26123
|
-
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 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 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 PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, 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 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 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 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, 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_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_oval_shape, pcb_hole_pill_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_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_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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|
|
26338
|
+
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 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 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 PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, 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 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 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 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_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_oval_shape, pcb_hole_pill_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_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_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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|