circuit-json 0.0.186 → 0.0.187

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 CHANGED
@@ -3009,12 +3009,12 @@ declare const pcb_keepout: z.ZodUnion<[z.ZodObject<{
3009
3009
  type PCBKeepoutInput = z.input<typeof pcb_keepout>;
3010
3010
  type PCBKeepout = z.infer<typeof pcb_keepout>;
3011
3011
 
3012
- declare const pcb_cutout_rect: z.ZodObject<z.objectUtil.extendShape<{
3012
+ declare const pcb_cutout_rect: z.ZodObject<{
3013
3013
  type: z.ZodLiteral<"pcb_cutout">;
3014
3014
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3015
3015
  pcb_group_id: z.ZodOptional<z.ZodString>;
3016
3016
  subcircuit_id: z.ZodOptional<z.ZodString>;
3017
- }, {
3017
+ } & {
3018
3018
  shape: z.ZodLiteral<"rect">;
3019
3019
  center: z.ZodObject<{
3020
3020
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -3029,7 +3029,7 @@ declare const pcb_cutout_rect: z.ZodObject<z.objectUtil.extendShape<{
3029
3029
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3030
3030
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3031
3031
  rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
3032
- }>, "strip", z.ZodTypeAny, {
3032
+ }, "strip", z.ZodTypeAny, {
3033
3033
  type: "pcb_cutout";
3034
3034
  width: number;
3035
3035
  height: number;
@@ -3071,12 +3071,12 @@ interface PcbCutoutRect {
3071
3071
  height: Length;
3072
3072
  rotation?: Rotation;
3073
3073
  }
3074
- declare const pcb_cutout_circle: z.ZodObject<z.objectUtil.extendShape<{
3074
+ declare const pcb_cutout_circle: z.ZodObject<{
3075
3075
  type: z.ZodLiteral<"pcb_cutout">;
3076
3076
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3077
3077
  pcb_group_id: z.ZodOptional<z.ZodString>;
3078
3078
  subcircuit_id: z.ZodOptional<z.ZodString>;
3079
- }, {
3079
+ } & {
3080
3080
  shape: z.ZodLiteral<"circle">;
3081
3081
  center: z.ZodObject<{
3082
3082
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -3089,7 +3089,7 @@ declare const pcb_cutout_circle: z.ZodObject<z.objectUtil.extendShape<{
3089
3089
  y: string | number;
3090
3090
  }>;
3091
3091
  radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3092
- }>, "strip", z.ZodTypeAny, {
3092
+ }, "strip", z.ZodTypeAny, {
3093
3093
  type: "pcb_cutout";
3094
3094
  center: {
3095
3095
  x: number;
@@ -3125,12 +3125,12 @@ interface PcbCutoutCircle {
3125
3125
  center: Point;
3126
3126
  radius: Length;
3127
3127
  }
3128
- declare const pcb_cutout_polygon: z.ZodObject<z.objectUtil.extendShape<{
3128
+ declare const pcb_cutout_polygon: z.ZodObject<{
3129
3129
  type: z.ZodLiteral<"pcb_cutout">;
3130
3130
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3131
3131
  pcb_group_id: z.ZodOptional<z.ZodString>;
3132
3132
  subcircuit_id: z.ZodOptional<z.ZodString>;
3133
- }, {
3133
+ } & {
3134
3134
  shape: z.ZodLiteral<"polygon">;
3135
3135
  points: z.ZodArray<z.ZodObject<{
3136
3136
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -3142,7 +3142,7 @@ declare const pcb_cutout_polygon: z.ZodObject<z.objectUtil.extendShape<{
3142
3142
  x: string | number;
3143
3143
  y: string | number;
3144
3144
  }>, "many">;
3145
- }>, "strip", z.ZodTypeAny, {
3145
+ }, "strip", z.ZodTypeAny, {
3146
3146
  type: "pcb_cutout";
3147
3147
  shape: "polygon";
3148
3148
  pcb_cutout_id: string;
@@ -3176,12 +3176,12 @@ interface PcbCutoutPolygon {
3176
3176
  shape: "polygon";
3177
3177
  points: Point[];
3178
3178
  }
3179
- declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
3179
+ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
3180
3180
  type: z.ZodLiteral<"pcb_cutout">;
3181
3181
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3182
3182
  pcb_group_id: z.ZodOptional<z.ZodString>;
3183
3183
  subcircuit_id: z.ZodOptional<z.ZodString>;
3184
- }, {
3184
+ } & {
3185
3185
  shape: z.ZodLiteral<"rect">;
3186
3186
  center: z.ZodObject<{
3187
3187
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -3196,7 +3196,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.object
3196
3196
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3197
3197
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3198
3198
  rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
3199
- }>, "strip", z.ZodTypeAny, {
3199
+ }, "strip", z.ZodTypeAny, {
3200
3200
  type: "pcb_cutout";
3201
3201
  width: number;
3202
3202
  height: number;
@@ -3222,12 +3222,12 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.object
3222
3222
  subcircuit_id?: string | undefined;
3223
3223
  pcb_group_id?: string | undefined;
3224
3224
  pcb_cutout_id?: string | undefined;
3225
- }>, z.ZodObject<z.objectUtil.extendShape<{
3225
+ }>, z.ZodObject<{
3226
3226
  type: z.ZodLiteral<"pcb_cutout">;
3227
3227
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3228
3228
  pcb_group_id: z.ZodOptional<z.ZodString>;
3229
3229
  subcircuit_id: z.ZodOptional<z.ZodString>;
3230
- }, {
3230
+ } & {
3231
3231
  shape: z.ZodLiteral<"circle">;
3232
3232
  center: z.ZodObject<{
3233
3233
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -3240,7 +3240,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.object
3240
3240
  y: string | number;
3241
3241
  }>;
3242
3242
  radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3243
- }>, "strip", z.ZodTypeAny, {
3243
+ }, "strip", z.ZodTypeAny, {
3244
3244
  type: "pcb_cutout";
3245
3245
  center: {
3246
3246
  x: number;
@@ -3262,12 +3262,12 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.object
3262
3262
  subcircuit_id?: string | undefined;
3263
3263
  pcb_group_id?: string | undefined;
3264
3264
  pcb_cutout_id?: string | undefined;
3265
- }>, z.ZodObject<z.objectUtil.extendShape<{
3265
+ }>, z.ZodObject<{
3266
3266
  type: z.ZodLiteral<"pcb_cutout">;
3267
3267
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3268
3268
  pcb_group_id: z.ZodOptional<z.ZodString>;
3269
3269
  subcircuit_id: z.ZodOptional<z.ZodString>;
3270
- }, {
3270
+ } & {
3271
3271
  shape: z.ZodLiteral<"polygon">;
3272
3272
  points: z.ZodArray<z.ZodObject<{
3273
3273
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -3279,7 +3279,7 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.object
3279
3279
  x: string | number;
3280
3280
  y: string | number;
3281
3281
  }>, "many">;
3282
- }>, "strip", z.ZodTypeAny, {
3282
+ }, "strip", z.ZodTypeAny, {
3283
3283
  type: "pcb_cutout";
3284
3284
  shape: "polygon";
3285
3285
  pcb_cutout_id: string;
@@ -4451,10 +4451,10 @@ declare const schematic_debug_object_base: z.ZodObject<{
4451
4451
  type: "schematic_debug_object";
4452
4452
  label?: string | undefined;
4453
4453
  }>;
4454
- declare const schematic_debug_rect: z.ZodObject<z.objectUtil.extendShape<{
4454
+ declare const schematic_debug_rect: z.ZodObject<{
4455
4455
  type: z.ZodLiteral<"schematic_debug_object">;
4456
4456
  label: z.ZodOptional<z.ZodString>;
4457
- }, {
4457
+ } & {
4458
4458
  shape: z.ZodLiteral<"rect">;
4459
4459
  center: z.ZodObject<{
4460
4460
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4476,7 +4476,7 @@ declare const schematic_debug_rect: z.ZodObject<z.objectUtil.extendShape<{
4476
4476
  width: number;
4477
4477
  height: number;
4478
4478
  }>;
4479
- }>, "strip", z.ZodTypeAny, {
4479
+ }, "strip", z.ZodTypeAny, {
4480
4480
  type: "schematic_debug_object";
4481
4481
  center: {
4482
4482
  x: number;
@@ -4501,10 +4501,10 @@ declare const schematic_debug_rect: z.ZodObject<z.objectUtil.extendShape<{
4501
4501
  };
4502
4502
  label?: string | undefined;
4503
4503
  }>;
4504
- declare const schematic_debug_line: z.ZodObject<z.objectUtil.extendShape<{
4504
+ declare const schematic_debug_line: z.ZodObject<{
4505
4505
  type: z.ZodLiteral<"schematic_debug_object">;
4506
4506
  label: z.ZodOptional<z.ZodString>;
4507
- }, {
4507
+ } & {
4508
4508
  shape: z.ZodLiteral<"line">;
4509
4509
  start: z.ZodObject<{
4510
4510
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4526,7 +4526,7 @@ declare const schematic_debug_line: z.ZodObject<z.objectUtil.extendShape<{
4526
4526
  x: string | number;
4527
4527
  y: string | number;
4528
4528
  }>;
4529
- }>, "strip", z.ZodTypeAny, {
4529
+ }, "strip", z.ZodTypeAny, {
4530
4530
  type: "schematic_debug_object";
4531
4531
  shape: "line";
4532
4532
  start: {
@@ -4551,10 +4551,10 @@ declare const schematic_debug_line: z.ZodObject<z.objectUtil.extendShape<{
4551
4551
  };
4552
4552
  label?: string | undefined;
4553
4553
  }>;
4554
- declare const schematic_debug_point: z.ZodObject<z.objectUtil.extendShape<{
4554
+ declare const schematic_debug_point: z.ZodObject<{
4555
4555
  type: z.ZodLiteral<"schematic_debug_object">;
4556
4556
  label: z.ZodOptional<z.ZodString>;
4557
- }, {
4557
+ } & {
4558
4558
  shape: z.ZodLiteral<"point">;
4559
4559
  center: z.ZodObject<{
4560
4560
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4566,7 +4566,7 @@ declare const schematic_debug_point: z.ZodObject<z.objectUtil.extendShape<{
4566
4566
  x: string | number;
4567
4567
  y: string | number;
4568
4568
  }>;
4569
- }>, "strip", z.ZodTypeAny, {
4569
+ }, "strip", z.ZodTypeAny, {
4570
4570
  type: "schematic_debug_object";
4571
4571
  center: {
4572
4572
  x: number;
@@ -4583,10 +4583,10 @@ declare const schematic_debug_point: z.ZodObject<z.objectUtil.extendShape<{
4583
4583
  shape: "point";
4584
4584
  label?: string | undefined;
4585
4585
  }>;
4586
- declare const schematic_debug_object: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
4586
+ declare const schematic_debug_object: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
4587
4587
  type: z.ZodLiteral<"schematic_debug_object">;
4588
4588
  label: z.ZodOptional<z.ZodString>;
4589
- }, {
4589
+ } & {
4590
4590
  shape: z.ZodLiteral<"rect">;
4591
4591
  center: z.ZodObject<{
4592
4592
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4608,7 +4608,7 @@ declare const schematic_debug_object: z.ZodDiscriminatedUnion<"shape", [z.ZodObj
4608
4608
  width: number;
4609
4609
  height: number;
4610
4610
  }>;
4611
- }>, "strip", z.ZodTypeAny, {
4611
+ }, "strip", z.ZodTypeAny, {
4612
4612
  type: "schematic_debug_object";
4613
4613
  center: {
4614
4614
  x: number;
@@ -4632,10 +4632,10 @@ declare const schematic_debug_object: z.ZodDiscriminatedUnion<"shape", [z.ZodObj
4632
4632
  height: number;
4633
4633
  };
4634
4634
  label?: string | undefined;
4635
- }>, z.ZodObject<z.objectUtil.extendShape<{
4635
+ }>, z.ZodObject<{
4636
4636
  type: z.ZodLiteral<"schematic_debug_object">;
4637
4637
  label: z.ZodOptional<z.ZodString>;
4638
- }, {
4638
+ } & {
4639
4639
  shape: z.ZodLiteral<"line">;
4640
4640
  start: z.ZodObject<{
4641
4641
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4657,7 +4657,7 @@ declare const schematic_debug_object: z.ZodDiscriminatedUnion<"shape", [z.ZodObj
4657
4657
  x: string | number;
4658
4658
  y: string | number;
4659
4659
  }>;
4660
- }>, "strip", z.ZodTypeAny, {
4660
+ }, "strip", z.ZodTypeAny, {
4661
4661
  type: "schematic_debug_object";
4662
4662
  shape: "line";
4663
4663
  start: {
@@ -4681,10 +4681,10 @@ declare const schematic_debug_object: z.ZodDiscriminatedUnion<"shape", [z.ZodObj
4681
4681
  y: string | number;
4682
4682
  };
4683
4683
  label?: string | undefined;
4684
- }>, z.ZodObject<z.objectUtil.extendShape<{
4684
+ }>, z.ZodObject<{
4685
4685
  type: z.ZodLiteral<"schematic_debug_object">;
4686
4686
  label: z.ZodOptional<z.ZodString>;
4687
- }, {
4687
+ } & {
4688
4688
  shape: z.ZodLiteral<"point">;
4689
4689
  center: z.ZodObject<{
4690
4690
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4696,7 +4696,7 @@ declare const schematic_debug_object: z.ZodDiscriminatedUnion<"shape", [z.ZodObj
4696
4696
  x: string | number;
4697
4697
  y: string | number;
4698
4698
  }>;
4699
- }>, "strip", z.ZodTypeAny, {
4699
+ }, "strip", z.ZodTypeAny, {
4700
4700
  type: "schematic_debug_object";
4701
4701
  center: {
4702
4702
  x: number;
@@ -4937,9 +4937,8 @@ declare const source_component_base: z.ZodObject<{
4937
4937
  internally_connected_source_port_ids?: string[][] | undefined;
4938
4938
  }>;
4939
4939
 
4940
- declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
4940
+ declare const source_simple_capacitor: z.ZodObject<{
4941
4941
  type: z.ZodLiteral<"source_component">;
4942
- ftype: z.ZodOptional<z.ZodString>;
4943
4942
  source_component_id: z.ZodString;
4944
4943
  name: z.ZodString;
4945
4944
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -4948,13 +4947,13 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
4948
4947
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4949
4948
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
4950
4949
  source_group_id: z.ZodOptional<z.ZodString>;
4951
- }, {
4950
+ } & {
4952
4951
  ftype: z.ZodLiteral<"simple_capacitor">;
4953
4952
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
4954
4953
  max_voltage_rating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
4955
4954
  display_capacitance: z.ZodOptional<z.ZodString>;
4956
4955
  max_decoupling_trace_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
4957
- }>, "strip", z.ZodTypeAny, {
4956
+ }, "strip", z.ZodTypeAny, {
4958
4957
  type: "source_component";
4959
4958
  name: string;
4960
4959
  source_component_id: string;
@@ -4997,9 +4996,8 @@ interface SourceSimpleCapacitor extends SourceComponentBase {
4997
4996
  max_decoupling_trace_length?: number;
4998
4997
  }
4999
4998
 
5000
- declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
4999
+ declare const source_simple_resistor: z.ZodObject<{
5001
5000
  type: z.ZodLiteral<"source_component">;
5002
- ftype: z.ZodOptional<z.ZodString>;
5003
5001
  source_component_id: z.ZodString;
5004
5002
  name: z.ZodString;
5005
5003
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5008,11 +5006,11 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
5008
5006
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5009
5007
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5010
5008
  source_group_id: z.ZodOptional<z.ZodString>;
5011
- }, {
5009
+ } & {
5012
5010
  ftype: z.ZodLiteral<"simple_resistor">;
5013
5011
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5014
5012
  display_resistance: z.ZodOptional<z.ZodString>;
5015
- }>, "strip", z.ZodTypeAny, {
5013
+ }, "strip", z.ZodTypeAny, {
5016
5014
  type: "source_component";
5017
5015
  name: string;
5018
5016
  source_component_id: string;
@@ -5049,9 +5047,8 @@ interface SourceSimpleResistor extends SourceComponentBase {
5049
5047
  display_resistance?: string;
5050
5048
  }
5051
5049
 
5052
- declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
5050
+ declare const source_simple_diode: z.ZodObject<{
5053
5051
  type: z.ZodLiteral<"source_component">;
5054
- ftype: z.ZodOptional<z.ZodString>;
5055
5052
  source_component_id: z.ZodString;
5056
5053
  name: z.ZodString;
5057
5054
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5060,9 +5057,9 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
5060
5057
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5061
5058
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5062
5059
  source_group_id: z.ZodOptional<z.ZodString>;
5063
- }, {
5060
+ } & {
5064
5061
  ftype: z.ZodLiteral<"simple_diode">;
5065
- }>, "strip", z.ZodTypeAny, {
5062
+ }, "strip", z.ZodTypeAny, {
5066
5063
  type: "source_component";
5067
5064
  name: string;
5068
5065
  source_component_id: string;
@@ -5093,9 +5090,8 @@ interface SourceSimpleDiode extends SourceComponentBase {
5093
5090
  ftype: "simple_diode";
5094
5091
  }
5095
5092
 
5096
- declare const source_simple_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
5093
+ declare const source_simple_led: z.ZodObject<{
5097
5094
  type: z.ZodLiteral<"source_component">;
5098
- ftype: z.ZodOptional<z.ZodString>;
5099
5095
  source_component_id: z.ZodString;
5100
5096
  name: z.ZodString;
5101
5097
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5104,13 +5100,11 @@ declare const source_simple_led: z.ZodObject<z.objectUtil.extendShape<z.objectUt
5104
5100
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5105
5101
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5106
5102
  source_group_id: z.ZodOptional<z.ZodString>;
5107
- }, {
5108
- ftype: z.ZodLiteral<"simple_diode">;
5109
- }>, {
5103
+ } & {
5110
5104
  ftype: z.ZodLiteral<"simple_led">;
5111
5105
  color: z.ZodOptional<z.ZodString>;
5112
5106
  wavelength: z.ZodOptional<z.ZodString>;
5113
- }>, "strip", z.ZodTypeAny, {
5107
+ }, "strip", z.ZodTypeAny, {
5114
5108
  type: "source_component";
5115
5109
  name: string;
5116
5110
  source_component_id: string;
@@ -5147,9 +5141,8 @@ interface SourceSimpleLed extends Omit<SourceSimpleDiode, "ftype"> {
5147
5141
  wavelength?: string;
5148
5142
  }
5149
5143
 
5150
- declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
5144
+ declare const source_simple_ground: z.ZodObject<{
5151
5145
  type: z.ZodLiteral<"source_component">;
5152
- ftype: z.ZodOptional<z.ZodString>;
5153
5146
  source_component_id: z.ZodString;
5154
5147
  name: z.ZodString;
5155
5148
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5158,9 +5151,9 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
5158
5151
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5159
5152
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5160
5153
  source_group_id: z.ZodOptional<z.ZodString>;
5161
- }, {
5154
+ } & {
5162
5155
  ftype: z.ZodLiteral<"simple_ground">;
5163
- }>, "strip", z.ZodTypeAny, {
5156
+ }, "strip", z.ZodTypeAny, {
5164
5157
  type: "source_component";
5165
5158
  name: string;
5166
5159
  source_component_id: string;
@@ -5194,9 +5187,8 @@ interface SourceSimpleGround extends SourceComponentBase {
5194
5187
  /**
5195
5188
  * @deprecated Use source_simple_chip instead. This will be removed in a future version.
5196
5189
  */
5197
- declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
5190
+ declare const source_simple_bug: z.ZodObject<{
5198
5191
  type: z.ZodLiteral<"source_component">;
5199
- ftype: z.ZodOptional<z.ZodString>;
5200
5192
  source_component_id: z.ZodString;
5201
5193
  name: z.ZodString;
5202
5194
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5205,9 +5197,9 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
5205
5197
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5206
5198
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5207
5199
  source_group_id: z.ZodOptional<z.ZodString>;
5208
- }, {
5200
+ } & {
5209
5201
  ftype: z.ZodLiteral<"simple_bug">;
5210
- }>, "strip", z.ZodTypeAny, {
5202
+ }, "strip", z.ZodTypeAny, {
5211
5203
  type: "source_component";
5212
5204
  name: string;
5213
5205
  source_component_id: string;
@@ -5233,9 +5225,8 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
5233
5225
  type source_simple_bug = z.infer<typeof source_simple_bug>;
5234
5226
  type SourceSimpleBugInput = z.input<typeof source_simple_bug>;
5235
5227
 
5236
- declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
5228
+ declare const source_simple_chip: z.ZodObject<{
5237
5229
  type: z.ZodLiteral<"source_component">;
5238
- ftype: z.ZodOptional<z.ZodString>;
5239
5230
  source_component_id: z.ZodString;
5240
5231
  name: z.ZodString;
5241
5232
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5244,9 +5235,9 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
5244
5235
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5245
5236
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5246
5237
  source_group_id: z.ZodOptional<z.ZodString>;
5247
- }, {
5238
+ } & {
5248
5239
  ftype: z.ZodLiteral<"simple_chip">;
5249
- }>, "strip", z.ZodTypeAny, {
5240
+ }, "strip", z.ZodTypeAny, {
5250
5241
  type: "source_component";
5251
5242
  name: string;
5252
5243
  source_component_id: string;
@@ -5277,9 +5268,8 @@ interface SourceSimpleChip extends SourceComponentBase {
5277
5268
  ftype: "simple_chip";
5278
5269
  }
5279
5270
 
5280
- declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
5271
+ declare const source_led: z.ZodObject<{
5281
5272
  type: z.ZodLiteral<"source_component">;
5282
- ftype: z.ZodOptional<z.ZodString>;
5283
5273
  source_component_id: z.ZodString;
5284
5274
  name: z.ZodString;
5285
5275
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5288,11 +5278,9 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
5288
5278
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5289
5279
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5290
5280
  source_group_id: z.ZodOptional<z.ZodString>;
5291
- }, {
5292
- ftype: z.ZodLiteral<"simple_diode">;
5293
- }>, {
5281
+ } & {
5294
5282
  ftype: z.ZodLiteral<"led">;
5295
- }>, "strip", z.ZodTypeAny, {
5283
+ }, "strip", z.ZodTypeAny, {
5296
5284
  type: "source_component";
5297
5285
  name: string;
5298
5286
  source_component_id: string;
@@ -5323,9 +5311,8 @@ interface SourceLed extends SourceComponentBase {
5323
5311
  ftype: "led";
5324
5312
  }
5325
5313
 
5326
- declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
5314
+ declare const source_simple_power_source: z.ZodObject<{
5327
5315
  type: z.ZodLiteral<"source_component">;
5328
- ftype: z.ZodOptional<z.ZodString>;
5329
5316
  source_component_id: z.ZodString;
5330
5317
  name: z.ZodString;
5331
5318
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5334,10 +5321,10 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
5334
5321
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5335
5322
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5336
5323
  source_group_id: z.ZodOptional<z.ZodString>;
5337
- }, {
5324
+ } & {
5338
5325
  ftype: z.ZodLiteral<"simple_power_source">;
5339
5326
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5340
- }>, "strip", z.ZodTypeAny, {
5327
+ }, "strip", z.ZodTypeAny, {
5341
5328
  type: "source_component";
5342
5329
  name: string;
5343
5330
  source_component_id: string;
@@ -5371,9 +5358,8 @@ interface SourceSimplePowerSource extends SourceComponentBase {
5371
5358
  voltage: number;
5372
5359
  }
5373
5360
 
5374
- declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
5361
+ declare const source_simple_battery: z.ZodObject<{
5375
5362
  type: z.ZodLiteral<"source_component">;
5376
- ftype: z.ZodOptional<z.ZodString>;
5377
5363
  source_component_id: z.ZodString;
5378
5364
  name: z.ZodString;
5379
5365
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5382,10 +5368,10 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
5382
5368
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5383
5369
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5384
5370
  source_group_id: z.ZodOptional<z.ZodString>;
5385
- }, {
5371
+ } & {
5386
5372
  ftype: z.ZodLiteral<"simple_battery">;
5387
5373
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
5388
- }>, "strip", z.ZodTypeAny, {
5374
+ }, "strip", z.ZodTypeAny, {
5389
5375
  type: "source_component";
5390
5376
  name: string;
5391
5377
  source_component_id: string;
@@ -5419,9 +5405,8 @@ interface SourceSimpleBattery extends SourceComponentBase {
5419
5405
  capacity: number;
5420
5406
  }
5421
5407
 
5422
- declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
5408
+ declare const source_simple_inductor: z.ZodObject<{
5423
5409
  type: z.ZodLiteral<"source_component">;
5424
- ftype: z.ZodOptional<z.ZodString>;
5425
5410
  source_component_id: z.ZodString;
5426
5411
  name: z.ZodString;
5427
5412
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5430,10 +5415,10 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
5430
5415
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5431
5416
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5432
5417
  source_group_id: z.ZodOptional<z.ZodString>;
5433
- }, {
5418
+ } & {
5434
5419
  ftype: z.ZodLiteral<"simple_inductor">;
5435
5420
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5436
- }>, "strip", z.ZodTypeAny, {
5421
+ }, "strip", z.ZodTypeAny, {
5437
5422
  type: "source_component";
5438
5423
  name: string;
5439
5424
  source_component_id: string;
@@ -5467,9 +5452,8 @@ interface SourceSimpleInductor extends SourceComponentBase {
5467
5452
  inductance: number;
5468
5453
  }
5469
5454
 
5470
- declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
5455
+ declare const source_simple_push_button: z.ZodObject<{
5471
5456
  type: z.ZodLiteral<"source_component">;
5472
- ftype: z.ZodOptional<z.ZodString>;
5473
5457
  source_component_id: z.ZodString;
5474
5458
  name: z.ZodString;
5475
5459
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5478,9 +5462,9 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
5478
5462
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5479
5463
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5480
5464
  source_group_id: z.ZodOptional<z.ZodString>;
5481
- }, {
5465
+ } & {
5482
5466
  ftype: z.ZodLiteral<"simple_push_button">;
5483
- }>, "strip", z.ZodTypeAny, {
5467
+ }, "strip", z.ZodTypeAny, {
5484
5468
  type: "source_component";
5485
5469
  name: string;
5486
5470
  source_component_id: string;
@@ -5511,9 +5495,8 @@ interface SourceSimplePushButton extends SourceComponentBase {
5511
5495
  ftype: "simple_push_button";
5512
5496
  }
5513
5497
 
5514
- declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<{
5498
+ declare const source_simple_potentiometer: z.ZodObject<{
5515
5499
  type: z.ZodLiteral<"source_component">;
5516
- ftype: z.ZodOptional<z.ZodString>;
5517
5500
  source_component_id: z.ZodString;
5518
5501
  name: z.ZodString;
5519
5502
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5522,10 +5505,10 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
5522
5505
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5523
5506
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5524
5507
  source_group_id: z.ZodOptional<z.ZodString>;
5525
- }, {
5508
+ } & {
5526
5509
  ftype: z.ZodLiteral<"simple_potentiometer">;
5527
5510
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5528
- }>, "strip", z.ZodTypeAny, {
5511
+ }, "strip", z.ZodTypeAny, {
5529
5512
  type: "source_component";
5530
5513
  name: string;
5531
5514
  source_component_id: string;
@@ -5553,9 +5536,8 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
5553
5536
  type SourceSimplePotentiometer = z.infer<typeof source_simple_potentiometer>;
5554
5537
  type SourceSimplePotentiometerInput = z.input<typeof source_simple_potentiometer>;
5555
5538
 
5556
- declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
5539
+ declare const source_simple_crystal: z.ZodObject<{
5557
5540
  type: z.ZodLiteral<"source_component">;
5558
- ftype: z.ZodOptional<z.ZodString>;
5559
5541
  source_component_id: z.ZodString;
5560
5542
  name: z.ZodString;
5561
5543
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5564,11 +5546,11 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
5564
5546
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5565
5547
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5566
5548
  source_group_id: z.ZodOptional<z.ZodString>;
5567
- }, {
5549
+ } & {
5568
5550
  ftype: z.ZodLiteral<"simple_crystal">;
5569
5551
  frequency: z.ZodNumber;
5570
5552
  load_capacitance: z.ZodOptional<z.ZodNumber>;
5571
- }>, "strip", z.ZodTypeAny, {
5553
+ }, "strip", z.ZodTypeAny, {
5572
5554
  type: "source_component";
5573
5555
  name: string;
5574
5556
  source_component_id: string;
@@ -5605,9 +5587,8 @@ interface SourceSimpleCrystal extends SourceComponentBase {
5605
5587
  load_capacitance?: number;
5606
5588
  }
5607
5589
 
5608
- declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
5590
+ declare const source_simple_pin_header: z.ZodObject<{
5609
5591
  type: z.ZodLiteral<"source_component">;
5610
- ftype: z.ZodOptional<z.ZodString>;
5611
5592
  source_component_id: z.ZodString;
5612
5593
  name: z.ZodString;
5613
5594
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5616,11 +5597,11 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
5616
5597
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5617
5598
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5618
5599
  source_group_id: z.ZodOptional<z.ZodString>;
5619
- }, {
5600
+ } & {
5620
5601
  ftype: z.ZodLiteral<"simple_pin_header">;
5621
5602
  pin_count: z.ZodNumber;
5622
5603
  gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
5623
- }>, "strip", z.ZodTypeAny, {
5604
+ }, "strip", z.ZodTypeAny, {
5624
5605
  type: "source_component";
5625
5606
  name: string;
5626
5607
  source_component_id: string;
@@ -5650,9 +5631,8 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
5650
5631
  type SourceSimplePinHeader = z.infer<typeof source_simple_pin_header>;
5651
5632
  type SourceSimplePinHeaderInput = z.input<typeof source_simple_pin_header>;
5652
5633
 
5653
- declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
5634
+ declare const source_simple_resonator: z.ZodObject<{
5654
5635
  type: z.ZodLiteral<"source_component">;
5655
- ftype: z.ZodOptional<z.ZodString>;
5656
5636
  source_component_id: z.ZodString;
5657
5637
  name: z.ZodString;
5658
5638
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5661,12 +5641,12 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
5661
5641
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5662
5642
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5663
5643
  source_group_id: z.ZodOptional<z.ZodString>;
5664
- }, {
5644
+ } & {
5665
5645
  ftype: z.ZodLiteral<"simple_resonator">;
5666
5646
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
5667
5647
  equivalent_series_resistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5668
5648
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5669
- }>, "strip", z.ZodTypeAny, {
5649
+ }, "strip", z.ZodTypeAny, {
5670
5650
  type: "source_component";
5671
5651
  name: string;
5672
5652
  source_component_id: string;
@@ -5706,9 +5686,8 @@ interface SourceSimpleResonator extends SourceComponentBase {
5706
5686
  frequency: number;
5707
5687
  }
5708
5688
 
5709
- declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
5689
+ declare const source_simple_transistor: z.ZodObject<{
5710
5690
  type: z.ZodLiteral<"source_component">;
5711
- ftype: z.ZodOptional<z.ZodString>;
5712
5691
  source_component_id: z.ZodString;
5713
5692
  name: z.ZodString;
5714
5693
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5717,10 +5696,10 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
5717
5696
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5718
5697
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5719
5698
  source_group_id: z.ZodOptional<z.ZodString>;
5720
- }, {
5699
+ } & {
5721
5700
  ftype: z.ZodLiteral<"simple_transistor">;
5722
5701
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
5723
- }>, "strip", z.ZodTypeAny, {
5702
+ }, "strip", z.ZodTypeAny, {
5724
5703
  type: "source_component";
5725
5704
  name: string;
5726
5705
  source_component_id: string;
@@ -5756,9 +5735,8 @@ interface SourceSimpleTransistor extends SourceComponentBase {
5756
5735
  transistor_type: "npn" | "pnp";
5757
5736
  }
5758
5737
 
5759
- declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
5738
+ declare const source_simple_mosfet: z.ZodObject<{
5760
5739
  type: z.ZodLiteral<"source_component">;
5761
- ftype: z.ZodOptional<z.ZodString>;
5762
5740
  source_component_id: z.ZodString;
5763
5741
  name: z.ZodString;
5764
5742
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5767,11 +5745,11 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
5767
5745
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5768
5746
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5769
5747
  source_group_id: z.ZodOptional<z.ZodString>;
5770
- }, {
5748
+ } & {
5771
5749
  ftype: z.ZodLiteral<"simple_mosfet">;
5772
5750
  channel_type: z.ZodEnum<["n", "p"]>;
5773
5751
  mosfet_mode: z.ZodEnum<["enhancement", "depletion"]>;
5774
- }>, "strip", z.ZodTypeAny, {
5752
+ }, "strip", z.ZodTypeAny, {
5775
5753
  type: "source_component";
5776
5754
  name: string;
5777
5755
  source_component_id: string;
@@ -5810,9 +5788,8 @@ interface SourceSimpleMosfet extends SourceComponentBase {
5810
5788
  mosfet_mode: "enhancement" | "depletion";
5811
5789
  }
5812
5790
 
5813
- declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
5791
+ declare const source_simple_switch: z.ZodObject<{
5814
5792
  type: z.ZodLiteral<"source_component">;
5815
- ftype: z.ZodOptional<z.ZodString>;
5816
5793
  source_component_id: z.ZodString;
5817
5794
  name: z.ZodString;
5818
5795
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -5821,9 +5798,9 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
5821
5798
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5822
5799
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5823
5800
  source_group_id: z.ZodOptional<z.ZodString>;
5824
- }, {
5801
+ } & {
5825
5802
  ftype: z.ZodLiteral<"simple_switch">;
5826
- }>, "strip", z.ZodTypeAny, {
5803
+ }, "strip", z.ZodTypeAny, {
5827
5804
  type: "source_component";
5828
5805
  name: string;
5829
5806
  source_component_id: string;
@@ -5993,9 +5970,8 @@ interface SourceFailedToCreateComponentError {
5993
5970
  };
5994
5971
  }
5995
5972
 
5996
- declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
5973
+ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
5997
5974
  type: z.ZodLiteral<"source_component">;
5998
- ftype: z.ZodOptional<z.ZodString>;
5999
5975
  source_component_id: z.ZodString;
6000
5976
  name: z.ZodString;
6001
5977
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6004,11 +5980,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6004
5980
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6005
5981
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6006
5982
  source_group_id: z.ZodOptional<z.ZodString>;
6007
- }, {
5983
+ } & {
6008
5984
  ftype: z.ZodLiteral<"simple_resistor">;
6009
5985
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6010
5986
  display_resistance: z.ZodOptional<z.ZodString>;
6011
- }>, "strip", z.ZodTypeAny, {
5987
+ }, "strip", z.ZodTypeAny, {
6012
5988
  type: "source_component";
6013
5989
  name: string;
6014
5990
  source_component_id: string;
@@ -6034,9 +6010,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6034
6010
  are_pins_interchangeable?: boolean | undefined;
6035
6011
  internally_connected_source_port_ids?: string[][] | undefined;
6036
6012
  display_resistance?: string | undefined;
6037
- }>, z.ZodObject<z.objectUtil.extendShape<{
6013
+ }>, z.ZodObject<{
6038
6014
  type: z.ZodLiteral<"source_component">;
6039
- ftype: z.ZodOptional<z.ZodString>;
6040
6015
  source_component_id: z.ZodString;
6041
6016
  name: z.ZodString;
6042
6017
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6045,13 +6020,13 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6045
6020
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6046
6021
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6047
6022
  source_group_id: z.ZodOptional<z.ZodString>;
6048
- }, {
6023
+ } & {
6049
6024
  ftype: z.ZodLiteral<"simple_capacitor">;
6050
6025
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
6051
6026
  max_voltage_rating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6052
6027
  display_capacitance: z.ZodOptional<z.ZodString>;
6053
6028
  max_decoupling_trace_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6054
- }>, "strip", z.ZodTypeAny, {
6029
+ }, "strip", z.ZodTypeAny, {
6055
6030
  type: "source_component";
6056
6031
  name: string;
6057
6032
  source_component_id: string;
@@ -6081,9 +6056,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6081
6056
  max_voltage_rating?: string | number | undefined;
6082
6057
  display_capacitance?: string | undefined;
6083
6058
  max_decoupling_trace_length?: string | number | undefined;
6084
- }>, z.ZodObject<z.objectUtil.extendShape<{
6059
+ }>, z.ZodObject<{
6085
6060
  type: z.ZodLiteral<"source_component">;
6086
- ftype: z.ZodOptional<z.ZodString>;
6087
6061
  source_component_id: z.ZodString;
6088
6062
  name: z.ZodString;
6089
6063
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6092,9 +6066,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6092
6066
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6093
6067
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6094
6068
  source_group_id: z.ZodOptional<z.ZodString>;
6095
- }, {
6069
+ } & {
6096
6070
  ftype: z.ZodLiteral<"simple_diode">;
6097
- }>, "strip", z.ZodTypeAny, {
6071
+ }, "strip", z.ZodTypeAny, {
6098
6072
  type: "source_component";
6099
6073
  name: string;
6100
6074
  source_component_id: string;
@@ -6116,9 +6090,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6116
6090
  display_value?: string | undefined;
6117
6091
  are_pins_interchangeable?: boolean | undefined;
6118
6092
  internally_connected_source_port_ids?: string[][] | undefined;
6119
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
6093
+ }>, z.ZodObject<{
6120
6094
  type: z.ZodLiteral<"source_component">;
6121
- ftype: z.ZodOptional<z.ZodString>;
6122
6095
  source_component_id: z.ZodString;
6123
6096
  name: z.ZodString;
6124
6097
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6127,13 +6100,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6127
6100
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6128
6101
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6129
6102
  source_group_id: z.ZodOptional<z.ZodString>;
6130
- }, {
6131
- ftype: z.ZodLiteral<"simple_diode">;
6132
- }>, {
6103
+ } & {
6133
6104
  ftype: z.ZodLiteral<"simple_led">;
6134
6105
  color: z.ZodOptional<z.ZodString>;
6135
6106
  wavelength: z.ZodOptional<z.ZodString>;
6136
- }>, "strip", z.ZodTypeAny, {
6107
+ }, "strip", z.ZodTypeAny, {
6137
6108
  type: "source_component";
6138
6109
  name: string;
6139
6110
  source_component_id: string;
@@ -6159,9 +6130,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6159
6130
  are_pins_interchangeable?: boolean | undefined;
6160
6131
  internally_connected_source_port_ids?: string[][] | undefined;
6161
6132
  wavelength?: string | undefined;
6162
- }>, z.ZodObject<z.objectUtil.extendShape<{
6133
+ }>, z.ZodObject<{
6163
6134
  type: z.ZodLiteral<"source_component">;
6164
- ftype: z.ZodOptional<z.ZodString>;
6165
6135
  source_component_id: z.ZodString;
6166
6136
  name: z.ZodString;
6167
6137
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6170,9 +6140,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6170
6140
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6171
6141
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6172
6142
  source_group_id: z.ZodOptional<z.ZodString>;
6173
- }, {
6143
+ } & {
6174
6144
  ftype: z.ZodLiteral<"simple_ground">;
6175
- }>, "strip", z.ZodTypeAny, {
6145
+ }, "strip", z.ZodTypeAny, {
6176
6146
  type: "source_component";
6177
6147
  name: string;
6178
6148
  source_component_id: string;
@@ -6194,9 +6164,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6194
6164
  display_value?: string | undefined;
6195
6165
  are_pins_interchangeable?: boolean | undefined;
6196
6166
  internally_connected_source_port_ids?: string[][] | undefined;
6197
- }>, z.ZodObject<z.objectUtil.extendShape<{
6167
+ }>, z.ZodObject<{
6198
6168
  type: z.ZodLiteral<"source_component">;
6199
- ftype: z.ZodOptional<z.ZodString>;
6200
6169
  source_component_id: z.ZodString;
6201
6170
  name: z.ZodString;
6202
6171
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6205,9 +6174,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6205
6174
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6206
6175
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6207
6176
  source_group_id: z.ZodOptional<z.ZodString>;
6208
- }, {
6177
+ } & {
6209
6178
  ftype: z.ZodLiteral<"simple_chip">;
6210
- }>, "strip", z.ZodTypeAny, {
6179
+ }, "strip", z.ZodTypeAny, {
6211
6180
  type: "source_component";
6212
6181
  name: string;
6213
6182
  source_component_id: string;
@@ -6229,9 +6198,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6229
6198
  display_value?: string | undefined;
6230
6199
  are_pins_interchangeable?: boolean | undefined;
6231
6200
  internally_connected_source_port_ids?: string[][] | undefined;
6232
- }>, z.ZodObject<z.objectUtil.extendShape<{
6201
+ }>, z.ZodObject<{
6233
6202
  type: z.ZodLiteral<"source_component">;
6234
- ftype: z.ZodOptional<z.ZodString>;
6235
6203
  source_component_id: z.ZodString;
6236
6204
  name: z.ZodString;
6237
6205
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6240,9 +6208,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6240
6208
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6241
6209
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6242
6210
  source_group_id: z.ZodOptional<z.ZodString>;
6243
- }, {
6211
+ } & {
6244
6212
  ftype: z.ZodLiteral<"simple_bug">;
6245
- }>, "strip", z.ZodTypeAny, {
6213
+ }, "strip", z.ZodTypeAny, {
6246
6214
  type: "source_component";
6247
6215
  name: string;
6248
6216
  source_component_id: string;
@@ -6264,9 +6232,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6264
6232
  display_value?: string | undefined;
6265
6233
  are_pins_interchangeable?: boolean | undefined;
6266
6234
  internally_connected_source_port_ids?: string[][] | undefined;
6267
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
6235
+ }>, z.ZodObject<{
6268
6236
  type: z.ZodLiteral<"source_component">;
6269
- ftype: z.ZodOptional<z.ZodString>;
6270
6237
  source_component_id: z.ZodString;
6271
6238
  name: z.ZodString;
6272
6239
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6275,11 +6242,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6275
6242
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6276
6243
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6277
6244
  source_group_id: z.ZodOptional<z.ZodString>;
6278
- }, {
6279
- ftype: z.ZodLiteral<"simple_diode">;
6280
- }>, {
6245
+ } & {
6281
6246
  ftype: z.ZodLiteral<"led">;
6282
- }>, "strip", z.ZodTypeAny, {
6247
+ }, "strip", z.ZodTypeAny, {
6283
6248
  type: "source_component";
6284
6249
  name: string;
6285
6250
  source_component_id: string;
@@ -6301,9 +6266,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6301
6266
  display_value?: string | undefined;
6302
6267
  are_pins_interchangeable?: boolean | undefined;
6303
6268
  internally_connected_source_port_ids?: string[][] | undefined;
6304
- }>, z.ZodObject<z.objectUtil.extendShape<{
6269
+ }>, z.ZodObject<{
6305
6270
  type: z.ZodLiteral<"source_component">;
6306
- ftype: z.ZodOptional<z.ZodString>;
6307
6271
  source_component_id: z.ZodString;
6308
6272
  name: z.ZodString;
6309
6273
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6312,10 +6276,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6312
6276
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6313
6277
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6314
6278
  source_group_id: z.ZodOptional<z.ZodString>;
6315
- }, {
6279
+ } & {
6316
6280
  ftype: z.ZodLiteral<"simple_power_source">;
6317
6281
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6318
- }>, "strip", z.ZodTypeAny, {
6282
+ }, "strip", z.ZodTypeAny, {
6319
6283
  type: "source_component";
6320
6284
  name: string;
6321
6285
  source_component_id: string;
@@ -6339,9 +6303,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6339
6303
  display_value?: string | undefined;
6340
6304
  are_pins_interchangeable?: boolean | undefined;
6341
6305
  internally_connected_source_port_ids?: string[][] | undefined;
6342
- }>, z.ZodObject<z.objectUtil.extendShape<{
6306
+ }>, z.ZodObject<{
6343
6307
  type: z.ZodLiteral<"source_component">;
6344
- ftype: z.ZodOptional<z.ZodString>;
6345
6308
  source_component_id: z.ZodString;
6346
6309
  name: z.ZodString;
6347
6310
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6350,10 +6313,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6350
6313
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6351
6314
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6352
6315
  source_group_id: z.ZodOptional<z.ZodString>;
6353
- }, {
6316
+ } & {
6354
6317
  ftype: z.ZodLiteral<"simple_battery">;
6355
6318
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
6356
- }>, "strip", z.ZodTypeAny, {
6319
+ }, "strip", z.ZodTypeAny, {
6357
6320
  type: "source_component";
6358
6321
  name: string;
6359
6322
  source_component_id: string;
@@ -6377,9 +6340,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6377
6340
  display_value?: string | undefined;
6378
6341
  are_pins_interchangeable?: boolean | undefined;
6379
6342
  internally_connected_source_port_ids?: string[][] | undefined;
6380
- }>, z.ZodObject<z.objectUtil.extendShape<{
6343
+ }>, z.ZodObject<{
6381
6344
  type: z.ZodLiteral<"source_component">;
6382
- ftype: z.ZodOptional<z.ZodString>;
6383
6345
  source_component_id: z.ZodString;
6384
6346
  name: z.ZodString;
6385
6347
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6388,10 +6350,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6388
6350
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6389
6351
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6390
6352
  source_group_id: z.ZodOptional<z.ZodString>;
6391
- }, {
6353
+ } & {
6392
6354
  ftype: z.ZodLiteral<"simple_inductor">;
6393
6355
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6394
- }>, "strip", z.ZodTypeAny, {
6356
+ }, "strip", z.ZodTypeAny, {
6395
6357
  type: "source_component";
6396
6358
  name: string;
6397
6359
  source_component_id: string;
@@ -6415,9 +6377,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6415
6377
  display_value?: string | undefined;
6416
6378
  are_pins_interchangeable?: boolean | undefined;
6417
6379
  internally_connected_source_port_ids?: string[][] | undefined;
6418
- }>, z.ZodObject<z.objectUtil.extendShape<{
6380
+ }>, z.ZodObject<{
6419
6381
  type: z.ZodLiteral<"source_component">;
6420
- ftype: z.ZodOptional<z.ZodString>;
6421
6382
  source_component_id: z.ZodString;
6422
6383
  name: z.ZodString;
6423
6384
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6426,9 +6387,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6426
6387
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6427
6388
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6428
6389
  source_group_id: z.ZodOptional<z.ZodString>;
6429
- }, {
6390
+ } & {
6430
6391
  ftype: z.ZodLiteral<"simple_push_button">;
6431
- }>, "strip", z.ZodTypeAny, {
6392
+ }, "strip", z.ZodTypeAny, {
6432
6393
  type: "source_component";
6433
6394
  name: string;
6434
6395
  source_component_id: string;
@@ -6450,9 +6411,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6450
6411
  display_value?: string | undefined;
6451
6412
  are_pins_interchangeable?: boolean | undefined;
6452
6413
  internally_connected_source_port_ids?: string[][] | undefined;
6453
- }>, z.ZodObject<z.objectUtil.extendShape<{
6414
+ }>, z.ZodObject<{
6454
6415
  type: z.ZodLiteral<"source_component">;
6455
- ftype: z.ZodOptional<z.ZodString>;
6456
6416
  source_component_id: z.ZodString;
6457
6417
  name: z.ZodString;
6458
6418
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6461,10 +6421,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6461
6421
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6462
6422
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6463
6423
  source_group_id: z.ZodOptional<z.ZodString>;
6464
- }, {
6424
+ } & {
6465
6425
  ftype: z.ZodLiteral<"simple_potentiometer">;
6466
6426
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6467
- }>, "strip", z.ZodTypeAny, {
6427
+ }, "strip", z.ZodTypeAny, {
6468
6428
  type: "source_component";
6469
6429
  name: string;
6470
6430
  source_component_id: string;
@@ -6488,9 +6448,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6488
6448
  display_value?: string | undefined;
6489
6449
  are_pins_interchangeable?: boolean | undefined;
6490
6450
  internally_connected_source_port_ids?: string[][] | undefined;
6491
- }>, z.ZodObject<z.objectUtil.extendShape<{
6451
+ }>, z.ZodObject<{
6492
6452
  type: z.ZodLiteral<"source_component">;
6493
- ftype: z.ZodOptional<z.ZodString>;
6494
6453
  source_component_id: z.ZodString;
6495
6454
  name: z.ZodString;
6496
6455
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6499,11 +6458,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6499
6458
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6500
6459
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6501
6460
  source_group_id: z.ZodOptional<z.ZodString>;
6502
- }, {
6461
+ } & {
6503
6462
  ftype: z.ZodLiteral<"simple_crystal">;
6504
6463
  frequency: z.ZodNumber;
6505
6464
  load_capacitance: z.ZodOptional<z.ZodNumber>;
6506
- }>, "strip", z.ZodTypeAny, {
6465
+ }, "strip", z.ZodTypeAny, {
6507
6466
  type: "source_component";
6508
6467
  name: string;
6509
6468
  source_component_id: string;
@@ -6529,9 +6488,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6529
6488
  are_pins_interchangeable?: boolean | undefined;
6530
6489
  internally_connected_source_port_ids?: string[][] | undefined;
6531
6490
  load_capacitance?: number | undefined;
6532
- }>, z.ZodObject<z.objectUtil.extendShape<{
6491
+ }>, z.ZodObject<{
6533
6492
  type: z.ZodLiteral<"source_component">;
6534
- ftype: z.ZodOptional<z.ZodString>;
6535
6493
  source_component_id: z.ZodString;
6536
6494
  name: z.ZodString;
6537
6495
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6540,11 +6498,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6540
6498
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6541
6499
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6542
6500
  source_group_id: z.ZodOptional<z.ZodString>;
6543
- }, {
6501
+ } & {
6544
6502
  ftype: z.ZodLiteral<"simple_pin_header">;
6545
6503
  pin_count: z.ZodNumber;
6546
6504
  gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
6547
- }>, "strip", z.ZodTypeAny, {
6505
+ }, "strip", z.ZodTypeAny, {
6548
6506
  type: "source_component";
6549
6507
  name: string;
6550
6508
  source_component_id: string;
@@ -6570,9 +6528,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6570
6528
  are_pins_interchangeable?: boolean | undefined;
6571
6529
  internally_connected_source_port_ids?: string[][] | undefined;
6572
6530
  gender?: "male" | "female" | undefined;
6573
- }>, z.ZodObject<z.objectUtil.extendShape<{
6531
+ }>, z.ZodObject<{
6574
6532
  type: z.ZodLiteral<"source_component">;
6575
- ftype: z.ZodOptional<z.ZodString>;
6576
6533
  source_component_id: z.ZodString;
6577
6534
  name: z.ZodString;
6578
6535
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6581,12 +6538,12 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6581
6538
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6582
6539
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6583
6540
  source_group_id: z.ZodOptional<z.ZodString>;
6584
- }, {
6541
+ } & {
6585
6542
  ftype: z.ZodLiteral<"simple_resonator">;
6586
6543
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
6587
6544
  equivalent_series_resistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
6588
6545
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6589
- }>, "strip", z.ZodTypeAny, {
6546
+ }, "strip", z.ZodTypeAny, {
6590
6547
  type: "source_component";
6591
6548
  name: string;
6592
6549
  source_component_id: string;
@@ -6614,9 +6571,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6614
6571
  are_pins_interchangeable?: boolean | undefined;
6615
6572
  internally_connected_source_port_ids?: string[][] | undefined;
6616
6573
  equivalent_series_resistance?: string | number | undefined;
6617
- }>, z.ZodObject<z.objectUtil.extendShape<{
6574
+ }>, z.ZodObject<{
6618
6575
  type: z.ZodLiteral<"source_component">;
6619
- ftype: z.ZodOptional<z.ZodString>;
6620
6576
  source_component_id: z.ZodString;
6621
6577
  name: z.ZodString;
6622
6578
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6625,9 +6581,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6625
6581
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6626
6582
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6627
6583
  source_group_id: z.ZodOptional<z.ZodString>;
6628
- }, {
6584
+ } & {
6629
6585
  ftype: z.ZodLiteral<"simple_switch">;
6630
- }>, "strip", z.ZodTypeAny, {
6586
+ }, "strip", z.ZodTypeAny, {
6631
6587
  type: "source_component";
6632
6588
  name: string;
6633
6589
  source_component_id: string;
@@ -6649,9 +6605,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6649
6605
  display_value?: string | undefined;
6650
6606
  are_pins_interchangeable?: boolean | undefined;
6651
6607
  internally_connected_source_port_ids?: string[][] | undefined;
6652
- }>, z.ZodObject<z.objectUtil.extendShape<{
6608
+ }>, z.ZodObject<{
6653
6609
  type: z.ZodLiteral<"source_component">;
6654
- ftype: z.ZodOptional<z.ZodString>;
6655
6610
  source_component_id: z.ZodString;
6656
6611
  name: z.ZodString;
6657
6612
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6660,10 +6615,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6660
6615
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6661
6616
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6662
6617
  source_group_id: z.ZodOptional<z.ZodString>;
6663
- }, {
6618
+ } & {
6664
6619
  ftype: z.ZodLiteral<"simple_transistor">;
6665
6620
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
6666
- }>, "strip", z.ZodTypeAny, {
6621
+ }, "strip", z.ZodTypeAny, {
6667
6622
  type: "source_component";
6668
6623
  name: string;
6669
6624
  source_component_id: string;
@@ -6687,9 +6642,8 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6687
6642
  display_value?: string | undefined;
6688
6643
  are_pins_interchangeable?: boolean | undefined;
6689
6644
  internally_connected_source_port_ids?: string[][] | undefined;
6690
- }>, z.ZodObject<z.objectUtil.extendShape<{
6645
+ }>, z.ZodObject<{
6691
6646
  type: z.ZodLiteral<"source_component">;
6692
- ftype: z.ZodOptional<z.ZodString>;
6693
6647
  source_component_id: z.ZodString;
6694
6648
  name: z.ZodString;
6695
6649
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -6698,11 +6652,11 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6698
6652
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6699
6653
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6700
6654
  source_group_id: z.ZodOptional<z.ZodString>;
6701
- }, {
6655
+ } & {
6702
6656
  ftype: z.ZodLiteral<"simple_mosfet">;
6703
6657
  channel_type: z.ZodEnum<["n", "p"]>;
6704
6658
  mosfet_mode: z.ZodEnum<["enhancement", "depletion"]>;
6705
- }>, "strip", z.ZodTypeAny, {
6659
+ }, "strip", z.ZodTypeAny, {
6706
6660
  type: "source_component";
6707
6661
  name: string;
6708
6662
  source_component_id: string;
@@ -7142,9 +7096,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7142
7096
  subcircuit_id?: string | undefined;
7143
7097
  port_hints?: string[] | undefined;
7144
7098
  pin_number?: number | undefined;
7145
- }>, z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
7099
+ }>, z.ZodUnion<[z.ZodObject<{
7146
7100
  type: z.ZodLiteral<"source_component">;
7147
- ftype: z.ZodOptional<z.ZodString>;
7148
7101
  source_component_id: z.ZodString;
7149
7102
  name: z.ZodString;
7150
7103
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7153,11 +7106,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7153
7106
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7154
7107
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7155
7108
  source_group_id: z.ZodOptional<z.ZodString>;
7156
- }, {
7109
+ } & {
7157
7110
  ftype: z.ZodLiteral<"simple_resistor">;
7158
7111
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7159
7112
  display_resistance: z.ZodOptional<z.ZodString>;
7160
- }>, "strip", z.ZodTypeAny, {
7113
+ }, "strip", z.ZodTypeAny, {
7161
7114
  type: "source_component";
7162
7115
  name: string;
7163
7116
  source_component_id: string;
@@ -7183,9 +7136,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7183
7136
  are_pins_interchangeable?: boolean | undefined;
7184
7137
  internally_connected_source_port_ids?: string[][] | undefined;
7185
7138
  display_resistance?: string | undefined;
7186
- }>, z.ZodObject<z.objectUtil.extendShape<{
7139
+ }>, z.ZodObject<{
7187
7140
  type: z.ZodLiteral<"source_component">;
7188
- ftype: z.ZodOptional<z.ZodString>;
7189
7141
  source_component_id: z.ZodString;
7190
7142
  name: z.ZodString;
7191
7143
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7194,13 +7146,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7194
7146
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7195
7147
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7196
7148
  source_group_id: z.ZodOptional<z.ZodString>;
7197
- }, {
7149
+ } & {
7198
7150
  ftype: z.ZodLiteral<"simple_capacitor">;
7199
7151
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
7200
7152
  max_voltage_rating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7201
7153
  display_capacitance: z.ZodOptional<z.ZodString>;
7202
7154
  max_decoupling_trace_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7203
- }>, "strip", z.ZodTypeAny, {
7155
+ }, "strip", z.ZodTypeAny, {
7204
7156
  type: "source_component";
7205
7157
  name: string;
7206
7158
  source_component_id: string;
@@ -7230,9 +7182,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7230
7182
  max_voltage_rating?: string | number | undefined;
7231
7183
  display_capacitance?: string | undefined;
7232
7184
  max_decoupling_trace_length?: string | number | undefined;
7233
- }>, z.ZodObject<z.objectUtil.extendShape<{
7185
+ }>, z.ZodObject<{
7234
7186
  type: z.ZodLiteral<"source_component">;
7235
- ftype: z.ZodOptional<z.ZodString>;
7236
7187
  source_component_id: z.ZodString;
7237
7188
  name: z.ZodString;
7238
7189
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7241,9 +7192,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7241
7192
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7242
7193
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7243
7194
  source_group_id: z.ZodOptional<z.ZodString>;
7244
- }, {
7195
+ } & {
7245
7196
  ftype: z.ZodLiteral<"simple_diode">;
7246
- }>, "strip", z.ZodTypeAny, {
7197
+ }, "strip", z.ZodTypeAny, {
7247
7198
  type: "source_component";
7248
7199
  name: string;
7249
7200
  source_component_id: string;
@@ -7265,9 +7216,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7265
7216
  display_value?: string | undefined;
7266
7217
  are_pins_interchangeable?: boolean | undefined;
7267
7218
  internally_connected_source_port_ids?: string[][] | undefined;
7268
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
7219
+ }>, z.ZodObject<{
7269
7220
  type: z.ZodLiteral<"source_component">;
7270
- ftype: z.ZodOptional<z.ZodString>;
7271
7221
  source_component_id: z.ZodString;
7272
7222
  name: z.ZodString;
7273
7223
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7276,13 +7226,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7276
7226
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7277
7227
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7278
7228
  source_group_id: z.ZodOptional<z.ZodString>;
7279
- }, {
7280
- ftype: z.ZodLiteral<"simple_diode">;
7281
- }>, {
7229
+ } & {
7282
7230
  ftype: z.ZodLiteral<"simple_led">;
7283
7231
  color: z.ZodOptional<z.ZodString>;
7284
7232
  wavelength: z.ZodOptional<z.ZodString>;
7285
- }>, "strip", z.ZodTypeAny, {
7233
+ }, "strip", z.ZodTypeAny, {
7286
7234
  type: "source_component";
7287
7235
  name: string;
7288
7236
  source_component_id: string;
@@ -7308,9 +7256,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7308
7256
  are_pins_interchangeable?: boolean | undefined;
7309
7257
  internally_connected_source_port_ids?: string[][] | undefined;
7310
7258
  wavelength?: string | undefined;
7311
- }>, z.ZodObject<z.objectUtil.extendShape<{
7259
+ }>, z.ZodObject<{
7312
7260
  type: z.ZodLiteral<"source_component">;
7313
- ftype: z.ZodOptional<z.ZodString>;
7314
7261
  source_component_id: z.ZodString;
7315
7262
  name: z.ZodString;
7316
7263
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7319,9 +7266,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7319
7266
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7320
7267
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7321
7268
  source_group_id: z.ZodOptional<z.ZodString>;
7322
- }, {
7269
+ } & {
7323
7270
  ftype: z.ZodLiteral<"simple_ground">;
7324
- }>, "strip", z.ZodTypeAny, {
7271
+ }, "strip", z.ZodTypeAny, {
7325
7272
  type: "source_component";
7326
7273
  name: string;
7327
7274
  source_component_id: string;
@@ -7343,9 +7290,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7343
7290
  display_value?: string | undefined;
7344
7291
  are_pins_interchangeable?: boolean | undefined;
7345
7292
  internally_connected_source_port_ids?: string[][] | undefined;
7346
- }>, z.ZodObject<z.objectUtil.extendShape<{
7293
+ }>, z.ZodObject<{
7347
7294
  type: z.ZodLiteral<"source_component">;
7348
- ftype: z.ZodOptional<z.ZodString>;
7349
7295
  source_component_id: z.ZodString;
7350
7296
  name: z.ZodString;
7351
7297
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7354,9 +7300,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7354
7300
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7355
7301
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7356
7302
  source_group_id: z.ZodOptional<z.ZodString>;
7357
- }, {
7303
+ } & {
7358
7304
  ftype: z.ZodLiteral<"simple_chip">;
7359
- }>, "strip", z.ZodTypeAny, {
7305
+ }, "strip", z.ZodTypeAny, {
7360
7306
  type: "source_component";
7361
7307
  name: string;
7362
7308
  source_component_id: string;
@@ -7378,9 +7324,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7378
7324
  display_value?: string | undefined;
7379
7325
  are_pins_interchangeable?: boolean | undefined;
7380
7326
  internally_connected_source_port_ids?: string[][] | undefined;
7381
- }>, z.ZodObject<z.objectUtil.extendShape<{
7327
+ }>, z.ZodObject<{
7382
7328
  type: z.ZodLiteral<"source_component">;
7383
- ftype: z.ZodOptional<z.ZodString>;
7384
7329
  source_component_id: z.ZodString;
7385
7330
  name: z.ZodString;
7386
7331
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7389,9 +7334,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7389
7334
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7390
7335
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7391
7336
  source_group_id: z.ZodOptional<z.ZodString>;
7392
- }, {
7337
+ } & {
7393
7338
  ftype: z.ZodLiteral<"simple_bug">;
7394
- }>, "strip", z.ZodTypeAny, {
7339
+ }, "strip", z.ZodTypeAny, {
7395
7340
  type: "source_component";
7396
7341
  name: string;
7397
7342
  source_component_id: string;
@@ -7413,9 +7358,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7413
7358
  display_value?: string | undefined;
7414
7359
  are_pins_interchangeable?: boolean | undefined;
7415
7360
  internally_connected_source_port_ids?: string[][] | undefined;
7416
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
7361
+ }>, z.ZodObject<{
7417
7362
  type: z.ZodLiteral<"source_component">;
7418
- ftype: z.ZodOptional<z.ZodString>;
7419
7363
  source_component_id: z.ZodString;
7420
7364
  name: z.ZodString;
7421
7365
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7424,11 +7368,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7424
7368
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7425
7369
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7426
7370
  source_group_id: z.ZodOptional<z.ZodString>;
7427
- }, {
7428
- ftype: z.ZodLiteral<"simple_diode">;
7429
- }>, {
7371
+ } & {
7430
7372
  ftype: z.ZodLiteral<"led">;
7431
- }>, "strip", z.ZodTypeAny, {
7373
+ }, "strip", z.ZodTypeAny, {
7432
7374
  type: "source_component";
7433
7375
  name: string;
7434
7376
  source_component_id: string;
@@ -7450,9 +7392,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7450
7392
  display_value?: string | undefined;
7451
7393
  are_pins_interchangeable?: boolean | undefined;
7452
7394
  internally_connected_source_port_ids?: string[][] | undefined;
7453
- }>, z.ZodObject<z.objectUtil.extendShape<{
7395
+ }>, z.ZodObject<{
7454
7396
  type: z.ZodLiteral<"source_component">;
7455
- ftype: z.ZodOptional<z.ZodString>;
7456
7397
  source_component_id: z.ZodString;
7457
7398
  name: z.ZodString;
7458
7399
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7461,10 +7402,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7461
7402
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7462
7403
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7463
7404
  source_group_id: z.ZodOptional<z.ZodString>;
7464
- }, {
7405
+ } & {
7465
7406
  ftype: z.ZodLiteral<"simple_power_source">;
7466
7407
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7467
- }>, "strip", z.ZodTypeAny, {
7408
+ }, "strip", z.ZodTypeAny, {
7468
7409
  type: "source_component";
7469
7410
  name: string;
7470
7411
  source_component_id: string;
@@ -7488,9 +7429,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7488
7429
  display_value?: string | undefined;
7489
7430
  are_pins_interchangeable?: boolean | undefined;
7490
7431
  internally_connected_source_port_ids?: string[][] | undefined;
7491
- }>, z.ZodObject<z.objectUtil.extendShape<{
7432
+ }>, z.ZodObject<{
7492
7433
  type: z.ZodLiteral<"source_component">;
7493
- ftype: z.ZodOptional<z.ZodString>;
7494
7434
  source_component_id: z.ZodString;
7495
7435
  name: z.ZodString;
7496
7436
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7499,10 +7439,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7499
7439
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7500
7440
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7501
7441
  source_group_id: z.ZodOptional<z.ZodString>;
7502
- }, {
7442
+ } & {
7503
7443
  ftype: z.ZodLiteral<"simple_battery">;
7504
7444
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
7505
- }>, "strip", z.ZodTypeAny, {
7445
+ }, "strip", z.ZodTypeAny, {
7506
7446
  type: "source_component";
7507
7447
  name: string;
7508
7448
  source_component_id: string;
@@ -7526,9 +7466,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7526
7466
  display_value?: string | undefined;
7527
7467
  are_pins_interchangeable?: boolean | undefined;
7528
7468
  internally_connected_source_port_ids?: string[][] | undefined;
7529
- }>, z.ZodObject<z.objectUtil.extendShape<{
7469
+ }>, z.ZodObject<{
7530
7470
  type: z.ZodLiteral<"source_component">;
7531
- ftype: z.ZodOptional<z.ZodString>;
7532
7471
  source_component_id: z.ZodString;
7533
7472
  name: z.ZodString;
7534
7473
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7537,10 +7476,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7537
7476
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7538
7477
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7539
7478
  source_group_id: z.ZodOptional<z.ZodString>;
7540
- }, {
7479
+ } & {
7541
7480
  ftype: z.ZodLiteral<"simple_inductor">;
7542
7481
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7543
- }>, "strip", z.ZodTypeAny, {
7482
+ }, "strip", z.ZodTypeAny, {
7544
7483
  type: "source_component";
7545
7484
  name: string;
7546
7485
  source_component_id: string;
@@ -7564,9 +7503,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7564
7503
  display_value?: string | undefined;
7565
7504
  are_pins_interchangeable?: boolean | undefined;
7566
7505
  internally_connected_source_port_ids?: string[][] | undefined;
7567
- }>, z.ZodObject<z.objectUtil.extendShape<{
7506
+ }>, z.ZodObject<{
7568
7507
  type: z.ZodLiteral<"source_component">;
7569
- ftype: z.ZodOptional<z.ZodString>;
7570
7508
  source_component_id: z.ZodString;
7571
7509
  name: z.ZodString;
7572
7510
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7575,9 +7513,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7575
7513
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7576
7514
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7577
7515
  source_group_id: z.ZodOptional<z.ZodString>;
7578
- }, {
7516
+ } & {
7579
7517
  ftype: z.ZodLiteral<"simple_push_button">;
7580
- }>, "strip", z.ZodTypeAny, {
7518
+ }, "strip", z.ZodTypeAny, {
7581
7519
  type: "source_component";
7582
7520
  name: string;
7583
7521
  source_component_id: string;
@@ -7599,9 +7537,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7599
7537
  display_value?: string | undefined;
7600
7538
  are_pins_interchangeable?: boolean | undefined;
7601
7539
  internally_connected_source_port_ids?: string[][] | undefined;
7602
- }>, z.ZodObject<z.objectUtil.extendShape<{
7540
+ }>, z.ZodObject<{
7603
7541
  type: z.ZodLiteral<"source_component">;
7604
- ftype: z.ZodOptional<z.ZodString>;
7605
7542
  source_component_id: z.ZodString;
7606
7543
  name: z.ZodString;
7607
7544
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7610,10 +7547,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7610
7547
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7611
7548
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7612
7549
  source_group_id: z.ZodOptional<z.ZodString>;
7613
- }, {
7550
+ } & {
7614
7551
  ftype: z.ZodLiteral<"simple_potentiometer">;
7615
7552
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7616
- }>, "strip", z.ZodTypeAny, {
7553
+ }, "strip", z.ZodTypeAny, {
7617
7554
  type: "source_component";
7618
7555
  name: string;
7619
7556
  source_component_id: string;
@@ -7637,9 +7574,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7637
7574
  display_value?: string | undefined;
7638
7575
  are_pins_interchangeable?: boolean | undefined;
7639
7576
  internally_connected_source_port_ids?: string[][] | undefined;
7640
- }>, z.ZodObject<z.objectUtil.extendShape<{
7577
+ }>, z.ZodObject<{
7641
7578
  type: z.ZodLiteral<"source_component">;
7642
- ftype: z.ZodOptional<z.ZodString>;
7643
7579
  source_component_id: z.ZodString;
7644
7580
  name: z.ZodString;
7645
7581
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7648,11 +7584,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7648
7584
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7649
7585
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7650
7586
  source_group_id: z.ZodOptional<z.ZodString>;
7651
- }, {
7587
+ } & {
7652
7588
  ftype: z.ZodLiteral<"simple_crystal">;
7653
7589
  frequency: z.ZodNumber;
7654
7590
  load_capacitance: z.ZodOptional<z.ZodNumber>;
7655
- }>, "strip", z.ZodTypeAny, {
7591
+ }, "strip", z.ZodTypeAny, {
7656
7592
  type: "source_component";
7657
7593
  name: string;
7658
7594
  source_component_id: string;
@@ -7678,9 +7614,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7678
7614
  are_pins_interchangeable?: boolean | undefined;
7679
7615
  internally_connected_source_port_ids?: string[][] | undefined;
7680
7616
  load_capacitance?: number | undefined;
7681
- }>, z.ZodObject<z.objectUtil.extendShape<{
7617
+ }>, z.ZodObject<{
7682
7618
  type: z.ZodLiteral<"source_component">;
7683
- ftype: z.ZodOptional<z.ZodString>;
7684
7619
  source_component_id: z.ZodString;
7685
7620
  name: z.ZodString;
7686
7621
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7689,11 +7624,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7689
7624
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7690
7625
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7691
7626
  source_group_id: z.ZodOptional<z.ZodString>;
7692
- }, {
7627
+ } & {
7693
7628
  ftype: z.ZodLiteral<"simple_pin_header">;
7694
7629
  pin_count: z.ZodNumber;
7695
7630
  gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
7696
- }>, "strip", z.ZodTypeAny, {
7631
+ }, "strip", z.ZodTypeAny, {
7697
7632
  type: "source_component";
7698
7633
  name: string;
7699
7634
  source_component_id: string;
@@ -7719,9 +7654,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7719
7654
  are_pins_interchangeable?: boolean | undefined;
7720
7655
  internally_connected_source_port_ids?: string[][] | undefined;
7721
7656
  gender?: "male" | "female" | undefined;
7722
- }>, z.ZodObject<z.objectUtil.extendShape<{
7657
+ }>, z.ZodObject<{
7723
7658
  type: z.ZodLiteral<"source_component">;
7724
- ftype: z.ZodOptional<z.ZodString>;
7725
7659
  source_component_id: z.ZodString;
7726
7660
  name: z.ZodString;
7727
7661
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7730,12 +7664,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7730
7664
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7731
7665
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7732
7666
  source_group_id: z.ZodOptional<z.ZodString>;
7733
- }, {
7667
+ } & {
7734
7668
  ftype: z.ZodLiteral<"simple_resonator">;
7735
7669
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
7736
7670
  equivalent_series_resistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
7737
7671
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7738
- }>, "strip", z.ZodTypeAny, {
7672
+ }, "strip", z.ZodTypeAny, {
7739
7673
  type: "source_component";
7740
7674
  name: string;
7741
7675
  source_component_id: string;
@@ -7763,9 +7697,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7763
7697
  are_pins_interchangeable?: boolean | undefined;
7764
7698
  internally_connected_source_port_ids?: string[][] | undefined;
7765
7699
  equivalent_series_resistance?: string | number | undefined;
7766
- }>, z.ZodObject<z.objectUtil.extendShape<{
7700
+ }>, z.ZodObject<{
7767
7701
  type: z.ZodLiteral<"source_component">;
7768
- ftype: z.ZodOptional<z.ZodString>;
7769
7702
  source_component_id: z.ZodString;
7770
7703
  name: z.ZodString;
7771
7704
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7774,9 +7707,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7774
7707
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7775
7708
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7776
7709
  source_group_id: z.ZodOptional<z.ZodString>;
7777
- }, {
7710
+ } & {
7778
7711
  ftype: z.ZodLiteral<"simple_switch">;
7779
- }>, "strip", z.ZodTypeAny, {
7712
+ }, "strip", z.ZodTypeAny, {
7780
7713
  type: "source_component";
7781
7714
  name: string;
7782
7715
  source_component_id: string;
@@ -7798,9 +7731,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7798
7731
  display_value?: string | undefined;
7799
7732
  are_pins_interchangeable?: boolean | undefined;
7800
7733
  internally_connected_source_port_ids?: string[][] | undefined;
7801
- }>, z.ZodObject<z.objectUtil.extendShape<{
7734
+ }>, z.ZodObject<{
7802
7735
  type: z.ZodLiteral<"source_component">;
7803
- ftype: z.ZodOptional<z.ZodString>;
7804
7736
  source_component_id: z.ZodString;
7805
7737
  name: z.ZodString;
7806
7738
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7809,10 +7741,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7809
7741
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7810
7742
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7811
7743
  source_group_id: z.ZodOptional<z.ZodString>;
7812
- }, {
7744
+ } & {
7813
7745
  ftype: z.ZodLiteral<"simple_transistor">;
7814
7746
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
7815
- }>, "strip", z.ZodTypeAny, {
7747
+ }, "strip", z.ZodTypeAny, {
7816
7748
  type: "source_component";
7817
7749
  name: string;
7818
7750
  source_component_id: string;
@@ -7836,9 +7768,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7836
7768
  display_value?: string | undefined;
7837
7769
  are_pins_interchangeable?: boolean | undefined;
7838
7770
  internally_connected_source_port_ids?: string[][] | undefined;
7839
- }>, z.ZodObject<z.objectUtil.extendShape<{
7771
+ }>, z.ZodObject<{
7840
7772
  type: z.ZodLiteral<"source_component">;
7841
- ftype: z.ZodOptional<z.ZodString>;
7842
7773
  source_component_id: z.ZodString;
7843
7774
  name: z.ZodString;
7844
7775
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7847,11 +7778,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7847
7778
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7848
7779
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7849
7780
  source_group_id: z.ZodOptional<z.ZodString>;
7850
- }, {
7781
+ } & {
7851
7782
  ftype: z.ZodLiteral<"simple_mosfet">;
7852
7783
  channel_type: z.ZodEnum<["n", "p"]>;
7853
7784
  mosfet_mode: z.ZodEnum<["enhancement", "depletion"]>;
7854
- }>, "strip", z.ZodTypeAny, {
7785
+ }, "strip", z.ZodTypeAny, {
7855
7786
  type: "source_component";
7856
7787
  name: string;
7857
7788
  source_component_id: string;
@@ -7970,9 +7901,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7970
7901
  x?: number | undefined;
7971
7902
  y?: number | undefined;
7972
7903
  } | undefined;
7973
- }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
7904
+ }>]>, z.ZodObject<{
7974
7905
  type: z.ZodLiteral<"source_component">;
7975
- ftype: z.ZodOptional<z.ZodString>;
7976
7906
  source_component_id: z.ZodString;
7977
7907
  name: z.ZodString;
7978
7908
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -7981,11 +7911,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7981
7911
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7982
7912
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7983
7913
  source_group_id: z.ZodOptional<z.ZodString>;
7984
- }, {
7985
- ftype: z.ZodLiteral<"simple_diode">;
7986
- }>, {
7914
+ } & {
7987
7915
  ftype: z.ZodLiteral<"led">;
7988
- }>, "strip", z.ZodTypeAny, {
7916
+ }, "strip", z.ZodTypeAny, {
7989
7917
  type: "source_component";
7990
7918
  name: string;
7991
7919
  source_component_id: string;
@@ -8061,9 +7989,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8061
7989
  subcircuit_id?: string | undefined;
8062
7990
  is_subcircuit?: boolean | undefined;
8063
7991
  parent_subcircuit_id?: string | undefined;
8064
- }>, z.ZodObject<z.objectUtil.extendShape<{
7992
+ }>, z.ZodObject<{
8065
7993
  type: z.ZodLiteral<"source_component">;
8066
- ftype: z.ZodOptional<z.ZodString>;
8067
7994
  source_component_id: z.ZodString;
8068
7995
  name: z.ZodString;
8069
7996
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8072,9 +7999,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8072
7999
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8073
8000
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8074
8001
  source_group_id: z.ZodOptional<z.ZodString>;
8075
- }, {
8002
+ } & {
8076
8003
  ftype: z.ZodLiteral<"simple_bug">;
8077
- }>, "strip", z.ZodTypeAny, {
8004
+ }, "strip", z.ZodTypeAny, {
8078
8005
  type: "source_component";
8079
8006
  name: string;
8080
8007
  source_component_id: string;
@@ -8096,9 +8023,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8096
8023
  display_value?: string | undefined;
8097
8024
  are_pins_interchangeable?: boolean | undefined;
8098
8025
  internally_connected_source_port_ids?: string[][] | undefined;
8099
- }>, z.ZodObject<z.objectUtil.extendShape<{
8026
+ }>, z.ZodObject<{
8100
8027
  type: z.ZodLiteral<"source_component">;
8101
- ftype: z.ZodOptional<z.ZodString>;
8102
8028
  source_component_id: z.ZodString;
8103
8029
  name: z.ZodString;
8104
8030
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8107,9 +8033,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8107
8033
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8108
8034
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8109
8035
  source_group_id: z.ZodOptional<z.ZodString>;
8110
- }, {
8036
+ } & {
8111
8037
  ftype: z.ZodLiteral<"simple_chip">;
8112
- }>, "strip", z.ZodTypeAny, {
8038
+ }, "strip", z.ZodTypeAny, {
8113
8039
  type: "source_component";
8114
8040
  name: string;
8115
8041
  source_component_id: string;
@@ -8131,9 +8057,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8131
8057
  display_value?: string | undefined;
8132
8058
  are_pins_interchangeable?: boolean | undefined;
8133
8059
  internally_connected_source_port_ids?: string[][] | undefined;
8134
- }>, z.ZodObject<z.objectUtil.extendShape<{
8060
+ }>, z.ZodObject<{
8135
8061
  type: z.ZodLiteral<"source_component">;
8136
- ftype: z.ZodOptional<z.ZodString>;
8137
8062
  source_component_id: z.ZodString;
8138
8063
  name: z.ZodString;
8139
8064
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8142,13 +8067,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8142
8067
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8143
8068
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8144
8069
  source_group_id: z.ZodOptional<z.ZodString>;
8145
- }, {
8070
+ } & {
8146
8071
  ftype: z.ZodLiteral<"simple_capacitor">;
8147
8072
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
8148
8073
  max_voltage_rating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8149
8074
  display_capacitance: z.ZodOptional<z.ZodString>;
8150
8075
  max_decoupling_trace_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8151
- }>, "strip", z.ZodTypeAny, {
8076
+ }, "strip", z.ZodTypeAny, {
8152
8077
  type: "source_component";
8153
8078
  name: string;
8154
8079
  source_component_id: string;
@@ -8178,9 +8103,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8178
8103
  max_voltage_rating?: string | number | undefined;
8179
8104
  display_capacitance?: string | undefined;
8180
8105
  max_decoupling_trace_length?: string | number | undefined;
8181
- }>, z.ZodObject<z.objectUtil.extendShape<{
8106
+ }>, z.ZodObject<{
8182
8107
  type: z.ZodLiteral<"source_component">;
8183
- ftype: z.ZodOptional<z.ZodString>;
8184
8108
  source_component_id: z.ZodString;
8185
8109
  name: z.ZodString;
8186
8110
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8189,9 +8113,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8189
8113
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8190
8114
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8191
8115
  source_group_id: z.ZodOptional<z.ZodString>;
8192
- }, {
8116
+ } & {
8193
8117
  ftype: z.ZodLiteral<"simple_diode">;
8194
- }>, "strip", z.ZodTypeAny, {
8118
+ }, "strip", z.ZodTypeAny, {
8195
8119
  type: "source_component";
8196
8120
  name: string;
8197
8121
  source_component_id: string;
@@ -8213,9 +8137,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8213
8137
  display_value?: string | undefined;
8214
8138
  are_pins_interchangeable?: boolean | undefined;
8215
8139
  internally_connected_source_port_ids?: string[][] | undefined;
8216
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
8140
+ }>, z.ZodObject<{
8217
8141
  type: z.ZodLiteral<"source_component">;
8218
- ftype: z.ZodOptional<z.ZodString>;
8219
8142
  source_component_id: z.ZodString;
8220
8143
  name: z.ZodString;
8221
8144
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8224,13 +8147,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8224
8147
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8225
8148
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8226
8149
  source_group_id: z.ZodOptional<z.ZodString>;
8227
- }, {
8228
- ftype: z.ZodLiteral<"simple_diode">;
8229
- }>, {
8150
+ } & {
8230
8151
  ftype: z.ZodLiteral<"simple_led">;
8231
8152
  color: z.ZodOptional<z.ZodString>;
8232
8153
  wavelength: z.ZodOptional<z.ZodString>;
8233
- }>, "strip", z.ZodTypeAny, {
8154
+ }, "strip", z.ZodTypeAny, {
8234
8155
  type: "source_component";
8235
8156
  name: string;
8236
8157
  source_component_id: string;
@@ -8256,9 +8177,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8256
8177
  are_pins_interchangeable?: boolean | undefined;
8257
8178
  internally_connected_source_port_ids?: string[][] | undefined;
8258
8179
  wavelength?: string | undefined;
8259
- }>, z.ZodObject<z.objectUtil.extendShape<{
8180
+ }>, z.ZodObject<{
8260
8181
  type: z.ZodLiteral<"source_component">;
8261
- ftype: z.ZodOptional<z.ZodString>;
8262
8182
  source_component_id: z.ZodString;
8263
8183
  name: z.ZodString;
8264
8184
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8267,11 +8187,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8267
8187
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8268
8188
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8269
8189
  source_group_id: z.ZodOptional<z.ZodString>;
8270
- }, {
8190
+ } & {
8271
8191
  ftype: z.ZodLiteral<"simple_resistor">;
8272
8192
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8273
8193
  display_resistance: z.ZodOptional<z.ZodString>;
8274
- }>, "strip", z.ZodTypeAny, {
8194
+ }, "strip", z.ZodTypeAny, {
8275
8195
  type: "source_component";
8276
8196
  name: string;
8277
8197
  source_component_id: string;
@@ -8297,9 +8217,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8297
8217
  are_pins_interchangeable?: boolean | undefined;
8298
8218
  internally_connected_source_port_ids?: string[][] | undefined;
8299
8219
  display_resistance?: string | undefined;
8300
- }>, z.ZodObject<z.objectUtil.extendShape<{
8220
+ }>, z.ZodObject<{
8301
8221
  type: z.ZodLiteral<"source_component">;
8302
- ftype: z.ZodOptional<z.ZodString>;
8303
8222
  source_component_id: z.ZodString;
8304
8223
  name: z.ZodString;
8305
8224
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8308,10 +8227,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8308
8227
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8309
8228
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8310
8229
  source_group_id: z.ZodOptional<z.ZodString>;
8311
- }, {
8230
+ } & {
8312
8231
  ftype: z.ZodLiteral<"simple_power_source">;
8313
8232
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8314
- }>, "strip", z.ZodTypeAny, {
8233
+ }, "strip", z.ZodTypeAny, {
8315
8234
  type: "source_component";
8316
8235
  name: string;
8317
8236
  source_component_id: string;
@@ -8335,9 +8254,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8335
8254
  display_value?: string | undefined;
8336
8255
  are_pins_interchangeable?: boolean | undefined;
8337
8256
  internally_connected_source_port_ids?: string[][] | undefined;
8338
- }>, z.ZodObject<z.objectUtil.extendShape<{
8257
+ }>, z.ZodObject<{
8339
8258
  type: z.ZodLiteral<"source_component">;
8340
- ftype: z.ZodOptional<z.ZodString>;
8341
8259
  source_component_id: z.ZodString;
8342
8260
  name: z.ZodString;
8343
8261
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8346,10 +8264,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8346
8264
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8347
8265
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8348
8266
  source_group_id: z.ZodOptional<z.ZodString>;
8349
- }, {
8267
+ } & {
8350
8268
  ftype: z.ZodLiteral<"simple_battery">;
8351
8269
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
8352
- }>, "strip", z.ZodTypeAny, {
8270
+ }, "strip", z.ZodTypeAny, {
8353
8271
  type: "source_component";
8354
8272
  name: string;
8355
8273
  source_component_id: string;
@@ -8373,9 +8291,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8373
8291
  display_value?: string | undefined;
8374
8292
  are_pins_interchangeable?: boolean | undefined;
8375
8293
  internally_connected_source_port_ids?: string[][] | undefined;
8376
- }>, z.ZodObject<z.objectUtil.extendShape<{
8294
+ }>, z.ZodObject<{
8377
8295
  type: z.ZodLiteral<"source_component">;
8378
- ftype: z.ZodOptional<z.ZodString>;
8379
8296
  source_component_id: z.ZodString;
8380
8297
  name: z.ZodString;
8381
8298
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8384,10 +8301,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8384
8301
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8385
8302
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8386
8303
  source_group_id: z.ZodOptional<z.ZodString>;
8387
- }, {
8304
+ } & {
8388
8305
  ftype: z.ZodLiteral<"simple_inductor">;
8389
8306
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8390
- }>, "strip", z.ZodTypeAny, {
8307
+ }, "strip", z.ZodTypeAny, {
8391
8308
  type: "source_component";
8392
8309
  name: string;
8393
8310
  source_component_id: string;
@@ -8411,9 +8328,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8411
8328
  display_value?: string | undefined;
8412
8329
  are_pins_interchangeable?: boolean | undefined;
8413
8330
  internally_connected_source_port_ids?: string[][] | undefined;
8414
- }>, z.ZodObject<z.objectUtil.extendShape<{
8331
+ }>, z.ZodObject<{
8415
8332
  type: z.ZodLiteral<"source_component">;
8416
- ftype: z.ZodOptional<z.ZodString>;
8417
8333
  source_component_id: z.ZodString;
8418
8334
  name: z.ZodString;
8419
8335
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8422,11 +8338,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8422
8338
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8423
8339
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8424
8340
  source_group_id: z.ZodOptional<z.ZodString>;
8425
- }, {
8341
+ } & {
8426
8342
  ftype: z.ZodLiteral<"simple_pin_header">;
8427
8343
  pin_count: z.ZodNumber;
8428
8344
  gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
8429
- }>, "strip", z.ZodTypeAny, {
8345
+ }, "strip", z.ZodTypeAny, {
8430
8346
  type: "source_component";
8431
8347
  name: string;
8432
8348
  source_component_id: string;
@@ -8452,9 +8368,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8452
8368
  are_pins_interchangeable?: boolean | undefined;
8453
8369
  internally_connected_source_port_ids?: string[][] | undefined;
8454
8370
  gender?: "male" | "female" | undefined;
8455
- }>, z.ZodObject<z.objectUtil.extendShape<{
8371
+ }>, z.ZodObject<{
8456
8372
  type: z.ZodLiteral<"source_component">;
8457
- ftype: z.ZodOptional<z.ZodString>;
8458
8373
  source_component_id: z.ZodString;
8459
8374
  name: z.ZodString;
8460
8375
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8463,12 +8378,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8463
8378
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8464
8379
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8465
8380
  source_group_id: z.ZodOptional<z.ZodString>;
8466
- }, {
8381
+ } & {
8467
8382
  ftype: z.ZodLiteral<"simple_resonator">;
8468
8383
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
8469
8384
  equivalent_series_resistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8470
8385
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8471
- }>, "strip", z.ZodTypeAny, {
8386
+ }, "strip", z.ZodTypeAny, {
8472
8387
  type: "source_component";
8473
8388
  name: string;
8474
8389
  source_component_id: string;
@@ -8496,9 +8411,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8496
8411
  are_pins_interchangeable?: boolean | undefined;
8497
8412
  internally_connected_source_port_ids?: string[][] | undefined;
8498
8413
  equivalent_series_resistance?: string | number | undefined;
8499
- }>, z.ZodObject<z.objectUtil.extendShape<{
8414
+ }>, z.ZodObject<{
8500
8415
  type: z.ZodLiteral<"source_component">;
8501
- ftype: z.ZodOptional<z.ZodString>;
8502
8416
  source_component_id: z.ZodString;
8503
8417
  name: z.ZodString;
8504
8418
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8507,9 +8421,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8507
8421
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8508
8422
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8509
8423
  source_group_id: z.ZodOptional<z.ZodString>;
8510
- }, {
8424
+ } & {
8511
8425
  ftype: z.ZodLiteral<"simple_switch">;
8512
- }>, "strip", z.ZodTypeAny, {
8426
+ }, "strip", z.ZodTypeAny, {
8513
8427
  type: "source_component";
8514
8428
  name: string;
8515
8429
  source_component_id: string;
@@ -8531,9 +8445,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8531
8445
  display_value?: string | undefined;
8532
8446
  are_pins_interchangeable?: boolean | undefined;
8533
8447
  internally_connected_source_port_ids?: string[][] | undefined;
8534
- }>, z.ZodObject<z.objectUtil.extendShape<{
8448
+ }>, z.ZodObject<{
8535
8449
  type: z.ZodLiteral<"source_component">;
8536
- ftype: z.ZodOptional<z.ZodString>;
8537
8450
  source_component_id: z.ZodString;
8538
8451
  name: z.ZodString;
8539
8452
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8542,10 +8455,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8542
8455
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8543
8456
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8544
8457
  source_group_id: z.ZodOptional<z.ZodString>;
8545
- }, {
8458
+ } & {
8546
8459
  ftype: z.ZodLiteral<"simple_transistor">;
8547
8460
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
8548
- }>, "strip", z.ZodTypeAny, {
8461
+ }, "strip", z.ZodTypeAny, {
8549
8462
  type: "source_component";
8550
8463
  name: string;
8551
8464
  source_component_id: string;
@@ -8569,9 +8482,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8569
8482
  display_value?: string | undefined;
8570
8483
  are_pins_interchangeable?: boolean | undefined;
8571
8484
  internally_connected_source_port_ids?: string[][] | undefined;
8572
- }>, z.ZodObject<z.objectUtil.extendShape<{
8485
+ }>, z.ZodObject<{
8573
8486
  type: z.ZodLiteral<"source_component">;
8574
- ftype: z.ZodOptional<z.ZodString>;
8575
8487
  source_component_id: z.ZodString;
8576
8488
  name: z.ZodString;
8577
8489
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8580,11 +8492,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8580
8492
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8581
8493
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8582
8494
  source_group_id: z.ZodOptional<z.ZodString>;
8583
- }, {
8495
+ } & {
8584
8496
  ftype: z.ZodLiteral<"simple_mosfet">;
8585
8497
  channel_type: z.ZodEnum<["n", "p"]>;
8586
8498
  mosfet_mode: z.ZodEnum<["enhancement", "depletion"]>;
8587
- }>, "strip", z.ZodTypeAny, {
8499
+ }, "strip", z.ZodTypeAny, {
8588
8500
  type: "source_component";
8589
8501
  name: string;
8590
8502
  source_component_id: string;
@@ -8610,9 +8522,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8610
8522
  display_value?: string | undefined;
8611
8523
  are_pins_interchangeable?: boolean | undefined;
8612
8524
  internally_connected_source_port_ids?: string[][] | undefined;
8613
- }>, z.ZodObject<z.objectUtil.extendShape<{
8525
+ }>, z.ZodObject<{
8614
8526
  type: z.ZodLiteral<"source_component">;
8615
- ftype: z.ZodOptional<z.ZodString>;
8616
8527
  source_component_id: z.ZodString;
8617
8528
  name: z.ZodString;
8618
8529
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8621,10 +8532,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8621
8532
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8622
8533
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8623
8534
  source_group_id: z.ZodOptional<z.ZodString>;
8624
- }, {
8535
+ } & {
8625
8536
  ftype: z.ZodLiteral<"simple_potentiometer">;
8626
8537
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8627
- }>, "strip", z.ZodTypeAny, {
8538
+ }, "strip", z.ZodTypeAny, {
8628
8539
  type: "source_component";
8629
8540
  name: string;
8630
8541
  source_component_id: string;
@@ -8648,9 +8559,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8648
8559
  display_value?: string | undefined;
8649
8560
  are_pins_interchangeable?: boolean | undefined;
8650
8561
  internally_connected_source_port_ids?: string[][] | undefined;
8651
- }>, z.ZodObject<z.objectUtil.extendShape<{
8562
+ }>, z.ZodObject<{
8652
8563
  type: z.ZodLiteral<"source_component">;
8653
- ftype: z.ZodOptional<z.ZodString>;
8654
8564
  source_component_id: z.ZodString;
8655
8565
  name: z.ZodString;
8656
8566
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -8659,9 +8569,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8659
8569
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
8660
8570
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8661
8571
  source_group_id: z.ZodOptional<z.ZodString>;
8662
- }, {
8572
+ } & {
8663
8573
  ftype: z.ZodLiteral<"simple_push_button">;
8664
- }>, "strip", z.ZodTypeAny, {
8574
+ }, "strip", z.ZodTypeAny, {
8665
8575
  type: "source_component";
8666
8576
  name: string;
8667
8577
  source_component_id: string;
@@ -10606,12 +10516,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10606
10516
  message: string;
10607
10517
  type: "pcb_autorouting_error";
10608
10518
  pcb_error_id?: string | undefined;
10609
- }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
10519
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
10610
10520
  type: z.ZodLiteral<"pcb_cutout">;
10611
10521
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10612
10522
  pcb_group_id: z.ZodOptional<z.ZodString>;
10613
10523
  subcircuit_id: z.ZodOptional<z.ZodString>;
10614
- }, {
10524
+ } & {
10615
10525
  shape: z.ZodLiteral<"rect">;
10616
10526
  center: z.ZodObject<{
10617
10527
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -10626,7 +10536,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10626
10536
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10627
10537
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10628
10538
  rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
10629
- }>, "strip", z.ZodTypeAny, {
10539
+ }, "strip", z.ZodTypeAny, {
10630
10540
  type: "pcb_cutout";
10631
10541
  width: number;
10632
10542
  height: number;
@@ -10652,12 +10562,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10652
10562
  subcircuit_id?: string | undefined;
10653
10563
  pcb_group_id?: string | undefined;
10654
10564
  pcb_cutout_id?: string | undefined;
10655
- }>, z.ZodObject<z.objectUtil.extendShape<{
10565
+ }>, z.ZodObject<{
10656
10566
  type: z.ZodLiteral<"pcb_cutout">;
10657
10567
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10658
10568
  pcb_group_id: z.ZodOptional<z.ZodString>;
10659
10569
  subcircuit_id: z.ZodOptional<z.ZodString>;
10660
- }, {
10570
+ } & {
10661
10571
  shape: z.ZodLiteral<"circle">;
10662
10572
  center: z.ZodObject<{
10663
10573
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -10670,7 +10580,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10670
10580
  y: string | number;
10671
10581
  }>;
10672
10582
  radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10673
- }>, "strip", z.ZodTypeAny, {
10583
+ }, "strip", z.ZodTypeAny, {
10674
10584
  type: "pcb_cutout";
10675
10585
  center: {
10676
10586
  x: number;
@@ -10692,12 +10602,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10692
10602
  subcircuit_id?: string | undefined;
10693
10603
  pcb_group_id?: string | undefined;
10694
10604
  pcb_cutout_id?: string | undefined;
10695
- }>, z.ZodObject<z.objectUtil.extendShape<{
10605
+ }>, z.ZodObject<{
10696
10606
  type: z.ZodLiteral<"pcb_cutout">;
10697
10607
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10698
10608
  pcb_group_id: z.ZodOptional<z.ZodString>;
10699
10609
  subcircuit_id: z.ZodOptional<z.ZodString>;
10700
- }, {
10610
+ } & {
10701
10611
  shape: z.ZodLiteral<"polygon">;
10702
10612
  points: z.ZodArray<z.ZodObject<{
10703
10613
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -10709,7 +10619,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10709
10619
  x: string | number;
10710
10620
  y: string | number;
10711
10621
  }>, "many">;
10712
- }>, "strip", z.ZodTypeAny, {
10622
+ }, "strip", z.ZodTypeAny, {
10713
10623
  type: "pcb_cutout";
10714
10624
  shape: "polygon";
10715
10625
  pcb_cutout_id: string;
@@ -11320,10 +11230,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11320
11230
  symbol_name?: string | undefined;
11321
11231
  schematic_trace_id?: string | undefined;
11322
11232
  schematic_net_label_id?: string | undefined;
11323
- }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
11233
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
11324
11234
  type: z.ZodLiteral<"schematic_debug_object">;
11325
11235
  label: z.ZodOptional<z.ZodString>;
11326
- }, {
11236
+ } & {
11327
11237
  shape: z.ZodLiteral<"rect">;
11328
11238
  center: z.ZodObject<{
11329
11239
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11345,7 +11255,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11345
11255
  width: number;
11346
11256
  height: number;
11347
11257
  }>;
11348
- }>, "strip", z.ZodTypeAny, {
11258
+ }, "strip", z.ZodTypeAny, {
11349
11259
  type: "schematic_debug_object";
11350
11260
  center: {
11351
11261
  x: number;
@@ -11369,10 +11279,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11369
11279
  height: number;
11370
11280
  };
11371
11281
  label?: string | undefined;
11372
- }>, z.ZodObject<z.objectUtil.extendShape<{
11282
+ }>, z.ZodObject<{
11373
11283
  type: z.ZodLiteral<"schematic_debug_object">;
11374
11284
  label: z.ZodOptional<z.ZodString>;
11375
- }, {
11285
+ } & {
11376
11286
  shape: z.ZodLiteral<"line">;
11377
11287
  start: z.ZodObject<{
11378
11288
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11394,7 +11304,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11394
11304
  x: string | number;
11395
11305
  y: string | number;
11396
11306
  }>;
11397
- }>, "strip", z.ZodTypeAny, {
11307
+ }, "strip", z.ZodTypeAny, {
11398
11308
  type: "schematic_debug_object";
11399
11309
  shape: "line";
11400
11310
  start: {
@@ -11418,10 +11328,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11418
11328
  y: string | number;
11419
11329
  };
11420
11330
  label?: string | undefined;
11421
- }>, z.ZodObject<z.objectUtil.extendShape<{
11331
+ }>, z.ZodObject<{
11422
11332
  type: z.ZodLiteral<"schematic_debug_object">;
11423
11333
  label: z.ZodOptional<z.ZodString>;
11424
- }, {
11334
+ } & {
11425
11335
  shape: z.ZodLiteral<"point">;
11426
11336
  center: z.ZodObject<{
11427
11337
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11433,7 +11343,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11433
11343
  x: string | number;
11434
11344
  y: string | number;
11435
11345
  }>;
11436
- }>, "strip", z.ZodTypeAny, {
11346
+ }, "strip", z.ZodTypeAny, {
11437
11347
  type: "schematic_debug_object";
11438
11348
  center: {
11439
11349
  x: number;
@@ -11727,9 +11637,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11727
11637
  subcircuit_id?: string | undefined;
11728
11638
  port_hints?: string[] | undefined;
11729
11639
  pin_number?: number | undefined;
11730
- }>, z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
11640
+ }>, z.ZodUnion<[z.ZodObject<{
11731
11641
  type: z.ZodLiteral<"source_component">;
11732
- ftype: z.ZodOptional<z.ZodString>;
11733
11642
  source_component_id: z.ZodString;
11734
11643
  name: z.ZodString;
11735
11644
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -11738,11 +11647,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11738
11647
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11739
11648
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11740
11649
  source_group_id: z.ZodOptional<z.ZodString>;
11741
- }, {
11650
+ } & {
11742
11651
  ftype: z.ZodLiteral<"simple_resistor">;
11743
11652
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
11744
11653
  display_resistance: z.ZodOptional<z.ZodString>;
11745
- }>, "strip", z.ZodTypeAny, {
11654
+ }, "strip", z.ZodTypeAny, {
11746
11655
  type: "source_component";
11747
11656
  name: string;
11748
11657
  source_component_id: string;
@@ -11768,9 +11677,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11768
11677
  are_pins_interchangeable?: boolean | undefined;
11769
11678
  internally_connected_source_port_ids?: string[][] | undefined;
11770
11679
  display_resistance?: string | undefined;
11771
- }>, z.ZodObject<z.objectUtil.extendShape<{
11680
+ }>, z.ZodObject<{
11772
11681
  type: z.ZodLiteral<"source_component">;
11773
- ftype: z.ZodOptional<z.ZodString>;
11774
11682
  source_component_id: z.ZodString;
11775
11683
  name: z.ZodString;
11776
11684
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -11779,13 +11687,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11779
11687
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11780
11688
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11781
11689
  source_group_id: z.ZodOptional<z.ZodString>;
11782
- }, {
11690
+ } & {
11783
11691
  ftype: z.ZodLiteral<"simple_capacitor">;
11784
11692
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
11785
11693
  max_voltage_rating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
11786
11694
  display_capacitance: z.ZodOptional<z.ZodString>;
11787
11695
  max_decoupling_trace_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
11788
- }>, "strip", z.ZodTypeAny, {
11696
+ }, "strip", z.ZodTypeAny, {
11789
11697
  type: "source_component";
11790
11698
  name: string;
11791
11699
  source_component_id: string;
@@ -11815,9 +11723,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11815
11723
  max_voltage_rating?: string | number | undefined;
11816
11724
  display_capacitance?: string | undefined;
11817
11725
  max_decoupling_trace_length?: string | number | undefined;
11818
- }>, z.ZodObject<z.objectUtil.extendShape<{
11726
+ }>, z.ZodObject<{
11819
11727
  type: z.ZodLiteral<"source_component">;
11820
- ftype: z.ZodOptional<z.ZodString>;
11821
11728
  source_component_id: z.ZodString;
11822
11729
  name: z.ZodString;
11823
11730
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -11826,9 +11733,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11826
11733
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11827
11734
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11828
11735
  source_group_id: z.ZodOptional<z.ZodString>;
11829
- }, {
11736
+ } & {
11830
11737
  ftype: z.ZodLiteral<"simple_diode">;
11831
- }>, "strip", z.ZodTypeAny, {
11738
+ }, "strip", z.ZodTypeAny, {
11832
11739
  type: "source_component";
11833
11740
  name: string;
11834
11741
  source_component_id: string;
@@ -11850,9 +11757,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11850
11757
  display_value?: string | undefined;
11851
11758
  are_pins_interchangeable?: boolean | undefined;
11852
11759
  internally_connected_source_port_ids?: string[][] | undefined;
11853
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
11760
+ }>, z.ZodObject<{
11854
11761
  type: z.ZodLiteral<"source_component">;
11855
- ftype: z.ZodOptional<z.ZodString>;
11856
11762
  source_component_id: z.ZodString;
11857
11763
  name: z.ZodString;
11858
11764
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -11861,13 +11767,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11861
11767
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11862
11768
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11863
11769
  source_group_id: z.ZodOptional<z.ZodString>;
11864
- }, {
11865
- ftype: z.ZodLiteral<"simple_diode">;
11866
- }>, {
11770
+ } & {
11867
11771
  ftype: z.ZodLiteral<"simple_led">;
11868
11772
  color: z.ZodOptional<z.ZodString>;
11869
11773
  wavelength: z.ZodOptional<z.ZodString>;
11870
- }>, "strip", z.ZodTypeAny, {
11774
+ }, "strip", z.ZodTypeAny, {
11871
11775
  type: "source_component";
11872
11776
  name: string;
11873
11777
  source_component_id: string;
@@ -11893,9 +11797,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11893
11797
  are_pins_interchangeable?: boolean | undefined;
11894
11798
  internally_connected_source_port_ids?: string[][] | undefined;
11895
11799
  wavelength?: string | undefined;
11896
- }>, z.ZodObject<z.objectUtil.extendShape<{
11800
+ }>, z.ZodObject<{
11897
11801
  type: z.ZodLiteral<"source_component">;
11898
- ftype: z.ZodOptional<z.ZodString>;
11899
11802
  source_component_id: z.ZodString;
11900
11803
  name: z.ZodString;
11901
11804
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -11904,9 +11807,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11904
11807
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11905
11808
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11906
11809
  source_group_id: z.ZodOptional<z.ZodString>;
11907
- }, {
11810
+ } & {
11908
11811
  ftype: z.ZodLiteral<"simple_ground">;
11909
- }>, "strip", z.ZodTypeAny, {
11812
+ }, "strip", z.ZodTypeAny, {
11910
11813
  type: "source_component";
11911
11814
  name: string;
11912
11815
  source_component_id: string;
@@ -11928,9 +11831,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11928
11831
  display_value?: string | undefined;
11929
11832
  are_pins_interchangeable?: boolean | undefined;
11930
11833
  internally_connected_source_port_ids?: string[][] | undefined;
11931
- }>, z.ZodObject<z.objectUtil.extendShape<{
11834
+ }>, z.ZodObject<{
11932
11835
  type: z.ZodLiteral<"source_component">;
11933
- ftype: z.ZodOptional<z.ZodString>;
11934
11836
  source_component_id: z.ZodString;
11935
11837
  name: z.ZodString;
11936
11838
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -11939,9 +11841,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11939
11841
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11940
11842
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11941
11843
  source_group_id: z.ZodOptional<z.ZodString>;
11942
- }, {
11844
+ } & {
11943
11845
  ftype: z.ZodLiteral<"simple_chip">;
11944
- }>, "strip", z.ZodTypeAny, {
11846
+ }, "strip", z.ZodTypeAny, {
11945
11847
  type: "source_component";
11946
11848
  name: string;
11947
11849
  source_component_id: string;
@@ -11963,9 +11865,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11963
11865
  display_value?: string | undefined;
11964
11866
  are_pins_interchangeable?: boolean | undefined;
11965
11867
  internally_connected_source_port_ids?: string[][] | undefined;
11966
- }>, z.ZodObject<z.objectUtil.extendShape<{
11868
+ }>, z.ZodObject<{
11967
11869
  type: z.ZodLiteral<"source_component">;
11968
- ftype: z.ZodOptional<z.ZodString>;
11969
11870
  source_component_id: z.ZodString;
11970
11871
  name: z.ZodString;
11971
11872
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -11974,9 +11875,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11974
11875
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11975
11876
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11976
11877
  source_group_id: z.ZodOptional<z.ZodString>;
11977
- }, {
11878
+ } & {
11978
11879
  ftype: z.ZodLiteral<"simple_bug">;
11979
- }>, "strip", z.ZodTypeAny, {
11880
+ }, "strip", z.ZodTypeAny, {
11980
11881
  type: "source_component";
11981
11882
  name: string;
11982
11883
  source_component_id: string;
@@ -11998,9 +11899,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11998
11899
  display_value?: string | undefined;
11999
11900
  are_pins_interchangeable?: boolean | undefined;
12000
11901
  internally_connected_source_port_ids?: string[][] | undefined;
12001
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
11902
+ }>, z.ZodObject<{
12002
11903
  type: z.ZodLiteral<"source_component">;
12003
- ftype: z.ZodOptional<z.ZodString>;
12004
11904
  source_component_id: z.ZodString;
12005
11905
  name: z.ZodString;
12006
11906
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12009,11 +11909,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12009
11909
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12010
11910
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12011
11911
  source_group_id: z.ZodOptional<z.ZodString>;
12012
- }, {
12013
- ftype: z.ZodLiteral<"simple_diode">;
12014
- }>, {
11912
+ } & {
12015
11913
  ftype: z.ZodLiteral<"led">;
12016
- }>, "strip", z.ZodTypeAny, {
11914
+ }, "strip", z.ZodTypeAny, {
12017
11915
  type: "source_component";
12018
11916
  name: string;
12019
11917
  source_component_id: string;
@@ -12035,9 +11933,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12035
11933
  display_value?: string | undefined;
12036
11934
  are_pins_interchangeable?: boolean | undefined;
12037
11935
  internally_connected_source_port_ids?: string[][] | undefined;
12038
- }>, z.ZodObject<z.objectUtil.extendShape<{
11936
+ }>, z.ZodObject<{
12039
11937
  type: z.ZodLiteral<"source_component">;
12040
- ftype: z.ZodOptional<z.ZodString>;
12041
11938
  source_component_id: z.ZodString;
12042
11939
  name: z.ZodString;
12043
11940
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12046,10 +11943,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12046
11943
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12047
11944
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12048
11945
  source_group_id: z.ZodOptional<z.ZodString>;
12049
- }, {
11946
+ } & {
12050
11947
  ftype: z.ZodLiteral<"simple_power_source">;
12051
11948
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12052
- }>, "strip", z.ZodTypeAny, {
11949
+ }, "strip", z.ZodTypeAny, {
12053
11950
  type: "source_component";
12054
11951
  name: string;
12055
11952
  source_component_id: string;
@@ -12073,9 +11970,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12073
11970
  display_value?: string | undefined;
12074
11971
  are_pins_interchangeable?: boolean | undefined;
12075
11972
  internally_connected_source_port_ids?: string[][] | undefined;
12076
- }>, z.ZodObject<z.objectUtil.extendShape<{
11973
+ }>, z.ZodObject<{
12077
11974
  type: z.ZodLiteral<"source_component">;
12078
- ftype: z.ZodOptional<z.ZodString>;
12079
11975
  source_component_id: z.ZodString;
12080
11976
  name: z.ZodString;
12081
11977
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12084,10 +11980,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12084
11980
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12085
11981
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12086
11982
  source_group_id: z.ZodOptional<z.ZodString>;
12087
- }, {
11983
+ } & {
12088
11984
  ftype: z.ZodLiteral<"simple_battery">;
12089
11985
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
12090
- }>, "strip", z.ZodTypeAny, {
11986
+ }, "strip", z.ZodTypeAny, {
12091
11987
  type: "source_component";
12092
11988
  name: string;
12093
11989
  source_component_id: string;
@@ -12111,9 +12007,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12111
12007
  display_value?: string | undefined;
12112
12008
  are_pins_interchangeable?: boolean | undefined;
12113
12009
  internally_connected_source_port_ids?: string[][] | undefined;
12114
- }>, z.ZodObject<z.objectUtil.extendShape<{
12010
+ }>, z.ZodObject<{
12115
12011
  type: z.ZodLiteral<"source_component">;
12116
- ftype: z.ZodOptional<z.ZodString>;
12117
12012
  source_component_id: z.ZodString;
12118
12013
  name: z.ZodString;
12119
12014
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12122,10 +12017,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12122
12017
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12123
12018
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12124
12019
  source_group_id: z.ZodOptional<z.ZodString>;
12125
- }, {
12020
+ } & {
12126
12021
  ftype: z.ZodLiteral<"simple_inductor">;
12127
12022
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12128
- }>, "strip", z.ZodTypeAny, {
12023
+ }, "strip", z.ZodTypeAny, {
12129
12024
  type: "source_component";
12130
12025
  name: string;
12131
12026
  source_component_id: string;
@@ -12149,9 +12044,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12149
12044
  display_value?: string | undefined;
12150
12045
  are_pins_interchangeable?: boolean | undefined;
12151
12046
  internally_connected_source_port_ids?: string[][] | undefined;
12152
- }>, z.ZodObject<z.objectUtil.extendShape<{
12047
+ }>, z.ZodObject<{
12153
12048
  type: z.ZodLiteral<"source_component">;
12154
- ftype: z.ZodOptional<z.ZodString>;
12155
12049
  source_component_id: z.ZodString;
12156
12050
  name: z.ZodString;
12157
12051
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12160,9 +12054,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12160
12054
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12161
12055
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12162
12056
  source_group_id: z.ZodOptional<z.ZodString>;
12163
- }, {
12057
+ } & {
12164
12058
  ftype: z.ZodLiteral<"simple_push_button">;
12165
- }>, "strip", z.ZodTypeAny, {
12059
+ }, "strip", z.ZodTypeAny, {
12166
12060
  type: "source_component";
12167
12061
  name: string;
12168
12062
  source_component_id: string;
@@ -12184,9 +12078,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12184
12078
  display_value?: string | undefined;
12185
12079
  are_pins_interchangeable?: boolean | undefined;
12186
12080
  internally_connected_source_port_ids?: string[][] | undefined;
12187
- }>, z.ZodObject<z.objectUtil.extendShape<{
12081
+ }>, z.ZodObject<{
12188
12082
  type: z.ZodLiteral<"source_component">;
12189
- ftype: z.ZodOptional<z.ZodString>;
12190
12083
  source_component_id: z.ZodString;
12191
12084
  name: z.ZodString;
12192
12085
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12195,10 +12088,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12195
12088
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12196
12089
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12197
12090
  source_group_id: z.ZodOptional<z.ZodString>;
12198
- }, {
12091
+ } & {
12199
12092
  ftype: z.ZodLiteral<"simple_potentiometer">;
12200
12093
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12201
- }>, "strip", z.ZodTypeAny, {
12094
+ }, "strip", z.ZodTypeAny, {
12202
12095
  type: "source_component";
12203
12096
  name: string;
12204
12097
  source_component_id: string;
@@ -12222,9 +12115,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12222
12115
  display_value?: string | undefined;
12223
12116
  are_pins_interchangeable?: boolean | undefined;
12224
12117
  internally_connected_source_port_ids?: string[][] | undefined;
12225
- }>, z.ZodObject<z.objectUtil.extendShape<{
12118
+ }>, z.ZodObject<{
12226
12119
  type: z.ZodLiteral<"source_component">;
12227
- ftype: z.ZodOptional<z.ZodString>;
12228
12120
  source_component_id: z.ZodString;
12229
12121
  name: z.ZodString;
12230
12122
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12233,11 +12125,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12233
12125
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12234
12126
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12235
12127
  source_group_id: z.ZodOptional<z.ZodString>;
12236
- }, {
12128
+ } & {
12237
12129
  ftype: z.ZodLiteral<"simple_crystal">;
12238
12130
  frequency: z.ZodNumber;
12239
12131
  load_capacitance: z.ZodOptional<z.ZodNumber>;
12240
- }>, "strip", z.ZodTypeAny, {
12132
+ }, "strip", z.ZodTypeAny, {
12241
12133
  type: "source_component";
12242
12134
  name: string;
12243
12135
  source_component_id: string;
@@ -12263,9 +12155,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12263
12155
  are_pins_interchangeable?: boolean | undefined;
12264
12156
  internally_connected_source_port_ids?: string[][] | undefined;
12265
12157
  load_capacitance?: number | undefined;
12266
- }>, z.ZodObject<z.objectUtil.extendShape<{
12158
+ }>, z.ZodObject<{
12267
12159
  type: z.ZodLiteral<"source_component">;
12268
- ftype: z.ZodOptional<z.ZodString>;
12269
12160
  source_component_id: z.ZodString;
12270
12161
  name: z.ZodString;
12271
12162
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12274,11 +12165,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12274
12165
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12275
12166
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12276
12167
  source_group_id: z.ZodOptional<z.ZodString>;
12277
- }, {
12168
+ } & {
12278
12169
  ftype: z.ZodLiteral<"simple_pin_header">;
12279
12170
  pin_count: z.ZodNumber;
12280
12171
  gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
12281
- }>, "strip", z.ZodTypeAny, {
12172
+ }, "strip", z.ZodTypeAny, {
12282
12173
  type: "source_component";
12283
12174
  name: string;
12284
12175
  source_component_id: string;
@@ -12304,9 +12195,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12304
12195
  are_pins_interchangeable?: boolean | undefined;
12305
12196
  internally_connected_source_port_ids?: string[][] | undefined;
12306
12197
  gender?: "male" | "female" | undefined;
12307
- }>, z.ZodObject<z.objectUtil.extendShape<{
12198
+ }>, z.ZodObject<{
12308
12199
  type: z.ZodLiteral<"source_component">;
12309
- ftype: z.ZodOptional<z.ZodString>;
12310
12200
  source_component_id: z.ZodString;
12311
12201
  name: z.ZodString;
12312
12202
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12315,12 +12205,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12315
12205
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12316
12206
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12317
12207
  source_group_id: z.ZodOptional<z.ZodString>;
12318
- }, {
12208
+ } & {
12319
12209
  ftype: z.ZodLiteral<"simple_resonator">;
12320
12210
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
12321
12211
  equivalent_series_resistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12322
12212
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12323
- }>, "strip", z.ZodTypeAny, {
12213
+ }, "strip", z.ZodTypeAny, {
12324
12214
  type: "source_component";
12325
12215
  name: string;
12326
12216
  source_component_id: string;
@@ -12348,9 +12238,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12348
12238
  are_pins_interchangeable?: boolean | undefined;
12349
12239
  internally_connected_source_port_ids?: string[][] | undefined;
12350
12240
  equivalent_series_resistance?: string | number | undefined;
12351
- }>, z.ZodObject<z.objectUtil.extendShape<{
12241
+ }>, z.ZodObject<{
12352
12242
  type: z.ZodLiteral<"source_component">;
12353
- ftype: z.ZodOptional<z.ZodString>;
12354
12243
  source_component_id: z.ZodString;
12355
12244
  name: z.ZodString;
12356
12245
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12359,9 +12248,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12359
12248
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12360
12249
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12361
12250
  source_group_id: z.ZodOptional<z.ZodString>;
12362
- }, {
12251
+ } & {
12363
12252
  ftype: z.ZodLiteral<"simple_switch">;
12364
- }>, "strip", z.ZodTypeAny, {
12253
+ }, "strip", z.ZodTypeAny, {
12365
12254
  type: "source_component";
12366
12255
  name: string;
12367
12256
  source_component_id: string;
@@ -12383,9 +12272,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12383
12272
  display_value?: string | undefined;
12384
12273
  are_pins_interchangeable?: boolean | undefined;
12385
12274
  internally_connected_source_port_ids?: string[][] | undefined;
12386
- }>, z.ZodObject<z.objectUtil.extendShape<{
12275
+ }>, z.ZodObject<{
12387
12276
  type: z.ZodLiteral<"source_component">;
12388
- ftype: z.ZodOptional<z.ZodString>;
12389
12277
  source_component_id: z.ZodString;
12390
12278
  name: z.ZodString;
12391
12279
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12394,10 +12282,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12394
12282
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12395
12283
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12396
12284
  source_group_id: z.ZodOptional<z.ZodString>;
12397
- }, {
12285
+ } & {
12398
12286
  ftype: z.ZodLiteral<"simple_transistor">;
12399
12287
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
12400
- }>, "strip", z.ZodTypeAny, {
12288
+ }, "strip", z.ZodTypeAny, {
12401
12289
  type: "source_component";
12402
12290
  name: string;
12403
12291
  source_component_id: string;
@@ -12421,9 +12309,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12421
12309
  display_value?: string | undefined;
12422
12310
  are_pins_interchangeable?: boolean | undefined;
12423
12311
  internally_connected_source_port_ids?: string[][] | undefined;
12424
- }>, z.ZodObject<z.objectUtil.extendShape<{
12312
+ }>, z.ZodObject<{
12425
12313
  type: z.ZodLiteral<"source_component">;
12426
- ftype: z.ZodOptional<z.ZodString>;
12427
12314
  source_component_id: z.ZodString;
12428
12315
  name: z.ZodString;
12429
12316
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12432,11 +12319,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12432
12319
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12433
12320
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12434
12321
  source_group_id: z.ZodOptional<z.ZodString>;
12435
- }, {
12322
+ } & {
12436
12323
  ftype: z.ZodLiteral<"simple_mosfet">;
12437
12324
  channel_type: z.ZodEnum<["n", "p"]>;
12438
12325
  mosfet_mode: z.ZodEnum<["enhancement", "depletion"]>;
12439
- }>, "strip", z.ZodTypeAny, {
12326
+ }, "strip", z.ZodTypeAny, {
12440
12327
  type: "source_component";
12441
12328
  name: string;
12442
12329
  source_component_id: string;
@@ -12555,9 +12442,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12555
12442
  x?: number | undefined;
12556
12443
  y?: number | undefined;
12557
12444
  } | undefined;
12558
- }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
12445
+ }>]>, z.ZodObject<{
12559
12446
  type: z.ZodLiteral<"source_component">;
12560
- ftype: z.ZodOptional<z.ZodString>;
12561
12447
  source_component_id: z.ZodString;
12562
12448
  name: z.ZodString;
12563
12449
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12566,11 +12452,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12566
12452
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12567
12453
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12568
12454
  source_group_id: z.ZodOptional<z.ZodString>;
12569
- }, {
12570
- ftype: z.ZodLiteral<"simple_diode">;
12571
- }>, {
12455
+ } & {
12572
12456
  ftype: z.ZodLiteral<"led">;
12573
- }>, "strip", z.ZodTypeAny, {
12457
+ }, "strip", z.ZodTypeAny, {
12574
12458
  type: "source_component";
12575
12459
  name: string;
12576
12460
  source_component_id: string;
@@ -12646,9 +12530,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12646
12530
  subcircuit_id?: string | undefined;
12647
12531
  is_subcircuit?: boolean | undefined;
12648
12532
  parent_subcircuit_id?: string | undefined;
12649
- }>, z.ZodObject<z.objectUtil.extendShape<{
12533
+ }>, z.ZodObject<{
12650
12534
  type: z.ZodLiteral<"source_component">;
12651
- ftype: z.ZodOptional<z.ZodString>;
12652
12535
  source_component_id: z.ZodString;
12653
12536
  name: z.ZodString;
12654
12537
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12657,9 +12540,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12657
12540
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12658
12541
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12659
12542
  source_group_id: z.ZodOptional<z.ZodString>;
12660
- }, {
12543
+ } & {
12661
12544
  ftype: z.ZodLiteral<"simple_bug">;
12662
- }>, "strip", z.ZodTypeAny, {
12545
+ }, "strip", z.ZodTypeAny, {
12663
12546
  type: "source_component";
12664
12547
  name: string;
12665
12548
  source_component_id: string;
@@ -12681,9 +12564,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12681
12564
  display_value?: string | undefined;
12682
12565
  are_pins_interchangeable?: boolean | undefined;
12683
12566
  internally_connected_source_port_ids?: string[][] | undefined;
12684
- }>, z.ZodObject<z.objectUtil.extendShape<{
12567
+ }>, z.ZodObject<{
12685
12568
  type: z.ZodLiteral<"source_component">;
12686
- ftype: z.ZodOptional<z.ZodString>;
12687
12569
  source_component_id: z.ZodString;
12688
12570
  name: z.ZodString;
12689
12571
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12692,9 +12574,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12692
12574
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12693
12575
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12694
12576
  source_group_id: z.ZodOptional<z.ZodString>;
12695
- }, {
12577
+ } & {
12696
12578
  ftype: z.ZodLiteral<"simple_chip">;
12697
- }>, "strip", z.ZodTypeAny, {
12579
+ }, "strip", z.ZodTypeAny, {
12698
12580
  type: "source_component";
12699
12581
  name: string;
12700
12582
  source_component_id: string;
@@ -12716,9 +12598,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12716
12598
  display_value?: string | undefined;
12717
12599
  are_pins_interchangeable?: boolean | undefined;
12718
12600
  internally_connected_source_port_ids?: string[][] | undefined;
12719
- }>, z.ZodObject<z.objectUtil.extendShape<{
12601
+ }>, z.ZodObject<{
12720
12602
  type: z.ZodLiteral<"source_component">;
12721
- ftype: z.ZodOptional<z.ZodString>;
12722
12603
  source_component_id: z.ZodString;
12723
12604
  name: z.ZodString;
12724
12605
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12727,13 +12608,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12727
12608
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12728
12609
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12729
12610
  source_group_id: z.ZodOptional<z.ZodString>;
12730
- }, {
12611
+ } & {
12731
12612
  ftype: z.ZodLiteral<"simple_capacitor">;
12732
12613
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
12733
12614
  max_voltage_rating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12734
12615
  display_capacitance: z.ZodOptional<z.ZodString>;
12735
12616
  max_decoupling_trace_length: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
12736
- }>, "strip", z.ZodTypeAny, {
12617
+ }, "strip", z.ZodTypeAny, {
12737
12618
  type: "source_component";
12738
12619
  name: string;
12739
12620
  source_component_id: string;
@@ -12763,9 +12644,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12763
12644
  max_voltage_rating?: string | number | undefined;
12764
12645
  display_capacitance?: string | undefined;
12765
12646
  max_decoupling_trace_length?: string | number | undefined;
12766
- }>, z.ZodObject<z.objectUtil.extendShape<{
12647
+ }>, z.ZodObject<{
12767
12648
  type: z.ZodLiteral<"source_component">;
12768
- ftype: z.ZodOptional<z.ZodString>;
12769
12649
  source_component_id: z.ZodString;
12770
12650
  name: z.ZodString;
12771
12651
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12774,9 +12654,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12774
12654
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12775
12655
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12776
12656
  source_group_id: z.ZodOptional<z.ZodString>;
12777
- }, {
12657
+ } & {
12778
12658
  ftype: z.ZodLiteral<"simple_diode">;
12779
- }>, "strip", z.ZodTypeAny, {
12659
+ }, "strip", z.ZodTypeAny, {
12780
12660
  type: "source_component";
12781
12661
  name: string;
12782
12662
  source_component_id: string;
@@ -12798,9 +12678,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12798
12678
  display_value?: string | undefined;
12799
12679
  are_pins_interchangeable?: boolean | undefined;
12800
12680
  internally_connected_source_port_ids?: string[][] | undefined;
12801
- }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
12681
+ }>, z.ZodObject<{
12802
12682
  type: z.ZodLiteral<"source_component">;
12803
- ftype: z.ZodOptional<z.ZodString>;
12804
12683
  source_component_id: z.ZodString;
12805
12684
  name: z.ZodString;
12806
12685
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12809,13 +12688,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12809
12688
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12810
12689
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12811
12690
  source_group_id: z.ZodOptional<z.ZodString>;
12812
- }, {
12813
- ftype: z.ZodLiteral<"simple_diode">;
12814
- }>, {
12691
+ } & {
12815
12692
  ftype: z.ZodLiteral<"simple_led">;
12816
12693
  color: z.ZodOptional<z.ZodString>;
12817
12694
  wavelength: z.ZodOptional<z.ZodString>;
12818
- }>, "strip", z.ZodTypeAny, {
12695
+ }, "strip", z.ZodTypeAny, {
12819
12696
  type: "source_component";
12820
12697
  name: string;
12821
12698
  source_component_id: string;
@@ -12841,9 +12718,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12841
12718
  are_pins_interchangeable?: boolean | undefined;
12842
12719
  internally_connected_source_port_ids?: string[][] | undefined;
12843
12720
  wavelength?: string | undefined;
12844
- }>, z.ZodObject<z.objectUtil.extendShape<{
12721
+ }>, z.ZodObject<{
12845
12722
  type: z.ZodLiteral<"source_component">;
12846
- ftype: z.ZodOptional<z.ZodString>;
12847
12723
  source_component_id: z.ZodString;
12848
12724
  name: z.ZodString;
12849
12725
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12852,11 +12728,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12852
12728
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12853
12729
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12854
12730
  source_group_id: z.ZodOptional<z.ZodString>;
12855
- }, {
12731
+ } & {
12856
12732
  ftype: z.ZodLiteral<"simple_resistor">;
12857
12733
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12858
12734
  display_resistance: z.ZodOptional<z.ZodString>;
12859
- }>, "strip", z.ZodTypeAny, {
12735
+ }, "strip", z.ZodTypeAny, {
12860
12736
  type: "source_component";
12861
12737
  name: string;
12862
12738
  source_component_id: string;
@@ -12882,9 +12758,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12882
12758
  are_pins_interchangeable?: boolean | undefined;
12883
12759
  internally_connected_source_port_ids?: string[][] | undefined;
12884
12760
  display_resistance?: string | undefined;
12885
- }>, z.ZodObject<z.objectUtil.extendShape<{
12761
+ }>, z.ZodObject<{
12886
12762
  type: z.ZodLiteral<"source_component">;
12887
- ftype: z.ZodOptional<z.ZodString>;
12888
12763
  source_component_id: z.ZodString;
12889
12764
  name: z.ZodString;
12890
12765
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12893,10 +12768,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12893
12768
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12894
12769
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12895
12770
  source_group_id: z.ZodOptional<z.ZodString>;
12896
- }, {
12771
+ } & {
12897
12772
  ftype: z.ZodLiteral<"simple_power_source">;
12898
12773
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12899
- }>, "strip", z.ZodTypeAny, {
12774
+ }, "strip", z.ZodTypeAny, {
12900
12775
  type: "source_component";
12901
12776
  name: string;
12902
12777
  source_component_id: string;
@@ -12920,9 +12795,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12920
12795
  display_value?: string | undefined;
12921
12796
  are_pins_interchangeable?: boolean | undefined;
12922
12797
  internally_connected_source_port_ids?: string[][] | undefined;
12923
- }>, z.ZodObject<z.objectUtil.extendShape<{
12798
+ }>, z.ZodObject<{
12924
12799
  type: z.ZodLiteral<"source_component">;
12925
- ftype: z.ZodOptional<z.ZodString>;
12926
12800
  source_component_id: z.ZodString;
12927
12801
  name: z.ZodString;
12928
12802
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12931,10 +12805,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12931
12805
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12932
12806
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12933
12807
  source_group_id: z.ZodOptional<z.ZodString>;
12934
- }, {
12808
+ } & {
12935
12809
  ftype: z.ZodLiteral<"simple_battery">;
12936
12810
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
12937
- }>, "strip", z.ZodTypeAny, {
12811
+ }, "strip", z.ZodTypeAny, {
12938
12812
  type: "source_component";
12939
12813
  name: string;
12940
12814
  source_component_id: string;
@@ -12958,9 +12832,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12958
12832
  display_value?: string | undefined;
12959
12833
  are_pins_interchangeable?: boolean | undefined;
12960
12834
  internally_connected_source_port_ids?: string[][] | undefined;
12961
- }>, z.ZodObject<z.objectUtil.extendShape<{
12835
+ }>, z.ZodObject<{
12962
12836
  type: z.ZodLiteral<"source_component">;
12963
- ftype: z.ZodOptional<z.ZodString>;
12964
12837
  source_component_id: z.ZodString;
12965
12838
  name: z.ZodString;
12966
12839
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -12969,10 +12842,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12969
12842
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12970
12843
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12971
12844
  source_group_id: z.ZodOptional<z.ZodString>;
12972
- }, {
12845
+ } & {
12973
12846
  ftype: z.ZodLiteral<"simple_inductor">;
12974
12847
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12975
- }>, "strip", z.ZodTypeAny, {
12848
+ }, "strip", z.ZodTypeAny, {
12976
12849
  type: "source_component";
12977
12850
  name: string;
12978
12851
  source_component_id: string;
@@ -12996,9 +12869,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12996
12869
  display_value?: string | undefined;
12997
12870
  are_pins_interchangeable?: boolean | undefined;
12998
12871
  internally_connected_source_port_ids?: string[][] | undefined;
12999
- }>, z.ZodObject<z.objectUtil.extendShape<{
12872
+ }>, z.ZodObject<{
13000
12873
  type: z.ZodLiteral<"source_component">;
13001
- ftype: z.ZodOptional<z.ZodString>;
13002
12874
  source_component_id: z.ZodString;
13003
12875
  name: z.ZodString;
13004
12876
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -13007,11 +12879,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13007
12879
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13008
12880
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13009
12881
  source_group_id: z.ZodOptional<z.ZodString>;
13010
- }, {
12882
+ } & {
13011
12883
  ftype: z.ZodLiteral<"simple_pin_header">;
13012
12884
  pin_count: z.ZodNumber;
13013
12885
  gender: z.ZodDefault<z.ZodOptional<z.ZodEnum<["male", "female"]>>>;
13014
- }>, "strip", z.ZodTypeAny, {
12886
+ }, "strip", z.ZodTypeAny, {
13015
12887
  type: "source_component";
13016
12888
  name: string;
13017
12889
  source_component_id: string;
@@ -13037,9 +12909,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13037
12909
  are_pins_interchangeable?: boolean | undefined;
13038
12910
  internally_connected_source_port_ids?: string[][] | undefined;
13039
12911
  gender?: "male" | "female" | undefined;
13040
- }>, z.ZodObject<z.objectUtil.extendShape<{
12912
+ }>, z.ZodObject<{
13041
12913
  type: z.ZodLiteral<"source_component">;
13042
- ftype: z.ZodOptional<z.ZodString>;
13043
12914
  source_component_id: z.ZodString;
13044
12915
  name: z.ZodString;
13045
12916
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -13048,12 +12919,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13048
12919
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13049
12920
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13050
12921
  source_group_id: z.ZodOptional<z.ZodString>;
13051
- }, {
12922
+ } & {
13052
12923
  ftype: z.ZodLiteral<"simple_resonator">;
13053
12924
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
13054
12925
  equivalent_series_resistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
13055
12926
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
13056
- }>, "strip", z.ZodTypeAny, {
12927
+ }, "strip", z.ZodTypeAny, {
13057
12928
  type: "source_component";
13058
12929
  name: string;
13059
12930
  source_component_id: string;
@@ -13081,9 +12952,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13081
12952
  are_pins_interchangeable?: boolean | undefined;
13082
12953
  internally_connected_source_port_ids?: string[][] | undefined;
13083
12954
  equivalent_series_resistance?: string | number | undefined;
13084
- }>, z.ZodObject<z.objectUtil.extendShape<{
12955
+ }>, z.ZodObject<{
13085
12956
  type: z.ZodLiteral<"source_component">;
13086
- ftype: z.ZodOptional<z.ZodString>;
13087
12957
  source_component_id: z.ZodString;
13088
12958
  name: z.ZodString;
13089
12959
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -13092,9 +12962,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13092
12962
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13093
12963
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13094
12964
  source_group_id: z.ZodOptional<z.ZodString>;
13095
- }, {
12965
+ } & {
13096
12966
  ftype: z.ZodLiteral<"simple_switch">;
13097
- }>, "strip", z.ZodTypeAny, {
12967
+ }, "strip", z.ZodTypeAny, {
13098
12968
  type: "source_component";
13099
12969
  name: string;
13100
12970
  source_component_id: string;
@@ -13116,9 +12986,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13116
12986
  display_value?: string | undefined;
13117
12987
  are_pins_interchangeable?: boolean | undefined;
13118
12988
  internally_connected_source_port_ids?: string[][] | undefined;
13119
- }>, z.ZodObject<z.objectUtil.extendShape<{
12989
+ }>, z.ZodObject<{
13120
12990
  type: z.ZodLiteral<"source_component">;
13121
- ftype: z.ZodOptional<z.ZodString>;
13122
12991
  source_component_id: z.ZodString;
13123
12992
  name: z.ZodString;
13124
12993
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -13127,10 +12996,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13127
12996
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13128
12997
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13129
12998
  source_group_id: z.ZodOptional<z.ZodString>;
13130
- }, {
12999
+ } & {
13131
13000
  ftype: z.ZodLiteral<"simple_transistor">;
13132
13001
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
13133
- }>, "strip", z.ZodTypeAny, {
13002
+ }, "strip", z.ZodTypeAny, {
13134
13003
  type: "source_component";
13135
13004
  name: string;
13136
13005
  source_component_id: string;
@@ -13154,9 +13023,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13154
13023
  display_value?: string | undefined;
13155
13024
  are_pins_interchangeable?: boolean | undefined;
13156
13025
  internally_connected_source_port_ids?: string[][] | undefined;
13157
- }>, z.ZodObject<z.objectUtil.extendShape<{
13026
+ }>, z.ZodObject<{
13158
13027
  type: z.ZodLiteral<"source_component">;
13159
- ftype: z.ZodOptional<z.ZodString>;
13160
13028
  source_component_id: z.ZodString;
13161
13029
  name: z.ZodString;
13162
13030
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -13165,11 +13033,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13165
13033
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13166
13034
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13167
13035
  source_group_id: z.ZodOptional<z.ZodString>;
13168
- }, {
13036
+ } & {
13169
13037
  ftype: z.ZodLiteral<"simple_mosfet">;
13170
13038
  channel_type: z.ZodEnum<["n", "p"]>;
13171
13039
  mosfet_mode: z.ZodEnum<["enhancement", "depletion"]>;
13172
- }>, "strip", z.ZodTypeAny, {
13040
+ }, "strip", z.ZodTypeAny, {
13173
13041
  type: "source_component";
13174
13042
  name: string;
13175
13043
  source_component_id: string;
@@ -13195,9 +13063,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13195
13063
  display_value?: string | undefined;
13196
13064
  are_pins_interchangeable?: boolean | undefined;
13197
13065
  internally_connected_source_port_ids?: string[][] | undefined;
13198
- }>, z.ZodObject<z.objectUtil.extendShape<{
13066
+ }>, z.ZodObject<{
13199
13067
  type: z.ZodLiteral<"source_component">;
13200
- ftype: z.ZodOptional<z.ZodString>;
13201
13068
  source_component_id: z.ZodString;
13202
13069
  name: z.ZodString;
13203
13070
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -13206,10 +13073,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13206
13073
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13207
13074
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13208
13075
  source_group_id: z.ZodOptional<z.ZodString>;
13209
- }, {
13076
+ } & {
13210
13077
  ftype: z.ZodLiteral<"simple_potentiometer">;
13211
13078
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
13212
- }>, "strip", z.ZodTypeAny, {
13079
+ }, "strip", z.ZodTypeAny, {
13213
13080
  type: "source_component";
13214
13081
  name: string;
13215
13082
  source_component_id: string;
@@ -13233,9 +13100,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13233
13100
  display_value?: string | undefined;
13234
13101
  are_pins_interchangeable?: boolean | undefined;
13235
13102
  internally_connected_source_port_ids?: string[][] | undefined;
13236
- }>, z.ZodObject<z.objectUtil.extendShape<{
13103
+ }>, z.ZodObject<{
13237
13104
  type: z.ZodLiteral<"source_component">;
13238
- ftype: z.ZodOptional<z.ZodString>;
13239
13105
  source_component_id: z.ZodString;
13240
13106
  name: z.ZodString;
13241
13107
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
@@ -13244,9 +13110,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
13244
13110
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13245
13111
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13246
13112
  source_group_id: z.ZodOptional<z.ZodString>;
13247
- }, {
13113
+ } & {
13248
13114
  ftype: z.ZodLiteral<"simple_push_button">;
13249
- }>, "strip", z.ZodTypeAny, {
13115
+ }, "strip", z.ZodTypeAny, {
13250
13116
  type: "source_component";
13251
13117
  name: string;
13252
13118
  source_component_id: string;
@@ -15191,12 +15057,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15191
15057
  message: string;
15192
15058
  type: "pcb_autorouting_error";
15193
15059
  pcb_error_id?: string | undefined;
15194
- }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
15060
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
15195
15061
  type: z.ZodLiteral<"pcb_cutout">;
15196
15062
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15197
15063
  pcb_group_id: z.ZodOptional<z.ZodString>;
15198
15064
  subcircuit_id: z.ZodOptional<z.ZodString>;
15199
- }, {
15065
+ } & {
15200
15066
  shape: z.ZodLiteral<"rect">;
15201
15067
  center: z.ZodObject<{
15202
15068
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -15211,7 +15077,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15211
15077
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15212
15078
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15213
15079
  rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
15214
- }>, "strip", z.ZodTypeAny, {
15080
+ }, "strip", z.ZodTypeAny, {
15215
15081
  type: "pcb_cutout";
15216
15082
  width: number;
15217
15083
  height: number;
@@ -15237,12 +15103,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15237
15103
  subcircuit_id?: string | undefined;
15238
15104
  pcb_group_id?: string | undefined;
15239
15105
  pcb_cutout_id?: string | undefined;
15240
- }>, z.ZodObject<z.objectUtil.extendShape<{
15106
+ }>, z.ZodObject<{
15241
15107
  type: z.ZodLiteral<"pcb_cutout">;
15242
15108
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15243
15109
  pcb_group_id: z.ZodOptional<z.ZodString>;
15244
15110
  subcircuit_id: z.ZodOptional<z.ZodString>;
15245
- }, {
15111
+ } & {
15246
15112
  shape: z.ZodLiteral<"circle">;
15247
15113
  center: z.ZodObject<{
15248
15114
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -15255,7 +15121,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15255
15121
  y: string | number;
15256
15122
  }>;
15257
15123
  radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15258
- }>, "strip", z.ZodTypeAny, {
15124
+ }, "strip", z.ZodTypeAny, {
15259
15125
  type: "pcb_cutout";
15260
15126
  center: {
15261
15127
  x: number;
@@ -15277,12 +15143,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15277
15143
  subcircuit_id?: string | undefined;
15278
15144
  pcb_group_id?: string | undefined;
15279
15145
  pcb_cutout_id?: string | undefined;
15280
- }>, z.ZodObject<z.objectUtil.extendShape<{
15146
+ }>, z.ZodObject<{
15281
15147
  type: z.ZodLiteral<"pcb_cutout">;
15282
15148
  pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15283
15149
  pcb_group_id: z.ZodOptional<z.ZodString>;
15284
15150
  subcircuit_id: z.ZodOptional<z.ZodString>;
15285
- }, {
15151
+ } & {
15286
15152
  shape: z.ZodLiteral<"polygon">;
15287
15153
  points: z.ZodArray<z.ZodObject<{
15288
15154
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -15294,7 +15160,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15294
15160
  x: string | number;
15295
15161
  y: string | number;
15296
15162
  }>, "many">;
15297
- }>, "strip", z.ZodTypeAny, {
15163
+ }, "strip", z.ZodTypeAny, {
15298
15164
  type: "pcb_cutout";
15299
15165
  shape: "polygon";
15300
15166
  pcb_cutout_id: string;
@@ -15905,10 +15771,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15905
15771
  symbol_name?: string | undefined;
15906
15772
  schematic_trace_id?: string | undefined;
15907
15773
  schematic_net_label_id?: string | undefined;
15908
- }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
15774
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
15909
15775
  type: z.ZodLiteral<"schematic_debug_object">;
15910
15776
  label: z.ZodOptional<z.ZodString>;
15911
- }, {
15777
+ } & {
15912
15778
  shape: z.ZodLiteral<"rect">;
15913
15779
  center: z.ZodObject<{
15914
15780
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -15930,7 +15796,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15930
15796
  width: number;
15931
15797
  height: number;
15932
15798
  }>;
15933
- }>, "strip", z.ZodTypeAny, {
15799
+ }, "strip", z.ZodTypeAny, {
15934
15800
  type: "schematic_debug_object";
15935
15801
  center: {
15936
15802
  x: number;
@@ -15954,10 +15820,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15954
15820
  height: number;
15955
15821
  };
15956
15822
  label?: string | undefined;
15957
- }>, z.ZodObject<z.objectUtil.extendShape<{
15823
+ }>, z.ZodObject<{
15958
15824
  type: z.ZodLiteral<"schematic_debug_object">;
15959
15825
  label: z.ZodOptional<z.ZodString>;
15960
- }, {
15826
+ } & {
15961
15827
  shape: z.ZodLiteral<"line">;
15962
15828
  start: z.ZodObject<{
15963
15829
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -15979,7 +15845,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15979
15845
  x: string | number;
15980
15846
  y: string | number;
15981
15847
  }>;
15982
- }>, "strip", z.ZodTypeAny, {
15848
+ }, "strip", z.ZodTypeAny, {
15983
15849
  type: "schematic_debug_object";
15984
15850
  shape: "line";
15985
15851
  start: {
@@ -16003,10 +15869,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
16003
15869
  y: string | number;
16004
15870
  };
16005
15871
  label?: string | undefined;
16006
- }>, z.ZodObject<z.objectUtil.extendShape<{
15872
+ }>, z.ZodObject<{
16007
15873
  type: z.ZodLiteral<"schematic_debug_object">;
16008
15874
  label: z.ZodOptional<z.ZodString>;
16009
- }, {
15875
+ } & {
16010
15876
  shape: z.ZodLiteral<"point">;
16011
15877
  center: z.ZodObject<{
16012
15878
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -16018,7 +15884,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
16018
15884
  x: string | number;
16019
15885
  y: string | number;
16020
15886
  }>;
16021
- }>, "strip", z.ZodTypeAny, {
15887
+ }, "strip", z.ZodTypeAny, {
16022
15888
  type: "schematic_debug_object";
16023
15889
  center: {
16024
15890
  x: number;