circuit-json 0.0.268 → 0.0.270
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 +40 -14
- package/dist/index.d.mts +209 -53
- package/dist/index.mjs +109 -72
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -120,6 +120,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
120
120
|
- [PcbTraceHint](#pcbtracehint)
|
|
121
121
|
- [PcbTraceMissingError](#pcbtracemissingerror)
|
|
122
122
|
- [PcbVia](#pcbvia)
|
|
123
|
+
- [PcbViaClearanceError](#pcbviaclearanceerror)
|
|
123
124
|
- [Schematic Elements](#schematic-elements)
|
|
124
125
|
- [SchematicArc](#schematicarc)
|
|
125
126
|
- [SchematicBox](#schematicbox)
|
|
@@ -181,19 +182,20 @@ table below. In this case `{ max_trace_length: 100 }` is equivalent.
|
|
|
181
182
|
|
|
182
183
|
The default units when reading a number are defined as follows:
|
|
183
184
|
|
|
184
|
-
| Measurement Type | Base Unit | Description
|
|
185
|
-
| ---------------- | --------- |
|
|
186
|
-
| Length | mm | Millimeters
|
|
187
|
-
|
|
|
188
|
-
|
|
|
189
|
-
|
|
|
190
|
-
|
|
|
191
|
-
|
|
|
192
|
-
|
|
|
193
|
-
|
|
|
194
|
-
|
|
|
195
|
-
|
|
|
196
|
-
|
|
|
185
|
+
| Measurement Type | Base Unit | Description |
|
|
186
|
+
| ---------------- | --------- | ------------------ |
|
|
187
|
+
| Length | mm | Millimeters |
|
|
188
|
+
| Duration | ms | Milliseconds |
|
|
189
|
+
| Timestamp | string | ISO 8601 Timestamp |
|
|
190
|
+
| Mass | g | Grams |
|
|
191
|
+
| Angle | deg | Degrees |
|
|
192
|
+
| Frequency | Hz | Hertz |
|
|
193
|
+
| Volume | ml | Milliliters |
|
|
194
|
+
| Voltage | V | Volts |
|
|
195
|
+
| Current | A | Amperes |
|
|
196
|
+
| Resistance | Ω | Ohms |
|
|
197
|
+
| Capacitance | F | Farads |
|
|
198
|
+
| Inductance | H | Henries |
|
|
197
199
|
|
|
198
200
|
## Element Prefixes
|
|
199
201
|
|
|
@@ -1668,6 +1670,30 @@ interface PcbVia {
|
|
|
1668
1670
|
}
|
|
1669
1671
|
```
|
|
1670
1672
|
|
|
1673
|
+
### PcbViaClearanceError
|
|
1674
|
+
|
|
1675
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_via_clearance_error.ts)
|
|
1676
|
+
|
|
1677
|
+
Error emitted when vias are closer than the allowed clearance
|
|
1678
|
+
|
|
1679
|
+
```typescript
|
|
1680
|
+
/** Error emitted when vias are closer than the allowed clearance */
|
|
1681
|
+
interface PcbViaClearanceError {
|
|
1682
|
+
type: "pcb_via_clearance_error"
|
|
1683
|
+
pcb_error_id: string
|
|
1684
|
+
error_type: "pcb_via_clearance_error"
|
|
1685
|
+
message: string
|
|
1686
|
+
pcb_via_ids: string[]
|
|
1687
|
+
minimum_clearance?: Distance
|
|
1688
|
+
actual_clearance?: Distance
|
|
1689
|
+
pcb_center?: {
|
|
1690
|
+
x?: number
|
|
1691
|
+
y?: number
|
|
1692
|
+
}
|
|
1693
|
+
subcircuit_id?: string
|
|
1694
|
+
}
|
|
1695
|
+
```
|
|
1696
|
+
|
|
1671
1697
|
## Schematic Elements
|
|
1672
1698
|
|
|
1673
1699
|
### SchematicArc
|
|
@@ -2159,7 +2185,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
2159
2185
|
timestamps_ms?: number[]
|
|
2160
2186
|
voltage_levels: number[]
|
|
2161
2187
|
schematic_voltage_probe_id?: string
|
|
2162
|
-
|
|
2188
|
+
subcircuit_connectivity_map_key?: string
|
|
2163
2189
|
time_per_step: number
|
|
2164
2190
|
start_time_ms: number
|
|
2165
2191
|
end_time_ms: number
|
package/dist/index.d.mts
CHANGED
|
@@ -13,7 +13,10 @@ type Length = number;
|
|
|
13
13
|
type Distance = number;
|
|
14
14
|
declare const distance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15
15
|
declare const current: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16
|
+
declare const duration_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16
17
|
declare const time: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18
|
+
declare const ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19
|
+
declare const timestamp: z.ZodString;
|
|
17
20
|
/**
|
|
18
21
|
* Rotation is always converted to degrees
|
|
19
22
|
*/
|
|
@@ -5257,7 +5260,70 @@ interface PcbComponentOutsideBoardError {
|
|
|
5257
5260
|
source_component_id?: string;
|
|
5258
5261
|
}
|
|
5259
5262
|
|
|
5260
|
-
|
|
5263
|
+
declare const pcb_via_clearance_error: z.ZodObject<{
|
|
5264
|
+
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
5265
|
+
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5266
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
5267
|
+
message: z.ZodString;
|
|
5268
|
+
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
5269
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5270
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5271
|
+
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
5272
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
5273
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
5274
|
+
}, "strip", z.ZodTypeAny, {
|
|
5275
|
+
x?: number | undefined;
|
|
5276
|
+
y?: number | undefined;
|
|
5277
|
+
}, {
|
|
5278
|
+
x?: number | undefined;
|
|
5279
|
+
y?: number | undefined;
|
|
5280
|
+
}>>;
|
|
5281
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5282
|
+
}, "strip", z.ZodTypeAny, {
|
|
5283
|
+
message: string;
|
|
5284
|
+
type: "pcb_via_clearance_error";
|
|
5285
|
+
error_type: "pcb_via_clearance_error";
|
|
5286
|
+
pcb_error_id: string;
|
|
5287
|
+
pcb_via_ids: string[];
|
|
5288
|
+
subcircuit_id?: string | undefined;
|
|
5289
|
+
minimum_clearance?: number | undefined;
|
|
5290
|
+
actual_clearance?: number | undefined;
|
|
5291
|
+
pcb_center?: {
|
|
5292
|
+
x?: number | undefined;
|
|
5293
|
+
y?: number | undefined;
|
|
5294
|
+
} | undefined;
|
|
5295
|
+
}, {
|
|
5296
|
+
message: string;
|
|
5297
|
+
type: "pcb_via_clearance_error";
|
|
5298
|
+
pcb_via_ids: string[];
|
|
5299
|
+
subcircuit_id?: string | undefined;
|
|
5300
|
+
error_type?: "pcb_via_clearance_error" | undefined;
|
|
5301
|
+
pcb_error_id?: string | undefined;
|
|
5302
|
+
minimum_clearance?: string | number | undefined;
|
|
5303
|
+
actual_clearance?: string | number | undefined;
|
|
5304
|
+
pcb_center?: {
|
|
5305
|
+
x?: number | undefined;
|
|
5306
|
+
y?: number | undefined;
|
|
5307
|
+
} | undefined;
|
|
5308
|
+
}>;
|
|
5309
|
+
type PcbViaClearanceErrorInput = z.input<typeof pcb_via_clearance_error>;
|
|
5310
|
+
/** Error emitted when vias are closer than the allowed clearance */
|
|
5311
|
+
interface PcbViaClearanceError {
|
|
5312
|
+
type: "pcb_via_clearance_error";
|
|
5313
|
+
pcb_error_id: string;
|
|
5314
|
+
error_type: "pcb_via_clearance_error";
|
|
5315
|
+
message: string;
|
|
5316
|
+
pcb_via_ids: string[];
|
|
5317
|
+
minimum_clearance?: Distance;
|
|
5318
|
+
actual_clearance?: Distance;
|
|
5319
|
+
pcb_center?: {
|
|
5320
|
+
x?: number;
|
|
5321
|
+
y?: number;
|
|
5322
|
+
};
|
|
5323
|
+
subcircuit_id?: string;
|
|
5324
|
+
}
|
|
5325
|
+
|
|
5326
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbViaClearanceError;
|
|
5261
5327
|
|
|
5262
5328
|
interface SchematicBox {
|
|
5263
5329
|
type: "schematic_box";
|
|
@@ -6287,8 +6353,8 @@ declare const schematic_text: z.ZodObject<{
|
|
|
6287
6353
|
color: z.ZodDefault<z.ZodString>;
|
|
6288
6354
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6289
6355
|
}, "strip", z.ZodTypeAny, {
|
|
6290
|
-
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
6291
6356
|
type: "schematic_text";
|
|
6357
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
6292
6358
|
rotation: number;
|
|
6293
6359
|
text: string;
|
|
6294
6360
|
font_size: number;
|
|
@@ -8340,12 +8406,12 @@ declare const source_failed_to_create_component_error: z.ZodObject<{
|
|
|
8340
8406
|
error_type: "source_failed_to_create_component_error";
|
|
8341
8407
|
source_failed_to_create_component_error_id: string;
|
|
8342
8408
|
subcircuit_id?: string | undefined;
|
|
8343
|
-
component_name?: string | undefined;
|
|
8344
|
-
parent_source_component_id?: string | undefined;
|
|
8345
8409
|
pcb_center?: {
|
|
8346
8410
|
x?: number | undefined;
|
|
8347
8411
|
y?: number | undefined;
|
|
8348
8412
|
} | undefined;
|
|
8413
|
+
component_name?: string | undefined;
|
|
8414
|
+
parent_source_component_id?: string | undefined;
|
|
8349
8415
|
schematic_center?: {
|
|
8350
8416
|
x?: number | undefined;
|
|
8351
8417
|
y?: number | undefined;
|
|
@@ -8355,13 +8421,13 @@ declare const source_failed_to_create_component_error: z.ZodObject<{
|
|
|
8355
8421
|
type: "source_failed_to_create_component_error";
|
|
8356
8422
|
subcircuit_id?: string | undefined;
|
|
8357
8423
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
8358
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
8359
|
-
component_name?: string | undefined;
|
|
8360
|
-
parent_source_component_id?: string | undefined;
|
|
8361
8424
|
pcb_center?: {
|
|
8362
8425
|
x?: number | undefined;
|
|
8363
8426
|
y?: number | undefined;
|
|
8364
8427
|
} | undefined;
|
|
8428
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
8429
|
+
component_name?: string | undefined;
|
|
8430
|
+
parent_source_component_id?: string | undefined;
|
|
8365
8431
|
schematic_center?: {
|
|
8366
8432
|
x?: number | undefined;
|
|
8367
8433
|
y?: number | undefined;
|
|
@@ -9424,12 +9490,12 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9424
9490
|
error_type: "source_failed_to_create_component_error";
|
|
9425
9491
|
source_failed_to_create_component_error_id: string;
|
|
9426
9492
|
subcircuit_id?: string | undefined;
|
|
9427
|
-
component_name?: string | undefined;
|
|
9428
|
-
parent_source_component_id?: string | undefined;
|
|
9429
9493
|
pcb_center?: {
|
|
9430
9494
|
x?: number | undefined;
|
|
9431
9495
|
y?: number | undefined;
|
|
9432
9496
|
} | undefined;
|
|
9497
|
+
component_name?: string | undefined;
|
|
9498
|
+
parent_source_component_id?: string | undefined;
|
|
9433
9499
|
schematic_center?: {
|
|
9434
9500
|
x?: number | undefined;
|
|
9435
9501
|
y?: number | undefined;
|
|
@@ -9439,13 +9505,13 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9439
9505
|
type: "source_failed_to_create_component_error";
|
|
9440
9506
|
subcircuit_id?: string | undefined;
|
|
9441
9507
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
9442
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
9443
|
-
component_name?: string | undefined;
|
|
9444
|
-
parent_source_component_id?: string | undefined;
|
|
9445
9508
|
pcb_center?: {
|
|
9446
9509
|
x?: number | undefined;
|
|
9447
9510
|
y?: number | undefined;
|
|
9448
9511
|
} | undefined;
|
|
9512
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
9513
|
+
component_name?: string | undefined;
|
|
9514
|
+
parent_source_component_id?: string | undefined;
|
|
9449
9515
|
schematic_center?: {
|
|
9450
9516
|
x?: number | undefined;
|
|
9451
9517
|
y?: number | undefined;
|
|
@@ -10149,7 +10215,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
10149
10215
|
timestamps_ms?: number[];
|
|
10150
10216
|
voltage_levels: number[];
|
|
10151
10217
|
schematic_voltage_probe_id?: string;
|
|
10152
|
-
|
|
10218
|
+
subcircuit_connectivity_map_key?: string;
|
|
10153
10219
|
time_per_step: number;
|
|
10154
10220
|
start_time_ms: number;
|
|
10155
10221
|
end_time_ms: number;
|
|
@@ -10162,10 +10228,10 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
10162
10228
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
10163
10229
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
10164
10230
|
schematic_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
10165
|
-
|
|
10166
|
-
time_per_step: z.ZodNumber
|
|
10167
|
-
start_time_ms: z.ZodNumber
|
|
10168
|
-
end_time_ms: z.ZodNumber
|
|
10231
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
10232
|
+
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10233
|
+
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10234
|
+
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
10169
10235
|
name: z.ZodOptional<z.ZodString>;
|
|
10170
10236
|
}, "strip", z.ZodTypeAny, {
|
|
10171
10237
|
type: "simulation_transient_voltage_graph";
|
|
@@ -10176,21 +10242,21 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
10176
10242
|
start_time_ms: number;
|
|
10177
10243
|
end_time_ms: number;
|
|
10178
10244
|
name?: string | undefined;
|
|
10245
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
10179
10246
|
schematic_voltage_probe_id?: string | undefined;
|
|
10180
10247
|
timestamps_ms?: number[] | undefined;
|
|
10181
|
-
subcircuit_connecivity_map_key?: string | undefined;
|
|
10182
10248
|
}, {
|
|
10183
10249
|
type: "simulation_transient_voltage_graph";
|
|
10184
10250
|
simulation_experiment_id: string;
|
|
10185
10251
|
voltage_levels: number[];
|
|
10186
|
-
time_per_step: number;
|
|
10187
|
-
start_time_ms: number;
|
|
10188
|
-
end_time_ms: number;
|
|
10252
|
+
time_per_step: string | number;
|
|
10253
|
+
start_time_ms: string | number;
|
|
10254
|
+
end_time_ms: string | number;
|
|
10189
10255
|
name?: string | undefined;
|
|
10256
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
10190
10257
|
schematic_voltage_probe_id?: string | undefined;
|
|
10191
10258
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
10192
10259
|
timestamps_ms?: number[] | undefined;
|
|
10193
|
-
subcircuit_connecivity_map_key?: string | undefined;
|
|
10194
10260
|
}>;
|
|
10195
10261
|
type SimulationTransientVoltageGraphInput = z.input<typeof simulation_transient_voltage_graph>;
|
|
10196
10262
|
|
|
@@ -11192,12 +11258,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11192
11258
|
error_type: "source_failed_to_create_component_error";
|
|
11193
11259
|
source_failed_to_create_component_error_id: string;
|
|
11194
11260
|
subcircuit_id?: string | undefined;
|
|
11195
|
-
component_name?: string | undefined;
|
|
11196
|
-
parent_source_component_id?: string | undefined;
|
|
11197
11261
|
pcb_center?: {
|
|
11198
11262
|
x?: number | undefined;
|
|
11199
11263
|
y?: number | undefined;
|
|
11200
11264
|
} | undefined;
|
|
11265
|
+
component_name?: string | undefined;
|
|
11266
|
+
parent_source_component_id?: string | undefined;
|
|
11201
11267
|
schematic_center?: {
|
|
11202
11268
|
x?: number | undefined;
|
|
11203
11269
|
y?: number | undefined;
|
|
@@ -11207,13 +11273,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11207
11273
|
type: "source_failed_to_create_component_error";
|
|
11208
11274
|
subcircuit_id?: string | undefined;
|
|
11209
11275
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
11210
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
11211
|
-
component_name?: string | undefined;
|
|
11212
|
-
parent_source_component_id?: string | undefined;
|
|
11213
11276
|
pcb_center?: {
|
|
11214
11277
|
x?: number | undefined;
|
|
11215
11278
|
y?: number | undefined;
|
|
11216
11279
|
} | undefined;
|
|
11280
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
11281
|
+
component_name?: string | undefined;
|
|
11282
|
+
parent_source_component_id?: string | undefined;
|
|
11217
11283
|
schematic_center?: {
|
|
11218
11284
|
x?: number | undefined;
|
|
11219
11285
|
y?: number | undefined;
|
|
@@ -14449,6 +14515,51 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14449
14515
|
subcircuit_id?: string | undefined;
|
|
14450
14516
|
error_type?: "pcb_port_not_connected_error" | undefined;
|
|
14451
14517
|
pcb_port_not_connected_error_id?: string | undefined;
|
|
14518
|
+
}>, z.ZodObject<{
|
|
14519
|
+
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
14520
|
+
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14521
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
14522
|
+
message: z.ZodString;
|
|
14523
|
+
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
14524
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14525
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14526
|
+
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
14527
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
14528
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
14529
|
+
}, "strip", z.ZodTypeAny, {
|
|
14530
|
+
x?: number | undefined;
|
|
14531
|
+
y?: number | undefined;
|
|
14532
|
+
}, {
|
|
14533
|
+
x?: number | undefined;
|
|
14534
|
+
y?: number | undefined;
|
|
14535
|
+
}>>;
|
|
14536
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14537
|
+
}, "strip", z.ZodTypeAny, {
|
|
14538
|
+
message: string;
|
|
14539
|
+
type: "pcb_via_clearance_error";
|
|
14540
|
+
error_type: "pcb_via_clearance_error";
|
|
14541
|
+
pcb_error_id: string;
|
|
14542
|
+
pcb_via_ids: string[];
|
|
14543
|
+
subcircuit_id?: string | undefined;
|
|
14544
|
+
minimum_clearance?: number | undefined;
|
|
14545
|
+
actual_clearance?: number | undefined;
|
|
14546
|
+
pcb_center?: {
|
|
14547
|
+
x?: number | undefined;
|
|
14548
|
+
y?: number | undefined;
|
|
14549
|
+
} | undefined;
|
|
14550
|
+
}, {
|
|
14551
|
+
message: string;
|
|
14552
|
+
type: "pcb_via_clearance_error";
|
|
14553
|
+
pcb_via_ids: string[];
|
|
14554
|
+
subcircuit_id?: string | undefined;
|
|
14555
|
+
error_type?: "pcb_via_clearance_error" | undefined;
|
|
14556
|
+
pcb_error_id?: string | undefined;
|
|
14557
|
+
minimum_clearance?: string | number | undefined;
|
|
14558
|
+
actual_clearance?: string | number | undefined;
|
|
14559
|
+
pcb_center?: {
|
|
14560
|
+
x?: number | undefined;
|
|
14561
|
+
y?: number | undefined;
|
|
14562
|
+
} | undefined;
|
|
14452
14563
|
}>, z.ZodObject<{
|
|
14453
14564
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
14454
14565
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -15245,8 +15356,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15245
15356
|
color: z.ZodDefault<z.ZodString>;
|
|
15246
15357
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15247
15358
|
}, "strip", z.ZodTypeAny, {
|
|
15248
|
-
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
15249
15359
|
type: "schematic_text";
|
|
15360
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
15250
15361
|
rotation: number;
|
|
15251
15362
|
text: string;
|
|
15252
15363
|
font_size: number;
|
|
@@ -16621,10 +16732,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16621
16732
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
16622
16733
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
16623
16734
|
schematic_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
16624
|
-
|
|
16625
|
-
time_per_step: z.ZodNumber
|
|
16626
|
-
start_time_ms: z.ZodNumber
|
|
16627
|
-
end_time_ms: z.ZodNumber
|
|
16735
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
16736
|
+
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16737
|
+
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16738
|
+
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16628
16739
|
name: z.ZodOptional<z.ZodString>;
|
|
16629
16740
|
}, "strip", z.ZodTypeAny, {
|
|
16630
16741
|
type: "simulation_transient_voltage_graph";
|
|
@@ -16635,21 +16746,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16635
16746
|
start_time_ms: number;
|
|
16636
16747
|
end_time_ms: number;
|
|
16637
16748
|
name?: string | undefined;
|
|
16749
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
16638
16750
|
schematic_voltage_probe_id?: string | undefined;
|
|
16639
16751
|
timestamps_ms?: number[] | undefined;
|
|
16640
|
-
subcircuit_connecivity_map_key?: string | undefined;
|
|
16641
16752
|
}, {
|
|
16642
16753
|
type: "simulation_transient_voltage_graph";
|
|
16643
16754
|
simulation_experiment_id: string;
|
|
16644
16755
|
voltage_levels: number[];
|
|
16645
|
-
time_per_step: number;
|
|
16646
|
-
start_time_ms: number;
|
|
16647
|
-
end_time_ms: number;
|
|
16756
|
+
time_per_step: string | number;
|
|
16757
|
+
start_time_ms: string | number;
|
|
16758
|
+
end_time_ms: string | number;
|
|
16648
16759
|
name?: string | undefined;
|
|
16760
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
16649
16761
|
schematic_voltage_probe_id?: string | undefined;
|
|
16650
16762
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
16651
16763
|
timestamps_ms?: number[] | undefined;
|
|
16652
|
-
subcircuit_connecivity_map_key?: string | undefined;
|
|
16653
16764
|
}>]>;
|
|
16654
16765
|
/**
|
|
16655
16766
|
* @deprecated use any_circuit_element instead
|
|
@@ -17620,12 +17731,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17620
17731
|
error_type: "source_failed_to_create_component_error";
|
|
17621
17732
|
source_failed_to_create_component_error_id: string;
|
|
17622
17733
|
subcircuit_id?: string | undefined;
|
|
17623
|
-
component_name?: string | undefined;
|
|
17624
|
-
parent_source_component_id?: string | undefined;
|
|
17625
17734
|
pcb_center?: {
|
|
17626
17735
|
x?: number | undefined;
|
|
17627
17736
|
y?: number | undefined;
|
|
17628
17737
|
} | undefined;
|
|
17738
|
+
component_name?: string | undefined;
|
|
17739
|
+
parent_source_component_id?: string | undefined;
|
|
17629
17740
|
schematic_center?: {
|
|
17630
17741
|
x?: number | undefined;
|
|
17631
17742
|
y?: number | undefined;
|
|
@@ -17635,13 +17746,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17635
17746
|
type: "source_failed_to_create_component_error";
|
|
17636
17747
|
subcircuit_id?: string | undefined;
|
|
17637
17748
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
17638
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
17639
|
-
component_name?: string | undefined;
|
|
17640
|
-
parent_source_component_id?: string | undefined;
|
|
17641
17749
|
pcb_center?: {
|
|
17642
17750
|
x?: number | undefined;
|
|
17643
17751
|
y?: number | undefined;
|
|
17644
17752
|
} | undefined;
|
|
17753
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
17754
|
+
component_name?: string | undefined;
|
|
17755
|
+
parent_source_component_id?: string | undefined;
|
|
17645
17756
|
schematic_center?: {
|
|
17646
17757
|
x?: number | undefined;
|
|
17647
17758
|
y?: number | undefined;
|
|
@@ -20877,6 +20988,51 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20877
20988
|
subcircuit_id?: string | undefined;
|
|
20878
20989
|
error_type?: "pcb_port_not_connected_error" | undefined;
|
|
20879
20990
|
pcb_port_not_connected_error_id?: string | undefined;
|
|
20991
|
+
}>, z.ZodObject<{
|
|
20992
|
+
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
20993
|
+
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20994
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
20995
|
+
message: z.ZodString;
|
|
20996
|
+
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
20997
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20998
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20999
|
+
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
21000
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
21001
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
21002
|
+
}, "strip", z.ZodTypeAny, {
|
|
21003
|
+
x?: number | undefined;
|
|
21004
|
+
y?: number | undefined;
|
|
21005
|
+
}, {
|
|
21006
|
+
x?: number | undefined;
|
|
21007
|
+
y?: number | undefined;
|
|
21008
|
+
}>>;
|
|
21009
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21010
|
+
}, "strip", z.ZodTypeAny, {
|
|
21011
|
+
message: string;
|
|
21012
|
+
type: "pcb_via_clearance_error";
|
|
21013
|
+
error_type: "pcb_via_clearance_error";
|
|
21014
|
+
pcb_error_id: string;
|
|
21015
|
+
pcb_via_ids: string[];
|
|
21016
|
+
subcircuit_id?: string | undefined;
|
|
21017
|
+
minimum_clearance?: number | undefined;
|
|
21018
|
+
actual_clearance?: number | undefined;
|
|
21019
|
+
pcb_center?: {
|
|
21020
|
+
x?: number | undefined;
|
|
21021
|
+
y?: number | undefined;
|
|
21022
|
+
} | undefined;
|
|
21023
|
+
}, {
|
|
21024
|
+
message: string;
|
|
21025
|
+
type: "pcb_via_clearance_error";
|
|
21026
|
+
pcb_via_ids: string[];
|
|
21027
|
+
subcircuit_id?: string | undefined;
|
|
21028
|
+
error_type?: "pcb_via_clearance_error" | undefined;
|
|
21029
|
+
pcb_error_id?: string | undefined;
|
|
21030
|
+
minimum_clearance?: string | number | undefined;
|
|
21031
|
+
actual_clearance?: string | number | undefined;
|
|
21032
|
+
pcb_center?: {
|
|
21033
|
+
x?: number | undefined;
|
|
21034
|
+
y?: number | undefined;
|
|
21035
|
+
} | undefined;
|
|
20880
21036
|
}>, z.ZodObject<{
|
|
20881
21037
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
20882
21038
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -21673,8 +21829,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21673
21829
|
color: z.ZodDefault<z.ZodString>;
|
|
21674
21830
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21675
21831
|
}, "strip", z.ZodTypeAny, {
|
|
21676
|
-
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
21677
21832
|
type: "schematic_text";
|
|
21833
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
21678
21834
|
rotation: number;
|
|
21679
21835
|
text: string;
|
|
21680
21836
|
font_size: number;
|
|
@@ -23049,10 +23205,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23049
23205
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
23050
23206
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
23051
23207
|
schematic_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
23052
|
-
|
|
23053
|
-
time_per_step: z.ZodNumber
|
|
23054
|
-
start_time_ms: z.ZodNumber
|
|
23055
|
-
end_time_ms: z.ZodNumber
|
|
23208
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
23209
|
+
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23210
|
+
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23211
|
+
end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23056
23212
|
name: z.ZodOptional<z.ZodString>;
|
|
23057
23213
|
}, "strip", z.ZodTypeAny, {
|
|
23058
23214
|
type: "simulation_transient_voltage_graph";
|
|
@@ -23063,21 +23219,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23063
23219
|
start_time_ms: number;
|
|
23064
23220
|
end_time_ms: number;
|
|
23065
23221
|
name?: string | undefined;
|
|
23222
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
23066
23223
|
schematic_voltage_probe_id?: string | undefined;
|
|
23067
23224
|
timestamps_ms?: number[] | undefined;
|
|
23068
|
-
subcircuit_connecivity_map_key?: string | undefined;
|
|
23069
23225
|
}, {
|
|
23070
23226
|
type: "simulation_transient_voltage_graph";
|
|
23071
23227
|
simulation_experiment_id: string;
|
|
23072
23228
|
voltage_levels: number[];
|
|
23073
|
-
time_per_step: number;
|
|
23074
|
-
start_time_ms: number;
|
|
23075
|
-
end_time_ms: number;
|
|
23229
|
+
time_per_step: string | number;
|
|
23230
|
+
start_time_ms: string | number;
|
|
23231
|
+
end_time_ms: string | number;
|
|
23076
23232
|
name?: string | undefined;
|
|
23233
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
23077
23234
|
schematic_voltage_probe_id?: string | undefined;
|
|
23078
23235
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
23079
23236
|
timestamps_ms?: number[] | undefined;
|
|
23080
|
-
subcircuit_connecivity_map_key?: string | undefined;
|
|
23081
23237
|
}>]>;
|
|
23082
23238
|
type AnyCircuitElement = z.infer<typeof any_circuit_element>;
|
|
23083
23239
|
type AnyCircuitElementInput = z.input<typeof any_circuit_element>;
|
|
@@ -23095,4 +23251,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
23095
23251
|
*/
|
|
23096
23252
|
type CircuitJson = AnyCircuitElement[];
|
|
23097
23253
|
|
|
23098
|
-
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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, 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 PcbNet, type PcbNetInput, 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 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 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, circuit_json_footprint_load_error, current, distance, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, 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_net, 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_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_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 };
|
|
23254
|
+
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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, 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 PcbNet, type PcbNetInput, 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 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, 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_outside_board_error, 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_net, 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_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, timestamp, visible_layer, voltage, wave_shape };
|