circuit-json 0.0.311 → 0.0.312
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.d.mts +78 -0
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -5198,6 +5198,8 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5198
5198
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5199
5199
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5200
5200
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5201
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5202
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5201
5203
|
} & {
|
|
5202
5204
|
shape: z.ZodLiteral<"rect">;
|
|
5203
5205
|
center: z.ZodObject<{
|
|
@@ -5226,6 +5228,8 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5226
5228
|
rotation?: number | undefined;
|
|
5227
5229
|
subcircuit_id?: string | undefined;
|
|
5228
5230
|
pcb_group_id?: string | undefined;
|
|
5231
|
+
pcb_board_id?: string | undefined;
|
|
5232
|
+
pcb_panel_id?: string | undefined;
|
|
5229
5233
|
}, {
|
|
5230
5234
|
type: "pcb_cutout";
|
|
5231
5235
|
width: string | number;
|
|
@@ -5238,6 +5242,8 @@ declare const pcb_cutout_rect: z.ZodObject<{
|
|
|
5238
5242
|
rotation?: string | number | undefined;
|
|
5239
5243
|
subcircuit_id?: string | undefined;
|
|
5240
5244
|
pcb_group_id?: string | undefined;
|
|
5245
|
+
pcb_board_id?: string | undefined;
|
|
5246
|
+
pcb_panel_id?: string | undefined;
|
|
5241
5247
|
pcb_cutout_id?: string | undefined;
|
|
5242
5248
|
}>;
|
|
5243
5249
|
type PcbCutoutRectInput = z.input<typeof pcb_cutout_rect>;
|
|
@@ -5249,6 +5255,8 @@ interface PcbCutoutRect {
|
|
|
5249
5255
|
pcb_cutout_id: string;
|
|
5250
5256
|
pcb_group_id?: string;
|
|
5251
5257
|
subcircuit_id?: string;
|
|
5258
|
+
pcb_board_id?: string;
|
|
5259
|
+
pcb_panel_id?: string;
|
|
5252
5260
|
shape: "rect";
|
|
5253
5261
|
center: Point;
|
|
5254
5262
|
width: Length;
|
|
@@ -5260,6 +5268,8 @@ declare const pcb_cutout_circle: z.ZodObject<{
|
|
|
5260
5268
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5261
5269
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5262
5270
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5271
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5272
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5263
5273
|
} & {
|
|
5264
5274
|
shape: z.ZodLiteral<"circle">;
|
|
5265
5275
|
center: z.ZodObject<{
|
|
@@ -5284,6 +5294,8 @@ declare const pcb_cutout_circle: z.ZodObject<{
|
|
|
5284
5294
|
pcb_cutout_id: string;
|
|
5285
5295
|
subcircuit_id?: string | undefined;
|
|
5286
5296
|
pcb_group_id?: string | undefined;
|
|
5297
|
+
pcb_board_id?: string | undefined;
|
|
5298
|
+
pcb_panel_id?: string | undefined;
|
|
5287
5299
|
}, {
|
|
5288
5300
|
type: "pcb_cutout";
|
|
5289
5301
|
center: {
|
|
@@ -5294,6 +5306,8 @@ declare const pcb_cutout_circle: z.ZodObject<{
|
|
|
5294
5306
|
radius: string | number;
|
|
5295
5307
|
subcircuit_id?: string | undefined;
|
|
5296
5308
|
pcb_group_id?: string | undefined;
|
|
5309
|
+
pcb_board_id?: string | undefined;
|
|
5310
|
+
pcb_panel_id?: string | undefined;
|
|
5297
5311
|
pcb_cutout_id?: string | undefined;
|
|
5298
5312
|
}>;
|
|
5299
5313
|
type PcbCutoutCircleInput = z.input<typeof pcb_cutout_circle>;
|
|
@@ -5305,6 +5319,8 @@ interface PcbCutoutCircle {
|
|
|
5305
5319
|
pcb_cutout_id: string;
|
|
5306
5320
|
pcb_group_id?: string;
|
|
5307
5321
|
subcircuit_id?: string;
|
|
5322
|
+
pcb_board_id?: string;
|
|
5323
|
+
pcb_panel_id?: string;
|
|
5308
5324
|
shape: "circle";
|
|
5309
5325
|
center: Point;
|
|
5310
5326
|
radius: Length;
|
|
@@ -5314,6 +5330,8 @@ declare const pcb_cutout_polygon: z.ZodObject<{
|
|
|
5314
5330
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5315
5331
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5316
5332
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5333
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5334
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5317
5335
|
} & {
|
|
5318
5336
|
shape: z.ZodLiteral<"polygon">;
|
|
5319
5337
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -5336,6 +5354,8 @@ declare const pcb_cutout_polygon: z.ZodObject<{
|
|
|
5336
5354
|
pcb_cutout_id: string;
|
|
5337
5355
|
subcircuit_id?: string | undefined;
|
|
5338
5356
|
pcb_group_id?: string | undefined;
|
|
5357
|
+
pcb_board_id?: string | undefined;
|
|
5358
|
+
pcb_panel_id?: string | undefined;
|
|
5339
5359
|
}, {
|
|
5340
5360
|
type: "pcb_cutout";
|
|
5341
5361
|
shape: "polygon";
|
|
@@ -5345,6 +5365,8 @@ declare const pcb_cutout_polygon: z.ZodObject<{
|
|
|
5345
5365
|
}[];
|
|
5346
5366
|
subcircuit_id?: string | undefined;
|
|
5347
5367
|
pcb_group_id?: string | undefined;
|
|
5368
|
+
pcb_board_id?: string | undefined;
|
|
5369
|
+
pcb_panel_id?: string | undefined;
|
|
5348
5370
|
pcb_cutout_id?: string | undefined;
|
|
5349
5371
|
}>;
|
|
5350
5372
|
type PcbCutoutPolygonInput = z.input<typeof pcb_cutout_polygon>;
|
|
@@ -5357,6 +5379,8 @@ interface PcbCutoutPolygon {
|
|
|
5357
5379
|
pcb_cutout_id: string;
|
|
5358
5380
|
pcb_group_id?: string;
|
|
5359
5381
|
subcircuit_id?: string;
|
|
5382
|
+
pcb_board_id?: string;
|
|
5383
|
+
pcb_panel_id?: string;
|
|
5360
5384
|
shape: "polygon";
|
|
5361
5385
|
points: Point[];
|
|
5362
5386
|
}
|
|
@@ -5365,6 +5389,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5365
5389
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5366
5390
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5367
5391
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5392
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5393
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5368
5394
|
} & {
|
|
5369
5395
|
shape: z.ZodLiteral<"rect">;
|
|
5370
5396
|
center: z.ZodObject<{
|
|
@@ -5393,6 +5419,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5393
5419
|
rotation?: number | undefined;
|
|
5394
5420
|
subcircuit_id?: string | undefined;
|
|
5395
5421
|
pcb_group_id?: string | undefined;
|
|
5422
|
+
pcb_board_id?: string | undefined;
|
|
5423
|
+
pcb_panel_id?: string | undefined;
|
|
5396
5424
|
}, {
|
|
5397
5425
|
type: "pcb_cutout";
|
|
5398
5426
|
width: string | number;
|
|
@@ -5405,12 +5433,16 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5405
5433
|
rotation?: string | number | undefined;
|
|
5406
5434
|
subcircuit_id?: string | undefined;
|
|
5407
5435
|
pcb_group_id?: string | undefined;
|
|
5436
|
+
pcb_board_id?: string | undefined;
|
|
5437
|
+
pcb_panel_id?: string | undefined;
|
|
5408
5438
|
pcb_cutout_id?: string | undefined;
|
|
5409
5439
|
}>, z.ZodObject<{
|
|
5410
5440
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
5411
5441
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5412
5442
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5413
5443
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5444
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5445
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5414
5446
|
} & {
|
|
5415
5447
|
shape: z.ZodLiteral<"circle">;
|
|
5416
5448
|
center: z.ZodObject<{
|
|
@@ -5435,6 +5467,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5435
5467
|
pcb_cutout_id: string;
|
|
5436
5468
|
subcircuit_id?: string | undefined;
|
|
5437
5469
|
pcb_group_id?: string | undefined;
|
|
5470
|
+
pcb_board_id?: string | undefined;
|
|
5471
|
+
pcb_panel_id?: string | undefined;
|
|
5438
5472
|
}, {
|
|
5439
5473
|
type: "pcb_cutout";
|
|
5440
5474
|
center: {
|
|
@@ -5445,12 +5479,16 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5445
5479
|
radius: string | number;
|
|
5446
5480
|
subcircuit_id?: string | undefined;
|
|
5447
5481
|
pcb_group_id?: string | undefined;
|
|
5482
|
+
pcb_board_id?: string | undefined;
|
|
5483
|
+
pcb_panel_id?: string | undefined;
|
|
5448
5484
|
pcb_cutout_id?: string | undefined;
|
|
5449
5485
|
}>, z.ZodObject<{
|
|
5450
5486
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
5451
5487
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5452
5488
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5453
5489
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5490
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
5491
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
5454
5492
|
} & {
|
|
5455
5493
|
shape: z.ZodLiteral<"polygon">;
|
|
5456
5494
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -5473,6 +5511,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5473
5511
|
pcb_cutout_id: string;
|
|
5474
5512
|
subcircuit_id?: string | undefined;
|
|
5475
5513
|
pcb_group_id?: string | undefined;
|
|
5514
|
+
pcb_board_id?: string | undefined;
|
|
5515
|
+
pcb_panel_id?: string | undefined;
|
|
5476
5516
|
}, {
|
|
5477
5517
|
type: "pcb_cutout";
|
|
5478
5518
|
shape: "polygon";
|
|
@@ -5482,6 +5522,8 @@ declare const pcb_cutout: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
5482
5522
|
}[];
|
|
5483
5523
|
subcircuit_id?: string | undefined;
|
|
5484
5524
|
pcb_group_id?: string | undefined;
|
|
5525
|
+
pcb_board_id?: string | undefined;
|
|
5526
|
+
pcb_panel_id?: string | undefined;
|
|
5485
5527
|
pcb_cutout_id?: string | undefined;
|
|
5486
5528
|
}>]>;
|
|
5487
5529
|
type PcbCutoutInput = z.input<typeof pcb_cutout>;
|
|
@@ -17718,6 +17760,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17718
17760
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17719
17761
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17720
17762
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17763
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
17764
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
17721
17765
|
} & {
|
|
17722
17766
|
shape: z.ZodLiteral<"rect">;
|
|
17723
17767
|
center: z.ZodObject<{
|
|
@@ -17746,6 +17790,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17746
17790
|
rotation?: number | undefined;
|
|
17747
17791
|
subcircuit_id?: string | undefined;
|
|
17748
17792
|
pcb_group_id?: string | undefined;
|
|
17793
|
+
pcb_board_id?: string | undefined;
|
|
17794
|
+
pcb_panel_id?: string | undefined;
|
|
17749
17795
|
}, {
|
|
17750
17796
|
type: "pcb_cutout";
|
|
17751
17797
|
width: string | number;
|
|
@@ -17758,12 +17804,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17758
17804
|
rotation?: string | number | undefined;
|
|
17759
17805
|
subcircuit_id?: string | undefined;
|
|
17760
17806
|
pcb_group_id?: string | undefined;
|
|
17807
|
+
pcb_board_id?: string | undefined;
|
|
17808
|
+
pcb_panel_id?: string | undefined;
|
|
17761
17809
|
pcb_cutout_id?: string | undefined;
|
|
17762
17810
|
}>, z.ZodObject<{
|
|
17763
17811
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
17764
17812
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17765
17813
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17766
17814
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17815
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
17816
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
17767
17817
|
} & {
|
|
17768
17818
|
shape: z.ZodLiteral<"circle">;
|
|
17769
17819
|
center: z.ZodObject<{
|
|
@@ -17788,6 +17838,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17788
17838
|
pcb_cutout_id: string;
|
|
17789
17839
|
subcircuit_id?: string | undefined;
|
|
17790
17840
|
pcb_group_id?: string | undefined;
|
|
17841
|
+
pcb_board_id?: string | undefined;
|
|
17842
|
+
pcb_panel_id?: string | undefined;
|
|
17791
17843
|
}, {
|
|
17792
17844
|
type: "pcb_cutout";
|
|
17793
17845
|
center: {
|
|
@@ -17798,12 +17850,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17798
17850
|
radius: string | number;
|
|
17799
17851
|
subcircuit_id?: string | undefined;
|
|
17800
17852
|
pcb_group_id?: string | undefined;
|
|
17853
|
+
pcb_board_id?: string | undefined;
|
|
17854
|
+
pcb_panel_id?: string | undefined;
|
|
17801
17855
|
pcb_cutout_id?: string | undefined;
|
|
17802
17856
|
}>, z.ZodObject<{
|
|
17803
17857
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
17804
17858
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17805
17859
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17806
17860
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17861
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
17862
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
17807
17863
|
} & {
|
|
17808
17864
|
shape: z.ZodLiteral<"polygon">;
|
|
17809
17865
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -17826,6 +17882,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17826
17882
|
pcb_cutout_id: string;
|
|
17827
17883
|
subcircuit_id?: string | undefined;
|
|
17828
17884
|
pcb_group_id?: string | undefined;
|
|
17885
|
+
pcb_board_id?: string | undefined;
|
|
17886
|
+
pcb_panel_id?: string | undefined;
|
|
17829
17887
|
}, {
|
|
17830
17888
|
type: "pcb_cutout";
|
|
17831
17889
|
shape: "polygon";
|
|
@@ -17835,6 +17893,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17835
17893
|
}[];
|
|
17836
17894
|
subcircuit_id?: string | undefined;
|
|
17837
17895
|
pcb_group_id?: string | undefined;
|
|
17896
|
+
pcb_board_id?: string | undefined;
|
|
17897
|
+
pcb_panel_id?: string | undefined;
|
|
17838
17898
|
pcb_cutout_id?: string | undefined;
|
|
17839
17899
|
}>]>, z.ZodObject<{
|
|
17840
17900
|
type: z.ZodLiteral<"pcb_ground_plane">;
|
|
@@ -25443,6 +25503,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25443
25503
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25444
25504
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25445
25505
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25506
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
25507
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
25446
25508
|
} & {
|
|
25447
25509
|
shape: z.ZodLiteral<"rect">;
|
|
25448
25510
|
center: z.ZodObject<{
|
|
@@ -25471,6 +25533,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25471
25533
|
rotation?: number | undefined;
|
|
25472
25534
|
subcircuit_id?: string | undefined;
|
|
25473
25535
|
pcb_group_id?: string | undefined;
|
|
25536
|
+
pcb_board_id?: string | undefined;
|
|
25537
|
+
pcb_panel_id?: string | undefined;
|
|
25474
25538
|
}, {
|
|
25475
25539
|
type: "pcb_cutout";
|
|
25476
25540
|
width: string | number;
|
|
@@ -25483,12 +25547,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25483
25547
|
rotation?: string | number | undefined;
|
|
25484
25548
|
subcircuit_id?: string | undefined;
|
|
25485
25549
|
pcb_group_id?: string | undefined;
|
|
25550
|
+
pcb_board_id?: string | undefined;
|
|
25551
|
+
pcb_panel_id?: string | undefined;
|
|
25486
25552
|
pcb_cutout_id?: string | undefined;
|
|
25487
25553
|
}>, z.ZodObject<{
|
|
25488
25554
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
25489
25555
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25490
25556
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25491
25557
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25558
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
25559
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
25492
25560
|
} & {
|
|
25493
25561
|
shape: z.ZodLiteral<"circle">;
|
|
25494
25562
|
center: z.ZodObject<{
|
|
@@ -25513,6 +25581,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25513
25581
|
pcb_cutout_id: string;
|
|
25514
25582
|
subcircuit_id?: string | undefined;
|
|
25515
25583
|
pcb_group_id?: string | undefined;
|
|
25584
|
+
pcb_board_id?: string | undefined;
|
|
25585
|
+
pcb_panel_id?: string | undefined;
|
|
25516
25586
|
}, {
|
|
25517
25587
|
type: "pcb_cutout";
|
|
25518
25588
|
center: {
|
|
@@ -25523,12 +25593,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25523
25593
|
radius: string | number;
|
|
25524
25594
|
subcircuit_id?: string | undefined;
|
|
25525
25595
|
pcb_group_id?: string | undefined;
|
|
25596
|
+
pcb_board_id?: string | undefined;
|
|
25597
|
+
pcb_panel_id?: string | undefined;
|
|
25526
25598
|
pcb_cutout_id?: string | undefined;
|
|
25527
25599
|
}>, z.ZodObject<{
|
|
25528
25600
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
25529
25601
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25530
25602
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25531
25603
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25604
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
25605
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
25532
25606
|
} & {
|
|
25533
25607
|
shape: z.ZodLiteral<"polygon">;
|
|
25534
25608
|
points: z.ZodArray<z.ZodObject<{
|
|
@@ -25551,6 +25625,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25551
25625
|
pcb_cutout_id: string;
|
|
25552
25626
|
subcircuit_id?: string | undefined;
|
|
25553
25627
|
pcb_group_id?: string | undefined;
|
|
25628
|
+
pcb_board_id?: string | undefined;
|
|
25629
|
+
pcb_panel_id?: string | undefined;
|
|
25554
25630
|
}, {
|
|
25555
25631
|
type: "pcb_cutout";
|
|
25556
25632
|
shape: "polygon";
|
|
@@ -25560,6 +25636,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25560
25636
|
}[];
|
|
25561
25637
|
subcircuit_id?: string | undefined;
|
|
25562
25638
|
pcb_group_id?: string | undefined;
|
|
25639
|
+
pcb_board_id?: string | undefined;
|
|
25640
|
+
pcb_panel_id?: string | undefined;
|
|
25563
25641
|
pcb_cutout_id?: string | undefined;
|
|
25564
25642
|
}>]>, z.ZodObject<{
|
|
25565
25643
|
type: z.ZodLiteral<"pcb_ground_plane">;
|
package/dist/index.mjs
CHANGED
|
@@ -2349,7 +2349,9 @@ var pcb_cutout_base = z106.object({
|
|
|
2349
2349
|
type: z106.literal("pcb_cutout"),
|
|
2350
2350
|
pcb_cutout_id: getZodPrefixedIdWithDefault("pcb_cutout"),
|
|
2351
2351
|
pcb_group_id: z106.string().optional(),
|
|
2352
|
-
subcircuit_id: z106.string().optional()
|
|
2352
|
+
subcircuit_id: z106.string().optional(),
|
|
2353
|
+
pcb_board_id: z106.string().optional(),
|
|
2354
|
+
pcb_panel_id: z106.string().optional()
|
|
2353
2355
|
});
|
|
2354
2356
|
var pcb_cutout_rect = pcb_cutout_base.extend({
|
|
2355
2357
|
shape: z106.literal("rect"),
|