circuit-json 0.0.428 → 0.0.430
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 +642 -175
- package/dist/index.d.mts +255 -16
- package/dist/index.mjs +1388 -1353
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -25991,6 +25991,46 @@ interface SimulationOpAmp {
|
|
|
25991
25991
|
negative_supply_source_port_id: string;
|
|
25992
25992
|
}
|
|
25993
25993
|
|
|
25994
|
+
declare const simulation_spice_subcircuit: z.ZodObject<{
|
|
25995
|
+
type: z.ZodLiteral<"simulation_spice_subcircuit">;
|
|
25996
|
+
simulation_spice_subcircuit_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25997
|
+
source_component_id: z.ZodString;
|
|
25998
|
+
spice_pin_to_source_port_map: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
25999
|
+
subcircuit_source: z.ZodString;
|
|
26000
|
+
}, "strip", z.ZodTypeAny, {
|
|
26001
|
+
type: "simulation_spice_subcircuit";
|
|
26002
|
+
source_component_id: string;
|
|
26003
|
+
simulation_spice_subcircuit_id: string;
|
|
26004
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
26005
|
+
subcircuit_source: string;
|
|
26006
|
+
}, {
|
|
26007
|
+
type: "simulation_spice_subcircuit";
|
|
26008
|
+
source_component_id: string;
|
|
26009
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
26010
|
+
subcircuit_source: string;
|
|
26011
|
+
simulation_spice_subcircuit_id?: string | undefined;
|
|
26012
|
+
}>;
|
|
26013
|
+
type SimulationSpiceSubcircuitInput = z.input<typeof simulation_spice_subcircuit>;
|
|
26014
|
+
/**
|
|
26015
|
+
* Defines a custom SPICE subcircuit model for simulation.
|
|
26016
|
+
*/
|
|
26017
|
+
interface SimulationSpiceSubcircuit {
|
|
26018
|
+
type: "simulation_spice_subcircuit";
|
|
26019
|
+
simulation_spice_subcircuit_id: string;
|
|
26020
|
+
/**
|
|
26021
|
+
* Source component this SPICE subcircuit models.
|
|
26022
|
+
*/
|
|
26023
|
+
source_component_id: string;
|
|
26024
|
+
/**
|
|
26025
|
+
* Maps SPICE subcircuit pin names to source port ids.
|
|
26026
|
+
*/
|
|
26027
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
26028
|
+
/**
|
|
26029
|
+
* Full SPICE subcircuit source text.
|
|
26030
|
+
*/
|
|
26031
|
+
subcircuit_source: string;
|
|
26032
|
+
}
|
|
26033
|
+
|
|
25994
26034
|
interface SourceComponentBase {
|
|
25995
26035
|
type: "source_component";
|
|
25996
26036
|
ftype?: string;
|
|
@@ -27996,6 +28036,44 @@ interface SourceI2cMisconfiguredError extends BaseCircuitJsonError {
|
|
|
27996
28036
|
source_port_ids: string[];
|
|
27997
28037
|
}
|
|
27998
28038
|
|
|
28039
|
+
declare const source_component_misconfigured_error: z.ZodObject<{
|
|
28040
|
+
message: z.ZodString;
|
|
28041
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28042
|
+
} & {
|
|
28043
|
+
type: z.ZodLiteral<"source_component_misconfigured_error">;
|
|
28044
|
+
source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28045
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
|
|
28046
|
+
source_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
28047
|
+
source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28048
|
+
}, "strip", z.ZodTypeAny, {
|
|
28049
|
+
message: string;
|
|
28050
|
+
type: "source_component_misconfigured_error";
|
|
28051
|
+
error_type: "source_component_misconfigured_error";
|
|
28052
|
+
source_component_misconfigured_error_id: string;
|
|
28053
|
+
source_component_ids: string[];
|
|
28054
|
+
is_fatal?: boolean | undefined;
|
|
28055
|
+
source_port_ids?: string[] | undefined;
|
|
28056
|
+
}, {
|
|
28057
|
+
message: string;
|
|
28058
|
+
type: "source_component_misconfigured_error";
|
|
28059
|
+
source_component_ids: string[];
|
|
28060
|
+
error_type?: "source_component_misconfigured_error" | undefined;
|
|
28061
|
+
is_fatal?: boolean | undefined;
|
|
28062
|
+
source_port_ids?: string[] | undefined;
|
|
28063
|
+
source_component_misconfigured_error_id?: string | undefined;
|
|
28064
|
+
}>;
|
|
28065
|
+
type SourceComponentMisconfiguredErrorInput = z.input<typeof source_component_misconfigured_error>;
|
|
28066
|
+
/**
|
|
28067
|
+
* Error emitted when one or more source components have an invalid or conflicting configuration
|
|
28068
|
+
*/
|
|
28069
|
+
interface SourceComponentMisconfiguredError extends BaseCircuitJsonError {
|
|
28070
|
+
type: "source_component_misconfigured_error";
|
|
28071
|
+
source_component_misconfigured_error_id: string;
|
|
28072
|
+
error_type: "source_component_misconfigured_error";
|
|
28073
|
+
source_component_ids: string[];
|
|
28074
|
+
source_port_ids?: string[];
|
|
28075
|
+
}
|
|
28076
|
+
|
|
27999
28077
|
declare const source_simple_voltage_source: z.ZodObject<{
|
|
28000
28078
|
type: z.ZodLiteral<"source_component">;
|
|
28001
28079
|
source_component_id: z.ZodString;
|
|
@@ -29562,12 +29640,37 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
29562
29640
|
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
29563
29641
|
is_fatal?: boolean | undefined;
|
|
29564
29642
|
source_i2c_misconfigured_error_id?: string | undefined;
|
|
29643
|
+
}>, z.ZodObject<{
|
|
29644
|
+
message: z.ZodString;
|
|
29645
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
29646
|
+
} & {
|
|
29647
|
+
type: z.ZodLiteral<"source_component_misconfigured_error">;
|
|
29648
|
+
source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29649
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
|
|
29650
|
+
source_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
29651
|
+
source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
29652
|
+
}, "strip", z.ZodTypeAny, {
|
|
29653
|
+
message: string;
|
|
29654
|
+
type: "source_component_misconfigured_error";
|
|
29655
|
+
error_type: "source_component_misconfigured_error";
|
|
29656
|
+
source_component_misconfigured_error_id: string;
|
|
29657
|
+
source_component_ids: string[];
|
|
29658
|
+
is_fatal?: boolean | undefined;
|
|
29659
|
+
source_port_ids?: string[] | undefined;
|
|
29660
|
+
}, {
|
|
29661
|
+
message: string;
|
|
29662
|
+
type: "source_component_misconfigured_error";
|
|
29663
|
+
source_component_ids: string[];
|
|
29664
|
+
error_type?: "source_component_misconfigured_error" | undefined;
|
|
29665
|
+
is_fatal?: boolean | undefined;
|
|
29666
|
+
source_port_ids?: string[] | undefined;
|
|
29667
|
+
source_component_misconfigured_error_id?: string | undefined;
|
|
29565
29668
|
}>]>;
|
|
29566
29669
|
/**
|
|
29567
29670
|
* Deprecated: use `AnySourceElement` instead
|
|
29568
29671
|
*/
|
|
29569
29672
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
29570
|
-
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 | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError;
|
|
29673
|
+
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 | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
|
|
29571
29674
|
|
|
29572
29675
|
declare const source_port: z.ZodObject<{
|
|
29573
29676
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -30243,12 +30346,12 @@ declare const asset: z.ZodObject<{
|
|
|
30243
30346
|
url: z.ZodString;
|
|
30244
30347
|
mimetype: z.ZodString;
|
|
30245
30348
|
}, "strip", z.ZodTypeAny, {
|
|
30246
|
-
project_relative_path: string;
|
|
30247
30349
|
url: string;
|
|
30350
|
+
project_relative_path: string;
|
|
30248
30351
|
mimetype: string;
|
|
30249
30352
|
}, {
|
|
30250
|
-
project_relative_path: string;
|
|
30251
30353
|
url: string;
|
|
30354
|
+
project_relative_path: string;
|
|
30252
30355
|
mimetype: string;
|
|
30253
30356
|
}>;
|
|
30254
30357
|
type AssetInput = z.input<typeof asset>;
|
|
@@ -32920,12 +33023,12 @@ declare const cad_component: z.ZodObject<{
|
|
|
32920
33023
|
url: z.ZodString;
|
|
32921
33024
|
mimetype: z.ZodString;
|
|
32922
33025
|
}, "strip", z.ZodTypeAny, {
|
|
32923
|
-
project_relative_path: string;
|
|
32924
33026
|
url: string;
|
|
33027
|
+
project_relative_path: string;
|
|
32925
33028
|
mimetype: string;
|
|
32926
33029
|
}, {
|
|
32927
|
-
project_relative_path: string;
|
|
32928
33030
|
url: string;
|
|
33031
|
+
project_relative_path: string;
|
|
32929
33032
|
mimetype: string;
|
|
32930
33033
|
}>>;
|
|
32931
33034
|
model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
|
|
@@ -32982,8 +33085,8 @@ declare const cad_component: z.ZodObject<{
|
|
|
32982
33085
|
model_step_url?: string | undefined;
|
|
32983
33086
|
model_wrl_url?: string | undefined;
|
|
32984
33087
|
model_asset?: {
|
|
32985
|
-
project_relative_path: string;
|
|
32986
33088
|
url: string;
|
|
33089
|
+
project_relative_path: string;
|
|
32987
33090
|
mimetype: string;
|
|
32988
33091
|
} | undefined;
|
|
32989
33092
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -33031,8 +33134,8 @@ declare const cad_component: z.ZodObject<{
|
|
|
33031
33134
|
model_step_url?: string | undefined;
|
|
33032
33135
|
model_wrl_url?: string | undefined;
|
|
33033
33136
|
model_asset?: {
|
|
33034
|
-
project_relative_path: string;
|
|
33035
33137
|
url: string;
|
|
33138
|
+
project_relative_path: string;
|
|
33036
33139
|
mimetype: string;
|
|
33037
33140
|
} | undefined;
|
|
33038
33141
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -34767,6 +34870,31 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34767
34870
|
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
34768
34871
|
is_fatal?: boolean | undefined;
|
|
34769
34872
|
source_i2c_misconfigured_error_id?: string | undefined;
|
|
34873
|
+
}>, z.ZodObject<{
|
|
34874
|
+
message: z.ZodString;
|
|
34875
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
34876
|
+
} & {
|
|
34877
|
+
type: z.ZodLiteral<"source_component_misconfigured_error">;
|
|
34878
|
+
source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34879
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
|
|
34880
|
+
source_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
34881
|
+
source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34882
|
+
}, "strip", z.ZodTypeAny, {
|
|
34883
|
+
message: string;
|
|
34884
|
+
type: "source_component_misconfigured_error";
|
|
34885
|
+
error_type: "source_component_misconfigured_error";
|
|
34886
|
+
source_component_misconfigured_error_id: string;
|
|
34887
|
+
source_component_ids: string[];
|
|
34888
|
+
is_fatal?: boolean | undefined;
|
|
34889
|
+
source_port_ids?: string[] | undefined;
|
|
34890
|
+
}, {
|
|
34891
|
+
message: string;
|
|
34892
|
+
type: "source_component_misconfigured_error";
|
|
34893
|
+
source_component_ids: string[];
|
|
34894
|
+
error_type?: "source_component_misconfigured_error" | undefined;
|
|
34895
|
+
is_fatal?: boolean | undefined;
|
|
34896
|
+
source_port_ids?: string[] | undefined;
|
|
34897
|
+
source_component_misconfigured_error_id?: string | undefined;
|
|
34770
34898
|
}>]>, z.ZodObject<{
|
|
34771
34899
|
type: z.ZodLiteral<"source_net">;
|
|
34772
34900
|
source_net_id: z.ZodString;
|
|
@@ -35981,6 +36109,31 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35981
36109
|
}>, z.ZodObject<{
|
|
35982
36110
|
message: z.ZodString;
|
|
35983
36111
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
36112
|
+
} & {
|
|
36113
|
+
type: z.ZodLiteral<"source_component_misconfigured_error">;
|
|
36114
|
+
source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
36115
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
|
|
36116
|
+
source_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
36117
|
+
source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
36118
|
+
}, "strip", z.ZodTypeAny, {
|
|
36119
|
+
message: string;
|
|
36120
|
+
type: "source_component_misconfigured_error";
|
|
36121
|
+
error_type: "source_component_misconfigured_error";
|
|
36122
|
+
source_component_misconfigured_error_id: string;
|
|
36123
|
+
source_component_ids: string[];
|
|
36124
|
+
is_fatal?: boolean | undefined;
|
|
36125
|
+
source_port_ids?: string[] | undefined;
|
|
36126
|
+
}, {
|
|
36127
|
+
message: string;
|
|
36128
|
+
type: "source_component_misconfigured_error";
|
|
36129
|
+
source_component_ids: string[];
|
|
36130
|
+
error_type?: "source_component_misconfigured_error" | undefined;
|
|
36131
|
+
is_fatal?: boolean | undefined;
|
|
36132
|
+
source_port_ids?: string[] | undefined;
|
|
36133
|
+
source_component_misconfigured_error_id?: string | undefined;
|
|
36134
|
+
}>, z.ZodObject<{
|
|
36135
|
+
message: z.ZodString;
|
|
36136
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
35984
36137
|
} & {
|
|
35985
36138
|
type: z.ZodLiteral<"source_ambiguous_port_reference">;
|
|
35986
36139
|
source_ambiguous_port_reference_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -50885,12 +51038,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50885
51038
|
url: z.ZodString;
|
|
50886
51039
|
mimetype: z.ZodString;
|
|
50887
51040
|
}, "strip", z.ZodTypeAny, {
|
|
50888
|
-
project_relative_path: string;
|
|
50889
51041
|
url: string;
|
|
51042
|
+
project_relative_path: string;
|
|
50890
51043
|
mimetype: string;
|
|
50891
51044
|
}, {
|
|
50892
|
-
project_relative_path: string;
|
|
50893
51045
|
url: string;
|
|
51046
|
+
project_relative_path: string;
|
|
50894
51047
|
mimetype: string;
|
|
50895
51048
|
}>>;
|
|
50896
51049
|
model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
|
|
@@ -50947,8 +51100,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50947
51100
|
model_step_url?: string | undefined;
|
|
50948
51101
|
model_wrl_url?: string | undefined;
|
|
50949
51102
|
model_asset?: {
|
|
50950
|
-
project_relative_path: string;
|
|
50951
51103
|
url: string;
|
|
51104
|
+
project_relative_path: string;
|
|
50952
51105
|
mimetype: string;
|
|
50953
51106
|
} | undefined;
|
|
50954
51107
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -50996,8 +51149,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50996
51149
|
model_step_url?: string | undefined;
|
|
50997
51150
|
model_wrl_url?: string | undefined;
|
|
50998
51151
|
model_asset?: {
|
|
50999
|
-
project_relative_path: string;
|
|
51000
51152
|
url: string;
|
|
51153
|
+
project_relative_path: string;
|
|
51001
51154
|
mimetype: string;
|
|
51002
51155
|
} | undefined;
|
|
51003
51156
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -51344,6 +51497,24 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51344
51497
|
negative_supply_source_port_id: string;
|
|
51345
51498
|
source_component_id?: string | undefined;
|
|
51346
51499
|
simulation_op_amp_id?: string | undefined;
|
|
51500
|
+
}>, z.ZodObject<{
|
|
51501
|
+
type: z.ZodLiteral<"simulation_spice_subcircuit">;
|
|
51502
|
+
simulation_spice_subcircuit_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51503
|
+
source_component_id: z.ZodString;
|
|
51504
|
+
spice_pin_to_source_port_map: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
51505
|
+
subcircuit_source: z.ZodString;
|
|
51506
|
+
}, "strip", z.ZodTypeAny, {
|
|
51507
|
+
type: "simulation_spice_subcircuit";
|
|
51508
|
+
source_component_id: string;
|
|
51509
|
+
simulation_spice_subcircuit_id: string;
|
|
51510
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
51511
|
+
subcircuit_source: string;
|
|
51512
|
+
}, {
|
|
51513
|
+
type: "simulation_spice_subcircuit";
|
|
51514
|
+
source_component_id: string;
|
|
51515
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
51516
|
+
subcircuit_source: string;
|
|
51517
|
+
simulation_spice_subcircuit_id?: string | undefined;
|
|
51347
51518
|
}>]>;
|
|
51348
51519
|
/**
|
|
51349
51520
|
* @deprecated use any_circuit_element instead
|
|
@@ -53034,6 +53205,31 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53034
53205
|
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
53035
53206
|
is_fatal?: boolean | undefined;
|
|
53036
53207
|
source_i2c_misconfigured_error_id?: string | undefined;
|
|
53208
|
+
}>, z.ZodObject<{
|
|
53209
|
+
message: z.ZodString;
|
|
53210
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
53211
|
+
} & {
|
|
53212
|
+
type: z.ZodLiteral<"source_component_misconfigured_error">;
|
|
53213
|
+
source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
53214
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
|
|
53215
|
+
source_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
53216
|
+
source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
53217
|
+
}, "strip", z.ZodTypeAny, {
|
|
53218
|
+
message: string;
|
|
53219
|
+
type: "source_component_misconfigured_error";
|
|
53220
|
+
error_type: "source_component_misconfigured_error";
|
|
53221
|
+
source_component_misconfigured_error_id: string;
|
|
53222
|
+
source_component_ids: string[];
|
|
53223
|
+
is_fatal?: boolean | undefined;
|
|
53224
|
+
source_port_ids?: string[] | undefined;
|
|
53225
|
+
}, {
|
|
53226
|
+
message: string;
|
|
53227
|
+
type: "source_component_misconfigured_error";
|
|
53228
|
+
source_component_ids: string[];
|
|
53229
|
+
error_type?: "source_component_misconfigured_error" | undefined;
|
|
53230
|
+
is_fatal?: boolean | undefined;
|
|
53231
|
+
source_port_ids?: string[] | undefined;
|
|
53232
|
+
source_component_misconfigured_error_id?: string | undefined;
|
|
53037
53233
|
}>]>, z.ZodObject<{
|
|
53038
53234
|
type: z.ZodLiteral<"source_net">;
|
|
53039
53235
|
source_net_id: z.ZodString;
|
|
@@ -54248,6 +54444,31 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
54248
54444
|
}>, z.ZodObject<{
|
|
54249
54445
|
message: z.ZodString;
|
|
54250
54446
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
54447
|
+
} & {
|
|
54448
|
+
type: z.ZodLiteral<"source_component_misconfigured_error">;
|
|
54449
|
+
source_component_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
54450
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_component_misconfigured_error">>;
|
|
54451
|
+
source_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
54452
|
+
source_port_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
54453
|
+
}, "strip", z.ZodTypeAny, {
|
|
54454
|
+
message: string;
|
|
54455
|
+
type: "source_component_misconfigured_error";
|
|
54456
|
+
error_type: "source_component_misconfigured_error";
|
|
54457
|
+
source_component_misconfigured_error_id: string;
|
|
54458
|
+
source_component_ids: string[];
|
|
54459
|
+
is_fatal?: boolean | undefined;
|
|
54460
|
+
source_port_ids?: string[] | undefined;
|
|
54461
|
+
}, {
|
|
54462
|
+
message: string;
|
|
54463
|
+
type: "source_component_misconfigured_error";
|
|
54464
|
+
source_component_ids: string[];
|
|
54465
|
+
error_type?: "source_component_misconfigured_error" | undefined;
|
|
54466
|
+
is_fatal?: boolean | undefined;
|
|
54467
|
+
source_port_ids?: string[] | undefined;
|
|
54468
|
+
source_component_misconfigured_error_id?: string | undefined;
|
|
54469
|
+
}>, z.ZodObject<{
|
|
54470
|
+
message: z.ZodString;
|
|
54471
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
54251
54472
|
} & {
|
|
54252
54473
|
type: z.ZodLiteral<"source_ambiguous_port_reference">;
|
|
54253
54474
|
source_ambiguous_port_reference_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -69152,12 +69373,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
69152
69373
|
url: z.ZodString;
|
|
69153
69374
|
mimetype: z.ZodString;
|
|
69154
69375
|
}, "strip", z.ZodTypeAny, {
|
|
69155
|
-
project_relative_path: string;
|
|
69156
69376
|
url: string;
|
|
69377
|
+
project_relative_path: string;
|
|
69157
69378
|
mimetype: string;
|
|
69158
69379
|
}, {
|
|
69159
|
-
project_relative_path: string;
|
|
69160
69380
|
url: string;
|
|
69381
|
+
project_relative_path: string;
|
|
69161
69382
|
mimetype: string;
|
|
69162
69383
|
}>>;
|
|
69163
69384
|
model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
|
|
@@ -69214,8 +69435,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
69214
69435
|
model_step_url?: string | undefined;
|
|
69215
69436
|
model_wrl_url?: string | undefined;
|
|
69216
69437
|
model_asset?: {
|
|
69217
|
-
project_relative_path: string;
|
|
69218
69438
|
url: string;
|
|
69439
|
+
project_relative_path: string;
|
|
69219
69440
|
mimetype: string;
|
|
69220
69441
|
} | undefined;
|
|
69221
69442
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -69263,8 +69484,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
69263
69484
|
model_step_url?: string | undefined;
|
|
69264
69485
|
model_wrl_url?: string | undefined;
|
|
69265
69486
|
model_asset?: {
|
|
69266
|
-
project_relative_path: string;
|
|
69267
69487
|
url: string;
|
|
69488
|
+
project_relative_path: string;
|
|
69268
69489
|
mimetype: string;
|
|
69269
69490
|
} | undefined;
|
|
69270
69491
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -69611,6 +69832,24 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
69611
69832
|
negative_supply_source_port_id: string;
|
|
69612
69833
|
source_component_id?: string | undefined;
|
|
69613
69834
|
simulation_op_amp_id?: string | undefined;
|
|
69835
|
+
}>, z.ZodObject<{
|
|
69836
|
+
type: z.ZodLiteral<"simulation_spice_subcircuit">;
|
|
69837
|
+
simulation_spice_subcircuit_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
69838
|
+
source_component_id: z.ZodString;
|
|
69839
|
+
spice_pin_to_source_port_map: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
69840
|
+
subcircuit_source: z.ZodString;
|
|
69841
|
+
}, "strip", z.ZodTypeAny, {
|
|
69842
|
+
type: "simulation_spice_subcircuit";
|
|
69843
|
+
source_component_id: string;
|
|
69844
|
+
simulation_spice_subcircuit_id: string;
|
|
69845
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
69846
|
+
subcircuit_source: string;
|
|
69847
|
+
}, {
|
|
69848
|
+
type: "simulation_spice_subcircuit";
|
|
69849
|
+
source_component_id: string;
|
|
69850
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
69851
|
+
subcircuit_source: string;
|
|
69852
|
+
simulation_spice_subcircuit_id?: string | undefined;
|
|
69614
69853
|
}>]>;
|
|
69615
69854
|
type AnyCircuitElement = z.infer<typeof any_circuit_element>;
|
|
69616
69855
|
type AnyCircuitElementInput = z.input<typeof any_circuit_element>;
|
|
@@ -69628,4 +69867,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
69628
69867
|
*/
|
|
69629
69868
|
type CircuitJson = AnyCircuitElement[];
|
|
69630
69869
|
|
|
69631
|
-
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 CadModelAxisDirection, type CadModelFormat, 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 ManufacturingDrcProperties, 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 PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, 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 SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, 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, manufacturing_drc_properties, 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_overlap_error, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_manufacturer_part_number_warning, 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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
69870
|
+
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 CadModelAxisDirection, type CadModelFormat, 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 ManufacturingDrcProperties, 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 PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, 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 SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, 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 SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, 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 SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, 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, manufacturing_drc_properties, 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_overlap_error, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_spice_subcircuit, 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_misconfigured_error, 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_manufacturer_part_number_warning, 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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|