circuit-json 0.0.394 → 0.0.396
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +483 -2
- package/dist/index.mjs +1374 -1298
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -26739,6 +26739,56 @@ interface SourceFailedToCreateComponentError extends BaseCircuitJsonError {
|
|
|
26739
26739
|
};
|
|
26740
26740
|
}
|
|
26741
26741
|
|
|
26742
|
+
declare const source_invalid_component_property_error: z.ZodObject<{
|
|
26743
|
+
message: z.ZodString;
|
|
26744
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
26745
|
+
} & {
|
|
26746
|
+
type: z.ZodLiteral<"source_invalid_component_property_error">;
|
|
26747
|
+
source_invalid_component_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
26748
|
+
source_component_id: z.ZodString;
|
|
26749
|
+
property_name: z.ZodString;
|
|
26750
|
+
property_value: z.ZodOptional<z.ZodUnknown>;
|
|
26751
|
+
expected_format: z.ZodOptional<z.ZodString>;
|
|
26752
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
26753
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_invalid_component_property_error">>;
|
|
26754
|
+
}, "strip", z.ZodTypeAny, {
|
|
26755
|
+
message: string;
|
|
26756
|
+
type: "source_invalid_component_property_error";
|
|
26757
|
+
source_component_id: string;
|
|
26758
|
+
error_type: "source_invalid_component_property_error";
|
|
26759
|
+
property_name: string;
|
|
26760
|
+
source_invalid_component_property_error_id: string;
|
|
26761
|
+
subcircuit_id?: string | undefined;
|
|
26762
|
+
is_fatal?: boolean | undefined;
|
|
26763
|
+
property_value?: unknown;
|
|
26764
|
+
expected_format?: string | undefined;
|
|
26765
|
+
}, {
|
|
26766
|
+
message: string;
|
|
26767
|
+
type: "source_invalid_component_property_error";
|
|
26768
|
+
source_component_id: string;
|
|
26769
|
+
property_name: string;
|
|
26770
|
+
subcircuit_id?: string | undefined;
|
|
26771
|
+
error_type?: "source_invalid_component_property_error" | undefined;
|
|
26772
|
+
is_fatal?: boolean | undefined;
|
|
26773
|
+
source_invalid_component_property_error_id?: string | undefined;
|
|
26774
|
+
property_value?: unknown;
|
|
26775
|
+
expected_format?: string | undefined;
|
|
26776
|
+
}>;
|
|
26777
|
+
type SourceInvalidComponentPropertyErrorInput = z.input<typeof source_invalid_component_property_error>;
|
|
26778
|
+
/**
|
|
26779
|
+
* The source component property is invalid
|
|
26780
|
+
*/
|
|
26781
|
+
interface SourceInvalidComponentPropertyError extends BaseCircuitJsonError {
|
|
26782
|
+
type: "source_invalid_component_property_error";
|
|
26783
|
+
source_invalid_component_property_error_id: string;
|
|
26784
|
+
source_component_id: string;
|
|
26785
|
+
property_name: string;
|
|
26786
|
+
property_value?: unknown;
|
|
26787
|
+
expected_format?: string;
|
|
26788
|
+
subcircuit_id?: string;
|
|
26789
|
+
error_type: "source_invalid_component_property_error";
|
|
26790
|
+
}
|
|
26791
|
+
|
|
26742
26792
|
declare const source_trace_not_connected_error: z.ZodObject<{
|
|
26743
26793
|
message: z.ZodString;
|
|
26744
26794
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28339,6 +28389,40 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
28339
28389
|
}>, z.ZodObject<{
|
|
28340
28390
|
message: z.ZodString;
|
|
28341
28391
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28392
|
+
} & {
|
|
28393
|
+
type: z.ZodLiteral<"source_invalid_component_property_error">;
|
|
28394
|
+
source_invalid_component_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28395
|
+
source_component_id: z.ZodString;
|
|
28396
|
+
property_name: z.ZodString;
|
|
28397
|
+
property_value: z.ZodOptional<z.ZodUnknown>;
|
|
28398
|
+
expected_format: z.ZodOptional<z.ZodString>;
|
|
28399
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
28400
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_invalid_component_property_error">>;
|
|
28401
|
+
}, "strip", z.ZodTypeAny, {
|
|
28402
|
+
message: string;
|
|
28403
|
+
type: "source_invalid_component_property_error";
|
|
28404
|
+
source_component_id: string;
|
|
28405
|
+
error_type: "source_invalid_component_property_error";
|
|
28406
|
+
property_name: string;
|
|
28407
|
+
source_invalid_component_property_error_id: string;
|
|
28408
|
+
subcircuit_id?: string | undefined;
|
|
28409
|
+
is_fatal?: boolean | undefined;
|
|
28410
|
+
property_value?: unknown;
|
|
28411
|
+
expected_format?: string | undefined;
|
|
28412
|
+
}, {
|
|
28413
|
+
message: string;
|
|
28414
|
+
type: "source_invalid_component_property_error";
|
|
28415
|
+
source_component_id: string;
|
|
28416
|
+
property_name: string;
|
|
28417
|
+
subcircuit_id?: string | undefined;
|
|
28418
|
+
error_type?: "source_invalid_component_property_error" | undefined;
|
|
28419
|
+
is_fatal?: boolean | undefined;
|
|
28420
|
+
source_invalid_component_property_error_id?: string | undefined;
|
|
28421
|
+
property_value?: unknown;
|
|
28422
|
+
expected_format?: string | undefined;
|
|
28423
|
+
}>, z.ZodObject<{
|
|
28424
|
+
message: z.ZodString;
|
|
28425
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28342
28426
|
} & {
|
|
28343
28427
|
type: z.ZodLiteral<"source_failed_to_create_component_error">;
|
|
28344
28428
|
source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -28509,7 +28593,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
28509
28593
|
* Deprecated: use `AnySourceElement` instead
|
|
28510
28594
|
*/
|
|
28511
28595
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
28512
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceI2cMisconfiguredError;
|
|
28596
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceI2cMisconfiguredError;
|
|
28513
28597
|
|
|
28514
28598
|
declare const source_port: z.ZodObject<{
|
|
28515
28599
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -28976,6 +29060,123 @@ interface SourceManuallyPlacedVia {
|
|
|
28976
29060
|
source_trace_id?: string;
|
|
28977
29061
|
}
|
|
28978
29062
|
|
|
29063
|
+
declare const source_no_power_pin_defined_warning: z.ZodObject<{
|
|
29064
|
+
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
29065
|
+
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29066
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
|
|
29067
|
+
message: z.ZodString;
|
|
29068
|
+
source_component_id: z.ZodString;
|
|
29069
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
29070
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
29071
|
+
}, "strip", z.ZodTypeAny, {
|
|
29072
|
+
message: string;
|
|
29073
|
+
type: "source_no_power_pin_defined_warning";
|
|
29074
|
+
source_component_id: string;
|
|
29075
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
29076
|
+
source_port_ids: string[];
|
|
29077
|
+
source_no_power_pin_defined_warning_id: string;
|
|
29078
|
+
subcircuit_id?: string | undefined;
|
|
29079
|
+
}, {
|
|
29080
|
+
message: string;
|
|
29081
|
+
type: "source_no_power_pin_defined_warning";
|
|
29082
|
+
source_component_id: string;
|
|
29083
|
+
source_port_ids: string[];
|
|
29084
|
+
subcircuit_id?: string | undefined;
|
|
29085
|
+
warning_type?: "source_no_power_pin_defined_warning" | undefined;
|
|
29086
|
+
source_no_power_pin_defined_warning_id?: string | undefined;
|
|
29087
|
+
}>;
|
|
29088
|
+
type SourceNoPowerPinDefinedWarningInput = z.input<typeof source_no_power_pin_defined_warning>;
|
|
29089
|
+
/**
|
|
29090
|
+
* Warning emitted when a chip has no source ports with requires_power=true
|
|
29091
|
+
*/
|
|
29092
|
+
interface SourceNoPowerPinDefinedWarning {
|
|
29093
|
+
type: "source_no_power_pin_defined_warning";
|
|
29094
|
+
source_no_power_pin_defined_warning_id: string;
|
|
29095
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
29096
|
+
message: string;
|
|
29097
|
+
source_component_id: string;
|
|
29098
|
+
source_port_ids: string[];
|
|
29099
|
+
subcircuit_id?: string;
|
|
29100
|
+
}
|
|
29101
|
+
|
|
29102
|
+
declare const source_no_ground_pin_defined_warning: z.ZodObject<{
|
|
29103
|
+
type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
|
|
29104
|
+
source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29105
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
|
|
29106
|
+
message: z.ZodString;
|
|
29107
|
+
source_component_id: z.ZodString;
|
|
29108
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
29109
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
29110
|
+
}, "strip", z.ZodTypeAny, {
|
|
29111
|
+
message: string;
|
|
29112
|
+
type: "source_no_ground_pin_defined_warning";
|
|
29113
|
+
source_component_id: string;
|
|
29114
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
29115
|
+
source_port_ids: string[];
|
|
29116
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
29117
|
+
subcircuit_id?: string | undefined;
|
|
29118
|
+
}, {
|
|
29119
|
+
message: string;
|
|
29120
|
+
type: "source_no_ground_pin_defined_warning";
|
|
29121
|
+
source_component_id: string;
|
|
29122
|
+
source_port_ids: string[];
|
|
29123
|
+
subcircuit_id?: string | undefined;
|
|
29124
|
+
warning_type?: "source_no_ground_pin_defined_warning" | undefined;
|
|
29125
|
+
source_no_ground_pin_defined_warning_id?: string | undefined;
|
|
29126
|
+
}>;
|
|
29127
|
+
type SourceNoGroundPinDefinedWarningInput = z.input<typeof source_no_ground_pin_defined_warning>;
|
|
29128
|
+
/**
|
|
29129
|
+
* Warning emitted when a chip has no source ports marked as ground pins
|
|
29130
|
+
*/
|
|
29131
|
+
interface SourceNoGroundPinDefinedWarning {
|
|
29132
|
+
type: "source_no_ground_pin_defined_warning";
|
|
29133
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
29134
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
29135
|
+
message: string;
|
|
29136
|
+
source_component_id: string;
|
|
29137
|
+
source_port_ids: string[];
|
|
29138
|
+
subcircuit_id?: string;
|
|
29139
|
+
}
|
|
29140
|
+
|
|
29141
|
+
declare const source_component_pins_underspecified_warning: z.ZodObject<{
|
|
29142
|
+
type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
|
|
29143
|
+
source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29144
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
|
|
29145
|
+
message: z.ZodString;
|
|
29146
|
+
source_component_id: z.ZodString;
|
|
29147
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
29148
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
29149
|
+
}, "strip", z.ZodTypeAny, {
|
|
29150
|
+
message: string;
|
|
29151
|
+
type: "source_component_pins_underspecified_warning";
|
|
29152
|
+
source_component_id: string;
|
|
29153
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
29154
|
+
source_port_ids: string[];
|
|
29155
|
+
source_component_pins_underspecified_warning_id: string;
|
|
29156
|
+
subcircuit_id?: string | undefined;
|
|
29157
|
+
}, {
|
|
29158
|
+
message: string;
|
|
29159
|
+
type: "source_component_pins_underspecified_warning";
|
|
29160
|
+
source_component_id: string;
|
|
29161
|
+
source_port_ids: string[];
|
|
29162
|
+
subcircuit_id?: string | undefined;
|
|
29163
|
+
warning_type?: "source_component_pins_underspecified_warning" | undefined;
|
|
29164
|
+
source_component_pins_underspecified_warning_id?: string | undefined;
|
|
29165
|
+
}>;
|
|
29166
|
+
type SourceComponentPinsUnderspecifiedWarningInput = z.input<typeof source_component_pins_underspecified_warning>;
|
|
29167
|
+
/**
|
|
29168
|
+
* Warning emitted when all ports on a source component are underspecified
|
|
29169
|
+
*/
|
|
29170
|
+
interface SourceComponentPinsUnderspecifiedWarning {
|
|
29171
|
+
type: "source_component_pins_underspecified_warning";
|
|
29172
|
+
source_component_pins_underspecified_warning_id: string;
|
|
29173
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
29174
|
+
message: string;
|
|
29175
|
+
source_component_id: string;
|
|
29176
|
+
source_port_ids: string[];
|
|
29177
|
+
subcircuit_id?: string;
|
|
29178
|
+
}
|
|
29179
|
+
|
|
28979
29180
|
declare const source_pin_must_be_connected_error: z.ZodObject<{
|
|
28980
29181
|
message: z.ZodString;
|
|
28981
29182
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -33348,6 +33549,40 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
33348
33549
|
}>, z.ZodObject<{
|
|
33349
33550
|
message: z.ZodString;
|
|
33350
33551
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
33552
|
+
} & {
|
|
33553
|
+
type: z.ZodLiteral<"source_invalid_component_property_error">;
|
|
33554
|
+
source_invalid_component_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
33555
|
+
source_component_id: z.ZodString;
|
|
33556
|
+
property_name: z.ZodString;
|
|
33557
|
+
property_value: z.ZodOptional<z.ZodUnknown>;
|
|
33558
|
+
expected_format: z.ZodOptional<z.ZodString>;
|
|
33559
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
33560
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_invalid_component_property_error">>;
|
|
33561
|
+
}, "strip", z.ZodTypeAny, {
|
|
33562
|
+
message: string;
|
|
33563
|
+
type: "source_invalid_component_property_error";
|
|
33564
|
+
source_component_id: string;
|
|
33565
|
+
error_type: "source_invalid_component_property_error";
|
|
33566
|
+
property_name: string;
|
|
33567
|
+
source_invalid_component_property_error_id: string;
|
|
33568
|
+
subcircuit_id?: string | undefined;
|
|
33569
|
+
is_fatal?: boolean | undefined;
|
|
33570
|
+
property_value?: unknown;
|
|
33571
|
+
expected_format?: string | undefined;
|
|
33572
|
+
}, {
|
|
33573
|
+
message: string;
|
|
33574
|
+
type: "source_invalid_component_property_error";
|
|
33575
|
+
source_component_id: string;
|
|
33576
|
+
property_name: string;
|
|
33577
|
+
subcircuit_id?: string | undefined;
|
|
33578
|
+
error_type?: "source_invalid_component_property_error" | undefined;
|
|
33579
|
+
is_fatal?: boolean | undefined;
|
|
33580
|
+
source_invalid_component_property_error_id?: string | undefined;
|
|
33581
|
+
property_value?: unknown;
|
|
33582
|
+
expected_format?: string | undefined;
|
|
33583
|
+
}>, z.ZodObject<{
|
|
33584
|
+
message: z.ZodString;
|
|
33585
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
33351
33586
|
} & {
|
|
33352
33587
|
type: z.ZodLiteral<"source_failed_to_create_component_error">;
|
|
33353
33588
|
source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -34461,6 +34696,40 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34461
34696
|
}>, z.ZodObject<{
|
|
34462
34697
|
message: z.ZodString;
|
|
34463
34698
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
34699
|
+
} & {
|
|
34700
|
+
type: z.ZodLiteral<"source_invalid_component_property_error">;
|
|
34701
|
+
source_invalid_component_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34702
|
+
source_component_id: z.ZodString;
|
|
34703
|
+
property_name: z.ZodString;
|
|
34704
|
+
property_value: z.ZodOptional<z.ZodUnknown>;
|
|
34705
|
+
expected_format: z.ZodOptional<z.ZodString>;
|
|
34706
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
34707
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_invalid_component_property_error">>;
|
|
34708
|
+
}, "strip", z.ZodTypeAny, {
|
|
34709
|
+
message: string;
|
|
34710
|
+
type: "source_invalid_component_property_error";
|
|
34711
|
+
source_component_id: string;
|
|
34712
|
+
error_type: "source_invalid_component_property_error";
|
|
34713
|
+
property_name: string;
|
|
34714
|
+
source_invalid_component_property_error_id: string;
|
|
34715
|
+
subcircuit_id?: string | undefined;
|
|
34716
|
+
is_fatal?: boolean | undefined;
|
|
34717
|
+
property_value?: unknown;
|
|
34718
|
+
expected_format?: string | undefined;
|
|
34719
|
+
}, {
|
|
34720
|
+
message: string;
|
|
34721
|
+
type: "source_invalid_component_property_error";
|
|
34722
|
+
source_component_id: string;
|
|
34723
|
+
property_name: string;
|
|
34724
|
+
subcircuit_id?: string | undefined;
|
|
34725
|
+
error_type?: "source_invalid_component_property_error" | undefined;
|
|
34726
|
+
is_fatal?: boolean | undefined;
|
|
34727
|
+
source_invalid_component_property_error_id?: string | undefined;
|
|
34728
|
+
property_value?: unknown;
|
|
34729
|
+
expected_format?: string | undefined;
|
|
34730
|
+
}>, z.ZodObject<{
|
|
34731
|
+
message: z.ZodString;
|
|
34732
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
34464
34733
|
} & {
|
|
34465
34734
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
34466
34735
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -34516,6 +34785,78 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34516
34785
|
subcircuit_id?: string | undefined;
|
|
34517
34786
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
34518
34787
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
34788
|
+
}>, z.ZodObject<{
|
|
34789
|
+
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
34790
|
+
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34791
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
|
|
34792
|
+
message: z.ZodString;
|
|
34793
|
+
source_component_id: z.ZodString;
|
|
34794
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
34795
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
34796
|
+
}, "strip", z.ZodTypeAny, {
|
|
34797
|
+
message: string;
|
|
34798
|
+
type: "source_no_power_pin_defined_warning";
|
|
34799
|
+
source_component_id: string;
|
|
34800
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
34801
|
+
source_port_ids: string[];
|
|
34802
|
+
source_no_power_pin_defined_warning_id: string;
|
|
34803
|
+
subcircuit_id?: string | undefined;
|
|
34804
|
+
}, {
|
|
34805
|
+
message: string;
|
|
34806
|
+
type: "source_no_power_pin_defined_warning";
|
|
34807
|
+
source_component_id: string;
|
|
34808
|
+
source_port_ids: string[];
|
|
34809
|
+
subcircuit_id?: string | undefined;
|
|
34810
|
+
warning_type?: "source_no_power_pin_defined_warning" | undefined;
|
|
34811
|
+
source_no_power_pin_defined_warning_id?: string | undefined;
|
|
34812
|
+
}>, z.ZodObject<{
|
|
34813
|
+
type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
|
|
34814
|
+
source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34815
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
|
|
34816
|
+
message: z.ZodString;
|
|
34817
|
+
source_component_id: z.ZodString;
|
|
34818
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
34819
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
34820
|
+
}, "strip", z.ZodTypeAny, {
|
|
34821
|
+
message: string;
|
|
34822
|
+
type: "source_no_ground_pin_defined_warning";
|
|
34823
|
+
source_component_id: string;
|
|
34824
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
34825
|
+
source_port_ids: string[];
|
|
34826
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
34827
|
+
subcircuit_id?: string | undefined;
|
|
34828
|
+
}, {
|
|
34829
|
+
message: string;
|
|
34830
|
+
type: "source_no_ground_pin_defined_warning";
|
|
34831
|
+
source_component_id: string;
|
|
34832
|
+
source_port_ids: string[];
|
|
34833
|
+
subcircuit_id?: string | undefined;
|
|
34834
|
+
warning_type?: "source_no_ground_pin_defined_warning" | undefined;
|
|
34835
|
+
source_no_ground_pin_defined_warning_id?: string | undefined;
|
|
34836
|
+
}>, z.ZodObject<{
|
|
34837
|
+
type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
|
|
34838
|
+
source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34839
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
|
|
34840
|
+
message: z.ZodString;
|
|
34841
|
+
source_component_id: z.ZodString;
|
|
34842
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
34843
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
34844
|
+
}, "strip", z.ZodTypeAny, {
|
|
34845
|
+
message: string;
|
|
34846
|
+
type: "source_component_pins_underspecified_warning";
|
|
34847
|
+
source_component_id: string;
|
|
34848
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
34849
|
+
source_port_ids: string[];
|
|
34850
|
+
source_component_pins_underspecified_warning_id: string;
|
|
34851
|
+
subcircuit_id?: string | undefined;
|
|
34852
|
+
}, {
|
|
34853
|
+
message: string;
|
|
34854
|
+
type: "source_component_pins_underspecified_warning";
|
|
34855
|
+
source_component_id: string;
|
|
34856
|
+
source_port_ids: string[];
|
|
34857
|
+
subcircuit_id?: string | undefined;
|
|
34858
|
+
warning_type?: "source_component_pins_underspecified_warning" | undefined;
|
|
34859
|
+
source_component_pins_underspecified_warning_id?: string | undefined;
|
|
34519
34860
|
}>, z.ZodObject<{
|
|
34520
34861
|
message: z.ZodString;
|
|
34521
34862
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -50916,6 +51257,40 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50916
51257
|
}>, z.ZodObject<{
|
|
50917
51258
|
message: z.ZodString;
|
|
50918
51259
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
51260
|
+
} & {
|
|
51261
|
+
type: z.ZodLiteral<"source_invalid_component_property_error">;
|
|
51262
|
+
source_invalid_component_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51263
|
+
source_component_id: z.ZodString;
|
|
51264
|
+
property_name: z.ZodString;
|
|
51265
|
+
property_value: z.ZodOptional<z.ZodUnknown>;
|
|
51266
|
+
expected_format: z.ZodOptional<z.ZodString>;
|
|
51267
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
51268
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_invalid_component_property_error">>;
|
|
51269
|
+
}, "strip", z.ZodTypeAny, {
|
|
51270
|
+
message: string;
|
|
51271
|
+
type: "source_invalid_component_property_error";
|
|
51272
|
+
source_component_id: string;
|
|
51273
|
+
error_type: "source_invalid_component_property_error";
|
|
51274
|
+
property_name: string;
|
|
51275
|
+
source_invalid_component_property_error_id: string;
|
|
51276
|
+
subcircuit_id?: string | undefined;
|
|
51277
|
+
is_fatal?: boolean | undefined;
|
|
51278
|
+
property_value?: unknown;
|
|
51279
|
+
expected_format?: string | undefined;
|
|
51280
|
+
}, {
|
|
51281
|
+
message: string;
|
|
51282
|
+
type: "source_invalid_component_property_error";
|
|
51283
|
+
source_component_id: string;
|
|
51284
|
+
property_name: string;
|
|
51285
|
+
subcircuit_id?: string | undefined;
|
|
51286
|
+
error_type?: "source_invalid_component_property_error" | undefined;
|
|
51287
|
+
is_fatal?: boolean | undefined;
|
|
51288
|
+
source_invalid_component_property_error_id?: string | undefined;
|
|
51289
|
+
property_value?: unknown;
|
|
51290
|
+
expected_format?: string | undefined;
|
|
51291
|
+
}>, z.ZodObject<{
|
|
51292
|
+
message: z.ZodString;
|
|
51293
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
50919
51294
|
} & {
|
|
50920
51295
|
type: z.ZodLiteral<"source_failed_to_create_component_error">;
|
|
50921
51296
|
source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -52029,6 +52404,40 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52029
52404
|
}>, z.ZodObject<{
|
|
52030
52405
|
message: z.ZodString;
|
|
52031
52406
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
52407
|
+
} & {
|
|
52408
|
+
type: z.ZodLiteral<"source_invalid_component_property_error">;
|
|
52409
|
+
source_invalid_component_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52410
|
+
source_component_id: z.ZodString;
|
|
52411
|
+
property_name: z.ZodString;
|
|
52412
|
+
property_value: z.ZodOptional<z.ZodUnknown>;
|
|
52413
|
+
expected_format: z.ZodOptional<z.ZodString>;
|
|
52414
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52415
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_invalid_component_property_error">>;
|
|
52416
|
+
}, "strip", z.ZodTypeAny, {
|
|
52417
|
+
message: string;
|
|
52418
|
+
type: "source_invalid_component_property_error";
|
|
52419
|
+
source_component_id: string;
|
|
52420
|
+
error_type: "source_invalid_component_property_error";
|
|
52421
|
+
property_name: string;
|
|
52422
|
+
source_invalid_component_property_error_id: string;
|
|
52423
|
+
subcircuit_id?: string | undefined;
|
|
52424
|
+
is_fatal?: boolean | undefined;
|
|
52425
|
+
property_value?: unknown;
|
|
52426
|
+
expected_format?: string | undefined;
|
|
52427
|
+
}, {
|
|
52428
|
+
message: string;
|
|
52429
|
+
type: "source_invalid_component_property_error";
|
|
52430
|
+
source_component_id: string;
|
|
52431
|
+
property_name: string;
|
|
52432
|
+
subcircuit_id?: string | undefined;
|
|
52433
|
+
error_type?: "source_invalid_component_property_error" | undefined;
|
|
52434
|
+
is_fatal?: boolean | undefined;
|
|
52435
|
+
source_invalid_component_property_error_id?: string | undefined;
|
|
52436
|
+
property_value?: unknown;
|
|
52437
|
+
expected_format?: string | undefined;
|
|
52438
|
+
}>, z.ZodObject<{
|
|
52439
|
+
message: z.ZodString;
|
|
52440
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
52032
52441
|
} & {
|
|
52033
52442
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
52034
52443
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -52084,6 +52493,78 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52084
52493
|
subcircuit_id?: string | undefined;
|
|
52085
52494
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
52086
52495
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
52496
|
+
}>, z.ZodObject<{
|
|
52497
|
+
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
52498
|
+
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52499
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
|
|
52500
|
+
message: z.ZodString;
|
|
52501
|
+
source_component_id: z.ZodString;
|
|
52502
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
52503
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52504
|
+
}, "strip", z.ZodTypeAny, {
|
|
52505
|
+
message: string;
|
|
52506
|
+
type: "source_no_power_pin_defined_warning";
|
|
52507
|
+
source_component_id: string;
|
|
52508
|
+
warning_type: "source_no_power_pin_defined_warning";
|
|
52509
|
+
source_port_ids: string[];
|
|
52510
|
+
source_no_power_pin_defined_warning_id: string;
|
|
52511
|
+
subcircuit_id?: string | undefined;
|
|
52512
|
+
}, {
|
|
52513
|
+
message: string;
|
|
52514
|
+
type: "source_no_power_pin_defined_warning";
|
|
52515
|
+
source_component_id: string;
|
|
52516
|
+
source_port_ids: string[];
|
|
52517
|
+
subcircuit_id?: string | undefined;
|
|
52518
|
+
warning_type?: "source_no_power_pin_defined_warning" | undefined;
|
|
52519
|
+
source_no_power_pin_defined_warning_id?: string | undefined;
|
|
52520
|
+
}>, z.ZodObject<{
|
|
52521
|
+
type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
|
|
52522
|
+
source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52523
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
|
|
52524
|
+
message: z.ZodString;
|
|
52525
|
+
source_component_id: z.ZodString;
|
|
52526
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
52527
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52528
|
+
}, "strip", z.ZodTypeAny, {
|
|
52529
|
+
message: string;
|
|
52530
|
+
type: "source_no_ground_pin_defined_warning";
|
|
52531
|
+
source_component_id: string;
|
|
52532
|
+
warning_type: "source_no_ground_pin_defined_warning";
|
|
52533
|
+
source_port_ids: string[];
|
|
52534
|
+
source_no_ground_pin_defined_warning_id: string;
|
|
52535
|
+
subcircuit_id?: string | undefined;
|
|
52536
|
+
}, {
|
|
52537
|
+
message: string;
|
|
52538
|
+
type: "source_no_ground_pin_defined_warning";
|
|
52539
|
+
source_component_id: string;
|
|
52540
|
+
source_port_ids: string[];
|
|
52541
|
+
subcircuit_id?: string | undefined;
|
|
52542
|
+
warning_type?: "source_no_ground_pin_defined_warning" | undefined;
|
|
52543
|
+
source_no_ground_pin_defined_warning_id?: string | undefined;
|
|
52544
|
+
}>, z.ZodObject<{
|
|
52545
|
+
type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
|
|
52546
|
+
source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52547
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
|
|
52548
|
+
message: z.ZodString;
|
|
52549
|
+
source_component_id: z.ZodString;
|
|
52550
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
52551
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52552
|
+
}, "strip", z.ZodTypeAny, {
|
|
52553
|
+
message: string;
|
|
52554
|
+
type: "source_component_pins_underspecified_warning";
|
|
52555
|
+
source_component_id: string;
|
|
52556
|
+
warning_type: "source_component_pins_underspecified_warning";
|
|
52557
|
+
source_port_ids: string[];
|
|
52558
|
+
source_component_pins_underspecified_warning_id: string;
|
|
52559
|
+
subcircuit_id?: string | undefined;
|
|
52560
|
+
}, {
|
|
52561
|
+
message: string;
|
|
52562
|
+
type: "source_component_pins_underspecified_warning";
|
|
52563
|
+
source_component_id: string;
|
|
52564
|
+
source_port_ids: string[];
|
|
52565
|
+
subcircuit_id?: string | undefined;
|
|
52566
|
+
warning_type?: "source_component_pins_underspecified_warning" | undefined;
|
|
52567
|
+
source_component_pins_underspecified_warning_id?: string | undefined;
|
|
52087
52568
|
}>, z.ZodObject<{
|
|
52088
52569
|
message: z.ZodString;
|
|
52089
52570
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -67037,4 +67518,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
67037
67518
|
*/
|
|
67038
67519
|
type CircuitJson = AnyCircuitElement[];
|
|
67039
67520
|
|
|
67040
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
67521
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|