circuit-json 0.0.366 → 0.0.367
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 +404 -122
- package/dist/index.mjs +1376 -1388
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3319,11 +3319,33 @@ type PCBTrace = PcbTrace;
|
|
|
3319
3319
|
*/
|
|
3320
3320
|
type PCBTraceInput = PcbTraceInput;
|
|
3321
3321
|
|
|
3322
|
+
declare const base_circuit_json_error: z.ZodObject<{
|
|
3323
|
+
error_type: z.ZodString;
|
|
3324
|
+
message: z.ZodString;
|
|
3325
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
3326
|
+
}, "strip", z.ZodTypeAny, {
|
|
3327
|
+
message: string;
|
|
3328
|
+
error_type: string;
|
|
3329
|
+
is_fatal?: boolean | undefined;
|
|
3330
|
+
}, {
|
|
3331
|
+
message: string;
|
|
3332
|
+
error_type: string;
|
|
3333
|
+
is_fatal?: boolean | undefined;
|
|
3334
|
+
}>;
|
|
3335
|
+
type BaseCircuitJsonErrorInput = z.input<typeof base_circuit_json_error>;
|
|
3336
|
+
interface BaseCircuitJsonError {
|
|
3337
|
+
error_type: string;
|
|
3338
|
+
message: string;
|
|
3339
|
+
is_fatal?: boolean;
|
|
3340
|
+
}
|
|
3341
|
+
|
|
3322
3342
|
declare const pcb_trace_error: z.ZodObject<{
|
|
3343
|
+
message: z.ZodString;
|
|
3344
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
3345
|
+
} & {
|
|
3323
3346
|
type: z.ZodLiteral<"pcb_trace_error">;
|
|
3324
3347
|
pcb_trace_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3325
3348
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_error">>;
|
|
3326
|
-
message: z.ZodString;
|
|
3327
3349
|
center: z.ZodOptional<z.ZodObject<{
|
|
3328
3350
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3329
3351
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3344,8 +3366,8 @@ declare const pcb_trace_error: z.ZodObject<{
|
|
|
3344
3366
|
type: "pcb_trace_error";
|
|
3345
3367
|
source_trace_id: string;
|
|
3346
3368
|
pcb_trace_id: string;
|
|
3347
|
-
pcb_trace_error_id: string;
|
|
3348
3369
|
error_type: "pcb_trace_error";
|
|
3370
|
+
pcb_trace_error_id: string;
|
|
3349
3371
|
pcb_component_ids: string[];
|
|
3350
3372
|
pcb_port_ids: string[];
|
|
3351
3373
|
center?: {
|
|
@@ -3353,6 +3375,7 @@ declare const pcb_trace_error: z.ZodObject<{
|
|
|
3353
3375
|
y: number;
|
|
3354
3376
|
} | undefined;
|
|
3355
3377
|
subcircuit_id?: string | undefined;
|
|
3378
|
+
is_fatal?: boolean | undefined;
|
|
3356
3379
|
}, {
|
|
3357
3380
|
message: string;
|
|
3358
3381
|
type: "pcb_trace_error";
|
|
@@ -3365,18 +3388,18 @@ declare const pcb_trace_error: z.ZodObject<{
|
|
|
3365
3388
|
y: string | number;
|
|
3366
3389
|
} | undefined;
|
|
3367
3390
|
subcircuit_id?: string | undefined;
|
|
3368
|
-
pcb_trace_error_id?: string | undefined;
|
|
3369
3391
|
error_type?: "pcb_trace_error" | undefined;
|
|
3392
|
+
is_fatal?: boolean | undefined;
|
|
3393
|
+
pcb_trace_error_id?: string | undefined;
|
|
3370
3394
|
}>;
|
|
3371
3395
|
type PcbTraceErrorInput = z.input<typeof pcb_trace_error>;
|
|
3372
3396
|
/**
|
|
3373
3397
|
* Defines a trace error on the PCB
|
|
3374
3398
|
*/
|
|
3375
|
-
interface PcbTraceError {
|
|
3399
|
+
interface PcbTraceError extends BaseCircuitJsonError {
|
|
3376
3400
|
type: "pcb_trace_error";
|
|
3377
3401
|
pcb_trace_error_id: string;
|
|
3378
3402
|
error_type: "pcb_trace_error";
|
|
3379
|
-
message: string;
|
|
3380
3403
|
center?: Point;
|
|
3381
3404
|
pcb_trace_id: string;
|
|
3382
3405
|
source_trace_id: string;
|
|
@@ -3390,10 +3413,12 @@ interface PcbTraceError {
|
|
|
3390
3413
|
type PCBTraceError = PcbTraceError;
|
|
3391
3414
|
|
|
3392
3415
|
declare const pcb_trace_missing_error: z.ZodObject<{
|
|
3416
|
+
message: z.ZodString;
|
|
3417
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
3418
|
+
} & {
|
|
3393
3419
|
type: z.ZodLiteral<"pcb_trace_missing_error">;
|
|
3394
3420
|
pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3395
3421
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
|
|
3396
|
-
message: z.ZodString;
|
|
3397
3422
|
center: z.ZodOptional<z.ZodObject<{
|
|
3398
3423
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3399
3424
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3421,6 +3446,7 @@ declare const pcb_trace_missing_error: z.ZodObject<{
|
|
|
3421
3446
|
y: number;
|
|
3422
3447
|
} | undefined;
|
|
3423
3448
|
subcircuit_id?: string | undefined;
|
|
3449
|
+
is_fatal?: boolean | undefined;
|
|
3424
3450
|
}, {
|
|
3425
3451
|
message: string;
|
|
3426
3452
|
type: "pcb_trace_missing_error";
|
|
@@ -3433,17 +3459,17 @@ declare const pcb_trace_missing_error: z.ZodObject<{
|
|
|
3433
3459
|
} | undefined;
|
|
3434
3460
|
subcircuit_id?: string | undefined;
|
|
3435
3461
|
error_type?: "pcb_trace_missing_error" | undefined;
|
|
3462
|
+
is_fatal?: boolean | undefined;
|
|
3436
3463
|
pcb_trace_missing_error_id?: string | undefined;
|
|
3437
3464
|
}>;
|
|
3438
3465
|
type PcbTraceMissingErrorInput = z.input<typeof pcb_trace_missing_error>;
|
|
3439
3466
|
/**
|
|
3440
3467
|
* Defines an error when a source trace has no corresponding PCB trace
|
|
3441
3468
|
*/
|
|
3442
|
-
interface PcbTraceMissingError {
|
|
3469
|
+
interface PcbTraceMissingError extends BaseCircuitJsonError {
|
|
3443
3470
|
type: "pcb_trace_missing_error";
|
|
3444
3471
|
pcb_trace_missing_error_id: string;
|
|
3445
3472
|
error_type: "pcb_trace_missing_error";
|
|
3446
|
-
message: string;
|
|
3447
3473
|
center?: Point;
|
|
3448
3474
|
source_trace_id: string;
|
|
3449
3475
|
pcb_component_ids: string[];
|
|
@@ -3456,10 +3482,12 @@ interface PcbTraceMissingError {
|
|
|
3456
3482
|
type PCBTraceMissingError = PcbTraceMissingError;
|
|
3457
3483
|
|
|
3458
3484
|
declare const pcb_port_not_matched_error: z.ZodObject<{
|
|
3485
|
+
message: z.ZodString;
|
|
3486
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
3487
|
+
} & {
|
|
3459
3488
|
type: z.ZodLiteral<"pcb_port_not_matched_error">;
|
|
3460
3489
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3461
3490
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_port_not_matched_error">>;
|
|
3462
|
-
message: z.ZodString;
|
|
3463
3491
|
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
3464
3492
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3465
3493
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3469,23 +3497,24 @@ declare const pcb_port_not_matched_error: z.ZodObject<{
|
|
|
3469
3497
|
pcb_component_ids: string[];
|
|
3470
3498
|
pcb_error_id: string;
|
|
3471
3499
|
subcircuit_id?: string | undefined;
|
|
3500
|
+
is_fatal?: boolean | undefined;
|
|
3472
3501
|
}, {
|
|
3473
3502
|
message: string;
|
|
3474
3503
|
type: "pcb_port_not_matched_error";
|
|
3475
3504
|
pcb_component_ids: string[];
|
|
3476
3505
|
subcircuit_id?: string | undefined;
|
|
3477
3506
|
error_type?: "pcb_port_not_matched_error" | undefined;
|
|
3507
|
+
is_fatal?: boolean | undefined;
|
|
3478
3508
|
pcb_error_id?: string | undefined;
|
|
3479
3509
|
}>;
|
|
3480
3510
|
type PcbPortNotMatchedErrorInput = z.input<typeof pcb_port_not_matched_error>;
|
|
3481
3511
|
/**
|
|
3482
3512
|
* Defines a trace error on the PCB where a port is not matched
|
|
3483
3513
|
*/
|
|
3484
|
-
interface PcbPortNotMatchedError {
|
|
3514
|
+
interface PcbPortNotMatchedError extends BaseCircuitJsonError {
|
|
3485
3515
|
type: "pcb_port_not_matched_error";
|
|
3486
3516
|
pcb_error_id: string;
|
|
3487
3517
|
error_type: "pcb_port_not_matched_error";
|
|
3488
|
-
message: string;
|
|
3489
3518
|
pcb_component_ids: string[];
|
|
3490
3519
|
subcircuit_id?: string;
|
|
3491
3520
|
}
|
|
@@ -3495,10 +3524,12 @@ interface PcbPortNotMatchedError {
|
|
|
3495
3524
|
type PCBPortNotMatchedError = PcbPortNotMatchedError;
|
|
3496
3525
|
|
|
3497
3526
|
declare const pcb_port_not_connected_error: z.ZodObject<{
|
|
3527
|
+
message: z.ZodString;
|
|
3528
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
3529
|
+
} & {
|
|
3498
3530
|
type: z.ZodLiteral<"pcb_port_not_connected_error">;
|
|
3499
3531
|
pcb_port_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3500
3532
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_port_not_connected_error">>;
|
|
3501
|
-
message: z.ZodString;
|
|
3502
3533
|
pcb_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
3503
3534
|
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
3504
3535
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3510,6 +3541,7 @@ declare const pcb_port_not_connected_error: z.ZodObject<{
|
|
|
3510
3541
|
pcb_port_ids: string[];
|
|
3511
3542
|
pcb_port_not_connected_error_id: string;
|
|
3512
3543
|
subcircuit_id?: string | undefined;
|
|
3544
|
+
is_fatal?: boolean | undefined;
|
|
3513
3545
|
}, {
|
|
3514
3546
|
message: string;
|
|
3515
3547
|
type: "pcb_port_not_connected_error";
|
|
@@ -3517,17 +3549,17 @@ declare const pcb_port_not_connected_error: z.ZodObject<{
|
|
|
3517
3549
|
pcb_port_ids: string[];
|
|
3518
3550
|
subcircuit_id?: string | undefined;
|
|
3519
3551
|
error_type?: "pcb_port_not_connected_error" | undefined;
|
|
3552
|
+
is_fatal?: boolean | undefined;
|
|
3520
3553
|
pcb_port_not_connected_error_id?: string | undefined;
|
|
3521
3554
|
}>;
|
|
3522
3555
|
type PcbPortNotConnectedErrorInput = z.input<typeof pcb_port_not_connected_error>;
|
|
3523
3556
|
/**
|
|
3524
3557
|
* Defines an error when a pcb port is not connected to any trace
|
|
3525
3558
|
*/
|
|
3526
|
-
interface PcbPortNotConnectedError {
|
|
3559
|
+
interface PcbPortNotConnectedError extends BaseCircuitJsonError {
|
|
3527
3560
|
type: "pcb_port_not_connected_error";
|
|
3528
3561
|
pcb_port_not_connected_error_id: string;
|
|
3529
3562
|
error_type: "pcb_port_not_connected_error";
|
|
3530
|
-
message: string;
|
|
3531
3563
|
pcb_port_ids: string[];
|
|
3532
3564
|
pcb_component_ids: string[];
|
|
3533
3565
|
subcircuit_id?: string;
|
|
@@ -3860,10 +3892,12 @@ type PcbPanelInput = z.input<typeof pcb_panel>;
|
|
|
3860
3892
|
type PCBPanel = PcbPanel;
|
|
3861
3893
|
|
|
3862
3894
|
declare const pcb_placement_error: z.ZodObject<{
|
|
3895
|
+
message: z.ZodString;
|
|
3896
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
3897
|
+
} & {
|
|
3863
3898
|
type: z.ZodLiteral<"pcb_placement_error">;
|
|
3864
3899
|
pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3865
3900
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_placement_error">>;
|
|
3866
|
-
message: z.ZodString;
|
|
3867
3901
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3868
3902
|
}, "strip", z.ZodTypeAny, {
|
|
3869
3903
|
message: string;
|
|
@@ -3871,22 +3905,23 @@ declare const pcb_placement_error: z.ZodObject<{
|
|
|
3871
3905
|
error_type: "pcb_placement_error";
|
|
3872
3906
|
pcb_placement_error_id: string;
|
|
3873
3907
|
subcircuit_id?: string | undefined;
|
|
3908
|
+
is_fatal?: boolean | undefined;
|
|
3874
3909
|
}, {
|
|
3875
3910
|
message: string;
|
|
3876
3911
|
type: "pcb_placement_error";
|
|
3877
3912
|
subcircuit_id?: string | undefined;
|
|
3878
3913
|
error_type?: "pcb_placement_error" | undefined;
|
|
3914
|
+
is_fatal?: boolean | undefined;
|
|
3879
3915
|
pcb_placement_error_id?: string | undefined;
|
|
3880
3916
|
}>;
|
|
3881
3917
|
type PcbPlacementErrorInput = z.input<typeof pcb_placement_error>;
|
|
3882
3918
|
/**
|
|
3883
3919
|
* Defines a placement error on the PCB
|
|
3884
3920
|
*/
|
|
3885
|
-
interface PcbPlacementError {
|
|
3921
|
+
interface PcbPlacementError extends BaseCircuitJsonError {
|
|
3886
3922
|
type: "pcb_placement_error";
|
|
3887
3923
|
pcb_placement_error_id: string;
|
|
3888
3924
|
error_type: "pcb_placement_error";
|
|
3889
|
-
message: string;
|
|
3890
3925
|
subcircuit_id?: string;
|
|
3891
3926
|
}
|
|
3892
3927
|
/**
|
|
@@ -3895,10 +3930,12 @@ interface PcbPlacementError {
|
|
|
3895
3930
|
type PCBPlacementError = PcbPlacementError;
|
|
3896
3931
|
|
|
3897
3932
|
declare const pcb_panelization_placement_error: z.ZodObject<{
|
|
3933
|
+
message: z.ZodString;
|
|
3934
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
3935
|
+
} & {
|
|
3898
3936
|
type: z.ZodLiteral<"pcb_panelization_placement_error">;
|
|
3899
3937
|
pcb_panelization_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3900
3938
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_panelization_placement_error">>;
|
|
3901
|
-
message: z.ZodString;
|
|
3902
3939
|
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
3903
3940
|
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
3904
3941
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3908,6 +3945,7 @@ declare const pcb_panelization_placement_error: z.ZodObject<{
|
|
|
3908
3945
|
error_type: "pcb_panelization_placement_error";
|
|
3909
3946
|
pcb_panelization_placement_error_id: string;
|
|
3910
3947
|
subcircuit_id?: string | undefined;
|
|
3948
|
+
is_fatal?: boolean | undefined;
|
|
3911
3949
|
pcb_board_id?: string | undefined;
|
|
3912
3950
|
pcb_panel_id?: string | undefined;
|
|
3913
3951
|
}, {
|
|
@@ -3915,6 +3953,7 @@ declare const pcb_panelization_placement_error: z.ZodObject<{
|
|
|
3915
3953
|
type: "pcb_panelization_placement_error";
|
|
3916
3954
|
subcircuit_id?: string | undefined;
|
|
3917
3955
|
error_type?: "pcb_panelization_placement_error" | undefined;
|
|
3956
|
+
is_fatal?: boolean | undefined;
|
|
3918
3957
|
pcb_board_id?: string | undefined;
|
|
3919
3958
|
pcb_panel_id?: string | undefined;
|
|
3920
3959
|
pcb_panelization_placement_error_id?: string | undefined;
|
|
@@ -3923,11 +3962,10 @@ type PcbPanelizationPlacementErrorInput = z.input<typeof pcb_panelization_placem
|
|
|
3923
3962
|
/**
|
|
3924
3963
|
* Defines a panelization placement error on the PCB
|
|
3925
3964
|
*/
|
|
3926
|
-
interface PcbPanelizationPlacementError {
|
|
3965
|
+
interface PcbPanelizationPlacementError extends BaseCircuitJsonError {
|
|
3927
3966
|
type: "pcb_panelization_placement_error";
|
|
3928
3967
|
pcb_panelization_placement_error_id: string;
|
|
3929
3968
|
error_type: "pcb_panelization_placement_error";
|
|
3930
|
-
message: string;
|
|
3931
3969
|
pcb_panel_id?: string;
|
|
3932
3970
|
pcb_board_id?: string;
|
|
3933
3971
|
subcircuit_id?: string;
|
|
@@ -5506,10 +5544,12 @@ interface PcbNoteDimension {
|
|
|
5506
5544
|
}
|
|
5507
5545
|
|
|
5508
5546
|
declare const pcb_footprint_overlap_error: z.ZodObject<{
|
|
5547
|
+
message: z.ZodString;
|
|
5548
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
5549
|
+
} & {
|
|
5509
5550
|
type: z.ZodLiteral<"pcb_footprint_overlap_error">;
|
|
5510
5551
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5511
5552
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_footprint_overlap_error">>;
|
|
5512
|
-
message: z.ZodString;
|
|
5513
5553
|
pcb_smtpad_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5514
5554
|
pcb_plated_hole_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5515
5555
|
pcb_hole_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5519,6 +5559,7 @@ declare const pcb_footprint_overlap_error: z.ZodObject<{
|
|
|
5519
5559
|
type: "pcb_footprint_overlap_error";
|
|
5520
5560
|
error_type: "pcb_footprint_overlap_error";
|
|
5521
5561
|
pcb_error_id: string;
|
|
5562
|
+
is_fatal?: boolean | undefined;
|
|
5522
5563
|
pcb_smtpad_ids?: string[] | undefined;
|
|
5523
5564
|
pcb_plated_hole_ids?: string[] | undefined;
|
|
5524
5565
|
pcb_hole_ids?: string[] | undefined;
|
|
@@ -5527,6 +5568,7 @@ declare const pcb_footprint_overlap_error: z.ZodObject<{
|
|
|
5527
5568
|
message: string;
|
|
5528
5569
|
type: "pcb_footprint_overlap_error";
|
|
5529
5570
|
error_type?: "pcb_footprint_overlap_error" | undefined;
|
|
5571
|
+
is_fatal?: boolean | undefined;
|
|
5530
5572
|
pcb_error_id?: string | undefined;
|
|
5531
5573
|
pcb_smtpad_ids?: string[] | undefined;
|
|
5532
5574
|
pcb_plated_hole_ids?: string[] | undefined;
|
|
@@ -5535,11 +5577,10 @@ declare const pcb_footprint_overlap_error: z.ZodObject<{
|
|
|
5535
5577
|
}>;
|
|
5536
5578
|
type PcbFootprintOverlapErrorInput = z.input<typeof pcb_footprint_overlap_error>;
|
|
5537
5579
|
/** Error emitted when a pcb footprint overlaps with another element */
|
|
5538
|
-
interface PcbFootprintOverlapError {
|
|
5580
|
+
interface PcbFootprintOverlapError extends BaseCircuitJsonError {
|
|
5539
5581
|
type: "pcb_footprint_overlap_error";
|
|
5540
5582
|
pcb_error_id: string;
|
|
5541
5583
|
error_type: "pcb_footprint_overlap_error";
|
|
5542
|
-
message: string;
|
|
5543
5584
|
pcb_smtpad_ids?: string[];
|
|
5544
5585
|
pcb_plated_hole_ids?: string[];
|
|
5545
5586
|
pcb_hole_ids?: string[];
|
|
@@ -6142,13 +6183,15 @@ type PcbCutoutInput = z.input<typeof pcb_cutout>;
|
|
|
6142
6183
|
type PcbCutout = PcbCutoutRect | PcbCutoutCircle | PcbCutoutPolygon | PcbCutoutPath;
|
|
6143
6184
|
|
|
6144
6185
|
declare const pcb_missing_footprint_error: z.ZodObject<{
|
|
6186
|
+
message: z.ZodString;
|
|
6187
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
6188
|
+
} & {
|
|
6145
6189
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
6146
6190
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6147
6191
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
6148
6192
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6149
6193
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_missing_footprint_error">>;
|
|
6150
6194
|
source_component_id: z.ZodString;
|
|
6151
|
-
message: z.ZodString;
|
|
6152
6195
|
}, "strip", z.ZodTypeAny, {
|
|
6153
6196
|
message: string;
|
|
6154
6197
|
type: "pcb_missing_footprint_error";
|
|
@@ -6157,6 +6200,7 @@ declare const pcb_missing_footprint_error: z.ZodObject<{
|
|
|
6157
6200
|
pcb_missing_footprint_error_id: string;
|
|
6158
6201
|
subcircuit_id?: string | undefined;
|
|
6159
6202
|
pcb_group_id?: string | undefined;
|
|
6203
|
+
is_fatal?: boolean | undefined;
|
|
6160
6204
|
}, {
|
|
6161
6205
|
message: string;
|
|
6162
6206
|
type: "pcb_missing_footprint_error";
|
|
@@ -6164,20 +6208,20 @@ declare const pcb_missing_footprint_error: z.ZodObject<{
|
|
|
6164
6208
|
subcircuit_id?: string | undefined;
|
|
6165
6209
|
pcb_group_id?: string | undefined;
|
|
6166
6210
|
error_type?: "pcb_missing_footprint_error" | undefined;
|
|
6211
|
+
is_fatal?: boolean | undefined;
|
|
6167
6212
|
pcb_missing_footprint_error_id?: string | undefined;
|
|
6168
6213
|
}>;
|
|
6169
6214
|
type PcbMissingFootprintErrorInput = z.input<typeof pcb_missing_footprint_error>;
|
|
6170
6215
|
/**
|
|
6171
6216
|
* Defines a placement error on the PCB
|
|
6172
6217
|
*/
|
|
6173
|
-
interface PcbMissingFootprintError {
|
|
6218
|
+
interface PcbMissingFootprintError extends BaseCircuitJsonError {
|
|
6174
6219
|
type: "pcb_missing_footprint_error";
|
|
6175
6220
|
pcb_missing_footprint_error_id: string;
|
|
6176
6221
|
pcb_group_id?: string;
|
|
6177
6222
|
subcircuit_id?: string;
|
|
6178
6223
|
error_type: "pcb_missing_footprint_error";
|
|
6179
6224
|
source_component_id: string;
|
|
6180
|
-
message: string;
|
|
6181
6225
|
}
|
|
6182
6226
|
/**
|
|
6183
6227
|
* @deprecated use PcbMissingFootprintError
|
|
@@ -6185,6 +6229,9 @@ interface PcbMissingFootprintError {
|
|
|
6185
6229
|
type PCBMissingFootprintError = PcbMissingFootprintError;
|
|
6186
6230
|
|
|
6187
6231
|
declare const external_footprint_load_error: z.ZodObject<{
|
|
6232
|
+
message: z.ZodString;
|
|
6233
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
6234
|
+
} & {
|
|
6188
6235
|
type: z.ZodLiteral<"external_footprint_load_error">;
|
|
6189
6236
|
external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6190
6237
|
pcb_component_id: z.ZodString;
|
|
@@ -6193,7 +6240,6 @@ declare const external_footprint_load_error: z.ZodObject<{
|
|
|
6193
6240
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6194
6241
|
footprinter_string: z.ZodOptional<z.ZodString>;
|
|
6195
6242
|
error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
|
|
6196
|
-
message: z.ZodString;
|
|
6197
6243
|
}, "strip", z.ZodTypeAny, {
|
|
6198
6244
|
message: string;
|
|
6199
6245
|
type: "external_footprint_load_error";
|
|
@@ -6203,6 +6249,7 @@ declare const external_footprint_load_error: z.ZodObject<{
|
|
|
6203
6249
|
external_footprint_load_error_id: string;
|
|
6204
6250
|
subcircuit_id?: string | undefined;
|
|
6205
6251
|
pcb_group_id?: string | undefined;
|
|
6252
|
+
is_fatal?: boolean | undefined;
|
|
6206
6253
|
footprinter_string?: string | undefined;
|
|
6207
6254
|
}, {
|
|
6208
6255
|
message: string;
|
|
@@ -6212,11 +6259,12 @@ declare const external_footprint_load_error: z.ZodObject<{
|
|
|
6212
6259
|
subcircuit_id?: string | undefined;
|
|
6213
6260
|
pcb_group_id?: string | undefined;
|
|
6214
6261
|
error_type?: "external_footprint_load_error" | undefined;
|
|
6262
|
+
is_fatal?: boolean | undefined;
|
|
6215
6263
|
external_footprint_load_error_id?: string | undefined;
|
|
6216
6264
|
footprinter_string?: string | undefined;
|
|
6217
6265
|
}>;
|
|
6218
6266
|
type ExternalFootprintLoadErrorInput = z.input<typeof external_footprint_load_error>;
|
|
6219
|
-
interface ExternalFootprintLoadError {
|
|
6267
|
+
interface ExternalFootprintLoadError extends BaseCircuitJsonError {
|
|
6220
6268
|
type: "external_footprint_load_error";
|
|
6221
6269
|
external_footprint_load_error_id: string;
|
|
6222
6270
|
pcb_component_id: string;
|
|
@@ -6225,10 +6273,12 @@ interface ExternalFootprintLoadError {
|
|
|
6225
6273
|
subcircuit_id?: string;
|
|
6226
6274
|
footprinter_string?: string;
|
|
6227
6275
|
error_type: "external_footprint_load_error";
|
|
6228
|
-
message: string;
|
|
6229
6276
|
}
|
|
6230
6277
|
|
|
6231
6278
|
declare const circuit_json_footprint_load_error: z.ZodObject<{
|
|
6279
|
+
message: z.ZodString;
|
|
6280
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
6281
|
+
} & {
|
|
6232
6282
|
type: z.ZodLiteral<"circuit_json_footprint_load_error">;
|
|
6233
6283
|
circuit_json_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6234
6284
|
pcb_component_id: z.ZodString;
|
|
@@ -6236,7 +6286,6 @@ declare const circuit_json_footprint_load_error: z.ZodObject<{
|
|
|
6236
6286
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
6237
6287
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6238
6288
|
error_type: z.ZodDefault<z.ZodLiteral<"circuit_json_footprint_load_error">>;
|
|
6239
|
-
message: z.ZodString;
|
|
6240
6289
|
circuit_json: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
6241
6290
|
}, "strip", z.ZodTypeAny, {
|
|
6242
6291
|
message: string;
|
|
@@ -6247,6 +6296,7 @@ declare const circuit_json_footprint_load_error: z.ZodObject<{
|
|
|
6247
6296
|
circuit_json_footprint_load_error_id: string;
|
|
6248
6297
|
subcircuit_id?: string | undefined;
|
|
6249
6298
|
pcb_group_id?: string | undefined;
|
|
6299
|
+
is_fatal?: boolean | undefined;
|
|
6250
6300
|
circuit_json?: any[] | undefined;
|
|
6251
6301
|
}, {
|
|
6252
6302
|
message: string;
|
|
@@ -6256,11 +6306,12 @@ declare const circuit_json_footprint_load_error: z.ZodObject<{
|
|
|
6256
6306
|
subcircuit_id?: string | undefined;
|
|
6257
6307
|
pcb_group_id?: string | undefined;
|
|
6258
6308
|
error_type?: "circuit_json_footprint_load_error" | undefined;
|
|
6309
|
+
is_fatal?: boolean | undefined;
|
|
6259
6310
|
circuit_json_footprint_load_error_id?: string | undefined;
|
|
6260
6311
|
circuit_json?: any[] | undefined;
|
|
6261
6312
|
}>;
|
|
6262
6313
|
type CircuitJsonFootprintLoadErrorInput = z.input<typeof circuit_json_footprint_load_error>;
|
|
6263
|
-
interface CircuitJsonFootprintLoadError {
|
|
6314
|
+
interface CircuitJsonFootprintLoadError extends BaseCircuitJsonError {
|
|
6264
6315
|
type: "circuit_json_footprint_load_error";
|
|
6265
6316
|
circuit_json_footprint_load_error_id: string;
|
|
6266
6317
|
pcb_component_id: string;
|
|
@@ -6268,7 +6319,6 @@ interface CircuitJsonFootprintLoadError {
|
|
|
6268
6319
|
pcb_group_id?: string;
|
|
6269
6320
|
subcircuit_id?: string;
|
|
6270
6321
|
error_type: "circuit_json_footprint_load_error";
|
|
6271
|
-
message: string;
|
|
6272
6322
|
circuit_json?: any[];
|
|
6273
6323
|
}
|
|
6274
6324
|
|
|
@@ -6433,10 +6483,12 @@ interface PcbGroup {
|
|
|
6433
6483
|
}
|
|
6434
6484
|
|
|
6435
6485
|
declare const pcb_autorouting_error: z.ZodObject<{
|
|
6486
|
+
message: z.ZodString;
|
|
6487
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
6488
|
+
} & {
|
|
6436
6489
|
type: z.ZodLiteral<"pcb_autorouting_error">;
|
|
6437
6490
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6438
6491
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_autorouting_error">>;
|
|
6439
|
-
message: z.ZodString;
|
|
6440
6492
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6441
6493
|
}, "strip", z.ZodTypeAny, {
|
|
6442
6494
|
message: string;
|
|
@@ -6444,19 +6496,20 @@ declare const pcb_autorouting_error: z.ZodObject<{
|
|
|
6444
6496
|
error_type: "pcb_autorouting_error";
|
|
6445
6497
|
pcb_error_id: string;
|
|
6446
6498
|
subcircuit_id?: string | undefined;
|
|
6499
|
+
is_fatal?: boolean | undefined;
|
|
6447
6500
|
}, {
|
|
6448
6501
|
message: string;
|
|
6449
6502
|
type: "pcb_autorouting_error";
|
|
6450
6503
|
subcircuit_id?: string | undefined;
|
|
6451
6504
|
error_type?: "pcb_autorouting_error" | undefined;
|
|
6505
|
+
is_fatal?: boolean | undefined;
|
|
6452
6506
|
pcb_error_id?: string | undefined;
|
|
6453
6507
|
}>;
|
|
6454
6508
|
type PcbAutoroutingErrorInput = z.input<typeof pcb_autorouting_error>;
|
|
6455
|
-
interface PcbAutoroutingErrorInterface {
|
|
6509
|
+
interface PcbAutoroutingErrorInterface extends BaseCircuitJsonError {
|
|
6456
6510
|
type: "pcb_autorouting_error";
|
|
6457
6511
|
pcb_error_id: string;
|
|
6458
6512
|
error_type: "pcb_autorouting_error";
|
|
6459
|
-
message: string;
|
|
6460
6513
|
subcircuit_id?: string;
|
|
6461
6514
|
}
|
|
6462
6515
|
type PcbAutoroutingError = PcbAutoroutingErrorInterface;
|
|
@@ -7312,10 +7365,12 @@ type PcbCopperPourInput = z.input<typeof pcb_copper_pour>;
|
|
|
7312
7365
|
type PcbCopperPour = PcbCopperPourRect | PcbCopperPourBRep | PcbCopperPourPolygon;
|
|
7313
7366
|
|
|
7314
7367
|
declare const pcb_component_outside_board_error: z.ZodObject<{
|
|
7368
|
+
message: z.ZodString;
|
|
7369
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
7370
|
+
} & {
|
|
7315
7371
|
type: z.ZodLiteral<"pcb_component_outside_board_error">;
|
|
7316
7372
|
pcb_component_outside_board_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7317
7373
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_outside_board_error">>;
|
|
7318
|
-
message: z.ZodString;
|
|
7319
7374
|
pcb_component_id: z.ZodString;
|
|
7320
7375
|
pcb_board_id: z.ZodString;
|
|
7321
7376
|
component_center: z.ZodObject<{
|
|
@@ -7365,6 +7420,7 @@ declare const pcb_component_outside_board_error: z.ZodObject<{
|
|
|
7365
7420
|
};
|
|
7366
7421
|
source_component_id?: string | undefined;
|
|
7367
7422
|
subcircuit_id?: string | undefined;
|
|
7423
|
+
is_fatal?: boolean | undefined;
|
|
7368
7424
|
}, {
|
|
7369
7425
|
message: string;
|
|
7370
7426
|
type: "pcb_component_outside_board_error";
|
|
@@ -7383,15 +7439,15 @@ declare const pcb_component_outside_board_error: z.ZodObject<{
|
|
|
7383
7439
|
source_component_id?: string | undefined;
|
|
7384
7440
|
subcircuit_id?: string | undefined;
|
|
7385
7441
|
error_type?: "pcb_component_outside_board_error" | undefined;
|
|
7442
|
+
is_fatal?: boolean | undefined;
|
|
7386
7443
|
pcb_component_outside_board_error_id?: string | undefined;
|
|
7387
7444
|
}>;
|
|
7388
7445
|
type PcbComponentOutsideBoardErrorInput = z.input<typeof pcb_component_outside_board_error>;
|
|
7389
7446
|
/** Error emitted when a PCB component is placed outside the board boundaries */
|
|
7390
|
-
interface PcbComponentOutsideBoardError {
|
|
7447
|
+
interface PcbComponentOutsideBoardError extends BaseCircuitJsonError {
|
|
7391
7448
|
type: "pcb_component_outside_board_error";
|
|
7392
7449
|
pcb_component_outside_board_error_id: string;
|
|
7393
7450
|
error_type: "pcb_component_outside_board_error";
|
|
7394
|
-
message: string;
|
|
7395
7451
|
pcb_component_id: string;
|
|
7396
7452
|
pcb_board_id: string;
|
|
7397
7453
|
component_center: Point;
|
|
@@ -7406,10 +7462,12 @@ interface PcbComponentOutsideBoardError {
|
|
|
7406
7462
|
}
|
|
7407
7463
|
|
|
7408
7464
|
declare const pcb_component_invalid_layer_error: z.ZodObject<{
|
|
7465
|
+
message: z.ZodString;
|
|
7466
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
7467
|
+
} & {
|
|
7409
7468
|
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
7410
7469
|
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7411
7470
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
|
|
7412
|
-
message: z.ZodString;
|
|
7413
7471
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
7414
7472
|
source_component_id: z.ZodString;
|
|
7415
7473
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -7431,6 +7489,7 @@ declare const pcb_component_invalid_layer_error: z.ZodObject<{
|
|
|
7431
7489
|
pcb_component_invalid_layer_error_id: string;
|
|
7432
7490
|
pcb_component_id?: string | undefined;
|
|
7433
7491
|
subcircuit_id?: string | undefined;
|
|
7492
|
+
is_fatal?: boolean | undefined;
|
|
7434
7493
|
}, {
|
|
7435
7494
|
message: string;
|
|
7436
7495
|
type: "pcb_component_invalid_layer_error";
|
|
@@ -7441,15 +7500,15 @@ declare const pcb_component_invalid_layer_error: z.ZodObject<{
|
|
|
7441
7500
|
pcb_component_id?: string | undefined;
|
|
7442
7501
|
subcircuit_id?: string | undefined;
|
|
7443
7502
|
error_type?: "pcb_component_invalid_layer_error" | undefined;
|
|
7503
|
+
is_fatal?: boolean | undefined;
|
|
7444
7504
|
pcb_component_invalid_layer_error_id?: string | undefined;
|
|
7445
7505
|
}>;
|
|
7446
7506
|
type PcbComponentInvalidLayerErrorInput = z.input<typeof pcb_component_invalid_layer_error>;
|
|
7447
7507
|
/** Error emitted when a component is placed on an invalid layer (components can only be on 'top' or 'bottom' layers) */
|
|
7448
|
-
interface PcbComponentInvalidLayerError {
|
|
7508
|
+
interface PcbComponentInvalidLayerError extends BaseCircuitJsonError {
|
|
7449
7509
|
type: "pcb_component_invalid_layer_error";
|
|
7450
7510
|
pcb_component_invalid_layer_error_id: string;
|
|
7451
7511
|
error_type: "pcb_component_invalid_layer_error";
|
|
7452
|
-
message: string;
|
|
7453
7512
|
pcb_component_id?: string;
|
|
7454
7513
|
source_component_id: string;
|
|
7455
7514
|
layer: LayerRef;
|
|
@@ -7457,10 +7516,12 @@ interface PcbComponentInvalidLayerError {
|
|
|
7457
7516
|
}
|
|
7458
7517
|
|
|
7459
7518
|
declare const pcb_via_clearance_error: z.ZodObject<{
|
|
7519
|
+
message: z.ZodString;
|
|
7520
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
7521
|
+
} & {
|
|
7460
7522
|
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
7461
7523
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7462
7524
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
7463
|
-
message: z.ZodString;
|
|
7464
7525
|
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
7465
7526
|
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7466
7527
|
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7482,6 +7543,7 @@ declare const pcb_via_clearance_error: z.ZodObject<{
|
|
|
7482
7543
|
pcb_error_id: string;
|
|
7483
7544
|
pcb_via_ids: string[];
|
|
7484
7545
|
subcircuit_id?: string | undefined;
|
|
7546
|
+
is_fatal?: boolean | undefined;
|
|
7485
7547
|
minimum_clearance?: number | undefined;
|
|
7486
7548
|
actual_clearance?: number | undefined;
|
|
7487
7549
|
pcb_center?: {
|
|
@@ -7494,6 +7556,7 @@ declare const pcb_via_clearance_error: z.ZodObject<{
|
|
|
7494
7556
|
pcb_via_ids: string[];
|
|
7495
7557
|
subcircuit_id?: string | undefined;
|
|
7496
7558
|
error_type?: "pcb_via_clearance_error" | undefined;
|
|
7559
|
+
is_fatal?: boolean | undefined;
|
|
7497
7560
|
pcb_error_id?: string | undefined;
|
|
7498
7561
|
minimum_clearance?: string | number | undefined;
|
|
7499
7562
|
actual_clearance?: string | number | undefined;
|
|
@@ -7504,11 +7567,10 @@ declare const pcb_via_clearance_error: z.ZodObject<{
|
|
|
7504
7567
|
}>;
|
|
7505
7568
|
type PcbViaClearanceErrorInput = z.input<typeof pcb_via_clearance_error>;
|
|
7506
7569
|
/** Error emitted when vias are closer than the allowed clearance */
|
|
7507
|
-
interface PcbViaClearanceError {
|
|
7570
|
+
interface PcbViaClearanceError extends BaseCircuitJsonError {
|
|
7508
7571
|
type: "pcb_via_clearance_error";
|
|
7509
7572
|
pcb_error_id: string;
|
|
7510
7573
|
error_type: "pcb_via_clearance_error";
|
|
7511
|
-
message: string;
|
|
7512
7574
|
pcb_via_ids: string[];
|
|
7513
7575
|
minimum_clearance?: Distance;
|
|
7514
7576
|
actual_clearance?: Distance;
|
|
@@ -8971,18 +9033,19 @@ declare const schematic_net_label: z.ZodObject<{
|
|
|
8971
9033
|
type SchematicNetLabelInput = z.input<typeof schematic_net_label>;
|
|
8972
9034
|
type InferredSchematicNetLabel = z.infer<typeof schematic_net_label>;
|
|
8973
9035
|
|
|
8974
|
-
interface SchematicError {
|
|
9036
|
+
interface SchematicError extends BaseCircuitJsonError {
|
|
8975
9037
|
type: "schematic_error";
|
|
8976
9038
|
schematic_error_id: string;
|
|
8977
9039
|
error_type: "schematic_port_not_found";
|
|
8978
|
-
message: string;
|
|
8979
9040
|
subcircuit_id?: string;
|
|
8980
9041
|
}
|
|
8981
9042
|
declare const schematic_error: z.ZodObject<{
|
|
9043
|
+
message: z.ZodString;
|
|
9044
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
9045
|
+
} & {
|
|
8982
9046
|
type: z.ZodLiteral<"schematic_error">;
|
|
8983
9047
|
schematic_error_id: z.ZodString;
|
|
8984
9048
|
error_type: z.ZodDefault<z.ZodLiteral<"schematic_port_not_found">>;
|
|
8985
|
-
message: z.ZodString;
|
|
8986
9049
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8987
9050
|
}, "strip", z.ZodTypeAny, {
|
|
8988
9051
|
message: string;
|
|
@@ -8990,20 +9053,24 @@ declare const schematic_error: z.ZodObject<{
|
|
|
8990
9053
|
error_type: "schematic_port_not_found";
|
|
8991
9054
|
schematic_error_id: string;
|
|
8992
9055
|
subcircuit_id?: string | undefined;
|
|
9056
|
+
is_fatal?: boolean | undefined;
|
|
8993
9057
|
}, {
|
|
8994
9058
|
message: string;
|
|
8995
9059
|
type: "schematic_error";
|
|
8996
9060
|
schematic_error_id: string;
|
|
8997
9061
|
subcircuit_id?: string | undefined;
|
|
8998
9062
|
error_type?: "schematic_port_not_found" | undefined;
|
|
9063
|
+
is_fatal?: boolean | undefined;
|
|
8999
9064
|
}>;
|
|
9000
9065
|
type SchematicErrorInput = z.input<typeof schematic_error>;
|
|
9001
9066
|
|
|
9002
9067
|
declare const schematic_layout_error: z.ZodObject<{
|
|
9068
|
+
message: z.ZodString;
|
|
9069
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
9070
|
+
} & {
|
|
9003
9071
|
type: z.ZodLiteral<"schematic_layout_error">;
|
|
9004
9072
|
schematic_layout_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9005
9073
|
error_type: z.ZodDefault<z.ZodLiteral<"schematic_layout_error">>;
|
|
9006
|
-
message: z.ZodString;
|
|
9007
9074
|
source_group_id: z.ZodString;
|
|
9008
9075
|
schematic_group_id: z.ZodString;
|
|
9009
9076
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -9015,6 +9082,7 @@ declare const schematic_layout_error: z.ZodObject<{
|
|
|
9015
9082
|
schematic_group_id: string;
|
|
9016
9083
|
schematic_layout_error_id: string;
|
|
9017
9084
|
subcircuit_id?: string | undefined;
|
|
9085
|
+
is_fatal?: boolean | undefined;
|
|
9018
9086
|
}, {
|
|
9019
9087
|
message: string;
|
|
9020
9088
|
type: "schematic_layout_error";
|
|
@@ -9022,14 +9090,14 @@ declare const schematic_layout_error: z.ZodObject<{
|
|
|
9022
9090
|
schematic_group_id: string;
|
|
9023
9091
|
subcircuit_id?: string | undefined;
|
|
9024
9092
|
error_type?: "schematic_layout_error" | undefined;
|
|
9093
|
+
is_fatal?: boolean | undefined;
|
|
9025
9094
|
schematic_layout_error_id?: string | undefined;
|
|
9026
9095
|
}>;
|
|
9027
9096
|
type SchematicLayoutErrorInput = z.input<typeof schematic_layout_error>;
|
|
9028
|
-
interface SchematicLayoutError {
|
|
9097
|
+
interface SchematicLayoutError extends BaseCircuitJsonError {
|
|
9029
9098
|
type: "schematic_layout_error";
|
|
9030
9099
|
schematic_layout_error_id: string;
|
|
9031
9100
|
error_type: "schematic_layout_error";
|
|
9032
|
-
message: string;
|
|
9033
9101
|
source_group_id: string;
|
|
9034
9102
|
schematic_group_id: string;
|
|
9035
9103
|
subcircuit_id?: string;
|
|
@@ -10275,10 +10343,12 @@ interface SimulationVoltageProbe {
|
|
|
10275
10343
|
}
|
|
10276
10344
|
|
|
10277
10345
|
declare const simulation_unknown_experiment_error: z.ZodObject<{
|
|
10346
|
+
message: z.ZodString;
|
|
10347
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
10348
|
+
} & {
|
|
10278
10349
|
type: z.ZodLiteral<"simulation_unknown_experiment_error">;
|
|
10279
10350
|
simulation_unknown_experiment_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10280
10351
|
error_type: z.ZodDefault<z.ZodLiteral<"simulation_unknown_experiment_error">>;
|
|
10281
|
-
message: z.ZodString;
|
|
10282
10352
|
simulation_experiment_id: z.ZodOptional<z.ZodString>;
|
|
10283
10353
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10284
10354
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10287,12 +10357,14 @@ declare const simulation_unknown_experiment_error: z.ZodObject<{
|
|
|
10287
10357
|
error_type: "simulation_unknown_experiment_error";
|
|
10288
10358
|
simulation_unknown_experiment_error_id: string;
|
|
10289
10359
|
subcircuit_id?: string | undefined;
|
|
10360
|
+
is_fatal?: boolean | undefined;
|
|
10290
10361
|
simulation_experiment_id?: string | undefined;
|
|
10291
10362
|
}, {
|
|
10292
10363
|
message: string;
|
|
10293
10364
|
type: "simulation_unknown_experiment_error";
|
|
10294
10365
|
subcircuit_id?: string | undefined;
|
|
10295
10366
|
error_type?: "simulation_unknown_experiment_error" | undefined;
|
|
10367
|
+
is_fatal?: boolean | undefined;
|
|
10296
10368
|
simulation_experiment_id?: string | undefined;
|
|
10297
10369
|
simulation_unknown_experiment_error_id?: string | undefined;
|
|
10298
10370
|
}>;
|
|
@@ -10300,11 +10372,10 @@ type SimulationUnknownExperimentErrorInput = z.input<typeof simulation_unknown_e
|
|
|
10300
10372
|
/**
|
|
10301
10373
|
* An unknown error occurred during the simulation experiment.
|
|
10302
10374
|
*/
|
|
10303
|
-
interface SimulationUnknownExperimentError {
|
|
10375
|
+
interface SimulationUnknownExperimentError extends BaseCircuitJsonError {
|
|
10304
10376
|
type: "simulation_unknown_experiment_error";
|
|
10305
10377
|
simulation_unknown_experiment_error_id: string;
|
|
10306
10378
|
error_type: "simulation_unknown_experiment_error";
|
|
10307
|
-
message: string;
|
|
10308
10379
|
simulation_experiment_id?: string;
|
|
10309
10380
|
subcircuit_id?: string;
|
|
10310
10381
|
}
|
|
@@ -11664,13 +11735,15 @@ declare const source_project_metadata: z.ZodObject<{
|
|
|
11664
11735
|
type InferredProjectMetadata = z.infer<typeof source_project_metadata>;
|
|
11665
11736
|
|
|
11666
11737
|
declare const source_missing_property_error: z.ZodObject<{
|
|
11738
|
+
message: z.ZodString;
|
|
11739
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11740
|
+
} & {
|
|
11667
11741
|
type: z.ZodLiteral<"source_missing_property_error">;
|
|
11668
11742
|
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11669
11743
|
source_component_id: z.ZodString;
|
|
11670
11744
|
property_name: z.ZodString;
|
|
11671
11745
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11672
11746
|
error_type: z.ZodDefault<z.ZodLiteral<"source_missing_property_error">>;
|
|
11673
|
-
message: z.ZodString;
|
|
11674
11747
|
}, "strip", z.ZodTypeAny, {
|
|
11675
11748
|
message: string;
|
|
11676
11749
|
type: "source_missing_property_error";
|
|
@@ -11679,6 +11752,7 @@ declare const source_missing_property_error: z.ZodObject<{
|
|
|
11679
11752
|
source_missing_property_error_id: string;
|
|
11680
11753
|
property_name: string;
|
|
11681
11754
|
subcircuit_id?: string | undefined;
|
|
11755
|
+
is_fatal?: boolean | undefined;
|
|
11682
11756
|
}, {
|
|
11683
11757
|
message: string;
|
|
11684
11758
|
type: "source_missing_property_error";
|
|
@@ -11686,30 +11760,32 @@ declare const source_missing_property_error: z.ZodObject<{
|
|
|
11686
11760
|
property_name: string;
|
|
11687
11761
|
subcircuit_id?: string | undefined;
|
|
11688
11762
|
error_type?: "source_missing_property_error" | undefined;
|
|
11763
|
+
is_fatal?: boolean | undefined;
|
|
11689
11764
|
source_missing_property_error_id?: string | undefined;
|
|
11690
11765
|
}>;
|
|
11691
11766
|
type SourceMissingPropertyErrorInput = z.input<typeof source_missing_property_error>;
|
|
11692
11767
|
/**
|
|
11693
11768
|
* The source code is missing a property
|
|
11694
11769
|
*/
|
|
11695
|
-
interface SourceMissingPropertyError {
|
|
11770
|
+
interface SourceMissingPropertyError extends BaseCircuitJsonError {
|
|
11696
11771
|
type: "source_missing_property_error";
|
|
11697
11772
|
source_missing_property_error_id: string;
|
|
11698
11773
|
source_component_id: string;
|
|
11699
11774
|
property_name: string;
|
|
11700
11775
|
subcircuit_id?: string;
|
|
11701
11776
|
error_type: "source_missing_property_error";
|
|
11702
|
-
message: string;
|
|
11703
11777
|
}
|
|
11704
11778
|
|
|
11705
11779
|
declare const source_failed_to_create_component_error: z.ZodObject<{
|
|
11780
|
+
message: z.ZodString;
|
|
11781
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11782
|
+
} & {
|
|
11706
11783
|
type: z.ZodLiteral<"source_failed_to_create_component_error">;
|
|
11707
11784
|
source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11708
11785
|
error_type: z.ZodDefault<z.ZodLiteral<"source_failed_to_create_component_error">>;
|
|
11709
11786
|
component_name: z.ZodOptional<z.ZodString>;
|
|
11710
11787
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11711
11788
|
parent_source_component_id: z.ZodOptional<z.ZodString>;
|
|
11712
|
-
message: z.ZodString;
|
|
11713
11789
|
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
11714
11790
|
x: z.ZodOptional<z.ZodNumber>;
|
|
11715
11791
|
y: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11736,6 +11812,7 @@ declare const source_failed_to_create_component_error: z.ZodObject<{
|
|
|
11736
11812
|
error_type: "source_failed_to_create_component_error";
|
|
11737
11813
|
source_failed_to_create_component_error_id: string;
|
|
11738
11814
|
subcircuit_id?: string | undefined;
|
|
11815
|
+
is_fatal?: boolean | undefined;
|
|
11739
11816
|
pcb_center?: {
|
|
11740
11817
|
x?: number | undefined;
|
|
11741
11818
|
y?: number | undefined;
|
|
@@ -11751,6 +11828,7 @@ declare const source_failed_to_create_component_error: z.ZodObject<{
|
|
|
11751
11828
|
type: "source_failed_to_create_component_error";
|
|
11752
11829
|
subcircuit_id?: string | undefined;
|
|
11753
11830
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
11831
|
+
is_fatal?: boolean | undefined;
|
|
11754
11832
|
pcb_center?: {
|
|
11755
11833
|
x?: number | undefined;
|
|
11756
11834
|
y?: number | undefined;
|
|
@@ -11768,11 +11846,10 @@ type SourceFailedToCreateComponentErrorInput = z.input<typeof source_failed_to_c
|
|
|
11768
11846
|
* Error emitted when a component fails to be constructed.
|
|
11769
11847
|
* Contains details about the failure and prevents the component from being rendered.
|
|
11770
11848
|
*/
|
|
11771
|
-
interface SourceFailedToCreateComponentError {
|
|
11849
|
+
interface SourceFailedToCreateComponentError extends BaseCircuitJsonError {
|
|
11772
11850
|
type: "source_failed_to_create_component_error";
|
|
11773
11851
|
source_failed_to_create_component_error_id: string;
|
|
11774
11852
|
error_type: "source_failed_to_create_component_error";
|
|
11775
|
-
message: string;
|
|
11776
11853
|
component_name?: string;
|
|
11777
11854
|
subcircuit_id?: string;
|
|
11778
11855
|
parent_source_component_id?: string;
|
|
@@ -11787,10 +11864,12 @@ interface SourceFailedToCreateComponentError {
|
|
|
11787
11864
|
}
|
|
11788
11865
|
|
|
11789
11866
|
declare const source_trace_not_connected_error: z.ZodObject<{
|
|
11867
|
+
message: z.ZodString;
|
|
11868
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11869
|
+
} & {
|
|
11790
11870
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
11791
11871
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11792
11872
|
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
|
|
11793
|
-
message: z.ZodString;
|
|
11794
11873
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11795
11874
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11796
11875
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
@@ -11803,6 +11882,7 @@ declare const source_trace_not_connected_error: z.ZodObject<{
|
|
|
11803
11882
|
source_trace_not_connected_error_id: string;
|
|
11804
11883
|
subcircuit_id?: string | undefined;
|
|
11805
11884
|
source_trace_id?: string | undefined;
|
|
11885
|
+
is_fatal?: boolean | undefined;
|
|
11806
11886
|
source_group_id?: string | undefined;
|
|
11807
11887
|
connected_source_port_ids?: string[] | undefined;
|
|
11808
11888
|
selectors_not_found?: string[] | undefined;
|
|
@@ -11812,6 +11892,7 @@ declare const source_trace_not_connected_error: z.ZodObject<{
|
|
|
11812
11892
|
subcircuit_id?: string | undefined;
|
|
11813
11893
|
source_trace_id?: string | undefined;
|
|
11814
11894
|
error_type?: "source_trace_not_connected_error" | undefined;
|
|
11895
|
+
is_fatal?: boolean | undefined;
|
|
11815
11896
|
source_group_id?: string | undefined;
|
|
11816
11897
|
source_trace_not_connected_error_id?: string | undefined;
|
|
11817
11898
|
connected_source_port_ids?: string[] | undefined;
|
|
@@ -11821,11 +11902,10 @@ type SourceTraceNotConnectedErrorInput = z.input<typeof source_trace_not_connect
|
|
|
11821
11902
|
/**
|
|
11822
11903
|
* Occurs when a source trace selector does not match any ports
|
|
11823
11904
|
*/
|
|
11824
|
-
interface SourceTraceNotConnectedError {
|
|
11905
|
+
interface SourceTraceNotConnectedError extends BaseCircuitJsonError {
|
|
11825
11906
|
type: "source_trace_not_connected_error";
|
|
11826
11907
|
source_trace_not_connected_error_id: string;
|
|
11827
11908
|
error_type: "source_trace_not_connected_error";
|
|
11828
|
-
message: string;
|
|
11829
11909
|
subcircuit_id?: string;
|
|
11830
11910
|
source_group_id?: string;
|
|
11831
11911
|
source_trace_id?: string;
|
|
@@ -13142,13 +13222,15 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13142
13222
|
project_url?: string | undefined;
|
|
13143
13223
|
created_at?: string | undefined;
|
|
13144
13224
|
}>, z.ZodObject<{
|
|
13225
|
+
message: z.ZodString;
|
|
13226
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
13227
|
+
} & {
|
|
13145
13228
|
type: z.ZodLiteral<"source_missing_property_error">;
|
|
13146
13229
|
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13147
13230
|
source_component_id: z.ZodString;
|
|
13148
13231
|
property_name: z.ZodString;
|
|
13149
13232
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13150
13233
|
error_type: z.ZodDefault<z.ZodLiteral<"source_missing_property_error">>;
|
|
13151
|
-
message: z.ZodString;
|
|
13152
13234
|
}, "strip", z.ZodTypeAny, {
|
|
13153
13235
|
message: string;
|
|
13154
13236
|
type: "source_missing_property_error";
|
|
@@ -13157,6 +13239,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13157
13239
|
source_missing_property_error_id: string;
|
|
13158
13240
|
property_name: string;
|
|
13159
13241
|
subcircuit_id?: string | undefined;
|
|
13242
|
+
is_fatal?: boolean | undefined;
|
|
13160
13243
|
}, {
|
|
13161
13244
|
message: string;
|
|
13162
13245
|
type: "source_missing_property_error";
|
|
@@ -13164,15 +13247,18 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13164
13247
|
property_name: string;
|
|
13165
13248
|
subcircuit_id?: string | undefined;
|
|
13166
13249
|
error_type?: "source_missing_property_error" | undefined;
|
|
13250
|
+
is_fatal?: boolean | undefined;
|
|
13167
13251
|
source_missing_property_error_id?: string | undefined;
|
|
13168
13252
|
}>, z.ZodObject<{
|
|
13253
|
+
message: z.ZodString;
|
|
13254
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
13255
|
+
} & {
|
|
13169
13256
|
type: z.ZodLiteral<"source_failed_to_create_component_error">;
|
|
13170
13257
|
source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13171
13258
|
error_type: z.ZodDefault<z.ZodLiteral<"source_failed_to_create_component_error">>;
|
|
13172
13259
|
component_name: z.ZodOptional<z.ZodString>;
|
|
13173
13260
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13174
13261
|
parent_source_component_id: z.ZodOptional<z.ZodString>;
|
|
13175
|
-
message: z.ZodString;
|
|
13176
13262
|
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
13177
13263
|
x: z.ZodOptional<z.ZodNumber>;
|
|
13178
13264
|
y: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13199,6 +13285,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13199
13285
|
error_type: "source_failed_to_create_component_error";
|
|
13200
13286
|
source_failed_to_create_component_error_id: string;
|
|
13201
13287
|
subcircuit_id?: string | undefined;
|
|
13288
|
+
is_fatal?: boolean | undefined;
|
|
13202
13289
|
pcb_center?: {
|
|
13203
13290
|
x?: number | undefined;
|
|
13204
13291
|
y?: number | undefined;
|
|
@@ -13214,6 +13301,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13214
13301
|
type: "source_failed_to_create_component_error";
|
|
13215
13302
|
subcircuit_id?: string | undefined;
|
|
13216
13303
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
13304
|
+
is_fatal?: boolean | undefined;
|
|
13217
13305
|
pcb_center?: {
|
|
13218
13306
|
x?: number | undefined;
|
|
13219
13307
|
y?: number | undefined;
|
|
@@ -13226,10 +13314,12 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13226
13314
|
y?: number | undefined;
|
|
13227
13315
|
} | undefined;
|
|
13228
13316
|
}>, z.ZodObject<{
|
|
13317
|
+
message: z.ZodString;
|
|
13318
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
13319
|
+
} & {
|
|
13229
13320
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
13230
13321
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13231
13322
|
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
|
|
13232
|
-
message: z.ZodString;
|
|
13233
13323
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13234
13324
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13235
13325
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
@@ -13242,6 +13332,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13242
13332
|
source_trace_not_connected_error_id: string;
|
|
13243
13333
|
subcircuit_id?: string | undefined;
|
|
13244
13334
|
source_trace_id?: string | undefined;
|
|
13335
|
+
is_fatal?: boolean | undefined;
|
|
13245
13336
|
source_group_id?: string | undefined;
|
|
13246
13337
|
connected_source_port_ids?: string[] | undefined;
|
|
13247
13338
|
selectors_not_found?: string[] | undefined;
|
|
@@ -13251,6 +13342,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13251
13342
|
subcircuit_id?: string | undefined;
|
|
13252
13343
|
source_trace_id?: string | undefined;
|
|
13253
13344
|
error_type?: "source_trace_not_connected_error" | undefined;
|
|
13345
|
+
is_fatal?: boolean | undefined;
|
|
13254
13346
|
source_group_id?: string | undefined;
|
|
13255
13347
|
source_trace_not_connected_error_id?: string | undefined;
|
|
13256
13348
|
connected_source_port_ids?: string[] | undefined;
|
|
@@ -13625,10 +13717,12 @@ interface SourceManuallyPlacedVia {
|
|
|
13625
13717
|
}
|
|
13626
13718
|
|
|
13627
13719
|
declare const source_pin_must_be_connected_error: z.ZodObject<{
|
|
13720
|
+
message: z.ZodString;
|
|
13721
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
13722
|
+
} & {
|
|
13628
13723
|
type: z.ZodLiteral<"source_pin_must_be_connected_error">;
|
|
13629
13724
|
source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13630
13725
|
error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
|
|
13631
|
-
message: z.ZodString;
|
|
13632
13726
|
source_component_id: z.ZodString;
|
|
13633
13727
|
source_port_id: z.ZodString;
|
|
13634
13728
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -13640,6 +13734,7 @@ declare const source_pin_must_be_connected_error: z.ZodObject<{
|
|
|
13640
13734
|
error_type: "source_pin_must_be_connected_error";
|
|
13641
13735
|
source_pin_must_be_connected_error_id: string;
|
|
13642
13736
|
subcircuit_id?: string | undefined;
|
|
13737
|
+
is_fatal?: boolean | undefined;
|
|
13643
13738
|
}, {
|
|
13644
13739
|
message: string;
|
|
13645
13740
|
type: "source_pin_must_be_connected_error";
|
|
@@ -13647,27 +13742,29 @@ declare const source_pin_must_be_connected_error: z.ZodObject<{
|
|
|
13647
13742
|
source_port_id: string;
|
|
13648
13743
|
subcircuit_id?: string | undefined;
|
|
13649
13744
|
error_type?: "source_pin_must_be_connected_error" | undefined;
|
|
13745
|
+
is_fatal?: boolean | undefined;
|
|
13650
13746
|
source_pin_must_be_connected_error_id?: string | undefined;
|
|
13651
13747
|
}>;
|
|
13652
13748
|
type SourcePinMustBeConnectedErrorInput = z.input<typeof source_pin_must_be_connected_error>;
|
|
13653
13749
|
/**
|
|
13654
13750
|
* Error emitted when a pin with mustBeConnected attribute is not connected to any trace
|
|
13655
13751
|
*/
|
|
13656
|
-
interface SourcePinMustBeConnectedError {
|
|
13752
|
+
interface SourcePinMustBeConnectedError extends BaseCircuitJsonError {
|
|
13657
13753
|
type: "source_pin_must_be_connected_error";
|
|
13658
13754
|
source_pin_must_be_connected_error_id: string;
|
|
13659
13755
|
error_type: "source_pin_must_be_connected_error";
|
|
13660
|
-
message: string;
|
|
13661
13756
|
source_component_id: string;
|
|
13662
13757
|
source_port_id: string;
|
|
13663
13758
|
subcircuit_id?: string;
|
|
13664
13759
|
}
|
|
13665
13760
|
|
|
13666
13761
|
declare const unknown_error_finding_part: z.ZodObject<{
|
|
13762
|
+
message: z.ZodString;
|
|
13763
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
13764
|
+
} & {
|
|
13667
13765
|
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
13668
13766
|
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13669
13767
|
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
13670
|
-
message: z.ZodString;
|
|
13671
13768
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
13672
13769
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13673
13770
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13677,12 +13774,14 @@ declare const unknown_error_finding_part: z.ZodObject<{
|
|
|
13677
13774
|
unknown_error_finding_part_id: string;
|
|
13678
13775
|
source_component_id?: string | undefined;
|
|
13679
13776
|
subcircuit_id?: string | undefined;
|
|
13777
|
+
is_fatal?: boolean | undefined;
|
|
13680
13778
|
}, {
|
|
13681
13779
|
message: string;
|
|
13682
13780
|
type: "unknown_error_finding_part";
|
|
13683
13781
|
source_component_id?: string | undefined;
|
|
13684
13782
|
subcircuit_id?: string | undefined;
|
|
13685
13783
|
error_type?: "unknown_error_finding_part" | undefined;
|
|
13784
|
+
is_fatal?: boolean | undefined;
|
|
13686
13785
|
unknown_error_finding_part_id?: string | undefined;
|
|
13687
13786
|
}>;
|
|
13688
13787
|
type UnknownErrorFindingPartInput = z.input<typeof unknown_error_finding_part>;
|
|
@@ -13691,11 +13790,10 @@ type UnknownErrorFindingPartInput = z.input<typeof unknown_error_finding_part>;
|
|
|
13691
13790
|
* This includes cases where the API returns HTML instead of JSON,
|
|
13692
13791
|
* network failures, or other unexpected responses.
|
|
13693
13792
|
*/
|
|
13694
|
-
interface UnknownErrorFindingPart {
|
|
13793
|
+
interface UnknownErrorFindingPart extends BaseCircuitJsonError {
|
|
13695
13794
|
type: "unknown_error_finding_part";
|
|
13696
13795
|
unknown_error_finding_part_id: string;
|
|
13697
13796
|
error_type: "unknown_error_finding_part";
|
|
13698
|
-
message: string;
|
|
13699
13797
|
source_component_id?: string;
|
|
13700
13798
|
subcircuit_id?: string;
|
|
13701
13799
|
}
|
|
@@ -15083,13 +15181,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15083
15181
|
project_url?: string | undefined;
|
|
15084
15182
|
created_at?: string | undefined;
|
|
15085
15183
|
}>, z.ZodObject<{
|
|
15184
|
+
message: z.ZodString;
|
|
15185
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
15186
|
+
} & {
|
|
15086
15187
|
type: z.ZodLiteral<"source_missing_property_error">;
|
|
15087
15188
|
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15088
15189
|
source_component_id: z.ZodString;
|
|
15089
15190
|
property_name: z.ZodString;
|
|
15090
15191
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15091
15192
|
error_type: z.ZodDefault<z.ZodLiteral<"source_missing_property_error">>;
|
|
15092
|
-
message: z.ZodString;
|
|
15093
15193
|
}, "strip", z.ZodTypeAny, {
|
|
15094
15194
|
message: string;
|
|
15095
15195
|
type: "source_missing_property_error";
|
|
@@ -15098,6 +15198,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15098
15198
|
source_missing_property_error_id: string;
|
|
15099
15199
|
property_name: string;
|
|
15100
15200
|
subcircuit_id?: string | undefined;
|
|
15201
|
+
is_fatal?: boolean | undefined;
|
|
15101
15202
|
}, {
|
|
15102
15203
|
message: string;
|
|
15103
15204
|
type: "source_missing_property_error";
|
|
@@ -15105,15 +15206,18 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15105
15206
|
property_name: string;
|
|
15106
15207
|
subcircuit_id?: string | undefined;
|
|
15107
15208
|
error_type?: "source_missing_property_error" | undefined;
|
|
15209
|
+
is_fatal?: boolean | undefined;
|
|
15108
15210
|
source_missing_property_error_id?: string | undefined;
|
|
15109
15211
|
}>, z.ZodObject<{
|
|
15212
|
+
message: z.ZodString;
|
|
15213
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
15214
|
+
} & {
|
|
15110
15215
|
type: z.ZodLiteral<"source_failed_to_create_component_error">;
|
|
15111
15216
|
source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15112
15217
|
error_type: z.ZodDefault<z.ZodLiteral<"source_failed_to_create_component_error">>;
|
|
15113
15218
|
component_name: z.ZodOptional<z.ZodString>;
|
|
15114
15219
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15115
15220
|
parent_source_component_id: z.ZodOptional<z.ZodString>;
|
|
15116
|
-
message: z.ZodString;
|
|
15117
15221
|
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
15118
15222
|
x: z.ZodOptional<z.ZodNumber>;
|
|
15119
15223
|
y: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15140,6 +15244,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15140
15244
|
error_type: "source_failed_to_create_component_error";
|
|
15141
15245
|
source_failed_to_create_component_error_id: string;
|
|
15142
15246
|
subcircuit_id?: string | undefined;
|
|
15247
|
+
is_fatal?: boolean | undefined;
|
|
15143
15248
|
pcb_center?: {
|
|
15144
15249
|
x?: number | undefined;
|
|
15145
15250
|
y?: number | undefined;
|
|
@@ -15155,6 +15260,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15155
15260
|
type: "source_failed_to_create_component_error";
|
|
15156
15261
|
subcircuit_id?: string | undefined;
|
|
15157
15262
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
15263
|
+
is_fatal?: boolean | undefined;
|
|
15158
15264
|
pcb_center?: {
|
|
15159
15265
|
x?: number | undefined;
|
|
15160
15266
|
y?: number | undefined;
|
|
@@ -15167,10 +15273,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15167
15273
|
y?: number | undefined;
|
|
15168
15274
|
} | undefined;
|
|
15169
15275
|
}>, z.ZodObject<{
|
|
15276
|
+
message: z.ZodString;
|
|
15277
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
15278
|
+
} & {
|
|
15170
15279
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
15171
15280
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15172
15281
|
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
|
|
15173
|
-
message: z.ZodString;
|
|
15174
15282
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15175
15283
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
15176
15284
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
@@ -15183,6 +15291,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15183
15291
|
source_trace_not_connected_error_id: string;
|
|
15184
15292
|
subcircuit_id?: string | undefined;
|
|
15185
15293
|
source_trace_id?: string | undefined;
|
|
15294
|
+
is_fatal?: boolean | undefined;
|
|
15186
15295
|
source_group_id?: string | undefined;
|
|
15187
15296
|
connected_source_port_ids?: string[] | undefined;
|
|
15188
15297
|
selectors_not_found?: string[] | undefined;
|
|
@@ -15192,6 +15301,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15192
15301
|
subcircuit_id?: string | undefined;
|
|
15193
15302
|
source_trace_id?: string | undefined;
|
|
15194
15303
|
error_type?: "source_trace_not_connected_error" | undefined;
|
|
15304
|
+
is_fatal?: boolean | undefined;
|
|
15195
15305
|
source_group_id?: string | undefined;
|
|
15196
15306
|
source_trace_not_connected_error_id?: string | undefined;
|
|
15197
15307
|
connected_source_port_ids?: string[] | undefined;
|
|
@@ -16187,10 +16297,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16187
16297
|
project_url?: string | undefined;
|
|
16188
16298
|
created_at?: string | undefined;
|
|
16189
16299
|
}>, z.ZodObject<{
|
|
16300
|
+
message: z.ZodString;
|
|
16301
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
16302
|
+
} & {
|
|
16190
16303
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
16191
16304
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16192
16305
|
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
|
|
16193
|
-
message: z.ZodString;
|
|
16194
16306
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16195
16307
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
16196
16308
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
@@ -16203,6 +16315,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16203
16315
|
source_trace_not_connected_error_id: string;
|
|
16204
16316
|
subcircuit_id?: string | undefined;
|
|
16205
16317
|
source_trace_id?: string | undefined;
|
|
16318
|
+
is_fatal?: boolean | undefined;
|
|
16206
16319
|
source_group_id?: string | undefined;
|
|
16207
16320
|
connected_source_port_ids?: string[] | undefined;
|
|
16208
16321
|
selectors_not_found?: string[] | undefined;
|
|
@@ -16212,6 +16325,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16212
16325
|
subcircuit_id?: string | undefined;
|
|
16213
16326
|
source_trace_id?: string | undefined;
|
|
16214
16327
|
error_type?: "source_trace_not_connected_error" | undefined;
|
|
16328
|
+
is_fatal?: boolean | undefined;
|
|
16215
16329
|
source_group_id?: string | undefined;
|
|
16216
16330
|
source_trace_not_connected_error_id?: string | undefined;
|
|
16217
16331
|
connected_source_port_ids?: string[] | undefined;
|
|
@@ -16241,10 +16355,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16241
16355
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
16242
16356
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
16243
16357
|
}>, z.ZodObject<{
|
|
16358
|
+
message: z.ZodString;
|
|
16359
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
16360
|
+
} & {
|
|
16244
16361
|
type: z.ZodLiteral<"source_pin_must_be_connected_error">;
|
|
16245
16362
|
source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16246
16363
|
error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
|
|
16247
|
-
message: z.ZodString;
|
|
16248
16364
|
source_component_id: z.ZodString;
|
|
16249
16365
|
source_port_id: z.ZodString;
|
|
16250
16366
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -16256,6 +16372,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16256
16372
|
error_type: "source_pin_must_be_connected_error";
|
|
16257
16373
|
source_pin_must_be_connected_error_id: string;
|
|
16258
16374
|
subcircuit_id?: string | undefined;
|
|
16375
|
+
is_fatal?: boolean | undefined;
|
|
16259
16376
|
}, {
|
|
16260
16377
|
message: string;
|
|
16261
16378
|
type: "source_pin_must_be_connected_error";
|
|
@@ -16263,12 +16380,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16263
16380
|
source_port_id: string;
|
|
16264
16381
|
subcircuit_id?: string | undefined;
|
|
16265
16382
|
error_type?: "source_pin_must_be_connected_error" | undefined;
|
|
16383
|
+
is_fatal?: boolean | undefined;
|
|
16266
16384
|
source_pin_must_be_connected_error_id?: string | undefined;
|
|
16267
16385
|
}>, z.ZodObject<{
|
|
16386
|
+
message: z.ZodString;
|
|
16387
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
16388
|
+
} & {
|
|
16268
16389
|
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
16269
16390
|
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16270
16391
|
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
16271
|
-
message: z.ZodString;
|
|
16272
16392
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
16273
16393
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16274
16394
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16278,12 +16398,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16278
16398
|
unknown_error_finding_part_id: string;
|
|
16279
16399
|
source_component_id?: string | undefined;
|
|
16280
16400
|
subcircuit_id?: string | undefined;
|
|
16401
|
+
is_fatal?: boolean | undefined;
|
|
16281
16402
|
}, {
|
|
16282
16403
|
message: string;
|
|
16283
16404
|
type: "unknown_error_finding_part";
|
|
16284
16405
|
source_component_id?: string | undefined;
|
|
16285
16406
|
subcircuit_id?: string | undefined;
|
|
16286
16407
|
error_type?: "unknown_error_finding_part" | undefined;
|
|
16408
|
+
is_fatal?: boolean | undefined;
|
|
16287
16409
|
unknown_error_finding_part_id?: string | undefined;
|
|
16288
16410
|
}>, z.ZodObject<{
|
|
16289
16411
|
type: z.ZodLiteral<"pcb_component">;
|
|
@@ -16596,13 +16718,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16596
16718
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
16597
16719
|
soldermask_margin?: number | undefined;
|
|
16598
16720
|
}>]>, z.ZodObject<{
|
|
16721
|
+
message: z.ZodString;
|
|
16722
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
16723
|
+
} & {
|
|
16599
16724
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
16600
16725
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16601
16726
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16602
16727
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16603
16728
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_missing_footprint_error">>;
|
|
16604
16729
|
source_component_id: z.ZodString;
|
|
16605
|
-
message: z.ZodString;
|
|
16606
16730
|
}, "strip", z.ZodTypeAny, {
|
|
16607
16731
|
message: string;
|
|
16608
16732
|
type: "pcb_missing_footprint_error";
|
|
@@ -16611,6 +16735,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16611
16735
|
pcb_missing_footprint_error_id: string;
|
|
16612
16736
|
subcircuit_id?: string | undefined;
|
|
16613
16737
|
pcb_group_id?: string | undefined;
|
|
16738
|
+
is_fatal?: boolean | undefined;
|
|
16614
16739
|
}, {
|
|
16615
16740
|
message: string;
|
|
16616
16741
|
type: "pcb_missing_footprint_error";
|
|
@@ -16618,8 +16743,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16618
16743
|
subcircuit_id?: string | undefined;
|
|
16619
16744
|
pcb_group_id?: string | undefined;
|
|
16620
16745
|
error_type?: "pcb_missing_footprint_error" | undefined;
|
|
16746
|
+
is_fatal?: boolean | undefined;
|
|
16621
16747
|
pcb_missing_footprint_error_id?: string | undefined;
|
|
16622
16748
|
}>, z.ZodObject<{
|
|
16749
|
+
message: z.ZodString;
|
|
16750
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
16751
|
+
} & {
|
|
16623
16752
|
type: z.ZodLiteral<"external_footprint_load_error">;
|
|
16624
16753
|
external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16625
16754
|
pcb_component_id: z.ZodString;
|
|
@@ -16628,7 +16757,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16628
16757
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16629
16758
|
footprinter_string: z.ZodOptional<z.ZodString>;
|
|
16630
16759
|
error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
|
|
16631
|
-
message: z.ZodString;
|
|
16632
16760
|
}, "strip", z.ZodTypeAny, {
|
|
16633
16761
|
message: string;
|
|
16634
16762
|
type: "external_footprint_load_error";
|
|
@@ -16638,6 +16766,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16638
16766
|
external_footprint_load_error_id: string;
|
|
16639
16767
|
subcircuit_id?: string | undefined;
|
|
16640
16768
|
pcb_group_id?: string | undefined;
|
|
16769
|
+
is_fatal?: boolean | undefined;
|
|
16641
16770
|
footprinter_string?: string | undefined;
|
|
16642
16771
|
}, {
|
|
16643
16772
|
message: string;
|
|
@@ -16647,9 +16776,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16647
16776
|
subcircuit_id?: string | undefined;
|
|
16648
16777
|
pcb_group_id?: string | undefined;
|
|
16649
16778
|
error_type?: "external_footprint_load_error" | undefined;
|
|
16779
|
+
is_fatal?: boolean | undefined;
|
|
16650
16780
|
external_footprint_load_error_id?: string | undefined;
|
|
16651
16781
|
footprinter_string?: string | undefined;
|
|
16652
16782
|
}>, z.ZodObject<{
|
|
16783
|
+
message: z.ZodString;
|
|
16784
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
16785
|
+
} & {
|
|
16653
16786
|
type: z.ZodLiteral<"circuit_json_footprint_load_error">;
|
|
16654
16787
|
circuit_json_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16655
16788
|
pcb_component_id: z.ZodString;
|
|
@@ -16657,7 +16790,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16657
16790
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16658
16791
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16659
16792
|
error_type: z.ZodDefault<z.ZodLiteral<"circuit_json_footprint_load_error">>;
|
|
16660
|
-
message: z.ZodString;
|
|
16661
16793
|
circuit_json: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
16662
16794
|
}, "strip", z.ZodTypeAny, {
|
|
16663
16795
|
message: string;
|
|
@@ -16668,6 +16800,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16668
16800
|
circuit_json_footprint_load_error_id: string;
|
|
16669
16801
|
subcircuit_id?: string | undefined;
|
|
16670
16802
|
pcb_group_id?: string | undefined;
|
|
16803
|
+
is_fatal?: boolean | undefined;
|
|
16671
16804
|
circuit_json?: any[] | undefined;
|
|
16672
16805
|
}, {
|
|
16673
16806
|
message: string;
|
|
@@ -16677,6 +16810,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16677
16810
|
subcircuit_id?: string | undefined;
|
|
16678
16811
|
pcb_group_id?: string | undefined;
|
|
16679
16812
|
error_type?: "circuit_json_footprint_load_error" | undefined;
|
|
16813
|
+
is_fatal?: boolean | undefined;
|
|
16680
16814
|
circuit_json_footprint_load_error_id?: string | undefined;
|
|
16681
16815
|
circuit_json?: any[] | undefined;
|
|
16682
16816
|
}>, z.ZodObject<{
|
|
@@ -19060,10 +19194,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19060
19194
|
ccw_rotation?: string | number | undefined;
|
|
19061
19195
|
pcb_silkscreen_oval_id?: string | undefined;
|
|
19062
19196
|
}>, z.ZodObject<{
|
|
19197
|
+
message: z.ZodString;
|
|
19198
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
19199
|
+
} & {
|
|
19063
19200
|
type: z.ZodLiteral<"pcb_trace_error">;
|
|
19064
19201
|
pcb_trace_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19065
19202
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_error">>;
|
|
19066
|
-
message: z.ZodString;
|
|
19067
19203
|
center: z.ZodOptional<z.ZodObject<{
|
|
19068
19204
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19069
19205
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19084,8 +19220,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19084
19220
|
type: "pcb_trace_error";
|
|
19085
19221
|
source_trace_id: string;
|
|
19086
19222
|
pcb_trace_id: string;
|
|
19087
|
-
pcb_trace_error_id: string;
|
|
19088
19223
|
error_type: "pcb_trace_error";
|
|
19224
|
+
pcb_trace_error_id: string;
|
|
19089
19225
|
pcb_component_ids: string[];
|
|
19090
19226
|
pcb_port_ids: string[];
|
|
19091
19227
|
center?: {
|
|
@@ -19093,6 +19229,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19093
19229
|
y: number;
|
|
19094
19230
|
} | undefined;
|
|
19095
19231
|
subcircuit_id?: string | undefined;
|
|
19232
|
+
is_fatal?: boolean | undefined;
|
|
19096
19233
|
}, {
|
|
19097
19234
|
message: string;
|
|
19098
19235
|
type: "pcb_trace_error";
|
|
@@ -19105,13 +19242,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19105
19242
|
y: string | number;
|
|
19106
19243
|
} | undefined;
|
|
19107
19244
|
subcircuit_id?: string | undefined;
|
|
19108
|
-
pcb_trace_error_id?: string | undefined;
|
|
19109
19245
|
error_type?: "pcb_trace_error" | undefined;
|
|
19246
|
+
is_fatal?: boolean | undefined;
|
|
19247
|
+
pcb_trace_error_id?: string | undefined;
|
|
19110
19248
|
}>, z.ZodObject<{
|
|
19249
|
+
message: z.ZodString;
|
|
19250
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
19251
|
+
} & {
|
|
19111
19252
|
type: z.ZodLiteral<"pcb_trace_missing_error">;
|
|
19112
19253
|
pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19113
19254
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
|
|
19114
|
-
message: z.ZodString;
|
|
19115
19255
|
center: z.ZodOptional<z.ZodObject<{
|
|
19116
19256
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19117
19257
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19139,6 +19279,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19139
19279
|
y: number;
|
|
19140
19280
|
} | undefined;
|
|
19141
19281
|
subcircuit_id?: string | undefined;
|
|
19282
|
+
is_fatal?: boolean | undefined;
|
|
19142
19283
|
}, {
|
|
19143
19284
|
message: string;
|
|
19144
19285
|
type: "pcb_trace_missing_error";
|
|
@@ -19151,12 +19292,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19151
19292
|
} | undefined;
|
|
19152
19293
|
subcircuit_id?: string | undefined;
|
|
19153
19294
|
error_type?: "pcb_trace_missing_error" | undefined;
|
|
19295
|
+
is_fatal?: boolean | undefined;
|
|
19154
19296
|
pcb_trace_missing_error_id?: string | undefined;
|
|
19155
19297
|
}>, z.ZodObject<{
|
|
19298
|
+
message: z.ZodString;
|
|
19299
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
19300
|
+
} & {
|
|
19156
19301
|
type: z.ZodLiteral<"pcb_placement_error">;
|
|
19157
19302
|
pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19158
19303
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_placement_error">>;
|
|
19159
|
-
message: z.ZodString;
|
|
19160
19304
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19161
19305
|
}, "strip", z.ZodTypeAny, {
|
|
19162
19306
|
message: string;
|
|
@@ -19164,17 +19308,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19164
19308
|
error_type: "pcb_placement_error";
|
|
19165
19309
|
pcb_placement_error_id: string;
|
|
19166
19310
|
subcircuit_id?: string | undefined;
|
|
19311
|
+
is_fatal?: boolean | undefined;
|
|
19167
19312
|
}, {
|
|
19168
19313
|
message: string;
|
|
19169
19314
|
type: "pcb_placement_error";
|
|
19170
19315
|
subcircuit_id?: string | undefined;
|
|
19171
19316
|
error_type?: "pcb_placement_error" | undefined;
|
|
19317
|
+
is_fatal?: boolean | undefined;
|
|
19172
19318
|
pcb_placement_error_id?: string | undefined;
|
|
19173
19319
|
}>, z.ZodObject<{
|
|
19320
|
+
message: z.ZodString;
|
|
19321
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
19322
|
+
} & {
|
|
19174
19323
|
type: z.ZodLiteral<"pcb_panelization_placement_error">;
|
|
19175
19324
|
pcb_panelization_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19176
19325
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_panelization_placement_error">>;
|
|
19177
|
-
message: z.ZodString;
|
|
19178
19326
|
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
19179
19327
|
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
19180
19328
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -19184,6 +19332,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19184
19332
|
error_type: "pcb_panelization_placement_error";
|
|
19185
19333
|
pcb_panelization_placement_error_id: string;
|
|
19186
19334
|
subcircuit_id?: string | undefined;
|
|
19335
|
+
is_fatal?: boolean | undefined;
|
|
19187
19336
|
pcb_board_id?: string | undefined;
|
|
19188
19337
|
pcb_panel_id?: string | undefined;
|
|
19189
19338
|
}, {
|
|
@@ -19191,14 +19340,17 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19191
19340
|
type: "pcb_panelization_placement_error";
|
|
19192
19341
|
subcircuit_id?: string | undefined;
|
|
19193
19342
|
error_type?: "pcb_panelization_placement_error" | undefined;
|
|
19343
|
+
is_fatal?: boolean | undefined;
|
|
19194
19344
|
pcb_board_id?: string | undefined;
|
|
19195
19345
|
pcb_panel_id?: string | undefined;
|
|
19196
19346
|
pcb_panelization_placement_error_id?: string | undefined;
|
|
19197
19347
|
}>, z.ZodObject<{
|
|
19348
|
+
message: z.ZodString;
|
|
19349
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
19350
|
+
} & {
|
|
19198
19351
|
type: z.ZodLiteral<"pcb_port_not_matched_error">;
|
|
19199
19352
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19200
19353
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_port_not_matched_error">>;
|
|
19201
|
-
message: z.ZodString;
|
|
19202
19354
|
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
19203
19355
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19204
19356
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19208,18 +19360,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19208
19360
|
pcb_component_ids: string[];
|
|
19209
19361
|
pcb_error_id: string;
|
|
19210
19362
|
subcircuit_id?: string | undefined;
|
|
19363
|
+
is_fatal?: boolean | undefined;
|
|
19211
19364
|
}, {
|
|
19212
19365
|
message: string;
|
|
19213
19366
|
type: "pcb_port_not_matched_error";
|
|
19214
19367
|
pcb_component_ids: string[];
|
|
19215
19368
|
subcircuit_id?: string | undefined;
|
|
19216
19369
|
error_type?: "pcb_port_not_matched_error" | undefined;
|
|
19370
|
+
is_fatal?: boolean | undefined;
|
|
19217
19371
|
pcb_error_id?: string | undefined;
|
|
19218
19372
|
}>, z.ZodObject<{
|
|
19373
|
+
message: z.ZodString;
|
|
19374
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
19375
|
+
} & {
|
|
19219
19376
|
type: z.ZodLiteral<"pcb_port_not_connected_error">;
|
|
19220
19377
|
pcb_port_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19221
19378
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_port_not_connected_error">>;
|
|
19222
|
-
message: z.ZodString;
|
|
19223
19379
|
pcb_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
19224
19380
|
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
19225
19381
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -19231,6 +19387,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19231
19387
|
pcb_port_ids: string[];
|
|
19232
19388
|
pcb_port_not_connected_error_id: string;
|
|
19233
19389
|
subcircuit_id?: string | undefined;
|
|
19390
|
+
is_fatal?: boolean | undefined;
|
|
19234
19391
|
}, {
|
|
19235
19392
|
message: string;
|
|
19236
19393
|
type: "pcb_port_not_connected_error";
|
|
@@ -19238,12 +19395,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19238
19395
|
pcb_port_ids: string[];
|
|
19239
19396
|
subcircuit_id?: string | undefined;
|
|
19240
19397
|
error_type?: "pcb_port_not_connected_error" | undefined;
|
|
19398
|
+
is_fatal?: boolean | undefined;
|
|
19241
19399
|
pcb_port_not_connected_error_id?: string | undefined;
|
|
19242
19400
|
}>, z.ZodObject<{
|
|
19401
|
+
message: z.ZodString;
|
|
19402
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
19403
|
+
} & {
|
|
19243
19404
|
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
19244
19405
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19245
19406
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
19246
|
-
message: z.ZodString;
|
|
19247
19407
|
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
19248
19408
|
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19249
19409
|
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -19265,6 +19425,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19265
19425
|
pcb_error_id: string;
|
|
19266
19426
|
pcb_via_ids: string[];
|
|
19267
19427
|
subcircuit_id?: string | undefined;
|
|
19428
|
+
is_fatal?: boolean | undefined;
|
|
19268
19429
|
minimum_clearance?: number | undefined;
|
|
19269
19430
|
actual_clearance?: number | undefined;
|
|
19270
19431
|
pcb_center?: {
|
|
@@ -19277,6 +19438,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19277
19438
|
pcb_via_ids: string[];
|
|
19278
19439
|
subcircuit_id?: string | undefined;
|
|
19279
19440
|
error_type?: "pcb_via_clearance_error" | undefined;
|
|
19441
|
+
is_fatal?: boolean | undefined;
|
|
19280
19442
|
pcb_error_id?: string | undefined;
|
|
19281
19443
|
minimum_clearance?: string | number | undefined;
|
|
19282
19444
|
actual_clearance?: string | number | undefined;
|
|
@@ -19862,10 +20024,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19862
20024
|
arrow_size?: string | number | undefined;
|
|
19863
20025
|
pcb_note_dimension_id?: string | undefined;
|
|
19864
20026
|
}>, z.ZodObject<{
|
|
20027
|
+
message: z.ZodString;
|
|
20028
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
20029
|
+
} & {
|
|
19865
20030
|
type: z.ZodLiteral<"pcb_autorouting_error">;
|
|
19866
20031
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19867
20032
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_autorouting_error">>;
|
|
19868
|
-
message: z.ZodString;
|
|
19869
20033
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19870
20034
|
}, "strip", z.ZodTypeAny, {
|
|
19871
20035
|
message: string;
|
|
@@ -19873,17 +20037,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19873
20037
|
error_type: "pcb_autorouting_error";
|
|
19874
20038
|
pcb_error_id: string;
|
|
19875
20039
|
subcircuit_id?: string | undefined;
|
|
20040
|
+
is_fatal?: boolean | undefined;
|
|
19876
20041
|
}, {
|
|
19877
20042
|
message: string;
|
|
19878
20043
|
type: "pcb_autorouting_error";
|
|
19879
20044
|
subcircuit_id?: string | undefined;
|
|
19880
20045
|
error_type?: "pcb_autorouting_error" | undefined;
|
|
20046
|
+
is_fatal?: boolean | undefined;
|
|
19881
20047
|
pcb_error_id?: string | undefined;
|
|
19882
20048
|
}>, z.ZodObject<{
|
|
20049
|
+
message: z.ZodString;
|
|
20050
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
20051
|
+
} & {
|
|
19883
20052
|
type: z.ZodLiteral<"pcb_footprint_overlap_error">;
|
|
19884
20053
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19885
20054
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_footprint_overlap_error">>;
|
|
19886
|
-
message: z.ZodString;
|
|
19887
20055
|
pcb_smtpad_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19888
20056
|
pcb_plated_hole_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19889
20057
|
pcb_hole_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -19893,6 +20061,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19893
20061
|
type: "pcb_footprint_overlap_error";
|
|
19894
20062
|
error_type: "pcb_footprint_overlap_error";
|
|
19895
20063
|
pcb_error_id: string;
|
|
20064
|
+
is_fatal?: boolean | undefined;
|
|
19896
20065
|
pcb_smtpad_ids?: string[] | undefined;
|
|
19897
20066
|
pcb_plated_hole_ids?: string[] | undefined;
|
|
19898
20067
|
pcb_hole_ids?: string[] | undefined;
|
|
@@ -19901,6 +20070,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19901
20070
|
message: string;
|
|
19902
20071
|
type: "pcb_footprint_overlap_error";
|
|
19903
20072
|
error_type?: "pcb_footprint_overlap_error" | undefined;
|
|
20073
|
+
is_fatal?: boolean | undefined;
|
|
19904
20074
|
pcb_error_id?: string | undefined;
|
|
19905
20075
|
pcb_smtpad_ids?: string[] | undefined;
|
|
19906
20076
|
pcb_plated_hole_ids?: string[] | undefined;
|
|
@@ -20516,10 +20686,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20516
20686
|
covered_with_solder_mask?: boolean | undefined;
|
|
20517
20687
|
pcb_copper_pour_id?: string | undefined;
|
|
20518
20688
|
}>]>, z.ZodObject<{
|
|
20689
|
+
message: z.ZodString;
|
|
20690
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
20691
|
+
} & {
|
|
20519
20692
|
type: z.ZodLiteral<"pcb_component_outside_board_error">;
|
|
20520
20693
|
pcb_component_outside_board_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20521
20694
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_outside_board_error">>;
|
|
20522
|
-
message: z.ZodString;
|
|
20523
20695
|
pcb_component_id: z.ZodString;
|
|
20524
20696
|
pcb_board_id: z.ZodString;
|
|
20525
20697
|
component_center: z.ZodObject<{
|
|
@@ -20569,6 +20741,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20569
20741
|
};
|
|
20570
20742
|
source_component_id?: string | undefined;
|
|
20571
20743
|
subcircuit_id?: string | undefined;
|
|
20744
|
+
is_fatal?: boolean | undefined;
|
|
20572
20745
|
}, {
|
|
20573
20746
|
message: string;
|
|
20574
20747
|
type: "pcb_component_outside_board_error";
|
|
@@ -20587,12 +20760,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20587
20760
|
source_component_id?: string | undefined;
|
|
20588
20761
|
subcircuit_id?: string | undefined;
|
|
20589
20762
|
error_type?: "pcb_component_outside_board_error" | undefined;
|
|
20763
|
+
is_fatal?: boolean | undefined;
|
|
20590
20764
|
pcb_component_outside_board_error_id?: string | undefined;
|
|
20591
20765
|
}>, z.ZodObject<{
|
|
20766
|
+
message: z.ZodString;
|
|
20767
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
20768
|
+
} & {
|
|
20592
20769
|
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
20593
20770
|
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20594
20771
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
|
|
20595
|
-
message: z.ZodString;
|
|
20596
20772
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
20597
20773
|
source_component_id: z.ZodString;
|
|
20598
20774
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -20614,6 +20790,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20614
20790
|
pcb_component_invalid_layer_error_id: string;
|
|
20615
20791
|
pcb_component_id?: string | undefined;
|
|
20616
20792
|
subcircuit_id?: string | undefined;
|
|
20793
|
+
is_fatal?: boolean | undefined;
|
|
20617
20794
|
}, {
|
|
20618
20795
|
message: string;
|
|
20619
20796
|
type: "pcb_component_invalid_layer_error";
|
|
@@ -20624,6 +20801,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20624
20801
|
pcb_component_id?: string | undefined;
|
|
20625
20802
|
subcircuit_id?: string | undefined;
|
|
20626
20803
|
error_type?: "pcb_component_invalid_layer_error" | undefined;
|
|
20804
|
+
is_fatal?: boolean | undefined;
|
|
20627
20805
|
pcb_component_invalid_layer_error_id?: string | undefined;
|
|
20628
20806
|
}>, z.ZodObject<{
|
|
20629
20807
|
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
@@ -21502,10 +21680,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21502
21680
|
fill_color?: "red" | "blue" | undefined;
|
|
21503
21681
|
stroke_color?: string | undefined;
|
|
21504
21682
|
}>, z.ZodObject<{
|
|
21683
|
+
message: z.ZodString;
|
|
21684
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
21685
|
+
} & {
|
|
21505
21686
|
type: z.ZodLiteral<"schematic_error">;
|
|
21506
21687
|
schematic_error_id: z.ZodString;
|
|
21507
21688
|
error_type: z.ZodDefault<z.ZodLiteral<"schematic_port_not_found">>;
|
|
21508
|
-
message: z.ZodString;
|
|
21509
21689
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21510
21690
|
}, "strip", z.ZodTypeAny, {
|
|
21511
21691
|
message: string;
|
|
@@ -21513,17 +21693,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21513
21693
|
error_type: "schematic_port_not_found";
|
|
21514
21694
|
schematic_error_id: string;
|
|
21515
21695
|
subcircuit_id?: string | undefined;
|
|
21696
|
+
is_fatal?: boolean | undefined;
|
|
21516
21697
|
}, {
|
|
21517
21698
|
message: string;
|
|
21518
21699
|
type: "schematic_error";
|
|
21519
21700
|
schematic_error_id: string;
|
|
21520
21701
|
subcircuit_id?: string | undefined;
|
|
21521
21702
|
error_type?: "schematic_port_not_found" | undefined;
|
|
21703
|
+
is_fatal?: boolean | undefined;
|
|
21522
21704
|
}>, z.ZodObject<{
|
|
21705
|
+
message: z.ZodString;
|
|
21706
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
21707
|
+
} & {
|
|
21523
21708
|
type: z.ZodLiteral<"schematic_layout_error">;
|
|
21524
21709
|
schematic_layout_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
21525
21710
|
error_type: z.ZodDefault<z.ZodLiteral<"schematic_layout_error">>;
|
|
21526
|
-
message: z.ZodString;
|
|
21527
21711
|
source_group_id: z.ZodString;
|
|
21528
21712
|
schematic_group_id: z.ZodString;
|
|
21529
21713
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -21535,6 +21719,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21535
21719
|
schematic_group_id: string;
|
|
21536
21720
|
schematic_layout_error_id: string;
|
|
21537
21721
|
subcircuit_id?: string | undefined;
|
|
21722
|
+
is_fatal?: boolean | undefined;
|
|
21538
21723
|
}, {
|
|
21539
21724
|
message: string;
|
|
21540
21725
|
type: "schematic_layout_error";
|
|
@@ -21542,6 +21727,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21542
21727
|
schematic_group_id: string;
|
|
21543
21728
|
subcircuit_id?: string | undefined;
|
|
21544
21729
|
error_type?: "schematic_layout_error" | undefined;
|
|
21730
|
+
is_fatal?: boolean | undefined;
|
|
21545
21731
|
schematic_layout_error_id?: string | undefined;
|
|
21546
21732
|
}>, z.ZodObject<{
|
|
21547
21733
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
@@ -22422,10 +22608,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22422
22608
|
reference_input_source_port_id?: string | undefined;
|
|
22423
22609
|
reference_input_source_net_id?: string | undefined;
|
|
22424
22610
|
}>, z.ZodObject<{
|
|
22611
|
+
message: z.ZodString;
|
|
22612
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
22613
|
+
} & {
|
|
22425
22614
|
type: z.ZodLiteral<"simulation_unknown_experiment_error">;
|
|
22426
22615
|
simulation_unknown_experiment_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22427
22616
|
error_type: z.ZodDefault<z.ZodLiteral<"simulation_unknown_experiment_error">>;
|
|
22428
|
-
message: z.ZodString;
|
|
22429
22617
|
simulation_experiment_id: z.ZodOptional<z.ZodString>;
|
|
22430
22618
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
22431
22619
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22434,12 +22622,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22434
22622
|
error_type: "simulation_unknown_experiment_error";
|
|
22435
22623
|
simulation_unknown_experiment_error_id: string;
|
|
22436
22624
|
subcircuit_id?: string | undefined;
|
|
22625
|
+
is_fatal?: boolean | undefined;
|
|
22437
22626
|
simulation_experiment_id?: string | undefined;
|
|
22438
22627
|
}, {
|
|
22439
22628
|
message: string;
|
|
22440
22629
|
type: "simulation_unknown_experiment_error";
|
|
22441
22630
|
subcircuit_id?: string | undefined;
|
|
22442
22631
|
error_type?: "simulation_unknown_experiment_error" | undefined;
|
|
22632
|
+
is_fatal?: boolean | undefined;
|
|
22443
22633
|
simulation_experiment_id?: string | undefined;
|
|
22444
22634
|
simulation_unknown_experiment_error_id?: string | undefined;
|
|
22445
22635
|
}>, z.ZodObject<{
|
|
@@ -23687,13 +23877,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23687
23877
|
project_url?: string | undefined;
|
|
23688
23878
|
created_at?: string | undefined;
|
|
23689
23879
|
}>, z.ZodObject<{
|
|
23880
|
+
message: z.ZodString;
|
|
23881
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
23882
|
+
} & {
|
|
23690
23883
|
type: z.ZodLiteral<"source_missing_property_error">;
|
|
23691
23884
|
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23692
23885
|
source_component_id: z.ZodString;
|
|
23693
23886
|
property_name: z.ZodString;
|
|
23694
23887
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23695
23888
|
error_type: z.ZodDefault<z.ZodLiteral<"source_missing_property_error">>;
|
|
23696
|
-
message: z.ZodString;
|
|
23697
23889
|
}, "strip", z.ZodTypeAny, {
|
|
23698
23890
|
message: string;
|
|
23699
23891
|
type: "source_missing_property_error";
|
|
@@ -23702,6 +23894,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23702
23894
|
source_missing_property_error_id: string;
|
|
23703
23895
|
property_name: string;
|
|
23704
23896
|
subcircuit_id?: string | undefined;
|
|
23897
|
+
is_fatal?: boolean | undefined;
|
|
23705
23898
|
}, {
|
|
23706
23899
|
message: string;
|
|
23707
23900
|
type: "source_missing_property_error";
|
|
@@ -23709,15 +23902,18 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23709
23902
|
property_name: string;
|
|
23710
23903
|
subcircuit_id?: string | undefined;
|
|
23711
23904
|
error_type?: "source_missing_property_error" | undefined;
|
|
23905
|
+
is_fatal?: boolean | undefined;
|
|
23712
23906
|
source_missing_property_error_id?: string | undefined;
|
|
23713
23907
|
}>, z.ZodObject<{
|
|
23908
|
+
message: z.ZodString;
|
|
23909
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
23910
|
+
} & {
|
|
23714
23911
|
type: z.ZodLiteral<"source_failed_to_create_component_error">;
|
|
23715
23912
|
source_failed_to_create_component_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23716
23913
|
error_type: z.ZodDefault<z.ZodLiteral<"source_failed_to_create_component_error">>;
|
|
23717
23914
|
component_name: z.ZodOptional<z.ZodString>;
|
|
23718
23915
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23719
23916
|
parent_source_component_id: z.ZodOptional<z.ZodString>;
|
|
23720
|
-
message: z.ZodString;
|
|
23721
23917
|
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
23722
23918
|
x: z.ZodOptional<z.ZodNumber>;
|
|
23723
23919
|
y: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23744,6 +23940,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23744
23940
|
error_type: "source_failed_to_create_component_error";
|
|
23745
23941
|
source_failed_to_create_component_error_id: string;
|
|
23746
23942
|
subcircuit_id?: string | undefined;
|
|
23943
|
+
is_fatal?: boolean | undefined;
|
|
23747
23944
|
pcb_center?: {
|
|
23748
23945
|
x?: number | undefined;
|
|
23749
23946
|
y?: number | undefined;
|
|
@@ -23759,6 +23956,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23759
23956
|
type: "source_failed_to_create_component_error";
|
|
23760
23957
|
subcircuit_id?: string | undefined;
|
|
23761
23958
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
23959
|
+
is_fatal?: boolean | undefined;
|
|
23762
23960
|
pcb_center?: {
|
|
23763
23961
|
x?: number | undefined;
|
|
23764
23962
|
y?: number | undefined;
|
|
@@ -23771,10 +23969,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23771
23969
|
y?: number | undefined;
|
|
23772
23970
|
} | undefined;
|
|
23773
23971
|
}>, z.ZodObject<{
|
|
23972
|
+
message: z.ZodString;
|
|
23973
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
23974
|
+
} & {
|
|
23774
23975
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
23775
23976
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23776
23977
|
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
|
|
23777
|
-
message: z.ZodString;
|
|
23778
23978
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23779
23979
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
23780
23980
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
@@ -23787,6 +23987,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23787
23987
|
source_trace_not_connected_error_id: string;
|
|
23788
23988
|
subcircuit_id?: string | undefined;
|
|
23789
23989
|
source_trace_id?: string | undefined;
|
|
23990
|
+
is_fatal?: boolean | undefined;
|
|
23790
23991
|
source_group_id?: string | undefined;
|
|
23791
23992
|
connected_source_port_ids?: string[] | undefined;
|
|
23792
23993
|
selectors_not_found?: string[] | undefined;
|
|
@@ -23796,6 +23997,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23796
23997
|
subcircuit_id?: string | undefined;
|
|
23797
23998
|
source_trace_id?: string | undefined;
|
|
23798
23999
|
error_type?: "source_trace_not_connected_error" | undefined;
|
|
24000
|
+
is_fatal?: boolean | undefined;
|
|
23799
24001
|
source_group_id?: string | undefined;
|
|
23800
24002
|
source_trace_not_connected_error_id?: string | undefined;
|
|
23801
24003
|
connected_source_port_ids?: string[] | undefined;
|
|
@@ -24791,10 +24993,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24791
24993
|
project_url?: string | undefined;
|
|
24792
24994
|
created_at?: string | undefined;
|
|
24793
24995
|
}>, z.ZodObject<{
|
|
24996
|
+
message: z.ZodString;
|
|
24997
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
24998
|
+
} & {
|
|
24794
24999
|
type: z.ZodLiteral<"source_trace_not_connected_error">;
|
|
24795
25000
|
source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24796
25001
|
error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
|
|
24797
|
-
message: z.ZodString;
|
|
24798
25002
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
24799
25003
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
24800
25004
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
@@ -24807,6 +25011,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24807
25011
|
source_trace_not_connected_error_id: string;
|
|
24808
25012
|
subcircuit_id?: string | undefined;
|
|
24809
25013
|
source_trace_id?: string | undefined;
|
|
25014
|
+
is_fatal?: boolean | undefined;
|
|
24810
25015
|
source_group_id?: string | undefined;
|
|
24811
25016
|
connected_source_port_ids?: string[] | undefined;
|
|
24812
25017
|
selectors_not_found?: string[] | undefined;
|
|
@@ -24816,6 +25021,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24816
25021
|
subcircuit_id?: string | undefined;
|
|
24817
25022
|
source_trace_id?: string | undefined;
|
|
24818
25023
|
error_type?: "source_trace_not_connected_error" | undefined;
|
|
25024
|
+
is_fatal?: boolean | undefined;
|
|
24819
25025
|
source_group_id?: string | undefined;
|
|
24820
25026
|
source_trace_not_connected_error_id?: string | undefined;
|
|
24821
25027
|
connected_source_port_ids?: string[] | undefined;
|
|
@@ -24845,10 +25051,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24845
25051
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
24846
25052
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
24847
25053
|
}>, z.ZodObject<{
|
|
25054
|
+
message: z.ZodString;
|
|
25055
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
25056
|
+
} & {
|
|
24848
25057
|
type: z.ZodLiteral<"source_pin_must_be_connected_error">;
|
|
24849
25058
|
source_pin_must_be_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24850
25059
|
error_type: z.ZodDefault<z.ZodLiteral<"source_pin_must_be_connected_error">>;
|
|
24851
|
-
message: z.ZodString;
|
|
24852
25060
|
source_component_id: z.ZodString;
|
|
24853
25061
|
source_port_id: z.ZodString;
|
|
24854
25062
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -24860,6 +25068,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24860
25068
|
error_type: "source_pin_must_be_connected_error";
|
|
24861
25069
|
source_pin_must_be_connected_error_id: string;
|
|
24862
25070
|
subcircuit_id?: string | undefined;
|
|
25071
|
+
is_fatal?: boolean | undefined;
|
|
24863
25072
|
}, {
|
|
24864
25073
|
message: string;
|
|
24865
25074
|
type: "source_pin_must_be_connected_error";
|
|
@@ -24867,12 +25076,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24867
25076
|
source_port_id: string;
|
|
24868
25077
|
subcircuit_id?: string | undefined;
|
|
24869
25078
|
error_type?: "source_pin_must_be_connected_error" | undefined;
|
|
25079
|
+
is_fatal?: boolean | undefined;
|
|
24870
25080
|
source_pin_must_be_connected_error_id?: string | undefined;
|
|
24871
25081
|
}>, z.ZodObject<{
|
|
25082
|
+
message: z.ZodString;
|
|
25083
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
25084
|
+
} & {
|
|
24872
25085
|
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
24873
25086
|
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24874
25087
|
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
24875
|
-
message: z.ZodString;
|
|
24876
25088
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
24877
25089
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
24878
25090
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24882,12 +25094,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24882
25094
|
unknown_error_finding_part_id: string;
|
|
24883
25095
|
source_component_id?: string | undefined;
|
|
24884
25096
|
subcircuit_id?: string | undefined;
|
|
25097
|
+
is_fatal?: boolean | undefined;
|
|
24885
25098
|
}, {
|
|
24886
25099
|
message: string;
|
|
24887
25100
|
type: "unknown_error_finding_part";
|
|
24888
25101
|
source_component_id?: string | undefined;
|
|
24889
25102
|
subcircuit_id?: string | undefined;
|
|
24890
25103
|
error_type?: "unknown_error_finding_part" | undefined;
|
|
25104
|
+
is_fatal?: boolean | undefined;
|
|
24891
25105
|
unknown_error_finding_part_id?: string | undefined;
|
|
24892
25106
|
}>, z.ZodObject<{
|
|
24893
25107
|
type: z.ZodLiteral<"pcb_component">;
|
|
@@ -25200,13 +25414,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25200
25414
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
25201
25415
|
soldermask_margin?: number | undefined;
|
|
25202
25416
|
}>]>, z.ZodObject<{
|
|
25417
|
+
message: z.ZodString;
|
|
25418
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
25419
|
+
} & {
|
|
25203
25420
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
25204
25421
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25205
25422
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25206
25423
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25207
25424
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_missing_footprint_error">>;
|
|
25208
25425
|
source_component_id: z.ZodString;
|
|
25209
|
-
message: z.ZodString;
|
|
25210
25426
|
}, "strip", z.ZodTypeAny, {
|
|
25211
25427
|
message: string;
|
|
25212
25428
|
type: "pcb_missing_footprint_error";
|
|
@@ -25215,6 +25431,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25215
25431
|
pcb_missing_footprint_error_id: string;
|
|
25216
25432
|
subcircuit_id?: string | undefined;
|
|
25217
25433
|
pcb_group_id?: string | undefined;
|
|
25434
|
+
is_fatal?: boolean | undefined;
|
|
25218
25435
|
}, {
|
|
25219
25436
|
message: string;
|
|
25220
25437
|
type: "pcb_missing_footprint_error";
|
|
@@ -25222,8 +25439,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25222
25439
|
subcircuit_id?: string | undefined;
|
|
25223
25440
|
pcb_group_id?: string | undefined;
|
|
25224
25441
|
error_type?: "pcb_missing_footprint_error" | undefined;
|
|
25442
|
+
is_fatal?: boolean | undefined;
|
|
25225
25443
|
pcb_missing_footprint_error_id?: string | undefined;
|
|
25226
25444
|
}>, z.ZodObject<{
|
|
25445
|
+
message: z.ZodString;
|
|
25446
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
25447
|
+
} & {
|
|
25227
25448
|
type: z.ZodLiteral<"external_footprint_load_error">;
|
|
25228
25449
|
external_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25229
25450
|
pcb_component_id: z.ZodString;
|
|
@@ -25232,7 +25453,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25232
25453
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25233
25454
|
footprinter_string: z.ZodOptional<z.ZodString>;
|
|
25234
25455
|
error_type: z.ZodDefault<z.ZodLiteral<"external_footprint_load_error">>;
|
|
25235
|
-
message: z.ZodString;
|
|
25236
25456
|
}, "strip", z.ZodTypeAny, {
|
|
25237
25457
|
message: string;
|
|
25238
25458
|
type: "external_footprint_load_error";
|
|
@@ -25242,6 +25462,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25242
25462
|
external_footprint_load_error_id: string;
|
|
25243
25463
|
subcircuit_id?: string | undefined;
|
|
25244
25464
|
pcb_group_id?: string | undefined;
|
|
25465
|
+
is_fatal?: boolean | undefined;
|
|
25245
25466
|
footprinter_string?: string | undefined;
|
|
25246
25467
|
}, {
|
|
25247
25468
|
message: string;
|
|
@@ -25251,9 +25472,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25251
25472
|
subcircuit_id?: string | undefined;
|
|
25252
25473
|
pcb_group_id?: string | undefined;
|
|
25253
25474
|
error_type?: "external_footprint_load_error" | undefined;
|
|
25475
|
+
is_fatal?: boolean | undefined;
|
|
25254
25476
|
external_footprint_load_error_id?: string | undefined;
|
|
25255
25477
|
footprinter_string?: string | undefined;
|
|
25256
25478
|
}>, z.ZodObject<{
|
|
25479
|
+
message: z.ZodString;
|
|
25480
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
25481
|
+
} & {
|
|
25257
25482
|
type: z.ZodLiteral<"circuit_json_footprint_load_error">;
|
|
25258
25483
|
circuit_json_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25259
25484
|
pcb_component_id: z.ZodString;
|
|
@@ -25261,7 +25486,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25261
25486
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25262
25487
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25263
25488
|
error_type: z.ZodDefault<z.ZodLiteral<"circuit_json_footprint_load_error">>;
|
|
25264
|
-
message: z.ZodString;
|
|
25265
25489
|
circuit_json: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
25266
25490
|
}, "strip", z.ZodTypeAny, {
|
|
25267
25491
|
message: string;
|
|
@@ -25272,6 +25496,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25272
25496
|
circuit_json_footprint_load_error_id: string;
|
|
25273
25497
|
subcircuit_id?: string | undefined;
|
|
25274
25498
|
pcb_group_id?: string | undefined;
|
|
25499
|
+
is_fatal?: boolean | undefined;
|
|
25275
25500
|
circuit_json?: any[] | undefined;
|
|
25276
25501
|
}, {
|
|
25277
25502
|
message: string;
|
|
@@ -25281,6 +25506,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25281
25506
|
subcircuit_id?: string | undefined;
|
|
25282
25507
|
pcb_group_id?: string | undefined;
|
|
25283
25508
|
error_type?: "circuit_json_footprint_load_error" | undefined;
|
|
25509
|
+
is_fatal?: boolean | undefined;
|
|
25284
25510
|
circuit_json_footprint_load_error_id?: string | undefined;
|
|
25285
25511
|
circuit_json?: any[] | undefined;
|
|
25286
25512
|
}>, z.ZodObject<{
|
|
@@ -27664,10 +27890,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27664
27890
|
ccw_rotation?: string | number | undefined;
|
|
27665
27891
|
pcb_silkscreen_oval_id?: string | undefined;
|
|
27666
27892
|
}>, z.ZodObject<{
|
|
27893
|
+
message: z.ZodString;
|
|
27894
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
27895
|
+
} & {
|
|
27667
27896
|
type: z.ZodLiteral<"pcb_trace_error">;
|
|
27668
27897
|
pcb_trace_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27669
27898
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_error">>;
|
|
27670
|
-
message: z.ZodString;
|
|
27671
27899
|
center: z.ZodOptional<z.ZodObject<{
|
|
27672
27900
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27673
27901
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27688,8 +27916,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27688
27916
|
type: "pcb_trace_error";
|
|
27689
27917
|
source_trace_id: string;
|
|
27690
27918
|
pcb_trace_id: string;
|
|
27691
|
-
pcb_trace_error_id: string;
|
|
27692
27919
|
error_type: "pcb_trace_error";
|
|
27920
|
+
pcb_trace_error_id: string;
|
|
27693
27921
|
pcb_component_ids: string[];
|
|
27694
27922
|
pcb_port_ids: string[];
|
|
27695
27923
|
center?: {
|
|
@@ -27697,6 +27925,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27697
27925
|
y: number;
|
|
27698
27926
|
} | undefined;
|
|
27699
27927
|
subcircuit_id?: string | undefined;
|
|
27928
|
+
is_fatal?: boolean | undefined;
|
|
27700
27929
|
}, {
|
|
27701
27930
|
message: string;
|
|
27702
27931
|
type: "pcb_trace_error";
|
|
@@ -27709,13 +27938,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27709
27938
|
y: string | number;
|
|
27710
27939
|
} | undefined;
|
|
27711
27940
|
subcircuit_id?: string | undefined;
|
|
27712
|
-
pcb_trace_error_id?: string | undefined;
|
|
27713
27941
|
error_type?: "pcb_trace_error" | undefined;
|
|
27942
|
+
is_fatal?: boolean | undefined;
|
|
27943
|
+
pcb_trace_error_id?: string | undefined;
|
|
27714
27944
|
}>, z.ZodObject<{
|
|
27945
|
+
message: z.ZodString;
|
|
27946
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
27947
|
+
} & {
|
|
27715
27948
|
type: z.ZodLiteral<"pcb_trace_missing_error">;
|
|
27716
27949
|
pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27717
27950
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
|
|
27718
|
-
message: z.ZodString;
|
|
27719
27951
|
center: z.ZodOptional<z.ZodObject<{
|
|
27720
27952
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27721
27953
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27743,6 +27975,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27743
27975
|
y: number;
|
|
27744
27976
|
} | undefined;
|
|
27745
27977
|
subcircuit_id?: string | undefined;
|
|
27978
|
+
is_fatal?: boolean | undefined;
|
|
27746
27979
|
}, {
|
|
27747
27980
|
message: string;
|
|
27748
27981
|
type: "pcb_trace_missing_error";
|
|
@@ -27755,12 +27988,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27755
27988
|
} | undefined;
|
|
27756
27989
|
subcircuit_id?: string | undefined;
|
|
27757
27990
|
error_type?: "pcb_trace_missing_error" | undefined;
|
|
27991
|
+
is_fatal?: boolean | undefined;
|
|
27758
27992
|
pcb_trace_missing_error_id?: string | undefined;
|
|
27759
27993
|
}>, z.ZodObject<{
|
|
27994
|
+
message: z.ZodString;
|
|
27995
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
27996
|
+
} & {
|
|
27760
27997
|
type: z.ZodLiteral<"pcb_placement_error">;
|
|
27761
27998
|
pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27762
27999
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_placement_error">>;
|
|
27763
|
-
message: z.ZodString;
|
|
27764
28000
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27765
28001
|
}, "strip", z.ZodTypeAny, {
|
|
27766
28002
|
message: string;
|
|
@@ -27768,17 +28004,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27768
28004
|
error_type: "pcb_placement_error";
|
|
27769
28005
|
pcb_placement_error_id: string;
|
|
27770
28006
|
subcircuit_id?: string | undefined;
|
|
28007
|
+
is_fatal?: boolean | undefined;
|
|
27771
28008
|
}, {
|
|
27772
28009
|
message: string;
|
|
27773
28010
|
type: "pcb_placement_error";
|
|
27774
28011
|
subcircuit_id?: string | undefined;
|
|
27775
28012
|
error_type?: "pcb_placement_error" | undefined;
|
|
28013
|
+
is_fatal?: boolean | undefined;
|
|
27776
28014
|
pcb_placement_error_id?: string | undefined;
|
|
27777
28015
|
}>, z.ZodObject<{
|
|
28016
|
+
message: z.ZodString;
|
|
28017
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28018
|
+
} & {
|
|
27778
28019
|
type: z.ZodLiteral<"pcb_panelization_placement_error">;
|
|
27779
28020
|
pcb_panelization_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27780
28021
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_panelization_placement_error">>;
|
|
27781
|
-
message: z.ZodString;
|
|
27782
28022
|
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
27783
28023
|
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
27784
28024
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -27788,6 +28028,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27788
28028
|
error_type: "pcb_panelization_placement_error";
|
|
27789
28029
|
pcb_panelization_placement_error_id: string;
|
|
27790
28030
|
subcircuit_id?: string | undefined;
|
|
28031
|
+
is_fatal?: boolean | undefined;
|
|
27791
28032
|
pcb_board_id?: string | undefined;
|
|
27792
28033
|
pcb_panel_id?: string | undefined;
|
|
27793
28034
|
}, {
|
|
@@ -27795,14 +28036,17 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27795
28036
|
type: "pcb_panelization_placement_error";
|
|
27796
28037
|
subcircuit_id?: string | undefined;
|
|
27797
28038
|
error_type?: "pcb_panelization_placement_error" | undefined;
|
|
28039
|
+
is_fatal?: boolean | undefined;
|
|
27798
28040
|
pcb_board_id?: string | undefined;
|
|
27799
28041
|
pcb_panel_id?: string | undefined;
|
|
27800
28042
|
pcb_panelization_placement_error_id?: string | undefined;
|
|
27801
28043
|
}>, z.ZodObject<{
|
|
28044
|
+
message: z.ZodString;
|
|
28045
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28046
|
+
} & {
|
|
27802
28047
|
type: z.ZodLiteral<"pcb_port_not_matched_error">;
|
|
27803
28048
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27804
28049
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_port_not_matched_error">>;
|
|
27805
|
-
message: z.ZodString;
|
|
27806
28050
|
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
27807
28051
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27808
28052
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27812,18 +28056,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27812
28056
|
pcb_component_ids: string[];
|
|
27813
28057
|
pcb_error_id: string;
|
|
27814
28058
|
subcircuit_id?: string | undefined;
|
|
28059
|
+
is_fatal?: boolean | undefined;
|
|
27815
28060
|
}, {
|
|
27816
28061
|
message: string;
|
|
27817
28062
|
type: "pcb_port_not_matched_error";
|
|
27818
28063
|
pcb_component_ids: string[];
|
|
27819
28064
|
subcircuit_id?: string | undefined;
|
|
27820
28065
|
error_type?: "pcb_port_not_matched_error" | undefined;
|
|
28066
|
+
is_fatal?: boolean | undefined;
|
|
27821
28067
|
pcb_error_id?: string | undefined;
|
|
27822
28068
|
}>, z.ZodObject<{
|
|
28069
|
+
message: z.ZodString;
|
|
28070
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28071
|
+
} & {
|
|
27823
28072
|
type: z.ZodLiteral<"pcb_port_not_connected_error">;
|
|
27824
28073
|
pcb_port_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27825
28074
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_port_not_connected_error">>;
|
|
27826
|
-
message: z.ZodString;
|
|
27827
28075
|
pcb_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
27828
28076
|
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
27829
28077
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -27835,6 +28083,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27835
28083
|
pcb_port_ids: string[];
|
|
27836
28084
|
pcb_port_not_connected_error_id: string;
|
|
27837
28085
|
subcircuit_id?: string | undefined;
|
|
28086
|
+
is_fatal?: boolean | undefined;
|
|
27838
28087
|
}, {
|
|
27839
28088
|
message: string;
|
|
27840
28089
|
type: "pcb_port_not_connected_error";
|
|
@@ -27842,12 +28091,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27842
28091
|
pcb_port_ids: string[];
|
|
27843
28092
|
subcircuit_id?: string | undefined;
|
|
27844
28093
|
error_type?: "pcb_port_not_connected_error" | undefined;
|
|
28094
|
+
is_fatal?: boolean | undefined;
|
|
27845
28095
|
pcb_port_not_connected_error_id?: string | undefined;
|
|
27846
28096
|
}>, z.ZodObject<{
|
|
28097
|
+
message: z.ZodString;
|
|
28098
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28099
|
+
} & {
|
|
27847
28100
|
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
27848
28101
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27849
28102
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
27850
|
-
message: z.ZodString;
|
|
27851
28103
|
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
27852
28104
|
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27853
28105
|
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -27869,6 +28121,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27869
28121
|
pcb_error_id: string;
|
|
27870
28122
|
pcb_via_ids: string[];
|
|
27871
28123
|
subcircuit_id?: string | undefined;
|
|
28124
|
+
is_fatal?: boolean | undefined;
|
|
27872
28125
|
minimum_clearance?: number | undefined;
|
|
27873
28126
|
actual_clearance?: number | undefined;
|
|
27874
28127
|
pcb_center?: {
|
|
@@ -27881,6 +28134,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27881
28134
|
pcb_via_ids: string[];
|
|
27882
28135
|
subcircuit_id?: string | undefined;
|
|
27883
28136
|
error_type?: "pcb_via_clearance_error" | undefined;
|
|
28137
|
+
is_fatal?: boolean | undefined;
|
|
27884
28138
|
pcb_error_id?: string | undefined;
|
|
27885
28139
|
minimum_clearance?: string | number | undefined;
|
|
27886
28140
|
actual_clearance?: string | number | undefined;
|
|
@@ -28466,10 +28720,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28466
28720
|
arrow_size?: string | number | undefined;
|
|
28467
28721
|
pcb_note_dimension_id?: string | undefined;
|
|
28468
28722
|
}>, z.ZodObject<{
|
|
28723
|
+
message: z.ZodString;
|
|
28724
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28725
|
+
} & {
|
|
28469
28726
|
type: z.ZodLiteral<"pcb_autorouting_error">;
|
|
28470
28727
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28471
28728
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_autorouting_error">>;
|
|
28472
|
-
message: z.ZodString;
|
|
28473
28729
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
28474
28730
|
}, "strip", z.ZodTypeAny, {
|
|
28475
28731
|
message: string;
|
|
@@ -28477,17 +28733,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28477
28733
|
error_type: "pcb_autorouting_error";
|
|
28478
28734
|
pcb_error_id: string;
|
|
28479
28735
|
subcircuit_id?: string | undefined;
|
|
28736
|
+
is_fatal?: boolean | undefined;
|
|
28480
28737
|
}, {
|
|
28481
28738
|
message: string;
|
|
28482
28739
|
type: "pcb_autorouting_error";
|
|
28483
28740
|
subcircuit_id?: string | undefined;
|
|
28484
28741
|
error_type?: "pcb_autorouting_error" | undefined;
|
|
28742
|
+
is_fatal?: boolean | undefined;
|
|
28485
28743
|
pcb_error_id?: string | undefined;
|
|
28486
28744
|
}>, z.ZodObject<{
|
|
28745
|
+
message: z.ZodString;
|
|
28746
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28747
|
+
} & {
|
|
28487
28748
|
type: z.ZodLiteral<"pcb_footprint_overlap_error">;
|
|
28488
28749
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28489
28750
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_footprint_overlap_error">>;
|
|
28490
|
-
message: z.ZodString;
|
|
28491
28751
|
pcb_smtpad_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28492
28752
|
pcb_plated_hole_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28493
28753
|
pcb_hole_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -28497,6 +28757,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28497
28757
|
type: "pcb_footprint_overlap_error";
|
|
28498
28758
|
error_type: "pcb_footprint_overlap_error";
|
|
28499
28759
|
pcb_error_id: string;
|
|
28760
|
+
is_fatal?: boolean | undefined;
|
|
28500
28761
|
pcb_smtpad_ids?: string[] | undefined;
|
|
28501
28762
|
pcb_plated_hole_ids?: string[] | undefined;
|
|
28502
28763
|
pcb_hole_ids?: string[] | undefined;
|
|
@@ -28505,6 +28766,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
28505
28766
|
message: string;
|
|
28506
28767
|
type: "pcb_footprint_overlap_error";
|
|
28507
28768
|
error_type?: "pcb_footprint_overlap_error" | undefined;
|
|
28769
|
+
is_fatal?: boolean | undefined;
|
|
28508
28770
|
pcb_error_id?: string | undefined;
|
|
28509
28771
|
pcb_smtpad_ids?: string[] | undefined;
|
|
28510
28772
|
pcb_plated_hole_ids?: string[] | undefined;
|
|
@@ -29120,10 +29382,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
29120
29382
|
covered_with_solder_mask?: boolean | undefined;
|
|
29121
29383
|
pcb_copper_pour_id?: string | undefined;
|
|
29122
29384
|
}>]>, z.ZodObject<{
|
|
29385
|
+
message: z.ZodString;
|
|
29386
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
29387
|
+
} & {
|
|
29123
29388
|
type: z.ZodLiteral<"pcb_component_outside_board_error">;
|
|
29124
29389
|
pcb_component_outside_board_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29125
29390
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_outside_board_error">>;
|
|
29126
|
-
message: z.ZodString;
|
|
29127
29391
|
pcb_component_id: z.ZodString;
|
|
29128
29392
|
pcb_board_id: z.ZodString;
|
|
29129
29393
|
component_center: z.ZodObject<{
|
|
@@ -29173,6 +29437,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
29173
29437
|
};
|
|
29174
29438
|
source_component_id?: string | undefined;
|
|
29175
29439
|
subcircuit_id?: string | undefined;
|
|
29440
|
+
is_fatal?: boolean | undefined;
|
|
29176
29441
|
}, {
|
|
29177
29442
|
message: string;
|
|
29178
29443
|
type: "pcb_component_outside_board_error";
|
|
@@ -29191,12 +29456,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
29191
29456
|
source_component_id?: string | undefined;
|
|
29192
29457
|
subcircuit_id?: string | undefined;
|
|
29193
29458
|
error_type?: "pcb_component_outside_board_error" | undefined;
|
|
29459
|
+
is_fatal?: boolean | undefined;
|
|
29194
29460
|
pcb_component_outside_board_error_id?: string | undefined;
|
|
29195
29461
|
}>, z.ZodObject<{
|
|
29462
|
+
message: z.ZodString;
|
|
29463
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
29464
|
+
} & {
|
|
29196
29465
|
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
29197
29466
|
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
29198
29467
|
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
|
|
29199
|
-
message: z.ZodString;
|
|
29200
29468
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
29201
29469
|
source_component_id: z.ZodString;
|
|
29202
29470
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -29218,6 +29486,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
29218
29486
|
pcb_component_invalid_layer_error_id: string;
|
|
29219
29487
|
pcb_component_id?: string | undefined;
|
|
29220
29488
|
subcircuit_id?: string | undefined;
|
|
29489
|
+
is_fatal?: boolean | undefined;
|
|
29221
29490
|
}, {
|
|
29222
29491
|
message: string;
|
|
29223
29492
|
type: "pcb_component_invalid_layer_error";
|
|
@@ -29228,6 +29497,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
29228
29497
|
pcb_component_id?: string | undefined;
|
|
29229
29498
|
subcircuit_id?: string | undefined;
|
|
29230
29499
|
error_type?: "pcb_component_invalid_layer_error" | undefined;
|
|
29500
|
+
is_fatal?: boolean | undefined;
|
|
29231
29501
|
pcb_component_invalid_layer_error_id?: string | undefined;
|
|
29232
29502
|
}>, z.ZodObject<{
|
|
29233
29503
|
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
@@ -30106,10 +30376,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30106
30376
|
fill_color?: "red" | "blue" | undefined;
|
|
30107
30377
|
stroke_color?: string | undefined;
|
|
30108
30378
|
}>, z.ZodObject<{
|
|
30379
|
+
message: z.ZodString;
|
|
30380
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
30381
|
+
} & {
|
|
30109
30382
|
type: z.ZodLiteral<"schematic_error">;
|
|
30110
30383
|
schematic_error_id: z.ZodString;
|
|
30111
30384
|
error_type: z.ZodDefault<z.ZodLiteral<"schematic_port_not_found">>;
|
|
30112
|
-
message: z.ZodString;
|
|
30113
30385
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
30114
30386
|
}, "strip", z.ZodTypeAny, {
|
|
30115
30387
|
message: string;
|
|
@@ -30117,17 +30389,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30117
30389
|
error_type: "schematic_port_not_found";
|
|
30118
30390
|
schematic_error_id: string;
|
|
30119
30391
|
subcircuit_id?: string | undefined;
|
|
30392
|
+
is_fatal?: boolean | undefined;
|
|
30120
30393
|
}, {
|
|
30121
30394
|
message: string;
|
|
30122
30395
|
type: "schematic_error";
|
|
30123
30396
|
schematic_error_id: string;
|
|
30124
30397
|
subcircuit_id?: string | undefined;
|
|
30125
30398
|
error_type?: "schematic_port_not_found" | undefined;
|
|
30399
|
+
is_fatal?: boolean | undefined;
|
|
30126
30400
|
}>, z.ZodObject<{
|
|
30401
|
+
message: z.ZodString;
|
|
30402
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
30403
|
+
} & {
|
|
30127
30404
|
type: z.ZodLiteral<"schematic_layout_error">;
|
|
30128
30405
|
schematic_layout_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
30129
30406
|
error_type: z.ZodDefault<z.ZodLiteral<"schematic_layout_error">>;
|
|
30130
|
-
message: z.ZodString;
|
|
30131
30407
|
source_group_id: z.ZodString;
|
|
30132
30408
|
schematic_group_id: z.ZodString;
|
|
30133
30409
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -30139,6 +30415,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30139
30415
|
schematic_group_id: string;
|
|
30140
30416
|
schematic_layout_error_id: string;
|
|
30141
30417
|
subcircuit_id?: string | undefined;
|
|
30418
|
+
is_fatal?: boolean | undefined;
|
|
30142
30419
|
}, {
|
|
30143
30420
|
message: string;
|
|
30144
30421
|
type: "schematic_layout_error";
|
|
@@ -30146,6 +30423,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30146
30423
|
schematic_group_id: string;
|
|
30147
30424
|
subcircuit_id?: string | undefined;
|
|
30148
30425
|
error_type?: "schematic_layout_error" | undefined;
|
|
30426
|
+
is_fatal?: boolean | undefined;
|
|
30149
30427
|
schematic_layout_error_id?: string | undefined;
|
|
30150
30428
|
}>, z.ZodObject<{
|
|
30151
30429
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
@@ -31026,10 +31304,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31026
31304
|
reference_input_source_port_id?: string | undefined;
|
|
31027
31305
|
reference_input_source_net_id?: string | undefined;
|
|
31028
31306
|
}>, z.ZodObject<{
|
|
31307
|
+
message: z.ZodString;
|
|
31308
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
31309
|
+
} & {
|
|
31029
31310
|
type: z.ZodLiteral<"simulation_unknown_experiment_error">;
|
|
31030
31311
|
simulation_unknown_experiment_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
31031
31312
|
error_type: z.ZodDefault<z.ZodLiteral<"simulation_unknown_experiment_error">>;
|
|
31032
|
-
message: z.ZodString;
|
|
31033
31313
|
simulation_experiment_id: z.ZodOptional<z.ZodString>;
|
|
31034
31314
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
31035
31315
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31038,12 +31318,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31038
31318
|
error_type: "simulation_unknown_experiment_error";
|
|
31039
31319
|
simulation_unknown_experiment_error_id: string;
|
|
31040
31320
|
subcircuit_id?: string | undefined;
|
|
31321
|
+
is_fatal?: boolean | undefined;
|
|
31041
31322
|
simulation_experiment_id?: string | undefined;
|
|
31042
31323
|
}, {
|
|
31043
31324
|
message: string;
|
|
31044
31325
|
type: "simulation_unknown_experiment_error";
|
|
31045
31326
|
subcircuit_id?: string | undefined;
|
|
31046
31327
|
error_type?: "simulation_unknown_experiment_error" | undefined;
|
|
31328
|
+
is_fatal?: boolean | undefined;
|
|
31047
31329
|
simulation_experiment_id?: string | undefined;
|
|
31048
31330
|
simulation_unknown_experiment_error_id?: string | undefined;
|
|
31049
31331
|
}>, z.ZodObject<{
|
|
@@ -31090,4 +31372,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
31090
31372
|
*/
|
|
31091
31373
|
type CircuitJson = AnyCircuitElement[];
|
|
31092
31374
|
|
|
31093
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, 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 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, 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_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_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, 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_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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
31375
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, 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 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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 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 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, 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, 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_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, 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_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_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, 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_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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|