circuit-json 0.0.179 → 0.0.181

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
@@ -228,6 +228,7 @@ declare const pcb_component: z.ZodObject<{
228
228
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
229
229
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
230
230
  subcircuit_id: z.ZodOptional<z.ZodString>;
231
+ pcb_group_id: z.ZodOptional<z.ZodString>;
231
232
  }, "strip", z.ZodTypeAny, {
232
233
  type: "pcb_component";
233
234
  width: number;
@@ -241,6 +242,7 @@ declare const pcb_component: z.ZodObject<{
241
242
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
242
243
  rotation: number;
243
244
  subcircuit_id?: string | undefined;
245
+ pcb_group_id?: string | undefined;
244
246
  }, {
245
247
  type: "pcb_component";
246
248
  width: string | number;
@@ -256,6 +258,7 @@ declare const pcb_component: z.ZodObject<{
256
258
  rotation: string | number;
257
259
  pcb_component_id?: string | undefined;
258
260
  subcircuit_id?: string | undefined;
261
+ pcb_group_id?: string | undefined;
259
262
  }>;
260
263
  type PcbComponentInput = z.input<typeof pcb_component>;
261
264
  /**
@@ -271,6 +274,7 @@ interface PcbComponent {
271
274
  rotation: Rotation;
272
275
  width: Length;
273
276
  height: Length;
277
+ pcb_group_id?: string;
274
278
  }
275
279
  /**
276
280
  * @deprecated use PcbComponent
@@ -302,8 +306,8 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
302
306
  hole_shape: "circle" | "square";
303
307
  hole_diameter: number;
304
308
  subcircuit_id?: string | undefined;
305
- pcb_hole_id?: string | undefined;
306
309
  pcb_group_id?: string | undefined;
310
+ pcb_hole_id?: string | undefined;
307
311
  }>;
308
312
  declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
309
313
  type: z.ZodLiteral<"pcb_hole">;
@@ -330,8 +334,8 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
330
334
  hole_shape: "circle" | "square";
331
335
  hole_diameter: number;
332
336
  subcircuit_id?: string | undefined;
333
- pcb_hole_id?: string | undefined;
334
337
  pcb_group_id?: string | undefined;
338
+ pcb_hole_id?: string | undefined;
335
339
  }>;
336
340
  type PcbHoleCircleOrSquareInput = z.input<typeof pcb_hole_circle_or_square>;
337
341
  /**
@@ -375,8 +379,8 @@ declare const pcb_hole_oval: z.ZodObject<{
375
379
  hole_width: number;
376
380
  hole_height: number;
377
381
  subcircuit_id?: string | undefined;
378
- pcb_hole_id?: string | undefined;
379
382
  pcb_group_id?: string | undefined;
383
+ pcb_hole_id?: string | undefined;
380
384
  }>;
381
385
  declare const pcb_hole_oval_shape: z.ZodObject<{
382
386
  type: z.ZodLiteral<"pcb_hole">;
@@ -406,8 +410,8 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
406
410
  hole_width: number;
407
411
  hole_height: number;
408
412
  subcircuit_id?: string | undefined;
409
- pcb_hole_id?: string | undefined;
410
413
  pcb_group_id?: string | undefined;
414
+ pcb_hole_id?: string | undefined;
411
415
  }>;
412
416
  type PcbHoleOvalInput = z.input<typeof pcb_hole_oval>;
413
417
  /**
@@ -449,8 +453,8 @@ declare const pcb_hole: z.ZodUnion<[z.ZodObject<{
449
453
  hole_shape: "circle" | "square";
450
454
  hole_diameter: number;
451
455
  subcircuit_id?: string | undefined;
452
- pcb_hole_id?: string | undefined;
453
456
  pcb_group_id?: string | undefined;
457
+ pcb_hole_id?: string | undefined;
454
458
  }>, z.ZodObject<{
455
459
  type: z.ZodLiteral<"pcb_hole">;
456
460
  pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -479,8 +483,8 @@ declare const pcb_hole: z.ZodUnion<[z.ZodObject<{
479
483
  hole_width: number;
480
484
  hole_height: number;
481
485
  subcircuit_id?: string | undefined;
482
- pcb_hole_id?: string | undefined;
483
486
  pcb_group_id?: string | undefined;
487
+ pcb_hole_id?: string | undefined;
484
488
  }>]>;
485
489
  /**
486
490
  * @deprecated Use PcbHoleCircleOrSquare or PcbHoleOval
@@ -3003,6 +3007,300 @@ declare const pcb_keepout: z.ZodUnion<[z.ZodObject<{
3003
3007
  type PCBKeepoutInput = z.input<typeof pcb_keepout>;
3004
3008
  type PCBKeepout = z.infer<typeof pcb_keepout>;
3005
3009
 
3010
+ declare const pcb_cutout_rect: z.ZodObject<z.objectUtil.extendShape<{
3011
+ type: z.ZodLiteral<"pcb_cutout">;
3012
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3013
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3014
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3015
+ }, {
3016
+ shape: z.ZodLiteral<"rect">;
3017
+ center: z.ZodObject<{
3018
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3019
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3020
+ }, "strip", z.ZodTypeAny, {
3021
+ x: number;
3022
+ y: number;
3023
+ }, {
3024
+ x: string | number;
3025
+ y: string | number;
3026
+ }>;
3027
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3028
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3029
+ rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
3030
+ }>, "strip", z.ZodTypeAny, {
3031
+ type: "pcb_cutout";
3032
+ width: number;
3033
+ height: number;
3034
+ center: {
3035
+ x: number;
3036
+ y: number;
3037
+ };
3038
+ shape: "rect";
3039
+ pcb_cutout_id: string;
3040
+ rotation?: number | undefined;
3041
+ subcircuit_id?: string | undefined;
3042
+ pcb_group_id?: string | undefined;
3043
+ }, {
3044
+ type: "pcb_cutout";
3045
+ width: string | number;
3046
+ height: string | number;
3047
+ center: {
3048
+ x: string | number;
3049
+ y: string | number;
3050
+ };
3051
+ shape: "rect";
3052
+ rotation?: string | number | undefined;
3053
+ subcircuit_id?: string | undefined;
3054
+ pcb_group_id?: string | undefined;
3055
+ pcb_cutout_id?: string | undefined;
3056
+ }>;
3057
+ type PcbCutoutRectInput = z.input<typeof pcb_cutout_rect>;
3058
+ /**
3059
+ * Defines a rectangular cutout on the PCB.
3060
+ */
3061
+ interface PcbCutoutRect {
3062
+ type: "pcb_cutout";
3063
+ pcb_cutout_id: string;
3064
+ pcb_group_id?: string;
3065
+ subcircuit_id?: string;
3066
+ shape: "rect";
3067
+ center: Point;
3068
+ width: Length;
3069
+ height: Length;
3070
+ rotation?: Rotation;
3071
+ }
3072
+ declare const pcb_cutout_circle: z.ZodObject<z.objectUtil.extendShape<{
3073
+ type: z.ZodLiteral<"pcb_cutout">;
3074
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3075
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3076
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3077
+ }, {
3078
+ shape: z.ZodLiteral<"circle">;
3079
+ center: z.ZodObject<{
3080
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3081
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3082
+ }, "strip", z.ZodTypeAny, {
3083
+ x: number;
3084
+ y: number;
3085
+ }, {
3086
+ x: string | number;
3087
+ y: string | number;
3088
+ }>;
3089
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3090
+ }>, "strip", z.ZodTypeAny, {
3091
+ type: "pcb_cutout";
3092
+ center: {
3093
+ x: number;
3094
+ y: number;
3095
+ };
3096
+ shape: "circle";
3097
+ radius: number;
3098
+ pcb_cutout_id: string;
3099
+ subcircuit_id?: string | undefined;
3100
+ pcb_group_id?: string | undefined;
3101
+ }, {
3102
+ type: "pcb_cutout";
3103
+ center: {
3104
+ x: string | number;
3105
+ y: string | number;
3106
+ };
3107
+ shape: "circle";
3108
+ radius: string | number;
3109
+ subcircuit_id?: string | undefined;
3110
+ pcb_group_id?: string | undefined;
3111
+ pcb_cutout_id?: string | undefined;
3112
+ }>;
3113
+ type PcbCutoutCircleInput = z.input<typeof pcb_cutout_circle>;
3114
+ /**
3115
+ * Defines a circular cutout on the PCB.
3116
+ */
3117
+ interface PcbCutoutCircle {
3118
+ type: "pcb_cutout";
3119
+ pcb_cutout_id: string;
3120
+ pcb_group_id?: string;
3121
+ subcircuit_id?: string;
3122
+ shape: "circle";
3123
+ center: Point;
3124
+ radius: Length;
3125
+ }
3126
+ declare const pcb_cutout_polygon: z.ZodObject<z.objectUtil.extendShape<{
3127
+ type: z.ZodLiteral<"pcb_cutout">;
3128
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3129
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3130
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3131
+ }, {
3132
+ shape: z.ZodLiteral<"polygon">;
3133
+ points: z.ZodArray<z.ZodObject<{
3134
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3135
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3136
+ }, "strip", z.ZodTypeAny, {
3137
+ x: number;
3138
+ y: number;
3139
+ }, {
3140
+ x: string | number;
3141
+ y: string | number;
3142
+ }>, "many">;
3143
+ }>, "strip", z.ZodTypeAny, {
3144
+ type: "pcb_cutout";
3145
+ shape: "polygon";
3146
+ pcb_cutout_id: string;
3147
+ points: {
3148
+ x: number;
3149
+ y: number;
3150
+ }[];
3151
+ subcircuit_id?: string | undefined;
3152
+ pcb_group_id?: string | undefined;
3153
+ }, {
3154
+ type: "pcb_cutout";
3155
+ shape: "polygon";
3156
+ points: {
3157
+ x: string | number;
3158
+ y: string | number;
3159
+ }[];
3160
+ subcircuit_id?: string | undefined;
3161
+ pcb_group_id?: string | undefined;
3162
+ pcb_cutout_id?: string | undefined;
3163
+ }>;
3164
+ type PcbCutoutPolygonInput = z.input<typeof pcb_cutout_polygon>;
3165
+ /**
3166
+ * Defines a polygonal cutout on the PCB, specified by a list of points.
3167
+ * The polygon should be closed (the last point implicitly connects to the first).
3168
+ */
3169
+ interface PcbCutoutPolygon {
3170
+ type: "pcb_cutout";
3171
+ pcb_cutout_id: string;
3172
+ pcb_group_id?: string;
3173
+ subcircuit_id?: string;
3174
+ shape: "polygon";
3175
+ points: Point[];
3176
+ }
3177
+ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
3178
+ type: z.ZodLiteral<"pcb_cutout">;
3179
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3180
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3181
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3182
+ }, {
3183
+ shape: z.ZodLiteral<"rect">;
3184
+ center: z.ZodObject<{
3185
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3186
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3187
+ }, "strip", z.ZodTypeAny, {
3188
+ x: number;
3189
+ y: number;
3190
+ }, {
3191
+ x: string | number;
3192
+ y: string | number;
3193
+ }>;
3194
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3195
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3196
+ rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
3197
+ }>, "strip", z.ZodTypeAny, {
3198
+ type: "pcb_cutout";
3199
+ width: number;
3200
+ height: number;
3201
+ center: {
3202
+ x: number;
3203
+ y: number;
3204
+ };
3205
+ shape: "rect";
3206
+ pcb_cutout_id: string;
3207
+ rotation?: number | undefined;
3208
+ subcircuit_id?: string | undefined;
3209
+ pcb_group_id?: string | undefined;
3210
+ }, {
3211
+ type: "pcb_cutout";
3212
+ width: string | number;
3213
+ height: string | number;
3214
+ center: {
3215
+ x: string | number;
3216
+ y: string | number;
3217
+ };
3218
+ shape: "rect";
3219
+ rotation?: string | number | undefined;
3220
+ subcircuit_id?: string | undefined;
3221
+ pcb_group_id?: string | undefined;
3222
+ pcb_cutout_id?: string | undefined;
3223
+ }>, z.ZodObject<z.objectUtil.extendShape<{
3224
+ type: z.ZodLiteral<"pcb_cutout">;
3225
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3226
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3227
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3228
+ }, {
3229
+ shape: z.ZodLiteral<"circle">;
3230
+ center: z.ZodObject<{
3231
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3232
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3233
+ }, "strip", z.ZodTypeAny, {
3234
+ x: number;
3235
+ y: number;
3236
+ }, {
3237
+ x: string | number;
3238
+ y: string | number;
3239
+ }>;
3240
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3241
+ }>, "strip", z.ZodTypeAny, {
3242
+ type: "pcb_cutout";
3243
+ center: {
3244
+ x: number;
3245
+ y: number;
3246
+ };
3247
+ shape: "circle";
3248
+ radius: number;
3249
+ pcb_cutout_id: string;
3250
+ subcircuit_id?: string | undefined;
3251
+ pcb_group_id?: string | undefined;
3252
+ }, {
3253
+ type: "pcb_cutout";
3254
+ center: {
3255
+ x: string | number;
3256
+ y: string | number;
3257
+ };
3258
+ shape: "circle";
3259
+ radius: string | number;
3260
+ subcircuit_id?: string | undefined;
3261
+ pcb_group_id?: string | undefined;
3262
+ pcb_cutout_id?: string | undefined;
3263
+ }>, z.ZodObject<z.objectUtil.extendShape<{
3264
+ type: z.ZodLiteral<"pcb_cutout">;
3265
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3266
+ pcb_group_id: z.ZodOptional<z.ZodString>;
3267
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3268
+ }, {
3269
+ shape: z.ZodLiteral<"polygon">;
3270
+ points: z.ZodArray<z.ZodObject<{
3271
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3272
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
3273
+ }, "strip", z.ZodTypeAny, {
3274
+ x: number;
3275
+ y: number;
3276
+ }, {
3277
+ x: string | number;
3278
+ y: string | number;
3279
+ }>, "many">;
3280
+ }>, "strip", z.ZodTypeAny, {
3281
+ type: "pcb_cutout";
3282
+ shape: "polygon";
3283
+ pcb_cutout_id: string;
3284
+ points: {
3285
+ x: number;
3286
+ y: number;
3287
+ }[];
3288
+ subcircuit_id?: string | undefined;
3289
+ pcb_group_id?: string | undefined;
3290
+ }, {
3291
+ type: "pcb_cutout";
3292
+ shape: "polygon";
3293
+ points: {
3294
+ x: string | number;
3295
+ y: string | number;
3296
+ }[];
3297
+ subcircuit_id?: string | undefined;
3298
+ pcb_group_id?: string | undefined;
3299
+ pcb_cutout_id?: string | undefined;
3300
+ }>]>;
3301
+ type PcbCutoutInput = z.input<typeof pcb_cutout>;
3302
+ type PcbCutout = PcbCutoutRect | PcbCutoutCircle | PcbCutoutPolygon;
3303
+
3006
3304
  declare const pcb_missing_footprint_error: z.ZodObject<{
3007
3305
  type: z.ZodLiteral<"pcb_missing_footprint_error">;
3008
3306
  pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -3176,7 +3474,7 @@ interface PcbManualEditConflictWarning {
3176
3474
  source_component_id: string;
3177
3475
  }
3178
3476
 
3179
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError;
3477
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbCutout;
3180
3478
 
3181
3479
  interface SchematicBox {
3182
3480
  type: "schematic_box";
@@ -3234,20 +3532,20 @@ declare const schematic_path: z.ZodObject<{
3234
3532
  }>, "many">;
3235
3533
  }, "strip", z.ZodTypeAny, {
3236
3534
  type: "schematic_path";
3237
- schematic_component_id: string;
3238
3535
  points: {
3239
3536
  x: number;
3240
3537
  y: number;
3241
3538
  }[];
3539
+ schematic_component_id: string;
3242
3540
  fill_color?: "red" | "blue" | undefined;
3243
3541
  is_filled?: boolean | undefined;
3244
3542
  }, {
3245
3543
  type: "schematic_path";
3246
- schematic_component_id: string;
3247
3544
  points: {
3248
3545
  x: string | number;
3249
3546
  y: string | number;
3250
3547
  }[];
3548
+ schematic_component_id: string;
3251
3549
  fill_color?: "red" | "blue" | undefined;
3252
3550
  is_filled?: boolean | undefined;
3253
3551
  }>;
@@ -3312,6 +3610,8 @@ interface SchematicComponent {
3312
3610
  port_arrangement?: SchematicPortArrangement;
3313
3611
  port_labels?: Record<string, string>;
3314
3612
  symbol_display_value?: string;
3613
+ subcircuit_id?: string;
3614
+ schematic_group_id?: string;
3315
3615
  }
3316
3616
  declare const schematic_component_port_arrangement_by_size: z.ZodObject<{
3317
3617
  left_size: z.ZodNumber;
@@ -3632,6 +3932,8 @@ declare const schematic_component: z.ZodObject<{
3632
3932
  }>]>>;
3633
3933
  port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3634
3934
  symbol_display_value: z.ZodOptional<z.ZodString>;
3935
+ subcircuit_id: z.ZodOptional<z.ZodString>;
3936
+ schematic_group_id: z.ZodOptional<z.ZodString>;
3635
3937
  }, "strip", z.ZodTypeAny, {
3636
3938
  type: "schematic_component";
3637
3939
  source_component_id: string;
@@ -3644,6 +3946,7 @@ declare const schematic_component: z.ZodObject<{
3644
3946
  width: number;
3645
3947
  height: number;
3646
3948
  };
3949
+ subcircuit_id?: string | undefined;
3647
3950
  pin_spacing?: number | undefined;
3648
3951
  pin_styles?: Record<string, {
3649
3952
  left_margin?: number | undefined;
@@ -3678,6 +3981,7 @@ declare const schematic_component: z.ZodObject<{
3678
3981
  } | undefined;
3679
3982
  port_labels?: Record<string, string> | undefined;
3680
3983
  symbol_display_value?: string | undefined;
3984
+ schematic_group_id?: string | undefined;
3681
3985
  }, {
3682
3986
  type: "schematic_component";
3683
3987
  source_component_id: string;
@@ -3690,6 +3994,7 @@ declare const schematic_component: z.ZodObject<{
3690
3994
  width: number;
3691
3995
  height: number;
3692
3996
  };
3997
+ subcircuit_id?: string | undefined;
3693
3998
  pin_spacing?: string | number | undefined;
3694
3999
  pin_styles?: Record<string, {
3695
4000
  left_margin?: string | number | undefined;
@@ -3724,6 +4029,7 @@ declare const schematic_component: z.ZodObject<{
3724
4029
  } | undefined;
3725
4030
  port_labels?: Record<string, string> | undefined;
3726
4031
  symbol_display_value?: string | undefined;
4032
+ schematic_group_id?: string | undefined;
3727
4033
  }>;
3728
4034
  type SchematicComponentInput = z.input<typeof schematic_component>;
3729
4035
 
@@ -4470,8 +4776,8 @@ declare const schematic_manual_edit_conflict_warning: z.ZodObject<{
4470
4776
  source_component_id: string;
4471
4777
  schematic_component_id: string;
4472
4778
  subcircuit_id?: string | undefined;
4473
- schematic_manual_edit_conflict_warning_id?: string | undefined;
4474
4779
  schematic_group_id?: string | undefined;
4780
+ schematic_manual_edit_conflict_warning_id?: string | undefined;
4475
4781
  }>;
4476
4782
  type SchematicManualEditConflictWarningInput = z.input<typeof schematic_manual_edit_conflict_warning>;
4477
4783
  /**
@@ -4569,6 +4875,7 @@ interface SourceComponentBase {
4569
4875
  display_value?: string;
4570
4876
  are_pins_interchangeable?: boolean;
4571
4877
  internally_connected_source_port_ids?: string[][];
4878
+ source_group_id?: string;
4572
4879
  }
4573
4880
  declare const source_component_base: z.ZodObject<{
4574
4881
  type: z.ZodLiteral<"source_component">;
@@ -4580,10 +4887,12 @@ declare const source_component_base: z.ZodObject<{
4580
4887
  display_value: z.ZodOptional<z.ZodString>;
4581
4888
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4582
4889
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
4890
+ source_group_id: z.ZodOptional<z.ZodString>;
4583
4891
  }, "strip", z.ZodTypeAny, {
4584
4892
  type: "source_component";
4585
4893
  name: string;
4586
4894
  source_component_id: string;
4895
+ source_group_id?: string | undefined;
4587
4896
  ftype?: string | undefined;
4588
4897
  manufacturer_part_number?: string | undefined;
4589
4898
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
@@ -4594,6 +4903,7 @@ declare const source_component_base: z.ZodObject<{
4594
4903
  type: "source_component";
4595
4904
  name: string;
4596
4905
  source_component_id: string;
4906
+ source_group_id?: string | undefined;
4597
4907
  ftype?: string | undefined;
4598
4908
  manufacturer_part_number?: string | undefined;
4599
4909
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
@@ -4612,6 +4922,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
4612
4922
  display_value: z.ZodOptional<z.ZodString>;
4613
4923
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4614
4924
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
4925
+ source_group_id: z.ZodOptional<z.ZodString>;
4615
4926
  }, {
4616
4927
  ftype: z.ZodLiteral<"simple_capacitor">;
4617
4928
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -4624,6 +4935,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
4624
4935
  source_component_id: string;
4625
4936
  ftype: "simple_capacitor";
4626
4937
  capacitance: number;
4938
+ source_group_id?: string | undefined;
4627
4939
  manufacturer_part_number?: string | undefined;
4628
4940
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4629
4941
  display_value?: string | undefined;
@@ -4638,6 +4950,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
4638
4950
  source_component_id: string;
4639
4951
  ftype: "simple_capacitor";
4640
4952
  capacitance: string | number;
4953
+ source_group_id?: string | undefined;
4641
4954
  manufacturer_part_number?: string | undefined;
4642
4955
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4643
4956
  display_value?: string | undefined;
@@ -4669,6 +4982,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
4669
4982
  display_value: z.ZodOptional<z.ZodString>;
4670
4983
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4671
4984
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
4985
+ source_group_id: z.ZodOptional<z.ZodString>;
4672
4986
  }, {
4673
4987
  ftype: z.ZodLiteral<"simple_resistor">;
4674
4988
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4679,6 +4993,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
4679
4993
  source_component_id: string;
4680
4994
  ftype: "simple_resistor";
4681
4995
  resistance: number;
4996
+ source_group_id?: string | undefined;
4682
4997
  manufacturer_part_number?: string | undefined;
4683
4998
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4684
4999
  display_value?: string | undefined;
@@ -4691,6 +5006,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
4691
5006
  source_component_id: string;
4692
5007
  ftype: "simple_resistor";
4693
5008
  resistance: string | number;
5009
+ source_group_id?: string | undefined;
4694
5010
  manufacturer_part_number?: string | undefined;
4695
5011
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4696
5012
  display_value?: string | undefined;
@@ -4718,6 +5034,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
4718
5034
  display_value: z.ZodOptional<z.ZodString>;
4719
5035
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4720
5036
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5037
+ source_group_id: z.ZodOptional<z.ZodString>;
4721
5038
  }, {
4722
5039
  ftype: z.ZodLiteral<"simple_diode">;
4723
5040
  }>, "strip", z.ZodTypeAny, {
@@ -4725,6 +5042,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
4725
5042
  name: string;
4726
5043
  source_component_id: string;
4727
5044
  ftype: "simple_diode";
5045
+ source_group_id?: string | undefined;
4728
5046
  manufacturer_part_number?: string | undefined;
4729
5047
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4730
5048
  display_value?: string | undefined;
@@ -4735,6 +5053,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
4735
5053
  name: string;
4736
5054
  source_component_id: string;
4737
5055
  ftype: "simple_diode";
5056
+ source_group_id?: string | undefined;
4738
5057
  manufacturer_part_number?: string | undefined;
4739
5058
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4740
5059
  display_value?: string | undefined;
@@ -4759,6 +5078,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
4759
5078
  display_value: z.ZodOptional<z.ZodString>;
4760
5079
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4761
5080
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5081
+ source_group_id: z.ZodOptional<z.ZodString>;
4762
5082
  }, {
4763
5083
  ftype: z.ZodLiteral<"simple_ground">;
4764
5084
  }>, "strip", z.ZodTypeAny, {
@@ -4766,6 +5086,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
4766
5086
  name: string;
4767
5087
  source_component_id: string;
4768
5088
  ftype: "simple_ground";
5089
+ source_group_id?: string | undefined;
4769
5090
  manufacturer_part_number?: string | undefined;
4770
5091
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4771
5092
  display_value?: string | undefined;
@@ -4776,6 +5097,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
4776
5097
  name: string;
4777
5098
  source_component_id: string;
4778
5099
  ftype: "simple_ground";
5100
+ source_group_id?: string | undefined;
4779
5101
  manufacturer_part_number?: string | undefined;
4780
5102
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4781
5103
  display_value?: string | undefined;
@@ -4803,6 +5125,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
4803
5125
  display_value: z.ZodOptional<z.ZodString>;
4804
5126
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4805
5127
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5128
+ source_group_id: z.ZodOptional<z.ZodString>;
4806
5129
  }, {
4807
5130
  ftype: z.ZodLiteral<"simple_bug">;
4808
5131
  }>, "strip", z.ZodTypeAny, {
@@ -4810,6 +5133,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
4810
5133
  name: string;
4811
5134
  source_component_id: string;
4812
5135
  ftype: "simple_bug";
5136
+ source_group_id?: string | undefined;
4813
5137
  manufacturer_part_number?: string | undefined;
4814
5138
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4815
5139
  display_value?: string | undefined;
@@ -4820,6 +5144,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
4820
5144
  name: string;
4821
5145
  source_component_id: string;
4822
5146
  ftype: "simple_bug";
5147
+ source_group_id?: string | undefined;
4823
5148
  manufacturer_part_number?: string | undefined;
4824
5149
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4825
5150
  display_value?: string | undefined;
@@ -4839,6 +5164,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
4839
5164
  display_value: z.ZodOptional<z.ZodString>;
4840
5165
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4841
5166
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5167
+ source_group_id: z.ZodOptional<z.ZodString>;
4842
5168
  }, {
4843
5169
  ftype: z.ZodLiteral<"simple_chip">;
4844
5170
  }>, "strip", z.ZodTypeAny, {
@@ -4846,6 +5172,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
4846
5172
  name: string;
4847
5173
  source_component_id: string;
4848
5174
  ftype: "simple_chip";
5175
+ source_group_id?: string | undefined;
4849
5176
  manufacturer_part_number?: string | undefined;
4850
5177
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4851
5178
  display_value?: string | undefined;
@@ -4856,6 +5183,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
4856
5183
  name: string;
4857
5184
  source_component_id: string;
4858
5185
  ftype: "simple_chip";
5186
+ source_group_id?: string | undefined;
4859
5187
  manufacturer_part_number?: string | undefined;
4860
5188
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4861
5189
  display_value?: string | undefined;
@@ -4880,6 +5208,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
4880
5208
  display_value: z.ZodOptional<z.ZodString>;
4881
5209
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4882
5210
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5211
+ source_group_id: z.ZodOptional<z.ZodString>;
4883
5212
  }, {
4884
5213
  ftype: z.ZodLiteral<"simple_diode">;
4885
5214
  }>, {
@@ -4889,6 +5218,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
4889
5218
  name: string;
4890
5219
  source_component_id: string;
4891
5220
  ftype: "led";
5221
+ source_group_id?: string | undefined;
4892
5222
  manufacturer_part_number?: string | undefined;
4893
5223
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4894
5224
  display_value?: string | undefined;
@@ -4899,6 +5229,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
4899
5229
  name: string;
4900
5230
  source_component_id: string;
4901
5231
  ftype: "led";
5232
+ source_group_id?: string | undefined;
4902
5233
  manufacturer_part_number?: string | undefined;
4903
5234
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4904
5235
  display_value?: string | undefined;
@@ -4923,6 +5254,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
4923
5254
  display_value: z.ZodOptional<z.ZodString>;
4924
5255
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4925
5256
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5257
+ source_group_id: z.ZodOptional<z.ZodString>;
4926
5258
  }, {
4927
5259
  ftype: z.ZodLiteral<"simple_power_source">;
4928
5260
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -4932,6 +5264,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
4932
5264
  source_component_id: string;
4933
5265
  voltage: number;
4934
5266
  ftype: "simple_power_source";
5267
+ source_group_id?: string | undefined;
4935
5268
  manufacturer_part_number?: string | undefined;
4936
5269
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4937
5270
  display_value?: string | undefined;
@@ -4943,6 +5276,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
4943
5276
  source_component_id: string;
4944
5277
  voltage: string | number;
4945
5278
  ftype: "simple_power_source";
5279
+ source_group_id?: string | undefined;
4946
5280
  manufacturer_part_number?: string | undefined;
4947
5281
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4948
5282
  display_value?: string | undefined;
@@ -4968,6 +5302,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
4968
5302
  display_value: z.ZodOptional<z.ZodString>;
4969
5303
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
4970
5304
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5305
+ source_group_id: z.ZodOptional<z.ZodString>;
4971
5306
  }, {
4972
5307
  ftype: z.ZodLiteral<"simple_battery">;
4973
5308
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -4977,6 +5312,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
4977
5312
  source_component_id: string;
4978
5313
  ftype: "simple_battery";
4979
5314
  capacity: number;
5315
+ source_group_id?: string | undefined;
4980
5316
  manufacturer_part_number?: string | undefined;
4981
5317
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4982
5318
  display_value?: string | undefined;
@@ -4988,6 +5324,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
4988
5324
  source_component_id: string;
4989
5325
  ftype: "simple_battery";
4990
5326
  capacity: string | number;
5327
+ source_group_id?: string | undefined;
4991
5328
  manufacturer_part_number?: string | undefined;
4992
5329
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4993
5330
  display_value?: string | undefined;
@@ -5013,6 +5350,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
5013
5350
  display_value: z.ZodOptional<z.ZodString>;
5014
5351
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5015
5352
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5353
+ source_group_id: z.ZodOptional<z.ZodString>;
5016
5354
  }, {
5017
5355
  ftype: z.ZodLiteral<"simple_inductor">;
5018
5356
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -5022,6 +5360,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
5022
5360
  source_component_id: string;
5023
5361
  ftype: "simple_inductor";
5024
5362
  inductance: number;
5363
+ source_group_id?: string | undefined;
5025
5364
  manufacturer_part_number?: string | undefined;
5026
5365
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5027
5366
  display_value?: string | undefined;
@@ -5033,6 +5372,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
5033
5372
  source_component_id: string;
5034
5373
  ftype: "simple_inductor";
5035
5374
  inductance: string | number;
5375
+ source_group_id?: string | undefined;
5036
5376
  manufacturer_part_number?: string | undefined;
5037
5377
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5038
5378
  display_value?: string | undefined;
@@ -5058,6 +5398,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
5058
5398
  display_value: z.ZodOptional<z.ZodString>;
5059
5399
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5060
5400
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5401
+ source_group_id: z.ZodOptional<z.ZodString>;
5061
5402
  }, {
5062
5403
  ftype: z.ZodLiteral<"simple_push_button">;
5063
5404
  }>, "strip", z.ZodTypeAny, {
@@ -5065,6 +5406,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
5065
5406
  name: string;
5066
5407
  source_component_id: string;
5067
5408
  ftype: "simple_push_button";
5409
+ source_group_id?: string | undefined;
5068
5410
  manufacturer_part_number?: string | undefined;
5069
5411
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5070
5412
  display_value?: string | undefined;
@@ -5075,6 +5417,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
5075
5417
  name: string;
5076
5418
  source_component_id: string;
5077
5419
  ftype: "simple_push_button";
5420
+ source_group_id?: string | undefined;
5078
5421
  manufacturer_part_number?: string | undefined;
5079
5422
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5080
5423
  display_value?: string | undefined;
@@ -5099,6 +5442,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
5099
5442
  display_value: z.ZodOptional<z.ZodString>;
5100
5443
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5101
5444
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5445
+ source_group_id: z.ZodOptional<z.ZodString>;
5102
5446
  }, {
5103
5447
  ftype: z.ZodLiteral<"simple_potentiometer">;
5104
5448
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -5108,6 +5452,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
5108
5452
  source_component_id: string;
5109
5453
  ftype: "simple_potentiometer";
5110
5454
  max_resistance: number;
5455
+ source_group_id?: string | undefined;
5111
5456
  manufacturer_part_number?: string | undefined;
5112
5457
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5113
5458
  display_value?: string | undefined;
@@ -5119,6 +5464,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
5119
5464
  source_component_id: string;
5120
5465
  ftype: "simple_potentiometer";
5121
5466
  max_resistance: string | number;
5467
+ source_group_id?: string | undefined;
5122
5468
  manufacturer_part_number?: string | undefined;
5123
5469
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5124
5470
  display_value?: string | undefined;
@@ -5138,6 +5484,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
5138
5484
  display_value: z.ZodOptional<z.ZodString>;
5139
5485
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5140
5486
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5487
+ source_group_id: z.ZodOptional<z.ZodString>;
5141
5488
  }, {
5142
5489
  ftype: z.ZodLiteral<"simple_crystal">;
5143
5490
  frequency: z.ZodNumber;
@@ -5148,6 +5495,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
5148
5495
  source_component_id: string;
5149
5496
  ftype: "simple_crystal";
5150
5497
  frequency: number;
5498
+ source_group_id?: string | undefined;
5151
5499
  manufacturer_part_number?: string | undefined;
5152
5500
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5153
5501
  display_value?: string | undefined;
@@ -5160,6 +5508,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
5160
5508
  source_component_id: string;
5161
5509
  ftype: "simple_crystal";
5162
5510
  frequency: number;
5511
+ source_group_id?: string | undefined;
5163
5512
  manufacturer_part_number?: string | undefined;
5164
5513
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5165
5514
  display_value?: string | undefined;
@@ -5187,6 +5536,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
5187
5536
  display_value: z.ZodOptional<z.ZodString>;
5188
5537
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5189
5538
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5539
+ source_group_id: z.ZodOptional<z.ZodString>;
5190
5540
  }, {
5191
5541
  ftype: z.ZodLiteral<"simple_pin_header">;
5192
5542
  pin_count: z.ZodNumber;
@@ -5198,6 +5548,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
5198
5548
  ftype: "simple_pin_header";
5199
5549
  pin_count: number;
5200
5550
  gender: "male" | "female";
5551
+ source_group_id?: string | undefined;
5201
5552
  manufacturer_part_number?: string | undefined;
5202
5553
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5203
5554
  display_value?: string | undefined;
@@ -5209,6 +5560,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
5209
5560
  source_component_id: string;
5210
5561
  ftype: "simple_pin_header";
5211
5562
  pin_count: number;
5563
+ source_group_id?: string | undefined;
5212
5564
  manufacturer_part_number?: string | undefined;
5213
5565
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5214
5566
  display_value?: string | undefined;
@@ -5229,6 +5581,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
5229
5581
  display_value: z.ZodOptional<z.ZodString>;
5230
5582
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5231
5583
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5584
+ source_group_id: z.ZodOptional<z.ZodString>;
5232
5585
  }, {
5233
5586
  ftype: z.ZodLiteral<"simple_resonator">;
5234
5587
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -5241,6 +5594,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
5241
5594
  ftype: "simple_resonator";
5242
5595
  frequency: number;
5243
5596
  load_capacitance: number;
5597
+ source_group_id?: string | undefined;
5244
5598
  manufacturer_part_number?: string | undefined;
5245
5599
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5246
5600
  display_value?: string | undefined;
@@ -5254,6 +5608,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
5254
5608
  ftype: "simple_resonator";
5255
5609
  frequency: string | number;
5256
5610
  load_capacitance: string | number;
5611
+ source_group_id?: string | undefined;
5257
5612
  manufacturer_part_number?: string | undefined;
5258
5613
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5259
5614
  display_value?: string | undefined;
@@ -5282,6 +5637,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
5282
5637
  display_value: z.ZodOptional<z.ZodString>;
5283
5638
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5284
5639
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5640
+ source_group_id: z.ZodOptional<z.ZodString>;
5285
5641
  }, {
5286
5642
  ftype: z.ZodLiteral<"simple_transistor">;
5287
5643
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
@@ -5291,6 +5647,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
5291
5647
  source_component_id: string;
5292
5648
  ftype: "simple_transistor";
5293
5649
  transistor_type: "npn" | "pnp";
5650
+ source_group_id?: string | undefined;
5294
5651
  manufacturer_part_number?: string | undefined;
5295
5652
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5296
5653
  display_value?: string | undefined;
@@ -5302,6 +5659,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
5302
5659
  source_component_id: string;
5303
5660
  ftype: "simple_transistor";
5304
5661
  transistor_type: "npn" | "pnp";
5662
+ source_group_id?: string | undefined;
5305
5663
  manufacturer_part_number?: string | undefined;
5306
5664
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5307
5665
  display_value?: string | undefined;
@@ -5329,6 +5687,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
5329
5687
  display_value: z.ZodOptional<z.ZodString>;
5330
5688
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5331
5689
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5690
+ source_group_id: z.ZodOptional<z.ZodString>;
5332
5691
  }, {
5333
5692
  ftype: z.ZodLiteral<"simple_mosfet">;
5334
5693
  channel_type: z.ZodEnum<["n", "p"]>;
@@ -5340,6 +5699,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
5340
5699
  ftype: "simple_mosfet";
5341
5700
  channel_type: "n" | "p";
5342
5701
  mosfet_mode: "enhancement" | "depletion";
5702
+ source_group_id?: string | undefined;
5343
5703
  manufacturer_part_number?: string | undefined;
5344
5704
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5345
5705
  display_value?: string | undefined;
@@ -5352,6 +5712,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
5352
5712
  ftype: "simple_mosfet";
5353
5713
  channel_type: "n" | "p";
5354
5714
  mosfet_mode: "enhancement" | "depletion";
5715
+ source_group_id?: string | undefined;
5355
5716
  manufacturer_part_number?: string | undefined;
5356
5717
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5357
5718
  display_value?: string | undefined;
@@ -5380,6 +5741,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
5380
5741
  display_value: z.ZodOptional<z.ZodString>;
5381
5742
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5382
5743
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5744
+ source_group_id: z.ZodOptional<z.ZodString>;
5383
5745
  }, {
5384
5746
  ftype: z.ZodLiteral<"simple_switch">;
5385
5747
  }>, "strip", z.ZodTypeAny, {
@@ -5387,6 +5749,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
5387
5749
  name: string;
5388
5750
  source_component_id: string;
5389
5751
  ftype: "simple_switch";
5752
+ source_group_id?: string | undefined;
5390
5753
  manufacturer_part_number?: string | undefined;
5391
5754
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5392
5755
  display_value?: string | undefined;
@@ -5397,6 +5760,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
5397
5760
  name: string;
5398
5761
  source_component_id: string;
5399
5762
  ftype: "simple_switch";
5763
+ source_group_id?: string | undefined;
5400
5764
  manufacturer_part_number?: string | undefined;
5401
5765
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5402
5766
  display_value?: string | undefined;
@@ -5560,6 +5924,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5560
5924
  display_value: z.ZodOptional<z.ZodString>;
5561
5925
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5562
5926
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5927
+ source_group_id: z.ZodOptional<z.ZodString>;
5563
5928
  }, {
5564
5929
  ftype: z.ZodLiteral<"simple_resistor">;
5565
5930
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -5570,6 +5935,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5570
5935
  source_component_id: string;
5571
5936
  ftype: "simple_resistor";
5572
5937
  resistance: number;
5938
+ source_group_id?: string | undefined;
5573
5939
  manufacturer_part_number?: string | undefined;
5574
5940
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5575
5941
  display_value?: string | undefined;
@@ -5582,6 +5948,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5582
5948
  source_component_id: string;
5583
5949
  ftype: "simple_resistor";
5584
5950
  resistance: string | number;
5951
+ source_group_id?: string | undefined;
5585
5952
  manufacturer_part_number?: string | undefined;
5586
5953
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5587
5954
  display_value?: string | undefined;
@@ -5598,6 +5965,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5598
5965
  display_value: z.ZodOptional<z.ZodString>;
5599
5966
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5600
5967
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
5968
+ source_group_id: z.ZodOptional<z.ZodString>;
5601
5969
  }, {
5602
5970
  ftype: z.ZodLiteral<"simple_capacitor">;
5603
5971
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -5610,6 +5978,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5610
5978
  source_component_id: string;
5611
5979
  ftype: "simple_capacitor";
5612
5980
  capacitance: number;
5981
+ source_group_id?: string | undefined;
5613
5982
  manufacturer_part_number?: string | undefined;
5614
5983
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5615
5984
  display_value?: string | undefined;
@@ -5624,6 +5993,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5624
5993
  source_component_id: string;
5625
5994
  ftype: "simple_capacitor";
5626
5995
  capacitance: string | number;
5996
+ source_group_id?: string | undefined;
5627
5997
  manufacturer_part_number?: string | undefined;
5628
5998
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5629
5999
  display_value?: string | undefined;
@@ -5642,6 +6012,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5642
6012
  display_value: z.ZodOptional<z.ZodString>;
5643
6013
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5644
6014
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6015
+ source_group_id: z.ZodOptional<z.ZodString>;
5645
6016
  }, {
5646
6017
  ftype: z.ZodLiteral<"simple_diode">;
5647
6018
  }>, "strip", z.ZodTypeAny, {
@@ -5649,6 +6020,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5649
6020
  name: string;
5650
6021
  source_component_id: string;
5651
6022
  ftype: "simple_diode";
6023
+ source_group_id?: string | undefined;
5652
6024
  manufacturer_part_number?: string | undefined;
5653
6025
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5654
6026
  display_value?: string | undefined;
@@ -5659,6 +6031,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5659
6031
  name: string;
5660
6032
  source_component_id: string;
5661
6033
  ftype: "simple_diode";
6034
+ source_group_id?: string | undefined;
5662
6035
  manufacturer_part_number?: string | undefined;
5663
6036
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5664
6037
  display_value?: string | undefined;
@@ -5674,6 +6047,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5674
6047
  display_value: z.ZodOptional<z.ZodString>;
5675
6048
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5676
6049
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6050
+ source_group_id: z.ZodOptional<z.ZodString>;
5677
6051
  }, {
5678
6052
  ftype: z.ZodLiteral<"simple_ground">;
5679
6053
  }>, "strip", z.ZodTypeAny, {
@@ -5681,6 +6055,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5681
6055
  name: string;
5682
6056
  source_component_id: string;
5683
6057
  ftype: "simple_ground";
6058
+ source_group_id?: string | undefined;
5684
6059
  manufacturer_part_number?: string | undefined;
5685
6060
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5686
6061
  display_value?: string | undefined;
@@ -5691,6 +6066,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5691
6066
  name: string;
5692
6067
  source_component_id: string;
5693
6068
  ftype: "simple_ground";
6069
+ source_group_id?: string | undefined;
5694
6070
  manufacturer_part_number?: string | undefined;
5695
6071
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5696
6072
  display_value?: string | undefined;
@@ -5706,6 +6082,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5706
6082
  display_value: z.ZodOptional<z.ZodString>;
5707
6083
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5708
6084
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6085
+ source_group_id: z.ZodOptional<z.ZodString>;
5709
6086
  }, {
5710
6087
  ftype: z.ZodLiteral<"simple_chip">;
5711
6088
  }>, "strip", z.ZodTypeAny, {
@@ -5713,6 +6090,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5713
6090
  name: string;
5714
6091
  source_component_id: string;
5715
6092
  ftype: "simple_chip";
6093
+ source_group_id?: string | undefined;
5716
6094
  manufacturer_part_number?: string | undefined;
5717
6095
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5718
6096
  display_value?: string | undefined;
@@ -5723,6 +6101,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5723
6101
  name: string;
5724
6102
  source_component_id: string;
5725
6103
  ftype: "simple_chip";
6104
+ source_group_id?: string | undefined;
5726
6105
  manufacturer_part_number?: string | undefined;
5727
6106
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5728
6107
  display_value?: string | undefined;
@@ -5738,6 +6117,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5738
6117
  display_value: z.ZodOptional<z.ZodString>;
5739
6118
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5740
6119
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6120
+ source_group_id: z.ZodOptional<z.ZodString>;
5741
6121
  }, {
5742
6122
  ftype: z.ZodLiteral<"simple_bug">;
5743
6123
  }>, "strip", z.ZodTypeAny, {
@@ -5745,6 +6125,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5745
6125
  name: string;
5746
6126
  source_component_id: string;
5747
6127
  ftype: "simple_bug";
6128
+ source_group_id?: string | undefined;
5748
6129
  manufacturer_part_number?: string | undefined;
5749
6130
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5750
6131
  display_value?: string | undefined;
@@ -5755,6 +6136,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5755
6136
  name: string;
5756
6137
  source_component_id: string;
5757
6138
  ftype: "simple_bug";
6139
+ source_group_id?: string | undefined;
5758
6140
  manufacturer_part_number?: string | undefined;
5759
6141
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5760
6142
  display_value?: string | undefined;
@@ -5770,6 +6152,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5770
6152
  display_value: z.ZodOptional<z.ZodString>;
5771
6153
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5772
6154
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6155
+ source_group_id: z.ZodOptional<z.ZodString>;
5773
6156
  }, {
5774
6157
  ftype: z.ZodLiteral<"simple_diode">;
5775
6158
  }>, {
@@ -5779,6 +6162,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5779
6162
  name: string;
5780
6163
  source_component_id: string;
5781
6164
  ftype: "led";
6165
+ source_group_id?: string | undefined;
5782
6166
  manufacturer_part_number?: string | undefined;
5783
6167
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5784
6168
  display_value?: string | undefined;
@@ -5789,6 +6173,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5789
6173
  name: string;
5790
6174
  source_component_id: string;
5791
6175
  ftype: "led";
6176
+ source_group_id?: string | undefined;
5792
6177
  manufacturer_part_number?: string | undefined;
5793
6178
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5794
6179
  display_value?: string | undefined;
@@ -5804,6 +6189,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5804
6189
  display_value: z.ZodOptional<z.ZodString>;
5805
6190
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5806
6191
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6192
+ source_group_id: z.ZodOptional<z.ZodString>;
5807
6193
  }, {
5808
6194
  ftype: z.ZodLiteral<"simple_power_source">;
5809
6195
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -5813,6 +6199,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5813
6199
  source_component_id: string;
5814
6200
  voltage: number;
5815
6201
  ftype: "simple_power_source";
6202
+ source_group_id?: string | undefined;
5816
6203
  manufacturer_part_number?: string | undefined;
5817
6204
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5818
6205
  display_value?: string | undefined;
@@ -5824,6 +6211,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5824
6211
  source_component_id: string;
5825
6212
  voltage: string | number;
5826
6213
  ftype: "simple_power_source";
6214
+ source_group_id?: string | undefined;
5827
6215
  manufacturer_part_number?: string | undefined;
5828
6216
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5829
6217
  display_value?: string | undefined;
@@ -5839,6 +6227,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5839
6227
  display_value: z.ZodOptional<z.ZodString>;
5840
6228
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5841
6229
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6230
+ source_group_id: z.ZodOptional<z.ZodString>;
5842
6231
  }, {
5843
6232
  ftype: z.ZodLiteral<"simple_battery">;
5844
6233
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -5848,6 +6237,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5848
6237
  source_component_id: string;
5849
6238
  ftype: "simple_battery";
5850
6239
  capacity: number;
6240
+ source_group_id?: string | undefined;
5851
6241
  manufacturer_part_number?: string | undefined;
5852
6242
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5853
6243
  display_value?: string | undefined;
@@ -5859,6 +6249,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5859
6249
  source_component_id: string;
5860
6250
  ftype: "simple_battery";
5861
6251
  capacity: string | number;
6252
+ source_group_id?: string | undefined;
5862
6253
  manufacturer_part_number?: string | undefined;
5863
6254
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5864
6255
  display_value?: string | undefined;
@@ -5874,6 +6265,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5874
6265
  display_value: z.ZodOptional<z.ZodString>;
5875
6266
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5876
6267
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6268
+ source_group_id: z.ZodOptional<z.ZodString>;
5877
6269
  }, {
5878
6270
  ftype: z.ZodLiteral<"simple_inductor">;
5879
6271
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -5883,6 +6275,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5883
6275
  source_component_id: string;
5884
6276
  ftype: "simple_inductor";
5885
6277
  inductance: number;
6278
+ source_group_id?: string | undefined;
5886
6279
  manufacturer_part_number?: string | undefined;
5887
6280
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5888
6281
  display_value?: string | undefined;
@@ -5894,6 +6287,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5894
6287
  source_component_id: string;
5895
6288
  ftype: "simple_inductor";
5896
6289
  inductance: string | number;
6290
+ source_group_id?: string | undefined;
5897
6291
  manufacturer_part_number?: string | undefined;
5898
6292
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5899
6293
  display_value?: string | undefined;
@@ -5909,6 +6303,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5909
6303
  display_value: z.ZodOptional<z.ZodString>;
5910
6304
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5911
6305
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6306
+ source_group_id: z.ZodOptional<z.ZodString>;
5912
6307
  }, {
5913
6308
  ftype: z.ZodLiteral<"simple_push_button">;
5914
6309
  }>, "strip", z.ZodTypeAny, {
@@ -5916,6 +6311,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5916
6311
  name: string;
5917
6312
  source_component_id: string;
5918
6313
  ftype: "simple_push_button";
6314
+ source_group_id?: string | undefined;
5919
6315
  manufacturer_part_number?: string | undefined;
5920
6316
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5921
6317
  display_value?: string | undefined;
@@ -5926,6 +6322,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5926
6322
  name: string;
5927
6323
  source_component_id: string;
5928
6324
  ftype: "simple_push_button";
6325
+ source_group_id?: string | undefined;
5929
6326
  manufacturer_part_number?: string | undefined;
5930
6327
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5931
6328
  display_value?: string | undefined;
@@ -5941,6 +6338,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5941
6338
  display_value: z.ZodOptional<z.ZodString>;
5942
6339
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5943
6340
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6341
+ source_group_id: z.ZodOptional<z.ZodString>;
5944
6342
  }, {
5945
6343
  ftype: z.ZodLiteral<"simple_potentiometer">;
5946
6344
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -5950,6 +6348,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5950
6348
  source_component_id: string;
5951
6349
  ftype: "simple_potentiometer";
5952
6350
  max_resistance: number;
6351
+ source_group_id?: string | undefined;
5953
6352
  manufacturer_part_number?: string | undefined;
5954
6353
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5955
6354
  display_value?: string | undefined;
@@ -5961,6 +6360,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5961
6360
  source_component_id: string;
5962
6361
  ftype: "simple_potentiometer";
5963
6362
  max_resistance: string | number;
6363
+ source_group_id?: string | undefined;
5964
6364
  manufacturer_part_number?: string | undefined;
5965
6365
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5966
6366
  display_value?: string | undefined;
@@ -5976,6 +6376,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5976
6376
  display_value: z.ZodOptional<z.ZodString>;
5977
6377
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
5978
6378
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6379
+ source_group_id: z.ZodOptional<z.ZodString>;
5979
6380
  }, {
5980
6381
  ftype: z.ZodLiteral<"simple_crystal">;
5981
6382
  frequency: z.ZodNumber;
@@ -5986,6 +6387,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5986
6387
  source_component_id: string;
5987
6388
  ftype: "simple_crystal";
5988
6389
  frequency: number;
6390
+ source_group_id?: string | undefined;
5989
6391
  manufacturer_part_number?: string | undefined;
5990
6392
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5991
6393
  display_value?: string | undefined;
@@ -5998,6 +6400,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
5998
6400
  source_component_id: string;
5999
6401
  ftype: "simple_crystal";
6000
6402
  frequency: number;
6403
+ source_group_id?: string | undefined;
6001
6404
  manufacturer_part_number?: string | undefined;
6002
6405
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6003
6406
  display_value?: string | undefined;
@@ -6014,6 +6417,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6014
6417
  display_value: z.ZodOptional<z.ZodString>;
6015
6418
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6016
6419
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6420
+ source_group_id: z.ZodOptional<z.ZodString>;
6017
6421
  }, {
6018
6422
  ftype: z.ZodLiteral<"simple_pin_header">;
6019
6423
  pin_count: z.ZodNumber;
@@ -6025,6 +6429,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6025
6429
  ftype: "simple_pin_header";
6026
6430
  pin_count: number;
6027
6431
  gender: "male" | "female";
6432
+ source_group_id?: string | undefined;
6028
6433
  manufacturer_part_number?: string | undefined;
6029
6434
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6030
6435
  display_value?: string | undefined;
@@ -6036,6 +6441,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6036
6441
  source_component_id: string;
6037
6442
  ftype: "simple_pin_header";
6038
6443
  pin_count: number;
6444
+ source_group_id?: string | undefined;
6039
6445
  manufacturer_part_number?: string | undefined;
6040
6446
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6041
6447
  display_value?: string | undefined;
@@ -6052,6 +6458,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6052
6458
  display_value: z.ZodOptional<z.ZodString>;
6053
6459
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6054
6460
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6461
+ source_group_id: z.ZodOptional<z.ZodString>;
6055
6462
  }, {
6056
6463
  ftype: z.ZodLiteral<"simple_resonator">;
6057
6464
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -6064,6 +6471,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6064
6471
  ftype: "simple_resonator";
6065
6472
  frequency: number;
6066
6473
  load_capacitance: number;
6474
+ source_group_id?: string | undefined;
6067
6475
  manufacturer_part_number?: string | undefined;
6068
6476
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6069
6477
  display_value?: string | undefined;
@@ -6077,6 +6485,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6077
6485
  ftype: "simple_resonator";
6078
6486
  frequency: string | number;
6079
6487
  load_capacitance: string | number;
6488
+ source_group_id?: string | undefined;
6080
6489
  manufacturer_part_number?: string | undefined;
6081
6490
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6082
6491
  display_value?: string | undefined;
@@ -6093,6 +6502,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6093
6502
  display_value: z.ZodOptional<z.ZodString>;
6094
6503
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6095
6504
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6505
+ source_group_id: z.ZodOptional<z.ZodString>;
6096
6506
  }, {
6097
6507
  ftype: z.ZodLiteral<"simple_switch">;
6098
6508
  }>, "strip", z.ZodTypeAny, {
@@ -6100,6 +6510,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6100
6510
  name: string;
6101
6511
  source_component_id: string;
6102
6512
  ftype: "simple_switch";
6513
+ source_group_id?: string | undefined;
6103
6514
  manufacturer_part_number?: string | undefined;
6104
6515
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6105
6516
  display_value?: string | undefined;
@@ -6110,6 +6521,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6110
6521
  name: string;
6111
6522
  source_component_id: string;
6112
6523
  ftype: "simple_switch";
6524
+ source_group_id?: string | undefined;
6113
6525
  manufacturer_part_number?: string | undefined;
6114
6526
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6115
6527
  display_value?: string | undefined;
@@ -6125,6 +6537,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6125
6537
  display_value: z.ZodOptional<z.ZodString>;
6126
6538
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6127
6539
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6540
+ source_group_id: z.ZodOptional<z.ZodString>;
6128
6541
  }, {
6129
6542
  ftype: z.ZodLiteral<"simple_transistor">;
6130
6543
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
@@ -6134,6 +6547,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6134
6547
  source_component_id: string;
6135
6548
  ftype: "simple_transistor";
6136
6549
  transistor_type: "npn" | "pnp";
6550
+ source_group_id?: string | undefined;
6137
6551
  manufacturer_part_number?: string | undefined;
6138
6552
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6139
6553
  display_value?: string | undefined;
@@ -6145,6 +6559,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6145
6559
  source_component_id: string;
6146
6560
  ftype: "simple_transistor";
6147
6561
  transistor_type: "npn" | "pnp";
6562
+ source_group_id?: string | undefined;
6148
6563
  manufacturer_part_number?: string | undefined;
6149
6564
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6150
6565
  display_value?: string | undefined;
@@ -6160,6 +6575,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6160
6575
  display_value: z.ZodOptional<z.ZodString>;
6161
6576
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6162
6577
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
6578
+ source_group_id: z.ZodOptional<z.ZodString>;
6163
6579
  }, {
6164
6580
  ftype: z.ZodLiteral<"simple_mosfet">;
6165
6581
  channel_type: z.ZodEnum<["n", "p"]>;
@@ -6171,6 +6587,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6171
6587
  ftype: "simple_mosfet";
6172
6588
  channel_type: "n" | "p";
6173
6589
  mosfet_mode: "enhancement" | "depletion";
6590
+ source_group_id?: string | undefined;
6174
6591
  manufacturer_part_number?: string | undefined;
6175
6592
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6176
6593
  display_value?: string | undefined;
@@ -6183,6 +6600,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
6183
6600
  ftype: "simple_mosfet";
6184
6601
  channel_type: "n" | "p";
6185
6602
  mosfet_mode: "enhancement" | "depletion";
6603
+ source_group_id?: string | undefined;
6186
6604
  manufacturer_part_number?: string | undefined;
6187
6605
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6188
6606
  display_value?: string | undefined;
@@ -6612,6 +7030,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6612
7030
  display_value: z.ZodOptional<z.ZodString>;
6613
7031
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6614
7032
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7033
+ source_group_id: z.ZodOptional<z.ZodString>;
6615
7034
  }, {
6616
7035
  ftype: z.ZodLiteral<"simple_resistor">;
6617
7036
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -6622,6 +7041,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6622
7041
  source_component_id: string;
6623
7042
  ftype: "simple_resistor";
6624
7043
  resistance: number;
7044
+ source_group_id?: string | undefined;
6625
7045
  manufacturer_part_number?: string | undefined;
6626
7046
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6627
7047
  display_value?: string | undefined;
@@ -6634,6 +7054,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6634
7054
  source_component_id: string;
6635
7055
  ftype: "simple_resistor";
6636
7056
  resistance: string | number;
7057
+ source_group_id?: string | undefined;
6637
7058
  manufacturer_part_number?: string | undefined;
6638
7059
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6639
7060
  display_value?: string | undefined;
@@ -6650,6 +7071,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6650
7071
  display_value: z.ZodOptional<z.ZodString>;
6651
7072
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6652
7073
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7074
+ source_group_id: z.ZodOptional<z.ZodString>;
6653
7075
  }, {
6654
7076
  ftype: z.ZodLiteral<"simple_capacitor">;
6655
7077
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -6662,6 +7084,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6662
7084
  source_component_id: string;
6663
7085
  ftype: "simple_capacitor";
6664
7086
  capacitance: number;
7087
+ source_group_id?: string | undefined;
6665
7088
  manufacturer_part_number?: string | undefined;
6666
7089
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6667
7090
  display_value?: string | undefined;
@@ -6676,6 +7099,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6676
7099
  source_component_id: string;
6677
7100
  ftype: "simple_capacitor";
6678
7101
  capacitance: string | number;
7102
+ source_group_id?: string | undefined;
6679
7103
  manufacturer_part_number?: string | undefined;
6680
7104
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6681
7105
  display_value?: string | undefined;
@@ -6694,6 +7118,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6694
7118
  display_value: z.ZodOptional<z.ZodString>;
6695
7119
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6696
7120
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7121
+ source_group_id: z.ZodOptional<z.ZodString>;
6697
7122
  }, {
6698
7123
  ftype: z.ZodLiteral<"simple_diode">;
6699
7124
  }>, "strip", z.ZodTypeAny, {
@@ -6701,6 +7126,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6701
7126
  name: string;
6702
7127
  source_component_id: string;
6703
7128
  ftype: "simple_diode";
7129
+ source_group_id?: string | undefined;
6704
7130
  manufacturer_part_number?: string | undefined;
6705
7131
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6706
7132
  display_value?: string | undefined;
@@ -6711,6 +7137,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6711
7137
  name: string;
6712
7138
  source_component_id: string;
6713
7139
  ftype: "simple_diode";
7140
+ source_group_id?: string | undefined;
6714
7141
  manufacturer_part_number?: string | undefined;
6715
7142
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6716
7143
  display_value?: string | undefined;
@@ -6726,6 +7153,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6726
7153
  display_value: z.ZodOptional<z.ZodString>;
6727
7154
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6728
7155
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7156
+ source_group_id: z.ZodOptional<z.ZodString>;
6729
7157
  }, {
6730
7158
  ftype: z.ZodLiteral<"simple_ground">;
6731
7159
  }>, "strip", z.ZodTypeAny, {
@@ -6733,6 +7161,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6733
7161
  name: string;
6734
7162
  source_component_id: string;
6735
7163
  ftype: "simple_ground";
7164
+ source_group_id?: string | undefined;
6736
7165
  manufacturer_part_number?: string | undefined;
6737
7166
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6738
7167
  display_value?: string | undefined;
@@ -6743,6 +7172,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6743
7172
  name: string;
6744
7173
  source_component_id: string;
6745
7174
  ftype: "simple_ground";
7175
+ source_group_id?: string | undefined;
6746
7176
  manufacturer_part_number?: string | undefined;
6747
7177
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6748
7178
  display_value?: string | undefined;
@@ -6758,6 +7188,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6758
7188
  display_value: z.ZodOptional<z.ZodString>;
6759
7189
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6760
7190
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7191
+ source_group_id: z.ZodOptional<z.ZodString>;
6761
7192
  }, {
6762
7193
  ftype: z.ZodLiteral<"simple_chip">;
6763
7194
  }>, "strip", z.ZodTypeAny, {
@@ -6765,6 +7196,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6765
7196
  name: string;
6766
7197
  source_component_id: string;
6767
7198
  ftype: "simple_chip";
7199
+ source_group_id?: string | undefined;
6768
7200
  manufacturer_part_number?: string | undefined;
6769
7201
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6770
7202
  display_value?: string | undefined;
@@ -6775,6 +7207,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6775
7207
  name: string;
6776
7208
  source_component_id: string;
6777
7209
  ftype: "simple_chip";
7210
+ source_group_id?: string | undefined;
6778
7211
  manufacturer_part_number?: string | undefined;
6779
7212
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6780
7213
  display_value?: string | undefined;
@@ -6790,6 +7223,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6790
7223
  display_value: z.ZodOptional<z.ZodString>;
6791
7224
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6792
7225
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7226
+ source_group_id: z.ZodOptional<z.ZodString>;
6793
7227
  }, {
6794
7228
  ftype: z.ZodLiteral<"simple_bug">;
6795
7229
  }>, "strip", z.ZodTypeAny, {
@@ -6797,6 +7231,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6797
7231
  name: string;
6798
7232
  source_component_id: string;
6799
7233
  ftype: "simple_bug";
7234
+ source_group_id?: string | undefined;
6800
7235
  manufacturer_part_number?: string | undefined;
6801
7236
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6802
7237
  display_value?: string | undefined;
@@ -6807,6 +7242,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6807
7242
  name: string;
6808
7243
  source_component_id: string;
6809
7244
  ftype: "simple_bug";
7245
+ source_group_id?: string | undefined;
6810
7246
  manufacturer_part_number?: string | undefined;
6811
7247
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6812
7248
  display_value?: string | undefined;
@@ -6822,6 +7258,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6822
7258
  display_value: z.ZodOptional<z.ZodString>;
6823
7259
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6824
7260
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7261
+ source_group_id: z.ZodOptional<z.ZodString>;
6825
7262
  }, {
6826
7263
  ftype: z.ZodLiteral<"simple_diode">;
6827
7264
  }>, {
@@ -6831,6 +7268,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6831
7268
  name: string;
6832
7269
  source_component_id: string;
6833
7270
  ftype: "led";
7271
+ source_group_id?: string | undefined;
6834
7272
  manufacturer_part_number?: string | undefined;
6835
7273
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6836
7274
  display_value?: string | undefined;
@@ -6841,6 +7279,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6841
7279
  name: string;
6842
7280
  source_component_id: string;
6843
7281
  ftype: "led";
7282
+ source_group_id?: string | undefined;
6844
7283
  manufacturer_part_number?: string | undefined;
6845
7284
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6846
7285
  display_value?: string | undefined;
@@ -6856,6 +7295,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6856
7295
  display_value: z.ZodOptional<z.ZodString>;
6857
7296
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6858
7297
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7298
+ source_group_id: z.ZodOptional<z.ZodString>;
6859
7299
  }, {
6860
7300
  ftype: z.ZodLiteral<"simple_power_source">;
6861
7301
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -6865,6 +7305,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6865
7305
  source_component_id: string;
6866
7306
  voltage: number;
6867
7307
  ftype: "simple_power_source";
7308
+ source_group_id?: string | undefined;
6868
7309
  manufacturer_part_number?: string | undefined;
6869
7310
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6870
7311
  display_value?: string | undefined;
@@ -6876,6 +7317,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6876
7317
  source_component_id: string;
6877
7318
  voltage: string | number;
6878
7319
  ftype: "simple_power_source";
7320
+ source_group_id?: string | undefined;
6879
7321
  manufacturer_part_number?: string | undefined;
6880
7322
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6881
7323
  display_value?: string | undefined;
@@ -6891,6 +7333,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6891
7333
  display_value: z.ZodOptional<z.ZodString>;
6892
7334
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6893
7335
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7336
+ source_group_id: z.ZodOptional<z.ZodString>;
6894
7337
  }, {
6895
7338
  ftype: z.ZodLiteral<"simple_battery">;
6896
7339
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -6900,6 +7343,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6900
7343
  source_component_id: string;
6901
7344
  ftype: "simple_battery";
6902
7345
  capacity: number;
7346
+ source_group_id?: string | undefined;
6903
7347
  manufacturer_part_number?: string | undefined;
6904
7348
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6905
7349
  display_value?: string | undefined;
@@ -6911,6 +7355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6911
7355
  source_component_id: string;
6912
7356
  ftype: "simple_battery";
6913
7357
  capacity: string | number;
7358
+ source_group_id?: string | undefined;
6914
7359
  manufacturer_part_number?: string | undefined;
6915
7360
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6916
7361
  display_value?: string | undefined;
@@ -6926,6 +7371,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6926
7371
  display_value: z.ZodOptional<z.ZodString>;
6927
7372
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6928
7373
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7374
+ source_group_id: z.ZodOptional<z.ZodString>;
6929
7375
  }, {
6930
7376
  ftype: z.ZodLiteral<"simple_inductor">;
6931
7377
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -6935,6 +7381,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6935
7381
  source_component_id: string;
6936
7382
  ftype: "simple_inductor";
6937
7383
  inductance: number;
7384
+ source_group_id?: string | undefined;
6938
7385
  manufacturer_part_number?: string | undefined;
6939
7386
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6940
7387
  display_value?: string | undefined;
@@ -6946,6 +7393,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6946
7393
  source_component_id: string;
6947
7394
  ftype: "simple_inductor";
6948
7395
  inductance: string | number;
7396
+ source_group_id?: string | undefined;
6949
7397
  manufacturer_part_number?: string | undefined;
6950
7398
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6951
7399
  display_value?: string | undefined;
@@ -6961,6 +7409,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6961
7409
  display_value: z.ZodOptional<z.ZodString>;
6962
7410
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6963
7411
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7412
+ source_group_id: z.ZodOptional<z.ZodString>;
6964
7413
  }, {
6965
7414
  ftype: z.ZodLiteral<"simple_push_button">;
6966
7415
  }>, "strip", z.ZodTypeAny, {
@@ -6968,6 +7417,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6968
7417
  name: string;
6969
7418
  source_component_id: string;
6970
7419
  ftype: "simple_push_button";
7420
+ source_group_id?: string | undefined;
6971
7421
  manufacturer_part_number?: string | undefined;
6972
7422
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6973
7423
  display_value?: string | undefined;
@@ -6978,6 +7428,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6978
7428
  name: string;
6979
7429
  source_component_id: string;
6980
7430
  ftype: "simple_push_button";
7431
+ source_group_id?: string | undefined;
6981
7432
  manufacturer_part_number?: string | undefined;
6982
7433
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6983
7434
  display_value?: string | undefined;
@@ -6993,6 +7444,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
6993
7444
  display_value: z.ZodOptional<z.ZodString>;
6994
7445
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
6995
7446
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7447
+ source_group_id: z.ZodOptional<z.ZodString>;
6996
7448
  }, {
6997
7449
  ftype: z.ZodLiteral<"simple_potentiometer">;
6998
7450
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -7002,6 +7454,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7002
7454
  source_component_id: string;
7003
7455
  ftype: "simple_potentiometer";
7004
7456
  max_resistance: number;
7457
+ source_group_id?: string | undefined;
7005
7458
  manufacturer_part_number?: string | undefined;
7006
7459
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7007
7460
  display_value?: string | undefined;
@@ -7013,6 +7466,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7013
7466
  source_component_id: string;
7014
7467
  ftype: "simple_potentiometer";
7015
7468
  max_resistance: string | number;
7469
+ source_group_id?: string | undefined;
7016
7470
  manufacturer_part_number?: string | undefined;
7017
7471
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7018
7472
  display_value?: string | undefined;
@@ -7028,6 +7482,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7028
7482
  display_value: z.ZodOptional<z.ZodString>;
7029
7483
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7030
7484
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7485
+ source_group_id: z.ZodOptional<z.ZodString>;
7031
7486
  }, {
7032
7487
  ftype: z.ZodLiteral<"simple_crystal">;
7033
7488
  frequency: z.ZodNumber;
@@ -7038,6 +7493,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7038
7493
  source_component_id: string;
7039
7494
  ftype: "simple_crystal";
7040
7495
  frequency: number;
7496
+ source_group_id?: string | undefined;
7041
7497
  manufacturer_part_number?: string | undefined;
7042
7498
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7043
7499
  display_value?: string | undefined;
@@ -7050,6 +7506,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7050
7506
  source_component_id: string;
7051
7507
  ftype: "simple_crystal";
7052
7508
  frequency: number;
7509
+ source_group_id?: string | undefined;
7053
7510
  manufacturer_part_number?: string | undefined;
7054
7511
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7055
7512
  display_value?: string | undefined;
@@ -7066,6 +7523,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7066
7523
  display_value: z.ZodOptional<z.ZodString>;
7067
7524
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7068
7525
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7526
+ source_group_id: z.ZodOptional<z.ZodString>;
7069
7527
  }, {
7070
7528
  ftype: z.ZodLiteral<"simple_pin_header">;
7071
7529
  pin_count: z.ZodNumber;
@@ -7077,6 +7535,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7077
7535
  ftype: "simple_pin_header";
7078
7536
  pin_count: number;
7079
7537
  gender: "male" | "female";
7538
+ source_group_id?: string | undefined;
7080
7539
  manufacturer_part_number?: string | undefined;
7081
7540
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7082
7541
  display_value?: string | undefined;
@@ -7088,6 +7547,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7088
7547
  source_component_id: string;
7089
7548
  ftype: "simple_pin_header";
7090
7549
  pin_count: number;
7550
+ source_group_id?: string | undefined;
7091
7551
  manufacturer_part_number?: string | undefined;
7092
7552
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7093
7553
  display_value?: string | undefined;
@@ -7104,6 +7564,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7104
7564
  display_value: z.ZodOptional<z.ZodString>;
7105
7565
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7106
7566
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7567
+ source_group_id: z.ZodOptional<z.ZodString>;
7107
7568
  }, {
7108
7569
  ftype: z.ZodLiteral<"simple_resonator">;
7109
7570
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -7116,6 +7577,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7116
7577
  ftype: "simple_resonator";
7117
7578
  frequency: number;
7118
7579
  load_capacitance: number;
7580
+ source_group_id?: string | undefined;
7119
7581
  manufacturer_part_number?: string | undefined;
7120
7582
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7121
7583
  display_value?: string | undefined;
@@ -7129,6 +7591,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7129
7591
  ftype: "simple_resonator";
7130
7592
  frequency: string | number;
7131
7593
  load_capacitance: string | number;
7594
+ source_group_id?: string | undefined;
7132
7595
  manufacturer_part_number?: string | undefined;
7133
7596
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7134
7597
  display_value?: string | undefined;
@@ -7145,6 +7608,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7145
7608
  display_value: z.ZodOptional<z.ZodString>;
7146
7609
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7147
7610
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7611
+ source_group_id: z.ZodOptional<z.ZodString>;
7148
7612
  }, {
7149
7613
  ftype: z.ZodLiteral<"simple_switch">;
7150
7614
  }>, "strip", z.ZodTypeAny, {
@@ -7152,6 +7616,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7152
7616
  name: string;
7153
7617
  source_component_id: string;
7154
7618
  ftype: "simple_switch";
7619
+ source_group_id?: string | undefined;
7155
7620
  manufacturer_part_number?: string | undefined;
7156
7621
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7157
7622
  display_value?: string | undefined;
@@ -7162,6 +7627,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7162
7627
  name: string;
7163
7628
  source_component_id: string;
7164
7629
  ftype: "simple_switch";
7630
+ source_group_id?: string | undefined;
7165
7631
  manufacturer_part_number?: string | undefined;
7166
7632
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7167
7633
  display_value?: string | undefined;
@@ -7177,6 +7643,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7177
7643
  display_value: z.ZodOptional<z.ZodString>;
7178
7644
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7179
7645
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7646
+ source_group_id: z.ZodOptional<z.ZodString>;
7180
7647
  }, {
7181
7648
  ftype: z.ZodLiteral<"simple_transistor">;
7182
7649
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
@@ -7186,6 +7653,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7186
7653
  source_component_id: string;
7187
7654
  ftype: "simple_transistor";
7188
7655
  transistor_type: "npn" | "pnp";
7656
+ source_group_id?: string | undefined;
7189
7657
  manufacturer_part_number?: string | undefined;
7190
7658
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7191
7659
  display_value?: string | undefined;
@@ -7197,6 +7665,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7197
7665
  source_component_id: string;
7198
7666
  ftype: "simple_transistor";
7199
7667
  transistor_type: "npn" | "pnp";
7668
+ source_group_id?: string | undefined;
7200
7669
  manufacturer_part_number?: string | undefined;
7201
7670
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7202
7671
  display_value?: string | undefined;
@@ -7212,6 +7681,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7212
7681
  display_value: z.ZodOptional<z.ZodString>;
7213
7682
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7214
7683
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7684
+ source_group_id: z.ZodOptional<z.ZodString>;
7215
7685
  }, {
7216
7686
  ftype: z.ZodLiteral<"simple_mosfet">;
7217
7687
  channel_type: z.ZodEnum<["n", "p"]>;
@@ -7223,6 +7693,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7223
7693
  ftype: "simple_mosfet";
7224
7694
  channel_type: "n" | "p";
7225
7695
  mosfet_mode: "enhancement" | "depletion";
7696
+ source_group_id?: string | undefined;
7226
7697
  manufacturer_part_number?: string | undefined;
7227
7698
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7228
7699
  display_value?: string | undefined;
@@ -7235,6 +7706,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7235
7706
  ftype: "simple_mosfet";
7236
7707
  channel_type: "n" | "p";
7237
7708
  mosfet_mode: "enhancement" | "depletion";
7709
+ source_group_id?: string | undefined;
7238
7710
  manufacturer_part_number?: string | undefined;
7239
7711
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7240
7712
  display_value?: string | undefined;
@@ -7343,6 +7815,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7343
7815
  display_value: z.ZodOptional<z.ZodString>;
7344
7816
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7345
7817
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7818
+ source_group_id: z.ZodOptional<z.ZodString>;
7346
7819
  }, {
7347
7820
  ftype: z.ZodLiteral<"simple_diode">;
7348
7821
  }>, {
@@ -7352,6 +7825,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7352
7825
  name: string;
7353
7826
  source_component_id: string;
7354
7827
  ftype: "led";
7828
+ source_group_id?: string | undefined;
7355
7829
  manufacturer_part_number?: string | undefined;
7356
7830
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7357
7831
  display_value?: string | undefined;
@@ -7362,6 +7836,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7362
7836
  name: string;
7363
7837
  source_component_id: string;
7364
7838
  ftype: "led";
7839
+ source_group_id?: string | undefined;
7365
7840
  manufacturer_part_number?: string | undefined;
7366
7841
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7367
7842
  display_value?: string | undefined;
@@ -7431,6 +7906,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7431
7906
  display_value: z.ZodOptional<z.ZodString>;
7432
7907
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7433
7908
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7909
+ source_group_id: z.ZodOptional<z.ZodString>;
7434
7910
  }, {
7435
7911
  ftype: z.ZodLiteral<"simple_bug">;
7436
7912
  }>, "strip", z.ZodTypeAny, {
@@ -7438,6 +7914,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7438
7914
  name: string;
7439
7915
  source_component_id: string;
7440
7916
  ftype: "simple_bug";
7917
+ source_group_id?: string | undefined;
7441
7918
  manufacturer_part_number?: string | undefined;
7442
7919
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7443
7920
  display_value?: string | undefined;
@@ -7448,6 +7925,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7448
7925
  name: string;
7449
7926
  source_component_id: string;
7450
7927
  ftype: "simple_bug";
7928
+ source_group_id?: string | undefined;
7451
7929
  manufacturer_part_number?: string | undefined;
7452
7930
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7453
7931
  display_value?: string | undefined;
@@ -7463,6 +7941,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7463
7941
  display_value: z.ZodOptional<z.ZodString>;
7464
7942
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7465
7943
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7944
+ source_group_id: z.ZodOptional<z.ZodString>;
7466
7945
  }, {
7467
7946
  ftype: z.ZodLiteral<"simple_chip">;
7468
7947
  }>, "strip", z.ZodTypeAny, {
@@ -7470,6 +7949,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7470
7949
  name: string;
7471
7950
  source_component_id: string;
7472
7951
  ftype: "simple_chip";
7952
+ source_group_id?: string | undefined;
7473
7953
  manufacturer_part_number?: string | undefined;
7474
7954
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7475
7955
  display_value?: string | undefined;
@@ -7480,6 +7960,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7480
7960
  name: string;
7481
7961
  source_component_id: string;
7482
7962
  ftype: "simple_chip";
7963
+ source_group_id?: string | undefined;
7483
7964
  manufacturer_part_number?: string | undefined;
7484
7965
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7485
7966
  display_value?: string | undefined;
@@ -7495,6 +7976,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7495
7976
  display_value: z.ZodOptional<z.ZodString>;
7496
7977
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7497
7978
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
7979
+ source_group_id: z.ZodOptional<z.ZodString>;
7498
7980
  }, {
7499
7981
  ftype: z.ZodLiteral<"simple_capacitor">;
7500
7982
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -7507,6 +7989,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7507
7989
  source_component_id: string;
7508
7990
  ftype: "simple_capacitor";
7509
7991
  capacitance: number;
7992
+ source_group_id?: string | undefined;
7510
7993
  manufacturer_part_number?: string | undefined;
7511
7994
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7512
7995
  display_value?: string | undefined;
@@ -7521,6 +8004,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7521
8004
  source_component_id: string;
7522
8005
  ftype: "simple_capacitor";
7523
8006
  capacitance: string | number;
8007
+ source_group_id?: string | undefined;
7524
8008
  manufacturer_part_number?: string | undefined;
7525
8009
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7526
8010
  display_value?: string | undefined;
@@ -7539,6 +8023,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7539
8023
  display_value: z.ZodOptional<z.ZodString>;
7540
8024
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7541
8025
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8026
+ source_group_id: z.ZodOptional<z.ZodString>;
7542
8027
  }, {
7543
8028
  ftype: z.ZodLiteral<"simple_diode">;
7544
8029
  }>, "strip", z.ZodTypeAny, {
@@ -7546,6 +8031,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7546
8031
  name: string;
7547
8032
  source_component_id: string;
7548
8033
  ftype: "simple_diode";
8034
+ source_group_id?: string | undefined;
7549
8035
  manufacturer_part_number?: string | undefined;
7550
8036
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7551
8037
  display_value?: string | undefined;
@@ -7556,6 +8042,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7556
8042
  name: string;
7557
8043
  source_component_id: string;
7558
8044
  ftype: "simple_diode";
8045
+ source_group_id?: string | undefined;
7559
8046
  manufacturer_part_number?: string | undefined;
7560
8047
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7561
8048
  display_value?: string | undefined;
@@ -7571,6 +8058,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7571
8058
  display_value: z.ZodOptional<z.ZodString>;
7572
8059
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7573
8060
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8061
+ source_group_id: z.ZodOptional<z.ZodString>;
7574
8062
  }, {
7575
8063
  ftype: z.ZodLiteral<"simple_resistor">;
7576
8064
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -7581,6 +8069,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7581
8069
  source_component_id: string;
7582
8070
  ftype: "simple_resistor";
7583
8071
  resistance: number;
8072
+ source_group_id?: string | undefined;
7584
8073
  manufacturer_part_number?: string | undefined;
7585
8074
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7586
8075
  display_value?: string | undefined;
@@ -7593,6 +8082,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7593
8082
  source_component_id: string;
7594
8083
  ftype: "simple_resistor";
7595
8084
  resistance: string | number;
8085
+ source_group_id?: string | undefined;
7596
8086
  manufacturer_part_number?: string | undefined;
7597
8087
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7598
8088
  display_value?: string | undefined;
@@ -7609,6 +8099,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7609
8099
  display_value: z.ZodOptional<z.ZodString>;
7610
8100
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7611
8101
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8102
+ source_group_id: z.ZodOptional<z.ZodString>;
7612
8103
  }, {
7613
8104
  ftype: z.ZodLiteral<"simple_power_source">;
7614
8105
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -7618,6 +8109,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7618
8109
  source_component_id: string;
7619
8110
  voltage: number;
7620
8111
  ftype: "simple_power_source";
8112
+ source_group_id?: string | undefined;
7621
8113
  manufacturer_part_number?: string | undefined;
7622
8114
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7623
8115
  display_value?: string | undefined;
@@ -7629,6 +8121,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7629
8121
  source_component_id: string;
7630
8122
  voltage: string | number;
7631
8123
  ftype: "simple_power_source";
8124
+ source_group_id?: string | undefined;
7632
8125
  manufacturer_part_number?: string | undefined;
7633
8126
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7634
8127
  display_value?: string | undefined;
@@ -7644,6 +8137,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7644
8137
  display_value: z.ZodOptional<z.ZodString>;
7645
8138
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7646
8139
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8140
+ source_group_id: z.ZodOptional<z.ZodString>;
7647
8141
  }, {
7648
8142
  ftype: z.ZodLiteral<"simple_battery">;
7649
8143
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -7653,6 +8147,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7653
8147
  source_component_id: string;
7654
8148
  ftype: "simple_battery";
7655
8149
  capacity: number;
8150
+ source_group_id?: string | undefined;
7656
8151
  manufacturer_part_number?: string | undefined;
7657
8152
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7658
8153
  display_value?: string | undefined;
@@ -7664,6 +8159,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7664
8159
  source_component_id: string;
7665
8160
  ftype: "simple_battery";
7666
8161
  capacity: string | number;
8162
+ source_group_id?: string | undefined;
7667
8163
  manufacturer_part_number?: string | undefined;
7668
8164
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7669
8165
  display_value?: string | undefined;
@@ -7679,6 +8175,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7679
8175
  display_value: z.ZodOptional<z.ZodString>;
7680
8176
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7681
8177
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8178
+ source_group_id: z.ZodOptional<z.ZodString>;
7682
8179
  }, {
7683
8180
  ftype: z.ZodLiteral<"simple_inductor">;
7684
8181
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -7688,6 +8185,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7688
8185
  source_component_id: string;
7689
8186
  ftype: "simple_inductor";
7690
8187
  inductance: number;
8188
+ source_group_id?: string | undefined;
7691
8189
  manufacturer_part_number?: string | undefined;
7692
8190
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7693
8191
  display_value?: string | undefined;
@@ -7699,6 +8197,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7699
8197
  source_component_id: string;
7700
8198
  ftype: "simple_inductor";
7701
8199
  inductance: string | number;
8200
+ source_group_id?: string | undefined;
7702
8201
  manufacturer_part_number?: string | undefined;
7703
8202
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7704
8203
  display_value?: string | undefined;
@@ -7714,6 +8213,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7714
8213
  display_value: z.ZodOptional<z.ZodString>;
7715
8214
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7716
8215
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8216
+ source_group_id: z.ZodOptional<z.ZodString>;
7717
8217
  }, {
7718
8218
  ftype: z.ZodLiteral<"simple_pin_header">;
7719
8219
  pin_count: z.ZodNumber;
@@ -7725,6 +8225,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7725
8225
  ftype: "simple_pin_header";
7726
8226
  pin_count: number;
7727
8227
  gender: "male" | "female";
8228
+ source_group_id?: string | undefined;
7728
8229
  manufacturer_part_number?: string | undefined;
7729
8230
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7730
8231
  display_value?: string | undefined;
@@ -7736,6 +8237,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7736
8237
  source_component_id: string;
7737
8238
  ftype: "simple_pin_header";
7738
8239
  pin_count: number;
8240
+ source_group_id?: string | undefined;
7739
8241
  manufacturer_part_number?: string | undefined;
7740
8242
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7741
8243
  display_value?: string | undefined;
@@ -7752,6 +8254,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7752
8254
  display_value: z.ZodOptional<z.ZodString>;
7753
8255
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7754
8256
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8257
+ source_group_id: z.ZodOptional<z.ZodString>;
7755
8258
  }, {
7756
8259
  ftype: z.ZodLiteral<"simple_resonator">;
7757
8260
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -7764,6 +8267,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7764
8267
  ftype: "simple_resonator";
7765
8268
  frequency: number;
7766
8269
  load_capacitance: number;
8270
+ source_group_id?: string | undefined;
7767
8271
  manufacturer_part_number?: string | undefined;
7768
8272
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7769
8273
  display_value?: string | undefined;
@@ -7777,6 +8281,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7777
8281
  ftype: "simple_resonator";
7778
8282
  frequency: string | number;
7779
8283
  load_capacitance: string | number;
8284
+ source_group_id?: string | undefined;
7780
8285
  manufacturer_part_number?: string | undefined;
7781
8286
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7782
8287
  display_value?: string | undefined;
@@ -7793,6 +8298,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7793
8298
  display_value: z.ZodOptional<z.ZodString>;
7794
8299
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7795
8300
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8301
+ source_group_id: z.ZodOptional<z.ZodString>;
7796
8302
  }, {
7797
8303
  ftype: z.ZodLiteral<"simple_switch">;
7798
8304
  }>, "strip", z.ZodTypeAny, {
@@ -7800,6 +8306,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7800
8306
  name: string;
7801
8307
  source_component_id: string;
7802
8308
  ftype: "simple_switch";
8309
+ source_group_id?: string | undefined;
7803
8310
  manufacturer_part_number?: string | undefined;
7804
8311
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7805
8312
  display_value?: string | undefined;
@@ -7810,6 +8317,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7810
8317
  name: string;
7811
8318
  source_component_id: string;
7812
8319
  ftype: "simple_switch";
8320
+ source_group_id?: string | undefined;
7813
8321
  manufacturer_part_number?: string | undefined;
7814
8322
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7815
8323
  display_value?: string | undefined;
@@ -7825,6 +8333,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7825
8333
  display_value: z.ZodOptional<z.ZodString>;
7826
8334
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7827
8335
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8336
+ source_group_id: z.ZodOptional<z.ZodString>;
7828
8337
  }, {
7829
8338
  ftype: z.ZodLiteral<"simple_transistor">;
7830
8339
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
@@ -7834,6 +8343,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7834
8343
  source_component_id: string;
7835
8344
  ftype: "simple_transistor";
7836
8345
  transistor_type: "npn" | "pnp";
8346
+ source_group_id?: string | undefined;
7837
8347
  manufacturer_part_number?: string | undefined;
7838
8348
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7839
8349
  display_value?: string | undefined;
@@ -7845,6 +8355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7845
8355
  source_component_id: string;
7846
8356
  ftype: "simple_transistor";
7847
8357
  transistor_type: "npn" | "pnp";
8358
+ source_group_id?: string | undefined;
7848
8359
  manufacturer_part_number?: string | undefined;
7849
8360
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7850
8361
  display_value?: string | undefined;
@@ -7860,6 +8371,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7860
8371
  display_value: z.ZodOptional<z.ZodString>;
7861
8372
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7862
8373
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8374
+ source_group_id: z.ZodOptional<z.ZodString>;
7863
8375
  }, {
7864
8376
  ftype: z.ZodLiteral<"simple_mosfet">;
7865
8377
  channel_type: z.ZodEnum<["n", "p"]>;
@@ -7871,6 +8383,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7871
8383
  ftype: "simple_mosfet";
7872
8384
  channel_type: "n" | "p";
7873
8385
  mosfet_mode: "enhancement" | "depletion";
8386
+ source_group_id?: string | undefined;
7874
8387
  manufacturer_part_number?: string | undefined;
7875
8388
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7876
8389
  display_value?: string | undefined;
@@ -7883,6 +8396,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7883
8396
  ftype: "simple_mosfet";
7884
8397
  channel_type: "n" | "p";
7885
8398
  mosfet_mode: "enhancement" | "depletion";
8399
+ source_group_id?: string | undefined;
7886
8400
  manufacturer_part_number?: string | undefined;
7887
8401
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7888
8402
  display_value?: string | undefined;
@@ -7898,6 +8412,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7898
8412
  display_value: z.ZodOptional<z.ZodString>;
7899
8413
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7900
8414
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8415
+ source_group_id: z.ZodOptional<z.ZodString>;
7901
8416
  }, {
7902
8417
  ftype: z.ZodLiteral<"simple_potentiometer">;
7903
8418
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -7907,6 +8422,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7907
8422
  source_component_id: string;
7908
8423
  ftype: "simple_potentiometer";
7909
8424
  max_resistance: number;
8425
+ source_group_id?: string | undefined;
7910
8426
  manufacturer_part_number?: string | undefined;
7911
8427
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7912
8428
  display_value?: string | undefined;
@@ -7918,6 +8434,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7918
8434
  source_component_id: string;
7919
8435
  ftype: "simple_potentiometer";
7920
8436
  max_resistance: string | number;
8437
+ source_group_id?: string | undefined;
7921
8438
  manufacturer_part_number?: string | undefined;
7922
8439
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7923
8440
  display_value?: string | undefined;
@@ -7933,6 +8450,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7933
8450
  display_value: z.ZodOptional<z.ZodString>;
7934
8451
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
7935
8452
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
8453
+ source_group_id: z.ZodOptional<z.ZodString>;
7936
8454
  }, {
7937
8455
  ftype: z.ZodLiteral<"simple_push_button">;
7938
8456
  }>, "strip", z.ZodTypeAny, {
@@ -7940,6 +8458,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7940
8458
  name: string;
7941
8459
  source_component_id: string;
7942
8460
  ftype: "simple_push_button";
8461
+ source_group_id?: string | undefined;
7943
8462
  manufacturer_part_number?: string | undefined;
7944
8463
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7945
8464
  display_value?: string | undefined;
@@ -7950,6 +8469,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7950
8469
  name: string;
7951
8470
  source_component_id: string;
7952
8471
  ftype: "simple_push_button";
8472
+ source_group_id?: string | undefined;
7953
8473
  manufacturer_part_number?: string | undefined;
7954
8474
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7955
8475
  display_value?: string | undefined;
@@ -7997,6 +8517,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
7997
8517
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7998
8518
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7999
8519
  subcircuit_id: z.ZodOptional<z.ZodString>;
8520
+ pcb_group_id: z.ZodOptional<z.ZodString>;
8000
8521
  }, "strip", z.ZodTypeAny, {
8001
8522
  type: "pcb_component";
8002
8523
  width: number;
@@ -8010,6 +8531,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8010
8531
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8011
8532
  rotation: number;
8012
8533
  subcircuit_id?: string | undefined;
8534
+ pcb_group_id?: string | undefined;
8013
8535
  }, {
8014
8536
  type: "pcb_component";
8015
8537
  width: string | number;
@@ -8025,6 +8547,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8025
8547
  rotation: string | number;
8026
8548
  pcb_component_id?: string | undefined;
8027
8549
  subcircuit_id?: string | undefined;
8550
+ pcb_group_id?: string | undefined;
8028
8551
  }>, z.ZodUnion<[z.ZodObject<{
8029
8552
  type: z.ZodLiteral<"pcb_hole">;
8030
8553
  pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -8050,8 +8573,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8050
8573
  hole_shape: "circle" | "square";
8051
8574
  hole_diameter: number;
8052
8575
  subcircuit_id?: string | undefined;
8053
- pcb_hole_id?: string | undefined;
8054
8576
  pcb_group_id?: string | undefined;
8577
+ pcb_hole_id?: string | undefined;
8055
8578
  }>, z.ZodObject<{
8056
8579
  type: z.ZodLiteral<"pcb_hole">;
8057
8580
  pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -8080,8 +8603,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8080
8603
  hole_width: number;
8081
8604
  hole_height: number;
8082
8605
  subcircuit_id?: string | undefined;
8083
- pcb_hole_id?: string | undefined;
8084
8606
  pcb_group_id?: string | undefined;
8607
+ pcb_hole_id?: string | undefined;
8085
8608
  }>]>, z.ZodObject<{
8086
8609
  type: z.ZodLiteral<"pcb_missing_footprint_error">;
8087
8610
  pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -9875,7 +10398,130 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
9875
10398
  message: string;
9876
10399
  type: "pcb_autorouting_error";
9877
10400
  pcb_error_id?: string | undefined;
9878
- }>, z.ZodObject<{
10401
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
10402
+ type: z.ZodLiteral<"pcb_cutout">;
10403
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10404
+ pcb_group_id: z.ZodOptional<z.ZodString>;
10405
+ subcircuit_id: z.ZodOptional<z.ZodString>;
10406
+ }, {
10407
+ shape: z.ZodLiteral<"rect">;
10408
+ center: z.ZodObject<{
10409
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10410
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10411
+ }, "strip", z.ZodTypeAny, {
10412
+ x: number;
10413
+ y: number;
10414
+ }, {
10415
+ x: string | number;
10416
+ y: string | number;
10417
+ }>;
10418
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10419
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10420
+ rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
10421
+ }>, "strip", z.ZodTypeAny, {
10422
+ type: "pcb_cutout";
10423
+ width: number;
10424
+ height: number;
10425
+ center: {
10426
+ x: number;
10427
+ y: number;
10428
+ };
10429
+ shape: "rect";
10430
+ pcb_cutout_id: string;
10431
+ rotation?: number | undefined;
10432
+ subcircuit_id?: string | undefined;
10433
+ pcb_group_id?: string | undefined;
10434
+ }, {
10435
+ type: "pcb_cutout";
10436
+ width: string | number;
10437
+ height: string | number;
10438
+ center: {
10439
+ x: string | number;
10440
+ y: string | number;
10441
+ };
10442
+ shape: "rect";
10443
+ rotation?: string | number | undefined;
10444
+ subcircuit_id?: string | undefined;
10445
+ pcb_group_id?: string | undefined;
10446
+ pcb_cutout_id?: string | undefined;
10447
+ }>, z.ZodObject<z.objectUtil.extendShape<{
10448
+ type: z.ZodLiteral<"pcb_cutout">;
10449
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10450
+ pcb_group_id: z.ZodOptional<z.ZodString>;
10451
+ subcircuit_id: z.ZodOptional<z.ZodString>;
10452
+ }, {
10453
+ shape: z.ZodLiteral<"circle">;
10454
+ center: z.ZodObject<{
10455
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10456
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10457
+ }, "strip", z.ZodTypeAny, {
10458
+ x: number;
10459
+ y: number;
10460
+ }, {
10461
+ x: string | number;
10462
+ y: string | number;
10463
+ }>;
10464
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10465
+ }>, "strip", z.ZodTypeAny, {
10466
+ type: "pcb_cutout";
10467
+ center: {
10468
+ x: number;
10469
+ y: number;
10470
+ };
10471
+ shape: "circle";
10472
+ radius: number;
10473
+ pcb_cutout_id: string;
10474
+ subcircuit_id?: string | undefined;
10475
+ pcb_group_id?: string | undefined;
10476
+ }, {
10477
+ type: "pcb_cutout";
10478
+ center: {
10479
+ x: string | number;
10480
+ y: string | number;
10481
+ };
10482
+ shape: "circle";
10483
+ radius: string | number;
10484
+ subcircuit_id?: string | undefined;
10485
+ pcb_group_id?: string | undefined;
10486
+ pcb_cutout_id?: string | undefined;
10487
+ }>, z.ZodObject<z.objectUtil.extendShape<{
10488
+ type: z.ZodLiteral<"pcb_cutout">;
10489
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10490
+ pcb_group_id: z.ZodOptional<z.ZodString>;
10491
+ subcircuit_id: z.ZodOptional<z.ZodString>;
10492
+ }, {
10493
+ shape: z.ZodLiteral<"polygon">;
10494
+ points: z.ZodArray<z.ZodObject<{
10495
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10496
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
10497
+ }, "strip", z.ZodTypeAny, {
10498
+ x: number;
10499
+ y: number;
10500
+ }, {
10501
+ x: string | number;
10502
+ y: string | number;
10503
+ }>, "many">;
10504
+ }>, "strip", z.ZodTypeAny, {
10505
+ type: "pcb_cutout";
10506
+ shape: "polygon";
10507
+ pcb_cutout_id: string;
10508
+ points: {
10509
+ x: number;
10510
+ y: number;
10511
+ }[];
10512
+ subcircuit_id?: string | undefined;
10513
+ pcb_group_id?: string | undefined;
10514
+ }, {
10515
+ type: "pcb_cutout";
10516
+ shape: "polygon";
10517
+ points: {
10518
+ x: string | number;
10519
+ y: string | number;
10520
+ }[];
10521
+ subcircuit_id?: string | undefined;
10522
+ pcb_group_id?: string | undefined;
10523
+ pcb_cutout_id?: string | undefined;
10524
+ }>]>, z.ZodObject<{
9879
10525
  type: z.ZodLiteral<"schematic_box">;
9880
10526
  schematic_component_id: z.ZodString;
9881
10527
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -10098,6 +10744,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10098
10744
  }>]>>;
10099
10745
  port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
10100
10746
  symbol_display_value: z.ZodOptional<z.ZodString>;
10747
+ subcircuit_id: z.ZodOptional<z.ZodString>;
10748
+ schematic_group_id: z.ZodOptional<z.ZodString>;
10101
10749
  }, "strip", z.ZodTypeAny, {
10102
10750
  type: "schematic_component";
10103
10751
  source_component_id: string;
@@ -10110,6 +10758,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10110
10758
  width: number;
10111
10759
  height: number;
10112
10760
  };
10761
+ subcircuit_id?: string | undefined;
10113
10762
  pin_spacing?: number | undefined;
10114
10763
  pin_styles?: Record<string, {
10115
10764
  left_margin?: number | undefined;
@@ -10144,6 +10793,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10144
10793
  } | undefined;
10145
10794
  port_labels?: Record<string, string> | undefined;
10146
10795
  symbol_display_value?: string | undefined;
10796
+ schematic_group_id?: string | undefined;
10147
10797
  }, {
10148
10798
  type: "schematic_component";
10149
10799
  source_component_id: string;
@@ -10156,6 +10806,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10156
10806
  width: number;
10157
10807
  height: number;
10158
10808
  };
10809
+ subcircuit_id?: string | undefined;
10159
10810
  pin_spacing?: string | number | undefined;
10160
10811
  pin_styles?: Record<string, {
10161
10812
  left_margin?: string | number | undefined;
@@ -10190,6 +10841,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10190
10841
  } | undefined;
10191
10842
  port_labels?: Record<string, string> | undefined;
10192
10843
  symbol_display_value?: string | undefined;
10844
+ schematic_group_id?: string | undefined;
10193
10845
  }>, z.ZodObject<{
10194
10846
  type: z.ZodLiteral<"schematic_port">;
10195
10847
  schematic_port_id: z.ZodString;
@@ -10363,20 +11015,20 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10363
11015
  }>, "many">;
10364
11016
  }, "strip", z.ZodTypeAny, {
10365
11017
  type: "schematic_path";
10366
- schematic_component_id: string;
10367
11018
  points: {
10368
11019
  x: number;
10369
11020
  y: number;
10370
11021
  }[];
11022
+ schematic_component_id: string;
10371
11023
  fill_color?: "red" | "blue" | undefined;
10372
11024
  is_filled?: boolean | undefined;
10373
11025
  }, {
10374
11026
  type: "schematic_path";
10375
- schematic_component_id: string;
10376
11027
  points: {
10377
11028
  x: string | number;
10378
11029
  y: string | number;
10379
11030
  }[];
11031
+ schematic_component_id: string;
10380
11032
  fill_color?: "red" | "blue" | undefined;
10381
11033
  is_filled?: boolean | undefined;
10382
11034
  }>, z.ZodObject<{
@@ -10632,8 +11284,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10632
11284
  source_component_id: string;
10633
11285
  schematic_component_id: string;
10634
11286
  subcircuit_id?: string | undefined;
10635
- schematic_manual_edit_conflict_warning_id?: string | undefined;
10636
11287
  schematic_group_id?: string | undefined;
11288
+ schematic_manual_edit_conflict_warning_id?: string | undefined;
10637
11289
  }>, z.ZodObject<{
10638
11290
  type: z.ZodLiteral<"schematic_group">;
10639
11291
  schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -10865,6 +11517,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10865
11517
  display_value: z.ZodOptional<z.ZodString>;
10866
11518
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
10867
11519
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11520
+ source_group_id: z.ZodOptional<z.ZodString>;
10868
11521
  }, {
10869
11522
  ftype: z.ZodLiteral<"simple_resistor">;
10870
11523
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -10875,6 +11528,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10875
11528
  source_component_id: string;
10876
11529
  ftype: "simple_resistor";
10877
11530
  resistance: number;
11531
+ source_group_id?: string | undefined;
10878
11532
  manufacturer_part_number?: string | undefined;
10879
11533
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10880
11534
  display_value?: string | undefined;
@@ -10887,6 +11541,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10887
11541
  source_component_id: string;
10888
11542
  ftype: "simple_resistor";
10889
11543
  resistance: string | number;
11544
+ source_group_id?: string | undefined;
10890
11545
  manufacturer_part_number?: string | undefined;
10891
11546
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10892
11547
  display_value?: string | undefined;
@@ -10903,6 +11558,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10903
11558
  display_value: z.ZodOptional<z.ZodString>;
10904
11559
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
10905
11560
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11561
+ source_group_id: z.ZodOptional<z.ZodString>;
10906
11562
  }, {
10907
11563
  ftype: z.ZodLiteral<"simple_capacitor">;
10908
11564
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -10915,6 +11571,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10915
11571
  source_component_id: string;
10916
11572
  ftype: "simple_capacitor";
10917
11573
  capacitance: number;
11574
+ source_group_id?: string | undefined;
10918
11575
  manufacturer_part_number?: string | undefined;
10919
11576
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10920
11577
  display_value?: string | undefined;
@@ -10929,6 +11586,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10929
11586
  source_component_id: string;
10930
11587
  ftype: "simple_capacitor";
10931
11588
  capacitance: string | number;
11589
+ source_group_id?: string | undefined;
10932
11590
  manufacturer_part_number?: string | undefined;
10933
11591
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10934
11592
  display_value?: string | undefined;
@@ -10947,6 +11605,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10947
11605
  display_value: z.ZodOptional<z.ZodString>;
10948
11606
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
10949
11607
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11608
+ source_group_id: z.ZodOptional<z.ZodString>;
10950
11609
  }, {
10951
11610
  ftype: z.ZodLiteral<"simple_diode">;
10952
11611
  }>, "strip", z.ZodTypeAny, {
@@ -10954,6 +11613,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10954
11613
  name: string;
10955
11614
  source_component_id: string;
10956
11615
  ftype: "simple_diode";
11616
+ source_group_id?: string | undefined;
10957
11617
  manufacturer_part_number?: string | undefined;
10958
11618
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10959
11619
  display_value?: string | undefined;
@@ -10964,6 +11624,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10964
11624
  name: string;
10965
11625
  source_component_id: string;
10966
11626
  ftype: "simple_diode";
11627
+ source_group_id?: string | undefined;
10967
11628
  manufacturer_part_number?: string | undefined;
10968
11629
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10969
11630
  display_value?: string | undefined;
@@ -10979,6 +11640,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10979
11640
  display_value: z.ZodOptional<z.ZodString>;
10980
11641
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
10981
11642
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11643
+ source_group_id: z.ZodOptional<z.ZodString>;
10982
11644
  }, {
10983
11645
  ftype: z.ZodLiteral<"simple_ground">;
10984
11646
  }>, "strip", z.ZodTypeAny, {
@@ -10986,6 +11648,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10986
11648
  name: string;
10987
11649
  source_component_id: string;
10988
11650
  ftype: "simple_ground";
11651
+ source_group_id?: string | undefined;
10989
11652
  manufacturer_part_number?: string | undefined;
10990
11653
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10991
11654
  display_value?: string | undefined;
@@ -10996,6 +11659,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
10996
11659
  name: string;
10997
11660
  source_component_id: string;
10998
11661
  ftype: "simple_ground";
11662
+ source_group_id?: string | undefined;
10999
11663
  manufacturer_part_number?: string | undefined;
11000
11664
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11001
11665
  display_value?: string | undefined;
@@ -11011,6 +11675,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11011
11675
  display_value: z.ZodOptional<z.ZodString>;
11012
11676
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11013
11677
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11678
+ source_group_id: z.ZodOptional<z.ZodString>;
11014
11679
  }, {
11015
11680
  ftype: z.ZodLiteral<"simple_chip">;
11016
11681
  }>, "strip", z.ZodTypeAny, {
@@ -11018,6 +11683,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11018
11683
  name: string;
11019
11684
  source_component_id: string;
11020
11685
  ftype: "simple_chip";
11686
+ source_group_id?: string | undefined;
11021
11687
  manufacturer_part_number?: string | undefined;
11022
11688
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11023
11689
  display_value?: string | undefined;
@@ -11028,6 +11694,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11028
11694
  name: string;
11029
11695
  source_component_id: string;
11030
11696
  ftype: "simple_chip";
11697
+ source_group_id?: string | undefined;
11031
11698
  manufacturer_part_number?: string | undefined;
11032
11699
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11033
11700
  display_value?: string | undefined;
@@ -11043,6 +11710,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11043
11710
  display_value: z.ZodOptional<z.ZodString>;
11044
11711
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11045
11712
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11713
+ source_group_id: z.ZodOptional<z.ZodString>;
11046
11714
  }, {
11047
11715
  ftype: z.ZodLiteral<"simple_bug">;
11048
11716
  }>, "strip", z.ZodTypeAny, {
@@ -11050,6 +11718,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11050
11718
  name: string;
11051
11719
  source_component_id: string;
11052
11720
  ftype: "simple_bug";
11721
+ source_group_id?: string | undefined;
11053
11722
  manufacturer_part_number?: string | undefined;
11054
11723
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11055
11724
  display_value?: string | undefined;
@@ -11060,6 +11729,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11060
11729
  name: string;
11061
11730
  source_component_id: string;
11062
11731
  ftype: "simple_bug";
11732
+ source_group_id?: string | undefined;
11063
11733
  manufacturer_part_number?: string | undefined;
11064
11734
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11065
11735
  display_value?: string | undefined;
@@ -11075,6 +11745,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11075
11745
  display_value: z.ZodOptional<z.ZodString>;
11076
11746
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11077
11747
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11748
+ source_group_id: z.ZodOptional<z.ZodString>;
11078
11749
  }, {
11079
11750
  ftype: z.ZodLiteral<"simple_diode">;
11080
11751
  }>, {
@@ -11084,6 +11755,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11084
11755
  name: string;
11085
11756
  source_component_id: string;
11086
11757
  ftype: "led";
11758
+ source_group_id?: string | undefined;
11087
11759
  manufacturer_part_number?: string | undefined;
11088
11760
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11089
11761
  display_value?: string | undefined;
@@ -11094,6 +11766,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11094
11766
  name: string;
11095
11767
  source_component_id: string;
11096
11768
  ftype: "led";
11769
+ source_group_id?: string | undefined;
11097
11770
  manufacturer_part_number?: string | undefined;
11098
11771
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11099
11772
  display_value?: string | undefined;
@@ -11109,6 +11782,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11109
11782
  display_value: z.ZodOptional<z.ZodString>;
11110
11783
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11111
11784
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11785
+ source_group_id: z.ZodOptional<z.ZodString>;
11112
11786
  }, {
11113
11787
  ftype: z.ZodLiteral<"simple_power_source">;
11114
11788
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11118,6 +11792,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11118
11792
  source_component_id: string;
11119
11793
  voltage: number;
11120
11794
  ftype: "simple_power_source";
11795
+ source_group_id?: string | undefined;
11121
11796
  manufacturer_part_number?: string | undefined;
11122
11797
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11123
11798
  display_value?: string | undefined;
@@ -11129,6 +11804,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11129
11804
  source_component_id: string;
11130
11805
  voltage: string | number;
11131
11806
  ftype: "simple_power_source";
11807
+ source_group_id?: string | undefined;
11132
11808
  manufacturer_part_number?: string | undefined;
11133
11809
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11134
11810
  display_value?: string | undefined;
@@ -11144,6 +11820,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11144
11820
  display_value: z.ZodOptional<z.ZodString>;
11145
11821
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11146
11822
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11823
+ source_group_id: z.ZodOptional<z.ZodString>;
11147
11824
  }, {
11148
11825
  ftype: z.ZodLiteral<"simple_battery">;
11149
11826
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -11153,6 +11830,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11153
11830
  source_component_id: string;
11154
11831
  ftype: "simple_battery";
11155
11832
  capacity: number;
11833
+ source_group_id?: string | undefined;
11156
11834
  manufacturer_part_number?: string | undefined;
11157
11835
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11158
11836
  display_value?: string | undefined;
@@ -11164,6 +11842,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11164
11842
  source_component_id: string;
11165
11843
  ftype: "simple_battery";
11166
11844
  capacity: string | number;
11845
+ source_group_id?: string | undefined;
11167
11846
  manufacturer_part_number?: string | undefined;
11168
11847
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11169
11848
  display_value?: string | undefined;
@@ -11179,6 +11858,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11179
11858
  display_value: z.ZodOptional<z.ZodString>;
11180
11859
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11181
11860
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11861
+ source_group_id: z.ZodOptional<z.ZodString>;
11182
11862
  }, {
11183
11863
  ftype: z.ZodLiteral<"simple_inductor">;
11184
11864
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11188,6 +11868,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11188
11868
  source_component_id: string;
11189
11869
  ftype: "simple_inductor";
11190
11870
  inductance: number;
11871
+ source_group_id?: string | undefined;
11191
11872
  manufacturer_part_number?: string | undefined;
11192
11873
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11193
11874
  display_value?: string | undefined;
@@ -11199,6 +11880,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11199
11880
  source_component_id: string;
11200
11881
  ftype: "simple_inductor";
11201
11882
  inductance: string | number;
11883
+ source_group_id?: string | undefined;
11202
11884
  manufacturer_part_number?: string | undefined;
11203
11885
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11204
11886
  display_value?: string | undefined;
@@ -11214,6 +11896,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11214
11896
  display_value: z.ZodOptional<z.ZodString>;
11215
11897
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11216
11898
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11899
+ source_group_id: z.ZodOptional<z.ZodString>;
11217
11900
  }, {
11218
11901
  ftype: z.ZodLiteral<"simple_push_button">;
11219
11902
  }>, "strip", z.ZodTypeAny, {
@@ -11221,6 +11904,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11221
11904
  name: string;
11222
11905
  source_component_id: string;
11223
11906
  ftype: "simple_push_button";
11907
+ source_group_id?: string | undefined;
11224
11908
  manufacturer_part_number?: string | undefined;
11225
11909
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11226
11910
  display_value?: string | undefined;
@@ -11231,6 +11915,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11231
11915
  name: string;
11232
11916
  source_component_id: string;
11233
11917
  ftype: "simple_push_button";
11918
+ source_group_id?: string | undefined;
11234
11919
  manufacturer_part_number?: string | undefined;
11235
11920
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11236
11921
  display_value?: string | undefined;
@@ -11246,6 +11931,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11246
11931
  display_value: z.ZodOptional<z.ZodString>;
11247
11932
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11248
11933
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11934
+ source_group_id: z.ZodOptional<z.ZodString>;
11249
11935
  }, {
11250
11936
  ftype: z.ZodLiteral<"simple_potentiometer">;
11251
11937
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11255,6 +11941,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11255
11941
  source_component_id: string;
11256
11942
  ftype: "simple_potentiometer";
11257
11943
  max_resistance: number;
11944
+ source_group_id?: string | undefined;
11258
11945
  manufacturer_part_number?: string | undefined;
11259
11946
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11260
11947
  display_value?: string | undefined;
@@ -11266,6 +11953,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11266
11953
  source_component_id: string;
11267
11954
  ftype: "simple_potentiometer";
11268
11955
  max_resistance: string | number;
11956
+ source_group_id?: string | undefined;
11269
11957
  manufacturer_part_number?: string | undefined;
11270
11958
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11271
11959
  display_value?: string | undefined;
@@ -11281,6 +11969,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11281
11969
  display_value: z.ZodOptional<z.ZodString>;
11282
11970
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11283
11971
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11972
+ source_group_id: z.ZodOptional<z.ZodString>;
11284
11973
  }, {
11285
11974
  ftype: z.ZodLiteral<"simple_crystal">;
11286
11975
  frequency: z.ZodNumber;
@@ -11291,6 +11980,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11291
11980
  source_component_id: string;
11292
11981
  ftype: "simple_crystal";
11293
11982
  frequency: number;
11983
+ source_group_id?: string | undefined;
11294
11984
  manufacturer_part_number?: string | undefined;
11295
11985
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11296
11986
  display_value?: string | undefined;
@@ -11303,6 +11993,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11303
11993
  source_component_id: string;
11304
11994
  ftype: "simple_crystal";
11305
11995
  frequency: number;
11996
+ source_group_id?: string | undefined;
11306
11997
  manufacturer_part_number?: string | undefined;
11307
11998
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11308
11999
  display_value?: string | undefined;
@@ -11319,6 +12010,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11319
12010
  display_value: z.ZodOptional<z.ZodString>;
11320
12011
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11321
12012
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12013
+ source_group_id: z.ZodOptional<z.ZodString>;
11322
12014
  }, {
11323
12015
  ftype: z.ZodLiteral<"simple_pin_header">;
11324
12016
  pin_count: z.ZodNumber;
@@ -11330,6 +12022,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11330
12022
  ftype: "simple_pin_header";
11331
12023
  pin_count: number;
11332
12024
  gender: "male" | "female";
12025
+ source_group_id?: string | undefined;
11333
12026
  manufacturer_part_number?: string | undefined;
11334
12027
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11335
12028
  display_value?: string | undefined;
@@ -11341,6 +12034,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11341
12034
  source_component_id: string;
11342
12035
  ftype: "simple_pin_header";
11343
12036
  pin_count: number;
12037
+ source_group_id?: string | undefined;
11344
12038
  manufacturer_part_number?: string | undefined;
11345
12039
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11346
12040
  display_value?: string | undefined;
@@ -11357,6 +12051,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11357
12051
  display_value: z.ZodOptional<z.ZodString>;
11358
12052
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11359
12053
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12054
+ source_group_id: z.ZodOptional<z.ZodString>;
11360
12055
  }, {
11361
12056
  ftype: z.ZodLiteral<"simple_resonator">;
11362
12057
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -11369,6 +12064,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11369
12064
  ftype: "simple_resonator";
11370
12065
  frequency: number;
11371
12066
  load_capacitance: number;
12067
+ source_group_id?: string | undefined;
11372
12068
  manufacturer_part_number?: string | undefined;
11373
12069
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11374
12070
  display_value?: string | undefined;
@@ -11382,6 +12078,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11382
12078
  ftype: "simple_resonator";
11383
12079
  frequency: string | number;
11384
12080
  load_capacitance: string | number;
12081
+ source_group_id?: string | undefined;
11385
12082
  manufacturer_part_number?: string | undefined;
11386
12083
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11387
12084
  display_value?: string | undefined;
@@ -11398,6 +12095,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11398
12095
  display_value: z.ZodOptional<z.ZodString>;
11399
12096
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11400
12097
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12098
+ source_group_id: z.ZodOptional<z.ZodString>;
11401
12099
  }, {
11402
12100
  ftype: z.ZodLiteral<"simple_switch">;
11403
12101
  }>, "strip", z.ZodTypeAny, {
@@ -11405,6 +12103,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11405
12103
  name: string;
11406
12104
  source_component_id: string;
11407
12105
  ftype: "simple_switch";
12106
+ source_group_id?: string | undefined;
11408
12107
  manufacturer_part_number?: string | undefined;
11409
12108
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11410
12109
  display_value?: string | undefined;
@@ -11415,6 +12114,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11415
12114
  name: string;
11416
12115
  source_component_id: string;
11417
12116
  ftype: "simple_switch";
12117
+ source_group_id?: string | undefined;
11418
12118
  manufacturer_part_number?: string | undefined;
11419
12119
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11420
12120
  display_value?: string | undefined;
@@ -11430,6 +12130,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11430
12130
  display_value: z.ZodOptional<z.ZodString>;
11431
12131
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11432
12132
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12133
+ source_group_id: z.ZodOptional<z.ZodString>;
11433
12134
  }, {
11434
12135
  ftype: z.ZodLiteral<"simple_transistor">;
11435
12136
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
@@ -11439,6 +12140,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11439
12140
  source_component_id: string;
11440
12141
  ftype: "simple_transistor";
11441
12142
  transistor_type: "npn" | "pnp";
12143
+ source_group_id?: string | undefined;
11442
12144
  manufacturer_part_number?: string | undefined;
11443
12145
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11444
12146
  display_value?: string | undefined;
@@ -11450,6 +12152,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11450
12152
  source_component_id: string;
11451
12153
  ftype: "simple_transistor";
11452
12154
  transistor_type: "npn" | "pnp";
12155
+ source_group_id?: string | undefined;
11453
12156
  manufacturer_part_number?: string | undefined;
11454
12157
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11455
12158
  display_value?: string | undefined;
@@ -11465,6 +12168,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11465
12168
  display_value: z.ZodOptional<z.ZodString>;
11466
12169
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11467
12170
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12171
+ source_group_id: z.ZodOptional<z.ZodString>;
11468
12172
  }, {
11469
12173
  ftype: z.ZodLiteral<"simple_mosfet">;
11470
12174
  channel_type: z.ZodEnum<["n", "p"]>;
@@ -11476,6 +12180,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11476
12180
  ftype: "simple_mosfet";
11477
12181
  channel_type: "n" | "p";
11478
12182
  mosfet_mode: "enhancement" | "depletion";
12183
+ source_group_id?: string | undefined;
11479
12184
  manufacturer_part_number?: string | undefined;
11480
12185
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11481
12186
  display_value?: string | undefined;
@@ -11488,6 +12193,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11488
12193
  ftype: "simple_mosfet";
11489
12194
  channel_type: "n" | "p";
11490
12195
  mosfet_mode: "enhancement" | "depletion";
12196
+ source_group_id?: string | undefined;
11491
12197
  manufacturer_part_number?: string | undefined;
11492
12198
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11493
12199
  display_value?: string | undefined;
@@ -11596,6 +12302,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11596
12302
  display_value: z.ZodOptional<z.ZodString>;
11597
12303
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11598
12304
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12305
+ source_group_id: z.ZodOptional<z.ZodString>;
11599
12306
  }, {
11600
12307
  ftype: z.ZodLiteral<"simple_diode">;
11601
12308
  }>, {
@@ -11605,6 +12312,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11605
12312
  name: string;
11606
12313
  source_component_id: string;
11607
12314
  ftype: "led";
12315
+ source_group_id?: string | undefined;
11608
12316
  manufacturer_part_number?: string | undefined;
11609
12317
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11610
12318
  display_value?: string | undefined;
@@ -11615,6 +12323,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11615
12323
  name: string;
11616
12324
  source_component_id: string;
11617
12325
  ftype: "led";
12326
+ source_group_id?: string | undefined;
11618
12327
  manufacturer_part_number?: string | undefined;
11619
12328
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11620
12329
  display_value?: string | undefined;
@@ -11684,6 +12393,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11684
12393
  display_value: z.ZodOptional<z.ZodString>;
11685
12394
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11686
12395
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12396
+ source_group_id: z.ZodOptional<z.ZodString>;
11687
12397
  }, {
11688
12398
  ftype: z.ZodLiteral<"simple_bug">;
11689
12399
  }>, "strip", z.ZodTypeAny, {
@@ -11691,6 +12401,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11691
12401
  name: string;
11692
12402
  source_component_id: string;
11693
12403
  ftype: "simple_bug";
12404
+ source_group_id?: string | undefined;
11694
12405
  manufacturer_part_number?: string | undefined;
11695
12406
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11696
12407
  display_value?: string | undefined;
@@ -11701,6 +12412,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11701
12412
  name: string;
11702
12413
  source_component_id: string;
11703
12414
  ftype: "simple_bug";
12415
+ source_group_id?: string | undefined;
11704
12416
  manufacturer_part_number?: string | undefined;
11705
12417
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11706
12418
  display_value?: string | undefined;
@@ -11716,6 +12428,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11716
12428
  display_value: z.ZodOptional<z.ZodString>;
11717
12429
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11718
12430
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12431
+ source_group_id: z.ZodOptional<z.ZodString>;
11719
12432
  }, {
11720
12433
  ftype: z.ZodLiteral<"simple_chip">;
11721
12434
  }>, "strip", z.ZodTypeAny, {
@@ -11723,6 +12436,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11723
12436
  name: string;
11724
12437
  source_component_id: string;
11725
12438
  ftype: "simple_chip";
12439
+ source_group_id?: string | undefined;
11726
12440
  manufacturer_part_number?: string | undefined;
11727
12441
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11728
12442
  display_value?: string | undefined;
@@ -11733,6 +12447,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11733
12447
  name: string;
11734
12448
  source_component_id: string;
11735
12449
  ftype: "simple_chip";
12450
+ source_group_id?: string | undefined;
11736
12451
  manufacturer_part_number?: string | undefined;
11737
12452
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11738
12453
  display_value?: string | undefined;
@@ -11748,6 +12463,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11748
12463
  display_value: z.ZodOptional<z.ZodString>;
11749
12464
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11750
12465
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12466
+ source_group_id: z.ZodOptional<z.ZodString>;
11751
12467
  }, {
11752
12468
  ftype: z.ZodLiteral<"simple_capacitor">;
11753
12469
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -11760,6 +12476,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11760
12476
  source_component_id: string;
11761
12477
  ftype: "simple_capacitor";
11762
12478
  capacitance: number;
12479
+ source_group_id?: string | undefined;
11763
12480
  manufacturer_part_number?: string | undefined;
11764
12481
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11765
12482
  display_value?: string | undefined;
@@ -11774,6 +12491,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11774
12491
  source_component_id: string;
11775
12492
  ftype: "simple_capacitor";
11776
12493
  capacitance: string | number;
12494
+ source_group_id?: string | undefined;
11777
12495
  manufacturer_part_number?: string | undefined;
11778
12496
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11779
12497
  display_value?: string | undefined;
@@ -11792,6 +12510,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11792
12510
  display_value: z.ZodOptional<z.ZodString>;
11793
12511
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11794
12512
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12513
+ source_group_id: z.ZodOptional<z.ZodString>;
11795
12514
  }, {
11796
12515
  ftype: z.ZodLiteral<"simple_diode">;
11797
12516
  }>, "strip", z.ZodTypeAny, {
@@ -11799,6 +12518,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11799
12518
  name: string;
11800
12519
  source_component_id: string;
11801
12520
  ftype: "simple_diode";
12521
+ source_group_id?: string | undefined;
11802
12522
  manufacturer_part_number?: string | undefined;
11803
12523
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11804
12524
  display_value?: string | undefined;
@@ -11809,6 +12529,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11809
12529
  name: string;
11810
12530
  source_component_id: string;
11811
12531
  ftype: "simple_diode";
12532
+ source_group_id?: string | undefined;
11812
12533
  manufacturer_part_number?: string | undefined;
11813
12534
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11814
12535
  display_value?: string | undefined;
@@ -11824,6 +12545,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11824
12545
  display_value: z.ZodOptional<z.ZodString>;
11825
12546
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11826
12547
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12548
+ source_group_id: z.ZodOptional<z.ZodString>;
11827
12549
  }, {
11828
12550
  ftype: z.ZodLiteral<"simple_resistor">;
11829
12551
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11834,6 +12556,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11834
12556
  source_component_id: string;
11835
12557
  ftype: "simple_resistor";
11836
12558
  resistance: number;
12559
+ source_group_id?: string | undefined;
11837
12560
  manufacturer_part_number?: string | undefined;
11838
12561
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11839
12562
  display_value?: string | undefined;
@@ -11846,6 +12569,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11846
12569
  source_component_id: string;
11847
12570
  ftype: "simple_resistor";
11848
12571
  resistance: string | number;
12572
+ source_group_id?: string | undefined;
11849
12573
  manufacturer_part_number?: string | undefined;
11850
12574
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11851
12575
  display_value?: string | undefined;
@@ -11862,6 +12586,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11862
12586
  display_value: z.ZodOptional<z.ZodString>;
11863
12587
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11864
12588
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12589
+ source_group_id: z.ZodOptional<z.ZodString>;
11865
12590
  }, {
11866
12591
  ftype: z.ZodLiteral<"simple_power_source">;
11867
12592
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11871,6 +12596,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11871
12596
  source_component_id: string;
11872
12597
  voltage: number;
11873
12598
  ftype: "simple_power_source";
12599
+ source_group_id?: string | undefined;
11874
12600
  manufacturer_part_number?: string | undefined;
11875
12601
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11876
12602
  display_value?: string | undefined;
@@ -11882,6 +12608,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11882
12608
  source_component_id: string;
11883
12609
  voltage: string | number;
11884
12610
  ftype: "simple_power_source";
12611
+ source_group_id?: string | undefined;
11885
12612
  manufacturer_part_number?: string | undefined;
11886
12613
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11887
12614
  display_value?: string | undefined;
@@ -11897,6 +12624,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11897
12624
  display_value: z.ZodOptional<z.ZodString>;
11898
12625
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11899
12626
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12627
+ source_group_id: z.ZodOptional<z.ZodString>;
11900
12628
  }, {
11901
12629
  ftype: z.ZodLiteral<"simple_battery">;
11902
12630
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -11906,6 +12634,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11906
12634
  source_component_id: string;
11907
12635
  ftype: "simple_battery";
11908
12636
  capacity: number;
12637
+ source_group_id?: string | undefined;
11909
12638
  manufacturer_part_number?: string | undefined;
11910
12639
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11911
12640
  display_value?: string | undefined;
@@ -11917,6 +12646,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11917
12646
  source_component_id: string;
11918
12647
  ftype: "simple_battery";
11919
12648
  capacity: string | number;
12649
+ source_group_id?: string | undefined;
11920
12650
  manufacturer_part_number?: string | undefined;
11921
12651
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11922
12652
  display_value?: string | undefined;
@@ -11932,6 +12662,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11932
12662
  display_value: z.ZodOptional<z.ZodString>;
11933
12663
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11934
12664
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12665
+ source_group_id: z.ZodOptional<z.ZodString>;
11935
12666
  }, {
11936
12667
  ftype: z.ZodLiteral<"simple_inductor">;
11937
12668
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -11941,6 +12672,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11941
12672
  source_component_id: string;
11942
12673
  ftype: "simple_inductor";
11943
12674
  inductance: number;
12675
+ source_group_id?: string | undefined;
11944
12676
  manufacturer_part_number?: string | undefined;
11945
12677
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11946
12678
  display_value?: string | undefined;
@@ -11952,6 +12684,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11952
12684
  source_component_id: string;
11953
12685
  ftype: "simple_inductor";
11954
12686
  inductance: string | number;
12687
+ source_group_id?: string | undefined;
11955
12688
  manufacturer_part_number?: string | undefined;
11956
12689
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11957
12690
  display_value?: string | undefined;
@@ -11967,6 +12700,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11967
12700
  display_value: z.ZodOptional<z.ZodString>;
11968
12701
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11969
12702
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12703
+ source_group_id: z.ZodOptional<z.ZodString>;
11970
12704
  }, {
11971
12705
  ftype: z.ZodLiteral<"simple_pin_header">;
11972
12706
  pin_count: z.ZodNumber;
@@ -11978,6 +12712,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11978
12712
  ftype: "simple_pin_header";
11979
12713
  pin_count: number;
11980
12714
  gender: "male" | "female";
12715
+ source_group_id?: string | undefined;
11981
12716
  manufacturer_part_number?: string | undefined;
11982
12717
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11983
12718
  display_value?: string | undefined;
@@ -11989,6 +12724,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
11989
12724
  source_component_id: string;
11990
12725
  ftype: "simple_pin_header";
11991
12726
  pin_count: number;
12727
+ source_group_id?: string | undefined;
11992
12728
  manufacturer_part_number?: string | undefined;
11993
12729
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11994
12730
  display_value?: string | undefined;
@@ -12005,6 +12741,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12005
12741
  display_value: z.ZodOptional<z.ZodString>;
12006
12742
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12007
12743
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12744
+ source_group_id: z.ZodOptional<z.ZodString>;
12008
12745
  }, {
12009
12746
  ftype: z.ZodLiteral<"simple_resonator">;
12010
12747
  load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -12017,6 +12754,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12017
12754
  ftype: "simple_resonator";
12018
12755
  frequency: number;
12019
12756
  load_capacitance: number;
12757
+ source_group_id?: string | undefined;
12020
12758
  manufacturer_part_number?: string | undefined;
12021
12759
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12022
12760
  display_value?: string | undefined;
@@ -12030,6 +12768,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12030
12768
  ftype: "simple_resonator";
12031
12769
  frequency: string | number;
12032
12770
  load_capacitance: string | number;
12771
+ source_group_id?: string | undefined;
12033
12772
  manufacturer_part_number?: string | undefined;
12034
12773
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12035
12774
  display_value?: string | undefined;
@@ -12046,6 +12785,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12046
12785
  display_value: z.ZodOptional<z.ZodString>;
12047
12786
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12048
12787
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12788
+ source_group_id: z.ZodOptional<z.ZodString>;
12049
12789
  }, {
12050
12790
  ftype: z.ZodLiteral<"simple_switch">;
12051
12791
  }>, "strip", z.ZodTypeAny, {
@@ -12053,6 +12793,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12053
12793
  name: string;
12054
12794
  source_component_id: string;
12055
12795
  ftype: "simple_switch";
12796
+ source_group_id?: string | undefined;
12056
12797
  manufacturer_part_number?: string | undefined;
12057
12798
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12058
12799
  display_value?: string | undefined;
@@ -12063,6 +12804,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12063
12804
  name: string;
12064
12805
  source_component_id: string;
12065
12806
  ftype: "simple_switch";
12807
+ source_group_id?: string | undefined;
12066
12808
  manufacturer_part_number?: string | undefined;
12067
12809
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12068
12810
  display_value?: string | undefined;
@@ -12078,6 +12820,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12078
12820
  display_value: z.ZodOptional<z.ZodString>;
12079
12821
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12080
12822
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12823
+ source_group_id: z.ZodOptional<z.ZodString>;
12081
12824
  }, {
12082
12825
  ftype: z.ZodLiteral<"simple_transistor">;
12083
12826
  transistor_type: z.ZodEnum<["npn", "pnp"]>;
@@ -12087,6 +12830,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12087
12830
  source_component_id: string;
12088
12831
  ftype: "simple_transistor";
12089
12832
  transistor_type: "npn" | "pnp";
12833
+ source_group_id?: string | undefined;
12090
12834
  manufacturer_part_number?: string | undefined;
12091
12835
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12092
12836
  display_value?: string | undefined;
@@ -12098,6 +12842,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12098
12842
  source_component_id: string;
12099
12843
  ftype: "simple_transistor";
12100
12844
  transistor_type: "npn" | "pnp";
12845
+ source_group_id?: string | undefined;
12101
12846
  manufacturer_part_number?: string | undefined;
12102
12847
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12103
12848
  display_value?: string | undefined;
@@ -12113,6 +12858,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12113
12858
  display_value: z.ZodOptional<z.ZodString>;
12114
12859
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12115
12860
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12861
+ source_group_id: z.ZodOptional<z.ZodString>;
12116
12862
  }, {
12117
12863
  ftype: z.ZodLiteral<"simple_mosfet">;
12118
12864
  channel_type: z.ZodEnum<["n", "p"]>;
@@ -12124,6 +12870,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12124
12870
  ftype: "simple_mosfet";
12125
12871
  channel_type: "n" | "p";
12126
12872
  mosfet_mode: "enhancement" | "depletion";
12873
+ source_group_id?: string | undefined;
12127
12874
  manufacturer_part_number?: string | undefined;
12128
12875
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12129
12876
  display_value?: string | undefined;
@@ -12136,6 +12883,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12136
12883
  ftype: "simple_mosfet";
12137
12884
  channel_type: "n" | "p";
12138
12885
  mosfet_mode: "enhancement" | "depletion";
12886
+ source_group_id?: string | undefined;
12139
12887
  manufacturer_part_number?: string | undefined;
12140
12888
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12141
12889
  display_value?: string | undefined;
@@ -12151,6 +12899,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12151
12899
  display_value: z.ZodOptional<z.ZodString>;
12152
12900
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12153
12901
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12902
+ source_group_id: z.ZodOptional<z.ZodString>;
12154
12903
  }, {
12155
12904
  ftype: z.ZodLiteral<"simple_potentiometer">;
12156
12905
  max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -12160,6 +12909,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12160
12909
  source_component_id: string;
12161
12910
  ftype: "simple_potentiometer";
12162
12911
  max_resistance: number;
12912
+ source_group_id?: string | undefined;
12163
12913
  manufacturer_part_number?: string | undefined;
12164
12914
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12165
12915
  display_value?: string | undefined;
@@ -12171,6 +12921,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12171
12921
  source_component_id: string;
12172
12922
  ftype: "simple_potentiometer";
12173
12923
  max_resistance: string | number;
12924
+ source_group_id?: string | undefined;
12174
12925
  manufacturer_part_number?: string | undefined;
12175
12926
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12176
12927
  display_value?: string | undefined;
@@ -12186,6 +12937,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12186
12937
  display_value: z.ZodOptional<z.ZodString>;
12187
12938
  are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
12188
12939
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
12940
+ source_group_id: z.ZodOptional<z.ZodString>;
12189
12941
  }, {
12190
12942
  ftype: z.ZodLiteral<"simple_push_button">;
12191
12943
  }>, "strip", z.ZodTypeAny, {
@@ -12193,6 +12945,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12193
12945
  name: string;
12194
12946
  source_component_id: string;
12195
12947
  ftype: "simple_push_button";
12948
+ source_group_id?: string | undefined;
12196
12949
  manufacturer_part_number?: string | undefined;
12197
12950
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12198
12951
  display_value?: string | undefined;
@@ -12203,6 +12956,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12203
12956
  name: string;
12204
12957
  source_component_id: string;
12205
12958
  ftype: "simple_push_button";
12959
+ source_group_id?: string | undefined;
12206
12960
  manufacturer_part_number?: string | undefined;
12207
12961
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12208
12962
  display_value?: string | undefined;
@@ -12250,6 +13004,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12250
13004
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12251
13005
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12252
13006
  subcircuit_id: z.ZodOptional<z.ZodString>;
13007
+ pcb_group_id: z.ZodOptional<z.ZodString>;
12253
13008
  }, "strip", z.ZodTypeAny, {
12254
13009
  type: "pcb_component";
12255
13010
  width: number;
@@ -12263,6 +13018,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12263
13018
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
12264
13019
  rotation: number;
12265
13020
  subcircuit_id?: string | undefined;
13021
+ pcb_group_id?: string | undefined;
12266
13022
  }, {
12267
13023
  type: "pcb_component";
12268
13024
  width: string | number;
@@ -12278,6 +13034,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12278
13034
  rotation: string | number;
12279
13035
  pcb_component_id?: string | undefined;
12280
13036
  subcircuit_id?: string | undefined;
13037
+ pcb_group_id?: string | undefined;
12281
13038
  }>, z.ZodUnion<[z.ZodObject<{
12282
13039
  type: z.ZodLiteral<"pcb_hole">;
12283
13040
  pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -12303,8 +13060,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12303
13060
  hole_shape: "circle" | "square";
12304
13061
  hole_diameter: number;
12305
13062
  subcircuit_id?: string | undefined;
12306
- pcb_hole_id?: string | undefined;
12307
13063
  pcb_group_id?: string | undefined;
13064
+ pcb_hole_id?: string | undefined;
12308
13065
  }>, z.ZodObject<{
12309
13066
  type: z.ZodLiteral<"pcb_hole">;
12310
13067
  pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -12333,8 +13090,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
12333
13090
  hole_width: number;
12334
13091
  hole_height: number;
12335
13092
  subcircuit_id?: string | undefined;
12336
- pcb_hole_id?: string | undefined;
12337
13093
  pcb_group_id?: string | undefined;
13094
+ pcb_hole_id?: string | undefined;
12338
13095
  }>]>, z.ZodObject<{
12339
13096
  type: z.ZodLiteral<"pcb_missing_footprint_error">;
12340
13097
  pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -14128,7 +14885,130 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14128
14885
  message: string;
14129
14886
  type: "pcb_autorouting_error";
14130
14887
  pcb_error_id?: string | undefined;
14131
- }>, z.ZodObject<{
14888
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
14889
+ type: z.ZodLiteral<"pcb_cutout">;
14890
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14891
+ pcb_group_id: z.ZodOptional<z.ZodString>;
14892
+ subcircuit_id: z.ZodOptional<z.ZodString>;
14893
+ }, {
14894
+ shape: z.ZodLiteral<"rect">;
14895
+ center: z.ZodObject<{
14896
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14897
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14898
+ }, "strip", z.ZodTypeAny, {
14899
+ x: number;
14900
+ y: number;
14901
+ }, {
14902
+ x: string | number;
14903
+ y: string | number;
14904
+ }>;
14905
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14906
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14907
+ rotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
14908
+ }>, "strip", z.ZodTypeAny, {
14909
+ type: "pcb_cutout";
14910
+ width: number;
14911
+ height: number;
14912
+ center: {
14913
+ x: number;
14914
+ y: number;
14915
+ };
14916
+ shape: "rect";
14917
+ pcb_cutout_id: string;
14918
+ rotation?: number | undefined;
14919
+ subcircuit_id?: string | undefined;
14920
+ pcb_group_id?: string | undefined;
14921
+ }, {
14922
+ type: "pcb_cutout";
14923
+ width: string | number;
14924
+ height: string | number;
14925
+ center: {
14926
+ x: string | number;
14927
+ y: string | number;
14928
+ };
14929
+ shape: "rect";
14930
+ rotation?: string | number | undefined;
14931
+ subcircuit_id?: string | undefined;
14932
+ pcb_group_id?: string | undefined;
14933
+ pcb_cutout_id?: string | undefined;
14934
+ }>, z.ZodObject<z.objectUtil.extendShape<{
14935
+ type: z.ZodLiteral<"pcb_cutout">;
14936
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14937
+ pcb_group_id: z.ZodOptional<z.ZodString>;
14938
+ subcircuit_id: z.ZodOptional<z.ZodString>;
14939
+ }, {
14940
+ shape: z.ZodLiteral<"circle">;
14941
+ center: z.ZodObject<{
14942
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14943
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14944
+ }, "strip", z.ZodTypeAny, {
14945
+ x: number;
14946
+ y: number;
14947
+ }, {
14948
+ x: string | number;
14949
+ y: string | number;
14950
+ }>;
14951
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14952
+ }>, "strip", z.ZodTypeAny, {
14953
+ type: "pcb_cutout";
14954
+ center: {
14955
+ x: number;
14956
+ y: number;
14957
+ };
14958
+ shape: "circle";
14959
+ radius: number;
14960
+ pcb_cutout_id: string;
14961
+ subcircuit_id?: string | undefined;
14962
+ pcb_group_id?: string | undefined;
14963
+ }, {
14964
+ type: "pcb_cutout";
14965
+ center: {
14966
+ x: string | number;
14967
+ y: string | number;
14968
+ };
14969
+ shape: "circle";
14970
+ radius: string | number;
14971
+ subcircuit_id?: string | undefined;
14972
+ pcb_group_id?: string | undefined;
14973
+ pcb_cutout_id?: string | undefined;
14974
+ }>, z.ZodObject<z.objectUtil.extendShape<{
14975
+ type: z.ZodLiteral<"pcb_cutout">;
14976
+ pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14977
+ pcb_group_id: z.ZodOptional<z.ZodString>;
14978
+ subcircuit_id: z.ZodOptional<z.ZodString>;
14979
+ }, {
14980
+ shape: z.ZodLiteral<"polygon">;
14981
+ points: z.ZodArray<z.ZodObject<{
14982
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14983
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14984
+ }, "strip", z.ZodTypeAny, {
14985
+ x: number;
14986
+ y: number;
14987
+ }, {
14988
+ x: string | number;
14989
+ y: string | number;
14990
+ }>, "many">;
14991
+ }>, "strip", z.ZodTypeAny, {
14992
+ type: "pcb_cutout";
14993
+ shape: "polygon";
14994
+ pcb_cutout_id: string;
14995
+ points: {
14996
+ x: number;
14997
+ y: number;
14998
+ }[];
14999
+ subcircuit_id?: string | undefined;
15000
+ pcb_group_id?: string | undefined;
15001
+ }, {
15002
+ type: "pcb_cutout";
15003
+ shape: "polygon";
15004
+ points: {
15005
+ x: string | number;
15006
+ y: string | number;
15007
+ }[];
15008
+ subcircuit_id?: string | undefined;
15009
+ pcb_group_id?: string | undefined;
15010
+ pcb_cutout_id?: string | undefined;
15011
+ }>]>, z.ZodObject<{
14132
15012
  type: z.ZodLiteral<"schematic_box">;
14133
15013
  schematic_component_id: z.ZodString;
14134
15014
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -14351,6 +15231,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14351
15231
  }>]>>;
14352
15232
  port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
14353
15233
  symbol_display_value: z.ZodOptional<z.ZodString>;
15234
+ subcircuit_id: z.ZodOptional<z.ZodString>;
15235
+ schematic_group_id: z.ZodOptional<z.ZodString>;
14354
15236
  }, "strip", z.ZodTypeAny, {
14355
15237
  type: "schematic_component";
14356
15238
  source_component_id: string;
@@ -14363,6 +15245,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14363
15245
  width: number;
14364
15246
  height: number;
14365
15247
  };
15248
+ subcircuit_id?: string | undefined;
14366
15249
  pin_spacing?: number | undefined;
14367
15250
  pin_styles?: Record<string, {
14368
15251
  left_margin?: number | undefined;
@@ -14397,6 +15280,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14397
15280
  } | undefined;
14398
15281
  port_labels?: Record<string, string> | undefined;
14399
15282
  symbol_display_value?: string | undefined;
15283
+ schematic_group_id?: string | undefined;
14400
15284
  }, {
14401
15285
  type: "schematic_component";
14402
15286
  source_component_id: string;
@@ -14409,6 +15293,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14409
15293
  width: number;
14410
15294
  height: number;
14411
15295
  };
15296
+ subcircuit_id?: string | undefined;
14412
15297
  pin_spacing?: string | number | undefined;
14413
15298
  pin_styles?: Record<string, {
14414
15299
  left_margin?: string | number | undefined;
@@ -14443,6 +15328,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14443
15328
  } | undefined;
14444
15329
  port_labels?: Record<string, string> | undefined;
14445
15330
  symbol_display_value?: string | undefined;
15331
+ schematic_group_id?: string | undefined;
14446
15332
  }>, z.ZodObject<{
14447
15333
  type: z.ZodLiteral<"schematic_port">;
14448
15334
  schematic_port_id: z.ZodString;
@@ -14616,20 +15502,20 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14616
15502
  }>, "many">;
14617
15503
  }, "strip", z.ZodTypeAny, {
14618
15504
  type: "schematic_path";
14619
- schematic_component_id: string;
14620
15505
  points: {
14621
15506
  x: number;
14622
15507
  y: number;
14623
15508
  }[];
15509
+ schematic_component_id: string;
14624
15510
  fill_color?: "red" | "blue" | undefined;
14625
15511
  is_filled?: boolean | undefined;
14626
15512
  }, {
14627
15513
  type: "schematic_path";
14628
- schematic_component_id: string;
14629
15514
  points: {
14630
15515
  x: string | number;
14631
15516
  y: string | number;
14632
15517
  }[];
15518
+ schematic_component_id: string;
14633
15519
  fill_color?: "red" | "blue" | undefined;
14634
15520
  is_filled?: boolean | undefined;
14635
15521
  }>, z.ZodObject<{
@@ -14885,8 +15771,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14885
15771
  source_component_id: string;
14886
15772
  schematic_component_id: string;
14887
15773
  subcircuit_id?: string | undefined;
14888
- schematic_manual_edit_conflict_warning_id?: string | undefined;
14889
15774
  schematic_group_id?: string | undefined;
15775
+ schematic_manual_edit_conflict_warning_id?: string | undefined;
14890
15776
  }>, z.ZodObject<{
14891
15777
  type: z.ZodLiteral<"schematic_group">;
14892
15778
  schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -15067,4 +15953,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
15067
15953
  */
15068
15954
  type CircuitJson = AnyCircuitElement[];
15069
15955
 
15070
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_failed_to_create_component_error, source_group, source_led, source_missing_property_error, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
15956
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_failed_to_create_component_error, source_group, source_led, source_missing_property_error, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };