circuit-json 0.0.242 → 0.0.243
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 +636 -101
- package/dist/index.mjs +537 -517
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -106,6 +106,154 @@ interface Size {
|
|
|
106
106
|
*/
|
|
107
107
|
declare const getZodPrefixedIdWithDefault: (prefix: string) => z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
108
108
|
|
|
109
|
+
declare const point_with_bulge: z.ZodObject<{
|
|
110
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
111
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
112
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
113
|
+
}, "strip", z.ZodTypeAny, {
|
|
114
|
+
x: number;
|
|
115
|
+
y: number;
|
|
116
|
+
bulge?: number | undefined;
|
|
117
|
+
}, {
|
|
118
|
+
x: string | number;
|
|
119
|
+
y: string | number;
|
|
120
|
+
bulge?: number | undefined;
|
|
121
|
+
}>;
|
|
122
|
+
interface PointWithBulge {
|
|
123
|
+
x: Distance;
|
|
124
|
+
y: Distance;
|
|
125
|
+
bulge?: number;
|
|
126
|
+
}
|
|
127
|
+
declare const ring: z.ZodObject<{
|
|
128
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
129
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
130
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
131
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
132
|
+
}, "strip", z.ZodTypeAny, {
|
|
133
|
+
x: number;
|
|
134
|
+
y: number;
|
|
135
|
+
bulge?: number | undefined;
|
|
136
|
+
}, {
|
|
137
|
+
x: string | number;
|
|
138
|
+
y: string | number;
|
|
139
|
+
bulge?: number | undefined;
|
|
140
|
+
}>, "many">;
|
|
141
|
+
}, "strip", z.ZodTypeAny, {
|
|
142
|
+
vertices: {
|
|
143
|
+
x: number;
|
|
144
|
+
y: number;
|
|
145
|
+
bulge?: number | undefined;
|
|
146
|
+
}[];
|
|
147
|
+
}, {
|
|
148
|
+
vertices: {
|
|
149
|
+
x: string | number;
|
|
150
|
+
y: string | number;
|
|
151
|
+
bulge?: number | undefined;
|
|
152
|
+
}[];
|
|
153
|
+
}>;
|
|
154
|
+
interface Ring {
|
|
155
|
+
vertices: PointWithBulge[];
|
|
156
|
+
}
|
|
157
|
+
declare const brep_shape: z.ZodObject<{
|
|
158
|
+
outer_ring: z.ZodObject<{
|
|
159
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
160
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
161
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
162
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
163
|
+
}, "strip", z.ZodTypeAny, {
|
|
164
|
+
x: number;
|
|
165
|
+
y: number;
|
|
166
|
+
bulge?: number | undefined;
|
|
167
|
+
}, {
|
|
168
|
+
x: string | number;
|
|
169
|
+
y: string | number;
|
|
170
|
+
bulge?: number | undefined;
|
|
171
|
+
}>, "many">;
|
|
172
|
+
}, "strip", z.ZodTypeAny, {
|
|
173
|
+
vertices: {
|
|
174
|
+
x: number;
|
|
175
|
+
y: number;
|
|
176
|
+
bulge?: number | undefined;
|
|
177
|
+
}[];
|
|
178
|
+
}, {
|
|
179
|
+
vertices: {
|
|
180
|
+
x: string | number;
|
|
181
|
+
y: string | number;
|
|
182
|
+
bulge?: number | undefined;
|
|
183
|
+
}[];
|
|
184
|
+
}>;
|
|
185
|
+
inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
186
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
187
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
188
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
189
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
190
|
+
}, "strip", z.ZodTypeAny, {
|
|
191
|
+
x: number;
|
|
192
|
+
y: number;
|
|
193
|
+
bulge?: number | undefined;
|
|
194
|
+
}, {
|
|
195
|
+
x: string | number;
|
|
196
|
+
y: string | number;
|
|
197
|
+
bulge?: number | undefined;
|
|
198
|
+
}>, "many">;
|
|
199
|
+
}, "strip", z.ZodTypeAny, {
|
|
200
|
+
vertices: {
|
|
201
|
+
x: number;
|
|
202
|
+
y: number;
|
|
203
|
+
bulge?: number | undefined;
|
|
204
|
+
}[];
|
|
205
|
+
}, {
|
|
206
|
+
vertices: {
|
|
207
|
+
x: string | number;
|
|
208
|
+
y: string | number;
|
|
209
|
+
bulge?: number | undefined;
|
|
210
|
+
}[];
|
|
211
|
+
}>, "many">>;
|
|
212
|
+
}, "strip", z.ZodTypeAny, {
|
|
213
|
+
outer_ring: {
|
|
214
|
+
vertices: {
|
|
215
|
+
x: number;
|
|
216
|
+
y: number;
|
|
217
|
+
bulge?: number | undefined;
|
|
218
|
+
}[];
|
|
219
|
+
};
|
|
220
|
+
inner_rings: {
|
|
221
|
+
vertices: {
|
|
222
|
+
x: number;
|
|
223
|
+
y: number;
|
|
224
|
+
bulge?: number | undefined;
|
|
225
|
+
}[];
|
|
226
|
+
}[];
|
|
227
|
+
}, {
|
|
228
|
+
outer_ring: {
|
|
229
|
+
vertices: {
|
|
230
|
+
x: string | number;
|
|
231
|
+
y: string | number;
|
|
232
|
+
bulge?: number | undefined;
|
|
233
|
+
}[];
|
|
234
|
+
};
|
|
235
|
+
inner_rings?: {
|
|
236
|
+
vertices: {
|
|
237
|
+
x: string | number;
|
|
238
|
+
y: string | number;
|
|
239
|
+
bulge?: number | undefined;
|
|
240
|
+
}[];
|
|
241
|
+
}[] | undefined;
|
|
242
|
+
}>;
|
|
243
|
+
/**
|
|
244
|
+
* B-rep shape defined by an outer ring and inner rings (holes).
|
|
245
|
+
*/
|
|
246
|
+
interface BRepShape {
|
|
247
|
+
/**
|
|
248
|
+
* The outer boundary of the shape. Vertices must be in clockwise order.
|
|
249
|
+
*/
|
|
250
|
+
outer_ring: Ring;
|
|
251
|
+
/**
|
|
252
|
+
* Inner boundaries (holes). Vertices must be in counter-clockwise order.
|
|
253
|
+
*/
|
|
254
|
+
inner_rings: Ring[];
|
|
255
|
+
}
|
|
256
|
+
|
|
109
257
|
declare const all_layers: readonly ["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"];
|
|
110
258
|
declare const layer_string: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
111
259
|
declare const layer_ref: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -4262,7 +4410,7 @@ interface PcbCopperPourRect {
|
|
|
4262
4410
|
height: Length;
|
|
4263
4411
|
rotation?: Rotation;
|
|
4264
4412
|
}
|
|
4265
|
-
declare const
|
|
4413
|
+
declare const pcb_copper_pour_brep: z.ZodObject<{
|
|
4266
4414
|
type: z.ZodLiteral<"pcb_copper_pour">;
|
|
4267
4415
|
pcb_copper_pour_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4268
4416
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4278,61 +4426,157 @@ declare const pcb_copper_pour_circle: z.ZodObject<{
|
|
|
4278
4426
|
}>;
|
|
4279
4427
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
4280
4428
|
} & {
|
|
4281
|
-
shape: z.ZodLiteral<"
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4429
|
+
shape: z.ZodLiteral<"brep">;
|
|
4430
|
+
brep_shape: z.ZodObject<{
|
|
4431
|
+
outer_ring: z.ZodObject<{
|
|
4432
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
4433
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4434
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4435
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
4436
|
+
}, "strip", z.ZodTypeAny, {
|
|
4437
|
+
x: number;
|
|
4438
|
+
y: number;
|
|
4439
|
+
bulge?: number | undefined;
|
|
4440
|
+
}, {
|
|
4441
|
+
x: string | number;
|
|
4442
|
+
y: string | number;
|
|
4443
|
+
bulge?: number | undefined;
|
|
4444
|
+
}>, "many">;
|
|
4445
|
+
}, "strip", z.ZodTypeAny, {
|
|
4446
|
+
vertices: {
|
|
4447
|
+
x: number;
|
|
4448
|
+
y: number;
|
|
4449
|
+
bulge?: number | undefined;
|
|
4450
|
+
}[];
|
|
4451
|
+
}, {
|
|
4452
|
+
vertices: {
|
|
4453
|
+
x: string | number;
|
|
4454
|
+
y: string | number;
|
|
4455
|
+
bulge?: number | undefined;
|
|
4456
|
+
}[];
|
|
4457
|
+
}>;
|
|
4458
|
+
inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4459
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
4460
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4461
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4462
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
4463
|
+
}, "strip", z.ZodTypeAny, {
|
|
4464
|
+
x: number;
|
|
4465
|
+
y: number;
|
|
4466
|
+
bulge?: number | undefined;
|
|
4467
|
+
}, {
|
|
4468
|
+
x: string | number;
|
|
4469
|
+
y: string | number;
|
|
4470
|
+
bulge?: number | undefined;
|
|
4471
|
+
}>, "many">;
|
|
4472
|
+
}, "strip", z.ZodTypeAny, {
|
|
4473
|
+
vertices: {
|
|
4474
|
+
x: number;
|
|
4475
|
+
y: number;
|
|
4476
|
+
bulge?: number | undefined;
|
|
4477
|
+
}[];
|
|
4478
|
+
}, {
|
|
4479
|
+
vertices: {
|
|
4480
|
+
x: string | number;
|
|
4481
|
+
y: string | number;
|
|
4482
|
+
bulge?: number | undefined;
|
|
4483
|
+
}[];
|
|
4484
|
+
}>, "many">>;
|
|
4485
|
+
}, "strip", z.ZodTypeAny, {
|
|
4486
|
+
outer_ring: {
|
|
4487
|
+
vertices: {
|
|
4488
|
+
x: number;
|
|
4489
|
+
y: number;
|
|
4490
|
+
bulge?: number | undefined;
|
|
4491
|
+
}[];
|
|
4492
|
+
};
|
|
4493
|
+
inner_rings: {
|
|
4494
|
+
vertices: {
|
|
4495
|
+
x: number;
|
|
4496
|
+
y: number;
|
|
4497
|
+
bulge?: number | undefined;
|
|
4498
|
+
}[];
|
|
4499
|
+
}[];
|
|
4500
|
+
}, {
|
|
4501
|
+
outer_ring: {
|
|
4502
|
+
vertices: {
|
|
4503
|
+
x: string | number;
|
|
4504
|
+
y: string | number;
|
|
4505
|
+
bulge?: number | undefined;
|
|
4506
|
+
}[];
|
|
4507
|
+
};
|
|
4508
|
+
inner_rings?: {
|
|
4509
|
+
vertices: {
|
|
4510
|
+
x: string | number;
|
|
4511
|
+
y: string | number;
|
|
4512
|
+
bulge?: number | undefined;
|
|
4513
|
+
}[];
|
|
4514
|
+
}[] | undefined;
|
|
4291
4515
|
}>;
|
|
4292
|
-
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4293
4516
|
}, "strip", z.ZodTypeAny, {
|
|
4294
4517
|
type: "pcb_copper_pour";
|
|
4295
|
-
center: {
|
|
4296
|
-
x: number;
|
|
4297
|
-
y: number;
|
|
4298
|
-
};
|
|
4299
4518
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4300
|
-
shape: "
|
|
4301
|
-
radius: number;
|
|
4519
|
+
shape: "brep";
|
|
4302
4520
|
pcb_copper_pour_id: string;
|
|
4521
|
+
brep_shape: {
|
|
4522
|
+
outer_ring: {
|
|
4523
|
+
vertices: {
|
|
4524
|
+
x: number;
|
|
4525
|
+
y: number;
|
|
4526
|
+
bulge?: number | undefined;
|
|
4527
|
+
}[];
|
|
4528
|
+
};
|
|
4529
|
+
inner_rings: {
|
|
4530
|
+
vertices: {
|
|
4531
|
+
x: number;
|
|
4532
|
+
y: number;
|
|
4533
|
+
bulge?: number | undefined;
|
|
4534
|
+
}[];
|
|
4535
|
+
}[];
|
|
4536
|
+
};
|
|
4303
4537
|
subcircuit_id?: string | undefined;
|
|
4304
4538
|
pcb_group_id?: string | undefined;
|
|
4305
4539
|
source_net_id?: string | undefined;
|
|
4306
4540
|
}, {
|
|
4307
4541
|
type: "pcb_copper_pour";
|
|
4308
|
-
center: {
|
|
4309
|
-
x: string | number;
|
|
4310
|
-
y: string | number;
|
|
4311
|
-
};
|
|
4312
4542
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4313
4543
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4314
4544
|
};
|
|
4315
|
-
shape: "
|
|
4316
|
-
|
|
4545
|
+
shape: "brep";
|
|
4546
|
+
brep_shape: {
|
|
4547
|
+
outer_ring: {
|
|
4548
|
+
vertices: {
|
|
4549
|
+
x: string | number;
|
|
4550
|
+
y: string | number;
|
|
4551
|
+
bulge?: number | undefined;
|
|
4552
|
+
}[];
|
|
4553
|
+
};
|
|
4554
|
+
inner_rings?: {
|
|
4555
|
+
vertices: {
|
|
4556
|
+
x: string | number;
|
|
4557
|
+
y: string | number;
|
|
4558
|
+
bulge?: number | undefined;
|
|
4559
|
+
}[];
|
|
4560
|
+
}[] | undefined;
|
|
4561
|
+
};
|
|
4317
4562
|
subcircuit_id?: string | undefined;
|
|
4318
4563
|
pcb_group_id?: string | undefined;
|
|
4319
4564
|
source_net_id?: string | undefined;
|
|
4320
4565
|
pcb_copper_pour_id?: string | undefined;
|
|
4321
4566
|
}>;
|
|
4322
|
-
type
|
|
4567
|
+
type PcbCopperPourBRepInput = z.input<typeof pcb_copper_pour_brep>;
|
|
4323
4568
|
/**
|
|
4324
|
-
* Defines a
|
|
4569
|
+
* Defines a BRep copper pour on the PCB.
|
|
4325
4570
|
*/
|
|
4326
|
-
interface
|
|
4571
|
+
interface PcbCopperPourBRep {
|
|
4327
4572
|
type: "pcb_copper_pour";
|
|
4328
4573
|
pcb_copper_pour_id: string;
|
|
4329
4574
|
pcb_group_id?: string;
|
|
4330
4575
|
subcircuit_id?: string;
|
|
4331
4576
|
layer: LayerRef;
|
|
4332
4577
|
source_net_id?: string;
|
|
4333
|
-
shape: "
|
|
4334
|
-
|
|
4335
|
-
radius: Length;
|
|
4578
|
+
shape: "brep";
|
|
4579
|
+
brep_shape: BRepShape;
|
|
4336
4580
|
}
|
|
4337
4581
|
declare const pcb_copper_pour_polygon: z.ZodObject<{
|
|
4338
4582
|
type: z.ZodLiteral<"pcb_copper_pour">;
|
|
@@ -4481,42 +4725,139 @@ declare const pcb_copper_pour: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
4481
4725
|
}>;
|
|
4482
4726
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
4483
4727
|
} & {
|
|
4484
|
-
shape: z.ZodLiteral<"
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4728
|
+
shape: z.ZodLiteral<"brep">;
|
|
4729
|
+
brep_shape: z.ZodObject<{
|
|
4730
|
+
outer_ring: z.ZodObject<{
|
|
4731
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
4732
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4733
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4734
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
4735
|
+
}, "strip", z.ZodTypeAny, {
|
|
4736
|
+
x: number;
|
|
4737
|
+
y: number;
|
|
4738
|
+
bulge?: number | undefined;
|
|
4739
|
+
}, {
|
|
4740
|
+
x: string | number;
|
|
4741
|
+
y: string | number;
|
|
4742
|
+
bulge?: number | undefined;
|
|
4743
|
+
}>, "many">;
|
|
4744
|
+
}, "strip", z.ZodTypeAny, {
|
|
4745
|
+
vertices: {
|
|
4746
|
+
x: number;
|
|
4747
|
+
y: number;
|
|
4748
|
+
bulge?: number | undefined;
|
|
4749
|
+
}[];
|
|
4750
|
+
}, {
|
|
4751
|
+
vertices: {
|
|
4752
|
+
x: string | number;
|
|
4753
|
+
y: string | number;
|
|
4754
|
+
bulge?: number | undefined;
|
|
4755
|
+
}[];
|
|
4756
|
+
}>;
|
|
4757
|
+
inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4758
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
4759
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4760
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4761
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
4762
|
+
}, "strip", z.ZodTypeAny, {
|
|
4763
|
+
x: number;
|
|
4764
|
+
y: number;
|
|
4765
|
+
bulge?: number | undefined;
|
|
4766
|
+
}, {
|
|
4767
|
+
x: string | number;
|
|
4768
|
+
y: string | number;
|
|
4769
|
+
bulge?: number | undefined;
|
|
4770
|
+
}>, "many">;
|
|
4771
|
+
}, "strip", z.ZodTypeAny, {
|
|
4772
|
+
vertices: {
|
|
4773
|
+
x: number;
|
|
4774
|
+
y: number;
|
|
4775
|
+
bulge?: number | undefined;
|
|
4776
|
+
}[];
|
|
4777
|
+
}, {
|
|
4778
|
+
vertices: {
|
|
4779
|
+
x: string | number;
|
|
4780
|
+
y: string | number;
|
|
4781
|
+
bulge?: number | undefined;
|
|
4782
|
+
}[];
|
|
4783
|
+
}>, "many">>;
|
|
4784
|
+
}, "strip", z.ZodTypeAny, {
|
|
4785
|
+
outer_ring: {
|
|
4786
|
+
vertices: {
|
|
4787
|
+
x: number;
|
|
4788
|
+
y: number;
|
|
4789
|
+
bulge?: number | undefined;
|
|
4790
|
+
}[];
|
|
4791
|
+
};
|
|
4792
|
+
inner_rings: {
|
|
4793
|
+
vertices: {
|
|
4794
|
+
x: number;
|
|
4795
|
+
y: number;
|
|
4796
|
+
bulge?: number | undefined;
|
|
4797
|
+
}[];
|
|
4798
|
+
}[];
|
|
4799
|
+
}, {
|
|
4800
|
+
outer_ring: {
|
|
4801
|
+
vertices: {
|
|
4802
|
+
x: string | number;
|
|
4803
|
+
y: string | number;
|
|
4804
|
+
bulge?: number | undefined;
|
|
4805
|
+
}[];
|
|
4806
|
+
};
|
|
4807
|
+
inner_rings?: {
|
|
4808
|
+
vertices: {
|
|
4809
|
+
x: string | number;
|
|
4810
|
+
y: string | number;
|
|
4811
|
+
bulge?: number | undefined;
|
|
4812
|
+
}[];
|
|
4813
|
+
}[] | undefined;
|
|
4494
4814
|
}>;
|
|
4495
|
-
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4496
4815
|
}, "strip", z.ZodTypeAny, {
|
|
4497
4816
|
type: "pcb_copper_pour";
|
|
4498
|
-
center: {
|
|
4499
|
-
x: number;
|
|
4500
|
-
y: number;
|
|
4501
|
-
};
|
|
4502
4817
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4503
|
-
shape: "
|
|
4504
|
-
radius: number;
|
|
4818
|
+
shape: "brep";
|
|
4505
4819
|
pcb_copper_pour_id: string;
|
|
4820
|
+
brep_shape: {
|
|
4821
|
+
outer_ring: {
|
|
4822
|
+
vertices: {
|
|
4823
|
+
x: number;
|
|
4824
|
+
y: number;
|
|
4825
|
+
bulge?: number | undefined;
|
|
4826
|
+
}[];
|
|
4827
|
+
};
|
|
4828
|
+
inner_rings: {
|
|
4829
|
+
vertices: {
|
|
4830
|
+
x: number;
|
|
4831
|
+
y: number;
|
|
4832
|
+
bulge?: number | undefined;
|
|
4833
|
+
}[];
|
|
4834
|
+
}[];
|
|
4835
|
+
};
|
|
4506
4836
|
subcircuit_id?: string | undefined;
|
|
4507
4837
|
pcb_group_id?: string | undefined;
|
|
4508
4838
|
source_net_id?: string | undefined;
|
|
4509
4839
|
}, {
|
|
4510
4840
|
type: "pcb_copper_pour";
|
|
4511
|
-
center: {
|
|
4512
|
-
x: string | number;
|
|
4513
|
-
y: string | number;
|
|
4514
|
-
};
|
|
4515
4841
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
4516
4842
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4517
4843
|
};
|
|
4518
|
-
shape: "
|
|
4519
|
-
|
|
4844
|
+
shape: "brep";
|
|
4845
|
+
brep_shape: {
|
|
4846
|
+
outer_ring: {
|
|
4847
|
+
vertices: {
|
|
4848
|
+
x: string | number;
|
|
4849
|
+
y: string | number;
|
|
4850
|
+
bulge?: number | undefined;
|
|
4851
|
+
}[];
|
|
4852
|
+
};
|
|
4853
|
+
inner_rings?: {
|
|
4854
|
+
vertices: {
|
|
4855
|
+
x: string | number;
|
|
4856
|
+
y: string | number;
|
|
4857
|
+
bulge?: number | undefined;
|
|
4858
|
+
}[];
|
|
4859
|
+
}[] | undefined;
|
|
4860
|
+
};
|
|
4520
4861
|
subcircuit_id?: string | undefined;
|
|
4521
4862
|
pcb_group_id?: string | undefined;
|
|
4522
4863
|
source_net_id?: string | undefined;
|
|
@@ -4576,7 +4917,7 @@ declare const pcb_copper_pour: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
4576
4917
|
pcb_copper_pour_id?: string | undefined;
|
|
4577
4918
|
}>]>;
|
|
4578
4919
|
type PcbCopperPourInput = z.input<typeof pcb_copper_pour>;
|
|
4579
|
-
type PcbCopperPour = PcbCopperPourRect |
|
|
4920
|
+
type PcbCopperPour = PcbCopperPourRect | PcbCopperPourBRep | PcbCopperPourPolygon;
|
|
4580
4921
|
|
|
4581
4922
|
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour;
|
|
4582
4923
|
|
|
@@ -13747,42 +14088,139 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13747
14088
|
}>;
|
|
13748
14089
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
13749
14090
|
} & {
|
|
13750
|
-
shape: z.ZodLiteral<"
|
|
13751
|
-
|
|
13752
|
-
|
|
13753
|
-
|
|
13754
|
-
|
|
13755
|
-
|
|
13756
|
-
|
|
13757
|
-
|
|
13758
|
-
|
|
13759
|
-
|
|
14091
|
+
shape: z.ZodLiteral<"brep">;
|
|
14092
|
+
brep_shape: z.ZodObject<{
|
|
14093
|
+
outer_ring: z.ZodObject<{
|
|
14094
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
14095
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14096
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14097
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
14098
|
+
}, "strip", z.ZodTypeAny, {
|
|
14099
|
+
x: number;
|
|
14100
|
+
y: number;
|
|
14101
|
+
bulge?: number | undefined;
|
|
14102
|
+
}, {
|
|
14103
|
+
x: string | number;
|
|
14104
|
+
y: string | number;
|
|
14105
|
+
bulge?: number | undefined;
|
|
14106
|
+
}>, "many">;
|
|
14107
|
+
}, "strip", z.ZodTypeAny, {
|
|
14108
|
+
vertices: {
|
|
14109
|
+
x: number;
|
|
14110
|
+
y: number;
|
|
14111
|
+
bulge?: number | undefined;
|
|
14112
|
+
}[];
|
|
14113
|
+
}, {
|
|
14114
|
+
vertices: {
|
|
14115
|
+
x: string | number;
|
|
14116
|
+
y: string | number;
|
|
14117
|
+
bulge?: number | undefined;
|
|
14118
|
+
}[];
|
|
14119
|
+
}>;
|
|
14120
|
+
inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
14121
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
14122
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14123
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14124
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
14125
|
+
}, "strip", z.ZodTypeAny, {
|
|
14126
|
+
x: number;
|
|
14127
|
+
y: number;
|
|
14128
|
+
bulge?: number | undefined;
|
|
14129
|
+
}, {
|
|
14130
|
+
x: string | number;
|
|
14131
|
+
y: string | number;
|
|
14132
|
+
bulge?: number | undefined;
|
|
14133
|
+
}>, "many">;
|
|
14134
|
+
}, "strip", z.ZodTypeAny, {
|
|
14135
|
+
vertices: {
|
|
14136
|
+
x: number;
|
|
14137
|
+
y: number;
|
|
14138
|
+
bulge?: number | undefined;
|
|
14139
|
+
}[];
|
|
14140
|
+
}, {
|
|
14141
|
+
vertices: {
|
|
14142
|
+
x: string | number;
|
|
14143
|
+
y: string | number;
|
|
14144
|
+
bulge?: number | undefined;
|
|
14145
|
+
}[];
|
|
14146
|
+
}>, "many">>;
|
|
14147
|
+
}, "strip", z.ZodTypeAny, {
|
|
14148
|
+
outer_ring: {
|
|
14149
|
+
vertices: {
|
|
14150
|
+
x: number;
|
|
14151
|
+
y: number;
|
|
14152
|
+
bulge?: number | undefined;
|
|
14153
|
+
}[];
|
|
14154
|
+
};
|
|
14155
|
+
inner_rings: {
|
|
14156
|
+
vertices: {
|
|
14157
|
+
x: number;
|
|
14158
|
+
y: number;
|
|
14159
|
+
bulge?: number | undefined;
|
|
14160
|
+
}[];
|
|
14161
|
+
}[];
|
|
14162
|
+
}, {
|
|
14163
|
+
outer_ring: {
|
|
14164
|
+
vertices: {
|
|
14165
|
+
x: string | number;
|
|
14166
|
+
y: string | number;
|
|
14167
|
+
bulge?: number | undefined;
|
|
14168
|
+
}[];
|
|
14169
|
+
};
|
|
14170
|
+
inner_rings?: {
|
|
14171
|
+
vertices: {
|
|
14172
|
+
x: string | number;
|
|
14173
|
+
y: string | number;
|
|
14174
|
+
bulge?: number | undefined;
|
|
14175
|
+
}[];
|
|
14176
|
+
}[] | undefined;
|
|
13760
14177
|
}>;
|
|
13761
|
-
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13762
14178
|
}, "strip", z.ZodTypeAny, {
|
|
13763
14179
|
type: "pcb_copper_pour";
|
|
13764
|
-
center: {
|
|
13765
|
-
x: number;
|
|
13766
|
-
y: number;
|
|
13767
|
-
};
|
|
13768
14180
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13769
|
-
shape: "
|
|
13770
|
-
radius: number;
|
|
14181
|
+
shape: "brep";
|
|
13771
14182
|
pcb_copper_pour_id: string;
|
|
14183
|
+
brep_shape: {
|
|
14184
|
+
outer_ring: {
|
|
14185
|
+
vertices: {
|
|
14186
|
+
x: number;
|
|
14187
|
+
y: number;
|
|
14188
|
+
bulge?: number | undefined;
|
|
14189
|
+
}[];
|
|
14190
|
+
};
|
|
14191
|
+
inner_rings: {
|
|
14192
|
+
vertices: {
|
|
14193
|
+
x: number;
|
|
14194
|
+
y: number;
|
|
14195
|
+
bulge?: number | undefined;
|
|
14196
|
+
}[];
|
|
14197
|
+
}[];
|
|
14198
|
+
};
|
|
13772
14199
|
subcircuit_id?: string | undefined;
|
|
13773
14200
|
pcb_group_id?: string | undefined;
|
|
13774
14201
|
source_net_id?: string | undefined;
|
|
13775
14202
|
}, {
|
|
13776
14203
|
type: "pcb_copper_pour";
|
|
13777
|
-
center: {
|
|
13778
|
-
x: string | number;
|
|
13779
|
-
y: string | number;
|
|
13780
|
-
};
|
|
13781
14204
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
13782
14205
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
13783
14206
|
};
|
|
13784
|
-
shape: "
|
|
13785
|
-
|
|
14207
|
+
shape: "brep";
|
|
14208
|
+
brep_shape: {
|
|
14209
|
+
outer_ring: {
|
|
14210
|
+
vertices: {
|
|
14211
|
+
x: string | number;
|
|
14212
|
+
y: string | number;
|
|
14213
|
+
bulge?: number | undefined;
|
|
14214
|
+
}[];
|
|
14215
|
+
};
|
|
14216
|
+
inner_rings?: {
|
|
14217
|
+
vertices: {
|
|
14218
|
+
x: string | number;
|
|
14219
|
+
y: string | number;
|
|
14220
|
+
bulge?: number | undefined;
|
|
14221
|
+
}[];
|
|
14222
|
+
}[] | undefined;
|
|
14223
|
+
};
|
|
13786
14224
|
subcircuit_id?: string | undefined;
|
|
13787
14225
|
pcb_group_id?: string | undefined;
|
|
13788
14226
|
source_net_id?: string | undefined;
|
|
@@ -19600,42 +20038,139 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19600
20038
|
}>;
|
|
19601
20039
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
19602
20040
|
} & {
|
|
19603
|
-
shape: z.ZodLiteral<"
|
|
19604
|
-
|
|
19605
|
-
|
|
19606
|
-
|
|
19607
|
-
|
|
19608
|
-
|
|
19609
|
-
|
|
19610
|
-
|
|
19611
|
-
|
|
19612
|
-
|
|
20041
|
+
shape: z.ZodLiteral<"brep">;
|
|
20042
|
+
brep_shape: z.ZodObject<{
|
|
20043
|
+
outer_ring: z.ZodObject<{
|
|
20044
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
20045
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20046
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20047
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
20048
|
+
}, "strip", z.ZodTypeAny, {
|
|
20049
|
+
x: number;
|
|
20050
|
+
y: number;
|
|
20051
|
+
bulge?: number | undefined;
|
|
20052
|
+
}, {
|
|
20053
|
+
x: string | number;
|
|
20054
|
+
y: string | number;
|
|
20055
|
+
bulge?: number | undefined;
|
|
20056
|
+
}>, "many">;
|
|
20057
|
+
}, "strip", z.ZodTypeAny, {
|
|
20058
|
+
vertices: {
|
|
20059
|
+
x: number;
|
|
20060
|
+
y: number;
|
|
20061
|
+
bulge?: number | undefined;
|
|
20062
|
+
}[];
|
|
20063
|
+
}, {
|
|
20064
|
+
vertices: {
|
|
20065
|
+
x: string | number;
|
|
20066
|
+
y: string | number;
|
|
20067
|
+
bulge?: number | undefined;
|
|
20068
|
+
}[];
|
|
20069
|
+
}>;
|
|
20070
|
+
inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
20071
|
+
vertices: z.ZodArray<z.ZodObject<{
|
|
20072
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20073
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20074
|
+
bulge: z.ZodOptional<z.ZodNumber>;
|
|
20075
|
+
}, "strip", z.ZodTypeAny, {
|
|
20076
|
+
x: number;
|
|
20077
|
+
y: number;
|
|
20078
|
+
bulge?: number | undefined;
|
|
20079
|
+
}, {
|
|
20080
|
+
x: string | number;
|
|
20081
|
+
y: string | number;
|
|
20082
|
+
bulge?: number | undefined;
|
|
20083
|
+
}>, "many">;
|
|
20084
|
+
}, "strip", z.ZodTypeAny, {
|
|
20085
|
+
vertices: {
|
|
20086
|
+
x: number;
|
|
20087
|
+
y: number;
|
|
20088
|
+
bulge?: number | undefined;
|
|
20089
|
+
}[];
|
|
20090
|
+
}, {
|
|
20091
|
+
vertices: {
|
|
20092
|
+
x: string | number;
|
|
20093
|
+
y: string | number;
|
|
20094
|
+
bulge?: number | undefined;
|
|
20095
|
+
}[];
|
|
20096
|
+
}>, "many">>;
|
|
20097
|
+
}, "strip", z.ZodTypeAny, {
|
|
20098
|
+
outer_ring: {
|
|
20099
|
+
vertices: {
|
|
20100
|
+
x: number;
|
|
20101
|
+
y: number;
|
|
20102
|
+
bulge?: number | undefined;
|
|
20103
|
+
}[];
|
|
20104
|
+
};
|
|
20105
|
+
inner_rings: {
|
|
20106
|
+
vertices: {
|
|
20107
|
+
x: number;
|
|
20108
|
+
y: number;
|
|
20109
|
+
bulge?: number | undefined;
|
|
20110
|
+
}[];
|
|
20111
|
+
}[];
|
|
20112
|
+
}, {
|
|
20113
|
+
outer_ring: {
|
|
20114
|
+
vertices: {
|
|
20115
|
+
x: string | number;
|
|
20116
|
+
y: string | number;
|
|
20117
|
+
bulge?: number | undefined;
|
|
20118
|
+
}[];
|
|
20119
|
+
};
|
|
20120
|
+
inner_rings?: {
|
|
20121
|
+
vertices: {
|
|
20122
|
+
x: string | number;
|
|
20123
|
+
y: string | number;
|
|
20124
|
+
bulge?: number | undefined;
|
|
20125
|
+
}[];
|
|
20126
|
+
}[] | undefined;
|
|
19613
20127
|
}>;
|
|
19614
|
-
radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19615
20128
|
}, "strip", z.ZodTypeAny, {
|
|
19616
20129
|
type: "pcb_copper_pour";
|
|
19617
|
-
center: {
|
|
19618
|
-
x: number;
|
|
19619
|
-
y: number;
|
|
19620
|
-
};
|
|
19621
20130
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19622
|
-
shape: "
|
|
19623
|
-
radius: number;
|
|
20131
|
+
shape: "brep";
|
|
19624
20132
|
pcb_copper_pour_id: string;
|
|
20133
|
+
brep_shape: {
|
|
20134
|
+
outer_ring: {
|
|
20135
|
+
vertices: {
|
|
20136
|
+
x: number;
|
|
20137
|
+
y: number;
|
|
20138
|
+
bulge?: number | undefined;
|
|
20139
|
+
}[];
|
|
20140
|
+
};
|
|
20141
|
+
inner_rings: {
|
|
20142
|
+
vertices: {
|
|
20143
|
+
x: number;
|
|
20144
|
+
y: number;
|
|
20145
|
+
bulge?: number | undefined;
|
|
20146
|
+
}[];
|
|
20147
|
+
}[];
|
|
20148
|
+
};
|
|
19625
20149
|
subcircuit_id?: string | undefined;
|
|
19626
20150
|
pcb_group_id?: string | undefined;
|
|
19627
20151
|
source_net_id?: string | undefined;
|
|
19628
20152
|
}, {
|
|
19629
20153
|
type: "pcb_copper_pour";
|
|
19630
|
-
center: {
|
|
19631
|
-
x: string | number;
|
|
19632
|
-
y: string | number;
|
|
19633
|
-
};
|
|
19634
20154
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
19635
20155
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
19636
20156
|
};
|
|
19637
|
-
shape: "
|
|
19638
|
-
|
|
20157
|
+
shape: "brep";
|
|
20158
|
+
brep_shape: {
|
|
20159
|
+
outer_ring: {
|
|
20160
|
+
vertices: {
|
|
20161
|
+
x: string | number;
|
|
20162
|
+
y: string | number;
|
|
20163
|
+
bulge?: number | undefined;
|
|
20164
|
+
}[];
|
|
20165
|
+
};
|
|
20166
|
+
inner_rings?: {
|
|
20167
|
+
vertices: {
|
|
20168
|
+
x: string | number;
|
|
20169
|
+
y: string | number;
|
|
20170
|
+
bulge?: number | undefined;
|
|
20171
|
+
}[];
|
|
20172
|
+
}[] | undefined;
|
|
20173
|
+
};
|
|
19639
20174
|
subcircuit_id?: string | undefined;
|
|
19640
20175
|
pcb_group_id?: string | undefined;
|
|
19641
20176
|
source_net_id?: string | undefined;
|
|
@@ -20914,4 +21449,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
20914
21449
|
*/
|
|
20915
21450
|
type CircuitJson = AnyCircuitElement[];
|
|
20916
21451
|
|
|
20917
|
-
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 InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, 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 PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCopperPour, type
|
|
21452
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, 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 PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, 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 PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, 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 PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, 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 PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, 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 SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, 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_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|